From e022af0161b356c85bb445ffcd5c196588e3145a Mon Sep 17 00:00:00 2001 From: rebuilt Date: Wed, 12 Mar 2025 13:46:01 -0700 Subject: [PATCH] feat: pull down new admin data. Fix problems with some scrapers. For 5D-ii make sure the likert score is 1 if the nurse count is 0. Prevent devision by zero returning infinity. For 3A-ii make sure not to perform division by zero. Likert score will be 1 if the number of guidance couselors, psychologists, or paraprofessionals is zero. --- app/services/dese/enrollments.rb | 2 +- app/services/dese/five_d_two.rb | 10 +- app/services/dese/three_a_two.rb | 9 +- app/services/dese/three_b_two.rb | 8 +- data/admin_data/dese/3A_2_age_staffing.csv | 21412 +++++------ .../dese/3A_2_grade_subject_staffing.csv | 2104 +- .../dese/3B_2_student_by_race_and_gender.csv | 31270 ++++++++-------- data/admin_data/dese/4B_2_retention.csv | 3081 +- data/admin_data/dese/5D_2_age_staffing.csv | 29430 +++++++-------- data/admin_data/dese/enrollments.csv | 2 +- 10 files changed, 45432 insertions(+), 41896 deletions(-) diff --git a/app/services/dese/enrollments.rb b/app/services/dese/enrollments.rb index d9199cab..c79601c7 100644 --- a/app/services/dese/enrollments.rb +++ b/app/services/dese/enrollments.rb @@ -6,7 +6,7 @@ module Dese attr_reader :filepaths def scrape_enrollments(filepath:) - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', + headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'School Code', 'PK', 'K', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', 'SP', 'Total'] write_headers(filepath:, headers:) run do |academic_year| diff --git a/app/services/dese/five_d_two.rb b/app/services/dese/five_d_two.rb index 7b4080e3..2659e542 100644 --- a/app/services/dese/five_d_two.rb +++ b/app/services/dese/five_d_two.rb @@ -17,7 +17,7 @@ module Dese 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'] + '<26 yrs (# )', '26-32 yrs (#)', '33-40 yrs (#)', '41-48 yrs (#)', '49-56 yrs (#)', '57-64 yrs (#)', 'Over 64 yrs (#)', 'FTE Count', 'Student Count', 'Student to Nurse Ratio'] write_headers(filepath:, headers:) run_a_phya_i1(filepath:) @@ -45,8 +45,12 @@ module Dese 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 + + return 0 if nurse_count == 0 + + student_to_nurse_ratio = num_of_students / nurse_count + items << student_to_nurse_ratio + ((benchmark - student_to_nurse_ratio) + benchmark) * 4 / benchmark } Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) end diff --git a/app/services/dese/three_a_two.rb b/app/services/dese/three_a_two.rb index 1eaaf46f..d0869e9f 100644 --- a/app/services/dese/three_a_two.rb +++ b/app/services/dese/three_a_two.rb @@ -67,7 +67,7 @@ module Dese num_of_students = student_count(filepath: filepaths[0], dese_id:, year: academic_year.range) || 0 items << num_of_students benchmark = 250 - if fte_index.present? && !items[fte_index] != "" + if fte_index.present? && num_of_guidance_counselors != 0 result = ((benchmark - (num_of_students / num_of_guidance_counselors)) + benchmark) * 4 / benchmark end items << (num_of_students / num_of_guidance_counselors) @@ -93,10 +93,9 @@ module Dese num_of_students = student_count(filepath: filepaths[0], dese_id:, year: academic_year.range) || 0 items << num_of_students benchmark = 250 - if fte_index.present? && !items[fte_index] != "" + if fte_index.present? && num_of_psychologists != 0 result = ((benchmark - (num_of_students / num_of_psychologists)) + benchmark) * 4 / benchmark end - items << (num_of_students / num_of_psychologists) result } @@ -120,7 +119,7 @@ module Dese num_of_students = student_count(filepath: filepaths[0], dese_id:, year: academic_year.range) || 0 items << num_of_students benchmark = 43.4 - if fte_index.present? && !items[fte_index] != "" + if fte_index.present? && num_of_paraprofessionals != 0 result = ((benchmark - (num_of_students / num_of_paraprofessionals)) + benchmark) * 4 / benchmark end @@ -148,7 +147,7 @@ module Dese num_of_students = student_count(filepath: filepaths[0], dese_id:, year: academic_year.range) || 0 items << num_of_students benchmark = 500 - if num_of_art_teachers.present? + if num_of_art_teachers.present? && num_of_art_teachers != 0 result = ((benchmark - (num_of_students / num_of_art_teachers)) + benchmark) * 4 / benchmark end diff --git a/app/services/dese/three_b_two.rb b/app/services/dese/three_b_two.rb index 8fda8e88..73ab6006 100644 --- a/app/services/dese/three_b_two.rb +++ b/app/services/dese/three_b_two.rb @@ -21,10 +21,10 @@ module Dese 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", + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "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 (%)"] + "Females", "Non-Binary", "Students of color (%)", "Non-White Teachers %", "Non-White Students %"] write_headers(filepath:, headers:) run_student_demographics(filepath:) @@ -101,12 +101,12 @@ module Dese 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) + items << 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) + items << non_white_teacher_percentage floor = 5 benchmark = 0.25 diff --git a/data/admin_data/dese/3A_2_age_staffing.csv b/data/admin_data/dese/3A_2_age_staffing.csv index ce8f50a9..23cfffae 100644 --- a/data/admin_data/dese/3A_2_age_staffing.csv +++ b/data/admin_data/dese/3A_2_age_staffing.csv @@ -1,178 +1,178 @@ 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,Student Count,Student to Guidance Counselor ratio --Infinity,1,a-sust-i2,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1421,Infinity --Infinity,1,a-sust-i2,2023-24,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +NA,NA,a-sust-i2,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1421,Infinity +NA,NA,a-sust-i2,2023-24,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity -0.976,1,a-sust-i2,2023-24,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,561,561.0 -2.176,1,a-sust-i2,2023-24,Abington - Abington Middle School,00010405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,636,636.0 --Infinity,1,a-sust-i2,2023-24,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2023-24,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity 2.368,2.37,a-sust-i2,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 -6.08,1,a-sust-i2,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,440,880.0 --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1649,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1649,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813,Infinity -8.544,1,a-sust-i2,2023-24,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,517,1034.0 --Infinity,1,a-sust-i2,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1041,Infinity --Infinity,1,a-sust-i2,2023-24,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity --Infinity,1,a-sust-i2,2023-24,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2023-24,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2023-24,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity --Infinity,1,a-sust-i2,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1682,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1041,Infinity +NA,NA,a-sust-i2,2023-24,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2023-24,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2023-24,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2023-24,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity +NA,NA,a-sust-i2,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2023-24,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1682,Infinity +NA,NA,a-sust-i2,2023-24,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2023-24,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2023-24,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2023-24,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2023-24,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2023-24,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity -10.368,1,a-sust-i2,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,574,1148.0 -17.744,1,a-sust-i2,2023-24,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1609,1609.0 -5.536,1,a-sust-i2,2023-24,Arlington - Brackett,00100010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,423,846.0 --Infinity,1,a-sust-i2,2023-24,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2023-24,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity -6.976,1,a-sust-i2,2023-24,Arlington - Gibbs School,00100305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,468,936.0 --Infinity,1,a-sust-i2,2023-24,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2023-24,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity -4.512,1,a-sust-i2,2023-24,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,391,782.0 --Infinity,1,a-sust-i2,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity -22.112,1,a-sust-i2,2023-24,Arlington - Ottoson Middle,00100410, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,941,1882.0 --Infinity,1,a-sust-i2,2023-24,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2023-24,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity --Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity --Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2023-24,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity --Infinity,1,a-sust-i2,2023-24,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2023-24,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity --Infinity,1,a-sust-i2,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity --Infinity,1,a-sust-i2,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1130,Infinity --Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2023-24,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2023-24,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +NA,NA,a-sust-i2,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2023-24,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +NA,NA,a-sust-i2,2023-24,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2023-24,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity +NA,NA,a-sust-i2,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +NA,NA,a-sust-i2,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1130,Infinity +NA,NA,a-sust-i2,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity -12.112,1,a-sust-i2,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1257,1257.0 --Infinity,1,a-sust-i2,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity -22.8,1,a-sust-i2,2023-24,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1925,1925.0 --Infinity,1,a-sust-i2,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity --Infinity,1,a-sust-i2,2023-24,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity -10.464,1,a-sust-i2,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,577,1154.0 --Infinity,1,a-sust-i2,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity -16.88,1,a-sust-i2,2023-24,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,622,1555.0 -13.733333333333336,1,a-sust-i2,2023-24,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,815,1358.3333333333335 -5.706666666666668,1,a-sust-i2,2023-24,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,257,856.6666666666667 -5.013333333333334,1,a-sust-i2,2023-24,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,244,813.3333333333334 -9.952,1,a-sust-i2,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,561,1122.0 --Infinity,1,a-sust-i2,2023-24,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2023-24,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2023-24,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2023-24,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity 3.056,3.06,a-sust-i2,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,309,309.0 -20.096,1,a-sust-i2,2023-24,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1756,1756.0 -2.224,1,a-sust-i2,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,639,639.0 --Infinity,1,a-sust-i2,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity 5.976,5,a-sust-i2,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,253,126.5 --Infinity,1,a-sust-i2,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity -38.186666666666675,1,a-sust-i2,2023-24,Bedford - Bedford High,00230505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,866,2886.666666666667 -24.64,1,a-sust-i2,2023-24,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,612,2040.0 -19.2,1,a-sust-i2,2023-24,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,510,1700.0 -22.453333333333337,1,a-sust-i2,2023-24,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,571,1903.3333333333335 --Infinity,1,a-sust-i2,2023-24,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2023-24,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2023-24,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity --Infinity,1,a-sust-i2,2023-24,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +NA,NA,a-sust-i2,2023-24,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2023-24,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2023-24,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i2,2023-24,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity -1.456,1,a-sust-i2,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,591,591.0 --Infinity,1,a-sust-i2,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i2,2023-24,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i2,2023-24,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity -17.99111111111111,1,a-sust-i2,2023-24,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.4, 0.9,1462,1624.4444444444443 --Infinity,1,a-sust-i2,2023-24,Belmont - Belmont Middle School,00260315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2023-24,Belmont - Belmont Middle School,00260315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity -2.272,1,a-sust-i2,2023-24,Belmont - Daniel Butler,00260015, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,321,642.0 -2.304,1,a-sust-i2,2023-24,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,322,644.0 -8.704,1,a-sust-i2,2023-24,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,522,1044.0 -5.376,1,a-sust-i2,2023-24,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,418,836.0 -14.816,1,a-sust-i2,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,713,1426.0 --Infinity,1,a-sust-i2,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity +NA,NA,a-sust-i2,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity -7.072,1,a-sust-i2,2023-24,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,471,942.0 --Infinity,1,a-sust-i2,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity 4.448,4.45,a-sust-i2,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 2.624,2.62,a-sust-i2,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,336,336.0 -0.864,1,a-sust-i2,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,554,554.0 --Infinity,1,a-sust-i2,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity -12.08,1,a-sust-i2,2023-24,Beverly - Beverly High,00300505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1255,1255.0 --Infinity,1,a-sust-i2,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1356,Infinity --Infinity,1,a-sust-i2,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2023-24,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2023-24,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2023-24,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +NA,NA,a-sust-i2,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1356,Infinity +NA,NA,a-sust-i2,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2023-24,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2023-24,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2023-24,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity 2.448,2.45,a-sust-i2,2023-24,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,347,347.0 --Infinity,1,a-sust-i2,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1821,Infinity --Infinity,1,a-sust-i2,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1821,Infinity +NA,NA,a-sust-i2,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity 1.888,1.89,a-sust-i2,2023-24,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,382,382.0 2.752,2.75,a-sust-i2,2023-24,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 --Infinity,1,a-sust-i2,2023-24,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity --Infinity,1,a-sust-i2,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +NA,NA,a-sust-i2,2023-24,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity 1.264,1.26,a-sust-i2,2023-24,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 -0.816,1,a-sust-i2,2023-24,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,551,551.0 -12.0,1,a-sust-i2,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1250,1250.0 --Infinity,1,a-sust-i2,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity 1.888,1.89,a-sust-i2,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,382,382.0 2.128,2.13,a-sust-i2,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,367,367.0 6.16,5,a-sust-i2,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,115,115.0 --Infinity,1,a-sust-i2,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,918,Infinity +NA,NA,a-sust-i2,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,918,Infinity 3.984,3.98,a-sust-i2,2023-24,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 --Infinity,1,a-sust-i2,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity 4.16,4.16,a-sust-i2,2023-24,Boston - Another Course To College,00350541, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,240,240.0 2.88,2.88,a-sust-i2,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,192,320.0 0.56,1,a-sust-i2,2023-24,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,279,465.0 3.808,3.81,a-sust-i2,2023-24,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,262,262.0 -1.296,1,a-sust-i2,2023-24,Boston - Blackstone Elementary School,00350390, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,581,581.0 --Infinity,1,a-sust-i2,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i2,2023-24,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity 1.024,1.02,a-sust-i2,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,218,436.0 -1.104,1,a-sust-i2,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 0.224,1,a-sust-i2,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,486,486.0 @@ -193,7 +193,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 4.98,4.98,a-sust-i2,2023-24,Boston - Conley Elementary School,00350122, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,151,188.75 -6.592,1,a-sust-i2,2023-24,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,912,912.0 -6.746666666666668,1,a-sust-i2,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,553,921.6666666666667 --Infinity,1,a-sust-i2,2023-24,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity 4.864,4.86,a-sust-i2,2023-24,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,196,196.0 -12.688,1,a-sust-i2,2023-24,Boston - East Boston High School,00350530, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1293,1293.0 -1.344,1,a-sust-i2,2023-24,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,584,584.0 @@ -201,9 +201,9 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -1.066666666666668,1,a-sust-i2,2023-24,Boston - Ellis Elementary School,00350072, 0.0, 0.2, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6,340,566.6666666666667 6.11,5,a-sust-i2,2023-24,Boston - Ellison-Parks Early Education School,00350008, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.6,189,118.125 -2.912,1,a-sust-i2,2023-24,Boston - English High School,00350535, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,682,682.0 --Infinity,1,a-sust-i2,2023-24,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity 1.808,1.81,a-sust-i2,2023-24,Boston - Excel High School,00350522, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 --Infinity,1,a-sust-i2,2023-24,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity 2.768,2.77,a-sust-i2,2023-24,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,327,327.0 2.064,2.06,a-sust-i2,2023-24,Boston - Gardner Pilot Academy,00350326, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 1.92,1.92,a-sust-i2,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,76,380.0 @@ -213,139 +213,139 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 2.688,2.69,a-sust-i2,2023-24,Boston - Hale Elementary School,00350243, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,166,332.0 1.904,1.9,a-sust-i2,2023-24,Boston - Haley Pilot School,00350077, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 2.56,2.56,a-sust-i2,2023-24,Boston - Harvard-Kent Elementary School,00350200, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 --Infinity,1,a-sust-i2,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity 4.512,4.51,a-sust-i2,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 -2.224,1,a-sust-i2,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,639,639.0 -0.08,1,a-sust-i2,2023-24,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,505,505.0 1.488,1.49,a-sust-i2,2023-24,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,407,407.0 1.72,1.72,a-sust-i2,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,157,392.5 --Infinity,1,a-sust-i2,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity --Infinity,1,a-sust-i2,2023-24,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity 6.832,5,a-sust-i2,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,73,73.0 2.416,2.42,a-sust-i2,2023-24,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,349,349.0 1.664,1.66,a-sust-i2,2023-24,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,396,396.0 -2.68,1,a-sust-i2,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,267,667.5 3.493333333333333,3.49,a-sust-i2,2023-24,Boston - Kenny Elementary School,00350328, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,338,281.6666666666667 -1.893333333333334,1,a-sust-i2,2023-24,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,371,618.3333333333334 --Infinity,1,a-sust-i2,2023-24,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2023-24,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity 4.8,4.8,a-sust-i2,2023-24,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,200,200.0 --Infinity,1,a-sust-i2,2023-24,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2023-24,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2023-24,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity 6.08,5,a-sust-i2,2023-24,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,120,120.0 0.9466666666666661,1,a-sust-i2,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.4, 0.0, 0.0, 1.0, 1.0, 0.0, 2.4,1058,440.83333333333337 2.592,2.59,a-sust-i2,2023-24,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,169,338.0 --Infinity,1,a-sust-i2,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity -2.112,1,a-sust-i2,2023-24,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,632,632.0 2.96,2.96,a-sust-i2,2023-24,Boston - Mason Elementary School,00350304, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,189,315.0 --Infinity,1,a-sust-i2,2023-24,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2023-24,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity 2.64,2.64,a-sust-i2,2023-24,Boston - McKay K-8 School,00350080, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,670,335.0 5.856,5,a-sust-i2,2023-24,Boston - Melvin H. King South End Academy,00350363, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,134,134.0 --Infinity,1,a-sust-i2,2023-24,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity -15.6,1,a-sust-i2,2023-24,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,590,1475.0 5.152,5,a-sust-i2,2023-24,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,178,178.0 -5.424,1,a-sust-i2,2023-24,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,839,839.0 -9.813333333333336,1,a-sust-i2,2023-24,Boston - New Mission High School,00350542, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,668,1113.3333333333335 -33.013333333333335,1,a-sust-i2,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,1538,2563.3333333333335 --Infinity,1,a-sust-i2,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity 4.017777777777778,4.02,a-sust-i2,2023-24,Boston - Ohrenberger School,00350258, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 0.0, 1.8,448,248.88888888888889 --Infinity,1,a-sust-i2,2023-24,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity -2.72,1,a-sust-i2,2023-24,Boston - Otis Elementary School,00350156, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,402,670.0 4.026666666666666,4.03,a-sust-i2,2023-24,Boston - Perkins Elementary School,00350231, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,149,248.33333333333334 --Infinity,1,a-sust-i2,2023-24,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity 5.888,5,a-sust-i2,2023-24,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,132,132.0 -1.7733333333333339,1,a-sust-i2,2023-24,Boston - Quincy Elementary School,00350286, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,733,610.8333333333334 -0.512,1,a-sust-i2,2023-24,Boston - Quincy Upper School,00350565, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 2.704,2.7,a-sust-i2,2023-24,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 -3.072,1,a-sust-i2,2023-24,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,346,692.0 --Infinity,1,a-sust-i2,2023-24,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity 0.88,1,a-sust-i2,2023-24,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,445,445.0 --Infinity,1,a-sust-i2,2023-24,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity 4.9511111111111115,4.95,a-sust-i2,2023-24,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 0.0, 1.8,343,190.55555555555554 --Infinity,1,a-sust-i2,2023-24,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +NA,NA,a-sust-i2,2023-24,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity 2.0,2.0,a-sust-i2,2023-24,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 4.8,4.8,a-sust-i2,2023-24,Boston - Trotter Elementary School,00350370, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,300,200.0 3.9,3.9,a-sust-i2,2023-24,Boston - Tynan Elementary School,00350181, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,205,256.25 -1.056,1,a-sust-i2,2023-24,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,566,566.0 0.016,1,a-sust-i2,2023-24,Boston - Warren-Prescott K-8 School,00350346, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,499,499.0 --Infinity,1,a-sust-i2,2023-24,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2023-24,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2023-24,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2023-24,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2023-24,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity -29.28,1,a-sust-i2,2023-24,Boston - Young Achievers K-8 School,00350380, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,466,2330.0 --Infinity,1,a-sust-i2,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,293,Infinity 0.656,1,a-sust-i2,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,459,459.0 -14.24,1,a-sust-i2,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,695,1390.0 -6.992,1,a-sust-i2,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,937,937.0 -2.72,1,a-sust-i2,2023-24,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,335,670.0 --Infinity,1,a-sust-i2,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity 3.306666666666667,3.31,a-sust-i2,2023-24,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,440,293.3333333333333 --Infinity,1,a-sust-i2,2023-24,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2023-24,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity 1.552,1.55,a-sust-i2,2023-24,Boxford - Spofford Pond,00380013, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 --Infinity,1,a-sust-i2,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity -18.832,1,a-sust-i2,2023-24,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1677,1677.0 --Infinity,1,a-sust-i2,2023-24,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2023-24,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity -7.984,1,a-sust-i2,2023-24,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,999,999.0 --Infinity,1,a-sust-i2,2023-24,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2023-24,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2023-24,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2023-24,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2023-24,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2023-24,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity 3.504,3.5,a-sust-i2,2023-24,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 --Infinity,1,a-sust-i2,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2023-24,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity --Infinity,1,a-sust-i2,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2023-24,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity 1.704,1.7,a-sust-i2,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,787,393.5 --Infinity,1,a-sust-i2,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1408,Infinity --Infinity,1,a-sust-i2,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1408,Infinity +NA,NA,a-sust-i2,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity 2.48,2.48,a-sust-i2,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,345,345.0 0.44,1,a-sust-i2,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,945,472.5 2.032,2.03,a-sust-i2,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,746,373.0 --Infinity,1,a-sust-i2,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +NA,NA,a-sust-i2,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity 1.344,1.34,a-sust-i2,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,832,416.0 3.456,3.46,a-sust-i2,2023-24,Brimfield - Brimfield Elementary,00430005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 --Infinity,1,a-sust-i2,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity --Infinity,1,a-sust-i2,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1330,Infinity +NA,NA,a-sust-i2,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1330,Infinity -19.573333333333334,1,a-sust-i2,2023-24,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,517,1723.3333333333335 -13.2,1,a-sust-i2,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,265,1325.0 -135.44,1,a-sust-i2,2023-24,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,3586,8965.0 -0.48,1,a-sust-i2,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,159,530.0 -6.432,1,a-sust-i2,2023-24,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,451,902.0 --Infinity,1,a-sust-i2,2023-24,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +NA,NA,a-sust-i2,2023-24,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity -16.416,1,a-sust-i2,2023-24,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,763,1526.0 -15.04,1,a-sust-i2,2023-24,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,432,1440.0 -22.208,1,a-sust-i2,2023-24,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,944,1888.0 -0.6933333333333339,1,a-sust-i2,2023-24,Brockton - Edison Day Academy,00440535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,163,543.3333333333334 --Infinity,1,a-sust-i2,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity -5.824,1,a-sust-i2,2023-24,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,432,864.0 --Infinity,1,a-sust-i2,2023-24,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2023-24,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity 5.12,5,a-sust-i2,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,36,180.0 -18.826666666666668,1,a-sust-i2,2023-24,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,503,1676.6666666666667 -18.72,1,a-sust-i2,2023-24,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,835,1670.0 -7.56,1,a-sust-i2,2023-24,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,778,972.5 --Infinity,1,a-sust-i2,2023-24,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity +NA,NA,a-sust-i2,2023-24,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity -24.48,1,a-sust-i2,2023-24,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,406,2030.0 -17.952,1,a-sust-i2,2023-24,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,811,1622.0 0.24,1,a-sust-i2,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,97,485.0 -42.32,1,a-sust-i2,2023-24,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,629,3145.0 -16.96,1,a-sust-i2,2023-24,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,468,1560.0 -18.24,1,a-sust-i2,2023-24,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,492,1640.0 --Infinity,1,a-sust-i2,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2208,Infinity --Infinity,1,a-sust-i2,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2173,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2208,Infinity +NA,NA,a-sust-i2,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2173,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity 1.184,1.18,a-sust-i2,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,852,426.0 -3.573333333333334,1,a-sust-i2,2023-24,Brookline - Heath,00460025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,434,723.3333333333334 --Infinity,1,a-sust-i2,2023-24,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2023-24,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2023-24,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity 0.416,1,a-sust-i2,2023-24,Brookline - William H Lincoln,00460035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 2.64,2.64,a-sust-i2,2023-24,Burlington - Burlington High,00480505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,1005,335.0 0.72,1,a-sust-i2,2023-24,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,455,455.0 @@ -353,148 +353,148 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 1.104,1.1,a-sust-i2,2023-24,Burlington - Marshall Simonds Middle,00480303, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,862,431.0 1.872,1.87,a-sust-i2,2023-24,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 2.656,2.66,a-sust-i2,2023-24,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,334,334.0 --Infinity,1,a-sust-i2,2023-24,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1979,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1979,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity -6.896,1,a-sust-i2,2023-24,Canton - Canton High,00500505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,931,931.0 --Infinity,1,a-sust-i2,2023-24,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity --Infinity,1,a-sust-i2,2023-24,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2023-24,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2023-24,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2023-24,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2023-24,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity 5.856,5,a-sust-i2,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,134,134.0 --Infinity,1,a-sust-i2,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity +NA,NA,a-sust-i2,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity 3.984,3.98,a-sust-i2,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 --Infinity,1,a-sust-i2,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity -1.728,1,a-sust-i2,2023-24,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,608,608.0 --Infinity,1,a-sust-i2,2023-24,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity --Infinity,1,a-sust-i2,2023-24,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2023-24,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity --Infinity,1,a-sust-i2,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2023-24,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +NA,NA,a-sust-i2,2023-24,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2023-24,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +NA,NA,a-sust-i2,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity -0.48,1,a-sust-i2,2023-24,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,530,530.0 -1.32,1,a-sust-i2,2023-24,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,466,582.5 0.368,1,a-sust-i2,2023-24,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 --Infinity,1,a-sust-i2,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413,Infinity +NA,NA,a-sust-i2,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413,Infinity -4.752,1,a-sust-i2,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,797,797.0 --Infinity,1,a-sust-i2,2023-24,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2023-24,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity -4.512,1,a-sust-i2,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,782,782.0 0.56,1,a-sust-i2,2023-24,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,465,465.0 --Infinity,1,a-sust-i2,2023-24,Chelsea - Chelsea High,00570505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1680,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Chelsea High,00570505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1680,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity 2.576,2.58,a-sust-i2,2023-24,Chelsea - Clark Avenue School,00570050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,678,339.0 --Infinity,1,a-sust-i2,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,806,Infinity --Infinity,1,a-sust-i2,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,806,Infinity +NA,NA,a-sust-i2,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity -3.12,1,a-sust-i2,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,139,695.0 --Infinity,1,a-sust-i2,2023-24,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1212,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,932,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2023-24,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,837,Infinity --Infinity,1,a-sust-i2,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1212,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,932,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2023-24,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,837,Infinity +NA,NA,a-sust-i2,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity -4.992,1,a-sust-i2,2023-24,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,406,812.0 --Infinity,1,a-sust-i2,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2023-24,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2023-24,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1211,Infinity --Infinity,1,a-sust-i2,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2023-24,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,1200,Infinity +NA,NA,a-sust-i2,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2023-24,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2023-24,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1211,Infinity +NA,NA,a-sust-i2,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2023-24,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,1200,Infinity 1.12,1.12,a-sust-i2,2023-24,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,430,430.0 --Infinity,1,a-sust-i2,2023-24,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity --Infinity,1,a-sust-i2,2023-24,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2023-24,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1230,Infinity --Infinity,1,a-sust-i2,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2023-24,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2023-24,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2023-24,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1230,Infinity +NA,NA,a-sust-i2,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity 5.696,5,a-sust-i2,2023-24,Conway - Conway Grammar,00680005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,144,144.0 --Infinity,1,a-sust-i2,2023-24,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity --Infinity,1,a-sust-i2,2023-24,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2023-24,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity +NA,NA,a-sust-i2,2023-24,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity 1.92,1.92,a-sust-i2,2023-24,Danvers - Highlands,00710010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 --Infinity,1,a-sust-i2,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity +NA,NA,a-sust-i2,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity 0.62,1,a-sust-i2,2023-24,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,369,461.25 --Infinity,1,a-sust-i2,2023-24,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2023-24,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity --Infinity,1,a-sust-i2,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,949,Infinity +NA,NA,a-sust-i2,2023-24,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2023-24,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +NA,NA,a-sust-i2,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,949,Infinity 1.704,1.7,a-sust-i2,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,787,393.5 1.328,1.33,a-sust-i2,2023-24,Dartmouth - George H Potter,00720030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,417,417.0 --Infinity,1,a-sust-i2,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity --Infinity,1,a-sust-i2,2023-24,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2023-24,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2023-24,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2023-24,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity 3.3216000000000006,3.32,a-sust-i2,2023-24,Dedham - Dedham High,00730505, 0.0, 2.0, 0.0, 0.5, 0.0, 0.0, 0.0, 2.5,731,292.4 -0.688,1,a-sust-i2,2023-24,Dedham - Dedham Middle School,00730305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 --Infinity,1,a-sust-i2,2023-24,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2023-24,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2023-24,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2023-24,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2023-24,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2023-24,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity -0.16,1,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,510,510.0 --Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,922,Infinity +NA,NA,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,922,Infinity 2.288,2.29,a-sust-i2,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,357,357.0 --Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity --Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity 2.352,2.35,a-sust-i2,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 -1.696,1,a-sust-i2,2023-24,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,303,606.0 --Infinity,1,a-sust-i2,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2023-24,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity --Infinity,1,a-sust-i2,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2023-24,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity +NA,NA,a-sust-i2,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity -18.666666666666668,1,a-sust-i2,2023-24,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,500,1666.6666666666667 -17.248,1,a-sust-i2,2023-24,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,789,1578.0 -20.64,1,a-sust-i2,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,537,1790.0 -4.2666666666666675,1,a-sust-i2,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,230,766.6666666666667 -22.826666666666668,1,a-sust-i2,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,578,1926.6666666666667 --Infinity,1,a-sust-i2,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,909,Infinity --Infinity,1,a-sust-i2,2023-24,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, 0.0,288,Infinity --Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,909,Infinity +NA,NA,a-sust-i2,2023-24,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, 0.0,288,Infinity +NA,NA,a-sust-i2,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity -1.648,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,603,603.0 --Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity -9.664,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,552,1104.0 0.832,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,448,448.0 --Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,937,Infinity +NA,NA,a-sust-i2,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,937,Infinity 3.032,3.03,a-sust-i2,2023-24,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,621,310.5 -2.384,1,a-sust-i2,2023-24,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,649,649.0 1.104,1.1,a-sust-i2,2023-24,Duxbury - Duxbury High,00820505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,862,431.0 @@ -502,55 +502,55 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -8.48,1,a-sust-i2,2023-24,East Bridgewater - Central,00830005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,515,1030.0 -20.064,1,a-sust-i2,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,877,1754.0 -11.712,1,a-sust-i2,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,616,1232.0 --Infinity,1,a-sust-i2,2023-24,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2023-24,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity -4.336,1,a-sust-i2,2023-24,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,771,771.0 --Infinity,1,a-sust-i2,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2023-24,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity --Infinity,1,a-sust-i2,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity --Infinity,1,a-sust-i2,2023-24,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2023-24,Easthampton - Mountain View School,00860415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1024,Infinity --Infinity,1,a-sust-i2,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity --Infinity,1,a-sust-i2,2023-24,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2023-24,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1076,Infinity --Infinity,1,a-sust-i2,2023-24,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity --Infinity,1,a-sust-i2,2023-24,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2023-24,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +NA,NA,a-sust-i2,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2023-24,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2023-24,Easthampton - Mountain View School,00860415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1024,Infinity +NA,NA,a-sust-i2,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity +NA,NA,a-sust-i2,2023-24,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2023-24,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1076,Infinity +NA,NA,a-sust-i2,2023-24,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity +NA,NA,a-sust-i2,2023-24,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity 2.0,2.0,a-sust-i2,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, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 4.064,4.06,a-sust-i2,2023-24,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,123,246.0 --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,1745,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2289,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,873,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1000,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,1745,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2289,Infinity +NA,NA,a-sust-i2,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,873,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1000,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity -2.904,1,a-sust-i2,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1363,681.5 -1.792,1,a-sust-i2,2023-24,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,306,612.0 --Infinity,1,a-sust-i2,2023-24,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2023-24,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity -5.696,1,a-sust-i2,2023-24,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,428,856.0 --Infinity,1,a-sust-i2,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2435,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,714,Infinity +NA,NA,a-sust-i2,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2435,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,714,Infinity -2.464,1,a-sust-i2,2023-24,Fall River - North End Elementary,00950005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,654,654.0 --Infinity,1,a-sust-i2,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity --Infinity,1,a-sust-i2,2023-24,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2023-24,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity -15.84,1,a-sust-i2,2023-24,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,298,1490.0 -30.773333333333337,1,a-sust-i2,2023-24,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,727,2423.3333333333335 -16.48,1,a-sust-i2,2023-24,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,459,1530.0 @@ -558,26 +558,26 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -22.08,1,a-sust-i2,2023-24,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,376,1880.0 -39.52,1,a-sust-i2,2023-24,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,297,2970.0 -32.8,1,a-sust-i2,2023-24,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,255,2550.0 --Infinity,1,a-sust-i2,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1180,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,762,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity --Infinity,1,a-sust-i2,2023-24,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1180,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,762,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2023-24,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity 4.195555555555556,4.2,a-sust-i2,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,214,237.77777777777777 --Infinity,1,a-sust-i2,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2023-24,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity --Infinity,1,a-sust-i2,2023-24,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,745,Infinity +NA,NA,a-sust-i2,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2023-24,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity +NA,NA,a-sust-i2,2023-24,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,745,Infinity 2.704,2.7,a-sust-i2,2023-24,Foxborough - Mabelle M Burrell,00990015, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,331,331.0 --Infinity,1,a-sust-i2,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1520,Infinity +NA,NA,a-sust-i2,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1520,Infinity -2.528,1,a-sust-i2,2023-24,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,658,658.0 --Infinity,1,a-sust-i2,2023-24,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2023-24,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity 1.024,1.02,a-sust-i2,2023-24,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,436,436.0 -2.18,1,a-sust-i2,2023-24,Framingham - Framingham High School,01000515, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 4.0,2545,636.25 -1.024,1,a-sust-i2,2023-24,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 @@ -589,350 +589,350 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -0.064,1,a-sust-i2,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 -0.56,1,a-sust-i2,2023-24,Framingham - Potter Road,01000039, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,535,535.0 1.76,1.76,a-sust-i2,2023-24,Framingham - Walsh Middle,01000310, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,780,390.0 --Infinity,1,a-sust-i2,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,152,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1569,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity --Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity --Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity --Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2023-24,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity --Infinity,1,a-sust-i2,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2023-24,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1053,Infinity --Infinity,1,a-sust-i2,2023-24,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity --Infinity,1,a-sust-i2,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2023-24,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity --Infinity,1,a-sust-i2,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity --Infinity,1,a-sust-i2,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,152,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1569,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2023-24,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +NA,NA,a-sust-i2,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity +NA,NA,a-sust-i2,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2023-24,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity +NA,NA,a-sust-i2,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2023-24,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1053,Infinity +NA,NA,a-sust-i2,2023-24,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity +NA,NA,a-sust-i2,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2023-24,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +NA,NA,a-sust-i2,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +NA,NA,a-sust-i2,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity 3.376,3.38,a-sust-i2,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 --Infinity,1,a-sust-i2,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity --Infinity,1,a-sust-i2,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity --Infinity,1,a-sust-i2,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +NA,NA,a-sust-i2,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +NA,NA,a-sust-i2,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity 0.8,1,a-sust-i2,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,450,450.0 --Infinity,1,a-sust-i2,2023-24,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity --Infinity,1,a-sust-i2,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2023-24,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +NA,NA,a-sust-i2,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity -2.016,1,a-sust-i2,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,626,626.0 2.08,2.08,a-sust-i2,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 -NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN --Infinity,1,a-sust-i2,2023-24,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity --Infinity,1,a-sust-i2,2023-24,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2023-24,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2023-24,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2023-24,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2023-24,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1161,Infinity --Infinity,1,a-sust-i2,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1443,Infinity --Infinity,1,a-sust-i2,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1774,Infinity --Infinity,1,a-sust-i2,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2314,Infinity +NA,NA,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i2,2023-24,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +NA,NA,a-sust-i2,2023-24,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2023-24,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2023-24,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2023-24,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2023-24,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1161,Infinity +NA,NA,a-sust-i2,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1443,Infinity +NA,NA,a-sust-i2,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1774,Infinity +NA,NA,a-sust-i2,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2314,Infinity -26.352,1,a-sust-i2,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,2147,2147.0 -3.2,1,a-sust-i2,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,210,700.0 -1.7066666666666679,1,a-sust-i2,2023-24,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,182,606.6666666666667 0.832,1,a-sust-i2,2023-24,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 --Infinity,1,a-sust-i2,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity -1.76,1,a-sust-i2,2023-24,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,183,610.0 --Infinity,1,a-sust-i2,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75,Infinity --Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity --Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2023-24,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75,Infinity +NA,NA,a-sust-i2,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity +NA,NA,a-sust-i2,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2023-24,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity -0.784,1,a-sust-i2,2023-24,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 --Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity -3.52,1,a-sust-i2,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,360,720.0 --Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,981,Infinity +NA,NA,a-sust-i2,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,981,Infinity -2.336,1,a-sust-i2,2023-24,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,323,646.0 --Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity -3.04,1,a-sust-i2,2023-24,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,690,690.0 --Infinity,1,a-sust-i2,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity 0.16,1,a-sust-i2,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,490,490.0 --Infinity,1,a-sust-i2,2023-24,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628,Infinity +NA,NA,a-sust-i2,2023-24,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628,Infinity -2.944,1,a-sust-i2,2023-24,Hanover - Hanover High,01220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,684,684.0 --Infinity,1,a-sust-i2,2023-24,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity --Infinity,1,a-sust-i2,2023-24,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2023-24,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity +NA,NA,a-sust-i2,2023-24,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity 2.8,2.8,a-sust-i2,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,325,325.0 --Infinity,1,a-sust-i2,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity --Infinity,1,a-sust-i2,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1064,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1991,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2023-24,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity --Infinity,1,a-sust-i2,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,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.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2023-24,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2023-24,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1100,Infinity --Infinity,1,a-sust-i2,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity --Infinity,1,a-sust-i2,2023-24,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2023-24,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +NA,NA,a-sust-i2,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1064,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1991,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2023-24,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity +NA,NA,a-sust-i2,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,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.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2023-24,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2023-24,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1100,Infinity +NA,NA,a-sust-i2,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +NA,NA,a-sust-i2,2023-24,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2023-24,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity -26.133333333333336,1,a-sust-i2,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,640,2133.3333333333335 -13.408,1,a-sust-i2,2023-24,Holbrook - John F Kennedy,01330018, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,669,1338.0 --Infinity,1,a-sust-i2,2023-24,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2023-24,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity --Infinity,1,a-sust-i2,2023-24,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity --Infinity,1,a-sust-i2,2023-24,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity --Infinity,1,a-sust-i2,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1567,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2023-24,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,692,Infinity --Infinity,1,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2023-24,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2023-24,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity +NA,NA,a-sust-i2,2023-24,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2023-24,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity +NA,NA,a-sust-i2,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1567,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2023-24,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,692,Infinity +NA,NA,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity -9.536,1,a-sust-i2,2023-24,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,548,1096.0 --Infinity,1,a-sust-i2,2023-24,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2023-24,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity -94.24,1,a-sust-i2,2023-24,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,639,6390.0 -28.106666666666673,1,a-sust-i2,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,677,2256.666666666667 -91.28,1,a-sust-i2,2023-24,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,1241,6205.0 -22.72,1,a-sust-i2,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,960,1920.0 -7.36,1,a-sust-i2,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,96,960.0 -83.84,1,a-sust-i2,2023-24,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,574,5740.0 --Infinity,1,a-sust-i2,2023-24,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity --Infinity,1,a-sust-i2,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2023-24,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity --Infinity,1,a-sust-i2,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2023-24,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2023-24,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity +NA,NA,a-sust-i2,2023-24,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity +NA,NA,a-sust-i2,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2023-24,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity +NA,NA,a-sust-i2,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2023-24,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2023-24,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity -7.424,1,a-sust-i2,2023-24,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,482,964.0 -7.28,1,a-sust-i2,2023-24,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,382,955.0 -3.872,1,a-sust-i2,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,371,742.0 -3.808,1,a-sust-i2,2023-24,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,369,738.0 --Infinity,1,a-sust-i2,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1615,Infinity --Infinity,1,a-sust-i2,2023-24,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,707,Infinity +NA,NA,a-sust-i2,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1615,Infinity +NA,NA,a-sust-i2,2023-24,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,707,Infinity -1.136,1,a-sust-i2,2023-24,King Philip - King Philip Regional High,06900505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1142,571.0 -2.368,1,a-sust-i2,2023-24,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,648,648.0 -1.808,1,a-sust-i2,2023-24,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,613,613.0 --Infinity,1,a-sust-i2,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity 4.944,4.94,a-sust-i2,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,191,191.0 -43.936,1,a-sust-i2,2023-24,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,3246,3246.0 2.293333333333333,2.29,a-sust-i2,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,321,356.6666666666667 --Infinity,1,a-sust-i2,2023-24,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity 5.552,5,a-sust-i2,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,153,153.0 --Infinity,1,a-sust-i2,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,879,Infinity --Infinity,1,a-sust-i2,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2023-24,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2023-24,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,879,Infinity +NA,NA,a-sust-i2,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2023-24,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2023-24,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity 0.48,1,a-sust-i2,2023-24,Leicester - Leicester Elementary,01510005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,470,470.0 1.648,1.65,a-sust-i2,2023-24,Leicester - Leicester High,01510505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,397,397.0 --Infinity,1,a-sust-i2,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +NA,NA,a-sust-i2,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity 1.504,1.5,a-sust-i2,2023-24,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 --Infinity,1,a-sust-i2,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2023-24,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i2,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2023-24,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity -2.704,1,a-sust-i2,2023-24,Leominster - Northwest,01530030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,669,669.0 --Infinity,1,a-sust-i2,2023-24,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2023-24,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity --Infinity,1,a-sust-i2,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,810,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2318,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,927,Infinity --Infinity,1,a-sust-i2,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2023-24,Lincoln - Hanscom School,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2023-24,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2023-24,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity +NA,NA,a-sust-i2,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,810,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2318,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,927,Infinity +NA,NA,a-sust-i2,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2023-24,Lincoln - Hanscom School,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2023-24,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity -3.696,1,a-sust-i2,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1462,731.0 --Infinity,1,a-sust-i2,2023-24,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2023-24,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity -22.0,1,a-sust-i2,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,375,1875.0 -24.72,1,a-sust-i2,2023-24,Longmeadow - Center,01590010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,409,2045.0 -17.6,1,a-sust-i2,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,320,1600.0 -137.76,1,a-sust-i2,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,911,9110.0 -16.8,1,a-sust-i2,2023-24,Longmeadow - Williams Middle,01590305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,310,1550.0 -27.84,1,a-sust-i2,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,448,2240.0 --Infinity,1,a-sust-i2,2023-24,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3402,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity --Infinity,1,a-sust-i2,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2023-24,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity --Infinity,1,a-sust-i2,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity --Infinity,1,a-sust-i2,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3402,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i2,2023-24,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +NA,NA,a-sust-i2,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2023-24,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity -15.946666666666667,1,a-sust-i2,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,449,1496.6666666666667 -11.36,1,a-sust-i2,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,363,1210.0 4.872,4.87,a-sust-i2,2023-24,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,391,195.5 2.08,2.08,a-sust-i2,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 --Infinity,1,a-sust-i2,2023-24,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1253,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1878,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1253,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1878,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity -2.144,1,a-sust-i2,2023-24,Lynn - E J Harrington,01630045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,634,634.0 --Infinity,1,a-sust-i2,2023-24,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity -8.576,1,a-sust-i2,2023-24,Lynn - Lynn English High,01630510, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,2072,1036.0 -16.912,1,a-sust-i2,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1557,1557.0 --Infinity,1,a-sust-i2,2023-24,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1280,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity --Infinity,1,a-sust-i2,2023-24,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1280,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity +NA,NA,a-sust-i2,2023-24,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity -6.368,1,a-sust-i2,2023-24,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,449,898.0 -10.272,1,a-sust-i2,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,571,1142.0 -3.344,1,a-sust-i2,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,709,709.0 --Infinity,1,a-sust-i2,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity -5.376,1,a-sust-i2,2023-24,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,418,836.0 --Infinity,1,a-sust-i2,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, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2023-24,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity --Infinity,1,a-sust-i2,2023-24,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,905,Infinity --Infinity,1,a-sust-i2,2023-24,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2023-24,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity --Infinity,1,a-sust-i2,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2023-24,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1894,Infinity --Infinity,1,a-sust-i2,2023-24,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity --Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2023-24,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity +NA,NA,a-sust-i2,2023-24,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,905,Infinity +NA,NA,a-sust-i2,2023-24,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2023-24,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +NA,NA,a-sust-i2,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2023-24,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1894,Infinity +NA,NA,a-sust-i2,2023-24,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity +NA,NA,a-sust-i2,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity -3.392,1,a-sust-i2,2023-24,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,712,712.0 --Infinity,1,a-sust-i2,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity --Infinity,1,a-sust-i2,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity --Infinity,1,a-sust-i2,2023-24,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1035,Infinity +NA,NA,a-sust-i2,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +NA,NA,a-sust-i2,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity +NA,NA,a-sust-i2,2023-24,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1035,Infinity 6.4,5,a-sust-i2,2023-24,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,100,100.0 --Infinity,1,a-sust-i2,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2023-24,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2023-24,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity --Infinity,1,a-sust-i2,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2023-24,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2023-24,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2023-24,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2023-24,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity +NA,NA,a-sust-i2,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2023-24,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2023-24,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity -4.586666666666668,1,a-sust-i2,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,944,786.6666666666667 -2.48,1,a-sust-i2,2023-24,Marlborough - Charles Jaworek School,01700030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,655,655.0 --Infinity,1,a-sust-i2,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity -2.24,1,a-sust-i2,2023-24,Marlborough - Francis J Kane,01700008, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,512,640.0 --Infinity,1,a-sust-i2,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity +NA,NA,a-sust-i2,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity -8.208,1,a-sust-i2,2023-24,Marlborough - Marlborough High,01700505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1013,1013.0 -3.56,1,a-sust-i2,2023-24,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,578,722.5 3.664,3.66,a-sust-i2,2023-24,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,271,271.0 @@ -940,502 +940,502 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -5.584,1,a-sust-i2,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,849,849.0 -20.24,1,a-sust-i2,2023-24,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,353,1765.0 -5.131428571428573,1,a-sust-i2,2023-24,Marshfield - Marshfield High,01710505, 0.0, 1.0, 0.0, 0.0, 0.4, 0.0, 0.0, 1.4,1149,820.7142857142858 --Infinity,1,a-sust-i2,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +NA,NA,a-sust-i2,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity 0.752,1,a-sust-i2,2023-24,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,453,453.0 4.016,4.02,a-sust-i2,2023-24,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,249,249.0 --Infinity,1,a-sust-i2,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity --Infinity,1,a-sust-i2,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,975,Infinity --Infinity,1,a-sust-i2,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity --Infinity,1,a-sust-i2,2023-24,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2023-24,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2023-24,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1185,Infinity --Infinity,1,a-sust-i2,2023-24,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity +NA,NA,a-sust-i2,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,975,Infinity +NA,NA,a-sust-i2,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2023-24,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2023-24,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2023-24,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1185,Infinity +NA,NA,a-sust-i2,2023-24,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity -7.232,1,a-sust-i2,2023-24,Maynard - Fowler School,01740305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,476,952.0 2.7323076923076925,2.73,a-sust-i2,2023-24,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,428,329.2307692307692 5.624,5,a-sust-i2,2023-24,Maynard - Maynard High,01740505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,297,148.5 --Infinity,1,a-sust-i2,2023-24,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity --Infinity,1,a-sust-i2,2023-24,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2023-24,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2023-24,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2023-24,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2023-24,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity -9.184,1,a-sust-i2,2023-24,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,537,1074.0 --Infinity,1,a-sust-i2,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity -18.613333333333337,1,a-sust-i2,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,499,1663.3333333333335 -5.824,1,a-sust-i2,2023-24,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,432,864.0 -6.464,1,a-sust-i2,2023-24,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,452,904.0 -30.112,1,a-sust-i2,2023-24,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1191,2382.0 -22.453333333333337,1,a-sust-i2,2023-24,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,571,1903.3333333333335 -5.984,1,a-sust-i2,2023-24,Medford - Missituk Elementary School,01760140, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,437,874.0 --Infinity,1,a-sust-i2,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2023-24,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity +NA,NA,a-sust-i2,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2023-24,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity -2.64,1,a-sust-i2,2023-24,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,665,665.0 --Infinity,1,a-sust-i2,2023-24,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2023-24,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2023-24,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2023-24,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,959,Infinity --Infinity,1,a-sust-i2,2023-24,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity --Infinity,1,a-sust-i2,2023-24,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2023-24,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity --Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1033,Infinity --Infinity,1,a-sust-i2,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1148,Infinity --Infinity,1,a-sust-i2,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity --Infinity,1,a-sust-i2,2023-24,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1046,Infinity --Infinity,1,a-sust-i2,2023-24,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1898,Infinity --Infinity,1,a-sust-i2,2023-24,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1264,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,959,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2023-24,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1033,Infinity +NA,NA,a-sust-i2,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1148,Infinity +NA,NA,a-sust-i2,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity +NA,NA,a-sust-i2,2023-24,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1046,Infinity +NA,NA,a-sust-i2,2023-24,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1898,Infinity +NA,NA,a-sust-i2,2023-24,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1264,Infinity -1.344,1,a-sust-i2,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,584,584.0 -3.344,1,a-sust-i2,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,709,709.0 -11.552,1,a-sust-i2,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,611,1222.0 3.728,3.73,a-sust-i2,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,267,267.0 -5.232,1,a-sust-i2,2023-24,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,827,827.0 --Infinity,1,a-sust-i2,2023-24,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2023-24,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2023-24,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity --Infinity,1,a-sust-i2,2023-24,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2023-24,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1297,Infinity --Infinity,1,a-sust-i2,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i2,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,971,Infinity --Infinity,1,a-sust-i2,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978,Infinity --Infinity,1,a-sust-i2,2023-24,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity --Infinity,1,a-sust-i2,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity --Infinity,1,a-sust-i2,2023-24,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2023-24,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity --Infinity,1,a-sust-i2,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +NA,NA,a-sust-i2,2023-24,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2023-24,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2023-24,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2023-24,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2023-24,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1297,Infinity +NA,NA,a-sust-i2,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,971,Infinity +NA,NA,a-sust-i2,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978,Infinity +NA,NA,a-sust-i2,2023-24,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +NA,NA,a-sust-i2,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +NA,NA,a-sust-i2,2023-24,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2023-24,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity +NA,NA,a-sust-i2,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity -7.36,1,a-sust-i2,2023-24,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,960,960.0 -1.376,1,a-sust-i2,2023-24,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 -1.776,1,a-sust-i2,2023-24,Milton - Cunningham School,01890007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,611,611.0 -1.952,1,a-sust-i2,2023-24,Milton - Glover,01890010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,622,622.0 --Infinity,1,a-sust-i2,2023-24,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1092,Infinity --Infinity,1,a-sust-i2,2023-24,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2023-24,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1092,Infinity +NA,NA,a-sust-i2,2023-24,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity 0.714666666666667,1,a-sust-i2,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 0.6, 0.0, 0.5, 0.0, 0.4, 1.5,683,455.3333333333333 --Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity --Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +NA,NA,a-sust-i2,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity 0.576,1,a-sust-i2,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,464,464.0 -3.504,1,a-sust-i2,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,719,719.0 --Infinity,1,a-sust-i2,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2023-24,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2023-24,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2023-24,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2023-24,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2023-24,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2023-24,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity -3.424,1,a-sust-i2,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1428,714.0 --Infinity,1,a-sust-i2,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity -0.848,1,a-sust-i2,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 --Infinity,1,a-sust-i2,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1653,Infinity --Infinity,1,a-sust-i2,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity --Infinity,1,a-sust-i2,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2023-24,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2023-24,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,743,Infinity --Infinity,1,a-sust-i2,2023-24,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1653,Infinity +NA,NA,a-sust-i2,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2023-24,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2023-24,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,743,Infinity +NA,NA,a-sust-i2,2023-24,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity 0.624,1,a-sust-i2,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 --Infinity,1,a-sust-i2,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity +NA,NA,a-sust-i2,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity -4.368,1,a-sust-i2,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,773,773.0 0.192,1,a-sust-i2,2023-24,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,488,488.0 --Infinity,1,a-sust-i2,2023-24,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2023-24,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity 0.712,1,a-sust-i2,2023-24,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,911,455.5 --Infinity,1,a-sust-i2,2023-24,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2023-24,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity 1.44,1.44,a-sust-i2,2023-24,Natick - Lilja Elementary,01980035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,410,410.0 0.896,1,a-sust-i2,2023-24,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,444,444.0 -19.888,1,a-sust-i2,2023-24,Natick - Natick High,01980505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1743,1743.0 -3.968,1,a-sust-i2,2023-24,Natick - Wilson Middle,01980310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,748,748.0 --Infinity,1,a-sust-i2,2023-24,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,751,Infinity --Infinity,1,a-sust-i2,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2023-24,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2023-24,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,751,Infinity +NA,NA,a-sust-i2,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2023-24,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity -6.304,1,a-sust-i2,2023-24,Needham - High Rock School,01990410, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,447,894.0 -8.08,1,a-sust-i2,2023-24,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,402,1005.0 -17.952,1,a-sust-i2,2023-24,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1622,1622.0 -14.336,1,a-sust-i2,2023-24,Needham - Newman Elementary,01990050, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,698,1396.0 --Infinity,1,a-sust-i2,2023-24,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,880,Infinity --Infinity,1,a-sust-i2,2023-24,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2023-24,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2023-24,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,880,Infinity +NA,NA,a-sust-i2,2023-24,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2023-24,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity -5.696,1,a-sust-i2,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,856,856.0 --Infinity,1,a-sust-i2,2023-24,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity -4.48,1,a-sust-i2,2023-24,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,234,780.0 --Infinity,1,a-sust-i2,2023-24,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity -26.88,1,a-sust-i2,2023-24,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,872,2180.0 --Infinity,1,a-sust-i2,2023-24,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2893,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1038,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity --Infinity,1,a-sust-i2,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2893,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1038,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity +NA,NA,a-sust-i2,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity -5.92,1,a-sust-i2,2023-24,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,261,870.0 --Infinity,1,a-sust-i2,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity --Infinity,1,a-sust-i2,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +NA,NA,a-sust-i2,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +NA,NA,a-sust-i2,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity 3.2,3.2,a-sust-i2,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 -1.664,1,a-sust-i2,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,604,604.0 -4.56,1,a-sust-i2,2023-24,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,785,785.0 --Infinity,1,a-sust-i2,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity 1.856,1.86,a-sust-i2,2023-24,Newton - A E Angier,02070005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,384,384.0 --Infinity,1,a-sust-i2,2023-24,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2023-24,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2023-24,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2023-24,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2023-24,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity -15.424,1,a-sust-i2,2023-24,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,732,1464.0 1.6,1.6,a-sust-i2,2023-24,Newton - Countryside,02070040, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,360,400.0 -5.888,1,a-sust-i2,2023-24,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,868,868.0 --Infinity,1,a-sust-i2,2023-24,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity 0.8,1,a-sust-i2,2023-24,Newton - Horace Mann,02070075, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,360,450.0 --Infinity,1,a-sust-i2,2023-24,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2023-24,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2023-24,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2023-24,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity 5.04,5,a-sust-i2,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,185,185.0 -3.296,1,a-sust-i2,2023-24,Newton - Newton North High,02070505, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,2118,706.0 --Infinity,1,a-sust-i2,2023-24,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1861,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1861,Infinity -2.368,1,a-sust-i2,2023-24,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,648,648.0 4.224,4.22,a-sust-i2,2023-24,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,236,236.0 1.546666666666666,1.55,a-sust-i2,2023-24,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,242,403.33333333333337 --Infinity,1,a-sust-i2,2023-24,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2023-24,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity 1.616,1.62,a-sust-i2,2023-24,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,399,399.0 --Infinity,1,a-sust-i2,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity --Infinity,1,a-sust-i2,2023-24,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2023-24,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2023-24,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2023-24,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2023-24,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2023-24,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2023-24,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2023-24,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity 3.594666666666667,3.59,a-sust-i2,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,413,275.3333333333333 --Infinity,1,a-sust-i2,2023-24,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2023-24,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2023-24,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2023-24,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity -22.4,1,a-sust-i2,2023-24,North Andover - Franklin,02110010, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,380,1900.0 --Infinity,1,a-sust-i2,2023-24,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2023-24,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity -28.8,1,a-sust-i2,2023-24,North Andover - North Andover High,02110505, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,1380,2300.0 -2.17,1,a-sust-i2,2023-24,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,1017,635.625 --Infinity,1,a-sust-i2,2023-24,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2023-24,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity 3.392,3.39,a-sust-i2,2023-24,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 --Infinity,1,a-sust-i2,2023-24,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2023-24,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity -2.79,1,a-sust-i2,2023-24,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,1079,674.375 --Infinity,1,a-sust-i2,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity -30.56,1,a-sust-i2,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,964,2410.0 --Infinity,1,a-sust-i2,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity --Infinity,1,a-sust-i2,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2023-24,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity +NA,NA,a-sust-i2,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2023-24,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity -3.76,1,a-sust-i2,2023-24,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,294,735.0 -5.12,1,a-sust-i2,2023-24,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,410,820.0 --Infinity,1,a-sust-i2,2023-24,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2023-24,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity 5.091764705882353,5,a-sust-i2,2023-24,North Reading - North Reading High,02170505, 0.0, 1.5, 1.9, 0.0, 0.0, 0.0, 0.0, 3.4,618,181.76470588235296 4.5248,4.52,a-sust-i2,2023-24,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.5, 1.0, 1.0, 0.0, 0.0, 2.5,543,217.2 --Infinity,1,a-sust-i2,2023-24,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2023-24,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2023-24,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2023-24,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity 3.552,3.55,a-sust-i2,2023-24,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 --Infinity,1,a-sust-i2,2023-24,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,907,Infinity --Infinity,1,a-sust-i2,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2023-24,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,907,Infinity +NA,NA,a-sust-i2,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity -1.104,1,a-sust-i2,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 -2.6133333333333337,1,a-sust-i2,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 1.0, 0.0, 0.4, 0.4, 0.0, 0.0, 1.8,1194,663.3333333333334 --Infinity,1,a-sust-i2,2023-24,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2023-24,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity 3.488,3.49,a-sust-i2,2023-24,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,282,282.0 3.504,3.5,a-sust-i2,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 3.92,3.92,a-sust-i2,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,255,255.0 --Infinity,1,a-sust-i2,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity --Infinity,1,a-sust-i2,2023-24,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,960,Infinity --Infinity,1,a-sust-i2,2023-24,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1343,Infinity --Infinity,1,a-sust-i2,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2023-24,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity --Infinity,1,a-sust-i2,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2023-24,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,960,Infinity +NA,NA,a-sust-i2,2023-24,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1343,Infinity +NA,NA,a-sust-i2,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2023-24,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity -2.96,1,a-sust-i2,2023-24,Norton - Norton High,02180505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,685,685.0 --Infinity,1,a-sust-i2,2023-24,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2023-24,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2023-24,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,596,Infinity --Infinity,1,a-sust-i2,2023-24,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2023-24,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,791,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2023-24,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,951,Infinity --Infinity,1,a-sust-i2,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2023-24,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2023-24,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2023-24,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,596,Infinity +NA,NA,a-sust-i2,2023-24,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2023-24,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,791,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2023-24,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,951,Infinity +NA,NA,a-sust-i2,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity -1.76,1,a-sust-i2,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,610,610.0 --Infinity,1,a-sust-i2,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity 2.432,2.43,a-sust-i2,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 --Infinity,1,a-sust-i2,2023-24,Orange - Fisher Hill School,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity --Infinity,1,a-sust-i2,2023-24,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2023-24,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2023-24,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2023-24,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +NA,NA,a-sust-i2,2023-24,Orange - Fisher Hill School,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2023-24,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2023-24,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2023-24,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2023-24,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity -10.432,1,a-sust-i2,2023-24,Palmer - Old Mill Pond,02270008, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,576,1152.0 -8.288,1,a-sust-i2,2023-24,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,509,1018.0 -12.576,1,a-sust-i2,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,643,1286.0 --Infinity,1,a-sust-i2,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1283,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1420,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2023-24,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2023-24,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1283,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1420,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2023-24,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2023-24,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity 0.944,1,a-sust-i2,2023-24,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,441,441.0 --Infinity,1,a-sust-i2,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity 0.608,1,a-sust-i2,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,231,462.0 -2.432,1,a-sust-i2,2023-24,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,326,652.0 2.474666666666667,2.47,a-sust-i2,2023-24,Pentucket - Elmer S Bagnall,07450005, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,518,345.3333333333333 0.16,1,a-sust-i2,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,245,490.0 2.704,2.7,a-sust-i2,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,331,331.0 -10.368,1,a-sust-i2,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,574,1148.0 --Infinity,1,a-sust-i2,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,779,Infinity --Infinity,1,a-sust-i2,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,779,Infinity +NA,NA,a-sust-i2,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity 2.624,2.62,a-sust-i2,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,168,336.0 --Infinity,1,a-sust-i2,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity -9.664,1,a-sust-i2,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,552,1104.0 1.616,1.62,a-sust-i2,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,399,399.0 --Infinity,1,a-sust-i2,2023-24,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,875,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2023-24,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2023-24,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,875,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2023-24,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2023-24,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity 1.872,1.87,a-sust-i2,2023-24,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 4.512,4.51,a-sust-i2,2023-24,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 -0.688,1,a-sust-i2,2023-24,Plymouth - Indian Brook,02390012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 3.632,3.63,a-sust-i2,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,273,273.0 --Infinity,1,a-sust-i2,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity -0.71,1,a-sust-i2,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,871,544.375 --Infinity,1,a-sust-i2,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity -11.952,1,a-sust-i2,2023-24,Plymouth - Plymouth North High,02390505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1247,1247.0 -8.048,1,a-sust-i2,2023-24,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1003,1003.0 --Infinity,1,a-sust-i2,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity +NA,NA,a-sust-i2,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity 2.976,2.98,a-sust-i2,2023-24,Plymouth - South Elementary,02390046, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,628,314.0 2.512,2.51,a-sust-i2,2023-24,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 3.952,3.95,a-sust-i2,2023-24,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,253,253.0 0.664,1,a-sust-i2,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,917,458.5 --Infinity,1,a-sust-i2,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity --Infinity,1,a-sust-i2,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity --Infinity,1,a-sust-i2,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,156,Infinity --Infinity,1,a-sust-i2,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2023-24,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity --Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +NA,NA,a-sust-i2,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +NA,NA,a-sust-i2,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,156,Infinity +NA,NA,a-sust-i2,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2023-24,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity +NA,NA,a-sust-i2,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity -5.6,1,a-sust-i2,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,170,850.0 -1.92,1,a-sust-i2,2023-24,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,248,620.0 -21.866666666666667,1,a-sust-i2,2023-24,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,560,1866.6666666666667 -19.12,1,a-sust-i2,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,339,1695.0 -8.96,1,a-sust-i2,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,318,1060.0 --Infinity,1,a-sust-i2,2023-24,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +NA,NA,a-sust-i2,2023-24,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity -9.813333333333336,1,a-sust-i2,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,334,1113.3333333333335 -20.213333333333335,1,a-sust-i2,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,529,1763.3333333333335 --Infinity,1,a-sust-i2,2023-24,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2023-24,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity -22.24,1,a-sust-i2,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,567,1890.0 -17.52,1,a-sust-i2,2023-24,Quincy - Merrymount,02430060, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,319,1595.0 --Infinity,1,a-sust-i2,2023-24,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2023-24,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity -40.256,1,a-sust-i2,2023-24,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1508,3016.0 -5.056,1,a-sust-i2,2023-24,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.3, 0.3, 0.0, 0.0, 0.5,408,816.0 -39.136,1,a-sust-i2,2023-24,Quincy - Quincy High,02430505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1473,2946.0 -4.448,1,a-sust-i2,2023-24,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.5,389,778.0 -27.44,1,a-sust-i2,2023-24,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,443,2215.0 --Infinity,1,a-sust-i2,2023-24,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2023-24,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity -8.8,1,a-sust-i2,2023-24,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,315,1050.0 -8.128,1,a-sust-i2,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,504,1008.0 --Infinity,1,a-sust-i2,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2023-24,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2023-24,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2023-24,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2023-24,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity +NA,NA,a-sust-i2,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2023-24,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2023-24,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2023-24,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2023-24,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity 2.304,2.3,a-sust-i2,2023-24,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 4.776,4.78,a-sust-i2,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,403,201.5 2.064,2.06,a-sust-i2,2023-24,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 --Infinity,1,a-sust-i2,2023-24,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2023-24,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2023-24,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +NA,NA,a-sust-i2,2023-24,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2023-24,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2023-24,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity -0.776,1,a-sust-i2,2023-24,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1097,548.5 4.392,4.39,a-sust-i2,2023-24,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,451,225.5 4.016,4.02,a-sust-i2,2023-24,Reading - Wood End Elementary School,02460020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 --Infinity,1,a-sust-i2,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2098,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity --Infinity,1,a-sust-i2,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity --Infinity,1,a-sust-i2,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2023-24,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2098,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity +NA,NA,a-sust-i2,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2023-24,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity -29.173333333333336,1,a-sust-i2,2023-24,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,697,2323.3333333333335 2.88,2.88,a-sust-i2,2023-24,Rockland - Phelps Elementary School,02510060, 0.0, 1.5, 0.5, 0.0, 0.0, 0.0, 0.0, 2.0,640,320.0 -4.053333333333334,1,a-sust-i2,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,226,753.3333333333334 --Infinity,1,a-sust-i2,2023-24,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity --Infinity,1,a-sust-i2,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2023-24,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity +NA,NA,a-sust-i2,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity 0.768,1,a-sust-i2,2023-24,Rockport - Rockport High,02520510, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,226,452.0 2.464,2.46,a-sust-i2,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,173,346.0 --Infinity,1,a-sust-i2,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity --Infinity,1,a-sust-i2,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1138,Infinity --Infinity,1,a-sust-i2,2023-24,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2023-24,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2023-24,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1138,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity -1.824,1,a-sust-i2,2023-24,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,307,614.0 --Infinity,1,a-sust-i2,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity --Infinity,1,a-sust-i2,2023-24,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112,Infinity --Infinity,1,a-sust-i2,2023-24,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity +NA,NA,a-sust-i2,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity 6.64,5,a-sust-i2,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,17,85.0 --Infinity,1,a-sust-i2,2023-24,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2023-24,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2023-24,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity -9.376,1,a-sust-i2,2023-24,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,543,1086.0 -2.784,1,a-sust-i2,2023-24,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,674,674.0 --Infinity,1,a-sust-i2,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity --Infinity,1,a-sust-i2,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity --Infinity,1,a-sust-i2,2023-24,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity --Infinity,1,a-sust-i2,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity +NA,NA,a-sust-i2,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity +NA,NA,a-sust-i2,2023-24,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity +NA,NA,a-sust-i2,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity 2.128,2.13,a-sust-i2,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,367,367.0 -1.824,1,a-sust-i2,2023-24,Scituate - Gates Middle School,02640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,614,614.0 4.0,4.0,a-sust-i2,2023-24,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,250,250.0 2.64,2.64,a-sust-i2,2023-24,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 -3.984,1,a-sust-i2,2023-24,Scituate - Scituate High School,02640505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,749,749.0 1.12,1.12,a-sust-i2,2023-24,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,430,430.0 --Infinity,1,a-sust-i2,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2023-24,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2023-24,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity --Infinity,1,a-sust-i2,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2023-24,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2023-24,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +NA,NA,a-sust-i2,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity 0.24,1,a-sust-i2,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,485,485.0 --Infinity,1,a-sust-i2,2023-24,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2023-24,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity -10.112,1,a-sust-i2,2023-24,Sharon - Sharon High,02660505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1132,1132.0 --Infinity,1,a-sust-i2,2023-24,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +NA,NA,a-sust-i2,2023-24,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity -12.896,1,a-sust-i2,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1306,1306.0 --Infinity,1,a-sust-i2,2023-24,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1879,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2023-24,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1879,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity 5.78,5,a-sust-i2,2023-24,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,111,138.75 -33.04,1,a-sust-i2,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,1026,2565.0 -1.008,1,a-sust-i2,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,563,563.0 --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0, 0.0,302,Infinity -8.266666666666667,1,a-sust-i2,2023-24,Somerset - Chace Street,02730005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,305,1016.6666666666667 -6.848,1,a-sust-i2,2023-24,Somerset - North Elementary,02730008, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,464,928.0 --Infinity,1,a-sust-i2,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity -5.973333333333334,1,a-sust-i2,2023-24,Somerset - South,02730015, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,262,873.3333333333334 -22.72,1,a-sust-i2,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,960,1920.0 --Infinity,1,a-sust-i2,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,743,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1373,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,743,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1373,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity -3.52,1,a-sust-i2,2023-24,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,360,720.0 -0.48,1,a-sust-i2,2023-24,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,265,530.0 --Infinity,1,a-sust-i2,2023-24,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2023-24,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity -1.290666666666666,1,a-sust-i2,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 0.0, 1.5,871,580.6666666666666 --Infinity,1,a-sust-i2,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1055,Infinity --Infinity,1,a-sust-i2,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2023-24,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1055,Infinity +NA,NA,a-sust-i2,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2023-24,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity 4.048,4.05,a-sust-i2,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 3.44,3.44,a-sust-i2,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,285,285.0 2.16,2.16,a-sust-i2,2023-24,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,365,365.0 4.744,4.74,a-sust-i2,2023-24,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,407,203.5 --Infinity,1,a-sust-i2,2023-24,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2023-24,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2023-24,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2023-24,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity -6.88,1,a-sust-i2,2023-24,Southbridge - Southbridge High School,02770515, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,465,930.0 --Infinity,1,a-sust-i2,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity 2.752,2.75,a-sust-i2,2023-24,Southbridge - West Street,02770020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 -17.552,1,a-sust-i2,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1597,1597.0 --Infinity,1,a-sust-i2,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity --Infinity,1,a-sust-i2,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,1193,Infinity +NA,NA,a-sust-i2,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +NA,NA,a-sust-i2,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,1193,Infinity -2.16,1,a-sust-i2,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.6,381,635.0 -1.824,1,a-sust-i2,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,614,614.0 -2.24,1,a-sust-i2,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,320,640.0 @@ -1443,117 +1443,117 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.096,1,a-sust-i2,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,247,494.0 -12.746666666666668,1,a-sust-i2,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,389,1296.6666666666667 -6.432,1,a-sust-i2,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,451,902.0 --Infinity,1,a-sust-i2,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Benjamin Swan Elementary,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1060,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - John J Duggan Academy,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1383,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2042,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - The Springfield Virtual School,02810705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1478,Infinity --Infinity,1,a-sust-i2,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2023-24,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2023-24,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2023-24,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity --Infinity,1,a-sust-i2,2023-24,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2023-24,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Benjamin Swan Elementary,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1060,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - John J Duggan Academy,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1383,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2042,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - The Springfield Virtual School,02810705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2023-24,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1478,Infinity +NA,NA,a-sust-i2,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2023-24,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2023-24,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2023-24,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +NA,NA,a-sust-i2,2023-24,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2023-24,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity 3.189333333333333,3.19,a-sust-i2,2023-24,Sturbridge - Burgess Elementary,02870005, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,902,300.6666666666667 --Infinity,1,a-sust-i2,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity --Infinity,1,a-sust-i2,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity +NA,NA,a-sust-i2,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity +NA,NA,a-sust-i2,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity 5.328,5,a-sust-i2,2023-24,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,334,167.0 --Infinity,1,a-sust-i2,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity -12.746666666666668,1,a-sust-i2,2023-24,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,389,1296.6666666666667 --Infinity,1,a-sust-i2,2023-24,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2023-24,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2023-24,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2023-24,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2023-24,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2023-24,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2023-24,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2023-24,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity 1.408,1.41,a-sust-i2,2023-24,Swampscott - Clarke,02910005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,206,412.0 -3.392,1,a-sust-i2,2023-24,Swampscott - Hadley,02910010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,356,712.0 2.784,2.78,a-sust-i2,2023-24,Swampscott - Stanley,02910020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,163,326.0 -13.312,1,a-sust-i2,2023-24,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,666,1332.0 -2.992,1,a-sust-i2,2023-24,Swampscott - Swampscott Middle,02910305, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,687,687.0 --Infinity,1,a-sust-i2,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2023-24,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2023-24,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity -1.184,1,a-sust-i2,2023-24,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,574,574.0 --Infinity,1,a-sust-i2,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity -38.512,1,a-sust-i2,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,2907,2907.0 --Infinity,1,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity --Infinity,1,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity -10.453333333333335,1,a-sust-i2,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.6,692,1153.3333333333335 -6.293333333333334,1,a-sust-i2,2023-24,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,536,893.3333333333334 --Infinity,1,a-sust-i2,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity -2.44,1,a-sust-i2,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,261,652.5 -11.264,1,a-sust-i2,2023-24,Taunton - Elizabeth Pole,02930027, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,602,1204.0 -6.88,1,a-sust-i2,2023-24,Taunton - H H Galligan,02930057, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,279,930.0 @@ -1563,65 +1563,65 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.52,1,a-sust-i2,2023-24,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.2, 0.0, 0.0, 0.8, 0.0, 0.9,648,720.0 6.3,5,a-sust-i2,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,85,106.25 -25.107692307692304,1,a-sust-i2,2023-24,Taunton - Taunton High,02930505, 0.0, 0.8, 0.0, 0.5, 0.0, 0.0, 0.0, 1.3,2690,2069.230769230769 --Infinity,1,a-sust-i2,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,767,Infinity --Infinity,1,a-sust-i2,2023-24,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity --Infinity,1,a-sust-i2,2023-24,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity --Infinity,1,a-sust-i2,2023-24,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2023-24,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2023-24,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2023-24,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,767,Infinity +NA,NA,a-sust-i2,2023-24,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity +NA,NA,a-sust-i2,2023-24,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity +NA,NA,a-sust-i2,2023-24,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2023-24,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2023-24,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2023-24,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity 3.146666666666666,3.15,a-sust-i2,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,91,303.33333333333337 -0.032,1,a-sust-i2,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,753,502.0 --Infinity,1,a-sust-i2,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity 5.344,5,a-sust-i2,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,166,166.0 -1.248,1,a-sust-i2,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,578,578.0 --Infinity,1,a-sust-i2,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity -5.216,1,a-sust-i2,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,826,826.0 --Infinity,1,a-sust-i2,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity --Infinity,1,a-sust-i2,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i2,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity -1.312,1,a-sust-i2,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,582,582.0 0.384,1,a-sust-i2,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,476,476.0 -1.84,1,a-sust-i2,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,615,615.0 -4.16,1,a-sust-i2,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,380,760.0 --Infinity,1,a-sust-i2,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity -7.2,1,a-sust-i2,2023-24,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,475,950.0 -7.616,1,a-sust-i2,2023-24,Wachusett - Dawson,07750020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,488,976.0 --Infinity,1,a-sust-i2,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +NA,NA,a-sust-i2,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity -3.136,1,a-sust-i2,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,348,696.0 --Infinity,1,a-sust-i2,2023-24,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2023-24,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity -7.328,1,a-sust-i2,2023-24,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,479,958.0 -16.032,1,a-sust-i2,2023-24,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,751,1502.0 -4.096,1,a-sust-i2,2023-24,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,378,756.0 -5.824,1,a-sust-i2,2023-24,Wachusett - Paxton Center,07750040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,432,864.0 --Infinity,1,a-sust-i2,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity -11.850666666666667,1,a-sust-i2,2023-24,Wachusett - Wachusett Regional High,07750505, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,1861,1240.6666666666667 --Infinity,1,a-sust-i2,2023-24,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2023-24,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity -0.416,1,a-sust-i2,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1052,526.0 --Infinity,1,a-sust-i2,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,840,Infinity --Infinity,1,a-sust-i2,2023-24,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity --Infinity,1,a-sust-i2,2023-24,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2023-24,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2023-24,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,946,Infinity +NA,NA,a-sust-i2,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,840,Infinity +NA,NA,a-sust-i2,2023-24,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2023-24,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2023-24,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2023-24,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,946,Infinity -4.666666666666668,1,a-sust-i2,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,475,791.6666666666667 -26.88,1,a-sust-i2,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,218,2180.0 -53.76,1,a-sust-i2,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,386,3860.0 @@ -1632,159 +1632,159 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -48.32,1,a-sust-i2,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,352,3520.0 -24.284444444444446,1,a-sust-i2,2023-24,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.8, 0.1, 0.0, 0.0, 0.0, 0.9,1816,2017.7777777777778 -52.16,1,a-sust-i2,2023-24,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,376,3760.0 --Infinity,1,a-sust-i2,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity --Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,933,Infinity --Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity --Infinity,1,a-sust-i2,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity --Infinity,1,a-sust-i2,2023-24,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2023-24,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity --Infinity,1,a-sust-i2,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2023-24,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity --Infinity,1,a-sust-i2,2023-24,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i2,2023-24,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,933,Infinity +NA,NA,a-sust-i2,2023-24,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2023-24,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +NA,NA,a-sust-i2,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2023-24,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2023-24,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +NA,NA,a-sust-i2,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2023-24,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity +NA,NA,a-sust-i2,2023-24,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity 0.176,1,a-sust-i2,2023-24,Wayland - Claypit Hill School,03150005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0,489,489.0 4.32,4.32,a-sust-i2,2023-24,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,345,230.0 1.968,1.97,a-sust-i2,2023-24,Wayland - Loker School,03150020, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,377,377.0 --Infinity,1,a-sust-i2,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2023-24,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity +NA,NA,a-sust-i2,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2023-24,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity 0.8853333333333331,1,a-sust-i2,2023-24,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 1.5,667,444.6666666666667 --Infinity,1,a-sust-i2,2023-24,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2023-24,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,734,Infinity +NA,NA,a-sust-i2,2023-24,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2023-24,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,734,Infinity -10.944,1,a-sust-i2,2023-24,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,592,1184.0 --Infinity,1,a-sust-i2,2023-24,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity --Infinity,1,a-sust-i2,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1358,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity +NA,NA,a-sust-i2,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1358,Infinity 5.088,5,a-sust-i2,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,91,182.0 --Infinity,1,a-sust-i2,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity 3.056,3.06,a-sust-i2,2023-24,West Bridgewater - Howard School,03230305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,309,309.0 2.784,2.78,a-sust-i2,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,326,326.0 --Infinity,1,a-sust-i2,2023-24,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2023-24,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity -11.808,1,a-sust-i2,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,619,1238.0 -2.88,1,a-sust-i2,2023-24,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,204,680.0 --Infinity,1,a-sust-i2,2023-24,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2023-24,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity 2.453333333333333,2.45,a-sust-i2,2023-24,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,208,346.6666666666667 -14.4,1,a-sust-i2,2023-24,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,140,1400.0 -22.56,1,a-sust-i2,2023-24,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,573,1910.0 -5.973333333333334,1,a-sust-i2,2023-24,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,262,873.3333333333334 -30.656,1,a-sust-i2,2023-24,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1208,2416.0 -21.632,1,a-sust-i2,2023-24,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.2, 0.5,926,1852.0 --Infinity,1,a-sust-i2,2023-24,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2023-24,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity 0.144,1,a-sust-i2,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,491,491.0 1.808,1.81,a-sust-i2,2023-24,Westborough - J Harding Armstrong,03210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 --Infinity,1,a-sust-i2,2023-24,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,876,Infinity +NA,NA,a-sust-i2,2023-24,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,876,Infinity -1.616,1,a-sust-i2,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,601,601.0 -9.483636363636364,1,a-sust-i2,2023-24,Westborough - Westborough High,03210505, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,1202,1092.7272727272727 --Infinity,1,a-sust-i2,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1006,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity --Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2023-24,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1444,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1006,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2023-24,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1444,Infinity -0.32,1,a-sust-i2,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,104,520.0 -42.88,1,a-sust-i2,2023-24,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,318,3180.0 --Infinity,1,a-sust-i2,2023-24,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2023-24,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity -0.14769230769230762,1,a-sust-i2,2023-24,Weston - Weston High,03300505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.3, 0.0, 1.3,662,509.2307692307692 3.1085714285714285,3.11,a-sust-i2,2023-24,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.5, 0.8, 0.1, 0.0, 1.4,428,305.7142857142857 -43.84,1,a-sust-i2,2023-24,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,324,3240.0 --Infinity,1,a-sust-i2,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity --Infinity,1,a-sust-i2,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i2,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity -6.08,1,a-sust-i2,2023-24,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,880,880.0 2.976,2.98,a-sust-i2,2023-24,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 --Infinity,1,a-sust-i2,2023-24,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2023-24,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity 5.555555555555555,5,a-sust-i2,2023-24,Westwood - Martha Jones,03350017, 0.0, 1.0, 0.0, 0.8, 0.0, 0.0, 0.0, 1.8,275,152.77777777777777 4.632,4.63,a-sust-i2,2023-24,Westwood - Pine Hill Elementary School,03350030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,421,210.5 3.338666666666667,3.34,a-sust-i2,2023-24,Westwood - Westwood High,03350505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,874,291.3333333333333 --Infinity,1,a-sust-i2,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity 3.2,3.2,a-sust-i2,2023-24,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,300,300.0 --Infinity,1,a-sust-i2,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1187,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1751,Infinity --Infinity,1,a-sust-i2,2023-24,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1187,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1751,Infinity +NA,NA,a-sust-i2,2023-24,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity 6.0,5,a-sust-i2,2023-24,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,125,125.0 --Infinity,1,a-sust-i2,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity -7.936,1,a-sust-i2,2023-24,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,498,996.0 --Infinity,1,a-sust-i2,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity -7.2,1,a-sust-i2,2023-24,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,475,950.0 --Infinity,1,a-sust-i2,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity -25.248,1,a-sust-i2,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1039,2078.0 -8.224,1,a-sust-i2,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,507,1014.0 -2.232,1,a-sust-i2,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1279,639.5 -1.84,1,a-sust-i2,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,123,615.0 --Infinity,1,a-sust-i2,2023-24,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity --Infinity,1,a-sust-i2,2023-24,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2023-24,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2023-24,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity 3.632,3.63,a-sust-i2,2023-24,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,273,273.0 --Infinity,1,a-sust-i2,2023-24,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity --Infinity,1,a-sust-i2,2023-24,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity +NA,NA,a-sust-i2,2023-24,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +NA,NA,a-sust-i2,2023-24,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity 2.272,2.27,a-sust-i2,2023-24,Wilmington - Woburn Street,03420020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 --Infinity,1,a-sust-i2,2023-24,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity --Infinity,1,a-sust-i2,2023-24,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2023-24,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2023-24,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1039,Infinity --Infinity,1,a-sust-i2,2023-24,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2023-24,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1372,Infinity --Infinity,1,a-sust-i2,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2023-24,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2023-24,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228,Infinity +NA,NA,a-sust-i2,2023-24,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +NA,NA,a-sust-i2,2023-24,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2023-24,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2023-24,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1039,Infinity +NA,NA,a-sust-i2,2023-24,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2023-24,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1372,Infinity +NA,NA,a-sust-i2,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2023-24,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2023-24,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228,Infinity -10.656,1,a-sust-i2,2023-24,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,583,1166.0 -13.888,1,a-sust-i2,2023-24,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,684,1368.0 -9.984,1,a-sust-i2,2023-24,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1124,1124.0 --Infinity,1,a-sust-i2,2023-24,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity -5.4,1,a-sust-i2,2023-24,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,335,837.5 -5.152,1,a-sust-i2,2023-24,Worcester - Chandler Elementary Community,03480050, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,411,822.0 --Infinity,1,a-sust-i2,2023-24,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity --Infinity,1,a-sust-i2,2023-24,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity -7.296,1,a-sust-i2,2023-24,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,478,956.0 -2.44,1,a-sust-i2,2023-24,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,261,652.5 -4.0,1,a-sust-i2,2023-24,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,375,750.0 @@ -1796,200 +1796,200 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.752,1,a-sust-i2,2023-24,Worcester - Gates Lane,03480110, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,547,547.0 -4.096,1,a-sust-i2,2023-24,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,378,756.0 1.632,1.63,a-sust-i2,2023-24,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 --Infinity,1,a-sust-i2,2023-24,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity 3.984,3.98,a-sust-i2,2023-24,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,251,251.0 -2.16,1,a-sust-i2,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,381,635.0 -3.44,1,a-sust-i2,2023-24,Worcester - Lake View,03480145, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,286,715.0 1.12,1.12,a-sust-i2,2023-24,Worcester - Lincoln Street,03480160, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,215,430.0 --Infinity,1,a-sust-i2,2023-24,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity 0.384,1,a-sust-i2,2023-24,Worcester - Midland Street,03480185, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,238,476.0 -2.4888888888888885,1,a-sust-i2,2023-24,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,590,655.5555555555555 -0.7288888888888887,1,a-sust-i2,2023-24,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,491,545.5555555555555 -14.72,1,a-sust-i2,2023-24,Worcester - North High,03480515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1420,1420.0 -3.44,1,a-sust-i2,2023-24,Worcester - Quinsigamond,03480210, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,715,715.0 --Infinity,1,a-sust-i2,2023-24,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity -11.072,1,a-sust-i2,2023-24,Worcester - Roosevelt,03480220, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,596,1192.0 -20.656,1,a-sust-i2,2023-24,Worcester - South High Community,03480520, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1791,1791.0 -1.0026666666666662,1,a-sust-i2,2023-24,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,844,562.6666666666666 -4.16,1,a-sust-i2,2023-24,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,380,760.0 --Infinity,1,a-sust-i2,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity 2.096,2.1,a-sust-i2,2023-24,Worcester - Union Hill School,03480240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 4.096,4.1,a-sust-i2,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,244,244.0 -0.6755555555555548,1,a-sust-i2,2023-24,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,488,542.2222222222222 3.2,3.2,a-sust-i2,2023-24,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,150,300.0 2.144,2.14,a-sust-i2,2023-24,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,366,366.0 -7.648,1,a-sust-i2,2023-24,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,489,978.0 --Infinity,1,a-sust-i2,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity -14.24,1,a-sust-i2,2023-24,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,695,1390.0 -7.349333333333334,1,a-sust-i2,2023-24,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,1439,959.3333333333334 --Infinity,1,a-sust-i2,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity --Infinity,1,a-sust-i2,2023-24,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2023-24,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity -0.4571428571428569,1,a-sust-i2,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,370,528.5714285714286 -5.965714285714286,1,a-sust-i2,2023-24,Wrentham - Delaney,03500003, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,611,872.8571428571429 --Infinity,1,a-sust-i2,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1422,Infinity --Infinity,1,a-sust-i2,2022-23,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity +NA,NA,a-sust-i2,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1422,Infinity +NA,NA,a-sust-i2,2022-23,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity -0.768,1,a-sust-i2,2022-23,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,548,548.0 2.824,2.82,a-sust-i2,2022-23,Abington - Abington Middle School,00010405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,647,323.5 --Infinity,1,a-sust-i2,2022-23,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2022-23,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2022-23,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2022-23,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity -16.906666666666666,1,a-sust-i2,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,467,1556.6666666666667 --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1683,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1683,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity -9.792,1,a-sust-i2,2022-23,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,556,1112.0 --Infinity,1,a-sust-i2,2022-23,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1052,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2022-23,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1038,Infinity +NA,NA,a-sust-i2,2022-23,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1052,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2022-23,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1038,Infinity 2.752,2.75,a-sust-i2,2022-23,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 --Infinity,1,a-sust-i2,2022-23,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2022-23,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity --Infinity,1,a-sust-i2,2022-23,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity --Infinity,1,a-sust-i2,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2022-23,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2022-23,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2022-23,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity --Infinity,1,a-sust-i2,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1702,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity --Infinity,1,a-sust-i2,2022-23,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2022-23,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i2,2022-23,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity +NA,NA,a-sust-i2,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2022-23,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2022-23,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2022-23,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity +NA,NA,a-sust-i2,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2022-23,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1702,Infinity +NA,NA,a-sust-i2,2022-23,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2022-23,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2022-23,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2022-23,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2022-23,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2022-23,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2022-23,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2022-23,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity +NA,NA,a-sust-i2,2022-23,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity -1.8311111111111114,1,a-sust-i2,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.4, 0.9,553,614.4444444444445 -16.432,1,a-sust-i2,2022-23,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1527,1527.0 -5.6,1,a-sust-i2,2022-23,Arlington - Brackett,00100010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,425,850.0 --Infinity,1,a-sust-i2,2022-23,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2022-23,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity -8.352,1,a-sust-i2,2022-23,Arlington - Gibbs School,00100305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,511,1022.0 --Infinity,1,a-sust-i2,2022-23,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2022-23,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity -4.832,1,a-sust-i2,2022-23,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,401,802.0 --Infinity,1,a-sust-i2,2022-23,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2022-23,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2022-23,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2022-23,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity -21.504,1,a-sust-i2,2022-23,Arlington - Ottoson Middle,00100410, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,922,1844.0 --Infinity,1,a-sust-i2,2022-23,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2022-23,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity --Infinity,1,a-sust-i2,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2022-23,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,840,Infinity --Infinity,1,a-sust-i2,2022-23,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2022-23,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2022-23,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity --Infinity,1,a-sust-i2,2022-23,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1128,Infinity --Infinity,1,a-sust-i2,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity --Infinity,1,a-sust-i2,2022-23,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2022-23,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2022-23,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2022-23,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity +NA,NA,a-sust-i2,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2022-23,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,840,Infinity +NA,NA,a-sust-i2,2022-23,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2022-23,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2022-23,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity +NA,NA,a-sust-i2,2022-23,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1128,Infinity +NA,NA,a-sust-i2,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2022-23,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2022-23,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity -12.528,1,a-sust-i2,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1283,1283.0 --Infinity,1,a-sust-i2,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity -21.504,1,a-sust-i2,2022-23,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1844,1844.0 --Infinity,1,a-sust-i2,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity --Infinity,1,a-sust-i2,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2022-23,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity --Infinity,1,a-sust-i2,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity -10.336,1,a-sust-i2,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,573,1146.0 --Infinity,1,a-sust-i2,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2022-23,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2022-23,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity -18.08,1,a-sust-i2,2022-23,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,652,1630.0 -14.426666666666668,1,a-sust-i2,2022-23,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,841,1401.6666666666667 -6.346666666666668,1,a-sust-i2,2022-23,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,269,896.6666666666667 -4.906666666666668,1,a-sust-i2,2022-23,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,242,806.6666666666667 -9.728,1,a-sust-i2,2022-23,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,554,1108.0 --Infinity,1,a-sust-i2,2022-23,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2022-23,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2022-23,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity 2.512,2.51,a-sust-i2,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 -0.512,1,a-sust-i2,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,532,532.0 --Infinity,1,a-sust-i2,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1763,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2022-23,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2022-23,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity --Infinity,1,a-sust-i2,2022-23,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1763,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2022-23,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2022-23,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity +NA,NA,a-sust-i2,2022-23,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity -0.224,1,a-sust-i2,2022-23,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,514,514.0 --Infinity,1,a-sust-i2,2022-23,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2022-23,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity --Infinity,1,a-sust-i2,2022-23,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2022-23,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2022-23,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2022-23,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2022-23,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,747,Infinity +NA,NA,a-sust-i2,2022-23,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2022-23,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2022-23,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2022-23,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2022-23,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2022-23,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,747,Infinity -1.392,1,a-sust-i2,2022-23,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,587,587.0 --Infinity,1,a-sust-i2,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2022-23,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i2,2022-23,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2022-23,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2022-23,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity -13.824,1,a-sust-i2,2022-23,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 1.0,1364,1364.0 -2.688,1,a-sust-i2,2022-23,Belmont - Daniel Butler,00260015, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,334,668.0 -2.752,1,a-sust-i2,2022-23,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,336,672.0 -9.248,1,a-sust-i2,2022-23,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,539,1078.0 -5.888,1,a-sust-i2,2022-23,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,434,868.0 -35.872,1,a-sust-i2,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1371,2742.0 --Infinity,1,a-sust-i2,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,862,Infinity +NA,NA,a-sust-i2,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,862,Infinity -7.328,1,a-sust-i2,2022-23,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,479,958.0 --Infinity,1,a-sust-i2,2022-23,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2022-23,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity 4.48,4.48,a-sust-i2,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,220,220.0 2.608,2.61,a-sust-i2,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 -0.24,1,a-sust-i2,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,515,515.0 -4.352,1,a-sust-i2,2022-23,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,386,772.0 --Infinity,1,a-sust-i2,2022-23,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1286,Infinity --Infinity,1,a-sust-i2,2022-23,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1367,Infinity --Infinity,1,a-sust-i2,2022-23,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2022-23,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2022-23,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2022-23,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2022-23,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1286,Infinity +NA,NA,a-sust-i2,2022-23,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1367,Infinity +NA,NA,a-sust-i2,2022-23,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2022-23,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2022-23,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2022-23,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity -3.04,1,a-sust-i2,2022-23,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,345,690.0 --Infinity,1,a-sust-i2,2022-23,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1726,Infinity --Infinity,1,a-sust-i2,2022-23,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2022-23,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1726,Infinity +NA,NA,a-sust-i2,2022-23,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity 2.0,2.0,a-sust-i2,2022-23,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 3.136,3.14,a-sust-i2,2022-23,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 --Infinity,1,a-sust-i2,2022-23,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2022-23,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity +NA,NA,a-sust-i2,2022-23,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2022-23,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity 1.168,1.17,a-sust-i2,2022-23,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,427,427.0 -0.912,1,a-sust-i2,2022-23,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,557,557.0 -11.68,1,a-sust-i2,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1230,1230.0 --Infinity,1,a-sust-i2,2022-23,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2022-23,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity 1.664,1.66,a-sust-i2,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,396,396.0 2.512,2.51,a-sust-i2,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 6.256,5,a-sust-i2,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,109,109.0 --Infinity,1,a-sust-i2,2022-23,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity +NA,NA,a-sust-i2,2022-23,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity 4.016,4.02,a-sust-i2,2022-23,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 3.68,3.68,a-sust-i2,2022-23,Boston - Alighieri Dante Montessori School,00350066, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,108,270.0 4.32,4.32,a-sust-i2,2022-23,Boston - Another Course To College,00350541, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,230,230.0 @@ -1998,7 +1998,7 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.792,3.79,a-sust-i2,2022-23,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,263,263.0 -0.592,1,a-sust-i2,2022-23,Boston - Blackstone Elementary School,00350390, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,537,537.0 4.128,4.13,a-sust-i2,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,121,242.0 --Infinity,1,a-sust-i2,2022-23,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity 2.304,2.3,a-sust-i2,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,178,356.0 -1.568,1,a-sust-i2,2022-23,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,598,598.0 0.448,1,a-sust-i2,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,472,472.0 @@ -2019,7 +2019,7 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.74,4.74,a-sust-i2,2022-23,Boston - Conley Elementary School,00350122, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,163,203.75 0.552,1,a-sust-i2,2022-23,Boston - Curley K-8 School,00350020, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,931,465.5 -0.656,1,a-sust-i2,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 0.6, 0.0, 0.4, 0.0, 1.0,541,541.0 --Infinity,1,a-sust-i2,2022-23,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity 5.008,5,a-sust-i2,2022-23,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,187,187.0 -4.76,1,a-sust-i2,2022-23,Boston - East Boston High School,00350530, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.6,1276,797.5 -1.888,1,a-sust-i2,2022-23,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,618,618.0 @@ -2027,7 +2027,7 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.48,1,a-sust-i2,2022-23,Boston - Ellis Elementary School,00350072, 0.2, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6,318,530.0 6.09,5,a-sust-i2,2022-23,Boston - Ellison-Parks Early Education School,00350008, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.6,191,119.375 -2.416,1,a-sust-i2,2022-23,Boston - English High School,00350535, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,651,651.0 --Infinity,1,a-sust-i2,2022-23,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity 1.056,1.06,a-sust-i2,2022-23,Boston - Excel High School,00350522, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,434,434.0 -2.053333333333334,1,a-sust-i2,2022-23,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,377,628.3333333333334 1.54,1.54,a-sust-i2,2022-23,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,323,403.75 @@ -2037,290 +2037,290 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.216,1.22,a-sust-i2,2022-23,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,212,424.0 3.984,3.98,a-sust-i2,2022-23,Boston - Guild Elementary School,00350062, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 2.592,2.59,a-sust-i2,2022-23,Boston - Hale Elementary School,00350243, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,169,338.0 --Infinity,1,a-sust-i2,2022-23,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Harvard-Kent Elementary School,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Harvard-Kent Elementary School,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity 4.752,4.75,a-sust-i2,2022-23,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,203,203.0 6.504,5,a-sust-i2,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,187,93.5 --Infinity,1,a-sust-i2,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity 1.2,1.2,a-sust-i2,2022-23,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 3.2,3.2,a-sust-i2,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,120,300.0 --Infinity,1,a-sust-i2,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity 6.88,5,a-sust-i2,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,70,70.0 --Infinity,1,a-sust-i2,2022-23,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity -2.56,1,a-sust-i2,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,264,660.0 -17.28,1,a-sust-i2,2022-23,Boston - Kenny Elementary School,00350328, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,316,1580.0 -2.56,1,a-sust-i2,2022-23,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,396,660.0 --Infinity,1,a-sust-i2,2022-23,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2022-23,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity 5.008,5,a-sust-i2,2022-23,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,187,187.0 --Infinity,1,a-sust-i2,2022-23,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity -4.4228571428571435,1,a-sust-i2,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 0.0, 1.4,1087,776.4285714285714 2.88,2.88,a-sust-i2,2022-23,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,160,320.0 -2.048,1,a-sust-i2,2022-23,Boston - Margarita Muniz Academy,00350549, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,314,628.0 -1.296,1,a-sust-i2,2022-23,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,581,581.0 2.986666666666666,2.99,a-sust-i2,2022-23,Boston - Mason Elementary School,00350304, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,188,313.33333333333337 --Infinity,1,a-sust-i2,2022-23,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity 2.552,2.55,a-sust-i2,2022-23,Boston - McKay K-8 School,00350080, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,681,340.5 5.472,5,a-sust-i2,2022-23,Boston - McKinley Schools,00350363, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,158,158.0 --Infinity,1,a-sust-i2,2022-23,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity -16.72,1,a-sust-i2,2022-23,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,618,1545.0 5.184,5,a-sust-i2,2022-23,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,176,176.0 -5.376,1,a-sust-i2,2022-23,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,836,836.0 -8.373333333333333,1,a-sust-i2,2022-23,Boston - New Mission High School,00350542, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,614,1023.3333333333334 -33.78666666666667,1,a-sust-i2,2022-23,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,1567,2611.666666666667 --Infinity,1,a-sust-i2,2022-23,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2022-23,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity -1.02,1,a-sust-i2,2022-23,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,451,563.75 --Infinity,1,a-sust-i2,2022-23,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity -3.04,1,a-sust-i2,2022-23,Boston - Otis Elementary School,00350156, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,414,690.0 3.786666666666666,3.79,a-sust-i2,2022-23,Boston - Perkins Elementary School,00350231, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,158,263.33333333333337 --Infinity,1,a-sust-i2,2022-23,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Philbrick Elementary School,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Philbrick Elementary School,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity -1.84,1,a-sust-i2,2022-23,Boston - Quincy Elementary School,00350286, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,738,615.0 --Infinity,1,a-sust-i2,2022-23,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity -29.04,1,a-sust-i2,2022-23,Boston - Snowden International High School,00350690, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,463,2315.0 --Infinity,1,a-sust-i2,2022-23,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity 2.272,2.27,a-sust-i2,2022-23,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,358,358.0 --Infinity,1,a-sust-i2,2022-23,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2022-23,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity 4.832,4.83,a-sust-i2,2022-23,Boston - Trotter Elementary School,00350370, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,297,198.0 4.06,4.06,a-sust-i2,2022-23,Boston - Tynan Elementary School,00350181, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,197,246.25 -2.176,1,a-sust-i2,2022-23,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,636,636.0 --Infinity,1,a-sust-i2,2022-23,Boston - Warren-Prescott K-8 School,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2022-23,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Warren-Prescott K-8 School,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2022-23,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity -30.64,1,a-sust-i2,2022-23,Boston - Young Achievers K-8 School,00350380, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,483,2415.0 --Infinity,1,a-sust-i2,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity --Infinity,1,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity +NA,NA,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,321,Infinity 0.384,1,a-sust-i2,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,476,476.0 -14.24,1,a-sust-i2,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,695,1390.0 -6.752,1,a-sust-i2,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,922,922.0 -3.232,1,a-sust-i2,2022-23,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,351,702.0 --Infinity,1,a-sust-i2,2022-23,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2022-23,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity -5.792,1,a-sust-i2,2022-23,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,431,862.0 --Infinity,1,a-sust-i2,2022-23,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2022-23,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2022-23,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2022-23,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2022-23,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1706,Infinity --Infinity,1,a-sust-i2,2022-23,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2022-23,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2022-23,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2022-23,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1706,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity -7.536,1,a-sust-i2,2022-23,Braintree - East Middle School,00400305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,971,971.0 --Infinity,1,a-sust-i2,2022-23,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2022-23,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2022-23,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity 3.36,3.36,a-sust-i2,2022-23,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 --Infinity,1,a-sust-i2,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2022-23,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2022-23,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2022-23,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2022-23,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2022-23,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2022-23,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity -3.872,1,a-sust-i2,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,742,742.0 --Infinity,1,a-sust-i2,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1390,Infinity --Infinity,1,a-sust-i2,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1390,Infinity +NA,NA,a-sust-i2,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity 2.368,2.37,a-sust-i2,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 2.896,2.9,a-sust-i2,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,957,319.0 2.2,2.2,a-sust-i2,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,725,362.5 --Infinity,1,a-sust-i2,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity 1.592,1.59,a-sust-i2,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,801,400.5 3.408,3.41,a-sust-i2,2022-23,Brimfield - Brimfield Elementary,00430005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 --Infinity,1,a-sust-i2,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity +NA,NA,a-sust-i2,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity -6.336,1,a-sust-i2,2022-23,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,448,896.0 6.168,5,a-sust-i2,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,229,114.5 3.584,3.58,a-sust-i2,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,138,276.0 -109.728,1,a-sust-i2,2022-23,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,3679,7358.0 --Infinity,1,a-sust-i2,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2022-23,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2022-23,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity -15.84,1,a-sust-i2,2022-23,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,745,1490.0 --Infinity,1,a-sust-i2,2022-23,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity -66.4,1,a-sust-i2,2022-23,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,930,4650.0 --Infinity,1,a-sust-i2,2022-23,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity -13.493333333333336,1,a-sust-i2,2022-23,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,403,1343.3333333333335 --Infinity,1,a-sust-i2,2022-23,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity 6.432,5,a-sust-i2,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,49,98.0 -19.36,1,a-sust-i2,2022-23,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,513,1710.0 -17.312,1,a-sust-i2,2022-23,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,791,1582.0 --Infinity,1,a-sust-i2,2022-23,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity --Infinity,1,a-sust-i2,2022-23,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673,Infinity -6.336,1,a-sust-i2,2022-23,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,448,896.0 -17.472,1,a-sust-i2,2022-23,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,796,1592.0 --Infinity,1,a-sust-i2,2022-23,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2022-23,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity -26.773333333333337,1,a-sust-i2,2022-23,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,652,2173.3333333333335 -33.44,1,a-sust-i2,2022-23,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,518,2590.0 -36.56,1,a-sust-i2,2022-23,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,557,2785.0 --Infinity,1,a-sust-i2,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2223,Infinity +NA,NA,a-sust-i2,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2223,Infinity 0.24,1,a-sust-i2,2022-23,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,291,485.0 --Infinity,1,a-sust-i2,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2087,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2087,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity 1.192,1.19,a-sust-i2,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,851,425.5 -4.24,1,a-sust-i2,2022-23,Brookline - Heath,00460025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,459,765.0 --Infinity,1,a-sust-i2,2022-23,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2022-23,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2022-23,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity -0.64,1,a-sust-i2,2022-23,Burlington - Burlington High,00480505, 0.0, 0.8, 1.0, 0.0, 0.0, 0.0, 0.0, 1.8,972,540.0 1.152,1.15,a-sust-i2,2022-23,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 0.112,1,a-sust-i2,2022-23,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,493,493.0 -0.17,1,a-sust-i2,2022-23,Burlington - Marshall Simonds Middle,00480303, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 0.0, 1.6,817,510.625 1.696,1.7,a-sust-i2,2022-23,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,394,394.0 3.072,3.07,a-sust-i2,2022-23,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 --Infinity,1,a-sust-i2,2022-23,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1867,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2022-23,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1867,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2022-23,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity -6.464,1,a-sust-i2,2022-23,Canton - Canton High,00500505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,904,904.0 --Infinity,1,a-sust-i2,2022-23,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2022-23,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2022-23,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2022-23,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2022-23,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2022-23,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity 6.576,5,a-sust-i2,2022-23,Canton - Rodman Early Childhood Center,00500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,89,89.0 --Infinity,1,a-sust-i2,2022-23,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2022-23,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity 4.0,4.0,a-sust-i2,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 --Infinity,1,a-sust-i2,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity -1.616,1,a-sust-i2,2022-23,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,601,601.0 -4.368,1,a-sust-i2,2022-23,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,773,773.0 --Infinity,1,a-sust-i2,2022-23,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity --Infinity,1,a-sust-i2,2022-23,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2022-23,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2022-23,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity --Infinity,1,a-sust-i2,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2022-23,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2022-23,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity +NA,NA,a-sust-i2,2022-23,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2022-23,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2022-23,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2022-23,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity -0.016,1,a-sust-i2,2022-23,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,501,501.0 0.24,1,a-sust-i2,2022-23,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,485,485.0 0.464,1,a-sust-i2,2022-23,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,471,471.0 -13.872,1,a-sust-i2,2022-23,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1367,1367.0 -3.568,1,a-sust-i2,2022-23,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,723,723.0 --Infinity,1,a-sust-i2,2022-23,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2022-23,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity -5.504,1,a-sust-i2,2022-23,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,844,844.0 0.592,1,a-sust-i2,2022-23,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,463,463.0 --Infinity,1,a-sust-i2,2022-23,Chelsea - Chelsea High,00570505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1611,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Chelsea High,00570505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1611,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity 2.632,2.63,a-sust-i2,2022-23,Chelsea - Clark Avenue School,00570050, 0.0, 1.5, 0.0, 0.0, 0.0, 0.5, 0.0, 2.0,671,335.5 --Infinity,1,a-sust-i2,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,823,Infinity --Infinity,1,a-sust-i2,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,823,Infinity +NA,NA,a-sust-i2,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity -3.6,1,a-sust-i2,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,145,725.0 --Infinity,1,a-sust-i2,2022-23,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1206,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,914,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2022-23,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2022-23,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,840,Infinity --Infinity,1,a-sust-i2,2022-23,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity --Infinity,1,a-sust-i2,2022-23,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1206,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,914,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2022-23,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2022-23,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,840,Infinity +NA,NA,a-sust-i2,2022-23,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2022-23,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity -5.792,1,a-sust-i2,2022-23,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,431,862.0 --Infinity,1,a-sust-i2,2022-23,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2022-23,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2022-23,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1203,Infinity --Infinity,1,a-sust-i2,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,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,1195,Infinity +NA,NA,a-sust-i2,2022-23,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2022-23,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2022-23,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1203,Infinity +NA,NA,a-sust-i2,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,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,1195,Infinity 1.328,1.33,a-sust-i2,2022-23,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,417,417.0 --Infinity,1,a-sust-i2,2022-23,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity --Infinity,1,a-sust-i2,2022-23,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2022-23,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1306,Infinity --Infinity,1,a-sust-i2,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2022-23,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2022-23,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2022-23,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1306,Infinity +NA,NA,a-sust-i2,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity 6.032,5,a-sust-i2,2022-23,Conway - Conway Grammar,00680005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,123,123.0 --Infinity,1,a-sust-i2,2022-23,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity --Infinity,1,a-sust-i2,2022-23,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2022-23,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2022-23,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,772,Infinity --Infinity,1,a-sust-i2,2022-23,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2022-23,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity +NA,NA,a-sust-i2,2022-23,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2022-23,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2022-23,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,772,Infinity +NA,NA,a-sust-i2,2022-23,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity 2.704,2.7,a-sust-i2,2022-23,Danvers - Riverside,00710030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,331,331.0 --Infinity,1,a-sust-i2,2022-23,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity --Infinity,1,a-sust-i2,2022-23,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,979,Infinity +NA,NA,a-sust-i2,2022-23,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2022-23,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,979,Infinity 1.568,1.57,a-sust-i2,2022-23,Dartmouth - Dartmouth Middle,00720050, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,804,402.0 1.584,1.58,a-sust-i2,2022-23,Dartmouth - George H Potter,00720030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 --Infinity,1,a-sust-i2,2022-23,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity --Infinity,1,a-sust-i2,2022-23,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2022-23,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2022-23,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity +NA,NA,a-sust-i2,2022-23,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2022-23,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity 3.424,3.42,a-sust-i2,2022-23,Dedham - Dedham High,00730505, 0.0, 2.0, 0.0, 0.5, 0.0, 0.0, 0.0, 2.5,715,286.0 2.24,2.24,a-sust-i2,2022-23,Dedham - Dedham Middle School,00730305, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,540,360.0 --Infinity,1,a-sust-i2,2022-23,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2022-23,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2022-23,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2022-23,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2022-23,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2022-23,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity 2.432,2.43,a-sust-i2,2022-23,Dedham - Riverdale,00730045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,174,348.0 --Infinity,1,a-sust-i2,2022-23,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity --Infinity,1,a-sust-i2,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity --Infinity,1,a-sust-i2,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2022-23,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2022-23,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity +NA,NA,a-sust-i2,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity +NA,NA,a-sust-i2,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2022-23,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity 2.496,2.5,a-sust-i2,2022-23,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,344,344.0 -2.368,1,a-sust-i2,2022-23,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,324,648.0 --Infinity,1,a-sust-i2,2022-23,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2022-23,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2022-23,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2022-23,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2022-23,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2022-23,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity -2.704,1,a-sust-i2,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,669,669.0 --Infinity,1,a-sust-i2,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity -19.62666666666667,1,a-sust-i2,2022-23,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,518,1726.6666666666667 -19.104,1,a-sust-i2,2022-23,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,847,1694.0 -20.373333333333335,1,a-sust-i2,2022-23,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,532,1773.3333333333335 -4.8,1,a-sust-i2,2022-23,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,240,800.0 -23.78666666666667,1,a-sust-i2,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,596,1986.6666666666667 -19.136,1,a-sust-i2,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,848,1696.0 --Infinity,1,a-sust-i2,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, 0.0,278,Infinity --Infinity,1,a-sust-i2,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,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, 0.0,278,Infinity +NA,NA,a-sust-i2,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity -1.472,1,a-sust-i2,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,592,592.0 --Infinity,1,a-sust-i2,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity -9.504,1,a-sust-i2,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,547,1094.0 0.752,1,a-sust-i2,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,453,453.0 --Infinity,1,a-sust-i2,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,923,Infinity +NA,NA,a-sust-i2,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,923,Infinity 3.176,3.18,a-sust-i2,2022-23,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,603,301.5 -2.512,1,a-sust-i2,2022-23,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,657,657.0 0.584,1,a-sust-i2,2022-23,Duxbury - Duxbury High,00820505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,927,463.5 @@ -2328,54 +2328,54 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -8.832,1,a-sust-i2,2022-23,East Bridgewater - Central,00830005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,526,1052.0 -20.928,1,a-sust-i2,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,904,1808.0 -12.256,1,a-sust-i2,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,633,1266.0 --Infinity,1,a-sust-i2,2022-23,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2022-23,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity --Infinity,1,a-sust-i2,2022-23,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2022-23,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2022-23,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2022-23,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity --Infinity,1,a-sust-i2,2022-23,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2022-23,Easthampton - Mountain View School,00860415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1043,Infinity --Infinity,1,a-sust-i2,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,747,Infinity --Infinity,1,a-sust-i2,2022-23,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,821,Infinity --Infinity,1,a-sust-i2,2022-23,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1082,Infinity --Infinity,1,a-sust-i2,2022-23,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity --Infinity,1,a-sust-i2,2022-23,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2022-23,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2022-23,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2022-23,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2022-23,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2022-23,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2022-23,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity +NA,NA,a-sust-i2,2022-23,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2022-23,Easthampton - Mountain View School,00860415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1043,Infinity +NA,NA,a-sust-i2,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,747,Infinity +NA,NA,a-sust-i2,2022-23,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,821,Infinity +NA,NA,a-sust-i2,2022-23,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1082,Infinity +NA,NA,a-sust-i2,2022-23,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity +NA,NA,a-sust-i2,2022-23,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity 2.176,2.18,a-sust-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, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,364,364.0 3.872,3.87,a-sust-i2,2022-23,Erving - Erving Elementary,00910030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,129,258.0 --Infinity,1,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,1694,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2231,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,897,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1020,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2022-23,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1363,Infinity +NA,NA,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,1694,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2231,Infinity +NA,NA,a-sust-i2,2022-23,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,897,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1020,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2022-23,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1363,Infinity -2.016,1,a-sust-i2,2022-23,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,313,626.0 --Infinity,1,a-sust-i2,2022-23,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity --Infinity,1,a-sust-i2,2022-23,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2022-23,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity +NA,NA,a-sust-i2,2022-23,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity -6.144,1,a-sust-i2,2022-23,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,442,884.0 --Infinity,1,a-sust-i2,2022-23,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2460,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2460,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity -5.04,1,a-sust-i2,2022-23,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,815,815.0 --Infinity,1,a-sust-i2,2022-23,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,74,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2022-23,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,74,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2022-23,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity -14.56,1,a-sust-i2,2022-23,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,282,1410.0 -32.85333333333334,1,a-sust-i2,2022-23,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,766,2553.3333333333335 -17.44,1,a-sust-i2,2022-23,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,477,1590.0 @@ -2383,25 +2383,25 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -52.8,1,a-sust-i2,2022-23,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,380,3800.0 -42.4,1,a-sust-i2,2022-23,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,315,3150.0 -34.4,1,a-sust-i2,2022-23,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,265,2650.0 --Infinity,1,a-sust-i2,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1246,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity --Infinity,1,a-sust-i2,2022-23,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2022-23,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i2,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1246,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity +NA,NA,a-sust-i2,2022-23,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2022-23,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity 4.106666666666667,4.11,a-sust-i2,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,219,243.33333333333331 --Infinity,1,a-sust-i2,2022-23,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2022-23,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2022-23,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2022-23,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2022-23,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2022-23,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity 2.672,2.67,a-sust-i2,2022-23,Foxborough - Mabelle M Burrell,00990015, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 --Infinity,1,a-sust-i2,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"", ,Failed to meet data,reporting requirements,"","","","",1569,Infinity +NA,NA,a-sust-i2,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"", ,Failed to meet data,reporting requirements,"","","","",1569,Infinity -3.136,1,a-sust-i2,2022-23,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,696,696.0 --Infinity,1,a-sust-i2,2022-23,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2022-23,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity -0.848,1,a-sust-i2,2022-23,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,553,553.0 1.072,1.07,a-sust-i2,2022-23,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,433,433.0 -2.264,1,a-sust-i2,2022-23,Framingham - Framingham High School,01000515, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 4.0,2566,641.5 @@ -2410,357 +2410,357 @@ NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.688,1,a-sust-i2,2022-23,Framingham - Hemenway,01000015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 3.696,3.7,a-sust-i2,2022-23,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,269,269.0 1.728,1.73,a-sust-i2,2022-23,Framingham - King Elementary School,01000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,392,392.0 --Infinity,1,a-sust-i2,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity -0.8,1,a-sust-i2,2022-23,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,550,550.0 --Infinity,1,a-sust-i2,2022-23,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2022-23,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity 1.688,1.69,a-sust-i2,2022-23,Framingham - Walsh Middle,01000310, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,789,394.5 --Infinity,1,a-sust-i2,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1630,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,729,Infinity --Infinity,1,a-sust-i2,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity --Infinity,1,a-sust-i2,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2022-23,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1630,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2022-23,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,729,Infinity +NA,NA,a-sust-i2,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity +NA,NA,a-sust-i2,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2022-23,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity -7.776,1,a-sust-i2,2022-23,Gardner - Gardner Elementary School,01030001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,986,986.0 -4.864,1,a-sust-i2,2022-23,Gardner - Gardner High,01030505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,804,804.0 0.176,1,a-sust-i2,2022-23,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,489,489.0 --Infinity,1,a-sust-i2,2022-23,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2022-23,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2022-23,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2022-23,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2022-23,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2022-23,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2022-23,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2022-23,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity 3.216,3.22,a-sust-i2,2022-23,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 --Infinity,1,a-sust-i2,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity --Infinity,1,a-sust-i2,2022-23,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity --Infinity,1,a-sust-i2,2022-23,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2022-23,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2022-23,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity --Infinity,1,a-sust-i2,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity --Infinity,1,a-sust-i2,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2022-23,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2022-23,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity +NA,NA,a-sust-i2,2022-23,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity +NA,NA,a-sust-i2,2022-23,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2022-23,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2022-23,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity +NA,NA,a-sust-i2,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2022-23,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2022-23,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity 5.104,5,a-sust-i2,2022-23,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,181,181.0 --Infinity,1,a-sust-i2,2022-23,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity --Infinity,1,a-sust-i2,2022-23,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2022-23,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2022-23,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity +NA,NA,a-sust-i2,2022-23,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2022-23,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity -1.952,1,a-sust-i2,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,622,622.0 --Infinity,1,a-sust-i2,2022-23,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2022-23,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity 2.016,2.02,a-sust-i2,2022-23,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,374,374.0 -NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN --Infinity,1,a-sust-i2,2022-23,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,875,Infinity --Infinity,1,a-sust-i2,2022-23,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2022-23,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2022-23,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2022-23,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity --Infinity,1,a-sust-i2,2022-23,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2022-23,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2022-23,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1155,Infinity --Infinity,1,a-sust-i2,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1412,Infinity --Infinity,1,a-sust-i2,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1692,Infinity --Infinity,1,a-sust-i2,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2302,Infinity +NA,NA,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i2,2022-23,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,875,Infinity +NA,NA,a-sust-i2,2022-23,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2022-23,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2022-23,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2022-23,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2022-23,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2022-23,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2022-23,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1155,Infinity +NA,NA,a-sust-i2,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1412,Infinity +NA,NA,a-sust-i2,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1692,Infinity +NA,NA,a-sust-i2,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2302,Infinity -25.52,1,a-sust-i2,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,2095,2095.0 -3.413333333333334,1,a-sust-i2,2022-23,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,214,713.3333333333334 -2.293333333333334,1,a-sust-i2,2022-23,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,193,643.3333333333334 0.736,1,a-sust-i2,2022-23,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,454,454.0 --Infinity,1,a-sust-i2,2022-23,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2022-23,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity -2.826666666666668,1,a-sust-i2,2022-23,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,203,676.6666666666667 --Infinity,1,a-sust-i2,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2022-23,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity --Infinity,1,a-sust-i2,2022-23,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity --Infinity,1,a-sust-i2,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,723,Infinity --Infinity,1,a-sust-i2,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2022-23,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2022-23,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2022-23,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity --Infinity,1,a-sust-i2,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2022-23,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2022-23,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2022-23,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2022-23,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,723,Infinity +NA,NA,a-sust-i2,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2022-23,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2022-23,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2022-23,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2022-23,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2022-23,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity -3.328,1,a-sust-i2,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,354,708.0 --Infinity,1,a-sust-i2,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,984,Infinity +NA,NA,a-sust-i2,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,984,Infinity -1.92,1,a-sust-i2,2022-23,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,310,620.0 --Infinity,1,a-sust-i2,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity -1.584,1,a-sust-i2,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,599,599.0 -2.592,1,a-sust-i2,2022-23,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,662,662.0 --Infinity,1,a-sust-i2,2022-23,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity +NA,NA,a-sust-i2,2022-23,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity 2.215384615384615,2.22,a-sust-i2,2022-23,Hanover - Cedar Elementary,01220004, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,470,361.53846153846155 -26.18666666666667,1,a-sust-i2,2022-23,Hanover - Center Elementary,01220005, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,641,2136.666666666667 -27.573333333333334,1,a-sust-i2,2022-23,Hanover - Hanover High,01220505, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,667,2223.3333333333335 -34.72,1,a-sust-i2,2022-23,Hanover - Hanover Middle,01220305, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,801,2670.0 -0.96,1,a-sust-i2,2022-23,Harvard - Bromfield,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,560,560.0 --Infinity,1,a-sust-i2,2022-23,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2022-23,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2022-23,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,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,35,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1070,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1944,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2022-23,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity --Infinity,1,a-sust-i2,2022-23,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2022-23,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2022-23,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1167,Infinity --Infinity,1,a-sust-i2,2022-23,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,844,Infinity --Infinity,1,a-sust-i2,2022-23,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2022-23,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2022-23,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2022-23,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2022-23,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2022-23,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,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,35,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1070,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1944,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2022-23,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2022-23,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2022-23,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2022-23,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1167,Infinity +NA,NA,a-sust-i2,2022-23,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,844,Infinity +NA,NA,a-sust-i2,2022-23,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2022-23,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2022-23,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity -12.32,1,a-sust-i2,2022-23,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,635,1270.0 --Infinity,1,a-sust-i2,2022-23,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity --Infinity,1,a-sust-i2,2022-23,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2022-23,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity +NA,NA,a-sust-i2,2022-23,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity -5.024,1,a-sust-i2,2022-23,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,814,814.0 -1.664,1,a-sust-i2,2022-23,Holliston - Miller School,01360007, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,604,604.0 -3.248,1,a-sust-i2,2022-23,Holliston - Placentino Elementary,01360010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,703,703.0 -2.48,1,a-sust-i2,2022-23,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,655,655.0 --Infinity,1,a-sust-i2,2022-23,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1515,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Holyoke Middle School,01370325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2022-23,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity --Infinity,1,a-sust-i2,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,685,Infinity --Infinity,1,a-sust-i2,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1515,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Holyoke Middle School,01370325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2022-23,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,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,685,Infinity +NA,NA,a-sust-i2,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity -9.728,1,a-sust-i2,2022-23,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,554,1108.0 --Infinity,1,a-sust-i2,2022-23,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +NA,NA,a-sust-i2,2022-23,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity -92.32,1,a-sust-i2,2022-23,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,627,6270.0 -94.24,1,a-sust-i2,2022-23,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,639,6390.0 -90.72,1,a-sust-i2,2022-23,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,1234,6170.0 -43.84,1,a-sust-i2,2022-23,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,972,3240.0 -7.84,1,a-sust-i2,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,99,990.0 -86.72,1,a-sust-i2,2022-23,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,592,5920.0 --Infinity,1,a-sust-i2,2022-23,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2022-23,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity --Infinity,1,a-sust-i2,2022-23,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2022-23,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2022-23,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2022-23,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2022-23,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2022-23,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i2,2022-23,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2022-23,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2022-23,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2022-23,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2022-23,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2022-23,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2022-23,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2022-23,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity -8.064,1,a-sust-i2,2022-23,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,502,1004.0 -6.48,1,a-sust-i2,2022-23,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,362,905.0 -3.712,1,a-sust-i2,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,366,732.0 -3.936,1,a-sust-i2,2022-23,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,373,746.0 --Infinity,1,a-sust-i2,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity --Infinity,1,a-sust-i2,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1612,Infinity --Infinity,1,a-sust-i2,2022-23,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +NA,NA,a-sust-i2,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity +NA,NA,a-sust-i2,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1612,Infinity +NA,NA,a-sust-i2,2022-23,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity -1.136,1,a-sust-i2,2022-23,King Philip - King Philip Regional High,06900505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1142,571.0 -1.92,1,a-sust-i2,2022-23,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,620,620.0 -1.488,1,a-sust-i2,2022-23,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,593,593.0 --Infinity,1,a-sust-i2,2022-23,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity 4.976,4.98,a-sust-i2,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,189,189.0 -41.344,1,a-sust-i2,2022-23,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,3084,3084.0 2.186666666666667,2.19,a-sust-i2,2022-23,Lawrence - Leonard Middle School,01490090, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,327,363.3333333333333 --Infinity,1,a-sust-i2,2022-23,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity 2.384,2.38,a-sust-i2,2022-23,Lawrence - Oliver Middle School,01490049, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,351,351.0 --Infinity,1,a-sust-i2,2022-23,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity 4.768,4.77,a-sust-i2,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,202,202.0 --Infinity,1,a-sust-i2,2022-23,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity --Infinity,1,a-sust-i2,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2022-23,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2022-23,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity +NA,NA,a-sust-i2,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2022-23,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2022-23,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity 0.112,1,a-sust-i2,2022-23,Leicester - Leicester Elementary,01510005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,493,493.0 1.376,1.38,a-sust-i2,2022-23,Leicester - Leicester High,01510505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,414,414.0 --Infinity,1,a-sust-i2,2022-23,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2022-23,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity 1.456,1.46,a-sust-i2,2022-23,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 1.104,1.1,a-sust-i2,2022-23,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,431,431.0 --Infinity,1,a-sust-i2,2022-23,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1034,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i2,2022-23,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1034,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity -3.632,1,a-sust-i2,2022-23,Leominster - Northwest,01530030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,727,727.0 --Infinity,1,a-sust-i2,2022-23,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2022-23,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity --Infinity,1,a-sust-i2,2022-23,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,823,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2303,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2022-23,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,942,Infinity --Infinity,1,a-sust-i2,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.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2022-23,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2022-23,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2022-23,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2022-23,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity +NA,NA,a-sust-i2,2022-23,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,823,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2303,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2022-23,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,942,Infinity +NA,NA,a-sust-i2,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.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2022-23,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2022-23,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2022-23,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity -11.786666666666667,1,a-sust-i2,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,1484,1236.6666666666667 --Infinity,1,a-sust-i2,2022-23,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2022-23,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity 4.92,4.92,a-sust-i2,2022-23,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,385,192.5 1.776,1.78,a-sust-i2,2022-23,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,389,389.0 --Infinity,1,a-sust-i2,2022-23,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2022-23,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity -23.36,1,a-sust-i2,2022-23,Longmeadow - Blueberry Hill,01590005, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,392,1960.0 -25.92,1,a-sust-i2,2022-23,Longmeadow - Center,01590010, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,424,2120.0 -18.56,1,a-sust-i2,2022-23,Longmeadow - Glenbrook Middle,01590017, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,332,1660.0 -136.64,1,a-sust-i2,2022-23,Longmeadow - Longmeadow High,01590505, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,904,9040.0 -14.56,1,a-sust-i2,2022-23,Longmeadow - Williams Middle,01590305, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,282,1410.0 -27.52,1,a-sust-i2,2022-23,Longmeadow - Wolf Swamp Road,01590025, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,444,2220.0 --Infinity,1,a-sust-i2,2022-23,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3167,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813,Infinity --Infinity,1,a-sust-i2,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity --Infinity,1,a-sust-i2,2022-23,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3167,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2022-23,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813,Infinity +NA,NA,a-sust-i2,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2022-23,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity -6.674285714285715,1,a-sust-i2,2022-23,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,642,917.1428571428572 --Infinity,1,a-sust-i2,2022-23,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity --Infinity,1,a-sust-i2,2022-23,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity --Infinity,1,a-sust-i2,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,5,Infinity +NA,NA,a-sust-i2,2022-23,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity +NA,NA,a-sust-i2,2022-23,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity +NA,NA,a-sust-i2,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,5,Infinity -15.466666666666669,1,a-sust-i2,2022-23,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,440,1466.6666666666667 -12.266666666666667,1,a-sust-i2,2022-23,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,380,1266.6666666666667 1.856,1.86,a-sust-i2,2022-23,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,384,384.0 2.352,2.35,a-sust-i2,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 --Infinity,1,a-sust-i2,2022-23,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1221,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1818,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1221,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1818,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity -26.816,1,a-sust-i2,2022-23,Lynn - Lynn English High,01630510, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,2176,2176.0 --Infinity,1,a-sust-i2,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1523,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity --Infinity,1,a-sust-i2,2022-23,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1523,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2022-23,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity -6.624,1,a-sust-i2,2022-23,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,457,914.0 -10.08,1,a-sust-i2,2022-23,Lynnfield - Lynnfield High,01640505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,565,1130.0 -3.408,1,a-sust-i2,2022-23,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,713,713.0 --Infinity,1,a-sust-i2,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity -5.472,1,a-sust-i2,2022-23,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,421,842.0 --Infinity,1,a-sust-i2,2022-23,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, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2022-23,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity --Infinity,1,a-sust-i2,2022-23,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity --Infinity,1,a-sust-i2,2022-23,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2022-23,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity --Infinity,1,a-sust-i2,2022-23,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2022-23,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1856,Infinity --Infinity,1,a-sust-i2,2022-23,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1024,Infinity --Infinity,1,a-sust-i2,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2022-23,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, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2022-23,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity +NA,NA,a-sust-i2,2022-23,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity +NA,NA,a-sust-i2,2022-23,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2022-23,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity +NA,NA,a-sust-i2,2022-23,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2022-23,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1856,Infinity +NA,NA,a-sust-i2,2022-23,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1024,Infinity +NA,NA,a-sust-i2,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity -4.064,1,a-sust-i2,2022-23,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,754,754.0 --Infinity,1,a-sust-i2,2022-23,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity --Infinity,1,a-sust-i2,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity --Infinity,1,a-sust-i2,2022-23,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1092,Infinity +NA,NA,a-sust-i2,2022-23,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity +NA,NA,a-sust-i2,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity +NA,NA,a-sust-i2,2022-23,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1092,Infinity 6.544,5,a-sust-i2,2022-23,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,91,91.0 --Infinity,1,a-sust-i2,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2022-23,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2022-23,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity -6.064,1,a-sust-i2,2022-23,Marblehead - Marblehead High,01680505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,879,879.0 --Infinity,1,a-sust-i2,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2022-23,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity --Infinity,1,a-sust-i2,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2022-23,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2022-23,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity +NA,NA,a-sust-i2,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2022-23,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity -5.92,1,a-sust-i2,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,1044,870.0 -2.496,1,a-sust-i2,2022-23,Marlborough - Charles Jaworek School,01700030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,656,656.0 --Infinity,1,a-sust-i2,2022-23,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2022-23,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity -1.86,1,a-sust-i2,2022-23,Marlborough - Francis J Kane,01700008, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,493,616.25 --Infinity,1,a-sust-i2,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity +NA,NA,a-sust-i2,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity -9.024,1,a-sust-i2,2022-23,Marlborough - Marlborough High,01700505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1064,1064.0 -0.528,1,a-sust-i2,2022-23,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,533,533.0 2.064,2.06,a-sust-i2,2022-23,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,371,371.0 @@ -2770,323 +2770,323 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -5.6,1,a-sust-i2,2022-23,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,1190,850.0 0.624,1,a-sust-i2,2022-23,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 3.888,3.89,a-sust-i2,2022-23,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,257,257.0 --Infinity,1,a-sust-i2,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity --Infinity,1,a-sust-i2,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity --Infinity,1,a-sust-i2,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2022-23,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,990,Infinity --Infinity,1,a-sust-i2,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2022-23,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2022-23,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2022-23,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1186,Infinity --Infinity,1,a-sust-i2,2022-23,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2022-23,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity +NA,NA,a-sust-i2,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2022-23,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,990,Infinity +NA,NA,a-sust-i2,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2022-23,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2022-23,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2022-23,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1186,Infinity +NA,NA,a-sust-i2,2022-23,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2022-23,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity 0.656,1,a-sust-i2,2022-23,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,459,459.0 -5.408,1,a-sust-i2,2022-23,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,419,838.0 4.629333333333334,4.63,a-sust-i2,2022-23,Maynard - Maynard High,01740505, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,316,210.66666666666666 --Infinity,1,a-sust-i2,2022-23,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2022-23,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity --Infinity,1,a-sust-i2,2022-23,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2022-23,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2022-23,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2022-23,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2022-23,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity +NA,NA,a-sust-i2,2022-23,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2022-23,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2022-23,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity -9.504,1,a-sust-i2,2022-23,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,547,1094.0 --Infinity,1,a-sust-i2,2022-23,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity +NA,NA,a-sust-i2,2022-23,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity -17.653333333333336,1,a-sust-i2,2022-23,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,481,1603.3333333333335 -6.752,1,a-sust-i2,2022-23,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,461,922.0 -6.592,1,a-sust-i2,2022-23,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,456,912.0 -32.32,1,a-sust-i2,2022-23,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1260,2520.0 -21.44,1,a-sust-i2,2022-23,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,552,1840.0 -4.512,1,a-sust-i2,2022-23,Medford - Missituk Elementary School,01760140, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,391,782.0 --Infinity,1,a-sust-i2,2022-23,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2022-23,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2022-23,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +NA,NA,a-sust-i2,2022-23,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2022-23,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2022-23,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity -2.448,1,a-sust-i2,2022-23,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,653,653.0 --Infinity,1,a-sust-i2,2022-23,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2022-23,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2022-23,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2022-23,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2022-23,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity --Infinity,1,a-sust-i2,2022-23,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity --Infinity,1,a-sust-i2,2022-23,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2022-23,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2022-23,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2022-23,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity --Infinity,1,a-sust-i2,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity --Infinity,1,a-sust-i2,2022-23,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,955,Infinity --Infinity,1,a-sust-i2,2022-23,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1263,Infinity --Infinity,1,a-sust-i2,2022-23,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1052,Infinity --Infinity,1,a-sust-i2,2022-23,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1916,Infinity --Infinity,1,a-sust-i2,2022-23,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1254,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2022-23,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2022-23,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2022-23,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity +NA,NA,a-sust-i2,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +NA,NA,a-sust-i2,2022-23,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,955,Infinity +NA,NA,a-sust-i2,2022-23,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1263,Infinity +NA,NA,a-sust-i2,2022-23,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1052,Infinity +NA,NA,a-sust-i2,2022-23,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1916,Infinity +NA,NA,a-sust-i2,2022-23,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1254,Infinity -1.104,1,a-sust-i2,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,569,569.0 -3.328,1,a-sust-i2,2022-23,Middleborough - John T. Nichols Middle,01820305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,708,708.0 -12.064,1,a-sust-i2,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,627,1254.0 3.504,3.5,a-sust-i2,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 --Infinity,1,a-sust-i2,2022-23,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,851,Infinity --Infinity,1,a-sust-i2,2022-23,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2022-23,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2022-23,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2022-23,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2022-23,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1324,Infinity --Infinity,1,a-sust-i2,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2022-23,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1030,Infinity --Infinity,1,a-sust-i2,2022-23,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity --Infinity,1,a-sust-i2,2022-23,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2022-23,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity --Infinity,1,a-sust-i2,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2022-23,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2022-23,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2022-23,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2022-23,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity --Infinity,1,a-sust-i2,2022-23,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity --Infinity,1,a-sust-i2,2022-23,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity --Infinity,1,a-sust-i2,2022-23,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,627,Infinity --Infinity,1,a-sust-i2,2022-23,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity --Infinity,1,a-sust-i2,2022-23,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1062,Infinity --Infinity,1,a-sust-i2,2022-23,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2022-23,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,851,Infinity +NA,NA,a-sust-i2,2022-23,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2022-23,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2022-23,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2022-23,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2022-23,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1324,Infinity +NA,NA,a-sust-i2,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2022-23,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1030,Infinity +NA,NA,a-sust-i2,2022-23,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity +NA,NA,a-sust-i2,2022-23,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2022-23,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity +NA,NA,a-sust-i2,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2022-23,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2022-23,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2022-23,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2022-23,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +NA,NA,a-sust-i2,2022-23,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity +NA,NA,a-sust-i2,2022-23,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity +NA,NA,a-sust-i2,2022-23,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,627,Infinity +NA,NA,a-sust-i2,2022-23,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity +NA,NA,a-sust-i2,2022-23,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1062,Infinity +NA,NA,a-sust-i2,2022-23,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity 2.472,2.47,a-sust-i2,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.5, 1.1, 0.0, 0.0, 0.0, 0.4, 2.0,691,345.5 --Infinity,1,a-sust-i2,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2022-23,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2022-23,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity --Infinity,1,a-sust-i2,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2022-23,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2022-23,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity -3.232,1,a-sust-i2,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,702,702.0 --Infinity,1,a-sust-i2,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2022-23,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2022-23,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2022-23,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity +NA,NA,a-sust-i2,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2022-23,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2022-23,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2022-23,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity -3.272,1,a-sust-i2,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1409,704.5 --Infinity,1,a-sust-i2,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity -0.576,1,a-sust-i2,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,536,536.0 --Infinity,1,a-sust-i2,2022-23,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1608,Infinity --Infinity,1,a-sust-i2,2022-23,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity --Infinity,1,a-sust-i2,2022-23,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2022-23,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2022-23,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2022-23,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2022-23,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2022-23,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2022-23,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2022-23,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2022-23,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity --Infinity,1,a-sust-i2,2022-23,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2022-23,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2022-23,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1608,Infinity +NA,NA,a-sust-i2,2022-23,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +NA,NA,a-sust-i2,2022-23,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2022-23,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2022-23,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2022-23,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2022-23,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2022-23,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2022-23,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2022-23,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2022-23,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity +NA,NA,a-sust-i2,2022-23,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2022-23,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity 0.416,1,a-sust-i2,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,474,474.0 --Infinity,1,a-sust-i2,2022-23,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2022-23,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity -4.0,1,a-sust-i2,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,750,750.0 0.32,1,a-sust-i2,2022-23,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,480,480.0 --Infinity,1,a-sust-i2,2022-23,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2022-23,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity 0.928,1,a-sust-i2,2022-23,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,884,442.0 --Infinity,1,a-sust-i2,2022-23,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity --Infinity,1,a-sust-i2,2022-23,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2022-23,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2022-23,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity 1.088,1.09,a-sust-i2,2022-23,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,432,432.0 -19.632,1,a-sust-i2,2022-23,Natick - Natick High,01980505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1727,1727.0 -4.448,1,a-sust-i2,2022-23,Natick - Wilson Middle,01980310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,778,778.0 --Infinity,1,a-sust-i2,2022-23,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2022-23,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2022-23,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2022-23,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2022-23,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2022-23,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity -6.272,1,a-sust-i2,2022-23,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,446,892.0 --Infinity,1,a-sust-i2,2022-23,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2022-23,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity -35.866666666666674,1,a-sust-i2,2022-23,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,1645,2741.666666666667 -10.64,1,a-sust-i2,2022-23,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,699,1165.0 --Infinity,1,a-sust-i2,2022-23,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity --Infinity,1,a-sust-i2,2022-23,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2022-23,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity +NA,NA,a-sust-i2,2022-23,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity -6.464,1,a-sust-i2,2022-23,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,452,904.0 1.872,1.87,a-sust-i2,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,766,383.0 --Infinity,1,a-sust-i2,2022-23,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2898,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1051,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,778,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity --Infinity,1,a-sust-i2,2022-23,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity --Infinity,1,a-sust-i2,2022-23,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2898,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1051,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,778,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2022-23,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity +NA,NA,a-sust-i2,2022-23,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity 3.536,3.54,a-sust-i2,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,279,279.0 -1.2,1,a-sust-i2,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,575,575.0 --Infinity,1,a-sust-i2,2022-23,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity +NA,NA,a-sust-i2,2022-23,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity 0.304,1,a-sust-i2,2022-23,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,481,481.0 1.984,1.98,a-sust-i2,2022-23,Newton - A E Angier,02070005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,376,376.0 --Infinity,1,a-sust-i2,2022-23,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2022-23,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2022-23,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2022-23,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2022-23,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity -16.0,1,a-sust-i2,2022-23,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,750,1500.0 1.386666666666667,1.39,a-sust-i2,2022-23,Newton - Countryside,02070040, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,372,413.3333333333333 --Infinity,1,a-sust-i2,2022-23,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity --Infinity,1,a-sust-i2,2022-23,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2022-23,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity 0.86,1,a-sust-i2,2022-23,Newton - Horace Mann,02070075, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,357,446.25 --Infinity,1,a-sust-i2,2022-23,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2022-23,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2022-23,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2022-23,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2022-23,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity 5.024,5,a-sust-i2,2022-23,Newton - Newton Early Childhood Program,02070108, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,186,186.0 -25.584,1,a-sust-i2,2022-23,Newton - Newton North High,02070505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,2099,2099.0 --Infinity,1,a-sust-i2,2022-23,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity -2.512,1,a-sust-i2,2022-23,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,657,657.0 4.144,4.14,a-sust-i2,2022-23,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,241,241.0 2.106666666666666,2.11,a-sust-i2,2022-23,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,221,368.33333333333337 --Infinity,1,a-sust-i2,2022-23,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2022-23,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity 1.504,1.5,a-sust-i2,2022-23,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 --Infinity,1,a-sust-i2,2022-23,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2022-23,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity --Infinity,1,a-sust-i2,2022-23,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2022-23,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity --Infinity,1,a-sust-i2,2022-23,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2022-23,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2022-23,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2022-23,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2022-23,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2022-23,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2022-23,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2022-23,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity 3.413333333333333,3.41,a-sust-i2,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,430,286.6666666666667 --Infinity,1,a-sust-i2,2022-23,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity --Infinity,1,a-sust-i2,2022-23,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2022-23,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2022-23,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2022-23,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +NA,NA,a-sust-i2,2022-23,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2022-23,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2022-23,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity -13.376,1,a-sust-i2,2022-23,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1336,1336.0 -2.35,1,a-sust-i2,2022-23,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,1035,646.875 --Infinity,1,a-sust-i2,2022-23,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2022-23,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2022-23,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2022-23,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity 3.376,3.38,a-sust-i2,2022-23,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 --Infinity,1,a-sust-i2,2022-23,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2022-23,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity -9.712,1,a-sust-i2,2022-23,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1107,1107.0 --Infinity,1,a-sust-i2,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity --Infinity,1,a-sust-i2,2022-23,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity --Infinity,1,a-sust-i2,2022-23,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2022-23,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity --Infinity,1,a-sust-i2,2022-23,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2022-23,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2022-23,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2022-23,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,779,Infinity --Infinity,1,a-sust-i2,2022-23,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2022-23,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity +NA,NA,a-sust-i2,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2022-23,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity +NA,NA,a-sust-i2,2022-23,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2022-23,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2022-23,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2022-23,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2022-23,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2022-23,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,779,Infinity +NA,NA,a-sust-i2,2022-23,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2022-23,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity -2.336,1,a-sust-i2,2022-23,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,323,646.0 -4.256,1,a-sust-i2,2022-23,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,383,766.0 --Infinity,1,a-sust-i2,2022-23,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2022-23,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity 1.130666666666667,1.13,a-sust-i2,2022-23,North Reading - North Reading High,02170505, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,644,429.3333333333333 4.5376,4.54,a-sust-i2,2022-23,North Reading - North Reading Middle,02170305, 0.0, 0.0, 1.0, 1.5, 0.0, 0.0, 0.0, 2.5,541,216.4 --Infinity,1,a-sust-i2,2022-23,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2022-23,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2022-23,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +NA,NA,a-sust-i2,2022-23,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2022-23,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2022-23,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity 3.232,3.23,a-sust-i2,2022-23,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 --Infinity,1,a-sust-i2,2022-23,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity --Infinity,1,a-sust-i2,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2022-23,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity +NA,NA,a-sust-i2,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity -1.056,1,a-sust-i2,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,566,566.0 -5.862857142857143,1,a-sust-i2,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 1.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 1.4,1213,866.4285714285714 --Infinity,1,a-sust-i2,2022-23,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2022-23,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity 3.424,3.42,a-sust-i2,2022-23,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,286,286.0 3.984,3.98,a-sust-i2,2022-23,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,251,251.0 3.984,3.98,a-sust-i2,2022-23,Northborough - Marion E Zeh,02130020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 -0.592,1,a-sust-i2,2022-23,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,537,537.0 --Infinity,1,a-sust-i2,2022-23,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,953,Infinity --Infinity,1,a-sust-i2,2022-23,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2022-23,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1292,Infinity --Infinity,1,a-sust-i2,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2022-23,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2022-23,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2022-23,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2022-23,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,953,Infinity +NA,NA,a-sust-i2,2022-23,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2022-23,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1292,Infinity +NA,NA,a-sust-i2,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2022-23,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2022-23,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2022-23,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity -2.848,1,a-sust-i2,2022-23,Norton - Norton High,02180505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,678,678.0 --Infinity,1,a-sust-i2,2022-23,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2022-23,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity --Infinity,1,a-sust-i2,2022-23,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2022-23,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2022-23,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2022-23,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity --Infinity,1,a-sust-i2,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2022-23,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2022-23,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2022-23,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2022-23,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2022-23,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2022-23,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity +NA,NA,a-sust-i2,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity -2.032,1,a-sust-i2,2022-23,Old Rochester - Old Rochester Regional High,07400505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,627,627.0 --Infinity,1,a-sust-i2,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity 2.288,2.29,a-sust-i2,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 --Infinity,1,a-sust-i2,2022-23,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2022-23,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2022-23,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity --Infinity,1,a-sust-i2,2022-23,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2022-23,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2022-23,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2022-23,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2022-23,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2022-23,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2022-23,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity +NA,NA,a-sust-i2,2022-23,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2022-23,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2022-23,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2022-23,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity -11.168,1,a-sust-i2,2022-23,Palmer - Old Mill Pond,02270008, 0.0, 0.3, 0.0, 0.0, 0.3, 0.0, 0.0, 0.5,599,1198.0 -9.12,1,a-sust-i2,2022-23,Palmer - Palmer High,02270505, 0.0, 0.3, 0.0, 0.0, 0.3, 0.0, 0.0, 0.5,535,1070.0 -26.133333333333336,1,a-sust-i2,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,640,2133.3333333333335 --Infinity,1,a-sust-i2,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"", ,Failed to meet data,reporting requirements,"","","","",261,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1346,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1476,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2022-23,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2022-23,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"", ,Failed to meet data,reporting requirements,"","","","",261,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1346,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1476,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2022-23,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2022-23,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity 1.088,1.09,a-sust-i2,2022-23,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,432,432.0 --Infinity,1,a-sust-i2,2022-23,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2022-23,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity --Infinity,1,a-sust-i2,2022-23,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2022-23,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2022-23,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2022-23,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity +NA,NA,a-sust-i2,2022-23,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2022-23,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity 0.736,1,a-sust-i2,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,227,454.0 -2.144,1,a-sust-i2,2022-23,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,317,634.0 --Infinity,1,a-sust-i2,2022-23,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2022-23,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity 0.0,1,a-sust-i2,2022-23,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,250,500.0 2.272,2.27,a-sust-i2,2022-23,Pentucket - Pentucket Regional Middle,07450405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 --Infinity,1,a-sust-i2,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2022-23,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0,166,Infinity --Infinity,1,a-sust-i2,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,783,Infinity --Infinity,1,a-sust-i2,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2022-23,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0,166,Infinity +NA,NA,a-sust-i2,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,783,Infinity +NA,NA,a-sust-i2,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity -2.666666666666668,1,a-sust-i2,2022-23,Pioneer Valley - Northfield Elementary,07500008, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,200,666.6666666666667 --Infinity,1,a-sust-i2,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity -9.568,1,a-sust-i2,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,549,1098.0 1.76,1.76,a-sust-i2,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,390,390.0 --Infinity,1,a-sust-i2,2022-23,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,860,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2022-23,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2022-23,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,860,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2022-23,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2022-23,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity 4.608,4.61,a-sust-i2,2022-23,Plymouth - Cold Spring,02390005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,212,212.0 1.504,1.5,a-sust-i2,2022-23,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 4.656,4.66,a-sust-i2,2022-23,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,209,209.0 @@ -3094,7 +3094,7 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.016,4.02,a-sust-i2,2022-23,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,249,249.0 -0.192,1,a-sust-i2,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,512,512.0 -0.78,1,a-sust-i2,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,878,548.75 --Infinity,1,a-sust-i2,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity -12.816,1,a-sust-i2,2022-23,Plymouth - Plymouth North High,02390505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1301,1301.0 -8.448,1,a-sust-i2,2022-23,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1028,1028.0 -1.92,1,a-sust-i2,2022-23,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,620,620.0 @@ -3102,28 +3102,28 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.88,2.88,a-sust-i2,2022-23,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,320,320.0 4.208,4.21,a-sust-i2,2022-23,Plympton - Dennett Elementary,02400010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,237,237.0 -7.984,1,a-sust-i2,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,999,999.0 --Infinity,1,a-sust-i2,2022-23,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity --Infinity,1,a-sust-i2,2022-23,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2022-23,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2022-23,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity --Infinity,1,a-sust-i2,2022-23,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity --Infinity,1,a-sust-i2,2022-23,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2022-23,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2022-23,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2022-23,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2022-23,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2022-23,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2022-23,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2022-23,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +NA,NA,a-sust-i2,2022-23,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2022-23,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2022-23,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity -5.2,1,a-sust-i2,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,165,825.0 -2.24,1,a-sust-i2,2022-23,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,256,640.0 -21.386666666666667,1,a-sust-i2,2022-23,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,551,1836.6666666666667 -18.4,1,a-sust-i2,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,330,1650.0 -9.12,1,a-sust-i2,2022-23,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,321,1070.0 --Infinity,1,a-sust-i2,2022-23,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2022-23,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity -10.133333333333336,1,a-sust-i2,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,340,1133.3333333333335 -19.413333333333334,1,a-sust-i2,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,514,1713.3333333333335 --Infinity,1,a-sust-i2,2022-23,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2022-23,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity -20.906666666666666,1,a-sust-i2,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,542,1806.6666666666667 -18.16,1,a-sust-i2,2022-23,Quincy - Merrymount,02430060, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,327,1635.0 -26.64,1,a-sust-i2,2022-23,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,433,2165.0 @@ -3135,253 +3135,253 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -10.773333333333335,1,a-sust-i2,2022-23,Quincy - Squantum,02430095, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,352,1173.3333333333335 -9.76,1,a-sust-i2,2022-23,Quincy - Wollaston School,02430110, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,333,1110.0 -8.736,1,a-sust-i2,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,523,1046.0 --Infinity,1,a-sust-i2,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2022-23,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2022-23,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2022-23,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2022-23,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2022-23,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2022-23,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2022-23,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2022-23,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2022-23,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2022-23,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity 2.304,2.3,a-sust-i2,2022-23,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 3.097142857142857,3.1,a-sust-i2,2022-23,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 1.4,429,306.42857142857144 2.272,2.27,a-sust-i2,2022-23,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 1.504,1.5,a-sust-i2,2022-23,Reading - J Warren Killam,02460017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,406,406.0 1.776,1.78,a-sust-i2,2022-23,Reading - Joshua Eaton,02460010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 --Infinity,1,a-sust-i2,2022-23,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +NA,NA,a-sust-i2,2022-23,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity 1.2553846153846153,1.26,a-sust-i2,2022-23,Reading - Reading Memorial High,02460505, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 0.0, 2.6,1096,421.53846153846155 5.144615384615385,5,a-sust-i2,2022-23,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.6, 0.0, 1.0, 0.0, 0.0, 2.6,464,178.46153846153845 4.064,4.06,a-sust-i2,2022-23,Reading - Wood End Elementary School,02460020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,246,246.0 --Infinity,1,a-sust-i2,2022-23,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,723,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,685,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2084,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity --Infinity,1,a-sust-i2,2022-23,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity --Infinity,1,a-sust-i2,2022-23,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i2,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2022-23,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2022-23,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,723,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,685,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2084,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2022-23,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2022-23,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2022-23,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity 0.096,1,a-sust-i2,2022-23,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,247,494.0 -14.88,1,a-sust-i2,2022-23,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,715,1430.0 5.365333333333334,5,a-sust-i2,2022-23,Rockland - Memorial Park,02510020, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,247,164.66666666666666 --Infinity,1,a-sust-i2,2022-23,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2022-23,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity -26.18666666666667,1,a-sust-i2,2022-23,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,641,2136.666666666667 3.136,3.14,a-sust-i2,2022-23,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,304,304.0 --Infinity,1,a-sust-i2,2022-23,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2022-23,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity --Infinity,1,a-sust-i2,2022-23,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity --Infinity,1,a-sust-i2,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1295,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity --Infinity,1,a-sust-i2,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2022-23,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2022-23,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +NA,NA,a-sust-i2,2022-23,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity +NA,NA,a-sust-i2,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1295,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity 1.648,1.65,a-sust-i2,2022-23,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,397,397.0 --Infinity,1,a-sust-i2,2022-23,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2022-23,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity -0.64,1,a-sust-i2,2022-23,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,540,540.0 -2.784,1,a-sust-i2,2022-23,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,674,674.0 --Infinity,1,a-sust-i2,2022-23,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,928,Infinity --Infinity,1,a-sust-i2,2022-23,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2022-23,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2022-23,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2022-23,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2022-23,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i2,2022-23,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,928,Infinity +NA,NA,a-sust-i2,2022-23,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2022-23,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2022-23,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2022-23,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2022-23,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity 2.352,2.35,a-sust-i2,2022-23,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,353,353.0 -1.68,1,a-sust-i2,2022-23,Scituate - Gates Middle School,02640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,605,605.0 3.92,3.92,a-sust-i2,2022-23,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,255,255.0 2.736,2.74,a-sust-i2,2022-23,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 -4.208,1,a-sust-i2,2022-23,Scituate - Scituate High School,02640505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,763,763.0 0.736,1,a-sust-i2,2022-23,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,454,454.0 --Infinity,1,a-sust-i2,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2022-23,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2022-23,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2022-23,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity --Infinity,1,a-sust-i2,2022-23,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2022-23,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2022-23,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2022-23,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity +NA,NA,a-sust-i2,2022-23,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity 0.176,1,a-sust-i2,2022-23,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,489,489.0 --Infinity,1,a-sust-i2,2022-23,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity --Infinity,1,a-sust-i2,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2022-23,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity -10.288,1,a-sust-i2,2022-23,Sharon - Sharon High,02660505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1143,1143.0 --Infinity,1,a-sust-i2,2022-23,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,845,Infinity +NA,NA,a-sust-i2,2022-23,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,845,Infinity -12.672,1,a-sust-i2,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1292,1292.0 --Infinity,1,a-sust-i2,2022-23,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1823,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2022-23,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2022-23,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1823,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2022-23,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity 5.52,5,a-sust-i2,2022-23,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,124,155.0 --Infinity,1,a-sust-i2,2022-23,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1046,Infinity +NA,NA,a-sust-i2,2022-23,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1046,Infinity -0.448,1,a-sust-i2,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,528,528.0 --Infinity,1,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2022-23,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2022-23,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity -6.656,1,a-sust-i2,2022-23,Somerset - North Elementary,02730008, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,458,916.0 -10.4,1,a-sust-i2,2022-23,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,575,1150.0 --Infinity,1,a-sust-i2,2022-23,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2022-23,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity -24.096,1,a-sust-i2,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1003,2006.0 --Infinity,1,a-sust-i2,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,729,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2022-23,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,729,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2022-23,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity -3.04,1,a-sust-i2,2022-23,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,345,690.0 -1.824,1,a-sust-i2,2022-23,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,307,614.0 --Infinity,1,a-sust-i2,2022-23,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2022-23,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity -5.472,1,a-sust-i2,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,842,842.0 --Infinity,1,a-sust-i2,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1054,Infinity --Infinity,1,a-sust-i2,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity --Infinity,1,a-sust-i2,2022-23,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1054,Infinity +NA,NA,a-sust-i2,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity +NA,NA,a-sust-i2,2022-23,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity 3.712,3.71,a-sust-i2,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,268,268.0 3.728,3.73,a-sust-i2,2022-23,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,267,267.0 2.4,2.4,a-sust-i2,2022-23,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,350,350.0 1.84,1.84,a-sust-i2,2022-23,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,385,385.0 --Infinity,1,a-sust-i2,2022-23,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2022-23,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2022-23,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2022-23,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2022-23,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2022-23,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2022-23,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2022-23,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2022-23,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2022-23,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity 2.64,2.64,a-sust-i2,2022-23,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 -16.928,1,a-sust-i2,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1558,1558.0 --Infinity,1,a-sust-i2,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2022-23,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity --Infinity,1,a-sust-i2,2022-23,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2022-23,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,1185,Infinity +NA,NA,a-sust-i2,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2022-23,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity +NA,NA,a-sust-i2,2022-23,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2022-23,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2022-23,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, 0.0, 0.0, 0.0,1185,Infinity -2.24,1,a-sust-i2,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,384,640.0 -2.0,1,a-sust-i2,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,625,625.0 -2.016,1,a-sust-i2,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,313,626.0 -11.04,1,a-sust-i2,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,357,1190.0 -4.8,1,a-sust-i2,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,240,800.0 -11.36,1,a-sust-i2,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,363,1210.0 --Infinity,1,a-sust-i2,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1103,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - John J Duggan Academy,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,815,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1360,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2095,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1087,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - The Springfield Virtual School,02810705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1520,Infinity --Infinity,1,a-sust-i2,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2022-23,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2022-23,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2022-23,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2022-23,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2022-23,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,815,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2022-23,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity +NA,NA,a-sust-i2,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1103,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - John J Duggan Academy,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,815,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1360,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2095,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1087,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - The Springfield Virtual School,02810705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2022-23,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1520,Infinity +NA,NA,a-sust-i2,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2022-23,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2022-23,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2022-23,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2022-23,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2022-23,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,815,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2022-23,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity 3.322666666666667,3.32,a-sust-i2,2022-23,Sturbridge - Burgess Elementary,02870005, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,877,292.3333333333333 --Infinity,1,a-sust-i2,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity +NA,NA,a-sust-i2,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity -5.6,1,a-sust-i2,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,850,850.0 5.4,5,a-sust-i2,2022-23,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,325,162.5 --Infinity,1,a-sust-i2,2022-23,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2022-23,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2022-23,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2022-23,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity --Infinity,1,a-sust-i2,2022-23,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2022-23,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2022-23,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2022-23,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2022-23,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2022-23,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2022-23,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2022-23,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +NA,NA,a-sust-i2,2022-23,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2022-23,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2022-23,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2022-23,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity 1.44,1.44,a-sust-i2,2022-23,Swampscott - Clarke,02910005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,205,410.0 -3.2,1,a-sust-i2,2022-23,Swampscott - Hadley,02910010, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,350,700.0 --Infinity,1,a-sust-i2,2022-23,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2022-23,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity -2.256,1,a-sust-i2,2022-23,Swampscott - Swampscott High,02910505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,641,641.0 -2.864,1,a-sust-i2,2022-23,Swampscott - Swampscott Middle,02910305, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,679,679.0 --Infinity,1,a-sust-i2,2022-23,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2022-23,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2022-23,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2022-23,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity -0.592,1,a-sust-i2,2022-23,Swansea - Joseph Case High,02920505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,537,537.0 --Infinity,1,a-sust-i2,2022-23,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2022-23,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity --Infinity,1,a-sust-i2,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2940,Infinity +NA,NA,a-sust-i2,2022-23,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2022-23,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i2,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2940,Infinity -0.816,1,a-sust-i2,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,551,551.0 -2.832,1,a-sust-i2,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,677,677.0 --Infinity,1,a-sust-i2,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity -3.68,1,a-sust-i2,2022-23,Taunton - Benjamin Friedman Middle,02930315, 0.4, 0.0, 0.4, 0.0, 0.2, 0.0, 0.0, 1.0,730,730.0 -13.32,1,a-sust-i2,2022-23,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,533,1332.5 -3.4,1,a-sust-i2,2022-23,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,285,712.5 @@ -3394,115 +3394,115 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -4.84,1,a-sust-i2,2022-23,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,642,802.5 -3.04,1,a-sust-i2,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,69,690.0 -25.969230769230766,1,a-sust-i2,2022-23,Taunton - Taunton High,02930505, 0.0, 0.8, 0.0, 0.5, 0.0, 0.0, 0.0, 1.3,2760,2123.076923076923 --Infinity,1,a-sust-i2,2022-23,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2022-23,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2022-23,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2022-23,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity --Infinity,1,a-sust-i2,2022-23,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2022-23,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2022-23,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity --Infinity,1,a-sust-i2,2022-23,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2022-23,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2022-23,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2022-23,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2022-23,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2022-23,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2022-23,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2022-23,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2022-23,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity +NA,NA,a-sust-i2,2022-23,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2022-23,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2022-23,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity +NA,NA,a-sust-i2,2022-23,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2022-23,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2022-23,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2022-23,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2022-23,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity 2.72,2.72,a-sust-i2,2022-23,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,99,330.0 -0.02133333333333303,1,a-sust-i2,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,752,501.3333333333333 --Infinity,1,a-sust-i2,2022-23,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2022-23,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity 4.592,4.59,a-sust-i2,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,213,213.0 3.08,3.08,a-sust-i2,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,615,307.5 --Infinity,1,a-sust-i2,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity --Infinity,1,a-sust-i2,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity +NA,NA,a-sust-i2,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity -4.304,1,a-sust-i2,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,769,769.0 --Infinity,1,a-sust-i2,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity -0.336,1,a-sust-i2,2022-23,Uxbridge - Taft Early Learning Center,03040005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,521,521.0 --Infinity,1,a-sust-i2,2022-23,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2022-23,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity 0.08,1,a-sust-i2,2022-23,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,495,495.0 --Infinity,1,a-sust-i2,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity -3.872,1,a-sust-i2,2022-23,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,371,742.0 --Infinity,1,a-sust-i2,2022-23,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2022-23,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2022-23,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2022-23,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity -7.968,1,a-sust-i2,2022-23,Wachusett - Dawson,07750020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,499,998.0 --Infinity,1,a-sust-i2,2022-23,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity +NA,NA,a-sust-i2,2022-23,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity -2.656,1,a-sust-i2,2022-23,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,333,666.0 --Infinity,1,a-sust-i2,2022-23,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2022-23,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2022-23,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2022-23,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity -16.704,1,a-sust-i2,2022-23,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,772,1544.0 -3.616,1,a-sust-i2,2022-23,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,363,726.0 -6.528,1,a-sust-i2,2022-23,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,454,908.0 --Infinity,1,a-sust-i2,2022-23,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2022-23,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity -22.88,1,a-sust-i2,2022-23,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1930,1930.0 --Infinity,1,a-sust-i2,2022-23,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2022-23,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity 4.128,4.13,a-sust-i2,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,121,242.0 -0.52,1,a-sust-i2,2022-23,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1065,532.5 --Infinity,1,a-sust-i2,2022-23,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2022-23,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,827,Infinity +NA,NA,a-sust-i2,2022-23,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2022-23,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,827,Infinity -9.04,1,a-sust-i2,2022-23,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,213,1065.0 --Infinity,1,a-sust-i2,2022-23,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2022-23,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2022-23,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,987,Infinity +NA,NA,a-sust-i2,2022-23,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2022-23,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2022-23,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,987,Infinity -7.264,1,a-sust-i2,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,477,954.0 --Infinity,1,a-sust-i2,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +NA,NA,a-sust-i2,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity -4.096,1,a-sust-i2,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,378,756.0 --Infinity,1,a-sust-i2,2022-23,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity --Infinity,1,a-sust-i2,2022-23,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2022-23,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +NA,NA,a-sust-i2,2022-23,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2022-23,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2022-23,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity -27.02,1,a-sust-i2,2022-23,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,1751,2188.75 --Infinity,1,a-sust-i2,2022-23,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2022-23,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2022-23,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2022-23,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity --Infinity,1,a-sust-i2,2022-23,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2022-23,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity --Infinity,1,a-sust-i2,2022-23,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2022-23,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity --Infinity,1,a-sust-i2,2022-23,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2022-23,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2022-23,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2022-23,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2022-23,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2022-23,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity +NA,NA,a-sust-i2,2022-23,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2022-23,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity +NA,NA,a-sust-i2,2022-23,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2022-23,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity +NA,NA,a-sust-i2,2022-23,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2022-23,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity -0.512,1,a-sust-i2,2022-23,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,532,532.0 0.032,1,a-sust-i2,2022-23,Wayland - Claypit Hill School,03150005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0,498,498.0 4.128,4.13,a-sust-i2,2022-23,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,363,242.0 1.84,1.84,a-sust-i2,2022-23,Wayland - Loker School,03150020, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,385,385.0 --Infinity,1,a-sust-i2,2022-23,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity --Infinity,1,a-sust-i2,2022-23,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity +NA,NA,a-sust-i2,2022-23,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i2,2022-23,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity 1.376,1.38,a-sust-i2,2022-23,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 1.5,621,414.0 --Infinity,1,a-sust-i2,2022-23,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2022-23,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,737,Infinity +NA,NA,a-sust-i2,2022-23,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2022-23,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,737,Infinity -10.88,1,a-sust-i2,2022-23,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,590,1180.0 --Infinity,1,a-sust-i2,2022-23,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,922,Infinity --Infinity,1,a-sust-i2,2022-23,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1412,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,922,Infinity +NA,NA,a-sust-i2,2022-23,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1412,Infinity 4.864,4.86,a-sust-i2,2022-23,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,98,196.0 --Infinity,1,a-sust-i2,2022-23,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2022-23,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity 3.024,3.02,a-sust-i2,2022-23,West Bridgewater - Howard School,03230305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,311,311.0 3.024,3.02,a-sust-i2,2022-23,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,311,311.0 --Infinity,1,a-sust-i2,2022-23,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,156,Infinity +NA,NA,a-sust-i2,2022-23,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,156,Infinity -12.0,1,a-sust-i2,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,625,1250.0 -19.84,1,a-sust-i2,2022-23,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,174,1740.0 --Infinity,1,a-sust-i2,2022-23,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2022-23,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity 2.72,2.72,a-sust-i2,2022-23,West Springfield - Memorial,03320025, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,198,330.0 -15.84,1,a-sust-i2,2022-23,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,149,1490.0 -20.48,1,a-sust-i2,2022-23,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,534,1780.0 @@ -3510,113 +3510,113 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.88,1,a-sust-i2,2022-23,West Springfield - West Springfield Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,89,445.0 -29.952,1,a-sust-i2,2022-23,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1186,2372.0 -20.704,1,a-sust-i2,2022-23,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.2, 0.5,897,1794.0 --Infinity,1,a-sust-i2,2022-23,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2022-23,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity 0.4,1,a-sust-i2,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,475,475.0 1.744,1.74,a-sust-i2,2022-23,Westborough - J Harding Armstrong,03210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,391,391.0 --Infinity,1,a-sust-i2,2022-23,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity +NA,NA,a-sust-i2,2022-23,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity -3.8,1,a-sust-i2,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,590,737.5 -10.848,1,a-sust-i2,2022-23,Westborough - Westborough High,03210505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1178,1178.0 --Infinity,1,a-sust-i2,2022-23,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,166,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1027,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2022-23,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1525,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,166,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1027,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2022-23,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1525,Infinity -0.32,1,a-sust-i2,2022-23,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,104,520.0 -44.96,1,a-sust-i2,2022-23,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,331,3310.0 --Infinity,1,a-sust-i2,2022-23,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2022-23,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity 0.13538461538461524,1,a-sust-i2,2022-23,Weston - Weston High,03300505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.3, 0.0, 1.3,639,491.53846153846155 3.821176470588235,3.82,a-sust-i2,2022-23,Weston - Weston Middle,03300305, 0.0, 0.0, 0.8, 0.0, 0.8, 0.1, 0.0, 1.7,444,261.1764705882353 -43.2,1,a-sust-i2,2022-23,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,320,3200.0 --Infinity,1,a-sust-i2,2022-23,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2022-23,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2022-23,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2022-23,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity 1.344,1.34,a-sust-i2,2022-23,Westport - Westport Middle-High School,03310515, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,832,416.0 --Infinity,1,a-sust-i2,2022-23,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +NA,NA,a-sust-i2,2022-23,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity 3.072,3.07,a-sust-i2,2022-23,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,308,308.0 --Infinity,1,a-sust-i2,2022-23,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2022-23,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity 5.888,5,a-sust-i2,2022-23,Westwood - Martha Jones,03350017, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,264,132.0 4.32,4.32,a-sust-i2,2022-23,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 3.189333333333333,3.19,a-sust-i2,2022-23,Westwood - Westwood High,03350505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,902,300.6666666666667 --Infinity,1,a-sust-i2,2022-23,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2022-23,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity 3.408,3.41,a-sust-i2,2022-23,Westwood - William E Sheehan,03350025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 --Infinity,1,a-sust-i2,2022-23,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1195,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1807,Infinity --Infinity,1,a-sust-i2,2022-23,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1195,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1807,Infinity +NA,NA,a-sust-i2,2022-23,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity 5.952,5,a-sust-i2,2022-23,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,128,128.0 --Infinity,1,a-sust-i2,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity -7.52,1,a-sust-i2,2022-23,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,485,970.0 -5.632,1,a-sust-i2,2022-23,Whitman-Hanson - John H Duval,07800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,426,852.0 -7.424,1,a-sust-i2,2022-23,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,482,964.0 --Infinity,1,a-sust-i2,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity -26.976,1,a-sust-i2,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1093,2186.0 -8.128,1,a-sust-i2,2022-23,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,504,1008.0 -12.432,1,a-sust-i2,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1277,1277.0 -2.16,1,a-sust-i2,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,127,635.0 --Infinity,1,a-sust-i2,2022-23,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity --Infinity,1,a-sust-i2,2022-23,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2022-23,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2022-23,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity +NA,NA,a-sust-i2,2022-23,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2022-23,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity 3.328,3.33,a-sust-i2,2022-23,Wilmington - West Intermediate,03420080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,292,292.0 --Infinity,1,a-sust-i2,2022-23,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2022-23,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2022-23,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2022-23,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity 1.2,1.2,a-sust-i2,2022-23,Wilmington - Woburn Street,03420020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,425,425.0 --Infinity,1,a-sust-i2,2022-23,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity --Infinity,1,a-sust-i2,2022-23,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2022-23,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2022-23,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity --Infinity,1,a-sust-i2,2022-23,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2022-23,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2022-23,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2022-23,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1037,Infinity --Infinity,1,a-sust-i2,2022-23,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2022-23,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2022-23,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1383,Infinity --Infinity,1,a-sust-i2,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2022-23,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2022-23,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2022-23,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1178,Infinity +NA,NA,a-sust-i2,2022-23,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity +NA,NA,a-sust-i2,2022-23,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2022-23,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2022-23,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +NA,NA,a-sust-i2,2022-23,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2022-23,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2022-23,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2022-23,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1037,Infinity +NA,NA,a-sust-i2,2022-23,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2022-23,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2022-23,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1383,Infinity +NA,NA,a-sust-i2,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2022-23,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2022-23,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2022-23,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1178,Infinity 1.76,1.76,a-sust-i2,2022-23,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 1.5,585,390.0 -14.784,1,a-sust-i2,2022-23,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,712,1424.0 -15.58,1,a-sust-i2,2022-23,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,1179,1473.75 --Infinity,1,a-sust-i2,2022-23,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity -3.76,1,a-sust-i2,2022-23,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,294,735.0 --Infinity,1,a-sust-i2,2022-23,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity -24.16,1,a-sust-i2,2022-23,Worcester - Chandler Magnet,03480052, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,402,2010.0 --Infinity,1,a-sust-i2,2022-23,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity -11.52,1,a-sust-i2,2022-23,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,488,1220.0 -2.72,1,a-sust-i2,2022-23,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,268,670.0 -2.293333333333334,1,a-sust-i2,2022-23,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,386,643.3333333333334 @@ -3626,316 +3626,316 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -9.94,1,a-sust-i2,2022-23,Worcester - Forest Grove Middle,03480415, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,897,1121.25 -0.32,1,a-sust-i2,2022-23,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,208,520.0 -2.88,1,a-sust-i2,2022-23,Worcester - Gates Lane,03480110, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,544,680.0 --Infinity,1,a-sust-i2,2022-23,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity -5.664,1,a-sust-i2,2022-23,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,427,854.0 --Infinity,1,a-sust-i2,2022-23,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity -11.68,1,a-sust-i2,2022-23,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,246,1230.0 -1.92,1,a-sust-i2,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,372,620.0 --Infinity,1,a-sust-i2,2022-23,Worcester - La Familia Dual Language School,03480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - La Familia Dual Language School,03480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity -4.32,1,a-sust-i2,2022-23,Worcester - Lake View,03480145, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,308,770.0 1.546666666666666,1.55,a-sust-i2,2022-23,Worcester - Lincoln Street,03480160, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,242,403.33333333333337 --Infinity,1,a-sust-i2,2022-23,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity -8.48,1,a-sust-i2,2022-23,Worcester - Midland Street,03480185, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,206,1030.0 -2.2222222222222228,1,a-sust-i2,2022-23,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,575,638.8888888888889 -1.0133333333333339,1,a-sust-i2,2022-23,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,507,563.3333333333334 -14.032,1,a-sust-i2,2022-23,Worcester - North High,03480515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1377,1377.0 -3.408,1,a-sust-i2,2022-23,Worcester - Quinsigamond,03480210, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,713,713.0 --Infinity,1,a-sust-i2,2022-23,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity -7.093333333333334,1,a-sust-i2,2022-23,Worcester - Roosevelt,03480220, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,566,943.3333333333334 -25.32,1,a-sust-i2,2022-23,Worcester - South High Community,03480520, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,1666,2082.5 -14.053333333333336,1,a-sust-i2,2022-23,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,827,1378.3333333333335 --Infinity,1,a-sust-i2,2022-23,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity --Infinity,1,a-sust-i2,2022-23,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2022-23,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2022-23,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity -0.4266666666666661,1,a-sust-i2,2022-23,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,474,526.6666666666666 -2.64,1,a-sust-i2,2022-23,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,133,665.0 -6.56,1,a-sust-i2,2022-23,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,364,910.0 -11.48,1,a-sust-i2,2022-23,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,487,1217.5 --Infinity,1,a-sust-i2,2022-23,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2022-23,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity -15.68,1,a-sust-i2,2022-23,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,740,1480.0 -10.08,1,a-sust-i2,2022-23,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.8, 0.0, 1.3,1469,1130.0 --Infinity,1,a-sust-i2,2022-23,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +NA,NA,a-sust-i2,2022-23,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity -0.4342857142857156,1,a-sust-i2,2022-23,Wrentham - Charles E Roderick,03500010, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,369,527.1428571428572 -5.302857142857143,1,a-sust-i2,2022-23,Wrentham - Delaney,03500003, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,582,831.4285714285714 -3.408,1,a-sust-i2,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1426,713.0 --Infinity,1,a-sust-i2,2021-22,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +NA,NA,a-sust-i2,2021-22,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity -1.376,1,a-sust-i2,2021-22,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 2.824,2.82,a-sust-i2,2021-22,Abington - Abington Middle School,00010405, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,647,323.5 -0.496,1,a-sust-i2,2021-22,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,531,531.0 --Infinity,1,a-sust-i2,2021-22,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2021-22,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity -19.2,1,a-sust-i2,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,510,1700.0 --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1703,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity --Infinity,1,a-sust-i2,2021-22,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2021-22,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,965,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1017,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2021-22,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity --Infinity,1,a-sust-i2,2021-22,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2021-22,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2021-22,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity --Infinity,1,a-sust-i2,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2021-22,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2021-22,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2021-22,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2021-22,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity --Infinity,1,a-sust-i2,2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1679,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2021-22,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1703,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +NA,NA,a-sust-i2,2021-22,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2021-22,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,965,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1017,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2021-22,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity +NA,NA,a-sust-i2,2021-22,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2021-22,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2021-22,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i2,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2021-22,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2021-22,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2021-22,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2021-22,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity +NA,NA,a-sust-i2,2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2021-22,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1679,Infinity +NA,NA,a-sust-i2,2021-22,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2021-22,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2021-22,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2021-22,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2021-22,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2021-22,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity +NA,NA,a-sust-i2,2021-22,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2021-22,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2021-22,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity -14.64,1,a-sust-i2,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,566,1415.0 -15.728,1,a-sust-i2,2021-22,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1483,1483.0 -6.144,1,a-sust-i2,2021-22,Arlington - Brackett,00100010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,442,884.0 --Infinity,1,a-sust-i2,2021-22,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2021-22,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity -6.464,1,a-sust-i2,2021-22,Arlington - Gibbs School,00100305, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,452,904.0 --Infinity,1,a-sust-i2,2021-22,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2021-22,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity -4.48,1,a-sust-i2,2021-22,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,390,780.0 --Infinity,1,a-sust-i2,2021-22,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2021-22,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity -20.992,1,a-sust-i2,2021-22,Arlington - Ottoson Middle,00100410, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,906,1812.0 --Infinity,1,a-sust-i2,2021-22,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2021-22,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity --Infinity,1,a-sust-i2,2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2021-22,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,812,Infinity --Infinity,1,a-sust-i2,2021-22,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity --Infinity,1,a-sust-i2,2021-22,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity --Infinity,1,a-sust-i2,2021-22,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity --Infinity,1,a-sust-i2,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity --Infinity,1,a-sust-i2,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1139,Infinity --Infinity,1,a-sust-i2,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity --Infinity,1,a-sust-i2,2021-22,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2021-22,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2021-22,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity +NA,NA,a-sust-i2,2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2021-22,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,812,Infinity +NA,NA,a-sust-i2,2021-22,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +NA,NA,a-sust-i2,2021-22,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2021-22,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity +NA,NA,a-sust-i2,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1139,Infinity +NA,NA,a-sust-i2,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2021-22,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity -12.432,1,a-sust-i2,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1277,1277.0 --Infinity,1,a-sust-i2,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity -20.304,1,a-sust-i2,2021-22,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1769,1769.0 --Infinity,1,a-sust-i2,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity --Infinity,1,a-sust-i2,2021-22,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity --Infinity,1,a-sust-i2,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity -11.264,1,a-sust-i2,2021-22,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,602,1204.0 --Infinity,1,a-sust-i2,2021-22,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2021-22,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2021-22,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity -17.88,1,a-sust-i2,2021-22,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,647,1617.5 -14.4,1,a-sust-i2,2021-22,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,840,1400.0 -5.92,1,a-sust-i2,2021-22,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,261,870.0 -5.653333333333334,1,a-sust-i2,2021-22,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,256,853.3333333333334 -10.208,1,a-sust-i2,2021-22,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,569,1138.0 --Infinity,1,a-sust-i2,2021-22,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2021-22,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2021-22,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2021-22,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity -3.776,1,a-sust-i2,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,368,736.0 -4.48,1,a-sust-i2,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,390,780.0 -2.368,1,a-sust-i2,2021-22,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,324,648.0 -9.28,1,a-sust-i2,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,540,1080.0 --Infinity,1,a-sust-i2,2021-22,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2021-22,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity -6.096,1,a-sust-i2,2021-22,Barnstable - Barnstable High,00200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,1762,881.0 -2.912,1,a-sust-i2,2021-22,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,682,682.0 -3.392,1,a-sust-i2,2021-22,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,712,712.0 4.048,4.05,a-sust-i2,2021-22,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,247,247.0 --Infinity,1,a-sust-i2,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity 3.36,3.36,a-sust-i2,2021-22,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,290,290.0 4.144,4.14,a-sust-i2,2021-22,Barnstable - West Barnstable Elementary,00200005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,241,241.0 --Infinity,1,a-sust-i2,2021-22,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2021-22,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,849,Infinity --Infinity,1,a-sust-i2,2021-22,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2021-22,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2021-22,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,849,Infinity +NA,NA,a-sust-i2,2021-22,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity -0.72,1,a-sust-i2,2021-22,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,545,545.0 --Infinity,1,a-sust-i2,2021-22,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2021-22,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity --Infinity,1,a-sust-i2,2021-22,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2021-22,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2021-22,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2021-22,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2021-22,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2021-22,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2021-22,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2021-22,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2021-22,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2021-22,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2021-22,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2021-22,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity -1.568,1,a-sust-i2,2021-22,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,598,598.0 --Infinity,1,a-sust-i2,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2021-22,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity --Infinity,1,a-sust-i2,2021-22,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2021-22,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +NA,NA,a-sust-i2,2021-22,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity -34.528,1,a-sust-i2,2021-22,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1329,2658.0 -2.624,1,a-sust-i2,2021-22,Belmont - Daniel Butler,00260015, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,332,664.0 -3.328,1,a-sust-i2,2021-22,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,354,708.0 -9.856,1,a-sust-i2,2021-22,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,558,1116.0 -5.472,1,a-sust-i2,2021-22,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,421,842.0 -35.584,1,a-sust-i2,2021-22,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1362,2724.0 --Infinity,1,a-sust-i2,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity +NA,NA,a-sust-i2,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity -6.848,1,a-sust-i2,2021-22,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,464,928.0 --Infinity,1,a-sust-i2,2021-22,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity --Infinity,1,a-sust-i2,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2021-22,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity 4.544,4.54,a-sust-i2,2021-22,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 3.136,3.14,a-sust-i2,2021-22,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 -0.528,1,a-sust-i2,2021-22,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,533,533.0 --Infinity,1,a-sust-i2,2021-22,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2021-22,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1299,Infinity --Infinity,1,a-sust-i2,2021-22,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1427,Infinity --Infinity,1,a-sust-i2,2021-22,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2021-22,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2021-22,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2021-22,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2021-22,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2021-22,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1299,Infinity +NA,NA,a-sust-i2,2021-22,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1427,Infinity +NA,NA,a-sust-i2,2021-22,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2021-22,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2021-22,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2021-22,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity 2.464,2.46,a-sust-i2,2021-22,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,346,346.0 --Infinity,1,a-sust-i2,2021-22,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1718,Infinity --Infinity,1,a-sust-i2,2021-22,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2021-22,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1718,Infinity +NA,NA,a-sust-i2,2021-22,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity 2.16,2.16,a-sust-i2,2021-22,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,365,365.0 2.912,2.91,a-sust-i2,2021-22,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,318,318.0 --Infinity,1,a-sust-i2,2021-22,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2021-22,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2021-22,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2021-22,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity 1.408,1.41,a-sust-i2,2021-22,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 -13.28,1,a-sust-i2,2021-22,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,532,1330.0 -11.744,1,a-sust-i2,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1234,1234.0 --Infinity,1,a-sust-i2,2021-22,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2021-22,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity 1.392,1.39,a-sust-i2,2021-22,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,413,413.0 1.68,1.68,a-sust-i2,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,395,395.0 6.368,5,a-sust-i2,2021-22,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,102,102.0 --Infinity,1,a-sust-i2,2021-22,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Adams Elementary School,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2021-22,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Adams Elementary School,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity 4.304,4.3,a-sust-i2,2021-22,Boston - Another Course To College,00350541, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,231,231.0 --Infinity,1,a-sust-i2,2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity 3.92,3.92,a-sust-i2,2021-22,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,255,255.0 --Infinity,1,a-sust-i2,2021-22,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity -25.7,1,a-sust-i2,2021-22,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,1685,2106.25 -30.656,1,a-sust-i2,2021-22,Boston - Boston Latin School,00350560, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,2416,2416.0 3.36,3.36,a-sust-i2,2021-22,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 --Infinity,1,a-sust-i2,2021-22,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity 5.12,5,a-sust-i2,2021-22,Boston - Brighton High School,00350505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,360,180.0 --Infinity,1,a-sust-i2,2021-22,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Channing Elementary School,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Channing Elementary School,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity -5.136,1,a-sust-i2,2021-22,Boston - Charlestown High School,00350515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,821,821.0 --Infinity,1,a-sust-i2,2021-22,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Clap Elementary School,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Clap Elementary School,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity 2.704,2.7,a-sust-i2,2021-22,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,331,331.0 --Infinity,1,a-sust-i2,2021-22,Boston - Condon K-8 School,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Conley Elementary School,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Condon K-8 School,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Conley Elementary School,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity -6.4,1,a-sust-i2,2021-22,Boston - Curley K-8 School,00350020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,900,900.0 -1.248,1,a-sust-i2,2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,578,578.0 2.048,2.05,a-sust-i2,2021-22,Boston - Dever Elementary School,00350268, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 --Infinity,1,a-sust-i2,2021-22,Boston - East Boston Early Education Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2021-22,Boston - East Boston Early Education Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity -9.776,1,a-sust-i2,2021-22,Boston - East Boston High School,00350530, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1111,1111.0 0.224,1,a-sust-i2,2021-22,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,486,486.0 --Infinity,1,a-sust-i2,2021-22,Boston - Eliot K-8 Innovation School,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Eliot K-8 Innovation School,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity 5.2,5,a-sust-i2,2021-22,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,175,175.0 --Infinity,1,a-sust-i2,2021-22,Boston - English High School,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2021-22,Boston - English High School,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity 0.976,1,a-sust-i2,2021-22,Boston - Excel High School,00350522, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,439,439.0 --Infinity,1,a-sust-i2,2021-22,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity 1.968,1.97,a-sust-i2,2021-22,Boston - Gardner Pilot Academy,00350326, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 --Infinity,1,a-sust-i2,2021-22,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity 4.128,4.13,a-sust-i2,2021-22,Boston - Guild Elementary School,00350062, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,242,242.0 --Infinity,1,a-sust-i2,2021-22,Boston - Hale Elementary School,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Harvard-Kent Elementary School,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Hale Elementary School,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Harvard-Kent Elementary School,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity 5.152,5,a-sust-i2,2021-22,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,178,178.0 4.768,4.77,a-sust-i2,2021-22,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,202,202.0 --Infinity,1,a-sust-i2,2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,718,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,718,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity 4.992,4.99,a-sust-i2,2021-22,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,188,188.0 --Infinity,1,a-sust-i2,2021-22,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity 6.88,5,a-sust-i2,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,70,70.0 --Infinity,1,a-sust-i2,2021-22,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity 5.872,5,a-sust-i2,2021-22,Boston - Irving Middle School,00350445, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,133,133.0 2.368,2.37,a-sust-i2,2021-22,Boston - Jackson-Mann K-8 School,00350013, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 --Infinity,1,a-sust-i2,2021-22,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity 1.536,1.54,a-sust-i2,2021-22,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,404,404.0 --Infinity,1,a-sust-i2,2021-22,Boston - King K-8 School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2021-22,Boston - King K-8 School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity 5.2,5,a-sust-i2,2021-22,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,175,175.0 --Infinity,1,a-sust-i2,2021-22,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1160,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1160,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity 2.832,2.83,a-sust-i2,2021-22,Boston - Margarita Muniz Academy,00350549, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,323,323.0 -2.448,1,a-sust-i2,2021-22,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,653,653.0 --Infinity,1,a-sust-i2,2021-22,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity 2.504,2.5,a-sust-i2,2021-22,Boston - McKay K-8 School,00350080, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,687,343.5 --Infinity,1,a-sust-i2,2021-22,Boston - McKinley Schools,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Mission Hill K-8 School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2021-22,Boston - McKinley Schools,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Mission Hill K-8 School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity 5.472,5,a-sust-i2,2021-22,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,158,158.0 -5.712,1,a-sust-i2,2021-22,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,857,857.0 --Infinity,1,a-sust-i2,2021-22,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1548,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Perry K-8 School,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2021-22,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2021-22,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1548,Infinity +NA,NA,a-sust-i2,2021-22,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Perry K-8 School,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity 6.416,5,a-sust-i2,2021-22,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,99,99.0 -3.376,1,a-sust-i2,2021-22,Boston - Quincy Elementary School,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,711,711.0 --Infinity,1,a-sust-i2,2021-22,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity 3.232,3.23,a-sust-i2,2021-22,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,298,298.0 --Infinity,1,a-sust-i2,2021-22,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Timilty Middle School,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2021-22,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Timilty Middle School,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity 2.272,2.27,a-sust-i2,2021-22,Boston - Trotter K-8 School,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 --Infinity,1,a-sust-i2,2021-22,Boston - Tynan Elementary School,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Tynan Elementary School,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity -2.608,1,a-sust-i2,2021-22,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,663,663.0 --Infinity,1,a-sust-i2,2021-22,Boston - Warren-Prescott K-8 School,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2021-22,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity --Infinity,1,a-sust-i2,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Warren-Prescott K-8 School,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2021-22,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2021-22,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity +NA,NA,a-sust-i2,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,348,Infinity 0.224,1,a-sust-i2,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 -14.272,1,a-sust-i2,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,696,1392.0 2.992,2.99,a-sust-i2,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,939,313.0 @@ -3943,219 +3943,219 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.68,1,a-sust-i2,2021-22,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,365,730.0 -6.144,1,a-sust-i2,2021-22,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,442,884.0 -3.424,1,a-sust-i2,2021-22,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,357,714.0 --Infinity,1,a-sust-i2,2021-22,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2021-22,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1729,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2021-22,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2021-22,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1729,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity -8.336,1,a-sust-i2,2021-22,Braintree - East Middle School,00400305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1021,1021.0 --Infinity,1,a-sust-i2,2021-22,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2021-22,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity --Infinity,1,a-sust-i2,2021-22,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity --Infinity,1,a-sust-i2,2021-22,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2021-22,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2021-22,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2021-22,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity 3.912,3.91,a-sust-i2,2021-22,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,511,255.5 --Infinity,1,a-sust-i2,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1368,Infinity +NA,NA,a-sust-i2,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1368,Infinity -0.272,1,a-sust-i2,2021-22,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 -0.6933333333333339,1,a-sust-i2,2021-22,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6,326,543.3333333333334 3.184,3.18,a-sust-i2,2021-22,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 4.0,1204,301.0 2.288,2.29,a-sust-i2,2021-22,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,714,357.0 --Infinity,1,a-sust-i2,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity 2.088,2.09,a-sust-i2,2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,739,369.5 3.696,3.7,a-sust-i2,2021-22,Brimfield - Brimfield Elementary,00430005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,269,269.0 --Infinity,1,a-sust-i2,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1332,Infinity +NA,NA,a-sust-i2,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1332,Infinity -7.008,1,a-sust-i2,2021-22,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,469,938.0 5.056,5,a-sust-i2,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,184,184.0 4.288,4.29,a-sust-i2,2021-22,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,116,232.0 -118.176,1,a-sust-i2,2021-22,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,3943,7886.0 --Infinity,1,a-sust-i2,2021-22,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2021-22,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity -10.08,1,a-sust-i2,2021-22,Brockton - Downey,00440110, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,565,1130.0 -14.112,1,a-sust-i2,2021-22,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,691,1382.0 -8.256,1,a-sust-i2,2021-22,Brockton - East Middle School,00440405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,508,1016.0 -68.16,1,a-sust-i2,2021-22,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,952,4760.0 --Infinity,1,a-sust-i2,2021-22,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2021-22,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity +NA,NA,a-sust-i2,2021-22,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2021-22,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity -16.0,1,a-sust-i2,2021-22,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,450,1500.0 --Infinity,1,a-sust-i2,2021-22,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2021-22,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity 6.048,5,a-sust-i2,2021-22,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,61,122.0 -21.706666666666667,1,a-sust-i2,2021-22,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,557,1856.6666666666667 -29.813333333333336,1,a-sust-i2,2021-22,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,709,2363.3333333333335 -16.416,1,a-sust-i2,2021-22,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,763,1526.0 --Infinity,1,a-sust-i2,2021-22,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity --Infinity,1,a-sust-i2,2021-22,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2021-22,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity +NA,NA,a-sust-i2,2021-22,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity -1.792,1,a-sust-i2,2021-22,Brockton - North Middle School,00440410, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,306,612.0 -0.032,1,a-sust-i2,2021-22,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,753,502.0 -36.48,1,a-sust-i2,2021-22,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,556,2780.0 -38.72,1,a-sust-i2,2021-22,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,584,2920.0 --Infinity,1,a-sust-i2,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2145,Infinity +NA,NA,a-sust-i2,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2145,Infinity 0.56,1,a-sust-i2,2021-22,Brookfield - Brookfield Elementary,00450005, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,279,465.0 --Infinity,1,a-sust-i2,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,43,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2087,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,43,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2087,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity 1.36,1.36,a-sust-i2,2021-22,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,830,415.0 -4.186666666666668,1,a-sust-i2,2021-22,Brookline - Heath,00460025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,457,761.6666666666667 --Infinity,1,a-sust-i2,2021-22,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2021-22,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2021-22,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity -11.94,1,a-sust-i2,2021-22,Burlington - Burlington High,00480505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,997,1246.25 0.352,1,a-sust-i2,2021-22,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,478,478.0 -0.288,1,a-sust-i2,2021-22,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,518,518.0 0.37,1,a-sust-i2,2021-22,Burlington - Marshall Simonds Middle,00480303, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 0.0, 1.6,763,476.875 1.456,1.46,a-sust-i2,2021-22,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 --Infinity,1,a-sust-i2,2021-22,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1867,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2021-22,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2021-22,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1867,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2021-22,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity -6.448,1,a-sust-i2,2021-22,Canton - Canton High,00500505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,903,903.0 --Infinity,1,a-sust-i2,2021-22,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2021-22,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2021-22,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2021-22,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2021-22,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2021-22,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity 6.736,5,a-sust-i2,2021-22,Canton - Rodman Early Childhood Center,00500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,79,79.0 --Infinity,1,a-sust-i2,2021-22,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity +NA,NA,a-sust-i2,2021-22,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity 4.0,4.0,a-sust-i2,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 --Infinity,1,a-sust-i2,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity -1.84,1,a-sust-i2,2021-22,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,615,615.0 -4.608,1,a-sust-i2,2021-22,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,788,788.0 --Infinity,1,a-sust-i2,2021-22,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity --Infinity,1,a-sust-i2,2021-22,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2021-22,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2021-22,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2021-22,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2021-22,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +NA,NA,a-sust-i2,2021-22,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2021-22,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2021-22,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2021-22,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity -0.144,1,a-sust-i2,2021-22,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,509,509.0 0.16,1,a-sust-i2,2021-22,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,490,490.0 0.448,1,a-sust-i2,2021-22,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,472,472.0 -13.472,1,a-sust-i2,2021-22,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1342,1342.0 -15.264,1,a-sust-i2,2021-22,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,727,1454.0 --Infinity,1,a-sust-i2,2021-22,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2021-22,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity -18.528,1,a-sust-i2,2021-22,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,829,1658.0 --Infinity,1,a-sust-i2,2021-22,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2021-22,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity -39.936,1,a-sust-i2,2021-22,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1498,2996.0 --Infinity,1,a-sust-i2,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity 2.248,2.25,a-sust-i2,2021-22,Chelsea - Clark Avenue School,00570050, 0.0, 1.5, 0.0, 0.0, 0.0, 0.5, 0.0, 2.0,719,359.5 --Infinity,1,a-sust-i2,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2021-22,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2021-22,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2021-22,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity --Infinity,1,a-sust-i2,2021-22,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2021-22,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity -3.84,1,a-sust-i2,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,148,740.0 --Infinity,1,a-sust-i2,2021-22,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1154,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,925,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity --Infinity,1,a-sust-i2,2021-22,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2021-22,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2021-22,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity --Infinity,1,a-sust-i2,2021-22,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity --Infinity,1,a-sust-i2,2021-22,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1154,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,925,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2021-22,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2021-22,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2021-22,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +NA,NA,a-sust-i2,2021-22,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2021-22,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity -5.568,1,a-sust-i2,2021-22,Cohasset - Cohasset High School,00650505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,424,848.0 --Infinity,1,a-sust-i2,2021-22,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2021-22,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2021-22,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1117,Infinity --Infinity,1,a-sust-i2,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2021-22,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2021-22,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2021-22,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1117,Infinity +NA,NA,a-sust-i2,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity 1.312,1.31,a-sust-i2,2021-22,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,418,418.0 --Infinity,1,a-sust-i2,2021-22,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity --Infinity,1,a-sust-i2,2021-22,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2021-22,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2021-22,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity +NA,NA,a-sust-i2,2021-22,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2021-22,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity -13.168,1,a-sust-i2,2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1323,1323.0 --Infinity,1,a-sust-i2,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity 5.68,5,a-sust-i2,2021-22,Conway - Conway Grammar,00680005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,145,145.0 --Infinity,1,a-sust-i2,2021-22,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity --Infinity,1,a-sust-i2,2021-22,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2021-22,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2021-22,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,770,Infinity --Infinity,1,a-sust-i2,2021-22,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2021-22,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2021-22,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2021-22,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +NA,NA,a-sust-i2,2021-22,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2021-22,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2021-22,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,770,Infinity +NA,NA,a-sust-i2,2021-22,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2021-22,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2021-22,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity 5.904,5,a-sust-i2,2021-22,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,131,131.0 --Infinity,1,a-sust-i2,2021-22,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1032,Infinity +NA,NA,a-sust-i2,2021-22,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1032,Infinity 1.52,1.52,a-sust-i2,2021-22,Dartmouth - Dartmouth Middle,00720050, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,810,405.0 1.728,1.73,a-sust-i2,2021-22,Dartmouth - George H Potter,00720030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,392,392.0 --Infinity,1,a-sust-i2,2021-22,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity --Infinity,1,a-sust-i2,2021-22,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2021-22,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2021-22,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2021-22,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2021-22,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity 0.522666666666667,1,a-sust-i2,2021-22,Dedham - Dedham High,00730505, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,701,467.3333333333333 -10.304,1,a-sust-i2,2021-22,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,572,1144.0 --Infinity,1,a-sust-i2,2021-22,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2021-22,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2021-22,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2021-22,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2021-22,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2021-22,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity 2.496,2.5,a-sust-i2,2021-22,Dedham - Riverdale,00730045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,172,344.0 --Infinity,1,a-sust-i2,2021-22,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,900,Infinity --Infinity,1,a-sust-i2,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2021-22,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2021-22,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2021-22,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,900,Infinity +NA,NA,a-sust-i2,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2021-22,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2021-22,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity 2.624,2.62,a-sust-i2,2021-22,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,336,336.0 --Infinity,1,a-sust-i2,2021-22,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2021-22,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2021-22,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2021-22,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2021-22,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2021-22,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity -13.024,1,a-sust-i2,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,657,1314.0 --Infinity,1,a-sust-i2,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity -17.546666666666667,1,a-sust-i2,2021-22,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,479,1596.6666666666667 -20.032,1,a-sust-i2,2021-22,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,876,1752.0 -20.58666666666667,1,a-sust-i2,2021-22,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,536,1786.6666666666667 -6.08,1,a-sust-i2,2021-22,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,264,880.0 -22.773333333333337,1,a-sust-i2,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,577,1923.3333333333335 -20.672,1,a-sust-i2,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,896,1792.0 --Infinity,1,a-sust-i2,2021-22,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, 0.0,286,Infinity --Infinity,1,a-sust-i2,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0,286,Infinity +NA,NA,a-sust-i2,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity -1.984,1,a-sust-i2,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,624,624.0 --Infinity,1,a-sust-i2,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity -9.408,1,a-sust-i2,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,544,1088.0 1.056,1.06,a-sust-i2,2021-22,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,434,434.0 --Infinity,1,a-sust-i2,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,930,Infinity +NA,NA,a-sust-i2,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,930,Infinity 3.256,3.26,a-sust-i2,2021-22,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,593,296.5 3.04,3.04,a-sust-i2,2021-22,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,620,310.0 0.416,1,a-sust-i2,2021-22,Duxbury - Duxbury High,00820505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,948,474.0 @@ -4163,57 +4163,57 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -9.536,1,a-sust-i2,2021-22,East Bridgewater - Central,00830005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,548,1096.0 -21.792,1,a-sust-i2,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,931,1862.0 -12.096,1,a-sust-i2,2021-22,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,628,1256.0 --Infinity,1,a-sust-i2,2021-22,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity --Infinity,1,a-sust-i2,2021-22,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity --Infinity,1,a-sust-i2,2021-22,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2021-22,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2021-22,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2021-22,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity --Infinity,1,a-sust-i2,2021-22,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2021-22,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2021-22,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity --Infinity,1,a-sust-i2,2021-22,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2021-22,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2021-22,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2021-22,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,834,Infinity --Infinity,1,a-sust-i2,2021-22,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2021-22,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1113,Infinity --Infinity,1,a-sust-i2,2021-22,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2021-22,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity --Infinity,1,a-sust-i2,2021-22,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2021-22,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2021-22,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2021-22,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2021-22,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2021-22,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2021-22,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2021-22,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2021-22,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2021-22,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2021-22,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2021-22,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2021-22,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2021-22,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,834,Infinity +NA,NA,a-sust-i2,2021-22,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2021-22,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1113,Infinity +NA,NA,a-sust-i2,2021-22,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2021-22,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity +NA,NA,a-sust-i2,2021-22,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity -7.8,1,a-sust-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, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,395,987.5 --Infinity,1,a-sust-i2,2021-22,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,1654,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2091,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,877,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2021-22,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2021-22,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,1654,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2091,Infinity +NA,NA,a-sust-i2,2021-22,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,877,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2021-22,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity -13.84,1,a-sust-i2,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,1365,1365.0 -1.792,1,a-sust-i2,2021-22,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,306,612.0 --Infinity,1,a-sust-i2,2021-22,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2021-22,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2021-22,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2021-22,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity -6.592,1,a-sust-i2,2021-22,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,456,912.0 -67.104,1,a-sust-i2,2021-22,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2347,4694.0 -3.424,1,a-sust-i2,2021-22,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,714,714.0 --Infinity,1,a-sust-i2,2021-22,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity -3.24,1,a-sust-i2,2021-22,Fall River - James Tansey,00950140, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,281,702.5 --Infinity,1,a-sust-i2,2021-22,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,707,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,707,Infinity -14.208,1,a-sust-i2,2021-22,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,694,1388.0 --Infinity,1,a-sust-i2,2021-22,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity --Infinity,1,a-sust-i2,2021-22,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity +NA,NA,a-sust-i2,2021-22,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity -9.68,1,a-sust-i2,2021-22,Fall River - William S Greene,00950065, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,663,1105.0 -14.08,1,a-sust-i2,2021-22,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,276,1380.0 -34.93333333333334,1,a-sust-i2,2021-22,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,805,2683.3333333333335 @@ -4222,23 +4222,23 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -56.0,1,a-sust-i2,2021-22,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,400,4000.0 -46.08,1,a-sust-i2,2021-22,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,338,3380.0 -32.48,1,a-sust-i2,2021-22,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,253,2530.0 --Infinity,1,a-sust-i2,2021-22,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1293,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity --Infinity,1,a-sust-i2,2021-22,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2021-22,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2021-22,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1293,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2021-22,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2021-22,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity 4.124444444444444,4.12,a-sust-i2,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,218,242.22222222222223 --Infinity,1,a-sust-i2,2021-22,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2021-22,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,772,Infinity --Infinity,1,a-sust-i2,2021-22,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,754,Infinity --Infinity,1,a-sust-i2,2021-22,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2021-22,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1689,Infinity +NA,NA,a-sust-i2,2021-22,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2021-22,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,772,Infinity +NA,NA,a-sust-i2,2021-22,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,754,Infinity +NA,NA,a-sust-i2,2021-22,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2021-22,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1689,Infinity -2.688,1,a-sust-i2,2021-22,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,668,668.0 0.56,1,a-sust-i2,2021-22,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,465,465.0 -0.528,1,a-sust-i2,2021-22,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,533,533.0 @@ -4253,350 +4253,350 @@ NaN,NaN,a-sust-i2,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.528,1,a-sust-i2,2021-22,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,467,467.0 -0.64,1,a-sust-i2,2021-22,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,540,540.0 2.136,2.14,a-sust-i2,2021-22,Framingham - Walsh Middle,01000310, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,733,366.5 --Infinity,1,a-sust-i2,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1673,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity --Infinity,1,a-sust-i2,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,718,Infinity --Infinity,1,a-sust-i2,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity --Infinity,1,a-sust-i2,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2021-22,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1673,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2021-22,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +NA,NA,a-sust-i2,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,718,Infinity +NA,NA,a-sust-i2,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2021-22,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity 0.608,1,a-sust-i2,2021-22,Gardner - Elm Street School,01030001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,462,462.0 --Infinity,1,a-sust-i2,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity -3.84,1,a-sust-i2,2021-22,Gardner - Gardner High,01030505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,740,740.0 -0.288,1,a-sust-i2,2021-22,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,518,518.0 -5.92,1,a-sust-i2,2021-22,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,435,870.0 --Infinity,1,a-sust-i2,2021-22,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2021-22,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity --Infinity,1,a-sust-i2,2021-22,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2021-22,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2021-22,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2021-22,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,71,Infinity --Infinity,1,a-sust-i2,2021-22,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity --Infinity,1,a-sust-i2,2021-22,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity --Infinity,1,a-sust-i2,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity --Infinity,1,a-sust-i2,2021-22,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity --Infinity,1,a-sust-i2,2021-22,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2021-22,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2021-22,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2021-22,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +NA,NA,a-sust-i2,2021-22,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2021-22,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2021-22,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2021-22,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,71,Infinity +NA,NA,a-sust-i2,2021-22,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity +NA,NA,a-sust-i2,2021-22,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2021-22,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity +NA,NA,a-sust-i2,2021-22,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2021-22,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity 5.328,5,a-sust-i2,2021-22,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,167,167.0 --Infinity,1,a-sust-i2,2021-22,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity --Infinity,1,a-sust-i2,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity --Infinity,1,a-sust-i2,2021-22,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2021-22,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity +NA,NA,a-sust-i2,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity +NA,NA,a-sust-i2,2021-22,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity -2.08,1,a-sust-i2,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,630,630.0 --Infinity,1,a-sust-i2,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity 2.064,2.06,a-sust-i2,2021-22,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,371,371.0 -NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -6.544,1,a-sust-i2,2021-22,Grafton - Grafton High School,01100505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,909,909.0 --Infinity,1,a-sust-i2,2021-22,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2021-22,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity --Infinity,1,a-sust-i2,2021-22,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2021-22,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity +NA,NA,a-sust-i2,2021-22,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2021-22,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity +NA,NA,a-sust-i2,2021-22,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2021-22,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity 3.616,3.62,a-sust-i2,2021-22,Grafton - South Grafton Elementary,01100005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,274,274.0 --Infinity,1,a-sust-i2,2021-22,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2021-22,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1030,Infinity --Infinity,1,a-sust-i2,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1421,Infinity --Infinity,1,a-sust-i2,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1655,Infinity --Infinity,1,a-sust-i2,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2300,Infinity +NA,NA,a-sust-i2,2021-22,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2021-22,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1030,Infinity +NA,NA,a-sust-i2,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1421,Infinity +NA,NA,a-sust-i2,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1655,Infinity +NA,NA,a-sust-i2,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2300,Infinity -25.76,1,a-sust-i2,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,2110,2110.0 -4.64,1,a-sust-i2,2021-22,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,237,790.0 -2.826666666666668,1,a-sust-i2,2021-22,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,203,676.6666666666667 -0.144,1,a-sust-i2,2021-22,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,509,509.0 --Infinity,1,a-sust-i2,2021-22,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2021-22,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity -3.253333333333334,1,a-sust-i2,2021-22,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,211,703.3333333333334 --Infinity,1,a-sust-i2,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity --Infinity,1,a-sust-i2,2021-22,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity --Infinity,1,a-sust-i2,2021-22,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity --Infinity,1,a-sust-i2,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity --Infinity,1,a-sust-i2,2021-22,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2021-22,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2021-22,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2021-22,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity +NA,NA,a-sust-i2,2021-22,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity +NA,NA,a-sust-i2,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2021-22,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2021-22,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2021-22,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity -1.024,1,a-sust-i2,2021-22,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,564,564.0 --Infinity,1,a-sust-i2,2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2021-22,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2021-22,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2021-22,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity --Infinity,1,a-sust-i2,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2021-22,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2021-22,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2021-22,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +NA,NA,a-sust-i2,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity -2.72,1,a-sust-i2,2021-22,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,335,670.0 --Infinity,1,a-sust-i2,2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1017,Infinity +NA,NA,a-sust-i2,2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1017,Infinity -2.08,1,a-sust-i2,2021-22,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,315,630.0 --Infinity,1,a-sust-i2,2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity -2.96,1,a-sust-i2,2021-22,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,685,685.0 --Infinity,1,a-sust-i2,2021-22,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2021-22,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity 0.368,1,a-sust-i2,2021-22,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 --Infinity,1,a-sust-i2,2021-22,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2021-22,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2021-22,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity +NA,NA,a-sust-i2,2021-22,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2021-22,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2021-22,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity -1.168,1,a-sust-i2,2021-22,Harvard - Bromfield,01250505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,573,573.0 --Infinity,1,a-sust-i2,2021-22,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2021-22,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2021-22,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1064,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1931,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2021-22,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity --Infinity,1,a-sust-i2,2021-22,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2021-22,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2021-22,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1205,Infinity --Infinity,1,a-sust-i2,2021-22,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,878,Infinity --Infinity,1,a-sust-i2,2021-22,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2021-22,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2021-22,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2021-22,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2021-22,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2021-22,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1064,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1931,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2021-22,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i2,2021-22,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2021-22,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2021-22,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1205,Infinity +NA,NA,a-sust-i2,2021-22,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,878,Infinity +NA,NA,a-sust-i2,2021-22,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2021-22,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2021-22,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity -11.584,1,a-sust-i2,2021-22,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,612,1224.0 --Infinity,1,a-sust-i2,2021-22,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity +NA,NA,a-sust-i2,2021-22,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity 3.48,3.48,a-sust-i2,2021-22,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,226,282.5 -4.992,1,a-sust-i2,2021-22,Holliston - Holliston High,01360505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,812,812.0 -1.744,1,a-sust-i2,2021-22,Holliston - Miller School,01360007, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,609,609.0 --Infinity,1,a-sust-i2,2021-22,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2021-22,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity -13.632,1,a-sust-i2,2021-22,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,676,1352.0 --Infinity,1,a-sust-i2,2021-22,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1508,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2021-22,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2021-22,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,653,Infinity --Infinity,1,a-sust-i2,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1508,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2021-22,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2021-22,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,653,Infinity +NA,NA,a-sust-i2,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity -9.568,1,a-sust-i2,2021-22,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,549,1098.0 --Infinity,1,a-sust-i2,2021-22,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2021-22,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity -91.52,1,a-sust-i2,2021-22,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,622,6220.0 -89.44,1,a-sust-i2,2021-22,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,609,6090.0 -185.92,1,a-sust-i2,2021-22,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,1212,12120.0 -139.68,1,a-sust-i2,2021-22,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,923,9230.0 --Infinity,1,a-sust-i2,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity -81.76,1,a-sust-i2,2021-22,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,561,5610.0 --Infinity,1,a-sust-i2,2021-22,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2021-22,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2021-22,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2021-22,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity 2.912,2.91,a-sust-i2,2021-22,Hudson - Forest Avenue Elementary,01410015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,318,318.0 --Infinity,1,a-sust-i2,2021-22,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity --Infinity,1,a-sust-i2,2021-22,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2021-22,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2021-22,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2021-22,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity +NA,NA,a-sust-i2,2021-22,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity +NA,NA,a-sust-i2,2021-22,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2021-22,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2021-22,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2021-22,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity -8.896,1,a-sust-i2,2021-22,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,528,1056.0 -6.4,1,a-sust-i2,2021-22,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,360,900.0 -3.136,1,a-sust-i2,2021-22,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,348,696.0 -4.544,1,a-sust-i2,2021-22,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,392,784.0 --Infinity,1,a-sust-i2,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity --Infinity,1,a-sust-i2,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1614,Infinity --Infinity,1,a-sust-i2,2021-22,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1614,Infinity +NA,NA,a-sust-i2,2021-22,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity -10.592,1,a-sust-i2,2021-22,King Philip - King Philip Regional High,06900505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1162,1162.0 0.688,1,a-sust-i2,2021-22,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,457,457.0 -1.44,1,a-sust-i2,2021-22,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,590,590.0 --Infinity,1,a-sust-i2,2021-22,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity 5.408,5,a-sust-i2,2021-22,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,162,162.0 -8.517333333333331,1,a-sust-i2,2021-22,Lawrence - Lawrence High School,01490515, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,3097,1032.3333333333333 --Infinity,1,a-sust-i2,2021-22,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity -0.656,1,a-sust-i2,2021-22,Lawrence - Robert Frost,01490018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,541,541.0 5.392,5,a-sust-i2,2021-22,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,163,163.0 --Infinity,1,a-sust-i2,2021-22,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2021-22,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity 1.9555555555555557,1.96,a-sust-i2,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,340,377.77777777777777 3.024,3.02,a-sust-i2,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,311,311.0 --Infinity,1,a-sust-i2,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity --Infinity,1,a-sust-i2,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity --Infinity,1,a-sust-i2,2021-22,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2021-22,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity +NA,NA,a-sust-i2,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity +NA,NA,a-sust-i2,2021-22,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2021-22,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity 0.032,1,a-sust-i2,2021-22,Leicester - Leicester Elementary,01510005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,498,498.0 1.072,1.07,a-sust-i2,2021-22,Leicester - Leicester High,01510505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 --Infinity,1,a-sust-i2,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity 1.408,1.41,a-sust-i2,2021-22,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 --Infinity,1,a-sust-i2,2021-22,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2021-22,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2021-22,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2021-22,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity -9.312,1,a-sust-i2,2021-22,Leominster - Leominster High School,01530505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1082,1082.0 --Infinity,1,a-sust-i2,2021-22,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity -2.816,1,a-sust-i2,2021-22,Leominster - Northwest,01530030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,676,676.0 --Infinity,1,a-sust-i2,2021-22,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2021-22,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity --Infinity,1,a-sust-i2,2021-22,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2273,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2021-22,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity --Infinity,1,a-sust-i2,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2021-22,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2021-22,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2021-22,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2021-22,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity +NA,NA,a-sust-i2,2021-22,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2273,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2021-22,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity +NA,NA,a-sust-i2,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2021-22,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2021-22,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2021-22,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity -4.104,1,a-sust-i2,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1513,756.5 -6.432,1,a-sust-i2,2021-22,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,451,902.0 3.754666666666667,3.75,a-sust-i2,2021-22,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,398,265.3333333333333 --Infinity,1,a-sust-i2,2021-22,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2021-22,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2021-22,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2021-22,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2021-22,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,911,Infinity --Infinity,1,a-sust-i2,2021-22,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2021-22,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3056,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,822,Infinity --Infinity,1,a-sust-i2,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,74,Infinity --Infinity,1,a-sust-i2,2021-22,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2021-22,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,827,Infinity --Infinity,1,a-sust-i2,2021-22,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,5,Infinity +NA,NA,a-sust-i2,2021-22,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2021-22,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2021-22,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2021-22,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2021-22,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,911,Infinity +NA,NA,a-sust-i2,2021-22,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2021-22,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3056,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2021-22,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,822,Infinity +NA,NA,a-sust-i2,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,74,Infinity +NA,NA,a-sust-i2,2021-22,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2021-22,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,827,Infinity +NA,NA,a-sust-i2,2021-22,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,5,Infinity -16.0,1,a-sust-i2,2021-22,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,450,1500.0 -13.44,1,a-sust-i2,2021-22,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,402,1340.0 1.936,1.94,a-sust-i2,2021-22,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,379,379.0 2.224,2.22,a-sust-i2,2021-22,Lunenburg - Turkey Hill Elementary School,01620025, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,361,361.0 --Infinity,1,a-sust-i2,2021-22,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1270,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1823,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2165,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1482,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1275,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2021-22,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1270,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1823,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2165,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1482,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1275,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2021-22,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity -6.048,1,a-sust-i2,2021-22,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,439,878.0 -22.08,1,a-sust-i2,2021-22,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,564,1880.0 -3.088,1,a-sust-i2,2021-22,Lynnfield - Lynnfield Middle School,01640405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,693,693.0 --Infinity,1,a-sust-i2,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity --Infinity,1,a-sust-i2,2021-22,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2021-22,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity --Infinity,1,a-sust-i2,2021-22,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,896,Infinity --Infinity,1,a-sust-i2,2021-22,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2021-22,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,787,Infinity --Infinity,1,a-sust-i2,2021-22,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2021-22,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1757,Infinity --Infinity,1,a-sust-i2,2021-22,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,934,Infinity --Infinity,1,a-sust-i2,2021-22,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2021-22,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2021-22,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity +NA,NA,a-sust-i2,2021-22,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,896,Infinity +NA,NA,a-sust-i2,2021-22,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2021-22,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,787,Infinity +NA,NA,a-sust-i2,2021-22,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2021-22,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1757,Infinity +NA,NA,a-sust-i2,2021-22,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,934,Infinity +NA,NA,a-sust-i2,2021-22,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity -3.488,1,a-sust-i2,2021-22,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,718,718.0 --Infinity,1,a-sust-i2,2021-22,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity --Infinity,1,a-sust-i2,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity --Infinity,1,a-sust-i2,2021-22,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1101,Infinity +NA,NA,a-sust-i2,2021-22,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity +NA,NA,a-sust-i2,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity +NA,NA,a-sust-i2,2021-22,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1101,Infinity 6.544,5,a-sust-i2,2021-22,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,91,91.0 --Infinity,1,a-sust-i2,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2021-22,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2021-22,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity 0.552,1,a-sust-i2,2021-22,Marblehead - Marblehead High,01680505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,931,465.5 --Infinity,1,a-sust-i2,2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2021-22,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2021-22,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity -0.12,1,a-sust-i2,2021-22,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,406,507.5 -4.30857142857143,1,a-sust-i2,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4,1077,769.2857142857143 --Infinity,1,a-sust-i2,2021-22,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity --Infinity,1,a-sust-i2,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +NA,NA,a-sust-i2,2021-22,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i2,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity -1.92,1,a-sust-i2,2021-22,Marlborough - Francis J Kane,01700008, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,496,620.0 --Infinity,1,a-sust-i2,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity +NA,NA,a-sust-i2,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity -8.352,1,a-sust-i2,2021-22,Marlborough - Marlborough High,01700505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1022,1022.0 -2.48,1,a-sust-i2,2021-22,Marlborough - Richer,01700025, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,524,655.0 2.016,2.02,a-sust-i2,2021-22,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,374,374.0 @@ -4606,226 +4606,226 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -11.92,1,a-sust-i2,2021-22,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1245,1245.0 -0.176,1,a-sust-i2,2021-22,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 3.824,3.82,a-sust-i2,2021-22,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,261,261.0 --Infinity,1,a-sust-i2,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity --Infinity,1,a-sust-i2,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2021-22,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1047,Infinity --Infinity,1,a-sust-i2,2021-22,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2021-22,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2021-22,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2021-22,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2021-22,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2021-22,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2021-22,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity +NA,NA,a-sust-i2,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2021-22,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1047,Infinity +NA,NA,a-sust-i2,2021-22,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2021-22,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2021-22,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2021-22,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2021-22,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2021-22,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2021-22,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity -1.12,1,a-sust-i2,2021-22,Maynard - Fowler School,01740305, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.0, 0.8,456,570.0 -1.5542857142857156,1,a-sust-i2,2021-22,Maynard - Green Meadow,01740010, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,418,597.1428571428572 -1.952,1,a-sust-i2,2021-22,Maynard - Maynard High,01740505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,311,622.0 --Infinity,1,a-sust-i2,2021-22,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2021-22,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity --Infinity,1,a-sust-i2,2021-22,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2021-22,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2021-22,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2021-22,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2021-22,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2021-22,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2021-22,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2021-22,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity -8.704,1,a-sust-i2,2021-22,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,522,1044.0 --Infinity,1,a-sust-i2,2021-22,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity +NA,NA,a-sust-i2,2021-22,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity -15.573333333333336,1,a-sust-i2,2021-22,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,442,1473.3333333333335 -6.624,1,a-sust-i2,2021-22,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,457,914.0 -6.656,1,a-sust-i2,2021-22,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,458,916.0 -30.624,1,a-sust-i2,2021-22,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1207,2414.0 -19.573333333333334,1,a-sust-i2,2021-22,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,517,1723.3333333333335 -5.088,1,a-sust-i2,2021-22,Medford - Missituk Elementary School,01760140, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,409,818.0 --Infinity,1,a-sust-i2,2021-22,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2021-22,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2021-22,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2021-22,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity -2.224,1,a-sust-i2,2021-22,Medway - Medway High,01770505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,639,639.0 --Infinity,1,a-sust-i2,2021-22,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,923,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,844,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2021-22,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2021-22,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2021-22,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2021-22,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity --Infinity,1,a-sust-i2,2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity --Infinity,1,a-sust-i2,2021-22,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity --Infinity,1,a-sust-i2,2021-22,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1256,Infinity --Infinity,1,a-sust-i2,2021-22,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1076,Infinity --Infinity,1,a-sust-i2,2021-22,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1891,Infinity --Infinity,1,a-sust-i2,2021-22,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1268,Infinity +NA,NA,a-sust-i2,2021-22,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,923,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,844,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2021-22,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2021-22,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2021-22,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2021-22,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity +NA,NA,a-sust-i2,2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity +NA,NA,a-sust-i2,2021-22,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity +NA,NA,a-sust-i2,2021-22,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1256,Infinity +NA,NA,a-sust-i2,2021-22,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1076,Infinity +NA,NA,a-sust-i2,2021-22,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1891,Infinity +NA,NA,a-sust-i2,2021-22,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1268,Infinity -0.752,1,a-sust-i2,2021-22,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,547,547.0 -3.184,1,a-sust-i2,2021-22,Middleborough - John T. Nichols Middle,01820305, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,699,699.0 -11.296,1,a-sust-i2,2021-22,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,603,1206.0 3.552,3.55,a-sust-i2,2021-22,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 -6.144,1,a-sust-i2,2021-22,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,884,884.0 --Infinity,1,a-sust-i2,2021-22,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2021-22,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2021-22,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2021-22,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2021-22,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1278,Infinity --Infinity,1,a-sust-i2,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity --Infinity,1,a-sust-i2,2021-22,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity --Infinity,1,a-sust-i2,2021-22,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,931,Infinity --Infinity,1,a-sust-i2,2021-22,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity --Infinity,1,a-sust-i2,2021-22,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity --Infinity,1,a-sust-i2,2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2021-22,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2021-22,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2021-22,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2021-22,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,928,Infinity --Infinity,1,a-sust-i2,2021-22,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2021-22,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2021-22,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity --Infinity,1,a-sust-i2,2021-22,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1106,Infinity --Infinity,1,a-sust-i2,2021-22,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2021-22,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2021-22,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2021-22,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2021-22,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2021-22,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1278,Infinity +NA,NA,a-sust-i2,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +NA,NA,a-sust-i2,2021-22,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity +NA,NA,a-sust-i2,2021-22,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,931,Infinity +NA,NA,a-sust-i2,2021-22,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2021-22,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity +NA,NA,a-sust-i2,2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2021-22,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2021-22,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2021-22,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2021-22,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,928,Infinity +NA,NA,a-sust-i2,2021-22,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2021-22,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2021-22,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity +NA,NA,a-sust-i2,2021-22,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1106,Infinity +NA,NA,a-sust-i2,2021-22,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity -2.48,1,a-sust-i2,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.4, 1.0,655,655.0 --Infinity,1,a-sust-i2,2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2021-22,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2021-22,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity --Infinity,1,a-sust-i2,2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity +NA,NA,a-sust-i2,2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2021-22,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2021-22,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity 0.128,1,a-sust-i2,2021-22,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,492,492.0 --Infinity,1,a-sust-i2,2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity --Infinity,1,a-sust-i2,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2021-22,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2021-22,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2021-22,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413,Infinity --Infinity,1,a-sust-i2,2021-22,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +NA,NA,a-sust-i2,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2021-22,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2021-22,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2021-22,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413,Infinity +NA,NA,a-sust-i2,2021-22,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity -0.384,1,a-sust-i2,2021-22,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,524,524.0 --Infinity,1,a-sust-i2,2021-22,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1586,Infinity --Infinity,1,a-sust-i2,2021-22,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity --Infinity,1,a-sust-i2,2021-22,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2021-22,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2021-22,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity --Infinity,1,a-sust-i2,2021-22,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2021-22,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2021-22,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2021-22,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity --Infinity,1,a-sust-i2,2021-22,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2021-22,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity --Infinity,1,a-sust-i2,2021-22,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2021-22,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2021-22,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1586,Infinity +NA,NA,a-sust-i2,2021-22,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity +NA,NA,a-sust-i2,2021-22,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2021-22,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2021-22,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +NA,NA,a-sust-i2,2021-22,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2021-22,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2021-22,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2021-22,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity +NA,NA,a-sust-i2,2021-22,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2021-22,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity +NA,NA,a-sust-i2,2021-22,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2021-22,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity 0.656,1,a-sust-i2,2021-22,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,459,459.0 --Infinity,1,a-sust-i2,2021-22,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity +NA,NA,a-sust-i2,2021-22,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity -3.776,1,a-sust-i2,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,736,736.0 -0.112,1,a-sust-i2,2021-22,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,507,507.0 --Infinity,1,a-sust-i2,2021-22,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2021-22,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity 1.2,1.2,a-sust-i2,2021-22,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,850,425.0 --Infinity,1,a-sust-i2,2021-22,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2021-22,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity 1.808,1.81,a-sust-i2,2021-22,Natick - Lilja Elementary,01980035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 1.664,1.66,a-sust-i2,2021-22,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 -18.848,1,a-sust-i2,2021-22,Natick - Natick High,01980505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1678,1678.0 -5.088,1,a-sust-i2,2021-22,Natick - Wilson Middle,01980310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,818,818.0 --Infinity,1,a-sust-i2,2021-22,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity --Infinity,1,a-sust-i2,2021-22,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2021-22,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity +NA,NA,a-sust-i2,2021-22,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity -5.76,1,a-sust-i2,2021-22,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,516,860.0 --Infinity,1,a-sust-i2,2021-22,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2021-22,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity -9.24,1,a-sust-i2,2021-22,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,431,1077.5 --Infinity,1,a-sust-i2,2021-22,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1669,Infinity +NA,NA,a-sust-i2,2021-22,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1669,Infinity -9.733333333333336,1,a-sust-i2,2021-22,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,665,1108.3333333333335 --Infinity,1,a-sust-i2,2021-22,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity +NA,NA,a-sust-i2,2021-22,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity -8.192,1,a-sust-i2,2021-22,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,506,1012.0 -6.4,1,a-sust-i2,2021-22,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,450,900.0 1.888,1.89,a-sust-i2,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,764,382.0 --Infinity,1,a-sust-i2,2021-22,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity -2.608,1,a-sust-i2,2021-22,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,663,663.0 --Infinity,1,a-sust-i2,2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,938,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2890,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1112,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity --Infinity,1,a-sust-i2,2021-22,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity --Infinity,1,a-sust-i2,2021-22,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,938,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2890,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1112,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity +NA,NA,a-sust-i2,2021-22,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2021-22,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity 3.504,3.5,a-sust-i2,2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 -1.68,1,a-sust-i2,2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,605,605.0 --Infinity,1,a-sust-i2,2021-22,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity +NA,NA,a-sust-i2,2021-22,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity 4.16,4.16,a-sust-i2,2021-22,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,480,240.0 --Infinity,1,a-sust-i2,2021-22,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2021-22,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity 2.352,2.35,a-sust-i2,2021-22,Newton - C C Burr,02070020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 --Infinity,1,a-sust-i2,2021-22,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,759,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,759,Infinity 1.386666666666667,1.39,a-sust-i2,2021-22,Newton - Countryside,02070040, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,372,413.3333333333333 --Infinity,1,a-sust-i2,2021-22,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,934,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2021-22,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,934,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity 0.6,1,a-sust-i2,2021-22,Newton - Horace Mann,02070075, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,370,462.5 --Infinity,1,a-sust-i2,2021-22,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2021-22,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity -25.568,1,a-sust-i2,2021-22,Newton - Newton North High,02070505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,2098,2098.0 --Infinity,1,a-sust-i2,2021-22,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity -2.576,1,a-sust-i2,2021-22,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,661,661.0 4.192,4.19,a-sust-i2,2021-22,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,238,238.0 --Infinity,1,a-sust-i2,2021-22,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2021-22,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2021-22,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity 1.248,1.25,a-sust-i2,2021-22,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,422,422.0 --Infinity,1,a-sust-i2,2021-22,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2021-22,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity --Infinity,1,a-sust-i2,2021-22,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2021-22,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2021-22,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2021-22,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2021-22,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2021-22,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +NA,NA,a-sust-i2,2021-22,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2021-22,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2021-22,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2021-22,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity 1.905454545454546,1.91,a-sust-i2,2021-22,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.5, 0.6, 0.0, 0.0, 0.0, 1.1,419,380.9090909090909 --Infinity,1,a-sust-i2,2021-22,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2021-22,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2021-22,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2021-22,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity -22.08,1,a-sust-i2,2021-22,North Andover - Franklin,02110010, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,376,1880.0 --Infinity,1,a-sust-i2,2021-22,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2021-22,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity -13.36,1,a-sust-i2,2021-22,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1335,1335.0 -9.168,1,a-sust-i2,2021-22,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1073,1073.0 --Infinity,1,a-sust-i2,2021-22,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2021-22,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2021-22,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2021-22,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity 3.616,3.62,a-sust-i2,2021-22,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,274,274.0 --Infinity,1,a-sust-i2,2021-22,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity --Infinity,1,a-sust-i2,2021-22,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1136,Infinity --Infinity,1,a-sust-i2,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity --Infinity,1,a-sust-i2,2021-22,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,955,Infinity --Infinity,1,a-sust-i2,2021-22,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2021-22,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2021-22,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity --Infinity,1,a-sust-i2,2021-22,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity --Infinity,1,a-sust-i2,2021-22,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2021-22,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2021-22,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,785,Infinity --Infinity,1,a-sust-i2,2021-22,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity --Infinity,1,a-sust-i2,2021-22,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2021-22,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2021-22,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1136,Infinity +NA,NA,a-sust-i2,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity +NA,NA,a-sust-i2,2021-22,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,955,Infinity +NA,NA,a-sust-i2,2021-22,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2021-22,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2021-22,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +NA,NA,a-sust-i2,2021-22,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2021-22,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2021-22,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2021-22,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,785,Infinity +NA,NA,a-sust-i2,2021-22,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity +NA,NA,a-sust-i2,2021-22,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity -1.504,1,a-sust-i2,2021-22,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,297,594.0 -3.392,1,a-sust-i2,2021-22,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,356,712.0 --Infinity,1,a-sust-i2,2021-22,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2021-22,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity -2.224,1,a-sust-i2,2021-22,North Reading - North Reading High,02170505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,639,639.0 1.984,1.98,a-sust-i2,2021-22,North Reading - North Reading Middle,02170305, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,564,376.0 --Infinity,1,a-sust-i2,2021-22,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2021-22,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2021-22,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2021-22,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2021-22,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2021-22,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity 3.152,3.15,a-sust-i2,2021-22,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,303,303.0 --Infinity,1,a-sust-i2,2021-22,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,908,Infinity --Infinity,1,a-sust-i2,2021-22,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2021-22,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,908,Infinity +NA,NA,a-sust-i2,2021-22,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity -0.752,1,a-sust-i2,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,547,547.0 -42.76,1,a-sust-i2,2021-22,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,1269,3172.5 3.92,3.92,a-sust-i2,2021-22,Northborough - Fannie E Proctor,02130015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,255,255.0 @@ -4836,126 +4836,126 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -22.464,1,a-sust-i2,2021-22,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,952,1904.0 -8.416,1,a-sust-i2,2021-22,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,513,1026.0 -8.32,1,a-sust-i2,2021-22,Northbridge - Northbridge Middle,02140305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,510,1020.0 --Infinity,1,a-sust-i2,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1307,Infinity --Infinity,1,a-sust-i2,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2021-22,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2021-22,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2021-22,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1307,Infinity +NA,NA,a-sust-i2,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2021-22,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2021-22,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2021-22,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity -2.832,1,a-sust-i2,2021-22,Norton - Norton High,02180505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,677,677.0 --Infinity,1,a-sust-i2,2021-22,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2021-22,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2021-22,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2021-22,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2021-22,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity --Infinity,1,a-sust-i2,2021-22,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,987,Infinity --Infinity,1,a-sust-i2,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity --Infinity,1,a-sust-i2,2021-22,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity --Infinity,1,a-sust-i2,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2021-22,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2021-22,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2021-22,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity +NA,NA,a-sust-i2,2021-22,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2021-22,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2021-22,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2021-22,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2021-22,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity +NA,NA,a-sust-i2,2021-22,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,987,Infinity +NA,NA,a-sust-i2,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2021-22,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2021-22,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2021-22,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2021-22,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity -7.253333333333334,1,a-sust-i2,2021-22,Oxford - Alfred M Chaffee,02260010, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,286,953.3333333333334 -5.333333333333334,1,a-sust-i2,2021-22,Oxford - Clara Barton,02260005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,250,833.3333333333334 --Infinity,1,a-sust-i2,2021-22,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2021-22,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity -13.333333333333336,1,a-sust-i2,2021-22,Oxford - Oxford Middle,02260405, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,400,1333.3333333333335 --Infinity,1,a-sust-i2,2021-22,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +NA,NA,a-sust-i2,2021-22,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity -10.08,1,a-sust-i2,2021-22,Palmer - Palmer High,02270505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,565,1130.0 -25.54666666666667,1,a-sust-i2,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,629,2096.666666666667 --Infinity,1,a-sust-i2,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.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1393,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1455,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2021-22,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2021-22,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +NA,NA,a-sust-i2,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.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1393,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1455,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2021-22,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2021-22,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity 0.944,1,a-sust-i2,2021-22,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,441,441.0 --Infinity,1,a-sust-i2,2021-22,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2021-22,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2021-22,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2021-22,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,785,Infinity +NA,NA,a-sust-i2,2021-22,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2021-22,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2021-22,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2021-22,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,785,Infinity 1.184,1.18,a-sust-i2,2021-22,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,213,426.0 -1.856,1,a-sust-i2,2021-22,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,308,616.0 0.448,1,a-sust-i2,2021-22,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,472,472.0 -0.192,1,a-sust-i2,2021-22,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,256,512.0 2.736,2.74,a-sust-i2,2021-22,Pentucket - Pentucket Regional Middle,07450405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 --Infinity,1,a-sust-i2,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity --Infinity,1,a-sust-i2,2021-22,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i2,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity --Infinity,1,a-sust-i2,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2021-22,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i2,2021-22,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i2,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +NA,NA,a-sust-i2,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2021-22,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity -10.304,1,a-sust-i2,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,572,1144.0 --Infinity,1,a-sust-i2,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2021-22,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2021-22,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2021-22,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2021-22,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2021-22,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2021-22,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2021-22,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2021-22,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity 2.032,2.03,a-sust-i2,2021-22,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 4.736,4.74,a-sust-i2,2021-22,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,204,204.0 -0.992,1,a-sust-i2,2021-22,Plymouth - Indian Brook,02390012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,562,562.0 3.984,3.98,a-sust-i2,2021-22,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,251,251.0 3.968,3.97,a-sust-i2,2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,504,252.0 -0.98,1,a-sust-i2,2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,898,561.25 --Infinity,1,a-sust-i2,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2021-22,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity +NA,NA,a-sust-i2,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2021-22,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity -8.784,1,a-sust-i2,2021-22,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1049,1049.0 -2.608,1,a-sust-i2,2021-22,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,663,663.0 2.84,2.84,a-sust-i2,2021-22,Plymouth - South Elementary,02390046, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,645,322.5 2.736,2.74,a-sust-i2,2021-22,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 4.144,4.14,a-sust-i2,2021-22,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,241,241.0 -9.536,1,a-sust-i2,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1096,1096.0 --Infinity,1,a-sust-i2,2021-22,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2021-22,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i2,2021-22,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2021-22,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity --Infinity,1,a-sust-i2,2021-22,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2021-22,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity --Infinity,1,a-sust-i2,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2021-22,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2021-22,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2021-22,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2021-22,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i2,2021-22,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2021-22,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity +NA,NA,a-sust-i2,2021-22,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2021-22,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2021-22,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2021-22,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity -2.88,1,a-sust-i2,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,136,680.0 -2.2,1,a-sust-i2,2021-22,Quincy - Atherton Hough,02430040, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,255,637.5 -19.78666666666667,1,a-sust-i2,2021-22,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,521,1736.6666666666667 -19.44,1,a-sust-i2,2021-22,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,343,1715.0 -9.44,1,a-sust-i2,2021-22,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,327,1090.0 --Infinity,1,a-sust-i2,2021-22,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity +NA,NA,a-sust-i2,2021-22,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity -9.973333333333336,1,a-sust-i2,2021-22,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,337,1123.3333333333335 -17.173333333333336,1,a-sust-i2,2021-22,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,472,1573.3333333333335 --Infinity,1,a-sust-i2,2021-22,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2021-22,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity -20.0,1,a-sust-i2,2021-22,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,525,1750.0 -17.92,1,a-sust-i2,2021-22,Quincy - Merrymount,02430060, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,324,1620.0 -26.64,1,a-sust-i2,2021-22,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,433,2165.0 @@ -4967,137 +4967,137 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -11.2,1,a-sust-i2,2021-22,Quincy - Squantum,02430095, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,360,1200.0 -2.56,1,a-sust-i2,2021-22,Quincy - Wollaston School,02430110, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,330,660.0 -9.824,1,a-sust-i2,2021-22,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,557,1114.0 --Infinity,1,a-sust-i2,2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2021-22,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2021-22,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2021-22,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2021-22,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity --Infinity,1,a-sust-i2,2021-22,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity +NA,NA,a-sust-i2,2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2021-22,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2021-22,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2021-22,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2021-22,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i2,2021-22,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity 2.384,2.38,a-sust-i2,2021-22,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,351,351.0 1.504,1.5,a-sust-i2,2021-22,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,406,406.0 2.608,2.61,a-sust-i2,2021-22,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,337,337.0 1.488,1.49,a-sust-i2,2021-22,Reading - J Warren Killam,02460017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,407,407.0 2.0,2.0,a-sust-i2,2021-22,Reading - Joshua Eaton,02460010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 --Infinity,1,a-sust-i2,2021-22,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +NA,NA,a-sust-i2,2021-22,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity 0.433333333333333,1,a-sust-i2,2021-22,Reading - Reading Memorial High,02460505, 0.0, 1.0, 0.0, 0.8, 0.6, 0.0, 0.0, 2.4,1135,472.9166666666667 4.12,4.12,a-sust-i2,2021-22,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,485,242.5 4.032,4.03,a-sust-i2,2021-22,Reading - Wood End Elementary School,02460020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,248,248.0 --Infinity,1,a-sust-i2,2021-22,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1996,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity --Infinity,1,a-sust-i2,2021-22,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2021-22,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2021-22,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity --Infinity,1,a-sust-i2,2021-22,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2021-22,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1996,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity +NA,NA,a-sust-i2,2021-22,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2021-22,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2021-22,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity +NA,NA,a-sust-i2,2021-22,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity -15.424,1,a-sust-i2,2021-22,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,732,1464.0 --Infinity,1,a-sust-i2,2021-22,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2021-22,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2021-22,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2021-22,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity -8.0,1,a-sust-i2,2021-22,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6,600,1000.0 3.008,3.01,a-sust-i2,2021-22,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,312,312.0 0.608,1,a-sust-i2,2021-22,Rockport - Rockport High,02520510, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,231,462.0 1.44,1.44,a-sust-i2,2021-22,Rockport - Rockport Middle,02520305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,205,410.0 2.8,2.8,a-sust-i2,2021-22,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,65,325.0 --Infinity,1,a-sust-i2,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1521,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity --Infinity,1,a-sust-i2,2021-22,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity +NA,NA,a-sust-i2,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1521,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity +NA,NA,a-sust-i2,2021-22,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity 1.952,1.95,a-sust-i2,2021-22,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 0.432,1,a-sust-i2,2021-22,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,473,473.0 --Infinity,1,a-sust-i2,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity -0.752,1,a-sust-i2,2021-22,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,547,547.0 -3.792,1,a-sust-i2,2021-22,Sandwich - Oak Ridge,02610025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,737,737.0 --Infinity,1,a-sust-i2,2021-22,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity --Infinity,1,a-sust-i2,2021-22,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2021-22,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity --Infinity,1,a-sust-i2,2021-22,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2021-22,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2021-22,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2021-22,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity +NA,NA,a-sust-i2,2021-22,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2021-22,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity +NA,NA,a-sust-i2,2021-22,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2021-22,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2021-22,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity 2.864,2.86,a-sust-i2,2021-22,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,321,321.0 -1.568,1,a-sust-i2,2021-22,Scituate - Gates Middle School,02640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,598,598.0 4.064,4.06,a-sust-i2,2021-22,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,246,246.0 2.72,2.72,a-sust-i2,2021-22,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,330,330.0 -5.792,1,a-sust-i2,2021-22,Scituate - Scituate High School,02640505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,862,862.0 1.36,1.36,a-sust-i2,2021-22,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 --Infinity,1,a-sust-i2,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2021-22,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2021-22,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2021-22,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2021-22,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2021-22,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2021-22,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2021-22,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2021-22,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity 0.256,1,a-sust-i2,2021-22,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,484,484.0 -9.184,1,a-sust-i2,2021-22,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,537,1074.0 --Infinity,1,a-sust-i2,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity -14.78,1,a-sust-i2,2021-22,Sharon - Sharon High,02660505, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,1139,1423.75 --Infinity,1,a-sust-i2,2021-22,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,876,Infinity +NA,NA,a-sust-i2,2021-22,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,876,Infinity -13.072,1,a-sust-i2,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1317,1317.0 --Infinity,1,a-sust-i2,2021-22,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,979,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,952,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1835,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2021-22,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2021-22,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,979,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,952,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1835,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2021-22,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity 5.7,5,a-sust-i2,2021-22,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,115,143.75 --Infinity,1,a-sust-i2,2021-22,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1182,Infinity +NA,NA,a-sust-i2,2021-22,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1182,Infinity -0.144,1,a-sust-i2,2021-22,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,509,509.0 --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2021-22,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2021-22,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity -6.944,1,a-sust-i2,2021-22,Somerset - North Elementary,02730008, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,467,934.0 -10.944,1,a-sust-i2,2021-22,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,592,1184.0 --Infinity,1,a-sust-i2,2021-22,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2021-22,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity -23.872,1,a-sust-i2,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,996,1992.0 --Infinity,1,a-sust-i2,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1304,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2021-22,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2021-22,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1304,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2021-22,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2021-22,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity -4.448,1,a-sust-i2,2021-22,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,389,778.0 --Infinity,1,a-sust-i2,2021-22,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2021-22,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2021-22,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2021-22,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity -5.6,1,a-sust-i2,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,850,850.0 --Infinity,1,a-sust-i2,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity --Infinity,1,a-sust-i2,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity +NA,NA,a-sust-i2,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity -1.32,1,a-sust-i2,2021-22,Southampton - William E Norris,02750005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,466,582.5 3.696,3.7,a-sust-i2,2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 3.84,3.84,a-sust-i2,2021-22,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,260,260.0 2.64,2.64,a-sust-i2,2021-22,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,335,335.0 1.872,1.87,a-sust-i2,2021-22,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 --Infinity,1,a-sust-i2,2021-22,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2021-22,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2021-22,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity --Infinity,1,a-sust-i2,2021-22,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2021-22,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2021-22,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2021-22,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2021-22,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2021-22,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2021-22,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity 3.008,3.01,a-sust-i2,2021-22,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,312,312.0 -16.8,1,a-sust-i2,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1550,1550.0 --Infinity,1,a-sust-i2,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2021-22,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity --Infinity,1,a-sust-i2,2021-22,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2021-22,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,1173,Infinity +NA,NA,a-sust-i2,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2021-22,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity +NA,NA,a-sust-i2,2021-22,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2021-22,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2021-22,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, 0.0, 0.0, 0.0,1173,Infinity -2.453333333333334,1,a-sust-i2,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,392,653.3333333333334 -2.528,1,a-sust-i2,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,658,658.0 -1.888,1,a-sust-i2,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,309,618.0 @@ -5105,112 +5105,112 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.46,3.46,a-sust-i2,2021-22,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.5, 0.0, 0.3, 0.0, 0.0, 0.0, 0.8,227,283.75 -13.76,1,a-sust-i2,2021-22,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,408,1360.0 -5.344,1,a-sust-i2,2021-22,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,417,834.0 --Infinity,1,a-sust-i2,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1282,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1384,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2082,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1099,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1519,Infinity --Infinity,1,a-sust-i2,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2021-22,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2021-22,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2021-22,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2021-22,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2021-22,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2021-22,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1049,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1282,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1384,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2082,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1099,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2021-22,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1519,Infinity +NA,NA,a-sust-i2,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2021-22,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2021-22,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2021-22,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2021-22,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2021-22,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2021-22,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1049,Infinity 3.488,3.49,a-sust-i2,2021-22,Sturbridge - Burgess Elementary,02870005, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,846,282.0 --Infinity,1,a-sust-i2,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity --Infinity,1,a-sust-i2,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,868,Infinity +NA,NA,a-sust-i2,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +NA,NA,a-sust-i2,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,868,Infinity 4.821333333333334,4.82,a-sust-i2,2021-22,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,298,198.66666666666666 --Infinity,1,a-sust-i2,2021-22,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2021-22,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity 2.304,2.3,a-sust-i2,2021-22,Sudbury - Josiah Haynes,02880010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 --Infinity,1,a-sust-i2,2021-22,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity --Infinity,1,a-sust-i2,2021-22,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2021-22,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2021-22,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2021-22,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2021-22,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2021-22,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2021-22,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2021-22,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2021-22,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2021-22,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2021-22,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2021-22,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2021-22,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2021-22,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2021-22,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity 1.344,1.34,a-sust-i2,2021-22,Swampscott - Stanley,02910020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,208,416.0 1.034666666666667,1.03,a-sust-i2,2021-22,Swampscott - Swampscott High,02910505, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,653,435.3333333333333 -2.912,1,a-sust-i2,2021-22,Swampscott - Swampscott Middle,02910305, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,682,682.0 --Infinity,1,a-sust-i2,2021-22,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2021-22,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2021-22,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2021-22,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity -0.704,1,a-sust-i2,2021-22,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,544,544.0 --Infinity,1,a-sust-i2,2021-22,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2021-22,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2021-22,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2021-22,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity -34.976,1,a-sust-i2,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,2686,2686.0 -1.44,1,a-sust-i2,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,590,590.0 -2.848,1,a-sust-i2,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,678,678.0 --Infinity,1,a-sust-i2,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity -11.706666666666667,1,a-sust-i2,2021-22,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.4, 0.0, 0.2, 0.0, 0.0, 0.6,739,1231.6666666666667 -12.52,1,a-sust-i2,2021-22,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,513,1282.5 -7.946666666666668,1,a-sust-i2,2021-22,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,299,996.6666666666667 @@ -5223,147 +5223,147 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -5.2,1,a-sust-i2,2021-22,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,660,825.0 -3.52,1,a-sust-i2,2021-22,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,72,720.0 -46.4,1,a-sust-i2,2021-22,Taunton - Taunton High,02930505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,2720,3400.0 --Infinity,1,a-sust-i2,2021-22,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2021-22,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2021-22,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2021-22,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2021-22,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2021-22,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2021-22,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,802,Infinity --Infinity,1,a-sust-i2,2021-22,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2021-22,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2021-22,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,939,Infinity --Infinity,1,a-sust-i2,2021-22,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2021-22,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2021-22,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2021-22,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2021-22,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2021-22,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2021-22,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2021-22,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2021-22,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2021-22,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2021-22,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2021-22,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,802,Infinity +NA,NA,a-sust-i2,2021-22,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2021-22,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2021-22,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,939,Infinity +NA,NA,a-sust-i2,2021-22,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2021-22,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2021-22,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2021-22,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2021-22,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity 2.08,2.08,a-sust-i2,2021-22,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,111,370.0 -0.5973333333333339,1,a-sust-i2,2021-22,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,806,537.3333333333334 --Infinity,1,a-sust-i2,2021-22,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2021-22,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2021-22,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2021-22,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity 2.928,2.93,a-sust-i2,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,317,317.0 2.776,2.78,a-sust-i2,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,653,326.5 --Infinity,1,a-sust-i2,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity --Infinity,1,a-sust-i2,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity -3.904,1,a-sust-i2,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,744,744.0 --Infinity,1,a-sust-i2,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity -0.432,1,a-sust-i2,2021-22,Uxbridge - Taft Early Learning Center,03040005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,527,527.0 --Infinity,1,a-sust-i2,2021-22,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2021-22,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity -0.224,1,a-sust-i2,2021-22,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,514,514.0 --Infinity,1,a-sust-i2,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity 2.16,2.16,a-sust-i2,2021-22,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,365,365.0 3.376,3.38,a-sust-i2,2021-22,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,289,289.0 --Infinity,1,a-sust-i2,2021-22,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity 0.192,1,a-sust-i2,2021-22,Wachusett - Dawson,07750020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 --Infinity,1,a-sust-i2,2021-22,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2021-22,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2021-22,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2021-22,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2021-22,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity --Infinity,1,a-sust-i2,2021-22,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2021-22,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2021-22,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2021-22,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity -23.424,1,a-sust-i2,2021-22,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1964,1964.0 0.848,1,a-sust-i2,2021-22,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 4.736,4.74,a-sust-i2,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,102,204.0 --Infinity,1,a-sust-i2,2021-22,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1061,Infinity --Infinity,1,a-sust-i2,2021-22,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2021-22,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +NA,NA,a-sust-i2,2021-22,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1061,Infinity +NA,NA,a-sust-i2,2021-22,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2021-22,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity 1.088,1.09,a-sust-i2,2021-22,Wakefield - Walton,03050040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,216,432.0 1.232,1.23,a-sust-i2,2021-22,Wakefield - Woodville School,03050015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,423,423.0 --Infinity,1,a-sust-i2,2021-22,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2021-22,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1044,Infinity +NA,NA,a-sust-i2,2021-22,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2021-22,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1044,Infinity -7.008,1,a-sust-i2,2021-22,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,469,938.0 --Infinity,1,a-sust-i2,2021-22,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity -4.192,1,a-sust-i2,2021-22,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,381,762.0 --Infinity,1,a-sust-i2,2021-22,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2021-22,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2021-22,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity --Infinity,1,a-sust-i2,2021-22,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1643,Infinity --Infinity,1,a-sust-i2,2021-22,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2021-22,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2021-22,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2021-22,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2021-22,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2021-22,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity --Infinity,1,a-sust-i2,2021-22,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2021-22,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity --Infinity,1,a-sust-i2,2021-22,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2021-22,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2021-22,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2021-22,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1643,Infinity +NA,NA,a-sust-i2,2021-22,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2021-22,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2021-22,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2021-22,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2021-22,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2021-22,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2021-22,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2021-22,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity +NA,NA,a-sust-i2,2021-22,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2021-22,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2021-22,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2021-22,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity -0.496,1,a-sust-i2,2021-22,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,531,531.0 -0.256,1,a-sust-i2,2021-22,Wayland - Claypit Hill School,03150005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,516,516.0 3.861333333333333,3.86,a-sust-i2,2021-22,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,388,258.6666666666667 2.016,2.02,a-sust-i2,2021-22,Wayland - Loker School,03150020, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,374,374.0 --Infinity,1,a-sust-i2,2021-22,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2021-22,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity 1.5786666666666669,1.58,a-sust-i2,2021-22,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 1.5,602,401.3333333333333 --Infinity,1,a-sust-i2,2021-22,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2021-22,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity -14.592,1,a-sust-i2,2021-22,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,706,1412.0 -10.816,1,a-sust-i2,2021-22,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,588,1176.0 --Infinity,1,a-sust-i2,2021-22,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity --Infinity,1,a-sust-i2,2021-22,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1406,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity +NA,NA,a-sust-i2,2021-22,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1406,Infinity 2.026666666666666,2.03,a-sust-i2,2021-22,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,112,373.33333333333337 --Infinity,1,a-sust-i2,2021-22,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2021-22,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity 3.28,3.28,a-sust-i2,2021-22,West Bridgewater - Howard School,03230305, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,295,295.0 2.912,2.91,a-sust-i2,2021-22,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 --Infinity,1,a-sust-i2,2021-22,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2021-22,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity -1.952,1,a-sust-i2,2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,622,622.0 5.152,5,a-sust-i2,2021-22,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,89,178.0 --Infinity,1,a-sust-i2,2021-22,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2021-22,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2021-22,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2021-22,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity 2.426666666666666,2.43,a-sust-i2,2021-22,West Springfield - Memorial,03320025, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,209,348.33333333333337 -17.76,1,a-sust-i2,2021-22,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,161,1610.0 -16.693333333333335,1,a-sust-i2,2021-22,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,463,1543.3333333333335 -6.4,1,a-sust-i2,2021-22,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,270,900.0 -29.92,1,a-sust-i2,2021-22,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1185,2370.0 -15.386666666666668,1,a-sust-i2,2021-22,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.6,877,1461.6666666666667 --Infinity,1,a-sust-i2,2021-22,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2021-22,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity 0.256,1,a-sust-i2,2021-22,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,484,484.0 2.128,2.13,a-sust-i2,2021-22,Westborough - J Harding Armstrong,03210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,367,367.0 --Infinity,1,a-sust-i2,2021-22,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity --Infinity,1,a-sust-i2,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2021-22,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity +NA,NA,a-sust-i2,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity 1.2685714285714285,1.27,a-sust-i2,2021-22,Westborough - Westborough High,03210505, 0.0, 1.8, 1.0, 0.0, 0.0, 0.0, 0.0, 2.8,1178,420.7142857142857 --Infinity,1,a-sust-i2,2021-22,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1100,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2021-22,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2021-22,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1100,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2021-22,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2021-22,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2021-22,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2021-22,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2021-22,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2021-22,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2021-22,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2021-22,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2021-22,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity -17.072,1,a-sust-i2,2021-22,Westford - Westford Academy,03260505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1567,1567.0 -0.24,1,a-sust-i2,2021-22,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,103,515.0 -41.76,1,a-sust-i2,2021-22,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,311,3110.0 @@ -5371,77 +5371,77 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.28,1,a-sust-i2,2021-22,Weston - Weston High,03300505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.3, 0.0, 1.1,638,580.0 -0.03555555555555566,1,a-sust-i2,2021-22,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.0, 0.9,452,502.22222222222223 -37.44,1,a-sust-i2,2021-22,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,284,2840.0 --Infinity,1,a-sust-i2,2021-22,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2021-22,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2021-22,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2021-22,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity 1.376,1.38,a-sust-i2,2021-22,Westport - Westport Middle-High School,03310515, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,828,414.0 5.088,5,a-sust-i2,2021-22,Westwood - Deerfield School,03350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,182,182.0 3.104,3.1,a-sust-i2,2021-22,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,306,306.0 --Infinity,1,a-sust-i2,2021-22,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity +NA,NA,a-sust-i2,2021-22,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity 5.824,5,a-sust-i2,2021-22,Westwood - Martha Jones,03350017, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,272,136.0 4.976,4.98,a-sust-i2,2021-22,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,189,189.0 -7.232,1,a-sust-i2,2021-22,Westwood - Westwood High,03350505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,952,952.0 --Infinity,1,a-sust-i2,2021-22,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,43,Infinity +NA,NA,a-sust-i2,2021-22,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,43,Infinity 3.392,3.39,a-sust-i2,2021-22,Westwood - William E Sheehan,03350025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 --Infinity,1,a-sust-i2,2021-22,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2264,Infinity --Infinity,1,a-sust-i2,2021-22,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2264,Infinity +NA,NA,a-sust-i2,2021-22,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity 6.064,5,a-sust-i2,2021-22,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,121,121.0 --Infinity,1,a-sust-i2,2021-22,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2021-22,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity -7.968,1,a-sust-i2,2021-22,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,499,998.0 -5.344,1,a-sust-i2,2021-22,Whitman-Hanson - John H Duval,07800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,417,834.0 -7.744,1,a-sust-i2,2021-22,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,492,984.0 --Infinity,1,a-sust-i2,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.0, 0.0,91,Infinity +NA,NA,a-sust-i2,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.0, 0.0,91,Infinity -26.784,1,a-sust-i2,2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1087,2174.0 -8.416,1,a-sust-i2,2021-22,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,513,1026.0 -12.512,1,a-sust-i2,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1282,1282.0 -3.04,1,a-sust-i2,2021-22,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,138,690.0 --Infinity,1,a-sust-i2,2021-22,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity --Infinity,1,a-sust-i2,2021-22,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2021-22,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2021-22,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity --Infinity,1,a-sust-i2,2021-22,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity --Infinity,1,a-sust-i2,2021-22,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity --Infinity,1,a-sust-i2,2021-22,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity +NA,NA,a-sust-i2,2021-22,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity +NA,NA,a-sust-i2,2021-22,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2021-22,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2021-22,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2021-22,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2021-22,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity +NA,NA,a-sust-i2,2021-22,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity 2.464,2.46,a-sust-i2,2021-22,Wilmington - Woburn Street,03420020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,346,346.0 --Infinity,1,a-sust-i2,2021-22,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i2,2021-22,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2021-22,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity --Infinity,1,a-sust-i2,2021-22,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2021-22,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2021-22,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2021-22,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1059,Infinity --Infinity,1,a-sust-i2,2021-22,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2021-22,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2021-22,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1349,Infinity --Infinity,1,a-sust-i2,2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2021-22,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2021-22,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2021-22,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity +NA,NA,a-sust-i2,2021-22,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i2,2021-22,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2021-22,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +NA,NA,a-sust-i2,2021-22,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2021-22,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2021-22,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2021-22,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1059,Infinity +NA,NA,a-sust-i2,2021-22,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2021-22,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2021-22,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1349,Infinity +NA,NA,a-sust-i2,2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2021-22,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2021-22,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2021-22,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity -13.8,1,a-sust-i2,2021-22,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,545,1362.5 -10.293333333333337,1,a-sust-i2,2021-22,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,686,1143.3333333333335 -15.52,1,a-sust-i2,2021-22,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,1176,1470.0 --Infinity,1,a-sust-i2,2021-22,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2021-22,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity -7.733333333333334,1,a-sust-i2,2021-22,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,295,983.3333333333334 -8.92,1,a-sust-i2,2021-22,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,423,1057.5 -5.376,1,a-sust-i2,2021-22,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,418,836.0 @@ -5457,7 +5457,7 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.6615384615384619,1.66,a-sust-i2,2021-22,Worcester - Gates Lane,03480110, 0.0, 0.8, 0.0, 0.5, 0.0, 0.0, 0.0, 1.3,515,396.15384615384613 -2.08,1,a-sust-i2,2021-22,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,378,630.0 -2.933333333333334,1,a-sust-i2,2021-22,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,410,683.3333333333334 --Infinity,1,a-sust-i2,2021-22,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2021-22,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity -11.04,1,a-sust-i2,2021-22,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,238,1190.0 -11.093333333333335,1,a-sust-i2,2021-22,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,358,1193.3333333333335 -16.56,1,a-sust-i2,2021-22,Worcester - Lake View,03480145, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,307,1535.0 @@ -5475,7 +5475,7 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -7.72,1,a-sust-i2,2021-22,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,393,982.5 -6.28,1,a-sust-i2,2021-22,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,357,892.5 -4.256,1,a-sust-i2,2021-22,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,383,766.0 --Infinity,1,a-sust-i2,2021-22,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2021-22,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity -1.38,1,a-sust-i2,2021-22,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,469,586.25 6.426666666666666,5,a-sust-i2,2021-22,Worcester - Wawecus Road School,03480026, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,118,98.33333333333334 -5.6,1,a-sust-i2,2021-22,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,340,850.0 @@ -5483,290 +5483,290 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.6,1,a-sust-i2,2021-22,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,360,600.0 -12.826666666666668,1,a-sust-i2,2021-22,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,781,1301.6666666666667 -51.04,1,a-sust-i2,2021-22,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,1476,3690.0 --Infinity,1,a-sust-i2,2021-22,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity +NA,NA,a-sust-i2,2021-22,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity -4.16,1,a-sust-i2,2021-22,Wrentham - Charles E Roderick,03500010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,380,760.0 -9.312,1,a-sust-i2,2021-22,Wrentham - Delaney,03500003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,541,1082.0 -14.8,1,a-sust-i2,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1425,1425.0 --Infinity,1,a-sust-i2,2020-21,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2020-21,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity -1.904,1,a-sust-i2,2020-21,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,619,619.0 2.888,2.89,a-sust-i2,2020-21,Abington - Abington Middle School,00010405, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,639,319.5 -0.032,1,a-sust-i2,2020-21,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 --Infinity,1,a-sust-i2,2020-21,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2020-21,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity -20.8,1,a-sust-i2,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,540,1800.0 --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1751,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity --Infinity,1,a-sust-i2,2020-21,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2020-21,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity --Infinity,1,a-sust-i2,2020-21,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2020-21,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity --Infinity,1,a-sust-i2,2020-21,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2020-21,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2020-21,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2020-21,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2020-21,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity --Infinity,1,a-sust-i2,2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1756,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2020-21,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1751,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2020-21,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2020-21,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2020-21,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2020-21,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2020-21,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2020-21,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2020-21,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2020-21,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2020-21,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +NA,NA,a-sust-i2,2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2020-21,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1756,Infinity +NA,NA,a-sust-i2,2020-21,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2020-21,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2020-21,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2020-21,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2020-21,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2020-21,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2020-21,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2020-21,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2020-21,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity -1.136,1,a-sust-i2,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,571,571.0 -14.544,1,a-sust-i2,2020-21,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1409,1409.0 -6.88,1,a-sust-i2,2020-21,Arlington - Brackett,00100010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,465,930.0 --Infinity,1,a-sust-i2,2020-21,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2020-21,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2020-21,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity -4.192,1,a-sust-i2,2020-21,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,381,762.0 --Infinity,1,a-sust-i2,2020-21,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2020-21,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity --Infinity,1,a-sust-i2,2020-21,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2020-21,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2020-21,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,805,Infinity --Infinity,1,a-sust-i2,2020-21,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity --Infinity,1,a-sust-i2,2020-21,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity --Infinity,1,a-sust-i2,2020-21,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity --Infinity,1,a-sust-i2,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1149,Infinity --Infinity,1,a-sust-i2,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity --Infinity,1,a-sust-i2,2020-21,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2020-21,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2020-21,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,805,Infinity +NA,NA,a-sust-i2,2020-21,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity +NA,NA,a-sust-i2,2020-21,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity +NA,NA,a-sust-i2,2020-21,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity +NA,NA,a-sust-i2,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1149,Infinity +NA,NA,a-sust-i2,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2020-21,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity -12.736,1,a-sust-i2,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1296,1296.0 --Infinity,1,a-sust-i2,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity -20.672,1,a-sust-i2,2020-21,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1792,1792.0 --Infinity,1,a-sust-i2,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2020-21,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity -12.256,1,a-sust-i2,2020-21,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,633,1266.0 --Infinity,1,a-sust-i2,2020-21,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2020-21,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2020-21,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity -12.256,1,a-sust-i2,2020-21,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,633,1266.0 -17.184,1,a-sust-i2,2020-21,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,787,1574.0 -5.973333333333334,1,a-sust-i2,2020-21,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,262,873.3333333333334 -6.293333333333334,1,a-sust-i2,2020-21,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,268,893.3333333333334 -10.176,1,a-sust-i2,2020-21,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,568,1136.0 --Infinity,1,a-sust-i2,2020-21,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2020-21,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2020-21,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2020-21,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity -3.424,1,a-sust-i2,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,357,714.0 --Infinity,1,a-sust-i2,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2020-21,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2020-21,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity -6.152,1,a-sust-i2,2020-21,Barnstable - Barnstable High,00200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,1769,884.5 -3.344,1,a-sust-i2,2020-21,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,709,709.0 -3.28,1,a-sust-i2,2020-21,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,705,705.0 4.208,4.21,a-sust-i2,2020-21,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,237,237.0 --Infinity,1,a-sust-i2,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity 3.584,3.58,a-sust-i2,2020-21,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,276,276.0 4.464,4.46,a-sust-i2,2020-21,Barnstable - West Barnstable Elementary,00200005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,221,221.0 1.92,1.92,a-sust-i2,2020-21,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 --Infinity,1,a-sust-i2,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2020-21,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity --Infinity,1,a-sust-i2,2020-21,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity +NA,NA,a-sust-i2,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2020-21,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity +NA,NA,a-sust-i2,2020-21,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity -1.152,1,a-sust-i2,2020-21,Bedford - Lt Elezer Davis,00230010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,572,572.0 --Infinity,1,a-sust-i2,2020-21,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2020-21,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity --Infinity,1,a-sust-i2,2020-21,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2020-21,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity --Infinity,1,a-sust-i2,2020-21,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2020-21,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity --Infinity,1,a-sust-i2,2020-21,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity --Infinity,1,a-sust-i2,2020-21,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2020-21,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity --Infinity,1,a-sust-i2,2020-21,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2020-21,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2020-21,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity +NA,NA,a-sust-i2,2020-21,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2020-21,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2020-21,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2020-21,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2020-21,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity +NA,NA,a-sust-i2,2020-21,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2020-21,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +NA,NA,a-sust-i2,2020-21,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity -12.944,1,a-sust-i2,2020-21,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 1.0,1309,1309.0 -2.656,1,a-sust-i2,2020-21,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,333,666.0 -4.0,1,a-sust-i2,2020-21,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,375,750.0 -9.984,1,a-sust-i2,2020-21,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,562,1124.0 -5.792,1,a-sust-i2,2020-21,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,431,862.0 -37.12,1,a-sust-i2,2020-21,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1410,2820.0 --Infinity,1,a-sust-i2,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity +NA,NA,a-sust-i2,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity -7.2,1,a-sust-i2,2020-21,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,475,950.0 --Infinity,1,a-sust-i2,2020-21,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2020-21,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity 2.912,2.91,a-sust-i2,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 --Infinity,1,a-sust-i2,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity 4.96,4.96,a-sust-i2,2020-21,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,190,190.0 3.2,3.2,a-sust-i2,2020-21,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,300,300.0 -0.896,1,a-sust-i2,2020-21,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,556,556.0 --Infinity,1,a-sust-i2,2020-21,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2020-21,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity -12.576,1,a-sust-i2,2020-21,Beverly - Beverly High,00300505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1286,1286.0 --Infinity,1,a-sust-i2,2020-21,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1435,Infinity --Infinity,1,a-sust-i2,2020-21,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2020-21,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2020-21,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2020-21,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2020-21,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2020-21,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1605,Infinity --Infinity,1,a-sust-i2,2020-21,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2020-21,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1435,Infinity +NA,NA,a-sust-i2,2020-21,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2020-21,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2020-21,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2020-21,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2020-21,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2020-21,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1605,Infinity +NA,NA,a-sust-i2,2020-21,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity 2.4,2.4,a-sust-i2,2020-21,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,350,350.0 3.088,3.09,a-sust-i2,2020-21,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,307,307.0 --Infinity,1,a-sust-i2,2020-21,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2020-21,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2020-21,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2020-21,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity 1.824,1.82,a-sust-i2,2020-21,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 -13.08,1,a-sust-i2,2020-21,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,527,1317.5 -11.696,1,a-sust-i2,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1231,1231.0 --Infinity,1,a-sust-i2,2020-21,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2020-21,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity 1.296,1.3,a-sust-i2,2020-21,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,419,419.0 1.776,1.78,a-sust-i2,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 4.736,4.74,a-sust-i2,2020-21,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,204,204.0 --Infinity,1,a-sust-i2,2020-21,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,890,Infinity +NA,NA,a-sust-i2,2020-21,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,890,Infinity 4.224,4.22,a-sust-i2,2020-21,Boston - Another Course To College,00350541, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,236,236.0 --Infinity,1,a-sust-i2,2020-21,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity 3.536,3.54,a-sust-i2,2020-21,Boston - Beethoven,00350021, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,279,279.0 --Infinity,1,a-sust-i2,2020-21,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity -31.728,1,a-sust-i2,2020-21,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,2483,2483.0 -27.74,1,a-sust-i2,2020-21,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,1787,2233.75 3.568,3.57,a-sust-i2,2020-21,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 5.856,5,a-sust-i2,2020-21,Boston - Brighton High,00350505, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,402,134.0 --Infinity,1,a-sust-i2,2020-21,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity 2.768,2.77,a-sust-i2,2020-21,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,327,327.0 --Infinity,1,a-sust-i2,2020-21,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity -4.56,1,a-sust-i2,2020-21,Boston - Charlestown High,00350515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,785,785.0 --Infinity,1,a-sust-i2,2020-21,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity 2.656,2.66,a-sust-i2,2020-21,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 --Infinity,1,a-sust-i2,2020-21,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity -6.608,1,a-sust-i2,2020-21,Boston - Curley K-8 School,00350020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,913,913.0 3.904,3.9,a-sust-i2,2020-21,Boston - Curtis Guild,00350062, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,256,256.0 --Infinity,1,a-sust-i2,2020-21,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity +NA,NA,a-sust-i2,2020-21,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity -1.248,1,a-sust-i2,2020-21,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,578,578.0 --Infinity,1,a-sust-i2,2020-21,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity 2.064,2.06,a-sust-i2,2020-21,Boston - Donald Mckay,00350080, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,742,371.0 5.216,5,a-sust-i2,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,174,174.0 4.832,4.83,a-sust-i2,2020-21,Boston - Dr. William Henderson Lower,00350266, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,198,198.0 --Infinity,1,a-sust-i2,2020-21,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity +NA,NA,a-sust-i2,2020-21,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity 5.008,5,a-sust-i2,2020-21,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,187,187.0 -8.88,1,a-sust-i2,2020-21,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1055,1055.0 -0.32,1,a-sust-i2,2020-21,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,520,520.0 --Infinity,1,a-sust-i2,2020-21,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity 0.464,1,a-sust-i2,2020-21,Boston - Excel High School,00350522, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,471,471.0 --Infinity,1,a-sust-i2,2020-21,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2020-21,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity 5.248,5,a-sust-i2,2020-21,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,172,172.0 --Infinity,1,a-sust-i2,2020-21,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity 4.496,4.5,a-sust-i2,2020-21,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,219,219.0 6.928,5,a-sust-i2,2020-21,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,67,67.0 --Infinity,1,a-sust-i2,2020-21,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity 1.136,1.14,a-sust-i2,2020-21,Boston - Jackson Mann,00350013, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,429,429.0 --Infinity,1,a-sust-i2,2020-21,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2020-21,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2020-21,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2020-21,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2020-21,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity 6.224,5,a-sust-i2,2020-21,Boston - John D Philbrick,00350172, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,111,111.0 --Infinity,1,a-sust-i2,2020-21,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2020-21,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2020-21,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2020-21,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity 4.016,4.02,a-sust-i2,2020-21,Boston - Joseph P Tynan,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 -3.872,1,a-sust-i2,2020-21,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,742,742.0 1.152,1.15,a-sust-i2,2020-21,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 --Infinity,1,a-sust-i2,2020-21,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2020-21,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity 4.928,4.93,a-sust-i2,2020-21,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,192,192.0 --Infinity,1,a-sust-i2,2020-21,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity -8.688,1,a-sust-i2,2020-21,Boston - Madison Park High,00350537, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1043,1043.0 --Infinity,1,a-sust-i2,2020-21,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity 2.96,2.96,a-sust-i2,2020-21,Boston - Margarita Muniz Academy,00350549, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,315,315.0 -4.128,1,a-sust-i2,2020-21,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,758,758.0 --Infinity,1,a-sust-i2,2020-21,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,166,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,166,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity 5.312,5,a-sust-i2,2020-21,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,168,168.0 --Infinity,1,a-sust-i2,2020-21,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2020-21,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2020-21,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity -17.984,1,a-sust-i2,2020-21,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1624,1624.0 --Infinity,1,a-sust-i2,2020-21,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity 2.336,2.34,a-sust-i2,2020-21,Boston - Paul A Dever,00350268, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,354,354.0 --Infinity,1,a-sust-i2,2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity -6.512,1,a-sust-i2,2020-21,Boston - Richard J Murphy,00350240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,907,907.0 --Infinity,1,a-sust-i2,2020-21,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity 4.032,4.03,a-sust-i2,2020-21,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,248,248.0 --Infinity,1,a-sust-i2,2020-21,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2020-21,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity +NA,NA,a-sust-i2,2020-21,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity -2.784,1,a-sust-i2,2020-21,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,674,674.0 --Infinity,1,a-sust-i2,2020-21,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity 5.056,5,a-sust-i2,2020-21,Boston - Washington Irving Middle,00350445, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,184,184.0 --Infinity,1,a-sust-i2,2020-21,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2020-21,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2020-21,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2020-21,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2020-21,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity 1.92,1.92,a-sust-i2,2020-21,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 --Infinity,1,a-sust-i2,2020-21,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity --Infinity,1,a-sust-i2,2020-21,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity --Infinity,1,a-sust-i2,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,723,Infinity --Infinity,1,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2020-21,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,723,Infinity +NA,NA,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity -13.472,1,a-sust-i2,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,671,1342.0 0.456,1,a-sust-i2,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,943,471.5 -5.696,1,a-sust-i2,2020-21,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,428,856.0 @@ -5774,218 +5774,218 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -6.72,1,a-sust-i2,2020-21,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,460,920.0 -2.816,1,a-sust-i2,2020-21,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,338,676.0 -3.6,1,a-sust-i2,2020-21,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,290,725.0 --Infinity,1,a-sust-i2,2020-21,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1726,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2020-21,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1726,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity -8.08,1,a-sust-i2,2020-21,Braintree - East Middle School,00400305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1005,1005.0 --Infinity,1,a-sust-i2,2020-21,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity --Infinity,1,a-sust-i2,2020-21,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity --Infinity,1,a-sust-i2,2020-21,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity --Infinity,1,a-sust-i2,2020-21,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity --Infinity,1,a-sust-i2,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1370,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2020-21,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity +NA,NA,a-sust-i2,2020-21,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity +NA,NA,a-sust-i2,2020-21,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1370,Infinity -0.544,1,a-sust-i2,2020-21,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,534,534.0 3.216,3.22,a-sust-i2,2020-21,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 3.64,3.64,a-sust-i2,2020-21,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 4.0,1090,272.5 2.248,2.25,a-sust-i2,2020-21,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,719,359.5 --Infinity,1,a-sust-i2,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity +NA,NA,a-sust-i2,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity 2.424,2.42,a-sust-i2,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,697,348.5 --Infinity,1,a-sust-i2,2020-21,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1319,Infinity +NA,NA,a-sust-i2,2020-21,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1319,Infinity -10.048,1,a-sust-i2,2020-21,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,564,1128.0 5.568,5,a-sust-i2,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,152,152.0 3.616,3.62,a-sust-i2,2020-21,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,137,274.0 -121.472,1,a-sust-i2,2020-21,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,4046,8092.0 --Infinity,1,a-sust-i2,2020-21,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2020-21,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity -11.04,1,a-sust-i2,2020-21,Brockton - Downey,00440110, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,595,1190.0 -15.072,1,a-sust-i2,2020-21,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,721,1442.0 -12.384,1,a-sust-i2,2020-21,Brockton - East Middle School,00440405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,637,1274.0 -72.88,1,a-sust-i2,2020-21,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,1011,5055.0 --Infinity,1,a-sust-i2,2020-21,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2020-21,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity +NA,NA,a-sust-i2,2020-21,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2020-21,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity -16.373333333333335,1,a-sust-i2,2020-21,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,457,1523.3333333333335 --Infinity,1,a-sust-i2,2020-21,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2020-21,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity 5.952,5,a-sust-i2,2020-21,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,64,128.0 -20.906666666666666,1,a-sust-i2,2020-21,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,542,1806.6666666666667 -31.253333333333337,1,a-sust-i2,2020-21,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,736,2453.3333333333335 -17.28,1,a-sust-i2,2020-21,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,790,1580.0 --Infinity,1,a-sust-i2,2020-21,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,909,Infinity --Infinity,1,a-sust-i2,2020-21,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2020-21,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,909,Infinity +NA,NA,a-sust-i2,2020-21,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity 1.6,1.6,a-sust-i2,2020-21,Brockton - North Middle School,00440410, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,200,400.0 -0.5226666666666661,1,a-sust-i2,2020-21,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,799,532.6666666666666 -38.0,1,a-sust-i2,2020-21,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,575,2875.0 -46.0,1,a-sust-i2,2020-21,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,675,3375.0 --Infinity,1,a-sust-i2,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2053,Infinity +NA,NA,a-sust-i2,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2053,Infinity 0.9066666666666661,1,a-sust-i2,2020-21,Brookfield - Brookfield Elementary,00450005, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,266,443.33333333333337 --Infinity,1,a-sust-i2,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2035,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2035,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity 1.552,1.55,a-sust-i2,2020-21,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,806,403.0 -4.72,1,a-sust-i2,2020-21,Brookline - Heath,00460025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,477,795.0 --Infinity,1,a-sust-i2,2020-21,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity --Infinity,1,a-sust-i2,2020-21,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i2,2020-21,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity -0.5866666666666661,1,a-sust-i2,2020-21,Burlington - Burlington High,00480505, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8,966,536.6666666666666 --Infinity,1,a-sust-i2,2020-21,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2020-21,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity -0.256,1,a-sust-i2,2020-21,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,516,516.0 -4.016,1,a-sust-i2,2020-21,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,751,751.0 1.584,1.58,a-sust-i2,2020-21,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 --Infinity,1,a-sust-i2,2020-21,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1847,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2020-21,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2020-21,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,951,Infinity --Infinity,1,a-sust-i2,2020-21,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2020-21,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2020-21,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2020-21,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1847,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2020-21,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2020-21,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,951,Infinity +NA,NA,a-sust-i2,2020-21,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2020-21,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2020-21,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity 7.616,5,a-sust-i2,2020-21,Canton - Rodman Early Childhood Center,00500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,24,24.0 --Infinity,1,a-sust-i2,2020-21,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity +NA,NA,a-sust-i2,2020-21,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity 4.0,4.0,a-sust-i2,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 --Infinity,1,a-sust-i2,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity +NA,NA,a-sust-i2,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity -1.264,1,a-sust-i2,2020-21,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,579,579.0 -3.888,1,a-sust-i2,2020-21,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,743,743.0 --Infinity,1,a-sust-i2,2020-21,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity --Infinity,1,a-sust-i2,2020-21,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity --Infinity,1,a-sust-i2,2020-21,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2020-21,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity --Infinity,1,a-sust-i2,2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2020-21,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2020-21,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2020-21,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity +NA,NA,a-sust-i2,2020-21,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2020-21,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity +NA,NA,a-sust-i2,2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2020-21,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity 0.704,1,a-sust-i2,2020-21,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,456,456.0 0.416,1,a-sust-i2,2020-21,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 0.128,1,a-sust-i2,2020-21,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,492,492.0 -14.528,1,a-sust-i2,2020-21,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1408,1408.0 -15.296,1,a-sust-i2,2020-21,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,728,1456.0 --Infinity,1,a-sust-i2,2020-21,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +NA,NA,a-sust-i2,2020-21,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity -16.64,1,a-sust-i2,2020-21,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,770,1540.0 --Infinity,1,a-sust-i2,2020-21,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2020-21,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity -38.56,1,a-sust-i2,2020-21,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1455,2910.0 --Infinity,1,a-sust-i2,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity 0.490666666666667,1,a-sust-i2,2020-21,Chelsea - Clark Avenue School,00570050, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,704,469.3333333333333 --Infinity,1,a-sust-i2,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2020-21,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2020-21,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity --Infinity,1,a-sust-i2,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity -0.08,1,a-sust-i2,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,101,505.0 --Infinity,1,a-sust-i2,2020-21,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1162,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity --Infinity,1,a-sust-i2,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2020-21,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity --Infinity,1,a-sust-i2,2020-21,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity --Infinity,1,a-sust-i2,2020-21,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2020-21,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1162,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i2,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2020-21,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity +NA,NA,a-sust-i2,2020-21,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity +NA,NA,a-sust-i2,2020-21,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2020-21,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity -6.304,1,a-sust-i2,2020-21,Cohasset - Cohasset High School,00650505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,447,894.0 --Infinity,1,a-sust-i2,2020-21,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2020-21,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2020-21,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1015,Infinity --Infinity,1,a-sust-i2,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2020-21,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2020-21,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2020-21,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1015,Infinity +NA,NA,a-sust-i2,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity 1.616,1.62,a-sust-i2,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 --Infinity,1,a-sust-i2,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity 0.8,1,a-sust-i2,2020-21,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,450,450.0 --Infinity,1,a-sust-i2,2020-21,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity --Infinity,1,a-sust-i2,2020-21,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2020-21,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1316,Infinity --Infinity,1,a-sust-i2,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2020-21,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity +NA,NA,a-sust-i2,2020-21,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2020-21,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1316,Infinity +NA,NA,a-sust-i2,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity 6.0,5,a-sust-i2,2020-21,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,125,125.0 --Infinity,1,a-sust-i2,2020-21,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,868,Infinity --Infinity,1,a-sust-i2,2020-21,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2020-21,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2020-21,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity --Infinity,1,a-sust-i2,2020-21,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2020-21,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2020-21,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2020-21,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,868,Infinity +NA,NA,a-sust-i2,2020-21,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2020-21,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2020-21,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity +NA,NA,a-sust-i2,2020-21,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2020-21,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2020-21,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity 6.08,5,a-sust-i2,2020-21,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,120,120.0 -0.36,1,a-sust-i2,2020-21,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1045,522.5 1.024,1.02,a-sust-i2,2020-21,Dartmouth - Dartmouth Middle,00720050, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,872,436.0 2.096,2.1,a-sust-i2,2020-21,Dartmouth - George H Potter,00720030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 --Infinity,1,a-sust-i2,2020-21,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity --Infinity,1,a-sust-i2,2020-21,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2020-21,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2020-21,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2020-21,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2020-21,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity -14.08,1,a-sust-i2,2020-21,Dedham - Dedham High,00730505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,690,1380.0 -2.544,1,a-sust-i2,2020-21,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,659,659.0 --Infinity,1,a-sust-i2,2020-21,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2020-21,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2020-21,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2020-21,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2020-21,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2020-21,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity 2.56,2.56,a-sust-i2,2020-21,Dedham - Riverdale,00730045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,170,340.0 --Infinity,1,a-sust-i2,2020-21,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity --Infinity,1,a-sust-i2,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity --Infinity,1,a-sust-i2,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2020-21,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity --Infinity,1,a-sust-i2,2020-21,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2020-21,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity +NA,NA,a-sust-i2,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2020-21,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2020-21,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity 2.464,2.46,a-sust-i2,2020-21,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,346,346.0 --Infinity,1,a-sust-i2,2020-21,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2020-21,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity --Infinity,1,a-sust-i2,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2020-21,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2020-21,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity +NA,NA,a-sust-i2,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity -15.68,1,a-sust-i2,2020-21,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,444,1480.0 -20.448,1,a-sust-i2,2020-21,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,889,1778.0 -21.013333333333335,1,a-sust-i2,2020-21,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,544,1813.3333333333335 -7.093333333333334,1,a-sust-i2,2020-21,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,283,943.3333333333334 -22.88,1,a-sust-i2,2020-21,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,579,1930.0 -21.44,1,a-sust-i2,2020-21,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,920,1840.0 --Infinity,1,a-sust-i2,2020-21,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, 0.0,294,Infinity --Infinity,1,a-sust-i2,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2020-21,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, 0.0,294,Infinity +NA,NA,a-sust-i2,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity -2.096,1,a-sust-i2,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,631,631.0 --Infinity,1,a-sust-i2,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity -9.248,1,a-sust-i2,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,539,1078.0 1.456,1.46,a-sust-i2,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 4.416,4.42,a-sust-i2,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,224,224.0 --Infinity,1,a-sust-i2,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1005,Infinity +NA,NA,a-sust-i2,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1005,Infinity 3.152,3.15,a-sust-i2,2020-21,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,606,303.0 -0.944,1,a-sust-i2,2020-21,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,559,559.0 0.328,1,a-sust-i2,2020-21,Duxbury - Duxbury High,00820505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,959,479.5 @@ -5993,57 +5993,57 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -7.584,1,a-sust-i2,2020-21,East Bridgewater - Central,00830005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,487,974.0 -22.976,1,a-sust-i2,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,968,1936.0 -12.064,1,a-sust-i2,2020-21,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,627,1254.0 --Infinity,1,a-sust-i2,2020-21,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity --Infinity,1,a-sust-i2,2020-21,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity --Infinity,1,a-sust-i2,2020-21,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2020-21,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2020-21,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2020-21,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2020-21,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity --Infinity,1,a-sust-i2,2020-21,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2020-21,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity --Infinity,1,a-sust-i2,2020-21,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2020-21,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2020-21,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity --Infinity,1,a-sust-i2,2020-21,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity --Infinity,1,a-sust-i2,2020-21,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2020-21,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1125,Infinity --Infinity,1,a-sust-i2,2020-21,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2020-21,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity --Infinity,1,a-sust-i2,2020-21,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2020-21,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2020-21,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity +NA,NA,a-sust-i2,2020-21,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2020-21,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2020-21,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2020-21,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2020-21,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2020-21,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2020-21,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2020-21,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2020-21,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2020-21,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity +NA,NA,a-sust-i2,2020-21,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity +NA,NA,a-sust-i2,2020-21,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2020-21,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1125,Infinity +NA,NA,a-sust-i2,2020-21,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2020-21,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2020-21,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity -7.4,1,a-sust-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, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,385,962.5 4.986666666666666,4.99,a-sust-i2,2020-21,Erving - Erving Elementary,00910030, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,113,188.33333333333334 --Infinity,1,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,1564,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2061,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,991,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,915,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity --Infinity,1,a-sust-i2,2020-21,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,1564,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2061,Infinity +NA,NA,a-sust-i2,2020-21,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,991,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,915,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2020-21,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity -14.224,1,a-sust-i2,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,1389,1389.0 -2.528,1,a-sust-i2,2020-21,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,329,658.0 --Infinity,1,a-sust-i2,2020-21,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2020-21,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2020-21,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2020-21,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity -6.496,1,a-sust-i2,2020-21,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,453,906.0 -60.16,1,a-sust-i2,2020-21,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2130,4260.0 -3.072,1,a-sust-i2,2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,692,692.0 --Infinity,1,a-sust-i2,2020-21,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,799,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,799,Infinity -3.24,1,a-sust-i2,2020-21,Fall River - James Tansey,00950140, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,281,702.5 --Infinity,1,a-sust-i2,2020-21,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity -13.728,1,a-sust-i2,2020-21,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,679,1358.0 --Infinity,1,a-sust-i2,2020-21,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity --Infinity,1,a-sust-i2,2020-21,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity +NA,NA,a-sust-i2,2020-21,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity -9.6,1,a-sust-i2,2020-21,Fall River - William S Greene,00950065, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,660,1100.0 -12.56,1,a-sust-i2,2020-21,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,257,1285.0 -35.25333333333334,1,a-sust-i2,2020-21,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,811,2703.3333333333335 @@ -6052,23 +6052,23 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -56.8,1,a-sust-i2,2020-21,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,405,4050.0 -40.96,1,a-sust-i2,2020-21,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,306,3060.0 -31.2,1,a-sust-i2,2020-21,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,245,2450.0 --Infinity,1,a-sust-i2,2020-21,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1268,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity --Infinity,1,a-sust-i2,2020-21,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2020-21,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity +NA,NA,a-sust-i2,2020-21,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1268,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity +NA,NA,a-sust-i2,2020-21,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2020-21,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity 4.177777777777777,4.18,a-sust-i2,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,215,238.88888888888889 --Infinity,1,a-sust-i2,2020-21,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2020-21,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity --Infinity,1,a-sust-i2,2020-21,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity --Infinity,1,a-sust-i2,2020-21,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2020-21,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1714,Infinity +NA,NA,a-sust-i2,2020-21,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2020-21,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity +NA,NA,a-sust-i2,2020-21,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity +NA,NA,a-sust-i2,2020-21,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2020-21,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1714,Infinity -2.864,1,a-sust-i2,2020-21,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,679,679.0 0.864,1,a-sust-i2,2020-21,Framingham - Brophy,01000006, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,446,446.0 -1.184,1,a-sust-i2,2020-21,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,574,574.0 @@ -6083,356 +6083,356 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.304,1,a-sust-i2,2020-21,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 -4.256,1,a-sust-i2,2020-21,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,766,766.0 0.32,1,a-sust-i2,2020-21,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,480,480.0 --Infinity,1,a-sust-i2,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity 2.432,2.43,a-sust-i2,2020-21,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,348,348.0 4.901818181818182,4.9,a-sust-i2,2020-21,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 0.0, 1.1,213,193.63636363636363 5.08,5,a-sust-i2,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,73,182.5 -22.826666666666664,1,a-sust-i2,2020-21,Franklin - Franklin High,01010505, 0.0, 0.0, 0.4, 0.5, 0.0, 0.0, 0.0, 0.9,1734,1926.6666666666665 --Infinity,1,a-sust-i2,2020-21,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2020-21,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity 1.36,1.36,a-sust-i2,2020-21,Franklin - Horace Mann,01010405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 --Infinity,1,a-sust-i2,2020-21,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2020-21,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity -0.7466666666666679,1,a-sust-i2,2020-21,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,328,546.6666666666667 2.112,2.11,a-sust-i2,2020-21,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,368,368.0 3.04,3.04,a-sust-i2,2020-21,Franklin - Parmenter,01010032, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,310,310.0 --Infinity,1,a-sust-i2,2020-21,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity --Infinity,1,a-sust-i2,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity --Infinity,1,a-sust-i2,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2020-21,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2020-21,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity +NA,NA,a-sust-i2,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2020-21,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity 0.768,1,a-sust-i2,2020-21,Gardner - Elm Street School,01030001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,452,452.0 --Infinity,1,a-sust-i2,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity -3.696,1,a-sust-i2,2020-21,Gardner - Gardner High,01030505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,731,731.0 -0.704,1,a-sust-i2,2020-21,Gardner - Gardner Middle School,01030405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,544,544.0 -3.84,1,a-sust-i2,2020-21,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,370,740.0 --Infinity,1,a-sust-i2,2020-21,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity --Infinity,1,a-sust-i2,2020-21,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2020-21,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2020-21,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity --Infinity,1,a-sust-i2,2020-21,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity --Infinity,1,a-sust-i2,2020-21,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity --Infinity,1,a-sust-i2,2020-21,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity --Infinity,1,a-sust-i2,2020-21,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity --Infinity,1,a-sust-i2,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity --Infinity,1,a-sust-i2,2020-21,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2020-21,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity --Infinity,1,a-sust-i2,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity --Infinity,1,a-sust-i2,2020-21,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2020-21,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +NA,NA,a-sust-i2,2020-21,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2020-21,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2020-21,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2020-21,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity +NA,NA,a-sust-i2,2020-21,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity +NA,NA,a-sust-i2,2020-21,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity +NA,NA,a-sust-i2,2020-21,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +NA,NA,a-sust-i2,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +NA,NA,a-sust-i2,2020-21,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2020-21,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity +NA,NA,a-sust-i2,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2020-21,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity 4.944,4.94,a-sust-i2,2020-21,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,191,191.0 --Infinity,1,a-sust-i2,2020-21,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,819,Infinity --Infinity,1,a-sust-i2,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity --Infinity,1,a-sust-i2,2020-21,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2020-21,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,819,Infinity +NA,NA,a-sust-i2,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity +NA,NA,a-sust-i2,2020-21,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity -1.696,1,a-sust-i2,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,606,606.0 --Infinity,1,a-sust-i2,2020-21,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2020-21,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity 2.336,2.34,a-sust-i2,2020-21,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,354,354.0 --Infinity,1,a-sust-i2,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity +NA,NA,a-sust-i2,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity -6.0,1,a-sust-i2,2020-21,Grafton - Grafton High School,01100505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,875,875.0 --Infinity,1,a-sust-i2,2020-21,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2020-21,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity --Infinity,1,a-sust-i2,2020-21,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2020-21,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2020-21,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2020-21,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity +NA,NA,a-sust-i2,2020-21,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2020-21,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity 3.456,3.46,a-sust-i2,2020-21,Grafton - South Grafton Elementary,01100005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 --Infinity,1,a-sust-i2,2020-21,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2020-21,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1452,Infinity --Infinity,1,a-sust-i2,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1634,Infinity --Infinity,1,a-sust-i2,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2296,Infinity +NA,NA,a-sust-i2,2020-21,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2020-21,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1452,Infinity +NA,NA,a-sust-i2,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1634,Infinity +NA,NA,a-sust-i2,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2296,Infinity -25.808,1,a-sust-i2,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,2113,2113.0 -3.68,1,a-sust-i2,2020-21,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,219,730.0 -3.093333333333334,1,a-sust-i2,2020-21,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,208,693.3333333333334 0.32,1,a-sust-i2,2020-21,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,480,480.0 2.24,2.24,a-sust-i2,2020-21,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,360,360.0 -3.946666666666668,1,a-sust-i2,2020-21,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,224,746.6666666666667 --Infinity,1,a-sust-i2,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity --Infinity,1,a-sust-i2,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity --Infinity,1,a-sust-i2,2020-21,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity --Infinity,1,a-sust-i2,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2020-21,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2020-21,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2020-21,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity +NA,NA,a-sust-i2,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity +NA,NA,a-sust-i2,2020-21,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +NA,NA,a-sust-i2,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2020-21,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2020-21,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2020-21,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity -1.104,1,a-sust-i2,2020-21,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 --Infinity,1,a-sust-i2,2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2020-21,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2020-21,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2020-21,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2020-21,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2020-21,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2020-21,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity -2.368,1,a-sust-i2,2020-21,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,324,648.0 --Infinity,1,a-sust-i2,2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1025,Infinity --Infinity,1,a-sust-i2,2020-21,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1025,Infinity +NA,NA,a-sust-i2,2020-21,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity -2.928,1,a-sust-i2,2020-21,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,683,683.0 --Infinity,1,a-sust-i2,2020-21,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2020-21,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity 0.72,1,a-sust-i2,2020-21,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,455,455.0 --Infinity,1,a-sust-i2,2020-21,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2020-21,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,762,Infinity --Infinity,1,a-sust-i2,2020-21,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2020-21,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2020-21,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,762,Infinity +NA,NA,a-sust-i2,2020-21,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity -1.488,1,a-sust-i2,2020-21,Harvard - Bromfield,01250505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,593,593.0 --Infinity,1,a-sust-i2,2020-21,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2020-21,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2020-21,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1852,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2020-21,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2020-21,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity --Infinity,1,a-sust-i2,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2020-21,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2020-21,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2020-21,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1852,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2020-21,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2020-21,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity +NA,NA,a-sust-i2,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity 4.512,4.51,a-sust-i2,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 --Infinity,1,a-sust-i2,2020-21,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2020-21,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1286,Infinity --Infinity,1,a-sust-i2,2020-21,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,925,Infinity --Infinity,1,a-sust-i2,2020-21,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2020-21,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2020-21,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2020-21,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2020-21,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1286,Infinity +NA,NA,a-sust-i2,2020-21,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,925,Infinity +NA,NA,a-sust-i2,2020-21,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2020-21,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2020-21,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity -10.848,1,a-sust-i2,2020-21,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,589,1178.0 -13.728,1,a-sust-i2,2020-21,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,679,1358.0 4.12,4.12,a-sust-i2,2020-21,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,194,242.5 -4.976,1,a-sust-i2,2020-21,Holliston - Holliston High,01360505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,811,811.0 -13.312,1,a-sust-i2,2020-21,Holliston - Miller School,01360007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,666,1332.0 --Infinity,1,a-sust-i2,2020-21,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2020-21,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity -13.728,1,a-sust-i2,2020-21,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,679,1358.0 1.136,1.14,a-sust-i2,2020-21,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,429,429.0 --Infinity,1,a-sust-i2,2020-21,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1566,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2020-21,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2020-21,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,702,Infinity --Infinity,1,a-sust-i2,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1566,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2020-21,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2020-21,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,702,Infinity +NA,NA,a-sust-i2,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity -30.88,1,a-sust-i2,2020-21,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,486,2430.0 -9.056,1,a-sust-i2,2020-21,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,533,1066.0 --Infinity,1,a-sust-i2,2020-21,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity +NA,NA,a-sust-i2,2020-21,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity -84.8,1,a-sust-i2,2020-21,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,580,5800.0 -89.44,1,a-sust-i2,2020-21,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,609,6090.0 -87.84,1,a-sust-i2,2020-21,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,1198,5990.0 -41.17333333333334,1,a-sust-i2,2020-21,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,922,3073.3333333333335 --Infinity,1,a-sust-i2,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75,Infinity +NA,NA,a-sust-i2,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75,Infinity -79.68,1,a-sust-i2,2020-21,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,548,5480.0 1.648,1.65,a-sust-i2,2020-21,Hudson - C A Farley,01410030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,397,397.0 --Infinity,1,a-sust-i2,2020-21,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2020-21,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity 2.848,2.85,a-sust-i2,2020-21,Hudson - Forest Avenue Elementary,01410015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,322,322.0 --Infinity,1,a-sust-i2,2020-21,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,872,Infinity --Infinity,1,a-sust-i2,2020-21,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2020-21,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2020-21,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2020-21,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity +NA,NA,a-sust-i2,2020-21,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,872,Infinity +NA,NA,a-sust-i2,2020-21,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2020-21,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2020-21,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2020-21,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity -9.184,1,a-sust-i2,2020-21,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,537,1074.0 -6.84,1,a-sust-i2,2020-21,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,371,927.5 -2.624,1,a-sust-i2,2020-21,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,332,664.0 -3.328,1,a-sust-i2,2020-21,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,354,708.0 --Infinity,1,a-sust-i2,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity --Infinity,1,a-sust-i2,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1615,Infinity --Infinity,1,a-sust-i2,2020-21,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity --Infinity,1,a-sust-i2,2020-21,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1214,Infinity +NA,NA,a-sust-i2,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +NA,NA,a-sust-i2,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1615,Infinity +NA,NA,a-sust-i2,2020-21,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity +NA,NA,a-sust-i2,2020-21,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1214,Infinity 1.072,1.07,a-sust-i2,2020-21,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 -1.632,1,a-sust-i2,2020-21,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,602,602.0 --Infinity,1,a-sust-i2,2020-21,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity -23.14666666666667,1,a-sust-i2,2020-21,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,584,1946.6666666666667 --Infinity,1,a-sust-i2,2020-21,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity 5.648,5,a-sust-i2,2020-21,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,147,147.0 -42.112,1,a-sust-i2,2020-21,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,3132,3132.0 --Infinity,1,a-sust-i2,2020-21,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity --Infinity,1,a-sust-i2,2020-21,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity 2.3111111111111113,2.31,a-sust-i2,2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,320,355.55555555555554 2.992,2.99,a-sust-i2,2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,313,313.0 --Infinity,1,a-sust-i2,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity --Infinity,1,a-sust-i2,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity --Infinity,1,a-sust-i2,2020-21,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2020-21,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +NA,NA,a-sust-i2,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity +NA,NA,a-sust-i2,2020-21,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2020-21,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity 0.384,1,a-sust-i2,2020-21,Leicester - Leicester Elementary,01510005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,476,476.0 0.96,1,a-sust-i2,2020-21,Leicester - Leicester High,01510505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,440,440.0 --Infinity,1,a-sust-i2,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity 1.2,1.2,a-sust-i2,2020-21,Leicester - Leicester Middle,01510015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,425,425.0 --Infinity,1,a-sust-i2,2020-21,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2020-21,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1060,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2020-21,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity --Infinity,1,a-sust-i2,2020-21,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2261,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2020-21,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity --Infinity,1,a-sust-i2,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2020-21,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2020-21,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2020-21,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2020-21,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1060,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2020-21,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity +NA,NA,a-sust-i2,2020-21,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2261,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2020-21,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity +NA,NA,a-sust-i2,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2020-21,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2020-21,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity -19.52,1,a-sust-i2,2020-21,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,516,1720.0 -4.2,1,a-sust-i2,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1525,762.5 -5.92,1,a-sust-i2,2020-21,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,435,870.0 3.808,3.81,a-sust-i2,2020-21,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,393,262.0 2.032,2.03,a-sust-i2,2020-21,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 --Infinity,1,a-sust-i2,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2020-21,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2020-21,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2020-21,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2020-21,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,900,Infinity --Infinity,1,a-sust-i2,2020-21,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2020-21,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3048,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,848,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity --Infinity,1,a-sust-i2,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2020-21,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2020-21,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2020-21,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity --Infinity,1,a-sust-i2,2020-21,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2020-21,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity +NA,NA,a-sust-i2,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2020-21,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2020-21,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2020-21,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2020-21,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,900,Infinity +NA,NA,a-sust-i2,2020-21,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2020-21,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3048,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,848,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2020-21,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity +NA,NA,a-sust-i2,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2020-21,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2020-21,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2020-21,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity +NA,NA,a-sust-i2,2020-21,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2020-21,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity -17.28,1,a-sust-i2,2020-21,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,474,1580.0 -12.586666666666668,1,a-sust-i2,2020-21,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,386,1286.6666666666667 -4.32,1,a-sust-i2,2020-21,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,385,770.0 --Infinity,1,a-sust-i2,2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1332,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1658,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2012,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1466,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2020-21,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2020-21,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1332,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1658,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2012,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1466,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2020-21,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2020-21,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity -24.0,1,a-sust-i2,2020-21,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,600,2000.0 -5.94,1,a-sust-i2,2020-21,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.0, 0.8,697,871.25 --Infinity,1,a-sust-i2,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity -4.512,1,a-sust-i2,2020-21,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,391,782.0 -11.408,1,a-sust-i2,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1213,1213.0 --Infinity,1,a-sust-i2,2020-21,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, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2020-21,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,902,Infinity --Infinity,1,a-sust-i2,2020-21,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,904,Infinity --Infinity,1,a-sust-i2,2020-21,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity --Infinity,1,a-sust-i2,2020-21,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity --Infinity,1,a-sust-i2,2020-21,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2020-21,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1739,Infinity --Infinity,1,a-sust-i2,2020-21,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,972,Infinity --Infinity,1,a-sust-i2,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2020-21,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, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2020-21,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,902,Infinity +NA,NA,a-sust-i2,2020-21,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,904,Infinity +NA,NA,a-sust-i2,2020-21,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2020-21,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +NA,NA,a-sust-i2,2020-21,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2020-21,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1739,Infinity +NA,NA,a-sust-i2,2020-21,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,972,Infinity +NA,NA,a-sust-i2,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity -2.496,1,a-sust-i2,2020-21,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,656,656.0 --Infinity,1,a-sust-i2,2020-21,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity --Infinity,1,a-sust-i2,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity --Infinity,1,a-sust-i2,2020-21,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1205,Infinity --Infinity,1,a-sust-i2,2020-21,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,71,Infinity --Infinity,1,a-sust-i2,2020-21,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2020-21,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2020-21,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity +NA,NA,a-sust-i2,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity +NA,NA,a-sust-i2,2020-21,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1205,Infinity +NA,NA,a-sust-i2,2020-21,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,71,Infinity +NA,NA,a-sust-i2,2020-21,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2020-21,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity 0.376,1,a-sust-i2,2020-21,Marblehead - Marblehead High,01680505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,953,476.5 --Infinity,1,a-sust-i2,2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2020-21,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity --Infinity,1,a-sust-i2,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2020-21,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity +NA,NA,a-sust-i2,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity 0.08,1,a-sust-i2,2020-21,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,396,495.0 --Infinity,1,a-sust-i2,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1139,Infinity --Infinity,1,a-sust-i2,2020-21,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity --Infinity,1,a-sust-i2,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1139,Infinity +NA,NA,a-sust-i2,2020-21,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity -7.616,1,a-sust-i2,2020-21,Marlborough - Francis J Kane,01700008, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,488,976.0 --Infinity,1,a-sust-i2,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity --Infinity,1,a-sust-i2,2020-21,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1006,Infinity +NA,NA,a-sust-i2,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2020-21,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1006,Infinity -8.16,1,a-sust-i2,2020-21,Marlborough - Richer,01700025, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,505,1010.0 2.496,2.5,a-sust-i2,2020-21,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,344,344.0 4.576,4.58,a-sust-i2,2020-21,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,214,214.0 @@ -6441,329 +6441,329 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -11.52,1,a-sust-i2,2020-21,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1220,1220.0 1.392,1.39,a-sust-i2,2020-21,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 3.456,3.46,a-sust-i2,2020-21,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,284,284.0 --Infinity,1,a-sust-i2,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity --Infinity,1,a-sust-i2,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity --Infinity,1,a-sust-i2,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2020-21,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1108,Infinity --Infinity,1,a-sust-i2,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity --Infinity,1,a-sust-i2,2020-21,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2020-21,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2020-21,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2020-21,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2020-21,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity --Infinity,1,a-sust-i2,2020-21,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity +NA,NA,a-sust-i2,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2020-21,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1108,Infinity +NA,NA,a-sust-i2,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2020-21,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2020-21,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2020-21,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2020-21,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2020-21,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2020-21,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity 0.704,1,a-sust-i2,2020-21,Maynard - Fowler School,01740305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,456,456.0 -5.12,1,a-sust-i2,2020-21,Maynard - Green Meadow,01740010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,410,820.0 4.661333333333334,4.66,a-sust-i2,2020-21,Maynard - Maynard High,01740505, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,313,208.66666666666666 --Infinity,1,a-sust-i2,2020-21,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2020-21,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity --Infinity,1,a-sust-i2,2020-21,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2020-21,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2020-21,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2020-21,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +NA,NA,a-sust-i2,2020-21,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2020-21,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity -0.96,1,a-sust-i2,2020-21,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,560,560.0 -7.456,1,a-sust-i2,2020-21,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,483,966.0 -4.096,1,a-sust-i2,2020-21,Medford - Christopher Columbus,01760140, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,378,756.0 --Infinity,1,a-sust-i2,2020-21,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity +NA,NA,a-sust-i2,2020-21,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity -15.2,1,a-sust-i2,2020-21,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,435,1450.0 -6.08,1,a-sust-i2,2020-21,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,440,880.0 -6.496,1,a-sust-i2,2020-21,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,453,906.0 -32.352,1,a-sust-i2,2020-21,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1261,2522.0 -17.653333333333336,1,a-sust-i2,2020-21,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,481,1603.3333333333335 --Infinity,1,a-sust-i2,2020-21,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2020-21,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2020-21,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2020-21,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2020-21,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2020-21,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity -2.848,1,a-sust-i2,2020-21,Medway - Medway Middle,01770305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,678,678.0 --Infinity,1,a-sust-i2,2020-21,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2020-21,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2020-21,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2020-21,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2020-21,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,929,Infinity --Infinity,1,a-sust-i2,2020-21,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity --Infinity,1,a-sust-i2,2020-21,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2020-21,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2020-21,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2020-21,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2020-21,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity --Infinity,1,a-sust-i2,2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity --Infinity,1,a-sust-i2,2020-21,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,988,Infinity --Infinity,1,a-sust-i2,2020-21,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1188,Infinity --Infinity,1,a-sust-i2,2020-21,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1101,Infinity --Infinity,1,a-sust-i2,2020-21,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1906,Infinity --Infinity,1,a-sust-i2,2020-21,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1267,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,929,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2020-21,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2020-21,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2020-21,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2020-21,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity +NA,NA,a-sust-i2,2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2020-21,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,988,Infinity +NA,NA,a-sust-i2,2020-21,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1188,Infinity +NA,NA,a-sust-i2,2020-21,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1101,Infinity +NA,NA,a-sust-i2,2020-21,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1906,Infinity +NA,NA,a-sust-i2,2020-21,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1267,Infinity -0.384,1,a-sust-i2,2020-21,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,524,524.0 --Infinity,1,a-sust-i2,2020-21,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,747,Infinity +NA,NA,a-sust-i2,2020-21,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,747,Infinity -9.952,1,a-sust-i2,2020-21,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,561,1122.0 3.984,3.98,a-sust-i2,2020-21,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 --Infinity,1,a-sust-i2,2020-21,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity --Infinity,1,a-sust-i2,2020-21,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2020-21,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2020-21,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2020-21,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2020-21,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1257,Infinity --Infinity,1,a-sust-i2,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity --Infinity,1,a-sust-i2,2020-21,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1032,Infinity --Infinity,1,a-sust-i2,2020-21,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,970,Infinity --Infinity,1,a-sust-i2,2020-21,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2020-21,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity --Infinity,1,a-sust-i2,2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2020-21,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity --Infinity,1,a-sust-i2,2020-21,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2020-21,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity --Infinity,1,a-sust-i2,2020-21,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2020-21,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity --Infinity,1,a-sust-i2,2020-21,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity --Infinity,1,a-sust-i2,2020-21,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1127,Infinity --Infinity,1,a-sust-i2,2020-21,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2020-21,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity +NA,NA,a-sust-i2,2020-21,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2020-21,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2020-21,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2020-21,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2020-21,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1257,Infinity +NA,NA,a-sust-i2,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i2,2020-21,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1032,Infinity +NA,NA,a-sust-i2,2020-21,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,970,Infinity +NA,NA,a-sust-i2,2020-21,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2020-21,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2020-21,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2020-21,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2020-21,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity +NA,NA,a-sust-i2,2020-21,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2020-21,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2020-21,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity +NA,NA,a-sust-i2,2020-21,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1127,Infinity +NA,NA,a-sust-i2,2020-21,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity -2.16,1,a-sust-i2,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.4, 1.0,635,635.0 --Infinity,1,a-sust-i2,2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2020-21,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity +NA,NA,a-sust-i2,2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2020-21,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity -1.088,1,a-sust-i2,2020-21,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,284,568.0 --Infinity,1,a-sust-i2,2020-21,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity --Infinity,1,a-sust-i2,2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2020-21,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity +NA,NA,a-sust-i2,2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity 0.368,1,a-sust-i2,2020-21,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 -10.053333333333336,1,a-sust-i2,2020-21,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,677,1128.3333333333335 --Infinity,1,a-sust-i2,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2020-21,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2020-21,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2020-21,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1417,Infinity --Infinity,1,a-sust-i2,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2020-21,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2020-21,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2020-21,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1417,Infinity +NA,NA,a-sust-i2,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity -0.448,1,a-sust-i2,2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,528,528.0 --Infinity,1,a-sust-i2,2020-21,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1629,Infinity --Infinity,1,a-sust-i2,2020-21,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity --Infinity,1,a-sust-i2,2020-21,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2020-21,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2020-21,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2020-21,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2020-21,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2020-21,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2020-21,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity --Infinity,1,a-sust-i2,2020-21,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2020-21,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity --Infinity,1,a-sust-i2,2020-21,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2020-21,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2020-21,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1629,Infinity +NA,NA,a-sust-i2,2020-21,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2020-21,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2020-21,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2020-21,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2020-21,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2020-21,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2020-21,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2020-21,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2020-21,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2020-21,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity +NA,NA,a-sust-i2,2020-21,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2020-21,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity 0.992,1,a-sust-i2,2020-21,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,438,438.0 --Infinity,1,a-sust-i2,2020-21,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity +NA,NA,a-sust-i2,2020-21,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity -3.616,1,a-sust-i2,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,726,726.0 -0.112,1,a-sust-i2,2020-21,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,507,507.0 --Infinity,1,a-sust-i2,2020-21,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2020-21,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity 1.64,1.64,a-sust-i2,2020-21,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,795,397.5 4.656,4.66,a-sust-i2,2020-21,Natick - Johnson,01980031, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,209,209.0 2.032,2.03,a-sust-i2,2020-21,Natick - Lilja Elementary,01980035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 1.488,1.49,a-sust-i2,2020-21,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 -5.008,1,a-sust-i2,2020-21,Natick - Natick High,01980505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1626,813.0 --Infinity,1,a-sust-i2,2020-21,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity --Infinity,1,a-sust-i2,2020-21,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,855,Infinity --Infinity,1,a-sust-i2,2020-21,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2020-21,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity +NA,NA,a-sust-i2,2020-21,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,855,Infinity +NA,NA,a-sust-i2,2020-21,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity -5.733333333333334,1,a-sust-i2,2020-21,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,515,858.3333333333334 --Infinity,1,a-sust-i2,2020-21,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2020-21,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity -8.4,1,a-sust-i2,2020-21,Needham - John Eliot,01990020, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,410,1025.0 --Infinity,1,a-sust-i2,2020-21,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1670,Infinity +NA,NA,a-sust-i2,2020-21,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1670,Infinity -9.253333333333336,1,a-sust-i2,2020-21,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,647,1078.3333333333335 --Infinity,1,a-sust-i2,2020-21,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity +NA,NA,a-sust-i2,2020-21,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity -7.616,1,a-sust-i2,2020-21,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,488,976.0 -6.656,1,a-sust-i2,2020-21,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,458,916.0 --Infinity,1,a-sust-i2,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,810,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,810,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity -2.304,1,a-sust-i2,2020-21,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,644,644.0 --Infinity,1,a-sust-i2,2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1034,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2722,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1114,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2020-21,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1034,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2722,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1114,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2020-21,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity 5.936,5,a-sust-i2,2020-21,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,129,129.0 3.392,3.39,a-sust-i2,2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 -0.64,1,a-sust-i2,2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,540,540.0 --Infinity,1,a-sust-i2,2020-21,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,801,Infinity +NA,NA,a-sust-i2,2020-21,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,801,Infinity 0.048,1,a-sust-i2,2020-21,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,497,497.0 --Infinity,1,a-sust-i2,2020-21,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2020-21,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2020-21,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity -17.408,1,a-sust-i2,2020-21,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,794,1588.0 --Infinity,1,a-sust-i2,2020-21,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2020-21,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity 1.968,1.97,a-sust-i2,2020-21,Newton - Horace Mann,02070075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 --Infinity,1,a-sust-i2,2020-21,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2020-21,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity -25.168,1,a-sust-i2,2020-21,Newton - Newton North High,02070505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,2073,2073.0 --Infinity,1,a-sust-i2,2020-21,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1869,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1869,Infinity -2.352,1,a-sust-i2,2020-21,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,647,647.0 -1.52,1,a-sust-i2,2020-21,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,238,595.0 --Infinity,1,a-sust-i2,2020-21,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2020-21,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2020-21,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity -4.576,1,a-sust-i2,2020-21,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,393,786.0 --Infinity,1,a-sust-i2,2020-21,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2020-21,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity --Infinity,1,a-sust-i2,2020-21,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2020-21,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2020-21,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2020-21,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2020-21,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2020-21,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +NA,NA,a-sust-i2,2020-21,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2020-21,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2020-21,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2020-21,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity 2.512,2.51,a-sust-i2,2020-21,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,343,343.0 --Infinity,1,a-sust-i2,2020-21,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2020-21,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2020-21,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2020-21,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity -22.4,1,a-sust-i2,2020-21,North Andover - Franklin,02110010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,380,1900.0 --Infinity,1,a-sust-i2,2020-21,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2020-21,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity -14.032,1,a-sust-i2,2020-21,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1377,1377.0 -9.664,1,a-sust-i2,2020-21,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1104,1104.0 --Infinity,1,a-sust-i2,2020-21,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2020-21,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2020-21,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2020-21,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity 3.12,3.12,a-sust-i2,2020-21,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,305,305.0 --Infinity,1,a-sust-i2,2020-21,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i2,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2020-21,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1089,Infinity --Infinity,1,a-sust-i2,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2020-21,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,993,Infinity --Infinity,1,a-sust-i2,2020-21,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2020-21,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2020-21,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2020-21,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2020-21,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2020-21,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2020-21,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity --Infinity,1,a-sust-i2,2020-21,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2020-21,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2020-21,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i2,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2020-21,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1089,Infinity +NA,NA,a-sust-i2,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2020-21,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,993,Infinity +NA,NA,a-sust-i2,2020-21,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2020-21,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2020-21,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2020-21,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2020-21,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2020-21,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2020-21,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i2,2020-21,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2020-21,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity -1.856,1,a-sust-i2,2020-21,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,308,616.0 -2.816,1,a-sust-i2,2020-21,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,338,676.0 --Infinity,1,a-sust-i2,2020-21,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2020-21,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity -2.592,1,a-sust-i2,2020-21,North Reading - North Reading High,02170505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,662,662.0 2.144,2.14,a-sust-i2,2020-21,North Reading - North Reading Middle,02170305, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,549,366.0 --Infinity,1,a-sust-i2,2020-21,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2020-21,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2020-21,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2020-21,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2020-21,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2020-21,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity 3.312,3.31,a-sust-i2,2020-21,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 --Infinity,1,a-sust-i2,2020-21,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,861,Infinity --Infinity,1,a-sust-i2,2020-21,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2020-21,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,861,Infinity +NA,NA,a-sust-i2,2020-21,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity -0.448,1,a-sust-i2,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,528,528.0 -46.2,1,a-sust-i2,2020-21,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,1355,3387.5 --Infinity,1,a-sust-i2,2020-21,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2020-21,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity 3.808,3.81,a-sust-i2,2020-21,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,262,262.0 3.6,3.6,a-sust-i2,2020-21,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,275,275.0 4.24,4.24,a-sust-i2,2020-21,Northborough - Marion E Zeh,02130020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,235,235.0 -0.272,1,a-sust-i2,2020-21,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,517,517.0 --Infinity,1,a-sust-i2,2020-21,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2020-21,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity -8.8,1,a-sust-i2,2020-21,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,525,1050.0 --Infinity,1,a-sust-i2,2020-21,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2020-21,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2020-21,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2020-21,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity -12.496,1,a-sust-i2,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1281,1281.0 --Infinity,1,a-sust-i2,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2020-21,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2020-21,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2020-21,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2020-21,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2020-21,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity --Infinity,1,a-sust-i2,2020-21,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2020-21,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2020-21,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2020-21,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,718,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2020-21,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,973,Infinity --Infinity,1,a-sust-i2,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity --Infinity,1,a-sust-i2,2020-21,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity --Infinity,1,a-sust-i2,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2020-21,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2020-21,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2020-21,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2020-21,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2020-21,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2020-21,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2020-21,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2020-21,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2020-21,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2020-21,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2020-21,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2020-21,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,718,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2020-21,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,973,Infinity +NA,NA,a-sust-i2,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2020-21,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity +NA,NA,a-sust-i2,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2020-21,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2020-21,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2020-21,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity -2.773333333333334,1,a-sust-i2,2020-21,Oxford - Alfred M Chaffee,02260010, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,202,673.3333333333334 -10.986666666666668,1,a-sust-i2,2020-21,Oxford - Clara Barton,02260005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,356,1186.6666666666667 --Infinity,1,a-sust-i2,2020-21,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2020-21,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity -11.093333333333335,1,a-sust-i2,2020-21,Oxford - Oxford Middle,02260405, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,358,1193.3333333333335 --Infinity,1,a-sust-i2,2020-21,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity --Infinity,1,a-sust-i2,2020-21,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity --Infinity,1,a-sust-i2,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity --Infinity,1,a-sust-i2,2020-21,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.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1443,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1500,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2020-21,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2020-21,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity --Infinity,1,a-sust-i2,2020-21,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2020-21,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2020-21,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2020-21,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2020-21,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2020-21,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +NA,NA,a-sust-i2,2020-21,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2020-21,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.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1443,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1500,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2020-21,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2020-21,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2020-21,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2020-21,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2020-21,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2020-21,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2020-21,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity -1.536,1,a-sust-i2,2020-21,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,298,596.0 0.56,1,a-sust-i2,2020-21,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,465,465.0 --Infinity,1,a-sust-i2,2020-21,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2020-21,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity 2.432,2.43,a-sust-i2,2020-21,Pentucket - Pentucket Regional Middle,07450405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 -2.768,1,a-sust-i2,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,673,673.0 --Infinity,1,a-sust-i2,2020-21,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity --Infinity,1,a-sust-i2,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2020-21,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity --Infinity,1,a-sust-i2,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2020-21,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity +NA,NA,a-sust-i2,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2020-21,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +NA,NA,a-sust-i2,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity -9.92,1,a-sust-i2,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,560,1120.0 --Infinity,1,a-sust-i2,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity --Infinity,1,a-sust-i2,2020-21,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2020-21,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2020-21,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2020-21,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +NA,NA,a-sust-i2,2020-21,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2020-21,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2020-21,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2020-21,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity 2.4,2.4,a-sust-i2,2020-21,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,350,350.0 5.056,5,a-sust-i2,2020-21,Plymouth - Hedge,02390010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,184,184.0 -0.624,1,a-sust-i2,2020-21,Plymouth - Indian Brook,02390012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,539,539.0 3.968,3.97,a-sust-i2,2020-21,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,252,252.0 4.056,4.06,a-sust-i2,2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,493,246.5 -2.1,1,a-sust-i2,2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,1010,631.25 --Infinity,1,a-sust-i2,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity -4.68,1,a-sust-i2,2020-21,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,1268,792.5 -9.056,1,a-sust-i2,2020-21,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1066,1066.0 -2.64,1,a-sust-i2,2020-21,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,665,665.0 @@ -6771,173 +6771,173 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.912,2.91,a-sust-i2,2020-21,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,318,318.0 4.656,4.66,a-sust-i2,2020-21,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,209,209.0 -9.712,1,a-sust-i2,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1107,1107.0 --Infinity,1,a-sust-i2,2020-21,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2020-21,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2020-21,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2020-21,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity --Infinity,1,a-sust-i2,2020-21,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2020-21,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity --Infinity,1,a-sust-i2,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2020-21,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity --Infinity,1,a-sust-i2,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2020-21,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2020-21,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2020-21,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2020-21,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2020-21,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2020-21,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i2,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2020-21,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity -3.92,1,a-sust-i2,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,149,745.0 -2.96,1,a-sust-i2,2020-21,Quincy - Atherton Hough,02430040, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,274,685.0 -21.12,1,a-sust-i2,2020-21,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,546,1820.0 -20.16,1,a-sust-i2,2020-21,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,352,1760.0 -10.026666666666667,1,a-sust-i2,2020-21,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,338,1126.6666666666667 --Infinity,1,a-sust-i2,2020-21,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2020-21,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity -9.226666666666668,1,a-sust-i2,2020-21,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,323,1076.6666666666667 -20.0,1,a-sust-i2,2020-21,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,525,1750.0 --Infinity,1,a-sust-i2,2020-21,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2020-21,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity -21.013333333333335,1,a-sust-i2,2020-21,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,544,1813.3333333333335 -18.88,1,a-sust-i2,2020-21,Quincy - Merrymount,02430060, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,336,1680.0 -26.96,1,a-sust-i2,2020-21,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,437,2185.0 -35.392,1,a-sust-i2,2020-21,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1356,2712.0 -14.24,1,a-sust-i2,2020-21,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,417,1390.0 --Infinity,1,a-sust-i2,2020-21,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1499,Infinity +NA,NA,a-sust-i2,2020-21,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1499,Infinity -4.704,1,a-sust-i2,2020-21,Quincy - Snug Harbor Community School,02430090, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,397,794.0 -23.28,1,a-sust-i2,2020-21,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,391,1955.0 -10.08,1,a-sust-i2,2020-21,Quincy - Squantum,02430095, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,339,1130.0 -2.72,1,a-sust-i2,2020-21,Quincy - Wollaston School,02430110, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,335,670.0 -11.808,1,a-sust-i2,2020-21,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,619,1238.0 --Infinity,1,a-sust-i2,2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2020-21,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2020-21,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2020-21,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2020-21,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity --Infinity,1,a-sust-i2,2020-21,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2020-21,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2020-21,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2020-21,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2020-21,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity +NA,NA,a-sust-i2,2020-21,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity 2.336,2.34,a-sust-i2,2020-21,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,354,354.0 4.808,4.81,a-sust-i2,2020-21,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,399,199.5 2.48,2.48,a-sust-i2,2020-21,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,345,345.0 1.68,1.68,a-sust-i2,2020-21,Reading - J Warren Killam,02460017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,395,395.0 1.68,1.68,a-sust-i2,2020-21,Reading - Joshua Eaton,02460010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,395,395.0 --Infinity,1,a-sust-i2,2020-21,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2020-21,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity -0.14666666666666697,1,a-sust-i2,2020-21,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.8, 1.6, 0.0, 0.0, 2.4,1222,509.1666666666667 4.04,4.04,a-sust-i2,2020-21,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,495,247.5 4.016,4.02,a-sust-i2,2020-21,Reading - Wood End Elementary School,02460020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 --Infinity,1,a-sust-i2,2020-21,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1978,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2020-21,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2020-21,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,152,Infinity --Infinity,1,a-sust-i2,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2020-21,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2020-21,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2020-21,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1978,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2020-21,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2020-21,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,152,Infinity +NA,NA,a-sust-i2,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2020-21,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2020-21,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity -16.48,1,a-sust-i2,2020-21,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,765,1530.0 --Infinity,1,a-sust-i2,2020-21,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2020-21,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2020-21,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2020-21,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity -8.213333333333335,1,a-sust-i2,2020-21,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6,608,1013.3333333333334 3.12,3.12,a-sust-i2,2020-21,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,305,305.0 -0.16,1,a-sust-i2,2020-21,Rockport - Rockport High,02520510, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,255,510.0 1.536,1.54,a-sust-i2,2020-21,Rockport - Rockport Middle,02520305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,202,404.0 2.96,2.96,a-sust-i2,2020-21,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,63,315.0 --Infinity,1,a-sust-i2,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1596,Infinity --Infinity,1,a-sust-i2,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1557,Infinity --Infinity,1,a-sust-i2,2020-21,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2020-21,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2020-21,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2020-21,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity --Infinity,1,a-sust-i2,2020-21,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1596,Infinity +NA,NA,a-sust-i2,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1557,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity 5.333333333333333,5,a-sust-i2,2020-21,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,50,166.66666666666669 --Infinity,1,a-sust-i2,2020-21,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity --Infinity,1,a-sust-i2,2020-21,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,860,Infinity --Infinity,1,a-sust-i2,2020-21,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,860,Infinity +NA,NA,a-sust-i2,2020-21,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity -4.512,1,a-sust-i2,2020-21,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,391,782.0 0.128,1,a-sust-i2,2020-21,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,492,492.0 --Infinity,1,a-sust-i2,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2020-21,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity --Infinity,1,a-sust-i2,2020-21,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2020-21,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity +NA,NA,a-sust-i2,2020-21,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity -12.512,1,a-sust-i2,2020-21,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,641,1282.0 -5.888,1,a-sust-i2,2020-21,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,434,868.0 --Infinity,1,a-sust-i2,2020-21,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2020-21,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2020-21,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2020-21,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2020-21,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2020-21,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2020-21,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i2,2020-21,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2020-21,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2020-21,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2020-21,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2020-21,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2020-21,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2020-21,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity 2.736,2.74,a-sust-i2,2020-21,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 --Infinity,1,a-sust-i2,2020-21,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity --Infinity,1,a-sust-i2,2020-21,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2020-21,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2020-21,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity 2.896,2.9,a-sust-i2,2020-21,Scituate - Jenkins Elementary School,02640015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,319,319.0 --Infinity,1,a-sust-i2,2020-21,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,921,Infinity +NA,NA,a-sust-i2,2020-21,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,921,Infinity 1.76,1.76,a-sust-i2,2020-21,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,390,390.0 --Infinity,1,a-sust-i2,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2020-21,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2020-21,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2020-21,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity --Infinity,1,a-sust-i2,2020-21,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2020-21,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2020-21,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2020-21,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +NA,NA,a-sust-i2,2020-21,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity -7.744,1,a-sust-i2,2020-21,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,492,984.0 -9.376,1,a-sust-i2,2020-21,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,543,1086.0 3.04,3.04,a-sust-i2,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,31,310.0 -28.192,1,a-sust-i2,2020-21,Sharon - Sharon High,02660505, 0.0, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.5,1131,2262.0 --Infinity,1,a-sust-i2,2020-21,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity +NA,NA,a-sust-i2,2020-21,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity -12.928,1,a-sust-i2,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1308,1308.0 --Infinity,1,a-sust-i2,2020-21,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,985,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1873,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2020-21,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2020-21,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,985,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1873,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2020-21,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity 5.76,5,a-sust-i2,2020-21,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,112,140.0 -10.8,1,a-sust-i2,2020-21,Silver Lake - Silver Lake Regional High,07600505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1175,1175.0 -0.368,1,a-sust-i2,2020-21,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,523,523.0 --Infinity,1,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2020-21,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, 0.0, 0.0, 0.0, 0.0,366,Infinity -9.333333333333336,1,a-sust-i2,2020-21,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,325,1083.3333333333335 -5.536,1,a-sust-i2,2020-21,Somerset - North Elementary,02730008, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,423,846.0 -11.648,1,a-sust-i2,2020-21,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,614,1228.0 -5.013333333333334,1,a-sust-i2,2020-21,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,244,813.3333333333334 -24.224,1,a-sust-i2,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1007,2014.0 --Infinity,1,a-sust-i2,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2020-21,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2020-21,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2020-21,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2020-21,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity -5.376,1,a-sust-i2,2020-21,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,418,836.0 --Infinity,1,a-sust-i2,2020-21,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2020-21,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2020-21,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2020-21,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity -18.144,1,a-sust-i2,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,817,1634.0 --Infinity,1,a-sust-i2,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity --Infinity,1,a-sust-i2,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity +NA,NA,a-sust-i2,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity -0.96,1,a-sust-i2,2020-21,Southampton - William E Norris,02750005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,448,560.0 3.952,3.95,a-sust-i2,2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,253,253.0 3.968,3.97,a-sust-i2,2020-21,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,252,252.0 2.72,2.72,a-sust-i2,2020-21,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,330,330.0 1.904,1.9,a-sust-i2,2020-21,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 --Infinity,1,a-sust-i2,2020-21,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2020-21,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2020-21,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity --Infinity,1,a-sust-i2,2020-21,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2020-21,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2020-21,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2020-21,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2020-21,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +NA,NA,a-sust-i2,2020-21,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2020-21,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity 2.992,2.99,a-sust-i2,2020-21,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,313,313.0 -16.432,1,a-sust-i2,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1527,1527.0 --Infinity,1,a-sust-i2,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2020-21,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2020-21,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity --Infinity,1,a-sust-i2,2020-21,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1171,Infinity +NA,NA,a-sust-i2,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2020-21,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2020-21,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2020-21,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1171,Infinity -3.333333333333334,1,a-sust-i2,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,425,708.3333333333334 -3.9644444444444433,1,a-sust-i2,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,673,747.7777777777777 -1.44,1,a-sust-i2,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,295,590.0 @@ -6945,112 +6945,112 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.18,4.18,a-sust-i2,2020-21,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.5, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.8,191,238.75 -13.6,1,a-sust-i2,2020-21,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,405,1350.0 -5.984,1,a-sust-i2,2020-21,Spencer-E Brookfield - Wire Village School,07670040, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,437,874.0 --Infinity,1,a-sust-i2,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1207,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,764,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1404,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2086,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1183,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2020-21,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2020-21,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2020-21,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2020-21,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity --Infinity,1,a-sust-i2,2020-21,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2020-21,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1035,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1207,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,764,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1404,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2086,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1183,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2020-21,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2020-21,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2020-21,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2020-21,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2020-21,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity +NA,NA,a-sust-i2,2020-21,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2020-21,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1035,Infinity 3.776,3.78,a-sust-i2,2020-21,Sturbridge - Burgess Elementary,02870005, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,792,264.0 --Infinity,1,a-sust-i2,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,853,Infinity --Infinity,1,a-sust-i2,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity +NA,NA,a-sust-i2,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,853,Infinity +NA,NA,a-sust-i2,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity 4.810666666666666,4.81,a-sust-i2,2020-21,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,299,199.33333333333334 --Infinity,1,a-sust-i2,2020-21,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2020-21,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity 2.592,2.59,a-sust-i2,2020-21,Sudbury - Josiah Haynes,02880010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,338,338.0 --Infinity,1,a-sust-i2,2020-21,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2020-21,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2020-21,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2020-21,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2020-21,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2020-21,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2020-21,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2020-21,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2020-21,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2020-21,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2020-21,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2020-21,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity -26.24,1,a-sust-i2,2020-21,Swampscott - Clarke,02910005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,214,2140.0 2.7555555555555555,2.76,a-sust-i2,2020-21,Swampscott - Hadley,02910010, 0.0, 0.0, 0.4, 0.0, 0.5, 0.0, 0.0, 0.9,295,327.77777777777777 0.896,1,a-sust-i2,2020-21,Swampscott - Stanley,02910020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,222,444.0 -14.4,1,a-sust-i2,2020-21,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,700,1400.0 -3.216,1,a-sust-i2,2020-21,Swampscott - Swampscott Middle,02910305, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,701,701.0 --Infinity,1,a-sust-i2,2020-21,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2020-21,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2020-21,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2020-21,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity -0.8,1,a-sust-i2,2020-21,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,550,550.0 --Infinity,1,a-sust-i2,2020-21,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2020-21,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity --Infinity,1,a-sust-i2,2020-21,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2514,Infinity +NA,NA,a-sust-i2,2020-21,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2020-21,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2020-21,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2514,Infinity -1.36,1,a-sust-i2,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,585,585.0 2.504,2.5,a-sust-i2,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,687,343.5 --Infinity,1,a-sust-i2,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity -12.56,1,a-sust-i2,2020-21,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.4, 0.0, 0.2, 0.0, 0.0, 0.6,771,1285.0 -13.76,1,a-sust-i2,2020-21,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,544,1360.0 0.18666666666666606,1,a-sust-i2,2020-21,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,293,488.33333333333337 @@ -7063,247 +7063,247 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -7.5,1,a-sust-i2,2020-21,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,775,968.75 -8.0,1,a-sust-i2,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,100,1000.0 -46.0,1,a-sust-i2,2020-21,Taunton - Taunton High,02930505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,2700,3375.0 --Infinity,1,a-sust-i2,2020-21,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2020-21,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2020-21,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2020-21,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity --Infinity,1,a-sust-i2,2020-21,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2020-21,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2020-21,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity --Infinity,1,a-sust-i2,2020-21,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2020-21,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2020-21,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,953,Infinity --Infinity,1,a-sust-i2,2020-21,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2020-21,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2020-21,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2020-21,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity --Infinity,1,a-sust-i2,2020-21,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2020-21,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2020-21,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2020-21,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2020-21,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2020-21,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2020-21,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2020-21,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity +NA,NA,a-sust-i2,2020-21,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2020-21,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2020-21,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,953,Infinity +NA,NA,a-sust-i2,2020-21,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2020-21,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2020-21,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2020-21,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2020-21,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity 1.973333333333333,1.97,a-sust-i2,2020-21,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,113,376.6666666666667 0.288,1,a-sust-i2,2020-21,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,723,482.0 --Infinity,1,a-sust-i2,2020-21,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2020-21,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2020-21,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2020-21,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity 2.416,2.42,a-sust-i2,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,349,349.0 2.52,2.52,a-sust-i2,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,685,342.5 --Infinity,1,a-sust-i2,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity --Infinity,1,a-sust-i2,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i2,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity +NA,NA,a-sust-i2,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity -0.096,1,a-sust-i2,2020-21,Uxbridge - Taft Early Learning Center,03040005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,506,506.0 -1.6,1,a-sust-i2,2020-21,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,600,600.0 0.128,1,a-sust-i2,2020-21,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,492,492.0 --Infinity,1,a-sust-i2,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity 2.496,2.5,a-sust-i2,2020-21,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,344,344.0 3.2,3.2,a-sust-i2,2020-21,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,300,300.0 --Infinity,1,a-sust-i2,2020-21,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity 0.88,1,a-sust-i2,2020-21,Wachusett - Dawson,07750020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,445,445.0 --Infinity,1,a-sust-i2,2020-21,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity --Infinity,1,a-sust-i2,2020-21,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2020-21,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2020-21,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2020-21,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity --Infinity,1,a-sust-i2,2020-21,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2020-21,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2020-21,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2020-21,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity -24.048,1,a-sust-i2,2020-21,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,2003,2003.0 0.912,1,a-sust-i2,2020-21,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,443,443.0 5.824,5,a-sust-i2,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,68,136.0 --Infinity,1,a-sust-i2,2020-21,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1058,Infinity --Infinity,1,a-sust-i2,2020-21,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2020-21,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,893,Infinity +NA,NA,a-sust-i2,2020-21,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1058,Infinity +NA,NA,a-sust-i2,2020-21,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2020-21,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,893,Infinity 0.864,1,a-sust-i2,2020-21,Wakefield - Walton,03050040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,223,446.0 1.456,1.46,a-sust-i2,2020-21,Wakefield - Woodville School,03050015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 --Infinity,1,a-sust-i2,2020-21,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2020-21,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1078,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1620,Infinity --Infinity,1,a-sust-i2,2020-21,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2020-21,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2020-21,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2020-21,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2020-21,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2020-21,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2020-21,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2020-21,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity --Infinity,1,a-sust-i2,2020-21,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2020-21,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2020-21,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2020-21,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity --Infinity,1,a-sust-i2,2020-21,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2020-21,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2020-21,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1078,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1620,Infinity +NA,NA,a-sust-i2,2020-21,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2020-21,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2020-21,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2020-21,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2020-21,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2020-21,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2020-21,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2020-21,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2020-21,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2020-21,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2020-21,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2020-21,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity +NA,NA,a-sust-i2,2020-21,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity -0.064,1,a-sust-i2,2020-21,Wayland - Claypit Hill School,03150005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,504,504.0 3.556923076923077,3.56,a-sust-i2,2020-21,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,361,277.6923076923077 0.86,1,a-sust-i2,2020-21,Wayland - Loker School,03150020, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,357,446.25 --Infinity,1,a-sust-i2,2020-21,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity +NA,NA,a-sust-i2,2020-21,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity 1.152,1.15,a-sust-i2,2020-21,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 1.5,642,428.0 --Infinity,1,a-sust-i2,2020-21,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2020-21,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity -15.072,1,a-sust-i2,2020-21,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,721,1442.0 -1.136,1,a-sust-i2,2020-21,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,571,571.0 --Infinity,1,a-sust-i2,2020-21,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity -1.12,1,a-sust-i2,2020-21,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,228,570.0 --Infinity,1,a-sust-i2,2020-21,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2020-21,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2020-21,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity --Infinity,1,a-sust-i2,2020-21,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2020-21,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2020-21,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1091,Infinity --Infinity,1,a-sust-i2,2020-21,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1469,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1091,Infinity +NA,NA,a-sust-i2,2020-21,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1469,Infinity 2.506666666666666,2.51,a-sust-i2,2020-21,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,103,343.33333333333337 --Infinity,1,a-sust-i2,2020-21,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2020-21,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity 3.312,3.31,a-sust-i2,2020-21,West Bridgewater - Howard School,03230305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 3.392,3.39,a-sust-i2,2020-21,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 --Infinity,1,a-sust-i2,2020-21,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2020-21,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity -2.176,1,a-sust-i2,2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,636,636.0 5.376,5,a-sust-i2,2020-21,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,82,164.0 --Infinity,1,a-sust-i2,2020-21,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity --Infinity,1,a-sust-i2,2020-21,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2020-21,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2020-21,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity 3.093333333333333,3.09,a-sust-i2,2020-21,West Springfield - Memorial,03320025, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,184,306.6666666666667 -17.92,1,a-sust-i2,2020-21,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,162,1620.0 -17.12,1,a-sust-i2,2020-21,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,471,1570.0 -5.546666666666668,1,a-sust-i2,2020-21,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,254,846.6666666666667 -30.56,1,a-sust-i2,2020-21,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1205,2410.0 -16.32,1,a-sust-i2,2020-21,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.6,912,1520.0 --Infinity,1,a-sust-i2,2020-21,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2020-21,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity 0.752,1,a-sust-i2,2020-21,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,453,453.0 2.032,2.03,a-sust-i2,2020-21,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 -6.064,1,a-sust-i2,2020-21,Westborough - Mill Pond School,03210045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,879,879.0 --Infinity,1,a-sust-i2,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity 1.2457142857142853,1.25,a-sust-i2,2020-21,Westborough - Westborough High,03210505, 0.0, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0, 2.8,1182,422.14285714285717 --Infinity,1,a-sust-i2,2020-21,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1106,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,693,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,771,Infinity --Infinity,1,a-sust-i2,2020-21,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity --Infinity,1,a-sust-i2,2020-21,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1645,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1106,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,693,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,771,Infinity +NA,NA,a-sust-i2,2020-21,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2020-21,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2020-21,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1645,Infinity -0.32,1,a-sust-i2,2020-21,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,104,520.0 -44.8,1,a-sust-i2,2020-21,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,330,3300.0 3.424,3.42,a-sust-i2,2020-21,Weston - Field Elementary School,03300012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,286,286.0 -1.1636363636363622,1,a-sust-i2,2020-21,Weston - Weston High,03300505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.3, 0.0, 1.1,630,572.7272727272726 -0.2488888888888887,1,a-sust-i2,2020-21,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.0, 0.9,464,515.5555555555555 -23.36,1,a-sust-i2,2020-21,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,196,1960.0 --Infinity,1,a-sust-i2,2020-21,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2020-21,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2020-21,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2020-21,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity 3.6,3.6,a-sust-i2,2020-21,Westport - Westport Junior/Senior High School,03310515, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,550,275.0 4.944,4.94,a-sust-i2,2020-21,Westwood - Deerfield School,03350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,191,191.0 3.28,3.28,a-sust-i2,2020-21,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,295,295.0 --Infinity,1,a-sust-i2,2020-21,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity +NA,NA,a-sust-i2,2020-21,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity 3.664,3.66,a-sust-i2,2020-21,Westwood - Martha Jones,03350017, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,271,271.0 3.6114285714285717,3.61,a-sust-i2,2020-21,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,192,274.2857142857143 -7.888,1,a-sust-i2,2020-21,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,993,993.0 --Infinity,1,a-sust-i2,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity 3.376,3.38,a-sust-i2,2020-21,Westwood - William E Sheehan,03350025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 --Infinity,1,a-sust-i2,2020-21,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,880,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2247,Infinity --Infinity,1,a-sust-i2,2020-21,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,880,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2247,Infinity +NA,NA,a-sust-i2,2020-21,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity 6.144,5,a-sust-i2,2020-21,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,116,116.0 -6.528,1,a-sust-i2,2020-21,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,454,908.0 -7.04,1,a-sust-i2,2020-21,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,470,940.0 -5.344,1,a-sust-i2,2020-21,Whitman-Hanson - John H Duval,07800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,417,834.0 -7.872,1,a-sust-i2,2020-21,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,496,992.0 --Infinity,1,a-sust-i2,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity +NA,NA,a-sust-i2,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity -27.744,1,a-sust-i2,2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1117,2234.0 -9.568,1,a-sust-i2,2020-21,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,549,1098.0 -11.984,1,a-sust-i2,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1249,1249.0 -1.52,1,a-sust-i2,2020-21,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,119,595.0 --Infinity,1,a-sust-i2,2020-21,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112,Infinity --Infinity,1,a-sust-i2,2020-21,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2020-21,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2020-21,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2020-21,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2020-21,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity --Infinity,1,a-sust-i2,2020-21,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity --Infinity,1,a-sust-i2,2020-21,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2020-21,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity --Infinity,1,a-sust-i2,2020-21,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2020-21,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2020-21,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2020-21,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2020-21,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2020-21,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2020-21,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1084,Infinity --Infinity,1,a-sust-i2,2020-21,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2020-21,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2020-21,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1403,Infinity --Infinity,1,a-sust-i2,2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2020-21,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity --Infinity,1,a-sust-i2,2020-21,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2020-21,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1236,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2020-21,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2020-21,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +NA,NA,a-sust-i2,2020-21,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2020-21,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2020-21,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2020-21,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2020-21,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2020-21,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2020-21,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1084,Infinity +NA,NA,a-sust-i2,2020-21,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2020-21,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2020-21,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1403,Infinity +NA,NA,a-sust-i2,2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2020-21,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +NA,NA,a-sust-i2,2020-21,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2020-21,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1236,Infinity -1.216,1,a-sust-i2,2020-21,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,576,576.0 -3.008,1,a-sust-i2,2020-21,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,688,688.0 -10.448,1,a-sust-i2,2020-21,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1153,1153.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity 0.4,1,a-sust-i2,2020-21,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,475,475.0 --Infinity,1,a-sust-i2,2020-21,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity -0.736,1,a-sust-i2,2020-21,Worcester - Claremont Academy,03480350, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,546,546.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity 1.872,1.87,a-sust-i2,2020-21,Worcester - Columbus Park,03480060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 -15.024,1,a-sust-i2,2020-21,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1439,1439.0 1.584,1.58,a-sust-i2,2020-21,Worcester - Elm Park Community,03480095, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity -6.48,1,a-sust-i2,2020-21,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,905,905.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity 3.872,3.87,a-sust-i2,2020-21,Worcester - Gates Lane,03480110, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,516,258.0 2.304,2.3,a-sust-i2,2020-21,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 1.968,1.97,a-sust-i2,2020-21,Worcester - Grafton Street,03480115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity 1.872,1.87,a-sust-i2,2020-21,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity 4.016,4.02,a-sust-i2,2020-21,Worcester - Lincoln Street,03480160, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 --Infinity,1,a-sust-i2,2020-21,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity -0.512,1,a-sust-i2,2020-21,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,532,532.0 -0.288,1,a-sust-i2,2020-21,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,518,518.0 -2.392,1,a-sust-i2,2020-21,Worcester - North High,03480515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1299,649.5 @@ -7312,583 +7312,583 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.016,1,a-sust-i2,2020-21,Worcester - Roosevelt,03480220, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,626,626.0 -14.8,1,a-sust-i2,2020-21,Worcester - South High Community,03480520, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1425,1425.0 -6.896,1,a-sust-i2,2020-21,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,931,931.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity 0.528,1,a-sust-i2,2020-21,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,467,467.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2020-21,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity -0.064,1,a-sust-i2,2020-21,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,504,504.0 --Infinity,1,a-sust-i2,2020-21,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2020-21,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity -3.776,1,a-sust-i2,2020-21,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,736,736.0 -15.696,1,a-sust-i2,2020-21,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1481,1481.0 --Infinity,1,a-sust-i2,2020-21,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i2,2020-21,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity -3.936,1,a-sust-i2,2020-21,Wrentham - Charles E Roderick,03500010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,373,746.0 -7.648,1,a-sust-i2,2020-21,Wrentham - Delaney,03500003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,489,978.0 --Infinity,1,a-sust-i2,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1425,Infinity --Infinity,1,a-sust-i2,2019-20,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1425,Infinity +NA,NA,a-sust-i2,2019-20,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity -1.488,1,a-sust-i2,2019-20,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,593,593.0 2.48,2.48,a-sust-i2,2019-20,Abington - Abington Middle School,00010405, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,690,345.0 0.464,1,a-sust-i2,2019-20,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,471,471.0 --Infinity,1,a-sust-i2,2019-20,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2019-20,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity -20.10666666666667,1,a-sust-i2,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,527,1756.6666666666667 --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1814,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,860,Infinity --Infinity,1,a-sust-i2,2019-20,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2019-20,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,963,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1074,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2019-20,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity --Infinity,1,a-sust-i2,2019-20,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2019-20,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2019-20,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity --Infinity,1,a-sust-i2,2019-20,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2019-20,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2019-20,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2019-20,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2019-20,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2019-20,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity --Infinity,1,a-sust-i2,2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1795,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1814,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,860,Infinity +NA,NA,a-sust-i2,2019-20,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2019-20,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,963,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1074,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2019-20,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity +NA,NA,a-sust-i2,2019-20,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2019-20,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2019-20,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity +NA,NA,a-sust-i2,2019-20,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2019-20,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2019-20,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2019-20,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2019-20,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity +NA,NA,a-sust-i2,2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2019-20,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1795,Infinity +NA,NA,a-sust-i2,2019-20,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2019-20,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity -0.288,1,a-sust-i2,2019-20,Andover - Doherty Middle,00090305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,518,518.0 --Infinity,1,a-sust-i2,2019-20,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2019-20,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2019-20,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2019-20,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2019-20,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity +NA,NA,a-sust-i2,2019-20,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2019-20,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2019-20,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity -0.4,1,a-sust-i2,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,525,525.0 -14.576,1,a-sust-i2,2019-20,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1411,1411.0 --Infinity,1,a-sust-i2,2019-20,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2019-20,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2019-20,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2019-20,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity -6.08,1,a-sust-i2,2019-20,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,440,880.0 --Infinity,1,a-sust-i2,2019-20,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity --Infinity,1,a-sust-i2,2019-20,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,899,Infinity --Infinity,1,a-sust-i2,2019-20,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2019-20,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2019-20,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity --Infinity,1,a-sust-i2,2019-20,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity --Infinity,1,a-sust-i2,2019-20,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity --Infinity,1,a-sust-i2,2019-20,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity --Infinity,1,a-sust-i2,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity --Infinity,1,a-sust-i2,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1141,Infinity --Infinity,1,a-sust-i2,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity --Infinity,1,a-sust-i2,2019-20,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2019-20,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,899,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2019-20,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2019-20,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +NA,NA,a-sust-i2,2019-20,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity +NA,NA,a-sust-i2,2019-20,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity +NA,NA,a-sust-i2,2019-20,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +NA,NA,a-sust-i2,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1141,Infinity +NA,NA,a-sust-i2,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2019-20,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2019-20,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity -12.832,1,a-sust-i2,2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1302,1302.0 --Infinity,1,a-sust-i2,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity -20.32,1,a-sust-i2,2019-20,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1770,1770.0 --Infinity,1,a-sust-i2,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity --Infinity,1,a-sust-i2,2019-20,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity -12.96,1,a-sust-i2,2019-20,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,655,1310.0 --Infinity,1,a-sust-i2,2019-20,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2019-20,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2019-20,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity -12.064,1,a-sust-i2,2019-20,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,627,1254.0 -17.408,1,a-sust-i2,2019-20,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,794,1588.0 -7.253333333333334,1,a-sust-i2,2019-20,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,286,953.3333333333334 -8.426666666666668,1,a-sust-i2,2019-20,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,308,1026.6666666666667 -11.872,1,a-sust-i2,2019-20,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,621,1242.0 --Infinity,1,a-sust-i2,2019-20,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2019-20,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2019-20,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2019-20,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity -3.968,1,a-sust-i2,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,374,748.0 -5.024,1,a-sust-i2,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,407,814.0 --Infinity,1,a-sust-i2,2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity 3.328,3.33,a-sust-i2,2019-20,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,292,292.0 -6.456,1,a-sust-i2,2019-20,Barnstable - Barnstable High,00200505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,1807,903.5 -4.096,1,a-sust-i2,2019-20,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,756,756.0 -4.864,1,a-sust-i2,2019-20,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,804,804.0 4.112,4.11,a-sust-i2,2019-20,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,243,243.0 --Infinity,1,a-sust-i2,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity 3.056,3.06,a-sust-i2,2019-20,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,309,309.0 4.08,4.08,a-sust-i2,2019-20,Barnstable - West Barnstable Elementary,00200005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,245,245.0 1.216,1.22,a-sust-i2,2019-20,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,424,424.0 --Infinity,1,a-sust-i2,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2019-20,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity --Infinity,1,a-sust-i2,2019-20,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2019-20,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity --Infinity,1,a-sust-i2,2019-20,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2019-20,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity +NA,NA,a-sust-i2,2019-20,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2019-20,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity +NA,NA,a-sust-i2,2019-20,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity -48.08,1,a-sust-i2,2019-20,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,701,3505.0 -32.08,1,a-sust-i2,2019-20,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,501,2505.0 -7.12,1,a-sust-i2,2019-20,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,189,945.0 -21.76,1,a-sust-i2,2019-20,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,372,1860.0 -30.16,1,a-sust-i2,2019-20,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,477,2385.0 --Infinity,1,a-sust-i2,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2019-20,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity --Infinity,1,a-sust-i2,2019-20,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2019-20,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2019-20,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2019-20,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity +NA,NA,a-sust-i2,2019-20,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2019-20,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2019-20,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity -13.088,1,a-sust-i2,2019-20,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 1.0,1318,1318.0 -3.68,1,a-sust-i2,2019-20,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,365,730.0 -5.92,1,a-sust-i2,2019-20,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,435,870.0 -4.56,1,a-sust-i2,2019-20,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.3, 0.0, 0.8,628,785.0 -6.88,1,a-sust-i2,2019-20,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,465,930.0 -31.70666666666667,1,a-sust-i2,2019-20,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,1489,2481.666666666667 --Infinity,1,a-sust-i2,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity --Infinity,1,a-sust-i2,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity +NA,NA,a-sust-i2,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity -8.704,1,a-sust-i2,2019-20,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,522,1044.0 --Infinity,1,a-sust-i2,2019-20,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2019-20,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity 2.416,2.42,a-sust-i2,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,349,349.0 5.072,5,a-sust-i2,2019-20,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,183,183.0 3.232,3.23,a-sust-i2,2019-20,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 -1.04,1,a-sust-i2,2019-20,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,565,565.0 --Infinity,1,a-sust-i2,2019-20,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2019-20,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity -12.992,1,a-sust-i2,2019-20,Beverly - Beverly High,00300505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1312,1312.0 --Infinity,1,a-sust-i2,2019-20,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1442,Infinity --Infinity,1,a-sust-i2,2019-20,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2019-20,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2019-20,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2019-20,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity --Infinity,1,a-sust-i2,2019-20,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2019-20,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1769,Infinity --Infinity,1,a-sust-i2,2019-20,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2019-20,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1442,Infinity +NA,NA,a-sust-i2,2019-20,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2019-20,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2019-20,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2019-20,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2019-20,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2019-20,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1769,Infinity +NA,NA,a-sust-i2,2019-20,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity 2.432,2.43,a-sust-i2,2019-20,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,348,348.0 2.88,2.88,a-sust-i2,2019-20,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,320,320.0 --Infinity,1,a-sust-i2,2019-20,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity --Infinity,1,a-sust-i2,2019-20,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2019-20,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity +NA,NA,a-sust-i2,2019-20,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity 1.2,1.2,a-sust-i2,2019-20,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 1.7828571428571423,1.78,a-sust-i2,2019-20,Billerica - Thomas Ditson,00310005, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,544,388.5714285714286 -11.584,1,a-sust-i2,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1224,1224.0 --Infinity,1,a-sust-i2,2019-20,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2019-20,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity 1.168,1.17,a-sust-i2,2019-20,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,427,427.0 1.456,1.46,a-sust-i2,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 3.744,3.74,a-sust-i2,2019-20,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,266,266.0 --Infinity,1,a-sust-i2,2019-20,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity +NA,NA,a-sust-i2,2019-20,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity 4.288,4.29,a-sust-i2,2019-20,Boston - Another Course To College,00350541, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,232,232.0 --Infinity,1,a-sust-i2,2019-20,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity 3.136,3.14,a-sust-i2,2019-20,Boston - Beethoven,00350021, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 --Infinity,1,a-sust-i2,2019-20,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity -31.536,1,a-sust-i2,2019-20,Boston - Boston Latin,00350560, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,2471,2471.0 -20.368,1,a-sust-i2,2019-20,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1773,1773.0 3.616,3.62,a-sust-i2,2019-20,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,274,274.0 5.1466666666666665,5,a-sust-i2,2019-20,Boston - Brighton High,00350505, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,535,178.33333333333334 --Infinity,1,a-sust-i2,2019-20,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity 1.152,1.15,a-sust-i2,2019-20,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 --Infinity,1,a-sust-i2,2019-20,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity -5.696,1,a-sust-i2,2019-20,Boston - Charlestown High,00350515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,856,856.0 --Infinity,1,a-sust-i2,2019-20,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity 2.24,2.24,a-sust-i2,2019-20,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 --Infinity,1,a-sust-i2,2019-20,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity -7.344,1,a-sust-i2,2019-20,Boston - Curley K-8 School,00350020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,959,959.0 3.936,3.94,a-sust-i2,2019-20,Boston - Curtis Guild,00350062, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,254,254.0 --Infinity,1,a-sust-i2,2019-20,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +NA,NA,a-sust-i2,2019-20,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity -0.288,1,a-sust-i2,2019-20,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,518,518.0 --Infinity,1,a-sust-i2,2019-20,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity 1.52,1.52,a-sust-i2,2019-20,Boston - Donald Mckay,00350080, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,810,405.0 4.944,4.94,a-sust-i2,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,191,191.0 4.608,4.61,a-sust-i2,2019-20,Boston - Dr. William Henderson Lower,00350266, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,212,212.0 --Infinity,1,a-sust-i2,2019-20,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,692,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,692,Infinity +NA,NA,a-sust-i2,2019-20,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity 4.656,4.66,a-sust-i2,2019-20,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,209,209.0 -9.344,1,a-sust-i2,2019-20,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1084,1084.0 -1.568,1,a-sust-i2,2019-20,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,598,598.0 --Infinity,1,a-sust-i2,2019-20,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity 0.192,1,a-sust-i2,2019-20,Boston - Excel High School,00350522, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 --Infinity,1,a-sust-i2,2019-20,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2019-20,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity 4.72,4.72,a-sust-i2,2019-20,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,205,205.0 --Infinity,1,a-sust-i2,2019-20,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity 4.32,4.32,a-sust-i2,2019-20,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 6.784,5,a-sust-i2,2019-20,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,76,76.0 --Infinity,1,a-sust-i2,2019-20,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity -0.304,1,a-sust-i2,2019-20,Boston - Jackson Mann,00350013, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,519,519.0 --Infinity,1,a-sust-i2,2019-20,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2019-20,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2019-20,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2019-20,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2019-20,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2019-20,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity +NA,NA,a-sust-i2,2019-20,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +NA,NA,a-sust-i2,2019-20,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2019-20,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity 4.256,4.26,a-sust-i2,2019-20,Boston - Joseph P Tynan,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,234,234.0 -4.72,1,a-sust-i2,2019-20,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,795,795.0 0.832,1,a-sust-i2,2019-20,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,448,448.0 --Infinity,1,a-sust-i2,2019-20,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2019-20,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity 4.896,4.9,a-sust-i2,2019-20,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,194,194.0 --Infinity,1,a-sust-i2,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity -8.336,1,a-sust-i2,2019-20,Boston - Madison Park High,00350537, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1021,1021.0 --Infinity,1,a-sust-i2,2019-20,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity 2.896,2.9,a-sust-i2,2019-20,Boston - Margarita Muniz Academy,00350549, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,319,319.0 -6.88,1,a-sust-i2,2019-20,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,930,930.0 --Infinity,1,a-sust-i2,2019-20,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity 5.328,5,a-sust-i2,2019-20,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,167,167.0 --Infinity,1,a-sust-i2,2019-20,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2019-20,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2019-20,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity -17.424,1,a-sust-i2,2019-20,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1589,1589.0 --Infinity,1,a-sust-i2,2019-20,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity 1.456,1.46,a-sust-i2,2019-20,Boston - Paul A Dever,00350268, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 --Infinity,1,a-sust-i2,2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity -6.608,1,a-sust-i2,2019-20,Boston - Richard J Murphy,00350240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,913,913.0 --Infinity,1,a-sust-i2,2019-20,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity 4.448,4.45,a-sust-i2,2019-20,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,222,222.0 --Infinity,1,a-sust-i2,2019-20,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2019-20,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +NA,NA,a-sust-i2,2019-20,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity -4.128,1,a-sust-i2,2019-20,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,758,758.0 --Infinity,1,a-sust-i2,2019-20,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity 4.096,4.1,a-sust-i2,2019-20,Boston - Washington Irving Middle,00350445, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,244,244.0 --Infinity,1,a-sust-i2,2019-20,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +NA,NA,a-sust-i2,2019-20,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2019-20,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2019-20,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2019-20,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity 7.845333333333334,5,a-sust-i2,2019-20,Boston - William McKinley,00350363, 0.0, 3.0, 11.0, 5.0, 5.0, 8.0, 1.0, 33.0,319,9.666666666666666 1.088,1.09,a-sust-i2,2019-20,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,432,432.0 --Infinity,1,a-sust-i2,2019-20,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2019-20,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2019-20,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity -10.48,1,a-sust-i2,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,693,1155.0 --Infinity,1,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity 3.04,3.04,a-sust-i2,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,930,310.0 -6.752,1,a-sust-i2,2019-20,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,461,922.0 -7.168,1,a-sust-i2,2019-20,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,474,948.0 -8.352,1,a-sust-i2,2019-20,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,511,1022.0 -6.752,1,a-sust-i2,2019-20,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,461,922.0 -4.92,1,a-sust-i2,2019-20,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,323,807.5 --Infinity,1,a-sust-i2,2019-20,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1828,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2019-20,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1828,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity -4.08,1,a-sust-i2,2019-20,Braintree - East Middle School,00400305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,755,755.0 --Infinity,1,a-sust-i2,2019-20,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2019-20,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity --Infinity,1,a-sust-i2,2019-20,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2019-20,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2019-20,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity +NA,NA,a-sust-i2,2019-20,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2019-20,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity 3.56,3.56,a-sust-i2,2019-20,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,555,277.5 -14.704,1,a-sust-i2,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1419,1419.0 -0.4,1,a-sust-i2,2019-20,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,525,525.0 2.72,2.72,a-sust-i2,2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,330,330.0 3.328,3.33,a-sust-i2,2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0,1168,292.0 2.656,2.66,a-sust-i2,2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,668,334.0 --Infinity,1,a-sust-i2,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity 2.296,2.3,a-sust-i2,2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,713,356.5 3.216,3.22,a-sust-i2,2019-20,Brimfield - Brimfield Elementary,00430005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 --Infinity,1,a-sust-i2,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1305,Infinity +NA,NA,a-sust-i2,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1305,Infinity -3.36,1,a-sust-i2,2019-20,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,568,710.0 4.208,4.21,a-sust-i2,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,237,237.0 4.704,4.7,a-sust-i2,2019-20,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,103,206.0 -122.464,1,a-sust-i2,2019-20,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,4077,8154.0 --Infinity,1,a-sust-i2,2019-20,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2019-20,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity -10.816,1,a-sust-i2,2019-20,Brockton - Downey,00440110, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,588,1176.0 -16.544,1,a-sust-i2,2019-20,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,767,1534.0 -14.208,1,a-sust-i2,2019-20,Brockton - East Middle School,00440405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,694,1388.0 -75.28,1,a-sust-i2,2019-20,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,1041,5205.0 --Infinity,1,a-sust-i2,2019-20,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2019-20,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2019-20,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2019-20,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity -15.2,1,a-sust-i2,2019-20,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,435,1450.0 --Infinity,1,a-sust-i2,2019-20,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity +NA,NA,a-sust-i2,2019-20,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity 5.952,5,a-sust-i2,2019-20,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,64,128.0 -23.62666666666667,1,a-sust-i2,2019-20,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,593,1976.6666666666667 -32.58666666666667,1,a-sust-i2,2019-20,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,761,2536.666666666667 -9.62,1,a-sust-i2,2019-20,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,881,1101.25 --Infinity,1,a-sust-i2,2019-20,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,961,Infinity --Infinity,1,a-sust-i2,2019-20,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2019-20,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,961,Infinity +NA,NA,a-sust-i2,2019-20,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity 4.64,4.64,a-sust-i2,2019-20,Brockton - North Middle School,00440410, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,168,210.0 -5.088,1,a-sust-i2,2019-20,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,818,818.0 -40.16,1,a-sust-i2,2019-20,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,602,3010.0 -47.6,1,a-sust-i2,2019-20,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,695,3475.0 --Infinity,1,a-sust-i2,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1969,Infinity +NA,NA,a-sust-i2,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1969,Infinity -0.18666666666666698,1,a-sust-i2,2019-20,Brookfield - Brookfield Elementary,00450005, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,307,511.6666666666667 --Infinity,1,a-sust-i2,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2083,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2083,Infinity 0.648,1,a-sust-i2,2019-20,Brookline - Coolidge Corner School,00460015, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,919,459.5 --Infinity,1,a-sust-i2,2019-20,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity -6.72,1,a-sust-i2,2019-20,Brookline - Heath,00460025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,552,920.0 --Infinity,1,a-sust-i2,2019-20,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,842,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity --Infinity,1,a-sust-i2,2019-20,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,842,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2019-20,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity -1.2977777777777775,1,a-sust-i2,2019-20,Burlington - Burlington High,00480505, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8,1046,581.1111111111111 0.864,1,a-sust-i2,2019-20,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,446,446.0 -0.544,1,a-sust-i2,2019-20,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,534,534.0 -4.32,1,a-sust-i2,2019-20,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,770,770.0 1.712,1.71,a-sust-i2,2019-20,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,393,393.0 --Infinity,1,a-sust-i2,2019-20,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1977,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2019-20,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2019-20,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity --Infinity,1,a-sust-i2,2019-20,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2019-20,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2019-20,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2019-20,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1977,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2019-20,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2019-20,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity +NA,NA,a-sust-i2,2019-20,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2019-20,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2019-20,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity 6.608,5,a-sust-i2,2019-20,Canton - Rodman Early Childhood Center,00500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,87,87.0 --Infinity,1,a-sust-i2,2019-20,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity +NA,NA,a-sust-i2,2019-20,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity 4.176,4.18,a-sust-i2,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,239,239.0 --Infinity,1,a-sust-i2,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity -1.552,1,a-sust-i2,2019-20,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,597,597.0 -5.024,1,a-sust-i2,2019-20,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,814,814.0 --Infinity,1,a-sust-i2,2019-20,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity --Infinity,1,a-sust-i2,2019-20,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2019-20,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2019-20,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity --Infinity,1,a-sust-i2,2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2019-20,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2019-20,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2019-20,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2019-20,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2019-20,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +NA,NA,a-sust-i2,2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2019-20,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity 0.16,1,a-sust-i2,2019-20,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,490,490.0 0.192,1,a-sust-i2,2019-20,Chelmsford - Center Elementary School,00560005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 0.096,1,a-sust-i2,2019-20,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,494,494.0 -14.592,1,a-sust-i2,2019-20,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1412,1412.0 --Infinity,1,a-sust-i2,2019-20,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity --Infinity,1,a-sust-i2,2019-20,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,166,Infinity --Infinity,1,a-sust-i2,2019-20,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity --Infinity,1,a-sust-i2,2019-20,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2019-20,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2019-20,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,166,Infinity +NA,NA,a-sust-i2,2019-20,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity +NA,NA,a-sust-i2,2019-20,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity -36.864,1,a-sust-i2,2019-20,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1402,2804.0 --Infinity,1,a-sust-i2,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity -3.104,1,a-sust-i2,2019-20,Chelsea - Clark Avenue School,00570050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,694,694.0 --Infinity,1,a-sust-i2,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity --Infinity,1,a-sust-i2,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2019-20,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2019-20,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity --Infinity,1,a-sust-i2,2019-20,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity --Infinity,1,a-sust-i2,2019-20,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity +NA,NA,a-sust-i2,2019-20,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity -2.24,1,a-sust-i2,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,128,640.0 --Infinity,1,a-sust-i2,2019-20,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1183,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,987,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity --Infinity,1,a-sust-i2,2019-20,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2019-20,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,837,Infinity --Infinity,1,a-sust-i2,2019-20,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2019-20,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1183,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,987,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2019-20,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2019-20,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,837,Infinity +NA,NA,a-sust-i2,2019-20,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2019-20,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity 0.496,1,a-sust-i2,2019-20,Cohasset - Cohasset High School,00650505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,469,469.0 --Infinity,1,a-sust-i2,2019-20,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2019-20,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2019-20,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,932,Infinity --Infinity,1,a-sust-i2,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2019-20,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2019-20,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2019-20,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,932,Infinity +NA,NA,a-sust-i2,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity 0.208,1,a-sust-i2,2019-20,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,487,487.0 --Infinity,1,a-sust-i2,2019-20,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2019-20,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2019-20,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1280,Infinity --Infinity,1,a-sust-i2,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2019-20,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2019-20,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2019-20,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1280,Infinity +NA,NA,a-sust-i2,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity 5.872,5,a-sust-i2,2019-20,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 --Infinity,1,a-sust-i2,2019-20,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity --Infinity,1,a-sust-i2,2019-20,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2019-20,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2019-20,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity --Infinity,1,a-sust-i2,2019-20,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2019-20,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2019-20,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2019-20,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity +NA,NA,a-sust-i2,2019-20,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2019-20,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2019-20,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2019-20,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2019-20,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2019-20,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity 5.44,5,a-sust-i2,2019-20,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,160,160.0 -0.312,1,a-sust-i2,2019-20,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1039,519.5 -6.352,1,a-sust-i2,2019-20,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,897,897.0 1.632,1.63,a-sust-i2,2019-20,Dartmouth - George H Potter,00720030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,398,398.0 --Infinity,1,a-sust-i2,2019-20,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2019-20,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2019-20,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2019-20,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2019-20,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2019-20,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity -15.104,1,a-sust-i2,2019-20,Dedham - Dedham High,00730505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,722,1444.0 -2.784,1,a-sust-i2,2019-20,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,674,674.0 --Infinity,1,a-sust-i2,2019-20,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2019-20,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2019-20,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2019-20,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2019-20,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2019-20,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity 1.952,1.95,a-sust-i2,2019-20,Dedham - Riverdale,00730045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,189,378.0 --Infinity,1,a-sust-i2,2019-20,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,937,Infinity --Infinity,1,a-sust-i2,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity --Infinity,1,a-sust-i2,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,771,Infinity --Infinity,1,a-sust-i2,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity --Infinity,1,a-sust-i2,2019-20,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity --Infinity,1,a-sust-i2,2019-20,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2019-20,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,937,Infinity +NA,NA,a-sust-i2,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,771,Infinity +NA,NA,a-sust-i2,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2019-20,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2019-20,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity 2.144,2.14,a-sust-i2,2019-20,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,366,366.0 --Infinity,1,a-sust-i2,2019-20,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2019-20,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2019-20,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2019-20,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2019-20,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2019-20,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity -16.32,1,a-sust-i2,2019-20,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,456,1520.0 -20.064,1,a-sust-i2,2019-20,Dracut - Dracut Senior High,00790505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,877,1754.0 -21.44,1,a-sust-i2,2019-20,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,552,1840.0 -7.093333333333334,1,a-sust-i2,2019-20,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,283,943.3333333333334 -22.986666666666668,1,a-sust-i2,2019-20,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,581,1936.6666666666667 -21.696,1,a-sust-i2,2019-20,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,928,1856.0 --Infinity,1,a-sust-i2,2019-20,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, 0.0,271,Infinity --Infinity,1,a-sust-i2,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2019-20,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, 0.0,271,Infinity +NA,NA,a-sust-i2,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity -2.736,1,a-sust-i2,2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,671,671.0 --Infinity,1,a-sust-i2,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity -21.813333333333336,1,a-sust-i2,2019-20,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,559,1863.3333333333335 1.12,1.12,a-sust-i2,2019-20,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 --Infinity,1,a-sust-i2,2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1048,Infinity +NA,NA,a-sust-i2,2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1048,Infinity 3.08,3.08,a-sust-i2,2019-20,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,615,307.5 -2.192,1,a-sust-i2,2019-20,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,637,637.0 0.152,1,a-sust-i2,2019-20,Duxbury - Duxbury High,00820505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,981,490.5 -3.824,1,a-sust-i2,2019-20,Duxbury - Duxbury Middle,00820305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,739,739.0 --Infinity,1,a-sust-i2,2019-20,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity --Infinity,1,a-sust-i2,2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity --Infinity,1,a-sust-i2,2019-20,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2019-20,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,834,Infinity --Infinity,1,a-sust-i2,2019-20,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2019-20,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2019-20,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2019-20,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2019-20,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2019-20,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2019-20,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2019-20,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity --Infinity,1,a-sust-i2,2019-20,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2019-20,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2019-20,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,877,Infinity --Infinity,1,a-sust-i2,2019-20,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2019-20,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1114,Infinity --Infinity,1,a-sust-i2,2019-20,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2019-20,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2019-20,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2019-20,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity +NA,NA,a-sust-i2,2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity +NA,NA,a-sust-i2,2019-20,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2019-20,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,834,Infinity +NA,NA,a-sust-i2,2019-20,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2019-20,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2019-20,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2019-20,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2019-20,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2019-20,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2019-20,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2019-20,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +NA,NA,a-sust-i2,2019-20,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2019-20,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2019-20,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,877,Infinity +NA,NA,a-sust-i2,2019-20,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2019-20,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1114,Infinity +NA,NA,a-sust-i2,2019-20,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2019-20,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2019-20,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity -2.346666666666668,1,a-sust-i2,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, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,388,646.6666666666667 5.34,5,a-sust-i2,2019-20,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,133,166.25 --Infinity,1,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,1492,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1997,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,913,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,771,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2019-20,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,1492,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1997,Infinity +NA,NA,a-sust-i2,2019-20,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,913,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,771,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2019-20,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity -13.92,1,a-sust-i2,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,1370,1370.0 -4.544,1,a-sust-i2,2019-20,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,392,784.0 --Infinity,1,a-sust-i2,2019-20,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,699,Infinity --Infinity,1,a-sust-i2,2019-20,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2019-20,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,699,Infinity +NA,NA,a-sust-i2,2019-20,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity -7.744,1,a-sust-i2,2019-20,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,492,984.0 -60.704,1,a-sust-i2,2019-20,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2147,4294.0 -3.568,1,a-sust-i2,2019-20,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,723,723.0 --Infinity,1,a-sust-i2,2019-20,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity -4.16,1,a-sust-i2,2019-20,Fall River - James Tansey,00950140, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,304,760.0 --Infinity,1,a-sust-i2,2019-20,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity -12.0,1,a-sust-i2,2019-20,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,625,1250.0 --Infinity,1,a-sust-i2,2019-20,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2019-20,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2019-20,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity -11.386666666666668,1,a-sust-i2,2019-20,Fall River - William S Greene,00950065, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,727,1211.6666666666667 -40.8,1,a-sust-i2,2019-20,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,305,3050.0 -36.90666666666667,1,a-sust-i2,2019-20,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,842,2806.666666666667 @@ -7897,23 +7897,23 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -63.36,1,a-sust-i2,2019-20,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,446,4460.0 -42.88,1,a-sust-i2,2019-20,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,318,3180.0 -35.04,1,a-sust-i2,2019-20,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,269,2690.0 --Infinity,1,a-sust-i2,2019-20,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1221,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity --Infinity,1,a-sust-i2,2019-20,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity --Infinity,1,a-sust-i2,2019-20,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2019-20,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1221,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity +NA,NA,a-sust-i2,2019-20,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2019-20,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity 4.142222222222222,4.14,a-sust-i2,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,217,241.11111111111111 --Infinity,1,a-sust-i2,2019-20,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2019-20,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity --Infinity,1,a-sust-i2,2019-20,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,822,Infinity --Infinity,1,a-sust-i2,2019-20,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2019-20,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1658,Infinity +NA,NA,a-sust-i2,2019-20,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2019-20,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i2,2019-20,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,822,Infinity +NA,NA,a-sust-i2,2019-20,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2019-20,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1658,Infinity -3.04,1,a-sust-i2,2019-20,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,690,690.0 0.48,1,a-sust-i2,2019-20,Framingham - Brophy,01000006, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,470,470.0 -1.6,1,a-sust-i2,2019-20,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,600,600.0 @@ -7928,354 +7928,354 @@ NaN,NaN,a-sust-i2,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.352,1,a-sust-i2,2019-20,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,522,522.0 -4.24,1,a-sust-i2,2019-20,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,765,765.0 -0.688,1,a-sust-i2,2019-20,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 --Infinity,1,a-sust-i2,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity 1.888,1.89,a-sust-i2,2019-20,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,382,382.0 0.736,1,a-sust-i2,2019-20,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,227,454.0 3.56,3.56,a-sust-i2,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,111,277.5 -48.0,1,a-sust-i2,2019-20,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1750,3500.0 --Infinity,1,a-sust-i2,2019-20,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2019-20,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity 0.8,1,a-sust-i2,2019-20,Franklin - Horace Mann,01010405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,450,450.0 --Infinity,1,a-sust-i2,2019-20,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2019-20,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity -1.226666666666668,1,a-sust-i2,2019-20,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,346,576.6666666666667 2.256,2.26,a-sust-i2,2019-20,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,359,359.0 2.48,2.48,a-sust-i2,2019-20,Franklin - Parmenter,01010032, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,345,345.0 1.584,1.58,a-sust-i2,2019-20,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 --Infinity,1,a-sust-i2,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity --Infinity,1,a-sust-i2,2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity --Infinity,1,a-sust-i2,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2019-20,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2019-20,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity --Infinity,1,a-sust-i2,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity --Infinity,1,a-sust-i2,2019-20,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity +NA,NA,a-sust-i2,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity +NA,NA,a-sust-i2,2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2019-20,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2019-20,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2019-20,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity -1.376,1,a-sust-i2,2019-20,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,586,586.0 -5.152,1,a-sust-i2,2019-20,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,411,822.0 --Infinity,1,a-sust-i2,2019-20,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity --Infinity,1,a-sust-i2,2019-20,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2019-20,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2019-20,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2019-20,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity --Infinity,1,a-sust-i2,2019-20,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity --Infinity,1,a-sust-i2,2019-20,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity --Infinity,1,a-sust-i2,2019-20,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2019-20,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2019-20,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2019-20,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2019-20,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +NA,NA,a-sust-i2,2019-20,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2019-20,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2019-20,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2019-20,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +NA,NA,a-sust-i2,2019-20,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2019-20,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +NA,NA,a-sust-i2,2019-20,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2019-20,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2019-20,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2019-20,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity 4.768,4.77,a-sust-i2,2019-20,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,202,202.0 --Infinity,1,a-sust-i2,2019-20,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity --Infinity,1,a-sust-i2,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2019-20,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2019-20,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity +NA,NA,a-sust-i2,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2019-20,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity -2.512,1,a-sust-i2,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,657,657.0 --Infinity,1,a-sust-i2,2019-20,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2019-20,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity 2.224,2.22,a-sust-i2,2019-20,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,361,361.0 -NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -5.952,1,a-sust-i2,2019-20,Grafton - Grafton High School,01100505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,872,872.0 --Infinity,1,a-sust-i2,2019-20,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2019-20,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity --Infinity,1,a-sust-i2,2019-20,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2019-20,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2019-20,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2019-20,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2019-20,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1433,Infinity --Infinity,1,a-sust-i2,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1591,Infinity --Infinity,1,a-sust-i2,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2271,Infinity +NA,NA,a-sust-i2,2019-20,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2019-20,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity +NA,NA,a-sust-i2,2019-20,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2019-20,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2019-20,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2019-20,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2019-20,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1433,Infinity +NA,NA,a-sust-i2,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1591,Infinity +NA,NA,a-sust-i2,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2271,Infinity -25.984,1,a-sust-i2,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,2124,2124.0 -5.6,1,a-sust-i2,2019-20,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,255,850.0 -4.64,1,a-sust-i2,2019-20,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,237,790.0 0.256,1,a-sust-i2,2019-20,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,484,484.0 1.904,1.9,a-sust-i2,2019-20,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 -4.8,1,a-sust-i2,2019-20,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,240,800.0 --Infinity,1,a-sust-i2,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity --Infinity,1,a-sust-i2,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity --Infinity,1,a-sust-i2,2019-20,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity --Infinity,1,a-sust-i2,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity --Infinity,1,a-sust-i2,2019-20,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2019-20,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2019-20,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i2,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2019-20,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity +NA,NA,a-sust-i2,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity +NA,NA,a-sust-i2,2019-20,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2019-20,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2019-20,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity -1.376,1,a-sust-i2,2019-20,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 --Infinity,1,a-sust-i2,2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2019-20,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity --Infinity,1,a-sust-i2,2019-20,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2019-20,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2019-20,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2019-20,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2019-20,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity -3.584,1,a-sust-i2,2019-20,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,362,724.0 --Infinity,1,a-sust-i2,2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1053,Infinity --Infinity,1,a-sust-i2,2019-20,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity +NA,NA,a-sust-i2,2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1053,Infinity +NA,NA,a-sust-i2,2019-20,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity -3.744,1,a-sust-i2,2019-20,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,734,734.0 --Infinity,1,a-sust-i2,2019-20,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2019-20,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity 0.352,1,a-sust-i2,2019-20,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,478,478.0 --Infinity,1,a-sust-i2,2019-20,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2019-20,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,769,Infinity --Infinity,1,a-sust-i2,2019-20,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2019-20,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2019-20,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,769,Infinity +NA,NA,a-sust-i2,2019-20,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity -1.904,1,a-sust-i2,2019-20,Harvard - Bromfield,01250505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,619,619.0 --Infinity,1,a-sust-i2,2019-20,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2019-20,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2019-20,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1163,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1832,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity +NA,NA,a-sust-i2,2019-20,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2019-20,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2019-20,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1163,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1832,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity 1.456,1.46,a-sust-i2,2019-20,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 --Infinity,1,a-sust-i2,2019-20,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity --Infinity,1,a-sust-i2,2019-20,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity --Infinity,1,a-sust-i2,2019-20,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity --Infinity,1,a-sust-i2,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity --Infinity,1,a-sust-i2,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2019-20,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2019-20,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1302,Infinity --Infinity,1,a-sust-i2,2019-20,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,999,Infinity --Infinity,1,a-sust-i2,2019-20,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2019-20,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2019-20,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity +NA,NA,a-sust-i2,2019-20,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2019-20,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity +NA,NA,a-sust-i2,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2019-20,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2019-20,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1302,Infinity +NA,NA,a-sust-i2,2019-20,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,999,Infinity +NA,NA,a-sust-i2,2019-20,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2019-20,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2019-20,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity -12.16,1,a-sust-i2,2019-20,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,630,1260.0 -13.728,1,a-sust-i2,2019-20,Holbrook - John F Kennedy,01330018, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,679,1358.0 3.36,3.36,a-sust-i2,2019-20,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,232,290.0 --Infinity,1,a-sust-i2,2019-20,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity +NA,NA,a-sust-i2,2019-20,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity -14.048,1,a-sust-i2,2019-20,Holliston - Miller School,01360007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,689,1378.0 --Infinity,1,a-sust-i2,2019-20,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity +NA,NA,a-sust-i2,2019-20,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity -14.144,1,a-sust-i2,2019-20,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,692,1384.0 1.008,1.01,a-sust-i2,2019-20,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,437,437.0 --Infinity,1,a-sust-i2,2019-20,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1517,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2019-20,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2019-20,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,701,Infinity --Infinity,1,a-sust-i2,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity --Infinity,1,a-sust-i2,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1517,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2019-20,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2019-20,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,701,Infinity +NA,NA,a-sust-i2,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity -8.64,1,a-sust-i2,2019-20,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,520,1040.0 --Infinity,1,a-sust-i2,2019-20,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2019-20,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity -81.12,1,a-sust-i2,2019-20,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,557,5570.0 -84.0,1,a-sust-i2,2019-20,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,575,5750.0 -90.32,1,a-sust-i2,2019-20,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,1229,6145.0 -129.28,1,a-sust-i2,2019-20,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,858,8580.0 -4.8,1,a-sust-i2,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,80,800.0 -82.08,1,a-sust-i2,2019-20,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,563,5630.0 --Infinity,1,a-sust-i2,2019-20,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2019-20,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity +NA,NA,a-sust-i2,2019-20,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2019-20,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity 2.256,2.26,a-sust-i2,2019-20,Hudson - Forest Avenue Elementary,01410015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 --Infinity,1,a-sust-i2,2019-20,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,898,Infinity --Infinity,1,a-sust-i2,2019-20,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2019-20,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2019-20,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2019-20,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity --Infinity,1,a-sust-i2,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity +NA,NA,a-sust-i2,2019-20,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,898,Infinity +NA,NA,a-sust-i2,2019-20,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2019-20,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2019-20,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2019-20,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +NA,NA,a-sust-i2,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity -9.504,1,a-sust-i2,2019-20,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,547,1094.0 -7.96,1,a-sust-i2,2019-20,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,399,997.5 -3.712,1,a-sust-i2,2019-20,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,366,732.0 -3.744,1,a-sust-i2,2019-20,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,367,734.0 --Infinity,1,a-sust-i2,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1602,Infinity --Infinity,1,a-sust-i2,2019-20,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity --Infinity,1,a-sust-i2,2019-20,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1244,Infinity +NA,NA,a-sust-i2,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1602,Infinity +NA,NA,a-sust-i2,2019-20,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity +NA,NA,a-sust-i2,2019-20,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1244,Infinity 0.704,1,a-sust-i2,2019-20,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,456,456.0 -1.744,1,a-sust-i2,2019-20,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,609,609.0 --Infinity,1,a-sust-i2,2019-20,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity -23.413333333333334,1,a-sust-i2,2019-20,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,589,1963.3333333333335 --Infinity,1,a-sust-i2,2019-20,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity -45.136,1,a-sust-i2,2019-20,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,3321,3321.0 -7.424,1,a-sust-i2,2019-20,Lawrence - Oliver Partnership School,01490048, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,482,964.0 --Infinity,1,a-sust-i2,2019-20,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity --Infinity,1,a-sust-i2,2019-20,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity 3.184,3.18,a-sust-i2,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 2.816,2.82,a-sust-i2,2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 --Infinity,1,a-sust-i2,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2019-20,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2019-20,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2019-20,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2019-20,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity 2.3885714285714283,2.39,a-sust-i2,2019-20,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 1.4,491,350.7142857142857 0.464,1,a-sust-i2,2019-20,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,471,471.0 5.6,5,a-sust-i2,2019-20,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,60,150.0 2.264615384615385,2.26,a-sust-i2,2019-20,Leicester - Leicester Middle,01510015, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,466,358.46153846153845 --Infinity,1,a-sust-i2,2019-20,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2019-20,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,43,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1112,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2019-20,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,896,Infinity --Infinity,1,a-sust-i2,2019-20,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2275,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2019-20,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,902,Infinity --Infinity,1,a-sust-i2,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2019-20,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2019-20,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2019-20,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,43,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1112,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2019-20,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,896,Infinity +NA,NA,a-sust-i2,2019-20,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2275,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2019-20,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,902,Infinity +NA,NA,a-sust-i2,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2019-20,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2019-20,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity -21.066666666666666,1,a-sust-i2,2019-20,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,545,1816.6666666666667 -4.096,1,a-sust-i2,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1512,756.0 0.96,1,a-sust-i2,2019-20,Littleton - Littleton High School,01580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,440,440.0 1.76,1.76,a-sust-i2,2019-20,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 1.792,1.79,a-sust-i2,2019-20,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 --Infinity,1,a-sust-i2,2019-20,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2019-20,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2019-20,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2019-20,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2019-20,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,942,Infinity --Infinity,1,a-sust-i2,2019-20,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2019-20,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3011,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,821,Infinity --Infinity,1,a-sust-i2,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity --Infinity,1,a-sust-i2,2019-20,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2019-20,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2019-20,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,868,Infinity --Infinity,1,a-sust-i2,2019-20,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2019-20,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +NA,NA,a-sust-i2,2019-20,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2019-20,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2019-20,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2019-20,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2019-20,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,942,Infinity +NA,NA,a-sust-i2,2019-20,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2019-20,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3011,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2019-20,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,821,Infinity +NA,NA,a-sust-i2,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2019-20,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2019-20,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2019-20,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,868,Infinity +NA,NA,a-sust-i2,2019-20,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2019-20,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity -16.10666666666667,1,a-sust-i2,2019-20,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,452,1506.6666666666667 -13.653333333333336,1,a-sust-i2,2019-20,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,406,1353.3333333333335 --Infinity,1,a-sust-i2,2019-20,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1355,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1783,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1966,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1451,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1330,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2019-20,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2019-20,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1355,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1783,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1966,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1451,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1330,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2019-20,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity -6.784,1,a-sust-i2,2019-20,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,462,924.0 -24.26666666666667,1,a-sust-i2,2019-20,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,605,2016.6666666666667 -5.74,1,a-sust-i2,2019-20,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.0, 0.8,687,858.75 --Infinity,1,a-sust-i2,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i2,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity -5.056,1,a-sust-i2,2019-20,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,408,816.0 --Infinity,1,a-sust-i2,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1223,Infinity --Infinity,1,a-sust-i2,2019-20,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, 0.0, 0.0,99,Infinity --Infinity,1,a-sust-i2,2019-20,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity --Infinity,1,a-sust-i2,2019-20,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,927,Infinity --Infinity,1,a-sust-i2,2019-20,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity --Infinity,1,a-sust-i2,2019-20,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity --Infinity,1,a-sust-i2,2019-20,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2019-20,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1773,Infinity --Infinity,1,a-sust-i2,2019-20,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1123,Infinity --Infinity,1,a-sust-i2,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1223,Infinity +NA,NA,a-sust-i2,2019-20,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, 0.0, 0.0,99,Infinity +NA,NA,a-sust-i2,2019-20,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity +NA,NA,a-sust-i2,2019-20,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,927,Infinity +NA,NA,a-sust-i2,2019-20,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2019-20,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity +NA,NA,a-sust-i2,2019-20,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2019-20,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1773,Infinity +NA,NA,a-sust-i2,2019-20,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1123,Infinity +NA,NA,a-sust-i2,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity -2.688,1,a-sust-i2,2019-20,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,668,668.0 -5.632,1,a-sust-i2,2019-20,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,852,852.0 --Infinity,1,a-sust-i2,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2019-20,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1240,Infinity --Infinity,1,a-sust-i2,2019-20,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity --Infinity,1,a-sust-i2,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity --Infinity,1,a-sust-i2,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2019-20,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1240,Infinity +NA,NA,a-sust-i2,2019-20,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity +NA,NA,a-sust-i2,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity 1.856,1.86,a-sust-i2,2019-20,Marblehead - Glover,01680020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,384,384.0 --Infinity,1,a-sust-i2,2019-20,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2019-20,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity -0.016,1,a-sust-i2,2019-20,Marblehead - Marblehead High,01680505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1002,501.0 --Infinity,1,a-sust-i2,2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2019-20,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2019-20,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity -0.66,1,a-sust-i2,2019-20,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,433,541.25 --Infinity,1,a-sust-i2,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1478,Infinity --Infinity,1,a-sust-i2,2019-20,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,811,Infinity --Infinity,1,a-sust-i2,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2019-20,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2019-20,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity --Infinity,1,a-sust-i2,2019-20,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1478,Infinity +NA,NA,a-sust-i2,2019-20,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,811,Infinity +NA,NA,a-sust-i2,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2019-20,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2019-20,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity +NA,NA,a-sust-i2,2019-20,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity 2.064,2.06,a-sust-i2,2019-20,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,371,371.0 4.336,4.34,a-sust-i2,2019-20,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,229,229.0 -6.464,1,a-sust-i2,2019-20,Marshfield - Furnace Brook Middle,01710310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,904,904.0 @@ -8283,111 +8283,111 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -12.912,1,a-sust-i2,2019-20,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1307,1307.0 0.528,1,a-sust-i2,2019-20,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,467,467.0 3.104,3.1,a-sust-i2,2019-20,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,306,306.0 --Infinity,1,a-sust-i2,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity --Infinity,1,a-sust-i2,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2019-20,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1144,Infinity --Infinity,1,a-sust-i2,2019-20,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity --Infinity,1,a-sust-i2,2019-20,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2019-20,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2019-20,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2019-20,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2019-20,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2019-20,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +NA,NA,a-sust-i2,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2019-20,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1144,Infinity +NA,NA,a-sust-i2,2019-20,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity +NA,NA,a-sust-i2,2019-20,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2019-20,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2019-20,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2019-20,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2019-20,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2019-20,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity 0.544,1,a-sust-i2,2019-20,Maynard - Fowler School,01740305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,466,466.0 -6.784,1,a-sust-i2,2019-20,Maynard - Green Meadow,01740010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,462,924.0 4.405333333333334,4.41,a-sust-i2,2019-20,Maynard - Maynard High,01740505, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,337,224.66666666666666 --Infinity,1,a-sust-i2,2019-20,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2019-20,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity --Infinity,1,a-sust-i2,2019-20,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2019-20,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2019-20,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2019-20,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity +NA,NA,a-sust-i2,2019-20,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2019-20,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity -1.2,1,a-sust-i2,2019-20,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,575,575.0 -8.416,1,a-sust-i2,2019-20,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,513,1026.0 -4.064,1,a-sust-i2,2019-20,Medford - Christopher Columbus,01760140, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,377,754.0 --Infinity,1,a-sust-i2,2019-20,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2019-20,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity -18.506666666666668,1,a-sust-i2,2019-20,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,497,1656.6666666666667 -6.528,1,a-sust-i2,2019-20,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,454,908.0 -6.944,1,a-sust-i2,2019-20,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,467,934.0 -34.08,1,a-sust-i2,2019-20,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1315,2630.0 -22.186666666666667,1,a-sust-i2,2019-20,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,566,1886.6666666666667 --Infinity,1,a-sust-i2,2019-20,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity --Infinity,1,a-sust-i2,2019-20,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2019-20,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2019-20,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity -2.928,1,a-sust-i2,2019-20,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,683,683.0 -2.944,1,a-sust-i2,2019-20,Medway - Medway Middle,01770305, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,684,684.0 --Infinity,1,a-sust-i2,2019-20,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2019-20,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2019-20,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2019-20,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2019-20,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,986,Infinity --Infinity,1,a-sust-i2,2019-20,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity --Infinity,1,a-sust-i2,2019-20,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2019-20,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2019-20,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2019-20,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2019-20,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity --Infinity,1,a-sust-i2,2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity --Infinity,1,a-sust-i2,2019-20,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1072,Infinity --Infinity,1,a-sust-i2,2019-20,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1286,Infinity --Infinity,1,a-sust-i2,2019-20,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1173,Infinity --Infinity,1,a-sust-i2,2019-20,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1964,Infinity --Infinity,1,a-sust-i2,2019-20,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1356,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,986,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2019-20,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2019-20,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2019-20,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2019-20,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity +NA,NA,a-sust-i2,2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity +NA,NA,a-sust-i2,2019-20,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1072,Infinity +NA,NA,a-sust-i2,2019-20,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1286,Infinity +NA,NA,a-sust-i2,2019-20,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1173,Infinity +NA,NA,a-sust-i2,2019-20,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1964,Infinity +NA,NA,a-sust-i2,2019-20,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1356,Infinity -0.592,1,a-sust-i2,2019-20,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,537,537.0 -4.528,1,a-sust-i2,2019-20,Middleborough - John T. Nichols Middle,01820305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,783,783.0 -10.528,1,a-sust-i2,2019-20,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,579,1158.0 3.488,3.49,a-sust-i2,2019-20,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,282,282.0 --Infinity,1,a-sust-i2,2019-20,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2019-20,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2019-20,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2019-20,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2019-20,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2019-20,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1266,Infinity --Infinity,1,a-sust-i2,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2019-20,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1019,Infinity --Infinity,1,a-sust-i2,2019-20,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1005,Infinity --Infinity,1,a-sust-i2,2019-20,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2019-20,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,745,Infinity --Infinity,1,a-sust-i2,2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2019-20,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity --Infinity,1,a-sust-i2,2019-20,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2019-20,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2019-20,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,979,Infinity --Infinity,1,a-sust-i2,2019-20,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2019-20,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity --Infinity,1,a-sust-i2,2019-20,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity --Infinity,1,a-sust-i2,2019-20,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1070,Infinity --Infinity,1,a-sust-i2,2019-20,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2019-20,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2019-20,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2019-20,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2019-20,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2019-20,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2019-20,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1266,Infinity +NA,NA,a-sust-i2,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2019-20,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1019,Infinity +NA,NA,a-sust-i2,2019-20,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1005,Infinity +NA,NA,a-sust-i2,2019-20,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2019-20,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,745,Infinity +NA,NA,a-sust-i2,2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2019-20,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity +NA,NA,a-sust-i2,2019-20,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2019-20,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2019-20,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,979,Infinity +NA,NA,a-sust-i2,2019-20,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2019-20,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2019-20,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2019-20,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1070,Infinity +NA,NA,a-sust-i2,2019-20,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity -1.568,1,a-sust-i2,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0,598,598.0 --Infinity,1,a-sust-i2,2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2019-20,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity --Infinity,1,a-sust-i2,2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2019-20,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity --Infinity,1,a-sust-i2,2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2019-20,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i2,2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2019-20,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +NA,NA,a-sust-i2,2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity -0.832,1,a-sust-i2,2019-20,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,552,552.0 -9.04,1,a-sust-i2,2019-20,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,639,1065.0 --Infinity,1,a-sust-i2,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2019-20,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2019-20,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2019-20,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +NA,NA,a-sust-i2,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2019-20,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2019-20,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2019-20,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity -14.88,1,a-sust-i2,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1430,1430.0 --Infinity,1,a-sust-i2,2019-20,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2019-20,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity -0.848,1,a-sust-i2,2019-20,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 --Infinity,1,a-sust-i2,2019-20,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1604,Infinity --Infinity,1,a-sust-i2,2019-20,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i2,2019-20,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2019-20,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2019-20,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2019-20,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2019-20,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2019-20,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2019-20,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2019-20,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity --Infinity,1,a-sust-i2,2019-20,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity --Infinity,1,a-sust-i2,2019-20,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity --Infinity,1,a-sust-i2,2019-20,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2019-20,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2019-20,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1604,Infinity +NA,NA,a-sust-i2,2019-20,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2019-20,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2019-20,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2019-20,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2019-20,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2019-20,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2019-20,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2019-20,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2019-20,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2019-20,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2019-20,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity +NA,NA,a-sust-i2,2019-20,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2019-20,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity 0.48,1,a-sust-i2,2019-20,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,470,470.0 --Infinity,1,a-sust-i2,2019-20,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,921,Infinity +NA,NA,a-sust-i2,2019-20,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,921,Infinity -3.344,1,a-sust-i2,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,709,709.0 -9.6,1,a-sust-i2,2019-20,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,550,1100.0 0.176,1,a-sust-i2,2019-20,Natick - Brown,01980010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,489,489.0 @@ -8397,77 +8397,77 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -4.896,1,a-sust-i2,2019-20,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,403,806.0 -20.192,1,a-sust-i2,2019-20,Natick - Natick High,01980505, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,1762,1762.0 -28.56,1,a-sust-i2,2019-20,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,914,2285.0 --Infinity,1,a-sust-i2,2019-20,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,900,Infinity --Infinity,1,a-sust-i2,2019-20,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2019-20,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,900,Infinity +NA,NA,a-sust-i2,2019-20,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity -9.536,1,a-sust-i2,2019-20,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,548,1096.0 --Infinity,1,a-sust-i2,2019-20,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2019-20,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity -8.48,1,a-sust-i2,2019-20,Needham - John Eliot,01990020, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,412,1030.0 --Infinity,1,a-sust-i2,2019-20,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1658,Infinity +NA,NA,a-sust-i2,2019-20,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1658,Infinity -10.56,1,a-sust-i2,2019-20,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,696,1160.0 --Infinity,1,a-sust-i2,2019-20,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +NA,NA,a-sust-i2,2019-20,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity -8.576,1,a-sust-i2,2019-20,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,518,1036.0 -7.488,1,a-sust-i2,2019-20,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,484,968.0 -3.248,1,a-sust-i2,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,703,703.0 --Infinity,1,a-sust-i2,2019-20,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,710,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,710,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity -2.624,1,a-sust-i2,2019-20,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,664,664.0 --Infinity,1,a-sust-i2,2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,168,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2401,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1198,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity --Infinity,1,a-sust-i2,2019-20,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,168,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2401,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1198,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,740,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2019-20,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity 5.68,5,a-sust-i2,2019-20,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,145,145.0 3.28,3.28,a-sust-i2,2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,295,295.0 -2.112,1,a-sust-i2,2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,632,632.0 -4.752,1,a-sust-i2,2019-20,Newburyport - Newburyport High,02040505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,797,797.0 -0.608,1,a-sust-i2,2019-20,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,538,538.0 --Infinity,1,a-sust-i2,2019-20,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2019-20,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2019-20,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity -16.896,1,a-sust-i2,2019-20,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,778,1556.0 --Infinity,1,a-sust-i2,2019-20,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,997,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2088,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1983,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2019-20,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,997,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2019-20,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2088,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1983,Infinity -2.112,1,a-sust-i2,2019-20,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,632,632.0 -3.36,1,a-sust-i2,2019-20,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,284,710.0 --Infinity,1,a-sust-i2,2019-20,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2019-20,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2019-20,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity -5.888,1,a-sust-i2,2019-20,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,434,868.0 --Infinity,1,a-sust-i2,2019-20,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity --Infinity,1,a-sust-i2,2019-20,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity --Infinity,1,a-sust-i2,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity --Infinity,1,a-sust-i2,2019-20,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2019-20,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2019-20,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2019-20,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2019-20,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2019-20,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2019-20,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2019-20,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2019-20,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity -6.304,1,a-sust-i2,2019-20,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,447,894.0 -29.6,1,a-sust-i2,2019-20,North Andover - Annie L Sargent School,02110018, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,470,2350.0 -19.52,1,a-sust-i2,2019-20,North Andover - Atkinson,02110001, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,344,1720.0 @@ -8476,311 +8476,311 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -14.032,1,a-sust-i2,2019-20,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1377,1377.0 -9.744,1,a-sust-i2,2019-20,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1109,1109.0 -17.6,1,a-sust-i2,2019-20,North Andover - Thomson,02110020, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,320,1600.0 --Infinity,1,a-sust-i2,2019-20,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2019-20,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity 3.312,3.31,a-sust-i2,2019-20,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 --Infinity,1,a-sust-i2,2019-20,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2019-20,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1106,Infinity --Infinity,1,a-sust-i2,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2019-20,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1100,Infinity --Infinity,1,a-sust-i2,2019-20,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2019-20,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2019-20,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2019-20,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity --Infinity,1,a-sust-i2,2019-20,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2019-20,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2019-20,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity --Infinity,1,a-sust-i2,2019-20,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity --Infinity,1,a-sust-i2,2019-20,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2019-20,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2019-20,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1106,Infinity +NA,NA,a-sust-i2,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2019-20,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1100,Infinity +NA,NA,a-sust-i2,2019-20,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2019-20,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2019-20,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2019-20,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,165,Infinity +NA,NA,a-sust-i2,2019-20,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2019-20,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2019-20,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +NA,NA,a-sust-i2,2019-20,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2019-20,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity -2.848,1,a-sust-i2,2019-20,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,339,678.0 -2.816,1,a-sust-i2,2019-20,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,338,676.0 --Infinity,1,a-sust-i2,2019-20,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2019-20,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity -3.84,1,a-sust-i2,2019-20,North Reading - North Reading High,02170505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,740,740.0 -0.576,1,a-sust-i2,2019-20,North Reading - North Reading Middle,02170305, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,536,536.0 --Infinity,1,a-sust-i2,2019-20,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2019-20,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2019-20,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity +NA,NA,a-sust-i2,2019-20,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2019-20,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2019-20,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity 2.8,2.8,a-sust-i2,2019-20,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,325,325.0 -6.048,1,a-sust-i2,2019-20,Northampton - Northampton High,02100505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,878,878.0 --Infinity,1,a-sust-i2,2019-20,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2019-20,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity 0.064,1,a-sust-i2,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,496,496.0 --Infinity,1,a-sust-i2,2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1390,Infinity --Infinity,1,a-sust-i2,2019-20,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1390,Infinity +NA,NA,a-sust-i2,2019-20,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity 3.84,3.84,a-sust-i2,2019-20,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,260,260.0 3.696,3.7,a-sust-i2,2019-20,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 4.064,4.06,a-sust-i2,2019-20,Northborough - Marion E Zeh,02130020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,246,246.0 -0.752,1,a-sust-i2,2019-20,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,547,547.0 -20.8,1,a-sust-i2,2019-20,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,360,1800.0 -9.152,1,a-sust-i2,2019-20,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,536,1072.0 --Infinity,1,a-sust-i2,2019-20,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2019-20,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity -14.773333333333335,1,a-sust-i2,2019-20,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,427,1423.3333333333335 -12.4,1,a-sust-i2,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1275,1275.0 --Infinity,1,a-sust-i2,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2019-20,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2019-20,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2019-20,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2019-20,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity --Infinity,1,a-sust-i2,2019-20,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2019-20,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2019-20,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity --Infinity,1,a-sust-i2,2019-20,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2019-20,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2019-20,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,993,Infinity --Infinity,1,a-sust-i2,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity --Infinity,1,a-sust-i2,2019-20,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity --Infinity,1,a-sust-i2,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2019-20,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2019-20,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2019-20,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2019-20,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2019-20,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2019-20,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2019-20,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity +NA,NA,a-sust-i2,2019-20,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2019-20,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2019-20,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity +NA,NA,a-sust-i2,2019-20,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2019-20,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2019-20,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,993,Infinity +NA,NA,a-sust-i2,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity +NA,NA,a-sust-i2,2019-20,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +NA,NA,a-sust-i2,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2019-20,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2019-20,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2019-20,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity 6.72,5,a-sust-i2,2019-20,Oxford - ACE Program,02260305, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,8,80.0 -5.866666666666668,1,a-sust-i2,2019-20,Oxford - Alfred M Chaffee,02260010, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,260,866.6666666666667 -12.213333333333336,1,a-sust-i2,2019-20,Oxford - Clara Barton,02260005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,379,1263.3333333333335 -1.5644444444444434,1,a-sust-i2,2019-20,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,538,597.7777777777777 -12.64,1,a-sust-i2,2019-20,Oxford - Oxford Middle,02260405, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,387,1290.0 --Infinity,1,a-sust-i2,2019-20,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2019-20,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity --Infinity,1,a-sust-i2,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity --Infinity,1,a-sust-i2,2019-20,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.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1463,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1455,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2019-20,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2019-20,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2019-20,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2019-20,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2019-20,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity --Infinity,1,a-sust-i2,2019-20,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2019-20,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2019-20,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2019-20,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity +NA,NA,a-sust-i2,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity +NA,NA,a-sust-i2,2019-20,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.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1463,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1455,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2019-20,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2019-20,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2019-20,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2019-20,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2019-20,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +NA,NA,a-sust-i2,2019-20,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2019-20,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity 0.928,1,a-sust-i2,2019-20,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,221,442.0 -2.368,1,a-sust-i2,2019-20,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,324,648.0 0.224,1,a-sust-i2,2019-20,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,486,486.0 0.672,1,a-sust-i2,2019-20,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,229,458.0 1.712,1.71,a-sust-i2,2019-20,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,393,393.0 -3.888,1,a-sust-i2,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,743,743.0 --Infinity,1,a-sust-i2,2019-20,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity --Infinity,1,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity --Infinity,1,a-sust-i2,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2019-20,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2019-20,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i2,2019-20,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2019-20,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, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i2,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2019-20,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2019-20,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity -9.28,1,a-sust-i2,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,540,1080.0 -4.672,1,a-sust-i2,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,396,792.0 --Infinity,1,a-sust-i2,2019-20,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2019-20,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2019-20,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2019-20,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2019-20,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,755,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2019-20,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2019-20,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2019-20,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2019-20,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity 2.256,2.26,a-sust-i2,2019-20,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 5.216,5,a-sust-i2,2019-20,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,174,174.0 -0.784,1,a-sust-i2,2019-20,Plymouth - Indian Brook,02390012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,549,549.0 3.616,3.62,a-sust-i2,2019-20,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 3.432,3.43,a-sust-i2,2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,571,285.5 -2.37,1,a-sust-i2,2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 1.6,1037,648.125 --Infinity,1,a-sust-i2,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity -4.52,1,a-sust-i2,2019-20,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,1252,782.5 -8.768,1,a-sust-i2,2019-20,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1048,1048.0 -3.184,1,a-sust-i2,2019-20,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,699,699.0 3.84,3.84,a-sust-i2,2019-20,Plymouth - South Elementary,02390046, 0.0, 0.0, 2.0, 0.0, 0.4, 0.0, 0.0, 2.4,624,260.0 2.432,2.43,a-sust-i2,2019-20,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 4.48,4.48,a-sust-i2,2019-20,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,220,220.0 --Infinity,1,a-sust-i2,2019-20,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, 0.0,1106,Infinity +NA,NA,a-sust-i2,2019-20,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, 0.0,1106,Infinity 4.506666666666666,4.51,a-sust-i2,2019-20,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,131,218.33333333333334 --Infinity,1,a-sust-i2,2019-20,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2019-20,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2019-20,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2019-20,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2019-20,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2019-20,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2019-20,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2019-20,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity -1.936,1,a-sust-i2,2019-20,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,621,621.0 --Infinity,1,a-sust-i2,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2019-20,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity --Infinity,1,a-sust-i2,2019-20,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2019-20,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity +NA,NA,a-sust-i2,2019-20,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity -6.64,1,a-sust-i2,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,183,915.0 -3.12,1,a-sust-i2,2019-20,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,278,695.0 -22.24,1,a-sust-i2,2019-20,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.3,567,1890.0 -20.48,1,a-sust-i2,2019-20,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,356,1780.0 -10.773333333333335,1,a-sust-i2,2019-20,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,352,1173.3333333333335 --Infinity,1,a-sust-i2,2019-20,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity +NA,NA,a-sust-i2,2019-20,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity -9.92,1,a-sust-i2,2019-20,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,336,1120.0 -21.013333333333335,1,a-sust-i2,2019-20,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,544,1813.3333333333335 --Infinity,1,a-sust-i2,2019-20,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2019-20,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity -20.42666666666667,1,a-sust-i2,2019-20,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,533,1776.6666666666667 -19.92,1,a-sust-i2,2019-20,Quincy - Merrymount,02430060, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,349,1745.0 -27.28,1,a-sust-i2,2019-20,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,441,2205.0 -32.448,1,a-sust-i2,2019-20,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1264,2528.0 -14.826666666666668,1,a-sust-i2,2019-20,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,428,1426.6666666666667 --Infinity,1,a-sust-i2,2019-20,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1543,Infinity +NA,NA,a-sust-i2,2019-20,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1543,Infinity -4.928,1,a-sust-i2,2019-20,Quincy - Snug Harbor Community School,02430090, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,404,808.0 -23.36,1,a-sust-i2,2019-20,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,392,1960.0 -11.36,1,a-sust-i2,2019-20,Quincy - Squantum,02430095, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,363,1210.0 -3.008,1,a-sust-i2,2019-20,Quincy - Wollaston School,02430110, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,344,688.0 -12.096,1,a-sust-i2,2019-20,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,628,1256.0 --Infinity,1,a-sust-i2,2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2019-20,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2019-20,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2019-20,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2019-20,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2019-20,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2019-20,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2019-20,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2019-20,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2019-20,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2019-20,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity 1.84,1.84,a-sust-i2,2019-20,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,385,385.0 4.608,4.61,a-sust-i2,2019-20,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,424,212.0 1.856,1.86,a-sust-i2,2019-20,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,384,384.0 1.36,1.36,a-sust-i2,2019-20,Reading - J Warren Killam,02460017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 1.536,1.54,a-sust-i2,2019-20,Reading - Joshua Eaton,02460010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 --Infinity,1,a-sust-i2,2019-20,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2019-20,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity -0.2,1,a-sust-i2,2019-20,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.8, 1.6, 0.0, 0.0, 2.4,1230,512.5 4.0,4.0,a-sust-i2,2019-20,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,500,250.0 3.136,3.14,a-sust-i2,2019-20,Reading - Wood End Elementary School,02460020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 --Infinity,1,a-sust-i2,2019-20,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,729,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2019,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity --Infinity,1,a-sust-i2,2019-20,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity --Infinity,1,a-sust-i2,2019-20,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2019-20,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2019-20,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2019-20,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,729,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2019,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity +NA,NA,a-sust-i2,2019-20,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +NA,NA,a-sust-i2,2019-20,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2019-20,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2019-20,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity -15.456,1,a-sust-i2,2019-20,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,733,1466.0 --Infinity,1,a-sust-i2,2019-20,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2019-20,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity -2.272,1,a-sust-i2,2019-20,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,321,642.0 --Infinity,1,a-sust-i2,2019-20,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2019-20,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity 2.0,2.0,a-sust-i2,2019-20,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 --Infinity,1,a-sust-i2,2019-20,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2019-20,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +NA,NA,a-sust-i2,2019-20,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2019-20,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity 2.16,2.16,a-sust-i2,2019-20,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,73,365.0 --Infinity,1,a-sust-i2,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1568,Infinity --Infinity,1,a-sust-i2,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1574,Infinity --Infinity,1,a-sust-i2,2019-20,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2019-20,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2019-20,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2019-20,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1568,Infinity +NA,NA,a-sust-i2,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1574,Infinity +NA,NA,a-sust-i2,2019-20,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2019-20,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2019-20,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2019-20,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity 5.386666666666666,5,a-sust-i2,2019-20,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,49,163.33333333333334 --Infinity,1,a-sust-i2,2019-20,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2019-20,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity --Infinity,1,a-sust-i2,2019-20,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19,Infinity +NA,NA,a-sust-i2,2019-20,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2019-20,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity +NA,NA,a-sust-i2,2019-20,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19,Infinity -5.12,1,a-sust-i2,2019-20,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,410,820.0 -0.656,1,a-sust-i2,2019-20,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,541,541.0 --Infinity,1,a-sust-i2,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2019-20,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2019-20,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity -4.24,1,a-sust-i2,2019-20,Sandwich - Oak Ridge,02610025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,765,765.0 -13.056,1,a-sust-i2,2019-20,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,658,1316.0 -6.336,1,a-sust-i2,2019-20,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,448,896.0 --Infinity,1,a-sust-i2,2019-20,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2019-20,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2019-20,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2019-20,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2019-20,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity --Infinity,1,a-sust-i2,2019-20,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2019-20,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2019-20,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2019-20,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2019-20,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2019-20,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2019-20,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity +NA,NA,a-sust-i2,2019-20,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2019-20,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity 2.576,2.58,a-sust-i2,2019-20,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 -2.592,1,a-sust-i2,2019-20,Scituate - Gates Middle School,02640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,662,662.0 3.712,3.71,a-sust-i2,2019-20,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,268,268.0 2.56,2.56,a-sust-i2,2019-20,Scituate - Jenkins Elementary School,02640015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 --Infinity,1,a-sust-i2,2019-20,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,934,Infinity +NA,NA,a-sust-i2,2019-20,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,934,Infinity 1.056,1.06,a-sust-i2,2019-20,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,434,434.0 --Infinity,1,a-sust-i2,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2019-20,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity --Infinity,1,a-sust-i2,2019-20,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2019-20,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2019-20,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2019-20,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2019-20,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2019-20,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2019-20,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity -9.024,1,a-sust-i2,2019-20,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,532,1064.0 -4.708571428571429,1,a-sust-i2,2019-20,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.7,556,794.2857142857143 0.48,1,a-sust-i2,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,47,470.0 -14.38,1,a-sust-i2,2019-20,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.8,1119,1398.75 --Infinity,1,a-sust-i2,2019-20,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,872,Infinity +NA,NA,a-sust-i2,2019-20,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,872,Infinity -12.24,1,a-sust-i2,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1265,1265.0 -0.26,1,a-sust-i2,2019-20,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,413,516.25 --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,994,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1885,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2019-20,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2019-20,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i2,2019-20,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1237,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,994,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1885,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2019-20,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2019-20,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2019-20,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1237,Infinity -0.064,1,a-sust-i2,2019-20,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,504,504.0 -6.2,1,a-sust-i2,2019-20,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,355,887.5 --Infinity,1,a-sust-i2,2019-20,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2019-20,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2019-20,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity --Infinity,1,a-sust-i2,2019-20,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2019-20,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2019-20,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2019-20,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2019-20,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity -8.416,1,a-sust-i2,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1026,1026.0 --Infinity,1,a-sust-i2,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2019-20,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2019-20,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity -5.408,1,a-sust-i2,2019-20,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,419,838.0 --Infinity,1,a-sust-i2,2019-20,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2019-20,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2019-20,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2019-20,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity -17.568,1,a-sust-i2,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,799,1598.0 --Infinity,1,a-sust-i2,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity --Infinity,1,a-sust-i2,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity +NA,NA,a-sust-i2,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity -1.84,1,a-sust-i2,2019-20,Southampton - William E Norris,02750005, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,492,615.0 3.872,3.87,a-sust-i2,2019-20,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,258,258.0 3.712,3.71,a-sust-i2,2019-20,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,268,268.0 2.576,2.58,a-sust-i2,2019-20,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,339,339.0 1.36,1.36,a-sust-i2,2019-20,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 --Infinity,1,a-sust-i2,2019-20,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2019-20,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2019-20,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2019-20,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2019-20,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2019-20,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2019-20,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2019-20,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2019-20,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2019-20,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2019-20,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2019-20,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity -15.328,1,a-sust-i2,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1458,1458.0 --Infinity,1,a-sust-i2,2019-20,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2019-20,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity --Infinity,1,a-sust-i2,2019-20,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity --Infinity,1,a-sust-i2,2019-20,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity +NA,NA,a-sust-i2,2019-20,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2019-20,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity +NA,NA,a-sust-i2,2019-20,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +NA,NA,a-sust-i2,2019-20,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity -4.48,1,a-sust-i2,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,468,780.0 -4.017777777777777,1,a-sust-i2,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,676,751.1111111111111 -2.944,1,a-sust-i2,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,342,684.0 @@ -8788,108 +8788,108 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.32,1,a-sust-i2,2019-20,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,240,480.0 -15.36,1,a-sust-i2,2019-20,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,438,1460.0 -0.82,1,a-sust-i2,2019-20,Spencer-E Brookfield - Wire Village School,07670040, 0.5, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.8,441,551.25 --Infinity,1,a-sust-i2,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1096,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1393,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2063,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1245,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2019-20,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2019-20,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2019-20,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2019-20,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,714,Infinity --Infinity,1,a-sust-i2,2019-20,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,866,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2019-20,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1022,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1096,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1393,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2063,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1245,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2019-20,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2019-20,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2019-20,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2019-20,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2019-20,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,714,Infinity +NA,NA,a-sust-i2,2019-20,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,866,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2019-20,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1022,Infinity 3.269333333333333,3.27,a-sust-i2,2019-20,Sturbridge - Burgess Elementary,02870005, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,887,295.6666666666667 --Infinity,1,a-sust-i2,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity +NA,NA,a-sust-i2,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity -7.12,1,a-sust-i2,2019-20,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,945,945.0 2.672,2.67,a-sust-i2,2019-20,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,333,333.0 --Infinity,1,a-sust-i2,2019-20,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2019-20,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity 2.0,2.0,a-sust-i2,2019-20,Sudbury - Josiah Haynes,02880010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 --Infinity,1,a-sust-i2,2019-20,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2019-20,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2019-20,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2019-20,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2019-20,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity --Infinity,1,a-sust-i2,2019-20,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2019-20,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2019-20,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2019-20,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2019-20,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2019-20,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2019-20,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity -26.08,1,a-sust-i2,2019-20,Swampscott - Clarke,02910005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,213,2130.0 2.24,2.24,a-sust-i2,2019-20,Swampscott - Hadley,02910010, 0.0, 0.5, 0.4, 0.0, 0.0, 0.0, 0.0, 0.9,324,360.0 0.288,1,a-sust-i2,2019-20,Swampscott - Stanley,02910020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,241,482.0 -3.248,1,a-sust-i2,2019-20,Swampscott - Swampscott High,02910505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,703,703.0 -3.792,1,a-sust-i2,2019-20,Swampscott - Swampscott Middle,02910305, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,737,737.0 --Infinity,1,a-sust-i2,2019-20,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2019-20,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2019-20,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2019-20,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2019-20,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2019-20,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2019-20,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2019-20,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2019-20,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2019-20,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2019-20,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2019-20,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity -9.464,1,a-sust-i2,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,2183,1091.5 -1.392,1,a-sust-i2,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,587,587.0 2.28,2.28,a-sust-i2,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,715,357.5 --Infinity,1,a-sust-i2,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity -7.82,1,a-sust-i2,2019-20,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.6, 0.0, 0.2, 0.0, 0.0, 0.8,791,988.75 -16.2,1,a-sust-i2,2019-20,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,605,1512.5 -8.586666666666668,1,a-sust-i2,2019-20,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,311,1036.6666666666667 @@ -8903,249 +8903,249 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -12.2,1,a-sust-i2,2019-20,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,505,1262.5 -5.76,1,a-sust-i2,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,86,860.0 -34.704,1,a-sust-i2,2019-20,Taunton - Taunton High,02930505, 0.0, 0.0, 0.2, 0.0, 0.8, 0.0, 0.0, 1.0,2669,2669.0 --Infinity,1,a-sust-i2,2019-20,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2019-20,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2019-20,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity --Infinity,1,a-sust-i2,2019-20,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity --Infinity,1,a-sust-i2,2019-20,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2019-20,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2019-20,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,857,Infinity --Infinity,1,a-sust-i2,2019-20,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2019-20,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2019-20,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity --Infinity,1,a-sust-i2,2019-20,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2019-20,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2019-20,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2019-20,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2019-20,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2019-20,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2019-20,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2019-20,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2019-20,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity +NA,NA,a-sust-i2,2019-20,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2019-20,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2019-20,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,857,Infinity +NA,NA,a-sust-i2,2019-20,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2019-20,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2019-20,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity +NA,NA,a-sust-i2,2019-20,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2019-20,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2019-20,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2019-20,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2019-20,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity 1.973333333333333,1.97,a-sust-i2,2019-20,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,113,376.6666666666667 -0.46933333333333394,1,a-sust-i2,2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,794,529.3333333333334 --Infinity,1,a-sust-i2,2019-20,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2019-20,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity 1.264,1.26,a-sust-i2,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,421,421.0 2.312,2.31,a-sust-i2,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,711,355.5 --Infinity,1,a-sust-i2,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2019-20,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2019-20,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity -1.168,1,a-sust-i2,2019-20,Uxbridge - Taft Early Learning Center,03040005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,573,573.0 -1.472,1,a-sust-i2,2019-20,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,592,592.0 -0.272,1,a-sust-i2,2019-20,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,517,517.0 --Infinity,1,a-sust-i2,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity 2.224,2.22,a-sust-i2,2019-20,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,361,361.0 4.458666666666666,4.46,a-sust-i2,2019-20,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,332,221.33333333333334 --Infinity,1,a-sust-i2,2019-20,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity -0.16,1,a-sust-i2,2019-20,Wachusett - Dawson,07750020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,510,510.0 --Infinity,1,a-sust-i2,2019-20,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2019-20,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2019-20,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2019-20,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2019-20,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity --Infinity,1,a-sust-i2,2019-20,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2019-20,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2019-20,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2019-20,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity -24.72,1,a-sust-i2,2019-20,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,2045,2045.0 0.56,1,a-sust-i2,2019-20,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 3.52,3.52,a-sust-i2,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,140,280.0 -0.384,1,a-sust-i2,2019-20,Wakefield - Galvin Middle School,03050310, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1048,524.0 --Infinity,1,a-sust-i2,2019-20,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2019-20,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,983,Infinity +NA,NA,a-sust-i2,2019-20,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2019-20,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,983,Infinity 0.704,1,a-sust-i2,2019-20,Wakefield - Walton,03050040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,228,456.0 1.648,1.65,a-sust-i2,2019-20,Wakefield - Woodville School,03050015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,397,397.0 --Infinity,1,a-sust-i2,2019-20,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2019-20,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1078,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1654,Infinity --Infinity,1,a-sust-i2,2019-20,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2019-20,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2019-20,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2019-20,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2019-20,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity --Infinity,1,a-sust-i2,2019-20,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity --Infinity,1,a-sust-i2,2019-20,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2019-20,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity --Infinity,1,a-sust-i2,2019-20,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2019-20,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2019-20,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2019-20,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity --Infinity,1,a-sust-i2,2019-20,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2019-20,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2019-20,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1078,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1654,Infinity +NA,NA,a-sust-i2,2019-20,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2019-20,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2019-20,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2019-20,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2019-20,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity +NA,NA,a-sust-i2,2019-20,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i2,2019-20,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2019-20,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +NA,NA,a-sust-i2,2019-20,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2019-20,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2019-20,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2019-20,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2019-20,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity -3.5657142857142863,1,a-sust-i2,2019-20,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.7,506,722.8571428571429 1.872,1.87,a-sust-i2,2019-20,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,383,383.0 -2.368,1,a-sust-i2,2019-20,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,324,648.0 --Infinity,1,a-sust-i2,2019-20,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity +NA,NA,a-sust-i2,2019-20,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity 0.9813333333333331,1,a-sust-i2,2019-20,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.5, 1.5,658,438.6666666666667 --Infinity,1,a-sust-i2,2019-20,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2019-20,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity +NA,NA,a-sust-i2,2019-20,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2019-20,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity -1.456,1,a-sust-i2,2019-20,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,591,591.0 --Infinity,1,a-sust-i2,2019-20,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1165,Infinity --Infinity,1,a-sust-i2,2019-20,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1504,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1165,Infinity +NA,NA,a-sust-i2,2019-20,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1504,Infinity 3.76,3.76,a-sust-i2,2019-20,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,106,265.0 --Infinity,1,a-sust-i2,2019-20,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2019-20,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity 3.408,3.41,a-sust-i2,2019-20,West Bridgewater - Howard School,03230305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 3.248,3.25,a-sust-i2,2019-20,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,297,297.0 --Infinity,1,a-sust-i2,2019-20,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2019-20,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity -2.096,1,a-sust-i2,2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,631,631.0 4.032,4.03,a-sust-i2,2019-20,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,124,248.0 --Infinity,1,a-sust-i2,2019-20,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2019-20,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2019-20,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2019-20,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity 4.592,4.59,a-sust-i2,2019-20,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,213,213.0 --Infinity,1,a-sust-i2,2019-20,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2019-20,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2019-20,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2019-20,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity -5.973333333333334,1,a-sust-i2,2019-20,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,262,873.3333333333334 --Infinity,1,a-sust-i2,2019-20,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1232,Infinity +NA,NA,a-sust-i2,2019-20,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1232,Infinity -16.213333333333335,1,a-sust-i2,2019-20,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.6,908,1513.3333333333335 --Infinity,1,a-sust-i2,2019-20,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2019-20,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity -0.048,1,a-sust-i2,2019-20,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,503,503.0 1.296,1.3,a-sust-i2,2019-20,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,419,419.0 --Infinity,1,a-sust-i2,2019-20,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,882,Infinity --Infinity,1,a-sust-i2,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2019-20,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,882,Infinity +NA,NA,a-sust-i2,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity -1.176,1,a-sust-i2,2019-20,Westborough - Westborough High,03210505, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1147,573.5 --Infinity,1,a-sust-i2,2019-20,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2019-20,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity -11.573333333333336,1,a-sust-i2,2019-20,Westfield - Highland,03250025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,367,1223.3333333333335 -11.893333333333336,1,a-sust-i2,2019-20,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,373,1243.3333333333335 -8.906666666666668,1,a-sust-i2,2019-20,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,317,1056.6666666666667 --Infinity,1,a-sust-i2,2019-20,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2019-20,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1184,Infinity --Infinity,1,a-sust-i2,2019-20,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity --Infinity,1,a-sust-i2,2019-20,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity --Infinity,1,a-sust-i2,2019-20,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2019-20,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1691,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1184,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i2,2019-20,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2019-20,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1691,Infinity -1.6,1,a-sust-i2,2019-20,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,120,600.0 -39.52,1,a-sust-i2,2019-20,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,297,2970.0 3.088,3.09,a-sust-i2,2019-20,Weston - Field Elementary School,03300012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,307,307.0 -3.786666666666666,1,a-sust-i2,2019-20,Weston - Weston High,03300505, 0.0, 0.8, 0.0, 0.0, 0.1, 0.0, 0.0, 0.9,663,736.6666666666666 -0.6577777777777774,1,a-sust-i2,2019-20,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,487,541.1111111111111 -37.6,1,a-sust-i2,2019-20,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,285,2850.0 --Infinity,1,a-sust-i2,2019-20,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2019-20,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2019-20,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2019-20,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity -1.024,1,a-sust-i2,2019-20,Westport - Westport Junior/Senior High School,03310515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 4.896,4.9,a-sust-i2,2019-20,Westwood - Deerfield School,03350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,194,194.0 3.424,3.42,a-sust-i2,2019-20,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,286,286.0 --Infinity,1,a-sust-i2,2019-20,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity +NA,NA,a-sust-i2,2019-20,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity 3.696,3.7,a-sust-i2,2019-20,Westwood - Martha Jones,03350017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,269,269.0 3.2228571428571424,3.22,a-sust-i2,2019-20,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,209,298.5714285714286 -7.904,1,a-sust-i2,2019-20,Westwood - Westwood High,03350505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,994,994.0 --Infinity,1,a-sust-i2,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i2,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity 3.04,3.04,a-sust-i2,2019-20,Westwood - William E Sheehan,03350025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,310,310.0 --Infinity,1,a-sust-i2,2019-20,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1830,Infinity --Infinity,1,a-sust-i2,2019-20,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1830,Infinity +NA,NA,a-sust-i2,2019-20,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity 5.968,5,a-sust-i2,2019-20,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,127,127.0 -6.912,1,a-sust-i2,2019-20,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,466,932.0 -7.936,1,a-sust-i2,2019-20,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,498,996.0 -6.272,1,a-sust-i2,2019-20,Whitman-Hanson - John H Duval,07800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,446,892.0 -8.096,1,a-sust-i2,2019-20,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,503,1006.0 --Infinity,1,a-sust-i2,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i2,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity -29.056,1,a-sust-i2,2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1158,2316.0 -1.264,1,a-sust-i2,2019-20,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,579,579.0 -12.064,1,a-sust-i2,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1254,1254.0 -2.96,1,a-sust-i2,2019-20,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,137,685.0 --Infinity,1,a-sust-i2,2019-20,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity --Infinity,1,a-sust-i2,2019-20,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2019-20,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2019-20,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity --Infinity,1,a-sust-i2,2019-20,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2019-20,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2019-20,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity --Infinity,1,a-sust-i2,2019-20,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2019-20,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity --Infinity,1,a-sust-i2,2019-20,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2019-20,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2019-20,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity --Infinity,1,a-sust-i2,2019-20,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2019-20,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2019-20,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2019-20,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1119,Infinity --Infinity,1,a-sust-i2,2019-20,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2019-20,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2019-20,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1418,Infinity --Infinity,1,a-sust-i2,2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2019-20,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2019-20,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2019-20,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1249,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity +NA,NA,a-sust-i2,2019-20,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2019-20,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +NA,NA,a-sust-i2,2019-20,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2019-20,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2019-20,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2019-20,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2019-20,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2019-20,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2019-20,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1119,Infinity +NA,NA,a-sust-i2,2019-20,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2019-20,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2019-20,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1418,Infinity +NA,NA,a-sust-i2,2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2019-20,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2019-20,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2019-20,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1249,Infinity -1.936,1,a-sust-i2,2019-20,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,621,621.0 -3.52,1,a-sust-i2,2019-20,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,720,720.0 -9.776,1,a-sust-i2,2019-20,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1111,1111.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity 2.256,2.26,a-sust-i2,2019-20,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,359,359.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity -0.208,1,a-sust-i2,2019-20,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,513,513.0 0.368,1,a-sust-i2,2019-20,Worcester - City View,03480053, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2019-20,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity 1.168,1.17,a-sust-i2,2019-20,Worcester - Columbus Park,03480060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,427,427.0 -15.984,1,a-sust-i2,2019-20,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1499,1499.0 1.184,1.18,a-sust-i2,2019-20,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity -7.008,1,a-sust-i2,2019-20,Worcester - Forest Grove Middle,03480415, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,938,938.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity -0.976,1,a-sust-i2,2019-20,Worcester - Gates Lane,03480110, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,561,561.0 2.016,2.02,a-sust-i2,2019-20,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,374,374.0 2.096,2.1,a-sust-i2,2019-20,Worcester - Grafton Street,03480115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2019-20,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2019-20,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2019-20,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity 4.336,4.34,a-sust-i2,2019-20,Worcester - Lincoln Street,03480160, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,229,229.0 --Infinity,1,a-sust-i2,2019-20,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2019-20,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity -1.136,1,a-sust-i2,2019-20,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 -1.008,1,a-sust-i2,2019-20,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,563,563.0 -12.048,1,a-sust-i2,2019-20,Worcester - North High,03480515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1253,1253.0 @@ -9154,584 +9154,584 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.152,1,a-sust-i2,2019-20,Worcester - Roosevelt,03480220, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,697,697.0 -14.064,1,a-sust-i2,2019-20,Worcester - South High Community,03480520, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1379,1379.0 -6.592,1,a-sust-i2,2019-20,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,912,912.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2019-20,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity 1.84,1.84,a-sust-i2,2019-20,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,385,385.0 --Infinity,1,a-sust-i2,2019-20,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity -0.512,1,a-sust-i2,2019-20,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 --Infinity,1,a-sust-i2,2019-20,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i2,2019-20,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2019-20,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity -1.616,1,a-sust-i2,2019-20,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,601,601.0 1.44,1.44,a-sust-i2,2019-20,Worcester - Worcester Arts Magnet School,03480225, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,410,410.0 -3.648,1,a-sust-i2,2019-20,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,728,728.0 -15.456,1,a-sust-i2,2019-20,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1466,1466.0 --Infinity,1,a-sust-i2,2019-20,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2019-20,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity 0.0,1,a-sust-i2,2019-20,Wrentham - Charles E Roderick,03500010, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,400,500.0 -9.664,1,a-sust-i2,2019-20,Wrentham - Delaney,03500003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,552,1104.0 --Infinity,1,a-sust-i2,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1428,Infinity --Infinity,1,a-sust-i2,2018-19,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1428,Infinity +NA,NA,a-sust-i2,2018-19,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity -0.72,1,a-sust-i2,2018-19,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,545,545.0 2.624,2.62,a-sust-i2,2018-19,Abington - Abington Middle School,00010405, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,672,336.0 0.72,1,a-sust-i2,2018-19,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,455,455.0 --Infinity,1,a-sust-i2,2018-19,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2018-19,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity -8.832,1,a-sust-i2,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,526,1052.0 --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,923,Infinity --Infinity,1,a-sust-i2,2018-19,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2018-19,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity --Infinity,1,a-sust-i2,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1113,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2018-19,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2018-19,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2018-19,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2018-19,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity --Infinity,1,a-sust-i2,2018-19,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2018-19,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2018-19,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2018-19,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2018-19,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2018-19,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,924,Infinity --Infinity,1,a-sust-i2,2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1790,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity --Infinity,1,a-sust-i2,2018-19,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,923,Infinity +NA,NA,a-sust-i2,2018-19,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2018-19,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1113,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2018-19,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2018-19,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2018-19,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2018-19,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2018-19,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2018-19,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2018-19,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2018-19,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2018-19,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2018-19,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,924,Infinity +NA,NA,a-sust-i2,2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2018-19,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1790,Infinity +NA,NA,a-sust-i2,2018-19,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2018-19,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2018-19,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2018-19,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2018-19,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2018-19,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66,Infinity +NA,NA,a-sust-i2,2018-19,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2018-19,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2018-19,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity -14.08,1,a-sust-i2,2018-19,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1380,1380.0 -8.544,1,a-sust-i2,2018-19,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,517,1034.0 --Infinity,1,a-sust-i2,2018-19,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2018-19,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2018-19,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity -6.464,1,a-sust-i2,2018-19,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,452,904.0 --Infinity,1,a-sust-i2,2018-19,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2018-19,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2018-19,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,855,Infinity --Infinity,1,a-sust-i2,2018-19,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2018-19,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity --Infinity,1,a-sust-i2,2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2018-19,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity --Infinity,1,a-sust-i2,2018-19,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2018-19,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628,Infinity --Infinity,1,a-sust-i2,2018-19,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity --Infinity,1,a-sust-i2,2018-19,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1134,Infinity --Infinity,1,a-sust-i2,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2018-19,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2018-19,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,855,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2018-19,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity +NA,NA,a-sust-i2,2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2018-19,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity +NA,NA,a-sust-i2,2018-19,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2018-19,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628,Infinity +NA,NA,a-sust-i2,2018-19,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2018-19,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1134,Infinity +NA,NA,a-sust-i2,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2018-19,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2018-19,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity -12.704,1,a-sust-i2,2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1294,1294.0 --Infinity,1,a-sust-i2,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity -19.936,1,a-sust-i2,2018-19,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1746,1746.0 --Infinity,1,a-sust-i2,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2018-19,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity -12.832,1,a-sust-i2,2018-19,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,651,1302.0 --Infinity,1,a-sust-i2,2018-19,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2018-19,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2018-19,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity -8.613333333333335,1,a-sust-i2,2018-19,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.1, 0.6,623,1038.3333333333335 -13.12,1,a-sust-i2,2018-19,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.1, 0.6,792,1320.0 -7.946666666666668,1,a-sust-i2,2018-19,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.1, 0.3,299,996.6666666666667 -8.32,1,a-sust-i2,2018-19,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.1, 0.3,306,1020.0 -8.213333333333335,1,a-sust-i2,2018-19,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.1, 0.6,608,1013.3333333333334 --Infinity,1,a-sust-i2,2018-19,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2018-19,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +NA,NA,a-sust-i2,2018-19,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2018-19,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity -4.448,1,a-sust-i2,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,389,778.0 --Infinity,1,a-sust-i2,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity -8.96,1,a-sust-i2,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,530,1060.0 -6.416,1,a-sust-i2,2018-19,Barnstable - Barnstable High,00200505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,1802,901.0 -4.496,1,a-sust-i2,2018-19,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,781,781.0 -4.96,1,a-sust-i2,2018-19,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,810,810.0 3.984,3.98,a-sust-i2,2018-19,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 --Infinity,1,a-sust-i2,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity +NA,NA,a-sust-i2,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,146,Infinity 2.848,2.85,a-sust-i2,2018-19,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,322,322.0 3.872,3.87,a-sust-i2,2018-19,Barnstable - West Barnstable Elementary,00200005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,258,258.0 1.264,1.26,a-sust-i2,2018-19,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,421,421.0 3.36,3.36,a-sust-i2,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 --Infinity,1,a-sust-i2,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2018-19,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity --Infinity,1,a-sust-i2,2018-19,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2018-19,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity +NA,NA,a-sust-i2,2018-19,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity -1.584,1,a-sust-i2,2018-19,Bedford - Lt Elezer Davis,00230010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,599,599.0 --Infinity,1,a-sust-i2,2018-19,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2018-19,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity -46.96,1,a-sust-i2,2018-19,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,687,3435.0 -35.2,1,a-sust-i2,2018-19,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,540,2700.0 -6.32,1,a-sust-i2,2018-19,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,179,895.0 -22.8,1,a-sust-i2,2018-19,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,385,1925.0 -30.08,1,a-sust-i2,2018-19,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,476,2380.0 --Infinity,1,a-sust-i2,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2018-19,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity --Infinity,1,a-sust-i2,2018-19,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity --Infinity,1,a-sust-i2,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2018-19,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity --Infinity,1,a-sust-i2,2018-19,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2018-19,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2018-19,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity +NA,NA,a-sust-i2,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2018-19,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +NA,NA,a-sust-i2,2018-19,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity -15.253333333333332,1,a-sust-i2,2018-19,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.4, 0.9,1308,1453.3333333333333 -4.288,1,a-sust-i2,2018-19,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,384,768.0 -5.344,1,a-sust-i2,2018-19,Belmont - Mary Lee Burbank,00260010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,417,834.0 -12.16,1,a-sust-i2,2018-19,Belmont - Roger E Wellington,00260035, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,630,1260.0 -6.752,1,a-sust-i2,2018-19,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,461,922.0 -37.696,1,a-sust-i2,2018-19,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1428,2856.0 --Infinity,1,a-sust-i2,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity -7.904,1,a-sust-i2,2018-19,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,497,994.0 --Infinity,1,a-sust-i2,2018-19,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2018-19,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity 2.736,2.74,a-sust-i2,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,329,329.0 5.072,5,a-sust-i2,2018-19,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,183,183.0 -1.328,1,a-sust-i2,2018-19,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,583,583.0 --Infinity,1,a-sust-i2,2018-19,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2018-19,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity -12.016,1,a-sust-i2,2018-19,Beverly - Beverly High,00300505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1251,1251.0 --Infinity,1,a-sust-i2,2018-19,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1404,Infinity --Infinity,1,a-sust-i2,2018-19,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2018-19,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2018-19,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2018-19,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2018-19,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2018-19,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1336,Infinity +NA,NA,a-sust-i2,2018-19,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1404,Infinity +NA,NA,a-sust-i2,2018-19,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2018-19,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2018-19,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2018-19,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2018-19,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2018-19,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1336,Infinity 5.12,5,a-sust-i2,2018-19,Billerica - Eugene C Vining,00310030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,180,180.0 --Infinity,1,a-sust-i2,2018-19,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2018-19,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2018-19,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2018-19,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity 2.928,2.93,a-sust-i2,2018-19,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,317,317.0 --Infinity,1,a-sust-i2,2018-19,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2018-19,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2018-19,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2018-19,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity -0.032,1,a-sust-i2,2018-19,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 2.1828571428571424,2.18,a-sust-i2,2018-19,Billerica - Thomas Ditson,00310005, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,509,363.5714285714286 -11.68,1,a-sust-i2,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1230,1230.0 --Infinity,1,a-sust-i2,2018-19,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2018-19,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2018-19,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2018-19,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity -17.013333333333335,1,a-sust-i2,2018-19,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,469,1563.3333333333335 --Infinity,1,a-sust-i2,2018-19,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2440,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1767,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2440,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1767,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity 3.312,3.31,a-sust-i2,2018-19,Boston - Brighton High,00350505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,586,293.0 --Infinity,1,a-sust-i2,2018-19,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,851,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,968,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,811,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,881,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,851,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,968,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2018-19,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,811,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,630,Infinity +NA,NA,a-sust-i2,2018-19,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity 5.056,5,a-sust-i2,2018-19,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,184,184.0 --Infinity,1,a-sust-i2,2018-19,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1189,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Edison K-8,00350375, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,168,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2018-19,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1189,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Edison K-8,00350375, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2018-19,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,168,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity 6.592,5,a-sust-i2,2018-19,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,88,88.0 --Infinity,1,a-sust-i2,2018-19,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Jackson Mann,00350013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Josiah Quincy,00350286, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Madison Park High,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,949,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1535,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,904,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Paul A Dever,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Jackson Mann,00350013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2018-19,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2018-19,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2018-19,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2018-19,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2018-19,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2018-19,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2018-19,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2018-19,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Josiah Quincy,00350286, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2018-19,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Madison Park High,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,949,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +NA,NA,a-sust-i2,2018-19,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2018-19,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2018-19,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1535,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,904,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Paul A Dever,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2018-19,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity +NA,NA,a-sust-i2,2018-19,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity -4.336,1,a-sust-i2,2018-19,Boston - UP Academy Holland,00350167, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,771,771.0 --Infinity,1,a-sust-i2,2018-19,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity 3.216,3.22,a-sust-i2,2018-19,Boston - Washington Irving Middle,00350445, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 --Infinity,1,a-sust-i2,2018-19,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity +NA,NA,a-sust-i2,2018-19,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2018-19,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2018-19,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2018-19,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity 7.91825,5,a-sust-i2,2018-19,Boston - William McKinley,00350363, 3.0, 16.0, 16.0, 12.0, 10.0, 6.0, 1.0, 64.0,327,5.109375 --Infinity,1,a-sust-i2,2018-19,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2018-19,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2018-19,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2018-19,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity -10.48,1,a-sust-i2,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,693,1155.0 --Infinity,1,a-sust-i2,2018-19,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, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2018-19,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, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity 3.6388571428571432,3.64,a-sust-i2,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 2.0, 1.0, 0.0, 0.5, 0.0, 0.0, 3.5,954,272.57142857142856 -7.232,1,a-sust-i2,2018-19,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,476,952.0 -14.016,1,a-sust-i2,2018-19,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,688,1376.0 -5.856,1,a-sust-i2,2018-19,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,433,866.0 -2.816,1,a-sust-i2,2018-19,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,338,676.0 -4.2,1,a-sust-i2,2018-19,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,305,762.5 --Infinity,1,a-sust-i2,2018-19,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2018-19,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity 3.232,3.23,a-sust-i2,2018-19,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 --Infinity,1,a-sust-i2,2018-19,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2018-19,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1793,Infinity --Infinity,1,a-sust-i2,2018-19,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1793,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity -3.696,1,a-sust-i2,2018-19,Braintree - East Middle School,00400305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,731,731.0 --Infinity,1,a-sust-i2,2018-19,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2018-19,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2018-19,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2018-19,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2018-19,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity --Infinity,1,a-sust-i2,2018-19,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2018-19,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2018-19,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,704,Infinity +NA,NA,a-sust-i2,2018-19,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2018-19,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity 4.04,4.04,a-sust-i2,2018-19,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,495,247.5 --Infinity,1,a-sust-i2,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1470,Infinity +NA,NA,a-sust-i2,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1470,Infinity -0.288,1,a-sust-i2,2018-19,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,518,518.0 2.64,2.64,a-sust-i2,2018-19,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 3.62,3.62,a-sust-i2,2018-19,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 2.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,1095,273.75 --Infinity,1,a-sust-i2,2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity +NA,NA,a-sust-i2,2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity 7.712,5,a-sust-i2,2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,18,18.0 1.816,1.82,a-sust-i2,2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,773,386.5 3.312,3.31,a-sust-i2,2018-19,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 --Infinity,1,a-sust-i2,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1288,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1288,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity 4.688,4.69,a-sust-i2,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,207,207.0 --Infinity,1,a-sust-i2,2018-19,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4032,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4032,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity -1.84,1,a-sust-i2,2018-19,Brockton - Downey,00440110, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,615,615.0 -16.384,1,a-sust-i2,2018-19,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,762,1524.0 -11.808,1,a-sust-i2,2018-19,Brockton - East Middle School,00440405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,619,1238.0 --Infinity,1,a-sust-i2,2018-19,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1037,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,884,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1037,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,884,Infinity -24.032,1,a-sust-i2,2018-19,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1001,2002.0 --Infinity,1,a-sust-i2,2018-19,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,714,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,714,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity -19.52,1,a-sust-i2,2018-19,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,860,1720.0 --Infinity,1,a-sust-i2,2018-19,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2018-19,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity --Infinity,1,a-sust-i2,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1853,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2018-19,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +NA,NA,a-sust-i2,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1853,Infinity -0.42666666666666786,1,a-sust-i2,2018-19,Brookfield - Brookfield Elementary,00450005, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,316,526.6666666666667 --Infinity,1,a-sust-i2,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity --Infinity,1,a-sust-i2,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity -25.616,1,a-sust-i2,2018-19,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,2101,2101.0 0.784,1,a-sust-i2,2018-19,Brookline - Coolidge Corner School,00460015, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,902,451.0 -4.192,1,a-sust-i2,2018-19,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,762,762.0 -6.693333333333334,1,a-sust-i2,2018-19,Brookline - Heath,00460025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,551,918.3333333333334 --Infinity,1,a-sust-i2,2018-19,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity --Infinity,1,a-sust-i2,2018-19,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity --Infinity,1,a-sust-i2,2018-19,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2018-19,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity --Infinity,1,a-sust-i2,2018-19,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity --Infinity,1,a-sust-i2,2018-19,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity +NA,NA,a-sust-i2,2018-19,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity -13.42,1,a-sust-i2,2018-19,Burlington - Burlington High,00480505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,1071,1338.75 1.184,1.18,a-sust-i2,2018-19,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 -0.512,1,a-sust-i2,2018-19,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 -4.592,1,a-sust-i2,2018-19,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,787,787.0 1.632,1.63,a-sust-i2,2018-19,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,398,398.0 2.896,2.9,a-sust-i2,2018-19,Burlington - Pine Glen Elementary,00480020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,319,319.0 --Infinity,1,a-sust-i2,2018-19,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1983,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2018-19,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2018-19,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,968,Infinity --Infinity,1,a-sust-i2,2018-19,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2018-19,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2018-19,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity --Infinity,1,a-sust-i2,2018-19,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1983,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2018-19,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2018-19,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,968,Infinity +NA,NA,a-sust-i2,2018-19,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2018-19,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2018-19,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity +NA,NA,a-sust-i2,2018-19,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity 4.128,4.13,a-sust-i2,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 --Infinity,1,a-sust-i2,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2018-19,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2018-19,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity -4.72,1,a-sust-i2,2018-19,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,795,795.0 --Infinity,1,a-sust-i2,2018-19,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity --Infinity,1,a-sust-i2,2018-19,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2018-19,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2018-19,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity --Infinity,1,a-sust-i2,2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2018-19,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +NA,NA,a-sust-i2,2018-19,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity +NA,NA,a-sust-i2,2018-19,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2018-19,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2018-19,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2018-19,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity 0.368,1,a-sust-i2,2018-19,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 0.416,1,a-sust-i2,2018-19,Chelmsford - Center Elementary School,00560005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 0.096,1,a-sust-i2,2018-19,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,494,494.0 -15.104,1,a-sust-i2,2018-19,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1444,1444.0 --Infinity,1,a-sust-i2,2018-19,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity --Infinity,1,a-sust-i2,2018-19,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2018-19,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity --Infinity,1,a-sust-i2,2018-19,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2018-19,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity +NA,NA,a-sust-i2,2018-19,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2018-19,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +NA,NA,a-sust-i2,2018-19,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity -35.52,1,a-sust-i2,2018-19,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1360,2720.0 --Infinity,1,a-sust-i2,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity -12.64,1,a-sust-i2,2018-19,Chelsea - Clark Avenue School,00570050, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,645,1290.0 --Infinity,1,a-sust-i2,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2018-19,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2018-19,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity --Infinity,1,a-sust-i2,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +NA,NA,a-sust-i2,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity -2.32,1,a-sust-i2,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,129,645.0 --Infinity,1,a-sust-i2,2018-19,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1253,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1253,Infinity -7.648,1,a-sust-i2,2018-19,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,978,978.0 --Infinity,1,a-sust-i2,2018-19,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2018-19,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i2,2018-19,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity --Infinity,1,a-sust-i2,2018-19,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity --Infinity,1,a-sust-i2,2018-19,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2018-19,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i2,2018-19,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity +NA,NA,a-sust-i2,2018-19,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2018-19,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity -5.328,1,a-sust-i2,2018-19,Cohasset - Cohasset Middle/High School,00650505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,833,833.0 --Infinity,1,a-sust-i2,2018-19,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity --Infinity,1,a-sust-i2,2018-19,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity --Infinity,1,a-sust-i2,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2018-19,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2018-19,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +NA,NA,a-sust-i2,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity 0.336,1,a-sust-i2,2018-19,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,479,479.0 --Infinity,1,a-sust-i2,2018-19,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,734,Infinity --Infinity,1,a-sust-i2,2018-19,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2018-19,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,734,Infinity +NA,NA,a-sust-i2,2018-19,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity 1.264,1.26,a-sust-i2,2018-19,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 -12.384,1,a-sust-i2,2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1274,1274.0 --Infinity,1,a-sust-i2,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity 5.84,5,a-sust-i2,2018-19,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,135,135.0 --Infinity,1,a-sust-i2,2018-19,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,930,Infinity --Infinity,1,a-sust-i2,2018-19,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2018-19,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2018-19,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity --Infinity,1,a-sust-i2,2018-19,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2018-19,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2018-19,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2018-19,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,930,Infinity +NA,NA,a-sust-i2,2018-19,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2018-19,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2018-19,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity +NA,NA,a-sust-i2,2018-19,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2018-19,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2018-19,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity 6.888,5,a-sust-i2,2018-19,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,139,69.5 -0.568,1,a-sust-i2,2018-19,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1071,535.5 -7.024,1,a-sust-i2,2018-19,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,939,939.0 1.52,1.52,a-sust-i2,2018-19,Dartmouth - George H Potter,00720030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,405,405.0 --Infinity,1,a-sust-i2,2018-19,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2018-19,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2018-19,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2018-19,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2018-19,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2018-19,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity -15.936,1,a-sust-i2,2018-19,Dedham - Dedham High,00730505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,748,1496.0 -2.352,1,a-sust-i2,2018-19,Dedham - Dedham Middle School,00730305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,647,647.0 --Infinity,1,a-sust-i2,2018-19,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2018-19,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2018-19,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2018-19,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2018-19,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity --Infinity,1,a-sust-i2,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity --Infinity,1,a-sust-i2,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2018-19,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2018-19,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2018-19,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2018-19,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2018-19,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2018-19,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity +NA,NA,a-sust-i2,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity +NA,NA,a-sust-i2,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2018-19,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity -10.933333333333335,1,a-sust-i2,2018-19,Douglas - Douglas Elementary School,00770015, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,355,1183.3333333333335 --Infinity,1,a-sust-i2,2018-19,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2018-19,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity -9.173333333333336,1,a-sust-i2,2018-19,Douglas - Douglas Middle School,00770305, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,322,1073.3333333333335 -0.88,1,a-sust-i2,2018-19,Douglas - Douglas Primary School,00770005, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,222,555.0 --Infinity,1,a-sust-i2,2018-19,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity --Infinity,1,a-sust-i2,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2018-19,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity +NA,NA,a-sust-i2,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity -15.413333333333336,1,a-sust-i2,2018-19,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,439,1463.3333333333335 -20.0,1,a-sust-i2,2018-19,Dracut - Dracut Senior High,00790505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,875,1750.0 -20.96,1,a-sust-i2,2018-19,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,543,1810.0 -6.133333333333334,1,a-sust-i2,2018-19,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,265,883.3333333333334 -21.813333333333336,1,a-sust-i2,2018-19,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,559,1863.3333333333335 -20.832,1,a-sust-i2,2018-19,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,901,1802.0 --Infinity,1,a-sust-i2,2018-19,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, 0.0,256,Infinity --Infinity,1,a-sust-i2,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2018-19,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, 0.0,256,Infinity +NA,NA,a-sust-i2,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity -2.896,1,a-sust-i2,2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,681,681.0 --Infinity,1,a-sust-i2,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity -21.546666666666667,1,a-sust-i2,2018-19,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,554,1846.6666666666667 0.784,1,a-sust-i2,2018-19,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 --Infinity,1,a-sust-i2,2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1115,Infinity +NA,NA,a-sust-i2,2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1115,Infinity 2.96,2.96,a-sust-i2,2018-19,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,630,315.0 -2.064,1,a-sust-i2,2018-19,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,629,629.0 -0.032,1,a-sust-i2,2018-19,Duxbury - Duxbury High,00820505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1004,502.0 -4.032,1,a-sust-i2,2018-19,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,752,752.0 --Infinity,1,a-sust-i2,2018-19,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1011,Infinity --Infinity,1,a-sust-i2,2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2018-19,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2018-19,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity --Infinity,1,a-sust-i2,2018-19,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2018-19,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity --Infinity,1,a-sust-i2,2018-19,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2018-19,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2018-19,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity --Infinity,1,a-sust-i2,2018-19,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2018-19,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2018-19,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity --Infinity,1,a-sust-i2,2018-19,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2018-19,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2018-19,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity --Infinity,1,a-sust-i2,2018-19,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2018-19,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity --Infinity,1,a-sust-i2,2018-19,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2018-19,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,812,Infinity --Infinity,1,a-sust-i2,2018-19,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2018-19,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1011,Infinity +NA,NA,a-sust-i2,2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2018-19,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2018-19,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity +NA,NA,a-sust-i2,2018-19,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2018-19,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +NA,NA,a-sust-i2,2018-19,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2018-19,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2018-19,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2018-19,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2018-19,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2018-19,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2018-19,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2018-19,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2018-19,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity +NA,NA,a-sust-i2,2018-19,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2018-19,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity +NA,NA,a-sust-i2,2018-19,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2018-19,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,812,Infinity +NA,NA,a-sust-i2,2018-19,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity -7.32,1,a-sust-i2,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, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,383,957.5 --Infinity,1,a-sust-i2,2018-19,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity +NA,NA,a-sust-i2,2018-19,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity -14.608,1,a-sust-i2,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1413,1413.0 --Infinity,1,a-sust-i2,2018-19,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1978,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,936,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity --Infinity,1,a-sust-i2,2018-19,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1978,Infinity +NA,NA,a-sust-i2,2018-19,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,936,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity +NA,NA,a-sust-i2,2018-19,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity -33.504,1,a-sust-i2,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1297,2594.0 -5.184,1,a-sust-i2,2018-19,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,412,824.0 --Infinity,1,a-sust-i2,2018-19,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity --Infinity,1,a-sust-i2,2018-19,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2018-19,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2018-19,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity -7.232,1,a-sust-i2,2018-19,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,476,952.0 -59.072,1,a-sust-i2,2018-19,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2096,4192.0 -3.648,1,a-sust-i2,2018-19,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,728,728.0 --Infinity,1,a-sust-i2,2018-19,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity -4.48,1,a-sust-i2,2018-19,Fall River - James Tansey,00950140, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,312,780.0 --Infinity,1,a-sust-i2,2018-19,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity -11.776,1,a-sust-i2,2018-19,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,618,1236.0 --Infinity,1,a-sust-i2,2018-19,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2018-19,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2018-19,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity -12.186666666666667,1,a-sust-i2,2018-19,Fall River - William S Greene,00950065, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,757,1261.6666666666667 -30.4,1,a-sust-i2,2018-19,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,240,2400.0 -36.85333333333334,1,a-sust-i2,2018-19,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,841,2803.3333333333335 @@ -9740,23 +9740,23 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -61.76,1,a-sust-i2,2018-19,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,436,4360.0 -47.36,1,a-sust-i2,2018-19,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,346,3460.0 -11.253333333333336,1,a-sust-i2,2018-19,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,361,1203.3333333333335 --Infinity,1,a-sust-i2,2018-19,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1158,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity --Infinity,1,a-sust-i2,2018-19,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity --Infinity,1,a-sust-i2,2018-19,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity +NA,NA,a-sust-i2,2018-19,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1158,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2018-19,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641,Infinity +NA,NA,a-sust-i2,2018-19,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity 4.106666666666667,4.11,a-sust-i2,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,219,243.33333333333331 --Infinity,1,a-sust-i2,2018-19,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2018-19,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813,Infinity --Infinity,1,a-sust-i2,2018-19,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,842,Infinity --Infinity,1,a-sust-i2,2018-19,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2018-19,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1630,Infinity +NA,NA,a-sust-i2,2018-19,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2018-19,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813,Infinity +NA,NA,a-sust-i2,2018-19,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,842,Infinity +NA,NA,a-sust-i2,2018-19,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2018-19,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1630,Infinity -2.752,1,a-sust-i2,2018-19,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,672,672.0 0.576,1,a-sust-i2,2018-19,Framingham - Brophy,01000006, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,464,464.0 -1.296,1,a-sust-i2,2018-19,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,581,581.0 @@ -9771,64 +9771,64 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.528,1,a-sust-i2,2018-19,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,533,533.0 -3.728,1,a-sust-i2,2018-19,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,733,733.0 -0.624,1,a-sust-i2,2018-19,Framingham - Woodrow Wilson,01000055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,539,539.0 --Infinity,1,a-sust-i2,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity 1.488,1.49,a-sust-i2,2018-19,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,407,407.0 0.192,1,a-sust-i2,2018-19,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,244,488.0 --Infinity,1,a-sust-i2,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity -10.656,1,a-sust-i2,2018-19,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,1749,1166.0 --Infinity,1,a-sust-i2,2018-19,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2018-19,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2018-19,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2018-19,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2018-19,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2018-19,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity 2.416,2.42,a-sust-i2,2018-19,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,349,349.0 2.096,2.1,a-sust-i2,2018-19,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,369,369.0 --Infinity,1,a-sust-i2,2018-19,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2018-19,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity 1.376,1.38,a-sust-i2,2018-19,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,414,414.0 --Infinity,1,a-sust-i2,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity --Infinity,1,a-sust-i2,2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity --Infinity,1,a-sust-i2,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2018-19,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2018-19,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity --Infinity,1,a-sust-i2,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity --Infinity,1,a-sust-i2,2018-19,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity +NA,NA,a-sust-i2,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity +NA,NA,a-sust-i2,2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2018-19,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2018-19,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +NA,NA,a-sust-i2,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2018-19,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity -1.248,1,a-sust-i2,2018-19,Gardner - Gardner Middle School,01030405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,578,578.0 --Infinity,1,a-sust-i2,2018-19,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2018-19,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity --Infinity,1,a-sust-i2,2018-19,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2018-19,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2018-19,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2018-19,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2018-19,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity +NA,NA,a-sust-i2,2018-19,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2018-19,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2018-19,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity -4.736,1,a-sust-i2,2018-19,Georgetown - Georgetown High School,01050505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,398,796.0 --Infinity,1,a-sust-i2,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2018-19,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2018-19,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity --Infinity,1,a-sust-i2,2018-19,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity --Infinity,1,a-sust-i2,2018-19,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity --Infinity,1,a-sust-i2,2018-19,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2018-19,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2018-19,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2018-19,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity +NA,NA,a-sust-i2,2018-19,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity +NA,NA,a-sust-i2,2018-19,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +NA,NA,a-sust-i2,2018-19,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2018-19,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity 2.704,2.7,a-sust-i2,2018-19,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,331,331.0 4.656,4.66,a-sust-i2,2018-19,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,209,209.0 --Infinity,1,a-sust-i2,2018-19,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity --Infinity,1,a-sust-i2,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2018-19,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2018-19,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity +NA,NA,a-sust-i2,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2018-19,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity -2.256,1,a-sust-i2,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,641,641.0 --Infinity,1,a-sust-i2,2018-19,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2018-19,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity 2.432,2.43,a-sust-i2,2018-19,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,348,348.0 --Infinity,1,a-sust-i2,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity --Infinity,1,a-sust-i2,2018-19,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,863,Infinity --Infinity,1,a-sust-i2,2018-19,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2018-19,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity --Infinity,1,a-sust-i2,2018-19,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2018-19,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity --Infinity,1,a-sust-i2,2018-19,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2018-19,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2018-19,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413,Infinity --Infinity,1,a-sust-i2,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1576,Infinity --Infinity,1,a-sust-i2,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2256,Infinity +NA,NA,a-sust-i2,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity +NA,NA,a-sust-i2,2018-19,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,863,Infinity +NA,NA,a-sust-i2,2018-19,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2018-19,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity +NA,NA,a-sust-i2,2018-19,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2018-19,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2018-19,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2018-19,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2018-19,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413,Infinity +NA,NA,a-sust-i2,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1576,Infinity +NA,NA,a-sust-i2,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2256,Infinity -26.224,1,a-sust-i2,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,2139,2139.0 0.384,1,a-sust-i2,2018-19,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5,238,476.0 0.128,1,a-sust-i2,2018-19,Greenfield - Federal Street School,01140010, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5,246,492.0 @@ -9836,289 +9836,289 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.76,1.76,a-sust-i2,2018-19,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,390,390.0 0.0,1,a-sust-i2,2018-19,Greenfield - Newton School,01140035, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5,250,500.0 -11.36,1,a-sust-i2,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,121,1210.0 --Infinity,1,a-sust-i2,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity --Infinity,1,a-sust-i2,2018-19,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity --Infinity,1,a-sust-i2,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity --Infinity,1,a-sust-i2,2018-19,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2018-19,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2018-19,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2018-19,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2018-19,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2018-19,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2018-19,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity -1.728,1,a-sust-i2,2018-19,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,608,608.0 --Infinity,1,a-sust-i2,2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2018-19,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity --Infinity,1,a-sust-i2,2018-19,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2018-19,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1107,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity --Infinity,1,a-sust-i2,2018-19,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity --Infinity,1,a-sust-i2,2018-19,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +NA,NA,a-sust-i2,2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2018-19,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2018-19,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2018-19,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity +NA,NA,a-sust-i2,2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1107,Infinity +NA,NA,a-sust-i2,2018-19,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2018-19,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity +NA,NA,a-sust-i2,2018-19,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity 0.72,1,a-sust-i2,2018-19,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,455,455.0 --Infinity,1,a-sust-i2,2018-19,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2018-19,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity --Infinity,1,a-sust-i2,2018-19,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,799,Infinity --Infinity,1,a-sust-i2,2018-19,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2018-19,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,627,Infinity --Infinity,1,a-sust-i2,2018-19,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2018-19,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2018-19,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1103,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1841,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2018-19,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity --Infinity,1,a-sust-i2,2018-19,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity --Infinity,1,a-sust-i2,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2018-19,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2018-19,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1253,Infinity --Infinity,1,a-sust-i2,2018-19,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1019,Infinity --Infinity,1,a-sust-i2,2018-19,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2018-19,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2018-19,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2018-19,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2018-19,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2018-19,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity +NA,NA,a-sust-i2,2018-19,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,799,Infinity +NA,NA,a-sust-i2,2018-19,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2018-19,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,627,Infinity +NA,NA,a-sust-i2,2018-19,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2018-19,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2018-19,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1103,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1841,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2018-19,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2018-19,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191,Infinity +NA,NA,a-sust-i2,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2018-19,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2018-19,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1253,Infinity +NA,NA,a-sust-i2,2018-19,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1019,Infinity +NA,NA,a-sust-i2,2018-19,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2018-19,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2018-19,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2018-19,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity -13.28,1,a-sust-i2,2018-19,Holbrook - John F Kennedy,01330018, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,665,1330.0 4.986666666666666,4.99,a-sust-i2,2018-19,Holland - Holland Elementary,01350005, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,226,188.33333333333334 --Infinity,1,a-sust-i2,2018-19,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +NA,NA,a-sust-i2,2018-19,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity -18.92,1,a-sust-i2,2018-19,Holliston - Miller School,01360007, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,673,1682.5 --Infinity,1,a-sust-i2,2018-19,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2018-19,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity -10.293333333333337,1,a-sust-i2,2018-19,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,686,1143.3333333333335 1.52,1.52,a-sust-i2,2018-19,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,405,405.0 --Infinity,1,a-sust-i2,2018-19,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1508,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity --Infinity,1,a-sust-i2,2018-19,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2018-19,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,704,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1508,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2018-19,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2018-19,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,704,Infinity -17.493333333333336,1,a-sust-i2,2018-19,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,478,1593.3333333333335 -8.704,1,a-sust-i2,2018-19,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,522,1044.0 --Infinity,1,a-sust-i2,2018-19,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity +NA,NA,a-sust-i2,2018-19,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity -79.84,1,a-sust-i2,2018-19,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,549,5490.0 -80.16,1,a-sust-i2,2018-19,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,551,5510.0 -181.12,1,a-sust-i2,2018-19,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,1182,11820.0 -127.68,1,a-sust-i2,2018-19,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,848,8480.0 --Infinity,1,a-sust-i2,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity +NA,NA,a-sust-i2,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity -69.76,1,a-sust-i2,2018-19,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,486,4860.0 --Infinity,1,a-sust-i2,2018-19,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2018-19,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2018-19,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2018-19,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity 2.32,2.32,a-sust-i2,2018-19,Hudson - Forest Avenue Elementary,01410015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 --Infinity,1,a-sust-i2,2018-19,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity --Infinity,1,a-sust-i2,2018-19,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2018-19,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2018-19,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2018-19,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i2,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2018-19,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity +NA,NA,a-sust-i2,2018-19,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2018-19,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2018-19,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2018-19,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i2,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity -1.6177777777777773,1,a-sust-i2,2018-19,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,541,601.1111111111111 -8.28,1,a-sust-i2,2018-19,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,407,1017.5 -4.64,1,a-sust-i2,2018-19,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,395,790.0 -3.68,1,a-sust-i2,2018-19,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,365,730.0 --Infinity,1,a-sust-i2,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1456,Infinity +NA,NA,a-sust-i2,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1456,Infinity -1.72,1,a-sust-i2,2018-19,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,729,607.5 -12.72,1,a-sust-i2,2018-19,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1295,1295.0 0.96,1,a-sust-i2,2018-19,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,440,440.0 -1.6,1,a-sust-i2,2018-19,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,600,600.0 --Infinity,1,a-sust-i2,2018-19,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity 0.40615384615384664,1,a-sust-i2,2018-19,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,617,474.6153846153846 --Infinity,1,a-sust-i2,2018-19,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity -43.488,1,a-sust-i2,2018-19,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,3218,3218.0 -7.84,1,a-sust-i2,2018-19,Lawrence - Oliver Partnership School,01490048, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,495,990.0 --Infinity,1,a-sust-i2,2018-19,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,754,Infinity --Infinity,1,a-sust-i2,2018-19,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,145,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,754,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity 3.392,3.39,a-sust-i2,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 2.656,2.66,a-sust-i2,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,334,334.0 --Infinity,1,a-sust-i2,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity --Infinity,1,a-sust-i2,2018-19,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2018-19,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity +NA,NA,a-sust-i2,2018-19,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2018-19,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity 0.48,1,a-sust-i2,2018-19,Leicester - Leicester High,01510505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,470,470.0 2.736,2.74,a-sust-i2,2018-19,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 2.08,2.08,a-sust-i2,2018-19,Leicester - Leicester Middle,01510015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 2.128,2.13,a-sust-i2,2018-19,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,367,367.0 --Infinity,1,a-sust-i2,2018-19,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2018-19,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1072,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2018-19,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity --Infinity,1,a-sust-i2,2018-19,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,914,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2263,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2018-19,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity --Infinity,1,a-sust-i2,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity --Infinity,1,a-sust-i2,2018-19,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2018-19,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2018-19,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2018-19,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1072,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2018-19,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity +NA,NA,a-sust-i2,2018-19,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,914,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2263,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2018-19,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity +NA,NA,a-sust-i2,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i2,2018-19,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2018-19,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity -10.944,1,a-sust-i2,2018-19,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,592,1184.0 -16.448,1,a-sust-i2,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1528,1528.0 0.8,1,a-sust-i2,2018-19,Littleton - Littleton High School,01580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,450,450.0 2.176,2.18,a-sust-i2,2018-19,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,364,364.0 1.616,1.62,a-sust-i2,2018-19,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 --Infinity,1,a-sust-i2,2018-19,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2018-19,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2018-19,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2018-19,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2018-19,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,975,Infinity --Infinity,1,a-sust-i2,2018-19,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2018-19,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3174,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity --Infinity,1,a-sust-i2,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2018-19,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2018-19,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2018-19,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity --Infinity,1,a-sust-i2,2018-19,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity --Infinity,1,a-sust-i2,2018-19,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity +NA,NA,a-sust-i2,2018-19,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2018-19,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2018-19,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2018-19,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2018-19,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,975,Infinity +NA,NA,a-sust-i2,2018-19,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2018-19,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3174,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118,Infinity +NA,NA,a-sust-i2,2018-19,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity +NA,NA,a-sust-i2,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2018-19,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2018-19,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2018-19,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +NA,NA,a-sust-i2,2018-19,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2018-19,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity -16.42666666666667,1,a-sust-i2,2018-19,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,458,1526.6666666666667 -12.96,1,a-sust-i2,2018-19,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,393,1310.0 --Infinity,1,a-sust-i2,2018-19,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1429,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1716,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1786,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1063,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1316,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity --Infinity,1,a-sust-i2,2018-19,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2018-19,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1429,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1716,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1786,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1063,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,671,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1316,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2018-19,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity -5.888,1,a-sust-i2,2018-19,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,434,868.0 -25.54666666666667,1,a-sust-i2,2018-19,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,629,2096.666666666667 -5.28,1,a-sust-i2,2018-19,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.0, 0.8,664,830.0 --Infinity,1,a-sust-i2,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity -5.824,1,a-sust-i2,2018-19,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,432,864.0 --Infinity,1,a-sust-i2,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1218,Infinity --Infinity,1,a-sust-i2,2018-19,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, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2018-19,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity --Infinity,1,a-sust-i2,2018-19,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity --Infinity,1,a-sust-i2,2018-19,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2018-19,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,853,Infinity --Infinity,1,a-sust-i2,2018-19,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2018-19,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1845,Infinity --Infinity,1,a-sust-i2,2018-19,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1169,Infinity +NA,NA,a-sust-i2,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1218,Infinity +NA,NA,a-sust-i2,2018-19,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, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2018-19,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity +NA,NA,a-sust-i2,2018-19,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity +NA,NA,a-sust-i2,2018-19,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2018-19,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,853,Infinity +NA,NA,a-sust-i2,2018-19,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2018-19,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1845,Infinity +NA,NA,a-sust-i2,2018-19,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1169,Infinity 4.448,4.45,a-sust-i2,2018-19,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 --Infinity,1,a-sust-i2,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity 2.112,2.11,a-sust-i2,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,368,368.0 2.784,2.78,a-sust-i2,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,326,326.0 -3.28,1,a-sust-i2,2018-19,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,705,705.0 -6.432,1,a-sust-i2,2018-19,Mansfield - Harold L Qualters Middle,01670035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,902,902.0 --Infinity,1,a-sust-i2,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity --Infinity,1,a-sust-i2,2018-19,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1267,Infinity --Infinity,1,a-sust-i2,2018-19,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity +NA,NA,a-sust-i2,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity +NA,NA,a-sust-i2,2018-19,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1267,Infinity +NA,NA,a-sust-i2,2018-19,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity 2.08,2.08,a-sust-i2,2018-19,Marblehead - Glover,01680020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 --Infinity,1,a-sust-i2,2018-19,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2018-19,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2018-19,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2018-19,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity -0.432,1,a-sust-i2,2018-19,Marblehead - Marblehead High,01680505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1054,527.0 --Infinity,1,a-sust-i2,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2018-19,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i2,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2018-19,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity -0.94,1,a-sust-i2,2018-19,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,447,558.75 --Infinity,1,a-sust-i2,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1402,Infinity --Infinity,1,a-sust-i2,2018-19,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity --Infinity,1,a-sust-i2,2018-19,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2018-19,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity --Infinity,1,a-sust-i2,2018-19,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1075,Infinity --Infinity,1,a-sust-i2,2018-19,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1402,Infinity +NA,NA,a-sust-i2,2018-19,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity +NA,NA,a-sust-i2,2018-19,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2018-19,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2018-19,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1075,Infinity +NA,NA,a-sust-i2,2018-19,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity 2.16,2.16,a-sust-i2,2018-19,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 4.128,4.13,a-sust-i2,2018-19,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,242,242.0 -7.36,1,a-sust-i2,2018-19,Marshfield - Furnace Brook Middle,01710310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,960,960.0 @@ -10126,112 +10126,112 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -13.296,1,a-sust-i2,2018-19,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1331,1331.0 1.232,1.23,a-sust-i2,2018-19,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 2.816,2.82,a-sust-i2,2018-19,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,324,324.0 --Infinity,1,a-sust-i2,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2018-19,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1140,Infinity --Infinity,1,a-sust-i2,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity --Infinity,1,a-sust-i2,2018-19,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2018-19,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2018-19,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2018-19,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2018-19,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1140,Infinity +NA,NA,a-sust-i2,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity +NA,NA,a-sust-i2,2018-19,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2018-19,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2018-19,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2018-19,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity 0.032,1,a-sust-i2,2018-19,Mattapoisett - Center,01730005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,249,498.0 1.856,1.86,a-sust-i2,2018-19,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,192,384.0 -11.36,1,a-sust-i2,2018-19,Maynard - Fowler School,01740305, 0.0, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.4,484,1210.0 -31.28,1,a-sust-i2,2018-19,Maynard - Green Meadow,01740010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,491,2455.0 3.0,3.0,a-sust-i2,2018-19,Maynard - Maynard High,01740505, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,375,312.5 --Infinity,1,a-sust-i2,2018-19,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2018-19,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,799,Infinity --Infinity,1,a-sust-i2,2018-19,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2018-19,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2018-19,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2018-19,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,799,Infinity +NA,NA,a-sust-i2,2018-19,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2018-19,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity -1.568,1,a-sust-i2,2018-19,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,598,598.0 -8.544,1,a-sust-i2,2018-19,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,517,1034.0 -4.96,1,a-sust-i2,2018-19,Medford - Christopher Columbus,01760140, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,405,810.0 --Infinity,1,a-sust-i2,2018-19,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2018-19,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity -17.226666666666667,1,a-sust-i2,2018-19,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,473,1576.6666666666667 -6.336,1,a-sust-i2,2018-19,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,448,896.0 -7.104,1,a-sust-i2,2018-19,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,472,944.0 -13.44,1,a-sust-i2,2018-19,Medford - Medford High,01760505, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,1340,1340.0 -22.026666666666667,1,a-sust-i2,2018-19,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,563,1876.6666666666667 --Infinity,1,a-sust-i2,2018-19,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2018-19,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2018-19,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2018-19,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity -3.328,1,a-sust-i2,2018-19,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,708,708.0 -3.072,1,a-sust-i2,2018-19,Medway - Medway Middle,01770305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,692,692.0 --Infinity,1,a-sust-i2,2018-19,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2018-19,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2018-19,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2018-19,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2018-19,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014,Infinity --Infinity,1,a-sust-i2,2018-19,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity --Infinity,1,a-sust-i2,2018-19,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2018-19,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2018-19,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2018-19,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2018-19,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity --Infinity,1,a-sust-i2,2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2018-19,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1055,Infinity --Infinity,1,a-sust-i2,2018-19,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity --Infinity,1,a-sust-i2,2018-19,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1192,Infinity --Infinity,1,a-sust-i2,2018-19,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1982,Infinity --Infinity,1,a-sust-i2,2018-19,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1381,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2018-19,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2018-19,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2018-19,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2018-19,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i2,2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2018-19,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1055,Infinity +NA,NA,a-sust-i2,2018-19,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity +NA,NA,a-sust-i2,2018-19,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1192,Infinity +NA,NA,a-sust-i2,2018-19,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1982,Infinity +NA,NA,a-sust-i2,2018-19,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1381,Infinity -0.768,1,a-sust-i2,2018-19,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,548,548.0 -4.56,1,a-sust-i2,2018-19,Middleborough - John T. Nichols Middle,01820305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,785,785.0 -11.68,1,a-sust-i2,2018-19,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,615,1230.0 3.856,3.86,a-sust-i2,2018-19,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,259,259.0 -4.304,1,a-sust-i2,2018-19,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,769,769.0 --Infinity,1,a-sust-i2,2018-19,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity --Infinity,1,a-sust-i2,2018-19,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2018-19,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2018-19,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2018-19,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1170,Infinity --Infinity,1,a-sust-i2,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity --Infinity,1,a-sust-i2,2018-19,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1035,Infinity --Infinity,1,a-sust-i2,2018-19,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,991,Infinity --Infinity,1,a-sust-i2,2018-19,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2018-19,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity --Infinity,1,a-sust-i2,2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2018-19,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2018-19,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2018-19,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2018-19,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity --Infinity,1,a-sust-i2,2018-19,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity --Infinity,1,a-sust-i2,2018-19,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity --Infinity,1,a-sust-i2,2018-19,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2018-19,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1036,Infinity --Infinity,1,a-sust-i2,2018-19,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2018-19,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity +NA,NA,a-sust-i2,2018-19,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2018-19,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2018-19,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2018-19,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1170,Infinity +NA,NA,a-sust-i2,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2018-19,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1035,Infinity +NA,NA,a-sust-i2,2018-19,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,991,Infinity +NA,NA,a-sust-i2,2018-19,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2018-19,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity +NA,NA,a-sust-i2,2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2018-19,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2018-19,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2018-19,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2018-19,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity +NA,NA,a-sust-i2,2018-19,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity +NA,NA,a-sust-i2,2018-19,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2018-19,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2018-19,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1036,Infinity +NA,NA,a-sust-i2,2018-19,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity 1.133333333333333,1.13,a-sust-i2,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6, 0.0, 1.2,515,429.1666666666667 --Infinity,1,a-sust-i2,2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity -0.48,1,a-sust-i2,2018-19,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,106,530.0 --Infinity,1,a-sust-i2,2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2018-19,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity +NA,NA,a-sust-i2,2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2018-19,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity -9.12,1,a-sust-i2,2018-19,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,642,1070.0 --Infinity,1,a-sust-i2,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2018-19,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2018-19,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2018-19,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2018-19,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2018-19,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2018-19,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity -12.68363636363636,1,a-sust-i2,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,1422,1292.7272727272725 --Infinity,1,a-sust-i2,2018-19,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2018-19,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity -0.832,1,a-sust-i2,2018-19,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,552,552.0 --Infinity,1,a-sust-i2,2018-19,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1575,Infinity --Infinity,1,a-sust-i2,2018-19,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2018-19,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2018-19,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2018-19,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity --Infinity,1,a-sust-i2,2018-19,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2018-19,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2018-19,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2018-19,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2018-19,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2018-19,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2018-19,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity --Infinity,1,a-sust-i2,2018-19,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity --Infinity,1,a-sust-i2,2018-19,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2018-19,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity --Infinity,1,a-sust-i2,2018-19,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978,Infinity +NA,NA,a-sust-i2,2018-19,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1575,Infinity +NA,NA,a-sust-i2,2018-19,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2018-19,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2018-19,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2018-19,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2018-19,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2018-19,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2018-19,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2018-19,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2018-19,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2018-19,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2018-19,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2018-19,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity +NA,NA,a-sust-i2,2018-19,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2018-19,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2018-19,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978,Infinity -2.944,1,a-sust-i2,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,684,684.0 -10.112,1,a-sust-i2,2018-19,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,566,1132.0 -0.08,1,a-sust-i2,2018-19,Natick - Brown,01980010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,505,505.0 @@ -10241,245 +10241,245 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -5.568,1,a-sust-i2,2018-19,Natick - Memorial,01980043, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,424,848.0 -5.856,1,a-sust-i2,2018-19,Natick - Natick High,01980505, 0.0, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 2.0,1732,866.0 -29.6,1,a-sust-i2,2018-19,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,940,2350.0 --Infinity,1,a-sust-i2,2018-19,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,937,Infinity --Infinity,1,a-sust-i2,2018-19,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2018-19,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,937,Infinity +NA,NA,a-sust-i2,2018-19,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity -10.112,1,a-sust-i2,2018-19,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,566,1132.0 --Infinity,1,a-sust-i2,2018-19,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2018-19,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity -8.064,1,a-sust-i2,2018-19,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,502,1004.0 --Infinity,1,a-sust-i2,2018-19,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2018-19,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1718,Infinity +NA,NA,a-sust-i2,2018-19,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2018-19,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1718,Infinity -12.16,1,a-sust-i2,2018-19,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,756,1260.0 --Infinity,1,a-sust-i2,2018-19,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2018-19,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity -7.872,1,a-sust-i2,2018-19,Needham - William Mitchell,01990040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,496,992.0 --Infinity,1,a-sust-i2,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity -3.216,1,a-sust-i2,2018-19,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,701,701.0 --Infinity,1,a-sust-i2,2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,950,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2171,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1232,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,861,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,791,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2018-19,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,950,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2171,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1232,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,861,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,791,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2018-19,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity 5.616,5,a-sust-i2,2018-19,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,149,149.0 3.04,3.04,a-sust-i2,2018-19,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,310,310.0 -1.856,1,a-sust-i2,2018-19,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,616,616.0 -4.144,1,a-sust-i2,2018-19,Newburyport - Newburyport High,02040505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,759,759.0 -0.752,1,a-sust-i2,2018-19,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,547,547.0 --Infinity,1,a-sust-i2,2018-19,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2018-19,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2018-19,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2018-19,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2018-19,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity -105.28,1,a-sust-i2,2018-19,Newton - Newton North High,02070505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,2124,7080.0 --Infinity,1,a-sust-i2,2018-19,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1911,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1911,Infinity -2.08,1,a-sust-i2,2018-19,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,630,630.0 -2.84,1,a-sust-i2,2018-19,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,271,677.5 --Infinity,1,a-sust-i2,2018-19,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2018-19,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2018-19,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2018-19,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity --Infinity,1,a-sust-i2,2018-19,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2018-19,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2018-19,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2018-19,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2018-19,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2018-19,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2018-19,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2018-19,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2018-19,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2018-19,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2018-19,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity 0.464,1,a-sust-i2,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 --Infinity,1,a-sust-i2,2018-19,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2018-19,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2018-19,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2018-19,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity -22.72,1,a-sust-i2,2018-19,North Andover - Franklin,02110010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,384,1920.0 -10.8,1,a-sust-i2,2018-19,North Andover - Kittredge,02110015, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,235,1175.0 -15.392,1,a-sust-i2,2018-19,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1462,1462.0 -9.584,1,a-sust-i2,2018-19,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1099,1099.0 -15.04,1,a-sust-i2,2018-19,North Andover - Thomson,02110020, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,288,1440.0 --Infinity,1,a-sust-i2,2018-19,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2018-19,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity --Infinity,1,a-sust-i2,2018-19,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity --Infinity,1,a-sust-i2,2018-19,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1108,Infinity --Infinity,1,a-sust-i2,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity --Infinity,1,a-sust-i2,2018-19,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1101,Infinity --Infinity,1,a-sust-i2,2018-19,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity --Infinity,1,a-sust-i2,2018-19,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2018-19,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2018-19,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2018-19,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2018-19,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity --Infinity,1,a-sust-i2,2018-19,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity --Infinity,1,a-sust-i2,2018-19,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity --Infinity,1,a-sust-i2,2018-19,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1108,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1101,Infinity +NA,NA,a-sust-i2,2018-19,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2018-19,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2018-19,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2018-19,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2018-19,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2018-19,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2018-19,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity +NA,NA,a-sust-i2,2018-19,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity +NA,NA,a-sust-i2,2018-19,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity -2.336,1,a-sust-i2,2018-19,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,323,646.0 -3.2,1,a-sust-i2,2018-19,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,350,700.0 --Infinity,1,a-sust-i2,2018-19,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2018-19,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity -4.032,1,a-sust-i2,2018-19,North Reading - North Reading High,02170505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,752,752.0 2.24,2.24,a-sust-i2,2018-19,North Reading - North Reading Middle,02170305, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 0.0, 1.5,540,360.0 --Infinity,1,a-sust-i2,2018-19,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2018-19,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2018-19,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2018-19,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2018-19,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2018-19,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity 2.688,2.69,a-sust-i2,2018-19,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,332,332.0 --Infinity,1,a-sust-i2,2018-19,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,849,Infinity --Infinity,1,a-sust-i2,2018-19,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2018-19,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,849,Infinity +NA,NA,a-sust-i2,2018-19,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity 0.08,1,a-sust-i2,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,495,495.0 --Infinity,1,a-sust-i2,2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1450,Infinity --Infinity,1,a-sust-i2,2018-19,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1450,Infinity +NA,NA,a-sust-i2,2018-19,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity 4.016,4.02,a-sust-i2,2018-19,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,249,249.0 3.568,3.57,a-sust-i2,2018-19,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,277,277.0 4.096,4.1,a-sust-i2,2018-19,Northborough - Marion E Zeh,02130020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,244,244.0 -1.264,1,a-sust-i2,2018-19,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,579,579.0 -20.96,1,a-sust-i2,2018-19,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,362,1810.0 --Infinity,1,a-sust-i2,2018-19,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2018-19,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity -29.173333333333336,1,a-sust-i2,2018-19,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,697,2323.3333333333335 -17.226666666666667,1,a-sust-i2,2018-19,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,473,1576.6666666666667 -11.984,1,a-sust-i2,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1249,1249.0 --Infinity,1,a-sust-i2,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2018-19,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2018-19,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2018-19,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2018-19,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity --Infinity,1,a-sust-i2,2018-19,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2018-19,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2018-19,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2018-19,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2018-19,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2018-19,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,985,Infinity --Infinity,1,a-sust-i2,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2018-19,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity --Infinity,1,a-sust-i2,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity --Infinity,1,a-sust-i2,2018-19,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2018-19,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2018-19,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2018-19,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2018-19,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2018-19,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2018-19,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2018-19,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2018-19,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity +NA,NA,a-sust-i2,2018-19,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2018-19,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2018-19,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2018-19,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2018-19,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2018-19,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,985,Infinity +NA,NA,a-sust-i2,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2018-19,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +NA,NA,a-sust-i2,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i2,2018-19,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2018-19,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2018-19,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2018-19,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2018-19,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity -0.512,1,a-sust-i2,2018-19,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,532,532.0 --Infinity,1,a-sust-i2,2018-19,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19,Infinity --Infinity,1,a-sust-i2,2018-19,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2018-19,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2018-19,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19,Infinity +NA,NA,a-sust-i2,2018-19,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2018-19,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity -9.28,1,a-sust-i2,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,648,1080.0 --Infinity,1,a-sust-i2,2018-19,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.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1439,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1436,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2018-19,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2018-19,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity --Infinity,1,a-sust-i2,2018-19,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2018-19,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2018-19,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity --Infinity,1,a-sust-i2,2018-19,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2018-19,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,849,Infinity +NA,NA,a-sust-i2,2018-19,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.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1439,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1436,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2018-19,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2018-19,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2018-19,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2018-19,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2018-19,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2018-19,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2018-19,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,849,Infinity 0.64,1,a-sust-i2,2018-19,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,230,460.0 -2.912,1,a-sust-i2,2018-19,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,341,682.0 0.112,1,a-sust-i2,2018-19,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,493,493.0 0.48,1,a-sust-i2,2018-19,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,235,470.0 1.632,1.63,a-sust-i2,2018-19,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,398,398.0 -3.84,1,a-sust-i2,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,740,740.0 --Infinity,1,a-sust-i2,2018-19,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity --Infinity,1,a-sust-i2,2018-19,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, 0.0, 0.0, 0.0,119,Infinity --Infinity,1,a-sust-i2,2018-19,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, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,789,Infinity --Infinity,1,a-sust-i2,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2018-19,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2018-19,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2018-19,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2018-19,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, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i2,2018-19,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, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,789,Infinity +NA,NA,a-sust-i2,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2018-19,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2018-19,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity -8.928,1,a-sust-i2,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,529,1058.0 -4.8,1,a-sust-i2,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,400,800.0 --Infinity,1,a-sust-i2,2018-19,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,815,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity --Infinity,1,a-sust-i2,2018-19,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2018-19,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2018-19,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2018-19,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,815,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity +NA,NA,a-sust-i2,2018-19,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2018-19,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2018-19,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2018-19,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity 2.208,2.21,a-sust-i2,2018-19,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,362,362.0 5.104,5,a-sust-i2,2018-19,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,181,181.0 -1.104,1,a-sust-i2,2018-19,Plymouth - Indian Brook,02390012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,569,569.0 3.744,3.74,a-sust-i2,2018-19,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 3.544,3.54,a-sust-i2,2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,557,278.5 -8.864,1,a-sust-i2,2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1054,1054.0 --Infinity,1,a-sust-i2,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +NA,NA,a-sust-i2,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity -25.786666666666672,1,a-sust-i2,2018-19,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,1267,2111.666666666667 -9.184,1,a-sust-i2,2018-19,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1074,1074.0 0.96,1,a-sust-i2,2018-19,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,704,440.0 3.786666666666666,3.79,a-sust-i2,2018-19,Plymouth - South Elementary,02390046, 0.0, 0.0, 2.0, 0.0, 0.4, 0.0, 0.0, 2.4,632,263.33333333333337 2.368,2.37,a-sust-i2,2018-19,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 4.816,4.82,a-sust-i2,2018-19,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,199,199.0 --Infinity,1,a-sust-i2,2018-19,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, 0.0,1125,Infinity +NA,NA,a-sust-i2,2018-19,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, 0.0,1125,Infinity 4.666666666666666,4.67,a-sust-i2,2018-19,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,125,208.33333333333334 --Infinity,1,a-sust-i2,2018-19,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity --Infinity,1,a-sust-i2,2018-19,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2018-19,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity --Infinity,1,a-sust-i2,2018-19,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2018-19,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity --Infinity,1,a-sust-i2,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity --Infinity,1,a-sust-i2,2018-19,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity --Infinity,1,a-sust-i2,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2018-19,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2018-19,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +NA,NA,a-sust-i2,2018-19,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2018-19,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2018-19,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2018-19,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity +NA,NA,a-sust-i2,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2018-19,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +NA,NA,a-sust-i2,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2018-19,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity -6.16,1,a-sust-i2,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,177,885.0 -2.84,1,a-sust-i2,2018-19,Quincy - Atherton Hough,02430040, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,271,677.5 -20.48,1,a-sust-i2,2018-19,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.3,534,1780.0 -17.84,1,a-sust-i2,2018-19,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,323,1615.0 -11.786666666666667,1,a-sust-i2,2018-19,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,371,1236.6666666666667 --Infinity,1,a-sust-i2,2018-19,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2018-19,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity -10.506666666666668,1,a-sust-i2,2018-19,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,347,1156.6666666666667 --Infinity,1,a-sust-i2,2018-19,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2018-19,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2018-19,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2018-19,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity -18.933333333333337,1,a-sust-i2,2018-19,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,505,1683.3333333333335 -21.44,1,a-sust-i2,2018-19,Quincy - Merrymount,02430060, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,368,1840.0 -25.6,1,a-sust-i2,2018-19,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,420,2100.0 @@ -10490,253 +10490,253 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.488,1,a-sust-i2,2018-19,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,359,718.0 -10.453333333333335,1,a-sust-i2,2018-19,Quincy - Squantum,02430095, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,346,1153.3333333333335 -2.784,1,a-sust-i2,2018-19,Quincy - Wollaston School,02430110, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,337,674.0 --Infinity,1,a-sust-i2,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +NA,NA,a-sust-i2,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity -11.936,1,a-sust-i2,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,623,1246.0 --Infinity,1,a-sust-i2,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2018-19,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2018-19,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2018-19,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2018-19,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity --Infinity,1,a-sust-i2,2018-19,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2018-19,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2018-19,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2018-19,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2018-19,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +NA,NA,a-sust-i2,2018-19,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity 2.016,2.02,a-sust-i2,2018-19,Reading - Alice M Barrows,02460002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,374,374.0 4.456,4.46,a-sust-i2,2018-19,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,443,221.5 1.968,1.97,a-sust-i2,2018-19,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 1.408,1.41,a-sust-i2,2018-19,Reading - J Warren Killam,02460017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,412,412.0 1.824,1.82,a-sust-i2,2018-19,Reading - Joshua Eaton,02460010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,386,386.0 --Infinity,1,a-sust-i2,2018-19,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2018-19,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity -4.51,1,a-sust-i2,2018-19,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,1251,781.875 3.624,3.62,a-sust-i2,2018-19,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,547,273.5 3.12,3.12,a-sust-i2,2018-19,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,305,305.0 --Infinity,1,a-sust-i2,2018-19,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1978,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity --Infinity,1,a-sust-i2,2018-19,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2018-19,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2018-19,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2018-19,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2018-19,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1978,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity +NA,NA,a-sust-i2,2018-19,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2018-19,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2018-19,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2018-19,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity -14.528,1,a-sust-i2,2018-19,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,704,1408.0 --Infinity,1,a-sust-i2,2018-19,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2018-19,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity -5.28,1,a-sust-i2,2018-19,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,332,830.0 --Infinity,1,a-sust-i2,2018-19,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2018-19,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity 1.712,1.71,a-sust-i2,2018-19,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,393,393.0 --Infinity,1,a-sust-i2,2018-19,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2018-19,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2018-19,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2018-19,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity 2.72,2.72,a-sust-i2,2018-19,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,66,330.0 --Infinity,1,a-sust-i2,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1518,Infinity --Infinity,1,a-sust-i2,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1577,Infinity --Infinity,1,a-sust-i2,2018-19,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2018-19,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2018-19,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2018-19,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1518,Infinity +NA,NA,a-sust-i2,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1577,Infinity +NA,NA,a-sust-i2,2018-19,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2018-19,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2018-19,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2018-19,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity 5.226666666666666,5,a-sust-i2,2018-19,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,52,173.33333333333334 --Infinity,1,a-sust-i2,2018-19,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2018-19,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity --Infinity,1,a-sust-i2,2018-19,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity +NA,NA,a-sust-i2,2018-19,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2018-19,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity +NA,NA,a-sust-i2,2018-19,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity -5.12,1,a-sust-i2,2018-19,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,410,820.0 -1.264,1,a-sust-i2,2018-19,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,579,579.0 --Infinity,1,a-sust-i2,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2018-19,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2018-19,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity -5.008,1,a-sust-i2,2018-19,Sandwich - Oak Ridge,02610025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,813,813.0 -12.544,1,a-sust-i2,2018-19,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,642,1284.0 -6.272,1,a-sust-i2,2018-19,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,446,892.0 --Infinity,1,a-sust-i2,2018-19,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2018-19,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2018-19,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2018-19,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2018-19,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,699,Infinity --Infinity,1,a-sust-i2,2018-19,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2018-19,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i2,2018-19,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2018-19,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2018-19,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2018-19,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2018-19,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,699,Infinity +NA,NA,a-sust-i2,2018-19,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2018-19,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity 2.784,2.78,a-sust-i2,2018-19,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,326,326.0 -2.912,1,a-sust-i2,2018-19,Scituate - Gates Middle School,02640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,682,682.0 3.824,3.82,a-sust-i2,2018-19,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 2.368,2.37,a-sust-i2,2018-19,Scituate - Jenkins Elementary School,02640015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 -17.573333333333334,1,a-sust-i2,2018-19,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6,959,1598.3333333333335 1.424,1.42,a-sust-i2,2018-19,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,411,411.0 --Infinity,1,a-sust-i2,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2018-19,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2018-19,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2018-19,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity --Infinity,1,a-sust-i2,2018-19,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2018-19,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2018-19,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2018-19,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2018-19,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +NA,NA,a-sust-i2,2018-19,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2018-19,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity -9.184,1,a-sust-i2,2018-19,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,537,1074.0 0.16,1,a-sust-i2,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,49,490.0 -27.872,1,a-sust-i2,2018-19,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1121,2242.0 --Infinity,1,a-sust-i2,2018-19,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity +NA,NA,a-sust-i2,2018-19,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity -12.704,1,a-sust-i2,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1294,1294.0 -0.26,1,a-sust-i2,2018-19,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,413,516.25 --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1005,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1835,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2018-19,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2018-19,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1005,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1835,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2018-19,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2018-19,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,128,Infinity -11.856,1,a-sust-i2,2018-19,Silver Lake - Silver Lake Regional High,07600505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1241,1241.0 3.888,3.89,a-sust-i2,2018-19,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,514,257.0 -11.68,1,a-sust-i2,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,369,1230.0 --Infinity,1,a-sust-i2,2018-19,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2018-19,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity -0.21333333333333393,1,a-sust-i2,2018-19,Somerset - North Elementary,02730008, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,462,513.3333333333334 --Infinity,1,a-sust-i2,2018-19,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2018-19,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity -34.4,1,a-sust-i2,2018-19,Somerset - South,02730015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,265,2650.0 -25.184,1,a-sust-i2,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1037,2074.0 --Infinity,1,a-sust-i2,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1251,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2018-19,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1251,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2018-19,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity -5.888,1,a-sust-i2,2018-19,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,434,868.0 --Infinity,1,a-sust-i2,2018-19,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2018-19,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2018-19,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2018-19,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity -7.0,1,a-sust-i2,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.3, 0.8,750,937.5 --Infinity,1,a-sust-i2,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,940,Infinity --Infinity,1,a-sust-i2,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity +NA,NA,a-sust-i2,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,940,Infinity +NA,NA,a-sust-i2,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity -2.02,1,a-sust-i2,2018-19,Southampton - William E Norris,02750005, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,501,626.25 3.872,3.87,a-sust-i2,2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,258,258.0 3.872,3.87,a-sust-i2,2018-19,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,258,258.0 2.784,2.78,a-sust-i2,2018-19,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,326,326.0 1.104,1.1,a-sust-i2,2018-19,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,431,431.0 --Infinity,1,a-sust-i2,2018-19,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2018-19,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2018-19,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2018-19,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2018-19,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2018-19,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2018-19,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2018-19,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2018-19,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2018-19,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2018-19,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2018-19,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity -15.104,1,a-sust-i2,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1444,1444.0 --Infinity,1,a-sust-i2,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2018-19,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity --Infinity,1,a-sust-i2,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2018-19,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1131,Infinity +NA,NA,a-sust-i2,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2018-19,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity +NA,NA,a-sust-i2,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2018-19,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1131,Infinity -6.656,1,a-sust-i2,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,458,916.0 -14.784,1,a-sust-i2,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,712,1424.0 --Infinity,1,a-sust-i2,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity -0.768,1,a-sust-i2,2018-19,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,274,548.0 -4.96,1,a-sust-i2,2018-19,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,243,810.0 -0.76,1,a-sust-i2,2018-19,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.8,438,547.5 -14.613333333333335,1,a-sust-i2,2018-19,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,424,1413.3333333333335 --Infinity,1,a-sust-i2,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,764,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity --Infinity,1,a-sust-i2,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.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1015,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,759,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1415,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2104,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1260,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2018-19,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2018-19,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2018-19,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2018-19,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity --Infinity,1,a-sust-i2,2018-19,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,848,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2018-19,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1039,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,764,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity +NA,NA,a-sust-i2,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.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1015,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,759,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1415,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2104,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1260,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2018-19,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2018-19,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2018-19,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2018-19,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2018-19,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity +NA,NA,a-sust-i2,2018-19,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,848,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2018-19,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1039,Infinity 3.565,3.57,a-sust-i2,2018-19,Sturbridge - Burgess Elementary,02870005, 0.0, 1.2, 2.0, 0.0, 0.0, 0.0, 0.0, 3.2,887,277.1875 --Infinity,1,a-sust-i2,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity +NA,NA,a-sust-i2,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity -4.573333333333334,1,a-sust-i2,2018-19,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,943,785.8333333333334 2.624,2.62,a-sust-i2,2018-19,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,336,336.0 0.4,1,a-sust-i2,2018-19,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,475,475.0 2.272,2.27,a-sust-i2,2018-19,Sudbury - Josiah Haynes,02880010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 --Infinity,1,a-sust-i2,2018-19,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2018-19,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2018-19,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2018-19,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2018-19,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2018-19,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2018-19,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2018-19,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2018-19,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2018-19,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2018-19,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2018-19,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity -26.08,1,a-sust-i2,2018-19,Swampscott - Clarke,02910005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,213,2130.0 -2.272,1,a-sust-i2,2018-19,Swampscott - Hadley,02910010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,321,642.0 0.352,1,a-sust-i2,2018-19,Swampscott - Stanley,02910020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,239,478.0 -4.568888888888889,1,a-sust-i2,2018-19,Swampscott - Swampscott High,02910505, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,707,785.5555555555555 -3.712,1,a-sust-i2,2018-19,Swampscott - Swampscott Middle,02910305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,732,732.0 --Infinity,1,a-sust-i2,2018-19,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2018-19,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity --Infinity,1,a-sust-i2,2018-19,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2018-19,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity --Infinity,1,a-sust-i2,2018-19,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2018-19,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2143,Infinity +NA,NA,a-sust-i2,2018-19,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2018-19,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +NA,NA,a-sust-i2,2018-19,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2018-19,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2018-19,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2018-19,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2143,Infinity -1.472,1,a-sust-i2,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,592,592.0 3.483076923076923,3.48,a-sust-i2,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.6, 1.0, 0.0, 1.0, 0.0, 0.0, 2.6,734,282.3076923076923 --Infinity,1,a-sust-i2,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity -33.44,1,a-sust-i2,2018-19,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.1, 0.0, 0.0, 0.2, 0.0, 0.0, 0.3,777,2590.0 -24.213333333333335,1,a-sust-i2,2018-19,Taunton - East Taunton Elementary,02930010, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,604,2013.3333333333335 -8.586666666666668,1,a-sust-i2,2018-19,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,311,1036.6666666666667 @@ -10750,178 +10750,178 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -13.12,1,a-sust-i2,2018-19,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,528,1320.0 -8.16,1,a-sust-i2,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,101,1010.0 -44.48,1,a-sust-i2,2018-19,Taunton - Taunton High,02930505, 0.0, 0.0, 0.5, 0.0, 0.3, 0.0, 0.0, 0.8,2624,3280.0 --Infinity,1,a-sust-i2,2018-19,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2018-19,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2018-19,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2018-19,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2018-19,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2018-19,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2018-19,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity --Infinity,1,a-sust-i2,2018-19,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2018-19,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2018-19,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1024,Infinity --Infinity,1,a-sust-i2,2018-19,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2018-19,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2018-19,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2018-19,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity --Infinity,1,a-sust-i2,2018-19,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2018-19,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity --Infinity,1,a-sust-i2,2018-19,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2018-19,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2018-19,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2018-19,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2018-19,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2018-19,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2018-19,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2018-19,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2018-19,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity +NA,NA,a-sust-i2,2018-19,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2018-19,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2018-19,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1024,Infinity +NA,NA,a-sust-i2,2018-19,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2018-19,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2018-19,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2018-19,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity +NA,NA,a-sust-i2,2018-19,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2018-19,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity +NA,NA,a-sust-i2,2018-19,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2018-19,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity -0.272,1,a-sust-i2,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,517,517.0 2.208,2.21,a-sust-i2,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,724,362.0 --Infinity,1,a-sust-i2,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity --Infinity,1,a-sust-i2,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity --Infinity,1,a-sust-i2,2018-19,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i2,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity +NA,NA,a-sust-i2,2018-19,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity -3.22,1,a-sust-i2,2018-19,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,561,701.25 -1.424,1,a-sust-i2,2018-19,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,589,589.0 -0.448,1,a-sust-i2,2018-19,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,528,528.0 --Infinity,1,a-sust-i2,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity 1.872,1.87,a-sust-i2,2018-19,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 2.224,2.22,a-sust-i2,2018-19,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,361,361.0 --Infinity,1,a-sust-i2,2018-19,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity 0.336,1,a-sust-i2,2018-19,Wachusett - Dawson,07750020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,479,479.0 --Infinity,1,a-sust-i2,2018-19,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i2,2018-19,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2018-19,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity --Infinity,1,a-sust-i2,2018-19,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity -5.136,1,a-sust-i2,2018-19,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,821,821.0 --Infinity,1,a-sust-i2,2018-19,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2018-19,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2018-19,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2018-19,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity -25.648,1,a-sust-i2,2018-19,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,2103,2103.0 --Infinity,1,a-sust-i2,2018-19,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2018-19,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity -8.624,1,a-sust-i2,2018-19,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1039,1039.0 0.96,1,a-sust-i2,2018-19,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,220,440.0 --Infinity,1,a-sust-i2,2018-19,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,992,Infinity +NA,NA,a-sust-i2,2018-19,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,992,Infinity 0.608,1,a-sust-i2,2018-19,Wakefield - Walton,03050040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,231,462.0 --Infinity,1,a-sust-i2,2018-19,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2018-19,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity 5.648,5,a-sust-i2,2018-19,Wales - Wales Elementary,03060005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,147,147.0 --Infinity,1,a-sust-i2,2018-19,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity --Infinity,1,a-sust-i2,2018-19,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity --Infinity,1,a-sust-i2,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2018-19,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2018-19,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2018-19,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2018-19,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1128,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2018-19,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1128,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity -5.28,1,a-sust-i2,2018-19,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,415,830.0 --Infinity,1,a-sust-i2,2018-19,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1609,Infinity --Infinity,1,a-sust-i2,2018-19,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2018-19,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2018-19,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2018-19,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2018-19,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity --Infinity,1,a-sust-i2,2018-19,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity --Infinity,1,a-sust-i2,2018-19,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2018-19,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2018-19,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2018-19,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2018-19,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2018-19,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity --Infinity,1,a-sust-i2,2018-19,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1609,Infinity +NA,NA,a-sust-i2,2018-19,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2018-19,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2018-19,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2018-19,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2018-19,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603,Infinity +NA,NA,a-sust-i2,2018-19,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2018-19,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2018-19,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2018-19,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2018-19,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2018-19,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2018-19,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity +NA,NA,a-sust-i2,2018-19,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity -4.2285714285714295,1,a-sust-i2,2018-19,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.7,535,764.2857142857143 2.0,2.0,a-sust-i2,2018-19,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,375,375.0 -0.64,1,a-sust-i2,2018-19,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,270,540.0 --Infinity,1,a-sust-i2,2018-19,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +NA,NA,a-sust-i2,2018-19,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity 0.864,1,a-sust-i2,2018-19,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.5, 1.5,669,446.0 --Infinity,1,a-sust-i2,2018-19,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2018-19,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity +NA,NA,a-sust-i2,2018-19,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2018-19,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity -1.12,1,a-sust-i2,2018-19,Webster - Webster Middle School,03160315, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,570,570.0 --Infinity,1,a-sust-i2,2018-19,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1159,Infinity --Infinity,1,a-sust-i2,2018-19,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1529,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1159,Infinity +NA,NA,a-sust-i2,2018-19,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1529,Infinity 3.8,3.8,a-sust-i2,2018-19,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,105,262.5 --Infinity,1,a-sust-i2,2018-19,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2018-19,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2018-19,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2018-19,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity 3.808,3.81,a-sust-i2,2018-19,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,262,262.0 --Infinity,1,a-sust-i2,2018-19,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2018-19,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity -2.016,1,a-sust-i2,2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,626,626.0 4.288,4.29,a-sust-i2,2018-19,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,116,232.0 --Infinity,1,a-sust-i2,2018-19,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2018-19,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2018-19,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2018-19,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity 4.576,4.58,a-sust-i2,2018-19,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,214,214.0 --Infinity,1,a-sust-i2,2018-19,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2018-19,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity +NA,NA,a-sust-i2,2018-19,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2018-19,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,516,Infinity -5.6,1,a-sust-i2,2018-19,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,255,850.0 --Infinity,1,a-sust-i2,2018-19,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity +NA,NA,a-sust-i2,2018-19,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity -16.506666666666668,1,a-sust-i2,2018-19,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.6,919,1531.6666666666667 --Infinity,1,a-sust-i2,2018-19,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2018-19,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2018-19,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2018-19,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity 1.36,1.36,a-sust-i2,2018-19,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,415,415.0 --Infinity,1,a-sust-i2,2018-19,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity --Infinity,1,a-sust-i2,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2018-19,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity +NA,NA,a-sust-i2,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity -1.216,1,a-sust-i2,2018-19,Westborough - Westborough High,03210505, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1152,576.0 --Infinity,1,a-sust-i2,2018-19,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228,Infinity --Infinity,1,a-sust-i2,2018-19,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,805,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,805,Infinity -17.664,1,a-sust-i2,2018-19,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,802,1604.0 --Infinity,1,a-sust-i2,2018-19,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2018-19,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1724,Infinity --Infinity,1,a-sust-i2,2018-19,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i2,2018-19,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2018-19,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1724,Infinity +NA,NA,a-sust-i2,2018-19,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity -41.76,1,a-sust-i2,2018-19,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,311,3110.0 --Infinity,1,a-sust-i2,2018-19,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2018-19,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity -4.568888888888889,1,a-sust-i2,2018-19,Weston - Weston High,03300505, 0.0, 0.8, 0.0, 0.0, 0.1, 0.0, 0.0, 0.9,707,785.5555555555555 -0.8355555555555547,1,a-sust-i2,2018-19,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,497,552.2222222222222 -38.08,1,a-sust-i2,2018-19,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,288,2880.0 --Infinity,1,a-sust-i2,2018-19,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2018-19,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2018-19,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2018-19,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity -1.552,1,a-sust-i2,2018-19,Westport - Westport Junior/Senior High School,03310515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,597,597.0 5.104,5,a-sust-i2,2018-19,Westwood - Deerfield School,03350010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,181,181.0 3.504,3.5,a-sust-i2,2018-19,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 --Infinity,1,a-sust-i2,2018-19,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity +NA,NA,a-sust-i2,2018-19,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity 3.472,3.47,a-sust-i2,2018-19,Westwood - Martha Jones,03350017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,283,283.0 2.8342857142857136,2.83,a-sust-i2,2018-19,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,226,322.8571428571429 -8.144,1,a-sust-i2,2018-19,Westwood - Westwood High,03350505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1009,1009.0 --Infinity,1,a-sust-i2,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i2,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity 2.928,2.93,a-sust-i2,2018-19,Westwood - William E Sheehan,03350025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,317,317.0 --Infinity,1,a-sust-i2,2018-19,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,885,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,883,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1863,Infinity --Infinity,1,a-sust-i2,2018-19,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,885,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,883,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1863,Infinity +NA,NA,a-sust-i2,2018-19,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity 3.552,3.55,a-sust-i2,2018-19,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,139,278.0 -7.328,1,a-sust-i2,2018-19,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,479,958.0 -8.48,1,a-sust-i2,2018-19,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,515,1030.0 @@ -10929,43 +10929,43 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -8.896,1,a-sust-i2,2018-19,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,528,1056.0 -32.864,1,a-sust-i2,2018-19,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1277,2554.0 -1.28,1,a-sust-i2,2018-19,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,580,580.0 --Infinity,1,a-sust-i2,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1246,Infinity +NA,NA,a-sust-i2,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1246,Infinity -3.76,1,a-sust-i2,2018-19,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,147,735.0 --Infinity,1,a-sust-i2,2018-19,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity --Infinity,1,a-sust-i2,2018-19,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2018-19,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2018-19,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity -3.552,1,a-sust-i2,2018-19,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,361,722.0 4.224,4.22,a-sust-i2,2018-19,Wilmington - West Intermediate,03420080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,236,236.0 --Infinity,1,a-sust-i2,2018-19,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2018-19,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity --Infinity,1,a-sust-i2,2018-19,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity --Infinity,1,a-sust-i2,2018-19,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2018-19,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity --Infinity,1,a-sust-i2,2018-19,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2018-19,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2018-19,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity --Infinity,1,a-sust-i2,2018-19,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2018-19,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2018-19,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2018-19,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1104,Infinity --Infinity,1,a-sust-i2,2018-19,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity --Infinity,1,a-sust-i2,2018-19,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2018-19,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1359,Infinity --Infinity,1,a-sust-i2,2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2018-19,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2018-19,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2018-19,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1301,Infinity +NA,NA,a-sust-i2,2018-19,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2018-19,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,829,Infinity +NA,NA,a-sust-i2,2018-19,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity +NA,NA,a-sust-i2,2018-19,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2018-19,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2018-19,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2018-19,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2018-19,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +NA,NA,a-sust-i2,2018-19,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2018-19,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2018-19,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2018-19,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1104,Infinity +NA,NA,a-sust-i2,2018-19,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2018-19,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2018-19,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1359,Infinity +NA,NA,a-sust-i2,2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2018-19,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2018-19,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2018-19,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1301,Infinity -8.24,1,a-sust-i2,2018-19,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,609,1015.0 -10.266666666666667,1,a-sust-i2,2018-19,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,685,1141.6666666666667 -13.62,1,a-sust-i2,2018-19,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,1081,1351.25 @@ -10985,7 +10985,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.848,1,a-sust-i2,2018-19,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,553,553.0 -5.024,1,a-sust-i2,2018-19,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,407,814.0 1.568,1.57,a-sust-i2,2018-19,Worcester - Grafton Street,03480115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,402,402.0 --Infinity,1,a-sust-i2,2018-19,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +NA,NA,a-sust-i2,2018-19,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity -7.2,1,a-sust-i2,2018-19,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,285,950.0 -5.12,1,a-sust-i2,2018-19,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,410,820.0 -5.16,1,a-sust-i2,2018-19,Worcester - Lake View,03480145, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,329,822.5 @@ -11003,7 +11003,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -8.4,1,a-sust-i2,2018-19,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,410,1025.0 -21.76,1,a-sust-i2,2018-19,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,372,1860.0 -3.0666666666666678,1,a-sust-i2,2018-19,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,415,691.6666666666667 --Infinity,1,a-sust-i2,2018-19,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2018-19,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity -12.68,1,a-sust-i2,2018-19,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,517,1292.5 0.32,1,a-sust-i2,2018-19,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,144,480.0 -6.84,1,a-sust-i2,2018-19,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,371,927.5 @@ -11014,145 +11014,145 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.08,2.08,a-sust-i2,2018-19,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,74,370.0 -6.144,1,a-sust-i2,2018-19,Wrentham - Charles E Roderick,03500010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,442,884.0 -10.144,1,a-sust-i2,2018-19,Wrentham - Delaney,03500003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,567,1134.0 --Infinity,1,a-sust-i2,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1425,Infinity --Infinity,1,a-sust-i2,2017-18,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84,Infinity +NA,NA,a-sust-i2,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1425,Infinity +NA,NA,a-sust-i2,2017-18,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84,Infinity -0.32,1,a-sust-i2,2017-18,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,520,520.0 -2.992,1,a-sust-i2,2017-18,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,687,687.0 1.216,1.22,a-sust-i2,2017-18,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,424,424.0 --Infinity,1,a-sust-i2,2017-18,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2017-18,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity -8.768,1,a-sust-i2,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,524,1048.0 --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1827,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity --Infinity,1,a-sust-i2,2017-18,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2017-18,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,993,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1175,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity --Infinity,1,a-sust-i2,2017-18,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2017-18,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2017-18,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity --Infinity,1,a-sust-i2,2017-18,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity --Infinity,1,a-sust-i2,2017-18,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity --Infinity,1,a-sust-i2,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2017-18,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2017-18,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2017-18,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,933,Infinity --Infinity,1,a-sust-i2,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1782,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2017-18,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1827,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity +NA,NA,a-sust-i2,2017-18,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2017-18,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,993,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1175,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2017-18,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2017-18,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2017-18,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +NA,NA,a-sust-i2,2017-18,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i2,2017-18,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2017-18,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2017-18,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2017-18,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,933,Infinity +NA,NA,a-sust-i2,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2017-18,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1782,Infinity +NA,NA,a-sust-i2,2017-18,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2017-18,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2017-18,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity +NA,NA,a-sust-i2,2017-18,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2017-18,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2017-18,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2017-18,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2017-18,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2017-18,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity -13.2,1,a-sust-i2,2017-18,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1325,1325.0 -7.616,1,a-sust-i2,2017-18,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,488,976.0 --Infinity,1,a-sust-i2,2017-18,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i2,2017-18,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2017-18,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i2,2017-18,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity -5.44,1,a-sust-i2,2017-18,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,420,840.0 --Infinity,1,a-sust-i2,2017-18,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity --Infinity,1,a-sust-i2,2017-18,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1258,Infinity --Infinity,1,a-sust-i2,2017-18,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2017-18,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity --Infinity,1,a-sust-i2,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity --Infinity,1,a-sust-i2,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2017-18,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,769,Infinity --Infinity,1,a-sust-i2,2017-18,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity --Infinity,1,a-sust-i2,2017-18,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2017-18,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity --Infinity,1,a-sust-i2,2017-18,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity --Infinity,1,a-sust-i2,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1113,Infinity --Infinity,1,a-sust-i2,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2017-18,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2017-18,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2017-18,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i2,2017-18,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1258,Infinity +NA,NA,a-sust-i2,2017-18,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2017-18,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity +NA,NA,a-sust-i2,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity +NA,NA,a-sust-i2,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2017-18,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,769,Infinity +NA,NA,a-sust-i2,2017-18,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2017-18,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2017-18,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i2,2017-18,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1113,Infinity +NA,NA,a-sust-i2,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2017-18,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2017-18,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity -11.392,1,a-sust-i2,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1212,1212.0 --Infinity,1,a-sust-i2,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity -19.248,1,a-sust-i2,2017-18,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1703,1703.0 --Infinity,1,a-sust-i2,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2017-18,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity -6.656,1,a-sust-i2,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,458,916.0 --Infinity,1,a-sust-i2,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity --Infinity,1,a-sust-i2,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity --Infinity,1,a-sust-i2,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2017-18,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2017-18,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity -12.224,1,a-sust-i2,2017-18,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,632,1264.0 -17.632,1,a-sust-i2,2017-18,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,801,1602.0 -7.946666666666668,1,a-sust-i2,2017-18,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,299,996.6666666666667 -8.053333333333335,1,a-sust-i2,2017-18,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,301,1003.3333333333334 -2.257777777777777,1,a-sust-i2,2017-18,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.4, 0.9,577,641.1111111111111 --Infinity,1,a-sust-i2,2017-18,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2017-18,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2017-18,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2017-18,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity -5.088,1,a-sust-i2,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,409,818.0 -3.84,1,a-sust-i2,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,370,740.0 -4.8,1,a-sust-i2,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,400,800.0 -8.864,1,a-sust-i2,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,527,1054.0 -6.856,1,a-sust-i2,2017-18,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1857,928.5 -3.792,1,a-sust-i2,2017-18,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,737,737.0 --Infinity,1,a-sust-i2,2017-18,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,857,Infinity +NA,NA,a-sust-i2,2017-18,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,857,Infinity 3.856,3.86,a-sust-i2,2017-18,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,259,259.0 --Infinity,1,a-sust-i2,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i2,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity 2.656,2.66,a-sust-i2,2017-18,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,334,334.0 3.84,3.84,a-sust-i2,2017-18,Barnstable - West Barnstable Elementary,00200005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,260,260.0 1.104,1.1,a-sust-i2,2017-18,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,431,431.0 3.088,3.09,a-sust-i2,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,307,307.0 --Infinity,1,a-sust-i2,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2017-18,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity --Infinity,1,a-sust-i2,2017-18,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +NA,NA,a-sust-i2,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2017-18,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity +NA,NA,a-sust-i2,2017-18,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity -3.94,1,a-sust-i2,2017-18,Bedford - Lt Elezer Davis,00230010, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,597,746.25 --Infinity,1,a-sust-i2,2017-18,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2017-18,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity -48.88,1,a-sust-i2,2017-18,Belchertown - Belchertown High,00240505, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,711,3555.0 -36.32,1,a-sust-i2,2017-18,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,554,2770.0 -7.44,1,a-sust-i2,2017-18,Belchertown - Cold Spring,00240005, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,193,965.0 -23.84,1,a-sust-i2,2017-18,Belchertown - Jabish Middle School,00240025, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,398,1990.0 -29.36,1,a-sust-i2,2017-18,Belchertown - Swift River Elementary,00240018, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,467,2335.0 --Infinity,1,a-sust-i2,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity --Infinity,1,a-sust-i2,2017-18,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity --Infinity,1,a-sust-i2,2017-18,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity --Infinity,1,a-sust-i2,2017-18,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity --Infinity,1,a-sust-i2,2017-18,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2017-18,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +NA,NA,a-sust-i2,2017-18,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2017-18,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity +NA,NA,a-sust-i2,2017-18,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +NA,NA,a-sust-i2,2017-18,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2017-18,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity -15.004444444444445,1,a-sust-i2,2017-18,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.4, 0.9,1294,1437.7777777777778 -7.52,1,a-sust-i2,2017-18,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,388,970.0 -3.968,1,a-sust-i2,2017-18,Belmont - Mary Lee Burbank,00260010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,374,748.0 -12.0,1,a-sust-i2,2017-18,Belmont - Roger E Wellington,00260035, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,625,1250.0 -7.68,1,a-sust-i2,2017-18,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,490,980.0 -37.472,1,a-sust-i2,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1421,2842.0 --Infinity,1,a-sust-i2,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity -8.928,1,a-sust-i2,2017-18,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,529,1058.0 --Infinity,1,a-sust-i2,2017-18,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2017-18,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity 2.432,2.43,a-sust-i2,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,348,348.0 5.072,5,a-sust-i2,2017-18,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,183,183.0 -11.008,1,a-sust-i2,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,594,1188.0 @@ -11164,260 +11164,260 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -4.512,1,a-sust-i2,2017-18,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,391,782.0 1.92,1.92,a-sust-i2,2017-18,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,114,380.0 -2.64,1,a-sust-i2,2017-18,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,399,665.0 --Infinity,1,a-sust-i2,2017-18,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1340,Infinity +NA,NA,a-sust-i2,2017-18,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1340,Infinity 4.88,4.88,a-sust-i2,2017-18,Billerica - Eugene C Vining,00310030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,195,195.0 --Infinity,1,a-sust-i2,2017-18,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2017-18,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2017-18,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2017-18,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity 2.992,2.99,a-sust-i2,2017-18,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,313,313.0 --Infinity,1,a-sust-i2,2017-18,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2017-18,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity +NA,NA,a-sust-i2,2017-18,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2017-18,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity -0.032,1,a-sust-i2,2017-18,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 3.712,3.71,a-sust-i2,2017-18,Billerica - Thomas Ditson,00310005, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,536,268.0 -11.568,1,a-sust-i2,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1223,1223.0 --Infinity,1,a-sust-i2,2017-18,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2017-18,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i2,2017-18,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2017-18,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity -67.04,1,a-sust-i2,2017-18,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,469,4690.0 --Infinity,1,a-sust-i2,2017-18,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2453,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1781,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2453,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1781,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity 4.362666666666666,4.36,a-sust-i2,2017-18,Boston - Brighton High,00350505, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,682,227.33333333333334 --Infinity,1,a-sust-i2,2017-18,Boston - Carter Developmental Center,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,778,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Carter Developmental Center,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i2,2017-18,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,778,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2017-18,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity 4.848,4.85,a-sust-i2,2017-18,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,197,197.0 --Infinity,1,a-sust-i2,2017-18,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1344,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Edison K-8,00350375, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2017-18,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1344,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Edison K-8,00350375, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2017-18,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity 6.656,5,a-sust-i2,2017-18,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,84,84.0 --Infinity,1,a-sust-i2,2017-18,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Jackson Mann,00350013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,905,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,152,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Josiah Quincy,00350286, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Madison Park High,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,859,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1004,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Mattapan Early Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1562,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,905,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Paul A Dever,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Jackson Mann,00350013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2017-18,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,905,Infinity +NA,NA,a-sust-i2,2017-18,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2017-18,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2017-18,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2017-18,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2017-18,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2017-18,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2017-18,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2017-18,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,152,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Josiah Quincy,00350286, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2017-18,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Madison Park High,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,859,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1004,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Mattapan Early Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2017-18,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2017-18,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2017-18,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1562,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,905,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Paul A Dever,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2017-18,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity +NA,NA,a-sust-i2,2017-18,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity -4.192,1,a-sust-i2,2017-18,Boston - UP Academy Holland,00350167, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,762,762.0 --Infinity,1,a-sust-i2,2017-18,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2017-18,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2017-18,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2017-18,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2017-18,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity 7.9,5,a-sust-i2,2017-18,Boston - William McKinley,00350363, 2.0, 14.5, 12.3, 11.0, 10.0, 6.0, 1.0, 56.8,355,6.25 --Infinity,1,a-sust-i2,2017-18,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2017-18,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2017-18,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2017-18,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity -10.666666666666668,1,a-sust-i2,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,700,1166.6666666666667 --Infinity,1,a-sust-i2,2017-18,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, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2017-18,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, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity 0.496,1,a-sust-i2,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,938,469.0 --Infinity,1,a-sust-i2,2017-18,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2017-18,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity -13.856,1,a-sust-i2,2017-18,Bourne - Bourne Middle School,00360325, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,683,1366.0 0.816,1,a-sust-i2,2017-18,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,449,449.0 -2.848,1,a-sust-i2,2017-18,Bourne - Peebles Elementary School,00360010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,339,678.0 --Infinity,1,a-sust-i2,2017-18,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2017-18,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2017-18,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2017-18,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity 3.216,3.22,a-sust-i2,2017-18,Boylston - Boylston Elementary,00390005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 --Infinity,1,a-sust-i2,2017-18,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2017-18,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1801,Infinity --Infinity,1,a-sust-i2,2017-18,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1801,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity -3.44,1,a-sust-i2,2017-18,Braintree - East Middle School,00400305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,715,715.0 --Infinity,1,a-sust-i2,2017-18,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2017-18,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2017-18,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2017-18,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2017-18,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2017-18,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity -4.906666666666668,1,a-sust-i2,2017-18,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,242,806.6666666666667 --Infinity,1,a-sust-i2,2017-18,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2017-18,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity -0.16,1,a-sust-i2,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,510,510.0 --Infinity,1,a-sust-i2,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1463,Infinity --Infinity,1,a-sust-i2,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1463,Infinity +NA,NA,a-sust-i2,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity 3.04,3.04,a-sust-i2,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,310,310.0 -0.288,1,a-sust-i2,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1036,518.0 --Infinity,1,a-sust-i2,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +NA,NA,a-sust-i2,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity -4.816,1,a-sust-i2,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,801,801.0 3.424,3.42,a-sust-i2,2017-18,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,286,286.0 --Infinity,1,a-sust-i2,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity -12.448,1,a-sust-i2,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1278,1278.0 -18.88,1,a-sust-i2,2017-18,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,504,1680.0 4.208,4.21,a-sust-i2,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,237,237.0 -1.3866666666666678,1,a-sust-i2,2017-18,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,176,586.6666666666667 --Infinity,1,a-sust-i2,2017-18,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4123,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4123,Infinity -12.704,1,a-sust-i2,2017-18,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,647,1294.0 -2.064,1,a-sust-i2,2017-18,Brockton - Downey,00440110, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,629,629.0 -15.552,1,a-sust-i2,2017-18,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,736,1472.0 -7.392,1,a-sust-i2,2017-18,Brockton - East Middle School,00440405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,481,962.0 --Infinity,1,a-sust-i2,2017-18,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1022,Infinity --Infinity,1,a-sust-i2,2017-18,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity --Infinity,1,a-sust-i2,2017-18,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1022,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity -21.76,1,a-sust-i2,2017-18,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,558,1860.0 --Infinity,1,a-sust-i2,2017-18,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity --Infinity,1,a-sust-i2,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity --Infinity,1,a-sust-i2,2017-18,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity -40.85333333333334,1,a-sust-i2,2017-18,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,916,3053.3333333333335 -21.44,1,a-sust-i2,2017-18,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,920,1840.0 -35.46666666666667,1,a-sust-i2,2017-18,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,815,2716.666666666667 -25.54666666666667,1,a-sust-i2,2017-18,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,629,2096.666666666667 -21.184,1,a-sust-i2,2017-18,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,912,1824.0 --Infinity,1,a-sust-i2,2017-18,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2017-18,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2017-18,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637,Infinity -19.776,1,a-sust-i2,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1736,1736.0 3.024,3.02,a-sust-i2,2017-18,Brookfield - Brookfield Elementary,00450005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,311,311.0 --Infinity,1,a-sust-i2,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity --Infinity,1,a-sust-i2,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity -25.28,1,a-sust-i2,2017-18,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,2080,2080.0 -4.192,1,a-sust-i2,2017-18,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,762,762.0 3.728,3.73,a-sust-i2,2017-18,Brookline - Edward Devotion,00460015, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,801,267.0 -7.066666666666668,1,a-sust-i2,2017-18,Brookline - Heath,00460025, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,565,941.6666666666667 -2.032,1,a-sust-i2,2017-18,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,627,627.0 --Infinity,1,a-sust-i2,2017-18,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity --Infinity,1,a-sust-i2,2017-18,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity --Infinity,1,a-sust-i2,2017-18,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,859,Infinity --Infinity,1,a-sust-i2,2017-18,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity --Infinity,1,a-sust-i2,2017-18,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2017-18,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity +NA,NA,a-sust-i2,2017-18,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity +NA,NA,a-sust-i2,2017-18,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,859,Infinity +NA,NA,a-sust-i2,2017-18,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i2,2017-18,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity -13.28,1,a-sust-i2,2017-18,Burlington - Burlington High,00480505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,1064,1330.0 1.616,1.62,a-sust-i2,2017-18,Burlington - Fox Hill,00480007, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 -0.624,1,a-sust-i2,2017-18,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,539,539.0 -4.816,1,a-sust-i2,2017-18,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,801,801.0 1.488,1.49,a-sust-i2,2017-18,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,407,407.0 3.04,3.04,a-sust-i2,2017-18,Burlington - Pine Glen Elementary,00480020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,310,310.0 --Infinity,1,a-sust-i2,2017-18,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1965,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2017-18,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2017-18,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,982,Infinity --Infinity,1,a-sust-i2,2017-18,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2017-18,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2017-18,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2017-18,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i2,2017-18,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1965,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2017-18,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2017-18,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,982,Infinity +NA,NA,a-sust-i2,2017-18,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2017-18,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2017-18,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2017-18,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i2,2017-18,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity 4.128,4.13,a-sust-i2,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 --Infinity,1,a-sust-i2,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2017-18,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2017-18,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity +NA,NA,a-sust-i2,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2017-18,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2017-18,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784,Infinity -4.672,1,a-sust-i2,2017-18,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,792,792.0 --Infinity,1,a-sust-i2,2017-18,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2017-18,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2017-18,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity --Infinity,1,a-sust-i2,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2017-18,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2017-18,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2017-18,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2017-18,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +NA,NA,a-sust-i2,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2017-18,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity 3.952,3.95,a-sust-i2,2017-18,Chelmsford - Byam School,00560030, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,506,253.0 --Infinity,1,a-sust-i2,2017-18,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2017-18,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2017-18,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2017-18,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity -15.664,1,a-sust-i2,2017-18,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1479,1479.0 --Infinity,1,a-sust-i2,2017-18,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity --Infinity,1,a-sust-i2,2017-18,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity --Infinity,1,a-sust-i2,2017-18,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity --Infinity,1,a-sust-i2,2017-18,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2017-18,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2017-18,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity +NA,NA,a-sust-i2,2017-18,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2017-18,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity -41.216,1,a-sust-i2,2017-18,Chelsea - Chelsea High,00570505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1538,3076.0 -21.546666666666667,1,a-sust-i2,2017-18,Chelsea - Clark Avenue School,00570050, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,554,1846.6666666666667 -23.46666666666667,1,a-sust-i2,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,590,1966.6666666666667 @@ -11428,84 +11428,84 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -38.34666666666667,1,a-sust-i2,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,869,2896.666666666667 -19.2,1,a-sust-i2,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,510,1700.0 -2.88,1,a-sust-i2,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,136,680.0 --Infinity,1,a-sust-i2,2017-18,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1365,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1365,Infinity -7.2,1,a-sust-i2,2017-18,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,950,950.0 --Infinity,1,a-sust-i2,2017-18,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity --Infinity,1,a-sust-i2,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +NA,NA,a-sust-i2,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity -1.056,1,a-sust-i2,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,283,566.0 --Infinity,1,a-sust-i2,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2017-18,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2017-18,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2017-18,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity --Infinity,1,a-sust-i2,2017-18,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2017-18,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2017-18,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2017-18,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity +NA,NA,a-sust-i2,2017-18,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity -5.536,1,a-sust-i2,2017-18,Cohasset - Cohasset Middle/High School,00650505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,846,846.0 --Infinity,1,a-sust-i2,2017-18,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2017-18,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2017-18,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2017-18,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity -4.144,1,a-sust-i2,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,759,759.0 --Infinity,1,a-sust-i2,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity 0.144,1,a-sust-i2,2017-18,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,491,491.0 --Infinity,1,a-sust-i2,2017-18,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity --Infinity,1,a-sust-i2,2017-18,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2017-18,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,726,Infinity +NA,NA,a-sust-i2,2017-18,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity 4.488,4.49,a-sust-i2,2017-18,Concord - Willard,00670030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,439,219.5 -2.184,1,a-sust-i2,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1273,636.5 --Infinity,1,a-sust-i2,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity 5.792,5,a-sust-i2,2017-18,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,138,138.0 --Infinity,1,a-sust-i2,2017-18,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity --Infinity,1,a-sust-i2,2017-18,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2017-18,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2017-18,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity --Infinity,1,a-sust-i2,2017-18,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2017-18,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2017-18,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +NA,NA,a-sust-i2,2017-18,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity +NA,NA,a-sust-i2,2017-18,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2017-18,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2017-18,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824,Infinity +NA,NA,a-sust-i2,2017-18,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2017-18,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2017-18,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity -9.152,1,a-sust-i2,2017-18,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1072,1072.0 -7.456,1,a-sust-i2,2017-18,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,966,966.0 1.12,1.12,a-sust-i2,2017-18,Dartmouth - George H Potter,00720030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 --Infinity,1,a-sust-i2,2017-18,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2017-18,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2017-18,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2017-18,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2017-18,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2017-18,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity -15.488,1,a-sust-i2,2017-18,Dedham - Dedham High,00730505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,734,1468.0 -1.648,1,a-sust-i2,2017-18,Dedham - Dedham Middle School,00730305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,603,603.0 --Infinity,1,a-sust-i2,2017-18,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2017-18,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2017-18,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2017-18,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2017-18,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1029,Infinity --Infinity,1,a-sust-i2,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +NA,NA,a-sust-i2,2017-18,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2017-18,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2017-18,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2017-18,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2017-18,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1029,Infinity +NA,NA,a-sust-i2,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity -23.36,1,a-sust-i2,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,392,1960.0 --Infinity,1,a-sust-i2,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,909,Infinity +NA,NA,a-sust-i2,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,909,Infinity -10.656,1,a-sust-i2,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,583,1166.0 --Infinity,1,a-sust-i2,2017-18,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2017-18,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity --Infinity,1,a-sust-i2,2017-18,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2017-18,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2017-18,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2017-18,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity --Infinity,1,a-sust-i2,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2017-18,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2017-18,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2017-18,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2017-18,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2017-18,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2017-18,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity +NA,NA,a-sust-i2,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity -16.373333333333335,1,a-sust-i2,2017-18,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,457,1523.3333333333335 -18.752,1,a-sust-i2,2017-18,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,836,1672.0 -19.46666666666667,1,a-sust-i2,2017-18,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,515,1716.6666666666667 @@ -11513,71 +11513,71 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -22.506666666666668,1,a-sust-i2,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,572,1906.6666666666667 -20.064,1,a-sust-i2,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,877,1754.0 -14.72,1,a-sust-i2,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,284,1420.0 --Infinity,1,a-sust-i2,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity -3.056,1,a-sust-i2,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,691,691.0 --Infinity,1,a-sust-i2,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity -22.613333333333337,1,a-sust-i2,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,574,1913.3333333333335 0.32,1,a-sust-i2,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,480,480.0 --Infinity,1,a-sust-i2,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1168,Infinity +NA,NA,a-sust-i2,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1168,Infinity 2.592,2.59,a-sust-i2,2017-18,Duxbury - Alden School,00820004, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,676,338.0 -2.0,1,a-sust-i2,2017-18,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,625,625.0 -0.424,1,a-sust-i2,2017-18,Duxbury - Duxbury High,00820505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1053,526.5 -3.888,1,a-sust-i2,2017-18,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,743,743.0 --Infinity,1,a-sust-i2,2017-18,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity --Infinity,1,a-sust-i2,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1032,Infinity --Infinity,1,a-sust-i2,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2017-18,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2017-18,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity --Infinity,1,a-sust-i2,2017-18,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2017-18,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2017-18,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2017-18,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2017-18,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2017-18,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2017-18,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,601,Infinity +NA,NA,a-sust-i2,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1032,Infinity +NA,NA,a-sust-i2,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2017-18,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2017-18,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity +NA,NA,a-sust-i2,2017-18,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2017-18,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2017-18,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2017-18,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2017-18,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2017-18,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity 4.032,4.03,a-sust-i2,2017-18,Easthampton - Maple,00860010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,248,248.0 --Infinity,1,a-sust-i2,2017-18,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity --Infinity,1,a-sust-i2,2017-18,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2017-18,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity --Infinity,1,a-sust-i2,2017-18,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,884,Infinity --Infinity,1,a-sust-i2,2017-18,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity --Infinity,1,a-sust-i2,2017-18,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1189,Infinity --Infinity,1,a-sust-i2,2017-18,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2017-18,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity --Infinity,1,a-sust-i2,2017-18,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2017-18,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity +NA,NA,a-sust-i2,2017-18,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2017-18,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2017-18,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,884,Infinity +NA,NA,a-sust-i2,2017-18,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2017-18,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1189,Infinity +NA,NA,a-sust-i2,2017-18,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2017-18,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity +NA,NA,a-sust-i2,2017-18,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity -7.2,1,a-sust-i2,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, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,380,950.0 5.475555555555555,5,a-sust-i2,2017-18,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,142,157.77777777777777 --Infinity,1,a-sust-i2,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1382,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1983,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,862,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2017-18,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity +NA,NA,a-sust-i2,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1382,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1983,Infinity +NA,NA,a-sust-i2,2017-18,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,862,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2017-18,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity -28.064,1,a-sust-i2,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1127,2254.0 -5.408,1,a-sust-i2,2017-18,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,419,838.0 --Infinity,1,a-sust-i2,2017-18,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity --Infinity,1,a-sust-i2,2017-18,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2017-18,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2017-18,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity -8.352,1,a-sust-i2,2017-18,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,511,1022.0 -59.584,1,a-sust-i2,2017-18,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2112,4224.0 -3.824,1,a-sust-i2,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,739,739.0 --Infinity,1,a-sust-i2,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1,Infinity --Infinity,1,a-sust-i2,2017-18,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,651,Infinity -4.6,1,a-sust-i2,2017-18,Fall River - James Tansey,00950140, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,315,787.5 --Infinity,1,a-sust-i2,2017-18,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2017-18,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity --Infinity,1,a-sust-i2,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2017-18,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity -10.784,1,a-sust-i2,2017-18,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,587,1174.0 --Infinity,1,a-sust-i2,2017-18,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,770,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,770,Infinity 4.764444444444444,4.76,a-sust-i2,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,182,202.22222222222223 --Infinity,1,a-sust-i2,2017-18,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2017-18,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity --Infinity,1,a-sust-i2,2017-18,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity --Infinity,1,a-sust-i2,2017-18,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2017-18,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity -11.973333333333336,1,a-sust-i2,2017-18,Fall River - William S Greene,00950065, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,749,1248.3333333333335 -34.24,1,a-sust-i2,2017-18,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,264,2640.0 -36.90666666666667,1,a-sust-i2,2017-18,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,842,2806.666666666667 @@ -11586,23 +11586,23 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -61.44,1,a-sust-i2,2017-18,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,434,4340.0 -43.2,1,a-sust-i2,2017-18,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,320,3200.0 -11.466666666666669,1,a-sust-i2,2017-18,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.3,365,1216.6666666666667 --Infinity,1,a-sust-i2,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1205,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity --Infinity,1,a-sust-i2,2017-18,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2017-18,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity +NA,NA,a-sust-i2,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1205,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity +NA,NA,a-sust-i2,2017-18,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2017-18,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80,Infinity 4.053333333333334,4.05,a-sust-i2,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,222,246.66666666666666 --Infinity,1,a-sust-i2,2017-18,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2017-18,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,806,Infinity --Infinity,1,a-sust-i2,2017-18,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity --Infinity,1,a-sust-i2,2017-18,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1469,Infinity +NA,NA,a-sust-i2,2017-18,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2017-18,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,806,Infinity +NA,NA,a-sust-i2,2017-18,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity +NA,NA,a-sust-i2,2017-18,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1469,Infinity -2.896,1,a-sust-i2,2017-18,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,681,681.0 0.384,1,a-sust-i2,2017-18,Framingham - Brophy,01000006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,476,476.0 -0.56,1,a-sust-i2,2017-18,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,535,535.0 @@ -11610,360 +11610,360 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.610666666666666,1,a-sust-i2,2017-18,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,2177,725.6666666666666 -0.016,1,a-sust-i2,2017-18,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,501,501.0 -1.088,1,a-sust-i2,2017-18,Framingham - Hemenway,01000015, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,568,568.0 --Infinity,1,a-sust-i2,2017-18,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2017-18,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2017-18,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2017-18,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity 2.096,2.1,a-sust-i2,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,369,369.0 -1.024,1,a-sust-i2,2017-18,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,564,564.0 -0.208,1,a-sust-i2,2017-18,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,513,513.0 -4.192,1,a-sust-i2,2017-18,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,762,762.0 -1.056,1,a-sust-i2,2017-18,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,566,566.0 --Infinity,1,a-sust-i2,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1787,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity --Infinity,1,a-sust-i2,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity --Infinity,1,a-sust-i2,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2017-18,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2017-18,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity --Infinity,1,a-sust-i2,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2017-18,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity --Infinity,1,a-sust-i2,2017-18,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2017-18,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2017-18,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity --Infinity,1,a-sust-i2,2017-18,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2017-18,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2017-18,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1787,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2017-18,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +NA,NA,a-sust-i2,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,752,Infinity +NA,NA,a-sust-i2,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2017-18,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2017-18,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2017-18,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity +NA,NA,a-sust-i2,2017-18,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2017-18,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2017-18,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i2,2017-18,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2017-18,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2017-18,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity -4.832,1,a-sust-i2,2017-18,Georgetown - Georgetown High School,01050505, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,401,802.0 --Infinity,1,a-sust-i2,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2017-18,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity --Infinity,1,a-sust-i2,2017-18,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity --Infinity,1,a-sust-i2,2017-18,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity --Infinity,1,a-sust-i2,2017-18,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2017-18,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2017-18,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity +NA,NA,a-sust-i2,2017-18,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i2,2017-18,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity +NA,NA,a-sust-i2,2017-18,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2017-18,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity 2.576,2.58,a-sust-i2,2017-18,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 4.56,4.56,a-sust-i2,2017-18,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,215,215.0 --Infinity,1,a-sust-i2,2017-18,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity --Infinity,1,a-sust-i2,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity --Infinity,1,a-sust-i2,2017-18,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2017-18,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity +NA,NA,a-sust-i2,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2017-18,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity -2.72,1,a-sust-i2,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,670,670.0 --Infinity,1,a-sust-i2,2017-18,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2017-18,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity 2.304,2.3,a-sust-i2,2017-18,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,356,356.0 --Infinity,1,a-sust-i2,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity --Infinity,1,a-sust-i2,2017-18,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity --Infinity,1,a-sust-i2,2017-18,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2017-18,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2017-18,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2017-18,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity --Infinity,1,a-sust-i2,2017-18,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity --Infinity,1,a-sust-i2,2017-18,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity --Infinity,1,a-sust-i2,2017-18,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity --Infinity,1,a-sust-i2,2017-18,Granby - West Street,01110010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity +NA,NA,a-sust-i2,2017-18,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity +NA,NA,a-sust-i2,2017-18,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2017-18,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2017-18,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2017-18,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity +NA,NA,a-sust-i2,2017-18,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2017-18,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2017-18,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +NA,NA,a-sust-i2,2017-18,Granby - West Street,01110010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity -14.368,1,a-sust-i2,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1398,1398.0 --Infinity,1,a-sust-i2,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1509,Infinity --Infinity,1,a-sust-i2,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2270,Infinity --Infinity,1,a-sust-i2,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2153,Infinity +NA,NA,a-sust-i2,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1509,Infinity +NA,NA,a-sust-i2,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2270,Infinity +NA,NA,a-sust-i2,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2153,Infinity -5.44,1,a-sust-i2,2017-18,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,252,840.0 -5.173333333333334,1,a-sust-i2,2017-18,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,247,823.3333333333334 0.608,1,a-sust-i2,2017-18,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,462,462.0 1.936,1.94,a-sust-i2,2017-18,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,379,379.0 -4.906666666666668,1,a-sust-i2,2017-18,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,242,806.6666666666667 --Infinity,1,a-sust-i2,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity --Infinity,1,a-sust-i2,2017-18,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity --Infinity,1,a-sust-i2,2017-18,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity --Infinity,1,a-sust-i2,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,765,Infinity --Infinity,1,a-sust-i2,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +NA,NA,a-sust-i2,2017-18,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i2,2017-18,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +NA,NA,a-sust-i2,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,765,Infinity +NA,NA,a-sust-i2,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity 3.408,3.41,a-sust-i2,2017-18,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,287,287.0 3.16,3.16,a-sust-i2,2017-18,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,242,302.5 -1.552,1,a-sust-i2,2017-18,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,597,597.0 --Infinity,1,a-sust-i2,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2017-18,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity --Infinity,1,a-sust-i2,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2017-18,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2017-18,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2017-18,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity -3.104,1,a-sust-i2,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,347,694.0 --Infinity,1,a-sust-i2,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1109,Infinity +NA,NA,a-sust-i2,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1109,Infinity 2.496,2.5,a-sust-i2,2017-18,Hampden-Wilbraham - Soule Road,06800030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,344,344.0 3.248,3.25,a-sust-i2,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,297,297.0 --Infinity,1,a-sust-i2,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity -11.456,1,a-sust-i2,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,608,1216.0 --Infinity,1,a-sust-i2,2017-18,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,701,Infinity --Infinity,1,a-sust-i2,2017-18,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i2,2017-18,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,701,Infinity +NA,NA,a-sust-i2,2017-18,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity 1.376,1.38,a-sust-i2,2017-18,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,414,414.0 --Infinity,1,a-sust-i2,2017-18,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2017-18,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,801,Infinity --Infinity,1,a-sust-i2,2017-18,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity --Infinity,1,a-sust-i2,2017-18,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2017-18,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2017-18,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2017-18,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2017-18,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1027,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,976,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1831,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity --Infinity,1,a-sust-i2,2017-18,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity --Infinity,1,a-sust-i2,2017-18,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity --Infinity,1,a-sust-i2,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2017-18,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2017-18,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1256,Infinity --Infinity,1,a-sust-i2,2017-18,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1075,Infinity --Infinity,1,a-sust-i2,2017-18,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2017-18,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2017-18,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2017-18,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2017-18,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,801,Infinity +NA,NA,a-sust-i2,2017-18,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +NA,NA,a-sust-i2,2017-18,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2017-18,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2017-18,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2017-18,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2017-18,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1027,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,976,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1831,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2017-18,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +NA,NA,a-sust-i2,2017-18,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +NA,NA,a-sust-i2,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2017-18,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2017-18,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1256,Infinity +NA,NA,a-sust-i2,2017-18,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1075,Infinity +NA,NA,a-sust-i2,2017-18,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2017-18,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2017-18,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity -10.848,1,a-sust-i2,2017-18,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,589,1178.0 -25.38666666666667,1,a-sust-i2,2017-18,Holbrook - John F Kennedy,01330018, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,626,2086.666666666667 --Infinity,1,a-sust-i2,2017-18,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2017-18,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2017-18,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2017-18,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity -19.4,1,a-sust-i2,2017-18,Holliston - Miller School,01360007, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,685,1712.5 --Infinity,1,a-sust-i2,2017-18,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity +NA,NA,a-sust-i2,2017-18,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,746,Infinity -10.053333333333336,1,a-sust-i2,2017-18,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,677,1128.3333333333335 --Infinity,1,a-sust-i2,2017-18,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1332,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity --Infinity,1,a-sust-i2,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2017-18,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,702,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1332,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +NA,NA,a-sust-i2,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2017-18,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,702,Infinity -8.16,1,a-sust-i2,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,505,1010.0 -9.44,1,a-sust-i2,2017-18,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,545,1090.0 --Infinity,1,a-sust-i2,2017-18,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2017-18,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity -28.64,1,a-sust-i2,2017-18,Hopkinton - Center,01390005, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,458,2290.0 -72.16,1,a-sust-i2,2017-18,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,501,5010.0 -35.2,1,a-sust-i2,2017-18,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,540,2700.0 -84.4,1,a-sust-i2,2017-18,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,1155,5775.0 -120.8,1,a-sust-i2,2017-18,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,805,8050.0 -1.44,1,a-sust-i2,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,59,590.0 --Infinity,1,a-sust-i2,2017-18,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity --Infinity,1,a-sust-i2,2017-18,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity --Infinity,1,a-sust-i2,2017-18,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2017-18,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +NA,NA,a-sust-i2,2017-18,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2017-18,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity -6.928,1,a-sust-i2,2017-18,Hudson - Hudson High,01410505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,933,933.0 --Infinity,1,a-sust-i2,2017-18,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2017-18,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2017-18,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2017-18,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i2,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,802,Infinity +NA,NA,a-sust-i2,2017-18,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2017-18,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2017-18,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2017-18,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i2,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,802,Infinity -1.173333333333334,1,a-sust-i2,2017-18,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,516,573.3333333333334 -9.6,1,a-sust-i2,2017-18,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,440,1100.0 -13.386666666666668,1,a-sust-i2,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,401,1336.6666666666667 -22.24,1,a-sust-i2,2017-18,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,378,1890.0 --Infinity,1,a-sust-i2,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity --Infinity,1,a-sust-i2,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1336,Infinity +NA,NA,a-sust-i2,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1336,Infinity -3.84,1,a-sust-i2,2017-18,King Philip - King Philip Middle School,06900510, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,740,740.0 -2.4,1,a-sust-i2,2017-18,King Philip - King Philip Regional High,06900505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1300,650.0 0.784,1,a-sust-i2,2017-18,Kingston - Kingston Elementary,01450005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 -1.168,1,a-sust-i2,2017-18,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,573,573.0 --Infinity,1,a-sust-i2,2017-18,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2017-18,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity -1.376,1,a-sust-i2,2017-18,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,586,586.0 --Infinity,1,a-sust-i2,2017-18,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity -0.224,1,a-sust-i2,2017-18,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,514,514.0 --Infinity,1,a-sust-i2,2017-18,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity -18.432,1,a-sust-i2,2017-18,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,3304,1652.0 0.848,1,a-sust-i2,2017-18,Lawrence - Oliver Partnership School,01490048, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 --Infinity,1,a-sust-i2,2017-18,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity --Infinity,1,a-sust-i2,2017-18,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity 3.248,3.25,a-sust-i2,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,297,297.0 2.512,2.51,a-sust-i2,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 --Infinity,1,a-sust-i2,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,737,Infinity --Infinity,1,a-sust-i2,2017-18,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2017-18,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,737,Infinity +NA,NA,a-sust-i2,2017-18,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2017-18,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity 0.624,1,a-sust-i2,2017-18,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,461,461.0 2.672,2.67,a-sust-i2,2017-18,Leicester - Leicester Memorial Elementary,01510005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 1.408,1.41,a-sust-i2,2017-18,Leicester - Leicester Middle,01510015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,412,412.0 2.192,2.19,a-sust-i2,2017-18,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,363,363.0 --Infinity,1,a-sust-i2,2017-18,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2017-18,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2017-18,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity --Infinity,1,a-sust-i2,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity --Infinity,1,a-sust-i2,2017-18,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2017-18,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2017-18,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2017-18,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity +NA,NA,a-sust-i2,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity +NA,NA,a-sust-i2,2017-18,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity -0.704,1,a-sust-i2,2017-18,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,544,544.0 -2.416,1,a-sust-i2,2017-18,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,651,651.0 --Infinity,1,a-sust-i2,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity -8.896,1,a-sust-i2,2017-18,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1056,1056.0 --Infinity,1,a-sust-i2,2017-18,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2017-18,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity -2.96,1,a-sust-i2,2017-18,Leominster - Northwest,01530030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,685,685.0 --Infinity,1,a-sust-i2,2017-18,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2017-18,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2017-18,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2017-18,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity -6.32,1,a-sust-i2,2017-18,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,895,895.0 --Infinity,1,a-sust-i2,2017-18,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,71,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2212,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2017-18,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity --Infinity,1,a-sust-i2,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2017-18,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2017-18,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2017-18,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1529,Infinity +NA,NA,a-sust-i2,2017-18,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,71,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2212,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2017-18,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity +NA,NA,a-sust-i2,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2017-18,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2017-18,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2017-18,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1529,Infinity 0.592,1,a-sust-i2,2017-18,Littleton - Littleton High School,01580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,463,463.0 2.208,2.21,a-sust-i2,2017-18,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,362,362.0 1.824,1.82,a-sust-i2,2017-18,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,386,386.0 --Infinity,1,a-sust-i2,2017-18,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2017-18,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2017-18,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2017-18,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2017-18,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity --Infinity,1,a-sust-i2,2017-18,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2017-18,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,692,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Lowell Day School on Broadway,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3154,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,685,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity --Infinity,1,a-sust-i2,2017-18,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2017-18,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2017-18,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2017-18,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2017-18,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity +NA,NA,a-sust-i2,2017-18,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2017-18,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,692,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Lowell Day School on Broadway,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3154,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,685,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +NA,NA,a-sust-i2,2017-18,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity -24.56,1,a-sust-i2,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,814,2035.0 --Infinity,1,a-sust-i2,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity --Infinity,1,a-sust-i2,2017-18,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2017-18,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2017-18,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity --Infinity,1,a-sust-i2,2017-18,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity --Infinity,1,a-sust-i2,2017-18,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9,Infinity +NA,NA,a-sust-i2,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2017-18,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2017-18,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2017-18,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,894,Infinity +NA,NA,a-sust-i2,2017-18,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2017-18,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9,Infinity -15.573333333333336,1,a-sust-i2,2017-18,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,442,1473.3333333333335 -14.56,1,a-sust-i2,2017-18,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,423,1410.0 -4.608,1,a-sust-i2,2017-18,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,394,788.0 -3.936,1,a-sust-i2,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,373,746.0 --Infinity,1,a-sust-i2,2017-18,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1333,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1663,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1723,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1293,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2017-18,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,640,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1333,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1663,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1723,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1293,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2017-18,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,640,Infinity -5.664,1,a-sust-i2,2017-18,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,427,854.0 -26.56,1,a-sust-i2,2017-18,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,648,2160.0 -5.54,1,a-sust-i2,2017-18,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.3, 0.0, 0.8,677,846.25 --Infinity,1,a-sust-i2,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity -5.792,1,a-sust-i2,2017-18,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,431,862.0 --Infinity,1,a-sust-i2,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity --Infinity,1,a-sust-i2,2017-18,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, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2017-18,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,893,Infinity --Infinity,1,a-sust-i2,2017-18,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,875,Infinity --Infinity,1,a-sust-i2,2017-18,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity --Infinity,1,a-sust-i2,2017-18,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity --Infinity,1,a-sust-i2,2017-18,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2017-18,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1823,Infinity --Infinity,1,a-sust-i2,2017-18,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1217,Infinity +NA,NA,a-sust-i2,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity +NA,NA,a-sust-i2,2017-18,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, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2017-18,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,893,Infinity +NA,NA,a-sust-i2,2017-18,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,875,Infinity +NA,NA,a-sust-i2,2017-18,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2017-18,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity +NA,NA,a-sust-i2,2017-18,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2017-18,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1823,Infinity +NA,NA,a-sust-i2,2017-18,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1217,Infinity 4.352,4.35,a-sust-i2,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,228,228.0 --Infinity,1,a-sust-i2,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity 5.024,5,a-sust-i2,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,372,186.0 2.512,2.51,a-sust-i2,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 -3.424,1,a-sust-i2,2017-18,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,714,714.0 0.472,1,a-sust-i2,2017-18,Mansfield - Harold L Qualters Middle,01670035, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,941,470.5 --Infinity,1,a-sust-i2,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,787,Infinity --Infinity,1,a-sust-i2,2017-18,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity --Infinity,1,a-sust-i2,2017-18,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2017-18,Marblehead - Elbridge Gerry,01680015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i2,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,787,Infinity +NA,NA,a-sust-i2,2017-18,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity +NA,NA,a-sust-i2,2017-18,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2017-18,Marblehead - Elbridge Gerry,01680015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity 2.08,2.08,a-sust-i2,2017-18,Marblehead - Glover,01680020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 --Infinity,1,a-sust-i2,2017-18,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2017-18,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2017-18,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2017-18,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity -0.296,1,a-sust-i2,2017-18,Marblehead - Marblehead High,01680505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1037,518.5 --Infinity,1,a-sust-i2,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2017-18,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity --Infinity,1,a-sust-i2,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2017-18,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1308,Infinity --Infinity,1,a-sust-i2,2017-18,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity --Infinity,1,a-sust-i2,2017-18,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity --Infinity,1,a-sust-i2,2017-18,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity --Infinity,1,a-sust-i2,2017-18,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1110,Infinity --Infinity,1,a-sust-i2,2017-18,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity +NA,NA,a-sust-i2,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2017-18,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2017-18,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1308,Infinity +NA,NA,a-sust-i2,2017-18,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,761,Infinity +NA,NA,a-sust-i2,2017-18,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +NA,NA,a-sust-i2,2017-18,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity +NA,NA,a-sust-i2,2017-18,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1110,Infinity +NA,NA,a-sust-i2,2017-18,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity 1.552,1.55,a-sust-i2,2017-18,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,403,403.0 4.112,4.11,a-sust-i2,2017-18,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,243,243.0 -7.52,1,a-sust-i2,2017-18,Marshfield - Furnace Brook Middle,01710310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,970,970.0 @@ -11971,191 +11971,191 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -13.536,1,a-sust-i2,2017-18,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1346,1346.0 1.12,1.12,a-sust-i2,2017-18,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,430,430.0 2.032,2.03,a-sust-i2,2017-18,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 --Infinity,1,a-sust-i2,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity 2.224,2.22,a-sust-i2,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,361,361.0 --Infinity,1,a-sust-i2,2017-18,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1143,Infinity --Infinity,1,a-sust-i2,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity --Infinity,1,a-sust-i2,2017-18,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2017-18,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2017-18,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2017-18,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2017-18,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.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2017-18,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1143,Infinity +NA,NA,a-sust-i2,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +NA,NA,a-sust-i2,2017-18,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2017-18,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2017-18,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2017-18,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2017-18,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.0, 0.0,585,Infinity 0.352,1,a-sust-i2,2017-18,Mattapoisett - Center,01730005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,239,478.0 1.44,1.44,a-sust-i2,2017-18,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,205,410.0 -0.352,1,a-sust-i2,2017-18,Maynard - Fowler School,01740305, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 0.0, 1.0,522,522.0 -4.96,1,a-sust-i2,2017-18,Maynard - Green Meadow,01740010, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,486,810.0 -7.6,1,a-sust-i2,2017-18,Maynard - Maynard High,01740505, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,390,975.0 --Infinity,1,a-sust-i2,2017-18,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2017-18,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity -8.56,1,a-sust-i2,2017-18,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,828,1035.0 --Infinity,1,a-sust-i2,2017-18,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2017-18,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2017-18,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2017-18,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity -1.952,1,a-sust-i2,2017-18,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,622,622.0 -0.032,1,a-sust-i2,2017-18,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 1.968,1.97,a-sust-i2,2017-18,Medford - Christopher Columbus,01760140, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 --Infinity,1,a-sust-i2,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity -0.384,1,a-sust-i2,2017-18,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,524,524.0 0.64,1,a-sust-i2,2017-18,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,460,460.0 --Infinity,1,a-sust-i2,2017-18,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2017-18,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity -14.608,1,a-sust-i2,2017-18,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1413,1413.0 --Infinity,1,a-sust-i2,2017-18,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2017-18,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2017-18,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2017-18,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,728,Infinity +NA,NA,a-sust-i2,2017-18,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2017-18,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2017-18,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2017-18,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,728,Infinity -3.248,1,a-sust-i2,2017-18,Medway - Medway Middle,01770305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,703,703.0 --Infinity,1,a-sust-i2,2017-18,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2017-18,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2017-18,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2017-18,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2017-18,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1002,Infinity --Infinity,1,a-sust-i2,2017-18,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity --Infinity,1,a-sust-i2,2017-18,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2017-18,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity --Infinity,1,a-sust-i2,2017-18,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2017-18,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity --Infinity,1,a-sust-i2,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,778,Infinity --Infinity,1,a-sust-i2,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2017-18,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1081,Infinity --Infinity,1,a-sust-i2,2017-18,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1352,Infinity --Infinity,1,a-sust-i2,2017-18,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1199,Infinity --Infinity,1,a-sust-i2,2017-18,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1949,Infinity --Infinity,1,a-sust-i2,2017-18,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1354,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1002,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2017-18,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +NA,NA,a-sust-i2,2017-18,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2017-18,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,778,Infinity +NA,NA,a-sust-i2,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2017-18,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1081,Infinity +NA,NA,a-sust-i2,2017-18,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1352,Infinity +NA,NA,a-sust-i2,2017-18,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1199,Infinity +NA,NA,a-sust-i2,2017-18,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1949,Infinity +NA,NA,a-sust-i2,2017-18,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1354,Infinity -0.976,1,a-sust-i2,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,561,561.0 --Infinity,1,a-sust-i2,2017-18,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,783,Infinity +NA,NA,a-sust-i2,2017-18,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,783,Infinity -10.944,1,a-sust-i2,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,592,1184.0 3.344,3.34,a-sust-i2,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,291,291.0 -3.488,1,a-sust-i2,2017-18,Middleborough - Middleborough High,01820505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,718,718.0 --Infinity,1,a-sust-i2,2017-18,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2017-18,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2017-18,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2017-18,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2017-18,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1152,Infinity --Infinity,1,a-sust-i2,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity --Infinity,1,a-sust-i2,2017-18,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,980,Infinity --Infinity,1,a-sust-i2,2017-18,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,965,Infinity --Infinity,1,a-sust-i2,2017-18,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +NA,NA,a-sust-i2,2017-18,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2017-18,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2017-18,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2017-18,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2017-18,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1152,Infinity +NA,NA,a-sust-i2,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2017-18,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,980,Infinity +NA,NA,a-sust-i2,2017-18,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,965,Infinity +NA,NA,a-sust-i2,2017-18,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity -3.488,1,a-sust-i2,2017-18,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,718,718.0 --Infinity,1,a-sust-i2,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2017-18,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2017-18,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2017-18,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2017-18,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,914,Infinity --Infinity,1,a-sust-i2,2017-18,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2017-18,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2017-18,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2017-18,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1028,Infinity --Infinity,1,a-sust-i2,2017-18,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2017-18,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2017-18,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2017-18,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2017-18,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,914,Infinity +NA,NA,a-sust-i2,2017-18,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2017-18,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2017-18,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2017-18,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1028,Infinity +NA,NA,a-sust-i2,2017-18,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity 0.8266666666666661,1,a-sust-i2,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6, 0.0, 1.2,538,448.33333333333337 -2.92,1,a-sust-i2,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,273,682.5 -0.48,1,a-sust-i2,2017-18,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,106,530.0 --Infinity,1,a-sust-i2,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2017-18,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity --Infinity,1,a-sust-i2,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2017-18,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2017-18,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2017-18,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity 3.872,3.87,a-sust-i2,2017-18,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,258,258.0 1.712,1.71,a-sust-i2,2017-18,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,393,393.0 -219.84,1,a-sust-i2,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,1424,14240.0 -0.576,1,a-sust-i2,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,536,536.0 --Infinity,1,a-sust-i2,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1571,Infinity --Infinity,1,a-sust-i2,2017-18,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity --Infinity,1,a-sust-i2,2017-18,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1571,Infinity +NA,NA,a-sust-i2,2017-18,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2017-18,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity -3.616,1,a-sust-i2,2017-18,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,363,726.0 -2.66,1,a-sust-i2,2017-18,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,533,666.25 -4.0,1,a-sust-i2,2017-18,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,375,750.0 --Infinity,1,a-sust-i2,2017-18,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2017-18,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2017-18,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2017-18,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity --Infinity,1,a-sust-i2,2017-18,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2017-18,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2017-18,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,767,Infinity --Infinity,1,a-sust-i2,2017-18,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity --Infinity,1,a-sust-i2,2017-18,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2017-18,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,988,Infinity +NA,NA,a-sust-i2,2017-18,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2017-18,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2017-18,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2017-18,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +NA,NA,a-sust-i2,2017-18,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2017-18,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2017-18,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,767,Infinity +NA,NA,a-sust-i2,2017-18,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2017-18,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2017-18,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,988,Infinity -3.168,1,a-sust-i2,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,698,698.0 -11.008,1,a-sust-i2,2017-18,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,594,1188.0 --Infinity,1,a-sust-i2,2017-18,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2017-18,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity 0.6742857142857137,1,a-sust-i2,2017-18,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.4, 0.0, 1.4,641,457.8571428571429 --Infinity,1,a-sust-i2,2017-18,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2017-18,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity 1.104,1.1,a-sust-i2,2017-18,Natick - Lilja Elementary,01980035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,431,431.0 -5.216,1,a-sust-i2,2017-18,Natick - Memorial,01980043, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,413,826.0 -5.84,1,a-sust-i2,2017-18,Natick - Natick High,01980505, 0.0, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 2.0,1730,865.0 -29.8,1,a-sust-i2,2017-18,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,945,2362.5 --Infinity,1,a-sust-i2,2017-18,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,911,Infinity --Infinity,1,a-sust-i2,2017-18,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2017-18,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,911,Infinity +NA,NA,a-sust-i2,2017-18,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity -9.376,1,a-sust-i2,2017-18,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,543,1086.0 --Infinity,1,a-sust-i2,2017-18,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2017-18,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity -7.584,1,a-sust-i2,2017-18,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,487,974.0 --Infinity,1,a-sust-i2,2017-18,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2017-18,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1686,Infinity +NA,NA,a-sust-i2,2017-18,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2017-18,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1686,Infinity -12.133333333333336,1,a-sust-i2,2017-18,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,755,1258.3333333333335 --Infinity,1,a-sust-i2,2017-18,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity +NA,NA,a-sust-i2,2017-18,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity -7.936,1,a-sust-i2,2017-18,Needham - William Mitchell,01990040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,498,996.0 --Infinity,1,a-sust-i2,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity -2.832,1,a-sust-i2,2017-18,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,677,677.0 --Infinity,1,a-sust-i2,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1962,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1254,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1962,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1254,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity -4.88,1,a-sust-i2,2017-18,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,805,805.0 --Infinity,1,a-sust-i2,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,782,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity --Infinity,1,a-sust-i2,2017-18,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,782,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity 6.4,5,a-sust-i2,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,100,100.0 --Infinity,1,a-sust-i2,2017-18,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2017-18,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity 5.568,5,a-sust-i2,2017-18,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,152,152.0 2.864,2.86,a-sust-i2,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,321,321.0 -1.84,1,a-sust-i2,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,615,615.0 --Infinity,1,a-sust-i2,2017-18,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity +NA,NA,a-sust-i2,2017-18,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity -0.944,1,a-sust-i2,2017-18,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,559,559.0 --Infinity,1,a-sust-i2,2017-18,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2017-18,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2017-18,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2017-18,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity 1.536,1.54,a-sust-i2,2017-18,Newton - Horace Mann,02070075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 --Infinity,1,a-sust-i2,2017-18,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2017-18,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity -106.56,1,a-sust-i2,2017-18,Newton - Newton North High,02070505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,2148,7160.0 --Infinity,1,a-sust-i2,2017-18,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1893,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2017-18,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1893,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2017-18,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity 0.7644444444444444,1,a-sust-i2,2017-18,Newton - Zervas,02070130, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,407,452.22222222222223 --Infinity,1,a-sust-i2,2017-18,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2017-18,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2017-18,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2017-18,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity --Infinity,1,a-sust-i2,2017-18,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity --Infinity,1,a-sust-i2,2017-18,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2017-18,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2017-18,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2017-18,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2017-18,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2017-18,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +NA,NA,a-sust-i2,2017-18,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity -36.72,1,a-sust-i2,2017-18,North Andover - Annie L Sargent School,02110018, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,559,2795.0 -37.44,1,a-sust-i2,2017-18,North Andover - Atkinson,02110001, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,568,2840.0 -28.16,1,a-sust-i2,2017-18,North Andover - Franklin,02110010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,452,2260.0 @@ -12163,38 +12163,38 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -15.84,1,a-sust-i2,2017-18,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1490,1490.0 -0.832,1,a-sust-i2,2017-18,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1104,552.0 -19.6,1,a-sust-i2,2017-18,North Andover - Thomson,02110020, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,345,1725.0 --Infinity,1,a-sust-i2,2017-18,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2017-18,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2017-18,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity --Infinity,1,a-sust-i2,2017-18,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1156,Infinity --Infinity,1,a-sust-i2,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity --Infinity,1,a-sust-i2,2017-18,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1088,Infinity --Infinity,1,a-sust-i2,2017-18,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2017-18,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2017-18,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2017-18,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1156,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1088,Infinity +NA,NA,a-sust-i2,2017-18,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2017-18,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2017-18,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2017-18,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity -2.592,1,a-sust-i2,2017-18,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,331,662.0 -2.752,1,a-sust-i2,2017-18,North Reading - J Turner Hood,02170010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,336,672.0 --Infinity,1,a-sust-i2,2017-18,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2017-18,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity -17.984,1,a-sust-i2,2017-18,North Reading - North Reading High,02170505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,812,1624.0 2.154666666666667,2.15,a-sust-i2,2017-18,North Reading - North Reading Middle,02170305, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 0.0, 1.5,548,365.3333333333333 -2.96,1,a-sust-i2,2017-18,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,274,685.0 --Infinity,1,a-sust-i2,2017-18,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2017-18,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i2,2017-18,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2017-18,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity 1.58,1.58,a-sust-i2,2017-18,Northampton - Leeds,02100025, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,321,401.25 --Infinity,1,a-sust-i2,2017-18,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity --Infinity,1,a-sust-i2,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2017-18,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869,Infinity +NA,NA,a-sust-i2,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity 0.032,1,a-sust-i2,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,498,498.0 --Infinity,1,a-sust-i2,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1471,Infinity --Infinity,1,a-sust-i2,2017-18,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1471,Infinity +NA,NA,a-sust-i2,2017-18,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity 3.92,3.92,a-sust-i2,2017-18,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,255,255.0 3.6,3.6,a-sust-i2,2017-18,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,275,275.0 4.112,4.11,a-sust-i2,2017-18,Northborough - Marion E Zeh,02130020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,243,243.0 @@ -12204,52 +12204,52 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -30.56,1,a-sust-i2,2017-18,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,723,2410.0 -18.933333333333337,1,a-sust-i2,2017-18,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,505,1683.3333333333335 -11.936,1,a-sust-i2,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1246,1246.0 --Infinity,1,a-sust-i2,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2017-18,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2017-18,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2017-18,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2017-18,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity --Infinity,1,a-sust-i2,2017-18,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2017-18,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2017-18,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity --Infinity,1,a-sust-i2,2017-18,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2017-18,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,737,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity --Infinity,1,a-sust-i2,2017-18,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity --Infinity,1,a-sust-i2,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity --Infinity,1,a-sust-i2,2017-18,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity --Infinity,1,a-sust-i2,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2017-18,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2017-18,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2017-18,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2017-18,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2017-18,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2017-18,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2017-18,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2017-18,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2017-18,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity +NA,NA,a-sust-i2,2017-18,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2017-18,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,737,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227,Infinity +NA,NA,a-sust-i2,2017-18,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,958,Infinity +NA,NA,a-sust-i2,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2017-18,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777,Infinity +NA,NA,a-sust-i2,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2017-18,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2017-18,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity 0.864,1,a-sust-i2,2017-18,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,223,446.0 --Infinity,1,a-sust-i2,2017-18,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2017-18,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2017-18,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2017-18,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity --Infinity,1,a-sust-i2,2017-18,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity --Infinity,1,a-sust-i2,2017-18,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2017-18,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2017-18,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2017-18,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2017-18,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2017-18,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity +NA,NA,a-sust-i2,2017-18,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity -1.824,1,a-sust-i2,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,614,614.0 -0.64,1,a-sust-i2,2017-18,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.5, 0.5,270,540.0 --Infinity,1,a-sust-i2,2017-18,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1366,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1480,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2017-18,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2017-18,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1366,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1480,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2017-18,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity -0.032,1,a-sust-i2,2017-18,Pembroke - Bryantville Elementary,02310003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 1.2,1.2,a-sust-i2,2017-18,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 -0.784,1,a-sust-i2,2017-18,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,549,549.0 @@ -12261,71 +12261,71 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.288,1,a-sust-i2,2017-18,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,241,482.0 1.248,1.25,a-sust-i2,2017-18,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,422,422.0 -15.744,1,a-sust-i2,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,742,1484.0 --Infinity,1,a-sust-i2,2017-18,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity --Infinity,1,a-sust-i2,2017-18,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, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity --Infinity,1,a-sust-i2,2017-18,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity --Infinity,1,a-sust-i2,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2017-18,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity +NA,NA,a-sust-i2,2017-18,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2017-18,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, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i2,2017-18,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity +NA,NA,a-sust-i2,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2017-18,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59,Infinity -7.776,1,a-sust-i2,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,493,986.0 -4.832,1,a-sust-i2,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,401,802.0 --Infinity,1,a-sust-i2,2017-18,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity --Infinity,1,a-sust-i2,2017-18,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2017-18,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643,Infinity +NA,NA,a-sust-i2,2017-18,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2017-18,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity 3.92,3.92,a-sust-i2,2017-18,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 1.824,1.82,a-sust-i2,2017-18,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 5.536,5,a-sust-i2,2017-18,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,154,154.0 -1.072,1,a-sust-i2,2017-18,Plymouth - Indian Brook,02390012, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,567,567.0 3.408,3.41,a-sust-i2,2017-18,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,287,287.0 3.624,3.62,a-sust-i2,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,547,273.5 --Infinity,1,a-sust-i2,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1020,Infinity --Infinity,1,a-sust-i2,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +NA,NA,a-sust-i2,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1020,Infinity +NA,NA,a-sust-i2,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity -4.81,1,a-sust-i2,2017-18,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 1.6,1281,800.625 -9.52,1,a-sust-i2,2017-18,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1095,1095.0 0.76,1,a-sust-i2,2017-18,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,724,452.5 3.646666666666666,3.65,a-sust-i2,2017-18,Plymouth - South Elementary,02390046, 0.0, 0.0, 2.0, 0.0, 0.4, 0.0, 0.0, 2.4,653,272.08333333333337 1.696,1.7,a-sust-i2,2017-18,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,394,394.0 4.688,4.69,a-sust-i2,2017-18,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,207,207.0 --Infinity,1,a-sust-i2,2017-18,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, 0.0,1132,Infinity +NA,NA,a-sust-i2,2017-18,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, 0.0,1132,Infinity 4.8,4.8,a-sust-i2,2017-18,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,120,200.0 --Infinity,1,a-sust-i2,2017-18,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2017-18,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2017-18,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity --Infinity,1,a-sust-i2,2017-18,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity --Infinity,1,a-sust-i2,2017-18,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity --Infinity,1,a-sust-i2,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2017-18,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2017-18,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity --Infinity,1,a-sust-i2,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2017-18,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2017-18,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity -7.44,1,a-sust-i2,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,193,965.0 --Infinity,1,a-sust-i2,2017-18,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2017-18,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity -18.506666666666668,1,a-sust-i2,2017-18,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.3,497,1656.6666666666667 -20.08,1,a-sust-i2,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,351,1755.0 -12.373333333333337,1,a-sust-i2,2017-18,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,382,1273.3333333333335 -25.813333333333336,1,a-sust-i2,2017-18,Quincy - Central Middle,02430315, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,634,2113.3333333333335 -9.6,1,a-sust-i2,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,330,1100.0 --Infinity,1,a-sust-i2,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity -8.693333333333335,1,a-sust-i2,2017-18,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,313,1043.3333333333335 -19.573333333333334,1,a-sust-i2,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,517,1723.3333333333335 --Infinity,1,a-sust-i2,2017-18,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2017-18,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity -24.96,1,a-sust-i2,2017-18,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,412,2060.0 -31.04,1,a-sust-i2,2017-18,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1220,2440.0 -10.986666666666668,1,a-sust-i2,2017-18,Quincy - Point Webster Middle,02430325, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,356,1186.6666666666667 @@ -12334,251 +12334,251 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -6.848,1,a-sust-i2,2017-18,Quincy - Snug Harbor Community School,02430090, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,464,928.0 -10.4,1,a-sust-i2,2017-18,Quincy - Squantum,02430095, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,345,1150.0 -2.656,1,a-sust-i2,2017-18,Quincy - Wollaston School,02430110, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,333,666.0 --Infinity,1,a-sust-i2,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity -12.512,1,a-sust-i2,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,641,1282.0 --Infinity,1,a-sust-i2,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity --Infinity,1,a-sust-i2,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2017-18,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2017-18,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2017-18,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2017-18,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity --Infinity,1,a-sust-i2,2017-18,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity +NA,NA,a-sust-i2,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2017-18,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2017-18,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2017-18,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2017-18,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2017-18,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708,Infinity 1.968,1.97,a-sust-i2,2017-18,Reading - Alice M Barrows,02460002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 4.192,4.19,a-sust-i2,2017-18,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,476,238.0 2.08,2.08,a-sust-i2,2017-18,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 1.28,1.28,a-sust-i2,2017-18,Reading - J Warren Killam,02460017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,420,420.0 1.792,1.79,a-sust-i2,2017-18,Reading - Joshua Eaton,02460010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 --Infinity,1,a-sust-i2,2017-18,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2017-18,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity -11.76,1,a-sust-i2,2017-18,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1235,1235.0 3.496,3.5,a-sust-i2,2017-18,Reading - Walter S Parker Middle,02460310, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,563,281.5 3.36,3.36,a-sust-i2,2017-18,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 --Infinity,1,a-sust-i2,2017-18,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1991,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity --Infinity,1,a-sust-i2,2017-18,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity --Infinity,1,a-sust-i2,2017-18,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity --Infinity,1,a-sust-i2,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity --Infinity,1,a-sust-i2,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2017-18,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2017-18,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2017-18,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,768,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1991,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2017-18,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity +NA,NA,a-sust-i2,2017-18,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i2,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity +NA,NA,a-sust-i2,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2017-18,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2017-18,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity -12.768,1,a-sust-i2,2017-18,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,649,1298.0 --Infinity,1,a-sust-i2,2017-18,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2017-18,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity -4.44,1,a-sust-i2,2017-18,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,311,777.5 --Infinity,1,a-sust-i2,2017-18,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity +NA,NA,a-sust-i2,2017-18,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,645,Infinity 4.856,4.86,a-sust-i2,2017-18,Rockport - Rockport Elementary,02520005, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,393,196.5 --Infinity,1,a-sust-i2,2017-18,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2017-18,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2017-18,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2017-18,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity 2.32,2.32,a-sust-i2,2017-18,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,71,355.0 --Infinity,1,a-sust-i2,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1422,Infinity --Infinity,1,a-sust-i2,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1574,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2017-18,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1422,Infinity +NA,NA,a-sust-i2,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1574,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,920,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2017-18,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity -12.224,1,a-sust-i2,2017-18,Sandwich - Forestdale School,02610002, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,632,1264.0 -0.7893333333333339,1,a-sust-i2,2017-18,Sandwich - Oak Ridge,02610025, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,824,549.3333333333334 --Infinity,1,a-sust-i2,2017-18,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2017-18,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2017-18,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity --Infinity,1,a-sust-i2,2017-18,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2017-18,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2017-18,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2017-18,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity --Infinity,1,a-sust-i2,2017-18,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2017-18,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2017-18,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2017-18,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2017-18,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2017-18,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2017-18,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2017-18,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2017-18,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656,Infinity +NA,NA,a-sust-i2,2017-18,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2017-18,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity 3.008,3.01,a-sust-i2,2017-18,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,312,312.0 --Infinity,1,a-sust-i2,2017-18,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +NA,NA,a-sust-i2,2017-18,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity 3.68,3.68,a-sust-i2,2017-18,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,270,270.0 2.24,2.24,a-sust-i2,2017-18,Scituate - Jenkins Elementary School,02640015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,360,360.0 -1.21,1,a-sust-i2,2017-18,Scituate - Scituate High School,02640505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.6, 1.6,921,575.625 1.6,1.6,a-sust-i2,2017-18,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,400,400.0 --Infinity,1,a-sust-i2,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2017-18,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2017-18,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2017-18,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2017-18,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i2,2017-18,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2017-18,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2017-18,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2017-18,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2017-18,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i2,2017-18,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity -4.0,1,a-sust-i2,2017-18,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.7,525,750.0 0.0,1,a-sust-i2,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,50,500.0 -26.528,1,a-sust-i2,2017-18,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1079,2158.0 --Infinity,1,a-sust-i2,2017-18,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,873,Infinity +NA,NA,a-sust-i2,2017-18,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,873,Infinity -13.216,1,a-sust-i2,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1326,1326.0 -0.42,1,a-sust-i2,2017-18,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,421,526.25 --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,967,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1831,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2017-18,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity --Infinity,1,a-sust-i2,2017-18,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,122,Infinity --Infinity,1,a-sust-i2,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1009,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,967,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1831,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2017-18,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2017-18,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,122,Infinity +NA,NA,a-sust-i2,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity -12.88,1,a-sust-i2,2017-18,Silver Lake - Silver Lake Regional High,07600505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1305,1305.0 -0.672,1,a-sust-i2,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,542,542.0 -11.146666666666668,1,a-sust-i2,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,359,1196.6666666666667 --Infinity,1,a-sust-i2,2017-18,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2017-18,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity 0.16,1,a-sust-i2,2017-18,Somerset - North Elementary,02730008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,490,490.0 --Infinity,1,a-sust-i2,2017-18,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2017-18,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2017-18,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2017-18,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity -24.032,1,a-sust-i2,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1001,2002.0 --Infinity,1,a-sust-i2,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2017-18,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2017-18,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572,Infinity -5.44,1,a-sust-i2,2017-18,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,420,840.0 --Infinity,1,a-sust-i2,2017-18,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2017-18,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity +NA,NA,a-sust-i2,2017-18,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2017-18,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity -6.62,1,a-sust-i2,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.3, 0.0, 0.8,731,913.75 --Infinity,1,a-sust-i2,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,927,Infinity --Infinity,1,a-sust-i2,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +NA,NA,a-sust-i2,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,927,Infinity +NA,NA,a-sust-i2,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity -2.24,1,a-sust-i2,2017-18,Southampton - William E Norris,02750005, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,512,640.0 3.744,3.74,a-sust-i2,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 3.872,3.87,a-sust-i2,2017-18,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,258,258.0 2.624,2.62,a-sust-i2,2017-18,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,336,336.0 0.64,1,a-sust-i2,2017-18,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,460,460.0 --Infinity,1,a-sust-i2,2017-18,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2017-18,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity --Infinity,1,a-sust-i2,2017-18,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2017-18,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2017-18,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2017-18,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2017-18,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +NA,NA,a-sust-i2,2017-18,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2017-18,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2017-18,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity -14.832,1,a-sust-i2,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1427,1427.0 --Infinity,1,a-sust-i2,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2017-18,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity --Infinity,1,a-sust-i2,2017-18,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1123,Infinity --Infinity,1,a-sust-i2,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2017-18,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity +NA,NA,a-sust-i2,2017-18,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1123,Infinity +NA,NA,a-sust-i2,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity -3.52,1,a-sust-i2,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,720,720.0 --Infinity,1,a-sust-i2,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity -1.376,1,a-sust-i2,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,293,586.0 -4.32,1,a-sust-i2,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,231,770.0 -0.34,1,a-sust-i2,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,417,521.25 -14.666666666666668,1,a-sust-i2,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,425,1416.6666666666667 --Infinity,1,a-sust-i2,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1079,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,766,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1436,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2049,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1304,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2017-18,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2017-18,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2017-18,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2017-18,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity --Infinity,1,a-sust-i2,2017-18,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity --Infinity,1,a-sust-i2,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity --Infinity,1,a-sust-i2,2017-18,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2017-18,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2017-18,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity --Infinity,1,a-sust-i2,2017-18,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1079,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,766,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1436,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2049,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1304,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2017-18,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2017-18,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2017-18,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2017-18,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2017-18,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity +NA,NA,a-sust-i2,2017-18,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +NA,NA,a-sust-i2,2017-18,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2017-18,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2017-18,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +NA,NA,a-sust-i2,2017-18,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity -9.584,1,a-sust-i2,2017-18,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1099,1099.0 --Infinity,1,a-sust-i2,2017-18,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2017-18,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity 3.2,3.2,a-sust-i2,2017-18,Sturbridge - Burgess Elementary,02870005, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,900,300.0 --Infinity,1,a-sust-i2,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity --Infinity,1,a-sust-i2,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity --Infinity,1,a-sust-i2,2017-18,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2017-18,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2017-18,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity --Infinity,1,a-sust-i2,2017-18,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2017-18,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2017-18,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2017-18,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2017-18,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2017-18,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity +NA,NA,a-sust-i2,2017-18,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2017-18,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2017-18,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i2,2017-18,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2017-18,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2017-18,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2017-18,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2017-18,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2017-18,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity -23.52,1,a-sust-i2,2017-18,Swampscott - Clarke,02910005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,197,1970.0 -1.152,1,a-sust-i2,2017-18,Swampscott - Hadley,02910010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,286,572.0 -1.472,1,a-sust-i2,2017-18,Swampscott - Stanley,02910020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,296,592.0 -5.5,1,a-sust-i2,2017-18,Swampscott - Swampscott High,02910505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,675,843.75 -4.048,1,a-sust-i2,2017-18,Swampscott - Swampscott Middle,02910305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,753,753.0 --Infinity,1,a-sust-i2,2017-18,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity --Infinity,1,a-sust-i2,2017-18,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2017-18,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2017-18,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity --Infinity,1,a-sust-i2,2017-18,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1538,Infinity --Infinity,1,a-sust-i2,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2017-18,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +NA,NA,a-sust-i2,2017-18,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2017-18,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2017-18,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i2,2017-18,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1538,Infinity +NA,NA,a-sust-i2,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity -3.648,1,a-sust-i2,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,728,728.0 --Infinity,1,a-sust-i2,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity -32.64,1,a-sust-i2,2017-18,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.1, 0.0, 0.0, 0.2, 0.0, 0.0, 0.3,762,2540.0 -24.96,1,a-sust-i2,2017-18,Taunton - East Taunton Elementary,02930010, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,618,2060.0 -18.56,1,a-sust-i2,2017-18,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,332,1660.0 @@ -12592,180 +12592,180 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -11.48,1,a-sust-i2,2017-18,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,487,1217.5 -7.2,1,a-sust-i2,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,95,950.0 -76.416,1,a-sust-i2,2017-18,Taunton - Taunton High,02930505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2638,5276.0 --Infinity,1,a-sust-i2,2017-18,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2017-18,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity --Infinity,1,a-sust-i2,2017-18,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity --Infinity,1,a-sust-i2,2017-18,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity --Infinity,1,a-sust-i2,2017-18,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2017-18,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,918,Infinity --Infinity,1,a-sust-i2,2017-18,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2017-18,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2017-18,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,986,Infinity --Infinity,1,a-sust-i2,2017-18,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2017-18,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2017-18,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2017-18,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity --Infinity,1,a-sust-i2,2017-18,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2017-18,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +NA,NA,a-sust-i2,2017-18,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2017-18,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +NA,NA,a-sust-i2,2017-18,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +NA,NA,a-sust-i2,2017-18,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +NA,NA,a-sust-i2,2017-18,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2017-18,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,918,Infinity +NA,NA,a-sust-i2,2017-18,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2017-18,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2017-18,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,986,Infinity +NA,NA,a-sust-i2,2017-18,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2017-18,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2017-18,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2017-18,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity +NA,NA,a-sust-i2,2017-18,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2017-18,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity -3.664,1,a-sust-i2,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,729,729.0 --Infinity,1,a-sust-i2,2017-18,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2017-18,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity -0.032,1,a-sust-i2,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 2.088,2.09,a-sust-i2,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,739,369.5 --Infinity,1,a-sust-i2,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity --Infinity,1,a-sust-i2,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity --Infinity,1,a-sust-i2,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity --Infinity,1,a-sust-i2,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2017-18,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i2,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +NA,NA,a-sust-i2,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2017-18,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity 4.144,4.14,a-sust-i2,2017-18,Uxbridge - Uxbridge High,03040505, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,482,241.0 -2.213333333333334,1,a-sust-i2,2017-18,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,383,638.3333333333334 --Infinity,1,a-sust-i2,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity 0.56,1,a-sust-i2,2017-18,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,372,465.0 -3.648,1,a-sust-i2,2017-18,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,364,728.0 --Infinity,1,a-sust-i2,2017-18,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2017-18,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2017-18,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2017-18,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2017-18,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity --Infinity,1,a-sust-i2,2017-18,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2017-18,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2017-18,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2017-18,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2017-18,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2017-18,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2017-18,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity -4.832,1,a-sust-i2,2017-18,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,802,802.0 --Infinity,1,a-sust-i2,2017-18,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2017-18,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity -29.44,1,a-sust-i2,2017-18,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,468,2340.0 -4.832,1,a-sust-i2,2017-18,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,401,802.0 -26.08,1,a-sust-i2,2017-18,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,2130,2130.0 --Infinity,1,a-sust-i2,2017-18,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2017-18,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity -8.704,1,a-sust-i2,2017-18,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1044,1044.0 --Infinity,1,a-sust-i2,2017-18,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2017-18,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1028,Infinity --Infinity,1,a-sust-i2,2017-18,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity --Infinity,1,a-sust-i2,2017-18,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2017-18,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2017-18,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1028,Infinity +NA,NA,a-sust-i2,2017-18,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +NA,NA,a-sust-i2,2017-18,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity 5.424,5,a-sust-i2,2017-18,Wales - Wales Elementary,03060005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,161,161.0 --Infinity,1,a-sust-i2,2017-18,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2017-18,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2017-18,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity --Infinity,1,a-sust-i2,2017-18,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2017-18,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2017-18,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1132,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2017-18,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1132,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity -6.016,1,a-sust-i2,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,438,876.0 --Infinity,1,a-sust-i2,2017-18,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1620,Infinity --Infinity,1,a-sust-i2,2017-18,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2017-18,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2017-18,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2017-18,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity --Infinity,1,a-sust-i2,2017-18,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1620,Infinity +NA,NA,a-sust-i2,2017-18,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2017-18,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2017-18,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2017-18,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity +NA,NA,a-sust-i2,2017-18,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity -3.616,1,a-sust-i2,2017-18,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,726,726.0 0.672,1,a-sust-i2,2017-18,Wareham - Wareham Senior High,03100505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,458,458.0 --Infinity,1,a-sust-i2,2017-18,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2017-18,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity +NA,NA,a-sust-i2,2017-18,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2017-18,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity 1.328,1.33,a-sust-i2,2017-18,Watertown - James Russell Lowell,03140025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,417,417.0 --Infinity,1,a-sust-i2,2017-18,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity --Infinity,1,a-sust-i2,2017-18,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2017-18,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674,Infinity +NA,NA,a-sust-i2,2017-18,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity -4.38857142857143,1,a-sust-i2,2017-18,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.7,542,774.2857142857143 1.824,1.82,a-sust-i2,2017-18,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,386,386.0 -0.992,1,a-sust-i2,2017-18,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,281,562.0 --Infinity,1,a-sust-i2,2017-18,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity +NA,NA,a-sust-i2,2017-18,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856,Infinity 1.205333333333333,1.21,a-sust-i2,2017-18,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 1.5,637,424.6666666666667 --Infinity,1,a-sust-i2,2017-18,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2017-18,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,827,Infinity +NA,NA,a-sust-i2,2017-18,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2017-18,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,827,Infinity -10.848,1,a-sust-i2,2017-18,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,589,1178.0 --Infinity,1,a-sust-i2,2017-18,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1128,Infinity --Infinity,1,a-sust-i2,2017-18,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1569,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1128,Infinity +NA,NA,a-sust-i2,2017-18,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1569,Infinity 3.52,3.52,a-sust-i2,2017-18,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,112,280.0 --Infinity,1,a-sust-i2,2017-18,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity --Infinity,1,a-sust-i2,2017-18,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2017-18,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2017-18,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity 4.048,4.05,a-sust-i2,2017-18,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 --Infinity,1,a-sust-i2,2017-18,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity --Infinity,1,a-sust-i2,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity --Infinity,1,a-sust-i2,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,122,Infinity --Infinity,1,a-sust-i2,2017-18,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2017-18,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2017-18,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity +NA,NA,a-sust-i2,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity +NA,NA,a-sust-i2,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,122,Infinity +NA,NA,a-sust-i2,2017-18,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2017-18,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity 4.176,4.18,a-sust-i2,2017-18,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,239,239.0 --Infinity,1,a-sust-i2,2017-18,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity --Infinity,1,a-sust-i2,2017-18,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity +NA,NA,a-sust-i2,2017-18,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2017-18,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518,Infinity -4.746666666666668,1,a-sust-i2,2017-18,West Springfield - Tatham,03320040, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,239,796.6666666666667 --Infinity,1,a-sust-i2,2017-18,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1234,Infinity +NA,NA,a-sust-i2,2017-18,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1234,Infinity -15.973333333333336,1,a-sust-i2,2017-18,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.6,899,1498.3333333333335 -46.08,1,a-sust-i2,2017-18,Westborough - Annie E Fales,03210010, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,338,3380.0 0.0,1,a-sust-i2,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,500,500.0 1.248,1.25,a-sust-i2,2017-18,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,422,422.0 --Infinity,1,a-sust-i2,2017-18,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity --Infinity,1,a-sust-i2,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2017-18,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935,Infinity +NA,NA,a-sust-i2,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity -10.096,1,a-sust-i2,2017-18,Westborough - Westborough High,03210505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1131,1131.0 --Infinity,1,a-sust-i2,2017-18,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1257,Infinity --Infinity,1,a-sust-i2,2017-18,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity --Infinity,1,a-sust-i2,2017-18,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1715,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1257,Infinity +NA,NA,a-sust-i2,2017-18,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,647,Infinity +NA,NA,a-sust-i2,2017-18,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1715,Infinity -1.76,1,a-sust-i2,2017-18,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,122,610.0 --Infinity,1,a-sust-i2,2017-18,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2017-18,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity 1.5,1.5,a-sust-i2,2017-18,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,325,406.25 -5.88,1,a-sust-i2,2017-18,Weston - Weston High,03300505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,694,867.5 -1.68,1,a-sust-i2,2017-18,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,484,605.0 --Infinity,1,a-sust-i2,2017-18,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2017-18,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2017-18,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2017-18,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2017-18,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2017-18,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity -0.8,1,a-sust-i2,2017-18,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,550,550.0 4.8,4.8,a-sust-i2,2017-18,Westwood - Deerfield School,03350010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,200,200.0 4.0,4.0,a-sust-i2,2017-18,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,250,250.0 --Infinity,1,a-sust-i2,2017-18,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i2,2017-18,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity 3.312,3.31,a-sust-i2,2017-18,Westwood - Martha Jones,03350017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 2.9714285714285715,2.97,a-sust-i2,2017-18,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,220,314.2857142857143 -8.032,1,a-sust-i2,2017-18,Westwood - Westwood High,03350505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1002,1002.0 --Infinity,1,a-sust-i2,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity 5.456,5,a-sust-i2,2017-18,Westwood - William E Sheehan,03350025, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,318,159.0 --Infinity,1,a-sust-i2,2017-18,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,906,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,882,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1900,Infinity --Infinity,1,a-sust-i2,2017-18,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,906,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,882,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1900,Infinity +NA,NA,a-sust-i2,2017-18,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity 3.52,3.52,a-sust-i2,2017-18,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,140,280.0 -4.576,1,a-sust-i2,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,393,786.0 -2.368,1,a-sust-i2,2017-18,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,324,648.0 @@ -12774,45 +12774,45 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -5.952,1,a-sust-i2,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,436,872.0 -29.504,1,a-sust-i2,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1172,2344.0 -10.4,1,a-sust-i2,2017-18,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,575,1150.0 --Infinity,1,a-sust-i2,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1254,Infinity --Infinity,1,a-sust-i2,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2017-18,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2017-18,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2017-18,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1254,Infinity +NA,NA,a-sust-i2,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2017-18,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2017-18,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2017-18,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity -3.04,1,a-sust-i2,2017-18,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,345,690.0 4.048,4.05,a-sust-i2,2017-18,Wilmington - West Intermediate,03420080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,247,247.0 --Infinity,1,a-sust-i2,2017-18,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2017-18,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,862,Infinity +NA,NA,a-sust-i2,2017-18,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2017-18,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,862,Infinity -5.376,1,a-sust-i2,2017-18,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,836,836.0 --Infinity,1,a-sust-i2,2017-18,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2017-18,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity --Infinity,1,a-sust-i2,2017-18,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2017-18,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity --Infinity,1,a-sust-i2,2017-18,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2017-18,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2017-18,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity --Infinity,1,a-sust-i2,2017-18,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2017-18,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1111,Infinity --Infinity,1,a-sust-i2,2017-18,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2017-18,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2017-18,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1351,Infinity --Infinity,1,a-sust-i2,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2017-18,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity --Infinity,1,a-sust-i2,2017-18,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity --Infinity,1,a-sust-i2,2017-18,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2017-18,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2017-18,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity +NA,NA,a-sust-i2,2017-18,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2017-18,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +NA,NA,a-sust-i2,2017-18,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2017-18,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2017-18,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +NA,NA,a-sust-i2,2017-18,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2017-18,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1111,Infinity +NA,NA,a-sust-i2,2017-18,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2017-18,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2017-18,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1351,Infinity +NA,NA,a-sust-i2,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2017-18,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i2,2017-18,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1317,Infinity +NA,NA,a-sust-i2,2017-18,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity -7.493333333333334,1,a-sust-i2,2017-18,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,581,968.3333333333334 -11.936,1,a-sust-i2,2017-18,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,623,1246.0 -12.68,1,a-sust-i2,2017-18,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,1034,1292.5 @@ -12832,7 +12832,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.38,1,a-sust-i2,2017-18,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,569,711.25 -6.88,1,a-sust-i2,2017-18,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,465,930.0 -7.48,1,a-sust-i2,2017-18,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,387,967.5 --Infinity,1,a-sust-i2,2017-18,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2017-18,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity -7.786666666666668,1,a-sust-i2,2017-18,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,296,986.6666666666667 -8.12,1,a-sust-i2,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,403,1007.5 -3.4,1,a-sust-i2,2017-18,Worcester - Lake View,03480145, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,285,712.5 @@ -12850,7 +12850,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -7.68,1,a-sust-i2,2017-18,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,392,980.0 -4.192,1,a-sust-i2,2017-18,Worcester - Thorndyke Road,03480235, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,381,762.0 -10.16,1,a-sust-i2,2017-18,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,454,1135.0 --Infinity,1,a-sust-i2,2017-18,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2017-18,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity -13.44,1,a-sust-i2,2017-18,Worcester - Vernon Hill School,03480280, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,536,1340.0 -4.16,1,a-sust-i2,2017-18,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,152,760.0 -6.8,1,a-sust-i2,2017-18,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,370,925.0 @@ -12861,145 +12861,145 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.04,3.04,a-sust-i2,2017-18,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,62,310.0 -6.912,1,a-sust-i2,2017-18,Wrentham - Charles E Roderick,03500010, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,466,932.0 -10.56,1,a-sust-i2,2017-18,Wrentham - Delaney,03500003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,580,1160.0 --Infinity,1,a-sust-i2,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1425,Infinity +NA,NA,a-sust-i2,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1425,Infinity 0.768,1,a-sust-i2,2016-17,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,452,452.0 -1.28,1,a-sust-i2,2016-17,Abington - Beaver Brook Elementary School,00010003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,580,580.0 --Infinity,1,a-sust-i2,2016-17,Abington - Center Elementary School,00010002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2016-17,Abington - Center Elementary School,00010002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity 2.752,2.75,a-sust-i2,2016-17,Abington - Frolio Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 --Infinity,1,a-sust-i2,2016-17,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2016-17,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity -8.864,1,a-sust-i2,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,527,1054.0 --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1864,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,911,Infinity --Infinity,1,a-sust-i2,2016-17,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity --Infinity,1,a-sust-i2,2016-17,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity --Infinity,1,a-sust-i2,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1864,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,517,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,911,Infinity +NA,NA,a-sust-i2,2016-17,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2016-17,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity +NA,NA,a-sust-i2,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity -30.08,1,a-sust-i2,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,952,2380.0 --Infinity,1,a-sust-i2,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2016-17,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1222,Infinity --Infinity,1,a-sust-i2,2016-17,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity --Infinity,1,a-sust-i2,2016-17,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity --Infinity,1,a-sust-i2,2016-17,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity --Infinity,1,a-sust-i2,2016-17,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2016-17,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity --Infinity,1,a-sust-i2,2016-17,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity --Infinity,1,a-sust-i2,2016-17,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity --Infinity,1,a-sust-i2,2016-17,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity --Infinity,1,a-sust-i2,2016-17,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i2,2016-17,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2016-17,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2016-17,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2016-17,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity --Infinity,1,a-sust-i2,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1806,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1222,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +NA,NA,a-sust-i2,2016-17,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i2,2016-17,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i2,2016-17,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594,Infinity +NA,NA,a-sust-i2,2016-17,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i2,2016-17,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2016-17,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2016-17,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2016-17,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926,Infinity +NA,NA,a-sust-i2,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2016-17,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1806,Infinity +NA,NA,a-sust-i2,2016-17,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity -86.88,1,a-sust-i2,2016-17,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,593,5930.0 --Infinity,1,a-sust-i2,2016-17,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity --Infinity,1,a-sust-i2,2016-17,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i2,2016-17,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2016-17,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2016-17,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2016-17,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i2,2016-17,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +NA,NA,a-sust-i2,2016-17,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2016-17,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity -12.64,1,a-sust-i2,2016-17,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1290,1290.0 -7.232,1,a-sust-i2,2016-17,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,476,952.0 --Infinity,1,a-sust-i2,2016-17,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2016-17,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i2,2016-17,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2016-17,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity -5.6,1,a-sust-i2,2016-17,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,425,850.0 --Infinity,1,a-sust-i2,2016-17,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity --Infinity,1,a-sust-i2,2016-17,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1208,Infinity --Infinity,1,a-sust-i2,2016-17,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2016-17,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity --Infinity,1,a-sust-i2,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity --Infinity,1,a-sust-i2,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity --Infinity,1,a-sust-i2,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2016-17,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity --Infinity,1,a-sust-i2,2016-17,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity --Infinity,1,a-sust-i2,2016-17,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity --Infinity,1,a-sust-i2,2016-17,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity --Infinity,1,a-sust-i2,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity --Infinity,1,a-sust-i2,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1103,Infinity --Infinity,1,a-sust-i2,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity --Infinity,1,a-sust-i2,2016-17,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity --Infinity,1,a-sust-i2,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2016-17,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2016-17,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70,Infinity +NA,NA,a-sust-i2,2016-17,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1208,Infinity +NA,NA,a-sust-i2,2016-17,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2016-17,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i2,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702,Infinity +NA,NA,a-sust-i2,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570,Infinity +NA,NA,a-sust-i2,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2016-17,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i2,2016-17,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2016-17,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +NA,NA,a-sust-i2,2016-17,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1103,Infinity +NA,NA,a-sust-i2,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity +NA,NA,a-sust-i2,2016-17,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +NA,NA,a-sust-i2,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2016-17,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity -9.776,1,a-sust-i2,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1111,1111.0 --Infinity,1,a-sust-i2,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i2,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity -18.736,1,a-sust-i2,2016-17,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1671,1671.0 -9.664,1,a-sust-i2,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,552,1104.0 --Infinity,1,a-sust-i2,2016-17,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2016-17,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity -16.906666666666666,1,a-sust-i2,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,467,1556.6666666666667 -6.176,1,a-sust-i2,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,443,886.0 -23.52,1,a-sust-i2,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,394,1970.0 --Infinity,1,a-sust-i2,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity --Infinity,1,a-sust-i2,2016-17,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2016-17,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity -11.968,1,a-sust-i2,2016-17,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,624,1248.0 -17.44,1,a-sust-i2,2016-17,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,795,1590.0 -7.253333333333334,1,a-sust-i2,2016-17,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,286,953.3333333333334 -6.986666666666668,1,a-sust-i2,2016-17,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,281,936.6666666666667 -9.184,1,a-sust-i2,2016-17,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,537,1074.0 --Infinity,1,a-sust-i2,2016-17,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity --Infinity,1,a-sust-i2,2016-17,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2016-17,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319,Infinity +NA,NA,a-sust-i2,2016-17,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity 1.456,1.46,a-sust-i2,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 --Infinity,1,a-sust-i2,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity -4.448,1,a-sust-i2,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,389,778.0 -8.896,1,a-sust-i2,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,528,1056.0 -6.928,1,a-sust-i2,2016-17,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1866,933.0 -4.064,1,a-sust-i2,2016-17,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,754,754.0 --Infinity,1,a-sust-i2,2016-17,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity +NA,NA,a-sust-i2,2016-17,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity 3.312,3.31,a-sust-i2,2016-17,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 --Infinity,1,a-sust-i2,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity 2.304,2.3,a-sust-i2,2016-17,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 3.84,3.84,a-sust-i2,2016-17,Barnstable - West Barnstable Elementary,00200005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,260,260.0 0.944,1,a-sust-i2,2016-17,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,441,441.0 -38.4,1,a-sust-i2,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,290,2900.0 --Infinity,1,a-sust-i2,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2016-17,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity --Infinity,1,a-sust-i2,2016-17,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity --Infinity,1,a-sust-i2,2016-17,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity --Infinity,1,a-sust-i2,2016-17,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2016-17,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,710,Infinity --Infinity,1,a-sust-i2,2016-17,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity --Infinity,1,a-sust-i2,2016-17,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2016-17,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2016-17,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2016-17,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,739,Infinity --Infinity,1,a-sust-i2,2016-17,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity --Infinity,1,a-sust-i2,2016-17,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity --Infinity,1,a-sust-i2,2016-17,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2016-17,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +NA,NA,a-sust-i2,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2016-17,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity +NA,NA,a-sust-i2,2016-17,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity +NA,NA,a-sust-i2,2016-17,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598,Infinity +NA,NA,a-sust-i2,2016-17,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2016-17,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,710,Infinity +NA,NA,a-sust-i2,2016-17,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +NA,NA,a-sust-i2,2016-17,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2016-17,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2016-17,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2016-17,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,739,Infinity +NA,NA,a-sust-i2,2016-17,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity +NA,NA,a-sust-i2,2016-17,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +NA,NA,a-sust-i2,2016-17,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2016-17,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity -14.47111111111111,1,a-sust-i2,2016-17,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.4, 0.9,1264,1404.4444444444443 -6.52,1,a-sust-i2,2016-17,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,363,907.5 -3.936,1,a-sust-i2,2016-17,Belmont - Mary Lee Burbank,00260010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,373,746.0 -12.512,1,a-sust-i2,2016-17,Belmont - Roger E Wellington,00260035, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,641,1282.0 -6.976,1,a-sust-i2,2016-17,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,468,936.0 -35.424,1,a-sust-i2,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1357,2714.0 --Infinity,1,a-sust-i2,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity --Infinity,1,a-sust-i2,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i2,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity -9.184,1,a-sust-i2,2016-17,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,537,1074.0 --Infinity,1,a-sust-i2,2016-17,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity --Infinity,1,a-sust-i2,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2016-17,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity 2.368,2.37,a-sust-i2,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 1.92,1.92,a-sust-i2,2016-17,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,190,380.0 -10.688,1,a-sust-i2,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,584,1168.0 @@ -13009,177 +13009,177 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.456,1,a-sust-i2,2016-17,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,358,716.0 -6.848,1,a-sust-i2,2016-17,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,464,928.0 -4.192,1,a-sust-i2,2016-17,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,381,762.0 --Infinity,1,a-sust-i2,2016-17,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112,Infinity +NA,NA,a-sust-i2,2016-17,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112,Infinity -2.426666666666668,1,a-sust-i2,2016-17,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,391,651.6666666666667 --Infinity,1,a-sust-i2,2016-17,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1376,Infinity +NA,NA,a-sust-i2,2016-17,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1376,Infinity -7.76,1,a-sust-i2,2016-17,Billerica - Eugene C Vining,00310030, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,197,985.0 --Infinity,1,a-sust-i2,2016-17,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity --Infinity,1,a-sust-i2,2016-17,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2016-17,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +NA,NA,a-sust-i2,2016-17,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity 2.864,2.86,a-sust-i2,2016-17,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,321,321.0 --Infinity,1,a-sust-i2,2016-17,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2016-17,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2016-17,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2016-17,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity -0.112,1,a-sust-i2,2016-17,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,507,507.0 -2.84,1,a-sust-i2,2016-17,Billerica - Thomas Ditson,00310005, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,542,677.5 -11.296,1,a-sust-i2,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1206,1206.0 --Infinity,1,a-sust-i2,2016-17,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2016-17,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity --Infinity,1,a-sust-i2,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,867,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2403,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1698,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,811,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Carter Developmental Center,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - East Boston Early Childhood Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1496,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Edison K-8,00350375, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Jackson Mann,00350013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,765,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Josiah Quincy,00350286, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Madison Park High,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,922,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Mattahunt,00350226, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1437,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Paul A Dever,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,946,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,972,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2016-17,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2016-17,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +NA,NA,a-sust-i2,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,867,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Blackstone,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2403,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1698,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,811,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Carter Developmental Center,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2016-17,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2016-17,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2016-17,Boston - East Boston Early Childhood Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2016-17,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1496,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Edison K-8,00350375, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2016-17,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Harvard-Kent,00350200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Henry Grew,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Jackson Mann,00350013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,765,Infinity +NA,NA,a-sust-i2,2016-17,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +NA,NA,a-sust-i2,2016-17,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2016-17,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i2,2016-17,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2016-17,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2016-17,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2016-17,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2016-17,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2016-17,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Josiah Quincy,00350286, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2016-17,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Madison Park High,00350537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,922,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Mattahunt,00350226, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +NA,NA,a-sust-i2,2016-17,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2016-17,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2016-17,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1437,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,886,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Paul A Dever,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,946,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2016-17,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,972,Infinity +NA,NA,a-sust-i2,2016-17,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity -4.144,1,a-sust-i2,2016-17,Boston - UP Academy Holland,00350167, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,759,759.0 --Infinity,1,a-sust-i2,2016-17,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2016-17,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2016-17,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +NA,NA,a-sust-i2,2016-17,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2016-17,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity 7.896307692307692,5,a-sust-i2,2016-17,Boston - William McKinley,00350363, 0.0, 12.6, 9.4, 13.0, 9.0, 7.0, 1.0, 52.0,337,6.480769230769231 --Infinity,1,a-sust-i2,2016-17,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2016-17,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2016-17,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2016-17,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity -2.88,1,a-sust-i2,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,680,680.0 --Infinity,1,a-sust-i2,2016-17,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, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2016-17,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, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity 2.906666666666667,2.91,a-sust-i2,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,955,318.3333333333333 --Infinity,1,a-sust-i2,2016-17,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2016-17,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity -14.752,1,a-sust-i2,2016-17,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,711,1422.0 1.072,1.07,a-sust-i2,2016-17,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 -3.36,1,a-sust-i2,2016-17,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,355,710.0 --Infinity,1,a-sust-i2,2016-17,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2016-17,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2016-17,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2016-17,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity -1.376,1,a-sust-i2,2016-17,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,293,586.0 --Infinity,1,a-sust-i2,2016-17,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2016-17,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1755,Infinity --Infinity,1,a-sust-i2,2016-17,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1755,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity -3.728,1,a-sust-i2,2016-17,Braintree - East Middle School,00400305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,733,733.0 --Infinity,1,a-sust-i2,2016-17,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2016-17,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity --Infinity,1,a-sust-i2,2016-17,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2016-17,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity --Infinity,1,a-sust-i2,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2016-17,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2016-17,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity -4.426666666666668,1,a-sust-i2,2016-17,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,233,776.6666666666667 --Infinity,1,a-sust-i2,2016-17,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2016-17,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity 3.952,3.95,a-sust-i2,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,506,253.0 -52.48,1,a-sust-i2,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,1512,3780.0 --Infinity,1,a-sust-i2,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +NA,NA,a-sust-i2,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity 5.408,5,a-sust-i2,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,324,162.0 1.7846153846153847,1.78,a-sust-i2,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 2.0, 0.0, 0.0, 0.6, 0.0, 0.0, 2.6,1010,388.46153846153845 -3.056,1,a-sust-i2,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,691,691.0 --Infinity,1,a-sust-i2,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +NA,NA,a-sust-i2,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity 1.664,1.66,a-sust-i2,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,792,396.0 3.44,3.44,a-sust-i2,2016-17,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,285,285.0 --Infinity,1,a-sust-i2,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity -12.848,1,a-sust-i2,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1303,1303.0 -17.973333333333336,1,a-sust-i2,2016-17,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,487,1623.3333333333335 -3.68,1,a-sust-i2,2016-17,Brockton - Barrett Russell School,00440007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,219,730.0 @@ -13189,11 +13189,11 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -12.96,1,a-sust-i2,2016-17,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,655,1310.0 -35.093333333333334,1,a-sust-i2,2016-17,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,808,2693.3333333333335 -20.8,1,a-sust-i2,2016-17,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,540,1800.0 --Infinity,1,a-sust-i2,2016-17,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1042,Infinity --Infinity,1,a-sust-i2,2016-17,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity --Infinity,1,a-sust-i2,2016-17,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity --Infinity,1,a-sust-i2,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2016-17,Brockton - Goddard Alternative School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2016-17,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1042,Infinity +NA,NA,a-sust-i2,2016-17,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +NA,NA,a-sust-i2,2016-17,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +NA,NA,a-sust-i2,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2016-17,Brockton - Goddard Alternative School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity -45.36,1,a-sust-i2,2016-17,Brockton - Hancock,00440045, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,667,3335.0 -21.44,1,a-sust-i2,2016-17,Brockton - Huntington,00440055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,552,1840.0 -24.26666666666667,1,a-sust-i2,2016-17,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,605,2016.6666666666667 @@ -13203,255 +13203,255 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -32.373333333333335,1,a-sust-i2,2016-17,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,757,2523.3333333333335 -22.08,1,a-sust-i2,2016-17,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,564,1880.0 -19.776,1,a-sust-i2,2016-17,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,868,1736.0 --Infinity,1,a-sust-i2,2016-17,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2016-17,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity --Infinity,1,a-sust-i2,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1608,Infinity +NA,NA,a-sust-i2,2016-17,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2016-17,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity +NA,NA,a-sust-i2,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1608,Infinity 2.912,2.91,a-sust-i2,2016-17,Brookfield - Brookfield Elementary,00450005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,318,318.0 --Infinity,1,a-sust-i2,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity --Infinity,1,a-sust-i2,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity -4.857600000000001,1,a-sust-i2,2016-17,Brookline - Brookline High,00460505, 0.5, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.5,2009,803.6 -16.448,1,a-sust-i2,2016-17,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,764,1528.0 3.744,3.74,a-sust-i2,2016-17,Brookline - Edward Devotion,00460015, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,798,266.0 -7.413333333333334,1,a-sust-i2,2016-17,Brookline - Heath,00460025, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,578,963.3333333333334 -8.346666666666668,1,a-sust-i2,2016-17,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,613,1021.6666666666667 --Infinity,1,a-sust-i2,2016-17,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity --Infinity,1,a-sust-i2,2016-17,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity --Infinity,1,a-sust-i2,2016-17,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity --Infinity,1,a-sust-i2,2016-17,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity --Infinity,1,a-sust-i2,2016-17,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2016-17,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity +NA,NA,a-sust-i2,2016-17,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,600,Infinity +NA,NA,a-sust-i2,2016-17,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,854,Infinity +NA,NA,a-sust-i2,2016-17,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity +NA,NA,a-sust-i2,2016-17,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity -0.824,1,a-sust-i2,2016-17,Burlington - Burlington High,00480505, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1103,551.5 1.792,1.79,a-sust-i2,2016-17,Burlington - Fox Hill,00480007, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 -0.464,1,a-sust-i2,2016-17,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,529,529.0 -5.136,1,a-sust-i2,2016-17,Burlington - Marshall Simonds Middle,00480303, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,821,821.0 1.824,1.82,a-sust-i2,2016-17,Burlington - Memorial,00480015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,386,386.0 3.296,3.3,a-sust-i2,2016-17,Burlington - Pine Glen Elementary,00480020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,294,294.0 --Infinity,1,a-sust-i2,2016-17,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1956,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2016-17,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity --Infinity,1,a-sust-i2,2016-17,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,951,Infinity --Infinity,1,a-sust-i2,2016-17,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2016-17,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2016-17,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2016-17,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2016-17,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1956,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2016-17,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity +NA,NA,a-sust-i2,2016-17,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,951,Infinity +NA,NA,a-sust-i2,2016-17,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2016-17,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2016-17,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2016-17,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2016-17,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity 4.112,4.11,a-sust-i2,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,243,243.0 --Infinity,1,a-sust-i2,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2016-17,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2016-17,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity +NA,NA,a-sust-i2,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2016-17,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2016-17,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity -5.376,1,a-sust-i2,2016-17,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,836,836.0 --Infinity,1,a-sust-i2,2016-17,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i2,2016-17,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2016-17,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity --Infinity,1,a-sust-i2,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2016-17,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2016-17,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2016-17,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2016-17,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2016-17,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i2,2016-17,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2016-17,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134,Infinity +NA,NA,a-sust-i2,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2016-17,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2016-17,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2016-17,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2016-17,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity -15.744,1,a-sust-i2,2016-17,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1484,1484.0 --Infinity,1,a-sust-i2,2016-17,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity --Infinity,1,a-sust-i2,2016-17,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity --Infinity,1,a-sust-i2,2016-17,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,850,Infinity --Infinity,1,a-sust-i2,2016-17,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2016-17,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity +NA,NA,a-sust-i2,2016-17,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2016-17,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,850,Infinity +NA,NA,a-sust-i2,2016-17,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity -41.44,1,a-sust-i2,2016-17,Chelsea - Chelsea High,00570505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1545,3090.0 -21.066666666666666,1,a-sust-i2,2016-17,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,545,1816.6666666666667 --Infinity,1,a-sust-i2,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity --Infinity,1,a-sust-i2,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +NA,NA,a-sust-i2,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity -23.30666666666667,1,a-sust-i2,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,587,1956.6666666666667 --Infinity,1,a-sust-i2,2016-17,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity --Infinity,1,a-sust-i2,2016-17,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2016-17,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i2,2016-17,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity -38.02666666666667,1,a-sust-i2,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,863,2876.666666666667 -20.853333333333335,1,a-sust-i2,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,541,1803.3333333333335 -3.2,1,a-sust-i2,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,140,700.0 --Infinity,1,a-sust-i2,2016-17,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1430,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,947,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,769,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity --Infinity,1,a-sust-i2,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1430,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,947,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,769,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +NA,NA,a-sust-i2,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity -0.928,1,a-sust-i2,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,279,558.0 --Infinity,1,a-sust-i2,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity --Infinity,1,a-sust-i2,2016-17,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2016-17,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2016-17,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity --Infinity,1,a-sust-i2,2016-17,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +NA,NA,a-sust-i2,2016-17,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2016-17,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2016-17,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +NA,NA,a-sust-i2,2016-17,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity -5.408,1,a-sust-i2,2016-17,Cohasset - Cohasset Middle/High School,00650505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,838,838.0 --Infinity,1,a-sust-i2,2016-17,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2016-17,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity --Infinity,1,a-sust-i2,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity --Infinity,1,a-sust-i2,2016-17,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2016-17,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity --Infinity,1,a-sust-i2,2016-17,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +NA,NA,a-sust-i2,2016-17,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2016-17,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646,Infinity +NA,NA,a-sust-i2,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2016-17,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2016-17,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +NA,NA,a-sust-i2,2016-17,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity 4.376,4.38,a-sust-i2,2016-17,Concord - Willard,00670030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,453,226.5 -12.416,1,a-sust-i2,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1276,1276.0 --Infinity,1,a-sust-i2,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity 5.744,5,a-sust-i2,2016-17,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,141,141.0 --Infinity,1,a-sust-i2,2016-17,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity +NA,NA,a-sust-i2,2016-17,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,974,Infinity -1.664,1,a-sust-i2,2016-17,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,302,604.0 --Infinity,1,a-sust-i2,2016-17,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity --Infinity,1,a-sust-i2,2016-17,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,838,Infinity --Infinity,1,a-sust-i2,2016-17,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2016-17,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2016-17,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i2,2016-17,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374,Infinity +NA,NA,a-sust-i2,2016-17,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,838,Infinity +NA,NA,a-sust-i2,2016-17,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2016-17,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2016-17,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity -9.024,1,a-sust-i2,2016-17,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1064,1064.0 -7.44,1,a-sust-i2,2016-17,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,965,965.0 1.136,1.14,a-sust-i2,2016-17,Dartmouth - George H Potter,00720030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,429,429.0 --Infinity,1,a-sust-i2,2016-17,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2016-17,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2016-17,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2016-17,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,739,Infinity +NA,NA,a-sust-i2,2016-17,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2016-17,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2016-17,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2016-17,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,739,Infinity -12.192,1,a-sust-i2,2016-17,Dedham - Dedham Middle School,00730305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,631,1262.0 --Infinity,1,a-sust-i2,2016-17,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2016-17,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity --Infinity,1,a-sust-i2,2016-17,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2016-17,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity --Infinity,1,a-sust-i2,2016-17,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1003,Infinity --Infinity,1,a-sust-i2,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity --Infinity,1,a-sust-i2,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity --Infinity,1,a-sust-i2,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i2,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +NA,NA,a-sust-i2,2016-17,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2016-17,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +NA,NA,a-sust-i2,2016-17,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2016-17,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +NA,NA,a-sust-i2,2016-17,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1003,Infinity +NA,NA,a-sust-i2,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +NA,NA,a-sust-i2,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i2,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity -23.68,1,a-sust-i2,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,396,1980.0 --Infinity,1,a-sust-i2,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,928,Infinity +NA,NA,a-sust-i2,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,928,Infinity -10.4,1,a-sust-i2,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,575,1150.0 --Infinity,1,a-sust-i2,2016-17,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2016-17,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity -13.546666666666669,1,a-sust-i2,2016-17,Douglas - Douglas Elementary School,00770015, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,404,1346.6666666666667 -4.608,1,a-sust-i2,2016-17,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,394,788.0 -11.2,1,a-sust-i2,2016-17,Douglas - Douglas Middle School,00770305, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,360,1200.0 -4.2666666666666675,1,a-sust-i2,2016-17,Douglas - Douglas Primary School,00770005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,230,766.6666666666667 --Infinity,1,a-sust-i2,2016-17,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity --Infinity,1,a-sust-i2,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity --Infinity,1,a-sust-i2,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2016-17,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +NA,NA,a-sust-i2,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity +NA,NA,a-sust-i2,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity -16.693333333333335,1,a-sust-i2,2016-17,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,463,1543.3333333333335 --Infinity,1,a-sust-i2,2016-17,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,801,Infinity +NA,NA,a-sust-i2,2016-17,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,801,Infinity -19.093333333333337,1,a-sust-i2,2016-17,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,508,1693.3333333333335 -6.933333333333334,1,a-sust-i2,2016-17,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,280,933.3333333333334 -21.12,1,a-sust-i2,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,546,1820.0 --Infinity,1,a-sust-i2,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity --Infinity,1,a-sust-i2,2016-17,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, 0.0,292,Infinity --Infinity,1,a-sust-i2,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity +NA,NA,a-sust-i2,2016-17,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, 0.0,292,Infinity +NA,NA,a-sust-i2,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity -3.264,1,a-sust-i2,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,704,704.0 --Infinity,1,a-sust-i2,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity -24.90666666666667,1,a-sust-i2,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,617,2056.666666666667 0.064,1,a-sust-i2,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,496,496.0 --Infinity,1,a-sust-i2,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity -10.656,1,a-sust-i2,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1166,1166.0 2.352,2.35,a-sust-i2,2016-17,Duxbury - Alden School,00820004, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,706,353.0 -1.712,1,a-sust-i2,2016-17,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,607,607.0 -0.456,1,a-sust-i2,2016-17,Duxbury - Duxbury High,00820505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1057,528.5 -4.016,1,a-sust-i2,2016-17,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,751,751.0 --Infinity,1,a-sust-i2,2016-17,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity --Infinity,1,a-sust-i2,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1051,Infinity --Infinity,1,a-sust-i2,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity --Infinity,1,a-sust-i2,2016-17,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628,Infinity --Infinity,1,a-sust-i2,2016-17,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity --Infinity,1,a-sust-i2,2016-17,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity --Infinity,1,a-sust-i2,2016-17,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity --Infinity,1,a-sust-i2,2016-17,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity --Infinity,1,a-sust-i2,2016-17,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity --Infinity,1,a-sust-i2,2016-17,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2016-17,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1051,Infinity +NA,NA,a-sust-i2,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity +NA,NA,a-sust-i2,2016-17,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628,Infinity +NA,NA,a-sust-i2,2016-17,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +NA,NA,a-sust-i2,2016-17,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269,Infinity +NA,NA,a-sust-i2,2016-17,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2016-17,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +NA,NA,a-sust-i2,2016-17,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i2,2016-17,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity -7.072,1,a-sust-i2,2016-17,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,471,942.0 3.904,3.9,a-sust-i2,2016-17,Easthampton - Maple,00860010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,256,256.0 --Infinity,1,a-sust-i2,2016-17,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity +NA,NA,a-sust-i2,2016-17,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192,Infinity -6.368,1,a-sust-i2,2016-17,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,449,898.0 --Infinity,1,a-sust-i2,2016-17,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity --Infinity,1,a-sust-i2,2016-17,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity --Infinity,1,a-sust-i2,2016-17,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2016-17,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1199,Infinity --Infinity,1,a-sust-i2,2016-17,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity --Infinity,1,a-sust-i2,2016-17,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity --Infinity,1,a-sust-i2,2016-17,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2016-17,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +NA,NA,a-sust-i2,2016-17,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,887,Infinity +NA,NA,a-sust-i2,2016-17,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2016-17,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1199,Infinity +NA,NA,a-sust-i2,2016-17,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2016-17,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity +NA,NA,a-sust-i2,2016-17,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity 4.891428571428571,4.89,a-sust-i2,2016-17,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.7,136,194.2857142857143 --Infinity,1,a-sust-i2,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1307,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2023,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,942,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,931,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,878,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity --Infinity,1,a-sust-i2,2016-17,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity --Infinity,1,a-sust-i2,2016-17,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2016-17,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1307,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2023,Infinity +NA,NA,a-sust-i2,2016-17,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,942,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,931,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,878,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +NA,NA,a-sust-i2,2016-17,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity +NA,NA,a-sust-i2,2016-17,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2016-17,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity -6.656,1,a-sust-i2,2016-17,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,458,916.0 -8.448,1,a-sust-i2,2016-17,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,514,1028.0 -59.936,1,a-sust-i2,2016-17,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2123,4246.0 -3.6,1,a-sust-i2,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,725,725.0 --Infinity,1,a-sust-i2,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,624,Infinity -3.72,1,a-sust-i2,2016-17,Fall River - James Tansey,00950140, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,293,732.5 --Infinity,1,a-sust-i2,2016-17,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,770,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,770,Infinity -11.904,1,a-sust-i2,2016-17,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,622,1244.0 --Infinity,1,a-sust-i2,2016-17,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity 7.52,5,a-sust-i2,2016-17,Fall River - Resiliency Middle School,00950335, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,27,30.0 --Infinity,1,a-sust-i2,2016-17,Fall River - Resiliency Preparatory School,00950325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Stone Day School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i2,2016-17,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Resiliency Preparatory School,00950325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Stone Day School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i2,2016-17,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity -12.48,1,a-sust-i2,2016-17,Fall River - William S Greene,00950065, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,768,1280.0 -10.72,1,a-sust-i2,2016-17,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.0, 0.3,351,1170.0 -39.04,1,a-sust-i2,2016-17,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,882,2940.0 -22.293333333333337,1,a-sust-i2,2016-17,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,568,1893.3333333333335 -86.24,1,a-sust-i2,2016-17,Falmouth - Morse Pond School,00960305, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,589,5890.0 -16.746666666666666,1,a-sust-i2,2016-17,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,464,1546.6666666666667 --Infinity,1,a-sust-i2,2016-17,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2016-17,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity -40.0,1,a-sust-i2,2016-17,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,300,3000.0 --Infinity,1,a-sust-i2,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1211,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity --Infinity,1,a-sust-i2,2016-17,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity --Infinity,1,a-sust-i2,2016-17,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity +NA,NA,a-sust-i2,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,642,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1211,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,622,Infinity +NA,NA,a-sust-i2,2016-17,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677,Infinity +NA,NA,a-sust-i2,2016-17,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity 4.0888888888888895,4.09,a-sust-i2,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,220,244.44444444444443 --Infinity,1,a-sust-i2,2016-17,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2016-17,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,837,Infinity --Infinity,1,a-sust-i2,2016-17,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity --Infinity,1,a-sust-i2,2016-17,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1261,Infinity +NA,NA,a-sust-i2,2016-17,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2016-17,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,837,Infinity +NA,NA,a-sust-i2,2016-17,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2016-17,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1261,Infinity -3.072,1,a-sust-i2,2016-17,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,692,692.0 -0.24,1,a-sust-i2,2016-17,Framingham - Brophy,01000006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,515,515.0 -0.736,1,a-sust-i2,2016-17,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,546,546.0 @@ -13460,358 +13460,358 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.56,1,a-sust-i2,2016-17,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 -1.168,1,a-sust-i2,2016-17,Framingham - Hemenway,01000015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,573,573.0 4.256,4.26,a-sust-i2,2016-17,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 --Infinity,1,a-sust-i2,2016-17,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2016-17,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity 1.712,1.71,a-sust-i2,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 -0.912,1,a-sust-i2,2016-17,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,557,557.0 -0.048,1,a-sust-i2,2016-17,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,503,503.0 -3.584,1,a-sust-i2,2016-17,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,724,724.0 -3.52,1,a-sust-i2,2016-17,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,576,720.0 --Infinity,1,a-sust-i2,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1739,Infinity +NA,NA,a-sust-i2,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1739,Infinity 1.392,1.39,a-sust-i2,2016-17,Franklin - Helen Keller Elementary,01010012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,413,413.0 --Infinity,1,a-sust-i2,2016-17,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity 2.16,2.16,a-sust-i2,2016-17,Franklin - Parmenter,01010032, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,365,365.0 --Infinity,1,a-sust-i2,2016-17,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity --Infinity,1,a-sust-i2,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity --Infinity,1,a-sust-i2,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity --Infinity,1,a-sust-i2,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,739,Infinity --Infinity,1,a-sust-i2,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity --Infinity,1,a-sust-i2,2016-17,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity --Infinity,1,a-sust-i2,2016-17,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity --Infinity,1,a-sust-i2,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity --Infinity,1,a-sust-i2,2016-17,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity --Infinity,1,a-sust-i2,2016-17,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity --Infinity,1,a-sust-i2,2016-17,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2016-17,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +NA,NA,a-sust-i2,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +NA,NA,a-sust-i2,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity +NA,NA,a-sust-i2,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,739,Infinity +NA,NA,a-sust-i2,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +NA,NA,a-sust-i2,2016-17,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity +NA,NA,a-sust-i2,2016-17,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +NA,NA,a-sust-i2,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +NA,NA,a-sust-i2,2016-17,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,711,Infinity +NA,NA,a-sust-i2,2016-17,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,547,Infinity +NA,NA,a-sust-i2,2016-17,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity 1.813333333333333,1.81,a-sust-i2,2016-17,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,116,386.6666666666667 -3.733333333333334,1,a-sust-i2,2016-17,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,220,733.3333333333334 -3.093333333333334,1,a-sust-i2,2016-17,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,208,693.3333333333334 -7.84,1,a-sust-i2,2016-17,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,297,990.0 --Infinity,1,a-sust-i2,2016-17,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2016-17,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2016-17,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity --Infinity,1,a-sust-i2,2016-17,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity --Infinity,1,a-sust-i2,2016-17,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity --Infinity,1,a-sust-i2,2016-17,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity --Infinity,1,a-sust-i2,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2016-17,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2016-17,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2016-17,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2016-17,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity +NA,NA,a-sust-i2,2016-17,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2016-17,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +NA,NA,a-sust-i2,2016-17,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +NA,NA,a-sust-i2,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2016-17,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity 2.32,2.32,a-sust-i2,2016-17,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 4.24,4.24,a-sust-i2,2016-17,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,235,235.0 --Infinity,1,a-sust-i2,2016-17,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity --Infinity,1,a-sust-i2,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity --Infinity,1,a-sust-i2,2016-17,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +NA,NA,a-sust-i2,2016-17,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818,Infinity +NA,NA,a-sust-i2,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i2,2016-17,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity -2.192,1,a-sust-i2,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,637,637.0 --Infinity,1,a-sust-i2,2016-17,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2016-17,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity 2.304,2.3,a-sust-i2,2016-17,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,356,356.0 --Infinity,1,a-sust-i2,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity --Infinity,1,a-sust-i2,2016-17,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity --Infinity,1,a-sust-i2,2016-17,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2016-17,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity +NA,NA,a-sust-i2,2016-17,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity +NA,NA,a-sust-i2,2016-17,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2016-17,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity 3.44,3.44,a-sust-i2,2016-17,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,285,285.0 --Infinity,1,a-sust-i2,2016-17,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity --Infinity,1,a-sust-i2,2016-17,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2016-17,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i2,2016-17,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity -5.52,1,a-sust-i2,2016-17,Granby - East Meadow,01110004, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,169,845.0 -22.48,1,a-sust-i2,2016-17,Granby - Granby Jr Sr High School,01110505, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,381,1905.0 -8.48,1,a-sust-i2,2016-17,Granby - West Street,01110010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,206,1030.0 --Infinity,1,a-sust-i2,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1395,Infinity --Infinity,1,a-sust-i2,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1473,Infinity --Infinity,1,a-sust-i2,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2184,Infinity --Infinity,1,a-sust-i2,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2154,Infinity +NA,NA,a-sust-i2,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1395,Infinity +NA,NA,a-sust-i2,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1473,Infinity +NA,NA,a-sust-i2,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2184,Infinity +NA,NA,a-sust-i2,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2154,Infinity -4.96,1,a-sust-i2,2016-17,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,243,810.0 -4.48,1,a-sust-i2,2016-17,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,234,780.0 --Infinity,1,a-sust-i2,2016-17,Greenfield - Green River,01140030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +NA,NA,a-sust-i2,2016-17,Greenfield - Green River,01140030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity 0.832,1,a-sust-i2,2016-17,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 -2.5066666666666677,1,a-sust-i2,2016-17,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,394,656.6666666666667 -3.4666666666666677,1,a-sust-i2,2016-17,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,215,716.6666666666667 3.12,3.12,a-sust-i2,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,122,305.0 --Infinity,1,a-sust-i2,2016-17,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity --Infinity,1,a-sust-i2,2016-17,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,812,Infinity --Infinity,1,a-sust-i2,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,791,Infinity --Infinity,1,a-sust-i2,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +NA,NA,a-sust-i2,2016-17,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2016-17,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,812,Infinity +NA,NA,a-sust-i2,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,791,Infinity +NA,NA,a-sust-i2,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity 3.136,3.14,a-sust-i2,2016-17,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 2.84,2.84,a-sust-i2,2016-17,Hadley - Hopkins Academy,01170505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,258,322.5 -1.472,1,a-sust-i2,2016-17,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,592,592.0 --Infinity,1,a-sust-i2,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2016-17,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity --Infinity,1,a-sust-i2,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity --Infinity,1,a-sust-i2,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity --Infinity,1,a-sust-i2,2016-17,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity --Infinity,1,a-sust-i2,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2016-17,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,574,Infinity +NA,NA,a-sust-i2,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +NA,NA,a-sust-i2,2016-17,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity -2.08,1,a-sust-i2,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,315,630.0 --Infinity,1,a-sust-i2,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1147,Infinity +NA,NA,a-sust-i2,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1147,Infinity -2.848,1,a-sust-i2,2016-17,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,339,678.0 -1.696,1,a-sust-i2,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,303,606.0 --Infinity,1,a-sust-i2,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity -9.088,1,a-sust-i2,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,534,1068.0 --Infinity,1,a-sust-i2,2016-17,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity --Infinity,1,a-sust-i2,2016-17,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i2,2016-17,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity +NA,NA,a-sust-i2,2016-17,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity 1.216,1.22,a-sust-i2,2016-17,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,424,424.0 -3.168,1,a-sust-i2,2016-17,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,349,698.0 --Infinity,1,a-sust-i2,2016-17,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity --Infinity,1,a-sust-i2,2016-17,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,834,Infinity --Infinity,1,a-sust-i2,2016-17,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity --Infinity,1,a-sust-i2,2016-17,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2016-17,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2016-17,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2016-17,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1017,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Greenleaf,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1828,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2016-17,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2016-17,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2016-17,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2016-17,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity --Infinity,1,a-sust-i2,2016-17,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity --Infinity,1,a-sust-i2,2016-17,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2016-17,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity --Infinity,1,a-sust-i2,2016-17,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2016-17,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790,Infinity +NA,NA,a-sust-i2,2016-17,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,834,Infinity +NA,NA,a-sust-i2,2016-17,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2016-17,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2016-17,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2016-17,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2016-17,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1017,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Greenleaf,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1828,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2016-17,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2016-17,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2016-17,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2016-17,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1225,Infinity +NA,NA,a-sust-i2,2016-17,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity +NA,NA,a-sust-i2,2016-17,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2016-17,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +NA,NA,a-sust-i2,2016-17,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity -6.88,1,a-sust-i2,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,465,930.0 -14.773333333333335,1,a-sust-i2,2016-17,Holbrook - John F Kennedy,01330018, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,427,1423.3333333333335 -6.826666666666668,1,a-sust-i2,2016-17,Holbrook - South,01330025, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,278,926.6666666666667 -4.64,1,a-sust-i2,2016-17,Holland - Holland Elementary,01350005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,237,790.0 --Infinity,1,a-sust-i2,2016-17,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity --Infinity,1,a-sust-i2,2016-17,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity --Infinity,1,a-sust-i2,2016-17,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity --Infinity,1,a-sust-i2,2016-17,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1285,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2016-17,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,702,Infinity +NA,NA,a-sust-i2,2016-17,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity +NA,NA,a-sust-i2,2016-17,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682,Infinity +NA,NA,a-sust-i2,2016-17,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,735,Infinity +NA,NA,a-sust-i2,2016-17,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1285,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2016-17,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,702,Infinity -8.768,1,a-sust-i2,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,524,1048.0 -9.568,1,a-sust-i2,2016-17,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,549,1098.0 --Infinity,1,a-sust-i2,2016-17,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i2,2016-17,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity -64.0,1,a-sust-i2,2016-17,Hopkinton - Center,01390005, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,450,4500.0 -70.08,1,a-sust-i2,2016-17,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,488,4880.0 -71.52,1,a-sust-i2,2016-17,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,497,4970.0 -166.72,1,a-sust-i2,2016-17,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,1092,10920.0 -131.2,1,a-sust-i2,2016-17,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,870,8700.0 --Infinity,1,a-sust-i2,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity --Infinity,1,a-sust-i2,2016-17,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity --Infinity,1,a-sust-i2,2016-17,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +NA,NA,a-sust-i2,2016-17,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +NA,NA,a-sust-i2,2016-17,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity 2.8,2.8,a-sust-i2,2016-17,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,325,325.0 --Infinity,1,a-sust-i2,2016-17,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity --Infinity,1,a-sust-i2,2016-17,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity --Infinity,1,a-sust-i2,2016-17,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity --Infinity,1,a-sust-i2,2016-17,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2016-17,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity --Infinity,1,a-sust-i2,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,792,Infinity +NA,NA,a-sust-i2,2016-17,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity +NA,NA,a-sust-i2,2016-17,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +NA,NA,a-sust-i2,2016-17,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +NA,NA,a-sust-i2,2016-17,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2016-17,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i2,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,792,Infinity -0.688,1,a-sust-i2,2016-17,Ipswich - Ipswich High,01440505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 -10.32,1,a-sust-i2,2016-17,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,458,1145.0 -13.013333333333335,1,a-sust-i2,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,394,1313.3333333333335 -12.426666666666668,1,a-sust-i2,2016-17,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,383,1276.6666666666667 --Infinity,1,a-sust-i2,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1196,Infinity +NA,NA,a-sust-i2,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1196,Infinity -4.416,1,a-sust-i2,2016-17,King Philip - King Philip Middle School,06900510, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,776,776.0 -2.56,1,a-sust-i2,2016-17,King Philip - King Philip Regional High,06900505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1320,660.0 1.024,1.02,a-sust-i2,2016-17,Kingston - Kingston Elementary,01450005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 -1.28,1,a-sust-i2,2016-17,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,580,580.0 --Infinity,1,a-sust-i2,2016-17,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2016-17,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity -1.136,1,a-sust-i2,2016-17,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 --Infinity,1,a-sust-i2,2016-17,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity -2.224,1,a-sust-i2,2016-17,Lawrence - Edward F. Parthum,01490053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,639,639.0 1.992,1.99,a-sust-i2,2016-17,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,751,375.5 --Infinity,1,a-sust-i2,2016-17,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity -0.32,1,a-sust-i2,2016-17,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,520,520.0 --Infinity,1,a-sust-i2,2016-17,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172,Infinity -18.36,1,a-sust-i2,2016-17,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,3295,1647.5 0.0,1,a-sust-i2,2016-17,Lawrence - Oliver Partnership School,01490048, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,500,500.0 --Infinity,1,a-sust-i2,2016-17,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity 5.248,5,a-sust-i2,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,172,172.0 --Infinity,1,a-sust-i2,2016-17,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity -3.376,1,a-sust-i2,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,711,711.0 --Infinity,1,a-sust-i2,2016-17,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity 2.48,2.48,a-sust-i2,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,345,345.0 --Infinity,1,a-sust-i2,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity --Infinity,1,a-sust-i2,2016-17,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2016-17,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717,Infinity +NA,NA,a-sust-i2,2016-17,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2016-17,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity 0.72,1,a-sust-i2,2016-17,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,455,455.0 2.256,2.26,a-sust-i2,2016-17,Leicester - Leicester Memorial Elementary,01510005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 1.568,1.57,a-sust-i2,2016-17,Leicester - Leicester Middle,01510015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,402,402.0 2.272,2.27,a-sust-i2,2016-17,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 --Infinity,1,a-sust-i2,2016-17,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2016-17,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity --Infinity,1,a-sust-i2,2016-17,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity --Infinity,1,a-sust-i2,2016-17,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity --Infinity,1,a-sust-i2,2016-17,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity +NA,NA,a-sust-i2,2016-17,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2016-17,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +NA,NA,a-sust-i2,2016-17,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +NA,NA,a-sust-i2,2016-17,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +NA,NA,a-sust-i2,2016-17,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687,Infinity -1.072,1,a-sust-i2,2016-17,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,567,567.0 -2.08,1,a-sust-i2,2016-17,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,630,630.0 --Infinity,1,a-sust-i2,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity -9.376,1,a-sust-i2,2016-17,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1086,1086.0 --Infinity,1,a-sust-i2,2016-17,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +NA,NA,a-sust-i2,2016-17,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity -3.072,1,a-sust-i2,2016-17,Leominster - Northwest,01530030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,692,692.0 -2.4,1,a-sust-i2,2016-17,Leominster - Priest Street,01530040, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,130,650.0 0.288,1,a-sust-i2,2016-17,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,482,482.0 -6.144,1,a-sust-i2,2016-17,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,884,884.0 --Infinity,1,a-sust-i2,2016-17,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2185,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity --Infinity,1,a-sust-i2,2016-17,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity --Infinity,1,a-sust-i2,2016-17,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2016-17,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2016-17,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2185,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +NA,NA,a-sust-i2,2016-17,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,852,Infinity +NA,NA,a-sust-i2,2016-17,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2016-17,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity -12.128,1,a-sust-i2,2016-17,Lincoln - Lincoln School,01570025, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,629,1258.0 --Infinity,1,a-sust-i2,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1568,Infinity +NA,NA,a-sust-i2,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1568,Infinity 0.528,1,a-sust-i2,2016-17,Littleton - Littleton High School,01580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,467,467.0 2.384,2.38,a-sust-i2,2016-17,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,351,351.0 --Infinity,1,a-sust-i2,2016-17,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity --Infinity,1,a-sust-i2,2016-17,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2016-17,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2016-17,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2016-17,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2016-17,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,947,Infinity --Infinity,1,a-sust-i2,2016-17,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity --Infinity,1,a-sust-i2,2016-17,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3145,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity --Infinity,1,a-sust-i2,2016-17,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +NA,NA,a-sust-i2,2016-17,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +NA,NA,a-sust-i2,2016-17,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2016-17,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2016-17,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2016-17,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2016-17,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,947,Infinity +NA,NA,a-sust-i2,2016-17,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +NA,NA,a-sust-i2,2016-17,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3145,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i2,2016-17,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity -24.68,1,a-sust-i2,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,817,2042.5 --Infinity,1,a-sust-i2,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity --Infinity,1,a-sust-i2,2016-17,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2016-17,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2016-17,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,895,Infinity --Infinity,1,a-sust-i2,2016-17,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity --Infinity,1,a-sust-i2,2016-17,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i2,2016-17,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2016-17,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2016-17,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,895,Infinity +NA,NA,a-sust-i2,2016-17,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i2,2016-17,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity -15.413333333333336,1,a-sust-i2,2016-17,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,439,1463.3333333333335 -12.693333333333335,1,a-sust-i2,2016-17,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,388,1293.3333333333335 -12.586666666666668,1,a-sust-i2,2016-17,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,386,1286.6666666666667 -13.333333333333336,1,a-sust-i2,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,400,1333.3333333333335 --Infinity,1,a-sust-i2,2016-17,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1296,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1569,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1598,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1163,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity --Infinity,1,a-sust-i2,2016-17,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1296,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1569,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1598,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1163,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2016-17,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity -5.216,1,a-sust-i2,2016-17,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,413,826.0 -42.24,1,a-sust-i2,2016-17,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,628,3140.0 -3.168,1,a-sust-i2,2016-17,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,698,698.0 --Infinity,1,a-sust-i2,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i2,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity -3.226666666666668,1,a-sust-i2,2016-17,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,421,701.6666666666667 --Infinity,1,a-sust-i2,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity --Infinity,1,a-sust-i2,2016-17,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, 0.0, 0.0,97,Infinity --Infinity,1,a-sust-i2,2016-17,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,883,Infinity --Infinity,1,a-sust-i2,2016-17,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity --Infinity,1,a-sust-i2,2016-17,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity --Infinity,1,a-sust-i2,2016-17,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,897,Infinity --Infinity,1,a-sust-i2,2016-17,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2016-17,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1833,Infinity --Infinity,1,a-sust-i2,2016-17,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1217,Infinity +NA,NA,a-sust-i2,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity +NA,NA,a-sust-i2,2016-17,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, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i2,2016-17,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,883,Infinity +NA,NA,a-sust-i2,2016-17,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity +NA,NA,a-sust-i2,2016-17,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2016-17,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,897,Infinity +NA,NA,a-sust-i2,2016-17,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2016-17,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1833,Infinity +NA,NA,a-sust-i2,2016-17,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1217,Infinity 4.4,4.4,a-sust-i2,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,225,225.0 --Infinity,1,a-sust-i2,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity 4.912,4.91,a-sust-i2,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,386,193.0 2.224,2.22,a-sust-i2,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,361,361.0 -3.36,1,a-sust-i2,2016-17,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,710,710.0 -0.096,1,a-sust-i2,2016-17,Mansfield - Harold L Qualters Middle,01670035, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1012,506.0 --Infinity,1,a-sust-i2,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity --Infinity,1,a-sust-i2,2016-17,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1315,Infinity --Infinity,1,a-sust-i2,2016-17,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity --Infinity,1,a-sust-i2,2016-17,Marblehead - Elbridge Gerry,01680015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835,Infinity +NA,NA,a-sust-i2,2016-17,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1315,Infinity +NA,NA,a-sust-i2,2016-17,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity +NA,NA,a-sust-i2,2016-17,Marblehead - Elbridge Gerry,01680015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity 2.544,2.54,a-sust-i2,2016-17,Marblehead - Glover,01680020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,341,341.0 --Infinity,1,a-sust-i2,2016-17,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity --Infinity,1,a-sust-i2,2016-17,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +NA,NA,a-sust-i2,2016-17,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167,Infinity +NA,NA,a-sust-i2,2016-17,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity -8.816,1,a-sust-i2,2016-17,Marblehead - Marblehead High,01680505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1051,1051.0 --Infinity,1,a-sust-i2,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity --Infinity,1,a-sust-i2,2016-17,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i2,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2016-17,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1285,Infinity --Infinity,1,a-sust-i2,2016-17,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity --Infinity,1,a-sust-i2,2016-17,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity --Infinity,1,a-sust-i2,2016-17,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity --Infinity,1,a-sust-i2,2016-17,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1091,Infinity --Infinity,1,a-sust-i2,2016-17,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +NA,NA,a-sust-i2,2016-17,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i2,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2016-17,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1285,Infinity +NA,NA,a-sust-i2,2016-17,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity +NA,NA,a-sust-i2,2016-17,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity +NA,NA,a-sust-i2,2016-17,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +NA,NA,a-sust-i2,2016-17,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1091,Infinity +NA,NA,a-sust-i2,2016-17,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity 1.936,1.94,a-sust-i2,2016-17,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 3.936,3.94,a-sust-i2,2016-17,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,254,254.0 -8.256,1,a-sust-i2,2016-17,Marshfield - Furnace Brook Middle,01710310, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1016,1016.0 @@ -13819,231 +13819,231 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -13.92,1,a-sust-i2,2016-17,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1370,1370.0 0.928,1,a-sust-i2,2016-17,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 2.224,2.22,a-sust-i2,2016-17,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,361,361.0 --Infinity,1,a-sust-i2,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity --Infinity,1,a-sust-i2,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2016-17,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1188,Infinity --Infinity,1,a-sust-i2,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity --Infinity,1,a-sust-i2,2016-17,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity --Infinity,1,a-sust-i2,2016-17,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2016-17,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2016-17,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,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.0, 0.0,667,Infinity +NA,NA,a-sust-i2,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +NA,NA,a-sust-i2,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2016-17,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1188,Infinity +NA,NA,a-sust-i2,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649,Infinity +NA,NA,a-sust-i2,2016-17,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +NA,NA,a-sust-i2,2016-17,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2016-17,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2016-17,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,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.0, 0.0,667,Infinity -4.533333333333334,1,a-sust-i2,2016-17,Mattapoisett - Center,01730005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,235,783.3333333333334 -3.306666666666668,1,a-sust-i2,2016-17,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,212,706.6666666666667 1.04,1.04,a-sust-i2,2016-17,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,435,435.0 -0.032,1,a-sust-i2,2016-17,Maynard - Green Meadow,01740010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 --Infinity,1,a-sust-i2,2016-17,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity --Infinity,1,a-sust-i2,2016-17,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2016-17,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i2,2016-17,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity -11.245714285714286,1,a-sust-i2,2016-17,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7,842,1202.857142857143 --Infinity,1,a-sust-i2,2016-17,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2016-17,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity --Infinity,1,a-sust-i2,2016-17,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1174,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity --Infinity,1,a-sust-i2,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity --Infinity,1,a-sust-i2,2016-17,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity +NA,NA,a-sust-i2,2016-17,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2016-17,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +NA,NA,a-sust-i2,2016-17,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,626,Infinity +NA,NA,a-sust-i2,2016-17,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2016-17,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity +NA,NA,a-sust-i2,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i2,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i2,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2016-17,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1174,Infinity +NA,NA,a-sust-i2,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i2,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501,Infinity +NA,NA,a-sust-i2,2016-17,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343,Infinity 1.904,1.9,a-sust-i2,2016-17,Medway - Medway High,01770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,762,381.0 -3.36,1,a-sust-i2,2016-17,Medway - Medway Middle,01770305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,710,710.0 --Infinity,1,a-sust-i2,2016-17,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity --Infinity,1,a-sust-i2,2016-17,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2016-17,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity --Infinity,1,a-sust-i2,2016-17,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity --Infinity,1,a-sust-i2,2016-17,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,988,Infinity --Infinity,1,a-sust-i2,2016-17,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,772,Infinity --Infinity,1,a-sust-i2,2016-17,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2016-17,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2016-17,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2016-17,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity --Infinity,1,a-sust-i2,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2016-17,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1115,Infinity --Infinity,1,a-sust-i2,2016-17,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1349,Infinity --Infinity,1,a-sust-i2,2016-17,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1242,Infinity --Infinity,1,a-sust-i2,2016-17,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1891,Infinity --Infinity,1,a-sust-i2,2016-17,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1299,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,988,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,772,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2016-17,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2016-17,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2016-17,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +NA,NA,a-sust-i2,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2016-17,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1115,Infinity +NA,NA,a-sust-i2,2016-17,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1349,Infinity +NA,NA,a-sust-i2,2016-17,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1242,Infinity +NA,NA,a-sust-i2,2016-17,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1891,Infinity +NA,NA,a-sust-i2,2016-17,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1299,Infinity -38.24,1,a-sust-i2,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,578,2890.0 -16.768,1,a-sust-i2,2016-17,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,774,1548.0 -10.752,1,a-sust-i2,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,586,1172.0 5.92,5,a-sust-i2,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,130,130.0 --Infinity,1,a-sust-i2,2016-17,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity --Infinity,1,a-sust-i2,2016-17,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i2,2016-17,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity --Infinity,1,a-sust-i2,2016-17,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity --Infinity,1,a-sust-i2,2016-17,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2016-17,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1135,Infinity --Infinity,1,a-sust-i2,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2016-17,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity +NA,NA,a-sust-i2,2016-17,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i2,2016-17,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +NA,NA,a-sust-i2,2016-17,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i2,2016-17,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2016-17,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1135,Infinity +NA,NA,a-sust-i2,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity -7.488,1,a-sust-i2,2016-17,Milford - Stacy Middle,01850305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,968,968.0 --Infinity,1,a-sust-i2,2016-17,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,983,Infinity --Infinity,1,a-sust-i2,2016-17,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2016-17,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,983,Infinity +NA,NA,a-sust-i2,2016-17,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity -3.632,1,a-sust-i2,2016-17,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,727,727.0 --Infinity,1,a-sust-i2,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2016-17,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity --Infinity,1,a-sust-i2,2016-17,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity --Infinity,1,a-sust-i2,2016-17,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity --Infinity,1,a-sust-i2,2016-17,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,915,Infinity --Infinity,1,a-sust-i2,2016-17,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity --Infinity,1,a-sust-i2,2016-17,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2016-17,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity --Infinity,1,a-sust-i2,2016-17,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity --Infinity,1,a-sust-i2,2016-17,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2016-17,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2016-17,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +NA,NA,a-sust-i2,2016-17,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +NA,NA,a-sust-i2,2016-17,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,915,Infinity +NA,NA,a-sust-i2,2016-17,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +NA,NA,a-sust-i2,2016-17,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2016-17,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i2,2016-17,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001,Infinity +NA,NA,a-sust-i2,2016-17,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity 0.24,1,a-sust-i2,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6, 0.0, 1.2,582,485.0 -2.36,1,a-sust-i2,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,259,647.5 -0.96,1,a-sust-i2,2016-17,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,112,560.0 --Infinity,1,a-sust-i2,2016-17,Mohawk Trail - Heath Elementary,07170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity --Infinity,1,a-sust-i2,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2016-17,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity +NA,NA,a-sust-i2,2016-17,Mohawk Trail - Heath Elementary,07170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29,Infinity +NA,NA,a-sust-i2,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2016-17,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity 3.632,3.63,a-sust-i2,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,273,273.0 --Infinity,1,a-sust-i2,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity --Infinity,1,a-sust-i2,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2016-17,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +NA,NA,a-sust-i2,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2016-17,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity 3.408,3.41,a-sust-i2,2016-17,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,287,287.0 1.936,1.94,a-sust-i2,2016-17,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 -220.64,1,a-sust-i2,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,1429,14290.0 -0.992,1,a-sust-i2,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,562,562.0 --Infinity,1,a-sust-i2,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1486,Infinity --Infinity,1,a-sust-i2,2016-17,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity --Infinity,1,a-sust-i2,2016-17,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1486,Infinity +NA,NA,a-sust-i2,2016-17,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +NA,NA,a-sust-i2,2016-17,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity 2.264,2.26,a-sust-i2,2016-17,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,717,358.5 --Infinity,1,a-sust-i2,2016-17,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity --Infinity,1,a-sust-i2,2016-17,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity --Infinity,1,a-sust-i2,2016-17,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2016-17,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2016-17,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2016-17,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity --Infinity,1,a-sust-i2,2016-17,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity --Infinity,1,a-sust-i2,2016-17,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity --Infinity,1,a-sust-i2,2016-17,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2016-17,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity --Infinity,1,a-sust-i2,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity --Infinity,1,a-sust-i2,2016-17,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1011,Infinity +NA,NA,a-sust-i2,2016-17,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2016-17,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +NA,NA,a-sust-i2,2016-17,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2016-17,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2016-17,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2016-17,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2016-17,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +NA,NA,a-sust-i2,2016-17,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity +NA,NA,a-sust-i2,2016-17,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2016-17,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i2,2016-17,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1011,Infinity -3.712,1,a-sust-i2,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,732,732.0 -11.968,1,a-sust-i2,2016-17,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,624,1248.0 --Infinity,1,a-sust-i2,2016-17,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity +NA,NA,a-sust-i2,2016-17,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515,Infinity -3.5377777777777775,1,a-sust-i2,2016-17,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.4, 0.0, 0.9,649,721.1111111111111 0.896,1,a-sust-i2,2016-17,Natick - Johnson,01980031, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,222,444.0 1.328,1.33,a-sust-i2,2016-17,Natick - Lilja Elementary,01980035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,417,417.0 -0.68,1,a-sust-i2,2016-17,Natick - Memorial,01980043, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,434,542.5 --Infinity,1,a-sust-i2,2016-17,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1664,Infinity +NA,NA,a-sust-i2,2016-17,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1664,Infinity -29.88,1,a-sust-i2,2016-17,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,947,2367.5 --Infinity,1,a-sust-i2,2016-17,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,929,Infinity --Infinity,1,a-sust-i2,2016-17,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +NA,NA,a-sust-i2,2016-17,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,929,Infinity +NA,NA,a-sust-i2,2016-17,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity -9.696,1,a-sust-i2,2016-17,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,553,1106.0 --Infinity,1,a-sust-i2,2016-17,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2016-17,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity -7.104,1,a-sust-i2,2016-17,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,472,944.0 --Infinity,1,a-sust-i2,2016-17,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2016-17,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1659,Infinity +NA,NA,a-sust-i2,2016-17,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2016-17,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1659,Infinity -11.2,1,a-sust-i2,2016-17,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,720,1200.0 --Infinity,1,a-sust-i2,2016-17,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,876,Infinity +NA,NA,a-sust-i2,2016-17,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,876,Infinity -7.84,1,a-sust-i2,2016-17,Needham - William Mitchell,01990040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,495,990.0 --Infinity,1,a-sust-i2,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,783,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,783,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity -1.952,1,a-sust-i2,2016-17,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,622,622.0 --Infinity,1,a-sust-i2,2016-17,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - John Hannigan,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,885,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2014,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1125,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - John Hannigan,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,885,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2014,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1125,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity -4.672,1,a-sust-i2,2016-17,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,792,792.0 --Infinity,1,a-sust-i2,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity --Infinity,1,a-sust-i2,2016-17,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,816,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity 6.24,5,a-sust-i2,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,110,110.0 --Infinity,1,a-sust-i2,2016-17,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2016-17,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity 5.296,5,a-sust-i2,2016-17,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,169,169.0 2.704,2.7,a-sust-i2,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,331,331.0 -2.288,1,a-sust-i2,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,643,643.0 --Infinity,1,a-sust-i2,2016-17,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,779,Infinity +NA,NA,a-sust-i2,2016-17,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,779,Infinity -0.672,1,a-sust-i2,2016-17,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,542,542.0 --Infinity,1,a-sust-i2,2016-17,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2016-17,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2016-17,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2016-17,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity 1.328,1.33,a-sust-i2,2016-17,Newton - Horace Mann,02070075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,417,417.0 --Infinity,1,a-sust-i2,2016-17,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2126,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1851,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2016-17,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +NA,NA,a-sust-i2,2016-17,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2126,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1851,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,639,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2016-17,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity 2.0088888888888885,2.01,a-sust-i2,2016-17,Newton - Zervas,02070130, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,337,374.44444444444446 --Infinity,1,a-sust-i2,2016-17,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity --Infinity,1,a-sust-i2,2016-17,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity --Infinity,1,a-sust-i2,2016-17,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity --Infinity,1,a-sust-i2,2016-17,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2016-17,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2016-17,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +NA,NA,a-sust-i2,2016-17,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +NA,NA,a-sust-i2,2016-17,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +NA,NA,a-sust-i2,2016-17,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +NA,NA,a-sust-i2,2016-17,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2016-17,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2016-17,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity -36.16,1,a-sust-i2,2016-17,North Andover - Annie L Sargent School,02110018, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,552,2760.0 --Infinity,1,a-sust-i2,2016-17,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +NA,NA,a-sust-i2,2016-17,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity -30.16,1,a-sust-i2,2016-17,North Andover - Franklin,02110010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,477,2385.0 -15.68,1,a-sust-i2,2016-17,North Andover - Kittredge,02110015, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,296,1480.0 -14.256,1,a-sust-i2,2016-17,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1391,1391.0 -5.017142857142859,1,a-sust-i2,2016-17,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 0.0, 1.4,1139,813.5714285714287 -20.96,1,a-sust-i2,2016-17,North Andover - Thomson,02110020, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,362,1810.0 --Infinity,1,a-sust-i2,2016-17,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity --Infinity,1,a-sust-i2,2016-17,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2016-17,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity --Infinity,1,a-sust-i2,2016-17,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1163,Infinity --Infinity,1,a-sust-i2,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity --Infinity,1,a-sust-i2,2016-17,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity --Infinity,1,a-sust-i2,2016-17,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity --Infinity,1,a-sust-i2,2016-17,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity --Infinity,1,a-sust-i2,2016-17,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,10,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2016-17,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1163,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity +NA,NA,a-sust-i2,2016-17,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312,Infinity +NA,NA,a-sust-i2,2016-17,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329,Infinity +NA,NA,a-sust-i2,2016-17,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,10,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2016-17,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563,Infinity -2.304,1,a-sust-i2,2016-17,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,322,644.0 -2.912,1,a-sust-i2,2016-17,North Reading - J Turner Hood,02170010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,341,682.0 -27.68,1,a-sust-i2,2016-17,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,446,2230.0 -17.952,1,a-sust-i2,2016-17,North Reading - North Reading High,02170505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,811,1622.0 1.856,1.86,a-sust-i2,2016-17,North Reading - North Reading Middle,02170305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.5, 1.5,576,384.0 -2.64,1,a-sust-i2,2016-17,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,266,665.0 --Infinity,1,a-sust-i2,2016-17,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2016-17,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +NA,NA,a-sust-i2,2016-17,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2016-17,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity 1.22,1.22,a-sust-i2,2016-17,Northampton - Leeds,02100025, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,339,423.75 --Infinity,1,a-sust-i2,2016-17,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity --Infinity,1,a-sust-i2,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +NA,NA,a-sust-i2,2016-17,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity +NA,NA,a-sust-i2,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity 0.224,1,a-sust-i2,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,486,486.0 -15.088,1,a-sust-i2,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1443,1443.0 --Infinity,1,a-sust-i2,2016-17,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2016-17,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity -0.352,1,a-sust-i2,2016-17,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,261,522.0 -0.608,1,a-sust-i2,2016-17,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,269,538.0 3.152,3.15,a-sust-i2,2016-17,Northborough - Marion E Zeh,02130020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,303,303.0 @@ -14053,56 +14053,56 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -22.64,1,a-sust-i2,2016-17,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,766,1915.0 -34.16,1,a-sust-i2,2016-17,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,527,2635.0 -12.176,1,a-sust-i2,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1261,1261.0 --Infinity,1,a-sust-i2,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2016-17,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity --Infinity,1,a-sust-i2,2016-17,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity --Infinity,1,a-sust-i2,2016-17,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2016-17,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity --Infinity,1,a-sust-i2,2016-17,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,596,Infinity --Infinity,1,a-sust-i2,2016-17,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2016-17,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2016-17,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2016-17,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity --Infinity,1,a-sust-i2,2016-17,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity --Infinity,1,a-sust-i2,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2016-17,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity --Infinity,1,a-sust-i2,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2016-17,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2016-17,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +NA,NA,a-sust-i2,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2016-17,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +NA,NA,a-sust-i2,2016-17,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +NA,NA,a-sust-i2,2016-17,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2016-17,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763,Infinity +NA,NA,a-sust-i2,2016-17,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,596,Infinity +NA,NA,a-sust-i2,2016-17,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2016-17,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2016-17,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2016-17,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,753,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +NA,NA,a-sust-i2,2016-17,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity +NA,NA,a-sust-i2,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2016-17,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,748,Infinity +NA,NA,a-sust-i2,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2016-17,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2016-17,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity 1.12,1.12,a-sust-i2,2016-17,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,215,430.0 --Infinity,1,a-sust-i2,2016-17,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2016-17,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity 1.328,1.33,a-sust-i2,2016-17,Oxford - Clara Barton,02260005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,417,417.0 --Infinity,1,a-sust-i2,2016-17,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity --Infinity,1,a-sust-i2,2016-17,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i2,2016-17,Palmer - Converse Middle,02270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2016-17,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,693,Infinity --Infinity,1,a-sust-i2,2016-17,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2016-17,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i2,2016-17,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i2,2016-17,Palmer - Converse Middle,02270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2016-17,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,693,Infinity +NA,NA,a-sust-i2,2016-17,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity -1.888,1,a-sust-i2,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,618,618.0 --Infinity,1,a-sust-i2,2016-17,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.0, 0.0,328,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1339,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1540,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity --Infinity,1,a-sust-i2,2016-17,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2016-17,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity +NA,NA,a-sust-i2,2016-17,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.0, 0.0,328,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1339,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1540,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +NA,NA,a-sust-i2,2016-17,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2016-17,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132,Infinity -0.224,1,a-sust-i2,2016-17,Pembroke - Bryantville Elementary,02310003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,514,514.0 1.04,1.04,a-sust-i2,2016-17,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 -1.216,1,a-sust-i2,2016-17,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,576,576.0 --Infinity,1,a-sust-i2,2016-17,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +NA,NA,a-sust-i2,2016-17,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity -7.568,1,a-sust-i2,2016-17,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,973,973.0 1.408,1.41,a-sust-i2,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,206,412.0 -3.136,1,a-sust-i2,2016-17,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,348,696.0 @@ -14110,40 +14110,40 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.224,1,a-sust-i2,2016-17,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,243,486.0 0.624,1,a-sust-i2,2016-17,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 0.17066666666666697,1,a-sust-i2,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,734,489.3333333333333 --Infinity,1,a-sust-i2,2016-17,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i2,2016-17,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, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i2,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i2,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i2,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity --Infinity,1,a-sust-i2,2016-17,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity --Infinity,1,a-sust-i2,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity --Infinity,1,a-sust-i2,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2016-17,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity +NA,NA,a-sust-i2,2016-17,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i2,2016-17,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, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i2,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i2,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i2,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +NA,NA,a-sust-i2,2016-17,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity +NA,NA,a-sust-i2,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +NA,NA,a-sust-i2,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2016-17,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57,Infinity 0.464,1,a-sust-i2,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 -4.736,1,a-sust-i2,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,398,796.0 --Infinity,1,a-sust-i2,2016-17,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,861,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity --Infinity,1,a-sust-i2,2016-17,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2016-17,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity --Infinity,1,a-sust-i2,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,861,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629,Infinity +NA,NA,a-sust-i2,2016-17,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2016-17,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +NA,NA,a-sust-i2,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity 4.032,4.03,a-sust-i2,2016-17,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 1.408,1.41,a-sust-i2,2016-17,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 4.64,4.64,a-sust-i2,2016-17,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,210,210.0 -1.056,1,a-sust-i2,2016-17,Plymouth - Indian Brook,02390012, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,566,566.0 3.136,3.14,a-sust-i2,2016-17,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 3.272,3.27,a-sust-i2,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,591,295.5 --Infinity,1,a-sust-i2,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,997,Infinity --Infinity,1,a-sust-i2,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,997,Infinity +NA,NA,a-sust-i2,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity -12.912,1,a-sust-i2,2016-17,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1307,1307.0 -8.416,1,a-sust-i2,2016-17,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1026,1026.0 1.304,1.3,a-sust-i2,2016-17,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,837,418.5 @@ -14152,18 +14152,18 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.656,4.66,a-sust-i2,2016-17,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,209,209.0 -10.16,1,a-sust-i2,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1135,1135.0 4.56,4.56,a-sust-i2,2016-17,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,129,215.0 --Infinity,1,a-sust-i2,2016-17,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i2,2016-17,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2016-17,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity --Infinity,1,a-sust-i2,2016-17,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity --Infinity,1,a-sust-i2,2016-17,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity --Infinity,1,a-sust-i2,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity --Infinity,1,a-sust-i2,2016-17,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity --Infinity,1,a-sust-i2,2016-17,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +NA,NA,a-sust-i2,2016-17,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i2,2016-17,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity -5.6,1,a-sust-i2,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,170,850.0 -2.72,1,a-sust-i2,2016-17,Quincy - Atherton Hough,02430040, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,268,670.0 -17.066666666666666,1,a-sust-i2,2016-17,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.3,470,1566.6666666666667 @@ -14171,7 +14171,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -12.0,1,a-sust-i2,2016-17,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,375,1250.0 -26.08,1,a-sust-i2,2016-17,Quincy - Central Middle,02430315, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,639,2130.0 -10.24,1,a-sust-i2,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,342,1140.0 --Infinity,1,a-sust-i2,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +NA,NA,a-sust-i2,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity -9.226666666666668,1,a-sust-i2,2016-17,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,323,1076.6666666666667 -19.093333333333337,1,a-sust-i2,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,508,1693.3333333333335 -20.0,1,a-sust-i2,2016-17,Quincy - Merrymount,02430060, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,350,1750.0 @@ -14183,496 +14183,496 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -5.696,1,a-sust-i2,2016-17,Quincy - Snug Harbor Community School,02430090, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,428,856.0 -10.026666666666667,1,a-sust-i2,2016-17,Quincy - Squantum,02430095, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,338,1126.6666666666667 -2.816,1,a-sust-i2,2016-17,Quincy - Wollaston School,02430110, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.5,338,676.0 --Infinity,1,a-sust-i2,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i2,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity -12.32,1,a-sust-i2,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,635,1270.0 --Infinity,1,a-sust-i2,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity --Infinity,1,a-sust-i2,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2016-17,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity --Infinity,1,a-sust-i2,2016-17,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2016-17,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity --Infinity,1,a-sust-i2,2016-17,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity --Infinity,1,a-sust-i2,2016-17,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i2,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2016-17,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484,Infinity +NA,NA,a-sust-i2,2016-17,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2016-17,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +NA,NA,a-sust-i2,2016-17,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +NA,NA,a-sust-i2,2016-17,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity 1.856,1.86,a-sust-i2,2016-17,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,384,384.0 4.272,4.27,a-sust-i2,2016-17,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,466,233.0 1.872,1.87,a-sust-i2,2016-17,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 1.232,1.23,a-sust-i2,2016-17,Reading - J Warren Killam,02460017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,423,423.0 1.2,1.2,a-sust-i2,2016-17,Reading - Joshua Eaton,02460010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,425,425.0 --Infinity,1,a-sust-i2,2016-17,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i2,2016-17,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity -4.65,1,a-sust-i2,2016-17,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,1265,790.625 3.424,3.42,a-sust-i2,2016-17,Reading - Walter S Parker Middle,02460310, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,572,286.0 2.96,2.96,a-sust-i2,2016-17,Reading - Wood End Elementary School,02460020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,315,315.0 --Infinity,1,a-sust-i2,2016-17,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity --Infinity,1,a-sust-i2,2016-17,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity --Infinity,1,a-sust-i2,2016-17,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity --Infinity,1,a-sust-i2,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity --Infinity,1,a-sust-i2,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2016-17,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity --Infinity,1,a-sust-i2,2016-17,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2016-17,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity --Infinity,1,a-sust-i2,2016-17,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2016-17,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1837,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +NA,NA,a-sust-i2,2016-17,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +NA,NA,a-sust-i2,2016-17,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i2,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665,Infinity +NA,NA,a-sust-i2,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2016-17,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i2,2016-17,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2016-17,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +NA,NA,a-sust-i2,2016-17,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity -4.16,1,a-sust-i2,2016-17,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,304,760.0 --Infinity,1,a-sust-i2,2016-17,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity +NA,NA,a-sust-i2,2016-17,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,703,Infinity 4.744,4.74,a-sust-i2,2016-17,Rockport - Rockport Elementary,02520005, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,407,203.5 2.12,2.12,a-sust-i2,2016-17,Rockport - Rockport High,02520510, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,294,367.5 4.368,4.37,a-sust-i2,2016-17,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,227,227.0 3.28,3.28,a-sust-i2,2016-17,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,59,295.0 --Infinity,1,a-sust-i2,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1306,Infinity +NA,NA,a-sust-i2,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1306,Infinity -17.216,1,a-sust-i2,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1576,1576.0 --Infinity,1,a-sust-i2,2016-17,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,933,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2016-17,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity --Infinity,1,a-sust-i2,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2016-17,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity --Infinity,1,a-sust-i2,2016-17,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity --Infinity,1,a-sust-i2,2016-17,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2016-17,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity --Infinity,1,a-sust-i2,2016-17,Saugus - Ballard School,02620001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity --Infinity,1,a-sust-i2,2016-17,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity --Infinity,1,a-sust-i2,2016-17,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity --Infinity,1,a-sust-i2,2016-17,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity --Infinity,1,a-sust-i2,2016-17,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity --Infinity,1,a-sust-i2,2016-17,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity --Infinity,1,a-sust-i2,2016-17,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity --Infinity,1,a-sust-i2,2016-17,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +NA,NA,a-sust-i2,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,933,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2016-17,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +NA,NA,a-sust-i2,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2016-17,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644,Infinity +NA,NA,a-sust-i2,2016-17,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,903,Infinity +NA,NA,a-sust-i2,2016-17,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2016-17,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i2,2016-17,Saugus - Ballard School,02620001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +NA,NA,a-sust-i2,2016-17,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity +NA,NA,a-sust-i2,2016-17,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2016-17,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235,Infinity +NA,NA,a-sust-i2,2016-17,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +NA,NA,a-sust-i2,2016-17,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +NA,NA,a-sust-i2,2016-17,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +NA,NA,a-sust-i2,2016-17,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity 2.192,2.19,a-sust-i2,2016-17,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 -2.42,1,a-sust-i2,2016-17,Scituate - Gates Intermediate School,02640305, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,521,651.25 2.992,2.99,a-sust-i2,2016-17,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,313,313.0 0.592,1,a-sust-i2,2016-17,Scituate - Jenkins Elementary School,02640015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,463,463.0 -0.12444444444444434,1,a-sust-i2,2016-17,Scituate - Scituate High School,02640505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.8, 1.8,914,507.77777777777777 1.168,1.17,a-sust-i2,2016-17,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,427,427.0 --Infinity,1,a-sust-i2,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity --Infinity,1,a-sust-i2,2016-17,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity --Infinity,1,a-sust-i2,2016-17,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity --Infinity,1,a-sust-i2,2016-17,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +NA,NA,a-sust-i2,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i2,2016-17,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +NA,NA,a-sust-i2,2016-17,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i2,2016-17,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity -2.672,1,a-sust-i2,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,667,667.0 --Infinity,1,a-sust-i2,2016-17,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity --Infinity,1,a-sust-i2,2016-17,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2016-17,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity --Infinity,1,a-sust-i2,2016-17,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1058,Infinity --Infinity,1,a-sust-i2,2016-17,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,899,Infinity +NA,NA,a-sust-i2,2016-17,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i2,2016-17,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2016-17,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i2,2016-17,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1058,Infinity +NA,NA,a-sust-i2,2016-17,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,899,Infinity -13.376,1,a-sust-i2,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1336,1336.0 1.136,1.14,a-sust-i2,2016-17,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,429,429.0 --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1003,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,977,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1792,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity --Infinity,1,a-sust-i2,2016-17,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity --Infinity,1,a-sust-i2,2016-17,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity --Infinity,1,a-sust-i2,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1003,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,977,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1792,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i2,2016-17,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +NA,NA,a-sust-i2,2016-17,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i2,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity -12.464,1,a-sust-i2,2016-17,Silver Lake - Silver Lake Regional High,07600505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1279,1279.0 -1.104,1,a-sust-i2,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,569,569.0 --Infinity,1,a-sust-i2,2016-17,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, 0.0, 0.0, 0.0, 0.0,370,Infinity --Infinity,1,a-sust-i2,2016-17,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2016-17,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i2,2016-17,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity --Infinity,1,a-sust-i2,2016-17,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2016-17,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, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i2,2016-17,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2016-17,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i2,2016-17,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i2,2016-17,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity -8.096,1,a-sust-i2,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1006,1006.0 --Infinity,1,a-sust-i2,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1259,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity --Infinity,1,a-sust-i2,2016-17,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity --Infinity,1,a-sust-i2,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,725,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1259,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +NA,NA,a-sust-i2,2016-17,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity -5.696,1,a-sust-i2,2016-17,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,428,856.0 -3.008,1,a-sust-i2,2016-17,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,344,688.0 --Infinity,1,a-sust-i2,2016-17,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity +NA,NA,a-sust-i2,2016-17,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545,Infinity -4.746666666666666,1,a-sust-i2,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.4, 0.0, 0.9,717,796.6666666666666 --Infinity,1,a-sust-i2,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,758,Infinity --Infinity,1,a-sust-i2,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,758,Infinity +NA,NA,a-sust-i2,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity -2.4,1,a-sust-i2,2016-17,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,520,650.0 0.16,1,a-sust-i2,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,245,490.0 -1.536,1,a-sust-i2,2016-17,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,298,596.0 -1.376,1,a-sust-i2,2016-17,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,293,586.0 -6.688,1,a-sust-i2,2016-17,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,459,918.0 --Infinity,1,a-sust-i2,2016-17,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity --Infinity,1,a-sust-i2,2016-17,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity --Infinity,1,a-sust-i2,2016-17,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2016-17,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity --Infinity,1,a-sust-i2,2016-17,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +NA,NA,a-sust-i2,2016-17,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i2,2016-17,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i2,2016-17,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2016-17,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509,Infinity +NA,NA,a-sust-i2,2016-17,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity -14.656,1,a-sust-i2,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1416,1416.0 -3.68,1,a-sust-i2,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,292,730.0 --Infinity,1,a-sust-i2,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2016-17,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1114,Infinity --Infinity,1,a-sust-i2,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2016-17,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1114,Infinity +NA,NA,a-sust-i2,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity -3.792,1,a-sust-i2,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,737,737.0 --Infinity,1,a-sust-i2,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity -10.026666666666667,1,a-sust-i2,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,338,1126.6666666666667 --Infinity,1,a-sust-i2,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +NA,NA,a-sust-i2,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity -5.248,1,a-sust-i2,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,414,828.0 -14.933333333333335,1,a-sust-i2,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,430,1433.3333333333335 --Infinity,1,a-sust-i2,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity 3.44,3.44,a-sust-i2,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,285,285.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity -4.608,1,a-sust-i2,2016-17,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,788,788.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity -3.424,1,a-sust-i2,2016-17,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,714,714.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity -1.504,1,a-sust-i2,2016-17,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,594,594.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,731,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,731,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity 2.256,2.26,a-sust-i2,2016-17,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 -12.0,1,a-sust-i2,2016-17,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1250,1250.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity -2.656,1,a-sust-i2,2016-17,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,666,666.0 --Infinity,1,a-sust-i2,2016-17,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity 2.624,2.62,a-sust-i2,2016-17,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,672,336.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity -2.288,1,a-sust-i2,2016-17,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,643,643.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity -1.216,1,a-sust-i2,2016-17,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,576,576.0 -4.4,1,a-sust-i2,2016-17,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,775,775.0 -15.072,1,a-sust-i2,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1442,1442.0 --Infinity,1,a-sust-i2,2016-17,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity 2.672,2.67,a-sust-i2,2016-17,Springfield - Samuel Bowles,02810020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 --Infinity,1,a-sust-i2,2016-17,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity -24.88,1,a-sust-i2,2016-17,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,2055,2055.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity -13.856,1,a-sust-i2,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1366,1366.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity 6.224,5,a-sust-i2,2016-17,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,111,111.0 --Infinity,1,a-sust-i2,2016-17,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity -1.216,1,a-sust-i2,2016-17,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,576,576.0 --Infinity,1,a-sust-i2,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Van Sickle Academy,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity --Infinity,1,a-sust-i2,2016-17,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Van Sickle Academy,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +NA,NA,a-sust-i2,2016-17,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity 3.232,3.23,a-sust-i2,2016-17,Springfield - William N. DeBerry,02810045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 --Infinity,1,a-sust-i2,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity --Infinity,1,a-sust-i2,2016-17,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity --Infinity,1,a-sust-i2,2016-17,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2016-17,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity --Infinity,1,a-sust-i2,2016-17,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity --Infinity,1,a-sust-i2,2016-17,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity --Infinity,1,a-sust-i2,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i2,2016-17,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity --Infinity,1,a-sust-i2,2016-17,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity --Infinity,1,a-sust-i2,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2016-17,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity --Infinity,1,a-sust-i2,2016-17,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2016-17,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +NA,NA,a-sust-i2,2016-17,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2016-17,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +NA,NA,a-sust-i2,2016-17,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +NA,NA,a-sust-i2,2016-17,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +NA,NA,a-sust-i2,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i2,2016-17,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +NA,NA,a-sust-i2,2016-17,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2016-17,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i2,2016-17,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity -8.976,1,a-sust-i2,2016-17,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1061,1061.0 --Infinity,1,a-sust-i2,2016-17,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +NA,NA,a-sust-i2,2016-17,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity 1.330909090909092,1.33,a-sust-i2,2016-17,Sturbridge - Burgess Elementary,02870005, 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0, 2.2,917,416.81818181818176 --Infinity,1,a-sust-i2,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity +NA,NA,a-sust-i2,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,804,Infinity 2.789333333333333,2.79,a-sust-i2,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,977,325.6666666666667 3.6061538461538465,3.61,a-sust-i2,2016-17,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.5, 0.0, 0.8, 0.0, 0.0, 1.3,357,274.6153846153846 0.208,1,a-sust-i2,2016-17,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,487,487.0 1.808,1.81,a-sust-i2,2016-17,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 -1.52,1,a-sust-i2,2016-17,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,595,595.0 --Infinity,1,a-sust-i2,2016-17,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2016-17,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity --Infinity,1,a-sust-i2,2016-17,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity --Infinity,1,a-sust-i2,2016-17,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i2,2016-17,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity --Infinity,1,a-sust-i2,2016-17,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity +NA,NA,a-sust-i2,2016-17,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2016-17,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +NA,NA,a-sust-i2,2016-17,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2016-17,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i2,2016-17,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375,Infinity +NA,NA,a-sust-i2,2016-17,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206,Infinity -1.504,1,a-sust-i2,2016-17,Swampscott - Hadley,02910010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,297,594.0 -0.896,1,a-sust-i2,2016-17,Swampscott - Stanley,02910020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,278,556.0 -13.664,1,a-sust-i2,2016-17,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,677,1354.0 -16.736,1,a-sust-i2,2016-17,Swampscott - Swampscott Middle,02910305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,773,1546.0 --Infinity,1,a-sust-i2,2016-17,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity --Infinity,1,a-sust-i2,2016-17,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity --Infinity,1,a-sust-i2,2016-17,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity --Infinity,1,a-sust-i2,2016-17,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i2,2016-17,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity --Infinity,1,a-sust-i2,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1119,Infinity --Infinity,1,a-sust-i2,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i2,2016-17,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2016-17,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243,Infinity +NA,NA,a-sust-i2,2016-17,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +NA,NA,a-sust-i2,2016-17,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2016-17,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +NA,NA,a-sust-i2,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1119,Infinity +NA,NA,a-sust-i2,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity 1.92,1.92,a-sust-i2,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,760,380.0 --Infinity,1,a-sust-i2,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i2,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity -34.88,1,a-sust-i2,2016-17,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.1, 0.0, 0.2, 0.0, 0.0, 0.0, 0.3,804,2680.0 -24.373333333333335,1,a-sust-i2,2016-17,Taunton - East Taunton Elementary,02930010, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,607,2023.3333333333335 -18.64,1,a-sust-i2,2016-17,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,333,1665.0 -18.32,1,a-sust-i2,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,329,1645.0 -16.4,1,a-sust-i2,2016-17,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,610,1525.0 --Infinity,1,a-sust-i2,2016-17,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2016-17,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +NA,NA,a-sust-i2,2016-17,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2016-17,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity -6.496,1,a-sust-i2,2016-17,Taunton - John F Parker Middle,02930305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5,453,906.0 -34.32,1,a-sust-i2,2016-17,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,529,2645.0 -30.50666666666667,1,a-sust-i2,2016-17,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,722,2406.666666666667 --Infinity,1,a-sust-i2,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i2,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity -6.24,1,a-sust-i2,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,89,890.0 -72.064,1,a-sust-i2,2016-17,Taunton - Taunton High,02930505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,2502,5004.0 --Infinity,1,a-sust-i2,2016-17,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity --Infinity,1,a-sust-i2,2016-17,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity --Infinity,1,a-sust-i2,2016-17,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity --Infinity,1,a-sust-i2,2016-17,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity --Infinity,1,a-sust-i2,2016-17,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity --Infinity,1,a-sust-i2,2016-17,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i2,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,980,Infinity --Infinity,1,a-sust-i2,2016-17,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2016-17,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity --Infinity,1,a-sust-i2,2016-17,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity --Infinity,1,a-sust-i2,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1023,Infinity --Infinity,1,a-sust-i2,2016-17,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2016-17,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity --Infinity,1,a-sust-i2,2016-17,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity --Infinity,1,a-sust-i2,2016-17,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity --Infinity,1,a-sust-i2,2016-17,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2016-17,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity +NA,NA,a-sust-i2,2016-17,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +NA,NA,a-sust-i2,2016-17,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i2,2016-17,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +NA,NA,a-sust-i2,2016-17,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +NA,NA,a-sust-i2,2016-17,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +NA,NA,a-sust-i2,2016-17,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i2,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,980,Infinity +NA,NA,a-sust-i2,2016-17,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2016-17,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i2,2016-17,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +NA,NA,a-sust-i2,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1023,Infinity +NA,NA,a-sust-i2,2016-17,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2016-17,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +NA,NA,a-sust-i2,2016-17,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +NA,NA,a-sust-i2,2016-17,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716,Infinity +NA,NA,a-sust-i2,2016-17,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2016-17,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116,Infinity -4.592,1,a-sust-i2,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,787,787.0 --Infinity,1,a-sust-i2,2016-17,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2016-17,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity 0.448,1,a-sust-i2,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,472,472.0 2.048,2.05,a-sust-i2,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,744,372.0 --Infinity,1,a-sust-i2,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity --Infinity,1,a-sust-i2,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity --Infinity,1,a-sust-i2,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity --Infinity,1,a-sust-i2,2016-17,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity --Infinity,1,a-sust-i2,2016-17,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity --Infinity,1,a-sust-i2,2016-17,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +NA,NA,a-sust-i2,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i2,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +NA,NA,a-sust-i2,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,709,Infinity +NA,NA,a-sust-i2,2016-17,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i2,2016-17,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i2,2016-17,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity 0.288,1,a-sust-i2,2016-17,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 1.424,1.42,a-sust-i2,2016-17,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,411,411.0 --Infinity,1,a-sust-i2,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity --Infinity,1,a-sust-i2,2016-17,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity -4.064,1,a-sust-i2,2016-17,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,377,754.0 --Infinity,1,a-sust-i2,2016-17,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2016-17,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2016-17,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity --Infinity,1,a-sust-i2,2016-17,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity --Infinity,1,a-sust-i2,2016-17,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2016-17,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity -4.944,1,a-sust-i2,2016-17,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,809,809.0 --Infinity,1,a-sust-i2,2016-17,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity -31.6,1,a-sust-i2,2016-17,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,495,2475.0 --Infinity,1,a-sust-i2,2016-17,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i2,2016-17,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity -26.24,1,a-sust-i2,2016-17,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,2140,2140.0 --Infinity,1,a-sust-i2,2016-17,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity --Infinity,1,a-sust-i2,2016-17,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1085,Infinity --Infinity,1,a-sust-i2,2016-17,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity --Infinity,1,a-sust-i2,2016-17,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1016,Infinity --Infinity,1,a-sust-i2,2016-17,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i2,2016-17,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2016-17,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +NA,NA,a-sust-i2,2016-17,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1085,Infinity +NA,NA,a-sust-i2,2016-17,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223,Infinity +NA,NA,a-sust-i2,2016-17,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1016,Infinity +NA,NA,a-sust-i2,2016-17,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i2,2016-17,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity 5.376,5,a-sust-i2,2016-17,Wales - Wales Elementary,03060005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,164,164.0 --Infinity,1,a-sust-i2,2016-17,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity --Infinity,1,a-sust-i2,2016-17,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i2,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity --Infinity,1,a-sust-i2,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity --Infinity,1,a-sust-i2,2016-17,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity --Infinity,1,a-sust-i2,2016-17,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity --Infinity,1,a-sust-i2,2016-17,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2016-17,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1143,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2016-17,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1143,Infinity -15.04,1,a-sust-i2,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,432,1440.0 --Infinity,1,a-sust-i2,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity -0.96,1,a-sust-i2,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.5, 0.0, 0.3, 0.0, 0.0, 0.8,448,560.0 --Infinity,1,a-sust-i2,2016-17,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity --Infinity,1,a-sust-i2,2016-17,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity --Infinity,1,a-sust-i2,2016-17,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity --Infinity,1,a-sust-i2,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i2,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity --Infinity,1,a-sust-i2,2016-17,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1586,Infinity --Infinity,1,a-sust-i2,2016-17,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity --Infinity,1,a-sust-i2,2016-17,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity --Infinity,1,a-sust-i2,2016-17,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2016-17,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity --Infinity,1,a-sust-i2,2016-17,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1586,Infinity +NA,NA,a-sust-i2,2016-17,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i2,2016-17,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +NA,NA,a-sust-i2,2016-17,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2016-17,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +NA,NA,a-sust-i2,2016-17,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity -4.272,1,a-sust-i2,2016-17,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,767,767.0 -0.288,1,a-sust-i2,2016-17,Wareham - Wareham Senior High,03100505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,518,518.0 --Infinity,1,a-sust-i2,2016-17,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2016-17,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity 1.248,1.25,a-sust-i2,2016-17,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,633,422.0 1.088,1.09,a-sust-i2,2016-17,Watertown - James Russell Lowell,03140025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,432,432.0 --Infinity,1,a-sust-i2,2016-17,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity --Infinity,1,a-sust-i2,2016-17,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +NA,NA,a-sust-i2,2016-17,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,662,Infinity +NA,NA,a-sust-i2,2016-17,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity -4.32,1,a-sust-i2,2016-17,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.7,539,770.0 1.824,1.82,a-sust-i2,2016-17,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 -2.28,1,a-sust-i2,2016-17,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,257,642.5 --Infinity,1,a-sust-i2,2016-17,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity +NA,NA,a-sust-i2,2016-17,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity 1.216,1.22,a-sust-i2,2016-17,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 1.5,636,424.0 --Infinity,1,a-sust-i2,2016-17,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity --Infinity,1,a-sust-i2,2016-17,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,845,Infinity --Infinity,1,a-sust-i2,2016-17,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity --Infinity,1,a-sust-i2,2016-17,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1512,Infinity +NA,NA,a-sust-i2,2016-17,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +NA,NA,a-sust-i2,2016-17,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,845,Infinity +NA,NA,a-sust-i2,2016-17,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1145,Infinity +NA,NA,a-sust-i2,2016-17,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1512,Infinity 3.48,3.48,a-sust-i2,2016-17,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,113,282.5 --Infinity,1,a-sust-i2,2016-17,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity --Infinity,1,a-sust-i2,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity --Infinity,1,a-sust-i2,2016-17,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2016-17,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i2,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513,Infinity +NA,NA,a-sust-i2,2016-17,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity 3.888,3.89,a-sust-i2,2016-17,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,257,257.0 --Infinity,1,a-sust-i2,2016-17,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity --Infinity,1,a-sust-i2,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity --Infinity,1,a-sust-i2,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i2,2016-17,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +NA,NA,a-sust-i2,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619,Infinity +NA,NA,a-sust-i2,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity 4.16,4.16,a-sust-i2,2016-17,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,120,240.0 -4.053333333333334,1,a-sust-i2,2016-17,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,226,753.3333333333334 --Infinity,1,a-sust-i2,2016-17,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +NA,NA,a-sust-i2,2016-17,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity -4.586666666666668,1,a-sust-i2,2016-17,West Springfield - Memorial,03320025, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,236,786.6666666666667 --Infinity,1,a-sust-i2,2016-17,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i2,2016-17,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity -0.24,1,a-sust-i2,2016-17,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,515,515.0 -4.106666666666668,1,a-sust-i2,2016-17,West Springfield - Tatham,03320040, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,227,756.6666666666667 -31.008,1,a-sust-i2,2016-17,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1219,2438.0 -16.32,1,a-sust-i2,2016-17,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.6,912,1520.0 -46.56,1,a-sust-i2,2016-17,Westborough - Annie E Fales,03210010, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,341,3410.0 --Infinity,1,a-sust-i2,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i2,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity 1.6,1.6,a-sust-i2,2016-17,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,400,400.0 --Infinity,1,a-sust-i2,2016-17,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity --Infinity,1,a-sust-i2,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +NA,NA,a-sust-i2,2016-17,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,889,Infinity +NA,NA,a-sust-i2,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity -8.848,1,a-sust-i2,2016-17,Westborough - Westborough High,03210505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1053,1053.0 --Infinity,1,a-sust-i2,2016-17,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,640,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1269,Infinity --Infinity,1,a-sust-i2,2016-17,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity --Infinity,1,a-sust-i2,2016-17,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1680,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,640,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1269,Infinity +NA,NA,a-sust-i2,2016-17,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i2,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691,Infinity +NA,NA,a-sust-i2,2016-17,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1680,Infinity -2.4,1,a-sust-i2,2016-17,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,130,650.0 --Infinity,1,a-sust-i2,2016-17,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +NA,NA,a-sust-i2,2016-17,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity 4.298666666666666,4.3,a-sust-i2,2016-17,Weston - Field Elementary School,03300012, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,347,231.33333333333334 -3.296,1,a-sust-i2,2016-17,Weston - Weston High,03300505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,706,706.0 -0.224,1,a-sust-i2,2016-17,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,514,514.0 3.168,3.17,a-sust-i2,2016-17,Weston - Woodland,03300015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,302,302.0 --Infinity,1,a-sust-i2,2016-17,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity --Infinity,1,a-sust-i2,2016-17,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity --Infinity,1,a-sust-i2,2016-17,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2016-17,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i2,2016-17,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i2,2016-17,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity 0.864,1,a-sust-i2,2016-17,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,223,446.0 4.096,4.1,a-sust-i2,2016-17,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,244,244.0 --Infinity,1,a-sust-i2,2016-17,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity +NA,NA,a-sust-i2,2016-17,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,795,Infinity 3.312,3.31,a-sust-i2,2016-17,Westwood - Martha Jones,03350017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 2.9257142857142853,2.93,a-sust-i2,2016-17,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,222,317.14285714285717 -7.984,1,a-sust-i2,2016-17,Westwood - Westwood High,03350505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,999,999.0 6.656,5,a-sust-i2,2016-17,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,42,84.0 2.496,2.5,a-sust-i2,2016-17,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,344,344.0 --Infinity,1,a-sust-i2,2016-17,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,939,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1953,Infinity --Infinity,1,a-sust-i2,2016-17,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,939,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,916,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1953,Infinity +NA,NA,a-sust-i2,2016-17,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity 5.936,5,a-sust-i2,2016-17,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,129,129.0 1.568,1.57,a-sust-i2,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,402,402.0 -2.976,1,a-sust-i2,2016-17,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,343,686.0 -7.84,1,a-sust-i2,2016-17,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,495,990.0 --Infinity,1,a-sust-i2,2016-17,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity +NA,NA,a-sust-i2,2016-17,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,561,Infinity -5.76,1,a-sust-i2,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,430,860.0 -10.72,1,a-sust-i2,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1170,1170.0 -11.168,1,a-sust-i2,2016-17,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,599,1198.0 --Infinity,1,a-sust-i2,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity +NA,NA,a-sust-i2,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1310,Infinity -4.64,1,a-sust-i2,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,158,790.0 --Infinity,1,a-sust-i2,2016-17,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity --Infinity,1,a-sust-i2,2016-17,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity --Infinity,1,a-sust-i2,2016-17,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity --Infinity,1,a-sust-i2,2016-17,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-i2,2016-17,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +NA,NA,a-sust-i2,2016-17,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +NA,NA,a-sust-i2,2016-17,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +NA,NA,a-sust-i2,2016-17,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity 3.936,3.94,a-sust-i2,2016-17,Wilmington - West Intermediate,03420080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,254,254.0 --Infinity,1,a-sust-i2,2016-17,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity --Infinity,1,a-sust-i2,2016-17,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +NA,NA,a-sust-i2,2016-17,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i2,2016-17,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity -5.904,1,a-sust-i2,2016-17,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,869,869.0 --Infinity,1,a-sust-i2,2016-17,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity --Infinity,1,a-sust-i2,2016-17,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity --Infinity,1,a-sust-i2,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i2,2016-17,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity --Infinity,1,a-sust-i2,2016-17,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity --Infinity,1,a-sust-i2,2016-17,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity --Infinity,1,a-sust-i2,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity --Infinity,1,a-sust-i2,2016-17,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i2,2016-17,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity --Infinity,1,a-sust-i2,2016-17,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity --Infinity,1,a-sust-i2,2016-17,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1133,Infinity --Infinity,1,a-sust-i2,2016-17,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity --Infinity,1,a-sust-i2,2016-17,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity --Infinity,1,a-sust-i2,2016-17,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1268,Infinity --Infinity,1,a-sust-i2,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity --Infinity,1,a-sust-i2,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity --Infinity,1,a-sust-i2,2016-17,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity --Infinity,1,a-sust-i2,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity --Infinity,1,a-sust-i2,2016-17,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +NA,NA,a-sust-i2,2016-17,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +NA,NA,a-sust-i2,2016-17,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +NA,NA,a-sust-i2,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i2,2016-17,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +NA,NA,a-sust-i2,2016-17,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +NA,NA,a-sust-i2,2016-17,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +NA,NA,a-sust-i2,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i2,2016-17,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i2,2016-17,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,410,Infinity +NA,NA,a-sust-i2,2016-17,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i2,2016-17,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1133,Infinity +NA,NA,a-sust-i2,2016-17,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +NA,NA,a-sust-i2,2016-17,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i2,2016-17,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1268,Infinity +NA,NA,a-sust-i2,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,458,Infinity +NA,NA,a-sust-i2,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i2,2016-17,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,576,Infinity +NA,NA,a-sust-i2,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity -13.328,1,a-sust-i2,2016-17,Woburn - Woburn High,03470505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1333,1333.0 --Infinity,1,a-sust-i2,2016-17,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +NA,NA,a-sust-i2,2016-17,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity -9.856,1,a-sust-i2,2016-17,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,558,1116.0 -10.016,1,a-sust-i2,2016-17,Worcester - Burncoat Middle School,03480405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,563,1126.0 -8.368,1,a-sust-i2,2016-17,Worcester - Burncoat Senior High,03480503, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1023,1023.0 --Infinity,1,a-sust-i2,2016-17,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity 1.984,1.98,a-sust-i2,2016-17,Worcester - Canterbury,03480045, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,376,376.0 --Infinity,1,a-sust-i2,2016-17,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity 0.576,1,a-sust-i2,2016-17,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,464,464.0 -7.904,1,a-sust-i2,2016-17,Worcester - City View,03480053, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,497,994.0 -9.024,1,a-sust-i2,2016-17,Worcester - Claremont Academy,03480350, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,532,1064.0 --Infinity,1,a-sust-i2,2016-17,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity -7.232,1,a-sust-i2,2016-17,Worcester - Columbus Park,03480060, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,476,952.0 -16.88,1,a-sust-i2,2016-17,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1555,1555.0 -7.968,1,a-sust-i2,2016-17,Worcester - Elm Park Community,03480095, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,499,998.0 @@ -14682,13 +14682,13 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.536,1,a-sust-i2,2016-17,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,596,596.0 -8.544,1,a-sust-i2,2016-17,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,517,1034.0 -5.088,1,a-sust-i2,2016-17,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,409,818.0 --Infinity,1,a-sust-i2,2016-17,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity 3.696,3.7,a-sust-i2,2016-17,Worcester - Heard Street,03480136, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,269,269.0 --Infinity,1,a-sust-i2,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity --Infinity,1,a-sust-i2,2016-17,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity -1.12,1,a-sust-i2,2016-17,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,285,570.0 --Infinity,1,a-sust-i2,2016-17,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i2,2016-17,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity -6.528,1,a-sust-i2,2016-17,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,454,908.0 -10.112,1,a-sust-i2,2016-17,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,566,1132.0 -12.912,1,a-sust-i2,2016-17,Worcester - North High,03480515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1307,1307.0 @@ -14698,17 +14698,17 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -14.736,1,a-sust-i2,2016-17,Worcester - South High Community,03480520, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1421,1421.0 -5.808,1,a-sust-i2,2016-17,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,863,863.0 1.84,1.84,a-sust-i2,2016-17,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,385,385.0 --Infinity,1,a-sust-i2,2016-17,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity -8.672,1,a-sust-i2,2016-17,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,521,1042.0 --Infinity,1,a-sust-i2,2016-17,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity -9.952,1,a-sust-i2,2016-17,Worcester - Vernon Hill School,03480280, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,561,1122.0 --Infinity,1,a-sust-i2,2016-17,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +NA,NA,a-sust-i2,2016-17,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity 2.544,2.54,a-sust-i2,2016-17,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,341,341.0 -12.064,1,a-sust-i2,2016-17,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,627,1254.0 1.52,1.52,a-sust-i2,2016-17,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,405,405.0 -18.112,1,a-sust-i2,2016-17,Worcester - Worcester East Middle,03480420, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,816,1632.0 -36.448,1,a-sust-i2,2016-17,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1389,2778.0 --Infinity,1,a-sust-i2,2016-17,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i2,2016-17,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity -6.048,1,a-sust-i2,2016-17,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,439,878.0 -39.36,1,a-sust-i2,2016-17,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,592,2960.0 0.7240143369175627,1,a-sust-i3,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.0, 2.0, 2.0, 4.0, 4.0, 4.0, 1.0, 18.0,1421,78.94444444444444 @@ -14738,7 +14738,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.037025266168759,5,a-sust-i3,2023-24,Agawam - James Clark School,00050030, 2.0, 2.0, 3.0, 6.0, 5.0, 10.0, 1.0, 29.0,303,10.448275862068966 4.426799007444169,4.43,a-sust-i3,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 1.0, 0.0, 2.0, 2.0, 6.0, 2.0, 13.0,504,38.76923076923077 6.806032677000419,5,a-sust-i3,2023-24,Agawam - William P. Sapelli Elementary,00050025, 3.0, 2.0, 6.0, 4.0, 5.0, 2.0, 0.0, 22.0,285,12.954545454545455 --Infinity,1,a-sust-i3,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1041,Infinity +NA,NA,a-sust-i3,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1041,Infinity 5.142857142857142,5,a-sust-i3,2023-24,Amesbury - Amesbury High,00070505, 2.0, 1.0, 0.0, 1.0, 3.0, 7.0, 1.0, 15.0,465,31.0 3.2995391705069124,3.3,a-sust-i3,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,51,51.0 5.261356155365371,5,a-sust-i3,2023-24,Amesbury - Amesbury Middle,00070013, 2.0, 0.0, 0.0, 4.0, 5.0, 3.0, 0.0, 14.0,416,29.714285714285715 @@ -14790,7 +14790,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.826628471789762,5,a-sust-i3,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 2.0, 3.0, 3.0, 2.0, 2.8, 2.0, 14.8,349,23.58108108108108 1.7327188940092164,1.73,a-sust-i3,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,68,68.0 2.2767950052029136,2.28,a-sust-i3,2023-24,Attleboro - Attleboro High,00160505, 1.0, 4.0, 6.0, 6.0, 7.0, 6.0, 1.0, 31.0,1925,62.096774193548384 --Infinity,1,a-sust-i3,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i3,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity 4.946070494457591,4.95,a-sust-i3,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 2.0, 2.0, 4.0, 2.0, 2.0, 5.5, 1.0, 18.5,613,33.13513513513514 6.629638612660684,5,a-sust-i3,2023-24,Attleboro - Early Learning Center,00160008, 1.0, 2.7, 0.7, 2.7, 5.4, 2.7, 0.0, 15.2,226,14.868421052631579 5.248189598420013,5,a-sust-i3,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 2.0, 2.0, 3.0, 3.0, 3.0, 1.0, 14.0,418,29.857142857142858 @@ -14819,7 +14819,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.1237656352863725,5,a-sust-i3,2023-24,Barnstable - Hyannis West Elementary,00200025, 2.0, 2.0, 4.8, 1.0, 1.0, 5.0, 1.0, 16.8,342,20.357142857142858 6.119518358852385,5,a-sust-i3,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 2.0, 1.5, 2.0, 4.5, 2.4, 0.0, 12.4,253,20.403225806451612 6.188463372000636,5,a-sust-i3,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 3.0, 7.3, 5.0, 3.0, 2.0, 0.0, 20.3,399,19.655172413793103 --Infinity,1,a-sust-i3,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +NA,NA,a-sust-i3,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity -0.4910285322090402,1,a-sust-i3,2023-24,Bedford - Bedford High,00230505, 2.4, 2.0, 0.0, 1.0, 0.0, 2.0, 2.0, 9.4,866,92.12765957446808 4.23963133640553,4.24,a-sust-i3,2023-24,Bedford - John Glenn Middle,00230305, 1.0, 3.0, 2.0, 1.0, 3.0, 3.0, 2.0, 15.0,612,40.8 6.914443226445014,5,a-sust-i3,2023-24,Bedford - Lt Eleazer Davis,00230010, 2.8, 10.1, 5.0, 13.7, 6.1, 5.6, 0.0, 43.3,510,11.778290993071595 @@ -14918,7 +14918,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.534562211981567,4.53,a-sust-i3,2023-24,Boston - Fenway High School,00350540, 0.0, 4.0, 3.0, 0.0, 2.0, 1.0, 0.0, 10.0,376,37.6 6.227161832474925,5,a-sust-i3,2023-24,Boston - Frederick Pilot Middle School,00350383, 3.0, 5.0, 1.0, 3.0, 1.0, 4.0, 0.0, 17.0,327,19.235294117647058 5.720430107526882,5,a-sust-i3,2023-24,Boston - Gardner Pilot Academy,00350326, 4.0, 3.0, 2.0, 1.0, 2.0, 3.0, 0.0, 15.0,371,24.733333333333334 --Infinity,1,a-sust-i3,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +NA,NA,a-sust-i3,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity 6.496020108923335,5,a-sust-i3,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 3.0, 5.0, 4.0, 8.0, 0.0, 2.0, 0.0, 22.0,359,16.318181818181817 -1.078341013824885,1,a-sust-i3,2023-24,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,197,98.5 5.723502304147465,5,a-sust-i3,2023-24,Boston - Guild Elementary School,00350062, 1.0, 2.0, 1.0, 2.0, 2.0, 2.0, 0.0, 10.0,247,24.7 @@ -14959,7 +14959,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.265745007680491,5,a-sust-i3,2023-24,Boston - Mozart Elementary School,00350237, 0.0, 1.0, 1.0, 0.0, 2.0, 2.0, 0.0, 6.0,178,29.666666666666668 5.5135952109295125,5,a-sust-i3,2023-24,Boston - Murphy K-8 School,00350240, 4.0, 7.0, 5.0, 2.1, 5.0, 7.0, 1.0, 31.1,839,26.97749196141479 2.351667864541496,2.35,a-sust-i3,2023-24,Boston - New Mission High School,00350542, 1.8, 3.0, 3.0, 1.0, 2.1, 0.0, 0.0, 10.9,668,61.28440366972477 --Infinity,1,a-sust-i3,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1538,Infinity +NA,NA,a-sust-i3,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1538,Infinity 1.6635944700460827,1.66,a-sust-i3,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 0.0, 4.0,275,68.75 4.559139784946236,4.56,a-sust-i3,2023-24,Boston - Ohrenberger School,00350258, 0.0, 0.0, 2.0, 4.0, 3.0, 2.0, 1.0, 12.0,448,37.333333333333336 5.900492072170585,5,a-sust-i3,2023-24,Boston - Orchard Gardens K-8 School,00350257, 4.0, 12.0, 2.0, 4.0, 3.0, 4.5, 0.0, 29.5,672,22.779661016949152 @@ -15023,7 +15023,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.823348694316436,4.82,a-sust-i3,2023-24,Brockton - Ashfield Middle School,00440421, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 2.0, 15.0,517,34.46666666666667 6.990745325056175,5,a-sust-i3,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 2.0, 5.0, 3.0, 4.0, 5.2, 4.0, 1.0, 24.2,265,10.950413223140496 2.3695585614583257,2.37,a-sust-i3,2023-24,Brockton - Brockton High,00440505, 2.0, 9.8, 11.7, 8.0, 11.0, 11.2, 5.0, 58.7,3586,61.090289608177166 --Infinity,1,a-sust-i3,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i3,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity 6.310291858678956,5,a-sust-i3,2023-24,Brockton - Brookfield,00440010, 5.0, 1.0, 2.2, 4.0, 6.0, 5.4, 1.0, 24.6,451,18.333333333333332 6.347084632578161,5,a-sust-i3,2023-24,Brockton - Downey,00440110, 1.0, 8.0, 7.2, 5.2, 4.0, 3.0, 5.0, 33.4,599,17.934131736526947 6.099389712292937,5,a-sust-i3,2023-24,Brockton - Dr W Arnone Community School,00440001, 6.2, 7.0, 6.2, 6.4, 7.0, 3.2, 1.0, 37.0,763,20.62162162162162 @@ -15040,7 +15040,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.04888565499771,5,a-sust-i3,2023-24,Brockton - Mary E. Baker School,00440002, 5.0, 4.0, 5.0, 11.0, 3.2, 5.0, 1.0, 34.2,724,21.16959064327485 -29.419354838709683,1,a-sust-i3,2023-24,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 4.872529549004107,4.87,a-sust-i3,2023-24,Brockton - Oscar F Raymond,00440078, 3.0, 3.0, 2.2, 3.0, 7.2, 2.5, 3.0, 23.9,811,33.93305439330544 --Infinity,1,a-sust-i3,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i3,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity 4.330863909467421,4.33,a-sust-i3,2023-24,Brockton - Plouffe Middle School,00440422, 1.0, 4.1, 3.0, 3.5, 2.2, 1.0, 1.0, 15.8,629,39.81012658227848 4.828408782867986,4.83,a-sust-i3,2023-24,Brockton - South Middle School,00440415, 3.0, 4.2, 3.0, 1.2, 2.2, 0.0, 0.0, 13.6,468,34.411764705882355 3.1241266537832617,3.12,a-sust-i3,2023-24,Brockton - West Middle School,00440420, 3.1, 3.0, 2.0, 0.2, 1.0, 0.0, 0.0, 9.3,492,52.90322580645161 @@ -15107,7 +15107,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.330602491892814,5,a-sust-i3,2023-24,Chelmsford - McCarthy Middle School,00560310, 2.0, 3.0, 3.0, 7.5, 2.0, 5.0, 4.5, 27.0,782,28.962962962962962 6.306041784302654,5,a-sust-i3,2023-24,Chelmsford - South Row,00560015, 1.0, 1.0, 4.0, 6.0, 4.0, 7.0, 2.3, 25.3,465,18.379446640316203 -4.903225806451613,1,a-sust-i3,2023-24,Chelsea - Chelsea High,00570505, 1.0, 3.0, 2.0, 2.0, 2.0, 2.0, 0.0, 12.0,1680,140.0 --Infinity,1,a-sust-i3,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i3,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity 2.4700460829493087,2.47,a-sust-i3,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,60,60.0 0.18894009216589835,1,a-sust-i3,2023-24,Chelsea - Clark Avenue School,00570050, 2.0, 1.0, 1.0, 2.0, 2.0, 0.0, 0.0, 8.0,678,84.75 5.017774851876235,5,a-sust-i3,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 2.0, 1.0, 2.0, 5.0, 2.0, 1.0, 1.0, 14.0,453,32.357142857142854 @@ -15199,7 +15199,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.700460829493087,2.7,a-sust-i3,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 0.5, 2.0, 1.5, 0.0, 0.0, 0.0, 4.0,230,57.5 5.733111089322483,5,a-sust-i3,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 1.5, 2.0, 2.5, 4.5, 5.5, 4.5, 3.0, 23.5,578,24.595744680851062 1.018433179723502,1.02,a-sust-i3,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 2.0, 0.0, 1.0, 2.0, 4.0, 2.0, 1.0, 12.0,909,75.75 --Infinity,1,a-sust-i3,2023-24,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, 0.0,288,Infinity +NA,NA,a-sust-i3,2023-24,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, 0.0,288,Infinity 6.441731198631764,5,a-sust-i3,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 3.0, 4.8, 6.6, 5.0, 0.0, 19.4,328,16.90721649484536 4.030283080974325,4.03,a-sust-i3,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 2.0, 1.0, 2.0, 4.0, 2.0, 2.0, 1.0, 14.0,603,43.07142857142857 4.43125066981031,4.43,a-sust-i3,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 1.0, 1.0, 0.0, 5.6, 1.0, 0.0, 0.0, 8.6,333,38.72093023255814 @@ -15236,8 +15236,8 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -72.46082949308756,1,a-sust-i3,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,873,873.0 -2.2406554019457245,1,a-sust-i3,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 1.0, 2.0, 3.0, 0.0, 3.0, 9.0,1000,111.11111111111111 -15.963133640552995,1,a-sust-i3,2023-24,Everett - Madeline English School,00930018, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,780,260.0 --Infinity,1,a-sust-i3,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity --Infinity,1,a-sust-i3,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +NA,NA,a-sust-i3,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity +NA,NA,a-sust-i3,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity 5.726574500768049,5,a-sust-i3,2023-24,Everett - Webster Extension,00930001, 0.0, 2.0, 0.0, 1.0, 2.0, 3.0, 1.0, 9.0,222,24.666666666666668 5.582417582417583,5,a-sust-i3,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 3.0, 2.0, 3.0, 1.0, 4.0, 13.0,341,26.23076923076923 -5.958013312852023,1,a-sust-i3,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 2.0, 2.0, 1.0, 1.0, 1.0, 2.0, 0.0, 9.0,1363,151.44444444444446 @@ -15301,7 +15301,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.7771260997067446,3.78,a-sust-i3,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 1.0, 3.0, 2.0, 3.0, 2.0, 11.0,504,45.81818181818182 -1.861751152073733,1,a-sust-i3,2023-24,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 5.0,535,107.0 -0.9861751152073736,1,a-sust-i3,2023-24,Framingham - Walsh Middle,01000310, 1.0, 1.0, 2.0, 2.0, 1.0, 0.0, 1.0, 8.0,780,97.5 --Infinity,1,a-sust-i3,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i3,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity 5.6258064516129025,5,a-sust-i3,2023-24,Franklin - Annie Sullivan Middle School,01010040, 4.0, 4.0, 1.0, 2.0, 0.0, 0.0, 1.5, 12.5,322,25.76 7.336056085788543,5,a-sust-i3,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 1.5, 1.4, 2.8, 4.8, 6.6, 4.0, 0.0, 21.1,152,7.203791469194313 0.7695852534562208,1,a-sust-i3,2023-24,Franklin - Franklin High,01010505, 3.0, 2.0, 2.0, 2.0, 4.0, 6.0, 1.0, 20.0,1569,78.45 @@ -15312,14 +15312,14 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.263381779510811,5,a-sust-i3,2023-24,Franklin - Oak Street Elementary,01010030, 1.5, 1.5, 0.5, 2.0, 3.0, 3.5, 1.0, 13.0,386,29.692307692307693 4.917209597965994,4.92,a-sust-i3,2023-24,Franklin - Parmenter,01010032, 0.0, 1.0, 0.0, 0.0, 3.7, 4.0, 0.0, 8.7,291,33.44827586206897 4.405529953917051,4.41,a-sust-i3,2023-24,Franklin - Remington Middle,01010310, 1.0, 3.0, 0.0, 0.0, 4.5, 0.5, 0.0, 9.0,351,39.0 --Infinity,1,a-sust-i3,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +NA,NA,a-sust-i3,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity 3.803379416282642,3.8,a-sust-i3,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 4.0, 2.0, 2.0, 6.0, 1.0, 15.0,683,45.53333333333333 4.912442396313364,4.91,a-sust-i3,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.0, 1.0, 1.0, 4.0, 5.0, 1.0, 1.0, 14.0,469,33.5 6.253456221198157,5,a-sust-i3,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 1.0, 4.0, 2.0, 5.0, 7.0, 0.0, 20.0,379,18.95 3.9389400921658986,3.94,a-sust-i3,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 1.0, 1.0, 1.0, 10.0, 3.0, 0.0, 16.0,705,44.0625 -0.5529953917050692,1,a-sust-i3,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 3.0, 1.0, 0.0, 5.0,464,92.8 5.769585253456221,5,a-sust-i3,2023-24,Frontier - Frontier Regional,06700505, 3.0, 7.0, 3.0, 8.0, 2.0, 1.0, 1.0, 25.0,605,24.2 --Infinity,1,a-sust-i3,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +NA,NA,a-sust-i3,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity 6.1191726503054324,5,a-sust-i3,2023-24,Gardner - Gardner Elementary School,01030001, 9.0, 8.0, 6.0, 8.0, 10.6, 8.0, 2.0, 51.6,1053,20.406976744186046 0.5437788018433172,1,a-sust-i3,2023-24,Gardner - Gardner High,01030505, 5.0, 1.0, 0.0, 3.0, 1.0, 0.0, 0.0, 10.0,809,80.9 5.499093874592243,5,a-sust-i3,2023-24,Gardner - Gardner Middle School,01030405, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 0.8, 17.8,483,27.134831460674157 @@ -15328,7 +15328,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.220843672456575,5,a-sust-i3,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.5, 0.5, 0.0, 3.5, 2.0, 6.5,196,30.153846153846153 5.872503840245776,5,a-sust-i3,2023-24,Gateway - Littleville Elementary School,06720143, 1.0, 1.0, 4.0, 0.0, 2.0, 2.0, 2.0, 12.0,277,23.083333333333332 -18.63594470046083,1,a-sust-i3,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,289,289.0 --Infinity,1,a-sust-i3,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +NA,NA,a-sust-i3,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity -1.4334507996747095,1,a-sust-i3,2023-24,Georgetown - Penn Brook,01050010, 1.0, 0.0, 1.0, 1.0, 2.8, 0.0, 1.0, 6.8,696,102.3529411764706 6.377880184331796,5,a-sust-i3,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 5.0,88,17.6 5.8986175115207375,5,a-sust-i3,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.0, 1.0, 1.0, 2.0, 0.0, 5.0,114,22.8 @@ -15344,7 +15344,7 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.721966205837174,5,a-sust-i3,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 3.0, 2.0, 5.0, 2.0, 3.0, 15.0,208,13.866666666666667 4.794674859190988,4.79,a-sust-i3,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 1.0, 1.0, 4.0, 5.0, 5.0, 2.0, 18.0,626,34.77777777777778 5.994036324207102,5,a-sust-i3,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 6.0, 7.0, 1.0, 2.0, 17.0,370,21.764705882352942 -NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN 3.4377880184331797,3.44,a-sust-i3,2023-24,Grafton - Grafton High School,01100505, 1.0, 2.0, 2.0, 5.0, 1.0, 6.0, 1.0, 18.0,891,49.5 4.978275181040158,4.98,a-sust-i3,2023-24,Grafton - Grafton Middle,01100305, 2.0, 3.0, 4.0, 2.0, 2.0, 1.0, 0.0, 14.0,459,32.785714285714285 5.845804988662131,5,a-sust-i3,2023-24,Grafton - Millbury Street Elementary School,01100200, 3.0, 0.0, 8.0, 3.2, 6.0, 5.0, 0.0, 25.2,589,23.373015873015873 @@ -15393,7 +15393,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -10.433179723502304,1,a-sust-i3,2023-24,Hanover - Hanover Middle,01220305, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 4.0,800,200.0 6.5952645796917215,5,a-sust-i3,2023-24,Harvard - Hildreth Elementary School,01250005, 5.0, 0.0, 3.0, 5.0, 7.0, 8.0, 1.0, 29.0,442,15.241379310344827 4.516986389454506,4.52,a-sust-i3,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 0.0, 0.0, 2.0, 2.6, 2.0, 2.0, 8.6,325,37.79069767441861 --Infinity,1,a-sust-i3,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +NA,NA,a-sust-i3,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity 4.387096774193548,4.39,a-sust-i3,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 1.0, 0.0, 0.0, 3.0, 0.0, 1.0, 5.0,196,39.2 -3.6129032258064515,1,a-sust-i3,2023-24,Hatfield - Smith Academy,01270505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,126,126.0 7.785295349811479,5,a-sust-i3,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 5.0, 3.0, 2.0, 4.0, 1.6, 2.0, 0.0, 17.6,41,2.329545454545454 @@ -15514,7 +15514,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.804775869291999,5,a-sust-i3,2023-24,Leominster - Johnny Appleseed,01530025, 2.0, 2.0, 5.5, 6.0, 5.5, 6.0, 0.5, 27.5,655,23.818181818181817 5.276916631755341,5,a-sust-i3,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.0, 2.2,65,29.545454545454543 3.152254450167163,3.15,a-sust-i3,2023-24,Leominster - Leominster High School,01530505, 1.0, 3.4, 2.0, 3.0, 1.0, 4.0, 6.0, 20.4,1073,52.59803921568628 --Infinity,1,a-sust-i3,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +NA,NA,a-sust-i3,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity 7.631336405529954,5,a-sust-i3,2023-24,Leominster - Lincoln School,01530005, 1.0, 0.0, 4.0, 1.0, 2.0, 2.0, 0.0, 10.0,40,4.0 5.197318810222036,5,a-sust-i3,2023-24,Leominster - Northwest,01530030, 2.0, 3.0, 5.0, 6.0, 1.0, 4.5, 0.5, 22.0,669,30.40909090909091 6.932411674347159,5,a-sust-i3,2023-24,Leominster - Priest Street,01530040, 3.0, 0.0, 1.0, 3.0, 2.5, 1.5, 1.0, 12.0,139,11.583333333333334 @@ -15531,7 +15531,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.6979187906964093,1.7,a-sust-i3,2023-24,Lexington - Lexington High,01550505, 9.2, 3.7, 3.8, 3.8, 3.6, 6.2, 3.5, 33.9,2318,68.37758112094396 5.719345802837263,5,a-sust-i3,2023-24,Lexington - Maria Hastings,01550035, 2.4, 5.6, 2.5, 7.9, 2.1, 4.5, 0.5, 25.5,631,24.745098039215687 5.30480163979706,5,a-sust-i3,2023-24,Lexington - Wm Diamond Middle,01550310, 7.5, 7.9, 3.6, 3.1, 3.2, 4.6, 1.7, 31.7,927,29.242902208201894 --Infinity,1,a-sust-i3,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +NA,NA,a-sust-i3,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity 6.759401800625321,5,a-sust-i3,2023-24,Lincoln - Hanscom School,01570305, 4.2, 3.0, 12.6, 10.6, 2.9, 3.5, 0.0, 36.7,494,13.460490463215258 5.645619935789635,5,a-sust-i3,2023-24,Lincoln - Lincoln School,01570025, 2.4, 2.7, 2.1, 5.5, 2.8, 3.6, 2.1, 21.1,539,25.545023696682463 2.0112647209421404,2.01,a-sust-i3,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 6.0, 2.0, 2.0, 1.5, 5.0, 2.0, 4.0, 22.5,1462,64.97777777777777 @@ -15570,10 +15570,10 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.525345622119816,5,a-sust-i3,2023-24,Lowell - Pyne Arts,01600018, 2.0, 4.0, 9.0, 7.0, 4.0, 2.0, 1.0, 29.0,464,16.0 5.273160654695694,5,a-sust-i3,2023-24,Lowell - Rogers STEM Academy,01600005, 3.0, 6.0, 8.0, 5.0, 3.0, 4.0, 0.0, 29.0,858,29.586206896551722 5.832977408115094,5,a-sust-i3,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 2.5, 6.0, 4.0, 2.0, 1.5, 2.0, 2.5, 20.5,482,23.51219512195122 --Infinity,1,a-sust-i3,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i3,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity 6.284296348812478,5,a-sust-i3,2023-24,Lowell - Washington,01600055, 0.0, 2.0, 3.0, 2.0, 1.0, 5.0, 0.0, 13.0,242,18.615384615384617 3.2937788018433176,3.29,a-sust-i3,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 2.0, 5.0, 2.0, 4.0, 1.0, 2.0, 0.0, 16.0,817,51.0625 --Infinity,1,a-sust-i3,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i3,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity 7.140582919384762,5,a-sust-i3,2023-24,Ludlow - East Street Elementary School,01610010, 5.0, 7.0, 5.5, 5.0, 11.0, 4.0, 1.0, 38.5,359,9.324675324675324 5.083776438615148,5,a-sust-i3,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 1.0, 4.5, 3.0, 4.0, 7.0, 0.0, 19.5,617,31.641025641025642 -0.13228517213336966,1,a-sust-i3,2023-24,Ludlow - Ludlow Senior High,01610505, 1.0, 1.0, 0.0, 1.0, 1.0, 4.5, 0.0, 8.5,750,88.23529411764706 @@ -15593,7 +15593,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.513481713893519,5,a-sust-i3,2023-24,Lynn - E J Harrington,01630045, 3.0, 3.0, 5.5, 4.0, 4.0, 3.0, 1.0, 23.5,634,26.97872340425532 3.0806451612903225,3.08,a-sust-i3,2023-24,Lynn - Edward A Sisson,01630095, 1.0, 0.0, 1.0, 1.0, 1.0, 1.0, 3.0, 8.0,427,53.375 7.324116743471583,5,a-sust-i3,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 3.0, 2.0, 2.0, 3.0, 2.0, 12.0,88,7.333333333333333 --Infinity,1,a-sust-i3,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +NA,NA,a-sust-i3,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity 5.3380319869883435,5,a-sust-i3,2023-24,Lynn - Hood,01630055, 5.0, 1.0, 3.0, 3.0, 2.0, 2.0, 1.0, 17.0,491,28.88235294117647 2.6390168970814134,2.64,a-sust-i3,2023-24,Lynn - Ingalls,01630060, 1.0, 0.0, 2.0, 2.0, 1.0, 2.0, 4.0, 12.0,698,58.166666666666664 6.270792187842879,5,a-sust-i3,2023-24,Lynn - Julia F Callahan,01630030, 3.0, 7.0, 0.0, 3.0, 3.0, 4.0, 1.0, 21.0,394,18.761904761904763 @@ -15615,7 +15615,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.0297444490992875,5,a-sust-i3,2023-24,Lynnfield - Lynnfield Middle School,01640405, 2.0, 4.0, 0.0, 3.0, 6.0, 5.0, 2.0, 22.0,709,32.22727272727273 7.28110599078341,5,a-sust-i3,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 1.0, 1.0, 1.0, 2.0, 0.0, 5.0,39,7.8 0.29493087557603714,1,a-sust-i3,2023-24,Lynnfield - Summer Street,01640020, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 5.0,418,83.6 --Infinity,1,a-sust-i3,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, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0,97,Infinity 1.079877112135177,1.08,a-sust-i3,2023-24,Malden - Beebe,01650003, 0.0, 1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 12.0,901,75.08333333333333 0.4172601591956434,1,a-sust-i3,2023-24,Malden - Ferryway,01650013, 2.0, 1.0, 2.0, 0.0, 3.0, 1.0, 2.0, 11.0,905,82.27272727272727 5.332039776861508,5,a-sust-i3,2023-24,Malden - Forestdale,01650027, 1.0, 2.0, 4.0, 4.0, 2.0, 1.0, 5.0, 19.0,550,28.94736842105263 @@ -15713,9 +15713,9 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.163626922827286,5,a-sust-i3,2023-24,Middleton - Howe-Manning,01840005, 1.9, 2.9, 1.4, 3.0, 2.0, 0.0, 3.0, 14.2,437,30.774647887323944 3.9659695143566114,3.97,a-sust-i3,2023-24,Milford - Brookside,01850065, 0.0, 1.0, 4.0, 1.0, 0.0, 6.0, 1.0, 13.0,569,43.76923076923077 4.279849183074989,4.28,a-sust-i3,2023-24,Milford - Memorial,01850010, 0.0, 2.0, 1.0, 2.0, 3.0, 3.0, 0.0, 11.0,444,40.36363636363637 --Infinity,1,a-sust-i3,2023-24,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1297,Infinity --Infinity,1,a-sust-i3,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity --Infinity,1,a-sust-i3,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,971,Infinity +NA,NA,a-sust-i3,2023-24,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1297,Infinity +NA,NA,a-sust-i3,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +NA,NA,a-sust-i3,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,971,Infinity -14.534562211981566,1,a-sust-i3,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 4.0,978,244.5 5.698343504795118,5,a-sust-i3,2023-24,Millbury - Elmwood Street,01860017, 0.0, 3.6, 2.3, 5.8, 2.8, 4.0, 0.0, 18.5,462,24.972972972972972 1.6712749615975415,1.67,a-sust-i3,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.5, 1.0, 2.0, 2.0, 1.0, 3.0, 10.5,721,68.66666666666667 @@ -15803,9 +15803,9 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.3235105088268675,5,a-sust-i3,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 7.0, 5.0, 7.0, 6.0, 3.7, 5.0, 0.0, 33.7,613,18.189910979228486 3.2764976958525343,3.28,a-sust-i3,2023-24,New Bedford - Thomas R Rodman,02010125, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 4.0,205,51.25 5.357910906298002,5,a-sust-i3,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 3.0,86,28.666666666666668 --Infinity,1,a-sust-i3,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +NA,NA,a-sust-i3,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity 6.281764318630678,5,a-sust-i3,2023-24,New Bedford - William H Taylor,02010135, 2.0, 4.0, 1.0, 2.0, 2.0, 1.0, 2.0, 14.0,261,18.642857142857142 --Infinity,1,a-sust-i3,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +NA,NA,a-sust-i3,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity 7.02871322226161,5,a-sust-i3,2023-24,New Salem-Wendell - Swift River,07280015, 3.0, 1.0, 2.0, 5.0, 1.0, 1.0, 0.0, 13.0,137,10.538461538461538 4.543778801843318,4.54,a-sust-i3,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 2.0, 1.0, 0.0, 0.0, 3.0, 1.0, 1.0, 8.0,300,37.5 6.025950256561101,5,a-sust-i3,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 2.0, 2.0, 2.0, 2.8, 10.1, 9.3, 0.0, 28.2,604,21.418439716312058 @@ -15924,7 +15924,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.031561011501375,3.03,a-sust-i3,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.9, 2.9, 4.5, 8.0, 4.0, 3.5, 23.8,1283,53.90756302521008 6.057932850559578,5,a-sust-i3,2023-24,Peabody - John E Burke,02290007, 0.5, 0.0, 1.5, 2.5, 4.5, 3.0, 2.0, 14.0,295,21.071428571428573 6.273575362481735,5,a-sust-i3,2023-24,Peabody - John E. McCarthy,02290016, 0.5, 1.0, 5.5, 3.0, 5.0, 3.5, 2.0, 20.5,384,18.73170731707317 --Infinity,1,a-sust-i3,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i3,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity 2.309757563614506,2.31,a-sust-i3,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 2.0, 1.0, 2.5, 1.0, 8.0, 6.0, 2.5, 23.0,1420,61.73913043478261 1.2789790854306984,1.28,a-sust-i3,2023-24,Peabody - South Memorial,02290035, 0.5, 0.0, 1.5, 1.0, 1.5, 1.5, 0.5, 6.5,474,72.92307692307692 2.6635944700460827,2.66,a-sust-i3,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 1.5, 1.5, 1.5, 4.0, 1.5, 0.0, 10.0,579,57.9 @@ -15943,9 +15943,9 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.168970814132105,1,a-sust-i3,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,331,110.33333333333333 0.44239631336405505,1,a-sust-i3,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 1.0, 7.0,574,82.0 6.114143920595533,5,a-sust-i3,2023-24,Petersham - Petersham Center,02340005, 0.0, 2.0, 2.0, 1.0, 0.5, 0.0, 1.0, 6.5,133,20.46153846153846 --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0,194,Infinity --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0,114,Infinity --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0,194,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0,159,Infinity -34.23366766061264,1,a-sust-i3,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.7, 0.0, 0.0, 1.0, 0.0, 1.7,779,458.2352941176471 -32.12761432116271,1,a-sust-i3,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.8, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.3,566,435.38461538461536 6.807603686635945,5,a-sust-i3,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 3.0, 0.0, 5.0, 4.0, 2.0, 1.0, 1.0, 16.0,207,12.9375 @@ -15994,7 +15994,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.208407787077965,5,a-sust-i3,2023-24,Quabbin - Ruggles Lane,07530030, 3.0, 1.0, 5.0, 2.9, 1.0, 5.7, 1.0, 19.6,381,19.43877551020408 7.023041474654377,5,a-sust-i3,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,53,10.6 4.477214541730671,4.48,a-sust-i3,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 3.0, 2.0, 1.0, 0.0, 3.0, 0.0, 9.0,344,38.22222222222222 --Infinity,1,a-sust-i3,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i3,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity 6.197775103466494,5,a-sust-i3,2023-24,Quaboag Regional - Warren Elementary,07780005, 3.0, 1.0, 4.7, 4.0, 1.0, 2.0, 0.0, 15.7,307,19.554140127388536 6.7506400409626215,5,a-sust-i3,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 1.0, 1.0, 6.0, 5.0, 3.0, 2.0, 0.0, 18.0,244,13.555555555555555 7.28780896522832,5,a-sust-i3,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 4.0, 1.0, 2.0, 4.0, 4.0, 5.0, 2.0, 22.0,170,7.7272727272727275 @@ -16035,9 +16035,9 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.9960500329163926,2.0,a-sust-i3,2023-24,Revere - A. C. Whelan Elementary School,02480003, 1.0, 1.5, 0.5, 3.5, 1.0, 2.0, 1.0, 10.5,684,65.14285714285714 0.047399605003290816,1,a-sust-i3,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.5, 2.0, 0.5, 2.0, 2.0, 7.0,604,86.28571428571429 4.651305683563748,4.65,a-sust-i3,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.5, 0.5, 1.5, 2.5, 2.0, 1.0, 1.0, 9.0,327,36.333333333333336 --Infinity,1,a-sust-i3,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +NA,NA,a-sust-i3,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity 3.614174479580486,3.61,a-sust-i3,2023-24,Revere - Garfield Elementary School,02480056, 1.0, 2.5, 3.0, 2.0, 1.5, 3.0, 1.5, 14.5,690,47.58620689655172 --Infinity,1,a-sust-i3,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +NA,NA,a-sust-i3,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity 1.3782346685572495,1.38,a-sust-i3,2023-24,Revere - Paul Revere,02480050, 0.0, 1.0, 2.0, 2.5, 1.0, 0.0, 0.0, 6.5,467,71.84615384615384 -13.484895033282129,1,a-sust-i3,2023-24,Revere - Revere High,02480505, 1.5, 0.0, 1.0, 2.0, 2.0, 1.5, 1.0, 9.0,2098,233.11111111111111 -1.7025555090071216,1,a-sust-i3,2023-24,Revere - Rumney Marsh Academy,02480014, 1.5, 0.0, 0.5, 1.0, 1.5, 0.5, 0.5, 5.5,579,105.27272727272727 @@ -16086,11 +16086,11 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.4308755760368665,5,a-sust-i3,2023-24,Seekonk - George R Martin,02650007, 2.0, 1.0, 3.0, 3.0, 4.0, 3.0, 0.0, 16.0,446,27.875 5.350230414746544,5,a-sust-i3,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 1.0, 4.0, 5.0, 3.0, 5.0, 2.0, 20.0,575,28.75 2.009216589861751,2.01,a-sust-i3,2023-24,Seekonk - Seekonk High,02650505, 0.0, 4.0, 1.0, 1.0, 0.0, 2.0, 0.0, 8.0,520,65.0 --Infinity,1,a-sust-i3,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity --Infinity,1,a-sust-i3,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity --Infinity,1,a-sust-i3,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +NA,NA,a-sust-i3,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +NA,NA,a-sust-i3,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +NA,NA,a-sust-i3,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity -8.651305683563747,1,a-sust-i3,2023-24,Sharon - Heights Elementary,02660015, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,542,180.66666666666666 --Infinity,1,a-sust-i3,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i3,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity 3.2576455802262254,3.26,a-sust-i3,2023-24,Sharon - Sharon High,02660505, 1.0, 4.0, 0.0, 2.0, 5.0, 7.0, 3.0, 22.0,1132,51.45454545454545 3.0414746543778803,3.04,a-sust-i3,2023-24,Sharon - Sharon Middle,02660305, 2.0, 1.0, 2.0, 3.0, 3.0, 2.0, 2.0, 15.0,807,53.8 -2.030721966205838,1,a-sust-i3,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 2.0, 5.0, 0.0, 1.0, 1.0, 3.0, 0.0, 12.0,1306,108.83333333333333 @@ -16118,9 +16118,9 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.368663594470046,1,a-sust-i3,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,225,112.5 7.062028465397007,5,a-sust-i3,2023-24,Somerville - Capuano Early Childhood Center,02740005, 1.0, 3.0, 3.0, 1.8, 6.8, 3.0, 4.0, 22.6,230,10.176991150442477 -5.695852534562211,1,a-sust-i3,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 5.0,743,148.6 --Infinity,1,a-sust-i3,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i3,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity 2.8387096774193545,2.84,a-sust-i3,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 1.0, 1.0, 0.0, 5.0, 1.0, 8.0,448,56.0 --Infinity,1,a-sust-i3,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity -5.46210412785567,1,a-sust-i3,2023-24,Somerville - Somerville High,02740505, 2.0, 3.0, 0.0, 2.0, 1.0, 1.4, 0.0, 9.4,1373,146.06382978723403 -0.709677419354839,1,a-sust-i3,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 1.0, 4.0,378,94.5 5.346938775510204,5,a-sust-i3,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 2.0, 2.0, 3.0, 5.0, 1.0, 1.0, 14.0,403,28.785714285714285 @@ -16167,12 +16167,12 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.306912442396314,5,a-sust-i3,2023-24,Springfield - Early Childhood Education Center,02810001, 8.0, 5.0, 5.0, 0.0, 3.0, 4.0, 0.0, 25.0,188,7.52 6.865335381464413,5,a-sust-i3,2023-24,Springfield - Edward P. Boland School,02810010, 12.0, 11.0, 11.0, 4.0, 4.0, 2.0, 1.0, 45.0,554,12.311111111111112 6.433179723502304,5,a-sust-i3,2023-24,Springfield - Elias Brookings,02810030, 1.0, 2.0, 3.0, 2.0, 3.0, 3.0, 3.0, 17.0,289,17.0 --Infinity,1,a-sust-i3,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i3,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity 4.728110599078341,4.73,a-sust-i3,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 2.0, 1.0, 0.0, 3.0, 2.0, 0.0, 8.0,284,35.5 4.9239631336405525,4.92,a-sust-i3,2023-24,Springfield - Frank H Freedman,02810075, 1.0, 1.0, 0.0, 2.0, 3.0, 0.0, 1.0, 8.0,267,33.375 6.112442396313364,5,a-sust-i3,2023-24,Springfield - Frederick Harris,02810080, 1.0, 6.0, 9.0, 3.0, 4.0, 2.0, 0.0, 25.0,512,20.48 --Infinity,1,a-sust-i3,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity --Infinity,1,a-sust-i3,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i3,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +NA,NA,a-sust-i3,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity 6.359447004608295,5,a-sust-i3,2023-24,Springfield - German Gerena Community School,02810195, 6.0, 10.0, 5.0, 4.0, 6.0, 4.0, 0.0, 35.0,623,17.8 5.901453385324353,5,a-sust-i3,2023-24,Springfield - Glenwood,02810065, 3.0, 0.0, 3.0, 3.0, 1.0, 2.0, 1.0, 13.0,296,22.76923076923077 6.387096774193548,5,a-sust-i3,2023-24,Springfield - Glickman Elementary,02810068, 1.0, 6.0, 4.0, 4.0, 2.0, 1.0, 0.0, 18.0,315,17.5 @@ -16186,7 +16186,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.7096774193548385,2.71,a-sust-i3,2023-24,Springfield - Kiley Academy,02810316, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 1.0, 5.0,287,57.4 1.9400921658986172,1.94,a-sust-i3,2023-24,Springfield - Kiley Prep,02810315, 0.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 4.0,263,65.75 4.761026991441738,4.76,a-sust-i3,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 2.0, 1.0, 3.0, 1.0, 0.0, 7.0,246,35.142857142857146 --Infinity,1,a-sust-i3,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +NA,NA,a-sust-i3,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity 5.6753712237583205,5,a-sust-i3,2023-24,Springfield - Lincoln,02810120, 4.0, 6.0, 4.0, 0.0, 4.0, 0.0, 0.0, 18.0,454,25.22222222222222 7.491244239631337,5,a-sust-i3,2023-24,Springfield - Margaret C Ells,02810060, 4.0, 4.0, 7.0, 3.0, 4.0, 3.0, 0.0, 25.0,138,5.52 5.0302099334357395,5,a-sust-i3,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 2.0, 2.0, 2.0, 1.0, 0.0, 1.0, 1.0, 9.0,290,32.22222222222222 @@ -16203,8 +16203,8 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.9086355439791625,3.91,a-sust-i3,2023-24,Springfield - Springfield Central High,02810500, 7.0, 7.0, 8.0, 8.0, 5.0, 5.0, 6.0, 46.0,2042,44.391304347826086 5.090190915075707,5,a-sust-i3,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 3.0, 1.0, 2.0, 1.0, 0.0, 7.0,221,31.571428571428573 5.191500256016385,5,a-sust-i3,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 4.0, 6.0, 3.0, 8.0, 2.0, 9.0, 4.0, 36.0,1097,30.47222222222222 --Infinity,1,a-sust-i3,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i3,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +NA,NA,a-sust-i3,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i3,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity -24.718894009216594,1,a-sust-i3,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 7.354838709677419,5,a-sust-i3,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,14,7.0 7.658986175115207,5,a-sust-i3,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 2.0, 4.0, 1.0, 0.0, 2.0, 1.0, 0.0, 10.0,37,3.7 @@ -16237,7 +16237,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.5730150336178887,3.57,a-sust-i3,2023-24,Stoughton - South Elementary,02850015, 1.8, 0.0, 0.9, 1.8, 0.0, 0.9, 0.9, 6.1,293,48.032786885245905 0.45477680720819896,1,a-sust-i3,2023-24,Stoughton - Stoughton High,02850505, 1.3, 1.8, 0.0, 2.1, 4.8, 2.1, 1.3, 13.4,1097,81.86567164179104 6.136017027959745,5,a-sust-i3,2023-24,Sturbridge - Burgess Elementary,02870005, 7.0, 6.0, 1.0, 8.6, 10.0, 7.0, 5.0, 44.6,902,20.22421524663677 --Infinity,1,a-sust-i3,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity +NA,NA,a-sust-i3,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity 3.7603686635944698,3.76,a-sust-i3,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 6.0, 4.0, 2.0, 2.0, 1.0, 1.0, 2.0, 18.0,828,46.0 1.1592421915002553,1.16,a-sust-i3,2023-24,Sudbury - General John Nixon Elementary,02880025, 2.0, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 4.5,334,74.22222222222223 4.339697169190257,4.34,a-sust-i3,2023-24,Sudbury - Israel Loring School,02880015, 2.0, 0.0, 1.0, 1.0, 2.5, 2.0, 2.0, 10.5,417,39.714285714285715 @@ -16259,10 +16259,10 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.39631336405529927,1,a-sust-i3,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 4.0, 1.0, 1.0, 0.0, 6.0,495,82.5 2.500768049155146,2.5,a-sust-i3,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,179,59.666666666666664 5.039170506912442,5,a-sust-i3,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 1.0, 3.0, 3.0, 1.0, 0.0, 8.0,257,32.125 --Infinity,1,a-sust-i3,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2907,Infinity +NA,NA,a-sust-i3,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2907,Infinity 3.698924731182796,3.7,a-sust-i3,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 3.0, 2.0, 1.0, 3.0, 1.0, 2.0, 12.0,560,46.666666666666664 5.343217792025646,5,a-sust-i3,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 6.0, 2.0, 4.0, 3.0, 4.0, 4.0, 23.0,663,28.82608695652174 --Infinity,1,a-sust-i3,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i3,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity 1.9258283958744793,1.93,a-sust-i3,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, 1.0, 2.0, 2.0, 0.0, 3.5, 2.0, 10.5,692,65.9047619047619 4.706605222734255,4.71,a-sust-i3,2023-24,Taunton - East Taunton Elementary,02930010, 2.0, 1.0, 2.0, 1.0, 4.0, 3.0, 2.0, 15.0,536,35.733333333333334 -1.0629800307219661,1,a-sust-i3,2023-24,Taunton - Edmund Hatch Bennett,02930007, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,295,98.33333333333333 @@ -16273,9 +16273,9 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.7685218007798645,1,a-sust-i3,2023-24,Taunton - John F Parker Middle,02930305, 0.0, 1.0, 2.0, 1.0, 1.0, 0.0, 1.5, 6.5,510,78.46153846153847 4.879071984744955,4.88,a-sust-i3,2023-24,Taunton - Joseph C Chamberlain,02930008, 1.0, 4.0, 1.0, 2.0, 3.0, 2.5, 1.0, 14.5,491,33.86206896551724 2.570590699622958,2.57,a-sust-i3,2023-24,Taunton - Joseph H Martin,02930042, 1.0, 0.0, 0.0, 4.0, 2.0, 2.0, 2.0, 11.0,648,58.90909090909091 --Infinity,1,a-sust-i3,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i3,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity -8.5284178187404,1,a-sust-i3,2023-24,Taunton - Taunton High,02930505, 2.0, 2.0, 2.0, 0.0, 2.0, 7.0, 0.0, 15.0,2690,179.33333333333334 --Infinity,1,a-sust-i3,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i3,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity 6.232718894009217,5,a-sust-i3,2023-24,Tewksbury - Center Elementary School,02950030, 8.0, 8.0, 4.0, 5.0, 8.0, 3.0, 4.0, 40.0,767,19.175 6.319327731092437,5,a-sust-i3,2023-24,Tewksbury - Heath-Brook,02950010, 1.0, 3.0, 4.0, 4.0, 2.0, 3.0, 0.0, 17.0,310,18.235294117647058 5.589134125636672,5,a-sust-i3,2023-24,Tewksbury - John F. Ryan,02950023, 3.0, 2.0, 3.0, 2.0, 4.0, 4.0, 1.0, 19.0,497,26.157894736842106 @@ -16291,7 +16291,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.732605807017048,5,a-sust-i3,2023-24,Triton - Salisbury Elementary,07730015, 2.0, 2.0, 5.0, 1.0, 3.0, 2.5, 0.8, 16.3,401,24.60122699386503 5.360703812316715,5,a-sust-i3,2023-24,Triton - Triton Regional High School,07730505, 1.6, 1.0, 0.0, 2.0, 9.0, 2.0, 4.2, 19.8,567,28.636363636363637 5.773839064161645,5,a-sust-i3,2023-24,Triton - Triton Regional Middle School,07730405, 1.0, 1.0, 1.0, 2.0, 1.0, 5.0, 2.0, 13.0,314,24.153846153846153 --Infinity,1,a-sust-i3,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i3,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity 5.503563969101217,5,a-sust-i3,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 4.0, 2.6, 1.0, 8.0, 3.0, 7.2, 2.0, 27.8,753,27.086330935251798 -4.903225806451613,1,a-sust-i3,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,420,140.0 4.420082464225079,4.42,a-sust-i3,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 2.0, 0.0, 0.0, 0.5, 0.0, 7.0, 0.0, 9.5,369,38.8421052631579 @@ -16300,7 +16300,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.859642271342655,5,a-sust-i3,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 1.1, 0.1, 0.2, 2.2, 0.2, 1.1, 1.0, 5.9,73,12.372881355932202 6.741432056693646,5,a-sust-i3,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 3.7, 1.5, 7.5, 5.4, 2.9, 1.3, 1.5, 23.8,325,13.655462184873949 1.5483870967741933,1.55,a-sust-i3,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.5, 1.3, 0.0, 1.0, 3.0, 2.0, 4.0, 11.8,826,70.0 --Infinity,1,a-sust-i3,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i3,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity 6.474396771331253,5,a-sust-i3,2023-24,Uxbridge - Taft Early Learning Center,03040005, 1.0, 1.0, 7.5, 7.0, 12.1, 3.5, 0.0, 32.2,533,16.5527950310559 5.176813000242541,5,a-sust-i3,2023-24,Uxbridge - Uxbridge High,03040505, 2.0, 2.0, 2.0, 2.0, 4.0, 5.0, 2.0, 19.0,582,30.63157894736842 4.8663594470046085,4.87,a-sust-i3,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 1.0, 4.0, 5.0, 4.0, 0.0, 14.0,476,34.0 @@ -16347,11 +16347,11 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.3553883228343135,5,a-sust-i3,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 6.2, 1.8, 3.0, 3.0, 1.0, 4.0, 2.8, 21.8,389,17.844036697247706 4.899275839368005,4.9,a-sust-i3,2023-24,Ware - Ware Junior/Senior High School,03090505, 1.0, 0.0, 0.0, 0.0, 4.0, 6.0, 3.0, 14.0,471,33.642857142857146 3.944700460829493,3.94,a-sust-i3,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 2.0, 1.0, 2.0, 0.0, 6.0,264,44.0 --Infinity,1,a-sust-i3,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i3,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity 5.270133859995611,5,a-sust-i3,2023-24,Wareham - Wareham Elementary School,03100017, 2.0, 0.0, 8.5, 2.0, 8.0, 6.0, 5.0, 31.5,933,29.61904761904762 5.517665130568356,5,a-sust-i3,2023-24,Wareham - Wareham Middle,03100305, 1.0, 1.0, 2.0, 2.0, 4.0, 4.0, 1.0, 15.0,404,26.933333333333334 4.9295589203423305,4.93,a-sust-i3,2023-24,Wareham - Wareham Senior High,03100505, 1.0, 4.0, 3.0, 0.0, 2.5, 4.0, 3.0, 17.5,583,33.31428571428572 --Infinity,1,a-sust-i3,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i3,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity 5.959183673469388,5,a-sust-i3,2023-24,Watertown - Cunniff,03140015, 2.0, 4.0, 1.0, 2.0, 2.0, 3.0, 0.0, 14.0,310,22.142857142857142 6.736010533245556,5,a-sust-i3,2023-24,Watertown - Hosmer,03140020, 7.0, 9.0, 10.0, 7.6, 9.0, 9.3, 0.6, 52.5,720,13.714285714285714 5.470483366409903,5,a-sust-i3,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 2.0, 3.6, 0.4, 1.0, 5.7, 1.0, 13.7,376,27.445255474452555 @@ -16463,7 +16463,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.001024065540195,4.0,a-sust-i3,2023-24,Wilmington - Wilmington Middle School,03420330, 3.0, 0.0, 4.0, 0.5, 5.0, 4.5, 1.0, 18.0,781,43.388888888888886 -0.6829978171234546,1,a-sust-i3,2023-24,Wilmington - Woburn Street,03420020, 0.0, 1.0, 1.0, 0.0, 1.8, 0.0, 0.0, 3.8,358,94.21052631578948 6.011849901250823,5,a-sust-i3,2023-24,Winchendon - Memorial,03430040, 1.0, 2.0, 0.0, 2.0, 6.0, 3.0, 0.0, 14.0,302,21.571428571428573 --Infinity,1,a-sust-i3,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +NA,NA,a-sust-i3,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity 3.3548387096774195,3.35,a-sust-i3,2023-24,Winchendon - Murdock High School,03430515, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 1.0, 5.0,252,50.4 3.5453149001536093,3.55,a-sust-i3,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 1.0, 2.0, 0.0, 2.0, 1.0, 0.0, 6.0,290,48.333333333333336 5.3223381033228225,5,a-sust-i3,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 4.0, 1.5, 2.0, 2.0, 0.0, 9.5,276,29.05263157894737 @@ -16526,7 +16526,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.3302611367127497,3.33,a-sust-i3,2023-24,Worcester - Tatnuck,03480230, 0.0, 1.5, 1.0, 4.0, 1.0, 0.0, 0.0, 7.5,380,50.666666666666664 1.5115207373271882,1.51,a-sust-i3,2023-24,Worcester - Thorndyke Road,03480235, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 5.0,352,70.4 2.3317972350230414,2.33,a-sust-i3,2023-24,Worcester - Union Hill School,03480240, 0.0, 1.0, 2.0, 1.0, 1.0, 1.0, 0.0, 6.0,369,61.5 --Infinity,1,a-sust-i3,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +NA,NA,a-sust-i3,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity 4.740800106859012,4.74,a-sust-i3,2023-24,Worcester - Vernon Hill School,03480280, 3.0, 3.0, 1.0, 3.3, 2.5, 1.0, 0.0, 13.8,488,35.36231884057971 6.025016458196181,5,a-sust-i3,2023-24,Worcester - Wawecus Road School,03480026, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 1.0, 7.0,150,21.428571428571427 5.72076223689127,5,a-sust-i3,2023-24,Worcester - West Tatnuck,03480260, 2.0, 2.5, 4.3, 2.0, 2.0, 2.0, 0.0, 14.8,366,24.72972972972973 @@ -16565,7 +16565,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.989466754443714,5,a-sust-i3,2022-23,Agawam - James Clark School,00050030, 1.0, 1.0, 5.0, 3.0, 7.0, 9.0, 2.0, 28.0,307,10.964285714285714 5.224179994578477,5,a-sust-i3,2022-23,Agawam - Roberta G. Doering School,00050303, 4.0, 2.0, 1.0, 0.0, 3.0, 6.0, 1.0, 17.0,512,30.11764705882353 6.723502304147464,5,a-sust-i3,2022-23,Agawam - Robinson Park,00050025, 0.0, 2.0, 7.0, 4.0, 5.0, 2.0, 0.0, 20.0,277,13.85 --Infinity,1,a-sust-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1038,Infinity +NA,NA,a-sust-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1038,Infinity 6.36592352721385,5,a-sust-i3,2022-23,Amesbury - Amesbury Elementary,00070005, 0.0, 1.9, 2.6, 1.9, 6.3, 4.1, 1.7, 18.5,328,17.72972972972973 -0.5206432803536162,1,a-sust-i3,2022-23,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 2.9, 1.5, 0.5, 4.9,453,92.44897959183673 2.815668202764977,2.82,a-sust-i3,2022-23,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,45,56.25 @@ -16615,9 +16615,9 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.7188940092165896,1,a-sust-i3,2022-23,Athol-Royalston - Royalston Community School,06150050, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,158,79.0 5.312526183493926,5,a-sust-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 6.0, 9.0, 8.0, 9.0, 7.0, 3.0, 2.0, 44.0,1283,29.15909090909091 6.074391046741278,5,a-sust-i3,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 3.0, 4.0, 2.0, 2.0, 4.8, 1.0, 16.8,351,20.892857142857142 --Infinity,1,a-sust-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity 2.6889400921658986,2.69,a-sust-i3,2022-23,Attleboro - Attleboro High,00160505, 0.0, 6.0, 6.0, 5.0, 6.0, 8.0, 1.0, 32.0,1844,57.625 --Infinity,1,a-sust-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +NA,NA,a-sust-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity 4.295525494276795,4.3,a-sust-i3,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 1.0, 1.0, 4.0, 2.0, 3.0, 3.5, 1.0, 15.5,623,40.193548387096776 6.610196766878794,5,a-sust-i3,2022-23,Attleboro - Early Learning Center,00160008, 1.0, 0.9, 0.7, 0.9, 6.3, 2.8, 0.0, 12.6,190,15.079365079365079 3.811571940604199,3.81,a-sust-i3,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 1.0, 2.0, 3.0, 0.0, 3.0, 0.0, 9.0,409,45.44444444444444 @@ -16646,7 +16646,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.0750160415329875,5,a-sust-i3,2022-23,Barnstable - Hyannis West Elementary,00200025, 1.0, 2.0, 3.8, 2.0, 2.0, 4.0, 1.0, 15.8,330,20.886075949367086 5.767725024309812,5,a-sust-i3,2022-23,Barnstable - West Barnstable Elementary,00200005, 0.0, 1.0, 1.0, 2.0, 3.0, 3.4, 0.5, 10.9,264,24.220183486238533 6.342667024859995,5,a-sust-i3,2022-23,Barnstable - West Villages Elementary School,00200045, 2.0, 1.0, 5.3, 6.0, 3.0, 4.0, 1.0, 22.3,401,17.982062780269057 --Infinity,1,a-sust-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +NA,NA,a-sust-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity 1.9444124423963132,1.94,a-sust-i3,2022-23,Bedford - Bedford High,00230505, 3.8, 2.0, 0.0, 1.0, 1.0, 3.0, 2.0, 12.8,841,65.703125 3.7674583481035095,3.77,a-sust-i3,2022-23,Bedford - John Glenn Middle,00230305, 3.0, 3.0, 1.0, 0.0, 3.0, 2.0, 1.0, 13.0,597,45.92307692307692 6.850163303655317,5,a-sust-i3,2022-23,Bedford - Lt Eleazer Davis,00230010, 5.7, 5.9, 6.4, 10.6, 5.6, 6.2, 0.8, 41.2,514,12.475728155339805 @@ -16711,7 +16711,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.5859117840684664,5,a-sust-i3,2022-23,Boston - Blackstone Elementary School,00350390, 1.0, 8.0, 7.0, 5.0, 4.0, 9.0, 1.0, 35.0,537,15.342857142857143 -3.1520737327188937,1,a-sust-i3,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,121,121.0 -1.1059907834101383,1,a-sust-i3,2022-23,Boston - Boston Arts Academy,00350546, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0,494,98.8 --Infinity,1,a-sust-i3,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i3,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity 5.654672026669282,5,a-sust-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 0.0, 7.0, 6.5, 5.0, 3.0, 0.0, 2.0, 23.5,598,25.4468085106383 2.5622119815668203,2.56,a-sust-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 1.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 8.0,472,59.0 -71.40092165898618,1,a-sust-i3,2022-23,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1723,861.5 @@ -16744,7 +16744,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.095893957437995,4.1,a-sust-i3,2022-23,Boston - Fenway High School,00350540, 0.0, 3.0, 3.0, 0.0, 1.9, 1.0, 0.0, 8.9,377,42.359550561797754 6.150957437673527,5,a-sust-i3,2022-23,Boston - Frederick Pilot Middle School,00350383, 4.0, 5.0, 0.0, 3.0, 1.0, 3.0, 0.1, 16.1,323,20.062111801242235 5.458854509545754,5,a-sust-i3,2022-23,Boston - Gardner Pilot Academy,00350326, 1.0, 4.0, 3.0, 0.0, 3.0, 2.0, 1.0, 14.0,386,27.571428571428573 --Infinity,1,a-sust-i3,2022-23,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i3,2022-23,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity 6.276497695852534,5,a-sust-i3,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 4.0, 6.0, 7.0, 1.0, 2.0, 0.0, 20.0,374,18.7 1.4869431643625186,1.49,a-sust-i3,2022-23,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,212,70.66666666666667 5.686635944700461,5,a-sust-i3,2022-23,Boston - Guild Elementary School,00350062, 3.0, 1.0, 1.0, 1.0, 2.0, 2.0, 0.0, 10.0,251,25.1 @@ -16785,7 +16785,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.6826859776168535,5,a-sust-i3,2022-23,Boston - Mozart Elementary School,00350237, 0.0, 1.0, 1.0, 1.0, 2.0, 2.0, 0.0, 7.0,176,25.142857142857142 5.238326478701088,5,a-sust-i3,2022-23,Boston - Murphy K-8 School,00350240, 2.0, 8.0, 3.8, 2.1, 8.0, 3.0, 1.0, 27.9,836,29.964157706093193 -1.4316436251920122,1,a-sust-i3,2022-23,Boston - New Mission High School,00350542, 1.0, 0.0, 2.0, 1.0, 2.0, 0.0, 0.0, 6.0,614,102.33333333333333 --Infinity,1,a-sust-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1567,Infinity +NA,NA,a-sust-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1567,Infinity 1.5253456221198154,1.53,a-sust-i3,2022-23,Boston - O'Donnell Elementary School,00350141, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 0.0, 4.0,281,70.25 4.3854938890002,4.39,a-sust-i3,2022-23,Boston - Ohrenberger School,00350258, 0.0, 0.0, 1.0, 4.5, 3.0, 2.0, 1.0, 11.5,451,39.21739130434783 5.528588496330432,5,a-sust-i3,2022-23,Boston - Orchard Gardens K-8 School,00350257, 1.0, 11.0, 5.0, 3.0, 2.0, 4.0, 1.0, 27.0,724,26.814814814814813 @@ -16866,7 +16866,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.247806503684032,5,a-sust-i3,2022-23,Brockton - Mary E. Baker School,00440002, 5.0, 4.2, 7.0, 9.0, 3.2, 6.0, 1.0, 35.4,673,19.01129943502825 -1.831029185867895,1,a-sust-i3,2022-23,Brockton - North Middle School,00440410, 1.0, 1.0, 0.2, 1.0, 0.0, 0.0, 1.0, 4.2,448,106.66666666666666 5.282812766683734,5,a-sust-i3,2022-23,Brockton - Oscar F Raymond,00440078, 1.0, 5.8, 4.0, 3.0, 6.2, 4.0, 3.0, 27.0,796,29.48148148148148 --Infinity,1,a-sust-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity 5.652649769585254,5,a-sust-i3,2022-23,Brockton - Plouffe Middle School,00440422, 2.5, 6.1, 6.0, 5.0, 4.0, 1.0, 1.0, 25.6,652,25.46875 5.175033403321245,5,a-sust-i3,2022-23,Brockton - South Middle School,00440415, 6.5, 3.2, 3.0, 1.2, 2.0, 1.0, 0.0, 16.9,518,30.6508875739645 3.6860163420206793,3.69,a-sust-i3,2022-23,Brockton - West Middle School,00440420, 2.5, 7.0, 1.4, 0.0, 1.0, 0.0, 0.0, 11.9,557,46.80672268907563 @@ -16933,8 +16933,8 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.6065225097483165,5,a-sust-i3,2022-23,Chelmsford - McCarthy Middle School,00560310, 2.0, 2.0, 7.0, 3.0, 2.0, 8.0, 8.5, 32.5,844,25.96923076923077 6.465006796406192,5,a-sust-i3,2022-23,Chelmsford - South Row,00560015, 4.0, 2.0, 6.0, 2.0, 5.5, 6.0, 2.3, 27.8,463,16.654676258992804 -6.847926267281105,1,a-sust-i3,2022-23,Chelsea - Chelsea High,00570505, 1.0, 1.0, 1.0, 2.0, 3.0, 2.0, 0.0, 10.0,1611,161.1 --Infinity,1,a-sust-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity --Infinity,1,a-sust-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +NA,NA,a-sust-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity 1.8156682027649773,1.82,a-sust-i3,2022-23,Chelsea - Clark Avenue School,00570050, 0.0, 3.0, 1.0, 2.0, 3.0, 1.0, 0.0, 10.0,671,67.1 2.9001536098310288,2.9,a-sust-i3,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 1.0, 2.0, 0.0, 3.0, 1.0, 1.0, 1.0, 9.0,498,55.333333333333336 3.381464413722478,3.38,a-sust-i3,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 1.0, 2.0, 2.0, 1.0, 0.0, 2.0, 1.0, 9.0,451,50.111111111111114 @@ -17025,7 +17025,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.840026333113891,4.84,a-sust-i3,2022-23,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 4.0, 2.0, 0.0, 1.0, 0.0, 7.0,240,34.285714285714285 5.757923445876046,5,a-sust-i3,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 1.0, 2.0, 4.0, 3.0, 8.0, 3.0, 3.5, 24.5,596,24.3265306122449 1.4869431643625186,1.49,a-sust-i3,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 1.0, 1.0, 3.0, 1.0, 3.0, 2.0, 1.0, 12.0,848,70.66666666666667 --Infinity,1,a-sust-i3,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, 0.0,278,Infinity +NA,NA,a-sust-i3,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, 0.0,278,Infinity 6.264809618206627,5,a-sust-i3,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 2.5, 1.0, 4.8, 5.6, 4.0, 0.0, 17.9,337,18.8268156424581 4.589861751152074,4.59,a-sust-i3,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 2.0, 3.0, 2.0, 4.0, 2.0, 3.0, 0.0, 16.0,592,37.0 4.048387096774193,4.05,a-sust-i3,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 1.0, 0.0, 5.0, 2.0, 0.0, 0.0, 8.0,343,42.875 @@ -17062,7 +17062,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -74.67281105990784,1,a-sust-i3,2022-23,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,897,897.0 -1.4009216589861755,1,a-sust-i3,2022-23,Everett - Lafayette School,00930038, 0.0, 0.0, 2.0, 1.0, 3.0, 0.0, 4.0, 10.0,1020,102.0 -9.580645161290322,1,a-sust-i3,2022-23,Everett - Madeline English School,00930018, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0, 4.0,763,190.75 --Infinity,1,a-sust-i3,2022-23,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014,Infinity +NA,NA,a-sust-i3,2022-23,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014,Infinity -50.06451612903226,1,a-sust-i3,2022-23,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,630,630.0 5.342549923195085,5,a-sust-i3,2022-23,Everett - Webster Extension,00930001, 1.0, 0.0, 0.0, 1.0, 2.0, 1.0, 1.0, 6.0,173,28.833333333333332 5.667493796526054,5,a-sust-i3,2022-23,Everett - Webster School,00930015, 0.0, 0.0, 3.0, 1.0, 4.0, 3.0, 2.0, 13.0,329,25.307692307692307 @@ -17111,7 +17111,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.777649769585253,3.78,a-sust-i3,2022-23,Foxborough - John J Ahern,00990405, 1.0, 2.0, 1.0, 4.0, 0.0, 5.0, 3.0, 16.0,733,45.8125 5.5447004608294925,5,a-sust-i3,2022-23,Foxborough - Mabelle M Burrell,00990015, 2.0, 3.0, 1.0, 1.5, 2.5, 2.5, 0.0, 12.5,333,26.64 5.528278173439464,5,a-sust-i3,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 1.0, 1.0, 1.0, 5.5, 1.7, 3.0, 0.0, 13.2,354,26.81818181818182 --Infinity,1,a-sust-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"", ,Failed to meet data,reporting requirements,"","","","",1569,Infinity +NA,NA,a-sust-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"", ,Failed to meet data,reporting requirements,"","","","",1569,Infinity 1.7110328002168609,1.71,a-sust-i3,2022-23,Framingham - Barbieri Elementary,01000035, 0.0, 1.0, 1.2, 1.0, 5.0, 2.0, 0.0, 10.2,696,68.23529411764706 4.027894457811671,4.03,a-sust-i3,2022-23,Framingham - Brophy,01000006, 1.0, 1.0, 1.0, 2.3, 3.0, 3.0, 0.0, 11.3,487,43.097345132743364 2.336917562724014,2.34,a-sust-i3,2022-23,Framingham - Cameron Middle School,01000302, 0.0, 1.0, 2.0, 2.0, 1.0, 0.0, 3.0, 9.0,553,61.44444444444444 @@ -17126,7 +17126,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.214766800020256,5,a-sust-i3,2022-23,Framingham - Miriam F McCarthy School,01000050, 1.0, 1.0, 2.2, 3.0, 3.0, 4.0, 4.0, 18.2,550,30.219780219780223 -1.9723502304147478,1,a-sust-i3,2022-23,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 1.0, 3.0, 1.0, 0.0, 5.0,541,108.2 -4.119815668202765,1,a-sust-i3,2022-23,Framingham - Walsh Middle,01000310, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 2.0, 6.0,789,131.5 --Infinity,1,a-sust-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity 4.914867814698035,4.91,a-sust-i3,2022-23,Franklin - Annie Sullivan Middle School,01010040, 4.0, 1.0, 0.0, 1.0, 1.0, 1.5, 1.0, 9.5,318,33.473684210526315 7.277225321367935,5,a-sust-i3,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 1.0, 1.0, 3.6, 4.8, 4.6, 4.0, 0.0, 19.0,149,7.842105263157895 -0.3461341525857659,1,a-sust-i3,2022-23,Franklin - Franklin High,01010505, 1.0, 3.0, 1.0, 1.0, 5.0, 7.0, 0.0, 18.0,1630,90.55555555555556 @@ -17144,7 +17144,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.111751152073732,4.11,a-sust-i3,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 2.0, 2.0, 2.0, 8.0, 2.0, 0.0, 16.0,675,42.1875 2.78110599078341,2.78,a-sust-i3,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 6.0, 1.0, 0.0, 8.0,453,56.625 5.765898617511521,5,a-sust-i3,2022-23,Frontier - Frontier Regional,06700505, 2.0, 8.0, 2.0, 8.0, 3.0, 1.0, 1.0, 25.0,606,24.24 --Infinity,1,a-sust-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +NA,NA,a-sust-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity 6.211110707935701,5,a-sust-i3,2022-23,Gardner - Gardner Elementary School,01030001, 6.0, 10.2, 4.0, 10.0, 12.6, 6.0, 2.0, 50.8,986,19.40944881889764 -1.2626728110599081,1,a-sust-i3,2022-23,Gardner - Gardner High,01030505, 2.0, 4.0, 0.0, 1.0, 1.0, 0.0, 0.0, 8.0,804,100.5 4.686093792355652,4.69,a-sust-i3,2022-23,Gardner - Gardner Middle School,01030405, 5.0, 3.0, 4.0, 0.0, 0.0, 1.0, 0.6, 13.6,489,35.955882352941174 @@ -17153,7 +17153,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.488813197088092,5,a-sust-i3,2022-23,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.5, 0.5, 1.0, 3.9, 1.0, 6.9,188,27.246376811594203 5.244239631336406,5,a-sust-i3,2022-23,Gateway - Littleville Elementary School,06720143, 1.0, 1.0, 2.8, 0.0, 1.0, 2.2, 2.0, 10.0,299,29.9 -19.557603686635943,1,a-sust-i3,2022-23,Georgetown - Georgetown High School,01050505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 --Infinity,1,a-sust-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity +NA,NA,a-sust-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186,Infinity -1.5283274600162655,1,a-sust-i3,2022-23,Georgetown - Penn Brook,01050010, 1.0, 0.0, 2.0, 1.0, 1.8, 0.0, 1.0, 6.8,703,103.38235294117648 4.221198156682028,4.22,a-sust-i3,2022-23,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,82,41.0 6.387096774193548,5,a-sust-i3,2022-23,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 2.0, 2.0, 0.0, 2.0, 0.0, 6.0,105,17.5 @@ -17170,7 +17170,7 @@ NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.178187403993856,4.18,a-sust-i3,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 2.0, 4.0, 4.0, 3.0, 2.0, 15.0,622,41.46666666666667 5.511520737327189,5,a-sust-i3,2022-23,Gloucester - Veterans Memorial,01070045, 1.0, 1.0, 1.0, 2.0, 2.0, 0.0, 1.0, 8.0,216,27.0 6.276497695852534,5,a-sust-i3,2022-23,Gloucester - West Parish,01070050, 2.0, 1.0, 3.0, 6.0, 4.0, 2.0, 2.0, 20.0,374,18.7 -NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN 3.519713261648745,3.52,a-sust-i3,2022-23,Grafton - Grafton High School,01100505, 3.0, 4.0, 2.0, 1.0, 4.0, 3.0, 1.0, 18.0,875,48.611111111111114 5.31694828469022,5,a-sust-i3,2022-23,Grafton - Grafton Middle,01100305, 1.0, 6.0, 3.0, 1.0, 5.0, 2.0, 0.0, 18.0,524,29.11111111111111 6.121961997348651,5,a-sust-i3,2022-23,Grafton - Millbury Street Elementary School,01100200, 1.0, 3.0, 9.0, 4.2, 6.0, 5.0, 1.0, 29.2,595,20.376712328767123 @@ -17358,7 +17358,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.1749818483559797,1.17,a-sust-i3,2022-23,Lexington - Lexington High,01550505, 5.6, 5.5, 2.3, 1.7, 4.6, 7.0, 4.4, 31.1,2303,74.05144694533762 5.362908738120962,5,a-sust-i3,2022-23,Lexington - Maria Hastings,01550035, 0.8, 5.0, 3.8, 5.4, 2.9, 3.0, 0.0, 20.9,598,28.612440191387563 4.964325996584061,4.96,a-sust-i3,2022-23,Lexington - Wm Diamond Middle,01550310, 7.7, 6.5, 1.0, 2.2, 4.8, 3.6, 2.7, 28.6,942,32.93706293706293 --Infinity,1,a-sust-i3,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.0, 0.0,411,Infinity +NA,NA,a-sust-i3,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.0, 0.0,411,Infinity 5.826825127334465,5,a-sust-i3,2022-23,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 3.8, 2.8, 1.9, 0.9, 0.0, 9.5,224,23.57894736842105 6.946045465570084,5,a-sust-i3,2022-23,Lincoln - Hanscom Primary,01570006, 3.6, 1.3, 6.1, 5.4, 1.9, 2.7, 0.0, 20.9,239,11.435406698564593 5.700080328076777,5,a-sust-i3,2022-23,Lincoln - Lincoln School,01570025, 1.9, 2.4, 3.0, 6.0, 2.9, 3.7, 2.1, 21.8,544,24.954128440366972 @@ -17401,7 +17401,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -8.221198156682027,1,a-sust-i3,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,88,176.0 6.875576036866359,5,a-sust-i3,2022-23,Lowell - Washington,01600055, 0.0, 4.0, 3.0, 3.0, 4.0, 5.5, 0.5, 20.0,244,12.2 3.837173579109063,3.84,a-sust-i3,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 1.0, 8.0, 2.0, 3.0, 2.0, 2.0, 0.0, 18.0,813,45.166666666666664 --Infinity,1,a-sust-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity 7.318401028828635,5,a-sust-i3,2022-23,Ludlow - East Street Elementary School,01610010, 7.0, 6.0, 8.0, 8.0, 7.0, 6.0, 1.0, 43.0,318,7.395348837209302 5.04147465437788,5,a-sust-i3,2022-23,Ludlow - Harris Brook Elementary School,01610665, 4.0, 1.0, 1.0, 4.0, 4.0, 6.0, 0.0, 20.0,642,32.1 1.8940092165898617,1.89,a-sust-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 2.0, 1.0, 0.0, 2.0, 2.0, 5.0, 0.0, 12.0,795,66.25 @@ -17421,7 +17421,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.6013824884792625,4.6,a-sust-i3,2022-23,Lynn - E J Harrington,01630045, 2.0, 1.0, 3.0, 4.0, 3.0, 3.0, 0.0, 16.0,590,36.875 4.202764976958525,4.2,a-sust-i3,2022-23,Lynn - Edward A Sisson,01630095, 1.0, 0.0, 2.0, 1.0, 1.0, 2.0, 3.0, 10.0,412,41.2 7.201228878648233,5,a-sust-i3,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 2.0, 2.0, 4.0, 0.0, 1.0, 9.0,78,8.666666666666666 --Infinity,1,a-sust-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity 5.22273425499232,5,a-sust-i3,2022-23,Lynn - Hood,01630055, 4.0, 0.0, 6.0, 0.0, 3.0, 1.0, 1.0, 15.0,452,30.133333333333333 2.386258902387935,2.39,a-sust-i3,2022-23,Lynn - Ingalls,01630060, 2.0, 0.0, 1.0, 1.0, 0.0, 5.0, 2.0, 11.0,670,60.90909090909091 6.0666348853223155,5,a-sust-i3,2022-23,Lynn - Julia F Callahan,01630030, 2.0, 2.4, 2.0, 0.0, 7.0, 3.0, 1.0, 17.4,365,20.977011494252874 @@ -17443,7 +17443,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.714285714285714,4.71,a-sust-i3,2022-23,Lynnfield - Lynnfield Middle School,01640405, 4.0, 2.0, 1.0, 4.0, 3.0, 4.0, 2.0, 20.0,713,35.65 7.400921658986175,5,a-sust-i3,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 0.0, 6.0,39,6.5 1.5330261136712744,1.53,a-sust-i3,2022-23,Lynnfield - Summer Street,01640020, 2.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 6.0,421,70.16666666666667 --Infinity,1,a-sust-i3,2022-23,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, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i3,2022-23,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, 0.0, 0.0,100,Infinity 1.753987947536334,1.75,a-sust-i3,2022-23,Malden - Beebe,01650003, 1.0, 1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 13.0,881,67.76923076923077 2.1145490454246216,2.11,a-sust-i3,2022-23,Malden - Ferryway,01650013, 2.0, 2.0, 2.0, 0.0, 3.0, 2.0, 3.0, 14.0,894,63.857142857142854 5.619715487878181,5,a-sust-i3,2022-23,Malden - Forestdale,01650027, 2.0, 3.0, 6.0, 4.0, 2.0, 2.0, 4.0, 23.0,594,25.82608695652174 @@ -17539,9 +17539,9 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.841088152222388,4.84,a-sust-i3,2022-23,Middleton - Howe-Manning,01840005, 0.7, 2.9, 1.4, 2.4, 2.0, 1.0, 2.0, 12.4,425,34.274193548387096 2.986175115207373,2.99,a-sust-i3,2022-23,Milford - Brookside,01850065, 0.0, 1.0, 0.0, 2.0, 3.0, 4.0, 0.0, 10.0,544,54.4 0.7496159754224263,1,a-sust-i3,2022-23,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 1.0, 2.0, 2.0, 1.0, 6.0,472,78.66666666666667 --Infinity,1,a-sust-i3,2022-23,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1324,Infinity --Infinity,1,a-sust-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i3,2022-23,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1030,Infinity +NA,NA,a-sust-i3,2022-23,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1324,Infinity +NA,NA,a-sust-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i3,2022-23,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1030,Infinity -20.970814132104454,1,a-sust-i3,2022-23,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,943,314.3333333333333 6.107227155220861,5,a-sust-i3,2022-23,Millbury - Elmwood Street,01860017, 0.0, 4.4, 1.5, 6.8, 3.8, 4.0, 0.0, 20.5,421,20.536585365853657 3.057770653843585,3.06,a-sust-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 0.0, 3.8, 1.0, 2.0, 2.0, 3.0, 2.0, 13.8,740,53.6231884057971 @@ -17630,9 +17630,9 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.24020737327189,5,a-sust-i3,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 8.0, 5.0, 4.0, 6.0, 2.0, 6.0, 1.0, 32.0,611,19.09375 4.129032258064516,4.13,a-sust-i3,2022-23,New Bedford - Thomas R Rodman,02010125, 2.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 5.0,210,42.0 6.087557603686636,5,a-sust-i3,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0,83,20.75 --Infinity,1,a-sust-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +NA,NA,a-sust-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity 6.125960061443933,5,a-sust-i3,2022-23,New Bedford - William H Taylor,02010135, 1.0, 2.0, 1.0, 2.0, 3.0, 1.0, 2.0, 12.0,244,20.333333333333332 --Infinity,1,a-sust-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity +NA,NA,a-sust-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity 7.137590520079001,5,a-sust-i3,2022-23,New Salem-Wendell - Swift River,07280015, 4.0, 0.0, 4.0, 4.0, 1.0, 1.0, 0.0, 14.0,131,9.357142857142858 5.142857142857142,5,a-sust-i3,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 4.0, 0.0, 0.0, 0.0, 2.0, 2.0, 1.0, 9.0,279,31.0 6.166249421969926,5,a-sust-i3,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 3.0, 1.0, 2.8, 2.0, 12.9, 6.3, 1.0, 28.9,575,19.896193771626297 @@ -17747,13 +17747,13 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.159754224270353,5,a-sust-i3,2022-23,Palmer - Old Mill Pond,02270008, 2.0, 3.0, 7.0, 6.0, 2.0, 6.0, 4.0, 30.0,599,19.966666666666665 5.534562211981567,5,a-sust-i3,2022-23,Palmer - Palmer High,02270505, 2.0, 1.0, 4.0, 2.0, 7.0, 3.0, 1.0, 20.0,535,26.75 1.4459805427547359,1.45,a-sust-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 2.0, 2.0, 3.0, 1.0, 0.0, 1.0, 9.0,640,71.11111111111111 --Infinity,1,a-sust-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"", ,Failed to meet data,reporting requirements,"","","","",261,Infinity +NA,NA,a-sust-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"", ,Failed to meet data,reporting requirements,"","","","",261,Infinity 6.762343647136274,5,a-sust-i3,2022-23,Peabody - Captain Samuel Brown,02290005, 1.5, 0.0, 4.0, 3.0, 9.5, 8.5, 1.5, 28.0,376,13.428571428571429 1.6760014179369018,1.68,a-sust-i3,2022-23,Peabody - Center,02290015, 0.5, 0.0, 1.0, 0.5, 2.5, 2.0, 0.0, 6.5,446,68.61538461538461 4.1829138603332146,4.18,a-sust-i3,2022-23,Peabody - J Henry Higgins Middle,02290305, 2.0, 3.0, 4.0, 6.5, 9.0, 3.5, 4.5, 32.5,1346,41.41538461538462 4.903225806451613,4.9,a-sust-i3,2022-23,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 2.5, 1.5, 2.5, 1.0, 7.5,252,33.6 6.209650934901212,5,a-sust-i3,2022-23,Peabody - John E. McCarthy,02290016, 0.0, 1.0, 2.0, 3.4, 7.0, 2.0, 2.0, 17.4,338,19.425287356321842 --Infinity,1,a-sust-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity 2.2357260017183473,2.24,a-sust-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 2.0, 0.0, 2.5, 2.1, 7.0, 7.5, 2.5, 23.6,1476,62.54237288135593 2.1996927803379416,2.2,a-sust-i3,2022-23,Peabody - South Memorial,02290035, 0.5, 0.0, 2.0, 2.0, 1.5, 1.5, 0.0, 7.5,472,62.93333333333333 3.090071219103477,3.09,a-sust-i3,2022-23,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 1.0, 5.0, 4.0, 1.0, 0.0, 11.0,586,53.27272727272727 @@ -17772,9 +17772,9 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.2488479262672814,1,a-sust-i3,2022-23,Pentucket - Pentucket Regional Middle,07450405, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 4.0,358,89.5 1.6662737112849633,1.67,a-sust-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 3.6, 0.0, 0.0, 1.0, 2.0, 1.0, 1.0, 8.6,591,68.72093023255815 6.213399503722084,5,a-sust-i3,2022-23,Petersham - Petersham Center,02340005, 0.0, 3.0, 1.0, 1.0, 0.5, 0.0, 1.0, 6.5,126,19.384615384615383 --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0,125,Infinity --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0,166,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0,125,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0,166,Infinity -64.16589861751153,1,a-sust-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,783,783.0 -24.75434243176179,1,a-sust-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.8, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.3,462,355.38461538461536 6.824884792626728,5,a-sust-i3,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 2.0, 2.0, 1.0, 3.0, 2.0, 4.0, 2.0, 16.0,204,12.75 @@ -17824,7 +17824,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.175491394714568,5,a-sust-i3,2022-23,Quabbin - Ruggles Lane,07530030, 3.0, 2.0, 6.9, 2.0, 0.0, 5.7, 0.0, 19.6,388,19.79591836734694 7.133640552995392,5,a-sust-i3,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,47,9.4 3.339038841342989,3.34,a-sust-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 1.0, 1.0, 1.0, 0.0, 2.0, 2.0, 0.0, 7.0,354,50.57142857142857 --Infinity,1,a-sust-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity 6.502888956466819,5,a-sust-i3,2022-23,Quaboag Regional - Warren Elementary,07780005, 3.0, 3.0, 7.7, 3.0, 1.0, 2.0, 0.0, 19.7,320,16.243654822335024 6.177951081176887,5,a-sust-i3,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 3.0, 4.0, 1.0, 3.0, 2.0, 0.0, 13.0,257,19.76923076923077 7.23963133640553,5,a-sust-i3,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 1.0, 3.0, 1.0, 3.0, 7.0, 3.0, 2.0, 20.0,165,8.25 @@ -17865,9 +17865,9 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.0640040962621606,3.06,a-sust-i3,2022-23,Revere - A. C. Whelan Elementary School,02480003, 1.5, 2.5, 2.0, 2.5, 2.0, 1.5, 1.5, 13.5,723,53.55555555555556 2.1595925297113747,2.16,a-sust-i3,2022-23,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 2.0, 1.0, 0.5, 4.0, 2.0, 9.5,602,63.36842105263158 5.307152875175316,5,a-sust-i3,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 1.5, 1.5, 1.5, 2.0, 3.0, 1.0, 1.0, 11.5,336,29.217391304347824 --Infinity,1,a-sust-i3,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i3,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity 3.926861899806749,3.93,a-sust-i3,2022-23,Revere - Garfield Elementary School,02480056, 0.5, 2.0, 3.0, 3.5, 1.5, 4.5, 0.5, 15.5,685,44.193548387096776 --Infinity,1,a-sust-i3,2022-23,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +NA,NA,a-sust-i3,2022-23,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity -4.007899934167214,1,a-sust-i3,2022-23,Revere - Paul Revere,02480050, 1.5, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.5,456,130.28571428571428 -11.2073732718894,1,a-sust-i3,2022-23,Revere - Revere High,02480505, 3.0, 0.0, 1.5, 1.5, 1.5, 2.0, 0.5, 10.0,2084,208.4 1.019969278033794,1.02,a-sust-i3,2022-23,Revere - Rumney Marsh Academy,02480014, 1.0, 1.0, 0.5, 2.0, 2.0, 0.5, 0.5, 7.5,568,75.73333333333333 @@ -17917,11 +17917,11 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.1981566820276495,5,a-sust-i3,2022-23,Seekonk - George R Martin,02650007, 0.0, 0.0, 4.0, 3.0, 4.0, 4.0, 0.0, 15.0,456,30.4 5.19136551055057,5,a-sust-i3,2022-23,Seekonk - Mildred Aitken School,02650015, 2.0, 1.0, 2.0, 6.0, 2.0, 4.0, 2.0, 19.0,579,30.473684210526315 0.9822251481237658,1,a-sust-i3,2022-23,Seekonk - Seekonk High,02650505, 0.0, 3.0, 1.0, 1.0, 1.0, 1.0, 0.0, 7.0,533,76.14285714285714 --Infinity,1,a-sust-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity --Infinity,1,a-sust-i3,2022-23,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity --Infinity,1,a-sust-i3,2022-23,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +NA,NA,a-sust-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity +NA,NA,a-sust-i3,2022-23,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +NA,NA,a-sust-i3,2022-23,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity -9.48079877112135,1,a-sust-i3,2022-23,Sharon - Heights Elementary,02660015, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,569,189.66666666666666 --Infinity,1,a-sust-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity 3.2115626309174696,3.21,a-sust-i3,2022-23,Sharon - Sharon High,02660505, 2.0, 2.0, 0.0, 2.0, 7.0, 6.0, 3.0, 22.0,1143,51.95454545454545 3.6733230926779314,3.67,a-sust-i3,2022-23,Sharon - Sharon Middle,02660305, 3.0, 2.0, 1.0, 6.0, 2.0, 3.0, 1.0, 18.0,845,46.94444444444444 -1.9231950844854084,1,a-sust-i3,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 2.0, 4.0, 0.0, 1.0, 2.0, 3.0, 0.0, 12.0,1292,107.66666666666667 @@ -17949,7 +17949,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.7235023041474657,1,a-sust-i3,2022-23,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,211,105.5 7.201978194897157,5,a-sust-i3,2022-23,Somerville - Capuano Early Childhood Center,02740005, 3.0, 3.0, 3.0, 1.8, 6.8, 4.0, 3.0, 24.6,213,8.658536585365853 -3.1981566820276495,1,a-sust-i3,2022-23,Somerville - E Somerville Community,02740111, 0.0, 2.0, 0.0, 0.0, 2.0, 2.0, 0.0, 6.0,729,121.5 --Infinity,1,a-sust-i3,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i3,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity 3.4941116231438816,3.49,a-sust-i3,2022-23,Somerville - John F Kennedy,02740083, 0.0, 1.0, 1.0, 1.0, 1.0, 4.0, 1.0, 9.0,440,48.888888888888886 6.617511520737327,5,a-sust-i3,2022-23,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,15,15.0 -3.609358383551931,1,a-sust-i3,2022-23,Somerville - Somerville High,02740505, 2.0, 4.0, 0.0, 2.0, 2.0, 0.4, 0.0, 10.4,1310,125.96153846153845 @@ -17997,12 +17997,12 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.214395435593591,5,a-sust-i3,2022-23,Springfield - Early Childhood Education Center,02810001, 1.0, 8.0, 3.0, 2.0, 4.0, 1.0, 2.0, 21.0,179,8.523809523809524 6.761380240530516,5,a-sust-i3,2022-23,Springfield - Edward P. Boland School,02810010, 13.0, 9.0, 7.0, 4.0, 4.0, 2.0, 2.0, 41.0,551,13.439024390243903 6.341013824884793,5,a-sust-i3,2022-23,Springfield - Elias Brookings,02810030, 1.0, 1.0, 2.0, 2.0, 4.0, 3.0, 2.0, 15.0,270,18.0 --Infinity,1,a-sust-i3,2022-23,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i3,2022-23,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity 4.395289298515104,4.4,a-sust-i3,2022-23,Springfield - Forest Park Middle,02810325, 0.0, 3.0, 1.0, 0.0, 3.0, 1.0, 1.0, 9.0,352,39.111111111111114 5.679095098449936,5,a-sust-i3,2022-23,Springfield - Frank H Freedman,02810075, 2.0, 1.0, 0.0, 3.0, 3.0, 1.0, 1.0, 11.0,277,25.181818181818183 5.5659824046920825,5,a-sust-i3,2022-23,Springfield - Frederick Harris,02810080, 1.0, 5.0, 6.0, 4.0, 5.0, 1.0, 0.0, 22.0,581,26.40909090909091 --Infinity,1,a-sust-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +NA,NA,a-sust-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity 6.354978354978355,5,a-sust-i3,2022-23,Springfield - German Gerena Community School,02810195, 4.0, 11.0, 3.0, 4.0, 6.0, 5.0, 0.0, 33.0,589,17.848484848484848 5.788018433179723,5,a-sust-i3,2022-23,Springfield - Glenwood,02810065, 2.0, 0.0, 3.0, 3.0, 3.0, 1.0, 0.0, 12.0,288,24.0 6.082949308755761,5,a-sust-i3,2022-23,Springfield - Glickman Elementary,02810068, 1.0, 6.0, 2.0, 2.0, 3.0, 1.0, 0.0, 15.0,312,20.8 @@ -18017,7 +18017,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.8525345622119813,3.85,a-sust-i3,2022-23,Springfield - Kiley Academy,02810316, 0.0, 2.0, 1.0, 1.0, 0.0, 2.0, 1.0, 7.0,315,45.0 -0.17204301075268888,1,a-sust-i3,2022-23,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0,266,88.66666666666667 4.695194206714945,4.7,a-sust-i3,2022-23,Springfield - Liberty,02810115, 0.0, 0.0, 3.0, 0.0, 3.0, 1.0, 0.0, 7.0,251,35.857142857142854 --Infinity,1,a-sust-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity +NA,NA,a-sust-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity 5.419354838709677,5,a-sust-i3,2022-23,Springfield - Lincoln,02810120, 3.0, 7.0, 2.0, 0.0, 4.0, 0.0, 0.0, 16.0,448,28.0 7.2626728110599075,5,a-sust-i3,2022-23,Springfield - Margaret C Ells,02810060, 3.0, 4.0, 3.0, 3.0, 3.0, 3.0, 1.0, 20.0,160,8.0 4.566820276497696,4.57,a-sust-i3,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 1.0, 1.0, 1.0, 4.0, 0.0, 0.0, 1.0, 8.0,298,37.25 @@ -18034,9 +18034,9 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.6116464180980308,3.61,a-sust-i3,2022-23,Springfield - Springfield Central High,02810500, 11.0, 7.0, 6.0, 6.0, 3.0, 7.0, 4.0, 44.0,2095,47.61363636363637 1.763440860215053,1.76,a-sust-i3,2022-23,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,203,67.66666666666667 5.292315356831486,5,a-sust-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 3.0, 6.0, 4.0, 7.0, 4.0, 9.0, 4.0, 37.0,1087,29.37837837837838 --Infinity,1,a-sust-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity --Infinity,1,a-sust-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity --Infinity,1,a-sust-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +NA,NA,a-sust-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity 6.15668202764977,5,a-sust-i3,2022-23,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,20,20.0 7.508448540706605,5,a-sust-i3,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 2.0, 2.0, 1.0, 0.0, 1.0, 0.0, 0.0, 6.0,32,5.333333333333333 7.196840026333114,5,a-sust-i3,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 1.0, 2.0, 0.0, 2.0, 2.0, 0.0, 7.0,61,8.714285714285714 @@ -18068,7 +18068,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.134534699773024,4.13,a-sust-i3,2022-23,Stoughton - South Elementary,02850015, 1.5, 0.0, 2.1, 1.1, 0.3, 1.8, 0.0, 6.7,281,41.940298507462686 0.7283816752507445,1,a-sust-i3,2022-23,Stoughton - Stoughton High,02850505, 1.3, 0.9, 0.9, 1.3, 4.4, 4.0, 0.9, 13.6,1073,78.89705882352942 6.120244346800987,5,a-sust-i3,2022-23,Sturbridge - Burgess Elementary,02870005, 6.0, 2.0, 3.0, 7.0, 12.0, 9.0, 4.0, 43.0,877,20.3953488372093 --Infinity,1,a-sust-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity +NA,NA,a-sust-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,830,Infinity 2.4042132982225146,2.4,a-sust-i3,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 6.0, 3.0, 2.0, 0.0, 2.0, 1.0, 14.0,850,60.714285714285715 -6.976958525345621,1,a-sust-i3,2022-23,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.5, 2.0,325,162.5 3.9936048151979686,3.99,a-sust-i3,2022-23,Sudbury - Israel Loring School,02880015, 1.0, 1.0, 0.0, 1.8, 3.0, 1.0, 2.0, 9.8,426,43.46938775510204 @@ -18090,10 +18090,10 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.1797235023041472,1,a-sust-i3,2022-23,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 2.0, 1.0, 1.0, 1.0, 0.0, 5.0,498,99.6 5.656352863726135,5,a-sust-i3,2022-23,Swansea - Joseph G Luther,02920020, 4.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 7.0,178,25.428571428571427 4.436251920122888,4.44,a-sust-i3,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 1.0, 2.0, 2.0, 1.0, 0.0, 6.0,232,38.666666666666664 --Infinity,1,a-sust-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2940,Infinity +NA,NA,a-sust-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2940,Infinity 3.9373271889400923,3.94,a-sust-i3,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 1.0, 3.0, 0.5, 2.0, 3.0, 1.0, 2.0, 12.5,551,44.08 5.40015360983103,5,a-sust-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 1.5, 4.5, 3.5, 3.0, 3.5, 5.0, 3.0, 24.0,677,28.208333333333332 --Infinity,1,a-sust-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity 3.1942067149440416,3.19,a-sust-i3,2022-23,Taunton - Benjamin Friedman Middle,02930315, 1.0, 1.0, 3.0, 1.0, 0.0, 5.0, 3.0, 14.0,730,52.142857142857146 3.53414327607876,3.53,a-sust-i3,2022-23,Taunton - East Taunton Elementary,02930010, 1.0, 1.0, 0.0, 1.0, 3.0, 5.0, 0.0, 11.0,533,48.45454545454545 -5.1336405529953915,1,a-sust-i3,2022-23,Taunton - Edmund Hatch Bennett,02930007, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,285,142.5 @@ -18104,7 +18104,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.3824884792626726,1,a-sust-i3,2022-23,Taunton - John F Parker Middle,02930305, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 4.0,494,123.5 4.52073732718894,4.52,a-sust-i3,2022-23,Taunton - Joseph C Chamberlain,02930008, 0.0, 2.0, 1.0, 1.0, 3.0, 3.0, 2.0, 12.0,453,37.75 1.425499231950845,1.43,a-sust-i3,2022-23,Taunton - Joseph H Martin,02930042, 1.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 9.0,642,71.33333333333333 --Infinity,1,a-sust-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity +NA,NA,a-sust-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity -11.5675292449486,1,a-sust-i3,2022-23,Taunton - Taunton High,02930505, 0.0, 1.0, 1.0, 1.0, 1.0, 9.0, 0.0, 13.0,2760,212.30769230769232 5.218265605362379,5,a-sust-i3,2022-23,Tewksbury - Heath-Brook,02950010, 1.0, 2.0, 1.0, 2.0, 1.0, 4.0, 0.0, 11.0,332,30.181818181818183 5.38863287250384,5,a-sust-i3,2022-23,Tewksbury - John F. Ryan,02950023, 4.0, 3.0, 2.0, 1.0, 3.0, 4.0, 1.0, 18.0,510,28.333333333333332 @@ -18122,7 +18122,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.625173164456758,5,a-sust-i3,2022-23,Triton - Salisbury Elementary,07730015, 1.0, 2.0, 2.0, 3.0, 2.0, 3.5, 2.8, 16.3,420,25.766871165644172 4.95758487726888,4.96,a-sust-i3,2022-23,Triton - Triton Regional High School,07730505, 1.0, 1.0, 0.0, 4.0, 4.9, 4.0, 4.8, 19.6,647,33.01020408163265 5.050691244239632,5,a-sust-i3,2022-23,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 1.0, 1.0, 1.0, 5.0, 2.0, 10.0,320,32.0 --Infinity,1,a-sust-i3,2022-23,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity +NA,NA,a-sust-i3,2022-23,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99,Infinity 5.2052921064367474,5,a-sust-i3,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 2.6, 3.0, 1.0, 5.0, 8.2, 5.0, 0.0, 24.8,752,30.32258064516129 -1.5391705069124426,1,a-sust-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 4.0,414,103.5 4.11933058452583,4.12,a-sust-i3,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 2.0, 0.0, 0.0, 0.5, 1.0, 6.0, 0.0, 9.5,400,42.10526315789474 @@ -18131,7 +18131,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.256320836965998,5,a-sust-i3,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 1.1, 0.1, 0.1, 1.3, 1.1, 0.0, 0.0, 3.7,70,18.91891891891892 6.527068349196778,5,a-sust-i3,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 4.7, 3.6, 4.9, 4.1, 1.3, 1.2, 1.5, 21.4,342,15.981308411214954 1.556765814830331,1.56,a-sust-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 3.0, 1.0, 0.0, 1.0, 2.0, 0.0, 4.0, 11.0,769,69.9090909090909 --Infinity,1,a-sust-i3,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i3,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity 6.409985656300545,5,a-sust-i3,2022-23,Uxbridge - Taft Early Learning Center,03040005, 3.0, 0.0, 7.5, 8.1, 9.5, 2.0, 0.0, 30.2,521,17.251655629139073 5.1380063060878,5,a-sust-i3,2022-23,Uxbridge - Uxbridge High,03040505, 2.0, 2.0, 2.0, 2.0, 3.0, 5.0, 3.0, 19.0,590,31.05263157894737 4.490606168025522,4.49,a-sust-i3,2022-23,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 2.0, 5.0, 3.0, 3.0, 0.0, 13.0,495,38.07692307692308 @@ -18178,7 +18178,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.920781215712092,5,a-sust-i3,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 4.2, 0.8, 2.0, 3.8, 1.0, 5.0, 0.0, 16.8,379,22.55952380952381 5.137096774193548,5,a-sust-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 1.0, 1.0, 0.0, 1.0, 5.0, 6.0, 2.0, 16.0,497,31.0625 4.19047619047619,4.19,a-sust-i3,2022-23,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 2.0, 1.0, 2.0, 1.0, 6.0,248,41.333333333333336 --Infinity,1,a-sust-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity 5.3613563604519285,5,a-sust-i3,2022-23,Wareham - Wareham Elementary School,03100017, 2.0, 1.6, 5.0, 4.5, 8.0, 7.0, 4.0, 32.1,919,28.629283489096572 4.643625192012289,4.64,a-sust-i3,2022-23,Wareham - Wareham Middle,03100305, 1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 1.0, 12.0,437,36.416666666666664 4.127795131908576,4.13,a-sust-i3,2022-23,Wareham - Wareham Senior High,03100505, 1.0, 1.0, 3.4, 0.0, 2.5, 5.0, 2.0, 14.9,626,42.013422818791945 @@ -18239,7 +18239,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.080113434952145,2.08,a-sust-i3,2022-23,Westfield - Westfield Intermediate School,03250075, 0.0, 1.0, 1.4, 2.0, 0.0, 4.0, 2.0, 10.4,668,64.23076923076923 2.8639809722015754,2.86,a-sust-i3,2022-23,Westfield - Westfield Middle School,03250310, 0.0, 2.0, 3.0, 0.0, 0.4, 6.0, 1.0, 12.4,691,55.725806451612904 3.8294930875576036,3.83,a-sust-i3,2022-23,Westfield - Westfield Technical Academy,03250605, 0.0, 1.0, 2.0, 5.0, 2.0, 2.0, 0.0, 12.0,543,45.25 --Infinity,1,a-sust-i3,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i3,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity 4.313364055299539,4.31,a-sust-i3,2022-23,Westford - Abbot Elementary,03260004, 1.0, 1.0, 3.0, 0.0, 2.0, 2.0, 0.0, 9.0,360,40.0 0.8505595786701777,1,a-sust-i3,2022-23,Westford - Blanchard Middle,03260310, 0.0, 1.0, 0.0, 3.0, 1.0, 2.0, 0.0, 7.0,543,77.57142857142857 6.052995391705069,5,a-sust-i3,2022-23,Westford - Col John Robinson,03260025, 1.0, 1.0, 2.0, 3.0, 4.0, 3.0, 2.0, 16.0,338,21.125 @@ -18295,7 +18295,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.7130289065772932,2.71,a-sust-i3,2022-23,Wilmington - Wilmington Middle School,03420330, 3.0, 2.0, 0.0, 0.0, 3.0, 3.0, 0.0, 11.0,631,57.36363636363637 2.23963133640553,2.24,a-sust-i3,2022-23,Wilmington - Woburn Street,03420020, 0.0, 1.0, 2.0, 0.0, 2.8, 1.0, 0.0, 6.8,425,62.5 5.549923195084486,5,a-sust-i3,2022-23,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 3.0, 6.0, 3.0, 0.0, 12.0,319,26.583333333333332 --Infinity,1,a-sust-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity +NA,NA,a-sust-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity 5.306707629288274,5,a-sust-i3,2022-23,Winchendon - Murdock High School,03430515, 0.0, 1.0, 1.0, 1.0, 2.0, 4.0, 0.0, 9.0,263,29.22222222222222 1.80184331797235,1.8,a-sust-i3,2022-23,Winchendon - Murdock Middle School,03430315, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 4.0,269,67.25 4.8121442125237195,4.81,a-sust-i3,2022-23,Winchendon - Toy Town Elementary,03430050, 0.0, 1.0, 3.0, 0.5, 3.0, 1.0, 0.0, 8.5,294,34.588235294117645 @@ -18359,7 +18359,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.13919575784357,3.14,a-sust-i3,2022-23,Worcester - Tatnuck,03480230, 1.0, 1.0, 1.3, 3.0, 1.0, 0.0, 0.0, 7.3,385,52.73972602739726 -0.36405529953917076,1,a-sust-i3,2022-23,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 4.0,363,90.75 -0.9861751152073736,1,a-sust-i3,2022-23,Worcester - Union Hill School,03480240, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,390,97.5 --Infinity,1,a-sust-i3,2022-23,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +NA,NA,a-sust-i3,2022-23,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity 4.639489542715349,4.64,a-sust-i3,2022-23,Worcester - Vernon Hill School,03480280, 1.0, 3.0, 0.0, 3.0, 4.0, 2.0, 0.0, 13.0,474,36.46153846153846 6.248847926267281,5,a-sust-i3,2022-23,Worcester - Wawecus Road School,03480026, 2.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 7.0,133,19.0 5.419354838709677,5,a-sust-i3,2022-23,Worcester - West Tatnuck,03480260, 1.0, 2.0, 4.0, 2.0, 2.0, 2.0, 0.0, 13.0,364,28.0 @@ -18397,10 +18397,10 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.908755760368663,5,a-sust-i3,2021-22,Agawam - James Clark School,00050030, 0.0, 3.0, 4.0, 4.0, 3.0, 9.0, 2.0, 25.0,296,11.84 5.472714043172448,5,a-sust-i3,2021-22,Agawam - Roberta G. Doering School,00050303, 3.0, 2.0, 1.0, 2.0, 4.0, 5.0, 2.0, 19.0,521,27.42105263157895 6.545826932923706,5,a-sust-i3,2021-22,Agawam - Robinson Park,00050025, 0.0, 2.0, 5.0, 2.0, 5.0, 4.0, 0.0, 18.0,284,15.777777777777779 --Infinity,1,a-sust-i3,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity +NA,NA,a-sust-i3,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,944,Infinity 5.913100724160632,5,a-sust-i3,2021-22,Amesbury - Amesbury Elementary,00070005, 0.0, 0.9, 0.9, 1.9, 5.3, 4.1, 0.9, 14.0,317,22.642857142857142 2.3102918586789554,2.31,a-sust-i3,2021-22,Amesbury - Amesbury High,00070505, 1.0, 0.0, 0.0, 0.0, 3.5, 2.5, 0.5, 7.5,463,61.733333333333334 --Infinity,1,a-sust-i3,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i3,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity 3.391705069124424,3.39,a-sust-i3,2021-22,Amesbury - Amesbury Middle,00070013, 0.0, 1.0, 0.0, 1.9, 3.9, 5.0, 0.5, 12.3,615,50.0 6.108734450334301,5,a-sust-i3,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 1.8, 0.9, 3.9, 6.1, 4.2, 0.4, 17.3,355,20.520231213872833 6.813115406292478,5,a-sust-i3,2021-22,Amherst - Crocker Farm Elementary,00080009, 1.0, 3.0, 5.0, 3.8, 6.0, 9.0, 0.0, 27.8,358,12.877697841726619 @@ -18447,7 +18447,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.3640552995391704,1.36,a-sust-i3,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,144,72.0 5.384536610343062,5,a-sust-i3,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 3.0, 10.0, 14.0, 7.0, 8.0, 1.0, 2.0, 45.0,1277,28.377777777777776 5.888902727612405,5,a-sust-i3,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 1.0, 3.0, 1.0, 3.0, 1.0, 4.8, 1.0, 14.8,339,22.905405405405403 --Infinity,1,a-sust-i3,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i3,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity 2.5652841781874036,2.57,a-sust-i3,2021-22,Attleboro - Attleboro High,00160505, 3.0, 4.0, 7.0, 3.0, 5.0, 8.0, 0.0, 30.0,1769,58.96666666666667 4.813693219223174,4.81,a-sust-i3,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 1.0, 4.0, 1.0, 4.0, 3.0, 3.5, 1.0, 17.5,605,34.57142857142857 6.771121351766514,5,a-sust-i3,2021-22,Attleboro - Early Learning Center,00160008, 0.9, 1.0, 0.7, 0.9, 6.3, 3.7, 0.0, 13.5,180,13.333333333333334 @@ -18542,7 +18542,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.387096774193548,5,a-sust-i3,2021-22,Boston - Blackstone Elementary School,00350390, 0.0, 6.0, 4.0, 5.0, 4.0, 6.0, 1.0, 26.0,455,17.5 -3.059907834101382,1,a-sust-i3,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,120,120.0 -3.290322580645161,1,a-sust-i3,2021-22,Boston - Boston Arts Academy,00350546, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 4.0,490,122.5 --Infinity,1,a-sust-i3,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i3,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity 5.222454964390447,5,a-sust-i3,2021-22,Boston - Boston Community Leadership Academy,00350558, 2.0, 5.0, 4.0, 3.0, 4.0, 2.0, 2.0, 22.0,663,30.136363636363637 -17.8678955453149,1,a-sust-i3,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,421,280.6666666666667 -69.64976958525347,1,a-sust-i3,2021-22,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1685,842.5 @@ -18575,7 +18575,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.1013824884792625,2.1,a-sust-i3,2021-22,Boston - Fenway High School,00350540, 0.0, 4.0, 1.0, 0.0, 1.0, 0.0, 0.0, 6.0,384,64.0 6.607270865335381,5,a-sust-i3,2021-22,Boston - Frederick Pilot Middle School,00350383, 3.0, 5.0, 2.0, 4.0, 3.0, 4.0, 1.5, 22.5,340,15.11111111111111 4.841223292836196,4.84,a-sust-i3,2021-22,Boston - Gardner Pilot Academy,00350326, 1.0, 3.0, 2.0, 0.0, 4.0, 1.0, 0.0, 11.0,377,34.27272727272727 --Infinity,1,a-sust-i3,2021-22,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i3,2021-22,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity 6.031986988343724,5,a-sust-i3,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 3.0, 6.0, 4.0, 2.0, 2.0, 0.0, 17.0,363,21.352941176470587 1.763440860215053,1.76,a-sust-i3,2021-22,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,203,67.66666666666667 4.813693219223174,4.81,a-sust-i3,2021-22,Boston - Guild Elementary School,00350062, 1.0, 0.0, 1.0, 1.0, 4.0, 0.0, 0.0, 7.0,242,34.57142857142857 @@ -18768,7 +18768,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.494900657248621,5,a-sust-i3,2021-22,Chelmsford - McCarthy Middle School,00560310, 2.0, 2.0, 5.0, 2.0, 6.0, 9.0, 4.5, 30.5,829,27.18032786885246 6.403172221626836,5,a-sust-i3,2021-22,Chelmsford - South Row,00560015, 2.0, 1.0, 3.0, 6.0, 6.5, 5.0, 2.3, 25.8,447,17.325581395348838 -7.6891495601173006,1,a-sust-i3,2021-22,Chelsea - Chelsea High,00570505, 1.0, 1.0, 0.0, 1.0, 2.8, 3.0, 0.0, 8.8,1498,170.22727272727272 --Infinity,1,a-sust-i3,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +NA,NA,a-sust-i3,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity -5.2534562211981575,1,a-sust-i3,2021-22,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 2.0, 2.0, 0.0, 1.0, 0.0, 5.0,719,143.8 3.3732718894009213,3.37,a-sust-i3,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 1.0, 1.0, 1.0, 4.0, 0.0, 3.0, 0.0, 10.0,502,50.2 3.207373271889401,3.21,a-sust-i3,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 1.0, 3.0, 2.0, 1.0, 0.0, 2.0, 0.0, 9.0,468,52.0 @@ -18814,7 +18814,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.531207764081353,5,a-sust-i3,2021-22,Concord - Thoreau,00670020, 3.0, 6.3, 3.6, 2.4, 6.0, 5.0, 2.0, 28.3,451,15.936395759717314 6.466220328667072,5,a-sust-i3,2021-22,Concord - Willard,00670030, 1.0, 4.9, 1.6, 3.7, 9.5, 4.5, 1.3, 26.5,441,16.641509433962263 4.053867835891011,4.05,a-sust-i3,2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 3.2, 10.0, 3.8, 2.8, 6.0, 3.8, 1.5, 30.9,1323,42.81553398058253 --Infinity,1,a-sust-i3,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +NA,NA,a-sust-i3,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity 7.109062980030721,5,a-sust-i3,2021-22,Conway - Conway Grammar,00680005, 0.0, 4.0, 3.0, 2.0, 2.0, 2.0, 2.0, 15.0,145,9.666666666666666 3.7254091848085173,3.73,a-sust-i3,2021-22,Danvers - Danvers High,00710505, 1.0, 3.0, 2.0, 2.4, 3.0, 6.0, 0.0, 17.4,807,46.37931034482759 5.099484955272431,5,a-sust-i3,2021-22,Danvers - Great Oak,00710015, 3.0, 3.0, 0.0, 1.0, 0.0, 1.0, 2.2, 10.2,321,31.47058823529412 @@ -18861,7 +18861,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.52402896642528,4.52,a-sust-i3,2021-22,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 3.0, 1.0, 0.0, 3.0, 0.0, 7.0,264,37.714285714285715 5.737033042455143,5,a-sust-i3,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 0.5, 2.0, 2.0, 3.0, 10.0, 2.5, 3.5, 23.5,577,24.5531914893617 2.1013824884792625,2.1,a-sust-i3,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 1.0, 1.0, 4.0, 2.0, 2.0, 1.0, 3.0, 14.0,896,64.0 --Infinity,1,a-sust-i3,2021-22,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, 0.0,286,Infinity +NA,NA,a-sust-i3,2021-22,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, 0.0,286,Infinity 6.361495135688683,5,a-sust-i3,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.0, 0.0, 0.0, 7.2, 5.8, 4.0, 0.0, 18.0,320,17.77777777777778 4.1658986175115205,4.17,a-sust-i3,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 3.0, 3.0, 1.0, 4.0, 1.0, 3.0, 0.0, 15.0,624,41.6 1.67741935483871,1.68,a-sust-i3,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 5.0,343,68.6 @@ -18903,7 +18903,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -72.82949308755761,1,a-sust-i3,2021-22,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,877,877.0 0.1658986175115205,1,a-sust-i3,2021-22,Everett - Lafayette School,00930038, 0.0, 0.0, 4.0, 1.0, 2.0, 0.0, 4.0, 11.0,935,85.0 -4.239631336405531,1,a-sust-i3,2021-22,Everett - Madeline English School,00930018, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 5.0,664,132.8 --Infinity,1,a-sust-i3,2021-22,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity +NA,NA,a-sust-i3,2021-22,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity -47.9447004608295,1,a-sust-i3,2021-22,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,607,607.0 5.373271889400922,5,a-sust-i3,2021-22,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 1.0, 3.0, 1.0, 1.0, 6.0,171,28.5 5.7525700106345266,5,a-sust-i3,2021-22,Everett - Webster School,00930015, 0.0, 1.0, 2.0, 1.0, 3.0, 4.0, 2.0, 13.0,317,24.384615384615383 @@ -18966,7 +18966,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.66345157718001,4.66,a-sust-i3,2021-22,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 2.2, 2.6, 3.0, 2.1, 3.0, 12.9,467,36.201550387596896 0.45915374947632903,1,a-sust-i3,2021-22,Framingham - Potter Road,01000039, 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 0.6, 6.6,540,81.81818181818183 -0.13947032369107668,1,a-sust-i3,2021-22,Framingham - Walsh Middle,01000310, 0.0, 1.1, 1.0, 3.0, 2.0, 1.2, 0.0, 8.3,733,88.31325301204818 --Infinity,1,a-sust-i3,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +NA,NA,a-sust-i3,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity 5.588940092165899,5,a-sust-i3,2021-22,Franklin - Annie Sullivan Middle School,01010040, 5.0, 2.0, 1.0, 0.0, 3.0, 1.5, 0.0, 12.5,327,26.16 7.295201951748441,5,a-sust-i3,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 2.0, 2.6, 2.8, 7.6, 2.0, 0.0, 17.0,130,7.647058823529412 -0.11544991511035695,1,a-sust-i3,2021-22,Franklin - Franklin High,01010505, 4.0, 1.0, 2.0, 1.0, 4.0, 6.0, 1.0, 19.0,1673,88.05263157894737 @@ -18985,7 +18985,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.8732718894009217,2.87,a-sust-i3,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 6.0, 1.0, 0.0, 8.0,445,55.625 5.751152073732719,5,a-sust-i3,2021-22,Frontier - Frontier Regional,06700505, 5.0, 4.0, 2.0, 7.0, 5.0, 1.0, 1.0, 25.0,610,24.4 5.758913412563667,5,a-sust-i3,2021-22,Gardner - Elm Street School,01030001, 2.0, 2.0, 4.0, 4.0, 3.0, 3.0, 1.0, 19.0,462,24.31578947368421 --Infinity,1,a-sust-i3,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i3,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity 0.421915002560163,1,a-sust-i3,2021-22,Gardner - Gardner High,01030505, 2.0, 4.0, 1.0, 1.0, 0.0, 1.0, 0.0, 9.0,740,82.22222222222223 5.016129032258064,5,a-sust-i3,2021-22,Gardner - Gardner Middle School,01030405, 3.0, 4.0, 3.0, 2.0, 1.0, 2.0, 1.0, 16.0,518,32.375 6.383380407313809,5,a-sust-i3,2021-22,Gardner - Waterford Street,01030020, 5.0, 1.0, 3.0, 7.8, 6.0, 2.0, 0.0, 24.8,435,17.54032258064516 @@ -18993,8 +18993,8 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.605489881787216,5,a-sust-i3,2021-22,Gateway - Gateway Regional High,06720505, 0.0, 0.5, 2.0, 1.0, 4.0, 4.0, 0.0, 11.5,174,15.130434782608695 4.366030283080974,4.37,a-sust-i3,2021-22,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.5, 0.0, 1.0, 0.0, 1.0, 1.0, 3.5,138,39.42857142857143 5.992100065832784,5,a-sust-i3,2021-22,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 3.0, 1.0, 2.0, 5.0, 3.0, 14.0,305,21.785714285714285 --Infinity,1,a-sust-i3,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity --Infinity,1,a-sust-i3,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i3,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i3,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203,Infinity -8.49284501576522,1,a-sust-i3,2021-22,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.8, 1.0, 1.0, 1.0, 3.8,680,178.94736842105263 4.728110599078341,4.73,a-sust-i3,2021-22,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,71,35.5 6.1874039938556065,5,a-sust-i3,2021-22,Gill-Montague - Gill Elementary,06740005, 1.0, 1.0, 1.0, 1.0, 0.0, 2.0, 0.0, 6.0,118,19.666666666666668 @@ -19011,7 +19011,7 @@ NaN,NaN,a-sust-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.370967741935484,4.37,a-sust-i3,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 1.0, 3.0, 2.0, 5.0, 4.0, 1.0, 16.0,630,39.375 5.1560236998025015,5,a-sust-i3,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, 1.0, 0.0, 2.0, 2.0, 1.0, 1.0, 7.0,216,30.857142857142858 5.720430107526882,5,a-sust-i3,2021-22,Gloucester - West Parish,01070050, 2.0, 0.0, 2.0, 3.0, 4.0, 2.0, 2.0, 15.0,371,24.733333333333334 -NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN 2.01579986833443,2.02,a-sust-i3,2021-22,Grafton - Grafton High School,01100505, 0.0, 4.0, 1.0, 2.0, 3.0, 2.0, 2.0, 14.0,909,64.92857142857143 5.7046302391924515,5,a-sust-i3,2021-22,Grafton - Grafton Middle,01100305, 3.0, 4.0, 5.0, 2.0, 4.0, 3.0, 0.0, 21.0,523,24.904761904761905 5.940974605353465,5,a-sust-i3,2021-22,Grafton - Millbury Street Elementary School,01100200, 2.0, 4.0, 4.0, 6.2, 7.0, 5.0, 0.0, 28.2,630,22.340425531914896 @@ -19055,7 +19055,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.255059106391505,5,a-sust-i3,2021-22,Hampshire - Hampshire Regional High,06830505, 6.0, 4.0, 1.0, 3.0, 4.0, 3.0, 2.0, 23.0,685,29.782608695652176 7.094231686000318,5,a-sust-i3,2021-22,Hancock - Hancock Elementary,01210005, 1.0, 0.0, 1.0, 0.0, 1.0, 1.8, 1.0, 5.8,57,9.827586206896552 4.644035599957786,4.64,a-sust-i3,2021-22,Hanover - Cedar Elementary,01220004, 1.0, 0.0, 1.0, 1.0, 8.1, 1.0, 1.0, 13.1,477,36.412213740458014 --Infinity,1,a-sust-i3,2021-22,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +NA,NA,a-sust-i3,2021-22,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity 2.4622354135749434,2.46,a-sust-i3,2021-22,Hanover - Hanover High,01220505, 1.0, 0.0, 3.8, 2.0, 0.0, 3.0, 2.0, 11.8,709,60.08474576271186 -5.372434017595308,1,a-sust-i3,2021-22,Hanover - Hanover Middle,01220305, 1.0, 0.0, 0.5, 0.0, 2.0, 2.0, 0.0, 5.5,798,145.0909090909091 1.0511763279165656,1.05,a-sust-i3,2021-22,Harvard - Bromfield,01250505, 1.0, 0.0, 0.0, 0.0, 2.6, 2.0, 2.0, 7.6,573,75.39473684210526 @@ -19080,7 +19080,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.267281105990783,4.27,a-sust-i3,2021-22,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 4.0,162,40.5 5.806451612903226,5,a-sust-i3,2021-22,Haverhill - Walnut Square,01280080, 1.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 5.0,119,23.8 6.767782007613706,5,a-sust-i3,2021-22,Hawlemont - Hawlemont Regional,06850005, 1.0, 0.6, 1.1, 0.5, 2.0, 3.0, 1.0, 9.2,123,13.369565217391305 --Infinity,1,a-sust-i3,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i3,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity 2.3594470046082945,2.36,a-sust-i3,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 5.0,306,61.2 6.425196850393701,5,a-sust-i3,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 1.0, 4.9, 2.6, 2.8, 0.6, 0.8, 0.0, 12.7,217,17.086614173228348 6.246337571052019,5,a-sust-i3,2021-22,Hingham - East Elementary School,01310005, 3.0, 1.5, 1.0, 4.9, 7.4, 5.5, 2.3, 25.7,489,19.027237354085603 @@ -19164,7 +19164,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.789621318373071,5,a-sust-i3,2021-22,Lawrence - School for Exceptional Studies,01490537, 2.0, 12.0, 11.0, 3.0, 11.0, 6.0, 1.0, 46.0,105,2.282608695652174 3.150655795817086,3.15,a-sust-i3,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 1.0, 4.0, 2.0, 2.0, 2.0, 1.0, 1.0, 13.0,684,52.61538461538461 5.488479262672811,5,a-sust-i3,2021-22,Lawrence - Spark Academy,01490085, 4.0, 6.0, 2.0, 0.0, 0.9, 3.0, 0.0, 16.0,436,27.25 --Infinity,1,a-sust-i3,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +NA,NA,a-sust-i3,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity 3.9052007899934162,3.91,a-sust-i3,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 1.0, 1.0, 4.0, 0.0, 0.0, 1.0, 0.0, 7.0,311,44.42857142857143 1.330540427314621,1.33,a-sust-i3,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 4.0, 4.0, 0.0, 1.0, 0.0, 2.0, 0.0, 11.0,796,72.36363636363636 5.5747718442215595,5,a-sust-i3,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 3.0, 11.0, 8.0, 0.0, 1.0, 2.5, 0.0, 25.5,671,26.313725490196077 @@ -19242,7 +19242,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -9.880184331797235,1,a-sust-i3,2021-22,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,97,194.0 6.8066941547416935,5,a-sust-i3,2021-22,Lowell - Washington,01600055, 1.0, 5.0, 1.0, 3.0, 4.0, 4.5, 0.5, 19.0,246,12.947368421052632 1.1126937578550473,1.11,a-sust-i3,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 5.0, 0.0, 4.0, 0.0, 2.0, 0.0, 11.0,822,74.72727272727273 --Infinity,1,a-sust-i3,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,74,Infinity +NA,NA,a-sust-i3,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,74,Infinity 7.217835346867605,5,a-sust-i3,2021-22,Ludlow - East Street Elementary School,01610010, 4.0, 7.0, 7.0, 5.0, 6.0, 8.0, 0.0, 37.0,314,8.486486486486486 4.644076985632963,4.64,a-sust-i3,2021-22,Ludlow - Harris Brook Elementary School,01610665, 1.0, 2.0, 0.0, 4.0, 2.0, 8.0, 0.0, 17.0,619,36.411764705882355 0.7408382707921879,1,a-sust-i3,2021-22,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.5, 10.5,827,78.76190476190476 @@ -19283,7 +19283,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.124423963133641,5,a-sust-i3,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 4.0,38,9.5 3.0115207373271886,3.01,a-sust-i3,2021-22,Lynnfield - Summer Street,01640020, 2.0, 1.0, 0.0, 1.0, 3.0, 1.0, 0.0, 8.0,433,54.125 5.044418172605979,5,a-sust-i3,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 14.0, 14.2, 5.0, 3.0, 1.0, 0.0, 1.0, 38.2,1225,32.06806282722513 --Infinity,1,a-sust-i3,2021-22,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, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i3,2021-22,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, 0.0, 0.0,91,Infinity 1.37114498404821,1.37,a-sust-i3,2021-22,Malden - Beebe,01650003, 3.0, 1.0, 1.0, 2.0, 3.0, 2.0, 1.0, 13.0,935,71.92307692307692 0.49266862170087966,1,a-sust-i3,2021-22,Malden - Ferryway,01650013, 1.0, 1.0, 1.0, 1.0, 1.0, 3.0, 3.0, 11.0,896,81.45454545454545 5.880184331797235,5,a-sust-i3,2021-22,Malden - Forestdale,01650027, 1.0, 5.0, 6.0, 4.0, 3.0, 5.0, 1.0, 25.0,575,23.0 @@ -19380,8 +19380,8 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.459293394777266,4.46,a-sust-i3,2021-22,Milford - Brookside,01850065, 1.0, 0.0, 1.0, 2.0, 4.0, 4.0, 0.0, 12.0,461,38.416666666666664 2.3433179723502304,2.34,a-sust-i3,2021-22,Milford - Memorial,01850010, 0.0, 2.0, 0.0, 1.0, 3.0, 1.0, 1.0, 8.0,491,61.375 -109.78801843317972,1,a-sust-i3,2021-22,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1278,1278.0 --Infinity,1,a-sust-i3,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity --Infinity,1,a-sust-i3,2021-22,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity +NA,NA,a-sust-i3,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +NA,NA,a-sust-i3,2021-22,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1008,Infinity -13.451612903225806,1,a-sust-i3,2021-22,Milford - Woodland,01850090, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 4.0,931,232.75 6.384024577572965,5,a-sust-i3,2021-22,Millbury - Elmwood Street,01860017, 1.0, 7.4, 4.5, 7.3, 3.8, 6.0, 0.0, 30.0,526,17.533333333333335 4.231438812083973,4.23,a-sust-i3,2021-22,Millbury - Millbury Junior/Senior High,01860505, 3.0, 3.0, 3.0, 2.0, 2.0, 3.0, 2.0, 18.0,736,40.888888888888886 @@ -19469,9 +19469,9 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.6013824884792625,5,a-sust-i3,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 6.0, 10.0, 6.0, 5.0, 5.0, 7.0, 1.0, 40.0,607,15.175 3.0230414746543777,3.02,a-sust-i3,2021-22,New Bedford - Thomas R Rodman,02010125, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0,216,54.0 5.38863287250384,5,a-sust-i3,2021-22,New Bedford - Trinity Day Academy,02010510, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,85,28.333333333333332 --Infinity,1,a-sust-i3,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity +NA,NA,a-sust-i3,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity 5.096774193548387,5,a-sust-i3,2021-22,New Bedford - William H Taylor,02010135, 2.0, 1.0, 0.0, 1.0, 2.0, 1.0, 1.0, 8.0,252,31.5 --Infinity,1,a-sust-i3,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity +NA,NA,a-sust-i3,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744,Infinity 6.668714797747056,5,a-sust-i3,2021-22,New Salem-Wendell - Swift River,07280015, 0.0, 1.0, 1.0, 3.0, 2.0, 2.0, 0.0, 9.0,130,14.444444444444445 4.7626728110599075,4.76,a-sust-i3,2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 2.0, 1.0, 0.0, 0.0, 2.0, 3.0, 0.0, 8.0,281,35.125 5.813318875937472,5,a-sust-i3,2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 1.7, 2.0, 2.0, 4.4, 8.0, 5.9, 1.6, 25.5,605,23.725490196078432 @@ -19610,10 +19610,10 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.9462365591397845,2.95,a-sust-i3,2021-22,Pentucket - Pentucket Regional Middle,07450405, 1.0, 0.0, 0.0, 1.0, 2.0, 1.0, 1.0, 6.0,329,54.833333333333336 -0.3212639894667553,1,a-sust-i3,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 1.0, 0.0, 1.0, 2.0, 1.0, 1.0, 1.0, 7.0,632,90.28571428571429 6.5121790651744575,5,a-sust-i3,2021-22,Petersham - Petersham Center,02340005, 0.5, 1.0, 3.0, 0.5, 0.0, 1.0, 1.0, 7.0,113,16.142857142857142 --Infinity,1,a-sust-i3,2021-22,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, 0.0, 0.0, 0.0,138,Infinity --Infinity,1,a-sust-i3,2021-22,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, 0.0, 0.0, 0.0,175,Infinity --Infinity,1,a-sust-i3,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity --Infinity,1,a-sust-i3,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +NA,NA,a-sust-i3,2021-22,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, 0.0, 0.0, 0.0,138,Infinity +NA,NA,a-sust-i3,2021-22,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, 0.0, 0.0, 0.0,175,Infinity +NA,NA,a-sust-i3,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +NA,NA,a-sust-i3,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity -165.27188940092165,1,a-sust-i3,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,376,1880.0 6.838709677419354,5,a-sust-i3,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 4.0, 2.0, 3.0, 2.0, 2.0, 2.0, 15.0,189,12.6 7.0873328088119605,5,a-sust-i3,2021-22,Pioneer Valley - Northfield Elementary,07500008, 1.0, 3.0, 3.0, 6.5, 2.0, 5.0, 0.0, 20.5,203,9.902439024390244 @@ -19660,7 +19660,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.1361956472144907,3.14,a-sust-i3,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 1.0, 2.0, 1.0, 2.2, 2.9, 1.0, 10.1,533,52.772277227722775 5.947214076246335,5,a-sust-i3,2021-22,Quabbin - Ruggles Lane,07530030, 2.0, 3.0, 2.9, 2.0, 2.0, 5.7, 0.0, 17.6,392,22.27272727272727 4.507936507936508,4.51,a-sust-i3,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 2.0, 2.0, 1.0, 0.0, 3.0, 1.0, 0.0, 9.0,341,37.888888888888886 --Infinity,1,a-sust-i3,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i3,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity 5.927734890956589,5,a-sust-i3,2021-22,Quaboag Regional - Warren Elementary,07780005, 2.0, 4.0, 2.7, 0.0, 1.0, 4.0, 2.0, 15.7,353,22.48407643312102 6.102918586789555,5,a-sust-i3,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 3.0, 1.0, 2.0, 5.0, 1.0, 0.0, 12.0,247,20.583333333333332 7.430247172182657,5,a-sust-i3,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 1.0, 5.0, 3.0, 2.0, 7.0, 3.0, 1.0, 22.0,136,6.181818181818182 @@ -19702,7 +19702,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.1423451100870454,2.14,a-sust-i3,2021-22,Revere - Abraham Lincoln,02480025, 1.0, 0.0, 1.5, 0.5, 1.5, 4.0, 0.5, 9.0,572,63.55555555555556 5.908543069833392,5,a-sust-i3,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 1.5, 3.5, 0.5, 2.5, 2.0, 2.0, 1.0, 13.0,295,22.692307692307693 4.059907834101383,4.06,a-sust-i3,2021-22,Revere - Garfield Elementary School,02480056, 0.5, 1.5, 4.0, 1.5, 2.0, 6.0, 0.5, 16.0,684,42.75 --Infinity,1,a-sust-i3,2021-22,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +NA,NA,a-sust-i3,2021-22,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity -9.105990783410137,1,a-sust-i3,2021-22,Revere - Paul Revere,02480050, 1.5, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 2.5,464,185.6 -9.520298441957427,1,a-sust-i3,2021-22,Revere - Revere High,02480505, 3.0, 0.5, 1.5, 2.0, 2.0, 1.5, 0.0, 10.5,1996,190.0952380952381 1.4562211981566817,1.46,a-sust-i3,2021-22,Revere - Rumney Marsh Academy,02480014, 1.5, 1.5, 0.5, 1.0, 2.5, 0.0, 1.0, 8.0,568,71.0 @@ -19728,7 +19728,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.908543069833392,5,a-sust-i3,2021-22,Salem - Carlton,02580015, 1.0, 2.0, 0.0, 0.0, 3.4, 2.0, 2.0, 10.4,236,22.69230769230769 5.235023041474654,5,a-sust-i3,2021-22,Salem - Collins Middle,02580305, 1.0, 6.0, 1.0, 1.0, 2.0, 5.0, 5.1, 21.1,633,29.999999999999996 5.299539170506913,5,a-sust-i3,2021-22,Salem - Horace Mann Laboratory,02580030, 4.0, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 10.0,293,29.3 --Infinity,1,a-sust-i3,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i3,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity 7.324116743471583,5,a-sust-i3,2021-22,Salem - Salem Early Childhood,02580001, 0.0, 2.0, 4.0, 1.0, 0.0, 7.0, 1.0, 15.0,110,7.333333333333333 4.635944700460829,4.64,a-sust-i3,2021-22,Salem - Salem High,02580505, 4.0, 4.0, 0.0, 3.0, 5.0, 3.0, 3.0, 22.0,803,36.5 6.433179723502304,5,a-sust-i3,2021-22,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,17,17.0 @@ -19754,10 +19754,10 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.755760368663594,5,a-sust-i3,2021-22,Seekonk - George R Martin,02650007, 3.0, 2.0, 4.0, 3.0, 4.0, 4.0, 0.0, 20.0,487,24.35 5.039848197343454,5,a-sust-i3,2021-22,Seekonk - Mildred Aitken School,02650015, 0.0, 1.0, 3.0, 4.0, 2.0, 5.0, 2.0, 17.0,546,32.11764705882353 1.191244239631336,1.19,a-sust-i3,2021-22,Seekonk - Seekonk High,02650505, 0.0, 1.0, 1.0, 2.0, 2.0, 2.0, 0.0, 8.0,591,73.875 --Infinity,1,a-sust-i3,2021-22,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +NA,NA,a-sust-i3,2021-22,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity -36.60829493087558,1,a-sust-i3,2021-22,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,484,484.0 -16.746543778801843,1,a-sust-i3,2021-22,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,537,268.5 --Infinity,1,a-sust-i3,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i3,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity 3.228320067029744,3.23,a-sust-i3,2021-22,Sharon - Sharon High,02660505, 2.0, 3.0, 0.0, 2.0, 7.0, 5.0, 3.0, 22.0,1139,51.77272727272727 3.514592933947773,3.51,a-sust-i3,2021-22,Sharon - Sharon Middle,02660305, 1.0, 1.0, 0.0, 5.0, 7.0, 2.0, 2.0, 18.0,876,48.666666666666664 -2.1152073732718892,1,a-sust-i3,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 2.0, 4.0, 0.0, 2.0, 1.0, 2.0, 1.0, 12.0,1317,109.75 @@ -19785,7 +19785,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.3410138248847929,1,a-sust-i3,2021-22,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,181,90.5 7.275308458451018,5,a-sust-i3,2021-22,Somerville - Capuano Early Childhood Center,02740005, 2.0, 4.2, 3.0, 3.8, 5.8, 3.0, 3.0, 24.8,195,7.862903225806451 1.5760368663594466,1.58,a-sust-i3,2021-22,Somerville - E Somerville Community,02740111, 1.0, 3.0, 1.0, 0.0, 3.0, 2.0, 0.0, 10.0,697,69.7 --Infinity,1,a-sust-i3,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i3,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity 4.651305683563748,4.65,a-sust-i3,2021-22,Somerville - John F Kennedy,02740083, 0.0, 2.0, 0.0, 3.0, 2.0, 4.0, 1.0, 12.0,436,36.333333333333336 6.341013824884793,5,a-sust-i3,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,18,18.0 -0.6463548055564767,1,a-sust-i3,2021-22,Somerville - Somerville High,02740505, 4.0, 4.5, 1.0, 3.0, 1.0, 0.4, 0.0, 13.9,1304,93.81294964028777 @@ -19836,8 +19836,8 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.084485407066052,3.08,a-sust-i3,2021-22,Springfield - Forest Park Middle,02810325, 1.0, 3.0, 1.0, 1.0, 2.0, 0.0, 1.0, 9.0,480,53.333333333333336 5.778801843317972,5,a-sust-i3,2021-22,Springfield - Frank H Freedman,02810075, 1.0, 1.0, 0.0, 3.0, 3.0, 1.0, 1.0, 10.0,241,24.1 5.472021066491112,5,a-sust-i3,2021-22,Springfield - Frederick Harris,02810080, 2.0, 5.0, 6.0, 5.0, 3.0, 0.0, 0.0, 21.0,576,27.428571428571427 --Infinity,1,a-sust-i3,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i3,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i3,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i3,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity 6.308309796343095,5,a-sust-i3,2021-22,Springfield - German Gerena Community School,02810195, 7.0, 6.0, 3.0, 4.0, 6.0, 5.0, 0.0, 31.0,569,18.35483870967742 5.091653865847414,5,a-sust-i3,2021-22,Springfield - Glenwood,02810065, 0.0, 1.0, 2.0, 3.0, 2.0, 1.0, 0.0, 9.0,284,31.555555555555557 5.811059907834101,5,a-sust-i3,2021-22,Springfield - Glickman Elementary,02810068, 1.0, 4.0, 1.0, 2.0, 2.0, 1.0, 1.0, 12.0,285,23.75 @@ -19852,7 +19852,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.7588325652841785,4.76,a-sust-i3,2021-22,Springfield - Kiley Academy,02810316, 0.0, 2.0, 1.0, 1.0, 0.0, 1.0, 1.0, 6.0,211,35.166666666666664 0.11981566820276472,1,a-sust-i3,2021-22,Springfield - Kiley Prep,02810315, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,171,85.5 4.95852534562212,4.96,a-sust-i3,2021-22,Springfield - Liberty,02810115, 1.0, 1.0, 2.0, 1.0, 2.0, 1.0, 0.0, 8.0,264,33.0 --Infinity,1,a-sust-i3,2021-22,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity +NA,NA,a-sust-i3,2021-22,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity 5.093701996927804,5,a-sust-i3,2021-22,Springfield - Lincoln,02810120, 4.0, 7.0, 2.0, 1.0, 1.0, 0.0, 0.0, 15.0,473,31.533333333333335 0.38709677419354865,1,a-sust-i3,2021-22,Springfield - Lyceum Academy,02810317, 3.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 5.0,413,82.6 3.92626728110599,3.93,a-sust-i3,2021-22,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 1.0, 1.0, 1.0, 2.0, 0.0, 5.0,221,44.2 @@ -19871,8 +19871,8 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.917246788900872,3.92,a-sust-i3,2021-22,Springfield - Springfield Central High,02810500, 7.0, 9.0, 6.0, 6.0, 6.0, 8.0, 5.0, 47.0,2082,44.297872340425535 3.32258064516129,3.32,a-sust-i3,2021-22,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,203,50.75 5.020872865275143,5,a-sust-i3,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 1.0, 5.0, 4.0, 7.0, 6.0, 7.0, 4.0, 34.0,1099,32.3235294117647 --Infinity,1,a-sust-i3,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity --Infinity,1,a-sust-i3,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity +NA,NA,a-sust-i3,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18,Infinity +NA,NA,a-sust-i3,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77,Infinity 7.569892473118279,5,a-sust-i3,2021-22,Springfield - Springfield Middle School,02810360, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,14,4.666666666666667 7.743983614951357,5,a-sust-i3,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 1.0, 3.0, 1.0, 1.0, 3.0, 0.0, 0.0, 9.0,25,2.7777777777777777 7.251152073732719,5,a-sust-i3,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, 2.0, 0.0, 2.0, 2.0, 2.0, 0.0, 8.0,65,8.125 @@ -19888,7 +19888,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.812376563528637,2.81,a-sust-i3,2021-22,Springfield - White Street,02810190, 1.0, 3.0, 1.0, 0.0, 1.0, 1.0, 0.0, 7.0,394,56.285714285714285 5.583205325140809,5,a-sust-i3,2021-22,Springfield - William N. DeBerry,02810045, 3.0, 2.0, 0.0, 2.0, 0.0, 2.0, 0.0, 9.0,236,26.22222222222222 3.172413793103448,3.17,a-sust-i3,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 4.0, 7.0, 7.0, 3.0, 3.0, 4.0, 1.0, 29.0,1519,52.37931034482759 --Infinity,1,a-sust-i3,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +NA,NA,a-sust-i3,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity 5.9707332848249655,5,a-sust-i3,2021-22,Stoneham - Colonial Park,02840005, 1.6, 1.0, 1.0, 0.4, 6.4, 1.0, 0.0, 11.4,251,22.017543859649123 5.4247763621577665,5,a-sust-i3,2021-22,Stoneham - Robin Hood,02840025, 3.0, 0.0, 1.8, 0.8, 2.0, 5.0, 1.0, 13.6,380,27.941176470588236 5.013824884792626,5,a-sust-i3,2021-22,Stoneham - South,02840030, 0.0, 0.0, 2.5, 2.7, 2.8, 2.0, 0.0, 10.0,324,32.4 @@ -19903,7 +19903,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.0210327307101497,2.02,a-sust-i3,2021-22,Stoughton - South Elementary,02850015, 0.0, 0.0, 1.2, 0.6, 0.3, 1.8, 0.0, 3.9,253,64.87179487179488 0.2030622863089044,1,a-sust-i3,2021-22,Stoughton - Stoughton High,02850505, 2.2, 0.9, 1.4, 0.0, 3.5, 4.4, 0.0, 12.4,1049,84.59677419354838 6.084217439056149,5,a-sust-i3,2021-22,Sturbridge - Burgess Elementary,02870005, 5.0, 2.7, 2.0, 4.0, 14.0, 9.0, 4.0, 40.7,846,20.786240786240786 --Infinity,1,a-sust-i3,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +NA,NA,a-sust-i3,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity 2.4827586206896552,2.48,a-sust-i3,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 1.0, 5.0, 2.0, 0.0, 0.5, 5.0, 1.0, 14.5,868,59.86206896551724 3.0062840385421032,3.01,a-sust-i3,2021-22,Sudbury - General John Nixon Elementary,02880025, 1.0, 0.0, 0.5, 1.0, 0.5, 2.5, 0.0, 5.5,298,54.18181818181818 4.021818865795166,4.02,a-sust-i3,2021-22,Sudbury - Israel Loring School,02880015, 1.0, 1.0, 0.0, 3.8, 1.0, 1.5, 1.5, 9.8,423,43.16326530612245 @@ -19925,10 +19925,10 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.497695852534562,1,a-sust-i3,2021-22,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 4.0,499,124.75 4.331797235023042,4.33,a-sust-i3,2021-22,Swansea - Joseph G Luther,02920020, 1.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 5.0,199,39.8 4.436251920122888,4.44,a-sust-i3,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 2.0, 3.0, 1.0, 0.0, 6.0,232,38.666666666666664 --Infinity,1,a-sust-i3,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2686,Infinity +NA,NA,a-sust-i3,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2686,Infinity 3.8170861396667846,3.82,a-sust-i3,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 2.0, 0.0, 2.0, 5.0, 3.0, 1.0, 13.0,590,45.38461538461539 5.283109597275095,5,a-sust-i3,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 2.5, 4.0, 3.0, 1.0, 4.5, 6.0, 2.0, 23.0,678,29.47826086956522 --Infinity,1,a-sust-i3,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity +NA,NA,a-sust-i3,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521,Infinity 3.1349572086899276,3.13,a-sust-i3,2021-22,Taunton - Benjamin Friedman Middle,02930315, 2.0, 1.0, 1.0, 2.0, 0.0, 6.0, 2.0, 14.0,739,52.785714285714285 3.7017176372015084,3.7,a-sust-i3,2021-22,Taunton - East Taunton Elementary,02930010, 1.0, 1.0, 0.0, 0.0, 3.0, 6.0, 0.0, 11.0,513,46.63636363636363 2.488479262672811,2.49,a-sust-i3,2021-22,Taunton - Edmund Hatch Bennett,02930007, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 5.0,299,59.8 @@ -19939,7 +19939,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.4608294930875576,1,a-sust-i3,2021-22,Taunton - John F Parker Middle,02930305, 1.0, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 5.0,459,91.8 4.313364055299539,4.31,a-sust-i3,2021-22,Taunton - Joseph C Chamberlain,02930008, 1.0, 1.0, 0.0, 1.0, 2.0, 5.0, 1.0, 11.0,440,40.0 0.39631336405529927,1,a-sust-i3,2021-22,Taunton - Joseph H Martin,02930042, 1.0, 0.0, 0.0, 0.0, 3.0, 2.0, 2.0, 8.0,660,82.5 --Infinity,1,a-sust-i3,2021-22,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +NA,NA,a-sust-i3,2021-22,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity -5.194276012612176,1,a-sust-i3,2021-22,Taunton - Taunton High,02930505, 2.0, 0.0, 3.0, 1.0, 1.0, 11.0, 1.0, 19.0,2720,143.1578947368421 5.492423298874912,5,a-sust-i3,2021-22,Tewksbury - Heath-Brook,02950010, 2.0, 2.1, 0.0, 2.0, 3.0, 1.0, 1.0, 11.1,302,27.207207207207208 5.262130658715099,5,a-sust-i3,2021-22,Tewksbury - John F. Ryan,02950023, 3.0, 6.0, 2.0, 1.0, 1.0, 4.0, 0.0, 17.0,505,29.705882352941178 @@ -19966,11 +19966,11 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.686635944700461,5,a-sust-i3,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 1.0, 1.1, 1.1, 0.2, 0.0, 0.6, 0.0, 4.0,57,14.25 6.273102110113994,5,a-sust-i3,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 0.4, 3.7, 5.6, 3.1, 1.2, 3.4, 1.5, 19.0,356,18.736842105263158 2.684385382059801,2.68,a-sust-i3,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 3.0, 1.9, 0.0, 0.0, 3.0, 2.0, 3.0, 12.9,744,57.67441860465116 --Infinity,1,a-sust-i3,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i3,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity 6.201058201058201,5,a-sust-i3,2021-22,Uxbridge - Taft Early Learning Center,03040005, 2.0, 0.0, 5.0, 8.0, 7.0, 5.0, 0.0, 27.0,527,19.51851851851852 4.814516129032258,4.81,a-sust-i3,2021-22,Uxbridge - Uxbridge High,03040505, 1.0, 1.0, 1.0, 1.0, 3.0, 7.0, 2.0, 16.0,553,34.5625 4.052227342549923,4.05,a-sust-i3,2021-22,Uxbridge - Whitin Intermediate,03040405, 1.0, 0.0, 0.0, 5.0, 4.0, 2.0, 0.0, 12.0,514,42.833333333333336 --Infinity,1,a-sust-i3,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-i3,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity 5.5971033574720215,5,a-sust-i3,2021-22,Wachusett - Central Tree Middle,07750310, 1.0, 1.0, 3.0, 0.0, 5.0, 3.0, 1.0, 14.0,365,26.071428571428573 5.336405529953917,5,a-sust-i3,2021-22,Wachusett - Chocksett Middle School,07750315, 0.0, 2.0, 1.0, 3.0, 2.0, 2.0, 0.0, 10.0,289,28.9 5.753144849919043,5,a-sust-i3,2021-22,Wachusett - Davis Hill Elementary,07750018, 2.0, 0.0, 2.5, 7.0, 5.0, 2.0, 0.0, 18.5,451,24.37837837837838 @@ -20015,7 +20015,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.06221198156682,5,a-sust-i3,2021-22,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 2.0, 2.0, 3.0, 1.0, 8.0,255,31.875 5.765898617511521,5,a-sust-i3,2021-22,Wareham - John William Decas,03100003, 1.0, 1.0, 2.5, 6.0, 6.0, 7.5, 1.0, 25.0,606,24.24 5.059907834101383,5,a-sust-i3,2021-22,Wareham - Minot Forest,03100017, 1.0, 0.5, 3.0, 1.0, 1.0, 1.0, 2.5, 10.0,319,31.9 --Infinity,1,a-sust-i3,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i3,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity 4.593548387096774,4.59,a-sust-i3,2021-22,Wareham - Wareham Middle,03100305, 1.0, 1.0, 1.0, 2.0, 3.0, 3.5, 1.0, 12.5,462,36.96 4.3252564293147024,4.33,a-sust-i3,2021-22,Wareham - Wareham Senior High,03100505, 0.0, 2.0, 3.0, 1.0, 3.5, 5.0, 1.0, 15.5,618,39.87096774193548 5.816377171215881,5,a-sust-i3,2021-22,Watertown - Cunniff,03140015, 1.0, 3.0, 0.0, 3.0, 4.0, 2.0, 0.0, 13.0,308,23.692307692307693 @@ -20130,7 +20130,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.13133640552995365,1,a-sust-i3,2021-22,Wilmington - Wilmington Middle School,03420330, 1.0, 0.0, 1.0, 1.0, 2.0, 3.0, 0.0, 8.0,683,85.375 -0.3919476109628915,1,a-sust-i3,2021-22,Wilmington - Woburn Street,03420020, 0.0, 1.0, 0.0, 0.0, 2.8, 0.0, 0.0, 3.8,346,91.05263157894737 6.084265964450296,5,a-sust-i3,2021-22,Winchendon - Memorial,03430040, 1.0, 0.0, 2.0, 3.5, 5.5, 2.0, 0.0, 14.0,291,20.785714285714285 --Infinity,1,a-sust-i3,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i3,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity 1.8940092165898617,1.89,a-sust-i3,2021-22,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,265,66.25 5.06221198156682,5,a-sust-i3,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, 1.0, 2.0, 0.0, 3.0, 2.0, 0.0, 8.0,255,31.875 3.0230414746543777,3.02,a-sust-i3,2021-22,Winchendon - Toy Town Elementary,03430050, 1.0, 1.0, 1.0, 0.5, 1.0, 1.0, 0.0, 5.5,297,54.0 @@ -20194,7 +20194,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.825543120473996,2.83,a-sust-i3,2021-22,Worcester - Tatnuck,03480230, 1.0, 2.0, 2.0, 1.0, 1.0, 0.0, 0.0, 7.0,393,56.142857142857146 1.4193548387096766,1.42,a-sust-i3,2021-22,Worcester - Thorndyke Road,03480235, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,357,71.4 0.9400921658986178,1,a-sust-i3,2021-22,Worcester - Union Hill School,03480240, 1.0, 0.0, 1.0, 1.0, 2.0, 0.0, 0.0, 5.0,383,76.6 --Infinity,1,a-sust-i3,2021-22,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i3,2021-22,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity 4.397849462365591,4.4,a-sust-i3,2021-22,Worcester - Vernon Hill School,03480280, 1.0, 2.0, 1.0, 3.0, 3.0, 2.0, 0.0, 12.0,469,39.083333333333336 6.640552995391705,5,a-sust-i3,2021-22,Worcester - Wawecus Road School,03480026, 2.0, 2.0, 1.0, 1.0, 1.0, 1.0, 0.0, 8.0,118,14.75 5.38863287250384,5,a-sust-i3,2021-22,Worcester - West Tatnuck,03480260, 0.0, 0.0, 4.0, 3.0, 2.0, 2.0, 1.0, 12.0,340,28.333333333333332 @@ -20232,10 +20232,10 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.074901987757066,5,a-sust-i3,2020-21,Agawam - James Clark School,00050030, 0.0, 4.0, 5.0, 4.0, 3.8, 8.0, 2.0, 26.8,269,10.03731343283582 5.142857142857142,5,a-sust-i3,2020-21,Agawam - Roberta G. Doering School,00050303, 2.0, 2.0, 1.0, 3.0, 4.0, 3.0, 2.0, 17.0,527,31.0 6.489280705269485,5,a-sust-i3,2020-21,Agawam - Robinson Park,00050025, 1.0, 3.0, 6.0, 5.0, 5.0, 3.0, 0.0, 23.0,377,16.391304347826086 --Infinity,1,a-sust-i3,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +NA,NA,a-sust-i3,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity 3.95217337152821,3.95,a-sust-i3,2020-21,Amesbury - Amesbury Elementary,00070005, 0.0, 1.0, 0.9, 0.0, 2.5, 3.0, 0.0, 7.4,325,43.91891891891892 -5.719552337063858,1,a-sust-i3,2020-21,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.9, 1.6, 0.5, 0.5, 3.5,521,148.85714285714286 --Infinity,1,a-sust-i3,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i3,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity 1.3788865935695742,1.38,a-sust-i3,2020-21,Amesbury - Amesbury Middle,00070013, 0.0, 1.0, 0.0, 1.9, 3.8, 2.0, 0.0, 8.7,625,71.83908045977012 5.417831435426743,5,a-sust-i3,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.8, 1.8, 1.8, 5.3, 2.4, 0.0, 12.1,339,28.016528925619834 6.823061366574943,5,a-sust-i3,2020-21,Amherst - Crocker Farm Elementary,00080009, 1.0, 2.9, 4.8, 6.8, 6.3, 6.0, 0.0, 27.8,355,12.76978417266187 @@ -20253,7 +20253,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.932978390228626,5,a-sust-i3,2020-21,Andover - South Elementary,00090020, 1.9, 1.0, 0.0, 4.8, 7.5, 4.4, 1.0, 20.6,462,22.427184466019416 6.42741935483871,5,a-sust-i3,2020-21,Andover - West Elementary,00090025, 3.0, 1.0, 4.0, 6.0, 8.0, 6.6, 3.5, 32.0,546,17.0625 4.9140882159315336,4.91,a-sust-i3,2020-21,Andover - Wood Hill Middle School,00090350, 1.0, 1.0, 0.0, 2.0, 0.0, 6.2, 1.0, 11.2,375,33.48214285714286 --Infinity,1,a-sust-i3,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i3,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity 0.9422961330394699,1,a-sust-i3,2020-21,Arlington - Arlington High,00100505, 1.0, 7.4, 2.0, 3.0, 3.0, 0.0, 2.0, 18.4,1409,76.57608695652175 5.65807962529274,5,a-sust-i3,2020-21,Arlington - Brackett,00100010, 5.0, 6.0, 0.0, 1.0, 3.0, 1.5, 1.8, 18.3,465,25.40983606557377 5.695852534562212,5,a-sust-i3,2020-21,Arlington - Cyrus E Dallin,00100025, 2.0, 4.0, 3.0, 3.3, 4.7, 0.0, 0.0, 17.0,425,25.0 @@ -20282,7 +20282,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.821812596006144,3.82,a-sust-i3,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,136,45.333333333333336 5.086658424187928,5,a-sust-i3,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 6.0, 12.0, 7.0, 8.0, 7.0, 0.0, 1.0, 41.0,1296,31.609756097560975 5.235023041474654,5,a-sust-i3,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 2.0, 1.0, 1.0, 1.0, 4.8, 1.0, 10.8,324,29.999999999999996 --Infinity,1,a-sust-i3,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i3,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity 2.494623655913978,2.49,a-sust-i3,2020-21,Attleboro - Attleboro High,00160505, 1.0, 7.0, 7.0, 2.0, 3.0, 9.0, 1.0, 30.0,1792,59.733333333333334 3.7671957671957674,3.77,a-sust-i3,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 2.0, 1.0, 0.0, 3.0, 4.0, 2.5, 1.0, 13.5,620,45.925925925925924 7.159188293313931,5,a-sust-i3,2020-21,Attleboro - Early Learning Center,00160008, 0.9, 1.0, 0.0, 2.1, 3.6, 2.8, 1.0, 11.4,104,9.12280701754386 @@ -20516,7 +20516,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.447004608294931,5,a-sust-i3,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,12,6.0 0.5302754259993564,1,a-sust-i3,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 1.0, 0.0, 1.0, 1.0, 1.0, 4.6, 0.0, 8.6,697,81.04651162790698 5.704386414063833,5,a-sust-i3,2020-21,Brimfield - Brimfield Elementary,00430005, 0.0, 1.0, 3.8, 1.0, 2.0, 1.0, 2.0, 10.8,269,24.907407407407405 --Infinity,1,a-sust-i3,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +NA,NA,a-sust-i3,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity -1.5721905729525751,1,a-sust-i3,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 2.7, 6.0, 4.0, 0.0, 12.7,1319,103.85826771653544 2.80184331797235,2.8,a-sust-i3,2020-21,Brockton - Ashfield Middle School,00440421, 0.0, 3.0, 1.0, 1.0, 2.0, 1.0, 2.0, 10.0,564,56.4 7.516923565866836,5,a-sust-i3,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 2.0, 1.0, 2.0, 9.0, 9.0, 4.0, 2.0, 29.0,152,5.241379310344827 @@ -20604,7 +20604,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.419354838709677,5,a-sust-i3,2020-21,Chelmsford - McCarthy Middle School,00560310, 1.0, 2.0, 2.0, 2.0, 8.0, 9.0, 3.5, 27.5,770,28.0 6.399423489029224,5,a-sust-i3,2020-21,Chelmsford - South Row,00560015, 1.0, 3.0, 4.0, 3.0, 7.0, 4.0, 2.3, 24.3,422,17.36625514403292 -3.175115207373272,1,a-sust-i3,2020-21,Chelsea - Chelsea High,00570505, 2.0, 1.0, 1.0, 3.0, 1.0, 4.0, 0.0, 12.0,1455,121.25 --Infinity,1,a-sust-i3,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity +NA,NA,a-sust-i3,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity -0.1105990783410141,1,a-sust-i3,2020-21,Chelsea - Clark Avenue School,00570050, 0.0, 3.0, 1.0, 1.0, 1.0, 2.0, 0.0, 8.0,704,88.0 1.1402238314680706,1.14,a-sust-i3,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 1.0, 2.0, 0.0, 2.0, 0.0, 2.0, 0.0, 7.0,521,74.42857142857143 3.6346878927524084,3.63,a-sust-i3,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 4.0, 1.0, 2.0, 0.0, 3.0, 1.0, 11.0,521,47.36363636363637 @@ -20650,7 +20650,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.126951092611862,5,a-sust-i3,2020-21,Concord - Thoreau,00670020, 1.3, 5.6, 1.0, 3.1, 4.9, 4.3, 1.5, 21.7,441,20.322580645161292 6.455501152073733,5,a-sust-i3,2020-21,Concord - Willard,00670030, 1.3, 5.7, 0.0, 4.0, 10.3, 4.3, 0.0, 25.6,429,16.7578125 4.161698652511229,4.16,a-sust-i3,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 6.5, 8.5, 2.3, 3.0, 1.9, 5.8, 3.7, 31.6,1316,41.64556962025316 --Infinity,1,a-sust-i3,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +NA,NA,a-sust-i3,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity 7.1943540330637115,5,a-sust-i3,2020-21,Conway - Conway Grammar,00680005, 0.0, 5.3, 2.0, 1.0, 2.0, 3.0, 1.0, 14.3,125,8.741258741258742 3.50561797752809,3.51,a-sust-i3,2020-21,Danvers - Danvers High,00710505, 4.8, 1.0, 1.0, 1.0, 5.0, 4.0, 1.0, 17.8,868,48.764044943820224 4.7974677652097,4.8,a-sust-i3,2020-21,Danvers - Great Oak,00710015, 3.0, 2.0, 0.0, 1.0, 1.5, 2.0, 0.5, 9.9,344,34.74747474747475 @@ -20736,11 +20736,11 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.341013824884793,5,a-sust-i3,2020-21,Everett - Adams School,00930003, 0.0, 2.0, 0.0, 1.0, 1.0, 2.0, 0.0, 6.0,108,18.0 6.686635944700461,5,a-sust-i3,2020-21,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0,57,14.25 -39.48847926267282,1,a-sust-i3,2020-21,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,2061,515.25 --Infinity,1,a-sust-i3,2020-21,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity +NA,NA,a-sust-i3,2020-21,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,892,Infinity -0.3033095936321748,1,a-sust-i3,2020-21,Everett - Lafayette School,00930038, 0.0, 0.0, 3.0, 1.0, 2.0, 3.0, 2.0, 11.0,991,90.0909090909091 0.44239631336405505,1,a-sust-i3,2020-21,Everett - Madeline English School,00930018, 0.0, 1.0, 2.0, 1.0, 3.0, 1.0, 1.0, 9.0,738,82.0 --Infinity,1,a-sust-i3,2020-21,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,915,Infinity --Infinity,1,a-sust-i3,2020-21,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +NA,NA,a-sust-i3,2020-21,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,915,Infinity +NA,NA,a-sust-i3,2020-21,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity 6.545826932923706,5,a-sust-i3,2020-21,Everett - Webster Extension,00930001, 0.0, 1.0, 0.0, 2.0, 2.0, 3.0, 1.0, 9.0,142,15.777777777777779 5.334869431643624,5,a-sust-i3,2020-21,Everett - Webster School,00930015, 0.0, 1.0, 3.0, 2.0, 2.0, 3.0, 1.0, 12.0,347,28.916666666666668 -2.080191588954606,1,a-sust-i3,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 5.9, 5.0, 0.9, 0.0, 1.0, 0.0, 0.0, 12.7,1389,109.37007874015748 @@ -20802,7 +20802,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.564306661080855,2.56,a-sust-i3,2020-21,Framingham - Potter Road,01000039, 0.0, 0.0, 1.0, 2.0, 2.6, 1.5, 1.6, 8.8,519,58.97727272727272 1.5819019689987426,1.58,a-sust-i3,2020-21,Framingham - Walsh Middle,01000310, 0.0, 1.0, 2.0, 2.0, 2.0, 4.0, 0.0, 11.0,766,69.63636363636364 3.2430503939348894,3.24,a-sust-i3,2020-21,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 1.0, 2.1, 4.0, 1.6, 0.7, 9.3,480,51.61290322580645 --Infinity,1,a-sust-i3,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +NA,NA,a-sust-i3,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity 4.945358788676761,4.95,a-sust-i3,2020-21,Franklin - Annie Sullivan Middle School,01010040, 1.0, 4.0, 1.0, 0.0, 3.0, 1.5, 0.0, 10.5,348,33.142857142857146 4.728110599078341,4.73,a-sust-i3,2020-21,Franklin - Davis Thayer,01010035, 0.0, 1.0, 1.0, 0.0, 2.0, 2.0, 0.0, 6.0,213,35.5 7.490294651584974,5,a-sust-i3,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 2.0, 0.8, 4.0, 5.4, 1.0, 0.0, 13.2,73,5.53030303030303 @@ -20822,7 +20822,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.709165386584741,3.71,a-sust-i3,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 2.0, 4.0, 3.0, 0.0, 0.0, 9.0,419,46.55555555555556 5.204875317627804,5,a-sust-i3,2020-21,Frontier - Frontier Regional,06700505, 1.0, 5.0, 2.0, 5.0, 5.6, 0.8, 2.0, 21.4,649,30.32710280373832 5.807421780257094,5,a-sust-i3,2020-21,Gardner - Elm Street School,01030001, 3.0, 2.0, 2.0, 2.0, 4.0, 5.0, 1.0, 19.0,452,23.789473684210527 --Infinity,1,a-sust-i3,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i3,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity -0.4216589861751155,1,a-sust-i3,2020-21,Gardner - Gardner High,01030505, 1.0, 3.0, 1.0, 1.0, 1.0, 1.0, 0.0, 8.0,731,91.375 4.143211627082595,4.14,a-sust-i3,2020-21,Gardner - Gardner Middle School,01030405, 2.0, 2.0, 2.0, 2.0, 0.0, 5.0, 0.0, 13.0,544,41.84615384615385 6.435716399611043,5,a-sust-i3,2020-21,Gardner - Waterford Street,01030020, 1.0, 2.0, 1.0, 7.8, 6.0, 4.0, 0.0, 21.8,370,16.972477064220183 @@ -20830,8 +20830,8 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.374528697109342,5,a-sust-i3,2020-21,Gateway - Gateway Regional High,06720505, 0.0, 1.0, 2.0, 4.0, 2.0, 2.0, 0.0, 11.0,194,17.636363636363637 2.1474654377880182,2.15,a-sust-i3,2020-21,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,127,63.5 5.465437788018433,5,a-sust-i3,2020-21,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 0.0, 2.0, 7.0, 2.0, 12.0,330,27.5 --Infinity,1,a-sust-i3,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity --Infinity,1,a-sust-i3,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +NA,NA,a-sust-i3,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +NA,NA,a-sust-i3,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity -5.517665130568355,1,a-sust-i3,2020-21,Georgetown - Penn Brook,01050010, 0.0, 1.0, 0.0, 0.8, 0.7, 1.0, 1.0, 4.5,660,146.66666666666666 7.4777265745007675,5,a-sust-i3,2020-21,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,17,5.666666666666667 4.589861751152074,4.59,a-sust-i3,2020-21,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,111,37.0 @@ -20848,7 +20848,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.060392917778317,5,a-sust-i3,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 1.0, 2.0, 3.0, 1.0, 7.0, 5.0, 0.0, 19.0,606,31.894736842105264 5.81874039938556,5,a-sust-i3,2020-21,Gloucester - Veterans Memorial,01070045, 1.0, 0.0, 0.0, 3.0, 2.0, 2.0, 1.0, 9.0,213,23.666666666666668 5.824884792626728,5,a-sust-i3,2020-21,Gloucester - West Parish,01070050, 2.0, 0.0, 1.0, 3.0, 5.0, 2.0, 2.0, 15.0,354,23.6 --Infinity,1,a-sust-i3,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity +NA,NA,a-sust-i3,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4,Infinity 3.519713261648745,3.52,a-sust-i3,2020-21,Grafton - Grafton High School,01100505, 4.0, 4.0, 2.0, 1.0, 4.0, 1.0, 2.0, 18.0,875,48.611111111111114 4.418098031001256,4.42,a-sust-i3,2020-21,Grafton - Grafton Middle,01100305, 0.0, 2.2, 3.0, 1.0, 4.0, 3.0, 0.0, 13.2,513,38.86363636363637 6.025016458196181,5,a-sust-i3,2020-21,Grafton - Millbury Street Elementary School,01100200, 3.0, 4.0, 3.0, 6.4, 10.0, 3.0, 0.0, 29.4,630,21.42857142857143 @@ -20867,7 +20867,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.3640552995391704,1.36,a-sust-i3,2020-21,Greenfield - Greenfield Middle,01140305, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 5.0,360,72.0 5.935483870967743,5,a-sust-i3,2020-21,Greenfield - Newton School,01140035, 3.0, 4.0, 0.0, 0.0, 3.0, 0.0, 0.0, 10.0,224,22.4 7.6018433179723495,5,a-sust-i3,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 1.0, 1.0, 3.0, 3.0, 1.0, 3.0, 0.5, 12.5,54,4.32 --Infinity,1,a-sust-i3,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity +NA,NA,a-sust-i3,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,943,Infinity 7.573732718894009,5,a-sust-i3,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, 1.0, 1.0, 2.0, 3.0, 0.0, 1.0, 8.0,37,4.625 2.7260624679979517,2.73,a-sust-i3,2020-21,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 1.0, 3.0, 2.0, 3.0, 0.0, 9.0,515,57.22222222222222 2.462365591397849,2.46,a-sust-i3,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 2.0, 1.0, 3.0, 6.0, 0.0, 12.0,721,60.083333333333336 @@ -20892,7 +20892,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.988071351399025,4.99,a-sust-i3,2020-21,Hampshire - Hampshire Regional High,06830505, 3.0, 4.9, 1.0, 4.0, 3.0, 3.0, 2.0, 20.9,683,32.67942583732058 6.617511520737327,5,a-sust-i3,2020-21,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 1.0, 0.0, 1.0, 1.8, 0.0, 3.8,57,15.0 4.798818025116966,4.8,a-sust-i3,2020-21,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 2.8, 6.3, 1.0, 2.0, 13.1,455,34.732824427480914 --Infinity,1,a-sust-i3,2020-21,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +NA,NA,a-sust-i3,2020-21,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity -1.003899326479972,1,a-sust-i3,2020-21,Hanover - Hanover High,01220505, 0.0, 0.0, 2.8, 1.0, 0.0, 4.0, 0.0, 7.8,762,97.6923076923077 -4.411674347158217,1,a-sust-i3,2020-21,Hanover - Hanover Middle,01220305, 1.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 6.0,808,134.66666666666666 1.5700731905665488,1.57,a-sust-i3,2020-21,Harvard - Bromfield,01250505, 2.0, 1.5, 0.0, 0.0, 3.0, 0.0, 2.0, 8.5,593,69.76470588235294 @@ -21017,7 +21017,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.795817086139667,3.8,a-sust-i3,2020-21,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 4.0, 6.0, 2.5, 0.5, 13.0,593,45.61538461538461 2.2281105990783407,2.23,a-sust-i3,2020-21,Leominster - Frances Drake School,01530010, 0.0, 1.0, 0.5, 3.5, 2.0, 1.0, 0.0, 8.0,501,62.625 4.503117375982652,4.5,a-sust-i3,2020-21,Leominster - Johnny Appleseed,01530025, 0.0, 1.5, 0.0, 4.0, 6.0, 5.5, 0.0, 17.0,645,37.94117647058823 --Infinity,1,a-sust-i3,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i3,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity 1.0217248189598422,1.02,a-sust-i3,2020-21,Leominster - Leominster High School,01530505, 2.0, 0.0, 2.0, 0.0, 3.0, 4.0, 3.0, 14.0,1060,75.71428571428571 6.894009216589862,5,a-sust-i3,2020-21,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,24,12.0 2.5822480464836706,2.58,a-sust-i3,2020-21,Leominster - Northwest,01530030, 0.0, 1.0, 2.5, 2.0, 1.5, 4.5, 0.0, 11.5,676,58.78260869565217 @@ -21075,10 +21075,10 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.724957555178268,5,a-sust-i3,2020-21,Lowell - Pyne Arts,01600018, 2.0, 3.0, 3.0, 6.0, 2.0, 2.0, 1.0, 19.0,469,24.68421052631579 3.5339038841342987,3.53,a-sust-i3,2020-21,Lowell - Rogers STEM Academy,01600005, 0.0, 4.0, 1.0, 4.0, 3.0, 5.0, 0.5, 17.5,848,48.457142857142856 5.661896677176813,5,a-sust-i3,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 1.0, 2.0, 4.0, 2.0, 3.0, 6.0, 1.0, 19.0,482,25.36842105263158 --Infinity,1,a-sust-i3,2020-21,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i3,2020-21,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity 6.653819298980589,5,a-sust-i3,2020-21,Lowell - Washington,01600055, 1.0, 4.0, 1.0, 3.0, 4.0, 3.0, 0.5, 16.5,241,14.606060606060606 0.9515031819179277,1,a-sust-i3,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 1.0, 3.0, 1.0, 4.0, 1.0, 0.5, 0.0, 10.5,803,76.47619047619048 --Infinity,1,a-sust-i3,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +NA,NA,a-sust-i3,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity 5.4863845831587765,5,a-sust-i3,2020-21,Ludlow - Chapin Street Elementary School,01610020, 0.0, 1.0, 3.0, 0.0, 2.0, 4.0, 1.0, 11.0,300,27.272727272727273 7.1525857654889915,5,a-sust-i3,2020-21,Ludlow - East Street Elementary School,01610010, 3.0, 6.0, 6.0, 4.0, 9.0, 7.0, 1.0, 36.0,331,9.194444444444445 -0.17851079311181267,1,a-sust-i3,2020-21,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 2.0, 0.0, 6.0, 1.5, 9.5,843,88.73684210526316 @@ -21120,7 +21120,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.434436531210724,5,a-sust-i3,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 3.4, 1.0, 0.0, 4.4,27,6.136363636363636 2.8518762343647137,2.85,a-sust-i3,2020-21,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 1.0, 7.0,391,55.857142857142854 5.4591537494763305,5,a-sust-i3,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 25.0, 14.0, 3.0, 1.0, 0.0, 0.0, 1.0, 44.0,1213,27.568181818181817 --Infinity,1,a-sust-i3,2020-21,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, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i3,2020-21,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, 0.0, 0.0,98,Infinity 3.1097858498238002,3.11,a-sust-i3,2020-21,Malden - Beebe,01650003, 3.0, 1.0, 2.0, 3.0, 2.0, 4.0, 2.0, 17.0,902,53.05882352941177 2.0487162606978275,2.05,a-sust-i3,2020-21,Malden - Ferryway,01650013, 1.0, 1.0, 2.0, 0.0, 4.0, 4.0, 2.0, 14.0,904,64.57142857142857 6.433179723502304,5,a-sust-i3,2020-21,Malden - Forestdale,01650027, 4.0, 6.0, 7.0, 4.0, 5.0, 5.0, 2.0, 33.0,561,17.0 @@ -21162,7 +21162,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.23141113463694,5,a-sust-i3,2020-21,Marshfield - South River,01710010, 0.0, 0.0, 1.8, 1.0, 7.5, 3.6, 1.0, 14.8,284,19.18918918918919 2.478060508916049,2.48,a-sust-i3,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.0, 2.0, 2.0, 3.0, 1.0, 1.0, 1.5, 11.5,689,59.91304347826087 5.920359210681791,5,a-sust-i3,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 1.0, 0.0, 0.0, 1.0, 3.8, 0.0, 2.0, 7.8,176,22.564102564102566 --Infinity,1,a-sust-i3,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i3,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity 1.1920122887864828,1.19,a-sust-i3,2020-21,Masconomet - Masconomet Regional High School,07050505, 0.0, 2.0, 1.0, 1.5, 4.5, 4.0, 2.0, 15.0,1108,73.86666666666666 4.57499628363312,4.57,a-sust-i3,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 2.0, 3.0, 0.0, 2.0, 6.0, 1.5, 1.0, 15.5,576,37.16129032258065 6.099078341013825,5,a-sust-i3,2020-21,Mashpee - Kenneth Coombs School,01720005, 0.0, 1.0, 3.0, 3.0, 6.0, 3.0, 0.0, 16.0,330,20.625 @@ -21218,7 +21218,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.254713028906577,4.25,a-sust-i3,2020-21,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 2.0, 6.0, 3.0, 0.0, 11.0,447,40.63636363636363 2.965437788018433,2.97,a-sust-i3,2020-21,Milford - Memorial,01850010, 2.0, 0.0, 0.0, 1.0, 3.0, 1.0, 1.0, 8.0,437,54.625 -49.926267281106,1,a-sust-i3,2020-21,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,1257,628.5 --Infinity,1,a-sust-i3,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i3,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity -87.1152073732719,1,a-sust-i3,2020-21,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1032,1032.0 -9.880184331797235,1,a-sust-i3,2020-21,Milford - Woodland,01850090, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 5.0,970,194.0 5.797537915666039,5,a-sust-i3,2020-21,Millbury - Elmwood Street,01860017, 0.5, 2.9, 2.0, 5.8, 6.3, 3.8, 0.0, 21.3,509,23.896713615023472 @@ -21307,7 +21307,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.695652173913043,5,a-sust-i3,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 6.0, 11.0, 8.0, 7.0, 8.0, 5.0, 1.0, 46.0,651,14.152173913043478 -6.7465437788018425,1,a-sust-i3,2020-21,New Bedford - Thomas R Rodman,02010125, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,160,160.0 5.811059907834101,5,a-sust-i3,2020-21,New Bedford - Trinity Day Academy,02010510, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 4.0,95,23.75 --Infinity,1,a-sust-i3,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +NA,NA,a-sust-i3,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity 2.3087557603686633,2.31,a-sust-i3,2020-21,New Bedford - William H Taylor,02010135, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 4.0,247,61.75 -60.38709677419355,1,a-sust-i3,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,742,742.0 6.919145370758273,5,a-sust-i3,2020-21,New Salem-Wendell - Swift River,07280015, 2.0, 0.0, 1.0, 4.0, 2.0, 2.0, 0.0, 11.0,129,11.727272727272727 @@ -21449,11 +21449,11 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.872503840245776,1,a-sust-i3,2020-21,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 1.5, 2.0, 0.0, 4.5,348,77.33333333333333 -4.40552995391705,1,a-sust-i3,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 5.0,673,134.6 6.380513495720869,5,a-sust-i3,2020-21,Petersham - Petersham Center,02340005, 1.0, 0.0, 2.0, 2.0, 0.0, 1.0, 1.0, 7.0,123,17.571428571428573 --Infinity,1,a-sust-i3,2020-21,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, 0.0, 0.0, 0.0,159,Infinity --Infinity,1,a-sust-i3,2020-21,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, 0.0, 0.0, 0.0,208,Infinity --Infinity,1,a-sust-i3,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity --Infinity,1,a-sust-i3,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity --Infinity,1,a-sust-i3,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +NA,NA,a-sust-i3,2020-21,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, 0.0, 0.0, 0.0,159,Infinity +NA,NA,a-sust-i3,2020-21,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, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i3,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +NA,NA,a-sust-i3,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,794,Infinity +NA,NA,a-sust-i3,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity 6.729227761485825,5,a-sust-i3,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 3.0, 0.0, 2.0, 2.5, 4.0, 1.7, 13.2,182,13.787878787878789 6.8018433179723505,5,a-sust-i3,2020-21,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 6.0, 3.0, 4.0, 0.0, 13.0,169,13.0 4.774193548387097,4.77,a-sust-i3,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 2.0, 0.0, 5.0, 1.0, 8.0,280,35.0 @@ -21499,7 +21499,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.7840178254924792,2.78,a-sust-i3,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 2.0, 1.0, 3.1, 3.0, 0.0, 9.1,515,56.5934065934066 6.527966453360125,5,a-sust-i3,2020-21,Quabbin - Ruggles Lane,07530030, 3.0, 4.0, 2.6, 1.8, 4.9, 4.8, 0.0, 21.1,337,15.971563981042653 4.9752827817343945,4.98,a-sust-i3,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 5.0, 0.0, 1.0, 0.0, 3.0, 1.0, 1.0, 11.0,361,32.81818181818182 --Infinity,1,a-sust-i3,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity +NA,NA,a-sust-i3,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173,Infinity 5.526771209760303,5,a-sust-i3,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.9, 3.0, 3.0, 0.0, 1.0, 6.0, 0.0, 13.9,373,26.834532374100718 6.049155145929339,5,a-sust-i3,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 3.0, 1.0, 2.0, 4.0, 2.0, 0.0, 12.0,254,21.166666666666668 7.2370711725550425,5,a-sust-i3,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 4.0, 3.0, 1.0, 7.0, 3.0, 0.0, 18.0,149,8.277777777777779 @@ -21541,7 +21541,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.500768049155146,2.5,a-sust-i3,2020-21,Revere - Abraham Lincoln,02480025, 2.0, 0.5, 0.5, 0.0, 1.5, 4.5, 0.0, 9.0,537,59.666666666666664 5.788018433179723,5,a-sust-i3,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 2.5, 2.0, 1.0, 1.5, 2.5, 2.5, 1.0, 13.0,312,24.0 4.330121491411814,4.33,a-sust-i3,2020-21,Revere - Garfield Elementary School,02480056, 3.0, 0.5, 2.5, 1.5, 2.5, 6.0, 0.5, 16.5,657,39.81818181818182 --Infinity,1,a-sust-i3,2020-21,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +NA,NA,a-sust-i3,2020-21,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity 1.6192839418645872,1.62,a-sust-i3,2020-21,Revere - Paul Revere,02480050, 2.0, 1.5, 0.5, 1.5, 1.0, 0.0, 0.0, 6.5,450,69.23076923076923 -13.44754676063974,1,a-sust-i3,2020-21,Revere - Revere High,02480505, 2.5, 0.0, 1.5, 3.5, 0.0, 1.0, 0.0, 8.5,1978,232.7058823529412 0.6267281105990781,1,a-sust-i3,2020-21,Revere - Rumney Marsh Academy,02480014, 0.0, 0.5, 0.5, 1.0, 3.5, 1.0, 1.0, 7.5,600,80.0 @@ -21561,7 +21561,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.2995391705069124,3.3,a-sust-i3,2020-21,Rockport - Rockport High,02520510, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 5.0,255,51.0 4.897081413210445,4.9,a-sust-i3,2020-21,Rockport - Rockport Middle,02520305, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 6.0,202,33.666666666666664 5.926267281105991,5,a-sust-i3,2020-21,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 1.8, 0.0, 0.0, 2.8,63,22.5 --Infinity,1,a-sust-i3,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1596,Infinity +NA,NA,a-sust-i3,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1596,Infinity 2.6253818671361255,2.63,a-sust-i3,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 2.0, 7.5, 5.0, 2.0, 3.2, 4.0, 3.0, 26.7,1557,58.31460674157304 4.966904063678258,4.97,a-sust-i3,2020-21,Salem - Bates,02580003, 0.0, 3.0, 1.0, 1.0, 2.0, 3.0, 1.0, 11.0,362,32.90909090909091 4.712749615975422,4.71,a-sust-i3,2020-21,Salem - Bentley Academy Innovation School,02580010, 2.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 9.0,321,35.666666666666664 @@ -21596,10 +21596,10 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.991551459293394,5,a-sust-i3,2020-21,Seekonk - George R Martin,02650007, 4.0, 1.0, 5.0, 4.0, 5.0, 5.0, 0.0, 24.0,523,21.791666666666668 3.7788018433179724,3.78,a-sust-i3,2020-21,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 1.0, 1.0, 3.0, 3.0, 2.0, 10.0,458,45.8 3.0733137829912023,3.07,a-sust-i3,2020-21,Seekonk - Seekonk High,02650505, 1.0, 0.0, 4.0, 1.0, 2.0, 2.0, 1.0, 11.0,588,53.45454545454545 --Infinity,1,a-sust-i3,2020-21,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity --Infinity,1,a-sust-i3,2020-21,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +NA,NA,a-sust-i3,2020-21,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +NA,NA,a-sust-i3,2020-21,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity -42.04608294930876,1,a-sust-i3,2020-21,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,543,543.0 --Infinity,1,a-sust-i3,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i3,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity 3.283274600162646,3.28,a-sust-i3,2020-21,Sharon - Sharon High,02660505, 2.0, 2.0, 3.0, 1.0, 6.1, 6.0, 2.0, 22.1,1131,51.17647058823529 2.648233486943164,2.65,a-sust-i3,2020-21,Sharon - Sharon Middle,02660305, 0.0, 2.0, 1.0, 3.0, 4.0, 4.0, 1.0, 15.0,871,58.06666666666667 -4.055299539170508,1,a-sust-i3,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 2.0, 2.0, 1.0, 2.0, 1.0, 2.0, 0.0, 10.0,1308,130.8 @@ -21627,7 +21627,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -12.73732718894009,1,a-sust-i3,2020-21,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,225,225.0 7.366751308818458,5,a-sust-i3,2020-21,Somerville - Capuano Early Childhood Center,02740005, 4.0, 5.8, 3.0, 5.8, 4.8, 4.0, 2.0, 29.4,202,6.870748299319728 2.4700460829493087,2.47,a-sust-i3,2020-21,Somerville - E Somerville Community,02740111, 2.0, 4.0, 1.0, 0.0, 3.0, 2.0, 0.0, 12.0,720,60.0 --Infinity,1,a-sust-i3,2020-21,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +NA,NA,a-sust-i3,2020-21,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity 5.030941408821593,5,a-sust-i3,2020-21,Somerville - John F Kennedy,02740083, 0.0, 2.0, 0.0, 2.0, 4.0, 2.0, 4.0, 14.0,451,32.214285714285715 6.617511520737327,5,a-sust-i3,2020-21,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,15,15.0 -2.767458348103508,1,a-sust-i3,2020-21,Somerville - Somerville High,02740505, 0.0, 5.0, 1.0, 2.0, 1.4, 0.0, 1.0, 10.4,1215,116.82692307692307 @@ -21676,12 +21676,12 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.4557823129251695,5,a-sust-i3,2020-21,Springfield - Early Childhood Education Center,02810001, 5.0, 4.0, 5.0, 1.0, 3.0, 3.0, 0.0, 21.0,124,5.904761904761905 6.218125960061444,5,a-sust-i3,2020-21,Springfield - Edward P. Boland School,02810010, 7.0, 3.0, 9.0, 5.0, 5.0, 1.0, 0.0, 30.0,580,19.333333333333332 5.894363700815314,5,a-sust-i3,2020-21,Springfield - Elias Brookings,02810030, 0.0, 1.0, 0.0, 3.0, 6.0, 2.0, 1.0, 13.0,297,22.846153846153847 --Infinity,1,a-sust-i3,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity 3.076804915514593,3.08,a-sust-i3,2020-21,Springfield - Forest Park Middle,02810325, 1.0, 3.0, 2.0, 1.0, 2.0, 2.0, 1.0, 12.0,641,53.416666666666664 5.493087557603686,5,a-sust-i3,2020-21,Springfield - Frank H Freedman,02810075, 1.0, 1.0, 0.0, 3.0, 3.0, 1.0, 1.0, 10.0,272,27.2 4.992481203007519,4.99,a-sust-i3,2020-21,Springfield - Frederick Harris,02810080, 1.0, 4.0, 4.0, 6.0, 3.0, 0.0, 1.0, 19.0,620,32.63157894736842 --Infinity,1,a-sust-i3,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity --Infinity,1,a-sust-i3,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i3,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i3,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity 5.399318773792827,5,a-sust-i3,2020-21,Springfield - German Gerena Community School,02810195, 3.0, 2.0, 4.0, 4.0, 5.0, 5.0, 0.0, 23.0,649,28.217391304347824 5.4562211981566815,5,a-sust-i3,2020-21,Springfield - Glenwood,02810065, 0.0, 2.0, 3.0, 3.0, 1.0, 1.0, 0.0, 10.0,276,27.6 5.553414327607876,5,a-sust-i3,2020-21,Springfield - Glickman Elementary,02810068, 0.0, 2.0, 0.0, 2.0, 4.0, 1.0, 2.0, 11.0,292,26.545454545454547 @@ -21696,7 +21696,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.441312008674436,5,a-sust-i3,2020-21,Springfield - Kiley Academy,02810316, 1.0, 2.8, 0.0, 1.0, 0.0, 1.0, 1.0, 6.8,115,16.911764705882355 4.804915514592934,4.8,a-sust-i3,2020-21,Springfield - Kiley Prep,02810315, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,104,34.666666666666664 4.670506912442396,4.67,a-sust-i3,2020-21,Springfield - Liberty,02810115, 1.0, 1.0, 2.0, 1.0, 2.0, 1.0, 0.0, 8.0,289,36.125 --Infinity,1,a-sust-i3,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +NA,NA,a-sust-i3,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity 2.535878867676103,2.54,a-sust-i3,2020-21,Springfield - Lincoln,02810120, 1.0, 2.0, 1.0, 0.0, 1.0, 1.0, 1.0, 7.0,415,59.285714285714285 2.301075268817204,2.3,a-sust-i3,2020-21,Springfield - Lyceum Academy,02810317, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 6.0,371,61.833333333333336 4.589861751152074,4.59,a-sust-i3,2020-21,Springfield - M Marcus Kiley Middle,02810330, 0.0, 1.0, 1.0, 4.0, 1.0, 5.0, 1.0, 13.0,481,37.0 @@ -21715,8 +21715,8 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.940577249575552,2.94,a-sust-i3,2020-21,Springfield - Springfield Central High,02810500, 5.0, 7.0, 4.0, 7.0, 4.0, 8.0, 3.0, 38.0,2086,54.89473684210526 4.202764976958525,4.2,a-sust-i3,2020-21,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 1.0, 5.0,206,41.2 4.592741935483871,4.59,a-sust-i3,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 2.0, 4.0, 4.0, 7.0, 8.0, 6.0, 1.0, 32.0,1183,36.96875 --Infinity,1,a-sust-i3,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity --Infinity,1,a-sust-i3,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +NA,NA,a-sust-i3,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +NA,NA,a-sust-i3,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity 7.460171165240291,5,a-sust-i3,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 3.0, 0.0, 2.0, 2.0, 0.0, 0.0, 7.0,41,5.857142857142857 7.119303635432668,5,a-sust-i3,2020-21,Springfield - Springfield Public Day High School,02810550, 1.0, 2.0, 1.0, 1.0, 2.0, 2.0, 0.0, 9.0,86,9.555555555555555 7.42652329749104,5,a-sust-i3,2020-21,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 3.0, 3.0, 1.0, 2.0, 0.0, 9.0,56,6.222222222222222 @@ -21729,7 +21729,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.531210724759112,4.53,a-sust-i3,2020-21,Springfield - Washington,02810185, 0.0, 4.0, 2.0, 1.0, 2.0, 2.0, 0.0, 11.0,414,37.63636363636363 0.9283619606200243,1,a-sust-i3,2020-21,Springfield - White Street,02810190, 1.0, 0.5, 0.0, 1.0, 0.0, 3.0, 0.0, 5.5,422,76.72727272727273 5.091653865847414,5,a-sust-i3,2020-21,Springfield - William N. DeBerry,02810045, 1.0, 2.0, 1.0, 2.0, 0.0, 2.0, 1.0, 9.0,284,31.555555555555557 --Infinity,1,a-sust-i3,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i3,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity 5.400714544607259,5,a-sust-i3,2020-21,Stoneham - Colonial Park,02840005, 0.0, 0.0, 1.0, 0.4, 6.5, 1.0, 0.0, 8.9,251,28.202247191011235 5.113752122241087,5,a-sust-i3,2020-21,Stoneham - Robin Hood,02840025, 1.0, 0.0, 0.0, 0.8, 2.0, 7.6, 0.0, 11.4,357,31.31578947368421 5.324742057827984,5,a-sust-i3,2020-21,Stoneham - South,02840030, 1.0, 0.0, 0.0, 2.7, 3.6, 3.0, 1.0, 11.3,328,29.02654867256637 @@ -21744,7 +21744,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -4.135176651305683,1,a-sust-i3,2020-21,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.6, 0.3, 0.9, 0.0, 1.8,237,131.66666666666666 -4.551540140674268,1,a-sust-i3,2020-21,Stoughton - Stoughton High,02850505, 0.4, 0.9, 0.4, 0.0, 3.0, 2.9, 0.0, 7.6,1035,136.1842105263158 5.85307671455679,5,a-sust-i3,2020-21,Sturbridge - Burgess Elementary,02870005, 1.0, 3.0, 2.0, 2.0, 14.0, 9.0, 3.0, 34.0,792,23.294117647058822 --Infinity,1,a-sust-i3,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,853,Infinity +NA,NA,a-sust-i3,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,853,Infinity 2.21579532814238,2.22,a-sust-i3,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 3.0, 2.0, 2.0, 0.0, 0.5, 5.0, 2.0, 14.5,910,62.758620689655174 1.8760880696364566,1.88,a-sust-i3,2020-21,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.5, 2.5, 1.5, 0.0, 4.5,299,66.44444444444444 3.75838660125861,3.76,a-sust-i3,2020-21,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 1.0, 3.8, 1.5, 1.5, 1.5, 9.3,428,46.02150537634408 @@ -21769,7 +21769,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -13.064097193129449,1,a-sust-i3,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 1.0, 3.0, 4.0, 2.0, 1.0, 0.0, 0.0, 11.0,2514,228.54545454545453 3.7877304147465436,3.79,a-sust-i3,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 1.0, 2.0, 0.0, 4.8, 2.0, 2.0, 1.0, 12.8,585,45.703125 4.752924494859978,4.75,a-sust-i3,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 1.0, 3.0, 3.0, 2.0, 4.5, 6.0, 0.0, 19.5,687,35.23076923076923 --Infinity,1,a-sust-i3,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +NA,NA,a-sust-i3,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity 3.262672811059908,3.26,a-sust-i3,2020-21,Taunton - Benjamin Friedman Middle,02930315, 0.0, 1.0, 2.0, 2.0, 2.0, 7.0, 1.0, 15.0,771,51.4 3.821812596006144,3.82,a-sust-i3,2020-21,Taunton - East Taunton Elementary,02930010, 0.0, 1.0, 0.0, 1.0, 2.0, 7.0, 1.0, 12.0,544,45.333333333333336 1.248847926267281,1.25,a-sust-i3,2020-21,Taunton - Edmund Hatch Bennett,02930007, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0,293,73.25 @@ -21780,7 +21780,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.797235023041474,3.8,a-sust-i3,2020-21,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 2.0, 2.0, 5.0, 1.0, 10.0,456,45.6 1.1797235023041472,1.18,a-sust-i3,2020-21,Taunton - Joseph H Martin,02930042, 1.0, 0.0, 1.0, 0.0, 4.0, 3.0, 0.0, 9.0,666,74.0 3.7983193277310927,3.8,a-sust-i3,2020-21,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 2.0, 5.0, 9.0, 1.0, 17.0,775,45.588235294117645 --Infinity,1,a-sust-i3,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity +NA,NA,a-sust-i3,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100,Infinity -6.6381133098400635,1,a-sust-i3,2020-21,Taunton - Taunton High,02930505, 1.0, 4.0, 0.0, 1.0, 2.0, 9.0, 0.0, 17.0,2700,158.8235294117647 5.780928748670684,5,a-sust-i3,2020-21,Tewksbury - Heath-Brook,02950010, 5.0, 1.0, 1.0, 1.0, 1.0, 4.0, 0.0, 13.0,313,24.076923076923077 5.263824884792626,5,a-sust-i3,2020-21,Tewksbury - John F. Ryan,02950023, 1.0, 5.0, 1.0, 3.0, 1.0, 5.0, 0.0, 16.0,475,29.6875 @@ -21807,11 +21807,11 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.513453248104653,5,a-sust-i3,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.1,50,16.129032258064516 6.371891740157665,5,a-sust-i3,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 2.2, 3.2, 6.7, 1.9, 1.5, 2.2, 2.0, 19.7,348,17.664974619289342 4.175644896445786,4.18,a-sust-i3,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 3.3, 4.0, 1.0, 0.1, 3.0, 4.0, 2.0, 17.4,722,41.49425287356322 --Infinity,1,a-sust-i3,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i3,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity 6.17113942351134,5,a-sust-i3,2020-21,Uxbridge - Taft Early Learning Center,03040005, 0.5, 0.8, 3.6, 6.0, 9.6, 5.0, 0.0, 25.5,506,19.84313725490196 4.050032916392364,4.05,a-sust-i3,2020-21,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 1.0, 0.0, 5.0, 5.0, 2.0, 14.0,600,42.857142857142854 3.465437788018433,3.47,a-sust-i3,2020-21,Uxbridge - Whitin Intermediate,03040405, 1.0, 0.0, 1.0, 2.0, 4.0, 1.0, 1.0, 10.0,492,49.2 --Infinity,1,a-sust-i3,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +NA,NA,a-sust-i3,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity 6.018433179723503,5,a-sust-i3,2020-21,Wachusett - Central Tree Middle,07750310, 0.0, 2.0, 2.0, 2.0, 4.0, 4.0, 2.0, 16.0,344,21.5 5.4863845831587765,5,a-sust-i3,2020-21,Wachusett - Chocksett Middle School,07750315, 0.0, 4.0, 0.0, 1.0, 4.0, 2.0, 0.0, 11.0,300,27.272727272727273 5.766951942067149,5,a-sust-i3,2020-21,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 2.5, 8.0, 4.0, 2.0, 1.0, 17.5,424,24.228571428571428 @@ -21856,7 +21856,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.3923633969716915,4.39,a-sust-i3,2020-21,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 1.0, 7.0,274,39.142857142857146 6.099964551577455,5,a-sust-i3,2020-21,Wareham - John William Decas,03100003, 1.0, 0.0, 3.5, 3.5, 10.5, 6.5, 1.0, 26.0,536,20.615384615384617 5.225806451612903,5,a-sust-i3,2020-21,Wareham - Minot Forest,03100017, 1.0, 0.5, 2.0, 1.0, 1.0, 4.0, 0.5, 10.0,301,30.1 --Infinity,1,a-sust-i3,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +NA,NA,a-sust-i3,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity 3.3214834320825104,3.32,a-sust-i3,2020-21,Wareham - Wareham Middle,03100305, 1.0, 1.0, 0.0, 2.0, 2.0, 3.5, 1.0, 10.5,533,50.76190476190476 4.281582710948673,4.28,a-sust-i3,2020-21,Wareham - Wareham Senior High,03100505, 0.0, 3.0, 0.0, 2.0, 2.5, 6.0, 1.0, 14.5,585,40.3448275862069 4.484529295589203,4.48,a-sust-i3,2020-21,Watertown - Cunniff,03140015, 0.0, 1.0, 1.0, 1.0, 3.0, 1.0, 0.0, 7.0,267,38.142857142857146 @@ -22034,7 +22034,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.4262672811059907,3.43,a-sust-i3,2020-21,Worcester - Tatnuck,03480230, 0.0, 3.0, 3.0, 0.0, 1.0, 1.0, 0.0, 8.0,397,49.625 0.027649769585253194,1,a-sust-i3,2020-21,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,346,86.5 0.8294930875576038,1,a-sust-i3,2020-21,Worcester - Union Hill School,03480240, 1.0, 0.0, 1.0, 1.0, 2.0, 0.0, 0.0, 5.0,389,77.8 --Infinity,1,a-sust-i3,2020-21,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +NA,NA,a-sust-i3,2020-21,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity 4.689117334278625,4.69,a-sust-i3,2020-21,Worcester - Vernon Hill School,03480280, 1.0, 0.0, 2.0, 4.0, 4.0, 2.0, 0.0, 13.0,467,35.92307692307692 6.6994367639528924,5,a-sust-i3,2020-21,Worcester - Wawecus Road School,03480026, 0.0, 2.0, 3.0, 1.0, 1.0, 1.0, 1.0, 9.0,127,14.11111111111111 5.411674347158218,5,a-sust-i3,2020-21,Worcester - West Tatnuck,03480260, 0.0, 0.0, 4.0, 2.0, 2.0, 3.0, 1.0, 12.0,337,28.083333333333332 @@ -22072,7 +22072,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.009216589861751,5,a-sust-i3,2019-20,Agawam - James Clark School,00050030, 2.1, 4.0, 5.0, 4.0, 5.8, 7.0, 0.1, 28.0,301,10.75 5.402597402597402,5,a-sust-i3,2019-20,Agawam - Roberta G. Doering School,00050303, 3.9, 3.0, 1.0, 2.0, 6.0, 4.0, 1.0, 20.9,589,28.181818181818183 6.49218132387251,5,a-sust-i3,2019-20,Agawam - Robinson Park,00050025, 2.0, 4.0, 5.0, 3.0, 4.9, 5.0, 0.0, 23.9,391,16.359832635983263 --Infinity,1,a-sust-i3,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity +NA,NA,a-sust-i3,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,653,Infinity 6.006912442396313,5,a-sust-i3,2019-20,Amesbury - Amesbury Elementary,00070005, 0.0, 1.8, 0.9, 1.8, 7.7, 3.8, 0.0, 16.0,346,21.625 1.411383733964379,1.41,a-sust-i3,2019-20,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.9, 1.9, 2.6, 1.5, 0.5, 7.4,529,71.48648648648648 2.572452636968766,2.57,a-sust-i3,2019-20,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,53,58.888888888888886 @@ -22093,7 +22093,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.724357451660412,5,a-sust-i3,2019-20,Andover - South Elementary,00090020, 0.9, 2.9, 0.0, 2.8, 5.5, 6.3, 1.0, 19.4,479,24.690721649484537 6.403890851929976,5,a-sust-i3,2019-20,Andover - West Elementary,00090025, 2.8, 4.0, 2.0, 5.9, 8.4, 8.8, 2.5, 34.3,594,17.31778425655977 6.110133594004561,5,a-sust-i3,2019-20,Andover - Wood Hill Middle School,00090350, 3.0, 1.9, 1.0, 1.0, 2.0, 9.0, 2.0, 19.8,406,20.505050505050505 --Infinity,1,a-sust-i3,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity +NA,NA,a-sust-i3,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525,Infinity 0.30496550595806093,1,a-sust-i3,2019-20,Arlington - Arlington High,00100505, 3.0, 4.5, 2.0, 1.4, 4.0, 0.0, 2.0, 16.9,1411,83.49112426035504 5.7065694995177365,5,a-sust-i3,2019-20,Arlington - Brackett,00100010, 8.5, 5.5, 0.0, 1.0, 4.0, 1.5, 1.0, 21.5,535,24.88372093023256 5.09984639016897,5,a-sust-i3,2019-20,Arlington - Cyrus E Dallin,00100025, 3.0, 3.0, 2.0, 1.3, 4.7, 1.0, 0.0, 15.0,472,31.466666666666665 @@ -22122,7 +22122,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.225806451612903,1.23,a-sust-i3,2019-20,Athol-Royalston - Royalston Community School,06150050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,147,73.5 4.25,4.25,a-sust-i3,2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 7.0, 9.2, 4.0, 4.7, 3.2, 1.0, 3.0, 32.0,1302,40.6875 4.765659668885475,4.77,a-sust-i3,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 1.0, 1.0, 1.0, 1.0, 6.8, 0.0, 10.8,379,35.09259259259259 --Infinity,1,a-sust-i3,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity +NA,NA,a-sust-i3,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity 2.3552373511074256,2.36,a-sust-i3,2019-20,Attleboro - Attleboro High,00160505, 2.0, 5.9, 5.0, 3.0, 4.0, 8.0, 1.0, 28.9,1770,61.24567474048443 3.7603686635944698,3.76,a-sust-i3,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 1.0, 3.0, 1.0, 2.0, 3.0, 2.5, 1.0, 13.5,621,46.0 6.233486943164362,5,a-sust-i3,2019-20,Attleboro - Early Learning Center,00160008, 0.0, 1.0, 0.0, 3.9, 1.8, 1.9, 1.0, 9.6,184,19.166666666666668 @@ -22447,7 +22447,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.597642970461585,5,a-sust-i3,2019-20,Chelmsford - McCarthy Middle School,00560310, 2.0, 1.0, 1.0, 6.0, 11.0, 6.0, 3.5, 30.5,795,26.065573770491802 6.504414172616937,5,a-sust-i3,2019-20,Chelmsford - South Row,00560015, 3.0, 1.0, 2.0, 2.0, 10.0, 7.0, 2.3, 27.3,443,16.227106227106226 -3.746962714704651,1,a-sust-i3,2019-20,Chelsea - Chelsea High,00570505, 1.0, 3.0, 0.0, 2.0, 2.0, 3.0, 0.0, 11.0,1402,127.45454545454545 --Infinity,1,a-sust-i3,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i3,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity 0.004608294930875314,1,a-sust-i3,2019-20,Chelsea - Clark Avenue School,00570050, 0.0, 2.0, 2.0, 3.0, 0.0, 1.0, 0.0, 8.0,694,86.75 2.976958525345622,2.98,a-sust-i3,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 3.0, 3.0, 0.0, 2.0, 0.0, 2.0, 0.0, 10.0,545,54.5 2.603174603174603,2.6,a-sust-i3,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 3.0, 2.0, 1.0, 2.0, 0.0, 1.0, 9.0,527,58.55555555555556 @@ -22575,16 +22575,16 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.240980105653592,5,a-sust-i3,2019-20,Easton - Parkview Elementary,00880015, 1.0, 1.8, 1.0, 1.5, 7.1, 4.0, 0.0, 16.4,313,19.085365853658537 4.038827336013335,4.04,a-sust-i3,2019-20,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.9, 1.9, 6.5, 9.0, 0.5, 18.8,808,42.97872340425532 6.6990300953268225,5,a-sust-i3,2019-20,Edgartown - Edgartown Elementary,00890005, 0.2, 4.3, 2.7, 5.3, 9.3, 6.0, 0.0, 27.7,391,14.115523465703971 --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity 7.182795698924732,5,a-sust-i3,2019-20,Erving - Erving Elementary,00910030, 1.0, 1.0, 3.0, 5.0, 2.0, 1.0, 2.0, 15.0,133,8.866666666666667 -6.031787830339509,1,a-sust-i3,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 1.8, 1.0, 1.0, 0.0, 5.0, 0.0, 9.8,1492,152.24489795918367 6.5368663594470044,5,a-sust-i3,2019-20,Everett - Adams School,00930003, 0.0, 2.0, 0.0, 1.0, 2.0, 3.0, 0.0, 8.0,127,15.875 6.894009216589862,5,a-sust-i3,2019-20,Everett - Devens School,00930030, 0.0, 0.0, 1.0, 2.0, 1.0, 1.0, 0.0, 5.0,60,12.0 -28.811059907834103,1,a-sust-i3,2019-20,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 5.0,1997,399.4 --Infinity,1,a-sust-i3,2019-20,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,913,Infinity +NA,NA,a-sust-i3,2019-20,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,913,Infinity 0.31182795698924665,1,a-sust-i3,2019-20,Everett - Lafayette School,00930038, 2.0, 1.0, 2.0, 2.0, 1.0, 3.0, 1.0, 12.0,1001,83.41666666666667 0.10445468509984569,1,a-sust-i3,2019-20,Everett - Madeline English School,00930018, 0.0, 1.0, 2.0, 1.0, 3.0, 2.0, 0.0, 9.0,771,85.66666666666667 --Infinity,1,a-sust-i3,2019-20,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity +NA,NA,a-sust-i3,2019-20,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,969,Infinity -21.5852534562212,1,a-sust-i3,2019-20,Everett - Sumner G. Whittier School,00930010, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,642,321.0 -30.89400921658987,1,a-sust-i3,2019-20,Everett - Webster Extension,00930001, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,211,422.0 6.677148278666305,5,a-sust-i3,2019-20,Everett - Webster School,00930015, 1.0, 3.5, 2.0, 5.0, 5.0, 9.0, 0.0, 25.5,366,14.352941176470589 @@ -22647,7 +22647,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.4985676921160798,1.5,a-sust-i3,2019-20,Framingham - Potter Road,01000039, 0.0, 0.0, 1.0, 2.0, 2.3, 1.5, 0.6, 7.4,522,70.54054054054053 1.5902806870548802,1.59,a-sust-i3,2019-20,Framingham - Walsh Middle,01000310, 0.0, 1.0, 1.5, 2.5, 2.0, 4.0, 0.0, 11.0,765,69.54545454545455 3.3227959860459104,3.32,a-sust-i3,2019-20,Framingham - Woodrow Wilson,01000055, 0.0, 2.0, 0.0, 1.0, 3.0, 4.0, 0.7, 10.7,543,50.74766355140187 --Infinity,1,a-sust-i3,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i3,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity 4.47926267281106,4.48,a-sust-i3,2019-20,Franklin - Annie Sullivan Middle School,01010040, 3.0, 3.0, 0.0, 0.5, 3.0, 0.5, 0.0, 10.0,382,38.2 4.513056835637481,4.51,a-sust-i3,2019-20,Franklin - Davis Thayer,01010035, 0.0, 0.0, 1.0, 0.0, 2.0, 3.0, 0.0, 6.0,227,37.833333333333336 7.258665598076538,5,a-sust-i3,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 1.0, 0.8, 6.0, 5.0, 1.0, 0.0, 13.8,111,8.043478260869565 @@ -22667,7 +22667,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.346878927524089,4.35,a-sust-i3,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 1.0, 2.0, 5.0, 2.0, 1.0, 0.0, 11.0,436,39.63636363636363 5.54598928477764,5,a-sust-i3,2019-20,Frontier - Frontier Regional,06700505, 1.0, 4.0, 3.0, 3.8, 4.8, 4.0, 4.0, 24.6,655,26.6260162601626 5.409653165170992,5,a-sust-i3,2019-20,Gardner - Elm Street School,01030001, 1.0, 2.0, 2.0, 3.0, 3.0, 6.0, 2.0, 19.0,534,28.105263157894736 --Infinity,1,a-sust-i3,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i3,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity 0.062211981566820014,1,a-sust-i3,2019-20,Gardner - Gardner High,01030505, 1.0, 2.0, 2.0, 1.0, 1.0, 1.0, 0.0, 8.0,689,86.125 4.399385560675883,4.4,a-sust-i3,2019-20,Gardner - Gardner Middle School,01030405, 4.0, 3.0, 2.0, 1.0, 0.0, 5.0, 0.0, 15.0,586,39.06666666666667 6.597030209933436,5,a-sust-i3,2019-20,Gardner - Waterford Street,01030020, 3.0, 3.0, 3.0, 9.0, 5.0, 3.0, 1.0, 27.0,411,15.222222222222221 @@ -22675,8 +22675,8 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.546614675646933,5,a-sust-i3,2019-20,Gateway - Gateway Regional High,06720505, 0.0, 3.0, 2.0, 3.0, 2.0, 3.0, 0.0, 13.0,205,15.76923076923077 4.423963133640553,4.42,a-sust-i3,2019-20,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 2.0, 5.0,194,38.8 5.419354838709677,5,a-sust-i3,2019-20,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 2.0, 3.0, 4.0, 1.0, 11.0,308,28.0 --Infinity,1,a-sust-i3,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i3,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +NA,NA,a-sust-i3,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i3,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity -1.772296015180266,1,a-sust-i3,2019-20,Georgetown - Penn Brook,01050010, 0.0, 1.0, 0.0, 0.8, 0.7, 2.3, 2.0, 6.8,721,106.02941176470588 5.098480969448711,5,a-sust-i3,2019-20,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.7, 2.7,85,31.48148148148148 4.774193548387097,4.77,a-sust-i3,2019-20,Gill-Montague - Gill Elementary,06740005, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 4.0,140,35.0 @@ -22693,7 +22693,7 @@ NaN,NaN,a-sust-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.438059094605584,4.44,a-sust-i3,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 1.0, 1.0, 1.0, 3.0, 5.0, 6.0, 0.0, 17.0,657,38.64705882352941 6.496986884083658,5,a-sust-i3,2019-20,Gloucester - Veterans Memorial,01070045, 2.0, 0.0, 2.0, 4.0, 2.0, 2.0, 1.0, 13.0,212,16.307692307692307 5.781874039938557,5,a-sust-i3,2019-20,Gloucester - West Parish,01070050, 1.0, 0.0, 1.0, 2.0, 4.0, 4.0, 3.0, 15.0,361,24.066666666666666 -NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +NA,NA,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN 4.172920781215712,4.17,a-sust-i3,2019-20,Grafton - Grafton High School,01100505, 1.0, 6.0, 3.0, 1.0, 6.0, 1.0, 3.0, 21.0,872,41.523809523809526 5.401706049612708,5,a-sust-i3,2019-20,Grafton - Grafton Middle,01100305, 3.0, 5.8, 1.0, 4.0, 3.0, 2.0, 0.0, 18.8,530,28.191489361702125 6.251671951016006,5,a-sust-i3,2019-20,Grafton - Millbury Street Elementary School,01100200, 6.5, 3.0, 5.0, 7.4, 12.0, 2.0, 0.0, 35.9,681,18.969359331476323 @@ -22712,7 +22712,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.97282695058001,4.97,a-sust-i3,2019-20,Greenfield - Greenfield Middle,01140305, 2.0, 0.0, 0.0, 1.8, 4.0, 1.8, 2.0, 11.6,381,32.8448275862069 5.989107666527022,5,a-sust-i3,2019-20,Greenfield - Newton School,01140035, 6.0, 2.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0,240,21.818181818181817 7.328188329354283,5,a-sust-i3,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 2.0, 1.6, 5.0, 2.0, 2.0, 3.0, 1.0, 16.6,121,7.289156626506023 --Infinity,1,a-sust-i3,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +NA,NA,a-sust-i3,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity 7.331797235023042,5,a-sust-i3,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, 1.0, 1.0, 3.0, 2.0, 0.0, 1.0, 8.0,58,7.25 3.944700460829493,3.94,a-sust-i3,2019-20,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 2.0, 2.0, 8.0, 0.0, 12.0,528,44.0 0.5755248335893494,1,a-sust-i3,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 1.0, 1.0, 2.0, 5.0, 0.0, 9.0,725,80.55555555555556 @@ -22737,7 +22737,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.778582400702216,4.78,a-sust-i3,2019-20,Hampshire - Hampshire Regional High,06830505, 5.0, 4.0, 0.0, 4.0, 2.0, 5.0, 1.0, 21.0,734,34.95238095238095 6.556067588325653,5,a-sust-i3,2019-20,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,47,15.666666666666666 4.558179723502304,4.56,a-sust-i3,2019-20,Hanover - Cedar Elementary,01220004, 1.0, 0.0, 0.0, 1.5, 6.3, 3.0, 1.0, 12.8,478,37.34375 --Infinity,1,a-sust-i3,2019-20,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +NA,NA,a-sust-i3,2019-20,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity -4.219926902907992,1,a-sust-i3,2019-20,Hanover - Hanover High,01220505, 0.0, 0.0, 1.8, 1.0, 0.0, 3.0, 0.0, 5.8,769,132.58620689655172 -7.317972350230413,1,a-sust-i3,2019-20,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 5.0,831,166.2 -0.15009874917709065,1,a-sust-i3,2019-20,Harvard - Bromfield,01250505, 1.0, 1.0, 0.0, 0.0, 4.0, 0.0, 1.0, 7.0,619,88.42857142857143 @@ -22747,7 +22747,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.71779679613781,5,a-sust-i3,2019-20,Haverhill - Bradford Elementary,01280008, 3.0, 3.0, 2.0, 5.0, 7.0, 1.0, 0.0, 21.0,520,24.761904761904763 3.3396113003406125,3.34,a-sust-i3,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 2.0, 0.0, 4.0, 4.0, 6.0, 6.0, 1.0, 23.0,1163,50.56521739130435 1.0967741935483863,1.1,a-sust-i3,2019-20,Haverhill - Consentino Middle School,01280100, 1.0, 0.0, 4.0, 3.0, 0.0, 2.0, 0.0, 10.0,749,74.9 --Infinity,1,a-sust-i3,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity +NA,NA,a-sust-i3,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity 4.8555164001084306,4.86,a-sust-i3,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.0, 2.0, 2.0, 4.0, 5.0, 4.0, 0.0, 17.0,580,34.11764705882353 5.501068934391182,5,a-sust-i3,2019-20,Haverhill - Golden Hill,01280026, 2.0, 0.0, 2.0, 6.0, 6.4, 3.0, 0.0, 19.4,526,27.113402061855673 7.285714285714286,5,a-sust-i3,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0, 4.0,31,7.75 @@ -22787,7 +22787,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.006306087800145,5,a-sust-i3,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.0, 4.0, 5.0, 6.0, 3.0, 0.0, 19.0,411,21.63157894736842 6.950393060449986,5,a-sust-i3,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 4.0, 2.5, 13.0, 7.0, 10.0, 5.0, 1.0, 42.5,484,11.388235294117647 5.914746543778802,5,a-sust-i3,2019-20,Holyoke - Morgan Full Service Community School,01370025, 2.0, 4.0, 1.0, 1.0, 6.0, 1.0, 1.0, 16.0,362,22.625 --Infinity,1,a-sust-i3,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i3,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity 5.594470046082949,5,a-sust-i3,2019-20,Holyoke - William R. Peck School,01370030, 1.0, 3.0, 1.0, 1.0, 1.0, 3.0, 0.0, 10.0,261,26.1 2.126518642647675,2.13,a-sust-i3,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 2.0, 1.0, 5.0, 3.0, 0.0, 0.0, 0.0, 11.0,701,63.72727272727273 7.061363085132185,5,a-sust-i3,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 6.0, 3.0, 5.0, 5.0, 9.0, 9.0, 1.0, 38.0,387,10.18421052631579 @@ -22844,7 +22844,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.815668202764977,5,a-sust-i3,2019-20,Lawrence - School for Exceptional Studies,01490537, 10.0, 18.0, 11.0, 8.0, 11.0, 6.0, 0.0, 64.0,128,2.0 1.8416422287390033,1.84,a-sust-i3,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 3.0, 3.0, 1.0, 2.0, 0.0, 2.0, 0.0, 11.0,735,66.81818181818181 4.099407504937458,4.1,a-sust-i3,2019-20,Lawrence - Spark Academy,01490085, 3.0, 4.3, 1.0, 0.0, 1.9, 1.0, 0.0, 11.2,474,42.32142857142858 --Infinity,1,a-sust-i3,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +NA,NA,a-sust-i3,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity -1.953917050691244,1,a-sust-i3,2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,324,108.0 0.012288786482334172,1,a-sust-i3,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 2.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 9.0,780,86.66666666666667 6.253698763036624,5,a-sust-i3,2019-20,Lee - Lee Elementary,01500025, 0.0, 0.0, 4.0, 1.0, 8.0, 4.0, 2.0, 19.0,360,18.94736842105263 @@ -22918,10 +22918,10 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.672811059907834,5,a-sust-i3,2019-20,Lowell - Pyne Arts,01600018, 4.0, 1.0, 3.0, 5.0, 2.0, 3.0, 2.0, 20.0,505,25.25 4.468370339338081,4.47,a-sust-i3,2019-20,Lowell - Rogers STEM Academy,01600005, 3.0, 4.0, 2.0, 5.0, 4.0, 3.0, 1.0, 22.0,843,38.31818181818182 5.4140882159315336,5,a-sust-i3,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 3.0, 3.0, 2.0, 2.0, 6.0, 1.5, 17.5,491,28.057142857142857 --Infinity,1,a-sust-i3,2019-20,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i3,2019-20,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity 6.786482334869431,5,a-sust-i3,2019-20,Lowell - Washington,01600055, 2.0, 3.0, 4.0, 1.5, 3.0, 3.0, 1.5, 18.0,237,13.166666666666666 1.9465437788018425,1.95,a-sust-i3,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 1.0, 3.0, 2.0, 2.0, 3.0, 1.5, 0.0, 12.5,821,65.68 --Infinity,1,a-sust-i3,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +NA,NA,a-sust-i3,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity 2.9923195084485403,2.99,a-sust-i3,2019-20,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 1.0, 0.0, 2.0, 2.0, 1.0, 6.0,326,54.333333333333336 7.151216375522452,5,a-sust-i3,2019-20,Ludlow - East Street Elementary School,01610010, 3.0, 10.0, 6.0, 7.0, 7.0, 10.0, 0.0, 43.0,396,9.209302325581396 1.6,1.6,a-sust-i3,2019-20,Ludlow - Ludlow Senior High,01610505, 0.0, 1.0, 1.0, 1.0, 0.0, 9.0, 0.5, 12.5,868,69.44 @@ -22950,7 +22950,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.9474933668482053,3.95,a-sust-i3,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 4.0, 5.0, 9.0, 6.0, 9.0, 0.0, 33.0,1451,43.96969696969697 3.8525345622119813,3.85,a-sust-i3,2019-20,Lynn - Lynn Woods,01630075, 0.0, 1.0, 0.0, 2.0, 0.0, 1.0, 0.0, 4.0,180,45.0 1.4562211981566817,1.46,a-sust-i3,2019-20,Lynn - Pickering Middle,01630420, 1.0, 2.0, 1.0, 0.0, 2.0, 2.0, 1.0, 9.0,639,71.0 --Infinity,1,a-sust-i3,2019-20,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i3,2019-20,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity 3.2534562211981566,3.25,a-sust-i3,2019-20,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0, 1.0, 6.0,309,51.5 0.3387096774193546,1,a-sust-i3,2019-20,Lynn - Thurgood Marshall Mid,01630305, 1.0, 0.0, 1.0, 2.0, 2.0, 7.0, 3.0, 16.0,1330,83.125 -30.801843317972356,1,a-sust-i3,2019-20,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,421,421.0 @@ -22963,7 +22963,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.054708732128087,5,a-sust-i3,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 2.4, 1.5, 0.0, 3.9,40,10.256410256410257 3.2995391705069124,3.3,a-sust-i3,2019-20,Lynnfield - Summer Street,01640020, 0.0, 1.0, 0.0, 2.0, 3.0, 1.0, 1.0, 8.0,408,51.0 5.018018677004852,5,a-sust-i3,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 14.8, 18.0, 3.0, 0.0, 0.0, 1.0, 1.0, 37.8,1223,32.354497354497354 --Infinity,1,a-sust-i3,2019-20,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, 0.0, 0.0,99,Infinity +NA,NA,a-sust-i3,2019-20,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, 0.0, 0.0,99,Infinity 1.5980148883374683,1.6,a-sust-i3,2019-20,Malden - Beebe,01650003, 4.0, 2.0, 1.0, 3.0, 1.0, 2.0, 0.0, 13.0,903,69.46153846153847 2.974247763621577,2.97,a-sust-i3,2019-20,Malden - Ferryway,01650013, 3.0, 1.0, 2.0, 0.0, 6.0, 4.0, 1.0, 17.0,927,54.529411764705884 6.191641506435722,5,a-sust-i3,2019-20,Malden - Forestdale,01650027, 4.0, 5.0, 6.0, 5.0, 3.0, 6.0, 0.0, 29.0,569,19.620689655172413 @@ -22980,7 +22980,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.892034233048058,3.89,a-sust-i3,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.6, 4.8, 7.2, 3.0, 1.0, 17.5,780,44.57142857142857 3.0738916256157633,3.07,a-sust-i3,2019-20,Mansfield - Mansfield High,01670505, 1.0, 2.0, 3.0, 4.0, 8.2, 5.0, 0.0, 23.2,1240,53.44827586206897 7.161441414217723,5,a-sust-i3,2019-20,Mansfield - Roland Green School,01670003, 0.0, 0.5, 1.0, 3.0, 2.1, 4.6, 1.0, 12.2,111,9.098360655737705 --Infinity,1,a-sust-i3,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i3,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity 6.087557603686636,5,a-sust-i3,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 4.0,83,20.75 5.542242703533026,5,a-sust-i3,2019-20,Marblehead - Glover,01680020, 0.0, 1.0, 3.0, 1.0, 6.4, 3.0, 0.0, 14.4,384,26.666666666666664 -2.4147465437788016,1,a-sust-i3,2019-20,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,226,113.0 @@ -23060,7 +23060,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.7511520737327184,3.75,a-sust-i3,2019-20,Milford - Brookside,01850065, 0.0, 1.0, 1.0, 0.0, 6.0, 2.0, 0.0, 10.0,461,46.1 3.1459293394777266,3.15,a-sust-i3,2019-20,Milford - Memorial,01850010, 1.0, 0.0, 0.0, 1.0, 3.0, 4.0, 0.0, 9.0,474,52.666666666666664 -8.668861092824226,1,a-sust-i3,2019-20,Milford - Milford High,01850505, 1.0, 0.0, 1.0, 2.0, 1.0, 0.0, 2.0, 7.0,1266,180.85714285714286 --Infinity,1,a-sust-i3,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity +NA,NA,a-sust-i3,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182,Infinity -38.95852534562213,1,a-sust-i3,2019-20,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1019,509.5 -15.156682027649769,1,a-sust-i3,2019-20,Milford - Woodland,01850090, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 4.0,1005,251.25 5.502894372431954,5,a-sust-i3,2019-20,Millbury - Elmwood Street,01860017, 1.8, 1.6, 2.3, 6.0, 4.8, 3.8, 0.0, 20.3,550,27.0935960591133 @@ -23141,7 +23141,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.9400921658986178,1,a-sust-i3,2019-20,New Bedford - James B Congdon,02010040, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,291,97.0 0.25806451612903203,1,a-sust-i3,2019-20,New Bedford - Jireh Swift,02010130, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,168,84.0 3.8894009216589858,3.89,a-sust-i3,2019-20,New Bedford - John Avery Parker,02010115, 0.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 5.0,223,44.6 --Infinity,1,a-sust-i3,2019-20,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +NA,NA,a-sust-i3,2019-20,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity -3.62442396313364,1,a-sust-i3,2019-20,New Bedford - Keith Middle School,02010405, 1.0, 0.0, 2.0, 2.0, 1.0, 2.0, 0.0, 8.0,1009,126.125 1.2942326490713592,1.29,a-sust-i3,2019-20,New Bedford - New Bedford High,02010505, 3.0, 3.0, 3.0, 6.0, 11.0, 6.0, 1.0, 33.0,2401,72.75757575757575 -3.041474654377881,1,a-sust-i3,2019-20,New Bedford - Normandin Middle School,02010410, 0.0, 2.0, 3.0, 0.0, 1.0, 3.0, 1.0, 10.0,1198,119.8 @@ -23150,7 +23150,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.548877340915776,5,a-sust-i3,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 9.0, 10.0, 8.0, 8.0, 7.0, 4.0, 1.0, 47.0,740,15.74468085106383 -0.8018433179723505,1,a-sust-i3,2019-20,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,191,95.5 5.857142857142857,5,a-sust-i3,2019-20,New Bedford - Trinity Day Academy,02010510, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 4.0,93,23.25 --Infinity,1,a-sust-i3,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +NA,NA,a-sust-i3,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity 2.0552995391705067,2.06,a-sust-i3,2019-20,New Bedford - William H Taylor,02010135, 2.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 4.0,258,64.5 -1.247311827956989,1,a-sust-i3,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 1.0, 3.0, 1.0, 0.0, 1.0, 0.0, 0.0, 6.0,602,100.33333333333333 6.886328725038402,5,a-sust-i3,2019-20,New Salem-Wendell - Swift River,07280015, 2.0, 0.0, 1.0, 4.0, 3.0, 2.0, 0.0, 12.0,145,12.083333333333334 @@ -23293,11 +23293,11 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.4275079758950726,2.43,a-sust-i3,2019-20,Pentucket - Pentucket Regional Middle,07450405, 2.0, 0.0, 1.0, 1.0, 1.5, 1.0, 0.0, 6.5,393,60.46153846153846 0.3911930363543263,1,a-sust-i3,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 2.0, 1.0, 2.0, 0.0, 1.0, 3.0, 0.0, 9.0,743,82.55555555555556 5.5852534562211975,5,a-sust-i3,2019-20,Petersham - Petersham Center,02340005, 1.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 5.0,131,26.2 --Infinity,1,a-sust-i3,2019-20,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, 0.0, 0.0, 0.0,124,Infinity --Infinity,1,a-sust-i3,2019-20,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, 0.0, 0.0, 0.0,188,Infinity --Infinity,1,a-sust-i3,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity --Infinity,1,a-sust-i3,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity --Infinity,1,a-sust-i3,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +NA,NA,a-sust-i3,2019-20,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, 0.0, 0.0, 0.0,124,Infinity +NA,NA,a-sust-i3,2019-20,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, 0.0, 0.0, 0.0,188,Infinity +NA,NA,a-sust-i3,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +NA,NA,a-sust-i3,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793,Infinity +NA,NA,a-sust-i3,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity 6.715263231392264,5,a-sust-i3,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 3.0, 0.0, 2.0, 3.5, 3.0, 1.7, 13.2,184,13.93939393939394 6.6712749615975415,5,a-sust-i3,2019-20,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.0, 6.0, 2.0, 3.0, 0.0, 12.0,173,14.416666666666666 5.253456221198157,5,a-sust-i3,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 2.0, 1.0, 5.0, 2.0, 10.0,298,29.8 @@ -23342,7 +23342,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.522400114019669,4.52,a-sust-i3,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0.4, 1.0, 2.0, 1.0, 1.3, 4.0, 0.0, 9.7,366,37.7319587628866 6.263762739736505,5,a-sust-i3,2019-20,Quabbin - Ruggles Lane,07530030, 2.8, 4.0, 2.7, 2.8, 7.0, 3.8, 1.0, 24.1,454,18.83817427385892 4.774193548387097,4.77,a-sust-i3,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 3.0, 2.0, 1.0, 0.0, 2.0, 2.0, 0.0, 10.0,350,35.0 --Infinity,1,a-sust-i3,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity +NA,NA,a-sust-i3,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180,Infinity 5.349435881137772,5,a-sust-i3,2019-20,Quaboag Regional - Warren Elementary,07780005, 2.9, 2.6, 1.0, 0.0, 3.0, 5.0, 0.0, 14.5,417,28.75862068965517 5.841781874039938,5,a-sust-i3,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 5.0, 1.0, 0.0, 4.0, 1.0, 1.0, 12.0,281,23.416666666666668 7.37532002048131,5,a-sust-i3,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 2.0, 5.0, 2.0, 3.0, 9.0, 4.0, 2.0, 27.0,183,6.777777777777778 @@ -23384,7 +23384,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.2857142857142856,2.29,a-sust-i3,2019-20,Revere - Abraham Lincoln,02480025, 1.5, 0.5, 0.5, 1.5, 1.5, 4.5, 0.0, 10.0,620,62.0 5.518610421836229,5,a-sust-i3,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 1.5, 2.5, 2.0, 1.0, 2.0, 3.0, 1.0, 13.0,350,26.923076923076923 3.9279430247172185,3.93,a-sust-i3,2019-20,Revere - Garfield Elementary School,02480056, 2.0, 1.5, 1.5, 1.5, 3.0, 5.5, 1.5, 16.5,729,44.18181818181818 --Infinity,1,a-sust-i3,2019-20,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity +NA,NA,a-sust-i3,2019-20,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597,Infinity 2.3348694316436247,2.33,a-sust-i3,2019-20,Revere - Paul Revere,02480050, 2.5, 0.0, 0.5, 2.5, 1.5, 0.0, 0.5, 7.5,461,61.46666666666667 -8.181126026848325,1,a-sust-i3,2019-20,Revere - Revere High,02480505, 3.5, 1.0, 1.0, 2.5, 1.5, 2.0, 0.0, 11.5,2019,175.56521739130434 0.38095238095238027,1,a-sust-i3,2019-20,Revere - Rumney Marsh Academy,02480014, 1.5, 0.0, 0.0, 1.5, 2.5, 1.0, 1.0, 7.5,620,82.66666666666667 @@ -23404,7 +23404,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.1705069124423964,3.17,a-sust-i3,2019-20,Rockport - Rockport High,02520510, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 5.0,262,52.4 4.712749615975422,4.71,a-sust-i3,2019-20,Rockport - Rockport Middle,02520305, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 0.0, 6.0,214,35.666666666666664 6.317972350230415,5,a-sust-i3,2019-20,Rowe - Rowe Elementary,02530005, 0.4, 1.0, 0.0, 2.6, 0.0, 0.0, 0.0, 4.0,73,18.25 --Infinity,1,a-sust-i3,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1568,Infinity +NA,NA,a-sust-i3,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1568,Infinity 1.6926467641755154,1.69,a-sust-i3,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 2.0, 7.0, 5.0, 1.0, 4.0, 2.0, 2.0, 23.0,1574,68.43478260869566 5.591397849462366,5,a-sust-i3,2019-20,Salem - Bates,02580003, 1.0, 3.0, 2.0, 1.0, 3.0, 3.0, 2.0, 15.0,392,26.133333333333333 5.886103242717626,5,a-sust-i3,2019-20,Salem - Carlton,02580015, 1.0, 0.0, 1.0, 2.0, 2.9, 1.0, 3.0, 10.9,250,22.93577981651376 @@ -23439,10 +23439,10 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.7603686635944698,3.76,a-sust-i3,2019-20,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 1.0, 3.0, 4.0, 2.0, 10.0,460,46.0 4.301075268817204,4.3,a-sust-i3,2019-20,Seekonk - Seekonk High,02650505, 4.0, 1.0, 3.0, 1.0, 2.0, 3.0, 1.0, 15.0,602,40.13333333333333 3.595786701777485,3.6,a-sust-i3,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 3.0, 5.0, 2.0, 0.0, 1.0, 3.0, 0.0, 14.0,669,47.785714285714285 --Infinity,1,a-sust-i3,2019-20,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity --Infinity,1,a-sust-i3,2019-20,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +NA,NA,a-sust-i3,2019-20,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481,Infinity +NA,NA,a-sust-i3,2019-20,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity -43.24423963133641,1,a-sust-i3,2019-20,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,556,556.0 --Infinity,1,a-sust-i3,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +NA,NA,a-sust-i3,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity 3.0888742593811718,3.09,a-sust-i3,2019-20,Sharon - Sharon High,02660505, 0.0, 2.0, 3.0, 2.0, 7.0, 5.0, 2.0, 21.0,1119,53.285714285714285 4.719646383899182,4.72,a-sust-i3,2019-20,Sharon - Sharon Middle,02660305, 0.5, 4.0, 2.0, 6.0, 4.0, 6.0, 2.0, 24.5,872,35.59183673469388 -2.5990783410138247,1,a-sust-i3,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 3.0, 2.0, 2.0, 1.0, 1.0, 2.0, 0.0, 11.0,1265,115.0 @@ -23470,7 +23470,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.474654377880184,1,a-sust-i3,2019-20,Somerville - Benjamin G Brown,02740015, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,249,124.5 7.015500628403855,5,a-sust-i3,2019-20,Somerville - Capuano Early Childhood Center,02740005, 2.0, 4.8, 3.8, 7.0, 3.8, 3.0, 2.0, 26.4,282,10.681818181818182 1.8835358190196902,1.88,a-sust-i3,2019-20,Somerville - E Somerville Community,02740111, 2.0, 3.0, 1.0, 1.0, 2.0, 2.0, 0.0, 11.0,730,66.36363636363636 --Infinity,1,a-sust-i3,2019-20,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity +NA,NA,a-sust-i3,2019-20,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54,Infinity 5.253456221198157,5,a-sust-i3,2019-20,Somerville - John F Kennedy,02740083, 0.0, 3.0, 0.0, 2.0, 4.0, 3.0, 3.0, 15.0,447,29.8 6.617511520737327,5,a-sust-i3,2019-20,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,15,15.0 -9.684331797235023,1,a-sust-i3,2019-20,Somerville - Somerville High,02740505, 0.0, 2.0, 2.0, 1.0, 0.4, 0.0, 1.0, 6.4,1228,191.875 @@ -23522,8 +23522,8 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.9592343140730235,2.96,a-sust-i3,2019-20,Springfield - Forest Park Middle,02810325, 1.0, 3.0, 2.0, 2.0, 2.0, 2.0, 1.0, 13.0,711,54.69230769230769 5.3271889400921655,5,a-sust-i3,2019-20,Springfield - Frank H Freedman,02810075, 1.0, 1.0, 0.0, 3.0, 3.0, 1.0, 1.0, 10.0,290,29.0 5.260159195643067,5,a-sust-i3,2019-20,Springfield - Frederick Harris,02810080, 1.0, 4.0, 4.0, 8.0, 3.0, 1.0, 1.0, 22.0,654,29.727272727272727 --Infinity,1,a-sust-i3,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity --Infinity,1,a-sust-i3,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i3,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +NA,NA,a-sust-i3,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity 5.8648233486943155,5,a-sust-i3,2019-20,Springfield - German Gerena Community School,02810195, 3.0, 7.0, 4.0, 6.0, 7.0, 3.0, 0.0, 30.0,695,23.166666666666668 5.3271889400921655,5,a-sust-i3,2019-20,Springfield - Glenwood,02810065, 0.0, 2.0, 3.0, 3.0, 0.0, 1.0, 0.0, 9.0,261,29.0 6.046082949308755,5,a-sust-i3,2019-20,Springfield - Glickman Elementary,02810068, 1.0, 3.0, 1.0, 3.0, 4.0, 1.0, 2.0, 15.0,318,21.2 @@ -23536,7 +23536,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.5299539170506913,3.53,a-sust-i3,2019-20,Springfield - John J Duggan Middle,02810320, 2.0, 5.0, 4.0, 4.0, 1.0, 0.0, 0.0, 16.0,776,48.5 4.716589861751152,4.72,a-sust-i3,2019-20,Springfield - Kensington International School,02810110, 2.0, 2.0, 0.0, 2.0, 2.0, 0.0, 0.0, 8.0,285,35.625 4.405529953917051,4.41,a-sust-i3,2019-20,Springfield - Liberty,02810115, 0.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 7.0,273,39.0 --Infinity,1,a-sust-i3,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +NA,NA,a-sust-i3,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity 2.7333772218564842,2.73,a-sust-i3,2019-20,Springfield - Lincoln,02810120, 2.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 7.0,400,57.142857142857146 4.444336648071792,4.44,a-sust-i3,2019-20,Springfield - M Marcus Kiley Middle,02810330, 1.0, 1.0, 3.0, 6.0, 0.0, 6.0, 2.0, 19.0,733,38.578947368421055 7.037378392217102,5,a-sust-i3,2019-20,Springfield - Margaret C Ells,02810060, 1.0, 6.0, 1.0, 3.0, 5.0, 1.0, 1.0, 18.0,188,10.444444444444445 @@ -23554,8 +23554,8 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.246543778801843,3.25,a-sust-i3,2019-20,Springfield - Springfield Central High,02810500, 6.0, 8.0, 5.0, 6.0, 3.0, 7.0, 5.0, 40.0,2063,51.575 4.221198156682028,4.22,a-sust-i3,2019-20,Springfield - Springfield High School,02810570, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 1.0, 5.0,205,41.0 4.175115207373271,4.18,a-sust-i3,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 1.0, 3.0, 3.0, 8.0, 7.0, 5.0, 3.0, 30.0,1245,41.5 --Infinity,1,a-sust-i3,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i3,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +NA,NA,a-sust-i3,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i3,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity 7.201228878648233,5,a-sust-i3,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 1.0, 1.0, 0.0, 3.0, 1.0, 0.0, 0.0, 6.0,52,8.666666666666666 7.1013824884792625,5,a-sust-i3,2019-20,Springfield - Springfield Public Day High School,02810550, 1.0, 2.0, 0.0, 2.0, 1.0, 1.0, 1.0, 8.0,78,9.75 7.45852534562212,5,a-sust-i3,2019-20,Springfield - Springfield Public Day Middle School,02810345, 0.0, 2.0, 0.0, 3.0, 1.0, 2.0, 0.0, 8.0,47,5.875 @@ -23568,7 +23568,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.741935483870968,5,a-sust-i3,2019-20,Springfield - Washington,02810185, 2.0, 4.0, 2.0, 1.0, 3.0, 3.0, 1.0, 16.0,392,24.5 2.8847926267281103,2.88,a-sust-i3,2019-20,Springfield - White Street,02810190, 1.0, 1.0, 2.0, 1.0, 0.0, 3.0, 0.0, 8.0,444,55.5 4.915987238567884,4.92,a-sust-i3,2019-20,Springfield - William N. DeBerry,02810045, 0.0, 1.8, 2.0, 1.0, 0.0, 3.0, 0.0, 7.8,261,33.46153846153846 --Infinity,1,a-sust-i3,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +NA,NA,a-sust-i3,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity 5.989107666527021,5,a-sust-i3,2019-20,Stoneham - Colonial Park,02840005, 0.0, 1.8, 1.0, 1.9, 5.8, 1.6, 0.0, 12.1,264,21.81818181818182 5.460603912216816,5,a-sust-i3,2019-20,Stoneham - Robin Hood,02840025, 2.0, 0.0, 0.8, 0.0, 3.0, 7.5, 1.0, 14.3,394,27.55244755244755 5.154878781807253,5,a-sust-i3,2019-20,Stoneham - South,02840030, 1.0, 1.0, 0.8, 2.7, 2.0, 3.0, 1.0, 11.5,355,30.869565217391305 @@ -23583,7 +23583,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.6267281105990781,1,a-sust-i3,2019-20,Stoughton - South Elementary,02850015, 0.0, 0.9, 0.9, 0.0, 0.3, 0.4, 0.0, 2.5,234,93.6 -2.5835447625951438,1,a-sust-i3,2019-20,Stoughton - Stoughton High,02850505, 1.3, 0.4, 0.4, 0.0, 3.5, 3.3, 0.0, 8.9,1022,114.8314606741573 5.93035058041183,5,a-sust-i3,2019-20,Sturbridge - Burgess Elementary,02870005, 0.0, 2.0, 5.0, 6.0, 15.0, 8.0, 3.5, 39.5,887,22.455696202531644 --Infinity,1,a-sust-i3,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity +NA,NA,a-sust-i3,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,832,Infinity 1.7788018433179722,1.78,a-sust-i3,2019-20,Sudbury - Ephraim Curtis Middle,02880305, 3.0, 2.0, 1.5, 1.0, 0.5, 4.0, 2.0, 14.0,945,67.5 3.278270116979794,3.28,a-sust-i3,2019-20,Sudbury - General John Nixon Elementary,02880025, 1.0, 0.0, 0.0, 1.5, 1.5, 2.5, 0.0, 6.5,333,51.23076923076923 3.014158014546666,3.01,a-sust-i3,2019-20,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 1.0, 2.3, 2.0, 1.5, 1.5, 8.3,449,54.09638554216867 @@ -23608,7 +23608,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -7.476781283232897,1,a-sust-i3,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 1.0, 4.0, 6.0, 1.0, 1.0, 0.0, 0.0, 13.0,2183,167.92307692307693 4.079609964602952,4.08,a-sust-i3,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 1.0, 2.0, 0.0, 3.8, 4.0, 1.0, 2.0, 13.8,587,42.53623188405797 5.195803510148053,5,a-sust-i3,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 2.0, 5.0, 1.0, 3.0, 4.5, 7.0, 1.0, 23.5,715,30.425531914893618 --Infinity,1,a-sust-i3,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i3,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity 3.266024298282363,3.27,a-sust-i3,2019-20,Taunton - Benjamin Friedman Middle,02930315, 0.0, 2.0, 1.0, 2.0, 3.0, 6.4, 1.0, 15.4,791,51.36363636363636 4.813693219223174,4.81,a-sust-i3,2019-20,Taunton - East Taunton Elementary,02930010, 0.0, 1.0, 2.0, 2.5, 3.0, 6.0, 3.0, 17.5,605,34.57142857142857 2.267281105990783,2.27,a-sust-i3,2019-20,Taunton - Edmund Hatch Bennett,02930007, 0.0, 1.0, 0.0, 1.0, 2.0, 1.0, 0.0, 5.0,311,62.2 @@ -23620,7 +23620,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.88479262672811,4.88,a-sust-i3,2019-20,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 1.0, 4.0, 3.0, 5.0, 2.0, 15.0,507,33.8 2.4064833942475765,2.41,a-sust-i3,2019-20,Taunton - Joseph H Martin,02930042, 1.0, 1.0, 0.0, 1.6, 3.0, 4.0, 1.0, 11.6,704,60.689655172413794 4.121351766513056,4.12,a-sust-i3,2019-20,Taunton - Mulcahey Elementary School,02930015, 1.0, 0.0, 0.0, 2.0, 1.0, 8.0, 0.0, 12.0,505,42.083333333333336 --Infinity,1,a-sust-i3,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity +NA,NA,a-sust-i3,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity -3.181399245915374,1,a-sust-i3,2019-20,Taunton - Taunton High,02930505, 3.0, 3.0, 0.0, 1.0, 3.0, 11.0, 1.0, 22.0,2669,121.31818181818181 5.617866004962779,5,a-sust-i3,2019-20,Tewksbury - Heath-Brook,02950010, 3.0, 2.0, 1.0, 1.0, 1.0, 4.0, 1.0, 13.0,336,25.846153846153847 4.377171215880893,4.38,a-sust-i3,2019-20,Tewksbury - John F. Ryan,02950023, 3.0, 3.0, 1.0, 2.0, 1.0, 3.0, 0.0, 13.0,511,39.30769230769231 @@ -23642,16 +23642,16 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.627662511414555,4.63,a-sust-i3,2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 4.0, 3.0, 0.0, 2.5, 6.2, 6.0, 0.0, 21.7,794,36.58986175115208 1.0875576036866357,1.09,a-sust-i3,2019-20,Tyngsborough - Tyngsborough High School,03010505, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 6.0,450,75.0 3.9572685379136994,3.96,a-sust-i3,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 3.8, 4.0, 1.0, 8.8,386,43.86363636363636 --Infinity,1,a-sust-i3,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +NA,NA,a-sust-i3,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity -2.9216589861751148,1,a-sust-i3,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 3.0, 0.0, 0.0, 1.0, 1.0, 0.0, 6.0,711,118.5 5.6300197498354185,5,a-sust-i3,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,54,25.71428571428571 6.2992066131407665,5,a-sust-i3,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 2.2, 2.2, 7.2, 1.9, 1.7, 3.2, 1.0, 19.4,358,18.453608247422682 4.59323955895481,4.59,a-sust-i3,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 1.3, 5.0, 0.0, 1.0, 4.0, 5.8, 2.0, 19.1,706,36.96335078534031 --Infinity,1,a-sust-i3,2019-20,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i3,2019-20,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity 5.999581064097193,5,a-sust-i3,2019-20,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.8, 6.6, 6.6, 7.4, 5.0, 0.0, 26.4,573,21.704545454545457 3.453149001536098,3.45,a-sust-i3,2019-20,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 0.0, 0.0, 5.0, 4.0, 2.0, 12.0,592,49.333333333333336 3.668202764976958,3.67,a-sust-i3,2019-20,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 1.0, 2.0, 5.0, 2.0, 1.0, 11.0,517,47.0 --Infinity,1,a-sust-i3,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +NA,NA,a-sust-i3,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity 5.781874039938557,5,a-sust-i3,2019-20,Wachusett - Central Tree Middle,07750310, 0.0, 1.0, 2.0, 1.0, 4.0, 5.0, 2.0, 15.0,361,24.066666666666666 6.200054215234481,5,a-sust-i3,2019-20,Wachusett - Chocksett Middle School,07750315, 0.0, 5.0, 0.0, 5.0, 4.0, 3.0, 0.0, 17.0,332,19.529411764705884 5.968063444432536,5,a-sust-i3,2019-20,Wachusett - Davis Hill Elementary,07750018, 0.0, 1.0, 2.5, 10.0, 3.0, 2.0, 3.0, 21.5,474,22.046511627906977 @@ -23696,7 +23696,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.050691244239632,5,a-sust-i3,2019-20,Ware - Ware Middle School,03090305, 1.0, 0.0, 1.0, 2.0, 3.0, 1.0, 1.0, 9.0,288,32.0 6.064516129032258,5,a-sust-i3,2019-20,Wareham - John William Decas,03100003, 2.5, 2.0, 2.0, 3.0, 13.5, 6.0, 1.0, 30.0,630,21.0 5.164801404432741,5,a-sust-i3,2019-20,Wareham - Minot Forest,03100017, 1.0, 0.0, 2.0, 1.0, 2.0, 4.0, 0.5, 10.5,323,30.761904761904763 --Infinity,1,a-sust-i3,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i3,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity 3.409260478384902,3.41,a-sust-i3,2019-20,Wareham - Wareham Middle,03100305, 0.0, 1.0, 0.0, 2.0, 2.0, 5.5, 0.0, 10.5,523,49.80952380952381 4.46889400921659,4.47,a-sust-i3,2019-20,Wareham - Wareham Senior High,03100505, 1.0, 1.0, 2.0, 3.0, 3.0, 5.0, 1.0, 16.0,613,38.3125 4.440092165898617,4.44,a-sust-i3,2019-20,Watertown - Cunniff,03140015, 1.0, 1.0, 1.0, 1.0, 3.0, 1.0, 0.0, 8.0,309,38.625 @@ -23876,7 +23876,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.164134949081185,3.16,a-sust-i3,2019-20,Worcester - Tatnuck,03480230, 1.0, 3.0, 2.0, 1.0, 0.0, 1.1, 0.0, 8.1,425,52.46913580246914 1.4746543778801844,1.47,a-sust-i3,2019-20,Worcester - Thorndyke Road,03480235, 0.0, 1.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,354,70.8 0.9032258064516127,1,a-sust-i3,2019-20,Worcester - Union Hill School,03480240, 1.0, 0.0, 1.0, 1.0, 2.0, 0.0, 0.0, 5.0,385,77.0 --Infinity,1,a-sust-i3,2019-20,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +NA,NA,a-sust-i3,2019-20,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity 4.228287841191067,4.23,a-sust-i3,2019-20,Worcester - Vernon Hill School,03480280, 0.0, 1.0, 2.0, 3.0, 4.0, 2.0, 1.0, 13.0,532,40.92307692307692 6.580645161290323,5,a-sust-i3,2019-20,Worcester - Wawecus Road School,03480026, 0.0, 2.0, 3.0, 1.0, 1.0, 2.0, 1.0, 10.0,154,15.4 4.787881553132271,4.79,a-sust-i3,2019-20,Worcester - West Tatnuck,03480260, 0.0, 0.0, 3.0, 1.0, 1.0, 4.1, 1.0, 10.1,352,34.851485148514854 @@ -23938,7 +23938,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.928420689952194,5,a-sust-i3,2018-19,Andover - South Elementary,00090020, 4.6, 0.9, 0.0, 3.3, 4.8, 6.0, 1.9, 21.4,481,22.476635514018692 6.530724003471501,5,a-sust-i3,2018-19,Andover - West Elementary,00090025, 4.0, 2.9, 3.5, 7.3, 11.6, 6.2, 2.3, 37.7,601,15.941644562334217 5.871899756640605,5,a-sust-i3,2018-19,Andover - Wood Hill Middle School,00090350, 1.0, 3.7, 1.9, 0.8, 2.4, 6.3, 1.8, 17.8,411,23.089887640449437 --Infinity,1,a-sust-i3,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +NA,NA,a-sust-i3,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity 0.6902907993008103,1,a-sust-i3,2018-19,Arlington - Arlington High,00100505, 4.0, 6.0, 2.0, 0.4, 2.0, 1.0, 2.0, 17.4,1380,79.3103448275862 5.3527905785970304,5,a-sust-i3,2018-19,Arlington - Brackett,00100010, 6.0, 2.5, 0.0, 3.0, 3.0, 1.5, 2.0, 18.0,517,28.72222222222222 4.965422113545879,4.97,a-sust-i3,2018-19,Arlington - Cyrus E Dallin,00100025, 3.0, 3.0, 1.0, 2.0, 4.7, 1.0, 0.0, 14.7,484,32.925170068027214 @@ -24292,13 +24292,13 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.561380977562892,5,a-sust-i3,2018-19,Chelmsford - McCarthy Middle School,00560310, 3.0, 3.0, 1.0, 6.0, 8.0, 6.0, 3.5, 30.5,807,26.459016393442624 6.734620005779379,5,a-sust-i3,2018-19,Chelmsford - South Row,00560015, 3.0, 3.0, 4.0, 3.0, 8.0, 9.0, 0.3, 30.3,416,13.729372937293729 -4.534562211981567,1,a-sust-i3,2018-19,Chelsea - Chelsea High,00570505, 1.0, 3.0, 0.0, 2.0, 2.0, 2.0, 0.0, 10.0,1360,136.0 --Infinity,1,a-sust-i3,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity +NA,NA,a-sust-i3,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52,Infinity 0.5691244239631335,1,a-sust-i3,2018-19,Chelsea - Clark Avenue School,00570050, 0.0, 2.0, 1.0, 3.0, 0.0, 1.0, 1.0, 8.0,645,80.625 3.656181126026848,3.66,a-sust-i3,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 4.0, 3.0, 0.0, 2.0, 0.0, 2.5, 0.0, 11.5,542,47.130434782608695 1.3377221856484522,1.34,a-sust-i3,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 4.0, 0.0, 0.0, 2.0, 0.0, 1.0, 7.0,506,72.28571428571429 3.1152073732718892,3.12,a-sust-i3,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 1.0, 2.0, 2.0, 2.0, 2.0, 0.0, 1.0, 10.0,530,53.0 2.674859190988223,2.67,a-sust-i3,2018-19,Chelsea - George F. Kelly Elementary,00570035, 2.0, 2.0, 1.0, 1.0, 1.0, 2.0, 0.0, 9.0,520,57.77777777777778 --Infinity,1,a-sust-i3,2018-19,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity +NA,NA,a-sust-i3,2018-19,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582,Infinity 6.329493087557603,5,a-sust-i3,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 2.0, 12.0, 6.0, 5.0, 13.0, 8.0, 2.0, 48.0,870,18.125 4.942634673446687,4.94,a-sust-i3,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 2.0, 5.0, 0.0, 1.0, 3.0, 3.5, 0.0, 14.5,481,33.172413793103445 6.69347242619132,5,a-sust-i3,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.8, 1.0, 1.0, 1.0, 2.5, 0.8, 1.0, 9.1,129,14.175824175824177 @@ -24339,7 +24339,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.720364741641338,5,a-sust-i3,2018-19,Concord - Thoreau,00670020, 1.5, 2.9, 0.0, 2.2, 5.4, 6.3, 0.5, 18.8,465,24.73404255319149 6.643292191679288,5,a-sust-i3,2018-19,Concord - Willard,00670030, 2.5, 5.2, 1.6, 6.1, 6.8, 5.3, 1.0, 28.6,421,14.72027972027972 3.6349682216093053,3.63,a-sust-i3,2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 1.0, 8.0, 3.0, 3.3, 1.4, 6.5, 3.8, 26.9,1274,47.360594795539036 --Infinity,1,a-sust-i3,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +NA,NA,a-sust-i3,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity 7.222350230414746,5,a-sust-i3,2018-19,Conway - Conway Grammar,00680005, 0.0, 4.0, 3.0, 3.0, 1.0, 4.0, 1.0, 16.0,135,8.4375 3.0738916256157633,3.07,a-sust-i3,2018-19,Danvers - Danvers High,00710505, 5.0, 4.0, 1.0, 0.0, 4.0, 2.0, 1.4, 17.4,930,53.44827586206897 5.026647966339411,5,a-sust-i3,2018-19,Danvers - Great Oak,00710015, 1.0, 2.0, 1.0, 0.5, 2.0, 4.0, 1.0, 11.5,371,32.26086956521739 @@ -24419,7 +24419,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.055678303137428,5,a-sust-i3,2018-19,Easton - Parkview Elementary,00880015, 2.0, 0.8, 0.0, 1.5, 6.3, 4.0, 0.0, 14.6,308,21.095890410958905 3.9546643417611156,3.95,a-sust-i3,2018-19,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 1.0, 8.0, 8.0, 1.5, 18.5,812,43.891891891891895 6.874541832063391,5,a-sust-i3,2018-19,Edgartown - Edgartown Elementary,00890005, 3.2, 2.7, 3.4, 3.2, 11.7, 6.0, 0.0, 30.3,370,12.21122112211221 --Infinity,1,a-sust-i3,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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +NA,NA,a-sust-i3,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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity 7.186397584617829,5,a-sust-i3,2018-19,Erving - Erving Elementary,00910030, 0.0, 2.0, 4.0, 3.5, 2.0, 2.0, 1.0, 14.5,128,8.827586206896552 -2.174251152073732,1,a-sust-i3,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 2.8, 1.0, 4.0, 1.0, 3.0, 0.0, 12.8,1413,110.390625 5.764976958525345,5,a-sust-i3,2018-19,Everett - Adams School,00930003, 0.0, 2.0, 0.0, 1.0, 1.0, 3.0, 1.0, 8.0,194,24.25 @@ -24428,7 +24428,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -72.18433179723503,1,a-sust-i3,2018-19,Everett - George Keverian School,00930028, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,870,870.0 -0.026811897779640215,1,a-sust-i3,2018-19,Everett - Lafayette School,00930038, 2.0, 0.0, 1.0, 2.0, 1.0, 4.0, 1.0, 11.0,958,87.0909090909091 0.7188940092165896,1,a-sust-i3,2018-19,Everett - Madeline English School,00930018, 0.0, 1.0, 2.0, 2.0, 2.0, 3.0, 0.0, 10.0,790,79.0 --Infinity,1,a-sust-i3,2018-19,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,936,Infinity +NA,NA,a-sust-i3,2018-19,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,936,Infinity -11.508448540706604,1,a-sust-i3,2018-19,Everett - Sumner G. Whittier School,00930010, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,635,211.66666666666666 5.990188791437491,5,a-sust-i3,2018-19,Everett - Webster School,00930015, 2.0, 5.0, 6.0, 4.0, 4.0, 10.0, 0.0, 31.0,676,21.806451612903224 -21.884792626728114,1,a-sust-i3,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0,1297,324.25 @@ -24490,7 +24490,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.7817184856792858,1.78,a-sust-i3,2018-19,Framingham - Potter Road,01000039, 1.0, 0.0, 1.0, 0.6, 1.0, 3.1, 1.1, 7.9,533,67.46835443037975 3.669384379061798,3.67,a-sust-i3,2018-19,Framingham - Walsh Middle,01000310, 2.6, 1.0, 0.0, 2.0, 4.0, 5.0, 1.0, 15.6,733,46.98717948717949 4.149037259314829,4.15,a-sust-i3,2018-19,Framingham - Woodrow Wilson,01000055, 1.7, 1.0, 0.0, 3.6, 3.0, 3.0, 0.7, 12.9,539,41.78294573643411 --Infinity,1,a-sust-i3,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +NA,NA,a-sust-i3,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity 2.4012655615929566,2.4,a-sust-i3,2018-19,Franklin - Annie Sullivan Middle School,01010040, 1.0, 2.0, 0.0, 1.5, 2.0, 0.2, 0.0, 6.7,407,60.74626865671642 3.9842001316655686,3.98,a-sust-i3,2018-19,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.6, 1.0, 4.0, 0.0, 5.6,244,43.57142857142858 7.164258376942905,5,a-sust-i3,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 1.0, 2.0, 0.8, 5.0, 3.0, 0.0, 0.0, 11.8,107,9.067796610169491 @@ -24510,7 +24510,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.944345976604041,4.94,a-sust-i3,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 2.0, 1.0, 6.0, 3.0, 1.0, 0.0, 13.0,431,33.15384615384615 5.614746543778802,5,a-sust-i3,2018-19,Frontier - Frontier Regional,06700505, 2.0, 5.0, 0.0, 5.0, 5.0, 6.0, 2.0, 25.0,647,25.88 5.381543187994801,5,a-sust-i3,2018-19,Gardner - Elm Street School,01030001, 0.0, 1.5, 2.0, 3.0, 5.0, 6.0, 2.0, 19.5,554,28.41025641025641 --Infinity,1,a-sust-i3,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +NA,NA,a-sust-i3,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity -0.6899275839368014,1,a-sust-i3,2018-19,Gardner - Gardner High,01030505, 1.0, 0.0, 1.0, 1.0, 2.0, 2.0, 0.0, 7.0,660,94.28571428571429 4.448540706605223,4.45,a-sust-i3,2018-19,Gardner - Gardner Middle School,01030405, 1.0, 3.0, 2.0, 0.0, 0.0, 6.0, 3.0, 15.0,578,38.53333333333333 6.416915153158038,5,a-sust-i3,2018-19,Gardner - Waterford Street,01030020, 1.0, 3.5, 5.0, 6.0, 5.0, 4.0, 1.0, 25.5,438,17.176470588235293 @@ -24519,7 +24519,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.345622119815668,3.35,a-sust-i3,2018-19,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 4.0,202,50.5 5.539571228210779,5,a-sust-i3,2018-19,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 1.5, 3.0, 5.0, 1.0, 11.5,307,26.695652173913043 0.6635944700460832,1,a-sust-i3,2018-19,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 5.0,398,79.6 --Infinity,1,a-sust-i3,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +NA,NA,a-sust-i3,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity 2.4622354135749434,2.46,a-sust-i3,2018-19,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 3.0, 3.8, 4.0, 1.0, 11.8,709,60.08474576271186 5.265745007680491,5,a-sust-i3,2018-19,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,89,29.666666666666668 4.6293614219881505,4.63,a-sust-i3,2018-19,Gill-Montague - Gill Elementary,06740005, 0.5, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.5,128,36.57142857142857 @@ -24536,7 +24536,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.717869943676395,4.72,a-sust-i3,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 3.0, 1.0, 2.0, 7.0, 5.0, 0.0, 18.0,641,35.611111111111114 6.0,5,a-sust-i3,2018-19,Gloucester - Veterans Memorial,01070045, 1.0, 0.0, 3.0, 1.0, 1.0, 3.0, 1.0, 10.0,217,21.7 5.861751152073732,5,a-sust-i3,2018-19,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 4.0, 4.0, 4.0, 2.0, 15.0,348,23.2 --Infinity,1,a-sust-i3,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity +NA,NA,a-sust-i3,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2,Infinity 4.940801134349521,4.94,a-sust-i3,2018-19,Grafton - Grafton High School,01100505, 2.0, 4.0, 7.0, 5.0, 4.0, 1.0, 3.0, 26.0,863,33.19230769230769 5.338580230932532,5,a-sust-i3,2018-19,Grafton - Grafton Middle,01100305, 2.0, 4.8, 1.0, 3.0, 6.0, 1.0, 0.0, 17.8,514,28.876404494382022 6.048586220629231,5,a-sust-i3,2018-19,Grafton - Millbury Street Elementary School,01100200, 5.0, 4.0, 4.0, 5.4, 12.0, 2.0, 0.0, 32.4,686,21.172839506172842 @@ -24555,7 +24555,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.432521395655035,5,a-sust-i3,2018-19,Greenfield - Greenfield Middle,01140305, 4.0, 0.0, 1.0, 1.0, 3.0, 4.0, 1.0, 14.0,390,27.857142857142858 5.439836149513568,5,a-sust-i3,2018-19,Greenfield - Newton School,01140035, 5.0, 2.0, 0.0, 0.0, 0.0, 2.0, 0.0, 9.0,250,27.77777777777778 7.214642694878951,5,a-sust-i3,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 2.0, 1.6, 2.0, 3.0, 4.0, 1.0, 0.6, 14.2,121,8.52112676056338 --Infinity,1,a-sust-i3,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +NA,NA,a-sust-i3,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity 7.23633969716919,5,a-sust-i3,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, 1.0, 0.0, 3.0, 2.0, 1.0, 0.0, 7.0,58,8.285714285714286 4.157390996100673,4.16,a-sust-i3,2018-19,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.0, 0.0, 2.0, 3.0, 7.0, 0.0, 13.0,542,41.69230769230769 1.6070381231671556,1.61,a-sust-i3,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 1.0, 0.0, 1.0, 4.0, 5.0, 0.0, 11.0,763,69.36363636363636 @@ -24583,7 +24583,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.3877551020408156,2.39,a-sust-i3,2018-19,Hanover - Center Elementary,01220005, 1.0, 0.0, 0.0, 1.6, 3.0, 0.0, 0.0, 5.6,341,60.892857142857146 -11.500363812757701,1,a-sust-i3,2018-19,Hanover - Hanover High,01220505, 0.0, 0.0, 0.8, 0.0, 0.0, 3.0, 0.0, 3.8,804,211.57894736842107 -4.27342549923195,1,a-sust-i3,2018-19,Hanover - Hanover Middle,01220305, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 6.0,799,133.16666666666666 --Infinity,1,a-sust-i3,2018-19,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +NA,NA,a-sust-i3,2018-19,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity -1.6313364055299542,1,a-sust-i3,2018-19,Harvard - Bromfield,01250505, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 1.0, 6.0,627,104.5 5.09577959752014,5,a-sust-i3,2018-19,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 1.7, 2.0, 4.9, 4.6, 0.6, 13.9,438,31.510791366906474 5.723502304147465,5,a-sust-i3,2018-19,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 2.0, 3.0, 4.0, 1.0, 0.0, 10.0,247,24.7 @@ -24686,7 +24686,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.82133615909707,5,a-sust-i3,2018-19,Lawrence - School for Exceptional Studies,01490537, 13.0, 22.0, 12.8, 10.0, 12.0, 5.0, 0.0, 74.8,145,1.9385026737967914 1.6824465856723918,1.68,a-sust-i3,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 4.0, 0.0, 3.0, 1.0, 1.0, 2.0, 0.0, 11.0,754,68.54545454545455 5.361751152073732,5,a-sust-i3,2018-19,Lawrence - Spark Academy,01490085, 4.0, 7.0, 1.0, 1.0, 2.0, 1.0, 0.0, 16.0,458,28.625 --Infinity,1,a-sust-i3,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +NA,NA,a-sust-i3,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity -2.2611367127496167,1,a-sust-i3,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,334,111.33333333333333 -2.00658327847268,1,a-sust-i3,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.0, 2.0, 1.0, 0.0, 2.0, 1.0, 0.0, 7.0,760,108.57142857142857 6.243727598566308,5,a-sust-i3,2018-19,Lee - Lee Elementary,01500025, 1.0, 1.0, 4.0, 1.0, 7.0, 2.0, 2.0, 18.0,343,19.055555555555557 @@ -24720,7 +24720,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.9297820823244544,1,a-sust-i3,2018-19,Lexington - Lexington High,01550505, 6.2, 8.2, 2.7, 1.9, 4.4, 5.2, 0.9, 29.5,2263,76.71186440677967 6.2418773961197385,5,a-sust-i3,2018-19,Lexington - Maria Hastings,01550035, 6.6, 5.8, 4.1, 2.5, 4.0, 0.8, 0.0, 23.8,454,19.07563025210084 3.9278624601205245,3.93,a-sust-i3,2018-19,Lexington - Wm Diamond Middle,01550310, 2.7, 5.7, 3.5, 1.7, 2.6, 1.7, 2.7, 20.8,919,44.18269230769231 --Infinity,1,a-sust-i3,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +NA,NA,a-sust-i3,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity 4.5142384497223205,4.51,a-sust-i3,2018-19,Lincoln - Hanscom Middle,01570305, 1.9, 0.0, 1.9, 2.8, 1.0, 0.1, 0.0, 7.8,295,37.820512820512825 6.635407811731019,5,a-sust-i3,2018-19,Lincoln - Hanscom Primary,01570006, 3.8, 3.8, 5.5, 2.7, 3.7, 0.9, 0.0, 20.6,305,14.805825242718445 5.925391179408106,5,a-sust-i3,2018-19,Lincoln - Lincoln School,01570025, 3.7, 0.7, 3.7, 4.9, 5.9, 3.9, 3.5, 26.3,592,22.509505703422054 @@ -24763,7 +24763,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -13.751152073732719,1,a-sust-i3,2018-19,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,118,236.0 6.698834372458662,5,a-sust-i3,2018-19,Lowell - Washington,01600055, 0.0, 3.0, 3.0, 0.5, 5.0, 4.0, 1.5, 17.0,240,14.117647058823529 3.554350772567091,3.55,a-sust-i3,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 4.0, 5.0, 3.0, 1.0, 4.0, 0.0, 0.0, 17.0,820,48.23529411764706 --Infinity,1,a-sust-i3,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity +NA,NA,a-sust-i3,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82,Infinity 3.6550362080315995,3.66,a-sust-i3,2018-19,Ludlow - Chapin Street Elementary School,01610020, 0.0, 1.0, 1.0, 0.0, 4.0, 1.0, 0.0, 7.0,330,47.142857142857146 7.023539668700959,5,a-sust-i3,2018-19,Ludlow - East Street Elementary School,01610010, 2.0, 6.0, 2.0, 8.0, 8.0, 11.0, 0.0, 37.0,392,10.594594594594595 2.336564436675671,2.34,a-sust-i3,2018-19,Ludlow - Ludlow Senior High,01610505, 0.0, 1.0, 1.0, 1.0, 2.0, 8.5, 1.0, 14.5,891,61.44827586206897 @@ -24806,7 +24806,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.617511520737327,5,a-sust-i3,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 1.4, 1.0, 0.4, 2.8,42,15.000000000000002 3.0230414746543777,3.02,a-sust-i3,2018-19,Lynnfield - Summer Street,01640020, 1.0, 1.0, 0.0, 3.0, 2.0, 1.0, 0.0, 8.0,432,54.0 5.754838709677419,5,a-sust-i3,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 25.0, 19.0, 4.0, 1.0, 0.0, 1.0, 0.0, 50.0,1218,24.36 --Infinity,1,a-sust-i3,2018-19,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, 0.0, 0.0,98,Infinity +NA,NA,a-sust-i3,2018-19,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, 0.0, 0.0,98,Infinity 1.5980148883374683,1.6,a-sust-i3,2018-19,Malden - Beebe,01650003, 4.0, 2.0, 2.0, 2.0, 1.0, 2.0, 0.0, 13.0,903,69.46153846153847 3.0338845215505557,3.03,a-sust-i3,2018-19,Malden - Ferryway,01650013, 3.0, 1.0, 1.0, 1.0, 6.0, 4.0, 1.0, 17.0,916,53.88235294117647 6.223422850786589,5,a-sust-i3,2018-19,Malden - Forestdale,01650027, 3.0, 6.0, 5.0, 6.0, 4.0, 5.0, 0.0, 29.0,559,19.275862068965516 @@ -24823,14 +24823,14 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.327130235698142,3.33,a-sust-i3,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.6, 5.5, 4.6, 3.0, 1.0, 15.7,796,50.70063694267516 2.618700758138843,2.62,a-sust-i3,2018-19,Mansfield - Mansfield High,01670505, 0.0, 3.0, 1.0, 4.6, 6.2, 7.0, 0.0, 21.7,1267,58.38709677419355 7.2386295331596875,5,a-sust-i3,2018-19,Mansfield - Roland Green School,01670003, 0.0, 0.5, 2.0, 1.6, 3.1, 6.6, 0.0, 13.8,114,8.26086956521739 --Infinity,1,a-sust-i3,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity +NA,NA,a-sust-i3,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130,Infinity 5.631848438300051,5,a-sust-i3,2018-19,Marblehead - Glover,01680020, 0.0, 2.0, 3.0, 3.8, 1.8, 3.8, 0.0, 14.4,370,25.694444444444443 -11.907834101382488,1,a-sust-i3,2018-19,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 4.635389484204098,4.64,a-sust-i3,2018-19,Marblehead - Malcolm L Bell,01680005, 1.0, 1.0, 1.0, 1.0, 2.0, 2.3, 0.0, 8.3,303,36.50602409638554 -0.37438423645320196,1,a-sust-i3,2018-19,Marblehead - Marblehead High,01680505, 2.0, 1.0, 0.0, 2.0, 5.0, 1.0, 0.6, 11.6,1054,90.86206896551724 0.8417818740399379,1,a-sust-i3,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0, 1.0, 6.0,466,77.66666666666667 -21.5852534562212,1,a-sust-i3,2018-19,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.3, 1.6, 0.0, 0.0, 2.0,642,321.0 --Infinity,1,a-sust-i3,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +NA,NA,a-sust-i3,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity 5.253456221198157,5,a-sust-i3,2018-19,Marion - Sippican,01690005, 3.0, 0.0, 0.0, 4.0, 3.0, 4.0, 1.0, 15.0,447,29.8 4.308097432521396,4.31,a-sust-i3,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 6.0, 3.0, 5.0, 3.0, 9.0, 6.0, 3.0, 35.0,1402,40.05714285714286 6.2949308755760365,5,a-sust-i3,2018-19,Marlborough - Charles Jaworek School,01700030, 10.0, 7.0, 2.0, 7.0, 9.0, 7.0, 0.0, 42.0,777,18.5 @@ -24847,7 +24847,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.720477011292081,5,a-sust-i3,2018-19,Marshfield - South River,01710010, 1.0, 0.0, 0.0, 2.4, 5.3, 3.5, 0.9, 13.1,324,24.732824427480917 2.669323701581766,2.67,a-sust-i3,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 3.0, 1.0, 0.3, 2.0, 1.0, 1.3, 2.5, 11.1,642,57.83783783783784 5.733217088055797,5,a-sust-i3,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 1.0, 1.0, 2.5, 1.9, 1.0, 0.0, 7.4,182,24.594594594594593 --Infinity,1,a-sust-i3,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +NA,NA,a-sust-i3,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity 1.7828920459193405,1.78,a-sust-i3,2018-19,Masconomet - Masconomet Regional High School,07050505, 0.0, 3.0, 3.0, 2.5, 4.5, 2.0, 2.0, 16.9,1140,67.45562130177515 5.235023041474654,5,a-sust-i3,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 3.0, 5.0, 0.0, 2.0, 5.0, 4.5, 2.0, 21.5,645,30.0 5.910906298003072,5,a-sust-i3,2018-19,Mashpee - Kenneth Coombs School,01720005, 1.0, 1.0, 4.0, 2.0, 6.0, 3.0, 1.0, 18.0,408,22.666666666666668 @@ -24903,7 +24903,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.390168970814132,4.39,a-sust-i3,2018-19,Milford - Brookside,01850065, 1.0, 0.0, 1.0, 0.0, 7.0, 3.0, 0.0, 12.0,470,39.166666666666664 3.8525345622119813,3.85,a-sust-i3,2018-19,Milford - Memorial,01850010, 2.0, 0.0, 0.0, 1.0, 3.0, 4.0, 0.0, 10.0,450,45.0 -18.95852534562212,1,a-sust-i3,2018-19,Milford - Milford High,01850505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 4.0,1170,292.5 --Infinity,1,a-sust-i3,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +NA,NA,a-sust-i3,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity -39.69585253456222,1,a-sust-i3,2018-19,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1035,517.5 -7.222734254992318,1,a-sust-i3,2018-19,Milford - Woodland,01850090, 1.0, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 6.0,991,165.16666666666666 5.3232669869595055,5,a-sust-i3,2018-19,Millbury - Elmwood Street,01860017, 1.0, 2.1, 1.3, 5.8, 5.8, 2.8, 0.0, 18.8,546,29.04255319148936 @@ -24951,7 +24951,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.867017774851877,5,a-sust-i3,2018-19,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 2.0, 1.0, 5.0, 2.5, 0.0, 10.5,243,23.142857142857142 5.332949308755761,5,a-sust-i3,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 2.0, 1.0, 7.0, 5.0, 1.0, 16.0,463,28.9375 1.9907834101382484,1.99,a-sust-i3,2018-19,Nashoba - Nashoba Regional,07250505, 2.0, 1.0, 3.0, 2.0, 2.0, 4.0, 1.0, 15.0,978,65.2 --Infinity,1,a-sust-i3,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +NA,NA,a-sust-i3,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity 5.515909589642309,5,a-sust-i3,2018-19,Natick - Bennett-Hemenway,01980005, 6.0, 4.0, 0.0, 3.0, 5.0, 2.0, 1.0, 21.0,566,26.952380952380953 3.5672591617292078,3.57,a-sust-i3,2018-19,Natick - Brown,01980010, 1.0, 1.0, 0.0, 1.0, 2.5, 5.0, 0.0, 10.5,505,48.095238095238095 1.5391705069124426,1.54,a-sust-i3,2018-19,Natick - J F Kennedy Middle School,01980305, 1.0, 1.0, 0.0, 0.0, 5.0, 2.0, 1.0, 10.0,701,70.1 @@ -24994,7 +24994,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.2642089093702005,5,a-sust-i3,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 7.0, 5.0, 10.0, 7.0, 8.0, 4.0, 1.0, 42.0,791,18.833333333333332 -1.2165898617511524,1,a-sust-i3,2018-19,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,200,100.0 5.811059907834101,5,a-sust-i3,2018-19,New Bedford - Trinity Day Academy,02010510, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 4.0,95,23.75 --Infinity,1,a-sust-i3,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +NA,NA,a-sust-i3,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity -4.764976958525345,1,a-sust-i3,2018-19,New Bedford - William H Taylor,02010135, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,277,138.5 -41.032258064516135,1,a-sust-i3,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 6.943637008153137,5,a-sust-i3,2018-19,New Salem-Wendell - Swift River,07280015, 1.0, 1.0, 2.0, 3.0, 4.0, 2.0, 0.0, 13.0,149,11.461538461538462 @@ -25101,7 +25101,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.138248847926267,1,a-sust-i3,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 5.0,550,110.0 4.2406015037593985,4.24,a-sust-i3,2018-19,Old Rochester - Old Rochester Regional High,07400505, 1.0, 1.0, 4.0, 1.0, 3.0, 8.0, 1.0, 19.0,775,40.78947368421053 3.524833589349718,3.52,a-sust-i3,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 1.0, 2.0, 2.0, 4.0, 0.0, 9.0,437,48.55555555555556 --Infinity,1,a-sust-i3,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +NA,NA,a-sust-i3,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity 2.9923195084485403,2.99,a-sust-i3,2018-19,Orange - Dexter Park,02230010, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 6.0,326,54.333333333333336 6.993855606758832,5,a-sust-i3,2018-19,Orange - Fisher Hill,02230015, 1.0, 3.0, 8.0, 3.0, 5.0, 1.0, 3.0, 24.0,262,10.916666666666666 5.949778989936989,5,a-sust-i3,2018-19,Orleans - Orleans Elementary,02240005, 0.0, 1.0, 1.0, 1.0, 1.6, 3.2, 2.0, 9.8,218,22.24489795918367 @@ -25137,11 +25137,11 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.831587767071638,3.83,a-sust-i3,2018-19,Pentucket - Pentucket Regional Middle,07450405, 2.4, 0.0, 1.4, 3.0, 2.0, 0.0, 0.0, 8.8,398,45.22727272727273 1.1797235023041472,1.18,a-sust-i3,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 2.0, 1.0, 2.0, 0.0, 1.0, 4.0, 0.0, 10.0,740,74.0 2.700460829493087,2.7,a-sust-i3,2018-19,Petersham - Petersham Center,02340005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,115,57.5 --Infinity,1,a-sust-i3,2018-19,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, 0.0, 0.0, 0.0,119,Infinity --Infinity,1,a-sust-i3,2018-19,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, 0.0, 0.0, 0.0,198,Infinity --Infinity,1,a-sust-i3,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity --Infinity,1,a-sust-i3,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,789,Infinity --Infinity,1,a-sust-i3,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +NA,NA,a-sust-i3,2018-19,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, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i3,2018-19,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, 0.0, 0.0, 0.0,198,Infinity +NA,NA,a-sust-i3,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +NA,NA,a-sust-i3,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,789,Infinity +NA,NA,a-sust-i3,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity 6.8640017147143935,5,a-sust-i3,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 1.0, 1.0, 2.0, 3.0, 4.7, 1.3, 12.9,159,12.325581395348836 6.724922906344201,5,a-sust-i3,2018-19,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 2.0, 3.0, 6.0, 1.3, 1.0, 13.3,184,13.834586466165414 6.946675444371297,5,a-sust-i3,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 2.0, 0.0, 0.5, 0.0, 0.0, 0.3, 2.8,32,11.428571428571429 @@ -25187,7 +25187,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.907704896851716,4.91,a-sust-i3,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 2.4, 1.0, 1.0, 1.0, 1.3, 4.0, 0.0, 10.7,359,33.55140186915888 6.303559953733453,5,a-sust-i3,2018-19,Quabbin - Ruggles Lane,07530030, 2.8, 3.0, 3.5, 3.0, 9.0, 3.8, 0.0, 25.1,462,18.40637450199203 4.774193548387097,4.77,a-sust-i3,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 3.0, 1.0, 1.0, 3.0, 2.0, 0.0, 10.0,350,35.0 --Infinity,1,a-sust-i3,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +NA,NA,a-sust-i3,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity 5.509803360334316,5,a-sust-i3,2018-19,Quaboag Regional - Warren Elementary,07780005, 4.5, 2.0, 0.6, 1.0, 2.0, 6.0, 0.0, 16.1,435,27.01863354037267 5.271889400921658,5,a-sust-i3,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 1.0, 1.0, 1.0, 5.0, 1.0, 1.0, 10.0,296,29.6 7.320276497695852,5,a-sust-i3,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 3.0, 3.0, 1.0, 3.0, 9.0, 4.0, 1.0, 24.0,177,7.375 @@ -25209,9 +25209,9 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.273206056616195,3.27,a-sust-i3,2018-19,Quincy - South West Middle School,02430320, 0.0, 0.0, 1.0, 1.0, 1.0, 2.0, 2.0, 7.0,359,51.285714285714285 4.811059907834101,4.81,a-sust-i3,2018-19,Quincy - Squantum,02430095, 0.0, 1.0, 0.0, 2.0, 3.0, 2.0, 2.0, 10.0,346,34.6 3.562870309414088,3.56,a-sust-i3,2018-19,Quincy - Wollaston School,02430110, 0.0, 0.0, 1.0, 4.0, 0.0, 1.0, 1.0, 7.0,337,48.142857142857146 --Infinity,1,a-sust-i3,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +NA,NA,a-sust-i3,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity 1.4750733137829908,1.48,a-sust-i3,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.9, 2.0, 3.1, 0.0, 0.9, 0.9, 8.8,623,70.79545454545455 --Infinity,1,a-sust-i3,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i3,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity 4.8868407578085,4.89,a-sust-i3,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 2.0, 1.0, 0.0, 3.0, 0.0, 3.0, 9.0,304,33.77777777777778 6.232819074333801,5,a-sust-i3,2018-19,Randolph - J F Kennedy Elementary,02440018, 5.0, 4.0, 5.0, 0.0, 0.0, 4.0, 5.0, 23.0,441,19.17391304347826 -5.917050691244238,1,a-sust-i3,2018-19,Randolph - Margaret L Donovan,02440015, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,453,151.0 @@ -25231,7 +25231,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.1490015360983106,1.15,a-sust-i3,2018-19,Revere - Abraham Lincoln,02480025, 2.0, 1.0, 0.0, 0.5, 2.0, 3.5, 0.0, 9.0,669,74.33333333333333 5.774364225977129,5,a-sust-i3,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 1.0, 3.5, 1.0, 1.5, 4.0, 2.5, 0.0, 13.5,326,24.14814814814815 3.0025601638504864,3.0,a-sust-i3,2018-19,Revere - Garfield Elementary School,02480056, 1.0, 1.5, 1.5, 1.0, 2.5, 5.0, 1.0, 13.5,732,54.22222222222222 --Infinity,1,a-sust-i3,2018-19,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +NA,NA,a-sust-i3,2018-19,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity -0.010054461667364917,1,a-sust-i3,2018-19,Revere - Paul Revere,02480050, 0.5, 0.0, 0.5, 2.0, 1.5, 0.5, 0.5, 5.5,478,86.9090909090909 -13.44754676063974,1,a-sust-i3,2018-19,Revere - Revere High,02480505, 2.5, 0.5, 1.0, 2.5, 0.5, 1.5, 0.0, 8.5,1978,232.7058823529412 0.9608294930875574,1,a-sust-i3,2018-19,Revere - Rumney Marsh Academy,02480014, 1.0, 1.0, 0.0, 2.0, 1.0, 3.0, 0.0, 8.0,611,76.375 @@ -25251,7 +25251,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.8387096774193545,2.84,a-sust-i3,2018-19,Rockport - Rockport High,02520510, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 5.0,280,56.0 4.0368663594470044,4.04,a-sust-i3,2018-19,Rockport - Rockport Middle,02520305, 0.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 5.0,215,43.0 5.8275181040158,5,a-sust-i3,2018-19,Rowe - Rowe Elementary,02530005, 0.0, 1.0, 0.0, 1.8, 0.0, 0.0, 0.0, 2.8,66,23.571428571428573 --Infinity,1,a-sust-i3,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1518,Infinity +NA,NA,a-sust-i3,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1518,Infinity 1.9439324116743475,1.94,a-sust-i3,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 3.0, 6.0, 4.0, 1.0, 6.0, 3.0, 1.0, 24.0,1577,65.70833333333333 5.439104674127716,5,a-sust-i3,2018-19,Salem - Bates,02580003, 1.0, 1.0, 3.0, 1.0, 3.0, 3.0, 2.0, 14.0,389,27.785714285714285 5.926267281105991,5,a-sust-i3,2018-19,Salem - Carlton,02580015, 2.0, 0.0, 1.0, 2.0, 2.4, 2.0, 3.0, 12.4,279,22.5 @@ -25287,9 +25287,9 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.5689471818504073,3.57,a-sust-i3,2018-19,Seekonk - Seekonk High,02650505, 2.0, 1.0, 2.0, 3.0, 2.0, 3.0, 0.0, 13.0,625,48.07692307692308 4.569380440348183,4.57,a-sust-i3,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 4.0, 7.0, 2.0, 0.0, 5.0, 0.0, 0.0, 18.0,670,37.22222222222222 -39.834101382488484,1,a-sust-i3,2018-19,Sharon - Cottage Street,02660005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,519,519.0 --Infinity,1,a-sust-i3,2018-19,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +NA,NA,a-sust-i3,2018-19,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity -41.493087557603694,1,a-sust-i3,2018-19,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,537,537.0 --Infinity,1,a-sust-i3,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +NA,NA,a-sust-i3,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity 3.0800965547509325,3.08,a-sust-i3,2018-19,Sharon - Sharon High,02660505, 0.0, 4.0, 2.0, 2.0, 7.0, 5.0, 1.0, 21.0,1121,53.38095238095238 3.5128373930217247,3.51,a-sust-i3,2018-19,Sharon - Sharon Middle,02660305, 1.5, 3.0, 1.0, 3.0, 3.0, 3.0, 3.0, 17.5,852,48.68571428571428 -1.1740517546969158,1,a-sust-i3,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.0, 5.0, 2.0, 1.0, 1.0, 3.0, 0.0, 13.0,1294,99.53846153846153 @@ -25317,7 +25317,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.552995391705069,1,a-sust-i3,2018-19,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,229,114.5 7.043778801843318,5,a-sust-i3,2018-19,Somerville - Capuano Early Childhood Center,02740005, 1.0, 5.0, 4.0, 10.0, 6.0, 5.0, 1.0, 32.0,332,10.375 1.9757017176372016,1.98,a-sust-i3,2018-19,Somerville - E Somerville Community,02740111, 3.0, 2.0, 2.0, 1.0, 1.0, 2.0, 0.0, 11.0,719,65.36363636363636 --Infinity,1,a-sust-i3,2018-19,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i3,2018-19,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity 5.741935483870968,5,a-sust-i3,2018-19,Somerville - John F Kennedy,02740083, 1.0, 4.0, 1.0, 2.0, 5.0, 3.0, 2.0, 18.0,441,24.5 6.709677419354839,5,a-sust-i3,2018-19,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,14,14.0 -2.481776288227903,1,a-sust-i3,2018-19,Somerville - Somerville High,02740505, 1.0, 3.0, 3.0, 0.0, 2.0, 1.0, 1.0, 11.0,1251,113.72727272727273 @@ -25344,7 +25344,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.197498354180381,4.2,a-sust-i3,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 6.0, 7.0, 5.0, 5.0, 3.0, 6.0, 3.0, 35.0,1444,41.25714285714286 5.152073732718894,5,a-sust-i3,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 2.0, 2.0, 1.0, 5.0, 0.0, 10.0,309,30.9 6.225806451612903,5,a-sust-i3,2018-19,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 4.0,77,19.25 --Infinity,1,a-sust-i3,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity 6.731621680930437,5,a-sust-i3,2018-19,Southern Berkshire - Undermountain,07650035, 0.0, 1.0, 2.0, 8.0, 3.0, 6.0, 1.0, 21.0,289,13.761904761904763 1.868256980211439,1.87,a-sust-i3,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 3.0, 0.0, 2.0, 1.0, 5.0, 4.0, 2.0, 17.0,1131,66.52941176470588 5.204504531998657,5,a-sust-i3,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 3.0, 2.0, 1.0, 2.0, 7.1, 0.0, 15.1,458,30.33112582781457 @@ -25369,8 +25369,8 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.3179723502304146,1.32,a-sust-i3,2018-19,Springfield - Forest Park Middle,02810325, 1.0, 1.0, 1.0, 2.0, 3.0, 2.0, 0.0, 10.0,725,72.5 5.013824884792626,5,a-sust-i3,2018-19,Springfield - Frank H Freedman,02810075, 1.0, 0.0, 0.0, 3.0, 4.0, 2.0, 0.0, 10.0,324,32.4 5.119815668202765,5,a-sust-i3,2018-19,Springfield - Frederick Harris,02810080, 2.0, 3.0, 3.0, 6.0, 3.0, 3.0, 0.0, 20.0,625,31.25 --Infinity,1,a-sust-i3,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity --Infinity,1,a-sust-i3,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.0, 0.0,32,Infinity +NA,NA,a-sust-i3,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity +NA,NA,a-sust-i3,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.0, 0.0,32,Infinity 5.949308755760368,5,a-sust-i3,2018-19,Springfield - German Gerena Community School,02810195, 4.0, 9.0, 4.0, 5.0, 9.0, 1.0, 0.0, 32.0,712,22.25 5.081413210445468,5,a-sust-i3,2018-19,Springfield - Glenwood,02810065, 0.0, 2.0, 3.0, 3.0, 0.0, 1.0, 0.0, 9.0,285,31.666666666666668 5.473118279569892,5,a-sust-i3,2018-19,Springfield - Glickman Elementary,02810068, 0.0, 5.0, 0.0, 2.0, 3.0, 1.0, 1.0, 12.0,329,27.416666666666668 @@ -25383,7 +25383,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.502304147465438,4.5,a-sust-i3,2018-19,Springfield - John J Duggan Middle,02810320, 3.0, 5.0, 7.0, 3.0, 2.0, 0.0, 0.0, 20.0,759,37.95 3.8657011191573405,3.87,a-sust-i3,2018-19,Springfield - Kensington International School,02810110, 1.0, 2.0, 0.0, 2.0, 2.0, 0.0, 0.0, 7.0,314,44.857142857142854 3.668202764976958,3.67,a-sust-i3,2018-19,Springfield - Liberty,02810115, 1.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 6.0,282,47.0 --Infinity,1,a-sust-i3,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9,Infinity +NA,NA,a-sust-i3,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9,Infinity 1.8709677419354838,1.87,a-sust-i3,2018-19,Springfield - Lincoln,02810120, 0.0, 2.0, 1.0, 0.0, 1.0, 1.0, 1.0, 6.0,399,66.5 4.502816180235535,4.5,a-sust-i3,2018-19,Springfield - M Marcus Kiley Middle,02810330, 0.0, 1.0, 5.0, 5.0, 1.0, 4.0, 2.0, 18.0,683,37.94444444444444 6.944700460829493,5,a-sust-i3,2018-19,Springfield - Margaret C Ells,02810060, 2.0, 6.0, 0.0, 5.0, 5.0, 2.0, 0.0, 20.0,229,11.45 @@ -25401,8 +25401,8 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.758998629966372,2.76,a-sust-i3,2018-19,Springfield - Springfield Central High,02810500, 0.0, 9.0, 6.0, 7.0, 4.0, 8.0, 3.0, 37.0,2104,56.86486486486486 2.6774193548387095,2.68,a-sust-i3,2018-19,Springfield - Springfield High School,02810570, 0.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 4.0,231,57.75 3.8525345622119813,3.85,a-sust-i3,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 3.0, 2.0, 7.0, 4.0, 10.0, 2.0, 28.0,1260,45.0 --Infinity,1,a-sust-i3,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity --Infinity,1,a-sust-i3,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +NA,NA,a-sust-i3,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i3,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity 7.37532002048131,5,a-sust-i3,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 1.0, 2.0, 0.0, 2.0, 2.0, 1.0, 1.0, 9.0,61,6.777777777777778 6.986175115207374,5,a-sust-i3,2018-19,Springfield - Springfield Public Day High School,02810550, 0.0, 3.0, 1.0, 1.0, 2.0, 2.0, 0.0, 9.0,99,11.0 7.354838709677419,5,a-sust-i3,2018-19,Springfield - Springfield Public Day Middle School,02810345, 0.0, 2.0, 0.0, 3.0, 1.0, 1.0, 0.0, 7.0,49,7.0 @@ -25415,7 +25415,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.022332506203474,5,a-sust-i3,2018-19,Springfield - Washington,02810185, 3.0, 0.0, 2.0, 2.0, 2.0, 3.0, 1.0, 13.0,420,32.30769230769231 2.088215931533904,2.09,a-sust-i3,2018-19,Springfield - White Street,02810190, 2.0, 0.0, 1.0, 1.0, 0.0, 3.0, 0.0, 7.0,449,64.14285714285714 5.6036866359447,5,a-sust-i3,2018-19,Springfield - William N. DeBerry,02810045, 0.0, 3.0, 2.0, 1.0, 0.0, 3.0, 0.0, 9.0,234,26.0 --Infinity,1,a-sust-i3,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +NA,NA,a-sust-i3,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity 6.321481978820153,5,a-sust-i3,2018-19,Stoneham - Colonial Park,02840005, 1.0, 2.0, 1.8, 3.7, 5.0, 1.6, 0.0, 15.1,275,18.211920529801326 5.406188281764319,5,a-sust-i3,2018-19,Stoneham - Robin Hood,02840025, 1.0, 0.0, 1.0, 0.0, 5.0, 7.0, 0.0, 14.0,394,28.142857142857142 1.8801843317972342,1.88,a-sust-i3,2018-19,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 1.0, 5.0,332,66.4 @@ -25430,7 +25430,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.13034891375905303,1,a-sust-i3,2018-19,Stoughton - South Elementary,02850015, 0.0, 0.0, 1.2, 0.0, 1.6, 0.0, 0.0, 2.8,247,88.21428571428572 -1.9750384024577587,1,a-sust-i3,2018-19,Stoughton - Stoughton High,02850505, 1.3, 1.3, 0.4, 1.8, 1.3, 3.7, 0.0, 9.6,1039,108.22916666666667 5.819969278033794,5,a-sust-i3,2018-19,Sturbridge - Burgess Elementary,02870005, 0.0, 3.0, 4.0, 5.0, 16.0, 7.0, 2.5, 37.5,887,23.653333333333332 --Infinity,1,a-sust-i3,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity +NA,NA,a-sust-i3,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836,Infinity -0.6912442396313364,1,a-sust-i3,2018-19,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 1.0, 2.5, 1.0, 0.5, 3.0, 2.0, 10.0,943,94.3 5.307152875175316,5,a-sust-i3,2018-19,Sudbury - General John Nixon Elementary,02880025, 1.0, 0.0, 0.0, 2.0, 5.0, 3.5, 0.0, 11.5,336,29.217391304347824 3.292601952331401,3.29,a-sust-i3,2018-19,Sudbury - Israel Loring School,02880015, 0.0, 2.0, 0.0, 2.8, 1.5, 2.5, 0.5, 9.3,475,51.0752688172043 @@ -25455,7 +25455,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -6.107965766951942,1,a-sust-i3,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 1.0, 4.0, 6.0, 1.0, 2.0, 0.0, 0.0, 14.0,2143,153.07142857142858 4.589861751152074,4.59,a-sust-i3,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 3.0, 0.0, 1.0, 5.0, 3.0, 2.0, 2.0, 16.0,592,37.0 4.9250104733975695,4.93,a-sust-i3,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 2.0, 4.0, 2.0, 3.0, 6.0, 5.0, 0.0, 22.0,734,33.36363636363637 --Infinity,1,a-sust-i3,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +NA,NA,a-sust-i3,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity 3.5241935483870965,3.52,a-sust-i3,2018-19,Taunton - Benjamin Friedman Middle,02930315, 0.0, 2.0, 0.0, 2.0, 5.0, 6.0, 1.0, 16.0,777,48.5625 4.408503047420841,4.41,a-sust-i3,2018-19,Taunton - East Taunton Elementary,02930010, 0.0, 1.0, 0.0, 2.5, 3.0, 6.0, 3.0, 15.5,604,38.96774193548387 2.267281105990783,2.27,a-sust-i3,2018-19,Taunton - Edmund Hatch Bennett,02930007, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 1.0, 5.0,311,62.2 @@ -25467,7 +25467,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.927803379416282,4.93,a-sust-i3,2018-19,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 2.0, 4.0, 2.0, 5.0, 2.0, 15.0,500,33.333333333333336 1.4331797235023038,1.43,a-sust-i3,2018-19,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.6, 4.0, 4.0, 1.0, 9.6,684,71.25 3.133640552995392,3.13,a-sust-i3,2018-19,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 2.0, 1.0, 7.0, 0.0, 10.0,528,52.8 --Infinity,1,a-sust-i3,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity +NA,NA,a-sust-i3,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101,Infinity -2.9928780896522835,1,a-sust-i3,2018-19,Taunton - Taunton High,02930505, 1.0, 2.0, 0.0, 2.0, 3.0, 11.0, 3.0, 22.0,2624,119.27272727272727 4.9629141979372395,4.96,a-sust-i3,2018-19,Tewksbury - Heath-Brook,02950010, 0.0, 2.0, 0.0, 1.0, 2.0, 4.5, 1.0, 10.5,346,32.95238095238095 5.383512544802867,5,a-sust-i3,2018-19,Tewksbury - John F. Ryan,02950023, 5.0, 4.0, 0.0, 2.0, 2.0, 5.0, 0.0, 18.0,511,28.38888888888889 @@ -25494,11 +25494,11 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.972769166317554,2.97,a-sust-i3,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,60,54.54545454545454 5.672974474621695,5,a-sust-i3,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 0.2, 1.7, 3.9, 1.9, 1.7, 3.7, 1.0, 14.1,356,25.24822695035461 3.765187795548327,3.77,a-sust-i3,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 1.3, 2.0, 0.0, 2.0, 1.0, 5.0, 4.0, 15.3,703,45.947712418300654 --Infinity,1,a-sust-i3,2018-19,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity +NA,NA,a-sust-i3,2018-19,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44,Infinity 6.04147465437788,5,a-sust-i3,2018-19,Uxbridge - Taft Early Learning Center,03040005, 0.0, 1.0, 5.7, 8.7, 6.0, 5.0, 0.0, 26.4,561,21.25 3.0649350649350646,3.06,a-sust-i3,2018-19,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 0.0, 0.0, 6.0, 2.0, 2.0, 11.0,589,53.54545454545455 3.576036866359447,3.58,a-sust-i3,2018-19,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 2.0, 5.0, 3.0, 1.0, 11.0,528,48.0 --Infinity,1,a-sust-i3,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +NA,NA,a-sust-i3,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity 5.923556519381946,5,a-sust-i3,2018-19,Wachusett - Central Tree Middle,07750310, 0.0, 4.0, 1.0, 1.0, 5.0, 4.0, 2.0, 17.0,383,22.529411764705884 6.042830035239902,5,a-sust-i3,2018-19,Wachusett - Chocksett Middle School,07750315, 1.0, 6.0, 0.0, 5.0, 2.0, 3.0, 0.0, 17.0,361,21.235294117647058 6.049512378094523,5,a-sust-i3,2018-19,Wachusett - Davis Hill Elementary,07750018, 1.0, 0.0, 3.5, 11.0, 0.0, 3.0, 3.0, 21.5,455,21.162790697674417 @@ -25543,7 +25543,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.743471582181259,4.74,a-sust-i3,2018-19,Ware - Ware Middle School,03090305, 1.0, 0.0, 1.0, 3.0, 3.0, 1.0, 0.0, 9.0,318,35.333333333333336 6.0151415404871615,5,a-sust-i3,2018-19,Wareham - John William Decas,03100003, 0.0, 1.5, 3.0, 5.5, 14.0, 4.0, 0.0, 28.0,603,21.535714285714285 4.857581742374369,4.86,a-sust-i3,2018-19,Wareham - Minot Forest,03100017, 0.0, 2.0, 0.0, 1.0, 1.0, 4.0, 2.5, 10.5,358,34.095238095238095 --Infinity,1,a-sust-i3,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +NA,NA,a-sust-i3,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity 3.707227965292481,3.71,a-sust-i3,2018-19,Wareham - Wareham Middle,03100305, 0.0, 1.0, 0.6, 2.0, 3.0, 4.5, 0.0, 11.1,517,46.57657657657658 4.468968819199234,4.47,a-sust-i3,2018-19,Wareham - Wareham Senior High,03100505, 1.0, 0.0, 1.4, 3.0, 3.0, 5.0, 2.0, 15.4,590,38.31168831168831 5.235023041474654,5,a-sust-i3,2018-19,Watertown - Cunniff,03140015, 1.0, 2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 11.0,330,30.0 @@ -25739,7 +25739,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.9646697388632874,1,a-sust-i3,2017-18,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 2.0, 2.0, 5.0, 0.0, 9.0,687,76.33333333333333 5.701274058010301,5,a-sust-i3,2017-18,Abington - Beaver Brook Elementary,00010020, 1.0, 0.0, 1.0, 3.0, 8.5, 2.0, 1.5, 17.0,424,24.941176470588236 4.9051661411593495,4.91,a-sust-i3,2017-18,Abington - Woodsdale Elementary School,00010015, 1.0, 1.0, 0.5, 1.5, 5.5, 0.0, 0.0, 9.5,319,33.578947368421055 --Infinity,1,a-sust-i3,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity +NA,NA,a-sust-i3,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524,Infinity 0.6146010186757209,1,a-sust-i3,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 2.0, 2.6, 1.6, 3.6, 7.3, 5.6, 0.0, 22.8,1827,80.13157894736842 6.584255784122761,5,a-sust-i3,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.9, 5.5, 8.5, 4.1, 9.2, 1.0, 29.1,447,15.36082474226804 5.801405658677239,5,a-sust-i3,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.8, 5.0, 7.7, 2.8, 1.5, 17.9,427,23.854748603351958 @@ -25763,7 +25763,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.736435260888955,5,a-sust-i3,2017-18,Agawam - James Clark School,00050030, 3.8, 2.0, 4.0, 3.0, 9.0, 3.0, 0.0, 24.8,340,13.709677419354838 5.225321367935969,5,a-sust-i3,2017-18,Agawam - Roberta G. Doering School,00050303, 0.0, 4.0, 1.0, 4.0, 7.0, 2.0, 1.0, 19.0,572,30.105263157894736 6.6137951538575885,5,a-sust-i3,2017-18,Agawam - Robinson Park,00050025, 4.0, 2.0, 4.0, 4.0, 5.0, 5.8, 0.0, 24.8,373,15.04032258064516 --Infinity,1,a-sust-i3,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +NA,NA,a-sust-i3,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity 6.042713443337793,5,a-sust-i3,2017-18,Amesbury - Amesbury Elementary,00070005, 0.0, 2.0, 0.0, 4.5, 6.5, 4.7, 0.9, 18.6,395,21.236559139784944 1.1797235023041472,1.18,a-sust-i3,2017-18,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.9, 1.9, 3.0, 1.7, 0.5, 8.0,592,74.0 3.9037378392217104,3.9,a-sust-i3,2017-18,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,40,44.44444444444444 @@ -25784,7 +25784,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.813842694628109,5,a-sust-i3,2017-18,Andover - South Elementary,00090020, 2.7, 2.8, 0.0, 4.9, 2.2, 5.8, 2.5, 20.7,491,23.719806763285025 6.332236120254554,5,a-sust-i3,2017-18,Andover - West Elementary,00090025, 1.9, 5.6, 1.0, 7.1, 10.5, 5.5, 2.3, 33.6,608,18.095238095238095 5.995757442762051,5,a-sust-i3,2017-18,Andover - Wood Hill Middle School,00090350, 2.0, 3.8, 1.9, 0.8, 3.3, 5.4, 1.8, 18.9,411,21.746031746031747 --Infinity,1,a-sust-i3,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +NA,NA,a-sust-i3,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity 0.5536697763290991,1,a-sust-i3,2017-18,Arlington - Arlington High,00100505, 3.0, 5.0, 2.0, 2.4, 1.0, 1.0, 2.0, 16.4,1325,80.79268292682927 5.542242703533026,5,a-sust-i3,2017-18,Arlington - Brackett,00100010, 6.5, 1.0, 1.0, 2.0, 4.5, 1.3, 2.0, 18.3,488,26.666666666666664 5.3922472214692325,5,a-sust-i3,2017-18,Arlington - Cyrus E Dallin,00100025, 3.0, 6.0, 1.0, 2.0, 5.0, 0.0, 0.0, 17.0,481,28.294117647058822 @@ -25812,7 +25812,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.153097798259089,5,a-sust-i3,2017-18,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 1.5, 1.0, 0.0, 2.0, 4.5,139,30.88888888888889 4.972762354351654,4.97,a-sust-i3,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 7.0, 8.7, 3.2, 5.7, 3.3, 4.0, 5.0, 36.9,1212,32.84552845528455 3.576036866359447,3.58,a-sust-i3,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 0.0, 8.0,384,48.0 --Infinity,1,a-sust-i3,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i3,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity 1.8447637119363876,1.84,a-sust-i3,2017-18,Attleboro - Attleboro High,00160505, 0.0, 5.0, 3.5, 3.0, 8.0, 6.0, 0.0, 25.5,1703,66.7843137254902 4.026625704045059,4.03,a-sust-i3,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 2.0, 3.0, 4.0, 2.5, 2.0, 13.5,582,43.111111111111114 5.308170580059981,5,a-sust-i3,2017-18,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.3, 1.6, 3.4, 0.0, 1.0, 6.3,184,29.206349206349206 @@ -25926,7 +25926,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -19.188940092165897,1,a-sust-i3,2017-18,Boston - Dearborn,00350074, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,354,295.0 2.1145490454246216,2.11,a-sust-i3,2017-18,Boston - Dennis C Haley,00350077, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 3.0, 7.0,447,63.857142857142854 -3.9508448540706596,1,a-sust-i3,2017-18,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 1.0, 1.0, 4.0, 0.0, 6.0,778,129.66666666666666 --Infinity,1,a-sust-i3,2017-18,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +NA,NA,a-sust-i3,2017-18,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity 6.975332068311196,5,a-sust-i3,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 2.0, 3.0, 5.0, 1.0, 3.0, 3.0, 17.0,189,11.117647058823529 6.046082949308755,5,a-sust-i3,2017-18,Boston - Dr. William Henderson Lower,00350266, 2.5, 2.0, 1.5, 0.5, 2.0, 1.5, 0.0, 10.0,212,21.2 2.4147465437788016,2.41,a-sust-i3,2017-18,Boston - Dr. William Henderson Upper,00350426, 2.5, 2.0, 1.5, 0.5, 2.0, 1.5, 0.0, 10.0,606,60.6 @@ -26143,7 +26143,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.5173858399664852,3.52,a-sust-i3,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 1.0, 5.0, 0.0, 0.0, 2.0, 2.0, 1.0, 11.0,535,48.63636363636363 3.637480798771121,3.64,a-sust-i3,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 1.0, 5.0, 1.0, 2.0, 1.0, 2.0, 0.0, 12.0,568,47.333333333333336 2.958525345622119,2.96,a-sust-i3,2017-18,Chelsea - George F. Kelly Elementary,00570035, 1.0, 3.0, 1.0, 0.0, 2.0, 3.0, 0.0, 10.0,547,54.7 --Infinity,1,a-sust-i3,2017-18,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +NA,NA,a-sust-i3,2017-18,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity 6.48882705851665,5,a-sust-i3,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 2.0, 16.0, 6.0, 6.0, 14.0, 8.0, 1.0, 53.0,869,16.39622641509434 5.314022383146807,5,a-sust-i3,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 6.0, 5.0, 0.0, 3.0, 0.0, 3.5, 0.0, 17.5,510,29.142857142857142 6.69431643625192,5,a-sust-i3,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.8, 1.0, 1.0, 4.0, 1.0, 1.8, 0.0, 9.6,136,14.166666666666668 @@ -26264,7 +26264,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.196262474908823,5,a-sust-i3,2017-18,Easton - Parkview Elementary,00880015, 2.0, 0.8, 0.8, 1.5, 6.5, 3.7, 1.0, 16.3,319,19.570552147239262 4.348308471836985,4.35,a-sust-i3,2017-18,Easton - Richardson Olmsted School,00880025, 0.0, 1.6, 0.0, 3.0, 9.0, 7.5, 0.0, 21.1,836,39.620853080568715 6.908730158730158,5,a-sust-i3,2017-18,Edgartown - Edgartown Elementary,00890005, 0.2, 0.5, 4.2, 2.7, 15.0, 6.0, 0.2, 28.8,341,11.840277777777777 --Infinity,1,a-sust-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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +NA,NA,a-sust-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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity 7.127496159754224,5,a-sust-i3,2017-18,Erving - Erving Elementary,00910030, 0.0, 2.0, 4.0, 2.0, 2.0, 4.0, 1.0, 15.0,142,9.466666666666667 -2.614439324116745,1,a-sust-i3,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 2.0, 0.0, 2.0, 2.0, 1.0, 5.0, 0.0, 12.0,1382,115.16666666666667 5.9416282642089095,5,a-sust-i3,2017-18,Everett - Adams School,00930003, 0.0, 1.0, 0.0, 2.0, 1.0, 3.0, 2.0, 9.0,201,22.333333333333332 @@ -26283,7 +26283,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.718475073313783,3.72,a-sust-i3,2017-18,Fairhaven - Leroy Wood,00940030, 1.0, 2.0, 0.0, 2.0, 2.0, 2.0, 2.0, 11.0,511,46.45454545454545 -1.0959989663637544,1,a-sust-i3,2017-18,Fall River - B M C Durfee High,00950505, 3.0, 1.0, 2.4, 4.0, 2.0, 6.0, 3.0, 21.4,2112,98.69158878504673 4.931954996471125,4.93,a-sust-i3,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 3.0, 6.0, 6.0, 3.3, 3.0, 0.0, 1.0, 22.2,739,33.28828828828829 --Infinity,1,a-sust-i3,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1,Infinity +NA,NA,a-sust-i3,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1,Infinity 6.314606741573034,5,a-sust-i3,2017-18,Fall River - Henry Lord Community School,00950017, 8.0, 5.0, 4.6, 5.0, 5.0, 5.0, 3.0, 35.6,651,18.286516853932582 0.7419354838709675,1,a-sust-i3,2017-18,Fall River - James Tansey,00950140, 0.0, 1.0, 0.0, 2.0, 0.0, 1.0, 0.0, 4.0,315,78.75 3.967741935483871,3.97,a-sust-i3,2017-18,Fall River - John J Doran,00950045, 0.0, 4.0, 0.0, 6.0, 2.0, 0.0, 0.0, 12.0,525,43.75 @@ -26336,7 +26336,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.5231361656461073,1.52,a-sust-i3,2017-18,Framingham - Potter Road,01000039, 1.0, 1.0, 0.0, 0.6, 2.5, 1.0, 1.1, 7.3,513,70.27397260273973 3.2547017063146098,3.25,a-sust-i3,2017-18,Framingham - Walsh Middle,01000310, 1.6, 1.0, 2.0, 2.0, 4.0, 4.2, 0.0, 14.8,762,51.486486486486484 4.522273425499232,4.52,a-sust-i3,2017-18,Framingham - Woodrow Wilson,01000055, 0.0, 1.0, 0.7, 4.6, 5.7, 2.0, 1.1, 15.0,566,37.733333333333334 --Infinity,1,a-sust-i3,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +NA,NA,a-sust-i3,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity 2.12771560236998,2.13,a-sust-i3,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, 2.0, 0.0, 1.5, 3.0, 0.5, 0.0, 7.0,446,63.714285714285715 3.7419354838709675,3.74,a-sust-i3,2017-18,Franklin - Davis Thayer,01010035, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 0.0, 5.0,231,46.2 6.934971838197645,5,a-sust-i3,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 1.0, 2.0, 3.0, 3.0, 0.0, 0.0, 9.0,104,11.555555555555555 @@ -26356,7 +26356,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.880538816022687,4.88,a-sust-i3,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 1.0, 2.0, 1.0, 8.0, 1.0, 0.0, 0.0, 13.0,440,33.84615384615385 5.587422065600434,5,a-sust-i3,2017-18,Frontier - Frontier Regional,06700505, 1.0, 7.0, 3.0, 1.8, 5.0, 4.0, 2.0, 23.8,623,26.176470588235293 5.249968862872088,5,a-sust-i3,2017-18,Gardner - Elm Street School,01030001, 0.0, 2.5, 0.0, 6.0, 4.0, 4.0, 2.0, 18.5,552,29.83783783783784 --Infinity,1,a-sust-i3,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +NA,NA,a-sust-i3,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity -2.5990783410138247,1,a-sust-i3,2017-18,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 3.0, 2.0, 0.0, 6.0,690,115.0 4.663594470046083,4.66,a-sust-i3,2017-18,Gardner - Gardner Middle School,01030405, 1.0, 3.0, 1.0, 0.0, 0.0, 7.0, 3.0, 15.0,543,36.2 6.140791355474337,5,a-sust-i3,2017-18,Gardner - Waterford Street,01030020, 0.0, 2.0, 1.0, 6.2, 5.5, 8.0, 0.5, 23.2,468,20.17241379310345 @@ -26365,7 +26365,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.95852534562212,4.96,a-sust-i3,2017-18,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 2.0, 6.0,198,33.0 4.938044034818228,4.94,a-sust-i3,2017-18,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 1.0, 9.0,299,33.22222222222222 1.8402457757296469,1.84,a-sust-i3,2017-18,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 6.0,401,66.83333333333333 --Infinity,1,a-sust-i3,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i3,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity 3.1010280042538105,3.1,a-sust-i3,2017-18,Georgetown - Penn Brook,01050010, 0.0, 0.0, 2.0, 4.0, 2.0, 5.0, 0.0, 13.0,691,53.15384615384615 4.282642089093701,4.28,a-sust-i3,2017-18,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 3.0,121,40.333333333333336 3.059907834101382,3.06,a-sust-i3,2017-18,Gill-Montague - Gill Elementary,06740005, 0.5, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.5,134,53.6 @@ -26429,7 +26429,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.0623892236795465,2.06,a-sust-i3,2017-18,Hanover - Center Elementary,01220005, 1.0, 0.0, 0.0, 1.6, 1.6, 1.0, 0.0, 5.2,335,64.42307692307692 -7.380184331797234,1,a-sust-i3,2017-18,Hanover - Hanover High,01220505, 0.0, 0.0, 0.8, 0.0, 0.0, 3.0, 1.0, 4.8,801,166.875 -25.29993989180526,1,a-sust-i3,2017-18,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 1.3, 1.0, 0.0, 2.3,831,361.304347826087 --Infinity,1,a-sust-i3,2017-18,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i3,2017-18,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity 0.453917050691244,1,a-sust-i3,2017-18,Harvard - Bromfield,01250505, 2.0, 0.0, 0.0, 0.0, 4.0, 1.0, 1.0, 8.0,655,81.875 5.278322456932546,5,a-sust-i3,2017-18,Harvard - Hildreth Elementary School,01250005, 1.0, 0.0, 1.7, 3.0, 4.5, 4.0, 0.6, 14.9,440,29.530201342281877 6.178801843317972,5,a-sust-i3,2017-18,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 3.0, 3.0, 4.0, 1.5, 1.0, 12.5,247,19.76 @@ -26566,7 +26566,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.3643832306391194,1,a-sust-i3,2017-18,Lexington - Lexington High,01550505, 4.4, 4.5, 4.4, 1.9, 4.4, 6.2, 0.9, 26.7,2212,82.84644194756555 5.894641727658805,5,a-sust-i3,2017-18,Lexington - Maria Hastings,01550035, 5.8, 5.8, 3.3, 2.1, 2.6, 0.8, 0.0, 20.4,466,22.84313725490196 3.829022853380984,3.83,a-sust-i3,2017-18,Lexington - Wm Diamond Middle,01550310, 0.0, 10.4, 1.3, 1.7, 1.7, 1.7, 2.7, 19.6,887,45.255102040816325 --Infinity,1,a-sust-i3,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i3,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity 5.1290852269717675,5,a-sust-i3,2017-18,Lincoln - Hanscom Middle,01570305, 0.0, 1.0, 3.8, 1.9, 2.0, 0.0, 0.0, 8.7,271,31.149425287356323 6.462357872310863,5,a-sust-i3,2017-18,Lincoln - Hanscom Primary,01570006, 5.8, 1.9, 2.9, 2.9, 5.6, 0.9, 0.0, 19.9,332,16.683417085427138 6.15668202764977,5,a-sust-i3,2017-18,Lincoln - Lincoln School,01570025, 3.1, 0.0, 5.4, 4.3, 7.8, 4.8, 4.0, 29.3,586,20.0 @@ -26608,7 +26608,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.4147465437788016,1,a-sust-i3,2017-18,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,113,113.0 6.655462184873951,5,a-sust-i3,2017-18,Lowell - Washington,01600055, 3.0, 2.0, 1.0, 2.5, 3.0, 4.0, 1.5, 17.0,248,14.588235294117647 4.427474215492649,4.43,a-sust-i3,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 6.0, 5.0, 4.0, 0.0, 5.0, 1.0, 0.0, 21.0,814,38.76190476190476 --Infinity,1,a-sust-i3,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +NA,NA,a-sust-i3,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity 4.290322580645161,4.29,a-sust-i3,2017-18,Ludlow - Chapin Street Elementary School,01610020, 1.0, 0.0, 1.0, 1.0, 4.0, 1.0, 0.0, 8.0,322,40.25 6.97337429595494,5,a-sust-i3,2017-18,Ludlow - East Street Elementary School,01610010, 1.0, 5.0, 5.0, 9.0, 8.0, 8.0, 0.0, 36.0,401,11.13888888888889 2.718185040765686,2.72,a-sust-i3,2017-18,Ludlow - Ludlow Senior High,01610505, 0.0, 2.0, 1.0, 2.0, 2.1, 8.5, 0.0, 15.6,894,57.30769230769231 @@ -26651,7 +26651,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.204021784666946,5,a-sust-i3,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 1.0, 2.2, 1.0, 0.2, 4.4,38,8.636363636363635 2.3252139565503622,2.33,a-sust-i3,2017-18,Lynnfield - Summer Street,01640020, 0.0, 1.0, 0.0, 2.0, 3.0, 1.0, 0.0, 7.0,431,61.57142857142857 -0.6848635235732009,1,a-sust-i3,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 10.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0,1225,94.23076923076923 --Infinity,1,a-sust-i3,2017-18,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, 0.0, 0.0,96,Infinity +NA,NA,a-sust-i3,2017-18,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, 0.0, 0.0,96,Infinity 0.5178047758692913,1,a-sust-i3,2017-18,Malden - Beebe,01650003, 2.0, 2.0, 1.0, 2.0, 1.0, 2.0, 1.0, 11.0,893,81.18181818181819 2.23963133640553,2.24,a-sust-i3,2017-18,Malden - Ferryway,01650013, 4.0, 0.0, 0.0, 1.0, 4.0, 3.0, 2.0, 14.0,875,62.5 6.424539170506913,5,a-sust-i3,2017-18,Malden - Forestdale,01650027, 5.0, 8.0, 3.0, 6.0, 5.0, 5.0, 0.0, 32.0,547,17.09375 @@ -26675,7 +26675,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.9723502304147463,1,a-sust-i3,2017-18,Marblehead - Marblehead High,01680505, 3.0, 1.0, 2.0, 1.0, 4.0, 2.0, 0.6, 13.6,1037,76.25 -14.534562211981566,1,a-sust-i3,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,489,244.5 0.5800618328180593,1,a-sust-i3,2017-18,Marblehead - Village School,01680016, 1.0, 2.0, 1.3, 0.6, 2.0, 1.0, 0.0, 7.9,636,80.50632911392405 --Infinity,1,a-sust-i3,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i3,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity 5.317736027413447,5,a-sust-i3,2017-18,Marion - Sippican,01690005, 3.0, 0.0, 0.0, 4.0, 4.6, 3.0, 1.0, 15.6,454,29.102564102564102 5.3792827088759765,5,a-sust-i3,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 6.0, 7.0, 5.0, 6.0, 13.0, 6.0, 3.0, 46.0,1308,28.434782608695652 6.124645752729244,5,a-sust-i3,2017-18,Marlborough - Charles Jaworek School,01700030, 9.4, 3.0, 2.0, 7.0, 13.0, 3.0, 0.0, 37.4,761,20.3475935828877 @@ -26699,7 +26699,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.2370711725550445,1,a-sust-i3,2017-18,Mashpee - Mashpee High,01720505, 0.0, 1.0, 2.0, 0.5, 1.0, 0.0, 0.0, 4.5,451,100.22222222222223 4.445029624753127,4.45,a-sust-i3,2017-18,Mashpee - Mashpee Middle School,01720020, 0.0, 1.0, 1.0, 1.0, 0.0, 2.0, 2.0, 7.0,270,38.57142857142857 3.5299539170506913,3.53,a-sust-i3,2017-18,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 1.0, 10.0,485,48.5 --Infinity,1,a-sust-i3,2017-18,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.0, 0.0,585,Infinity +NA,NA,a-sust-i3,2017-18,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.0, 0.0,585,Infinity 6.164362519201228,5,a-sust-i3,2017-18,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 1.0, 6.0, 3.0, 2.0, 12.0,239,19.916666666666668 6.031874039938556,5,a-sust-i3,2017-18,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.0, 0.0, 2.0, 1.6, 4.0, 1.0, 9.6,205,21.354166666666668 5.70901909150757,5,a-sust-i3,2017-18,Maynard - Fowler School,01740305, 2.0, 1.0, 1.0, 3.0, 8.0, 6.0, 0.0, 21.0,522,24.857142857142858 @@ -26712,7 +26712,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.4855467113531635,1.49,a-sust-i3,2017-18,Medfield - Thomas Blake Middle,01750305, 2.0, 0.0, 1.0, 1.8, 1.0, 3.0, 0.0, 8.8,622,70.68181818181817 3.63516215981219,3.64,a-sust-i3,2017-18,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 1.0, 2.6, 6.0, 1.0, 10.6,502,47.35849056603774 2.2089093701996925,2.21,a-sust-i3,2017-18,Medford - Christopher Columbus,01760140, 1.0, 0.0, 0.0, 1.0, 3.0, 1.0, 0.0, 6.0,377,62.833333333333336 --Infinity,1,a-sust-i3,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity -4.073732718894009,1,a-sust-i3,2017-18,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 1.0, 4.0,524,131.0 3.7603686635944698,3.76,a-sust-i3,2017-18,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 1.0, 1.0, 3.0, 4.0, 1.0, 10.0,460,46.0 1.4167215273206053,1.42,a-sust-i3,2017-18,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 4.0, 3.0, 0.0, 7.0,500,71.42857142857143 @@ -26795,7 +26795,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.30005120327701,5,a-sust-i3,2017-18,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 3.0, 1.0, 5.0, 4.5, 0.0, 13.5,249,18.444444444444443 5.4464624559501225,5,a-sust-i3,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 2.0, 1.0, 7.0, 7.0, 0.0, 17.0,471,27.705882352941178 2.481217707024159,2.48,a-sust-i3,2017-18,Nashoba - Nashoba Regional,07250505, 0.0, 3.0, 2.0, 2.0, 3.0, 5.5, 1.0, 16.5,988,59.878787878787875 --Infinity,1,a-sust-i3,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity +NA,NA,a-sust-i3,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity 5.118602959010429,5,a-sust-i3,2017-18,Natick - Bennett-Hemenway,01980005, 5.0, 3.0, 0.0, 4.0, 3.0, 4.0, 0.0, 19.0,594,31.263157894736842 3.97542242703533,3.98,a-sust-i3,2017-18,Natick - Brown,01980010, 0.0, 1.0, 0.5, 2.0, 1.5, 7.0, 0.0, 12.0,524,43.666666666666664 -0.09292342655135485,1,a-sust-i3,2017-18,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 1.0, 4.3, 2.0, 0.0, 7.3,641,87.8082191780822 @@ -26814,7 +26814,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.351060344639309,5,a-sust-i3,2017-18,Needham - Newman Elementary,01990050, 6.6, 7.7, 3.0, 6.4, 11.0, 6.1, 1.5, 42.2,755,17.890995260663505 3.921778372054153,3.92,a-sust-i3,2017-18,Needham - Pollard Middle,01990405, 5.0, 2.0, 2.0, 2.6, 0.7, 6.0, 1.0, 19.3,854,44.248704663212436 1.348026447605691,1.35,a-sust-i3,2017-18,Needham - William Mitchell,01990040, 1.0, 0.0, 0.0, 1.9, 2.0, 2.0, 0.0, 6.9,498,72.17391304347825 --Infinity,1,a-sust-i3,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +NA,NA,a-sust-i3,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity -0.2603686635944703,1,a-sust-i3,2017-18,New Bedford - Abraham Lincoln,02010095, 2.0, 2.0, 1.0, 0.0, 1.0, 1.0, 1.0, 8.0,717,89.625 5.572964669738863,5,a-sust-i3,2017-18,New Bedford - Alfred J Gomes,02010063, 0.0, 5.0, 2.0, 5.0, 2.0, 7.0, 0.0, 21.0,553,26.333333333333332 0.8571428571428569,1,a-sust-i3,2017-18,New Bedford - Betsey B Winslow,02010140, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 4.0,310,77.5 @@ -26839,8 +26839,8 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.9861751152073736,1,a-sust-i3,2017-18,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,195,97.5 5.9196840026333115,5,a-sust-i3,2017-18,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.5, 2.0, 1.0, 0.0, 3.5,79,22.571428571428573 -1.2165898617511524,1,a-sust-i3,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,100,100.0 --Infinity,1,a-sust-i3,2017-18,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity --Infinity,1,a-sust-i3,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +NA,NA,a-sust-i3,2017-18,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +NA,NA,a-sust-i3,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity 6.999341672152733,5,a-sust-i3,2017-18,New Salem-Wendell - Swift River,07280015, 1.0, 2.0, 3.0, 2.0, 5.0, 1.0, 0.0, 14.0,152,10.857142857142858 5.594694840957627,5,a-sust-i3,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 2.0, 3.0, 0.0, 2.0, 2.0, 3.3, 0.0, 12.3,321,26.097560975609756 6.0454473224217375,5,a-sust-i3,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 3.4, 2.0, 4.0, 4.4, 8.1, 7.1, 0.0, 29.0,615,21.20689655172414 @@ -26945,7 +26945,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -7.025834380673089,1,a-sust-i3,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 1.3, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.3,538,163.03030303030303 3.7874762808349147,3.79,a-sust-i3,2017-18,Old Rochester - Old Rochester Regional High,07400505, 1.0, 1.0, 2.0, 1.0, 4.0, 7.0, 1.0, 17.0,777,45.705882352941174 3.98659405111018,3.99,a-sust-i3,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 1.0, 1.0, 1.0, 3.0, 5.0, 0.0, 11.0,479,43.54545454545455 --Infinity,1,a-sust-i3,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity +NA,NA,a-sust-i3,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160,Infinity 2.2304147465437785,2.23,a-sust-i3,2017-18,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 5.0,313,62.6 6.646616541353383,5,a-sust-i3,2017-18,Orange - Fisher Hill,02230015, 1.0, 1.0, 3.0, 2.0, 5.0, 4.0, 3.0, 19.0,279,14.68421052631579 5.902755572274993,5,a-sust-i3,2017-18,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 1.0, 1.0, 2.6, 2.2, 3.0, 9.8,223,22.755102040816325 @@ -26981,10 +26981,10 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.4437129690585913,2.44,a-sust-i3,2017-18,Pentucket - Pentucket Regional Middle,07450405, 2.0, 0.0, 1.0, 0.0, 4.0, 0.0, 0.0, 7.0,422,60.285714285714285 1.1612903225806446,1.16,a-sust-i3,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 2.0, 1.0, 1.0, 1.0, 2.0, 3.0, 0.0, 10.0,742,74.2 5.3271889400921655,5,a-sust-i3,2017-18,Petersham - Petersham Center,02340005, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 4.0,116,29.0 --Infinity,1,a-sust-i3,2017-18,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, 0.0, 0.0, 0.0,203,Infinity --Infinity,1,a-sust-i3,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity --Infinity,1,a-sust-i3,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity --Infinity,1,a-sust-i3,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +NA,NA,a-sust-i3,2017-18,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, 0.0, 0.0, 0.0,203,Infinity +NA,NA,a-sust-i3,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197,Infinity +NA,NA,a-sust-i3,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +NA,NA,a-sust-i3,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity 6.9589894904353,5,a-sust-i3,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 1.0, 0.0, 1.0, 3.0, 3.0, 5.3, 0.7, 13.9,157,11.294964028776977 6.817733990147783,5,a-sust-i3,2017-18,Pioneer Valley - Northfield Elementary,07500008, 0.5, 0.0, 2.0, 3.0, 7.0, 1.0, 1.0, 14.5,186,12.827586206896552 7.3663594470046085,5,a-sust-i3,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 2.0, 1.0, 1.0, 0.5, 0.0, 0.0, 0.3, 4.8,33,6.875 @@ -27024,14 +27024,14 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.882837592515012,5,a-sust-i3,2017-18,Provincetown - Provincetown Schools,02420020, 2.0, 0.0, 0.0, 2.0, 4.0, 1.0, 0.9, 9.9,120,12.121212121212121 1.8344191959319873,1.83,a-sust-i3,2017-18,Quabbin - Hardwick Elementary,07530005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.9, 0.0, 2.9,194,66.89655172413794 2.452656290757325,2.45,a-sust-i3,2017-18,Quabbin - Hubbardston Center,07530010, 0.0, 0.9, 0.0, 1.7, 0.9, 0.0, 1.9, 5.3,319,60.18867924528302 --Infinity,1,a-sust-i3,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity 7.1419037025266165,5,a-sust-i3,2017-18,Quabbin - New Braintree Grade,07530020, 1.0, 2.0, 0.9, 0.0, 0.9, 1.0, 0.0, 5.8,54,9.310344827586206 1.742420567547902,1.74,a-sust-i3,2017-18,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.9, 0.0, 1.0, 0.0, 0.0, 1.9,129,67.89473684210526 2.3408415521770953,2.34,a-sust-i3,2017-18,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.8, 4.4, 4.5, 0.0, 10.7,657,61.40186915887851 3.706153429113581,3.71,a-sust-i3,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 1.0, 0.0, 2.0, 2.3, 3.2, 0.0, 8.5,396,46.588235294117645 6.148702296167734,5,a-sust-i3,2017-18,Quabbin - Ruggles Lane,07530030, 1.0, 2.0, 3.6, 2.9, 9.7, 4.0, 0.0, 23.1,464,20.086580086580085 4.6175115207373265,4.62,a-sust-i3,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 1.0, 2.0, 1.0, 0.0, 4.0, 2.0, 0.0, 10.0,367,36.7 --Infinity,1,a-sust-i3,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity +NA,NA,a-sust-i3,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236,Infinity 4.553460093714905,4.55,a-sust-i3,2017-18,Quaboag Regional - Warren Elementary,07780005, 1.0, 2.4, 0.5, 1.0, 3.0, 4.0, 0.0, 11.9,445,37.39495798319328 5.75852534562212,5,a-sust-i3,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 1.0, 0.0, 1.5, 3.0, 6.0, 0.0, 1.0, 12.5,304,24.32 7.19145370758274,5,a-sust-i3,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 2.0, 0.0, 4.0, 10.0, 3.0, 3.0, 22.0,193,8.772727272727273 @@ -27053,9 +27053,9 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.723433523626109,5,a-sust-i3,2017-18,Quincy - Snug Harbor Community School,02430090, 3.0, 1.0, 3.0, 7.0, 9.0, 8.0, 2.5, 33.5,464,13.850746268656716 5.554058844381425,5,a-sust-i3,2017-18,Quincy - Squantum,02430095, 0.0, 1.0, 2.0, 3.0, 4.0, 3.0, 0.0, 13.0,345,26.53846153846154 1.861751152073733,1.86,a-sust-i3,2017-18,Quincy - Wollaston School,02430110, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 1.0, 5.0,333,66.6 --Infinity,1,a-sust-i3,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +NA,NA,a-sust-i3,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity 3.076804915514593,3.08,a-sust-i3,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.0, 4.0, 4.0, 1.0, 1.0, 1.0, 12.0,641,53.416666666666664 --Infinity,1,a-sust-i3,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +NA,NA,a-sust-i3,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity 5.253456221198157,5,a-sust-i3,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 1.0, 2.0, 1.0, 1.0, 2.0, 0.0, 3.0, 10.0,298,29.8 6.214285714285714,5,a-sust-i3,2017-18,Randolph - J F Kennedy Elementary,02440018, 2.0, 6.0, 4.0, 0.0, 2.0, 6.0, 4.0, 24.0,465,19.375 -2.1843317972350227,1,a-sust-i3,2017-18,Randolph - Margaret L Donovan,02440015, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 4.0,442,110.5 @@ -27075,7 +27075,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.46408240715641064,1,a-sust-i3,2017-18,Revere - Abraham Lincoln,02480025, 0.5, 1.0, 1.5, 0.0, 2.5, 3.0, 0.0, 8.5,695,81.76470588235294 5.127496159754224,5,a-sust-i3,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 2.5, 2.5, 0.0, 0.5, 4.5, 2.0, 0.0, 12.0,374,31.166666666666668 2.756784434203789,2.76,a-sust-i3,2017-18,Revere - Garfield Elementary School,02480056, 1.0, 1.5, 0.5, 1.5, 3.5, 4.5, 1.0, 13.5,768,56.888888888888886 --Infinity,1,a-sust-i3,2017-18,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity +NA,NA,a-sust-i3,2017-18,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,538,Infinity -0.7004608294930884,1,a-sust-i3,2017-18,Revere - Paul Revere,02480050, 0.5, 0.0, 1.0, 1.0, 1.5, 0.5, 0.5, 5.0,472,94.4 -13.588506370290052,1,a-sust-i3,2017-18,Revere - Revere High,02480505, 0.0, 1.0, 1.0, 3.0, 0.5, 3.0, 0.0, 8.5,1991,234.23529411764707 1.5267010029818378,1.53,a-sust-i3,2017-18,Revere - Rumney Marsh Academy,02480014, 1.0, 1.0, 1.0, 2.5, 0.5, 2.5, 0.0, 8.5,597,70.23529411764706 @@ -27083,7 +27083,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.0957107408720317,1,a-sust-i3,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 1.0, 1.5, 0.5, 0.5, 2.5, 0.0, 0.5, 6.5,712,109.53846153846153 -2.506912442396313,1,a-sust-i3,2017-18,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.5, 1.5, 1.0, 0.5, 1.5, 0.0, 5.0,570,114.0 6.26340043657531,5,a-sust-i3,2017-18,Richmond - Richmond Consolidated,02490005, 2.0, 2.5, 1.0, 2.0, 0.0, 1.0, 1.0, 9.5,179,18.842105263157894 --Infinity,1,a-sust-i3,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity +NA,NA,a-sust-i3,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity 5.6918453215788425,5,a-sust-i3,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 1.0, 2.0, 1.8, 3.0, 1.8, 2.0, 0.0, 11.5,288,25.043478260869566 3.8273984080435692,3.83,a-sust-i3,2017-18,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 1.0, 7.0, 2.0, 1.0, 11.0,498,45.27272727272727 6.125960061443933,5,a-sust-i3,2017-18,Rockland - Jefferson Elementary School,02510060, 1.0, 0.0, 1.0, 2.0, 7.0, 2.0, 2.0, 15.0,305,20.333333333333332 @@ -27095,7 +27095,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.7864823348694315,1,a-sust-i3,2017-18,Rockport - Rockport High,02520510, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,286,95.33333333333333 5.407834101382488,5,a-sust-i3,2017-18,Rockport - Rockport Middle,02520305, 1.0, 1.0, 1.0, 2.0, 1.0, 2.0, 0.0, 8.0,225,28.125 5.662936142198815,5,a-sust-i3,2017-18,Rowe - Rowe Elementary,02530005, 0.0, 1.0, 0.0, 1.8, 0.0, 0.0, 0.0, 2.8,71,25.357142857142858 --Infinity,1,a-sust-i3,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1422,Infinity +NA,NA,a-sust-i3,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1422,Infinity 1.9554531490015363,1.96,a-sust-i3,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 6.0, 5.0, 2.0, 3.0, 4.0, 2.0, 2.0, 24.0,1574,65.58333333333333 6.341013824884793,5,a-sust-i3,2017-18,Salem - Bates,02580003, 4.0, 5.0, 1.0, 1.0, 3.0, 4.0, 1.0, 19.0,342,18.0 5.869192068659367,5,a-sust-i3,2017-18,Salem - Carlton,02580015, 1.5, 0.0, 1.0, 2.0, 2.4, 3.0, 1.0, 10.9,252,23.11926605504587 @@ -27131,10 +27131,10 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.243142418257626,4.24,a-sust-i3,2017-18,Seekonk - Mildred Aitken School,02650015, 0.0, 0.5, 1.0, 0.0, 5.0, 2.0, 2.0, 10.5,428,40.76190476190476 3.3604623916269625,3.36,a-sust-i3,2017-18,Seekonk - Seekonk High,02650505, 1.8, 1.0, 2.0, 2.0, 3.0, 2.0, 0.0, 11.8,594,50.33898305084745 4.764491874848411,4.76,a-sust-i3,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 8.0, 5.0, 3.0, 1.0, 2.0, 0.0, 0.0, 19.0,667,35.10526315789474 --Infinity,1,a-sust-i3,2017-18,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity --Infinity,1,a-sust-i3,2017-18,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +NA,NA,a-sust-i3,2017-18,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +NA,NA,a-sust-i3,2017-18,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity -40.38709677419355,1,a-sust-i3,2017-18,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,525,525.0 --Infinity,1,a-sust-i3,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity +NA,NA,a-sust-i3,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50,Infinity -1.9447004608294933,1,a-sust-i3,2017-18,Sharon - Sharon High,02660505, 0.0, 2.0, 2.0, 0.0, 3.0, 3.0, 0.0, 10.0,1079,107.9 2.252797893350889,2.25,a-sust-i3,2017-18,Sharon - Sharon Middle,02660305, 2.0, 1.0, 2.0, 0.0, 4.0, 2.0, 3.0, 14.0,873,62.357142857142854 -3.110180142438208,1,a-sust-i3,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 4.0, 1.0, 1.0, 1.0, 4.0, 0.0, 11.0,1326,120.54545454545455 @@ -27213,21 +27213,21 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.9521446295639846,2.95,a-sust-i3,2017-18,Springfield - Forest Park Middle,02810325, 0.0, 2.0, 3.0, 2.0, 2.0, 3.0, 1.0, 13.0,712,54.76923076923077 4.395289298515104,4.4,a-sust-i3,2017-18,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 1.0, 3.0, 4.0, 1.0, 0.0, 9.0,352,39.111111111111114 4.347926267281106,4.35,a-sust-i3,2017-18,Springfield - Frederick Harris,02810080, 2.0, 2.0, 2.0, 6.0, 2.0, 0.0, 2.0, 16.0,634,39.625 --Infinity,1,a-sust-i3,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity --Infinity,1,a-sust-i3,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +NA,NA,a-sust-i3,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +NA,NA,a-sust-i3,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity 5.5422427035330255,5,a-sust-i3,2017-18,Springfield - German Gerena Community School,02810195, 3.0, 5.0, 3.0, 5.0, 10.0, 1.0, 0.0, 27.0,720,26.666666666666668 4.948284690220174,4.95,a-sust-i3,2017-18,Springfield - Glenwood,02810065, 0.0, 3.0, 3.0, 2.0, 0.0, 1.0, 0.0, 9.0,298,33.111111111111114 5.807768268597762,5,a-sust-i3,2017-18,Springfield - Glickman Elementary,02810068, 1.0, 4.0, 1.0, 2.0, 2.0, 3.0, 1.0, 14.0,333,23.785714285714285 3.4796816087138667,3.48,a-sust-i3,2017-18,Springfield - High School Of Commerce,02810510, 2.0, 4.0, 2.0, 5.0, 1.0, 6.0, 2.0, 22.0,1079,49.04545454545455 3.957867017774852,3.96,a-sust-i3,2017-18,Springfield - Hiram L Dorman,02810050, 0.0, 2.0, 1.0, 1.0, 2.0, 0.0, 1.0, 7.0,307,43.857142857142854 2.8847926267281103,2.88,a-sust-i3,2017-18,Springfield - Homer Street,02810085, 1.0, 2.0, 1.0, 0.0, 2.0, 1.0, 1.0, 8.0,444,55.5 --Infinity,1,a-sust-i3,2017-18,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +NA,NA,a-sust-i3,2017-18,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity 3.7998683344305464,3.8,a-sust-i3,2017-18,Springfield - Indian Orchard Elementary,02810100, 2.0, 5.0, 1.0, 0.0, 3.0, 3.0, 0.0, 14.0,638,45.57142857142857 1.0875576036866357,1.09,a-sust-i3,2017-18,Springfield - John F Kennedy Middle,02810328, 1.0, 1.0, 2.0, 1.0, 0.0, 1.0, 0.0, 6.0,450,75.0 5.0583717357910905,5,a-sust-i3,2017-18,Springfield - John J Duggan Middle,02810320, 1.0, 5.0, 7.0, 7.0, 3.0, 1.0, 0.0, 24.0,766,31.916666666666668 0.8571428571428569,1,a-sust-i3,2017-18,Springfield - Kensington International School,02810110, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 0.0, 4.0,310,77.5 4.2738643844634625,4.27,a-sust-i3,2017-18,Springfield - Liberty,02810115, 1.0, 0.0, 2.0, 2.0, 2.0, 0.0, 0.0, 7.0,283,40.42857142857143 --Infinity,1,a-sust-i3,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity +NA,NA,a-sust-i3,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12,Infinity 2.6807109940750493,2.68,a-sust-i3,2017-18,Springfield - Lincoln,02810120, 0.0, 4.0, 0.0, 0.0, 1.0, 2.0, 0.0, 7.0,404,57.714285714285715 3.3278979085430698,3.33,a-sust-i3,2017-18,Springfield - M Marcus Kiley Middle,02810330, 0.0, 2.0, 2.0, 2.0, 2.0, 4.0, 1.0, 13.0,659,50.69230769230769 6.698834372458662,5,a-sust-i3,2017-18,Springfield - Margaret C Ells,02810060, 3.0, 6.0, 2.0, 1.0, 3.0, 2.0, 0.0, 17.0,240,14.117647058823529 @@ -27248,7 +27248,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.252432155657963,5,a-sust-i3,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 1.0, 1.0, 0.0, 2.0, 2.0, 2.0, 1.0, 9.0,73,8.11111111111111 6.870967741935484,5,a-sust-i3,2017-18,Springfield - Springfield Public Day High School,02810550, 0.0, 4.0, 0.0, 1.0, 3.0, 0.0, 0.0, 8.0,98,12.25 7.423963133640553,5,a-sust-i3,2017-18,Springfield - Springfield Public Day Middle School,02810345, 0.0, 2.0, 0.0, 2.0, 1.0, 3.0, 0.0, 8.0,50,6.25 --Infinity,1,a-sust-i3,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +NA,NA,a-sust-i3,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity 5.639751552795031,5,a-sust-i3,2017-18,Springfield - Sumner Avenue,02810160, 2.0, 3.0, 4.0, 4.0, 6.0, 3.0, 1.0, 23.0,589,25.608695652173914 2.1851696690406364,2.19,a-sust-i3,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 3.0, 3.0, 2.0, 2.0, 1.0, 0.0, 11.0,694,63.09090909090909 3.8130348913759047,3.81,a-sust-i3,2017-18,Springfield - Thomas M Balliet,02810015, 0.0, 2.0, 0.0, 1.0, 3.0, 1.0, 0.0, 7.0,318,45.42857142857143 @@ -27257,7 +27257,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.7296466973886324,3.73,a-sust-i3,2017-18,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 2.0, 3.0, 3.0, 0.0, 9.0,417,46.333333333333336 -0.4055299539170512,1,a-sust-i3,2017-18,Springfield - White Street,02810190, 1.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 5.0,456,91.2 4.563528637261356,4.56,a-sust-i3,2017-18,Springfield - William N. DeBerry,02810045, 0.0, 3.0, 0.0, 1.0, 0.0, 3.0, 0.0, 7.0,261,37.285714285714285 --Infinity,1,a-sust-i3,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +NA,NA,a-sust-i3,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity 6.143324651038536,5,a-sust-i3,2017-18,Stoneham - Colonial Park,02840005, 2.0, 0.0, 1.0, 4.2, 5.0, 1.6, 0.0, 13.8,278,20.144927536231883 5.291740517546969,5,a-sust-i3,2017-18,Stoneham - Robin Hood,02840025, 1.0, 0.0, 0.0, 0.0, 5.0, 7.0, 0.0, 13.0,382,29.384615384615383 3.084485407066052,3.08,a-sust-i3,2017-18,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 1.0, 6.0,320,53.333333333333336 @@ -27309,7 +27309,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.334633108826657,4.33,a-sust-i3,2017-18,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 4.0, 3.0, 4.0, 2.0, 13.0,517,39.76923076923077 0.7553316900653728,1,a-sust-i3,2017-18,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.6, 5.0, 2.0, 1.0, 8.6,676,78.6046511627907 1.58788676761027,1.59,a-sust-i3,2017-18,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 1.0, 1.0, 4.0, 1.0, 7.0,487,69.57142857142857 --Infinity,1,a-sust-i3,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +NA,NA,a-sust-i3,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity -3.0515291160452445,1,a-sust-i3,2017-18,Taunton - Taunton High,02930505, 1.0, 3.0, 0.0, 3.0, 5.0, 9.0, 1.0, 22.0,2638,119.9090909090909 5.186936485674214,5,a-sust-i3,2017-18,Tewksbury - Heath-Brook,02950010, 2.0, 2.0, 0.0, 0.0, 2.0, 4.5, 1.0, 11.5,351,30.52173913043478 4.86021505376344,4.86,a-sust-i3,2017-18,Tewksbury - John F. Ryan,02950023, 2.0, 4.0, 0.0, 3.0, 3.0, 3.0, 0.0, 15.0,511,34.06666666666667 @@ -27331,17 +27331,17 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.574406494867657,5,a-sust-i3,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 2.0, 3.0, 0.5, 3.0, 8.2, 10.0, 1.0, 27.7,729,26.31768953068592 0.43604004449388173,1,a-sust-i3,2017-18,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.8, 5.8,476,82.06896551724138 3.7163803937997484,3.72,a-sust-i3,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 1.0, 0.0, 0.0, 0.0, 3.8, 4.0, 0.0, 8.8,409,46.47727272727273 --Infinity,1,a-sust-i3,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +NA,NA,a-sust-i3,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity 1.188940092165898,1.19,a-sust-i3,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0,739,73.9 6.288347597103358,5,a-sust-i3,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 1.0, 0.0, 0.8, 0.0, 0.0, 1.0, 0.0, 2.8,52,18.571428571428573 6.532018266363617,5,a-sust-i3,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 1.0, 5.2, 3.6, 2.7, 1.7, 5.7, 2.2, 22.1,352,15.92760180995475 3.391705069124424,3.39,a-sust-i3,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 1.0, 1.0, 0.0, 2.3, 1.0, 4.0, 5.0, 14.3,715,50.0 --Infinity,1,a-sust-i3,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i3,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity 3.357142857142857,3.36,a-sust-i3,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 2.0, 1.0, 4.0, 0.0, 1.0, 8.0,403,50.375 5.465437788018433,5,a-sust-i3,2017-18,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 3.0, 5.0, 4.7, 3.7, 0.0, 16.4,451,27.500000000000004 3.0640040962621606,3.06,a-sust-i3,2017-18,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 5.0, 2.0, 1.0, 9.0,482,53.55555555555556 2.9572086899275836,2.96,a-sust-i3,2017-18,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 1.0, 1.0, 4.0, 1.0, 7.0,383,54.714285714285715 --Infinity,1,a-sust-i3,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i3,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity 5.9831932773109235,5,a-sust-i3,2017-18,Wachusett - Central Tree Middle,07750310, 0.0, 4.0, 0.0, 3.0, 4.0, 5.0, 1.0, 17.0,372,21.88235294117647 5.10789766407119,5,a-sust-i3,2017-18,Wachusett - Chocksett Middle School,07750315, 1.0, 2.0, 1.0, 2.6, 3.0, 2.0, 0.0, 11.6,364,31.379310344827587 5.5548929249119,5,a-sust-i3,2017-18,Wachusett - Davis Hill Elementary,07750018, 1.0, 0.0, 2.5, 7.5, 1.0, 3.0, 2.0, 17.0,451,26.529411764705884 @@ -27386,7 +27386,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.794601711652403,5,a-sust-i3,2017-18,Ware - Ware Middle School,03090305, 3.0, 0.0, 3.0, 2.0, 4.0, 1.0, 1.0, 14.0,335,23.928571428571427 4.737440275932261,4.74,a-sust-i3,2017-18,Wareham - John William Decas,03100003, 0.5, 0.5, 2.0, 5.3, 6.0, 2.0, 0.0, 16.3,577,35.39877300613497 6.141510686313554,5,a-sust-i3,2017-18,Wareham - Minot Forest,03100017, 1.0, 3.0, 3.0, 2.8, 7.0, 5.0, 2.5, 24.3,490,20.16460905349794 --Infinity,1,a-sust-i3,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i3,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity 3.3533026113671274,3.35,a-sust-i3,2017-18,Wareham - Wareham Middle,03100305, 0.0, 1.0, 1.6, 4.3, 3.0, 4.5, 0.0, 14.4,726,50.416666666666664 5.311338753705714,5,a-sust-i3,2017-18,Wareham - Wareham Senior High,03100505, 1.0, 1.0, 1.4, 2.3, 3.0, 4.0, 3.0, 15.7,458,29.171974522292995 5.642089093701998,5,a-sust-i3,2017-18,Watertown - Cunniff,03140015, 1.0, 3.0, 2.0, 2.0, 3.0, 1.0, 0.0, 12.0,307,25.583333333333332 @@ -27418,7 +27418,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.205837173579109,4.21,a-sust-i3,2017-18,West Bridgewater - Rose L Macdonald,03230003, 0.0, 1.0, 0.0, 3.0, 0.0, 2.0, 0.0, 6.0,247,41.166666666666664 6.6320640310453545,5,a-sust-i3,2017-18,West Bridgewater - Spring Street School,03230005, 1.0, 1.0, 0.0, 2.0, 1.5, 4.0, 0.0, 9.5,141,14.842105263157896 -3.5391705069124435,1,a-sust-i3,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 1.0, 5.0,626,125.2 --Infinity,1,a-sust-i3,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity +NA,NA,a-sust-i3,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8,Infinity 7.326692237644526,5,a-sust-i3,2017-18,West Springfield - Cowing Early Childhood,03320001, 3.7, 2.0, 1.0, 1.0, 2.0, 3.9, 3.1, 16.7,122,7.3053892215568865 6.571733756523331,5,a-sust-i3,2017-18,West Springfield - John Ashley,03320005, 3.0, 3.0, 0.0, 2.0, 3.0, 3.0, 1.1, 15.1,234,15.496688741721854 5.89073067840521,5,a-sust-i3,2017-18,West Springfield - John R Fausey,03320010, 2.0, 1.0, 3.0, 3.0, 4.0, 5.0, 2.1, 20.1,460,22.88557213930348 @@ -27551,7 +27551,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.951152073732718,5,a-sust-i3,2017-18,Worcester - Gates Lane,03480110, 5.0, 9.0, 6.0, 4.0, 15.0, 11.0, 0.0, 50.0,569,11.38 4.428571428571429,4.43,a-sust-i3,2017-18,Worcester - Goddard School/Science Technical,03480100, 1.0, 1.0, 1.0, 0.0, 2.0, 4.0, 3.0, 12.0,465,38.75 0.8663594470046075,1,a-sust-i3,2017-18,Worcester - Grafton Street,03480115, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 0.0, 5.0,387,77.4 --Infinity,1,a-sust-i3,2017-18,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity +NA,NA,a-sust-i3,2017-18,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529,Infinity -1.0937019969278041,1,a-sust-i3,2017-18,Worcester - Heard Street,03480136, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,296,98.66666666666667 1.8095238095238089,1.81,a-sust-i3,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 1.0, 2.0, 0.0, 2.0, 0.0, 1.0, 6.0,403,67.16666666666667 3.6221198156682024,3.62,a-sust-i3,2017-18,Worcester - Lake View,03480145, 1.0, 1.0, 0.0, 1.0, 0.0, 2.0, 1.0, 6.0,285,47.5 @@ -27586,7 +27586,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.299120234604105,5,a-sust-i3,2016-17,Abington - Center Elementary School,00010002, 0.0, 0.0, 1.0, 2.0, 6.0, 1.0, 1.0, 11.0,203,18.454545454545453 3.6813693219223174,3.68,a-sust-i3,2016-17,Abington - Frolio Middle School,00010405, 1.0, 0.0, 1.0, 1.0, 2.0, 2.0, 0.0, 7.0,328,46.857142857142854 4.172404445649227,4.17,a-sust-i3,2016-17,Abington - Woodsdale Elementary School,00010015, 2.0, 0.0, 0.0, 0.0, 4.5, 2.0, 0.0, 8.5,353,41.529411764705884 --Infinity,1,a-sust-i3,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +NA,NA,a-sust-i3,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity 0.7204561430914634,1,a-sust-i3,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 3.6, 2.6, 1.0, 2.6, 6.5, 5.6, 1.6, 23.6,1864,78.98305084745762 6.65970013630168,5,a-sust-i3,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 1.9, 5.4, 7.0, 7.1, 6.1, 1.0, 28.4,413,14.542253521126762 6.008168257365627,5,a-sust-i3,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.6, 0.0, 1.0, 7.2, 7.7, 3.6, 1.1, 21.1,456,21.611374407582936 @@ -27631,7 +27631,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.906092718044555,5,a-sust-i3,2016-17,Andover - South Elementary,00090020, 2.7, 1.0, 0.0, 4.2, 8.2, 3.3, 2.3, 21.7,493,22.71889400921659 6.37173579109063,5,a-sust-i3,2016-17,Andover - West Elementary,00090025, 1.8, 4.7, 1.9, 6.9, 12.7, 5.6, 2.4, 36.0,636,17.666666666666668 5.68757416043489,5,a-sust-i3,2016-17,Andover - Wood Hill Middle School,00090350, 1.0, 3.7, 1.0, 0.7, 4.3, 4.3, 1.8, 16.7,419,25.08982035928144 --Infinity,1,a-sust-i3,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +NA,NA,a-sust-i3,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity -0.4924292297564186,1,a-sust-i3,2016-17,Arlington - Arlington High,00100505, 3.6, 5.0, 0.0, 1.4, 1.0, 0.0, 3.0, 14.0,1290,92.14285714285714 5.035745422842197,5,a-sust-i3,2016-17,Arlington - Brackett,00100010, 3.5, 1.0, 2.0, 2.0, 2.0, 2.3, 2.0, 14.8,476,32.16216216216216 4.932192231731403,4.93,a-sust-i3,2016-17,Arlington - Cyrus E Dallin,00100025, 5.0, 2.0, 1.0, 3.0, 3.0, 0.0, 0.0, 14.0,466,33.285714285714285 @@ -27659,7 +27659,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.345622119815668,5,a-sust-i3,2016-17,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 5.0,144,28.8 5.984324540077651,5,a-sust-i3,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 5.0, 11.0, 9.0, 7.0, 6.8, 8.0, 4.0, 50.8,1111,21.87007874015748 3.9354838709677415,3.94,a-sust-i3,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 4.0, 6.0, 0.0, 10.0,441,44.1 --Infinity,1,a-sust-i3,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity +NA,NA,a-sust-i3,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63,Infinity 2.0765685926976243,2.08,a-sust-i3,2016-17,Attleboro - Attleboro High,00160505, 2.0, 3.0, 4.0, 1.0, 9.0, 6.0, 1.0, 26.0,1671,64.26923076923077 3.576036866359447,3.58,a-sust-i3,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 1.0, 1.0, 2.0, 3.0, 4.0, 0.5, 11.5,552,48.0 6.146771715970467,5,a-sust-i3,2016-17,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 1.3, 2.6, 3.4, 2.0, 0.0, 9.3,187,20.10752688172043 @@ -27754,9 +27754,9 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -33.19815668202766,1,a-sust-i3,2016-17,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,447,447.0 -9.788018433179722,1,a-sust-i3,2016-17,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,193,193.0 3.9218628930304638,3.92,a-sust-i3,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.0, 4.3, 2.0, 1.0, 1.0, 3.0, 0.0, 11.3,500,44.24778761061947 --Infinity,1,a-sust-i3,2016-17,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity --Infinity,1,a-sust-i3,2016-17,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2403,Infinity --Infinity,1,a-sust-i3,2016-17,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1698,Infinity +NA,NA,a-sust-i3,2016-17,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +NA,NA,a-sust-i3,2016-17,Boston - Boston Latin,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2403,Infinity +NA,NA,a-sust-i3,2016-17,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1698,Infinity 3.802906770648706,3.8,a-sust-i3,2016-17,Boston - Boston Teachers Union School,00350012, 2.0, 1.0, 0.0, 2.5, 0.0, 1.0, 0.0, 6.5,296,45.53846153846154 1.3852616124954127,1.39,a-sust-i3,2016-17,Boston - Brighton High,00350505, 0.0, 2.0, 2.0, 3.3, 1.0, 3.0, 0.0, 11.3,811,71.76991150442477 7.732718894009217,5,a-sust-i3,2016-17,Boston - Carter Developmental Center,00350036, 1.0, 2.0, 2.0, 0.0, 3.0, 0.0, 2.0, 10.0,29,2.9 @@ -27770,13 +27770,13 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.7493637801774535,3.75,a-sust-i3,2016-17,Boston - Curtis Guild,00350062, 0.2, 0.0, 0.0, 2.5, 3.0, 1.0, 0.0, 6.7,309,46.11940298507463 3.576036866359447,3.58,a-sust-i3,2016-17,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,96,48.0 4.330121491411814,4.33,a-sust-i3,2016-17,Boston - David A Ellis,00350072, 1.0, 0.0, 3.0, 2.0, 1.0, 2.0, 2.0, 11.0,438,39.81818181818182 --Infinity,1,a-sust-i3,2016-17,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +NA,NA,a-sust-i3,2016-17,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity 1.5909252038284298,1.59,a-sust-i3,2016-17,Boston - Dennis C Haley,00350077, 0.0, 0.5, 0.0, 2.0, 1.0, 1.0, 2.0, 6.5,452,69.53846153846153 -3.2442396313364052,1,a-sust-i3,2016-17,Boston - Donald Mckay,00350080, 0.0, 0.0, 0.0, 1.0, 1.0, 4.0, 0.0, 6.0,732,122.0 -1.1244239631336408,1,a-sust-i3,2016-17,Boston - Dorchester Academy,00350651, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,99,99.0 6.838709677419354,5,a-sust-i3,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 1.0, 3.0, 2.0, 3.0, 1.0, 2.0, 3.0, 15.0,189,12.6 6.666666666666666,5,a-sust-i3,2016-17,Boston - Dr. William Henderson Lower,00350266, 2.5, 3.5, 2.5, 1.0, 3.5, 2.0, 0.0, 15.0,217,14.466666666666667 --Infinity,1,a-sust-i3,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +NA,NA,a-sust-i3,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity 7.221710189452125,5,a-sust-i3,2016-17,Boston - ELC - West Zone,00350006, 1.0, 1.5, 1.0, 2.0, 4.0, 3.0, 1.0, 13.5,114,8.444444444444445 7.235697426098684,5,a-sust-i3,2016-17,Boston - East Boston Early Childhood Center,00350009, 0.0, 4.0, 6.5, 3.0, 3.0, 4.0, 0.0, 20.5,170,8.292682926829269 -7.320020481310804,1,a-sust-i3,2016-17,Boston - East Boston High,00350530, 0.0, 0.0, 1.0, 2.0, 1.0, 4.0, 1.0, 9.0,1496,166.22222222222223 @@ -27867,7 +27867,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -7.668202764976957,1,a-sust-i3,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 4.0,680,170.0 -4.411674347158217,1,a-sust-i3,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,404,134.66666666666666 3.1254480286738353,3.13,a-sust-i3,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 2.0, 4.0, 2.0, 0.0, 0.0, 1.0, 9.0,476,52.888888888888886 --Infinity,1,a-sust-i3,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +NA,NA,a-sust-i3,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity 5.683725442638854,5,a-sust-i3,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 6.0, 14.0, 3.0, 3.0, 9.0, 2.0, 1.0, 38.0,955,25.13157894736842 -0.036866359447005136,1,a-sust-i3,2016-17,Bourne - Bourne High School,00360505, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,436,87.2 2.840161108893646,2.84,a-sust-i3,2016-17,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.2, 1.0, 2.0, 5.5, 3.0, 12.7,711,55.98425196850394 @@ -27924,7 +27924,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.6521739130434776,3.65,a-sust-i3,2016-17,Brockton - Oscar F Raymond,00440078, 3.8, 2.0, 2.0, 3.6, 4.0, 1.0, 2.0, 18.4,868,47.173913043478265 2.437516942260775,2.44,a-sust-i3,2016-17,Brockton - South Middle School,00440415, 0.0, 4.5, 3.0, 0.0, 0.0, 0.0, 1.0, 8.5,513,60.35294117647059 3.8591178406846605,3.86,a-sust-i3,2016-17,Brockton - West Middle School,00440420, 2.0, 6.0, 2.0, 0.0, 1.0, 1.0, 2.0, 14.0,629,44.92857142857143 --Infinity,1,a-sust-i3,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1608,Infinity +NA,NA,a-sust-i3,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1608,Infinity 5.49497814013943,5,a-sust-i3,2016-17,Brookfield - Brookfield Elementary,00450005, 1.0, 1.0, 2.0, 1.0, 3.7, 3.0, 0.0, 11.7,318,27.179487179487182 7.242472066157439,5,a-sust-i3,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 4.6, 2.0, 0.0, 0.0, 0.7, 0.0, 0.0, 7.3,60,8.219178082191782 7.314114242846426,5,a-sust-i3,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 2.0, 5.3, 0.5, 0.8, 0.0, 0.0, 0.0, 8.6,64,7.441860465116279 @@ -28112,7 +28112,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.863993025283348,5,a-sust-i3,2016-17,Easton - Parkview Elementary,00880015, 0.8, 0.0, 1.0, 3.5, 4.5, 4.0, 1.0, 14.8,343,23.175675675675674 3.949551297598836,3.95,a-sust-i3,2016-17,Easton - Richardson Olmsted School,00880025, 1.0, 0.0, 0.0, 4.0, 8.0, 5.4, 0.6, 19.0,835,43.94736842105263 7.0070051789816095,5,a-sust-i3,2016-17,Edgartown - Edgartown Elementary,00890005, 0.5, 2.7, 4.2, 4.4, 14.0, 5.2, 1.2, 32.3,348,10.773993808049537 --Infinity,1,a-sust-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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +NA,NA,a-sust-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, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity 7.1643625192012275,5,a-sust-i3,2016-17,Erving - Erving Elementary,00910030, 0.0, 1.0, 6.0, 2.0, 3.0, 3.0, 0.0, 15.0,136,9.066666666666666 -3.0514522470722527,1,a-sust-i3,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 2.0, 1.0, 1.0, 1.2, 1.7, 4.0, 0.0, 10.9,1307,119.90825688073394 5.859703020993344,5,a-sust-i3,2016-17,Everett - Adams School,00930003, 0.0, 2.0, 0.0, 1.0, 1.0, 3.0, 2.0, 9.0,209,23.22222222222222 @@ -28124,14 +28124,14 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -32.13824884792627,1,a-sust-i3,2016-17,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,871,435.5 -19.419354838709676,1,a-sust-i3,2016-17,Everett - Sumner G. Whittier School,00930010, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,595,297.5 6.424801005446167,5,a-sust-i3,2016-17,Everett - Webster School,00930015, 6.0, 2.0, 4.0, 7.0, 2.0, 10.0, 2.0, 33.0,564,17.09090909090909 --Infinity,1,a-sust-i3,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity +NA,NA,a-sust-i3,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,957,Infinity 5.228666772604481,5,a-sust-i3,2016-17,Fairhaven - East Fairhaven,00940010, 0.0, 2.0, 2.0, 5.0, 1.5, 3.0, 1.0, 14.5,436,30.06896551724138 1.6917562724014337,1.69,a-sust-i3,2016-17,Fairhaven - Fairhaven High,00940505, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 2.0, 9.0,616,68.44444444444444 2.8521973698999656,2.85,a-sust-i3,2016-17,Fairhaven - Hastings Middle,00940305, 1.0, 0.0, 3.0, 1.2, 1.0, 2.0, 0.0, 8.2,458,55.85365853658537 4.732877800730971,4.73,a-sust-i3,2016-17,Fairhaven - Leroy Wood,00940030, 2.0, 3.0, 0.0, 3.0, 2.5, 2.0, 2.0, 14.5,514,35.44827586206897 0.23538877916758066,1,a-sust-i3,2016-17,Fall River - B M C Durfee High,00950505, 3.0, 1.8, 4.4, 5.0, 3.0, 8.0, 0.0, 25.2,2123,84.24603174603175 4.348618770617713,4.35,a-sust-i3,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 2.0, 3.0, 6.0, 3.3, 3.0, 0.0, 1.0, 18.3,725,39.61748633879781 --Infinity,1,a-sust-i3,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +NA,NA,a-sust-i3,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity 6.082949308755761,5,a-sust-i3,2016-17,Fall River - Henry Lord Community School,00950017, 7.0, 4.0, 4.0, 4.0, 6.0, 4.0, 1.0, 30.0,624,20.8 2.5990783410138247,2.6,a-sust-i3,2016-17,Fall River - James Tansey,00950140, 0.0, 0.0, 1.0, 3.0, 0.0, 1.0, 0.0, 5.0,293,58.6 4.006144393241167,4.01,a-sust-i3,2016-17,Fall River - John J Doran,00950045, 0.0, 2.8, 0.0, 6.8, 3.0, 0.0, 0.0, 12.6,546,43.333333333333336 @@ -28185,7 +28185,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.6413576183161427,1,a-sust-i3,2016-17,Framingham - Potter Road,01000039, 1.0, 1.0, 0.0, 0.6, 1.5, 1.6, 0.5, 6.3,503,79.84126984126985 1.9338081273565146,1.93,a-sust-i3,2016-17,Framingham - Walsh Middle,01000310, 0.0, 0.0, 2.0, 2.0, 2.0, 5.0, 0.0, 11.0,724,65.81818181818181 4.437076670893514,4.44,a-sust-i3,2016-17,Framingham - Woodrow Wilson,01000055, 0.0, 2.0, 2.0, 3.0, 4.0, 3.0, 0.9, 14.9,576,38.65771812080537 --Infinity,1,a-sust-i3,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity +NA,NA,a-sust-i3,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395,Infinity 1.8907175773535212,1.89,a-sust-i3,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 4.5, 1.0, 0.5, 1.0, 7.0,464,66.28571428571429 3.821812596006144,3.82,a-sust-i3,2016-17,Franklin - Davis Thayer,01010035, 0.0, 0.0, 1.0, 0.0, 1.0, 4.0, 0.0, 6.0,272,45.333333333333336 6.792626728110598,5,a-sust-i3,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 1.0, 0.0, 0.0, 3.0, 4.0, 2.0, 0.0, 10.0,131,13.1 @@ -28205,7 +28205,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.275345622119816,5,a-sust-i3,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 2.0, 3.0, 1.0, 8.0, 1.0, 1.0, 0.0, 16.0,473,29.5625 5.8341013824884795,5,a-sust-i3,2016-17,Frontier - Frontier Regional,06700505, 3.0, 6.0, 4.0, 4.0, 3.0, 4.0, 2.0, 26.0,611,23.5 4.557157722610376,4.56,a-sust-i3,2016-17,Gardner - Elm Street School,01030001, 0.0, 1.0, 0.0, 4.0, 4.5, 3.0, 3.0, 15.5,579,37.354838709677416 --Infinity,1,a-sust-i3,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +NA,NA,a-sust-i3,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity -1.3614219881500988,1,a-sust-i3,2016-17,Gardner - Gardner High,01030505, 0.0, 0.0, 2.0, 0.0, 4.0, 1.0, 0.0, 7.0,711,101.57142857142857 4.398946675444371,4.4,a-sust-i3,2016-17,Gardner - Gardner Middle School,01030405, 0.0, 2.0, 1.0, 2.0, 0.0, 9.0, 0.0, 14.0,547,39.07142857142857 6.067489222536048,5,a-sust-i3,2016-17,Gardner - Waterford Street,01030020, 0.0, 1.5, 4.0, 4.2, 5.5, 6.0, 0.5, 21.7,455,20.967741935483872 @@ -28454,10 +28454,10 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.7610430482185,5,a-sust-i3,2016-17,Lowell - Pyne Arts,01600018, 0.0, 3.0, 3.5, 4.0, 4.0, 5.0, 1.0, 20.5,498,24.29268292682927 5.513568868407578,5,a-sust-i3,2016-17,Lowell - Rogers STEM Academy,01600005, 3.0, 6.0, 3.0, 5.0, 2.0, 3.5, 0.0, 22.5,607,26.977777777777778 4.872715715874781,4.87,a-sust-i3,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 1.0, 3.0, 1.0, 2.0, 1.0, 5.0, 1.5, 14.5,492,33.93103448275862 --Infinity,1,a-sust-i3,2016-17,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity +NA,NA,a-sust-i3,2016-17,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119,Infinity 6.414746543778802,5,a-sust-i3,2016-17,Lowell - Washington,01600055, 0.0, 3.0, 2.0, 2.0, 4.0, 3.0, 1.0, 15.0,258,17.2 4.41430765854729,4.41,a-sust-i3,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 5.0, 7.0, 4.0, 0.0, 5.0, 0.0, 0.0, 21.0,817,38.904761904761905 --Infinity,1,a-sust-i3,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity +NA,NA,a-sust-i3,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94,Infinity 4.811059907834101,4.81,a-sust-i3,2016-17,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 3.0, 6.0, 1.0, 0.0, 10.0,346,34.6 6.899955403597443,5,a-sust-i3,2016-17,Ludlow - East Street Elementary School,01610010, 2.0, 4.0, 4.0, 7.0, 8.0, 6.0, 0.0, 31.0,370,11.935483870967742 2.678162628214657,2.68,a-sust-i3,2016-17,Ludlow - Ludlow Senior High,01610505, 1.0, 3.0, 0.0, 3.0, 3.0, 5.5, 0.0, 15.5,895,57.74193548387097 @@ -28499,7 +28499,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.3335696561503,5,a-sust-i3,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, 1.0, 0.0, 1.0, 2.1, 1.6, 0.8, 6.5,47,7.230769230769231 2.684678997538034,2.68,a-sust-i3,2016-17,Lynnfield - Summer Street,01640020, 1.0, 0.0, 1.5, 1.0, 3.8, 0.0, 0.0, 7.3,421,57.67123287671233 4.091483188257382,4.09,a-sust-i3,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 25.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0,1145,42.407407407407405 --Infinity,1,a-sust-i3,2016-17,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, 0.0, 0.0,97,Infinity +NA,NA,a-sust-i3,2016-17,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, 0.0, 0.0,97,Infinity -2.1728110599078336,1,a-sust-i3,2016-17,Malden - Beebe,01650003, 1.0, 1.0, 0.0, 2.0, 1.0, 2.0, 1.0, 8.0,883,110.375 0.9953917050691242,1,a-sust-i3,2016-17,Malden - Ferryway,01650013, 1.0, 0.0, 0.0, 1.0, 5.0, 3.0, 2.0, 12.0,912,76.0 6.084265964450296,5,a-sust-i3,2016-17,Malden - Forestdale,01650027, 4.0, 6.0, 3.0, 4.0, 6.0, 5.0, 0.0, 28.0,582,20.785714285714285 @@ -28523,7 +28523,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.6487820934825553,1,a-sust-i3,2016-17,Marblehead - Marblehead High,01680505, 1.0, 1.6, 1.0, 1.0, 5.0, 1.0, 0.6, 11.2,1051,93.83928571428572 -1.2718894009216588,1,a-sust-i3,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 3.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 5.0,503,100.6 2.5029624753127053,2.5,a-sust-i3,2016-17,Marblehead - Village School,01680016, 3.0, 2.0, 2.3, 0.3, 1.6, 2.0, 0.0, 11.2,668,59.642857142857146 --Infinity,1,a-sust-i3,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +NA,NA,a-sust-i3,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity 5.185867895545315,5,a-sust-i3,2016-17,Marion - Sippican,01690005, 2.0, 1.0, 0.0, 4.0, 5.0, 3.0, 0.0, 15.0,458,30.533333333333335 5.245740006430179,5,a-sust-i3,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 5.0, 7.0, 7.0, 4.0, 9.0, 8.0, 3.0, 43.0,1285,29.88372093023256 5.972350230414746,5,a-sust-i3,2016-17,Marlborough - Charles Jaworek School,01700030, 8.0, 3.0, 5.0, 8.0, 11.0, 3.0, 0.0, 38.0,836,22.0 @@ -28547,7 +28547,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.21889400921659,3.22,a-sust-i3,2016-17,Mashpee - Mashpee High,01720505, 1.0, 2.0, 1.0, 1.0, 1.0, 0.0, 2.0, 8.0,415,51.875 1.617511520737327,1.62,a-sust-i3,2016-17,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 4.0,277,69.25 5.6036866359447,5,a-sust-i3,2016-17,Mashpee - Quashnet School,01720035, 0.0, 2.0, 1.0, 3.0, 6.0, 5.0, 2.0, 19.0,494,26.0 --Infinity,1,a-sust-i3,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.0, 0.0,667,Infinity +NA,NA,a-sust-i3,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.0, 0.0,667,Infinity 6.333924140375753,5,a-sust-i3,2016-17,Mattapoisett - Center,01730005, 0.0, 0.0, 1.0, 2.0, 6.0, 2.0, 2.0, 13.0,235,18.076923076923077 5.964669738863288,5,a-sust-i3,2016-17,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.0, 0.0, 3.0, 1.6, 3.0, 1.0, 9.6,212,22.083333333333336 5.494239631336406,5,a-sust-i3,2016-17,Maynard - Fowler School,01740305, 0.0, 1.0, 2.0, 5.0, 3.0, 5.0, 0.0, 16.0,435,27.1875 @@ -28558,15 +28558,15 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.70411035165311,5,a-sust-i3,2016-17,Medfield - Memorial School,01750003, 3.5, 2.1, 4.0, 8.1, 6.5, 4.6, 1.0, 29.8,419,14.060402684563758 4.475413986934724,4.48,a-sust-i3,2016-17,Medfield - Ralph Wheelock School,01750007, 4.5, 0.5, 1.2, 0.1, 0.0, 2.0, 0.9, 9.1,348,38.24175824175824 3.231747724416346,3.23,a-sust-i3,2016-17,Medfield - Thomas Blake Middle,01750305, 2.0, 2.0, 1.0, 2.1, 3.0, 2.0, 0.0, 12.1,626,51.735537190082646 --Infinity,1,a-sust-i3,2016-17,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1174,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity --Infinity,1,a-sust-i3,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +NA,NA,a-sust-i3,2016-17,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +NA,NA,a-sust-i3,2016-17,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +NA,NA,a-sust-i3,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22,Infinity +NA,NA,a-sust-i3,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +NA,NA,a-sust-i3,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +NA,NA,a-sust-i3,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +NA,NA,a-sust-i3,2016-17,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1174,Infinity +NA,NA,a-sust-i3,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +NA,NA,a-sust-i3,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity 4.942045350505081,4.94,a-sust-i3,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 1.0, 4.9, 4.4, 4.8, 0.0, 15.1,501,33.17880794701987 6.072383949645947,5,a-sust-i3,2016-17,Medway - John D Mc Govern Elementary,01770013, 0.0, 1.0, 0.0, 2.0, 6.8, 4.8, 1.8, 16.4,343,20.914634146341466 -2.9735023041474653,1,a-sust-i3,2016-17,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.4, 3.0, 2.0, 1.0, 6.4,762,119.0625 @@ -28644,7 +28644,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.248847926267281,5,a-sust-i3,2016-17,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 3.0, 1.0, 5.0, 4.0, 0.0, 13.0,247,19.0 6.211981566820278,5,a-sust-i3,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 4.0, 5.0, 9.0, 7.0, 0.0, 25.0,485,19.4 3.293953358469488,3.29,a-sust-i3,2016-17,Nashoba - Nashoba Regional,07250505, 1.8, 2.0, 3.0, 5.0, 2.0, 5.0, 1.0, 19.8,1011,51.060606060606055 --Infinity,1,a-sust-i3,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity +NA,NA,a-sust-i3,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,732,Infinity 5.409390957778054,5,a-sust-i3,2016-17,Natick - Bennett-Hemenway,01980005, 2.0, 5.0, 1.0, 7.0, 2.0, 4.8, 0.4, 22.2,624,28.10810810810811 1.2192231731402239,1.22,a-sust-i3,2016-17,Natick - Brown,01980010, 1.0, 0.0, 0.5, 1.0, 1.5, 3.0, 0.0, 7.0,515,73.57142857142857 -1.9692780337941642,1,a-sust-i3,2016-17,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 6.0,649,108.16666666666667 @@ -28688,7 +28688,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.9999999999999998,1,a-sust-i3,2016-17,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,217,108.5 6.126951092611862,5,a-sust-i3,2016-17,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.1, 2.0, 1.0, 0.0, 3.1,63,20.32258064516129 2.930875576036866,2.93,a-sust-i3,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,110,55.0 --Infinity,1,a-sust-i3,2016-17,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +NA,NA,a-sust-i3,2016-17,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity -20.847926267281107,1,a-sust-i3,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 7.026497695852535,5,a-sust-i3,2016-17,New Salem-Wendell - Swift River,07280015, 2.0, 3.0, 2.0, 2.0, 5.0, 2.0, 0.0, 16.0,169,10.5625 5.300273235186167,5,a-sust-i3,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 2.0, 1.0, 0.0, 2.0, 3.0, 3.3, 0.0, 11.3,331,29.292035398230087 @@ -28830,10 +28830,10 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.9302172481895978,1.93,a-sust-i3,2016-17,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 7.0,461,65.85714285714286 1.2350230414746537,1.24,a-sust-i3,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 1.0, 1.0, 2.0, 1.0, 2.0, 3.0, 0.0, 10.0,734,73.4 5.714285714285714,5,a-sust-i3,2016-17,Petersham - Petersham Center,02340005, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 1.0, 5.0,124,24.8 --Infinity,1,a-sust-i3,2016-17,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, 0.0, 0.0, 0.0,193,Infinity --Infinity,1,a-sust-i3,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity --Infinity,1,a-sust-i3,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity --Infinity,1,a-sust-i3,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +NA,NA,a-sust-i3,2016-17,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, 0.0, 0.0, 0.0,193,Infinity +NA,NA,a-sust-i3,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +NA,NA,a-sust-i3,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +NA,NA,a-sust-i3,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity 6.911328982773019,5,a-sust-i3,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 3.0, 0.0, 1.0, 3.0, 4.0, 3.1, 0.8, 14.9,176,11.81208053691275 6.739495798319328,5,a-sust-i3,2016-17,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.0, 4.0, 7.0, 0.6, 1.0, 13.6,186,13.676470588235295 7.235219139131287,5,a-sust-i3,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 3.0, 0.0, 0.1, 0.6, 0.2, 0.9, 4.7,39,8.297872340425531 @@ -28873,19 +28873,19 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.495012541562153,5,a-sust-i3,2016-17,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 1.0, 3.0, 3.0, 0.9, 7.9,129,16.32911392405063 4.113003406131035,4.11,a-sust-i3,2016-17,Quabbin - Hardwick Elementary,07530005, 1.0, 1.7, 0.0, 0.0, 1.0, 0.9, 0.0, 4.6,194,42.173913043478265 4.799513850205094,4.8,a-sust-i3,2016-17,Quabbin - Hubbardston Center,07530010, 0.0, 0.9, 1.0, 3.6, 1.9, 1.0, 0.9, 9.1,316,34.72527472527473 --Infinity,1,a-sust-i3,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity 7.234314073023751,5,a-sust-i3,2016-17,Quabbin - New Braintree Grade,07530020, 0.0, 2.0, 2.6, 2.7, 4.7, 1.0, 0.0, 13.0,108,8.307692307692308 6.7401175326597045,5,a-sust-i3,2016-17,Quabbin - Oakham Center,07530025, 0.0, 2.0, 0.9, 0.0, 5.0, 3.0, 0.0, 10.9,149,13.669724770642201 2.9754719785937267,2.98,a-sust-i3,2016-17,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.8, 4.7, 5.9, 0.0, 12.4,676,54.516129032258064 1.1441506993289676,1.14,a-sust-i3,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 1.0, 2.8, 1.9, 0.0, 5.7,424,74.3859649122807 3.0121984277582,3.01,a-sust-i3,2016-17,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.9, 2.0, 0.9, 3.0, 0.0, 6.8,368,54.11764705882353 4.635944700460829,4.64,a-sust-i3,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 1.0, 2.0, 1.0, 0.0, 5.0, 1.0, 0.0, 10.0,365,36.5 --Infinity,1,a-sust-i3,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +NA,NA,a-sust-i3,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity 4.979006656426011,4.98,a-sust-i3,2016-17,Quaboag Regional - Warren Elementary,07780005, 3.4, 1.0, 0.0, 3.0, 3.0, 4.0, 0.0, 14.4,472,32.77777777777778 4.244239631336406,4.24,a-sust-i3,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 1.0, 8.0,326,40.75 7.250325226556127,5,a-sust-i3,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.5, 2.0, 0.2, 4.2, 9.1, 3.0, 2.0, 20.9,170,8.133971291866029 6.3855907954579685,5,a-sust-i3,2016-17,Quincy - Atherton Hough,02430040, 2.0, 1.0, 1.1, 1.1, 4.0, 4.0, 2.0, 15.3,268,17.516339869281044 --Infinity,1,a-sust-i3,2016-17,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +NA,NA,a-sust-i3,2016-17,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity 1.6748893105629348,1.67,a-sust-i3,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 2.0, 2.0, 1.1, 0.0, 0.0, 5.1,350,68.62745098039215 3.785096099808924,3.79,a-sust-i3,2016-17,Quincy - Broad Meadows Middle,02430310, 3.0, 1.0, 0.0, 0.0, 1.0, 1.0, 2.2, 8.2,375,45.73170731707317 -21.447004608294932,1,a-sust-i3,2016-17,Quincy - Central Middle,02430315, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,639,319.5 @@ -28902,9 +28902,9 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.494389137087979,5,a-sust-i3,2016-17,Quincy - Snug Harbor Community School,02430090, 2.1, 3.0, 0.1, 4.1, 7.0, 7.0, 2.8, 26.2,428,16.33587786259542 5.8515811218814555,5,a-sust-i3,2016-17,Quincy - Squantum,02430095, 0.0, 2.0, 2.3, 2.3, 4.0, 4.0, 0.0, 14.5,338,23.310344827586206 0.582839587447883,1,a-sust-i3,2016-17,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.1, 2.1, 0.0, 2.0, 0.0, 4.2,338,80.47619047619047 --Infinity,1,a-sust-i3,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity +NA,NA,a-sust-i3,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38,Infinity 3.498050336760014,3.5,a-sust-i3,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 2.0, 3.0, 5.0, 2.0, 0.0, 1.0, 13.0,635,48.84615384615385 --Infinity,1,a-sust-i3,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +NA,NA,a-sust-i3,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity 4.1026991441737986,4.1,a-sust-i3,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 1.0, 0.0, 2.0, 1.0, 2.0, 1.0, 0.0, 7.0,296,42.285714285714285 5.925195584610439,5,a-sust-i3,2016-17,Randolph - J F Kennedy Elementary,02440018, 0.0, 5.0, 3.0, 0.5, 3.0, 8.0, 2.0, 21.5,484,22.511627906976745 1.3333333333333335,1.33,a-sust-i3,2016-17,Randolph - Margaret L Donovan,02440015, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0, 1.0, 6.0,434,72.33333333333333 @@ -28924,11 +28924,11 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.509580402619452,1.51,a-sust-i3,2016-17,Revere - Abraham Lincoln,02480025, 0.5, 1.0, 1.0, 1.5, 2.5, 3.0, 0.0, 9.5,669,70.42105263157895 3.988072648414204,3.99,a-sust-i3,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 1.5, 2.5, 1.5, 1.5, 0.5, 1.0, 0.0, 8.5,370,43.529411764705884 3.1440092165898617,3.14,a-sust-i3,2016-17,Revere - Garfield Elementary School,02480056, 1.0, 2.0, 0.5, 3.0, 5.5, 3.0, 1.0, 16.0,843,52.6875 --Infinity,1,a-sust-i3,2016-17,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +NA,NA,a-sust-i3,2016-17,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity -0.27817343946376183,1,a-sust-i3,2016-17,Revere - Paul Revere,02480050, 1.5, 0.0, 0.5, 1.5, 1.0, 0.5, 0.5, 5.5,494,89.81818181818181 -20.21812596006145,1,a-sust-i3,2016-17,Revere - Revere High,02480505, 0.5, 0.5, 0.5, 2.0, 0.0, 2.5, 0.0, 6.0,1837,306.1666666666667 1.9272913466461854,1.93,a-sust-i3,2016-17,Revere - Rumney Marsh Academy,02480014, 1.0, 1.5, 1.0, 2.0, 0.0, 3.0, 0.5, 9.0,593,65.88888888888889 --Infinity,1,a-sust-i3,2016-17,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity +NA,NA,a-sust-i3,2016-17,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121,Infinity -1.8688408365827727,1,a-sust-i3,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 1.0, 1.5, 0.5, 1.5, 1.5, 0.5, 0.0, 6.5,696,107.07692307692308 -2.267281105990784,1,a-sust-i3,2016-17,Revere - Susan B. Anthony Middle School,02480305, 1.0, 0.5, 0.5, 1.0, 1.0, 1.0, 0.0, 5.0,557,111.4 4.811059907834101,4.81,a-sust-i3,2016-17,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 1.0, 5.0,173,34.6 @@ -28944,14 +28944,14 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.225806451612903,1.23,a-sust-i3,2016-17,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,294,73.5 5.172748785652011,5,a-sust-i3,2016-17,Rockport - Rockport Middle,02520305, 0.4, 0.0, 1.0, 3.0, 2.0, 0.0, 1.0, 7.4,227,30.675675675675674 5.734254992319508,5,a-sust-i3,2016-17,Rowe - Rowe Elementary,02530005, 0.0, 1.0, 0.0, 1.4, 0.0, 0.0, 0.0, 2.4,59,24.583333333333336 --Infinity,1,a-sust-i3,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1306,Infinity +NA,NA,a-sust-i3,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1306,Infinity 1.6846323382087758,1.68,a-sust-i3,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 4.0, 3.0, 2.0, 5.0, 4.0, 3.0, 2.0, 23.0,1576,68.52173913043478 6.5648452929558925,5,a-sust-i3,2016-17,Salem - Bates,02580003, 7.0, 3.0, 1.0, 1.0, 5.0, 4.0, 0.0, 21.0,327,15.571428571428571 4.853192890059249,4.85,a-sust-i3,2016-17,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 1.0, 1.0, 5.0, 0.0, 7.0,239,34.142857142857146 5.573409915625904,5,a-sust-i3,2016-17,Salem - Collins Middle,02580305, 1.0, 2.0, 2.0, 0.0, 10.0, 3.5, 2.2, 20.7,545,26.32850241545894 4.326164874551972,4.33,a-sust-i3,2016-17,Salem - Horace Mann Laboratory,02580030, 0.0, 1.0, 0.4, 1.4, 1.4, 3.0, 0.0, 7.2,287,39.86111111111111 3.9078341013824884,3.91,a-sust-i3,2016-17,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 3.0, 3.0, 2.0, 2.0, 10.0,444,44.4 --Infinity,1,a-sust-i3,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +NA,NA,a-sust-i3,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity 7.367219203521562,5,a-sust-i3,2016-17,Salem - Salem Early Childhood,02580001, 3.0, 0.0, 0.0, 1.0, 5.0, 1.0, 3.4, 13.4,92,6.865671641791044 5.226103760963283,5,a-sust-i3,2016-17,Salem - Salem High,02580505, 7.0, 4.0, 3.0, 3.0, 4.0, 9.0, 1.0, 31.0,933,30.096774193548388 7.700460829493087,5,a-sust-i3,2016-17,Salem - Salem Prep High School,02580515, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 4.0,13,3.25 @@ -29037,8 +29037,8 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.944345976604041,4.94,a-sust-i3,2016-17,Southbridge - West Street,02770020, 0.0, 1.0, 5.0, 3.0, 1.0, 3.0, 0.0, 13.0,431,33.15384615384615 4.045245077503142,4.05,a-sust-i3,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 5.0, 2.0, 7.0, 5.0, 5.0, 6.0, 3.0, 33.0,1416,42.90909090909091 5.009728622631848,5,a-sust-i3,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 1.0, 1.0, 2.0, 5.0, 0.0, 9.0,292,32.44444444444444 --Infinity,1,a-sust-i3,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity --Infinity,1,a-sust-i3,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +NA,NA,a-sust-i3,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity 6.986175115207374,5,a-sust-i3,2016-17,Southern Berkshire - Undermountain,07650035, 0.0, 2.0, 4.0, 8.0, 6.0, 8.0, 2.0, 30.0,330,11.0 1.5829493087557602,1.58,a-sust-i3,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 1.0, 0.0, 3.0, 5.0, 5.0, 2.0, 16.0,1114,69.625 6.320532514080901,5,a-sust-i3,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.0, 0.0, 0.0, 3.0, 0.5, 1.0, 0.0, 4.5,82,18.22222222222222 @@ -29065,8 +29065,8 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.6129032258064515,3.61,a-sust-i3,2016-17,Springfield - Forest Park Middle,02810325, 0.0, 3.0, 2.0, 3.0, 2.0, 4.0, 1.0, 15.0,714,47.6 5.096774193548387,5,a-sust-i3,2016-17,Springfield - Frank H Freedman,02810075, 1.0, 1.0, 1.0, 2.0, 4.0, 1.0, 0.0, 10.0,315,31.5 4.578341013824884,4.58,a-sust-i3,2016-17,Springfield - Frederick Harris,02810080, 2.0, 1.0, 3.0, 6.0, 1.0, 2.0, 1.0, 16.0,594,37.125 --Infinity,1,a-sust-i3,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity --Infinity,1,a-sust-i3,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity +NA,NA,a-sust-i3,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +NA,NA,a-sust-i3,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48,Infinity 5.4087203119461185,5,a-sust-i3,2016-17,Springfield - German Gerena Community School,02810195, 2.0, 5.0, 3.0, 8.0, 7.0, 1.0, 0.0, 26.0,731,28.115384615384617 4.917562724014337,4.92,a-sust-i3,2016-17,Springfield - Glenwood,02810065, 0.0, 2.0, 3.0, 2.0, 1.0, 1.0, 0.0, 9.0,301,33.44444444444444 5.932027649769585,5,a-sust-i3,2016-17,Springfield - Glickman Elementary,02810068, 2.0, 4.0, 1.0, 3.0, 3.0, 2.0, 1.0, 16.0,359,22.4375 @@ -29078,7 +29078,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.18475073313783,5,a-sust-i3,2016-17,Springfield - John J Duggan Middle,02810320, 1.0, 6.0, 4.0, 5.0, 4.0, 1.0, 1.0, 22.0,672,30.545454545454547 3.9710335747202103,3.97,a-sust-i3,2016-17,Springfield - Kensington International School,02810110, 1.0, 1.0, 1.0, 2.0, 2.0, 0.0, 0.0, 7.0,306,43.714285714285715 4.208031599736668,4.21,a-sust-i3,2016-17,Springfield - Liberty,02810115, 0.0, 0.0, 2.0, 3.0, 2.0, 0.0, 0.0, 7.0,288,41.142857142857146 --Infinity,1,a-sust-i3,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +NA,NA,a-sust-i3,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity 3.345622119815668,3.35,a-sust-i3,2016-17,Springfield - Lincoln,02810120, 0.0, 3.0, 0.0, 0.0, 2.0, 3.0, 0.0, 8.0,404,50.5 3.766951942067149,3.77,a-sust-i3,2016-17,Springfield - M Marcus Kiley Middle,02810330, 0.0, 3.0, 3.0, 2.0, 3.0, 3.0, 0.0, 14.0,643,45.92857142857143 6.878648233486943,5,a-sust-i3,2016-17,Springfield - Margaret C Ells,02810060, 6.0, 3.0, 1.0, 1.0, 4.0, 3.0, 0.0, 18.0,219,12.166666666666666 @@ -29107,7 +29107,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.363636363636363,4.36,a-sust-i3,2016-17,Springfield - Washington,02810185, 1.0, 1.0, 2.0, 2.0, 3.0, 2.0, 0.0, 11.0,434,39.45454545454545 -0.2764976958525346,1,a-sust-i3,2016-17,Springfield - White Street,02810190, 0.0, 1.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,449,89.8 3.4224270353302613,3.42,a-sust-i3,2016-17,Springfield - William N. DeBerry,02810045, 1.0, 1.0, 0.0, 1.0, 1.0, 2.0, 0.0, 6.0,298,49.666666666666664 --Infinity,1,a-sust-i3,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +NA,NA,a-sust-i3,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity 6.223468910705938,5,a-sust-i3,2016-17,Stoneham - Colonial Park,02840005, 2.0, 0.0, 2.8, 3.5, 5.0, 0.5, 0.0, 13.8,266,19.27536231884058 5.542242703533026,5,a-sust-i3,2016-17,Stoneham - Robin Hood,02840025, 1.0, 0.0, 0.0, 0.0, 6.0, 6.8, 0.0, 13.8,368,26.666666666666664 2.869431643625192,2.87,a-sust-i3,2016-17,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 1.0, 6.0,334,55.666666666666664 @@ -29144,7 +29144,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.161290322580646,1,a-sust-i3,2016-17,Swansea - Joseph Case Jr High,02920305, 0.0, 1.0, 1.0, 1.0, 2.0, 0.0, 0.0, 5.0,497,99.4 1.2411674347158221,1.24,a-sust-i3,2016-17,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,220,73.33333333333333 5.306707629288274,5,a-sust-i3,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 1.0, 1.0, 1.0, 3.0, 2.0, 1.0, 0.0, 9.0,263,29.22222222222222 --Infinity,1,a-sust-i3,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1119,Infinity +NA,NA,a-sust-i3,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1119,Infinity 4.561503013115916,4.56,a-sust-i3,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 3.1, 1.0, 1.5, 4.0, 3.0, 2.0, 1.0, 15.6,582,37.30769230769231 4.680280428942713,4.68,a-sust-i3,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0.1, 4.0, 3.0, 2.0, 9.0, 3.0, 0.0, 21.1,760,36.018957345971565 -20.62903225806452,1,a-sust-i3,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 1.6,497,310.625 @@ -29159,7 +29159,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.9370199692780337,3.94,a-sust-i3,2016-17,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 1.0, 3.0, 2.0, 5.0, 1.0, 12.0,529,44.083333333333336 1.7222850186940268,1.72,a-sust-i3,2016-17,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 1.6, 5.0, 3.0, 1.0, 10.6,722,68.11320754716981 3.902806870548806,3.9,a-sust-i3,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 1.0, 6.0, 3.0, 1.0, 11.0,489,44.45454545454545 --Infinity,1,a-sust-i3,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity +NA,NA,a-sust-i3,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity -2.481776288227903,1,a-sust-i3,2016-17,Taunton - Taunton High,02930505, 2.0, 1.0, 0.0, 2.0, 8.0, 8.0, 1.0, 22.0,2502,113.72727272727273 5.033135834979153,5,a-sust-i3,2016-17,Tewksbury - Heath-Brook,02950010, 1.0, 0.0, 0.0, 1.0, 3.0, 4.5, 1.0, 10.5,338,32.19047619047619 5.529953917050691,5,a-sust-i3,2016-17,Tewksbury - John F. Ryan,02950023, 8.0, 2.0, 0.0, 3.0, 5.0, 2.0, 0.0, 20.0,536,26.8 @@ -29181,17 +29181,17 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.2833497298883305,5,a-sust-i3,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 2.0, 2.0, 0.5, 5.0, 8.2, 8.0, 1.0, 26.7,787,29.475655430711612 -0.05657079294454263,1,a-sust-i3,2016-17,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.8, 5.8,507,87.41379310344828 3.611646418098031,3.61,a-sust-i3,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 1.0, 0.0, 0.0, 3.8, 4.0, 0.0, 8.8,419,47.61363636363636 --Infinity,1,a-sust-i3,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity +NA,NA,a-sust-i3,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472,Infinity -14.857142857142856,1,a-sust-i3,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,744,248.0 7.010902551421827,5,a-sust-i3,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.3, 0.2, 0.2, 0.2, 1.2, 1.1, 1.0, 4.1,44,10.731707317073171 6.826062094251403,5,a-sust-i3,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 2.2, 7.8, 5.1, 2.3, 2.3, 5.4, 2.2, 27.4,349,12.737226277372264 3.643625192012289,3.64,a-sust-i3,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 1.0, 0.0, 1.0, 2.0, 1.0, 5.0, 5.0, 15.0,709,47.266666666666666 --Infinity,1,a-sust-i3,2016-17,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +NA,NA,a-sust-i3,2016-17,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity 5.2416063199473335,5,a-sust-i3,2016-17,Uxbridge - McCloskey Middle School,03040015, 1.0, 0.0, 1.0, 6.0, 3.0, 3.0, 0.0, 14.0,419,29.928571428571427 5.916439163954833,5,a-sust-i3,2016-17,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 4.0, 7.4, 5.7, 4.0, 0.0, 21.1,477,22.606635071090047 2.4470046082949306,2.45,a-sust-i3,2016-17,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 1.0, 2.0, 3.0, 1.0, 1.0, 8.0,482,60.25 1.6866359447004606,1.69,a-sust-i3,2016-17,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 2.0, 6.0,411,68.5 --Infinity,1,a-sust-i3,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +NA,NA,a-sust-i3,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity 6.147465437788018,5,a-sust-i3,2016-17,Wachusett - Central Tree Middle,07750310, 3.0, 3.0, 3.0, 0.0, 5.0, 5.0, 1.0, 20.0,402,20.1 3.6566820276497696,3.66,a-sust-i3,2016-17,Wachusett - Chocksett Middle School,07750315, 2.0, 1.0, 1.0, 0.0, 2.0, 2.0, 0.0, 8.0,377,47.125 5.788018433179723,5,a-sust-i3,2016-17,Wachusett - Davis Hill Elementary,07750018, 1.0, 0.0, 4.5, 7.5, 1.0, 5.0, 0.0, 19.0,456,24.0 @@ -29236,7 +29236,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.894009216589861,4.89,a-sust-i3,2016-17,Ware - Ware Middle School,03090305, 0.0, 0.0, 3.0, 1.0, 4.0, 1.0, 1.0, 10.0,337,33.7 3.939357510185,3.94,a-sust-i3,2016-17,Wareham - John William Decas,03100003, 0.0, 0.0, 1.0, 4.8, 6.0, 2.0, 0.0, 13.8,608,44.05797101449275 5.856508688115673,5,a-sust-i3,2016-17,Wareham - Minot Forest,03100017, 0.0, 4.0, 1.0, 3.3, 6.0, 6.0, 1.5, 21.8,507,23.256880733944953 --Infinity,1,a-sust-i3,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +NA,NA,a-sust-i3,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity 3.409659464959004,3.41,a-sust-i3,2016-17,Wareham - Wareham Middle,03100305, 0.0, 0.0, 2.6, 3.3, 5.5, 4.0, 0.0, 15.4,767,49.8051948051948 4.240792481584963,4.24,a-sust-i3,2016-17,Wareham - Wareham Senior High,03100505, 0.0, 1.0, 1.4, 1.3, 2.0, 4.0, 3.0, 12.7,518,40.787401574803155 6.564152316274557,5,a-sust-i3,2016-17,Watertown - Cunniff,03140015, 2.0, 9.0, 0.0, 3.0, 3.0, 2.0, 0.0, 19.0,296,15.578947368421053 @@ -29268,7 +29268,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.052227342549923,4.05,a-sust-i3,2016-17,West Bridgewater - Rose L Macdonald,03230003, 1.0, 0.0, 0.0, 2.0, 0.0, 2.0, 1.0, 6.0,257,42.833333333333336 6.471130387638926,5,a-sust-i3,2016-17,West Bridgewater - Spring Street School,03230005, 1.0, 0.0, 0.0, 2.0, 1.5, 4.0, 0.0, 8.5,141,16.58823529411765 -0.15009874917709065,1,a-sust-i3,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 3.0, 7.0,619,88.42857142857143 --Infinity,1,a-sust-i3,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +NA,NA,a-sust-i3,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity 7.215609373467986,5,a-sust-i3,2016-17,West Springfield - Cowing Early Childhood,03320001, 3.7, 1.0, 1.0, 2.0, 1.8, 3.9, 0.8, 14.1,120,8.51063829787234 6.592601818408269,5,a-sust-i3,2016-17,West Springfield - John Ashley,03320005, 0.0, 3.0, 0.0, 2.0, 4.0, 4.8, 1.0, 14.8,226,15.27027027027027 5.870967741935484,5,a-sust-i3,2016-17,West Springfield - John R Fausey,03320010, 3.0, 2.0, 0.0, 4.0, 3.0, 5.0, 3.0, 20.0,462,23.1 @@ -29370,7 +29370,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.3097798259088584,3.31,a-sust-i3,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 2.0, 0.0, 0.0, 2.0, 2.0, 3.0, 0.0, 9.0,458,50.888888888888886 6.446346280447663,5,a-sust-i3,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 2.0, 4.0, 3.0, 5.0, 8.0, 5.0, 1.0, 28.0,472,16.857142857142858 -0.8479262672811063,1,a-sust-i3,2016-17,Winthrop - Winthrop High School,03460505, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 2.0, 6.0,576,96.0 --Infinity,1,a-sust-i3,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +NA,NA,a-sust-i3,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity 6.085462924172602,5,a-sust-i3,2016-17,Woburn - Clyde Reeves,03470040, 3.0, 1.0, 0.0, 1.0, 7.0, 8.0, 2.0, 22.0,457,20.772727272727273 5.450076804915514,5,a-sust-i3,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 1.0, 2.0, 0.0, 0.0, 8.0, 6.0, 1.0, 18.0,498,27.666666666666668 3.207373271889401,3.21,a-sust-i3,2016-17,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 4.0,208,52.0 @@ -29401,7 +29401,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.922924008313003,5,a-sust-i3,2016-17,Worcester - Gates Lane,03480110, 6.0, 12.0, 3.0, 5.0, 17.0, 8.0, 0.0, 51.0,596,11.686274509803921 4.823348694316436,4.82,a-sust-i3,2016-17,Worcester - Goddard School/Science Technical,03480100, 1.0, 1.0, 0.0, 4.0, 3.0, 3.0, 3.0, 15.0,517,34.46666666666667 0.4608294930875576,1,a-sust-i3,2016-17,Worcester - Grafton Street,03480115, 0.0, 0.0, 2.0, 1.0, 1.0, 1.0, 0.0, 5.0,409,81.8 --Infinity,1,a-sust-i3,2016-17,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +NA,NA,a-sust-i3,2016-17,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity -4.396313364055299,1,a-sust-i3,2016-17,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,269,134.5 1.210445468509984,1.21,a-sust-i3,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 1.0, 1.0, 2.0, 1.0, 1.0, 0.0, 6.0,442,73.66666666666667 2.488479262672811,2.49,a-sust-i3,2016-17,Worcester - Lake View,03480145, 0.0, 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 5.0,299,59.8 @@ -29419,7 +29419,7 @@ NaN,NaN,a-sust-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.0860215053763436,2.09,a-sust-i3,2016-17,Worcester - Tatnuck,03480230, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0, 0.0, 6.0,385,64.16666666666667 -0.6635944700460832,1,a-sust-i3,2016-17,Worcester - Thorndyke Road,03480235, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,376,94.0 2.6646185355862775,2.66,a-sust-i3,2016-17,Worcester - Union Hill School,03480240, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 1.0, 9.0,521,57.888888888888886 --Infinity,1,a-sust-i3,2016-17,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +NA,NA,a-sust-i3,2016-17,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity 4.022686990428926,4.02,a-sust-i3,2016-17,Worcester - Vernon Hill School,03480280, 0.0, 3.0, 2.0, 3.0, 2.0, 0.0, 3.0, 13.0,561,43.15384615384615 6.306451612903226,5,a-sust-i3,2016-17,Worcester - Wawecus Road School,03480026, 1.0, 1.0, 0.0, 1.0, 2.0, 3.0, 0.0, 8.0,147,18.375 5.142857142857142,5,a-sust-i3,2016-17,Worcester - West Tatnuck,03480260, 0.0, 3.0, 2.0, 0.0, 3.0, 3.0, 0.0, 11.0,341,31.0 diff --git a/data/admin_data/dese/3A_2_grade_subject_staffing.csv b/data/admin_data/dese/3A_2_grade_subject_staffing.csv index 4a2704b2..9a12f16b 100644 --- a/data/admin_data/dese/3A_2_grade_subject_staffing.csv +++ b/data/admin_data/dese/3A_2_grade_subject_staffing.csv @@ -1,6 +1,6 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,PK-2 (# ),3-5 (# ),6-8 (# ),9-12 (# ),Multiple Grades (# ),All Grades (# ),FTE Count,Student Count,Student to Art Teacher ratio 6.75076923076923,5,a-sust-i4,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 2.5, 1.8, 2.8, .6, .0, 9.1,1421,156.15384615384616 --Infinity,1,a-sust-i4,2023-24,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +NA,NA,a-sust-i4,2023-24,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity 6.397142857142857,5,a-sust-i4,2023-24,Abington - Abington High,00010505, 0.0, .0, .0, .3, .0, 2.5, 2.8,561,200.35714285714286 7.021538461538461,5,a-sust-i4,2023-24,Abington - Abington Middle School,00010405, 0.0, 2.9, 2.2, .0, .0, .1, 5.2,636,122.3076923076923 4.626666666666666,4.63,a-sust-i4,2023-24,Abington - Beaver Brook Elementary,00010020, 1.1, .0, .0, .0, .0, .1, 1.2,506,421.6666666666667 @@ -9,7 +9,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.308717948717949,5,a-sust-i4,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, .0, 7.6, .2, 7.8,1649,211.4102564102564 5.972,5,a-sust-i4,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.8, .9, .3, .0, .0, .0, 2.0,507,253.5 6.372,5,a-sust-i4,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 1.0, .8, .2, .0, .0, .0, 2.0,407,203.5 --Infinity,1,a-sust-i4,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity +NA,NA,a-sust-i4,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity 6.348,5,a-sust-i4,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.8, .8, .3, .0, .0, .0, 2.0,413,206.5 6.236,5,a-sust-i4,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.8, .9, .4, .0, .0, .0, 2.0,441,220.5 6.384,5,a-sust-i4,2023-24,Acton-Boxborough - Merriam School,06000010, 0.7, 1.0, .3, .0, .0, .0, 2.0,404,202.0 @@ -18,7 +18,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.932,5,a-sust-i4,2023-24,Acushnet - Acushnet Elementary School,00030025, 1.3, .8, .0, .0, .0, .0, 2.0,517,258.5 6.32,5,a-sust-i4,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, .6, 1.4, .0, .0, .0, 2.0,420,210.0 6.068,5,a-sust-i4,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 2.1, .0, 1.9, .0, 4.0,966,241.5 --Infinity,1,a-sust-i4,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,150,Infinity +NA,NA,a-sust-i4,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,150,Infinity 6.173913043478261,5,a-sust-i4,2023-24,Agawam - Agawam High,00050505, 0.0, .0, .0, 4.2, .4, .0, 4.6,1050,228.2608695652174 7.118399999999999,5,a-sust-i4,2023-24,Agawam - Agawam Junior High,00050405, 0.0, .0, 1.8, .0, 3.2, .0, 5.0,551,110.2 5.536,5,a-sust-i4,2023-24,Agawam - Benjamin J Phelps,00050020, 0.6, .4, .0, .0, .0, .0, 1.0,308,308.0 @@ -43,7 +43,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.68,5,a-sust-i4,2023-24,Andover - Doherty Middle,00090305, 0.0, .0, 2.8, .0, .0, .0, 2.8,462,165.0 7.010370370370371,5,a-sust-i4,2023-24,Andover - Henry C Sanborn Elementary,00090010, 1.1, 1.6, .0, .0, .0, .0, 2.7,334,123.7037037037037 6.72,5,a-sust-i4,2023-24,Andover - High Plain Elementary,00090004, 1.7, 1.7, .0, .0, .0, .0, 3.4,544,160.0 --Infinity,1,a-sust-i4,2023-24,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity +NA,NA,a-sust-i4,2023-24,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity 6.6176,5,a-sust-i4,2023-24,Andover - South Elementary,00090020, 1.0, 1.6, .0, .0, .0, .0, 2.5,432,172.8 6.897560975609757,5,a-sust-i4,2023-24,Andover - West Elementary,00090025, 1.9, 2.2, .0, .0, .0, .0, 4.1,565,137.8048780487805 7.145806451612904,5,a-sust-i4,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, .0, 3.1, .0, .0, .0, 3.1,331,106.77419354838709 @@ -55,7 +55,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.821538461538462,5,a-sust-i4,2023-24,Arlington - Hardy,00100030, 1.1, .9, .0, .0, .4, .3, 2.6,383,147.3076923076923 7.131111111111111,5,a-sust-i4,2023-24,Arlington - John A Bishop,00100005, 1.0, 1.1, .0, .0, 1.4, .3, 3.6,391,108.61111111111111 6.9406060606060604,5,a-sust-i4,2023-24,Arlington - M Norcross Stratton,00100055, 0.9, 1.1, .0, .0, .9, .4, 3.3,437,132.42424242424244 --Infinity,1,a-sust-i4,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 6.463673469387755,5,a-sust-i4,2023-24,Arlington - Ottoson Middle,00100410, 0.0, .0, 4.9, .0, .0, .0, 4.9,941,192.0408163265306 7.234285714285714,5,a-sust-i4,2023-24,Arlington - Peirce,00100045, 0.9, 1.1, .0, .0, 1.0, .4, 3.5,335,95.71428571428571 6.806857142857143,5,a-sust-i4,2023-24,Arlington - Thompson,00100050, 1.0, 1.0, .0, .0, 1.3, .3, 3.5,522,149.14285714285714 @@ -68,7 +68,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.247741935483871,5,a-sust-i4,2023-24,Ashland - Ashland Middle,00140405, 0.0, .0, 3.1, .0, .0, .0, 3.1,679,219.03225806451613 5.776666666666666,5,a-sust-i4,2023-24,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,667,277.9166666666667 4.945,4.95,a-sust-i4,2023-24,Ashland - Henry E Warren Elementary,00140010, 1.6, .0, .0, .0, .0, .0, 1.6,611,381.875 --Infinity,1,a-sust-i4,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity +NA,NA,a-sust-i4,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity 4.233333333333333,4.23,a-sust-i4,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 2.4, .0, .0, 2.4,1130,470.83333333333337 5.824761904761905,5,a-sust-i4,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 1.1, .0, .0, .0, .0, 1.0, 2.1,571,271.90476190476187 5.792,5,a-sust-i4,2023-24,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, .4, .0, 1.1, 1.5,414,276.0 @@ -80,7 +80,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 4.5,4.5,a-sust-i4,2023-24,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 4.3, .0, .1, 4.4,1925,437.49999999999994 7.173333333333333,5,a-sust-i4,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, .0, .0, .3, .0, .1, 0.3,31,103.33333333333334 6.513939393939394,5,a-sust-i4,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 1.0, 2.4, .0, .0, .0, 3.3,613,185.75757575757578 --Infinity,1,a-sust-i4,2023-24,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,226,Infinity +NA,NA,a-sust-i4,2023-24,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,226,Infinity 6.328,5,a-sust-i4,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 1.3, .7, .0, .0, .0, .0, 2.0,418,209.0 6.172,5,a-sust-i4,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 1.2, .8, .0, .0, .0, .0, 2.0,457,228.5 6.4,5,a-sust-i4,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 1.4, .8, .0, .0, .0, .0, 2.2,440,199.99999999999997 @@ -103,7 +103,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.888695652173913,5,a-sust-i4,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 4.6, .0, .0, .0, 4.6,639,138.91304347826087 6.513684210526316,5,a-sust-i4,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 3.8, .0, .0, .0, .0, 3.8,706,185.78947368421055 5.92,5,a-sust-i4,2023-24,Barnstable - Centerville Elementary,00200010, 0.8, .2, .0, .0, .0, .0, 1.0,260,260.0 --Infinity,1,a-sust-i4,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,153,Infinity +NA,NA,a-sust-i4,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,153,Infinity 6.29,5,a-sust-i4,2023-24,Barnstable - Hyannis West Elementary,00200025, 1.2, .4, .0, .0, .0, .0, 1.6,342,213.75 6.735,5,a-sust-i4,2023-24,Barnstable - West Barnstable Elementary,00200005, 1.3, .3, .0, .0, .0, .0, 1.6,253,158.125 6.404,5,a-sust-i4,2023-24,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,399,199.5 @@ -117,7 +117,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.84,5,a-sust-i4,2023-24,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,189,270.0 7.112,5,a-sust-i4,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, .0, 3.0, .0, .0, .0, 3.0,333,111.0 6.128,5,a-sust-i4,2023-24,Belchertown - Swift River Elementary,00240018, 1.3, .7, .0, .0, .0, .0, 2.0,468,234.0 --Infinity,1,a-sust-i4,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity +NA,NA,a-sust-i4,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity 6.890370370370371,5,a-sust-i4,2023-24,Bellingham - Bellingham High School,00250505, 0.0, .0, 1.3, 4.0, .0, .0, 5.4,749,138.7037037037037 6.649142857142857,5,a-sust-i4,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.0, 1.5, .0, .0, .0, 3.5,591,168.85714285714286 5.584,5,a-sust-i4,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.8, .2, .0, .0, .0, .0, 1.0,302,302.0 @@ -147,7 +147,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.0488888888888885,5,a-sust-i4,2023-24,Beverly - Centerville Elementary,00300010, 1.5, 1.0, .0, .0, .0, .2, 2.7,321,118.88888888888889 6.527272727272728,5,a-sust-i4,2023-24,Beverly - Cove Elementary,00300015, 1.3, .7, .0, .0, .0, .2, 2.2,405,184.09090909090907 6.836363636363636,5,a-sust-i4,2023-24,Beverly - Hannah Elementary,00300033, 1.4, .6, .0, .0, .0, .2, 2.2,320,145.45454545454544 --Infinity,1,a-sust-i4,2023-24,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity +NA,NA,a-sust-i4,2023-24,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity 6.738181818181818,5,a-sust-i4,2023-24,Beverly - North Beverly Elementary,00300040, 1.3, .7, .0, .0, .0, .2, 2.2,347,157.72727272727272 6.201481481481482,5,a-sust-i4,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, .0, 2.9, 5.1, .0, .0, 8.1,1821,224.81481481481484 6.421333333333333,5,a-sust-i4,2023-24,Billerica - Frederick J Dutile,00310007, 1.0, .5, .0, .0, .0, .0, 1.5,296,197.33333333333334 @@ -171,7 +171,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.884,5,a-sust-i4,2023-24,Boston - Bates Elementary School,00350278, 1.0, .5, .0, .0, .0, .5, 2.0,279,139.5 7.251428571428572,5,a-sust-i4,2023-24,Boston - Beethoven Elementary School,00350021, 1.6, .0, .0, .0, .0, 1.1, 2.8,262,93.57142857142858 6.866341463414634,5,a-sust-i4,2023-24,Boston - Blackstone Elementary School,00350390, 1.6, 1.6, .5, .0, .0, .5, 4.1,581,141.70731707317074 --Infinity,1,a-sust-i4,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity +NA,NA,a-sust-i4,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity 7.772048192771084,5,a-sust-i4,2023-24,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 16.6, .0, .0, 16.6,473,28.493975903614455 6.754285714285714,5,a-sust-i4,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, 1.4, .0, .0, 1.4,218,155.71428571428572 6.699428571428571,5,a-sust-i4,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, 1.0, 2.5, .0, .0, 3.5,569,162.57142857142858 @@ -182,7 +182,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.5,5,a-sust-i4,2023-24,Boston - Bradley Elementary School,00350215, 0.7, .3, .1, .0, .0, .5, 1.6,300,187.5 6.702222222222223,5,a-sust-i4,2023-24,Boston - Brighton High School,00350505, 0.0, .0, 1.8, 1.8, .0, .0, 3.6,584,162.22222222222223 6.946666666666667,5,a-sust-i4,2023-24,Boston - Burke High School,00350525, 0.0, .0, .2, 2.8, .0, .0, 3.0,395,131.66666666666666 --Infinity,1,a-sust-i4,2023-24,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +NA,NA,a-sust-i4,2023-24,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity 6.72,5,a-sust-i4,2023-24,Boston - Channing Elementary School,00350360, 0.6, .4, .1, .0, .0, .2, 1.2,192,160.0 6.597333333333333,5,a-sust-i4,2023-24,Boston - Charlestown High School,00350515, 0.0, .0, .4, 4.1, .0, .0, 4.5,789,175.33333333333334 7.3244444444444445,5,a-sust-i4,2023-24,Boston - Chittick Elementary School,00350154, 1.1, 1.0, .3, .0, .0, .3, 2.7,228,84.44444444444444 @@ -228,12 +228,12 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.648,5,a-sust-i4,2023-24,Boston - Kenny Elementary School,00350328, 0.8, .6, .2, .0, .0, .5, 2.0,338,169.0 6.94,5,a-sust-i4,2023-24,Boston - Kilmer K-8 School,00350190, 0.7, .7, 1.1, .0, .0, .3, 2.8,371,132.5 7.06,5,a-sust-i4,2023-24,Boston - King Elementary School,00350376, 2.7, .7, .2, .0, .0, .5, 4.0,470,117.5 --Infinity,1,a-sust-i4,2023-24,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity +NA,NA,a-sust-i4,2023-24,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity 7.102978723404255,5,a-sust-i4,2023-24,Boston - Lee K-8 School,00350183, 2.2, .9, 1.3, .0, .0, .3, 4.7,527,112.12765957446808 6.08,5,a-sust-i4,2023-24,Boston - Lyndon K-8 School,00350262, 0.6, .6, .3, .0, .0, .7, 2.2,528,239.99999999999997 5.28,5,a-sust-i4,2023-24,Boston - Lyon High School,00350655, 0.0, .0, .0, .3, .0, .0, 0.3,102,340.0 7.494736842105263,5,a-sust-i4,2023-24,Boston - Lyon K-8 School,00350004, 0.6, .8, .4, .0, .0, .1, 1.9,120,63.15789473684211 --Infinity,1,a-sust-i4,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1058,Infinity +NA,NA,a-sust-i4,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1058,Infinity 7.324,5,a-sust-i4,2023-24,Boston - Manning Elementary School,00350184, 0.8, .8, .3, .0, .0, .1, 2.0,169,84.5 7.5261538461538455,5,a-sust-i4,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 5.2, .0, .0, 5.2,308,59.230769230769226 7.143050847457627,5,a-sust-i4,2023-24,Boston - Mario Umana Academy,00350656, 1.6, 1.5, 1.6, .0, .0, 1.3, 5.9,632,107.11864406779661 @@ -306,10 +306,10 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.706666666666666,5,a-sust-i4,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .1, .2, .0, 0.3,11,36.66666666666667 6.336,5,a-sust-i4,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 4.0, .0, .0, .0, .0, 4.0,832,208.0 7.126153846153846,5,a-sust-i4,2023-24,Brimfield - Brimfield Elementary,00430005, 1.5, .8, .3, .0, .0, .0, 2.6,284,109.23076923076923 --Infinity,1,a-sust-i4,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,592,Infinity --Infinity,1,a-sust-i4,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1330,Infinity +NA,NA,a-sust-i4,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,592,Infinity +NA,NA,a-sust-i4,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1330,Infinity 6.0304761904761905,5,a-sust-i4,2023-24,Brockton - Ashfield Middle School,00440421, 0.0, .0, 1.9, .0, .0, .2, 2.1,517,246.19047619047618 --Infinity,1,a-sust-i4,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,265,Infinity +NA,NA,a-sust-i4,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,265,Infinity 5.042474226804123,5,a-sust-i4,2023-24,Brockton - Brockton High,00440505, 0.0, .0, .0, 5.1, .0, 4.6, 9.7,3586,369.69072164948454 5.456,5,a-sust-i4,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, .1, .1, .0, .0, .3, 0.5,159,318.0 5.745,5,a-sust-i4,2023-24,Brockton - Brookfield,00440010, 0.7, .7, .0, .0, .0, .3, 1.6,451,281.875 @@ -334,9 +334,9 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.36,5,a-sust-i4,2023-24,Brockton - West Middle School,00440420, 0.0, .0, 1.8, .0, .0, .6, 2.4,492,205.0 6.540165289256198,5,a-sust-i4,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 3.6, 2.8, 2.6, .0, 3.1, .0, 12.1,2208,182.4793388429752 7.194666666666666,5,a-sust-i4,2023-24,Brookfield - Brookfield Elementary,00450005, 0.7, 1.9, .4, .0, .0, .0, 3.0,302,100.66666666666667 --Infinity,1,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity --Infinity,1,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity --Infinity,1,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity +NA,NA,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity +NA,NA,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity +NA,NA,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity 6.447857142857143,5,a-sust-i4,2023-24,Brookline - Brookline High,00460505, 0.0, .0, .0, 5.7, 5.4, .0, 11.2,2173,194.01785714285717 6.692,5,a-sust-i4,2023-24,Brookline - Edith C Baker,00460005, 1.4, 1.8, .8, .0, .0, .1, 4.0,654,163.5 6.549787234042553,5,a-sust-i4,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 1.6, 2.0, 1.1, .0, .0, .0, 4.7,852,181.27659574468083 @@ -345,7 +345,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.177777777777777,5,a-sust-i4,2023-24,Brookline - Lawrence,00460030, 0.9, 1.2, .6, .0, .0, .0, 2.7,615,227.77777777777777 6.64,5,a-sust-i4,2023-24,Brookline - Michael Driscoll,00460020, 0.9, 1.6, .5, .0, .0, .0, 3.0,510,170.0 6.785454545454546,5,a-sust-i4,2023-24,Brookline - Pierce,00460040, 1.6, 1.9, .9, .0, .0, .0, 4.4,668,151.8181818181818 --Infinity,1,a-sust-i4,2023-24,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,55,Infinity +NA,NA,a-sust-i4,2023-24,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,55,Infinity 6.645714285714285,5,a-sust-i4,2023-24,Brookline - William H Lincoln,00460035, 1.0, 1.4, .4, .0, .0, .0, 2.8,474,169.2857142857143 6.613793103448275,5,a-sust-i4,2023-24,Burlington - Burlington High,00480505, 0.0, .0, .0, 3.6, .0, 2.2, 5.8,1005,173.27586206896552 6.988888888888889,5,a-sust-i4,2023-24,Burlington - Fox Hill,00480007, 1.3, 1.8, .0, .0, .6, .0, 3.6,455,126.38888888888889 @@ -374,7 +374,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.41,5,a-sust-i4,2023-24,Canton - Dean S Luce,00500020, 0.5, 1.7, .0, .0, .0, .3, 2.4,477,198.75 6.0757894736842095,5,a-sust-i4,2023-24,Canton - John F Kennedy,00500017, 0.5, 1.2, .0, .0, .0, .2, 1.9,457,240.5263157894737 6.521379310344828,5,a-sust-i4,2023-24,Canton - Lt Peter M Hansen,00500012, 0.7, 1.8, .0, .0, .0, .4, 2.9,536,184.82758620689657 --Infinity,1,a-sust-i4,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,134,Infinity +NA,NA,a-sust-i4,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,134,Infinity 7.0725,5,a-sust-i4,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 6.4, .0, .0, .0, 6.4,742,115.9375 6.455384615384615,5,a-sust-i4,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, .0, .0, .0, 1.3, 1.3,251,193.07692307692307 2.696,2.7,a-sust-i4,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .7, .3, .0, 1.0,663,663.0 @@ -391,12 +391,12 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.092,5,a-sust-i4,2023-24,Chelmsford - Charles D Harrington,00560025, 1.1, .9, .0, .0, .0, .0, 2.0,477,238.5 6.116,5,a-sust-i4,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, .0, .1, 5.9, .0, .0, 6.0,1413,235.5 7.00375,5,a-sust-i4,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.0, 3.2, 3.1, .0, .0, .1, 6.4,797,124.53125 --Infinity,1,a-sust-i4,2023-24,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity +NA,NA,a-sust-i4,2023-24,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity 6.436,5,a-sust-i4,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.0, .0, 4.0, .0, .0, .0, 4.0,782,195.5 6.14,5,a-sust-i4,2023-24,Chelmsford - South Row,00560015, 1.1, .9, .0, .0, .0, .0, 2.0,465,232.5 6.32,5,a-sust-i4,2023-24,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 4.0, .0, 4.0, 8.0,1680,210.0 --Infinity,1,a-sust-i4,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity --Infinity,1,a-sust-i4,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity +NA,NA,a-sust-i4,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity +NA,NA,a-sust-i4,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity 6.644,5,a-sust-i4,2023-24,Chelsea - Clark Avenue School,00570050, 0.0, .8, 2.3, .0, .0, 1.0, 4.0,678,169.5 6.188,5,a-sust-i4,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.5, .5, .0, .0, .0, 1.0, 2.0,453,226.5 6.228,5,a-sust-i4,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, .5, 1.5, .0, .0, .0, 2.0,443,221.5 @@ -487,7 +487,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.685714285714285,5,a-sust-i4,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, .0, .0, .0, .0, 1.4, 1.4,230,164.2857142857143 6.2215384615384615,5,a-sust-i4,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.0, .2, .0, .0, .0, 2.4, 2.6,578,222.3076923076923 5.7275,5,a-sust-i4,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 1.9, .0, .0, 1.3, 3.2,909,284.0625 --Infinity,1,a-sust-i4,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,288,Infinity +NA,NA,a-sust-i4,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,288,Infinity 6.1257142857142854,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.4, .0, .0, .0, .0, .0, 1.4,328,234.2857142857143 6.794,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 1.0, 3.0, .0, .0, .0, 4.0,603,150.75 5.78,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.4, .8, .0, .0, .0, .0, 1.2,333,277.5 @@ -518,7 +518,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.333333333333334,5,a-sust-i4,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, 1.8, .0, .0, 1.8,375,208.33333333333331 7.105454545454546,5,a-sust-i4,2023-24,Erving - Erving Elementary,00910030, 0.4, .4, .2, .0, .1, .0, 1.1,123,111.81818181818181 -61.8,1,a-sust-i4,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, .0, .0, .0, .0, .2, 0.2,1745,8725.0 --Infinity,1,a-sust-i4,2023-24,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity +NA,NA,a-sust-i4,2023-24,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity 7.72,5,a-sust-i4,2023-24,Everett - Devens School,00930030, 0.1, .1, .5, .0, .0, .6, 1.4,49,35.0 6.222135922330097,5,a-sust-i4,2023-24,Everett - Everett High,00930505, 0.0, .0, .0, 8.4, .0, 1.8, 10.3,2289,222.23300970873785 6.51404255319149,5,a-sust-i4,2023-24,Everett - George Keverian School,00930028, 0.7, 1.4, 2.5, .0, .0, .0, 4.7,873,185.74468085106383 @@ -526,7 +526,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.672340425531915,5,a-sust-i4,2023-24,Everett - Madeline English School,00930018, 1.0, 1.3, 2.4, .0, .0, .0, 4.7,780,165.95744680851064 6.604137931034483,5,a-sust-i4,2023-24,Everett - Parlin School,00930058, 1.4, 1.9, 2.4, .0, .0, .0, 5.8,1012,174.48275862068965 6.826666666666667,5,a-sust-i4,2023-24,Everett - Sumner G. Whittier School,00930010, 1.0, 1.3, 1.9, .0, .0, .0, 4.2,616,146.66666666666666 --Infinity,1,a-sust-i4,2023-24,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,222,Infinity +NA,NA,a-sust-i4,2023-24,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,222,Infinity 6.9088,5,a-sust-i4,2023-24,Everett - Webster School,00930015, 0.9, 1.7, .0, .0, .0, .0, 2.5,341,136.4 6.182666666666667,5,a-sust-i4,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.1, 2.5, .0, 2.5, .0, 6.0,1363,227.16666666666666 7.0208,5,a-sust-i4,2023-24,Fairhaven - East Fairhaven,00940010, 0.5, 2.0, .0, .0, .0, .0, 2.5,306,122.4 @@ -535,8 +535,8 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.6112,5,a-sust-i4,2023-24,Fairhaven - Leroy Wood,00940030, 0.7, 1.8, .0, .0, .0, .0, 2.5,434,173.6 6.429032258064516,5,a-sust-i4,2023-24,Fall River - B M C Durfee High,00950505, 0.0, .0, .0, 10.0, .0, 2.4, 12.4,2435,196.3709677419355 5.855384615384615,5,a-sust-i4,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 1.0, 1.0, .0, .0, .0, .6, 2.6,697,268.0769230769231 --Infinity,1,a-sust-i4,2023-24,Fall River - Early Learning Center,00950001, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity --Infinity,1,a-sust-i4,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity +NA,NA,a-sust-i4,2023-24,Fall River - Early Learning Center,00950001, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity +NA,NA,a-sust-i4,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity 7.0190769230769225,5,a-sust-i4,2023-24,Fall River - Henry Lord Community School,00950017, 1.0, 1.0, .7, .0, 2.0, 1.8, 6.5,797,122.61538461538461 3.104,3.1,a-sust-i4,2023-24,Fall River - James Tansey,00950140, 0.0, .0, .0, .0, .0, .5, 0.5,306,612.0 6.761212121212121,5,a-sust-i4,2023-24,Fall River - John J Doran,00950045, 0.9, 1.1, 1.1, .0, .0, .2, 3.3,511,154.84848484848484 @@ -583,7 +583,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.950697674418605,5,a-sust-i4,2023-24,Framingham - Fuller Middle,01000305, 0.0, .0, 4.0, .0, .0, .3, 4.3,564,131.1627906976744 6.354782608695652,5,a-sust-i4,2023-24,Framingham - Harmony Grove Elementary,01000055, 1.1, 1.2, .0, .0, .0, .0, 2.3,473,205.6521739130435 5.832,5,a-sust-i4,2023-24,Framingham - Hemenway,01000015, 0.9, 1.1, .0, .0, .0, .0, 2.0,542,271.0 --Infinity,1,a-sust-i4,2023-24,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,277,Infinity +NA,NA,a-sust-i4,2023-24,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,277,Infinity 6.6912,5,a-sust-i4,2023-24,Framingham - King Elementary School,01000005, 1.2, 1.4, .0, .0, .0, .0, 2.5,409,163.6 6.9107692307692306,5,a-sust-i4,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.9, 1.7, .0, .0, .0, .0, 2.6,354,136.15384615384616 6.778181818181818,5,a-sust-i4,2023-24,Framingham - Miriam F McCarthy School,01000050, 1.5, 1.9, .0, .0, .0, .0, 3.3,504,152.72727272727275 @@ -591,7 +591,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.613333333333333,5,a-sust-i4,2023-24,Framingham - Walsh Middle,01000310, 0.0, .0, 4.1, .0, .0, .4, 4.5,780,173.33333333333334 2.08,2.08,a-sust-i4,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .5, .0, .0, 0.5,370,740.0 7.045925925925926,5,a-sust-i4,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 1.2, .0, .7, .8, 2.7,322,119.25925925925925 --Infinity,1,a-sust-i4,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,152,Infinity +NA,NA,a-sust-i4,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,152,Infinity 6.232112676056339,5,a-sust-i4,2023-24,Franklin - Franklin High,01010505, 0.0, .0, .0, 6.8, .0, .3, 7.1,1569,220.98591549295776 5.21,5,a-sust-i4,2023-24,Franklin - Helen Keller Elementary,01010012, 0.6, .8, .0, .0, .0, .3, 1.6,558,348.75 6.8533333333333335,5,a-sust-i4,2023-24,Franklin - Horace Mann,01010405, 0.0, .0, 1.5, .0, .7, .5, 2.7,387,143.33333333333331 @@ -600,14 +600,14 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.192727272727273,5,a-sust-i4,2023-24,Franklin - Oak Street Elementary,01010030, 0.2, .5, .0, .0, .0, .4, 1.1,386,350.9090909090909 5.413333333333334,5,a-sust-i4,2023-24,Franklin - Parmenter,01010032, 0.3, .5, .0, .0, .0, .1, 0.9,291,323.3333333333333 6.96,5,a-sust-i4,2023-24,Franklin - Remington Middle,01010310, 0.0, .0, 1.3, .0, .7, .7, 2.7,351,130.0 --Infinity,1,a-sust-i4,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,621,Infinity +NA,NA,a-sust-i4,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,621,Infinity 6.758181818181818,5,a-sust-i4,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, .0, .0, 2.2, .0, 2.2, 4.4,683,155.22727272727272 6.124,5,a-sust-i4,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.4, .6, .0, .0, .0, .0, 2.0,469,234.5 6.484,5,a-sust-i4,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 1.5, .5, .0, .0, .0, .0, 2.0,379,189.5 6.59,5,a-sust-i4,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, .0, 4.0, .0, .0, .0, 4.0,705,176.25 6.144,5,a-sust-i4,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 2.0, .0, .0, .0, .0, 2.0,464,232.0 6.271428571428571,5,a-sust-i4,2023-24,Frontier - Frontier Regional,06700505, 0.0, .0, .7, 1.2, .4, .5, 2.8,605,216.07142857142858 --Infinity,1,a-sust-i4,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity +NA,NA,a-sust-i4,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity 6.3152,5,a-sust-i4,2023-24,Gardner - Gardner Elementary School,01030001, 2.5, 1.5, .0, .0, 1.0, .0, 5.0,1053,210.6 6.096470588235293,5,a-sust-i4,2023-24,Gardner - Gardner High,01030505, 0.0, .0, 1.3, 2.1, .0, .0, 3.4,809,237.94117647058823 6.712,5,a-sust-i4,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 2.0, .0, .0, .0, 3.0,483,161.0 @@ -618,7 +618,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.1742857142857135,5,a-sust-i4,2023-24,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 2.8, .0, .0, 2.8,289,103.21428571428572 6.11,5,a-sust-i4,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, .0, .0, .0, .0, .8, 0.8,189,236.25 6.312727272727273,5,a-sust-i4,2023-24,Georgetown - Penn Brook,01050010, 0.7, 1.1, 1.2, .0, .0, .2, 3.3,696,210.9090909090909 --Infinity,1,a-sust-i4,2023-24,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity +NA,NA,a-sust-i4,2023-24,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity 5.72,5,a-sust-i4,2023-24,Gill-Montague - Gill Elementary,06740005, 0.1, .2, .0, .0, .0, .1, 0.4,114,285.0 7.052,5,a-sust-i4,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 1.9, .0, .0, .1, 2.0,237,118.5 6.173333333333333,5,a-sust-i4,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,137,228.33333333333334 @@ -628,11 +628,11 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.852,5,a-sust-i4,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,287,143.5 6.2,5,a-sust-i4,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, .0, .0, .0, .0, 2.0, 2.0,450,225.0 6.7088,5,a-sust-i4,2023-24,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .5, 4.5, .0, 5.0,807,161.4 --Infinity,1,a-sust-i4,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity +NA,NA,a-sust-i4,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity 6.96,5,a-sust-i4,2023-24,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.6, 1.6,208,130.0 6.748,5,a-sust-i4,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 4.0, .0, .0, .0, 4.0,626,156.5 6.52,5,a-sust-i4,2023-24,Gloucester - West Parish,01070050, 0.0, .0, .0, .0, .0, 2.0, 2.0,370,185.0 -NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN +NA,NA,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN 6.172307692307692,5,a-sust-i4,2023-24,Grafton - Grafton High School,01100505, 0.0, .0, .0, .2, .0, 3.8, 3.9,891,228.46153846153845 6.776,5,a-sust-i4,2023-24,Grafton - Grafton Middle,01100305, 0.0, .0, 3.0, .0, .0, .0, 3.0,459,153.0 6.572121212121212,5,a-sust-i4,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.5, 1.9, .8, .0, .0, .0, 3.3,589,178.4848484848485 @@ -643,16 +643,16 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.883636363636364,5,a-sust-i4,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, .0, .4, .8, .0, .0, 1.1,291,264.5454545454545 3.9617391304347827,3.96,a-sust-i4,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.3, .3, .5, .0, 1.3, .0, 2.3,1161,504.7826086956522 -107.44,1,a-sust-i4,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .1, .0, .0, 0.1,1443,14430.0 --Infinity,1,a-sust-i4,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1774,Infinity +NA,NA,a-sust-i4,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1774,Infinity -53.70666666666667,1,a-sust-i4,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2314,7713.333333333334 --Infinity,1,a-sust-i4,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2147,Infinity +NA,NA,a-sust-i4,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2147,Infinity 6.8,5,a-sust-i4,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.8, .7, .0, .0, .0, .0, 1.4,210,150.0 6.786666666666666,5,a-sust-i4,2023-24,Greenfield - Federal Street School,01140010, 0.8, .4, .0, .0, .0, .0, 1.2,182,151.66666666666669 6.764137931034483,5,a-sust-i4,2023-24,Greenfield - Greenfield High,01140505, 0.0, .0, .9, 1.5, .5, .0, 2.9,448,154.48275862068965 5.592,5,a-sust-i4,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, .3, .7, .0, .0, .0, 1.0,301,301.0 6.873846153846154,5,a-sust-i4,2023-24,Greenfield - Newton School,01140035, 0.8, .6, .0, .0, .0, .0, 1.3,183,140.76923076923077 --Infinity,1,a-sust-i4,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity --Infinity,1,a-sust-i4,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,75,Infinity +NA,NA,a-sust-i4,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity +NA,NA,a-sust-i4,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,75,Infinity 5.861052631578946,5,a-sust-i4,2023-24,Groton-Dunstable - Florence Roche School,06730010, 1.1, .8, .0, .0, .0, .0, 1.9,508,267.3684210526316 6.162666666666667,5,a-sust-i4,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.0, .0, 3.0,689,229.66666666666666 6.8591999999999995,5,a-sust-i4,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.8, 3.3, .0, .0, .0, 5.0,713,142.6 @@ -684,7 +684,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.992,5,a-sust-i4,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, .0, 2.0, .0, .0, .0, 2.0,252,126.0 7.216,5,a-sust-i4,2023-24,Hatfield - Hatfield Elementary,01270005, 0.4, 1.6, .0, .0, .0, .0, 2.0,196,98.0 7.28,5,a-sust-i4,2023-24,Hatfield - Smith Academy,01270505, 0.0, .0, .8, .7, .0, .0, 1.4,126,90.0 --Infinity,1,a-sust-i4,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity +NA,NA,a-sust-i4,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity 6.14,5,a-sust-i4,2023-24,Haverhill - Bradford Elementary,01280008, 1.2, .8, .0, .0, .0, .0, 2.0,465,232.5 5.872,5,a-sust-i4,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 1.1, 1.4, 1.6, .0, .0, .0, 4.0,1064,266.0 6.107428571428572,5,a-sust-i4,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, .8, 2.2, .0, .5, .0, 3.5,828,236.57142857142858 @@ -726,19 +726,19 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.281739130434782,5,a-sust-i4,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, .0, 2.1, .0, .2, .0, 2.3,494,214.7826086956522 6.676,5,a-sust-i4,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 1.0, 1.0, .0, .0, .0, .0, 2.0,331,165.5 6.3619047619047615,5,a-sust-i4,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.8, .8, .0, .0, .5, .0, 2.1,430,204.76190476190476 --Infinity,1,a-sust-i4,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,323,Infinity --Infinity,1,a-sust-i4,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,692,Infinity +NA,NA,a-sust-i4,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,323,Infinity +NA,NA,a-sust-i4,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,692,Infinity 6.52,5,a-sust-i4,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.5, .5, .0, .0, .0, .0, 2.0,370,185.0 6.291428571428572,5,a-sust-i4,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, .0, .0, .0, 1.4, .0, 1.4,299,213.57142857142858 6.925217391304348,5,a-sust-i4,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, .8, .5, .0, .0, 1.0, 2.3,309,134.34782608695653 6.6755555555555555,5,a-sust-i4,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, 1.0, 1.6, .0, .1, 2.7,447,165.55555555555554 5.808,5,a-sust-i4,2023-24,Hopedale - Memorial,01380010, 0.9, .9, .3, .0, .0, .0, 2.0,548,274.0 --Infinity,1,a-sust-i4,2023-24,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity +NA,NA,a-sust-i4,2023-24,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity 5.444,5,a-sust-i4,2023-24,Hopkinton - Elmwood,01390010, 1.0, 1.0, .0, .0, .0, .0, 2.0,639,319.5 6.252903225806452,5,a-sust-i4,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 3.1, .0, .0, .0, .0, 3.1,677,218.38709677419354 6.1267924528301885,5,a-sust-i4,2023-24,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 4.6, .0, .7, 5.3,1241,234.1509433962264 6.780952380952381,5,a-sust-i4,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 6.3, .0, .0, .0, 6.3,960,152.38095238095238 --Infinity,1,a-sust-i4,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity +NA,NA,a-sust-i4,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity 5.704,5,a-sust-i4,2023-24,Hopkinton - Marathon Elementary School,01390005, 2.0, .0, .0, .0, .0, .0, 2.0,574,287.0 6.232,5,a-sust-i4,2023-24,Hudson - C A Farley,01410030, 1.3, .7, .0, .0, .0, .0, 2.0,442,221.0 7.19578947368421,5,a-sust-i4,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 2.5, 3.2, .0, .0, .0, 5.7,573,100.52631578947368 @@ -768,42 +768,42 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.028,5,a-sust-i4,2023-24,Lawrence - Frost Middle School,01490525, 0.0, .5, 1.5, .0, .0, .0, 2.0,493,246.5 6.084,5,a-sust-i4,2023-24,Lawrence - Gerard A. Guilmette,01490022, 1.0, 1.0, .0, .0, .0, .0, 2.0,479,239.5 3.36,3.36,a-sust-i4,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, .2, .5, .0, .0, .0, 0.8,464,580.0 --Infinity,1,a-sust-i4,2023-24,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,195,Infinity +NA,NA,a-sust-i4,2023-24,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,195,Infinity 5.744,5,a-sust-i4,2023-24,Lawrence - James F Hennessey,01490020, 1.0, .0, .0, .0, .0, .0, 1.0,282,282.0 --Infinity,1,a-sust-i4,2023-24,Lawrence - John Breen School,01490003, 0.0, .0, .0, .0, .0, .0, 0.0,258,Infinity +NA,NA,a-sust-i4,2023-24,Lawrence - John Breen School,01490003, 0.0, .0, .0, .0, .0, .0, 0.0,258,Infinity 6.904,5,a-sust-i4,2023-24,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,274,137.0 --Infinity,1,a-sust-i4,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity +NA,NA,a-sust-i4,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity 6.981333333333334,5,a-sust-i4,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 1.5, .0, .0, .0, .0, .0, 1.5,191,127.33333333333333 6.302745098039216,5,a-sust-i4,2023-24,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 3.2, 7.9, 4.1, 15.3,3246,212.15686274509804 5.432,5,a-sust-i4,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,321,321.0 6.768,5,a-sust-i4,2023-24,Lawrence - Oliver Elementary School,01490048, 1.2, 1.8, .0, .0, .0, .0, 3.0,462,154.0 5.232,5,a-sust-i4,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,346,346.0 6.426666666666667,5,a-sust-i4,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, .8, 2.3, .0, .0, .0, 3.0,590,196.66666666666666 --Infinity,1,a-sust-i4,2023-24,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,67,Infinity +NA,NA,a-sust-i4,2023-24,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,67,Infinity 6.544,5,a-sust-i4,2023-24,Lawrence - Robert Frost,01490018, 2.1, .9, .0, .0, .0, .0, 3.0,546,182.0 6.776,5,a-sust-i4,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 1.0, .0, .0, .0, .0, .0, 1.0,153,153.0 7.214545454545454,5,a-sust-i4,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.3, .4, .3, .0, .3, .0, 1.1,108,98.18181818181817 6.24,5,a-sust-i4,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 1.2, 1.8, .0, .0, .0, .0, 3.0,660,220.0 --Infinity,1,a-sust-i4,2023-24,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,445,Infinity +NA,NA,a-sust-i4,2023-24,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,445,Infinity 4.484,4.48,a-sust-i4,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.8, .6, .6, .0, .0, .0, 2.0,879,439.5 6.221333333333333,5,a-sust-i4,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.7, .7, .0, .0, 1.7, .0, 3.0,667,222.33333333333334 7.034285714285714,5,a-sust-i4,2023-24,Lee - Lee Elementary,01500025, 1.3, 1.1, .4, .0, .0, .0, 2.8,338,120.71428571428572 7.23,5,a-sust-i4,2023-24,Lee - Lee Middle/High School,01500505, 0.0, .0, 1.0, 2.0, .2, .0, 3.2,308,96.25 6.365217391304348,5,a-sust-i4,2023-24,Leicester - Leicester Elementary,01510005, 1.4, .8, .0, .0, .1, .0, 2.3,470,204.34782608695653 6.412,5,a-sust-i4,2023-24,Leicester - Leicester High,01510505, 0.0, .0, .0, .0, 2.0, .0, 2.0,397,198.5 --Infinity,1,a-sust-i4,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity +NA,NA,a-sust-i4,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity 5.97,5,a-sust-i4,2023-24,Leicester - Leicester Middle,01510015, 0.0, .6, .9, .0, .1, .0, 1.6,406,253.75 7.224347826086956,5,a-sust-i4,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, .0, 1.1, .6, 2.9, .0, 4.6,446,96.95652173913044 6.652,5,a-sust-i4,2023-24,Lenox - Morris,01520015, 1.0, 1.0, .0, .0, .0, .0, 2.0,337,168.5 --Infinity,1,a-sust-i4,2023-24,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity --Infinity,1,a-sust-i4,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,807,Infinity +NA,NA,a-sust-i4,2023-24,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,807,Infinity 5.472,5,a-sust-i4,2023-24,Leominster - Fall Brook,01530007, 1.0, 1.0, .0, .0, .0, .0, 2.0,632,316.0 6.06,5,a-sust-i4,2023-24,Leominster - Frances Drake School,01530010, 1.0, 1.0, .0, .0, .0, .0, 2.0,485,242.5 5.38,5,a-sust-i4,2023-24,Leominster - Johnny Appleseed,01530025, 1.0, 1.0, .0, .0, .0, .0, 2.0,655,327.5 --Infinity,1,a-sust-i4,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity +NA,NA,a-sust-i4,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity 6.569333333333333,5,a-sust-i4,2023-24,Leominster - Leominster High School,01530505, 0.0, .0, .0, 5.8, .0, .3, 6.0,1073,178.83333333333334 --Infinity,1,a-sust-i4,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, .0, .0, .0, .0, .0, 0.0,16,Infinity --Infinity,1,a-sust-i4,2023-24,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,40,Infinity +NA,NA,a-sust-i4,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, .0, .0, .0, .0, .0, 0.0,16,Infinity +NA,NA,a-sust-i4,2023-24,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,40,Infinity 5.324,5,a-sust-i4,2023-24,Leominster - Northwest,01530030, 0.9, 1.1, .0, .0, .0, .0, 2.0,669,334.5 6.411428571428572,5,a-sust-i4,2023-24,Leominster - Priest Street,01530040, 0.0, .0, .0, .0, .0, .7, 0.7,139,198.57142857142858 6.128,5,a-sust-i4,2023-24,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,468,234.0 @@ -815,7 +815,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.74,5,a-sust-i4,2023-24,Lexington - Harrington,01550030, 0.9, 1.5, .0, .0, .0, .0, 2.4,378,157.5 7.136,5,a-sust-i4,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 6.5, .0, .0, 1.0, 7.5,810,108.0 6.518620689655172,5,a-sust-i4,2023-24,Lexington - Joseph Estabrook,01550010, 1.1, 1.8, .0, .0, .0, .0, 2.9,537,185.17241379310346 --Infinity,1,a-sust-i4,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity +NA,NA,a-sust-i4,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity 6.8828915662650605,5,a-sust-i4,2023-24,Lexington - Lexington High,01550505, 0.0, .0, .0, 14.4, .0, 2.2, 16.6,2318,139.63855421686745 6.47030303030303,5,a-sust-i4,2023-24,Lexington - Maria Hastings,01550035, 1.4, 1.9, .0, .0, .0, .0, 3.3,631,191.21212121212122 7.147586206896552,5,a-sust-i4,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 8.7, .0, .0, .0, 8.7,927,106.55172413793105 @@ -826,7 +826,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.656551724137931,5,a-sust-i4,2023-24,Littleton - Littleton High School,01580505, 0.0, .0, .0, 2.9, .0, .0, 2.9,487,167.93103448275863 6.366315789473684,5,a-sust-i4,2023-24,Littleton - Littleton Middle School,01580305, 0.0, .0, 1.9, .0, .0, .0, 1.9,388,204.21052631578948 5.152,5,a-sust-i4,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 1.0, .0, .0, .0, .0, 1.0,356,356.0 --Infinity,1,a-sust-i4,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,443,Infinity +NA,NA,a-sust-i4,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,443,Infinity 6.75,5,a-sust-i4,2023-24,Longmeadow - Blueberry Hill,01590005, 0.9, 1.5, .0, .0, .0, .0, 2.4,375,156.25 6.636666666666666,5,a-sust-i4,2023-24,Longmeadow - Center,01590010, 1.0, 1.4, .0, .0, .0, .0, 2.4,409,170.41666666666669 7.015384615384615,5,a-sust-i4,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, .0, 2.6, .0, .0, .0, 2.6,320,123.07692307692307 @@ -858,7 +858,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.286153846153845,5,a-sust-i4,2023-24,Lowell - Pyne Arts,01600018, 2.0, 1.8, .3, .0, .0, 1.0, 5.2,464,89.23076923076923 6.284,5,a-sust-i4,2023-24,Lowell - Rogers STEM Academy,01600005, 1.2, 1.3, 1.5, .0, .0, .1, 4.0,858,214.5 6.323478260869565,5,a-sust-i4,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 1.4, .9, .0, .0, .0, .0, 2.3,482,209.56521739130437 --Infinity,1,a-sust-i4,2023-24,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity +NA,NA,a-sust-i4,2023-24,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity 7.158260869565218,5,a-sust-i4,2023-24,Lowell - Washington,01600055, 1.6, .8, .0, .0, .0, .0, 2.3,242,105.21739130434783 6.366,5,a-sust-i4,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 1.3, 1.3, 1.3, .0, .0, .0, 4.0,817,204.25 -0.48,1,a-sust-i4,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, .0, .0, .1, .0, .0, 0.1,106,1060.0 @@ -866,7 +866,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.766,5,a-sust-i4,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.8, 3.2, .0, .0, .0, .0, 4.0,617,154.25 6.421052631578948,5,a-sust-i4,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 3.8, .0, .0, 3.8,750,197.3684210526316 6.581333333333333,5,a-sust-i4,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 3.0, .0, .0, .0, 3.0,532,177.33333333333334 --Infinity,1,a-sust-i4,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,7,Infinity +NA,NA,a-sust-i4,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,7,Infinity 6.8775,5,a-sust-i4,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .5, 2.8, .0, 3.2,449,140.3125 6.548,5,a-sust-i4,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.0, .0, .0, .0, 2.0,363,181.5 5.914666666666666,5,a-sust-i4,2023-24,Lunenburg - Lunenburg Primary School,01620010, 1.2, .0, .0, .0, .3, .0, 1.5,391,260.6666666666667 @@ -901,9 +901,9 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.204,5,a-sust-i4,2023-24,Lynnfield - Huckleberry Hill,01640010, 1.1, .9, .0, .0, .0, .0, 2.0,449,224.5 6.858,5,a-sust-i4,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, .0, 4.0, .0, 4.0,571,142.75 5.164,5,a-sust-i4,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, .5, 1.0, .0, .5, .0, 2.0,709,354.5 --Infinity,1,a-sust-i4,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity +NA,NA,a-sust-i4,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity 6.328,5,a-sust-i4,2023-24,Lynnfield - Summer Street,01640020, 1.2, .8, .0, .0, .0, .0, 2.0,418,209.0 --Infinity,1,a-sust-i4,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,97,Infinity +NA,NA,a-sust-i4,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,97,Infinity 6.5584,5,a-sust-i4,2023-24,Malden - Beebe,01650003, 0.6, 1.1, 2.2, .0, .0, 1.0, 5.0,901,180.2 6.19,5,a-sust-i4,2023-24,Malden - Ferryway,01650013, 1.3, 1.0, .8, .0, .0, 1.0, 4.0,905,226.25 6.533333333333333,5,a-sust-i4,2023-24,Malden - Forestdale,01650027, 0.6, 1.2, 1.2, .0, .0, .0, 3.0,550,183.33333333333334 @@ -919,7 +919,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.952,5,a-sust-i4,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 6.0, .0, .0, .0, 6.0,786,131.0 6.594285714285714,5,a-sust-i4,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.2, .0, .0, .0, .0, 4.2,738,175.7142857142857 6.596610169491525,5,a-sust-i4,2023-24,Mansfield - Mansfield High,01670505, 0.0, .0, .0, 5.8, .0, .1, 5.9,1035,175.4237288135593 --Infinity,1,a-sust-i4,2023-24,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2023-24,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 4.834285714285714,4.83,a-sust-i4,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, .0, .0, .0, .7, .0, 0.7,277,395.7142857142857 6.716,5,a-sust-i4,2023-24,Marblehead - Glover,01680020, 1.8, .3, .0, .0, .0, .0, 2.0,321,160.5 6.232,5,a-sust-i4,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 1.8, .3, .0, .0, .0, .0, 2.0,442,221.0 @@ -930,7 +930,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.962666666666667,5,a-sust-i4,2023-24,Marion - Sippican,01690005, 0.8, 1.6, .6, .0, .0, .0, 3.0,389,129.66666666666666 6.741333333333333,5,a-sust-i4,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, .0, 6.0, .0, .0, .0, 6.0,944,157.33333333333334 5.38,5,a-sust-i4,2023-24,Marlborough - Charles Jaworek School,01700030, 0.7, 1.1, .0, .0, .0, .1, 2.0,655,327.5 --Infinity,1,a-sust-i4,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,231,Infinity +NA,NA,a-sust-i4,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,231,Infinity 6.293333333333333,5,a-sust-i4,2023-24,Marlborough - Francis J Kane,01700008, 0.5, .9, .0, .0, .0, .9, 2.4,512,213.33333333333334 5.725714285714286,5,a-sust-i4,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 1.1, 1.4, .0, .0, .0, .2, 2.8,796,284.2857142857143 6.772121212121212,5,a-sust-i4,2023-24,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 6.6, .0, .0, 6.6,1013,153.4848484848485 @@ -940,7 +940,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.921904761904761,5,a-sust-i4,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, .0, 6.3, .0, .0, .0, 6.3,849,134.76190476190476 6.823333333333333,5,a-sust-i4,2023-24,Marshfield - Gov Edward Winslow,01710020, 1.0, 1.0, .0, .0, .4, .0, 2.4,353,147.08333333333334 6.51741935483871,5,a-sust-i4,2023-24,Marshfield - Marshfield High,01710505, 0.0, .0, .0, 5.0, .0, 1.2, 6.2,1149,185.32258064516128 --Infinity,1,a-sust-i4,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity +NA,NA,a-sust-i4,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity 6.49,5,a-sust-i4,2023-24,Marshfield - Martinson Elementary,01710025, 1.1, .9, .0, .0, .4, .0, 2.4,453,188.75 6.828235294117647,5,a-sust-i4,2023-24,Marshfield - South River,01710010, 0.7, .7, .0, .0, .4, .0, 1.7,249,146.47058823529412 6.888163265306122,5,a-sust-i4,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, .0, .0, 2.0, .6, 2.4, 4.9,681,138.97959183673467 @@ -988,7 +988,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.757777777777777,5,a-sust-i4,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, .0, .0, 3.2, .4, .0, 3.6,559,155.27777777777777 6.379607843137255,5,a-sust-i4,2023-24,Methuen - Comprehensive Grammar School,01810050, 1.3, 1.5, 2.3, .0, .0, .0, 5.1,1033,202.54901960784315 6.1632,5,a-sust-i4,2023-24,Methuen - Donald P Timony Grammar,01810060, 1.2, 1.6, 2.2, .0, .0, .0, 5.0,1148,229.6 --Infinity,1,a-sust-i4,2023-24,Methuen - Early Childhood Center,01810001, 0.0, .0, .0, .0, .0, .0, 0.0,143,Infinity +NA,NA,a-sust-i4,2023-24,Methuen - Early Childhood Center,01810001, 0.0, .0, .0, .0, .0, .0, 0.0,143,Infinity 6.3264,5,a-sust-i4,2023-24,Methuen - Marsh Grammar School,01810030, 1.2, 1.5, 2.3, .0, .0, .0, 5.0,1046,209.2 6.644285714285714,5,a-sust-i4,2023-24,Methuen - Methuen High,01810505, 0.0, .0, .0, 5.3, 1.2, 4.8, 11.2,1898,169.46428571428572 5.977600000000001,5,a-sust-i4,2023-24,Methuen - Tenney Grammar School,01810055, 1.2, 1.5, 2.3, .0, .0, .0, 5.0,1264,252.8 @@ -1002,7 +1002,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.3223529411764705,5,a-sust-i4,2023-24,Milford - Brookside,01850065, 1.4, .0, .0, .0, .0, .3, 1.7,569,334.70588235294116 6.52,5,a-sust-i4,2023-24,Milford - Memorial,01850010, 1.5, .0, .0, .0, .0, .9, 2.4,444,185.0 5.195675675675676,5,a-sust-i4,2023-24,Milford - Milford High,01850505, 0.0, .0, .0, 3.7, .0, .0, 3.7,1297,350.5405405405405 --Infinity,1,a-sust-i4,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,154,Infinity +NA,NA,a-sust-i4,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,154,Infinity 6.612857142857143,5,a-sust-i4,2023-24,Milford - Stacy Middle,01850305, 0.0, .0, 5.6, .0, .0, .0, 5.6,971,173.39285714285717 6.8145454545454545,5,a-sust-i4,2023-24,Milford - Woodland,01850090, 0.0, 5.7, .0, .0, .0, .9, 6.6,978,148.1818181818182 5.825882352941177,5,a-sust-i4,2023-24,Millbury - Elmwood Street,01860017, 1.0, .0, .0, .0, .0, .8, 1.7,462,271.7647058823529 @@ -1011,7 +1011,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.237037037037037,5,a-sust-i4,2023-24,Millis - Clyde F Brown,01870005, 1.4, 1.3, .0, .0, .0, .0, 2.7,595,220.37037037037035 2.928,2.93,a-sust-i4,2023-24,Millis - Millis High School,01870505, 0.0, .0, .0, .0, .5, .0, 0.5,317,634.0 5.32,5,a-sust-i4,2023-24,Millis - Millis Middle,01870020, 0.0, .0, .5, .0, .3, .0, 0.8,268,335.0 --Infinity,1,a-sust-i4,2023-24,Millis - TIES,01870515, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity +NA,NA,a-sust-i4,2023-24,Millis - TIES,01870515, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity 6.8,5,a-sust-i4,2023-24,Milton - Charles S Pierce Middle,01890410, 0.0, .0, 6.3, .0, .1, .0, 6.4,960,150.0 5.656,5,a-sust-i4,2023-24,Milton - Collicot,01890005, 1.0, 1.0, .0, .0, .0, .0, 2.0,586,293.0 5.778181818181818,5,a-sust-i4,2023-24,Milton - Cunningham School,01890007, 1.2, .9, .0, .0, .0, .0, 2.2,611,277.7272727272727 @@ -1113,7 +1113,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.542222222222223,5,a-sust-i4,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, .0, .0, .0, .0, 1.8, 1.8,328,182.22222222222223 6.593684210526316,5,a-sust-i4,2023-24,Newton - Mason-Rice,02070080, 0.0, .0, .0, .0, .0, 1.9, 1.9,334,175.78947368421052 6.446315789473684,5,a-sust-i4,2023-24,Newton - Memorial Spaulding,02070105, 0.0, .0, .0, .0, .0, 1.9, 1.9,369,194.21052631578948 --Infinity,1,a-sust-i4,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity +NA,NA,a-sust-i4,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity 6.197446808510638,5,a-sust-i4,2023-24,Newton - Newton North High,02070505, 0.0, .0, .0, .0, .0, 9.4, 9.4,2118,225.3191489361702 6.091282051282051,5,a-sust-i4,2023-24,Newton - Newton South High,02070510, 0.0, .0, .0, .0, .0, 7.8, 7.8,1861,238.5897435897436 6.272,5,a-sust-i4,2023-24,Newton - Oak Hill Middle,02070320, 0.0, .0, .0, .0, .0, 3.0, 3.0,648,216.0 @@ -1123,7 +1123,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.404,5,a-sust-i4,2023-24,Newton - Zervas,02070130, 0.0, .0, .0, .0, .0, 2.0, 2.0,399,199.5 6.477241379310345,5,a-sust-i4,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.0, .9, .0, .0, .0, 2.9,552,190.3448275862069 5.698823529411765,5,a-sust-i4,2023-24,Norfolk - H Olive Day,02080015, 1.7, .0, .0, .0, .0, .0, 1.7,489,287.6470588235294 --Infinity,1,a-sust-i4,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,586,Infinity +NA,NA,a-sust-i4,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,586,Infinity 7.241739130434782,5,a-sust-i4,2023-24,North Adams - Brayton,02090035, 0.8, .6, .3, .0, .7, .0, 2.3,218,94.78260869565219 7.116521739130435,5,a-sust-i4,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.9, .9, .3, .0, .3, .0, 2.3,254,110.43478260869566 6.309090909090909,5,a-sust-i4,2023-24,North Adams - Drury High,02090505, 0.0, .0, .6, 1.3, .2, .0, 2.2,465,211.36363636363635 @@ -1141,7 +1141,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.866666666666666,5,a-sust-i4,2023-24,North Attleborough - Falls,02120010, 0.3, .3, .0, .0, .0, .3, 0.9,240,266.6666666666667 5.595555555555555,5,a-sust-i4,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.8, 1.0, .0, .0, .0, .0, 1.8,541,300.55555555555554 6.123478260869565,5,a-sust-i4,2023-24,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 4.6, .0, .0, 4.6,1079,234.56521739130437 --Infinity,1,a-sust-i4,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity +NA,NA,a-sust-i4,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity 6.072,5,a-sust-i4,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, .8, .0, .0, 3.2, 4.0,964,241.0 6.443076923076923,5,a-sust-i4,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.2, .3, .0, .0, .0, .8, 1.3,253,194.6153846153846 6.007272727272728,5,a-sust-i4,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.3, .1, .1, .0, .5, .0, 1.1,274,249.09090909090907 @@ -1151,7 +1151,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.889142857142857,5,a-sust-i4,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.7, 1.8, .0, .0, .0, 3.5,486,138.85714285714286 6.812549019607842,5,a-sust-i4,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .1, 5.0, .0, .0, 5.1,757,148.4313725490196 6.3619047619047615,5,a-sust-i4,2023-24,North Middlesex - Spaulding Memorial,07350005, 1.5, .6, .0, .0, .0, .0, 2.1,430,204.76190476190476 --Infinity,1,a-sust-i4,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity +NA,NA,a-sust-i4,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity 5.552,5,a-sust-i4,2023-24,North Middlesex - Varnum Brook,07350035, 1.2, .9, .0, .0, .0, .0, 2.0,612,306.0 6.693333333333333,5,a-sust-i4,2023-24,North Reading - E Ethel Little School,02170003, 0.9, .9, .0, .0, .0, .0, 1.8,294,163.33333333333334 5.813333333333334,5,a-sust-i4,2023-24,North Reading - J Turner Hood,02170010, 0.8, .8, .0, .0, .0, .0, 1.5,410,273.3333333333333 @@ -1174,8 +1174,8 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.08,5,a-sust-i4,2023-24,Northbridge - Northbridge Elementary School,02140001, 2.2, 1.9, .0, .0, .0, .0, 4.0,960,240.0 6.8175,5,a-sust-i4,2023-24,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 3.0, .0, .2, 3.2,473,147.8125 6.848,5,a-sust-i4,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, .0, 3.0, .0, .0, .0, 3.0,432,144.0 --Infinity,1,a-sust-i4,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1343,Infinity --Infinity,1,a-sust-i4,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,520,Infinity +NA,NA,a-sust-i4,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1343,Infinity +NA,NA,a-sust-i4,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,520,Infinity 5.950769230769231,5,a-sust-i4,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 1.3, .0, .0, .0, .0, 1.3,333,256.15384615384613 4.174545454545455,4.17,a-sust-i4,2023-24,Norton - J C Solmonese,02180015, 0.9, .3, .0, .0, .0, .0, 1.1,526,478.18181818181813 5.796363636363636,5,a-sust-i4,2023-24,Norton - L G Nourse Elementary,02180010, 0.9, .2, .0, .0, .0, .0, 1.1,303,275.45454545454544 @@ -1194,7 +1194,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.63,5,a-sust-i4,2023-24,Norwood - John P Oldham,02200020, 0.5, .6, .0, .0, .0, .6, 1.6,274,171.25 6.6414285714285715,5,a-sust-i4,2023-24,Norwood - Norwood High,02200505, 0.0, .0, .0, 5.6, .0, .0, 5.6,951,169.82142857142858 6.802857142857143,5,a-sust-i4,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.7, .7, .7, .0, .8, .0, 2.8,419,149.64285714285714 --Infinity,1,a-sust-i4,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,549,Infinity +NA,NA,a-sust-i4,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,549,Infinity 6.425806451612903,5,a-sust-i4,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 2.0, 1.1, .0, 3.1,610,196.7741935483871 6.850666666666667,5,a-sust-i4,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 3.0, .0, .0, .0, 3.0,431,143.66666666666666 6.608,5,a-sust-i4,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 1.3, .8, .0, .0, .0, .0, 2.0,348,174.0 @@ -1231,9 +1231,9 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.234666666666667,5,a-sust-i4,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, .6, .0, .0, .9, 1.5,331,220.66666666666666 6.086666666666666,5,a-sust-i4,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, .9, .0, 1.6, 2.4,574,239.16666666666669 7.5744,5,a-sust-i4,2023-24,Petersham - Petersham Center,02340005, 1.1, 1.0, .4, .0, .0, .0, 2.5,133,53.2 --Infinity,1,a-sust-i4,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,194,Infinity --Infinity,1,a-sust-i4,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,114,Infinity --Infinity,1,a-sust-i4,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,159,Infinity +NA,NA,a-sust-i4,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,194,Infinity +NA,NA,a-sust-i4,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,114,Infinity +NA,NA,a-sust-i4,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,159,Infinity 6.67404255319149,5,a-sust-i4,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.0, 1.2, 1.5, .3, .8, .0, 4.7,779,165.74468085106383 6.258461538461539,5,a-sust-i4,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.7, .3, .3, .0, 1.3, .0, 2.6,566,217.69230769230768 6.726153846153846,5,a-sust-i4,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.6, .4, .2, .0, .0, .0, 1.3,207,159.23076923076923 @@ -1243,7 +1243,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.772,5,a-sust-i4,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, .0, .2, .2, 13.5, .2, 14.0,399,28.5 6.943157894736841,5,a-sust-i4,2023-24,Pittsfield - Allendale,02360010, 0.6, .7, .0, .0, .0, .5, 1.9,251,132.10526315789474 6.902222222222223,5,a-sust-i4,2023-24,Pittsfield - Crosby,02360065, 0.8, .8, .0, .0, .0, .2, 1.8,247,137.22222222222223 --Infinity,1,a-sust-i4,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, .0, .0, .0, .0, .0, 0.0,21,Infinity +NA,NA,a-sust-i4,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, .0, .0, .0, .0, .0, 0.0,21,Infinity 7.76,5,a-sust-i4,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, .0, .0, .0, .5, .5, 1.0,30,30.0 6.529523809523809,5,a-sust-i4,2023-24,Pittsfield - Egremont,02360035, 1.0, 1.0, .0, .0, .0, .1, 2.1,386,183.8095238095238 7.32,5,a-sust-i4,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, .0, 4.6, .0, .1, .6, 5.2,442,85.0 @@ -1264,7 +1264,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.96,5,a-sust-i4,2023-24,Plymouth - Manomet Elementary,02390015, 0.8, 1.3, .0, .0, .0, .0, 2.1,273,130.0 6.615172413793103,5,a-sust-i4,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 1.1, 1.8, .0, .0, .0, .0, 2.9,502,173.10344827586206 6.838666666666667,5,a-sust-i4,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 6.0, .0, .0, .0, 6.0,871,145.16666666666666 --Infinity,1,a-sust-i4,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,219,Infinity +NA,NA,a-sust-i4,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,219,Infinity 6.081538461538462,5,a-sust-i4,2023-24,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 4.2, .0, 1.0, 5.2,1247,239.8076923076923 5.707428571428571,5,a-sust-i4,2023-24,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 3.5, .0, .0, 3.5,1003,286.57142857142856 6.79,5,a-sust-i4,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 4.0, .0, .0, .0, 4.0,605,151.25 @@ -1275,17 +1275,17 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.501818181818182,5,a-sust-i4,2023-24,Provincetown - Provincetown Schools,02420020, 0.8, .6, .2, .0, .4, .2, 2.2,137,62.272727272727266 6.488,5,a-sust-i4,2023-24,Quabbin - Hardwick Elementary,07530005, 0.6, .5, .0, .0, .0, .0, 1.0,189,189.0 4.4228571428571435,4.42,a-sust-i4,2023-24,Quabbin - Hubbardston Center,07530010, 0.4, .4, .0, .0, .0, .0, 0.7,313,447.14285714285717 --Infinity,1,a-sust-i4,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity +NA,NA,a-sust-i4,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity 6.217142857142857,5,a-sust-i4,2023-24,Quabbin - Oakham Center,07530025, 0.3, .4, .0, .0, .0, .0, 0.7,156,222.85714285714286 6.536774193548387,5,a-sust-i4,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, .0, .0, 3.1, .0, .0, 3.1,567,182.90322580645162 2.73,2.73,a-sust-i4,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, .0, .7, .0, .0, .1, 0.8,527,658.75 4.952,4.95,a-sust-i4,2023-24,Quabbin - Ruggles Lane,07530030, 0.5, .5, .0, .0, .0, .0, 1.0,381,381.0 --Infinity,1,a-sust-i4,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, .0, .0, .0, .0, .0, 0.0,53,Infinity +NA,NA,a-sust-i4,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, .0, .0, .0, .0, .0, 0.0,53,Infinity 6.689523809523809,5,a-sust-i4,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, .0, .0, .0, 2.1, .0, 2.1,344,163.8095238095238 6.64,5,a-sust-i4,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, 1.0, .0, .0, .0, 1.0,170,170.0 5.544,5,a-sust-i4,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.5, .4, .1, .0, .0, .0, 1.0,307,307.0 6.048,5,a-sust-i4,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.4, .4, .1, .0, .0, .0, 1.0,244,244.0 --Infinity,1,a-sust-i4,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity +NA,NA,a-sust-i4,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity 6.4738461538461545,5,a-sust-i4,2023-24,Quincy - Atherton Hough,02430040, 0.4, .8, .0, .0, .0, .2, 1.3,248,190.76923076923077 6.208,5,a-sust-i4,2023-24,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.5, .0, .0, .0, 2.5,560,224.0 5.74,5,a-sust-i4,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.6, .7, .0, .0, .0, .0, 1.2,339,282.5 @@ -1349,8 +1349,8 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.153333333333333,5,a-sust-i4,2023-24,Salem - Carlton,02580015, 1.4, .7, .0, .0, .0, .3, 2.4,254,105.83333333333334 7.019607843137255,5,a-sust-i4,2023-24,Salem - Collins Middle,02580305, 0.0, .0, 4.6, .0, .0, .4, 5.1,625,122.54901960784315 6.932173913043478,5,a-sust-i4,2023-24,Salem - Horace Mann Laboratory,02580030, 0.9, 1.4, .0, .0, .0, .1, 2.3,307,133.47826086956522 --Infinity,1,a-sust-i4,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity --Infinity,1,a-sust-i4,2023-24,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,112,Infinity +NA,NA,a-sust-i4,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity +NA,NA,a-sust-i4,2023-24,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,112,Infinity 6.645714285714285,5,a-sust-i4,2023-24,Salem - Salem High,02580505, 0.0, .0, .0, 5.0, .0, .6, 5.6,948,169.2857142857143 6.64,5,a-sust-i4,2023-24,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .1, .0, .0, 0.1,17,170.0 6.7,5,a-sust-i4,2023-24,Salem - Saltonstall School,02580050, 0.5, .9, .8, .0, .0, .2, 2.4,390,162.5 @@ -1374,20 +1374,20 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.216,5,a-sust-i4,2023-24,Seekonk - George R Martin,02650007, 1.0, 1.0, .0, .0, .0, .0, 2.0,446,223.0 6.0,5,a-sust-i4,2023-24,Seekonk - Mildred Aitken School,02650015, 1.3, .9, .0, .0, .0, .0, 2.3,575,250.00000000000003 6.613333333333333,5,a-sust-i4,2023-24,Seekonk - Seekonk High,02650505, 0.0, .0, .0, 3.0, .0, .0, 3.0,520,173.33333333333334 --Infinity,1,a-sust-i4,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity +NA,NA,a-sust-i4,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity 6.536666666666666,5,a-sust-i4,2023-24,Sharon - Cottage Street,02660005, 0.8, 1.6, .0, .0, .0, .0, 2.4,439,182.91666666666669 6.614285714285714,5,a-sust-i4,2023-24,Sharon - East Elementary,02660010, 1.0, 1.8, .0, .0, .0, .0, 2.8,485,173.21428571428572 6.451428571428572,5,a-sust-i4,2023-24,Sharon - Heights Elementary,02660015, 1.0, 1.8, .0, .0, .0, .0, 2.8,542,193.57142857142858 --Infinity,1,a-sust-i4,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +NA,NA,a-sust-i4,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity 6.585,5,a-sust-i4,2023-24,Sharon - Sharon High,02660505, 0.0, .0, .0, .1, 6.3, .0, 6.4,1132,176.875 6.867368421052632,5,a-sust-i4,2023-24,Sharon - Sharon Middle,02660305, 0.0, .0, 5.7, .0, .0, .0, 5.7,807,141.57894736842104 --Infinity,1,a-sust-i4,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1306,Infinity +NA,NA,a-sust-i4,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1306,Infinity 6.217777777777777,5,a-sust-i4,2023-24,Sherborn - Pine Hill,02690010, 0.9, .9, .0, .0, .0, .0, 1.8,401,222.77777777777777 6.354285714285714,5,a-sust-i4,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.8, .6, .0, .0, .0, .0, 1.4,288,205.71428571428572 6.332307692307692,5,a-sust-i4,2023-24,Shrewsbury - Floral Street School,02710020, 1.5, 1.1, .0, .0, .0, .0, 2.6,542,208.46153846153845 6.72,5,a-sust-i4,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 2.0, 1.7, .0, .0, .0, .0, 3.8,608,160.0 4.863333333333333,4.86,a-sust-i4,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 2.4, .0, .0, .0, 2.4,941,392.08333333333337 --Infinity,1,a-sust-i4,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,199,Infinity +NA,NA,a-sust-i4,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,199,Infinity 6.615849056603773,5,a-sust-i4,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 2.5, 2.8, .0, .0, .0, 5.3,917,173.0188679245283 5.821449275362319,5,a-sust-i4,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, .0, .0, .3, 6.6, .0, 6.9,1879,272.3188405797101 6.417142857142857,5,a-sust-i4,2023-24,Shrewsbury - Spring Street School,02710035, 0.8, .6, .0, .0, .0, .0, 1.4,277,197.85714285714286 @@ -1418,7 +1418,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.494814814814815,5,a-sust-i4,2023-24,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .6, 1.9, .2, 2.7,508,188.14814814814812 5.419259259259259,5,a-sust-i4,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, .3, 2.4, .0, 2.7,871,322.59259259259255 3.78,3.78,a-sust-i4,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, .0, .0, .0, .0, 2.0, 2.0,1055,527.5 --Infinity,1,a-sust-i4,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,667,Infinity +NA,NA,a-sust-i4,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,667,Infinity 6.116,5,a-sust-i4,2023-24,Southampton - William E Norris,02750005, 0.9, .8, .3, .0, .0, .0, 2.0,471,235.5 6.682666666666667,5,a-sust-i4,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.3, .8, .0, .0, .5, .0, 1.5,247,164.66666666666666 7.24,5,a-sust-i4,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 2.9, .0, .0, .1, .0, 3.0,285,95.0 @@ -1430,12 +1430,12 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.937142857142857,5,a-sust-i4,2023-24,Southbridge - Southbridge High School,02770515, 0.0, .0, .0, 2.0, .0, 1.5, 3.5,465,132.85714285714286 6.6304,5,a-sust-i4,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, .0, 1.0, .0, .0, 1.5, 2.5,428,171.2 6.688,5,a-sust-i4,2023-24,Southbridge - West Street,02770020, 0.3, .7, .0, .0, .0, 1.0, 2.0,328,164.0 --Infinity,1,a-sust-i4,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1597,Infinity +NA,NA,a-sust-i4,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1597,Infinity 7.27483870967742,5,a-sust-i4,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, .0, 1.1, 2.0, .0, .0, 3.1,281,90.64516129032258 7.133333333333333,5,a-sust-i4,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.3, .3, .0, .0, .0, .0, 0.6,65,108.33333333333334 --Infinity,1,a-sust-i4,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, .0, .0, .0, .0, .0, 0.0,11,Infinity +NA,NA,a-sust-i4,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, .0, .0, .0, .0, .0, 0.0,11,Infinity 7.020952380952381,5,a-sust-i4,2023-24,Southern Berkshire - Undermountain,07650035, 0.7, 1.4, .0, .0, .0, .0, 2.1,257,122.38095238095238 --Infinity,1,a-sust-i4,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,1193,Infinity +NA,NA,a-sust-i4,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,1193,Infinity 6.827692307692308,5,a-sust-i4,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.1, 1.8, .7, .0, .0, .0, 2.6,381,146.53846153846155 6.511515151515152,5,a-sust-i4,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, .9, 2.4, .0, .0, 3.3,614,186.06060606060606 6.72,5,a-sust-i4,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, .0, .0, .0, .0, .0, 2.0,320,160.0 @@ -1446,21 +1446,21 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.3,5,a-sust-i4,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.5, .8, .7, .0, .0, .0, 2.0,425,212.5 5.568,5,a-sust-i4,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.4, .6, .0, .0, .0, .0, 1.0,304,304.0 6.88,5,a-sust-i4,2023-24,Springfield - Arthur T Talmadge,02810165, 0.5, .8, .0, .0, .3, .0, 1.6,224,140.0 --Infinity,1,a-sust-i4,2023-24,Springfield - Balliet Preschool,02810003, 0.0, .0, .0, .0, .0, .0, 0.0,131,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Balliet Preschool,02810003, 0.0, .0, .0, .0, .0, .0, 0.0,131,Infinity 6.264347826086956,5,a-sust-i4,2023-24,Springfield - Benjamin Swan Elementary,02810085, 1.1, 1.2, .0, .0, .0, .0, 2.3,499,216.95652173913047 6.08,5,a-sust-i4,2023-24,Springfield - Brightwood,02810025, 0.7, 1.1, .0, .0, .2, .0, 2.0,480,240.0 6.645333333333333,5,a-sust-i4,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, 1.1, .0, .4, .0, 1.5,254,169.33333333333334 7.627076923076923,5,a-sust-i4,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 2.9, 1.1, 1.8, .7, 6.5,303,46.61538461538461 6.927272727272727,5,a-sust-i4,2023-24,Springfield - Daniel B Brunton,02810035, 1.1, 1.1, .0, .0, .0, .0, 2.2,295,134.0909090909091 --Infinity,1,a-sust-i4,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,188,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,188,Infinity 5.784,5,a-sust-i4,2023-24,Springfield - Edward P. Boland School,02810010, 0.9, 1.1, .0, .0, .0, .0, 2.0,554,277.0 6.949090909090909,5,a-sust-i4,2023-24,Springfield - Elias Brookings,02810030, 0.7, 1.0, .0, .0, .5, .0, 2.2,289,131.36363636363635 5.69,5,a-sust-i4,2023-24,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .2, .0, .6, 0.8,231,288.75 --Infinity,1,a-sust-i4,2023-24,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,284,Infinity --Infinity,1,a-sust-i4,2023-24,Springfield - Frank H Freedman,02810075, 0.0, .0, .0, .0, .0, .0, 0.0,267,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,284,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Frank H Freedman,02810075, 0.0, .0, .0, .0, .0, .0, 0.0,267,Infinity 5.952,5,a-sust-i4,2023-24,Springfield - Frederick Harris,02810080, 0.7, 1.0, .0, .0, .3, .0, 2.0,512,256.0 --Infinity,1,a-sust-i4,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity --Infinity,1,a-sust-i4,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity 5.508,5,a-sust-i4,2023-24,Springfield - German Gerena Community School,02810195, 0.6, .9, .0, .0, .5, .0, 2.0,623,311.5 6.970434782608696,5,a-sust-i4,2023-24,Springfield - Glenwood,02810065, 0.8, 1.2, .0, .0, .4, .0, 2.3,296,128.69565217391306 6.673684210526316,5,a-sust-i4,2023-24,Springfield - Glickman Elementary,02810068, 0.5, .7, .0, .0, .7, .0, 1.9,315,165.78947368421052 @@ -1476,7 +1476,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.688,5,a-sust-i4,2023-24,Springfield - Liberty,02810115, 0.6, .9, .0, .0, .0, .0, 1.5,246,164.0 7.44,5,a-sust-i4,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .1, .0, 0.1,7,70.0 6.270476190476191,5,a-sust-i4,2023-24,Springfield - Lincoln,02810120, 0.8, 1.3, .0, .0, .0, .0, 2.1,454,216.19047619047618 --Infinity,1,a-sust-i4,2023-24,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,138,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,138,Infinity 5.890909090909091,5,a-sust-i4,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.5, .6, .0, .0, .0, .0, 1.1,290,263.6363636363636 6.794666666666667,5,a-sust-i4,2023-24,Springfield - Mary M Lynch,02810140, 0.5, 1.0, .0, .0, .0, .0, 1.5,226,150.66666666666666 7.17,5,a-sust-i4,2023-24,Springfield - Mary M Walsh,02810155, 0.8, 1.1, .0, .0, .5, .0, 2.4,249,103.75 @@ -1493,13 +1493,13 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.244800000000001,5,a-sust-i4,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, .0, .0, 1.5, 3.2, .3, 5.0,1097,219.4 7.1466666666666665,5,a-sust-i4,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, .3, .0, .0, .0, .0, 0.3,32,106.66666666666667 5.12,5,a-sust-i4,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, .0, .0, .1, .1, .0, 0.2,72,360.0 --Infinity,1,a-sust-i4,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, .0, .0, .0, .0, .0, 0.0,355,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, .0, .0, .0, .0, .0, 0.0,355,Infinity 7.626666666666666,5,a-sust-i4,2023-24,Springfield - Springfield Middle School,02810360, 0.0, .0, .3, .0, .0, .0, 0.3,14,46.66666666666667 7.772307692307693,5,a-sust-i4,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, .0, .0, .0, 1.3, .0, 1.3,37,28.46153846153846 --Infinity,1,a-sust-i4,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity 7.302857142857143,5,a-sust-i4,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, .7, .0, .0, .0, 0.7,61,87.14285714285715 6.231111111111112,5,a-sust-i4,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, .0, .9, .0, .0, .0, 0.9,199,221.11111111111111 --Infinity,1,a-sust-i4,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,115,Infinity +NA,NA,a-sust-i4,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,115,Infinity 6.048,5,a-sust-i4,2023-24,Springfield - Sumner Avenue,02810160, 0.6, .9, .0, .0, .5, .0, 2.0,488,244.0 6.195555555555556,5,a-sust-i4,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.4, 1.0, .0, .3, 2.7,609,225.55555555555554 7.24,5,a-sust-i4,2023-24,Springfield - The Springfield Virtual School,02810705, 0.2, 1.1, .0, .1, 1.7, .0, 3.2,304,95.0 @@ -1516,7 +1516,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.334117647058823,5,a-sust-i4,2023-24,Stoneham - South,02840030, 1.0, .7, .0, .0, .0, .0, 1.7,354,208.23529411764707 6.6,5,a-sust-i4,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.1, 2.9, .0, .0, .0, 4.0,700,175.0 6.768421052631579,5,a-sust-i4,2023-24,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 3.8, .0, 3.8,585,153.94736842105263 --Infinity,1,a-sust-i4,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,113,Infinity +NA,NA,a-sust-i4,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,113,Infinity 6.167272727272728,5,a-sust-i4,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.3, .3, .0, .0, .5, .0, 1.1,252,229.09090909090907 6.567619047619048,5,a-sust-i4,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.8, .8, .0, .0, .5, .0, 2.1,376,179.04761904761904 6.755199999999999,5,a-sust-i4,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 1.1, .9, .0, .0, .5, .0, 2.5,389,155.6 @@ -1550,20 +1550,20 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.187540983606557,4.19,a-sust-i4,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.8, 1.2, 2.5, 1.6, .0, .0, 6.1,2907,476.55737704918033 6.506666666666667,5,a-sust-i4,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,560,186.66666666666666 7.08551724137931,5,a-sust-i4,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, .2, 5.6, .0, 5.8,663,114.3103448275862 --Infinity,1,a-sust-i4,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,536,Infinity +NA,NA,a-sust-i4,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,536,Infinity 6.09103448275862,5,a-sust-i4,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, .9, 2.0, .0, .0, .0, 2.9,692,238.6206896551724 4.426666666666666,4.43,a-sust-i4,2023-24,Taunton - East Taunton Elementary,02930010, 0.8, .4, .0, .0, .0, .0, 1.2,536,446.6666666666667 6.184615384615385,5,a-sust-i4,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.7, .6, .0, .0, .0, .0, 1.3,295,226.9230769230769 --Infinity,1,a-sust-i4,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,261,Infinity +NA,NA,a-sust-i4,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,261,Infinity 4.789333333333334,4.79,a-sust-i4,2023-24,Taunton - Elizabeth Pole,02930027, 0.9, .6, .0, .0, .0, .0, 1.5,602,401.3333333333333 5.21,5,a-sust-i4,2023-24,Taunton - H H Galligan,02930057, 0.5, .3, .0, .0, .0, .0, 0.8,279,348.75 4.286315789473684,4.29,a-sust-i4,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 1.2, .7, .0, .0, .0, .0, 1.9,882,464.2105263157895 5.6,5,a-sust-i4,2023-24,Taunton - John F Parker Middle,02930305, 0.0, .5, 1.2, .0, .0, .0, 1.7,510,300.0 5.545,5,a-sust-i4,2023-24,Taunton - Joseph C Chamberlain,02930008, 0.9, .7, .0, .0, .0, .0, 1.6,491,306.875 6.272,5,a-sust-i4,2023-24,Taunton - Joseph H Martin,02930042, 0.0, 1.2, 1.8, .0, .0, .0, 3.0,648,216.0 --Infinity,1,a-sust-i4,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity +NA,NA,a-sust-i4,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity 4.739393939393939,4.74,a-sust-i4,2023-24,Taunton - Taunton High,02930505, 0.0, .0, 1.6, 2.4, 2.6, .0, 6.6,2690,407.5757575757576 --Infinity,1,a-sust-i4,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 4.932,4.93,a-sust-i4,2023-24,Tewksbury - Center Elementary School,02950030, 0.7, 1.3, .0, .0, .0, .0, 2.0,767,383.5 5.52,5,a-sust-i4,2023-24,Tewksbury - Heath-Brook,02950010, 1.0, .0, .0, .0, .0, .0, 1.0,310,310.0 6.012,5,a-sust-i4,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,497,248.5 @@ -1587,8 +1587,8 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.688,5,a-sust-i4,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.7, .6, .7, .0, .0, .0, 2.0,578,289.0 7.416,5,a-sust-i4,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.1, .0, .0, .0, .9, .0, 1.0,73,73.0 7.037037037037036,5,a-sust-i4,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.7, .7, .3, .0, 1.0, .0, 2.7,325,120.37037037037037 --Infinity,1,a-sust-i4,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,826,Infinity --Infinity,1,a-sust-i4,2023-24,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity +NA,NA,a-sust-i4,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,826,Infinity +NA,NA,a-sust-i4,2023-24,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity 5.868,5,a-sust-i4,2023-24,Uxbridge - Taft Early Learning Center,03040005, 1.5, .5, .0, .0, .0, .0, 2.0,533,266.5 5.975652173913043,5,a-sust-i4,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, .0, .7, 1.6, .0, .0, 2.3,582,253.0434782608696 6.730666666666667,5,a-sust-i4,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 2.1, .9, .0, .0, .0, 3.0,476,158.66666666666666 @@ -1597,7 +1597,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.786666666666667,5,a-sust-i4,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, .4, 1.3, .0, .0, .0, 1.8,273,151.66666666666666 6.48,5,a-sust-i4,2023-24,Wachusett - Davis Hill Elementary,07750018, 1.3, 1.2, .0, .0, .0, .0, 2.5,475,190.0 6.048,5,a-sust-i4,2023-24,Wachusett - Dawson,07750020, 1.1, .8, .0, .0, .0, .0, 2.0,488,244.0 --Infinity,1,a-sust-i4,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity +NA,NA,a-sust-i4,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity 6.608,5,a-sust-i4,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 2.0, .0, .0, .0, .0, 2.0,348,174.0 6.728,5,a-sust-i4,2023-24,Wachusett - Houghton Elementary,07750027, 1.2, .7, .0, .0, .0, .0, 2.0,318,159.0 6.084,5,a-sust-i4,2023-24,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,479,239.5 @@ -1607,7 +1607,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.991428571428572,5,a-sust-i4,2023-24,Wachusett - Thomas Prince,07750045, 0.9, .9, .9, .0, .0, .0, 2.8,353,126.07142857142858 6.449166666666666,5,a-sust-i4,2023-24,Wachusett - Wachusett Regional High,07750505, 0.0, .0, .0, 5.5, 4.1, .0, 9.6,1861,193.85416666666669 5.896470588235294,5,a-sust-i4,2023-24,Wakefield - Dolbeare,03050005, 1.0, .7, .0, .0, .0, .0, 1.7,447,262.94117647058823 --Infinity,1,a-sust-i4,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,135,Infinity +NA,NA,a-sust-i4,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,135,Infinity 6.548965517241379,5,a-sust-i4,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 1.6, 4.2, .0, .0, .0, 5.8,1052,181.3793103448276 5.72,5,a-sust-i4,2023-24,Wakefield - Greenwood,03050020, 0.5, .3, .0, .0, .0, .0, 0.8,228,285.0 7.138461538461539,5,a-sust-i4,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, .0, .0, 6.1, 1.8, .0, 7.8,840,107.6923076923077 @@ -1616,7 +1616,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.713846153846155,5,a-sust-i4,2023-24,Wales - Wales Elementary,03060005, 0.5, 1.8, .3, .0, .0, .0, 2.6,93,35.76923076923077 7.085714285714286,5,a-sust-i4,2023-24,Walpole - Bird Middle,03070305, 0.0, .0, 3.5, .0, .0, .0, 3.5,400,114.28571428571429 6.294736842105263,5,a-sust-i4,2023-24,Walpole - Boyden,03070010, 1.1, .8, .0, .0, .0, .0, 1.9,405,213.1578947368421 --Infinity,1,a-sust-i4,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 7.051428571428572,5,a-sust-i4,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 3.5, .0, .0, .0, 3.5,415,118.57142857142857 6.216,5,a-sust-i4,2023-24,Walpole - Elm Street School,03070005, 1.1, .9, .0, .0, .0, .0, 2.0,446,223.0 6.108,5,a-sust-i4,2023-24,Walpole - Fisher,03070015, 0.9, 1.1, .0, .0, .0, .0, 2.0,473,236.5 @@ -1635,7 +1635,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.444,5,a-sust-i4,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 1.5, .5, .0, .0, .0, .0, 2.0,389,194.5 6.116,5,a-sust-i4,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, .0, .4, 1.6, .0, .0, 2.0,471,235.5 6.944,5,a-sust-i4,2023-24,Ware - Ware Middle School,03090305, 0.0, 1.3, .7, .0, .0, .0, 2.0,264,132.0 --Infinity,1,a-sust-i4,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity +NA,NA,a-sust-i4,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity 6.134,5,a-sust-i4,2023-24,Wareham - Wareham Elementary School,03100017, 2.5, 1.5, .0, .0, .0, .0, 4.0,933,233.25 5.69142857142857,5,a-sust-i4,2023-24,Wareham - Wareham Middle,03100305, 0.0, .6, .7, .0, .0, .0, 1.4,404,288.5714285714286 6.804102564102564,5,a-sust-i4,2023-24,Wareham - Wareham Senior High,03100505, 0.0, .0, .1, 1.7, .2, 1.9, 3.9,583,149.4871794871795 @@ -1648,7 +1648,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.602857142857143,5,a-sust-i4,2023-24,Wayland - Claypit Hill School,03150005, 1.0, 1.8, .0, .0, .0, .0, 2.8,489,174.64285714285717 6.5473684210526315,5,a-sust-i4,2023-24,Wayland - Happy Hollow School,03150015, 0.7, 1.2, .0, .0, .0, .0, 1.9,345,181.57894736842107 6.3244444444444445,5,a-sust-i4,2023-24,Wayland - Loker School,03150020, 0.7, 1.1, .0, .0, .0, .0, 1.8,377,209.44444444444443 --Infinity,1,a-sust-i4,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.573913043478261,5,a-sust-i4,2023-24,Wayland - Wayland High School,03150505, 0.0, .0, .0, 4.6, .0, .0, 4.6,820,178.2608695652174 6.84,5,a-sust-i4,2023-24,Wayland - Wayland Middle School,03150305, 0.0, .0, 4.6, .0, .0, .0, 4.6,667,145.0 7.234871794871795,5,a-sust-i4,2023-24,Webster - Bartlett High School,03160505, 0.0, .0, .0, .7, .3, 2.9, 3.9,373,95.64102564102565 @@ -1659,7 +1659,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.5,5,a-sust-i4,2023-24,Wellesley - John D Hardy,03170020, 0.6, .6, .0, .0, .0, .0, 1.2,225,187.5 6.736,5,a-sust-i4,2023-24,Wellesley - Joseph E Fiske,03170015, 1.1, .9, .0, .0, .0, .0, 2.0,316,158.0 6.554285714285713,5,a-sust-i4,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.7, .6, .0, .0, .0, .0, 1.4,253,180.71428571428572 --Infinity,1,a-sust-i4,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +NA,NA,a-sust-i4,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity 6.671111111111111,5,a-sust-i4,2023-24,Wellesley - Schofield,03170045, 0.8, .9, .0, .0, .0, .0, 1.8,299,166.11111111111111 6.437333333333333,5,a-sust-i4,2023-24,Wellesley - Sprague Elementary School,03170048, 0.7, .8, .0, .0, .0, .0, 1.5,293,195.33333333333334 7.183111111111112,5,a-sust-i4,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, .0, 8.7, .0, .0, .3, 9.0,919,102.11111111111111 @@ -1686,7 +1686,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.734736842105264,5,a-sust-i4,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 3.6, .0, .2, .0, 3.8,601,158.1578947368421 5.086060606060606,5,a-sust-i4,2023-24,Westborough - Westborough High,03210505, 0.0, .0, .0, .0, 3.3, .0, 3.3,1202,364.24242424242425 6.355555555555556,5,a-sust-i4,2023-24,Westfield - Abner Gibbs,03250020, 0.5, .4, .0, .0, .1, .0, 0.9,185,205.55555555555554 --Infinity,1,a-sust-i4,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,147,Infinity +NA,NA,a-sust-i4,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,147,Infinity 6.453333333333334,5,a-sust-i4,2023-24,Westfield - Franklin Ave,03250015, 0.5, .4, .0, .0, .1, .0, 0.9,174,193.33333333333331 6.6780952380952385,5,a-sust-i4,2023-24,Westfield - Highland,03250025, 1.2, .8, .0, .0, .1, .0, 2.1,347,165.23809523809524 6.36,5,a-sust-i4,2023-24,Westfield - Munger Hill,03250033, 0.9, .6, .0, .0, .1, .0, 1.6,328,205.0 @@ -1720,11 +1720,11 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.9523809523809526,5,a-sust-i4,2023-24,Westwood - Martha Jones,03350017, 0.8, 1.3, .0, .0, .0, .0, 2.1,275,130.95238095238093 6.877333333333333,5,a-sust-i4,2023-24,Westwood - Pine Hill Elementary School,03350030, 1.2, 1.8, .0, .0, .0, .0, 3.0,421,140.33333333333334 6.872258064516129,5,a-sust-i4,2023-24,Westwood - Westwood High,03350505, 0.0, .0, .0, 6.2, .0, .0, 6.2,874,140.96774193548387 --Infinity,1,a-sust-i4,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,36,Infinity +NA,NA,a-sust-i4,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,36,Infinity 6.857142857142857,5,a-sust-i4,2023-24,Westwood - William E Sheehan,03350025, 0.8, 1.2, .0, .0, .0, .0, 2.1,300,142.85714285714286 5.541818181818182,5,a-sust-i4,2023-24,Weymouth - Academy Avenue,03360005, 0.5, .6, .0, .0, .0, .0, 1.1,338,307.27272727272725 5.941818181818182,5,a-sust-i4,2023-24,Weymouth - Frederick C Murphy,03360050, 0.5, .6, .0, .0, .0, .0, 1.1,283,257.27272727272725 --Infinity,1,a-sust-i4,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity +NA,NA,a-sust-i4,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity 6.065454545454546,5,a-sust-i4,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.5, .6, .0, .0, .0, .0, 1.1,266,241.81818181818178 6.813,5,a-sust-i4,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, .1, 7.9, .0, .0, .0, 8.0,1187,148.375 5.84,5,a-sust-i4,2023-24,Weymouth - Ralph Talbot,03360085, 0.3, .4, .0, .0, .0, .5, 1.1,297,270.0 @@ -1738,7 +1738,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.008,5,a-sust-i4,2023-24,Whitman-Hanson - Indian Head,07800035, 1.2, .8, .0, .0, .0, .0, 2.0,498,249.0 6.26,5,a-sust-i4,2023-24,Whitman-Hanson - John H Duval,07800030, 1.0, 1.0, .0, .0, .0, .0, 2.0,435,217.5 6.1,5,a-sust-i4,2023-24,Whitman-Hanson - Louise A Conley,07800010, 1.0, 1.0, .0, .0, .0, .0, 2.0,475,237.5 --Infinity,1,a-sust-i4,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity +NA,NA,a-sust-i4,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity 5.812631578947368,5,a-sust-i4,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, .0, .0, .0, 1.2, 2.6, 3.8,1039,273.42105263157896 6.31,5,a-sust-i4,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, .0, 2.4, .0, .0, .0, 2.4,507,211.25 -2.232,1,a-sust-i4,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, .0, .0, .0, 1.0, .0, 1.0,1279,1279.0 @@ -1751,11 +1751,11 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.611555555555555,5,a-sust-i4,2023-24,Wilmington - Wilmington Middle School,03420330, 0.4, .0, 4.1, .0, .0, .0, 4.5,781,173.55555555555554 6.568,5,a-sust-i4,2023-24,Wilmington - Woburn Street,03420020, 1.4, .6, .0, .0, .0, .0, 2.0,358,179.0 7.708915662650603,5,a-sust-i4,2023-24,Winchendon - Memorial,03430040, 8.3, .0, .0, .0, .0, .0, 8.3,302,36.3855421686747 --Infinity,1,a-sust-i4,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,20,Infinity +NA,NA,a-sust-i4,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,20,Infinity 6.992,5,a-sust-i4,2023-24,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .0, 2.0, .0, 2.0,252,126.0 6.84,5,a-sust-i4,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, .0, 2.0, .0, .0, .0, 2.0,290,145.0 6.896,5,a-sust-i4,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 2.0, .0, .0, .0, .0, 2.0,276,138.0 --Infinity,1,a-sust-i4,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 4.936,4.94,a-sust-i4,2023-24,Winchester - Ambrose Elementary,03440045, 0.4, .6, .0, .0, .0, .0, 1.0,383,383.0 6.255,5,a-sust-i4,2023-24,Winchester - Lincoln Elementary,03440005, 0.7, 1.0, .0, .0, .0, .0, 1.6,349,218.125 4.90909090909091,4.91,a-sust-i4,2023-24,Winchester - Lynch Elementary,03440020, 0.4, .7, .0, .0, .0, .0, 1.1,425,386.3636363636363 @@ -1796,7 +1796,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.812,5,a-sust-i4,2023-24,Worcester - Gates Lane,03480110, 1.0, .7, .3, .0, .0, .0, 2.0,547,273.5 6.56,5,a-sust-i4,2023-24,Worcester - Goddard School/Science Technical,03480100, 1.2, .6, .3, .0, .0, .0, 2.1,378,180.0 5.346666666666666,5,a-sust-i4,2023-24,Worcester - Grafton Street,03480115, 0.6, .6, .1, .0, .0, .0, 1.2,398,331.6666666666667 --Infinity,1,a-sust-i4,2023-24,Worcester - Head Start,03480002, 0.0, .0, .0, .0, .0, .0, 0.0,376,Infinity +NA,NA,a-sust-i4,2023-24,Worcester - Head Start,03480002, 0.0, .0, .0, .0, .0, .0, 0.0,376,Infinity 6.326666666666666,5,a-sust-i4,2023-24,Worcester - Heard Street,03480136, 0.4, .7, .1, .0, .0, .0, 1.2,251,209.16666666666669 6.476,5,a-sust-i4,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 1.2, .6, .2, .0, .0, .0, 2.0,381,190.5 6.728888888888888,5,a-sust-i4,2023-24,Worcester - Lake View,03480145, 1.0, .6, .2, .0, .0, .0, 1.8,286,158.88888888888889 @@ -1822,12 +1822,12 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.985,5,a-sust-i4,2023-24,Worcester - Worcester Arts Magnet School,03480225, 1.3, .9, 1.0, .0, .0, .0, 3.2,406,126.875 6.61,5,a-sust-i4,2023-24,Worcester - Worcester East Middle,03480420, 0.0, .0, 4.0, .0, .0, .0, 4.0,695,173.75 -107.12,1,a-sust-i4,2023-24,Worcester - Worcester Technical High,03480605, 0.0, .0, .0, .1, .0, .0, 0.1,1439,14390.0 --Infinity,1,a-sust-i4,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity +NA,NA,a-sust-i4,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity 7.513333333333334,5,a-sust-i4,2023-24,Worthington - R. H. Conwell,03490010, 0.5, .5, .2, .0, .0, .0, 1.2,73,60.833333333333336 6.442105263157895,5,a-sust-i4,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, .5, .3, .0, .0, 1.0, 1.9,370,194.73684210526318 5.556,5,a-sust-i4,2023-24,Wrentham - Delaney,03500003, 1.6, .4, .0, .0, .0, .0, 2.0,611,305.5 6.707272727272728,5,a-sust-i4,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 1.6, 2.7, 3.1, .0, .0, 8.8,1422,161.59090909090907 --Infinity,1,a-sust-i4,2022-23,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity +NA,NA,a-sust-i4,2022-23,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity 6.376296296296297,5,a-sust-i4,2022-23,Abington - Abington High,00010505, 0.0, .0, .0, 2.7, .0, .0, 2.7,548,202.96296296296296 7.023396226415094,5,a-sust-i4,2022-23,Abington - Abington Middle School,00010405, 0.0, 2.0, 3.3, .0, .0, .0, 5.3,647,122.0754716981132 4.210909090909091,4.21,a-sust-i4,2022-23,Abington - Beaver Brook Elementary,00010020, 1.1, .0, .0, .0, .0, .0, 1.1,521,473.6363636363636 @@ -1836,7 +1836,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.273846153846154,5,a-sust-i4,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, .2, 7.2, .4, 7.8,1683,215.76923076923077 5.976,5,a-sust-i4,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 0.8, .9, .3, .0, .0, .0, 2.0,506,253.0 6.492,5,a-sust-i4,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 1.0, .8, .2, .0, .0, .0, 2.0,377,188.5 --Infinity,1,a-sust-i4,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity +NA,NA,a-sust-i4,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity 4.736,4.74,a-sust-i4,2022-23,Acton-Boxborough - Luther Conant School,06000030, 0.4, .5, .2, .0, .0, .0, 1.0,408,408.0 6.216,5,a-sust-i4,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 0.8, 1.0, .3, .0, .0, .0, 2.0,446,223.0 6.276,5,a-sust-i4,2022-23,Acton-Boxborough - Merriam School,06000010, 0.8, .9, .3, .0, .0, .0, 2.0,431,215.5 @@ -1845,7 +1845,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.776,5,a-sust-i4,2022-23,Acushnet - Acushnet Elementary School,00030025, 1.2, .8, .0, .0, .0, .0, 2.0,556,278.0 4.744,4.74,a-sust-i4,2022-23,Acushnet - Albert F Ford Middle School,00030305, 0.0, .3, .7, .0, .0, .1, 1.0,407,407.0 6.115121951219512,5,a-sust-i4,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 2.0, 2.1, .0, .0, 4.1,966,235.609756097561 --Infinity,1,a-sust-i4,2022-23,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity +NA,NA,a-sust-i4,2022-23,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity 6.349803921568627,5,a-sust-i4,2022-23,Agawam - Agawam High,00050505, 0.0, .0, .0, 4.7, .3, .0, 5.1,1052,206.27450980392157 7.1712,5,a-sust-i4,2022-23,Agawam - Agawam Junior High,00050405, 0.0, .0, 1.8, .0, 3.2, .0, 5.0,518,103.6 5.536,5,a-sust-i4,2022-23,Agawam - Benjamin J Phelps,00050020, 0.6, .4, .0, .0, .0, .0, 1.0,308,308.0 @@ -1870,7 +1870,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.682857142857143,5,a-sust-i4,2022-23,Andover - Doherty Middle,00090305, 0.0, .0, 2.8, .0, .0, .0, 2.8,461,164.64285714285717 6.442352941176471,5,a-sust-i4,2022-23,Andover - Henry C Sanborn Elementary,00090010, 0.7, 1.1, .0, .0, .0, .0, 1.7,331,194.7058823529412 6.76,5,a-sust-i4,2022-23,Andover - High Plain Elementary,00090004, 1.7, 1.7, .0, .0, .0, .0, 3.4,527,155.0 --Infinity,1,a-sust-i4,2022-23,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity +NA,NA,a-sust-i4,2022-23,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity 6.7057142857142855,5,a-sust-i4,2022-23,Andover - South Elementary,00090020, 1.1, 1.7, .0, .0, .0, .0, 2.8,453,161.7857142857143 6.917073170731707,5,a-sust-i4,2022-23,Andover - West Elementary,00090025, 1.9, 2.2, .0, .0, .0, .0, 4.1,555,135.3658536585366 7.127741935483871,5,a-sust-i4,2022-23,Andover - Wood Hill Middle School,00090350, 0.0, .0, 3.1, .0, .0, .0, 3.1,338,109.03225806451613 @@ -1895,7 +1895,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.901538461538461,5,a-sust-i4,2022-23,Ashland - Ashland Middle,00140405, 0.0, .0, 2.6, .0, .0, .0, 2.6,682,262.3076923076923 5.853333333333333,5,a-sust-i4,2022-23,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,644,268.33333333333337 4.785,4.79,a-sust-i4,2022-23,Ashland - Henry E Warren Elementary,00140010, 1.6, .0, .0, .0, .0, .0, 1.6,643,401.875 --Infinity,1,a-sust-i4,2022-23,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity +NA,NA,a-sust-i4,2022-23,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity 4.3904,4.39,a-sust-i4,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 2.5, .0, .0, 2.5,1128,451.2 3.84,3.84,a-sust-i4,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 0.7, .4, .0, .0, .0, .0, 1.1,572,520.0 5.845333333333334,5,a-sust-i4,2022-23,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, 1.5, .0, .0, 1.5,404,269.3333333333333 @@ -1907,7 +1907,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.721777777777778,4.72,a-sust-i4,2022-23,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 4.5, .0, .0, 4.5,1844,409.77777777777777 7.2,5,a-sust-i4,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, .0, .0, .4, .0, .0, 0.4,40,100.0 6.006399999999999,5,a-sust-i4,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, .7, 1.8, .0, .0, .0, 2.5,623,249.2 --Infinity,1,a-sust-i4,2022-23,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,190,Infinity +NA,NA,a-sust-i4,2022-23,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,190,Infinity 6.364,5,a-sust-i4,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 1.2, .8, .0, .0, .0, .0, 2.0,409,204.5 6.2,5,a-sust-i4,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 1.2, .8, .0, .0, .0, .0, 2.0,450,225.0 6.316190476190476,5,a-sust-i4,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 1.4, .7, .0, .0, .0, .0, 2.1,442,210.47619047619045 @@ -1930,7 +1930,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.035555555555556,5,a-sust-i4,2022-23,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 5.4, .0, .0, .0, 5.4,651,120.55555555555554 6.366666666666667,5,a-sust-i4,2022-23,Barnstable - Barnstable United Elementary School,00200050, 0.0, 3.6, .0, .0, .0, .0, 3.6,735,204.16666666666666 6.765,5,a-sust-i4,2022-23,Barnstable - Centerville Elementary,00200010, 1.1, .5, .0, .0, .0, .0, 1.6,247,154.375 --Infinity,1,a-sust-i4,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,157,Infinity +NA,NA,a-sust-i4,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,157,Infinity 6.533333333333333,5,a-sust-i4,2022-23,Barnstable - Hyannis West Elementary,00200025, 1.4, .5, .0, .0, .0, .0, 1.8,330,183.33333333333334 6.24,5,a-sust-i4,2022-23,Barnstable - West Barnstable Elementary,00200005, 0.9, .3, .0, .0, .0, .0, 1.2,264,220.0 6.396,5,a-sust-i4,2022-23,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,401,200.5 @@ -1944,7 +1944,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.782857142857143,5,a-sust-i4,2022-23,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,194,277.14285714285717 7.0986666666666665,5,a-sust-i4,2022-23,Belchertown - Jabish Middle School,00240025, 0.0, .0, 3.0, .0, .0, .0, 3.0,338,112.66666666666667 6.104,5,a-sust-i4,2022-23,Belchertown - Swift River Elementary,00240018, 1.3, .7, .0, .0, .0, .0, 2.0,474,237.0 --Infinity,1,a-sust-i4,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 6.8048,5,a-sust-i4,2022-23,Bellingham - Bellingham High School,00250505, 0.0, .0, 1.2, 3.8, .0, .0, 5.0,747,149.4 6.826,5,a-sust-i4,2022-23,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.5, 2.5, .0, .0, .0, 4.0,587,146.75 5.6,5,a-sust-i4,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.8, .3, .0, .0, .0, .0, 1.0,300,300.0 @@ -1973,7 +1973,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.732,5,a-sust-i4,2022-23,Beverly - Centerville Elementary,00300010, 1.2, .8, .0, .0, .0, .0, 2.0,317,158.5 6.324,5,a-sust-i4,2022-23,Beverly - Cove Elementary,00300015, 1.2, .8, .0, .0, .0, .0, 2.0,419,209.5 6.68,5,a-sust-i4,2022-23,Beverly - Hannah Elementary,00300033, 1.1, .9, .0, .0, .0, .0, 2.0,330,165.0 --Infinity,1,a-sust-i4,2022-23,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity +NA,NA,a-sust-i4,2022-23,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity 6.62,5,a-sust-i4,2022-23,Beverly - North Beverly Elementary,00300040, 1.3, .7, .0, .0, .0, .0, 2.0,345,172.5 6.430909090909091,5,a-sust-i4,2022-23,Billerica - Billerica Memorial High School,00310505, 0.0, .0, 3.9, 4.8, .0, .0, 8.8,1726,196.13636363636363 6.6,5,a-sust-i4,2022-23,Billerica - Frederick J Dutile,00310007, 1.0, .6, .0, .0, .0, .0, 1.6,280,175.0 @@ -1997,7 +1997,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.522666666666667,5,a-sust-i4,2022-23,Boston - Bates Elementary School,00350278, 1.0, .4, .1, .0, .0, .0, 1.5,277,184.66666666666666 7.298666666666666,5,a-sust-i4,2022-23,Boston - Beethoven Elementary School,00350021, 3.0, .0, .0, .0, .0, .0, 3.0,263,87.66666666666667 6.926,5,a-sust-i4,2022-23,Boston - Blackstone Elementary School,00350390, 2.1, 1.4, .4, .0, .0, .1, 4.0,537,134.25 --Infinity,1,a-sust-i4,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity +NA,NA,a-sust-i4,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity 7.7647619047619045,5,a-sust-i4,2022-23,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 16.1, .0, .6, 16.8,494,29.404761904761905 5.152,5,a-sust-i4,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .5, .0, .0, 0.5,178,356.0 6.912727272727273,5,a-sust-i4,2022-23,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, 1.5, 2.8, .0, .1, 4.4,598,135.9090909090909 @@ -2008,7 +2008,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.555,5,a-sust-i4,2022-23,Boston - Bradley Elementary School,00350215, 1.2, .3, .1, .0, .0, .0, 1.6,289,180.625 6.88,5,a-sust-i4,2022-23,Boston - Brighton High School,00350505, 0.0, .0, .9, 2.6, .0, .4, 3.8,532,140.0 6.6,5,a-sust-i4,2022-23,Boston - Burke High School,00350525, 0.0, .0, .5, 1.5, .0, .3, 2.4,420,175.0 --Infinity,1,a-sust-i4,2022-23,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity +NA,NA,a-sust-i4,2022-23,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity 7.244,5,a-sust-i4,2022-23,Boston - Channing Elementary School,00350360, 1.0, .9, .2, .0, .0, .0, 2.0,189,94.5 6.416,5,a-sust-i4,2022-23,Boston - Charlestown High School,00350515, 0.0, .0, .3, 3.4, .0, .3, 4.0,792,198.0 7.36,5,a-sust-i4,2022-23,Boston - Chittick Elementary School,00350154, 1.7, 1.0, .2, .0, .0, .0, 2.9,232,80.0 @@ -2054,12 +2054,12 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.669473684210526,5,a-sust-i4,2022-23,Boston - Kenny Elementary School,00350328, 1.3, .6, .1, .0, .0, .0, 1.9,316,166.31578947368422 6.944,5,a-sust-i4,2022-23,Boston - Kilmer K-8 School,00350190, 1.3, .8, .9, .0, .0, .0, 3.0,396,132.0 7.231304347826087,5,a-sust-i4,2022-23,Boston - King Elementary School,00350376, 3.7, .8, .1, .0, .0, .0, 4.6,442,96.08695652173914 --Infinity,1,a-sust-i4,2022-23,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity +NA,NA,a-sust-i4,2022-23,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity 7.059130434782608,5,a-sust-i4,2022-23,Boston - Lee K-8 School,00350183, 2.3, .7, 1.6, .0, .0, .0, 4.6,541,117.60869565217392 5.86909090909091,5,a-sust-i4,2022-23,Boston - Lyndon K-8 School,00350262, 1.3, .6, .3, .0, .0, .0, 2.2,586,266.3636363636363 6.144,5,a-sust-i4,2022-23,Boston - Lyon High School,00350655, 0.0, .0, .0, .5, .0, .0, 0.5,116,232.0 7.469473684210526,5,a-sust-i4,2022-23,Boston - Lyon K-8 School,00350004, 0.7, .7, .6, .0, .0, .0, 1.9,126,66.31578947368422 --Infinity,1,a-sust-i4,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1087,Infinity +NA,NA,a-sust-i4,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1087,Infinity 7.36,5,a-sust-i4,2022-23,Boston - Manning Elementary School,00350184, 0.8, .9, .3, .0, .0, .0, 2.0,160,80.0 7.476666666666666,5,a-sust-i4,2022-23,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 4.8, .0, .0, 4.8,314,65.41666666666667 7.051428571428572,5,a-sust-i4,2022-23,Boston - Mario Umana Academy,00350656, 2.1, 1.4, 1.4, .0, .0, .0, 4.9,581,118.57142857142857 @@ -2129,13 +2129,13 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.184,5,a-sust-i4,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 1.0, .0, .0, .0, .0, .0, 1.0,352,352.0 5.448,5,a-sust-i4,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 3.0, .0, .0, .0, .0, .0, 3.0,957,319.0 6.55,5,a-sust-i4,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.1, 2.9, .0, .0, .0, 4.0,725,181.25 --Infinity,1,a-sust-i4,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity +NA,NA,a-sust-i4,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity 6.398,5,a-sust-i4,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 4.0, .0, .0, .0, .0, 4.0,801,200.25 6.649411764705882,5,a-sust-i4,2022-23,Brimfield - Brimfield Elementary,00430005, 1.0, .6, .2, .0, .0, .0, 1.7,287,168.82352941176472 --Infinity,1,a-sust-i4,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,549,Infinity --Infinity,1,a-sust-i4,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1310,Infinity +NA,NA,a-sust-i4,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,549,Infinity +NA,NA,a-sust-i4,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1310,Infinity 6.621538461538462,5,a-sust-i4,2022-23,Brockton - Ashfield Middle School,00440421, 0.0, .0, 1.9, .0, .0, .7, 2.6,448,172.3076923076923 --Infinity,1,a-sust-i4,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,229,Infinity +NA,NA,a-sust-i4,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,229,Infinity 5.792,5,a-sust-i4,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, .0, .0, .0, .0, .5, 0.5,138,276.0 5.753282442748092,5,a-sust-i4,2022-23,Brockton - Brockton High,00440505, 0.0, .0, .0, 7.1, .0, 5.9, 13.1,3679,280.8396946564886 7.231111111111112,5,a-sust-i4,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.3, .5, .5, .4, .0, .0, 1.8,173,96.11111111111111 @@ -2160,9 +2160,9 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.143333333333333,5,a-sust-i4,2022-23,Brockton - West Middle School,00440420, 0.0, .0, 1.8, .0, .0, .6, 2.4,557,232.08333333333334 6.554146341463414,5,a-sust-i4,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 3.6, 2.8, 2.7, .0, 3.3, .0, 12.3,2223,180.73170731707316 6.337142857142857,5,a-sust-i4,2022-23,Brookfield - Brookfield Elementary,00450005, 0.3, 1.0, .1, .0, .0, .0, 1.4,291,207.85714285714286 --Infinity,1,a-sust-i4,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity --Infinity,1,a-sust-i4,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity --Infinity,1,a-sust-i4,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,52,Infinity +NA,NA,a-sust-i4,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,52,Infinity 6.560689655172414,5,a-sust-i4,2022-23,Brookline - Brookline High,00460505, 0.0, .0, .0, 11.6, .0, .0, 11.6,2087,179.91379310344828 6.749767441860466,5,a-sust-i4,2022-23,Brookline - Edith C Baker,00460005, 1.5, 1.7, 1.1, .0, .0, .0, 4.3,672,156.27906976744185 6.581666666666666,5,a-sust-i4,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 1.7, 2.0, 1.0, .0, .0, .0, 4.8,851,177.29166666666669 @@ -2171,7 +2171,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.580571428571428,5,a-sust-i4,2022-23,Brookline - Lawrence,00460030, 1.3, 1.4, .7, .0, .0, .0, 3.5,621,177.42857142857142 6.742068965517241,5,a-sust-i4,2022-23,Brookline - Michael Driscoll,00460020, 0.7, 1.5, .7, .0, .0, .0, 2.9,456,157.24137931034483 6.688372093023256,5,a-sust-i4,2022-23,Brookline - Pierce,00460040, 1.6, 1.8, .9, .0, .0, .0, 4.3,705,163.95348837209303 --Infinity,1,a-sust-i4,2022-23,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2022-23,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity 6.824242424242424,5,a-sust-i4,2022-23,Brookline - William H Lincoln,00460035, 1.1, 1.4, .8, .0, .0, .0, 3.3,485,146.96969696969697 6.611428571428571,5,a-sust-i4,2022-23,Burlington - Burlington High,00480505, 0.0, .0, .0, 5.6, .0, .0, 5.6,972,173.57142857142858 7.0488888888888885,5,a-sust-i4,2022-23,Burlington - Fox Hill,00480007, 1.7, 1.3, .0, .0, .0, .6, 3.6,428,118.88888888888889 @@ -2200,7 +2200,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.259047619047619,5,a-sust-i4,2022-23,Canton - Dean S Luce,00500020, 0.8, 1.3, .0, .0, .0, .0, 2.1,457,217.61904761904762 6.657142857142857,5,a-sust-i4,2022-23,Canton - John F Kennedy,00500017, 1.1, 1.7, .0, .0, .0, .0, 2.8,470,167.85714285714286 6.18,5,a-sust-i4,2022-23,Canton - Lt Peter M Hansen,00500012, 1.0, 1.4, .0, .0, .0, .0, 2.4,546,227.5 --Infinity,1,a-sust-i4,2022-23,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2022-23,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 7.012459016393443,5,a-sust-i4,2022-23,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 6.1, .0, .0, .0, 6.1,753,123.44262295081968 5.5,5,a-sust-i4,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, .8, .0, .0, .0, 0.8,250,312.5 2.672,2.67,a-sust-i4,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .6, .4, .0, 1.0,666,666.0 @@ -2217,12 +2217,12 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.232,4.23,a-sust-i4,2022-23,Chelmsford - Charles D Harrington,00560025, 0.6, .4, .0, .0, .0, .0, 1.0,471,471.0 6.343030303030303,5,a-sust-i4,2022-23,Chelmsford - Chelmsford High,00560505, 0.0, .0, .0, 6.6, .0, .0, 6.6,1367,207.12121212121212 6.865882352941177,5,a-sust-i4,2022-23,Chelmsford - Col Moses Parker School,00560305, 0.0, 2.0, 3.0, .0, .0, .1, 5.1,723,141.76470588235296 --Infinity,1,a-sust-i4,2022-23,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity +NA,NA,a-sust-i4,2022-23,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity 6.701538461538462,5,a-sust-i4,2022-23,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.8, 3.4, .0, .0, .0, 5.2,844,162.3076923076923 6.148,5,a-sust-i4,2022-23,Chelmsford - South Row,00560015, 1.2, .8, .0, .0, .0, .0, 2.0,463,231.5 6.389,5,a-sust-i4,2022-23,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 8.0, .0, .0, 8.0,1611,201.375 --Infinity,1,a-sust-i4,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,115,Infinity --Infinity,1,a-sust-i4,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,115,Infinity +NA,NA,a-sust-i4,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.210666666666667,5,a-sust-i4,2022-23,Chelsea - Clark Avenue School,00570050, 0.0, .5, 1.5, .0, .0, 1.0, 3.0,671,223.66666666666666 6.008,5,a-sust-i4,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 0.9, 1.1, .0, .0, .0, .0, 2.0,498,249.0 6.196,5,a-sust-i4,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, .5, 1.5, .0, .0, .0, 2.0,451,225.5 @@ -2233,7 +2233,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.188,5,a-sust-i4,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 1.0, 1.0, .0, .0, .0, .0, 2.0,453,226.5 7.107692307692307,5,a-sust-i4,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.8, .4, .1, .0, .0, .0, 1.3,145,111.53846153846153 5.24,5,a-sust-i4,2022-23,Chicopee - Barry,00610003, 0.5, .5, .0, .0, .0, .0, 1.0,345,345.0 --Infinity,1,a-sust-i4,2022-23,Chicopee - Belcher,00610010, 0.0, .0, .0, .0, .0, .0, 0.0,224,Infinity +NA,NA,a-sust-i4,2022-23,Chicopee - Belcher,00610010, 0.0, .0, .0, .0, .0, .0, 0.0,224,Infinity 4.896,4.9,a-sust-i4,2022-23,Chicopee - Bellamy Middle,00610305, 0.0, .0, 1.0, .0, 1.0, .0, 2.0,776,388.0 4.728,4.73,a-sust-i4,2022-23,Chicopee - Bowe,00610015, 0.5, .5, .0, .0, .0, .0, 1.0,409,409.0 5.8,5,a-sust-i4,2022-23,Chicopee - Bowie,00610020, 0.4, .6, .0, .0, .0, .0, 1.0,275,275.0 @@ -2260,7 +2260,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.692173913043478,5,a-sust-i4,2022-23,Cohasset - Joseph Osgood,00650010, 2.3, .0, .0, .0, .0, .0, 2.3,376,163.47826086956522 5.594,5,a-sust-i4,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 1.2, 1.4, .9, .5, .0, .0, 4.0,1203,300.75 6.650666666666667,5,a-sust-i4,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, .0, .0, .0, 1.5, .0, 1.5,253,168.66666666666666 --Infinity,1,a-sust-i4,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,1195,Infinity +NA,NA,a-sust-i4,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,1195,Infinity 6.716923076923077,5,a-sust-i4,2022-23,Concord - Alcott,00670005, 0.9, 1.7, .0, .0, .0, .0, 2.6,417,160.3846153846154 7.161290322580646,5,a-sust-i4,2022-23,Concord - Concord Middle,00670305, 0.0, .0, 6.2, .0, .0, .0, 6.2,650,104.83870967741935 6.667692307692308,5,a-sust-i4,2022-23,Concord - Thoreau,00670020, 1.0, 1.6, .0, .0, .0, .0, 2.6,433,166.53846153846152 @@ -2313,7 +2313,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.4,5,a-sust-i4,2022-23,Dracut - Greenmont Avenue,00790030, 0.5, .7, .0, .0, .0, .0, 1.2,240,200.0 5.616,5,a-sust-i4,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 0.7, 1.3, .0, .0, .0, .0, 2.0,596,298.0 6.304,5,a-sust-i4,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 4.0, .0, .0, .0, 4.0,848,212.0 --Infinity,1,a-sust-i4,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,278,Infinity +NA,NA,a-sust-i4,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,278,Infinity 6.074285714285714,5,a-sust-i4,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.4, .0, .0, .0, .0, .0, 1.4,337,240.71428571428572 6.421333333333333,5,a-sust-i4,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, .7, 2.3, .0, .0, .0, 3.0,592,197.33333333333334 5.505454545454546,5,a-sust-i4,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.4, .7, .0, .0, .0, .0, 1.1,343,311.8181818181818 @@ -2344,7 +2344,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.544,5,a-sust-i4,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, 0.0, .0, .0, 2.0, .0, .0, 2.0,364,182.0 7.0618181818181816,5,a-sust-i4,2022-23,Erving - Erving Elementary,00910030, 0.5, .3, .2, .0, .1, .0, 1.1,129,117.27272727272727 -19.104,1,a-sust-i4,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, .0, .0, .5, .0, .0, 0.5,1694,3388.0 --Infinity,1,a-sust-i4,2022-23,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,182,Infinity +NA,NA,a-sust-i4,2022-23,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,182,Infinity 7.77,5,a-sust-i4,2022-23,Everett - Devens School,00930030, 0.3, .4, .5, .3, .0, .1, 1.6,46,28.75 6.06,5,a-sust-i4,2022-23,Everett - Everett High,00930505, 0.0, .0, .0, 9.2, .0, .0, 9.2,2231,242.50000000000003 6.473191489361702,5,a-sust-i4,2022-23,Everett - George Keverian School,00930028, 0.9, 1.7, 2.1, .0, .0, .0, 4.7,897,190.85106382978722 @@ -2352,7 +2352,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.91,5,a-sust-i4,2022-23,Everett - Madeline English School,00930018, 1.3, 2.9, 1.4, .0, .0, .0, 5.6,763,136.25 6.236521739130435,5,a-sust-i4,2022-23,Everett - Parlin School,00930058, 1.4, 1.8, 1.3, .0, .0, .0, 4.6,1014,220.43478260869566 6.6,5,a-sust-i4,2022-23,Everett - Sumner G. Whittier School,00930010, 1.0, 1.5, 1.1, .0, .0, .0, 3.6,630,175.0 --Infinity,1,a-sust-i4,2022-23,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,173,Infinity +NA,NA,a-sust-i4,2022-23,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,173,Infinity 6.451764705882353,5,a-sust-i4,2022-23,Everett - Webster School,00930015, 0.7, 1.0, .0, .0, .0, .0, 1.7,329,193.52941176470588 6.151864406779661,5,a-sust-i4,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.3, 2.7, .0, 2.0, .0, 5.9,1363,231.01694915254237 5.217777777777777,5,a-sust-i4,2022-23,Fairhaven - East Fairhaven,00940010, 0.2, .7, .0, .0, .0, .0, 0.9,313,347.77777777777777 @@ -2361,7 +2361,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.92,5,a-sust-i4,2022-23,Fairhaven - Leroy Wood,00940030, 0.4, 1.4, .0, .0, .0, .0, 1.7,442,260.0 6.4,5,a-sust-i4,2022-23,Fall River - B M C Durfee High,00950505, 0.0, .0, .0, 1.6, .1, 10.6, 12.3,2460,200.0 5.68,5,a-sust-i4,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.9, 1.5, .0, .0, .0, .0, 2.4,696,290.0 --Infinity,1,a-sust-i4,2022-23,Fall River - Early Learning Center,00950001, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity +NA,NA,a-sust-i4,2022-23,Fall River - Early Learning Center,00950001, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity 6.696,5,a-sust-i4,2022-23,Fall River - Henry Lord Community School,00950017, 2.5, 1.8, .8, .0, .0, .0, 5.0,815,163.0 5.792,5,a-sust-i4,2022-23,Fall River - James Tansey,00950140, 0.5, .5, .0, .0, .0, .0, 1.0,276,276.0 6.3712,5,a-sust-i4,2022-23,Fall River - John J Doran,00950045, 0.8, .8, .8, .0, .0, .0, 2.5,509,203.6 @@ -2399,7 +2399,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.111515151515152,5,a-sust-i4,2022-23,Foxborough - John J Ahern,00990405, 0.0, 1.5, 5.1, .0, .0, .0, 6.6,733,111.06060606060606 5.336,5,a-sust-i4,2022-23,Foxborough - Mabelle M Burrell,00990015, 0.6, .4, .0, .0, .0, .0, 1.0,333,333.0 6.112,5,a-sust-i4,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 0.9, .6, .0, .0, .0, .0, 1.5,354,236.0 --Infinity,1,a-sust-i4,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"","",Not Reported,"","","","",1569,Infinity +NA,NA,a-sust-i4,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"","",Not Reported,"","","","",1569,Infinity 6.705116279069768,5,a-sust-i4,2022-23,Framingham - Barbieri Elementary,01000035, 2.1, 2.2, .0, .0, .0, .0, 4.3,696,161.86046511627907 6.656551724137931,5,a-sust-i4,2022-23,Framingham - Brophy,01000006, 1.9, 1.1, .0, .0, .0, .0, 2.9,487,167.93103448275863 6.971162790697675,5,a-sust-i4,2022-23,Framingham - Cameron Middle School,01000302, 0.0, .0, 4.3, .0, .0, .0, 4.3,553,128.6046511627907 @@ -2408,7 +2408,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.853953488372094,5,a-sust-i4,2022-23,Framingham - Fuller Middle,01000305, 0.0, .0, 4.3, .0, .0, .0, 4.3,616,143.25581395348837 6.016,5,a-sust-i4,2022-23,Framingham - Harmony Grove Elementary,01000055, 1.0, 1.0, .0, .0, .0, .0, 2.0,496,248.0 6.793333333333333,5,a-sust-i4,2022-23,Framingham - Hemenway,01000015, 1.6, 2.0, .0, .0, .0, .0, 3.6,543,150.83333333333334 --Infinity,1,a-sust-i4,2022-23,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,269,Infinity +NA,NA,a-sust-i4,2022-23,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,269,Infinity 4.515555555555555,4.52,a-sust-i4,2022-23,Framingham - King Elementary School,01000005, 0.5, .4, .0, .0, .0, .0, 0.9,392,435.55555555555554 6.628,5,a-sust-i4,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 0.8, 1.3, .0, .0, .0, .0, 2.0,343,171.5 5.684210526315789,5,a-sust-i4,2022-23,Framingham - Miriam F McCarthy School,01000050, 1.1, .8, .0, .0, .0, .0, 1.9,550,289.47368421052636 @@ -2416,7 +2416,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.246666666666667,5,a-sust-i4,2022-23,Framingham - Walsh Middle,01000310, 0.0, .0, 3.6, .0, .0, .0, 3.6,789,219.16666666666666 -2.346666666666668,1,a-sust-i4,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .0, .3, .0, 0.3,388,1293.3333333333335 6.586666666666667,5,a-sust-i4,2022-23,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 1.1, .0, .7, .0, 1.8,318,176.66666666666666 --Infinity,1,a-sust-i4,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity +NA,NA,a-sust-i4,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity 6.390123456790123,5,a-sust-i4,2022-23,Franklin - Franklin High,01010505, 0.0, .0, .0, 8.1, .0, .0, 8.1,1630,201.23456790123458 6.065454545454546,5,a-sust-i4,2022-23,Franklin - Helen Keller Elementary,01010012, 1.0, 1.2, .0, .0, .0, .0, 2.2,532,241.81818181818178 6.8859259259259264,5,a-sust-i4,2022-23,Franklin - Horace Mann,01010405, 0.0, .0, 2.0, .0, .7, .0, 2.7,376,139.25925925925924 @@ -2425,14 +2425,14 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.291764705882353,5,a-sust-i4,2022-23,Franklin - Oak Street Elementary,01010030, 0.7, 1.0, .0, .0, .0, .0, 1.7,363,213.52941176470588 6.783157894736842,5,a-sust-i4,2022-23,Franklin - Parmenter,01010032, 1.1, .8, .0, .0, .0, .0, 1.9,289,152.10526315789474 6.8707692307692305,5,a-sust-i4,2022-23,Franklin - Remington Middle,01010310, 0.0, .0, 1.9, .0, .7, .0, 2.6,367,141.15384615384616 --Infinity,1,a-sust-i4,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,602,Infinity +NA,NA,a-sust-i4,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,602,Infinity 6.611428571428571,5,a-sust-i4,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, .0, .0, 4.2, .0, .0, 4.2,729,173.57142857142856 6.028,5,a-sust-i4,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.5, .5, .0, .0, .0, .0, 2.0,493,246.5 6.296,5,a-sust-i4,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 1.5, .5, .0, .0, .0, .0, 2.0,426,213.0 6.65,5,a-sust-i4,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, .0, 4.0, .0, .0, .0, 4.0,675,168.75 6.188,5,a-sust-i4,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 2.0, .0, .0, .0, .0, 2.0,453,226.5 6.530909090909091,5,a-sust-i4,2022-23,Frontier - Frontier Regional,06700505, 0.0, .0, 1.5, 1.4, .5, .0, 3.3,606,183.63636363636365 --Infinity,1,a-sust-i4,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity +NA,NA,a-sust-i4,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity 6.4224,5,a-sust-i4,2022-23,Gardner - Gardner Elementary School,01030001, 2.7, 1.3, .0, .0, .0, 1.0, 5.0,986,197.2 5.92516129032258,5,a-sust-i4,2022-23,Gardner - Gardner High,01030505, 0.0, .0, 1.1, 1.8, .2, .0, 3.1,804,259.35483870967744 6.696,5,a-sust-i4,2022-23,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 2.0, .0, .0, .0, 3.0,489,163.0 @@ -2443,7 +2443,7 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.335555555555556,5,a-sust-i4,2022-23,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 3.6, .0, .0, 3.6,299,83.05555555555556 7.291428571428572,5,a-sust-i4,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, .0, 2.1, .0, .0, .0, 2.1,186,88.57142857142857 5.554782608695652,5,a-sust-i4,2022-23,Georgetown - Penn Brook,01050010, 0.9, 1.0, .4, .0, .0, .0, 2.3,703,305.6521739130435 --Infinity,1,a-sust-i4,2022-23,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity +NA,NA,a-sust-i4,2022-23,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity 5.9,5,a-sust-i4,2022-23,Gill-Montague - Gill Elementary,06740005, 0.1, .2, .1, .0, .0, .0, 0.4,105,262.5 6.965,5,a-sust-i4,2022-23,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 1.6, .0, .0, .0, 1.6,207,129.375 6.053333333333333,5,a-sust-i4,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,146,243.33333333333334 @@ -2453,12 +2453,12 @@ NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8,5,a-sust-i4,2022-23,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,300,150.0 6.793333333333333,5,a-sust-i4,2022-23,Gloucester - East Gloucester Elementary,01070020, 0.0, .0, .0, .0, .0, 1.2, 1.2,181,150.83333333333334 6.7136000000000005,5,a-sust-i4,2022-23,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .4, 4.6, .0, 5.0,804,160.8 --Infinity,1,a-sust-i4,2022-23,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity +NA,NA,a-sust-i4,2022-23,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity 6.523636363636364,5,a-sust-i4,2022-23,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.1, 1.1,203,184.54545454545453 6.756,5,a-sust-i4,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 4.0, .0, .0, .0, 4.0,622,155.5 6.67076923076923,5,a-sust-i4,2022-23,Gloucester - Veterans Memorial,01070045, 0.0, .0, .0, .0, .0, 1.3, 1.3,216,166.15384615384616 6.504,5,a-sust-i4,2022-23,Gloucester - West Parish,01070050, 0.0, .0, .0, .0, .0, 2.0, 2.0,374,187.0 -NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN +NA,NA,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN 6.055555555555555,5,a-sust-i4,2022-23,Grafton - Grafton High School,01100505, 0.0, .0, .0, 2.1, .9, .6, 3.6,875,243.05555555555554 6.177391304347826,5,a-sust-i4,2022-23,Grafton - Grafton Middle,01100305, 0.0, .0, 2.3, .0, .0, .0, 2.3,524,227.82608695652175 6.5125,5,a-sust-i4,2022-23,Grafton - Millbury Street Elementary School,01100200, 0.5, 2.0, .7, .0, .0, .0, 3.2,595,185.9375 @@ -2469,16 +2469,16 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8152380952380955,5,a-sust-i4,2022-23,Granby - Granby Jr Sr High School,01110505, 0.0, .0, .4, .7, .5, .5, 2.1,311,148.0952380952381 4.92,4.92,a-sust-i4,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.9, .9, .7, .0, .5, .0, 3.0,1155,385.0 -29.653333333333336,1,a-sust-i4,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .3, .0, .0, 0.3,1412,4706.666666666667 --Infinity,1,a-sust-i4,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1692,Infinity +NA,NA,a-sust-i4,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1692,Infinity -53.38666666666667,1,a-sust-i4,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2302,7673.333333333334 --Infinity,1,a-sust-i4,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2095,Infinity +NA,NA,a-sust-i4,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2095,Infinity 6.777142857142857,5,a-sust-i4,2022-23,Greenfield - Discovery School at Four Corners,01140025, 0.7, .4, .0, .0, .3, .0, 1.4,214,152.85714285714286 6.812307692307693,5,a-sust-i4,2022-23,Greenfield - Federal Street School,01140010, 0.6, .3, .0, .0, .3, .0, 1.3,193,148.46153846153845 6.603076923076923,5,a-sust-i4,2022-23,Greenfield - Greenfield High,01140505, 0.0, .0, .7, 1.3, .6, .0, 2.6,454,174.6153846153846 6.153846153846154,5,a-sust-i4,2022-23,Greenfield - Greenfield Middle,01140305, 0.0, .4, .9, .0, .0, .0, 1.3,300,230.76923076923077 7.293913043478261,5,a-sust-i4,2022-23,Greenfield - Newton School,01140035, 1.2, .8, .0, .0, .3, .0, 2.3,203,88.2608695652174 --Infinity,1,a-sust-i4,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity --Infinity,1,a-sust-i4,2022-23,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity +NA,NA,a-sust-i4,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity +NA,NA,a-sust-i4,2022-23,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity 5.785263157894737,5,a-sust-i4,2022-23,Groton-Dunstable - Florence Roche School,06730010, 1.1, .8, .0, .0, .0, .0, 1.9,526,276.8421052631579 6.4,5,a-sust-i4,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.4, .0, 3.4,680,200.0 6.8431999999999995,5,a-sust-i4,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.8, 3.3, .0, .0, .0, 5.0,723,144.6 @@ -2509,7 +2509,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.16,5,a-sust-i4,2022-23,Harvard - Hildreth Elementary School,01250005, 1.0, 1.0, .0, .0, .0, .0, 2.0,460,230.0 6.94,5,a-sust-i4,2022-23,Hatfield - Hatfield Elementary,01270005, 0.4, .7, .4, .0, .0, .0, 1.6,212,132.5 6.936,5,a-sust-i4,2022-23,Hatfield - Smith Academy,01270505, 0.0, .0, .3, .7, .0, .0, 1.0,133,133.0 --Infinity,1,a-sust-i4,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity +NA,NA,a-sust-i4,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity 5.968,5,a-sust-i4,2022-23,Haverhill - Bradford Elementary,01280008, 1.2, .8, .0, .0, .0, .0, 2.0,508,254.0 5.86,5,a-sust-i4,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 1.0, 1.3, 1.7, .0, .0, .0, 4.0,1070,267.5 6.303030303030303,5,a-sust-i4,2022-23,Haverhill - Consentino Middle School,01280100, 0.0, .5, 2.5, .0, .3, .0, 3.3,700,212.12121212121212 @@ -2520,7 +2520,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.08,5,a-sust-i4,2022-23,Haverhill - Haverhill High,01280505, 0.0, .0, .0, 1.7, 6.4, .0, 8.1,1944,240.0 6.316521739130435,5,a-sust-i4,2022-23,Haverhill - John G Whittier,01280085, 0.0, .3, 1.8, .0, .3, .0, 2.3,484,210.43478260869566 7.28,5,a-sust-i4,2022-23,Haverhill - Moody,01280045, 2.0, .0, .0, .0, .0, .0, 2.0,180,90.0 --Infinity,1,a-sust-i4,2022-23,Haverhill - Moody Preschool Extension,01280001, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity +NA,NA,a-sust-i4,2022-23,Haverhill - Moody Preschool Extension,01280001, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity 6.105454545454546,5,a-sust-i4,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 1.0, 1.1, .0, .0, .0, .0, 2.2,521,236.8181818181818 5.101538461538461,5,a-sust-i4,2022-23,Haverhill - Silver Hill Elementary School,01280067, 0.5, .5, .0, .0, .3, .0, 1.3,471,362.3076923076923 6.82,5,a-sust-i4,2022-23,Haverhill - Tilton,01280075, 1.5, .5, .0, .0, .0, .0, 2.0,295,147.5 @@ -2547,26 +2547,26 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.077333333333334,5,a-sust-i4,2022-23,Holyoke - H.B. Lawrence School,01370070, 1.0, .4, .0, .0, .1, .0, 1.5,173,115.33333333333333 5.6692307692307695,5,a-sust-i4,2022-23,Holyoke - Holyoke High,01370505, 0.0, .0, .0, 5.2, .0, .0, 5.2,1515,291.3461538461538 5.752,5,a-sust-i4,2022-23,Holyoke - Holyoke Middle School,01370325, 0.0, .0, 1.0, .0, .0, .0, 1.0,281,281.0 --Infinity,1,a-sust-i4,2022-23,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .0, .0, .0, .0, 0.0,290,Infinity +NA,NA,a-sust-i4,2022-23,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .0, .0, .0, .0, 0.0,290,Infinity 6.508,5,a-sust-i4,2022-23,Holyoke - Joseph Metcalf School,01370003, 0.7, .7, .7, .0, .0, .0, 2.0,373,186.5 6.555555555555555,5,a-sust-i4,2022-23,Holyoke - Kelly Elementary,01370040, 0.9, .8, .0, .0, .0, .0, 1.8,325,180.55555555555554 4.808,4.81,a-sust-i4,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.3, .3, .5, .0, .0, .0, 1.0,399,399.0 6.652,5,a-sust-i4,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.7, .7, .6, .0, .0, .0, 2.0,337,168.5 5.12,5,a-sust-i4,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 0.4, .3, .0, .0, .3, .0, 1.0,360,360.0 --Infinity,1,a-sust-i4,2022-23,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,285,Infinity +NA,NA,a-sust-i4,2022-23,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,285,Infinity 7.301818181818182,5,a-sust-i4,2022-23,Holyoke - William R. Peck School,01370030, 0.0, 1.0, 1.0, .0, .2, .0, 2.2,192,87.27272727272727 --Infinity,1,a-sust-i4,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,685,Infinity +NA,NA,a-sust-i4,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,685,Infinity 6.425263157894737,5,a-sust-i4,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.4, .5, .0, .0, .0, .0, 1.9,374,196.8421052631579 6.006153846153846,5,a-sust-i4,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, .0, .2, .0, 1.2, .0, 1.3,324,249.23076923076923 7.078399999999999,5,a-sust-i4,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 1.3, 1.2, .0, .0, .0, 2.5,288,115.2 6.754285714285714,5,a-sust-i4,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, .9, 1.8, .0, .1, 2.8,436,155.71428571428572 5.784,5,a-sust-i4,2022-23,Hopedale - Memorial,01380010, 0.8, .9, .3, .0, .0, .0, 2.0,554,277.0 --Infinity,1,a-sust-i4,2022-23,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity +NA,NA,a-sust-i4,2022-23,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity 5.492,5,a-sust-i4,2022-23,Hopkinton - Elmwood,01390010, 1.0, 1.0, .0, .0, .0, .0, 2.0,627,313.5 6.296,5,a-sust-i4,2022-23,Hopkinton - Hopkins Elementary School,01390015, 0.0, 3.0, .0, .0, .0, .0, 3.0,639,213.0 6.171851851851852,5,a-sust-i4,2022-23,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 4.6, .0, .8, 5.4,1234,228.5185185185185 6.704,5,a-sust-i4,2022-23,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 6.0, .0, .0, .0, 6.0,972,162.0 --Infinity,1,a-sust-i4,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity +NA,NA,a-sust-i4,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity 5.368888888888889,5,a-sust-i4,2022-23,Hopkinton - Marathon Elementary School,01390005, 1.8, .0, .0, .0, .0, .0, 1.8,592,328.88888888888886 6.28,5,a-sust-i4,2022-23,Hudson - C A Farley,01410030, 1.3, .7, .0, .0, .0, .0, 2.0,430,215.0 7.157735849056604,5,a-sust-i4,2022-23,Hudson - David J. Quinn Middle School,01410410, 0.0, 2.0, 3.3, .0, .0, .0, 5.3,558,105.28301886792453 @@ -2596,41 +2596,41 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.041904761904761,5,a-sust-i4,2022-23,Lawrence - Frost Middle School,01490525, 0.0, .6, 1.6, .0, .0, .0, 2.1,514,244.76190476190476 6.076,5,a-sust-i4,2022-23,Lawrence - Gerard A. Guilmette,01490022, 1.1, 1.0, .0, .0, .0, .0, 2.0,481,240.5 6.5312,5,a-sust-i4,2022-23,Lawrence - Guilmette Middle School,01490025, 0.0, .6, 1.9, .0, .0, .0, 2.5,459,183.6 --Infinity,1,a-sust-i4,2022-23,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,310,Infinity +NA,NA,a-sust-i4,2022-23,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,310,Infinity 5.464,5,a-sust-i4,2022-23,Lawrence - James F Hennessey,01490020, 1.0, .0, .0, .0, .0, .0, 1.0,317,317.0 6.28,5,a-sust-i4,2022-23,Lawrence - John Breen School,01490003, 1.2, .0, .0, .0, .0, .0, 1.2,258,215.0 6.9,5,a-sust-i4,2022-23,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,275,137.5 --Infinity,1,a-sust-i4,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,164,Infinity +NA,NA,a-sust-i4,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,164,Infinity 7.244,5,a-sust-i4,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 2.0, .0, .0, .0, .0, .0, 2.0,189,94.5 6.495609756097561,5,a-sust-i4,2022-23,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 8.9, 7.4, .0, 16.4,3084,188.0487804878049 5.384,5,a-sust-i4,2022-23,Lawrence - Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,327,327.0 6.6144,5,a-sust-i4,2022-23,Lawrence - Oliver Elementary School,01490048, 1.0, 1.5, .0, .0, .0, .0, 2.5,433,173.2 5.192,5,a-sust-i4,2022-23,Lawrence - Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,351,351.0 6.485333333333333,5,a-sust-i4,2022-23,Lawrence - Parthum Middle School,01490027, 0.0, .8, 2.3, .0, .0, .0, 3.0,568,189.33333333333334 --Infinity,1,a-sust-i4,2022-23,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity +NA,NA,a-sust-i4,2022-23,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity 5.712,5,a-sust-i4,2022-23,Lawrence - Robert Frost,01490018, 1.1, .9, .0, .0, .0, .0, 2.0,572,286.0 6.384,5,a-sust-i4,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 1.0, .0, .0, .0, .0, .0, 1.0,202,202.0 7.32,5,a-sust-i4,2022-23,Lawrence - School for Exceptional Studies,01490537, 0.3, .3, .3, .0, .2, .0, 1.2,102,85.0 6.258666666666667,5,a-sust-i4,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 1.2, 1.8, .0, .0, .0, .0, 3.0,653,217.66666666666666 --Infinity,1,a-sust-i4,2022-23,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,437,Infinity +NA,NA,a-sust-i4,2022-23,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,437,Infinity 5.990588235294117,5,a-sust-i4,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 2.3, .7, .5, .0, .0, .0, 3.4,854,251.1764705882353 6.221333333333333,5,a-sust-i4,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.7, .7, .0, .0, 1.7, .0, 3.0,667,222.33333333333334 7.025714285714286,5,a-sust-i4,2022-23,Lee - Lee Elementary,01500025, 0.1, .0, .0, .0, 2.8, .0, 2.8,341,121.78571428571429 7.133333333333334,5,a-sust-i4,2022-23,Lee - Lee Middle/High School,01500505, 0.0, .0, .8, 1.7, .5, .0, 3.0,325,108.33333333333333 6.028,5,a-sust-i4,2022-23,Leicester - Leicester Elementary,01510005, 1.2, .7, .0, .0, .1, .0, 2.0,493,246.5 6.051764705882353,5,a-sust-i4,2022-23,Leicester - Leicester High,01510505, 0.0, .0, .0, .3, 1.5, .0, 1.7,414,243.52941176470588 --Infinity,1,a-sust-i4,2022-23,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2022-23,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 6.277894736842105,5,a-sust-i4,2022-23,Leicester - Leicester Middle,01510015, 0.0, .6, .3, .0, 1.0, .0, 1.9,409,215.26315789473685 7.014857142857143,5,a-sust-i4,2022-23,Lenox - Lenox Memorial High,01520505, 0.0, .0, .6, .0, 3.0, .0, 3.5,431,123.14285714285714 7.540338983050848,5,a-sust-i4,2022-23,Lenox - Morris,01520015, 3.2, 2.7, .0, .0, .0, .0, 5.9,339,57.45762711864406 --Infinity,1,a-sust-i4,2022-23,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity +NA,NA,a-sust-i4,2022-23,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity -4.8,1,a-sust-i4,2022-23,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .5, 0.5,800,1600.0 5.657142857142857,5,a-sust-i4,2022-23,Leominster - Fall Brook,01530007, 0.9, 1.1, .0, .0, .0, .0, 2.1,615,292.85714285714283 6.14,5,a-sust-i4,2022-23,Leominster - Frances Drake School,01530010, 1.1, .9, .0, .0, .0, .0, 2.0,465,232.5 5.356,5,a-sust-i4,2022-23,Leominster - Johnny Appleseed,01530025, 1.0, 1.0, .0, .0, .0, .0, 2.0,661,330.5 --Infinity,1,a-sust-i4,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity 6.201739130434782,5,a-sust-i4,2022-23,Leominster - Leominster High School,01530505, 0.0, .0, .0, 4.6, .0, .0, 4.6,1034,224.7826086956522 --Infinity,1,a-sust-i4,2022-23,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity +NA,NA,a-sust-i4,2022-23,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity 5.092,5,a-sust-i4,2022-23,Leominster - Northwest,01530030, 0.9, 1.1, .0, .0, .0, .0, 2.0,727,363.5 6.213333333333333,5,a-sust-i4,2022-23,Leominster - Priest Street,01530040, 0.6, .0, .0, .0, .0, .0, 0.6,134,223.33333333333334 5.984,5,a-sust-i4,2022-23,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,504,252.0 @@ -2642,7 +2642,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.826666666666667,5,a-sust-i4,2022-23,Lexington - Harrington,01550030, 0.8, 1.9, .0, .0, .0, .0, 2.7,396,146.66666666666666 7.11027027027027,5,a-sust-i4,2022-23,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 7.4, .0, .0, .0, 7.4,823,111.21621621621621 6.645,5,a-sust-i4,2022-23,Lexington - Joseph Estabrook,01550010, 1.1, 2.1, .0, .0, .0, .0, 3.2,542,169.375 --Infinity,1,a-sust-i4,2022-23,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,75,Infinity +NA,NA,a-sust-i4,2022-23,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,75,Infinity 6.702535211267605,5,a-sust-i4,2022-23,Lexington - Lexington High,01550505, 0.0, .0, .0, 14.1, .0, .1, 14.2,2303,162.1830985915493 6.55030303030303,5,a-sust-i4,2022-23,Lexington - Maria Hastings,01550035, 1.2, 2.1, .0, .0, .0, .0, 3.3,598,181.21212121212122 7.092048192771085,5,a-sust-i4,2022-23,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 8.3, .0, .0, .0, 8.3,942,113.49397590361446 @@ -2654,7 +2654,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8,5,a-sust-i4,2022-23,Littleton - Littleton High School,01580505, 0.0, .0, .0, 3.2, .0, .0, 3.2,480,150.0 6.46,5,a-sust-i4,2022-23,Littleton - Littleton Middle School,01580305, 0.0, .0, 2.0, .0, .0, .0, 2.0,385,192.5 4.888,4.89,a-sust-i4,2022-23,Littleton - Russell St Elementary,01580015, 0.0, 1.0, .0, .0, .0, .0, 1.0,389,389.0 --Infinity,1,a-sust-i4,2022-23,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,436,Infinity +NA,NA,a-sust-i4,2022-23,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,436,Infinity 6.574545454545455,5,a-sust-i4,2022-23,Longmeadow - Blueberry Hill,01590005, 0.9, 1.3, .0, .0, .0, .0, 2.2,392,178.18181818181816 6.458181818181818,5,a-sust-i4,2022-23,Longmeadow - Center,01590010, 1.0, 1.2, .0, .0, .0, .0, 2.2,424,192.72727272727272 7.0162962962962965,5,a-sust-i4,2022-23,Longmeadow - Glenbrook Middle,01590017, 0.0, .0, 2.7, .0, .0, .0, 2.7,332,122.96296296296296 @@ -2694,7 +2694,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.648421052631579,5,a-sust-i4,2022-23,Ludlow - Harris Brook Elementary School,01610665, 0.5, 3.0, .0, .0, .0, .3, 3.8,642,168.94736842105263 6.675,5,a-sust-i4,2022-23,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 4.8, .0, .0, 4.8,795,165.625 6.624,5,a-sust-i4,2022-23,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 3.0, .0, .0, .0, 3.0,516,172.0 --Infinity,1,a-sust-i4,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,5,Infinity +NA,NA,a-sust-i4,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,5,Infinity 6.4,5,a-sust-i4,2022-23,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .4, 1.9, .0, 2.2,440,199.99999999999997 6.552380952380952,5,a-sust-i4,2022-23,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.1, .0, .0, .0, 2.1,380,180.95238095238093 5.952,5,a-sust-i4,2022-23,Lunenburg - Lunenburg Primary School,01620010, 0.0, .0, .0, .0, 1.5, .0, 1.5,384,256.0 @@ -2729,9 +2729,9 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.172,5,a-sust-i4,2022-23,Lynnfield - Huckleberry Hill,01640010, 1.2, .8, .0, .0, .0, .0, 2.0,457,228.5 6.87,5,a-sust-i4,2022-23,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, .2, 3.8, .0, 4.0,565,141.25 5.148,5,a-sust-i4,2022-23,Lynnfield - Lynnfield Middle School,01640405, 0.0, .5, 1.0, .0, .5, .0, 2.0,713,356.5 --Infinity,1,a-sust-i4,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity +NA,NA,a-sust-i4,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity 6.316,5,a-sust-i4,2022-23,Lynnfield - Summer Street,01640020, 1.2, .8, .0, .0, .0, .0, 2.0,421,210.5 --Infinity,1,a-sust-i4,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 6.5904,5,a-sust-i4,2022-23,Malden - Beebe,01650003, 1.2, 1.4, 2.4, .0, .0, .0, 5.0,881,176.2 6.212,5,a-sust-i4,2022-23,Malden - Ferryway,01650013, 1.2, 1.0, 1.8, .0, .0, .0, 4.0,894,223.5 6.172307692307692,5,a-sust-i4,2022-23,Malden - Forestdale,01650027, 0.6, 1.2, .8, .0, .0, .0, 2.6,594,228.46153846153845 @@ -2747,7 +2747,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.891228070175439,5,a-sust-i4,2022-23,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 5.7, .0, .0, .0, 5.7,790,138.59649122807016 6.6590476190476195,5,a-sust-i4,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.2, .0, .0, .0, .0, 4.2,704,167.61904761904762 6.5193220338983044,5,a-sust-i4,2022-23,Mansfield - Mansfield High,01670505, 0.0, .0, .0, 5.7, .0, .1, 5.9,1092,185.08474576271186 --Infinity,1,a-sust-i4,2022-23,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2022-23,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 6.996,5,a-sust-i4,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, .0, .0, .0, 2.0, .0, 2.0,251,125.5 6.696,5,a-sust-i4,2022-23,Marblehead - Glover,01680020, 1.8, .3, .0, .0, .0, .0, 2.0,326,163.0 6.224,5,a-sust-i4,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 1.8, .3, .0, .0, .0, .0, 2.0,444,222.0 @@ -2758,7 +2758,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.925333333333333,5,a-sust-i4,2022-23,Marion - Sippican,01690005, 0.9, 1.5, .6, .0, .0, .0, 3.0,403,134.33333333333334 6.608,5,a-sust-i4,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, .0, 6.0, .0, .0, .0, 6.0,1044,174.0 3.9630769230769234,3.96,a-sust-i4,2022-23,Marlborough - Charles Jaworek School,01700030, 0.7, .6, .0, .0, .0, .0, 1.3,656,504.6153846153846 --Infinity,1,a-sust-i4,2022-23,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,191,Infinity +NA,NA,a-sust-i4,2022-23,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,191,Infinity 6.962105263157895,5,a-sust-i4,2022-23,Marlborough - Francis J Kane,01700008, 0.9, 2.9, .0, .0, .0, .0, 3.8,493,129.73684210526315 4.864,4.86,a-sust-i4,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 0.7, 1.3, .0, .0, .0, .0, 2.0,784,392.0 6.71030303030303,5,a-sust-i4,2022-23,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 6.6, .0, .0, 6.6,1064,161.21212121212122 @@ -2790,7 +2790,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.661538461538461,5,a-sust-i4,2022-23,Medfield - Ralph Wheelock School,01750007, 0.7, .7, .0, .0, .0, .0, 1.3,380,292.3076923076923 6.394482758620689,5,a-sust-i4,2022-23,Medfield - Thomas Blake Middle,01750305, 0.0, .0, 2.9, .0, .0, .0, 2.9,582,200.6896551724138 5.082666666666666,5,a-sust-i4,2022-23,Medford - Brooks School,01760130, 0.2, 1.3, .0, .0, .0, .0, 1.5,547,364.6666666666667 --Infinity,1,a-sust-i4,2022-23,Medford - Curtis-Tufts,01760510, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity +NA,NA,a-sust-i4,2022-23,Medford - Curtis-Tufts,01760510, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity 6.076,5,a-sust-i4,2022-23,Medford - John J McGlynn Elementary School,01760068, 0.5, .0, .0, .0, 1.5, .0, 2.0,481,240.5 6.682857142857143,5,a-sust-i4,2022-23,Medford - John J. McGlynn Middle School,01760320, 0.0, .0, 2.8, .0, .0, .0, 2.8,461,164.64285714285717 6.742068965517241,5,a-sust-i4,2022-23,Medford - Madeleine Dugger Andrews,01760315, 0.0, .0, 2.9, .0, .0, .0, 2.9,456,157.24137931034483 @@ -2828,7 +2828,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.186666666666666,5,a-sust-i4,2022-23,Milford - Brookside,01850065, 2.4, .0, .0, .0, .0, .0, 2.4,544,226.66666666666669 6.4896,5,a-sust-i4,2022-23,Milford - Memorial,01850010, 2.5, .0, .0, .0, .0, .0, 2.5,472,188.8 5.416585365853658,5,a-sust-i4,2022-23,Milford - Milford High,01850505, 0.0, .0, .0, 3.8, .0, .3, 4.1,1324,322.9268292682927 --Infinity,1,a-sust-i4,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity +NA,NA,a-sust-i4,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity 6.5285714285714285,5,a-sust-i4,2022-23,Milford - Stacy Middle,01850305, 0.0, .0, 5.6, .0, .0, .0, 5.6,1030,183.92857142857144 6.906666666666667,5,a-sust-i4,2022-23,Milford - Woodland,01850090, 0.0, 6.9, .0, .0, .0, .0, 6.9,943,136.66666666666666 6.128888888888889,5,a-sust-i4,2022-23,Millbury - Elmwood Street,01860017, 1.8, .0, .0, .0, .0, .0, 1.8,421,233.88888888888889 @@ -2837,7 +2837,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.943333333333333,5,a-sust-i4,2022-23,Millis - Clyde F Brown,01870005, 1.3, 1.1, .0, .0, .0, .0, 2.4,617,257.08333333333337 5.913333333333333,5,a-sust-i4,2022-23,Millis - Millis High School,01870505, 0.0, .0, .0, .0, 1.2, .0, 1.2,313,260.83333333333337 6.2,5,a-sust-i4,2022-23,Millis - Millis Middle,01870020, 0.0, .0, 1.0, .0, .2, .0, 1.2,270,225.0 --Infinity,1,a-sust-i4,2022-23,Millis - TIES,01870515, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity +NA,NA,a-sust-i4,2022-23,Millis - TIES,01870515, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity 6.609454545454546,5,a-sust-i4,2022-23,Milton - Charles S Pierce Middle,01890410, 0.0, .0, 5.5, .0, .0, .0, 5.5,956,173.8181818181818 5.251764705882353,5,a-sust-i4,2022-23,Milton - Collicot,01890005, 0.8, .9, .0, .0, .0, .0, 1.7,584,343.5294117647059 5.611428571428571,5,a-sust-i4,2022-23,Milton - Cunningham School,01890007, 1.3, .9, .0, .0, .0, .0, 2.1,627,298.57142857142856 @@ -2940,7 +2940,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.497777777777777,5,a-sust-i4,2022-23,Newton - Lincoln-Eliot,02070070, 0.9, .9, .0, .0, .0, .0, 1.8,338,187.77777777777777 6.602105263157895,5,a-sust-i4,2022-23,Newton - Mason-Rice,02070080, 1.0, 1.0, .0, .0, .0, .0, 1.9,332,174.73684210526318 6.412,5,a-sust-i4,2022-23,Newton - Memorial Spaulding,02070105, 1.0, 1.0, .0, .0, .0, .0, 2.0,397,198.5 --Infinity,1,a-sust-i4,2022-23,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,186,Infinity +NA,NA,a-sust-i4,2022-23,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,186,Infinity 6.303838383838383,5,a-sust-i4,2022-23,Newton - Newton North High,02070505, 0.0, .0, .0, 9.8, .0, .1, 9.9,2099,212.02020202020202 6.291162790697674,5,a-sust-i4,2022-23,Newton - Newton South High,02070510, 0.0, .0, .0, 8.5, .0, .1, 8.6,1837,213.6046511627907 6.718048780487805,5,a-sust-i4,2022-23,Newton - Oak Hill Middle,02070320, 0.0, .0, 4.1, .0, .0, .0, 4.1,657,160.2439024390244 @@ -2950,7 +2950,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.376,5,a-sust-i4,2022-23,Newton - Zervas,02070130, 1.0, 1.1, .0, .0, .0, .0, 2.0,406,203.0 6.546206896551725,5,a-sust-i4,2022-23,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.9, 1.0, .0, .0, .0, 2.9,527,181.72413793103448 5.698823529411765,5,a-sust-i4,2022-23,Norfolk - H Olive Day,02080015, 1.7, .0, .0, .0, .0, .0, 1.7,489,287.6470588235294 --Infinity,1,a-sust-i4,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,580,Infinity +NA,NA,a-sust-i4,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,580,Infinity 7.088,5,a-sust-i4,2022-23,North Adams - Brayton,02090035, 0.7, .7, .2, .0, .4, .0, 2.0,228,114.0 7.182608695652174,5,a-sust-i4,2022-23,North Adams - Colegrove Park Elementary,02090008, 0.9, .9, .3, .0, .3, .0, 2.3,235,102.17391304347827 6.3566666666666665,5,a-sust-i4,2022-23,North Adams - Drury High,02090505, 0.0, .0, .8, .0, 1.6, .0, 2.4,493,205.41666666666669 @@ -2968,7 +2968,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.168,5,a-sust-i4,2022-23,North Attleborough - Falls,02120010, 0.5, .5, .0, .0, .0, .0, 1.0,229,229.0 5.856,5,a-sust-i4,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.9, 1.1, .0, .0, .0, .0, 2.0,536,268.0 6.032,5,a-sust-i4,2022-23,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 4.5, .0, .0, 4.5,1107,246.0 --Infinity,1,a-sust-i4,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity +NA,NA,a-sust-i4,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity 5.362758620689655,5,a-sust-i4,2022-23,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, 2.9, .0, .0, .0, 2.9,956,329.65517241379314 6.008,5,a-sust-i4,2022-23,North Attleborough - Roosevelt Avenue,02120015, 0.5, .6, .0, .0, .0, .0, 1.0,249,249.0 3.973333333333333,3.97,a-sust-i4,2022-23,North Brookfield - North Brookfield Elementary,02150015, 0.1, .0, .0, .0, .5, .0, 0.6,302,503.33333333333337 @@ -2978,7 +2978,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.900571428571428,5,a-sust-i4,2022-23,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.2, 2.3, .0, .0, .0, 3.5,481,137.42857142857142 6.778039215686275,5,a-sust-i4,2022-23,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .0, 5.1, .0, .0, 5.1,779,152.7450980392157 5.905,5,a-sust-i4,2022-23,North Middlesex - Spaulding Memorial,07350005, 1.0, .6, .0, .0, .0, .0, 1.6,419,261.875 --Infinity,1,a-sust-i4,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 5.468,5,a-sust-i4,2022-23,North Middlesex - Varnum Brook,07350035, 1.2, .8, .0, .0, .0, .0, 2.0,633,316.5 6.385,5,a-sust-i4,2022-23,North Reading - E Ethel Little School,02170003, 0.8, .8, .0, .0, .0, .0, 1.6,323,201.875 5.957333333333333,5,a-sust-i4,2022-23,North Reading - J Turner Hood,02170010, 0.8, .8, .0, .0, .0, .0, 1.5,383,255.33333333333334 @@ -3001,8 +3001,8 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.094,5,a-sust-i4,2022-23,Northbridge - Northbridge Elementary School,02140001, 2.1, 1.9, .0, .0, .0, .0, 4.0,953,238.25 6.92,5,a-sust-i4,2022-23,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 3.4, .4, .0, 3.8,513,135.0 6.717333333333333,5,a-sust-i4,2022-23,Northbridge - Northbridge Middle,02140305, 0.0, .0, 3.0, .0, .0, .0, 3.0,481,160.33333333333334 --Infinity,1,a-sust-i4,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1292,Infinity --Infinity,1,a-sust-i4,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,537,Infinity +NA,NA,a-sust-i4,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1292,Infinity +NA,NA,a-sust-i4,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,537,Infinity 5.78,5,a-sust-i4,2022-23,Norton - Henri A. Yelle,02180060, 0.0, 1.2, .0, .0, .0, .0, 1.2,333,277.5 4.2690909090909095,4.27,a-sust-i4,2022-23,Norton - J C Solmonese,02180015, 0.9, .3, .0, .0, .0, .0, 1.1,513,466.3636363636363 5.688,5,a-sust-i4,2022-23,Norton - L G Nourse Elementary,02180010, 0.8, .2, .0, .0, .0, .0, 1.0,289,289.0 @@ -3021,7 +3021,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.625,5,a-sust-i4,2022-23,Norwood - John P Oldham,02200020, 0.5, .5, .0, .0, .0, .6, 1.6,275,171.875 6.72406779661017,5,a-sust-i4,2022-23,Norwood - Norwood High,02200505, 0.0, .0, .0, 5.9, .0, .0, 5.9,941,159.4915254237288 6.748571428571428,5,a-sust-i4,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.7, .6, .7, .0, .8, .0, 2.8,438,156.42857142857144 --Infinity,1,a-sust-i4,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,561,Infinity +NA,NA,a-sust-i4,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,561,Infinity 6.48,5,a-sust-i4,2022-23,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 1.8, 1.5, .0, 3.3,627,190.0 6.869333333333333,5,a-sust-i4,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 3.0, .0, .0, .0, 3.0,424,141.33333333333334 7.048,5,a-sust-i4,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 2.0, 1.0, .0, .0, .0, .0, 3.0,357,119.0 @@ -3035,7 +3035,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.208,3.21,a-sust-i4,2022-23,Palmer - Old Mill Pond,02270008, 0.5, .5, .0, .0, .0, .0, 1.0,599,599.0 7.144,5,a-sust-i4,2022-23,Palmer - Palmer High,02270505, 0.0, .0, 2.0, 3.0, .0, .0, 5.0,535,107.0 4.988235294117647,4.99,a-sust-i4,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, .0, .0, 1.7, .0, .0, 1.7,640,376.47058823529414 --Infinity,1,a-sust-i4,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"","",Not Reported,"","","","",261,Infinity +NA,NA,a-sust-i4,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"","",Not Reported,"","","","",261,Infinity 5.493333333333333,5,a-sust-i4,2022-23,Peabody - Captain Samuel Brown,02290005, 0.4, .8, .0, .0, .0, .0, 1.2,376,313.33333333333337 5.9011764705882355,5,a-sust-i4,2022-23,Peabody - Center,02290015, 0.8, .9, .0, .0, .0, .0, 1.7,446,262.3529411764706 6.205333333333333,5,a-sust-i4,2022-23,Peabody - J Henry Higgins Middle,02290305, 0.0, .0, 6.0, .0, .0, .0, 6.0,1346,224.33333333333334 @@ -3060,9 +3060,9 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.796923076923077,5,a-sust-i4,2022-23,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, .7, .0, .0, .6, 1.3,358,275.38461538461536 6.181538461538462,5,a-sust-i4,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, .7, .0, 1.9, 2.6,591,227.3076923076923 2.96,2.96,a-sust-i4,2022-23,Petersham - Petersham Center,02340005, 0.1, .1, .0, .0, .0, .0, 0.2,126,630.0 --Infinity,1,a-sust-i4,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,203,Infinity --Infinity,1,a-sust-i4,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,125,Infinity --Infinity,1,a-sust-i4,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,166,Infinity +NA,NA,a-sust-i4,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,203,Infinity +NA,NA,a-sust-i4,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,125,Infinity +NA,NA,a-sust-i4,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,166,Infinity 6.638260869565217,5,a-sust-i4,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.0, 1.2, 1.5, .3, .6, .0, 4.6,783,170.21739130434784 6.578461538461539,5,a-sust-i4,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 1.0, .0, .4, .0, 1.2, .0, 2.6,462,177.69230769230768 6.368,5,a-sust-i4,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 0.5, .4, .1, .0, .0, .0, 1.0,204,204.0 @@ -3072,13 +3072,13 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.784827586206896,5,a-sust-i4,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, .0, .6, .1, 13.8, .0, 14.5,390,26.896551724137932 6.635,5,a-sust-i4,2022-23,Pittsfield - Allendale,02360010, 0.6, .6, .0, .0, .0, .4, 1.6,273,170.625 6.9714285714285715,5,a-sust-i4,2022-23,Pittsfield - Crosby,02360065, 1.0, 1.0, .0, .0, .0, .1, 2.1,270,128.57142857142856 --Infinity,1,a-sust-i4,2022-23,Pittsfield - Crosby Educational Academy,02360030, 0.0, .0, .0, .0, .0, .0, 0.0,17,Infinity +NA,NA,a-sust-i4,2022-23,Pittsfield - Crosby Educational Academy,02360030, 0.0, .0, .0, .0, .0, .0, 0.0,17,Infinity 7.737142857142857,5,a-sust-i4,2022-23,Pittsfield - Eagle Education Academy,02360525, 0.0, .0, .0, .3, .3, .0, 0.7,23,32.85714285714286 6.09,5,a-sust-i4,2022-23,Pittsfield - Egremont,02360035, 0.7, .8, .0, .0, .0, .1, 1.6,382,238.75 6.875,5,a-sust-i4,2022-23,Pittsfield - John T Reid Middle,02360305, 0.0, .0, 3.2, .0, .0, .0, 3.2,450,140.625 6.907692307692308,5,a-sust-i4,2022-23,Pittsfield - Morningside Community School,02360055, 1.4, 1.1, .0, .0, .0, .1, 2.6,355,136.53846153846155 7.18625,5,a-sust-i4,2022-23,Pittsfield - Pittsfield High,02360505, 0.0, .0, .0, .7, 3.6, 2.0, 6.4,651,101.71875 --Infinity,1,a-sust-i4,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity +NA,NA,a-sust-i4,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity 6.391111111111111,5,a-sust-i4,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.4, .4, .0, .0, .0, .1, 0.9,181,201.11111111111111 5.96,5,a-sust-i4,2022-23,Pittsfield - Silvio O Conte Community,02360105, 0.5, .5, .0, .0, .0, .4, 1.4,357,255.00000000000003 6.44,5,a-sust-i4,2022-23,Pittsfield - Stearns,02360090, 0.4, .4, .0, .0, .0, .4, 1.2,234,195.0 @@ -3094,7 +3094,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.133913043478261,5,a-sust-i4,2022-23,Plymouth - Manomet Elementary,02390015, 0.7, 1.5, .0, .0, .0, .0, 2.3,249,108.2608695652174 6.829714285714286,5,a-sust-i4,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 1.4, 2.1, .0, .0, .0, .0, 3.5,512,146.28571428571428 6.829333333333333,5,a-sust-i4,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 6.0, .0, .0, .0, 6.0,878,146.33333333333334 --Infinity,1,a-sust-i4,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,191,Infinity +NA,NA,a-sust-i4,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,191,Infinity 6.036226415094339,5,a-sust-i4,2022-23,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 5.3, .0, .0, 5.3,1301,245.47169811320757 5.83578947368421,5,a-sust-i4,2022-23,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 3.8, .0, .0, 3.8,1028,270.5263157894737 6.76,5,a-sust-i4,2022-23,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 4.0, .0, .0, .0, 4.0,620,155.0 @@ -3105,17 +3105,17 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.483636363636364,5,a-sust-i4,2022-23,Provincetown - Provincetown Schools,02420020, 0.9, .7, .5, .0, .0, .0, 2.2,142,64.54545454545455 6.528,5,a-sust-i4,2022-23,Quabbin - Hardwick Elementary,07530005, 0.5, .5, .0, .0, .0, .0, 1.0,184,184.0 4.514285714285713,4.51,a-sust-i4,2022-23,Quabbin - Hubbardston Center,07530010, 0.4, .4, .0, .0, .0, .0, 0.7,305,435.7142857142857 --Infinity,1,a-sust-i4,2022-23,Quabbin - New Braintree Grade,07530020, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2022-23,Quabbin - New Braintree Grade,07530020, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 6.011428571428572,5,a-sust-i4,2022-23,Quabbin - Oakham Center,07530025, 0.3, .4, .0, .0, .0, .0, 0.7,174,248.57142857142858 6.808421052631579,5,a-sust-i4,2022-23,Quabbin - Quabbin Regional High School,07530505, 0.0, .0, .0, 3.3, .5, .0, 3.8,566,148.94736842105263 4.24,4.24,a-sust-i4,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 0.0, .0, 1.1, .0, .0, .0, 1.1,517,469.99999999999994 4.896,4.9,a-sust-i4,2022-23,Quabbin - Ruggles Lane,07530030, 0.5, .5, .0, .0, .0, .0, 1.0,388,388.0 --Infinity,1,a-sust-i4,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.651428571428571,5,a-sust-i4,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 0.0, .0, .0, .0, 2.1, .0, 2.1,354,168.57142857142856 5.97,5,a-sust-i4,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, .8, .0, .0, .0, 0.8,203,253.75 -0.533333333333334,1,a-sust-i4,2022-23,Quaboag Regional - Warren Elementary,07780005, 0.1, .1, .0, .0, .0, .0, 0.3,320,1066.6666666666667 -2.28,1,a-sust-i4,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0.1, .1, .0, .0, .0, .0, 0.2,257,1285.0 --Infinity,1,a-sust-i4,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,165,Infinity +NA,NA,a-sust-i4,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,165,Infinity 5.074285714285714,5,a-sust-i4,2022-23,Quincy - Atherton Hough,02430040, 0.2, .5, .0, .0, .0, .0, 0.7,256,365.7142857142857 6.236800000000001,5,a-sust-i4,2022-23,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.5, .0, .0, .0, 2.5,551,220.4 5.8,5,a-sust-i4,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 0.6, .6, .0, .0, .0, .0, 1.2,330,275.0 @@ -3180,10 +3180,10 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.105454545454546,5,a-sust-i4,2022-23,Salem - Carlton,02580015, 1.0, 1.2, .0, .0, .0, .0, 2.2,246,111.81818181818181 6.805853658536585,5,a-sust-i4,2022-23,Salem - Collins Middle,02580305, 0.0, .0, 4.1, .0, .0, .0, 4.1,612,149.26829268292684 6.868571428571428,5,a-sust-i4,2022-23,Salem - Horace Mann Laboratory,02580030, 1.1, 1.0, .0, .0, .0, .0, 2.1,297,141.42857142857142 --Infinity,1,a-sust-i4,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity --Infinity,1,a-sust-i4,2022-23,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity +NA,NA,a-sust-i4,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity +NA,NA,a-sust-i4,2022-23,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity 6.985142857142857,5,a-sust-i4,2022-23,Salem - Salem High,02580505, 0.0, .0, .0, 6.8, .2, .0, 7.0,888,126.85714285714286 --Infinity,1,a-sust-i4,2022-23,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity +NA,NA,a-sust-i4,2022-23,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity 6.487619047619048,5,a-sust-i4,2022-23,Salem - Saltonstall School,02580050, 0.5, .6, 1.0, .0, .0, .0, 2.1,397,189.04761904761904 6.266666666666667,5,a-sust-i4,2022-23,Salem - Witchcraft Heights,02580070, 1.0, 1.1, .0, .0, .0, .0, 2.1,455,216.66666666666666 5.826666666666666,5,a-sust-i4,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, .0, .8, 1.0, .0, .0, 1.8,489,271.6666666666667 @@ -3205,20 +3205,20 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.176,5,a-sust-i4,2022-23,Seekonk - George R Martin,02650007, 1.0, 1.0, .0, .0, .0, .0, 2.0,456,228.0 5.684,5,a-sust-i4,2022-23,Seekonk - Mildred Aitken School,02650015, 1.2, .8, .0, .0, .0, .0, 2.0,579,289.5 5.868,5,a-sust-i4,2022-23,Seekonk - Seekonk High,02650505, 0.0, .0, .0, 2.0, .0, .0, 2.0,533,266.5 --Infinity,1,a-sust-i4,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, .0, .0, .0, .0, .0, 0.0,4,Infinity +NA,NA,a-sust-i4,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, .0, .0, .0, .0, .0, 0.0,4,Infinity 6.469565217391304,5,a-sust-i4,2022-23,Sharon - Cottage Street,02660005, 0.9, 1.5, .0, .0, .0, .0, 2.3,440,191.30434782608697 6.221818181818182,5,a-sust-i4,2022-23,Sharon - East Elementary,02660010, 0.7, 1.6, .0, .0, .0, .0, 2.2,489,222.27272727272725 6.374285714285714,5,a-sust-i4,2022-23,Sharon - Heights Elementary,02660015, 1.0, 1.7, .0, .0, .0, .0, 2.8,569,203.21428571428572 --Infinity,1,a-sust-i4,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity +NA,NA,a-sust-i4,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity 6.3671428571428565,5,a-sust-i4,2022-23,Sharon - Sharon High,02660505, 0.0, .0, .0, .1, 5.5, .0, 5.6,1143,204.10714285714286 6.792857142857143,5,a-sust-i4,2022-23,Sharon - Sharon Middle,02660305, 0.0, .0, 5.6, .0, .0, .0, 5.6,845,150.89285714285714 --Infinity,1,a-sust-i4,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1292,Infinity +NA,NA,a-sust-i4,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1292,Infinity 6.217777777777777,5,a-sust-i4,2022-23,Sherborn - Pine Hill,02690010, 0.9, .9, .0, .0, .0, .0, 1.8,401,222.77777777777777 6.588571428571428,5,a-sust-i4,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 0.8, .6, .0, .0, .0, .0, 1.4,247,176.42857142857144 6.403076923076923,5,a-sust-i4,2022-23,Shrewsbury - Floral Street School,02710020, 1.4, 1.2, .0, .0, .0, .0, 2.6,519,199.6153846153846 6.523636363636364,5,a-sust-i4,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 1.8, 1.4, .0, .0, .0, .0, 3.3,609,184.54545454545456 5.302857142857143,5,a-sust-i4,2022-23,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 2.8, .0, .0, .0, 2.8,944,337.14285714285717 --Infinity,1,a-sust-i4,2022-23,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,203,Infinity +NA,NA,a-sust-i4,2022-23,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,203,Infinity 6.4832,5,a-sust-i4,2022-23,Shrewsbury - Sherwood Middle School,02710305, 0.0, 2.3, 2.6, .0, .0, .0, 5.0,948,189.6 6.105974025974026,5,a-sust-i4,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, .0, .0, .4, 7.4, .0, 7.7,1823,236.75324675324674 6.357333333333333,5,a-sust-i4,2022-23,Shrewsbury - Spring Street School,02710035, 0.8, .7, .0, .0, .0, .0, 1.5,308,205.33333333333334 @@ -3249,7 +3249,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.260869565217391,5,a-sust-i4,2022-23,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .4, 2.0, .0, 2.3,500,217.3913043478261 3.79,3.79,a-sust-i4,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, 1.6, .0, .0, 1.6,842,526.25 6.126222222222222,5,a-sust-i4,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 1.2, 1.3, 1.2, .8, .0, .0, 4.5,1054,234.22222222222223 --Infinity,1,a-sust-i4,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,653,Infinity +NA,NA,a-sust-i4,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,653,Infinity 6.092,5,a-sust-i4,2022-23,Southampton - William E Norris,02750005, 0.9, .8, .3, .0, .0, .0, 2.0,477,238.5 6.35076923076923,5,a-sust-i4,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 0.5, .5, .0, .0, .3, .0, 1.3,268,206.15384615384616 7.288,5,a-sust-i4,2022-23,Southborough - Margaret A Neary,02760020, 0.0, 3.0, .0, .0, .0, .0, 3.0,267,89.0 @@ -3261,12 +3261,12 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.062564102564102,5,a-sust-i4,2022-23,Southbridge - Southbridge High School,02770515, 0.0, .0, .0, 3.9, .0, .0, 3.9,457,117.17948717948718 6.704,5,a-sust-i4,2022-23,Southbridge - Southbridge Middle School,02770315, 0.0, .0, 2.5, .0, .0, .0, 2.5,405,162.0 6.66,5,a-sust-i4,2022-23,Southbridge - West Street,02770020, 0.5, 1.5, .0, .0, .0, .0, 2.0,335,167.5 --Infinity,1,a-sust-i4,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1558,Infinity +NA,NA,a-sust-i4,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1558,Infinity 7.216,5,a-sust-i4,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 0.0, .0, 1.0, 2.0, .0, .0, 3.0,294,98.0 6.944,5,a-sust-i4,2022-23,Southern Berkshire - New Marlborough Central,07650018, 0.3, .2, .0, .0, .0, .0, 0.5,66,132.0 --Infinity,1,a-sust-i4,2022-23,Southern Berkshire - South Egremont,07650030, 0.0, .0, .0, .0, .0, .0, 0.0,13,Infinity +NA,NA,a-sust-i4,2022-23,Southern Berkshire - South Egremont,07650030, 0.0, .0, .0, .0, .0, .0, 0.0,13,Infinity 7.081904761904761,5,a-sust-i4,2022-23,Southern Berkshire - Undermountain,07650035, 0.6, 1.5, .0, .0, .0, .0, 2.1,241,114.76190476190476 --Infinity,1,a-sust-i4,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1185,Infinity +NA,NA,a-sust-i4,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1185,Infinity 6.8184615384615395,5,a-sust-i4,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.9, .7, .0, .0, .0, 2.6,384,147.69230769230768 6.387096774193548,5,a-sust-i4,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, .9, 2.3, .0, .0, 3.1,625,201.61290322580643 6.748,5,a-sust-i4,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 1.8, .0, .0, .0, .2, .0, 2.0,313,156.5 @@ -3277,20 +3277,20 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.264,5,a-sust-i4,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.7, 1.1, .2, .0, .0, .0, 2.0,434,217.0 6.16,5,a-sust-i4,2022-23,Springfield - Alice B Beal Elementary,02810175, 0.6, .8, .0, .0, .0, .0, 1.3,299,230.0 6.762666666666667,5,a-sust-i4,2022-23,Springfield - Arthur T Talmadge,02810165, 0.5, .8, .0, .0, .1, .0, 1.5,232,154.66666666666666 --Infinity,1,a-sust-i4,2022-23,Springfield - Balliet Preschool,02810003, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Balliet Preschool,02810003, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity 6.287272727272728,5,a-sust-i4,2022-23,Springfield - Brightwood,02810025, 0.8, 1.1, .0, .0, .3, .0, 2.2,471,214.09090909090907 6.313846153846154,5,a-sust-i4,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, 1.3, .0, .0, .0, 1.3,274,210.76923076923077 7.5975,5,a-sust-i4,2022-23,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 3.1, 1.1, 1.4, .8, 6.4,322,50.3125 6.572,5,a-sust-i4,2022-23,Springfield - Daniel B Brunton,02810035, 0.9, 1.1, .0, .0, .0, .0, 2.0,357,178.5 --Infinity,1,a-sust-i4,2022-23,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,179,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,179,Infinity 5.796,5,a-sust-i4,2022-23,Springfield - Edward P. Boland School,02810010, 0.9, 1.1, .0, .0, .0, .0, 2.0,551,275.5 7.136,5,a-sust-i4,2022-23,Springfield - Elias Brookings,02810030, 0.8, 1.1, .0, .0, .6, .0, 2.5,270,108.0 --Infinity,1,a-sust-i4,2022-23,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity 5.184,5,a-sust-i4,2022-23,Springfield - Forest Park Middle,02810325, 0.0, .0, 1.0, .0, .0, .0, 1.0,352,352.0 6.892,5,a-sust-i4,2022-23,Springfield - Frank H Freedman,02810075, 1.0, 1.0, .0, .0, .0, .0, 2.0,277,138.5 5.979130434782608,5,a-sust-i4,2022-23,Springfield - Frederick Harris,02810080, 0.8, 1.2, .0, .0, .4, .0, 2.3,581,252.60869565217394 --Infinity,1,a-sust-i4,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity --Infinity,1,a-sust-i4,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity 5.644,5,a-sust-i4,2022-23,Springfield - German Gerena Community School,02810195, 0.9, .9, .0, .0, .2, .0, 2.0,589,294.5 6.998260869565217,5,a-sust-i4,2022-23,Springfield - Glenwood,02810065, 0.8, 1.2, .0, .0, .4, .0, 2.3,288,125.21739130434784 6.686315789473684,5,a-sust-i4,2022-23,Springfield - Glickman Elementary,02810068, 0.5, .8, .0, .0, .5, .0, 1.9,312,164.21052631578948 @@ -3307,7 +3307,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.996,5,a-sust-i4,2022-23,Springfield - Liberty,02810115, 0.8, 1.2, .0, .0, .0, .0, 2.0,251,125.5 7.36,5,a-sust-i4,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .1, .0, .0, 0.1,8,80.0 6.764137931034483,5,a-sust-i4,2022-23,Springfield - Lincoln,02810120, 1.3, 1.6, .0, .0, .0, .0, 2.9,448,154.48275862068965 --Infinity,1,a-sust-i4,2022-23,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,160,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,160,Infinity 6.51,5,a-sust-i4,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.7, .9, .0, .0, .0, .0, 1.6,298,186.25 6.832,5,a-sust-i4,2022-23,Springfield - Mary M Lynch,02810140, 0.6, .9, .0, .0, .0, .0, 1.5,219,146.0 6.956,5,a-sust-i4,2022-23,Springfield - Mary M Walsh,02810155, 0.6, .9, .0, .0, .5, .0, 2.0,261,130.5 @@ -3327,10 +3327,10 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.665454545454546,5,a-sust-i4,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, .0, 1.1, .0, .0, .0, 1.1,321,291.8181818181818 7.6,5,a-sust-i4,2022-23,Springfield - Springfield Middle School,02810360, 0.0, .0, .4, .0, .0, .0, 0.4,20,50.0 7.803076923076923,5,a-sust-i4,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 0.0, .0, .0, .0, 1.3, .0, 1.3,32,24.615384615384613 --Infinity,1,a-sust-i4,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity 7.417142857142857,5,a-sust-i4,2022-23,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, .7, .0, .0, .0, 0.7,51,72.85714285714286 -2.64,1,a-sust-i4,2022-23,Springfield - Springfield Realization Academy,02810335, 0.0, .0, .1, .0, .0, .0, 0.1,133,1330.0 --Infinity,1,a-sust-i4,2022-23,Springfield - Springfield Transition Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity +NA,NA,a-sust-i4,2022-23,Springfield - Springfield Transition Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity 6.16,5,a-sust-i4,2022-23,Springfield - Sumner Avenue,02810160, 0.6, .9, .0, .0, .6, .0, 2.0,460,230.0 6.197142857142857,5,a-sust-i4,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.4, 1.1, .0, .3, 2.8,631,225.35714285714286 7.18095238095238,5,a-sust-i4,2022-23,Springfield - The Springfield Virtual School,02810705, 0.2, .5, .0, .2, 3.3, .0, 4.2,430,102.38095238095238 @@ -3347,7 +3347,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.35764705882353,5,a-sust-i4,2022-23,Stoneham - South,02840030, 1.0, .7, .0, .0, .0, .0, 1.7,349,205.29411764705884 6.644,5,a-sust-i4,2022-23,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.1, 2.9, .0, .0, .0, 4.0,678,169.5 6.165925925925926,5,a-sust-i4,2022-23,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 2.7, .0, 2.7,619,229.25925925925924 --Infinity,1,a-sust-i4,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity +NA,NA,a-sust-i4,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity 6.75764705882353,5,a-sust-i4,2022-23,Stoughton - Helen Hansen Elementary,02850010, 0.6, .6, .0, .0, .5, .0, 1.7,264,155.29411764705884 6.786086956521739,5,a-sust-i4,2022-23,Stoughton - Joseph H Gibbons,02850025, 0.9, .9, .0, .0, .5, .0, 2.3,349,151.73913043478262 6.784,5,a-sust-i4,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 1.0, 1.0, .0, .0, .5, .0, 2.5,380,152.0 @@ -3381,18 +3381,18 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.476923076923077,3.48,a-sust-i4,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.8, 1.1, 1.8, 1.6, .0, .0, 5.2,2940,565.3846153846154 6.530666666666667,5,a-sust-i4,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,551,183.66666666666666 6.871666666666666,5,a-sust-i4,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, 4.7, .0, .2, 4.8,677,141.04166666666669 --Infinity,1,a-sust-i4,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,524,Infinity +NA,NA,a-sust-i4,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,524,Infinity 5.566666666666666,5,a-sust-i4,2022-23,Taunton - Benjamin Friedman Middle,02930315, 0.0, .7, 1.7, .0, .0, .0, 2.4,730,304.1666666666667 5.631111111111111,5,a-sust-i4,2022-23,Taunton - East Taunton Elementary,02930010, 1.1, .7, .0, .0, .0, .0, 1.8,533,296.1111111111111 7.366666666666666,5,a-sust-i4,2022-23,Taunton - Edmund Hatch Bennett,02930007, 2.4, 1.3, .0, .0, .0, .0, 3.6,285,79.16666666666667 --Infinity,1,a-sust-i4,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,252,Infinity +NA,NA,a-sust-i4,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,252,Infinity 4.44923076923077,4.45,a-sust-i4,2022-23,Taunton - Elizabeth Pole,02930027, 0.8, .5, .0, .0, .0, .0, 1.3,577,443.8461538461538 5.41,5,a-sust-i4,2022-23,Taunton - H H Galligan,02930057, 0.5, .3, .0, .0, .0, .0, 0.8,259,323.75 6.2084210526315795,5,a-sust-i4,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 2.2, 1.6, .0, .0, .0, .0, 3.8,851,223.94736842105263 6.536296296296297,5,a-sust-i4,2022-23,Taunton - John F Parker Middle,02930305, 0.0, .9, 1.8, .0, .0, .0, 2.7,494,182.96296296296296 4.376,4.38,a-sust-i4,2022-23,Taunton - Joseph C Chamberlain,02930008, 0.6, .4, .0, .0, .0, .0, 1.0,453,453.0 5.945600000000001,5,a-sust-i4,2022-23,Taunton - Joseph H Martin,02930042, 0.0, .7, 1.8, .0, .0, .0, 2.5,642,256.8 --Infinity,1,a-sust-i4,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity +NA,NA,a-sust-i4,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity 4.752941176470588,4.75,a-sust-i4,2022-23,Taunton - Taunton High,02930505, 0.0, .0, 1.6, 3.4, 1.7, .0, 6.8,2760,405.88235294117646 4.2057142857142855,4.21,a-sust-i4,2022-23,Tewksbury - Heath-Brook,02950010, 0.7, .0, .0, .0, .0, .0, 0.7,332,474.28571428571433 5.96,5,a-sust-i4,2022-23,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,510,255.0 @@ -3418,8 +3418,8 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.54,5,a-sust-i4,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.7, .6, .7, .0, .0, .0, 2.0,615,307.5 7.377777777777777,5,a-sust-i4,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 0.2, .0, .0, .0, .7, .0, 0.9,70,77.77777777777777 7.11741935483871,5,a-sust-i4,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 0.8, .8, .4, .0, 1.2, .0, 3.1,342,110.32258064516128 --Infinity,1,a-sust-i4,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,769,Infinity --Infinity,1,a-sust-i4,2022-23,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,769,Infinity +NA,NA,a-sust-i4,2022-23,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 5.916,5,a-sust-i4,2022-23,Uxbridge - Taft Early Learning Center,03040005, 1.5, .5, .0, .0, .0, .0, 2.0,521,260.5 6.372413793103449,5,a-sust-i4,2022-23,Uxbridge - Uxbridge High,03040505, 0.0, .0, .6, 2.3, .0, .0, 2.9,590,203.44827586206898 6.68,5,a-sust-i4,2022-23,Uxbridge - Whitin Intermediate,03040405, 0.0, 2.2, .8, .0, .0, .0, 3.0,495,165.0 @@ -3428,7 +3428,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.884,5,a-sust-i4,2022-23,Wachusett - Chocksett Middle School,07750315, 0.0, .6, 1.4, .0, .0, .0, 2.0,279,139.5 6.212,5,a-sust-i4,2022-23,Wachusett - Davis Hill Elementary,07750018, 1.1, .9, .0, .0, .0, .0, 2.0,447,223.5 6.004,5,a-sust-i4,2022-23,Wachusett - Dawson,07750020, 1.2, .8, .0, .0, .0, .0, 2.0,499,249.5 --Infinity,1,a-sust-i4,2022-23,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,130,Infinity +NA,NA,a-sust-i4,2022-23,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,130,Infinity 6.335,5,a-sust-i4,2022-23,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.6, .0, .0, .0, .0, 1.6,333,208.125 6.688,5,a-sust-i4,2022-23,Wachusett - Houghton Elementary,07750027, 1.2, .9, .0, .0, .0, .0, 2.0,328,164.0 6.036,5,a-sust-i4,2022-23,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,491,245.5 @@ -3438,7 +3438,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.11741935483871,5,a-sust-i4,2022-23,Wachusett - Thomas Prince,07750045, 0.9, 1.2, 1.1, .0, .0, .0, 3.1,342,110.32258064516128 6.515384615384615,5,a-sust-i4,2022-23,Wachusett - Wachusett Regional High,07750505, 0.0, .0, .0, 6.0, 4.5, .0, 10.4,1930,185.57692307692307 5.96235294117647,5,a-sust-i4,2022-23,Wakefield - Dolbeare,03050005, 1.0, .7, .0, .0, .0, .0, 1.7,433,254.7058823529412 --Infinity,1,a-sust-i4,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity +NA,NA,a-sust-i4,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity 6.531034482758621,5,a-sust-i4,2022-23,Wakefield - Galvin Middle School,03050310, 0.0, 1.6, 4.2, .0, .0, .0, 5.8,1065,183.6206896551724 5.81,5,a-sust-i4,2022-23,Wakefield - Greenwood,03050020, 0.5, .3, .0, .0, .0, .0, 0.8,219,273.75 7.093698630136986,5,a-sust-i4,2022-23,Wakefield - Wakefield Memorial High,03050505, 0.0, .0, .0, 5.5, 1.8, .0, 7.3,827,113.28767123287672 @@ -3447,7 +3447,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.04,5,a-sust-i4,2022-23,Wales - Wales Elementary,03060005, 0.5, .2, .1, .0, .0, .0, 0.8,96,120.0 7.138285714285714,5,a-sust-i4,2022-23,Walpole - Bird Middle,03070305, 0.0, .0, 3.5, .0, .0, .0, 3.5,377,107.71428571428571 4.736,4.74,a-sust-i4,2022-23,Walpole - Boyden,03070010, 0.6, .4, .0, .0, .0, .0, 1.0,408,408.0 --Infinity,1,a-sust-i4,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity +NA,NA,a-sust-i4,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity 7.046857142857143,5,a-sust-i4,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 3.5, .0, .0, .0, 3.5,417,119.14285714285714 6.244,5,a-sust-i4,2022-23,Walpole - Elm Street School,03070005, 1.2, .8, .0, .0, .0, .0, 2.0,439,219.5 6.096,5,a-sust-i4,2022-23,Walpole - Fisher,03070015, 1.1, .9, .0, .0, .0, .0, 2.0,476,238.0 @@ -3478,7 +3478,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.5771428571428565,5,a-sust-i4,2022-23,Wayland - Claypit Hill School,03150005, 1.2, 1.6, .0, .0, .0, .0, 2.8,498,177.85714285714286 6.737391304347826,5,a-sust-i4,2022-23,Wayland - Happy Hollow School,03150015, 0.7, 1.6, .0, .0, .0, .0, 2.3,363,157.82608695652175 6.075,5,a-sust-i4,2022-23,Wayland - Loker School,03150020, 0.7, 1.0, .0, .0, .0, .0, 1.6,385,240.625 --Infinity,1,a-sust-i4,2022-23,Wayland - The Children's Way Preschool,03150025, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity +NA,NA,a-sust-i4,2022-23,Wayland - The Children's Way Preschool,03150025, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity 6.597446808510639,5,a-sust-i4,2022-23,Wayland - Wayland High School,03150505, 0.0, .0, .0, 4.7, .0, .0, 4.7,824,175.3191489361702 6.896,5,a-sust-i4,2022-23,Wayland - Wayland Middle School,03150305, 0.0, .0, 4.5, .0, .0, .0, 4.5,621,138.0 7.210810810810811,5,a-sust-i4,2022-23,Webster - Bartlett High School,03160505, 0.0, .0, .0, 1.9, .2, 1.5, 3.7,365,98.64864864864865 @@ -3489,7 +3489,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.7323076923076925,5,a-sust-i4,2022-23,Wellesley - John D Hardy,03170020, 0.6, .6, .0, .0, .0, .0, 1.3,206,158.46153846153845 6.88,5,a-sust-i4,2022-23,Wellesley - Joseph E Fiske,03170015, 0.9, 1.1, .0, .0, .0, .0, 2.0,280,140.0 6.332307692307692,5,a-sust-i4,2022-23,Wellesley - Katharine Lee Bates,03170005, 0.7, .6, .0, .0, .0, .0, 1.3,271,208.46153846153845 --Infinity,1,a-sust-i4,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 6.52,5,a-sust-i4,2022-23,Wellesley - Schofield,03170045, 0.9, .9, .0, .0, .0, .0, 1.8,333,185.0 6.724444444444444,5,a-sust-i4,2022-23,Wellesley - Sprague Elementary School,03170048, 0.7, 1.1, .0, .0, .0, .0, 1.8,287,159.44444444444443 7.161818181818182,5,a-sust-i4,2022-23,Wellesley - Wellesley Middle,03170305, 0.0, .0, 8.5, .0, .0, .4, 8.8,922,104.77272727272727 @@ -3507,7 +3507,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.916363636363636,5,a-sust-i4,2022-23,West Springfield - Mittineague,03320030, 0.3, .7, .0, .0, .0, .0, 1.1,149,135.45454545454544 6.058181818181818,5,a-sust-i4,2022-23,West Springfield - Philip G Coburn,03320007, 1.0, 1.3, .0, .0, .0, .0, 2.2,534,242.72727272727272 6.584615384615384,5,a-sust-i4,2022-23,West Springfield - Tatham,03320040, 0.4, .9, .0, .0, .0, .0, 1.3,230,176.9230769230769 --Infinity,1,a-sust-i4,2022-23,West Springfield - West Springfield Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2022-23,West Springfield - West Springfield Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 6.7178378378378385,5,a-sust-i4,2022-23,West Springfield - West Springfield High,03320505, 0.0, .0, .0, .0, 4.0, 3.4, 7.4,1186,160.27027027027026 6.206,5,a-sust-i4,2022-23,West Springfield - West Springfield Middle,03320305, 0.0, .0, 3.8, .0, .0, .2, 4.0,897,224.25 6.1085714285714285,5,a-sust-i4,2022-23,Westborough - Annie E Fales,03210010, 0.9, .4, .0, .0, .0, .0, 1.4,331,236.42857142857144 @@ -3517,7 +3517,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.757894736842105,5,a-sust-i4,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 3.5, .0, .3, .0, 3.8,590,155.26315789473685 6.286545454545454,5,a-sust-i4,2022-23,Westborough - Westborough High,03210505, 0.0, .0, .0, .5, 5.0, .0, 5.5,1178,214.1818181818182 6.64,5,a-sust-i4,2022-23,Westfield - Abner Gibbs,03250020, 0.5, .4, .0, .0, .0, .0, 0.9,153,170.0 --Infinity,1,a-sust-i4,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity +NA,NA,a-sust-i4,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity 6.524444444444445,5,a-sust-i4,2022-23,Westfield - Franklin Ave,03250015, 0.5, .3, .0, .0, .0, .0, 0.9,166,184.44444444444443 5.885714285714286,5,a-sust-i4,2022-23,Westfield - Highland,03250025, 0.8, .6, .0, .0, .0, .0, 1.4,370,264.2857142857143 6.3,5,a-sust-i4,2022-23,Westfield - Munger Hill,03250033, 0.9, .7, .0, .0, .1, .0, 1.6,340,212.5 @@ -3552,11 +3552,11 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.994285714285714,5,a-sust-i4,2022-23,Westwood - Martha Jones,03350017, 0.9, 1.2, .0, .0, .0, .0, 2.1,264,125.71428571428571 6.773333333333333,5,a-sust-i4,2022-23,Westwood - Paul Hanlon,03350015, 0.6, .9, .0, .0, .0, .0, 1.5,230,153.33333333333334 6.836129032258064,5,a-sust-i4,2022-23,Westwood - Westwood High,03350505, 0.0, .0, .0, 6.2, .0, .0, 6.2,902,145.48387096774192 --Infinity,1,a-sust-i4,2022-23,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity +NA,NA,a-sust-i4,2022-23,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity 6.956363636363636,5,a-sust-i4,2022-23,Westwood - William E Sheehan,03350025, 0.8, 1.3, .0, .0, .0, .0, 2.2,287,130.45454545454544 5.498181818181818,5,a-sust-i4,2022-23,Weymouth - Academy Avenue,03360005, 0.5, .6, .0, .0, .0, .0, 1.1,344,312.7272727272727 5.970909090909091,5,a-sust-i4,2022-23,Weymouth - Frederick C Murphy,03360050, 0.5, .6, .0, .0, .0, .0, 1.1,279,253.63636363636363 --Infinity,1,a-sust-i4,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,178,Infinity +NA,NA,a-sust-i4,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,178,Infinity 6.123636363636364,5,a-sust-i4,2022-23,Weymouth - Lawrence W Pingree,03360065, 0.5, .6, .0, .0, .0, .0, 1.1,258,234.54545454545453 6.805,5,a-sust-i4,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, .0, 8.0, .0, .0, .0, 8.0,1195,149.375 6.116363636363636,5,a-sust-i4,2022-23,Weymouth - Ralph Talbot,03360085, 0.5, .6, .0, .0, .0, .0, 1.1,259,235.45454545454544 @@ -3570,7 +3570,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.06,5,a-sust-i4,2022-23,Whitman-Hanson - Indian Head,07800035, 1.2, .8, .0, .0, .0, .0, 2.0,485,242.5 4.592,4.59,a-sust-i4,2022-23,Whitman-Hanson - John H Duval,07800030, 0.5, .5, .0, .0, .0, .0, 1.0,426,426.0 6.072,5,a-sust-i4,2022-23,Whitman-Hanson - Louise A Conley,07800010, 1.0, 1.0, .0, .0, .0, .0, 2.0,482,241.0 --Infinity,1,a-sust-i4,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 5.698947368421052,5,a-sust-i4,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, .0, .0, .2, .8, 2.8, 3.8,1093,287.63157894736844 6.32,5,a-sust-i4,2022-23,Whitman-Hanson - Whitman Middle,07800310, 0.0, .0, 2.4, .0, .0, .0, 2.4,504,210.0 -2.216,1,a-sust-i4,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, .0, .0, .0, 1.0, .0, 1.0,1277,1277.0 @@ -3583,11 +3583,11 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.798095238095239,5,a-sust-i4,2022-23,Wilmington - Wilmington Middle School,03420330, 0.0, .0, 4.2, .0, .0, .0, 4.2,631,150.23809523809524 6.6923076923076925,5,a-sust-i4,2022-23,Wilmington - Woburn Street,03420020, 1.9, .7, .0, .0, .0, .0, 2.6,425,163.46153846153845 7.722608695652174,5,a-sust-i4,2022-23,Winchendon - Memorial,03430040, 9.2, .0, .0, .0, .0, .0, 9.2,319,34.673913043478265 --Infinity,1,a-sust-i4,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity +NA,NA,a-sust-i4,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity 6.948,5,a-sust-i4,2022-23,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .2, 1.8, .0, 2.0,263,131.5 5.848,5,a-sust-i4,2022-23,Winchendon - Murdock Middle School,03430315, 0.0, .0, .8, .0, .3, .0, 1.0,269,269.0 6.824,5,a-sust-i4,2022-23,Winchendon - Toy Town Elementary,03430050, 0.0, 2.0, .0, .0, .0, .0, 2.0,294,147.0 --Infinity,1,a-sust-i4,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,72,Infinity +NA,NA,a-sust-i4,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,72,Infinity 5.24,5,a-sust-i4,2022-23,Winchester - Ambrose Elementary,03440045, 0.4, .6, .0, .0, .0, .0, 1.0,345,345.0 6.542222222222223,5,a-sust-i4,2022-23,Winchester - Lincoln Elementary,03440005, 0.7, 1.1, .0, .0, .0, .0, 1.8,328,182.22222222222223 6.354782608695652,5,a-sust-i4,2022-23,Winchester - Lynch Elementary,03440020, 0.8, 1.5, .0, .0, .0, .0, 2.3,473,205.6521739130435 @@ -3628,7 +3628,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.927619047619047,5,a-sust-i4,2022-23,Worcester - Gates Lane,03480110, 0.9, 1.0, .1, .0, .0, .0, 2.1,544,259.04761904761904 6.618181818181818,5,a-sust-i4,2022-23,Worcester - Goddard School/Science Technical,03480100, 1.0, 1.0, .2, .0, .0, .0, 2.2,380,172.72727272727272 5.722666666666666,5,a-sust-i4,2022-23,Worcester - Grafton Street,03480115, 0.7, .6, .2, .0, .0, .0, 1.5,427,284.6666666666667 --Infinity,1,a-sust-i4,2022-23,Worcester - Head Start,03480002, 0.0, .0, .0, .0, .0, .0, 0.0,407,Infinity +NA,NA,a-sust-i4,2022-23,Worcester - Head Start,03480002, 0.0, .0, .0, .0, .0, .0, 0.0,407,Infinity 5.813333333333334,5,a-sust-i4,2022-23,Worcester - Heard Street,03480136, 0.4, .4, .1, .0, .0, .0, 0.9,246,273.3333333333333 6.016,5,a-sust-i4,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 0.9, .5, .2, .0, .0, .0, 1.5,372,248.0 6.624,5,a-sust-i4,2022-23,Worcester - La Familia Dual Language School,03480025, 0.7, .2, .1, .0, .0, .0, 1.0,172,172.0 @@ -3659,7 +3659,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.446315789473684,5,a-sust-i4,2022-23,Wrentham - Charles E Roderick,03500010, 0.0, .6, .3, .0, 1.0, .0, 1.9,369,194.21052631578948 5.672,5,a-sust-i4,2022-23,Wrentham - Delaney,03500003, 1.6, .4, .0, .0, .0, .0, 2.0,582,291.0 6.732444444444444,5,a-sust-i4,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 1.5, 3.1, 2.8, .0, .1, 9.0,1426,158.44444444444446 --Infinity,1,a-sust-i4,2021-22,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity +NA,NA,a-sust-i4,2021-22,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity 5.961739130434782,5,a-sust-i4,2021-22,Abington - Abington High,00010505, 0.0, .0, .0, 2.3, .0, .0, 2.3,586,254.7826086956522 6.874782608695652,5,a-sust-i4,2021-22,Abington - Abington Middle School,00010405, 0.0, 1.6, 2.9, .0, .0, .0, 4.6,647,140.6521739130435 4.138181818181818,4.14,a-sust-i4,2021-22,Abington - Beaver Brook Elementary,00010020, 1.1, .0, .0, .0, .0, .0, 1.1,531,482.7272727272727 @@ -3668,7 +3668,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.338536585365853,5,a-sust-i4,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, .6, 7.4, .1, 8.2,1703,207.6829268292683 6.016,5,a-sust-i4,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 0.8, .9, .2, .0, .0, .0, 2.0,496,248.0 6.472,5,a-sust-i4,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 1.0, .7, .3, .0, .0, .0, 2.0,382,191.0 --Infinity,1,a-sust-i4,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity +NA,NA,a-sust-i4,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity 6.388,5,a-sust-i4,2021-22,Acton-Boxborough - Luther Conant School,06000030, 0.8, .9, .2, .0, .0, .0, 2.0,403,201.5 6.2,5,a-sust-i4,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0.8, 1.0, .3, .0, .0, .0, 2.0,450,225.0 6.188,5,a-sust-i4,2021-22,Acton-Boxborough - Merriam School,06000010, 0.8, .9, .3, .0, .0, .0, 2.0,453,226.5 @@ -3677,7 +3677,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.852,5,a-sust-i4,2021-22,Acushnet - Acushnet Elementary School,00030025, 1.1, .9, .0, .0, .0, .0, 2.0,537,268.5 4.816,4.82,a-sust-i4,2021-22,Acushnet - Albert F Ford Middle School,00030305, 0.0, .3, .7, .0, .0, .1, 1.0,398,398.0 6.117073170731707,5,a-sust-i4,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 1.9, 2.1, .0, .0, 4.1,965,235.3658536585366 --Infinity,1,a-sust-i4,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,157,Infinity +NA,NA,a-sust-i4,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,157,Infinity 6.493333333333334,5,a-sust-i4,2021-22,Agawam - Agawam High,00050505, 0.0, .0, .0, 5.4, .0, .0, 5.4,1017,188.33333333333331 7.073600000000001,5,a-sust-i4,2021-22,Agawam - Agawam Junior High,00050405, 0.0, .0, 5.0, .0, .0, .0, 5.0,579,115.8 5.624,5,a-sust-i4,2021-22,Agawam - Benjamin J Phelps,00050020, 0.5, .5, .0, .0, .0, .0, 1.0,297,297.0 @@ -3688,7 +3688,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.921142857142857,5,a-sust-i4,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 3.2, 1.3, 2.5, .0, .0, .0, 7.0,944,134.85714285714286 5.182222222222222,5,a-sust-i4,2021-22,Amesbury - Amesbury Elementary,00070005, 0.6, .3, .0, .0, .0, .0, 0.9,317,352.22222222222223 5.821176470588235,5,a-sust-i4,2021-22,Amesbury - Amesbury High,00070505, 0.0, .0, .0, 1.7, .0, .0, 1.7,463,272.3529411764706 --Infinity,1,a-sust-i4,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.705263157894737,5,a-sust-i4,2021-22,Amesbury - Amesbury Middle,00070013, 0.0, 1.1, 2.7, .0, .0, .0, 3.8,615,161.8421052631579 6.4222222222222225,5,a-sust-i4,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 1.2, .6, .0, .0, .0, .0, 1.8,355,197.22222222222223 7.012413793103448,5,a-sust-i4,2021-22,Amherst - Crocker Farm Elementary,00080009, 0.8, .9, .4, .0, .9, .0, 2.9,358,123.44827586206897 @@ -3702,7 +3702,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.7,5,a-sust-i4,2021-22,Andover - Doherty Middle,00090305, 0.0, .0, 2.8, .0, .0, .0, 2.8,455,162.5 6.859130434782608,5,a-sust-i4,2021-22,Andover - Henry C Sanborn Elementary,00090010, 1.1, 1.2, .0, .0, .0, .0, 2.3,328,142.60869565217394 6.6725,5,a-sust-i4,2021-22,Andover - High Plain Elementary,00090004, 1.6, 1.6, .0, .0, .0, .0, 3.2,531,165.9375 --Infinity,1,a-sust-i4,2021-22,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,77,Infinity +NA,NA,a-sust-i4,2021-22,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,77,Infinity 6.711111111111111,5,a-sust-i4,2021-22,Andover - South Elementary,00090020, 1.2, 1.5, .0, .0, .0, .0, 2.7,435,161.11111111111111 6.861052631578947,5,a-sust-i4,2021-22,Andover - West Elementary,00090025, 1.9, 1.8, .0, .0, .0, .0, 3.8,541,142.3684210526316 7.1866666666666665,5,a-sust-i4,2021-22,Andover - Wood Hill Middle School,00090350, 0.0, .0, 3.6, .0, .0, .0, 3.6,366,101.66666666666666 @@ -3714,7 +3714,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.438095238095238,5,a-sust-i4,2021-22,Arlington - Hardy,00100030, 0.9, 1.1, .0, .0, .1, .0, 2.1,410,195.23809523809524 6.514285714285714,5,a-sust-i4,2021-22,Arlington - John A Bishop,00100005, 0.9, 1.1, .0, .0, .1, .0, 2.1,390,185.7142857142857 6.352727272727273,5,a-sust-i4,2021-22,Arlington - M Norcross Stratton,00100055, 1.1, .9, .0, .0, .2, .0, 2.2,453,205.9090909090909 --Infinity,1,a-sust-i4,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity +NA,NA,a-sust-i4,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity 6.750344827586207,5,a-sust-i4,2021-22,Arlington - Ottoson Middle,00100410, 0.0, .0, 5.8, .0, .0, .0, 5.8,906,156.20689655172416 6.696,5,a-sust-i4,2021-22,Arlington - Peirce,00100045, 1.0, .9, .0, .0, .2, .0, 2.0,326,163.0 6.243478260869565,5,a-sust-i4,2021-22,Arlington - Thompson,00100050, 1.3, .9, .0, .0, .2, .0, 2.3,505,219.56521739130437 @@ -3727,7 +3727,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.203870967741936,5,a-sust-i4,2021-22,Ashland - Ashland Middle,00140405, 0.0, .0, 3.1, .0, .0, .0, 3.1,696,224.51612903225805 5.88,5,a-sust-i4,2021-22,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,636,265.0 4.755,4.76,a-sust-i4,2021-22,Ashland - Henry E Warren Elementary,00140010, 1.6, .0, .0, .0, .0, .0, 1.6,649,405.625 --Infinity,1,a-sust-i4,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,77,Infinity +NA,NA,a-sust-i4,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,77,Infinity 4.038260869565217,4.04,a-sust-i4,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 2.3, .0, .0, 2.3,1139,495.21739130434787 5.66,5,a-sust-i4,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 1.2, .8, .0, .0, .0, .0, 2.0,585,292.5 6.351111111111111,5,a-sust-i4,2021-22,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, 1.8, .0, .0, 1.8,371,206.11111111111111 @@ -3735,11 +3735,11 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.848,5,a-sust-i4,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.4, .4, .1, .0, .0, .0, 1.0,144,144.0 6.723,5,a-sust-i4,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 2.0, 1.6, 1.7, .0, 2.8, .0, 8.0,1277,159.625 6.644,5,a-sust-i4,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 1.2, .8, .0, .0, .0, .0, 2.0,339,169.5 --Infinity,1,a-sust-i4,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity 4.855111111111111,4.86,a-sust-i4,2021-22,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 4.5, .0, .0, 4.5,1769,393.1111111111111 7.2,5,a-sust-i4,2021-22,Attleboro - Attleboro Virtual Academy,00160705, 0.0, .0, .0, .5, .0, .0, 0.5,50,100.0 6.064,5,a-sust-i4,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, .6, 1.9, .0, .0, .0, 2.5,605,242.0 --Infinity,1,a-sust-i4,2021-22,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,180,Infinity +NA,NA,a-sust-i4,2021-22,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,180,Infinity 6.392,5,a-sust-i4,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 1.2, .8, .0, .0, .0, .0, 2.0,402,201.0 6.156,5,a-sust-i4,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 1.2, .8, .0, .0, .0, .0, 2.0,461,230.5 6.148,5,a-sust-i4,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 1.3, .7, .0, .0, .0, .0, 2.0,463,231.5 @@ -3762,7 +3762,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.636,5,a-sust-i4,2021-22,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 4.0, .0, .0, .0, 4.0,682,170.5 5.809230769230769,5,a-sust-i4,2021-22,Barnstable - Barnstable United Elementary School,00200050, 0.0, 2.6, .0, .0, .0, .0, 2.6,712,273.8461538461538 6.353333333333333,5,a-sust-i4,2021-22,Barnstable - Centerville Elementary,00200010, 0.9, .3, .0, .0, .0, .0, 1.2,247,205.83333333333334 --Infinity,1,a-sust-i4,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity +NA,NA,a-sust-i4,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity 6.711111111111111,5,a-sust-i4,2021-22,Barnstable - Hyannis West Elementary,00200025, 1.4, .4, .0, .0, .0, .0, 1.8,290,161.11111111111111 4.786666666666666,4.79,a-sust-i4,2021-22,Barnstable - West Barnstable Elementary,00200005, 0.5, .2, .0, .0, .0, .0, 0.6,241,401.6666666666667 6.496,5,a-sust-i4,2021-22,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,376,188.0 @@ -3776,7 +3776,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.657142857142857,5,a-sust-i4,2021-22,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,205,292.8571428571429 7.088,5,a-sust-i4,2021-22,Belchertown - Jabish Middle School,00240025, 0.0, .0, 3.0, .0, .0, .0, 3.0,342,114.0 6.212,5,a-sust-i4,2021-22,Belchertown - Swift River Elementary,00240018, 1.4, .6, .0, .0, .0, .0, 2.0,447,223.5 --Infinity,1,a-sust-i4,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity +NA,NA,a-sust-i4,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity 6.8096000000000005,5,a-sust-i4,2021-22,Bellingham - Bellingham High School,00250505, 0.0, .0, 1.2, 3.8, .0, .0, 5.0,744,148.8 6.633142857142857,5,a-sust-i4,2021-22,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.5, 2.0, .0, .0, .0, 3.5,598,170.85714285714286 6.432,5,a-sust-i4,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 1.1, .4, .0, .0, .0, .0, 1.5,294,196.0 @@ -3805,7 +3805,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.887619047619047,5,a-sust-i4,2021-22,Beverly - Centerville Elementary,00300010, 1.3, .7, .0, .0, .0, .1, 2.1,292,139.04761904761904 6.419047619047619,5,a-sust-i4,2021-22,Beverly - Cove Elementary,00300015, 1.2, .8, .0, .0, .0, .1, 2.1,415,197.61904761904762 6.697142857142857,5,a-sust-i4,2021-22,Beverly - Hannah Elementary,00300033, 1.2, .8, .0, .0, .0, .1, 2.1,342,162.85714285714286 --Infinity,1,a-sust-i4,2021-22,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,123,Infinity +NA,NA,a-sust-i4,2021-22,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,123,Infinity 7.107096774193549,5,a-sust-i4,2021-22,Beverly - North Beverly Elementary,00300040, 1.8, 1.2, .0, .0, .0, .1, 3.1,346,111.61290322580645 6.522150537634409,5,a-sust-i4,2021-22,Billerica - Billerica Memorial High School,00310505, 0.0, .0, 3.9, 5.5, .0, .0, 9.3,1718,184.7311827956989 6.69,5,a-sust-i4,2021-22,Billerica - Frederick J Dutile,00310007, 1.0, .6, .0, .0, .0, .0, 1.6,262,163.75 @@ -3829,9 +3829,9 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.92,5,a-sust-i4,2021-22,Boston - Bates Elementary School,00350278, 1.2, .4, .0, .0, .0, .0, 1.6,216,135.0 7.32,5,a-sust-i4,2021-22,Boston - Beethoven Elementary School,00350021, 3.0, .0, .0, .0, .0, .0, 3.0,255,85.0 6.744827586206897,5,a-sust-i4,2021-22,Boston - Blackstone Elementary School,00350390, 2.1, .8, .0, .0, .0, .0, 2.9,455,156.89655172413794 --Infinity,1,a-sust-i4,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity 7.691338582677165,5,a-sust-i4,2021-22,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 12.7, .0, .0, 12.7,490,38.58267716535433 --Infinity,1,a-sust-i4,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity 5.69391304347826,5,a-sust-i4,2021-22,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .7, 1.6, .0, .0, 2.3,663,288.26086956521743 4.632,4.63,a-sust-i4,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, .0, .0, 1.0, .0, .0, 1.0,421,421.0 4.790476190476191,4.79,a-sust-i4,2021-22,Boston - Boston Latin Academy,00350545, 0.0, .0, 2.7, 1.4, .0, .0, 4.2,1685,401.19047619047615 @@ -3840,15 +3840,15 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.64,1,a-sust-i4,2021-22,Boston - Bradley Elementary School,00350215, 0.1, .1, .1, .0, .0, .0, 0.2,291,1455.0 5.6,5,a-sust-i4,2021-22,Boston - Brighton High School,00350505, 0.0, .0, .0, .9, .0, .3, 1.2,360,300.0 5.066666666666666,5,a-sust-i4,2021-22,Boston - Burke High School,00350525, 0.0, .0, .0, .8, .0, .1, 0.9,330,366.6666666666667 --Infinity,1,a-sust-i4,2021-22,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity 7.234285714285714,5,a-sust-i4,2021-22,Boston - Channing Elementary School,00350360, 1.6, .3, .1, .0, .0, .1, 2.1,201,95.71428571428571 5.3728,5,a-sust-i4,2021-22,Boston - Charlestown High School,00350515, 0.0, .0, .9, 1.3, .0, .3, 2.5,821,328.4 6.88,5,a-sust-i4,2021-22,Boston - Chittick Elementary School,00350154, 1.0, .6, .0, .0, .0, .0, 1.6,224,140.0 7.435294117647058,5,a-sust-i4,2021-22,Boston - Clap Elementary School,00350298, 0.8, .8, .2, .0, .0, .0, 1.7,120,70.58823529411765 --Infinity,1,a-sust-i4,2021-22,Boston - Community Academy,00350518, 0.0, .0, .0, .0, .0, .0, 0.0,34,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Community Academy,00350518, 0.0, .0, .0, .0, .0, .0, 0.0,34,Infinity 4.69,4.69,a-sust-i4,2021-22,Boston - Community Academy of Science and Health,00350581, 0.0, .0, .0, .8, .0, .0, 0.8,331,413.75 7.081379310344828,5,a-sust-i4,2021-22,Boston - Condon K-8 School,00350146, 2.4, 2.1, 1.2, .0, .0, .0, 5.8,666,114.82758620689656 --Infinity,1,a-sust-i4,2021-22,Boston - Conley Elementary School,00350122, 0.0, .0, .0, .0, .0, .0, 0.0,176,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Conley Elementary School,00350122, 0.0, .0, .0, .0, .0, .0, 0.0,176,Infinity 6.956521739130435,5,a-sust-i4,2021-22,Boston - Curley K-8 School,00350020, 3.8, 2.4, .8, .0, .0, .0, 6.9,900,130.43478260869566 -1.248,1,a-sust-i4,2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, .0, .5, .0, .0, .0, 0.5,578,1156.0 6.512,5,a-sust-i4,2021-22,Boston - Dever Elementary School,00350268, 1.2, .2, .6, .0, .0, .0, 2.0,372,186.0 @@ -3864,7 +3864,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.293333333333334,5,a-sust-i4,2021-22,Boston - Fenway High School,00350540, 0.0, .0, .0, 1.8, .0, .0, 1.8,384,213.33333333333331 6.568421052631579,5,a-sust-i4,2021-22,Boston - Frederick Pilot Middle School,00350383, 0.0, .0, 1.9, .0, .0, .0, 1.9,340,178.94736842105263 -2.053333333333334,1,a-sust-i4,2021-22,Boston - Gardner Pilot Academy,00350326, 0.3, .1, .0, .0, .0, .0, 0.3,377,1256.6666666666667 --Infinity,1,a-sust-i4,2021-22,Boston - Greater Egleston High School,00350543, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Greater Egleston High School,00350543, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity 7.032,5,a-sust-i4,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 0.9, 1.3, .7, .0, .0, .1, 3.0,363,121.0 6.985,5,a-sust-i4,2021-22,Boston - Grew Elementary School,00350135, 1.3, .3, .0, .0, .0, .0, 1.6,203,126.875 6.709333333333333,5,a-sust-i4,2021-22,Boston - Guild Elementary School,00350062, 1.0, .4, .1, .0, .0, .0, 1.5,242,161.33333333333334 @@ -3888,12 +3888,12 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.774545454545455,5,a-sust-i4,2021-22,Boston - Kenny Elementary School,00350328, 1.7, .5, .0, .0, .0, .0, 2.2,337,153.18181818181816 6.922666666666667,5,a-sust-i4,2021-22,Boston - Kilmer K-8 School,00350190, 1.2, .7, 1.0, .0, .0, .0, 3.0,404,134.66666666666666 6.6225,5,a-sust-i4,2021-22,Boston - King K-8 School,00350376, 2.1, .6, .4, .0, .0, .1, 3.2,551,172.1875 --Infinity,1,a-sust-i4,2021-22,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity 6.982325581395349,5,a-sust-i4,2021-22,Boston - Lee K-8 School,00350183, 2.3, 1.0, .9, .0, .0, .0, 4.3,547,127.2093023255814 6.272,5,a-sust-i4,2021-22,Boston - Lyndon K-8 School,00350262, 0.9, .6, 1.4, .0, .0, .0, 3.0,648,216.0 5.42,5,a-sust-i4,2021-22,Boston - Lyon High School,00350655, 0.0, .0, .0, .4, .0, .0, 0.4,129,322.5 7.408888888888889,5,a-sust-i4,2021-22,Boston - Lyon K-8 School,00350004, 0.9, .4, .5, .0, .0, .0, 1.8,133,73.88888888888889 --Infinity,1,a-sust-i4,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1160,Infinity +NA,NA,a-sust-i4,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1160,Infinity 7.36,5,a-sust-i4,2021-22,Boston - Manning Elementary School,00350184, 1.3, .5, .2, .0, .0, .0, 2.0,160,80.0 7.10896551724138,5,a-sust-i4,2021-22,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 2.9, .0, .0, 2.9,323,111.37931034482759 6.9552,5,a-sust-i4,2021-22,Boston - Mario Umana Academy,00350656, 2.6, 1.1, 1.3, .0, .0, .0, 5.0,653,130.6 @@ -3968,10 +3968,10 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.96,5,a-sust-i4,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .0, .1, .0, 0.1,13,130.0 7.014666666666666,5,a-sust-i4,2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 3.7, 2.0, .0, .3, .0, 6.0,739,123.16666666666667 6.734117647058824,5,a-sust-i4,2021-22,Brimfield - Brimfield Elementary,00430005, 1.0, .5, .2, .0, .0, .0, 1.7,269,158.23529411764707 --Infinity,1,a-sust-i4,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,499,Infinity --Infinity,1,a-sust-i4,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1332,Infinity +NA,NA,a-sust-i4,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,499,Infinity +NA,NA,a-sust-i4,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1332,Infinity 6.749333333333333,5,a-sust-i4,2021-22,Brockton - Ashfield Middle School,00440421, 0.0, .0, 1.9, .0, .0, 1.1, 3.0,469,156.33333333333334 --Infinity,1,a-sust-i4,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,184,Infinity +NA,NA,a-sust-i4,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,184,Infinity 6.84,5,a-sust-i4,2021-22,Brockton - Brockton Champion High School,00440515, 0.0, .0, .0, .0, .0, .8, 0.8,116,145.0 5.414426229508197,5,a-sust-i4,2021-22,Brockton - Brockton High,00440505, 0.0, .0, .0, 6.9, .0, 5.3, 12.2,3943,323.1967213114754 -2.24,1,a-sust-i4,2021-22,Brockton - Brockton Virtual Learning Academy,00440705, 0.1, .2, .0, .0, .0, .0, 0.3,384,1280.0 @@ -3996,9 +3996,9 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.053333333333333,5,a-sust-i4,2021-22,Brockton - West Middle School,00440420, 0.0, .0, 1.7, .0, .0, .6, 2.4,584,243.33333333333334 5.8,5,a-sust-i4,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 2.7, 2.0, 1.3, .0, 1.8, .0, 7.8,2145,275.0 6.405714285714286,5,a-sust-i4,2021-22,Brookfield - Brookfield Elementary,00450005, 0.3, 1.0, .1, .0, .0, .0, 1.4,279,199.2857142857143 --Infinity,1,a-sust-i4,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity --Infinity,1,a-sust-i4,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity --Infinity,1,a-sust-i4,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,43,Infinity +NA,NA,a-sust-i4,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity +NA,NA,a-sust-i4,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,43,Infinity 6.705736434108527,5,a-sust-i4,2021-22,Brookline - Brookline High,00460505, 0.0, .0, .0, 12.8, .0, .1, 12.9,2087,161.7829457364341 6.903111111111111,5,a-sust-i4,2021-22,Brookline - Edith C Baker,00460005, 1.4, 1.8, 1.2, .0, .0, .0, 4.5,617,137.11111111111111 6.698039215686275,5,a-sust-i4,2021-22,Brookline - Florida Ruffin Ridley School,00460015, 1.8, 2.3, 1.1, .0, .0, .0, 5.1,830,162.7450980392157 @@ -4007,7 +4007,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.753684210526316,5,a-sust-i4,2021-22,Brookline - Lawrence,00460030, 1.3, 1.6, .9, .0, .0, .0, 3.8,592,155.78947368421052 7.135238095238096,5,a-sust-i4,2021-22,Brookline - Michael Driscoll,00460020, 1.2, 2.2, .8, .0, .0, .0, 4.2,454,108.09523809523809 6.822857142857143,5,a-sust-i4,2021-22,Brookline - Pierce,00460040, 1.8, 1.9, 1.2, .0, .0, .0, 4.9,721,147.14285714285714 --Infinity,1,a-sust-i4,2021-22,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,54,Infinity +NA,NA,a-sust-i4,2021-22,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,54,Infinity 6.858181818181818,5,a-sust-i4,2021-22,Brookline - William H Lincoln,00460035, 1.1, 1.4, .7, .0, .0, .0, 3.3,471,142.72727272727275 6.4360784313725485,5,a-sust-i4,2021-22,Burlington - Burlington High,00480505, 0.0, .0, .0, 4.9, .0, .1, 5.1,997,195.49019607843138 6.937777777777777,5,a-sust-i4,2021-22,Burlington - Fox Hill,00480007, 1.6, 1.4, .0, .0, .0, .6, 3.6,478,132.77777777777777 @@ -4036,7 +4036,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.825882352941177,5,a-sust-i4,2021-22,Canton - Dean S Luce,00500020, 1.0, .7, .0, .0, .0, .0, 1.7,462,271.7647058823529 6.4,5,a-sust-i4,2021-22,Canton - John F Kennedy,00500017, 1.3, 1.0, .0, .0, .0, .0, 2.3,460,200.00000000000003 5.487058823529412,5,a-sust-i4,2021-22,Canton - Lt Peter M Hansen,00500012, 0.9, .7, .0, .0, .0, .0, 1.7,534,314.11764705882354 --Infinity,1,a-sust-i4,2021-22,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2021-22,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 6.7846153846153845,5,a-sust-i4,2021-22,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 5.2, .0, .0, .0, 5.2,790,151.9230769230769 6.461538461538462,5,a-sust-i4,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, 1.3, .0, .0, .0, 1.3,250,192.3076923076923 2.768,2.77,a-sust-i4,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .8, .3, .0, 1.0,654,654.0 @@ -4053,11 +4053,11 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.112,5,a-sust-i4,2021-22,Chelmsford - Charles D Harrington,00560025, 1.2, .8, .0, .0, .0, .0, 2.0,472,236.0 6.082857142857143,5,a-sust-i4,2021-22,Chelmsford - Chelmsford High,00560505, 0.0, .0, .0, 5.6, .0, .0, 5.6,1342,239.64285714285717 6.859607843137256,5,a-sust-i4,2021-22,Chelmsford - Col Moses Parker School,00560305, 0.0, 2.3, 2.7, .0, .0, .0, 5.1,727,142.54901960784315 --Infinity,1,a-sust-i4,2021-22,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity +NA,NA,a-sust-i4,2021-22,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity 6.6736,5,a-sust-i4,2021-22,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.6, 3.4, .0, .0, .0, 5.0,829,165.8 6.212,5,a-sust-i4,2021-22,Chelmsford - South Row,00560015, 1.2, .8, .0, .0, .0, .0, 2.0,447,223.5 6.002666666666667,5,a-sust-i4,2021-22,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 6.0, .0, .0, 6.0,1498,249.66666666666666 --Infinity,1,a-sust-i4,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,117,Infinity +NA,NA,a-sust-i4,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,117,Infinity 7.856,5,a-sust-i4,2021-22,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, .2, .3, .0, .0, .0, 0.5,9,18.0 6.082666666666667,5,a-sust-i4,2021-22,Chelsea - Clark Avenue School,00570050, 0.0, .5, 1.5, .0, .0, 1.0, 3.0,719,239.66666666666666 5.992,5,a-sust-i4,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 0.9, 1.1, .0, .0, .0, .0, 2.0,502,251.0 @@ -4096,9 +4096,9 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.669090909090909,5,a-sust-i4,2021-22,Cohasset - Joseph Osgood,00650010, 2.2, .0, .0, .0, .0, .0, 2.2,366,166.36363636363635 5.766,5,a-sust-i4,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 1.0, 1.4, 1.2, .5, .0, .0, 4.0,1117,279.25 6.227692307692307,5,a-sust-i4,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, .0, .0, .0, 1.3, .0, 1.3,288,221.53846153846152 --Infinity,1,a-sust-i4,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,401,Infinity --Infinity,1,a-sust-i4,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity --Infinity,1,a-sust-i4,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,394,Infinity +NA,NA,a-sust-i4,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,401,Infinity +NA,NA,a-sust-i4,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity +NA,NA,a-sust-i4,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,394,Infinity 6.713846153846155,5,a-sust-i4,2021-22,Concord - Alcott,00670005, 0.9, 1.7, .0, .0, .0, .0, 2.6,418,160.76923076923077 6.941538461538462,5,a-sust-i4,2021-22,Concord - Concord Middle,00670305, 0.0, .0, 5.2, .0, .0, .0, 5.2,688,132.3076923076923 6.612307692307692,5,a-sust-i4,2021-22,Concord - Thoreau,00670020, 1.0, 1.6, .0, .0, .0, .0, 2.6,451,173.46153846153845 @@ -4151,11 +4151,11 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.08,5,a-sust-i4,2021-22,Dracut - Greenmont Avenue,00790030, 0.5, .6, .0, .0, .0, .0, 1.1,264,239.99999999999997 4.922666666666666,4.92,a-sust-i4,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 0.7, .8, .0, .0, .0, .0, 1.5,577,384.6666666666667 5.44,5,a-sust-i4,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 2.7, .0, .0, .1, 2.8,896,320.0 --Infinity,1,a-sust-i4,2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,286,Infinity +NA,NA,a-sust-i4,2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,286,Infinity 6.030769230769231,5,a-sust-i4,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.3, .0, .0, .0, .0, .0, 1.3,320,246.15384615384613 6.752,5,a-sust-i4,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 1.0, 3.0, .0, .0, .0, 4.0,624,156.0 5.713333333333333,5,a-sust-i4,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.4, .8, .0, .0, .0, .0, 1.2,343,285.83333333333337 --Infinity,1,a-sust-i4,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, .0, .0, .0, .0, .0, 0.0,544,Infinity +NA,NA,a-sust-i4,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, .0, .0, .0, .0, .0, 0.0,544,Infinity 5.83,5,a-sust-i4,2021-22,Dudley-Charlton Reg - Heritage School,06580030, 0.6, 1.0, .0, .0, .0, .0, 1.6,434,271.25 5.43,5,a-sust-i4,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 0.8, .0, .0, .0, .0, .0, 0.8,257,321.25 6.14,5,a-sust-i4,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, .0, .0, .8, 3.3, .0, 4.0,930,232.5 @@ -4186,8 +4186,8 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.865714285714286,5,a-sust-i4,2021-22,Edgartown - Edgartown Elementary,00890005, 0.7, .7, .6, .0, .8, .0, 2.8,397,141.7857142857143 5.127272727272728,5,a-sust-i4,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, 0.0, .0, .0, 1.1, .0, .0, 1.1,395,359.09090909090907 7.113333333333333,5,a-sust-i4,2021-22,Erving - Erving Elementary,00910030, 0.6, .5, .1, .0, .0, .0, 1.2,133,110.83333333333334 --Infinity,1,a-sust-i4,2021-22,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,1654,Infinity --Infinity,1,a-sust-i4,2021-22,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,138,Infinity +NA,NA,a-sust-i4,2021-22,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,1654,Infinity +NA,NA,a-sust-i4,2021-22,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,138,Infinity 7.53,5,a-sust-i4,2021-22,Everett - Devens School,00930030, 0.0, .2, .4, .1, .0, .0, 0.8,47,58.75 6.181739130434782,5,a-sust-i4,2021-22,Everett - Everett High,00930505, 0.0, .0, .0, 9.2, .0, .0, 9.2,2091,227.2826086956522 6.329523809523809,5,a-sust-i4,2021-22,Everett - George Keverian School,00930028, 0.9, 1.2, 2.1, .0, .0, .0, 4.2,877,208.8095238095238 @@ -4195,7 +4195,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.524444444444445,5,a-sust-i4,2021-22,Everett - Madeline English School,00930018, 1.0, 1.2, 1.4, .0, .0, .0, 3.6,664,184.44444444444443 5.585,5,a-sust-i4,2021-22,Everett - Parlin School,00930058, 1.1, .9, 1.2, .0, .0, .0, 3.2,966,301.875 6.132307692307692,5,a-sust-i4,2021-22,Everett - Sumner G. Whittier School,00930010, 0.6, .7, 1.3, .0, .0, .0, 2.6,607,233.46153846153845 --Infinity,1,a-sust-i4,2021-22,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,171,Infinity +NA,NA,a-sust-i4,2021-22,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,171,Infinity 6.591111111111111,5,a-sust-i4,2021-22,Everett - Webster School,00930015, 0.7, 1.1, .0, .0, .0, .0, 1.8,317,176.11111111111111 5.939622641509433,5,a-sust-i4,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, .8, 2.3, .0, 2.3, .0, 5.3,1365,257.54716981132077 6.776,5,a-sust-i4,2021-22,Fairhaven - East Fairhaven,00940010, 0.8, 1.3, .0, .0, .0, .0, 2.0,306,153.0 @@ -4229,7 +4229,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.408,5,a-sust-i4,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, .5, 1.5, .0, .0, .0, 2.0,648,324.0 5.684,5,a-sust-i4,2021-22,Fitchburg - Crocker Elementary,00970016, 1.2, .8, .0, .0, .0, .0, 2.0,579,289.5 5.799148936170213,5,a-sust-i4,2021-22,Fitchburg - Fitchburg High,00970505, 0.0, .0, .0, 4.7, .0, .0, 4.7,1293,275.1063829787234 --Infinity,1,a-sust-i4,2021-22,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,158,Infinity +NA,NA,a-sust-i4,2021-22,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,158,Infinity 6.84695652173913,5,a-sust-i4,2021-22,Fitchburg - McKay Arts Academy,00970340, 0.7, 1.5, 2.4, .0, .0, .0, 4.6,663,144.13043478260872 6.473142857142857,5,a-sust-i4,2021-22,Fitchburg - Memorial Middle School,00970048, 0.0, .9, 2.6, .0, .0, .0, 3.5,668,190.85714285714286 5.5073684210526315,5,a-sust-i4,2021-22,Fitchburg - Reingold Elementary,00970043, 1.1, .8, .0, .0, .0, .0, 1.9,592,311.57894736842104 @@ -4250,7 +4250,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8241860465116275,5,a-sust-i4,2021-22,Framingham - Fuller Middle,01000305, 0.0, .0, 4.3, .0, .0, .0, 4.3,632,146.97674418604652 6.661333333333333,5,a-sust-i4,2021-22,Framingham - Harmony Grove Elementary,01000055, 1.4, 1.6, .0, .0, .0, .0, 3.0,502,167.33333333333334 6.95,5,a-sust-i4,2021-22,Framingham - Hemenway,01000015, 2.1, 1.9, .0, .0, .0, .0, 4.0,525,131.25 --Infinity,1,a-sust-i4,2021-22,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,254,Infinity +NA,NA,a-sust-i4,2021-22,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,254,Infinity 6.56,5,a-sust-i4,2021-22,Framingham - King Elementary School,01000005, 1.0, 1.0, .0, .0, .0, .0, 2.0,360,180.0 6.868571428571428,5,a-sust-i4,2021-22,Framingham - Mary E Stapleton Elementary,01000045, 0.8, 1.3, .0, .0, .0, .0, 2.1,297,141.42857142857142 6.711724137931035,5,a-sust-i4,2021-22,Framingham - Miriam F McCarthy School,01000050, 1.2, 1.7, .0, .0, .0, .0, 2.9,467,161.0344827586207 @@ -4267,7 +4267,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.868571428571428,5,a-sust-i4,2021-22,Franklin - Oak Street Elementary,01010030, 0.6, .8, .0, .0, .0, .0, 1.4,373,266.42857142857144 5.993333333333333,5,a-sust-i4,2021-22,Franklin - Parmenter,01010032, 0.6, .6, .0, .0, .0, .0, 1.2,301,250.83333333333334 6.836923076923077,5,a-sust-i4,2021-22,Franklin - Remington Middle,01010310, 0.0, .0, 1.9, .0, .7, .0, 2.6,378,145.3846153846154 --Infinity,1,a-sust-i4,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,583,Infinity +NA,NA,a-sust-i4,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,583,Infinity 6.632380952380952,5,a-sust-i4,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, .0, .0, 4.1, .1, .0, 4.2,718,170.95238095238093 6.068,5,a-sust-i4,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.5, .5, .0, .0, .0, .0, 2.0,483,241.5 6.264,5,a-sust-i4,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 1.6, .4, .0, .0, .0, .0, 2.0,434,217.0 @@ -4286,7 +4286,7 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.24235294117647,5,a-sust-i4,2021-22,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 3.4, .0, .0, 3.4,322,94.70588235294117 6.75076923076923,5,a-sust-i4,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, .0, 1.3, .0, .0, .0, 1.3,203,156.15384615384616 6.1866666666666665,5,a-sust-i4,2021-22,Georgetown - Penn Brook,01050010, 1.0, 1.3, .7, .0, .0, .0, 3.0,680,226.66666666666666 --Infinity,1,a-sust-i4,2021-22,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,71,Infinity +NA,NA,a-sust-i4,2021-22,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,71,Infinity 4.853333333333333,4.85,a-sust-i4,2021-22,Gill-Montague - Gill Elementary,06740005, 0.1, .1, .1, .0, .0, .0, 0.3,118,393.33333333333337 6.976,5,a-sust-i4,2021-22,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 1.5, .0, .0, .0, 1.5,192,128.0 6.1066666666666665,5,a-sust-i4,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,142,236.66666666666669 @@ -4296,12 +4296,12 @@ NaN,NaN,a-sust-i4,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.704,5,a-sust-i4,2021-22,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,324,162.0 6.886666666666666,5,a-sust-i4,2021-22,Gloucester - East Gloucester Elementary,01070020, 0.0, .0, .0, .0, .0, 1.2, 1.2,167,139.16666666666669 6.672,5,a-sust-i4,2021-22,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .4, 4.6, .0, 5.0,830,166.0 --Infinity,1,a-sust-i4,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity +NA,NA,a-sust-i4,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity 6.436363636363636,5,a-sust-i4,2021-22,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.1, 1.1,215,195.45454545454544 6.74,5,a-sust-i4,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 4.0, .0, .0, .0, 4.0,630,157.5 6.67076923076923,5,a-sust-i4,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, .0, .0, .0, .0, 1.3, 1.3,216,166.15384615384616 6.516,5,a-sust-i4,2021-22,Gloucester - West Parish,01070050, 0.0, .0, .0, .0, .0, 2.0, 2.0,371,185.5 -NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN +NA,NA,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN 5.402857142857143,5,a-sust-i4,2021-22,Grafton - Grafton High School,01100505, 0.0, .0, .0, 1.3, .8, .7, 2.8,909,324.64285714285717 6.3264,5,a-sust-i4,2021-22,Grafton - Grafton Middle,01100305, 0.0, .0, 2.3, .0, .1, .0, 2.5,523,209.2 6.472727272727273,5,a-sust-i4,2021-22,Grafton - Millbury Street Elementary School,01100200, 0.5, 1.8, 1.0, .0, .0, .0, 3.3,630,190.9090909090909 @@ -4311,17 +4311,17 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.567272727272728,5,a-sust-i4,2021-22,Granby - East Meadow,01110004, 0.9, .8, .5, .0, .0, .0, 2.2,394,179.09090909090907 6.845714285714286,5,a-sust-i4,2021-22,Granby - Granby Jr Sr High School,01110505, 0.0, .0, 1.0, 1.2, .0, .0, 2.1,303,144.28571428571428 5.425,5,a-sust-i4,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.8, 1.0, .8, .0, .6, .0, 3.2,1030,321.875 --Infinity,1,a-sust-i4,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1421,Infinity --Infinity,1,a-sust-i4,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1655,Infinity +NA,NA,a-sust-i4,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1421,Infinity +NA,NA,a-sust-i4,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1655,Infinity -53.333333333333336,1,a-sust-i4,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2300,7666.666666666667 --Infinity,1,a-sust-i4,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2110,Infinity +NA,NA,a-sust-i4,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2110,Infinity 5.291428571428571,5,a-sust-i4,2021-22,Greenfield - Discovery School at Four Corners,01140025, 0.4, .3, .0, .0, .0, .0, 0.7,237,338.5714285714286 4.752,4.75,a-sust-i4,2021-22,Greenfield - Federal Street School,01140010, 0.3, .2, .0, .0, .0, .0, 0.5,203,406.0 6.545714285714285,5,a-sust-i4,2021-22,Greenfield - Greenfield High,01140505, 0.0, .0, .8, 1.2, .8, .0, 2.8,509,181.7857142857143 6.7443478260869565,5,a-sust-i4,2021-22,Greenfield - Greenfield Middle,01140305, 0.0, .5, 1.0, .0, .8, .0, 2.3,361,156.95652173913044 6.312,5,a-sust-i4,2021-22,Greenfield - Newton School,01140035, 0.6, .4, .0, .0, .0, .0, 1.0,211,211.0 7.17,5,a-sust-i4,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.8, .0, .0, .0, .0, .0, 0.8,83,103.75 --Infinity,1,a-sust-i4,2021-22,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity +NA,NA,a-sust-i4,2021-22,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity 5.814736842105264,5,a-sust-i4,2021-22,Groton-Dunstable - Florence Roche School,06730010, 1.1, .8, .0, .0, .0, .0, 1.9,519,273.15789473684214 6.122666666666667,5,a-sust-i4,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.0, .0, 3.0,704,234.66666666666666 6.856,5,a-sust-i4,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 2.6, 2.4, .0, .0, .0, 5.0,715,143.0 @@ -4352,18 +4352,18 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.192,5,a-sust-i4,2021-22,Harvard - Hildreth Elementary School,01250005, 1.0, 1.0, .0, .0, .0, .0, 2.0,452,226.0 7.177142857142857,5,a-sust-i4,2021-22,Hatfield - Hatfield Elementary,01270005, 0.6, .9, .5, .0, .0, .0, 2.1,216,102.85714285714285 6.0,5,a-sust-i4,2021-22,Hatfield - Smith Academy,01270505, 0.0, .0, .2, .5, .0, .0, 0.7,175,250.00000000000003 --Infinity,1,a-sust-i4,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity +NA,NA,a-sust-i4,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity 5.984,5,a-sust-i4,2021-22,Haverhill - Bradford Elementary,01280008, 1.2, .8, .0, .0, .0, .0, 2.0,504,252.0 5.872,5,a-sust-i4,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 1.0, 1.4, 1.6, .0, .0, .0, 4.0,1064,266.0 6.2303030303030305,5,a-sust-i4,2021-22,Haverhill - Consentino Middle School,01280100, 0.0, .2, 2.8, .0, .0, .3, 3.3,730,221.21212121212122 --Infinity,1,a-sust-i4,2021-22,Haverhill - Crowell,01280515, 0.0, .0, .0, .0, .0, .0, 0.0,19,Infinity +NA,NA,a-sust-i4,2021-22,Haverhill - Crowell,01280515, 0.0, .0, .0, .0, .0, .0, 0.0,19,Infinity 5.664,5,a-sust-i4,2021-22,Haverhill - Dr Paul Nettle,01280050, 0.0, .5, 1.5, .0, .0, .0, 2.0,584,292.0 6.044,5,a-sust-i4,2021-22,Haverhill - Golden Hill,01280026, 1.2, .8, .0, .0, .0, .0, 2.0,489,244.5 6.88,5,a-sust-i4,2021-22,Haverhill - Greenleaf Academy,01280033, 0.0, .0, .0, .2, .0, .0, 0.2,28,140.0 5.993766233766234,5,a-sust-i4,2021-22,Haverhill - Haverhill High,01280505, 0.0, .0, .0, 1.2, 6.5, .0, 7.7,1931,250.77922077922076 5.912,5,a-sust-i4,2021-22,Haverhill - John G Whittier,01280085, 0.0, .4, 1.6, .0, .0, .0, 2.0,522,261.0 7.412,5,a-sust-i4,2021-22,Haverhill - Moody,01280045, 2.0, .0, .0, .0, .0, .0, 2.0,147,73.5 --Infinity,1,a-sust-i4,2021-22,Haverhill - Moody Preschool Extension,01280001, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +NA,NA,a-sust-i4,2021-22,Haverhill - Moody Preschool Extension,01280001, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity 6.088,5,a-sust-i4,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 1.0, 1.1, .0, .0, .0, .0, 2.0,478,239.0 6.0304761904761905,5,a-sust-i4,2021-22,Haverhill - Silver Hill Elementary School,01280067, 1.0, 1.0, .0, .0, .0, .1, 2.1,517,246.19047619047618 6.644,5,a-sust-i4,2021-22,Haverhill - Tilton,01280075, 1.5, .5, .0, .0, .0, .0, 2.0,339,169.5 @@ -4392,24 +4392,24 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -12.48,1,a-sust-i4,2021-22,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .1, .0, .0, .0, 0.1,256,2560.0 6.628,5,a-sust-i4,2021-22,Holyoke - Joseph Metcalf School,01370003, 0.9, .8, .3, .0, .0, .0, 2.0,343,171.5 6.653333333333333,5,a-sust-i4,2021-22,Holyoke - Kelly Elementary,01370040, 1.0, .7, .0, .0, .0, .0, 1.8,303,168.33333333333334 --Infinity,1,a-sust-i4,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, .0, .0, .0, .0, .0, 0.0,444,Infinity +NA,NA,a-sust-i4,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, .0, .0, .0, .0, .0, 0.0,444,Infinity 6.624,5,a-sust-i4,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.7, .7, .6, .0, .0, .0, 2.0,344,172.0 -2.426666666666668,1,a-sust-i4,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, .0, .3, .0, .0, .0, 0.3,391,1303.3333333333335 --Infinity,1,a-sust-i4,2021-22,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,283,Infinity +NA,NA,a-sust-i4,2021-22,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,283,Infinity 7.523428571428571,5,a-sust-i4,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 1.3, 5.7, .0, .0, .0, 7.0,417,59.57142857142857 6.272,5,a-sust-i4,2021-22,Holyoke - William R. Peck School,01370030, 0.0, .3, .7, .0, .0, .0, 1.0,216,216.0 --Infinity,1,a-sust-i4,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,653,Infinity +NA,NA,a-sust-i4,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,653,Infinity 6.56,5,a-sust-i4,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.8, .2, .0, .0, .0, .0, 2.0,360,180.0 6.057142857142857,5,a-sust-i4,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, .0, .0, .0, 1.4, .0, 1.4,340,242.85714285714286 6.928695652173913,5,a-sust-i4,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, .8, 1.5, .0, .0, .0, 2.3,308,133.91304347826087 6.654285714285714,5,a-sust-i4,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, .9, 2.0, .0, .0, 2.8,471,168.21428571428572 5.804,5,a-sust-i4,2021-22,Hopedale - Memorial,01380010, 0.9, .9, .3, .0, .0, .0, 2.0,549,274.5 --Infinity,1,a-sust-i4,2021-22,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity +NA,NA,a-sust-i4,2021-22,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity 5.512,5,a-sust-i4,2021-22,Hopkinton - Elmwood,01390010, 1.0, 1.0, .0, .0, .0, .0, 2.0,622,311.0 6.376,5,a-sust-i4,2021-22,Hopkinton - Hopkins Elementary School,01390015, 0.0, 3.0, .0, .0, .0, .0, 3.0,609,203.0 6.135384615384615,5,a-sust-i4,2021-22,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 5.2, .0, .0, 5.2,1212,233.07692307692307 6.769333333333333,5,a-sust-i4,2021-22,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 6.0, .0, .0, .0, 6.0,923,153.83333333333334 --Infinity,1,a-sust-i4,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 5.506666666666666,5,a-sust-i4,2021-22,Hopkinton - Marathon Elementary School,01390005, 1.8, .0, .0, .0, .0, .0, 1.8,561,311.6666666666667 4.792,4.79,a-sust-i4,2021-22,Hudson - C A Farley,01410030, 0.6, .4, .0, .0, .0, .0, 1.0,401,401.0 6.982325581395349,5,a-sust-i4,2021-22,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.3, 3.0, .0, .0, .0, 4.3,547,127.2093023255814 @@ -4439,7 +4439,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.16,4.16,a-sust-i4,2021-22,Lawrence - Frost Middle School,01490525, 0.0, .3, .9, .0, .0, .0, 1.1,528,479.99999999999994 6.096,5,a-sust-i4,2021-22,Lawrence - Gerard A. Guilmette,01490022, 1.0, 1.0, .0, .0, .0, .0, 2.0,476,238.0 7.008,5,a-sust-i4,2021-22,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 3.1, .0, .0, .0, 4.0,496,124.0 --Infinity,1,a-sust-i4,2021-22,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,208,Infinity +NA,NA,a-sust-i4,2021-22,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,208,Infinity 6.914782608695652,5,a-sust-i4,2021-22,Lawrence - James F Hennessey,01490020, 2.3, .0, .0, .0, .0, .0, 2.3,312,135.6521739130435 7.652413793103448,5,a-sust-i4,2021-22,Lawrence - John Breen School,01490003, 5.8, .0, .0, .0, .0, .0, 5.8,252,43.44827586206897 6.904,5,a-sust-i4,2021-22,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,274,137.0 @@ -4448,12 +4448,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.4515,5,a-sust-i4,2021-22,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 10.3, 5.6, .0, 16.0,3097,193.5625 6.156,5,a-sust-i4,2021-22,Lawrence - Oliver Partnership School,01490048, 0.8, 1.2, .0, .0, .0, .0, 2.0,461,230.5 5.772,5,a-sust-i4,2021-22,Lawrence - Parthum Middle School,01490027, 0.0, .5, 1.5, .0, .0, .0, 2.0,557,278.5 --Infinity,1,a-sust-i4,2021-22,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2021-22,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 5.836,5,a-sust-i4,2021-22,Lawrence - Robert Frost,01490018, 1.1, .9, .0, .0, .0, .0, 2.0,541,270.5 7.565333333333334,5,a-sust-i4,2021-22,Lawrence - Rollins Early Childhood Center,01490001, 3.0, .0, .0, .0, .0, .0, 3.0,163,54.333333333333336 7.5058823529411764,5,a-sust-i4,2021-22,Lawrence - School for Exceptional Studies,01490537, 0.3, .5, .8, .0, .0, .1, 1.7,105,61.76470588235294 5.264,5,a-sust-i4,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0.8, 1.2, .0, .0, .0, .0, 2.0,684,342.0 --Infinity,1,a-sust-i4,2021-22,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,436,Infinity +NA,NA,a-sust-i4,2021-22,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,436,Infinity 5.28,5,a-sust-i4,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,340,340.0 5.512,5,a-sust-i4,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,311,311.0 6.127058823529412,5,a-sust-i4,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.9, .7, .8, .0, .0, .0, 3.4,796,234.11764705882354 @@ -4462,18 +4462,18 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.1306666666666665,5,a-sust-i4,2021-22,Lee - Lee Middle/High School,01500505, 0.0, .0, .5, 1.6, 1.0, .0, 3.0,326,108.66666666666667 6.008,5,a-sust-i4,2021-22,Leicester - Leicester Elementary,01510005, 1.2, .8, .0, .0, .0, .0, 2.0,498,249.0 6.268,5,a-sust-i4,2021-22,Leicester - Leicester High,01510505, 0.0, .0, .0, .3, 1.7, .0, 2.0,433,216.5 --Infinity,1,a-sust-i4,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity +NA,NA,a-sust-i4,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity 6.352,5,a-sust-i4,2021-22,Leicester - Leicester Middle,01510015, 0.0, .8, .2, .0, 1.0, .0, 2.0,412,206.0 7.053333333333334,5,a-sust-i4,2021-22,Lenox - Lenox Memorial High,01520505, 0.0, .0, .6, 3.0, .0, .0, 3.6,426,118.33333333333333 6.816,5,a-sust-i4,2021-22,Lenox - Morris,01520015, 1.0, 1.0, .0, .0, .0, .0, 2.0,296,148.0 --Infinity,1,a-sust-i4,2021-22,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity --Infinity,1,a-sust-i4,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,749,Infinity +NA,NA,a-sust-i4,2021-22,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity +NA,NA,a-sust-i4,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,749,Infinity 5.752,5,a-sust-i4,2021-22,Leominster - Fall Brook,01530007, 0.9, 1.1, .0, .0, .0, .0, 2.0,562,281.0 5.694117647058824,5,a-sust-i4,2021-22,Leominster - Frances Drake School,01530010, 0.8, .9, .0, .0, .0, .0, 1.7,490,288.2352941176471 5.225263157894736,5,a-sust-i4,2021-22,Leominster - Johnny Appleseed,01530025, 0.9, 1.0, .0, .0, .0, .0, 1.9,659,346.8421052631579 --Infinity,1,a-sust-i4,2021-22,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2021-22,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.158297872340426,5,a-sust-i4,2021-22,Leominster - Leominster High School,01530505, 0.0, .0, .0, 4.7, .0, .0, 4.7,1082,230.2127659574468 --Infinity,1,a-sust-i4,2021-22,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity +NA,NA,a-sust-i4,2021-22,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity 5.296,5,a-sust-i4,2021-22,Leominster - Northwest,01530030, 0.9, 1.0, .0, .0, .0, .0, 2.0,676,338.0 5.986666666666666,5,a-sust-i4,2021-22,Leominster - Priest Street,01530040, 0.6, .0, .0, .0, .0, .0, 0.6,151,251.66666666666669 5.956,5,a-sust-i4,2021-22,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,511,255.5 @@ -4485,11 +4485,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.746666666666667,5,a-sust-i4,2021-22,Lexington - Harrington,01550030, 0.9, 1.8, .0, .0, .0, .0, 2.7,423,156.66666666666666 7.115733333333334,5,a-sust-i4,2021-22,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 7.5, .0, .0, .0, 7.5,829,110.53333333333333 6.554482758620689,5,a-sust-i4,2021-22,Lexington - Joseph Estabrook,01550010, 1.2, 1.7, .0, .0, .0, .0, 2.9,524,180.6896551724138 --Infinity,1,a-sust-i4,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,67,Infinity +NA,NA,a-sust-i4,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,67,Infinity 6.653037037037037,5,a-sust-i4,2021-22,Lexington - Lexington High,01550505, 0.0, .0, .0, 13.5, .0, .0, 13.5,2273,168.37037037037038 6.576,5,a-sust-i4,2021-22,Lexington - Maria Hastings,01550035, 1.3, 2.1, .0, .0, .0, .0, 3.5,623,178.0 7.1034146341463416,5,a-sust-i4,2021-22,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 8.2, .0, .0, .0, 8.2,919,112.07317073170732 --Infinity,1,a-sust-i4,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,332,Infinity +NA,NA,a-sust-i4,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,332,Infinity 7.2,5,a-sust-i4,2021-22,Lincoln - Hanscom Middle,01570305, 0.0, 2.0, .3, .0, .0, .0, 2.3,230,100.00000000000001 6.864,5,a-sust-i4,2021-22,Lincoln - Hanscom Primary,01570006, 1.6, .4, .0, .0, .0, .0, 2.0,284,142.0 7.018666666666666,5,a-sust-i4,2021-22,Lincoln - Lincoln School,01570025, 1.2, 2.3, 1.0, .0, .0, .0, 4.5,552,122.66666666666667 @@ -4497,7 +4497,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.663703703703703,5,a-sust-i4,2021-22,Littleton - Littleton High School,01580505, 0.0, .0, .0, 2.7, .0, .0, 2.7,451,167.03703703703704 6.408,5,a-sust-i4,2021-22,Littleton - Littleton Middle School,01580305, 0.0, .0, 2.0, .0, .0, .0, 2.0,398,199.0 4.96,4.96,a-sust-i4,2021-22,Littleton - Russell St Elementary,01580015, 0.0, 1.0, .0, .0, .0, .0, 1.0,380,380.0 --Infinity,1,a-sust-i4,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,413,Infinity +NA,NA,a-sust-i4,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,413,Infinity 6.282105263157895,5,a-sust-i4,2021-22,Longmeadow - Blueberry Hill,01590005, 0.7, 1.2, .0, .0, .0, .0, 1.9,408,214.73684210526318 6.430476190476191,5,a-sust-i4,2021-22,Longmeadow - Center,01590010, 0.9, 1.2, .0, .0, .0, .0, 2.1,412,196.19047619047618 7.0371428571428565,5,a-sust-i4,2021-22,Longmeadow - Glenbrook Middle,01590017, 0.0, .0, 2.8, .0, .0, .0, 2.8,337,120.35714285714286 @@ -4532,12 +4532,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.448,5,a-sust-i4,2021-22,Lowell - The Career Academy,01600515, 0.0, .0, .0, .5, .0, .0, 0.5,97,194.0 7.144347826086956,5,a-sust-i4,2021-22,Lowell - Washington,01600055, 1.5, .8, .0, .0, .0, .1, 2.3,246,106.95652173913044 6.356,5,a-sust-i4,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 1.3, 1.3, 1.3, .0, .0, .0, 4.0,822,205.5 --Infinity,1,a-sust-i4,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, .0, .0, .0, .0, .0, 0.0,74,Infinity +NA,NA,a-sust-i4,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, .0, .0, .0, .0, .0, 0.0,74,Infinity 6.744,5,a-sust-i4,2021-22,Ludlow - East Street Elementary School,01610010, 2.0, .0, .0, .0, .0, .0, 2.0,314,157.0 6.696842105263158,5,a-sust-i4,2021-22,Ludlow - Harris Brook Elementary School,01610665, 0.8, 3.0, .0, .0, .0, .0, 3.8,619,162.89473684210526 6.561739130434782,5,a-sust-i4,2021-22,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 4.5, .0, .1, 4.6,827,179.7826086956522 6.578666666666667,5,a-sust-i4,2021-22,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 3.0, .0, .0, .0, 3.0,533,177.66666666666666 --Infinity,1,a-sust-i4,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,5,Infinity +NA,NA,a-sust-i4,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,5,Infinity 6.2,5,a-sust-i4,2021-22,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .3, 1.6, .0, 2.0,450,225.0 6.392,5,a-sust-i4,2021-22,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.0, .0, .0, .0, 2.0,402,201.0 2.946666666666666,2.95,a-sust-i4,2021-22,Lunenburg - Lunenburg Primary School,01620010, 0.0, .0, .0, .0, .6, .0, 0.6,379,631.6666666666667 @@ -4551,7 +4551,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.375172413793103,5,a-sust-i4,2021-22,Lynn - Cobbet Elementary,01630035, 1.6, 1.3, .0, .0, .0, .0, 2.9,589,203.10344827586206 6.356129032258065,5,a-sust-i4,2021-22,Lynn - E J Harrington,01630045, 1.7, 1.3, .0, .0, .0, .0, 3.1,637,205.48387096774192 5.92,5,a-sust-i4,2021-22,Lynn - Edward A Sisson,01630095, 0.8, .8, .0, .0, .0, .0, 1.7,442,260.0 --Infinity,1,a-sust-i4,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity +NA,NA,a-sust-i4,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity 6.106666666666667,5,a-sust-i4,2021-22,Lynn - Hood,01630055, 1.0, 1.1, .0, .0, .0, .0, 2.1,497,236.66666666666666 6.045714285714285,5,a-sust-i4,2021-22,Lynn - Ingalls,01630060, 1.4, 1.4, .0, .0, .0, .0, 2.8,684,244.2857142857143 6.676363636363636,5,a-sust-i4,2021-22,Lynn - Julia F Callahan,01630030, 1.1, 1.1, .0, .0, .0, .0, 2.2,364,165.45454545454544 @@ -4570,10 +4570,10 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.244,5,a-sust-i4,2021-22,Lynnfield - Huckleberry Hill,01640010, 1.3, .7, .0, .0, .0, .0, 2.0,439,219.5 6.872,5,a-sust-i4,2021-22,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, 3.8, .2, .0, 4.0,564,141.0 5.228,5,a-sust-i4,2021-22,Lynnfield - Lynnfield Middle School,01640405, 0.0, .5, 1.5, .0, .0, .0, 2.0,693,346.5 --Infinity,1,a-sust-i4,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 6.268,5,a-sust-i4,2021-22,Lynnfield - Summer Street,01640020, 1.2, .8, .0, .0, .0, .0, 2.0,433,216.5 6.04,5,a-sust-i4,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, .0, .0, 1.0, 4.0, .0, 5.0,1225,245.0 --Infinity,1,a-sust-i4,2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 6.13,5,a-sust-i4,2021-22,Malden - Beebe,01650003, 1.3, 1.2, 1.6, .0, .0, .0, 4.0,935,233.75 6.208,5,a-sust-i4,2021-22,Malden - Ferryway,01650013, 1.2, 1.3, 1.3, .0, .0, .3, 4.0,896,224.0 6.466666666666667,5,a-sust-i4,2021-22,Malden - Forestdale,01650027, 0.6, .9, 1.5, .0, .0, .0, 3.0,575,191.66666666666666 @@ -4589,7 +4589,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.87719298245614,5,a-sust-i4,2021-22,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 5.7, .0, .0, .0, 5.7,800,140.35087719298244 6.581463414634146,5,a-sust-i4,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.1, .0, .0, .0, .0, 4.1,727,177.31707317073173 6.507118644067797,5,a-sust-i4,2021-22,Mansfield - Mansfield High,01670505, 0.0, .0, .0, 5.8, .0, .1, 5.9,1101,186.61016949152543 --Infinity,1,a-sust-i4,2021-22,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2021-22,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 6.017777777777777,5,a-sust-i4,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, .0, .0, .0, .9, .0, 0.9,223,247.77777777777777 6.262857142857143,5,a-sust-i4,2021-22,Marblehead - Glover,01680020, 1.1, .3, .0, .0, .0, .0, 1.4,304,217.14285714285717 5.433846153846154,5,a-sust-i4,2021-22,Marblehead - Lucretia and Joseph Brown School,01680030, 1.0, .3, .0, .0, .0, .0, 1.3,417,320.7692307692308 @@ -4600,7 +4600,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.917333333333333,5,a-sust-i4,2021-22,Marion - Sippican,01690005, 0.9, 1.5, .6, .0, .0, .0, 3.0,406,135.33333333333334 6.276800000000001,5,a-sust-i4,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, .0, 5.0, .0, .0, .0, 5.0,1077,215.4 5.410526315789474,5,a-sust-i4,2021-22,Marlborough - Charles Jaworek School,01700030, 0.8, 1.2, .0, .0, .0, .0, 1.9,615,323.6842105263158 --Infinity,1,a-sust-i4,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,169,Infinity +NA,NA,a-sust-i4,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,169,Infinity 6.274782608695652,5,a-sust-i4,2021-22,Marlborough - Francis J Kane,01700008, 0.9, 1.3, .0, .0, .0, .0, 2.3,496,215.6521739130435 5.723076923076924,5,a-sust-i4,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 1.1, 1.5, .0, .0, .0, .0, 2.6,740,284.6153846153846 6.79764705882353,5,a-sust-i4,2021-22,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 6.8, .0, .0, 6.8,1022,150.29411764705884 @@ -4670,7 +4670,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.463333333333333,5,a-sust-i4,2021-22,Milford - Brookside,01850065, 2.3, .0, .0, .0, .0, .1, 2.4,461,192.08333333333334 6.12952380952381,5,a-sust-i4,2021-22,Milford - Memorial,01850010, 2.1, .0, .0, .0, .0, .0, 2.1,491,233.8095238095238 5.378461538461539,5,a-sust-i4,2021-22,Milford - Milford High,01850505, 0.0, .0, .0, 3.6, .0, .3, 3.9,1278,327.6923076923077 --Infinity,1,a-sust-i4,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity +NA,NA,a-sust-i4,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity 6.585263157894737,5,a-sust-i4,2021-22,Milford - Stacy Middle,01850305, 0.0, .0, 5.3, .0, .0, .4, 5.7,1008,176.8421052631579 6.737627118644068,5,a-sust-i4,2021-22,Milford - Woodland,01850090, 0.0, 5.7, .2, .0, .0, .1, 5.9,931,157.79661016949152 5.896,5,a-sust-i4,2021-22,Millbury - Elmwood Street,01860017, 1.5, .5, .0, .0, .0, .0, 2.0,526,263.0 @@ -4781,7 +4781,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.6,5,a-sust-i4,2021-22,Newton - Lincoln-Eliot,02070070, 0.8, 1.0, .0, .0, .0, .0, 1.8,315,175.0 6.581052631578948,5,a-sust-i4,2021-22,Newton - Mason-Rice,02070080, 0.9, 1.0, .0, .0, .0, .0, 1.9,337,177.3684210526316 6.428,5,a-sust-i4,2021-22,Newton - Memorial Spaulding,02070105, 1.0, 1.1, .0, .0, .0, .0, 2.0,393,196.5 --Infinity,1,a-sust-i4,2021-22,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,179,Infinity +NA,NA,a-sust-i4,2021-22,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,179,Infinity 6.214468085106383,5,a-sust-i4,2021-22,Newton - Newton North High,02070505, 0.0, .0, .0, 9.4, .0, .0, 9.4,2098,223.1914893617021 6.5449504950495045,5,a-sust-i4,2021-22,Newton - Newton South High,02070510, 0.0, .0, .0, 9.8, .0, .3, 10.1,1837,181.88118811881188 6.608421052631579,5,a-sust-i4,2021-22,Newton - Oak Hill Middle,02070320, 0.0, .0, 3.8, .0, .0, .0, 3.8,661,173.94736842105263 @@ -4791,7 +4791,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.312,5,a-sust-i4,2021-22,Newton - Zervas,02070130, 1.0, 1.0, .0, .0, .0, .0, 2.0,422,211.0 6.510344827586207,5,a-sust-i4,2021-22,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.9, 1.0, .0, .0, .0, 2.9,540,186.20689655172416 5.689411764705883,5,a-sust-i4,2021-22,Norfolk - H Olive Day,02080015, 1.7, .0, .0, .0, .0, .0, 1.7,491,288.8235294117647 --Infinity,1,a-sust-i4,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,588,Infinity +NA,NA,a-sust-i4,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,588,Infinity 7.072,5,a-sust-i4,2021-22,North Adams - Brayton,02090035, 0.7, .7, .2, .0, .4, .0, 2.0,232,116.0 7.012,5,a-sust-i4,2021-22,North Adams - Colegrove Park Elementary,02090008, 0.9, .8, .3, .0, .0, .0, 2.0,247,123.5 6.477037037037038,5,a-sust-i4,2021-22,North Adams - Drury High,02090505, 0.0, .0, .0, 1.4, 1.4, .0, 2.7,514,190.37037037037035 @@ -4809,7 +4809,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.24,5,a-sust-i4,2021-22,North Attleborough - Falls,02120010, 0.4, .6, .0, .0, .0, .0, 1.0,220,220.0 3.36,3.36,a-sust-i4,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.4, .6, .0, .0, .0, .0, 1.0,580,580.0 6.0663829787234045,5,a-sust-i4,2021-22,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 4.7, .0, .0, 4.7,1136,241.70212765957447 --Infinity,1,a-sust-i4,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,134,Infinity +NA,NA,a-sust-i4,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,134,Infinity 5.453333333333334,5,a-sust-i4,2021-22,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, 3.0, .0, .0, .0, 3.0,955,318.3333333333333 5.984,5,a-sust-i4,2021-22,North Attleborough - Roosevelt Avenue,02120015, 0.5, .6, .0, .0, .0, .0, 1.0,252,252.0 3.44,3.44,a-sust-i4,2021-22,North Brookfield - North Brookfield Elementary,02150015, 0.2, .1, .1, .0, .0, .0, 0.5,285,570.0 @@ -4819,7 +4819,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.912,5,a-sust-i4,2021-22,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.2, 2.3, .0, .0, .0, 3.5,476,136.0 6.858181818181818,5,a-sust-i4,2021-22,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .0, 5.5, .0, .0, 5.5,785,142.72727272727272 5.67,5,a-sust-i4,2021-22,North Middlesex - Spaulding Memorial,07350005, 1.0, .6, .0, .0, .0, .0, 1.6,466,291.25 --Infinity,1,a-sust-i4,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity +NA,NA,a-sust-i4,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity 5.756,5,a-sust-i4,2021-22,North Middlesex - Varnum Brook,07350035, 1.2, .8, .0, .0, .0, .0, 2.0,561,280.5 6.812,5,a-sust-i4,2021-22,North Reading - E Ethel Little School,02170003, 1.0, 1.0, .0, .0, .0, .0, 2.0,297,148.5 6.101333333333333,5,a-sust-i4,2021-22,North Reading - J Turner Hood,02170010, 0.8, .7, .0, .0, .0, .0, 1.5,356,237.33333333333334 @@ -4843,7 +4843,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.974,5,a-sust-i4,2021-22,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 4.0, .0, .0, 4.0,513,128.25 6.368,5,a-sust-i4,2021-22,Northbridge - Northbridge Middle,02140305, 0.0, .0, 2.3, .0, .0, .2, 2.5,510,204.0 -44.28,1,a-sust-i4,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .2, .0, .0, 0.2,1307,6535.0 --Infinity,1,a-sust-i4,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,523,Infinity +NA,NA,a-sust-i4,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,523,Infinity 4.44,4.44,a-sust-i4,2021-22,Norton - Henri A. Yelle,02180060, 0.0, .8, .0, .0, .0, .0, 0.8,356,445.0 4.465454545454546,4.47,a-sust-i4,2021-22,Norton - J C Solmonese,02180015, 0.9, .3, .0, .0, .0, .0, 1.1,486,441.81818181818176 5.8,5,a-sust-i4,2021-22,Norton - L G Nourse Elementary,02180010, 0.8, .2, .0, .0, .0, .0, 1.0,275,275.0 @@ -4862,7 +4862,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.66,5,a-sust-i4,2021-22,Norwood - John P Oldham,02200020, 0.4, .6, .0, .0, .0, .6, 1.6,268,167.5 6.705573770491803,5,a-sust-i4,2021-22,Norwood - Norwood High,02200505, 0.0, .0, .0, 6.0, .0, .1, 6.1,987,161.80327868852459 6.78,5,a-sust-i4,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.7, .6, .7, .0, .8, .0, 2.8,427,152.5 --Infinity,1,a-sust-i4,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,563,Infinity +NA,NA,a-sust-i4,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,563,Infinity 6.358787878787879,5,a-sust-i4,2021-22,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 1.9, 1.4, .0, 3.3,677,205.15151515151516 6.906666666666667,5,a-sust-i4,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 3.0, .0, .0, .0, 3.0,410,136.66666666666666 6.72,5,a-sust-i4,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 1.3, .7, .0, .0, .0, .0, 2.0,320,160.0 @@ -4901,9 +4901,9 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.803636363636364,5,a-sust-i4,2021-22,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, 1.3, .0, .0, .9, 2.2,329,149.54545454545453 5.977600000000001,5,a-sust-i4,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, .7, .0, 1.9, 2.5,632,252.8 7.698666666666666,5,a-sust-i4,2021-22,Petersham - Petersham Center,02340005, 1.4, 1.2, .5, .0, .0, .0, 3.0,113,37.666666666666664 --Infinity,1,a-sust-i4,2021-22,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,138,Infinity --Infinity,1,a-sust-i4,2021-22,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,175,Infinity --Infinity,1,a-sust-i4,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity +NA,NA,a-sust-i4,2021-22,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,138,Infinity +NA,NA,a-sust-i4,2021-22,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,175,Infinity +NA,NA,a-sust-i4,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity 6.590909090909091,5,a-sust-i4,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.0, 1.2, 1.5, .2, .5, .0, 4.4,775,176.13636363636363 6.12,5,a-sust-i4,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, .0, .4, .0, 1.2, .0, 1.6,376,235.0 5.48,5,a-sust-i4,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.3, .2, .1, .0, .0, .0, 0.6,189,315.0 @@ -4913,13 +4913,13 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.776223776223777,5,a-sust-i4,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, .0, .0, .0, 14.3, .0, 14.3,400,27.97202797202797 6.672,5,a-sust-i4,2021-22,Pittsfield - Allendale,02360010, 0.5, .6, .0, .0, .0, .4, 1.5,249,166.0 6.933333333333334,5,a-sust-i4,2021-22,Pittsfield - Crosby,02360065, 0.9, 1.1, .0, .0, .0, .1, 2.1,280,133.33333333333331 --Infinity,1,a-sust-i4,2021-22,Pittsfield - Crosby Educational Academy,02360030, 0.0, .0, .0, .0, .0, .0, 0.0,21,Infinity +NA,NA,a-sust-i4,2021-22,Pittsfield - Crosby Educational Academy,02360030, 0.0, .0, .0, .0, .0, .0, 0.0,21,Infinity 7.36,5,a-sust-i4,2021-22,Pittsfield - Eagle Education Academy,02360525, 0.0, .0, .0, .0, .3, .0, 0.3,24,80.0 6.3809523809523805,5,a-sust-i4,2021-22,Pittsfield - Egremont,02360035, 1.0, 1.0, .0, .0, .0, .1, 2.1,425,202.38095238095238 7.00972972972973,5,a-sust-i4,2021-22,Pittsfield - John T Reid Middle,02360305, 0.0, .0, 2.7, .0, .0, 1.0, 3.7,458,123.78378378378378 6.712380952380952,5,a-sust-i4,2021-22,Pittsfield - Morningside Community School,02360055, 1.1, .9, .0, .0, .0, .1, 2.1,338,160.95238095238093 7.1466666666666665,5,a-sust-i4,2021-22,Pittsfield - Pittsfield High,02360505, 0.0, .0, .0, .9, 3.5, 1.9, 6.3,672,106.66666666666667 --Infinity,1,a-sust-i4,2021-22,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, .0, .0, .0, .0, .0, 0.0,206,Infinity +NA,NA,a-sust-i4,2021-22,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, .0, .0, .0, .0, .0, 0.0,206,Infinity 5.456,5,a-sust-i4,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.2, .2, .0, .0, .0, .1, 0.5,159,318.0 6.91,5,a-sust-i4,2021-22,Pittsfield - Silvio O Conte Community,02360105, 1.1, .9, .0, .0, .0, .4, 2.4,327,136.25 6.48,5,a-sust-i4,2021-22,Pittsfield - Stearns,02360090, 0.4, .4, .0, .0, .0, .4, 1.2,228,190.0 @@ -4935,7 +4935,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.043809523809524,5,a-sust-i4,2021-22,Plymouth - Manomet Elementary,02390015, 0.8, 1.3, .0, .0, .0, .0, 2.1,251,119.52380952380952 6.3872,5,a-sust-i4,2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 0.8, 1.6, .0, .0, .0, .0, 2.5,504,201.6 6.204,5,a-sust-i4,2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 4.0, .0, .0, .0, 4.0,898,224.5 --Infinity,1,a-sust-i4,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,189,Infinity +NA,NA,a-sust-i4,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,189,Infinity 5.904,5,a-sust-i4,2021-22,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 5.0, .0, .0, 5.0,1310,262.0 5.902,5,a-sust-i4,2021-22,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 4.0, .0, .0, 4.0,1049,262.25 6.674,5,a-sust-i4,2021-22,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 4.0, .0, .0, .0, 4.0,663,165.75 @@ -4955,7 +4955,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.222222222222222,5,a-sust-i4,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, .9, .0, .0, .0, 0.9,200,222.22222222222223 6.235,5,a-sust-i4,2021-22,Quaboag Regional - Warren Elementary,07780005, 0.7, .7, .3, .0, .0, .0, 1.6,353,220.625 6.024,5,a-sust-i4,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.4, .4, .1, .0, .0, .0, 1.0,247,247.0 --Infinity,1,a-sust-i4,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity +NA,NA,a-sust-i4,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity 6.145454545454546,5,a-sust-i4,2021-22,Quincy - Atherton Hough,02430040, 0.4, .7, .0, .0, .0, .0, 1.1,255,231.8181818181818 6.3328,5,a-sust-i4,2021-22,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.5, .0, .0, .0, 2.5,521,208.4 5.256,5,a-sust-i4,2021-22,Quincy - Beechwood Knoll Elementary,02430020, 0.4, .6, .0, .0, .0, .0, 1.0,343,343.0 @@ -4998,7 +4998,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.144,5,a-sust-i4,2021-22,Revere - Paul Revere,02480050, 1.1, .9, .0, .0, .0, .0, 2.0,464,232.0 5.718857142857143,5,a-sust-i4,2021-22,Revere - Revere High,02480505, 0.0, .0, .0, 4.9, 1.8, .4, 7.0,1996,285.14285714285717 6.864,5,a-sust-i4,2021-22,Revere - Rumney Marsh Academy,02480014, 0.0, .0, 3.0, .0, 1.0, .0, 4.0,568,142.0 --Infinity,1,a-sust-i4,2021-22,Revere - Seacoast School,02480520, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity +NA,NA,a-sust-i4,2021-22,Revere - Seacoast School,02480520, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity 6.296,5,a-sust-i4,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 1.4, 1.6, .0, .0, .0, .0, 3.0,639,213.0 7.097600000000001,5,a-sust-i4,2021-22,Revere - Susan B. Anthony Middle School,02480305, 0.0, .0, 4.0, .0, 1.0, .0, 5.0,564,112.8 7.372,5,a-sust-i4,2021-22,Richmond - Richmond Consolidated,02490005, 0.5, .6, .9, .0, .0, .0, 2.0,157,78.5 @@ -5020,7 +5020,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.179130434782608,5,a-sust-i4,2021-22,Salem - Carlton,02580015, 1.0, 1.0, .0, .0, .0, .3, 2.3,236,102.60869565217392 6.966530612244898,5,a-sust-i4,2021-22,Salem - Collins Middle,02580305, 0.0, .0, 4.9, .0, .0, .0, 4.9,633,129.18367346938774 6.934545454545455,5,a-sust-i4,2021-22,Salem - Horace Mann Laboratory,02580030, 1.2, .9, .0, .0, .0, .0, 2.2,293,133.18181818181816 --Infinity,1,a-sust-i4,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,54,Infinity +NA,NA,a-sust-i4,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,54,Infinity 7.45,5,a-sust-i4,2021-22,Salem - Salem Early Childhood,02580001, 1.6, .0, .0, .0, .0, .0, 1.6,110,68.75 6.715199999999999,5,a-sust-i4,2021-22,Salem - Salem High,02580505, 0.0, .0, .0, 4.9, .0, .1, 5.0,803,160.6 7.546666666666666,5,a-sust-i4,2021-22,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .3, .0, .0, 0.3,17,56.66666666666667 @@ -5049,16 +5049,16 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.612307692307692,5,a-sust-i4,2021-22,Sharon - Cottage Street,02660005, 0.8, 1.7, .0, .0, .0, .0, 2.6,451,173.46153846153845 6.709333333333333,5,a-sust-i4,2021-22,Sharon - East Elementary,02660010, 0.8, 2.2, .0, .0, .0, .0, 3.0,484,161.33333333333334 5.852,5,a-sust-i4,2021-22,Sharon - Heights Elementary,02660015, 0.8, 1.2, .0, .0, .0, .0, 2.0,537,268.5 --Infinity,1,a-sust-i4,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity 6.506229508196721,5,a-sust-i4,2021-22,Sharon - Sharon High,02660505, 0.0, .0, .0, .2, 5.9, .0, 6.1,1139,186.72131147540983 6.748571428571428,5,a-sust-i4,2021-22,Sharon - Sharon Middle,02660305, 0.0, .0, 5.6, .0, .0, .0, 5.6,876,156.42857142857144 --Infinity,1,a-sust-i4,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1317,Infinity +NA,NA,a-sust-i4,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1317,Infinity 5.985,5,a-sust-i4,2021-22,Sherborn - Pine Hill,02690010, 0.8, .8, .0, .0, .0, .0, 1.6,403,251.875 6.542857142857143,5,a-sust-i4,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 0.8, .6, .0, .0, .0, .0, 1.4,255,182.14285714285717 6.494814814814815,5,a-sust-i4,2021-22,Shrewsbury - Floral Street School,02710020, 1.5, 1.2, .0, .0, .0, .0, 2.7,508,188.14814814814812 6.445333333333333,5,a-sust-i4,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 1.6, 1.4, .0, .0, .0, .0, 3.0,583,194.33333333333334 4.736666666666666,4.74,a-sust-i4,2021-22,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 2.4, .0, .0, .0, 2.4,979,407.9166666666667 --Infinity,1,a-sust-i4,2021-22,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,164,Infinity +NA,NA,a-sust-i4,2021-22,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,164,Infinity 5.884444444444444,5,a-sust-i4,2021-22,Shrewsbury - Sherwood Middle School,02710305, 0.0, 1.8, 1.8, .0, .0, .0, 3.6,952,264.44444444444446 6.0162162162162165,5,a-sust-i4,2021-22,Shrewsbury - Shrewsbury High School,02710505, 0.0, .0, .0, .3, 7.1, .0, 7.4,1835,247.97297297297297 6.416,5,a-sust-i4,2021-22,Shrewsbury - Spring Street School,02710035, 0.8, .7, .0, .0, .0, .0, 1.5,297,198.0 @@ -5079,7 +5079,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.2575,5,a-sust-i4,2021-22,Somerville - E Somerville Community,02740111, 0.6, 1.8, .7, .0, .0, .0, 3.2,697,217.8125 5.92,5,a-sust-i4,2021-22,Somerville - Full Circle High School,02740510, 0.0, .0, .0, .2, .0, .0, 0.2,52,260.0 6.256,5,a-sust-i4,2021-22,Somerville - John F Kennedy,02740083, 0.5, .5, 1.0, .0, .0, .0, 2.0,436,218.0 --Infinity,1,a-sust-i4,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity +NA,NA,a-sust-i4,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity 6.814545454545455,5,a-sust-i4,2021-22,Somerville - Somerville High,02740505, 0.0, .0, .0, 8.8, .0, .0, 8.8,1304,148.18181818181816 6.351111111111111,5,a-sust-i4,2021-22,Somerville - West Somerville Neighborhood,02740115, 0.6, .6, .6, .0, .0, .0, 1.8,371,206.11111111111111 7.24,5,a-sust-i4,2021-22,Somerville - Winter Hill Community,02740120, 1.9, .8, 1.6, .0, .0, .0, 4.4,418,94.99999999999999 @@ -5089,7 +5089,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.3015384615384615,5,a-sust-i4,2021-22,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .6, 2.0, .0, 2.6,552,212.3076923076923 2.7692307692307696,2.77,a-sust-i4,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, 1.3, .0, .0, 1.3,850,653.8461538461538 6.6,5,a-sust-i4,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 1.3, 1.6, 2.4, .6, .0, .0, 6.0,1050,175.0 --Infinity,1,a-sust-i4,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,655,Infinity +NA,NA,a-sust-i4,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,655,Infinity 6.136,5,a-sust-i4,2021-22,Southampton - William E Norris,02750005, 0.9, .8, .3, .0, .0, .0, 2.0,466,233.0 6.565333333333333,5,a-sust-i4,2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 0.6, .6, .0, .0, .3, .0, 1.5,269,179.33333333333334 7.306666666666666,5,a-sust-i4,2021-22,Southborough - Margaret A Neary,02760020, 0.0, 2.9, .0, .0, .1, .0, 3.0,260,86.66666666666667 @@ -5101,12 +5101,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.229565217391304,5,a-sust-i4,2021-22,Southbridge - Southbridge High School,02770515, 0.0, .0, .0, 4.6, .0, .0, 4.6,443,96.30434782608697 6.914666666666667,5,a-sust-i4,2021-22,Southbridge - Southbridge Middle School,02770315, 0.0, .0, 3.0, .0, .0, .0, 3.0,407,135.66666666666666 6.96,5,a-sust-i4,2021-22,Southbridge - West Street,02770020, 0.5, 1.9, .0, .0, .0, .0, 2.4,312,130.0 --Infinity,1,a-sust-i4,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1550,Infinity +NA,NA,a-sust-i4,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1550,Infinity 7.263030303030303,5,a-sust-i4,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 0.0, .0, 1.3, 2.1, .0, .0, 3.3,304,92.12121212121212 7.12,5,a-sust-i4,2021-22,Southern Berkshire - New Marlborough Central,07650018, 0.3, .3, .0, .0, .0, .0, 0.6,66,110.0 7.48,5,a-sust-i4,2021-22,Southern Berkshire - South Egremont,07650030, 0.2, .0, .0, .0, .0, .0, 0.2,13,65.0 6.571428571428571,5,a-sust-i4,2021-22,Southern Berkshire - Undermountain,07650035, 0.6, .8, .0, .0, .0, .0, 1.4,250,178.57142857142858 --Infinity,1,a-sust-i4,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1173,Infinity +NA,NA,a-sust-i4,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1173,Infinity 6.793846153846154,5,a-sust-i4,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.9, .7, .0, .0, .0, 2.6,392,150.76923076923077 6.775813953488372,5,a-sust-i4,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, 1.1, 3.3, .0, .0, 4.3,658,153.02325581395348 6.764,5,a-sust-i4,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, .0, .0, .0, .0, .0, 2.0,309,154.5 @@ -5121,15 +5121,15 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.394666666666667,5,a-sust-i4,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, 1.5, .0, .0, .0, 1.5,301,200.66666666666666 7.614545454545454,5,a-sust-i4,2021-22,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 3.2, .9, 1.6, 1.0, 6.6,318,48.18181818181819 6.256842105263158,5,a-sust-i4,2021-22,Springfield - Daniel B Brunton,02810035, 0.9, 1.1, .0, .0, .0, .0, 1.9,414,217.89473684210526 --Infinity,1,a-sust-i4,2021-22,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity 5.944347826086956,5,a-sust-i4,2021-22,Springfield - Edward P. Boland School,02810010, 0.9, 1.3, .0, .0, .0, .0, 2.3,591,256.95652173913044 6.16,5,a-sust-i4,2021-22,Springfield - Elias Brookings,02810030, 0.4, .7, .0, .0, .3, .0, 1.3,299,230.0 --Infinity,1,a-sust-i4,2021-22,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity 4.16,4.16,a-sust-i4,2021-22,Springfield - Forest Park Middle,02810325, 0.0, .0, 1.0, .0, .0, .0, 1.0,480,480.0 6.928888888888888,5,a-sust-i4,2021-22,Springfield - Frank H Freedman,02810075, 0.9, .9, .0, .0, .0, .0, 1.8,241,133.88888888888889 4.16,4.16,a-sust-i4,2021-22,Springfield - Frederick Harris,02810080, 0.5, .7, .0, .0, .0, .0, 1.2,576,480.0 --Infinity,1,a-sust-i4,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity --Infinity,1,a-sust-i4,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity 5.724,5,a-sust-i4,2021-22,Springfield - German Gerena Community School,02810195, 0.8, .9, .0, .0, .3, .0, 2.0,569,284.5 6.967272727272727,5,a-sust-i4,2021-22,Springfield - Glenwood,02810065, 0.7, 1.1, .0, .0, .4, .0, 2.2,284,129.0909090909091 5.927272727272728,5,a-sust-i4,2021-22,Springfield - Glickman Elementary,02810068, 0.3, .4, .0, .0, .4, .0, 1.1,285,259.09090909090907 @@ -5148,14 +5148,14 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.598518518518518,5,a-sust-i4,2021-22,Springfield - Lincoln,02810120, 1.0, 1.7, .0, .0, .0, .0, 2.7,473,175.18518518518516 6.934193548387096,5,a-sust-i4,2021-22,Springfield - Lyceum Academy,02810317, 0.0, .0, 2.3, .0, .8, .0, 3.1,413,133.2258064516129 6.232,5,a-sust-i4,2021-22,Springfield - M Marcus Kiley Middle,02810330, 0.0, .0, 1.0, .0, .0, .0, 1.0,221,221.0 --Infinity,1,a-sust-i4,2021-22,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,129,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,129,Infinity 6.153333333333333,5,a-sust-i4,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.6, .6, .0, .0, .0, .0, 1.2,277,230.83333333333334 7.172,5,a-sust-i4,2021-22,Springfield - Mary M Lynch,02810140, 0.8, 1.2, .0, .0, .0, .0, 2.0,207,103.5 6.058181818181818,5,a-sust-i4,2021-22,Springfield - Mary M Walsh,02810155, 0.3, .5, .0, .0, .3, .0, 1.1,267,242.72727272727272 6.384,5,a-sust-i4,2021-22,Springfield - Mary O Pottenger,02810145, 0.8, 1.2, .0, .0, .0, .0, 2.0,404,202.0 6.057142857142857,5,a-sust-i4,2021-22,Springfield - Milton Bradley School,02810023, 0.6, 1.0, .0, .0, .5, .0, 2.1,510,242.85714285714283 6.589714285714286,5,a-sust-i4,2021-22,Springfield - Rebecca M Johnson,02810055, 1.1, 1.9, .0, .0, .6, .0, 3.5,617,176.28571428571428 --Infinity,1,a-sust-i4,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,273,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,273,Infinity 4.743529411764706,4.74,a-sust-i4,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, .0, .0, 2.9, .4, .0, 3.4,1384,407.05882352941177 6.501333333333333,5,a-sust-i4,2021-22,Springfield - STEM Middle Academy,02810350, 0.0, .0, 1.5, .0, .0, .0, 1.5,281,187.33333333333334 6.95,5,a-sust-i4,2021-22,Springfield - Samuel Bowles,02810020, 0.5, .9, .0, .0, .2, .0, 1.6,210,131.25 @@ -5163,14 +5163,14 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.918,5,a-sust-i4,2021-22,Springfield - Springfield Central High,02810500, 0.0, .0, .0, 3.8, 3.7, .6, 8.0,2082,260.25 6.985,5,a-sust-i4,2021-22,Springfield - Springfield High School,02810570, 0.0, .0, .0, 1.2, .3, .0, 1.6,203,126.875 6.168333333333333,5,a-sust-i4,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 0.0, .0, .0, 1.6, 2.6, .6, 4.8,1099,228.95833333333334 --Infinity,1,a-sust-i4,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity 4.92,4.92,a-sust-i4,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, .0, .0, .0, .2, .0, 0.2,77,385.0 7.626666666666666,5,a-sust-i4,2021-22,Springfield - Springfield Middle School,02810360, 0.0, .0, .3, .0, .0, .0, 0.3,14,46.66666666666667 7.888888888888888,5,a-sust-i4,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 0.0, .0, .0, .0, 1.8, .0, 1.8,25,13.88888888888889 --Infinity,1,a-sust-i4,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity 7.493333333333334,5,a-sust-i4,2021-22,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, .6, .0, .0, .0, 0.6,38,63.333333333333336 --Infinity,1,a-sust-i4,2021-22,Springfield - Springfield Realization Academy,02810335, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity --Infinity,1,a-sust-i4,2021-22,Springfield - Springfield Transition Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Springfield Realization Academy,02810335, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity +NA,NA,a-sust-i4,2021-22,Springfield - Springfield Transition Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity 6.02,5,a-sust-i4,2021-22,Springfield - Sumner Avenue,02810160, 0.7, .9, .0, .0, .5, .0, 2.0,495,247.5 6.526060606060606,5,a-sust-i4,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.4, 1.4, .0, .5, 3.3,608,184.24242424242425 5.87047619047619,5,a-sust-i4,2021-22,Springfield - The Springfield Virtual School,02810705, 0.5, .9, .0, .1, .6, .0, 2.1,559,266.1904761904762 @@ -5187,7 +5187,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.475294117647058,5,a-sust-i4,2021-22,Stoneham - South,02840030, 1.0, .7, .0, .0, .0, .0, 1.7,324,190.58823529411765 6.582,5,a-sust-i4,2021-22,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.1, 2.9, .0, .0, .0, 4.0,709,177.25 6.842,5,a-sust-i4,2021-22,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 4.0, .0, 4.0,579,144.75 --Infinity,1,a-sust-i4,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 6.3015384615384615,5,a-sust-i4,2021-22,Stoughton - Helen Hansen Elementary,02850010, 0.7, .6, .0, .0, .0, .0, 1.3,276,212.3076923076923 6.64,5,a-sust-i4,2021-22,Stoughton - Joseph H Gibbons,02850025, 0.9, 1.0, .0, .0, .2, .0, 2.0,340,170.0 6.620952380952381,5,a-sust-i4,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.9, .9, .0, .0, .2, .0, 2.1,362,172.38095238095238 @@ -5221,18 +5221,18 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.3452631578947365,2.35,a-sust-i4,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.4, .6, 1.4, 1.3, .0, .0, 3.8,2686,706.8421052631579 6.426666666666667,5,a-sust-i4,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,590,196.66666666666666 6.73860465116279,5,a-sust-i4,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, 4.3, .0, .0, 4.3,678,157.67441860465118 --Infinity,1,a-sust-i4,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,521,Infinity +NA,NA,a-sust-i4,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,521,Infinity 6.029333333333333,5,a-sust-i4,2021-22,Taunton - Benjamin Friedman Middle,02930315, 0.0, .9, 2.1, .0, .0, .0, 3.0,739,246.33333333333334 5.72,5,a-sust-i4,2021-22,Taunton - East Taunton Elementary,02930010, 1.1, .6, .0, .0, .0, .0, 1.8,513,285.0 5.608,5,a-sust-i4,2021-22,Taunton - Edmund Hatch Bennett,02930007, 0.6, .4, .0, .0, .0, .0, 1.0,299,299.0 --Infinity,1,a-sust-i4,2021-22,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,217,Infinity +NA,NA,a-sust-i4,2021-22,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,217,Infinity 4.541538461538461,4.54,a-sust-i4,2021-22,Taunton - Elizabeth Pole,02930027, 0.7, .6, .0, .0, .0, .0, 1.3,562,432.3076923076923 5.41,5,a-sust-i4,2021-22,Taunton - H H Galligan,02930057, 0.5, .3, .0, .0, .0, .0, 0.8,259,323.75 4.732,4.73,a-sust-i4,2021-22,Taunton - James L. Mulcahey Elementary School,02930015, 1.2, .8, .0, .0, .0, .0, 2.0,817,408.5 5.96,5,a-sust-i4,2021-22,Taunton - John F Parker Middle,02930305, 0.0, .6, 1.2, .0, .0, .0, 1.8,459,255.0 4.48,4.48,a-sust-i4,2021-22,Taunton - Joseph C Chamberlain,02930008, 0.6, .4, .0, .0, .0, .0, 1.0,440,440.0 5.888,5,a-sust-i4,2021-22,Taunton - Joseph H Martin,02930042, 0.0, .8, 1.7, .0, .0, .0, 2.5,660,264.0 --Infinity,1,a-sust-i4,2021-22,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,72,Infinity +NA,NA,a-sust-i4,2021-22,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,72,Infinity 4.8914285714285715,4.89,a-sust-i4,2021-22,Taunton - Taunton High,02930505, 0.0, .0, 1.9, 4.3, .9, .0, 7.0,2720,388.57142857142856 5.584,5,a-sust-i4,2021-22,Tewksbury - Heath-Brook,02950010, 1.0, .0, .0, .0, .0, .0, 1.0,302,302.0 6.557142857142857,5,a-sust-i4,2021-22,Tewksbury - John F. Ryan,02950023, 0.0, 1.4, 1.4, .0, .0, .0, 2.8,505,180.35714285714286 @@ -5258,8 +5258,8 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.388,5,a-sust-i4,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.7, .6, .7, .0, .0, .0, 2.0,653,326.5 7.6742857142857135,5,a-sust-i4,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0.2, .0, .0, .0, 1.2, .0, 1.4,57,40.714285714285715 7.081290322580646,5,a-sust-i4,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 0.6, .6, .9, .0, 1.1, .0, 3.1,356,114.83870967741935 --Infinity,1,a-sust-i4,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,744,Infinity --Infinity,1,a-sust-i4,2021-22,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,32,Infinity +NA,NA,a-sust-i4,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,744,Infinity +NA,NA,a-sust-i4,2021-22,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,32,Infinity 5.892,5,a-sust-i4,2021-22,Uxbridge - Taft Early Learning Center,03040005, 1.5, .5, .0, .0, .0, .0, 2.0,527,263.5 6.42,5,a-sust-i4,2021-22,Uxbridge - Uxbridge High,03040505, 0.0, .0, .1, 2.7, .0, .0, 2.8,553,197.5 6.629333333333333,5,a-sust-i4,2021-22,Uxbridge - Whitin Intermediate,03040405, 0.0, 2.3, .7, .0, .0, .0, 3.0,514,171.33333333333334 @@ -5268,7 +5268,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.783157894736842,5,a-sust-i4,2021-22,Wachusett - Chocksett Middle School,07750315, 0.0, .6, 1.3, .0, .0, .0, 1.9,289,152.10526315789474 6.431304347826087,5,a-sust-i4,2021-22,Wachusett - Davis Hill Elementary,07750018, 1.1, 1.2, .0, .0, .0, .0, 2.3,451,196.08695652173915 6.225454545454546,5,a-sust-i4,2021-22,Wachusett - Dawson,07750020, 1.3, .9, .0, .0, .0, .0, 2.2,488,221.8181818181818 --Infinity,1,a-sust-i4,2021-22,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity +NA,NA,a-sust-i4,2021-22,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity 6.676,5,a-sust-i4,2021-22,Wachusett - Glenwood Elementary School,07750060, 0.0, 2.0, .0, .0, .0, .0, 2.0,331,165.5 6.7542857142857144,5,a-sust-i4,2021-22,Wachusett - Houghton Elementary,07750027, 1.3, .8, .0, .0, .0, .0, 2.1,327,155.7142857142857 6.0,5,a-sust-i4,2021-22,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,500,250.0 @@ -5278,7 +5278,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.517894736842105,5,a-sust-i4,2021-22,Wachusett - Thomas Prince,07750045, 0.7, .7, .5, .0, .0, .0, 1.9,352,185.26315789473685 6.4288,5,a-sust-i4,2021-22,Wachusett - Wachusett Regional High,07750505, 0.0, .0, .0, 6.1, 3.9, .0, 10.0,1964,196.4 5.616,5,a-sust-i4,2021-22,Wakefield - Dolbeare,03050005, 1.0, .6, .0, .0, .0, .0, 1.5,447,298.0 --Infinity,1,a-sust-i4,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity +NA,NA,a-sust-i4,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity 6.484285714285714,5,a-sust-i4,2021-22,Wakefield - Galvin Middle School,03050310, 0.0, 1.7, 3.9, .0, .0, .0, 5.6,1061,189.46428571428572 6.216,5,a-sust-i4,2021-22,Wakefield - Greenwood,03050020, 0.6, .4, .0, .0, .0, .0, 1.0,223,223.0 6.958769230769231,5,a-sust-i4,2021-22,Wakefield - Wakefield Memorial High,03050505, 0.0, .0, .0, 6.5, .0, .0, 6.5,846,130.15384615384616 @@ -5287,7 +5287,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.82,5,a-sust-i4,2021-22,Wales - Wales Elementary,03060005, 0.5, .2, .1, .0, .0, .0, 0.8,118,147.5 7.140571428571429,5,a-sust-i4,2021-22,Walpole - Bird Middle,03070305, 0.0, .0, 3.5, .0, .0, .0, 3.5,376,107.42857142857143 6.404210526315789,5,a-sust-i4,2021-22,Walpole - Boyden,03070010, 1.0, .9, .0, .0, .0, .0, 1.9,379,199.47368421052633 --Infinity,1,a-sust-i4,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity +NA,NA,a-sust-i4,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity 7.026285714285714,5,a-sust-i4,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 3.5, .0, .0, .0, 3.5,426,121.71428571428571 6.15578947368421,5,a-sust-i4,2021-22,Walpole - Elm Street School,03070005, 1.1, .8, .0, .0, .0, .0, 1.9,438,230.5263157894737 6.22,5,a-sust-i4,2021-22,Walpole - Fisher,03070015, 1.1, .9, .0, .0, .0, .0, 2.0,445,222.5 @@ -5308,7 +5308,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.98,5,a-sust-i4,2021-22,Ware - Ware Middle School,03090305, 0.0, 1.3, .7, .0, .0, .0, 2.0,255,127.5 5.576,5,a-sust-i4,2021-22,Wareham - John William Decas,03100003, 2.0, .0, .0, .0, .0, .0, 2.0,606,303.0 6.724,5,a-sust-i4,2021-22,Wareham - Minot Forest,03100017, 0.0, 2.0, .0, .0, .0, .0, 2.0,319,159.5 --Infinity,1,a-sust-i4,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 6.46,5,a-sust-i4,2021-22,Wareham - Wareham Middle,03100305, 0.0, .8, 1.7, .0, .0, .0, 2.4,462,192.5 6.764,5,a-sust-i4,2021-22,Wareham - Wareham Senior High,03100505, 0.0, .0, .2, 1.9, .0, 1.8, 4.0,618,154.5 6.703157894736842,5,a-sust-i4,2021-22,Watertown - Cunniff,03140015, 0.8, 1.1, .0, .0, .0, .0, 1.9,308,162.10526315789474 @@ -5329,7 +5329,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.689230769230769,5,a-sust-i4,2021-22,Wellesley - John D Hardy,03170020, 0.7, .7, .0, .0, .0, .0, 1.3,213,163.84615384615384 6.94,5,a-sust-i4,2021-22,Wellesley - Joseph E Fiske,03170015, 0.9, 1.1, .0, .0, .0, .0, 2.0,265,132.5 6.868,5,a-sust-i4,2021-22,Wellesley - Katharine Lee Bates,03170005, 0.9, 1.1, .0, .0, .0, .0, 2.0,283,141.5 --Infinity,1,a-sust-i4,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity +NA,NA,a-sust-i4,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity 6.66,5,a-sust-i4,2021-22,Wellesley - Schofield,03170045, 1.0, 1.0, .0, .0, .0, .0, 2.0,335,167.5 6.788,5,a-sust-i4,2021-22,Wellesley - Sprague Elementary School,03170048, 0.9, 1.1, .0, .0, .0, .0, 2.0,303,151.5 7.093932584269663,5,a-sust-i4,2021-22,Wellesley - Wellesley Middle,03170305, 0.0, .0, 8.6, .0, .0, .4, 8.9,1008,113.25842696629213 @@ -5341,7 +5341,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.76,3.76,a-sust-i4,2021-22,West Bridgewater - Rose L Macdonald,03230003, 0.4, .2, .0, .0, .0, .0, 0.6,318,530.0 6.08,5,a-sust-i4,2021-22,West Bridgewater - Spring Street School,03230005, 0.6, .0, .0, .0, .0, .0, 0.6,144,240.0 6.869090909090909,5,a-sust-i4,2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, .0, .9, 3.6, .0, .0, 4.4,622,141.36363636363635 --Infinity,1,a-sust-i4,2021-22,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2021-22,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 6.567272727272728,5,a-sust-i4,2021-22,West Springfield - John Ashley,03320005, 1.1, .0, .0, .0, .0, .0, 1.1,197,179.09090909090907 5.333333333333333,5,a-sust-i4,2021-22,West Springfield - John R Fausey,03320010, 0.4, .8, .0, .0, .0, .0, 1.2,400,333.33333333333337 6.48,5,a-sust-i4,2021-22,West Springfield - Memorial,03320025, 0.4, .6, .0, .0, .0, .0, 1.1,209,189.99999999999997 @@ -5357,7 +5357,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.033469387755102,5,a-sust-i4,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 4.2, .0, .6, .0, 4.9,592,120.81632653061223 5.994893617021276,5,a-sust-i4,2021-22,Westborough - Westborough High,03210505, 0.0, .0, .0, .4, 4.3, .0, 4.7,1178,250.63829787234042 6.29,5,a-sust-i4,2021-22,Westfield - Abner Gibbs,03250020, 0.5, .3, .0, .0, .0, .0, 0.8,171,213.75 --Infinity,1,a-sust-i4,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 5.988571428571428,5,a-sust-i4,2021-22,Westfield - Franklin Ave,03250015, 0.4, .3, .0, .0, .0, .0, 0.7,176,251.42857142857144 5.12,5,a-sust-i4,2021-22,Westfield - Highland,03250025, 0.5, .4, .0, .0, .0, .0, 0.9,324,360.0 6.447058823529412,5,a-sust-i4,2021-22,Westfield - Munger Hill,03250033, 0.7, .5, .0, .0, .5, .0, 1.7,330,194.11764705882354 @@ -5392,12 +5392,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.274666666666666,5,a-sust-i4,2021-22,Westwood - Martha Jones,03350017, 0.9, 2.1, .0, .0, .0, .0, 3.0,272,90.66666666666667 6.836923076923077,5,a-sust-i4,2021-22,Westwood - Paul Hanlon,03350015, 0.5, .8, .0, .0, .0, .0, 1.3,189,145.3846153846154 6.751475409836066,5,a-sust-i4,2021-22,Westwood - Westwood High,03350505, 0.0, .0, .0, 6.1, .0, .0, 6.1,952,156.06557377049182 --Infinity,1,a-sust-i4,2021-22,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,43,Infinity +NA,NA,a-sust-i4,2021-22,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,43,Infinity 6.72,5,a-sust-i4,2021-22,Westwood - William E Sheehan,03350025, 0.7, 1.1, .0, .0, .0, .0, 1.8,288,160.0 6.954666666666667,5,a-sust-i4,2021-22,Weymouth - Abigail Adams Middle School,03360310, 0.0, .0, 6.0, .0, .0, .0, 6.0,784,130.66666666666666 5.672727272727273,5,a-sust-i4,2021-22,Weymouth - Academy Avenue,03360005, 0.5, .6, .0, .0, .0, .0, 1.1,320,290.9090909090909 5.963636363636364,5,a-sust-i4,2021-22,Weymouth - Frederick C Murphy,03360050, 0.5, .6, .0, .0, .0, .0, 1.1,280,254.54545454545453 --Infinity,1,a-sust-i4,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,171,Infinity +NA,NA,a-sust-i4,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,171,Infinity 6.181818181818182,5,a-sust-i4,2021-22,Weymouth - Lawrence W Pingree,03360065, 0.5, .6, .0, .0, .0, .0, 1.1,250,227.27272727272725 6.189090909090909,5,a-sust-i4,2021-22,Weymouth - Ralph Talbot,03360085, 0.5, .6, .0, .0, .0, .0, 1.1,249,226.36363636363635 6.538181818181818,5,a-sust-i4,2021-22,Weymouth - Thomas V Nash,03360060, 0.5, .6, .0, .0, .0, .0, 1.1,201,182.72727272727272 @@ -5410,7 +5410,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.004,5,a-sust-i4,2021-22,Whitman-Hanson - Indian Head,07800035, 1.2, .8, .0, .0, .0, .0, 2.0,499,249.5 4.664,4.66,a-sust-i4,2021-22,Whitman-Hanson - John H Duval,07800030, 0.5, .5, .0, .0, .0, .0, 1.0,417,417.0 6.032,5,a-sust-i4,2021-22,Whitman-Hanson - Louise A Conley,07800010, 1.0, 1.0, .0, .0, .0, .0, 2.0,492,246.0 --Infinity,1,a-sust-i4,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 5.2825,5,a-sust-i4,2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, .0, .0, .0, 1.0, 2.2, 3.2,1087,339.6875 6.2156521739130435,5,a-sust-i4,2021-22,Whitman-Hanson - Whitman Middle,07800310, 0.0, .0, 2.3, .0, .0, .0, 2.3,513,223.0434782608696 -2.256,1,a-sust-i4,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, .0, .0, 1.0, .0, .0, 1.0,1282,1282.0 @@ -5424,11 +5424,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.667317073170731,5,a-sust-i4,2021-22,Wilmington - Wilmington Middle School,03420330, 0.0, .0, 4.1, .0, .0, .0, 4.1,683,166.58536585365854 6.616,5,a-sust-i4,2021-22,Wilmington - Woburn Street,03420020, 1.4, .6, .0, .0, .0, .0, 2.0,346,173.0 5.672,5,a-sust-i4,2021-22,Winchendon - Memorial,03430040, 1.0, .0, .0, .0, .0, .0, 1.0,291,291.0 --Infinity,1,a-sust-i4,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity +NA,NA,a-sust-i4,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity 6.94,5,a-sust-i4,2021-22,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .3, 1.7, .0, 2.0,265,132.5 5.96,5,a-sust-i4,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, .0, .8, .0, .3, .0, 1.0,255,255.0 5.624,5,a-sust-i4,2021-22,Winchendon - Toy Town Elementary,03430050, 0.0, 1.0, .0, .0, .0, .0, 1.0,297,297.0 --Infinity,1,a-sust-i4,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,72,Infinity +NA,NA,a-sust-i4,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,72,Infinity 1.1,1.1,a-sust-i4,2021-22,Winchester - Ambrose Elementary,03440045, 0.2, .2, .0, .0, .0, .0, 0.4,345,862.5 5.864615384615385,5,a-sust-i4,2021-22,Winchester - Lincoln Elementary,03440005, 0.5, .8, .0, .0, .0, .0, 1.3,347,266.9230769230769 5.751111111111111,5,a-sust-i4,2021-22,Winchester - Lynch Elementary,03440020, 0.8, 1.0, .0, .0, .0, .0, 1.8,506,281.1111111111111 @@ -5469,7 +5469,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.94,5,a-sust-i4,2021-22,Worcester - Gates Lane,03480110, 0.9, .9, .2, .0, .0, .0, 2.0,515,257.5 6.488,5,a-sust-i4,2021-22,Worcester - Goddard School/Science Technical,03480100, 0.9, .8, .3, .0, .0, .0, 2.0,378,189.0 6.070588235294117,5,a-sust-i4,2021-22,Worcester - Grafton Street,03480115, 0.9, .6, .2, .0, .0, .0, 1.7,410,241.1764705882353 --Infinity,1,a-sust-i4,2021-22,Worcester - Head Start,03480002, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity +NA,NA,a-sust-i4,2021-22,Worcester - Head Start,03480002, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity 6.413333333333333,5,a-sust-i4,2021-22,Worcester - Heard Street,03480136, 0.5, .5, .2, .0, .0, .0, 1.2,238,198.33333333333334 6.21,5,a-sust-i4,2021-22,Worcester - Jacob Hiatt Magnet,03480140, 0.8, .6, .2, .0, .0, .0, 1.6,358,223.75 7.270588235294117,5,a-sust-i4,2021-22,Worcester - La Familia Dual Language School,03480025, 0.8, .7, .2, .0, .0, .0, 1.7,155,91.17647058823529 @@ -5500,7 +5500,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.622222222222223,4.62,a-sust-i4,2021-22,Wrentham - Charles E Roderick,03500010, 0.0, .6, .3, .0, .0, .0, 0.9,380,422.22222222222223 6.032727272727273,5,a-sust-i4,2021-22,Wrentham - Delaney,03500003, 1.6, .5, .0, .0, .0, .0, 2.2,541,245.90909090909088 6.733333333333333,5,a-sust-i4,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 1.5, 3.0, 3.1, .0, .0, 9.0,1425,158.33333333333334 --Infinity,1,a-sust-i4,2020-21,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,51,Infinity +NA,NA,a-sust-i4,2020-21,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,51,Infinity 5.74909090909091,5,a-sust-i4,2020-21,Abington - Abington High,00010505, 0.0, .0, .0, 2.2, .0, .0, 2.2,619,281.3636363636363 6.722,5,a-sust-i4,2020-21,Abington - Abington Middle School,00010405, 0.0, 1.3, 2.7, .0, .0, .0, 4.0,639,159.75 2.262857142857142,2.26,a-sust-i4,2020-21,Abington - Beaver Brook Elementary,00010020, 0.7, .0, .0, .0, .0, .0, 0.7,502,717.1428571428572 @@ -5509,16 +5509,16 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.0810958904109595,5,a-sust-i4,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, 1.7, 2.1, 3.5, 7.3,1751,239.86301369863014 6.052,5,a-sust-i4,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 1.0, .8, .3, .0, .0, .0, 2.0,487,243.5 6.685217391304348,5,a-sust-i4,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 1.1, .7, .6, .0, .0, .0, 2.3,378,164.34782608695653 --Infinity,1,a-sust-i4,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity +NA,NA,a-sust-i4,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity 4.848,4.85,a-sust-i4,2020-21,Acton-Boxborough - Luther Conant School,06000030, 0.4, .5, .1, .0, .0, .0, 1.0,394,394.0 6.068,5,a-sust-i4,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0.9, .9, .3, .0, .0, .0, 2.0,483,241.5 6.268,5,a-sust-i4,2020-21,Acton-Boxborough - Merriam School,06000010, 0.9, .8, .3, .0, .0, .0, 2.0,433,216.5 4.648888888888889,4.65,a-sust-i4,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.4, .4, .1, .0, .0, .0, 0.9,377,418.88888888888886 6.791272727272727,5,a-sust-i4,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, .0, 5.5, .0, .0, .0, 5.5,831,151.0909090909091 4.088,4.09,a-sust-i4,2020-21,Acushnet - Acushnet Elementary School,00030025, 0.7, .3, .0, .0, .0, .0, 1.0,489,489.0 --Infinity,1,a-sust-i4,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.0, .0, .0, .0, .0, .0, 0.0,421,Infinity +NA,NA,a-sust-i4,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.0, .0, .0, .0, .0, .0, 0.0,421,Infinity 6.018461538461538,5,a-sust-i4,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 1.9, 1.9, .0, .0, 3.9,966,247.6923076923077 --Infinity,1,a-sust-i4,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity +NA,NA,a-sust-i4,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity 6.415094339622641,5,a-sust-i4,2020-21,Agawam - Agawam High,00050505, 0.0, .0, .0, 5.3, .0, .0, 5.3,1050,198.11320754716982 6.965333333333333,5,a-sust-i4,2020-21,Agawam - Agawam Junior High,00050405, 0.0, .0, 4.5, .0, .0, .0, 4.5,582,129.33333333333334 5.2,5,a-sust-i4,2020-21,Agawam - Benjamin J Phelps,00050020, 0.6, .4, .0, .0, .0, .0, 1.0,350,350.0 @@ -5543,11 +5543,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.875151515151515,5,a-sust-i4,2020-21,Andover - Doherty Middle,00090305, 0.0, .0, 3.3, .0, .0, .0, 3.3,464,140.60606060606062 5.336,5,a-sust-i4,2020-21,Andover - Henry C Sanborn Elementary,00090010, 0.5, .5, .0, .0, .0, .0, 1.0,333,333.0 6.522857142857143,5,a-sust-i4,2020-21,Andover - High Plain Elementary,00090004, 1.2, 1.5, .0, .0, .0, .0, 2.8,517,184.64285714285717 --Infinity,1,a-sust-i4,2020-21,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,54,Infinity +NA,NA,a-sust-i4,2020-21,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,54,Infinity 6.973333333333333,5,a-sust-i4,2020-21,Andover - South Elementary,00090020, 1.7, 1.9, .0, .0, .0, .0, 3.6,462,128.33333333333334 6.676363636363636,5,a-sust-i4,2020-21,Andover - West Elementary,00090025, 1.6, 1.7, .0, .0, .0, .0, 3.3,546,165.45454545454547 6.928571428571429,5,a-sust-i4,2020-21,Andover - Wood Hill Middle School,00090350, 0.0, .0, 2.8, .0, .0, .0, 2.8,375,133.92857142857144 --Infinity,1,a-sust-i4,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, .0, .0, .0, .0, .0, 0.0,571,Infinity +NA,NA,a-sust-i4,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, .0, .0, .0, .0, .0, 0.0,571,Infinity 6.1819354838709675,5,a-sust-i4,2020-21,Arlington - Arlington High,00100505, 0.0, .0, .0, 1.3, 4.9, .0, 6.2,1409,227.25806451612902 6.042105263157895,5,a-sust-i4,2020-21,Arlington - Brackett,00100010, 1.1, .8, .0, .0, .0, .0, 1.9,465,244.73684210526318 6.2105263157894735,5,a-sust-i4,2020-21,Arlington - Cyrus E Dallin,00100025, 0.9, 1.0, .0, .0, .0, .0, 1.9,425,223.6842105263158 @@ -5555,7 +5555,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.507692307692308,5,a-sust-i4,2020-21,Arlington - Hardy,00100030, 0.7, .7, .0, .0, .0, .0, 1.3,405,311.53846153846155 6.306666666666667,5,a-sust-i4,2020-21,Arlington - John A Bishop,00100005, 1.1, .7, .0, .0, .0, .0, 1.8,381,211.66666666666666 6.017777777777777,5,a-sust-i4,2020-21,Arlington - M Norcross Stratton,00100055, 1.1, .8, .0, .0, .0, .0, 1.8,446,247.77777777777777 --Infinity,1,a-sust-i4,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity +NA,NA,a-sust-i4,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity 6.702545454545454,5,a-sust-i4,2020-21,Arlington - Ottoson Middle,00100410, 0.0, .0, 5.5, .0, .0, .0, 5.5,892,162.1818181818182 6.373333333333333,5,a-sust-i4,2020-21,Arlington - Peirce,00100045, 0.8, .8, .0, .0, .0, .0, 1.5,305,203.33333333333334 5.983157894736841,5,a-sust-i4,2020-21,Arlington - Thompson,00100050, 1.0, 1.0, .0, .0, .0, .0, 1.9,479,252.10526315789474 @@ -5568,7 +5568,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.56,5,a-sust-i4,2020-21,Ashland - Ashland Middle,00140405, 0.0, .0, 1.2, .0, .0, 1.0, 2.2,671,305.0 5.9,5,a-sust-i4,2020-21,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,630,262.5 3.832727272727273,3.83,a-sust-i4,2020-21,Ashland - Henry E Warren Elementary,00140010, 1.1, .0, .0, .0, .0, .0, 1.1,573,520.9090909090909 --Infinity,1,a-sust-i4,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity -1.192,1,a-sust-i4,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 1.0, .0, .0, 1.0,1149,1149.0 6.170434782608696,5,a-sust-i4,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 1.4, .8, .0, .0, .0, .0, 2.3,526,228.69565217391306 6.4622222222222225,5,a-sust-i4,2020-21,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, 1.8, .0, .0, 1.8,346,192.22222222222223 @@ -5576,10 +5576,10 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.912,5,a-sust-i4,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.4, .4, .1, .0, .0, .0, 1.0,136,136.0 -95.68,1,a-sust-i4,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, .0, .0, .0, .1, .0, 0.1,1296,12960.0 6.87304347826087,5,a-sust-i4,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 1.3, 1.1, .0, .0, .0, .0, 2.3,324,140.8695652173913 --Infinity,1,a-sust-i4,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity +NA,NA,a-sust-i4,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity 5.393454545454546,5,a-sust-i4,2020-21,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 5.5, .0, .0, 5.5,1792,325.8181818181818 6.016,5,a-sust-i4,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, .6, 1.9, .0, .0, .0, 2.5,620,248.0 --Infinity,1,a-sust-i4,2020-21,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity +NA,NA,a-sust-i4,2020-21,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity 6.747692307692308,5,a-sust-i4,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 1.6, .9, .0, .0, .0, .0, 2.6,407,156.53846153846155 6.536666666666666,5,a-sust-i4,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 1.5, .9, .0, .0, .0, .0, 2.4,439,182.91666666666669 6.5408,5,a-sust-i4,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 1.7, .8, .0, .0, .0, .0, 2.5,456,182.4 @@ -5602,7 +5602,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.582,5,a-sust-i4,2020-21,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 4.0, .0, .0, .0, 4.0,709,177.25 6.2375,5,a-sust-i4,2020-21,Barnstable - Barnstable United Elementary School,00200050, 0.0, 3.2, .0, .0, .0, .0, 3.2,705,220.3125 6.276363636363636,5,a-sust-i4,2020-21,Barnstable - Centerville Elementary,00200010, 0.8, .3, .0, .0, .0, .0, 1.1,237,215.45454545454544 --Infinity,1,a-sust-i4,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,124,Infinity +NA,NA,a-sust-i4,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,124,Infinity 6.773333333333333,5,a-sust-i4,2020-21,Barnstable - Hyannis West Elementary,00200025, 1.3, .5, .0, .0, .0, .0, 1.8,276,153.33333333333334 6.526666666666666,5,a-sust-i4,2020-21,Barnstable - West Barnstable Elementary,00200005, 0.9, .3, .0, .0, .0, .0, 1.2,221,184.16666666666669 6.48,5,a-sust-i4,2020-21,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,380,190.0 @@ -5616,7 +5616,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.988571428571428,5,a-sust-i4,2020-21,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,176,251.42857142857144 6.584,5,a-sust-i4,2020-21,Belchertown - Jabish Middle School,00240025, 0.0, .0, 2.0, .0, .0, .0, 2.0,354,177.0 6.244,5,a-sust-i4,2020-21,Belchertown - Swift River Elementary,00240018, 1.3, .7, .0, .0, .0, .0, 2.0,439,219.5 --Infinity,1,a-sust-i4,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity +NA,NA,a-sust-i4,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity 6.8384,5,a-sust-i4,2020-21,Bellingham - Bellingham High School,00250505, 0.0, .0, .8, 4.2, .0, .0, 5.0,726,145.2 6.706,5,a-sust-i4,2020-21,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.7, 2.3, .0, .0, .0, 4.0,647,161.75 6.48,5,a-sust-i4,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 1.1, .4, .0, .0, .0, .0, 1.5,285,190.0 @@ -5645,7 +5645,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.593684210526316,5,a-sust-i4,2020-21,Beverly - Centerville Elementary,00300010, 0.9, 1.0, .0, .0, .0, .0, 1.9,334,175.78947368421052 6.0988235294117645,5,a-sust-i4,2020-21,Beverly - Cove Elementary,00300015, 1.2, .5, .0, .0, .0, .0, 1.7,404,237.64705882352942 6.194285714285714,5,a-sust-i4,2020-21,Beverly - Hannah Elementary,00300033, 0.9, .5, .0, .0, .0, .0, 1.4,316,225.71428571428572 --Infinity,1,a-sust-i4,2020-21,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity +NA,NA,a-sust-i4,2020-21,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity 6.756666666666666,5,a-sust-i4,2020-21,Beverly - North Beverly Elementary,00300040, 1.6, .8, .0, .0, .0, .0, 2.4,373,155.41666666666669 6.573333333333333,5,a-sust-i4,2020-21,Billerica - Billerica Memorial High School,00310505, 0.0, .0, 2.9, 6.1, .0, .0, 9.0,1605,178.33333333333334 7.112727272727273,5,a-sust-i4,2020-21,Billerica - Frederick J Dutile,00310007, 1.5, .7, .0, .0, .0, .0, 2.2,244,110.9090909090909 @@ -5666,16 +5666,16 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.3082352941176465,5,a-sust-i4,2020-21,Boston - Baldwin Early Learning Center,00350003, 1.7, .0, .0, .0, .0, .0, 1.7,147,86.47058823529412 7.28,5,a-sust-i4,2020-21,Boston - Beethoven,00350021, 3.1, .0, .0, .0, .0, .0, 3.1,279,90.0 6.573793103448275,5,a-sust-i4,2020-21,Boston - Blackstone,00350390, 2.2, .8, .0, .0, .0, .0, 2.9,517,178.27586206896552 --Infinity,1,a-sust-i4,2020-21,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity +NA,NA,a-sust-i4,2020-21,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity 7.718540145985402,5,a-sust-i4,2020-21,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 13.7, .0, .0, 13.7,482,35.18248175182482 --Infinity,1,a-sust-i4,2020-21,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .0, .0, .0, 0.0,160,Infinity +NA,NA,a-sust-i4,2020-21,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .0, .0, .0, 0.0,160,Infinity 4.176,4.18,a-sust-i4,2020-21,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, 1.0, .0, .0, 1.0,478,478.0 5.8773333333333335,5,a-sust-i4,2020-21,Boston - Boston International High School,00350507, 0.0, .0, .0, 1.5, .0, .0, 1.5,398,265.3333333333333 5.886808510638298,5,a-sust-i4,2020-21,Boston - Boston Latin,00350560, 0.0, .0, 5.8, 3.6, .0, .0, 9.4,2483,264.1489361702128 4.513170731707317,4.51,a-sust-i4,2020-21,Boston - Boston Latin Academy,00350545, 0.0, .0, 2.3, 1.6, .0, .1, 4.1,1787,435.8536585365854 6.892,5,a-sust-i4,2020-21,Boston - Boston Teachers Union School,00350012, 0.9, .5, .5, .0, .0, .0, 2.0,277,138.5 6.213333333333334,5,a-sust-i4,2020-21,Boston - Brighton High,00350505, 0.0, .0, .0, 1.8, .0, .0, 1.8,402,223.33333333333331 --Infinity,1,a-sust-i4,2020-21,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity +NA,NA,a-sust-i4,2020-21,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity 5.384,5,a-sust-i4,2020-21,Boston - Charles H Taylor,00350054, 0.5, .3, .0, .0, .0, .2, 1.0,327,327.0 6.210909090909091,5,a-sust-i4,2020-21,Boston - Charles Sumner,00350052, 1.7, .6, .0, .0, .0, .0, 2.2,492,223.63636363636363 6.0375,5,a-sust-i4,2020-21,Boston - Charlestown High,00350515, 0.0, .0, .0, 2.4, .0, .8, 3.2,785,245.3125 @@ -5735,7 +5735,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.282666666666667,5,a-sust-i4,2020-21,Boston - Lyndon,00350262, 0.8, 1.3, 1.0, .0, .0, .0, 3.0,644,214.66666666666666 7.236923076923077,5,a-sust-i4,2020-21,Boston - Lyon K-8,00350004, 0.3, .3, .7, .0, .0, .0, 1.3,124,95.38461538461539 7.750909090909091,5,a-sust-i4,2020-21,Boston - Lyon Upper 9-12,00350655, 0.0, .0, .0, 4.4, .0, .0, 4.4,137,31.136363636363633 --Infinity,1,a-sust-i4,2020-21,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1043,Infinity +NA,NA,a-sust-i4,2020-21,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1043,Infinity 5.576,5,a-sust-i4,2020-21,Boston - Manassah E Bradley,00350215, 0.6, .2, .2, .0, .0, .0, 1.0,303,303.0 7.066666666666667,5,a-sust-i4,2020-21,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 2.5, .0, .1, 2.7,315,116.66666666666666 6.989333333333334,5,a-sust-i4,2020-21,Boston - Mario Umana Academy,00350656, 2.6, 1.0, 2.4, .0, .0, .0, 6.0,758,126.33333333333333 @@ -5810,8 +5810,8 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.04,5,a-sust-i4,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .0, .1, .0, 0.1,12,120.0 6.606,5,a-sust-i4,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 3.0, .6, .0, .5, .0, 4.0,697,174.25 6.734117647058824,5,a-sust-i4,2020-21,Brimfield - Brimfield Elementary,00430005, 1.0, .5, .2, .0, .0, .0, 1.7,269,158.23529411764707 --Infinity,1,a-sust-i4,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,448,Infinity --Infinity,1,a-sust-i4,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1319,Infinity +NA,NA,a-sust-i4,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,448,Infinity +NA,NA,a-sust-i4,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1319,Infinity 6.12,5,a-sust-i4,2020-21,Brockton - Ashfield Middle School,00440421, 0.0, .0, 2.0, .0, .0, .4, 2.4,564,235.0 1.92,1.92,a-sust-i4,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 0.2, .0, .0, .0, .0, .0, 0.2,152,760.0 4.346666666666666,4.35,a-sust-i4,2020-21,Brockton - Brockton Champion High School,00440515, 0.0, .0, .0, .0, .0, .3, 0.3,137,456.6666666666667 @@ -5821,7 +5821,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.378181818181818,5,a-sust-i4,2020-21,Brockton - Dr W Arnone Community School,00440001, 1.0, 1.0, .0, .0, .0, .2, 2.2,721,327.7272727272727 5.683636363636364,5,a-sust-i4,2020-21,Brockton - East Middle School,00440405, 0.0, .0, 2.0, .0, .0, .2, 2.2,637,289.5454545454545 4.63,4.63,a-sust-i4,2020-21,Brockton - Edgar B Davis,00440023, 0.6, .5, .6, .0, .0, .7, 2.4,1011,421.25 --Infinity,1,a-sust-i4,2020-21,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity +NA,NA,a-sust-i4,2020-21,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity 6.64,5,a-sust-i4,2020-21,Brockton - Frederick Douglass Academy,00440080, 0.0, .0, .0, .0, .0, .1, 0.1,17,170.0 5.187692307692307,5,a-sust-i4,2020-21,Brockton - Gilmore Elementary School,00440055, 0.5, .6, .0, .0, .0, .2, 1.3,457,351.53846153846155 5.097142857142857,5,a-sust-i4,2020-21,Brockton - Hancock,00440045, 0.6, .5, .0, .0, .0, .3, 1.4,508,362.8571428571429 @@ -5837,9 +5837,9 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.0,5,a-sust-i4,2020-21,Brockton - West Middle School,00440420, 0.0, .0, 1.8, .0, .0, .9, 2.7,675,249.99999999999997 6.3410101010101005,5,a-sust-i4,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 4.0, 3.0, 2.0, .0, 1.0, .0, 9.9,2053,207.37373737373736 6.48,5,a-sust-i4,2020-21,Brookfield - Brookfield Elementary,00450005, 0.3, 1.0, .1, .0, .0, .0, 1.4,266,190.0 --Infinity,1,a-sust-i4,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity --Infinity,1,a-sust-i4,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity --Infinity,1,a-sust-i4,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity +NA,NA,a-sust-i4,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity +NA,NA,a-sust-i4,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +NA,NA,a-sust-i4,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity 6.676422764227642,5,a-sust-i4,2020-21,Brookline - Brookline High,00460505, 0.0, .0, .0, 12.3, .0, .0, 12.3,2035,165.4471544715447 6.844444444444444,5,a-sust-i4,2020-21,Brookline - Edith C Baker,00460005, 1.5, 1.9, 1.1, .0, .0, .0, 4.5,650,144.44444444444446 6.464761904761905,5,a-sust-i4,2020-21,Brookline - Florida Ruffin Ridley School,00460015, 1.3, 1.6, 1.3, .0, .0, .0, 4.2,806,191.9047619047619 @@ -5848,7 +5848,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.927272727272727,5,a-sust-i4,2020-21,Brookline - Lawrence,00460030, 1.5, 2.0, .9, .0, .0, .0, 4.4,590,134.0909090909091 6.688,5,a-sust-i4,2020-21,Brookline - Michael Driscoll,00460020, 0.8, 1.3, .8, .0, .0, .0, 3.0,492,164.0 6.76695652173913,5,a-sust-i4,2020-21,Brookline - Pierce,00460040, 1.3, 1.9, 1.4, .0, .0, .0, 4.6,709,154.13043478260872 --Infinity,1,a-sust-i4,2020-21,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity +NA,NA,a-sust-i4,2020-21,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity 6.676129032258064,5,a-sust-i4,2020-21,Brookline - William H Lincoln,00460035, 0.9, 1.5, .8, .0, .0, .0, 3.1,513,165.48387096774192 6.64421052631579,5,a-sust-i4,2020-21,Burlington - Burlington High,00480505, 0.0, .0, .0, 5.7, .0, .0, 5.7,966,169.4736842105263 7.261666666666666,5,a-sust-i4,2020-21,Burlington - Fox Hill,00480007, 1.1, 1.7, .0, .0, .0, 2.0, 4.8,443,92.29166666666667 @@ -5877,7 +5877,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.148,5,a-sust-i4,2020-21,Canton - Dean S Luce,00500020, 1.0, 1.0, .0, .0, .0, .0, 2.0,463,231.5 6.6281481481481475,5,a-sust-i4,2020-21,Canton - John F Kennedy,00500017, 1.3, 1.3, .0, .0, .0, .0, 2.7,463,171.48148148148147 5.670588235294117,5,a-sust-i4,2020-21,Canton - Lt Peter M Hansen,00500012, 0.9, .8, .0, .0, .0, .0, 1.7,495,291.1764705882353 --Infinity,1,a-sust-i4,2020-21,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity +NA,NA,a-sust-i4,2020-21,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity 7.04,5,a-sust-i4,2020-21,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 6.4, .0, .0, .0, 6.4,768,120.0 6.461538461538462,5,a-sust-i4,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, 1.3, .0, .0, .0, 1.3,250,192.3076923076923 2.992,2.99,a-sust-i4,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .6, .5, .0, 1.0,626,626.0 @@ -5894,11 +5894,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.032,5,a-sust-i4,2020-21,Chelmsford - Charles D Harrington,00560025, 1.2, .8, .0, .0, .0, .0, 2.0,492,246.0 6.267076923076923,5,a-sust-i4,2020-21,Chelmsford - Chelmsford High,00560505, 0.0, .0, .0, 6.5, .0, .0, 6.5,1408,216.6153846153846 6.733913043478261,5,a-sust-i4,2020-21,Chelmsford - Col Moses Parker School,00560305, 0.0, 1.0, 3.6, .0, .0, .0, 4.6,728,158.2608695652174 --Infinity,1,a-sust-i4,2020-21,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity +NA,NA,a-sust-i4,2020-21,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity 6.768,5,a-sust-i4,2020-21,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.2, 3.9, .0, .0, .0, 5.0,770,154.0 6.312,5,a-sust-i4,2020-21,Chelmsford - South Row,00560015, 1.2, .8, .0, .0, .0, .0, 2.0,422,211.0 6.337142857142857,5,a-sust-i4,2020-21,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 6.8, .0, .2, 7.0,1455,207.85714285714286 --Infinity,1,a-sust-i4,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity +NA,NA,a-sust-i4,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity 6.122666666666667,5,a-sust-i4,2020-21,Chelsea - Clark Avenue School,00570050, 0.0, .5, 1.5, .0, .0, 1.0, 3.0,704,234.66666666666666 5.916,5,a-sust-i4,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 0.8, 1.2, .0, .0, .0, .0, 2.0,521,260.5 5.916,5,a-sust-i4,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, .6, 1.5, .0, .0, .0, 2.0,521,260.5 @@ -5908,7 +5908,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.301333333333333,5,a-sust-i4,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 3.0, .0, .0, .0, .0, .0, 3.0,637,212.33333333333334 6.036,5,a-sust-i4,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0.9, 1.1, .0, .0, .0, .0, 2.0,491,245.5 7.102222222222222,5,a-sust-i4,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.4, .4, .1, .0, .0, .0, 0.9,101,112.22222222222221 --Infinity,1,a-sust-i4,2020-21,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,377,Infinity +NA,NA,a-sust-i4,2020-21,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,377,Infinity 6.304,5,a-sust-i4,2020-21,Chicopee - Belcher,00610010, 1.0, .0, .0, .0, .0, .0, 1.0,212,212.0 4.684,4.68,a-sust-i4,2020-21,Chicopee - Bellamy Middle,00610305, 0.0, .0, 2.0, .0, .0, .0, 2.0,829,414.5 4.576,4.58,a-sust-i4,2020-21,Chicopee - Bowe,00610015, 0.5, .5, .0, .0, .0, .0, 1.0,428,428.0 @@ -5917,12 +5917,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.1408000000000005,5,a-sust-i4,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, .0, .0, 1.4, 3.5, .1, 5.0,1162,232.4 6.516923076923077,5,a-sust-i4,2020-21,Chicopee - Chicopee High,00610505, 0.0, .0, .0, .2, 4.2, .8, 5.2,964,185.3846153846154 4.824,4.82,a-sust-i4,2020-21,Chicopee - Dupont Middle,00610310, 0.0, .0, 2.0, .0, .0, .0, 2.0,794,397.0 --Infinity,1,a-sust-i4,2020-21,Chicopee - Fairview Elementary,00610050, 0.0, .0, .0, .0, .0, .0, 0.0,414,Infinity +NA,NA,a-sust-i4,2020-21,Chicopee - Fairview Elementary,00610050, 0.0, .0, .0, .0, .0, .0, 0.0,414,Infinity 5.232,5,a-sust-i4,2020-21,Chicopee - Gen John J Stefanik,00610090, 0.3, .7, .0, .0, .0, .0, 1.0,346,346.0 3.696,3.7,a-sust-i4,2020-21,Chicopee - Lambert-Lavoie,00610040, 0.2, .3, .0, .0, .0, .0, 0.5,269,538.0 5.2,5,a-sust-i4,2020-21,Chicopee - Litwin,00610022, 0.2, .8, .0, .0, .0, .0, 1.0,350,350.0 7.008,5,a-sust-i4,2020-21,Chicopee - Streiber Memorial School,00610065, 1.1, .9, .0, .0, .0, .0, 2.0,248,124.0 --Infinity,1,a-sust-i4,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity +NA,NA,a-sust-i4,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity 6.404,5,a-sust-i4,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, .0, 1.0, .0, .0, 1.0, 2.0,399,199.5 5.01,5,a-sust-i4,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .8, .0, .0, 0.8,299,373.75 6.1,5,a-sust-i4,2020-21,Clarksburg - Clarksburg Elementary,00630010, 0.1, .4, .3, .0, .0, .0, 0.8,190,237.5 @@ -5936,9 +5936,9 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.52,5,a-sust-i4,2020-21,Cohasset - Joseph Osgood,00650010, 1.8, .0, .0, .0, .0, .0, 1.8,333,185.0 3.94,3.94,a-sust-i4,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.7, .9, .4, .1, .0, .0, 2.0,1015,507.5 6.1292307692307695,5,a-sust-i4,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, .0, .0, .0, 1.3, .0, 1.3,304,233.84615384615384 --Infinity,1,a-sust-i4,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity --Infinity,1,a-sust-i4,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity --Infinity,1,a-sust-i4,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity +NA,NA,a-sust-i4,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity +NA,NA,a-sust-i4,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity +NA,NA,a-sust-i4,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity 6.105263157894736,5,a-sust-i4,2020-21,Concord - Alcott,00670005, 0.7, 1.2, .0, .0, .0, .0, 1.9,450,236.84210526315792 6.972075471698114,5,a-sust-i4,2020-21,Concord - Concord Middle,00670305, 0.0, .0, 5.3, .0, .0, .0, 5.3,681,128.49056603773585 6.1431578947368415,5,a-sust-i4,2020-21,Concord - Thoreau,00670020, 0.7, 1.2, .0, .0, .0, .0, 1.9,441,232.10526315789474 @@ -5991,13 +5991,13 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.765714285714285,4.77,a-sust-i4,2020-21,Dracut - Greenmont Avenue,00790030, 0.3, .5, .0, .0, .0, .0, 0.7,283,404.28571428571433 4.14,4.14,a-sust-i4,2020-21,Dracut - Joseph A Campbell Elementary,00790020, 0.5, .7, .0, .0, .0, .0, 1.2,579,482.5 6.16,5,a-sust-i4,2020-21,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 3.9, .0, .0, .1, 4.0,920,230.0 --Infinity,1,a-sust-i4,2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,294,Infinity --Infinity,1,a-sust-i4,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, .0, .0, .0, .0, .0, 0.0,302,Infinity --Infinity,1,a-sust-i4,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, .0, .0, .0, .0, .0, 0.0,631,Infinity --Infinity,1,a-sust-i4,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, .0, .0, .0, .0, .0, 0.0,329,Infinity --Infinity,1,a-sust-i4,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, .0, .0, .0, .0, .0, 0.0,539,Infinity --Infinity,1,a-sust-i4,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0.0, .0, .0, .0, .0, .0, 0.0,409,Infinity --Infinity,1,a-sust-i4,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, .0, .0, .0, .0, .0, 0.0,224,Infinity +NA,NA,a-sust-i4,2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,294,Infinity +NA,NA,a-sust-i4,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, .0, .0, .0, .0, .0, 0.0,302,Infinity +NA,NA,a-sust-i4,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, .0, .0, .0, .0, .0, 0.0,631,Infinity +NA,NA,a-sust-i4,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, .0, .0, .0, .0, .0, 0.0,329,Infinity +NA,NA,a-sust-i4,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, .0, .0, .0, .0, .0, 0.0,539,Infinity +NA,NA,a-sust-i4,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0.0, .0, .0, .0, .0, .0, 0.0,409,Infinity +NA,NA,a-sust-i4,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, .0, .0, .0, .0, .0, 0.0,224,Infinity 5.827027027027027,5,a-sust-i4,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, .0, .0, .5, 3.2, .0, 3.7,1005,271.6216216216216 6.384,5,a-sust-i4,2020-21,Duxbury - Alden School,00820004, 0.0, 3.0, .0, .0, .0, .0, 3.0,606,202.0 5.764,5,a-sust-i4,2020-21,Duxbury - Chandler Elementary,00820006, 2.0, .0, .0, .0, .0, .0, 2.0,559,279.5 @@ -6026,8 +6026,8 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.671304347826087,5,a-sust-i4,2020-21,Edgartown - Edgartown Elementary,00890005, 0.8, .6, .6, .0, .3, .0, 2.3,382,166.08695652173915 4.92,4.92,a-sust-i4,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, 0.0, .0, .0, 1.0, .0, .0, 1.0,385,385.0 7.246666666666666,5,a-sust-i4,2020-21,Erving - Erving Elementary,00910030, 0.6, .5, .2, .0, .0, .0, 1.2,113,94.16666666666667 --Infinity,1,a-sust-i4,2020-21,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,1564,Infinity --Infinity,1,a-sust-i4,2020-21,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity +NA,NA,a-sust-i4,2020-21,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,1564,Infinity +NA,NA,a-sust-i4,2020-21,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity 7.544,5,a-sust-i4,2020-21,Everett - Devens School,00930030, 0.1, .4, .3, .2, .0, .0, 1.0,57,57.0 6.104827586206897,5,a-sust-i4,2020-21,Everett - Everett High,00930505, 0.0, .0, .0, 8.6, .0, .1, 8.7,2061,236.89655172413796 6.0713513513513515,5,a-sust-i4,2020-21,Everett - George Keverian School,00930028, 0.9, 1.0, 1.8, .0, .0, .0, 3.7,892,241.08108108108107 @@ -6035,13 +6035,13 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.446315789473684,5,a-sust-i4,2020-21,Everett - Madeline English School,00930018, 1.0, 1.3, 1.6, .0, .0, .0, 3.8,738,194.21052631578948 5.966666666666667,5,a-sust-i4,2020-21,Everett - Parlin School,00930058, 1.1, 1.1, 1.5, .0, .0, .0, 3.6,915,254.16666666666666 6.194285714285714,5,a-sust-i4,2020-21,Everett - Sumner G. Whittier School,00930010, 0.6, 1.1, 1.1, .0, .0, .0, 2.8,632,225.71428571428572 --Infinity,1,a-sust-i4,2020-21,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity +NA,NA,a-sust-i4,2020-21,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity 6.265,5,a-sust-i4,2020-21,Everett - Webster School,00930015, 0.9, .7, .0, .0, .0, .0, 1.6,347,216.875 6.148,5,a-sust-i4,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.8, 2.2, .0, 2.0, .0, 6.0,1389,231.5 --Infinity,1,a-sust-i4,2020-21,Fairhaven - East Fairhaven,00940010, 0.0, .0, .0, .0, .0, .0, 0.0,329,Infinity +NA,NA,a-sust-i4,2020-21,Fairhaven - East Fairhaven,00940010, 0.0, .0, .0, .0, .0, .0, 0.0,329,Infinity 7.0428070175438595,5,a-sust-i4,2020-21,Fairhaven - Fairhaven High,00940505, 0.0, .0, .0, 5.6, .0, .1, 5.7,682,119.64912280701753 --Infinity,1,a-sust-i4,2020-21,Fairhaven - Hastings Middle,00940305, 0.0, .0, .0, .0, .0, .0, 0.0,454,Infinity --Infinity,1,a-sust-i4,2020-21,Fairhaven - Leroy Wood,00940030, 0.0, .0, .0, .0, .0, .0, 0.0,453,Infinity +NA,NA,a-sust-i4,2020-21,Fairhaven - Hastings Middle,00940305, 0.0, .0, .0, .0, .0, .0, 0.0,454,Infinity +NA,NA,a-sust-i4,2020-21,Fairhaven - Leroy Wood,00940030, 0.0, .0, .0, .0, .0, .0, 0.0,453,Infinity 6.206315789473684,5,a-sust-i4,2020-21,Fall River - B M C Durfee High,00950505, 0.0, .0, .0, 9.5, .0, .0, 9.5,2130,224.21052631578948 5.232,5,a-sust-i4,2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.9, 1.1, .0, .0, .0, .1, 2.0,692,346.0 6.610434782608696,5,a-sust-i4,2020-21,Fall River - Henry Lord Community School,00950017, 1.2, .9, .5, .0, 2.0, .1, 4.6,799,173.69565217391306 @@ -6069,7 +6069,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.344,5,a-sust-i4,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, .5, 1.5, .0, .0, .0, 2.0,664,332.0 5.736,5,a-sust-i4,2020-21,Fitchburg - Crocker Elementary,00970016, 1.2, .8, .0, .0, .0, .0, 2.0,566,283.0 5.841702127659575,5,a-sust-i4,2020-21,Fitchburg - Fitchburg High,00970505, 0.0, .0, .0, 4.7, .0, .0, 4.7,1268,269.78723404255317 --Infinity,1,a-sust-i4,2020-21,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,138,Infinity +NA,NA,a-sust-i4,2020-21,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,138,Infinity 6.857391304347826,5,a-sust-i4,2020-21,Fitchburg - McKay Arts Academy,00970340, 0.7, 1.5, 2.4, .0, .0, .0, 4.6,657,142.82608695652175 6.500571428571428,5,a-sust-i4,2020-21,Fitchburg - Memorial Middle School,00970048, 0.0, .9, 2.6, .0, .0, .0, 3.5,656,187.42857142857142 5.704,5,a-sust-i4,2020-21,Fitchburg - Reingold Elementary,00970043, 1.1, .9, .0, .0, .0, .0, 2.0,574,287.0 @@ -6089,7 +6089,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.5538461538461545,5,a-sust-i4,2020-21,Framingham - Framingham High School,01000515, 0.0, .0, .0, 7.7, .0, .1, 7.8,2385,305.7692307692308 6.92,5,a-sust-i4,2020-21,Framingham - Fuller Middle,01000305, 0.0, .0, 4.2, .0, .0, .0, 4.2,567,135.0 6.924,5,a-sust-i4,2020-21,Framingham - Hemenway,01000015, 1.7, 2.3, .0, .0, .0, .0, 4.0,538,134.5 --Infinity,1,a-sust-i4,2020-21,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,195,Infinity +NA,NA,a-sust-i4,2020-21,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,195,Infinity 6.548,5,a-sust-i4,2020-21,Framingham - King Elementary School,01000005, 1.0, 1.0, .0, .0, .0, .0, 2.0,363,181.5 6.861818181818182,5,a-sust-i4,2020-21,Framingham - Mary E Stapleton Elementary,01000045, 0.8, 1.4, .0, .0, .0, .0, 2.2,313,142.27272727272725 7.028,5,a-sust-i4,2020-21,Framingham - Miriam F McCarthy School,01000050, 1.8, 2.2, .0, .0, .0, .0, 4.0,486,121.5 @@ -6099,7 +6099,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.64,1,a-sust-i4,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .0, .3, .0, 0.3,399,1330.0 6.608,5,a-sust-i4,2020-21,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 2.0, .0, .0, .0, 2.0,348,174.0 6.689230769230769,5,a-sust-i4,2020-21,Franklin - Davis Thayer,01010035, 0.8, .5, .0, .0, .0, .0, 1.3,213,163.84615384615384 --Infinity,1,a-sust-i4,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity +NA,NA,a-sust-i4,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity 6.569896907216495,5,a-sust-i4,2020-21,Franklin - Franklin High,01010505, 0.0, .0, .0, 9.6, .0, .1, 9.7,1734,178.76288659793815 5.82,5,a-sust-i4,2020-21,Franklin - Helen Keller Elementary,01010012, 0.6, .6, .0, .0, .0, .0, 1.2,327,272.5 6.770370370370371,5,a-sust-i4,2020-21,Franklin - Horace Mann,01010405, 0.0, .0, 2.0, .0, .7, .0, 2.7,415,153.7037037037037 @@ -6108,7 +6108,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.323636363636364,5,a-sust-i4,2020-21,Franklin - Oak Street Elementary,01010030, 0.5, .6, .0, .0, .0, .0, 1.1,368,334.5454545454545 5.745454545454546,5,a-sust-i4,2020-21,Franklin - Parmenter,01010032, 0.7, .4, .0, .0, .0, .0, 1.1,310,281.8181818181818 6.8246153846153845,5,a-sust-i4,2020-21,Franklin - Remington Middle,01010310, 0.0, .0, 1.9, .0, .7, .0, 2.6,382,146.9230769230769 --Infinity,1,a-sust-i4,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,555,Infinity +NA,NA,a-sust-i4,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,555,Infinity 6.455384615384615,5,a-sust-i4,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, .0, .0, 3.9, .0, .0, 3.9,753,193.0769230769231 6.188,5,a-sust-i4,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.5, .5, .0, .0, .0, .0, 2.0,453,226.5 6.356,5,a-sust-i4,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 1.4, .6, .0, .0, .0, .0, 2.0,411,205.5 @@ -6127,7 +6127,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.229714285714286,5,a-sust-i4,2020-21,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 2.9, .6, .0, 3.5,337,96.28571428571429 7.184,5,a-sust-i4,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, .0, 1.8, .0, .2, .0, 2.0,204,102.0 5.8,5,a-sust-i4,2020-21,Georgetown - Penn Brook,01050010, 1.1, 1.0, .3, .0, .0, .0, 2.4,660,275.0 --Infinity,1,a-sust-i4,2020-21,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,17,Infinity +NA,NA,a-sust-i4,2020-21,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,17,Infinity 5.78,5,a-sust-i4,2020-21,Gill-Montague - Gill Elementary,06740005, 0.2, .2, .1, .0, .0, .0, 0.4,111,277.5 6.8,5,a-sust-i4,2020-21,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 1.4, .0, .0, .0, 1.4,210,150.0 6.4,5,a-sust-i4,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,120,200.0 @@ -6137,7 +6137,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.752,5,a-sust-i4,2020-21,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,312,156.0 6.726666666666666,5,a-sust-i4,2020-21,Gloucester - East Gloucester Elementary,01070020, 0.0, .0, .0, .0, .0, 1.2, 1.2,191,159.16666666666669 6.6896,5,a-sust-i4,2020-21,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .4, 4.6, .0, 5.0,819,163.8 --Infinity,1,a-sust-i4,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,66,Infinity +NA,NA,a-sust-i4,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,66,Infinity 6.509090909090909,5,a-sust-i4,2020-21,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.1, 1.1,205,186.36363636363635 6.788,5,a-sust-i4,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 4.0, .0, .0, .0, 4.0,606,151.5 6.689230769230769,5,a-sust-i4,2020-21,Gloucester - Veterans Memorial,01070045, 0.0, .0, .0, .0, .0, 1.3, 1.3,213,163.84615384615384 @@ -6151,10 +6151,10 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.728,5,a-sust-i4,2020-21,Grafton - South Grafton Elementary,01100005, 1.0, .0, .0, .0, .0, .0, 1.0,284,284.0 6.650434782608696,5,a-sust-i4,2020-21,Granby - East Meadow,01110004, 0.9, 1.2, .2, .0, .0, .0, 2.3,388,168.69565217391306 6.859130434782608,5,a-sust-i4,2020-21,Granby - Granby Jr Sr High School,01110505, 0.0, .0, 1.3, 1.0, .0, .0, 2.3,328,142.60869565217394 --Infinity,1,a-sust-i4,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1452,Infinity +NA,NA,a-sust-i4,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1452,Infinity -8.34,1,a-sust-i4,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .8, .0, .0, 0.8,1634,2042.5 -53.226666666666674,1,a-sust-i4,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2296,7653.333333333334 --Infinity,1,a-sust-i4,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2113,Infinity +NA,NA,a-sust-i4,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2113,Infinity 6.407272727272728,5,a-sust-i4,2020-21,Greenfield - Discovery School at Four Corners,01140025, 0.6, .5, .0, .0, .0, .0, 1.1,219,199.09090909090907 6.890666666666667,5,a-sust-i4,2020-21,Greenfield - Federal Street School,01140010, 0.8, .6, .0, .0, .1, .0, 1.5,208,138.66666666666666 6.628571428571428,5,a-sust-i4,2020-21,Greenfield - Greenfield High,01140505, 0.0, .0, .6, 1.6, .6, .0, 2.8,480,171.42857142857144 @@ -6162,7 +6162,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.208,5,a-sust-i4,2020-21,Greenfield - Newton School,01140035, 0.6, .4, .0, .0, .0, .0, 1.0,224,224.0 6.92,5,a-sust-i4,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.4, .0, .0, .0, .0, .0, 0.4,54,135.0 5.566451612903226,5,a-sust-i4,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 1.0, 1.0, .9, .0, .2, .0, 3.1,943,304.19354838709677 --Infinity,1,a-sust-i4,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,37,Infinity +NA,NA,a-sust-i4,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,37,Infinity 5.8315789473684205,5,a-sust-i4,2020-21,Groton-Dunstable - Florence Roche School,06730010, 1.0, .9, .0, .0, .0, .0, 1.9,515,271.0526315789474 6.077333333333333,5,a-sust-i4,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.0, .0, 3.0,721,240.33333333333334 6.8704,5,a-sust-i4,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.7, 3.3, .0, .0, .0, 5.0,706,141.2 @@ -6202,15 +6202,15 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.56,5,a-sust-i4,2020-21,Haverhill - Greenleaf Academy,01280033, 0.0, .0, .0, .2, .0, .0, 0.2,36,180.0 6.353777777777777,5,a-sust-i4,2020-21,Haverhill - Haverhill High,01280505, 0.0, .0, .0, 1.6, 7.4, .0, 9.0,1852,205.77777777777777 2.88,2.88,a-sust-i4,2020-21,Haverhill - John G Whittier,01280085, 0.0, .2, .6, .0, .0, .0, 0.8,512,640.0 --Infinity,1,a-sust-i4,2020-21,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,182,Infinity +NA,NA,a-sust-i4,2020-21,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,182,Infinity 5.793684210526316,5,a-sust-i4,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0.9, 1.0, .0, .0, .0, .0, 1.9,524,275.7894736842105 4.504615384615385,4.5,a-sust-i4,2020-21,Haverhill - Silver Hill Elementary School,01280067, 0.4, .7, .0, .0, .0, .2, 1.3,568,436.9230769230769 --Infinity,1,a-sust-i4,2020-21,Haverhill - TEACH,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity +NA,NA,a-sust-i4,2020-21,Haverhill - TEACH,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity 6.504,5,a-sust-i4,2020-21,Haverhill - Tilton,01280075, 1.5, .5, .0, .0, .0, .0, 2.0,374,187.0 5.92,5,a-sust-i4,2020-21,Haverhill - Tilton Upper Middle School,01280105, 0.0, .5, .0, .0, .0, .2, 0.7,182,260.0 6.36,5,a-sust-i4,2020-21,Haverhill - Walnut Square,01280080, 0.6, .0, .0, .0, .0, .0, 0.6,123,205.0 6.9511111111111115,5,a-sust-i4,2020-21,Hawlemont - Hawlemont Regional,06850005, 0.3, .4, .1, .0, .0, .0, 0.9,118,131.11111111111111 --Infinity,1,a-sust-i4,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity +NA,NA,a-sust-i4,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity 6.788,5,a-sust-i4,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.6, 1.0, .4, .0, .0, .0, 2.0,303,151.5 7.377142857142857,5,a-sust-i4,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.6, 1.2, 1.0, .0, .0, .0, 2.8,218,77.85714285714286 6.556363636363636,5,a-sust-i4,2020-21,Hingham - East Elementary School,01310005, 1.1, 1.1, .0, .0, .0, .0, 2.2,397,180.45454545454544 @@ -6229,27 +6229,27 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.093333333333334,5,a-sust-i4,2020-21,Holyoke - E N White Elementary,01370045, 1.0, .8, .0, .0, .0, .0, 1.8,429,238.33333333333331 6.576,5,a-sust-i4,2020-21,Holyoke - H.B. Lawrence School,01370070, 0.8, .2, .0, .0, .0, .0, 1.0,178,178.0 4.868,4.87,a-sust-i4,2020-21,Holyoke - Holyoke High,01370505, 0.0, .0, .0, 4.0, .0, .0, 4.0,1566,391.5 --Infinity,1,a-sust-i4,2020-21,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .0, .0, .0, .0, 0.0,248,Infinity +NA,NA,a-sust-i4,2020-21,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .0, .0, .0, .0, 0.0,248,Infinity 5.616,5,a-sust-i4,2020-21,Holyoke - Joseph Metcalf School,01370003, 0.5, .5, .1, .0, .0, .0, 1.0,298,298.0 6.656,5,a-sust-i4,2020-21,Holyoke - Kelly Elementary,01370040, 0.9, .6, .5, .0, .0, .0, 2.0,336,168.0 4.312,4.31,a-sust-i4,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.3, .5, .3, .0, .0, .0, 1.0,461,461.0 6.548,5,a-sust-i4,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.7, .7, .6, .0, .0, .0, 2.0,363,181.5 6.12,5,a-sust-i4,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 0.4, .3, .6, .0, .5, .0, 1.8,423,235.0 --Infinity,1,a-sust-i4,2020-21,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,276,Infinity +NA,NA,a-sust-i4,2020-21,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,276,Infinity 6.72,5,a-sust-i4,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 0.0, .6, 1.4, .0, .0, .0, 2.0,320,160.0 6.98,5,a-sust-i4,2020-21,Holyoke - William R. Peck School,01370030, 0.0, .6, 1.5, .0, .0, .0, 2.0,255,127.5 --Infinity,1,a-sust-i4,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,702,Infinity +NA,NA,a-sust-i4,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,702,Infinity 6.672,5,a-sust-i4,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.6, .4, .0, .0, .0, .0, 2.0,332,166.0 6.581052631578948,5,a-sust-i4,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, .0, .0, 1.0, .9, .0, 1.9,337,177.3684210526316 6.605714285714286,5,a-sust-i4,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 1.0, 1.1, .0, .0, .0, 2.1,366,174.28571428571428 6.949189189189189,5,a-sust-i4,2020-21,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, 1.2, 2.5, .0, .0, 3.7,486,131.35135135135135 5.868,5,a-sust-i4,2020-21,Hopedale - Memorial,01380010, 0.8, .9, .3, .0, .0, .0, 2.0,533,266.5 --Infinity,1,a-sust-i4,2020-21,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity --Infinity,1,a-sust-i4,2020-21,Hopkinton - Elmwood,01390010, 0.0, .0, .0, .0, .0, .0, 0.0,580,Infinity +NA,NA,a-sust-i4,2020-21,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity +NA,NA,a-sust-i4,2020-21,Hopkinton - Elmwood,01390010, 0.0, .0, .0, .0, .0, .0, 0.0,580,Infinity 5.564,5,a-sust-i4,2020-21,Hopkinton - Hopkins Elementary School,01390015, 0.0, 2.0, .0, .0, .0, .0, 2.0,609,304.5 6.1207843137254905,5,a-sust-i4,2020-21,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 5.1, .0, .0, 5.1,1198,234.90196078431373 6.7282758620689656,5,a-sust-i4,2020-21,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 5.8, .0, .0, .0, 5.8,922,158.9655172413793 --Infinity,1,a-sust-i4,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,75,Infinity +NA,NA,a-sust-i4,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,75,Infinity 5.564444444444445,5,a-sust-i4,2020-21,Hopkinton - Marathon Elementary School,01390005, 1.8, .0, .0, .0, .0, .0, 1.8,548,304.44444444444446 6.412,5,a-sust-i4,2020-21,Hudson - C A Farley,01410030, 1.1, .9, .0, .0, .0, .0, 2.0,397,198.5 7.005217391304348,5,a-sust-i4,2020-21,Hudson - David J. Quinn Middle School,01410410, 0.0, 2.0, 2.6, .0, .0, .0, 4.6,572,124.34782608695653 @@ -6257,7 +6257,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.339047619047619,5,a-sust-i4,2020-21,Hudson - Hudson High,01410505, 0.0, .0, 1.6, 2.6, .0, .0, 4.2,872,207.61904761904762 6.554285714285713,5,a-sust-i4,2020-21,Hudson - Mulready Elementary,01410007, 0.9, .5, .0, .0, .0, .0, 1.4,253,180.71428571428572 6.602666666666667,5,a-sust-i4,2020-21,Hull - Hull High,01420505, 0.0, .0, .0, 1.5, .0, .0, 1.5,262,174.66666666666666 --Infinity,1,a-sust-i4,2020-21,Hull - Lillian M Jacobs,01420015, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity +NA,NA,a-sust-i4,2020-21,Hull - Lillian M Jacobs,01420015, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity 7.115294117647059,5,a-sust-i4,2020-21,Hull - Memorial Middle,01420305, 0.0, .0, 1.7, .0, .0, .0, 1.7,188,110.58823529411765 6.595555555555555,5,a-sust-i4,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, .0, 2.0, 2.5, .0, .0, 4.5,790,175.55555555555554 7.023636363636364,5,a-sust-i4,2020-21,Ipswich - Ipswich High,01440505, 0.0, .0, .0, 4.4, .0, .0, 4.4,537,122.04545454545453 @@ -6268,10 +6268,10 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.180281690140845,5,a-sust-i4,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 1.8, 2.4, .8, 1.3, .8, .0, 7.1,1615,227.46478873239437 6.048,5,a-sust-i4,2020-21,King Philip - King Philip Middle School,06900510, 0.0, .0, 3.0, .0, .0, .0, 3.0,732,244.0 5.143529411764706,5,a-sust-i4,2020-21,King Philip - King Philip Regional High,06900505, 0.0, .0, .0, 3.1, .3, .0, 3.4,1214,357.05882352941177 --Infinity,1,a-sust-i4,2020-21,Kingston - Kingston Elementary,01450005, 0.0, .0, .0, .0, .0, .0, 0.0,433,Infinity +NA,NA,a-sust-i4,2020-21,Kingston - Kingston Elementary,01450005, 0.0, .0, .0, .0, .0, .0, 0.0,433,Infinity 5.592,5,a-sust-i4,2020-21,Kingston - Kingston Intermediate,01450020, 0.0, 1.5, .5, .0, .0, .0, 2.0,602,301.0 6.8180645161290325,5,a-sust-i4,2020-21,Lawrence - Alexander B Bruce,01490015, 0.0, 1.3, 1.7, .0, .0, .0, 3.1,458,147.74193548387098 --Infinity,1,a-sust-i4,2020-21,Lawrence - Arlington Middle School,01490017, 0.0, .0, .0, .0, .0, .0, 0.0,584,Infinity +NA,NA,a-sust-i4,2020-21,Lawrence - Arlington Middle School,01490017, 0.0, .0, .0, .0, .0, .0, 0.0,584,Infinity 3.488,3.49,a-sust-i4,2020-21,Lawrence - Community Day Arlington,01490009, 0.6, .4, .0, .0, .0, .0, 1.0,564,564.0 6.269333333333333,5,a-sust-i4,2020-21,Lawrence - Edward F. Parthum,01490053, 1.9, 1.1, .0, .0, .0, .0, 3.0,649,216.33333333333334 6.488,5,a-sust-i4,2020-21,Lawrence - Emily G Wetherbee,01490080, 1.1, 1.0, 1.0, .0, .0, .0, 3.0,567,189.0 @@ -6279,7 +6279,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.664,3.66,a-sust-i4,2020-21,Lawrence - Frost Middle School,01490525, 0.0, .3, .7, .0, .0, .0, 1.0,542,542.0 6.778666666666667,5,a-sust-i4,2020-21,Lawrence - Gerard A. Guilmette,01490022, 1.5, 1.5, .0, .0, .0, .0, 3.0,458,152.66666666666666 7.012,5,a-sust-i4,2020-21,Lawrence - Guilmette Middle School,01490025, 0.0, 1.5, 2.6, .0, .0, .0, 4.0,494,123.5 --Infinity,1,a-sust-i4,2020-21,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,167,Infinity +NA,NA,a-sust-i4,2020-21,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,167,Infinity 7.315294117647059,5,a-sust-i4,2020-21,Lawrence - James F Hennessey,01490020, 3.4, .0, .0, .0, .0, .0, 3.4,291,85.58823529411765 7.671428571428572,5,a-sust-i4,2020-21,Lawrence - John Breen School,01490003, 5.6, .0, .0, .0, .0, .0, 5.6,230,41.07142857142858 6.872,5,a-sust-i4,2020-21,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,282,141.0 @@ -6288,12 +6288,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.171094890510949,5,a-sust-i4,2020-21,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 11.5, 2.2, .0, 13.7,3132,228.6131386861314 6.152,5,a-sust-i4,2020-21,Lawrence - Oliver Partnership School,01490048, 0.8, 1.2, .0, .0, .0, .0, 2.0,462,231.0 5.4526315789473685,5,a-sust-i4,2020-21,Lawrence - Parthum Middle School,01490027, 0.0, .5, 1.4, .0, .0, .0, 1.9,605,318.42105263157896 --Infinity,1,a-sust-i4,2020-21,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,21,Infinity +NA,NA,a-sust-i4,2020-21,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,21,Infinity 5.852,5,a-sust-i4,2020-21,Lawrence - Robert Frost,01490018, 1.2, .8, .0, .0, .0, .0, 2.0,537,268.5 7.581333333333334,5,a-sust-i4,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 3.0, .0, .0, .0, .0, .0, 3.0,157,52.333333333333336 7.492,5,a-sust-i4,2020-21,Lawrence - School for Exceptional Studies,01490537, 0.5, .7, .8, .0, .0, .0, 2.0,127,63.5 5.184,5,a-sust-i4,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0.8, 1.2, .0, .0, .0, .0, 2.0,704,352.0 --Infinity,1,a-sust-i4,2020-21,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,476,Infinity +NA,NA,a-sust-i4,2020-21,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,476,Infinity 5.44,5,a-sust-i4,2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,320,320.0 5.496,5,a-sust-i4,2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,313,313.0 5.9716129032258065,5,a-sust-i4,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.8, .7, .7, .0, .0, .0, 3.1,786,253.54838709677418 @@ -6302,20 +6302,20 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.934399999999999,5,a-sust-i4,2020-21,Lee - Lee Middle/High School,01500505, 0.0, .0, .4, 1.5, .7, .0, 2.5,333,133.2 6.096,5,a-sust-i4,2020-21,Leicester - Leicester Elementary,01510005, 1.2, .8, .0, .0, .0, .0, 2.0,476,238.0 6.044444444444444,5,a-sust-i4,2020-21,Leicester - Leicester High,01510505, 0.0, .0, .0, .6, 1.2, .0, 1.8,440,244.44444444444443 --Infinity,1,a-sust-i4,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity +NA,NA,a-sust-i4,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity 6.3,5,a-sust-i4,2020-21,Leicester - Leicester Middle,01510015, 0.0, 1.0, .0, .0, 1.0, .0, 2.0,425,212.5 7.037837837837839,5,a-sust-i4,2020-21,Lenox - Lenox Memorial High,01520505, 0.0, .0, .7, 2.9, .0, .0, 3.7,445,120.27027027027026 6.78,5,a-sust-i4,2020-21,Lenox - Morris,01520015, 1.0, 1.0, .0, .0, .0, .0, 2.0,305,152.5 --Infinity,1,a-sust-i4,2020-21,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,51,Infinity +NA,NA,a-sust-i4,2020-21,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,51,Infinity -54.72,1,a-sust-i4,2020-21,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .1, .0, .0, 0.1,784,7840.0 3.256,3.26,a-sust-i4,2020-21,Leominster - Fall Brook,01530007, 0.5, .5, .0, .0, .0, .0, 1.0,593,593.0 3.992,3.99,a-sust-i4,2020-21,Leominster - Frances Drake School,01530010, 0.5, .5, .0, .0, .0, .0, 1.0,501,501.0 2.84,2.84,a-sust-i4,2020-21,Leominster - Johnny Appleseed,01530025, 0.5, .5, .0, .0, .0, .0, 1.0,645,645.0 --Infinity,1,a-sust-i4,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity +NA,NA,a-sust-i4,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity 6.337254901960784,5,a-sust-i4,2020-21,Leominster - Leominster High School,01530505, 0.0, .0, .0, 5.1, .0, .0, 5.1,1060,207.84313725490196 --Infinity,1,a-sust-i4,2020-21,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity +NA,NA,a-sust-i4,2020-21,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity 2.592,2.59,a-sust-i4,2020-21,Leominster - Northwest,01530030, 0.5, .5, .0, .0, .0, .0, 1.0,676,676.0 --Infinity,1,a-sust-i4,2020-21,Leominster - Priest Street,01530040, 0.0, .0, .0, .0, .0, .0, 0.0,84,Infinity +NA,NA,a-sust-i4,2020-21,Leominster - Priest Street,01530040, 0.0, .0, .0, .0, .0, .0, 0.0,84,Infinity 5.96,5,a-sust-i4,2020-21,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,510,255.0 4.452,4.45,a-sust-i4,2020-21,Leominster - Sky View Middle School,01530320, 0.0, .0, 2.0, .0, .0, .0, 2.0,887,443.5 7.337142857142857,5,a-sust-i4,2020-21,Leverett - Leverett Elementary,01540005, 0.6, .6, .2, .0, .0, .0, 1.4,116,82.85714285714286 @@ -6325,11 +6325,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.769655172413794,5,a-sust-i4,2020-21,Lexington - Harrington,01550030, 1.0, 1.9, .0, .0, .0, .0, 2.9,446,153.79310344827587 7.060266666666666,5,a-sust-i4,2020-21,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 7.5, .0, .0, .0, 7.5,881,117.46666666666667 6.652903225806452,5,a-sust-i4,2020-21,Lexington - Joseph Estabrook,01550010, 1.2, 1.9, .0, .0, .0, .0, 3.1,522,168.38709677419354 --Infinity,1,a-sust-i4,2020-21,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity +NA,NA,a-sust-i4,2020-21,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity 6.48,5,a-sust-i4,2020-21,Lexington - Lexington High,01550505, 0.0, .0, .0, 11.9, .0, .0, 11.9,2261,190.0 6.541935483870968,5,a-sust-i4,2020-21,Lexington - Maria Hastings,01550035, 1.1, 2.0, .0, .0, .0, .0, 3.1,565,182.25806451612902 7.0272,5,a-sust-i4,2020-21,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 7.5, .0, .0, .0, 7.5,912,121.6 --Infinity,1,a-sust-i4,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,260,Infinity +NA,NA,a-sust-i4,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,260,Infinity 4.853333333333333,4.85,a-sust-i4,2020-21,Lincoln - Hanscom Middle,01570305, 0.0, .2, .3, .0, .0, .0, 0.6,236,393.33333333333337 3.264,3.26,a-sust-i4,2020-21,Lincoln - Hanscom Primary,01570006, 0.3, .1, .0, .0, .0, .0, 0.5,296,592.0 3.872,3.87,a-sust-i4,2020-21,Lincoln - Lincoln School,01570025, 0.3, .3, .3, .0, .0, .0, 1.0,516,516.0 @@ -6337,7 +6337,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.757142857142857,5,a-sust-i4,2020-21,Littleton - Littleton High School,01580505, 0.0, .0, .0, 2.8, .0, .0, 2.8,435,155.35714285714286 6.428,5,a-sust-i4,2020-21,Littleton - Littleton Middle School,01580305, 0.0, .0, 2.0, .0, .0, .0, 2.0,393,196.5 4.27,4.27,a-sust-i4,2020-21,Littleton - Russell St Elementary,01580015, 0.0, .8, .0, .0, .0, .0, 0.8,373,466.25 --Infinity,1,a-sust-i4,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity +NA,NA,a-sust-i4,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity 6.035,5,a-sust-i4,2020-21,Longmeadow - Blueberry Hill,01590005, 0.7, .9, .0, .0, .0, .0, 1.6,393,245.625 6.396,5,a-sust-i4,2020-21,Longmeadow - Center,01590010, 1.1, 1.0, .0, .0, .0, .0, 2.0,401,200.5 6.934399999999999,5,a-sust-i4,2020-21,Longmeadow - Glenbrook Middle,01590017, 0.0, .0, 2.5, .0, .0, .0, 2.5,333,133.2 @@ -6369,7 +6369,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8275,5,a-sust-i4,2020-21,Lowell - Pyne Arts,01600018, 1.6, .7, .9, .0, .0, .0, 3.2,469,146.5625 5.738666666666666,5,a-sust-i4,2020-21,Lowell - Rogers STEM Academy,01600005, 1.2, 1.3, .5, .0, .0, .0, 3.0,848,282.6666666666667 6.323478260869565,5,a-sust-i4,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 1.5, .8, .0, .0, .0, .0, 2.3,482,209.56521739130437 --Infinity,1,a-sust-i4,2020-21,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity +NA,NA,a-sust-i4,2020-21,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity 7.161739130434782,5,a-sust-i4,2020-21,Lowell - Washington,01600055, 1.6, .8, .0, .0, .0, .0, 2.3,241,104.78260869565219 6.394,5,a-sust-i4,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 1.4, 1.3, 1.3, .0, .0, .0, 4.0,803,200.75 6.592,5,a-sust-i4,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, .0, .0, .5, .0, .0, 0.5,88,176.0 @@ -6378,7 +6378,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.225263157894736,5,a-sust-i4,2020-21,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 3.8, .0, .0, 3.8,843,221.84210526315792 5.676,5,a-sust-i4,2020-21,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 2.0, .0, .0, .0, 2.0,581,290.5 6.688,5,a-sust-i4,2020-21,Ludlow - Veterans Park Elementary,01610023, 0.0, 2.0, .0, .0, .0, .0, 2.0,328,164.0 --Infinity,1,a-sust-i4,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,4,Infinity +NA,NA,a-sust-i4,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,4,Infinity 5.63,5,a-sust-i4,2020-21,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .3, 1.3, .0, 1.6,474,296.25 6.456,5,a-sust-i4,2020-21,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.0, .0, .0, .0, 2.0,386,193.0 -7.4,1,a-sust-i4,2020-21,Lunenburg - Lunenburg Primary School,01620010, 0.0, .0, .0, .0, .2, .0, 0.2,385,1925.0 @@ -6392,7 +6392,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.781818181818182,5,a-sust-i4,2020-21,Lynn - Cobbet Elementary,01630035, 1.2, 1.0, .0, .0, .0, .0, 2.2,610,277.27272727272725 5.738181818181818,5,a-sust-i4,2020-21,Lynn - E J Harrington,01630045, 1.4, .8, .0, .0, .0, .0, 2.2,622,282.7272727272727 4.916363636363636,4.92,a-sust-i4,2020-21,Lynn - Edward A Sisson,01630095, 0.5, .6, .0, .0, .0, .0, 1.1,424,385.45454545454544 --Infinity,1,a-sust-i4,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 4.726666666666666,4.73,a-sust-i4,2020-21,Lynn - Hood,01630055, 0.5, .7, .0, .0, .0, .0, 1.2,491,409.1666666666667 5.534545454545455,5,a-sust-i4,2020-21,Lynn - Ingalls,01630060, 1.3, .9, .0, .0, .0, .0, 2.2,678,308.18181818181813 6.690909090909091,5,a-sust-i4,2020-21,Lynn - Julia F Callahan,01630030, 1.2, 1.0, .0, .0, .0, .0, 2.2,360,163.63636363636363 @@ -6406,20 +6406,20 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.805,5,a-sust-i4,2020-21,Lynn - Thurgood Marshall Mid,01630305, 0.0, .0, 4.8, .0, .0, .0, 4.8,1317,274.375 6.339047619047619,5,a-sust-i4,2020-21,Lynn - Tracy,01630100, 0.9, 1.2, .0, .0, .0, .0, 2.1,436,207.61904761904762 -27.04,1,a-sust-i4,2020-21,Lynn - Washington Elementary School,01630005, 0.0, .1, .0, .0, .0, .0, 0.1,438,4380.0 --Infinity,1,a-sust-i4,2020-21,Lynn - William R Fallon,01630080, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +NA,NA,a-sust-i4,2020-21,Lynn - William R Fallon,01630080, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity 6.0,5,a-sust-i4,2020-21,Lynn - Wm P Connery,01630040, 1.2, 1.0, .0, .0, .0, .0, 2.2,550,249.99999999999997 4.384,4.38,a-sust-i4,2020-21,Lynnfield - Huckleberry Hill,01640010, 0.6, .4, .0, .0, .0, .0, 1.0,452,452.0 6.736842105263158,5,a-sust-i4,2020-21,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, 3.8, .0, .0, 3.8,600,157.89473684210526 5.212,5,a-sust-i4,2020-21,Lynnfield - Lynnfield Middle School,01640405, 0.0, .5, 1.5, .0, .0, .0, 2.0,697,348.5 --Infinity,1,a-sust-i4,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity +NA,NA,a-sust-i4,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity 6.436,5,a-sust-i4,2020-21,Lynnfield - Summer Street,01640020, 1.2, .8, .0, .0, .0, .0, 2.0,391,195.5 6.0592,5,a-sust-i4,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, .0, .0, 1.0, 4.0, .0, 5.0,1213,242.6 --Infinity,1,a-sust-i4,2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity +NA,NA,a-sust-i4,2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity 5.938285714285714,5,a-sust-i4,2020-21,Malden - Beebe,01650003, 1.3, 1.1, 1.1, .0, .0, .0, 3.5,902,257.7142857142857 5.933714285714286,5,a-sust-i4,2020-21,Malden - Ferryway,01650013, 1.2, 1.2, 1.1, .0, .0, .0, 3.5,904,258.2857142857143 6.2048000000000005,5,a-sust-i4,2020-21,Malden - Forestdale,01650027, 0.7, .7, 1.2, .0, .0, .0, 2.5,561,224.4 4.7,4.7,a-sust-i4,2020-21,Malden - Linden,01650047, 0.6, .7, .8, .0, .0, .0, 2.0,825,412.5 --Infinity,1,a-sust-i4,2020-21,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,217,Infinity +NA,NA,a-sust-i4,2020-21,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,217,Infinity 5.3246153846153845,5,a-sust-i4,2020-21,Malden - Malden High,01650505, 0.0, .0, .0, 4.9, .0, .3, 5.2,1739,334.4230769230769 6.4448,5,a-sust-i4,2020-21,Malden - Salemwood,01650057, 1.1, 1.7, 2.2, .0, .0, .0, 5.0,972,194.4 7.16,5,a-sust-i4,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0.4, 1.4, .0, .0, .0, .0, 1.8,189,105.0 @@ -6430,7 +6430,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.054117647058823,5,a-sust-i4,2020-21,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 6.8, .0, .0, .0, 6.8,804,118.23529411764706 6.382702702702702,5,a-sust-i4,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 3.7, .0, .0, .0, .0, 3.7,748,202.16216216216216 6.539393939393939,5,a-sust-i4,2020-21,Mansfield - Mansfield High,01670505, 0.0, .0, .0, 6.6, .0, .0, 6.6,1205,182.5757575757576 --Infinity,1,a-sust-i4,2020-21,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2020-21,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 2.506666666666666,2.51,a-sust-i4,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, .0, .0, .0, .3, .0, 0.3,206,686.6666666666667 7.053333333333333,5,a-sust-i4,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.6, .0, .0, .0, .0, .0, 0.6,71,118.33333333333334 4.6,4.6,a-sust-i4,2020-21,Marblehead - Glover,01680020, 0.6, .2, .0, .0, .0, .0, 0.8,340,425.0 @@ -6442,7 +6442,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.332631578947368,5,a-sust-i4,2020-21,Marion - Sippican,01690005, 0.8, .8, .3, .0, .0, .0, 1.9,396,208.42105263157896 6.66,5,a-sust-i4,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, .0, 6.8, .0, .0, .0, 6.8,1139,167.5 6.08,5,a-sust-i4,2020-21,Marlborough - Charles Jaworek School,01700030, 1.3, 1.5, .0, .0, .0, .0, 2.8,672,240.00000000000003 --Infinity,1,a-sust-i4,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,157,Infinity +NA,NA,a-sust-i4,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,157,Infinity 6.4384,5,a-sust-i4,2020-21,Marlborough - Francis J Kane,01700008, 1.1, 1.5, .0, .0, .0, .0, 2.5,488,195.2 5.8,5,a-sust-i4,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 1.2, 1.4, .0, .0, .0, .0, 2.6,715,275.0 6.926933333333333,5,a-sust-i4,2020-21,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 7.3, .0, .2, 7.5,1006,134.13333333333333 @@ -6512,7 +6512,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.51,5,a-sust-i4,2020-21,Milford - Brookside,01850065, 2.4, .0, .0, .0, .0, .0, 2.4,447,186.25 6.6016,5,a-sust-i4,2020-21,Milford - Memorial,01850010, 2.5, .0, .0, .0, .0, .0, 2.5,437,174.8 5.81391304347826,5,a-sust-i4,2020-21,Milford - Milford High,01850505, 0.0, .0, .0, 4.3, .0, .3, 4.6,1257,273.26086956521743 --Infinity,1,a-sust-i4,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity +NA,NA,a-sust-i4,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity 6.3488,5,a-sust-i4,2020-21,Milford - Stacy Middle,01850305, 0.0, .0, 5.0, .0, .0, .0, 5.0,1032,206.4 6.448,5,a-sust-i4,2020-21,Milford - Woodland,01850090, 0.0, 5.0, .0, .0, .0, .0, 5.0,970,194.0 5.964,5,a-sust-i4,2020-21,Millbury - Elmwood Street,01860017, 1.5, .5, .0, .0, .0, .0, 2.0,509,254.5 @@ -6538,8 +6538,8 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.02,1,a-sust-i4,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, .4, .0, .0, .0, .0, 0.4,451,1127.5 6.672,5,a-sust-i4,2020-21,Monson - Granite Valley School,01910030, 1.0, 1.2, .3, .0, .0, .0, 2.5,415,166.0 7.077333333333334,5,a-sust-i4,2020-21,Monson - Monson High School,01910505, 0.0, .0, 1.0, 2.0, .0, .0, 3.0,346,115.33333333333333 --Infinity,1,a-sust-i4,2020-21,Monson - Quarry Hill Community School,01910010, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity --Infinity,1,a-sust-i4,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, .0, .0, .0, .0, .0, 0.0,1417,Infinity +NA,NA,a-sust-i4,2020-21,Monson - Quarry Hill Community School,01910010, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +NA,NA,a-sust-i4,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, .0, .0, .0, .0, .0, 0.0,1417,Infinity 6.992,5,a-sust-i4,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 0.7, .6, .2, .0, .0, .0, 1.5,189,126.0 6.3104,5,a-sust-i4,2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, .0, .0, .5, 2.0, .0, 2.5,528,211.2 6.997333333333334,5,a-sust-i4,2020-21,Mount Greylock - Williamstown Elementary,07150010, 0.9, .9, .2, .0, 1.0, .0, 3.0,376,125.33333333333333 @@ -6603,7 +6603,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.493333333333334,5,a-sust-i4,2020-21,New Bedford - Trinity Day Academy,02010510, 0.0, .3, .8, .4, .0, .0, 1.5,95,63.333333333333336 7.152,5,a-sust-i4,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, .0, .0, 1.0, .0, .0, 1.0,106,106.0 6.024,5,a-sust-i4,2020-21,New Bedford - William H Taylor,02010135, 0.4, .6, .0, .0, .0, .0, 1.0,247,247.0 --Infinity,1,a-sust-i4,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,742,Infinity +NA,NA,a-sust-i4,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,742,Infinity -2.32,1,a-sust-i4,2020-21,New Salem-Wendell - Swift River,07280015, 0.1, .1, .0, .0, .0, .0, 0.1,129,1290.0 5.905454545454546,5,a-sust-i4,2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.1, .0, .0, .0, .0, 1.1,288,261.8181818181818 5.84,5,a-sust-i4,2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 1.5, .5, .0, .0, .0, .0, 2.0,540,270.0 @@ -6623,7 +6623,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.6466666666666665,5,a-sust-i4,2020-21,Newton - Lincoln-Eliot,02070070, 0.6, .6, .0, .0, .0, .0, 1.2,353,294.1666666666667 6.048,5,a-sust-i4,2020-21,Newton - Mason-Rice,02070080, 0.6, .9, .0, .0, .0, .0, 1.5,366,244.0 5.98,5,a-sust-i4,2020-21,Newton - Memorial Spaulding,02070105, 0.5, 1.1, .0, .0, .0, .0, 1.6,404,252.5 --Infinity,1,a-sust-i4,2020-21,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity +NA,NA,a-sust-i4,2020-21,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity 6.0937931034482755,5,a-sust-i4,2020-21,Newton - Newton North High,02070505, 0.0, .0, .0, 8.7, .0, .0, 8.7,2073,238.27586206896552 6.300909090909091,5,a-sust-i4,2020-21,Newton - Newton South High,02070510, 0.0, .0, .0, 8.8, .0, .0, 8.8,1869,212.38636363636363 6.5211428571428565,5,a-sust-i4,2020-21,Newton - Oak Hill Middle,02070320, 0.0, .0, 3.5, .0, .0, .0, 3.5,647,184.85714285714286 @@ -6633,7 +6633,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.253333333333334,5,a-sust-i4,2020-21,Newton - Zervas,02070130, 0.8, 1.0, .0, .0, .0, .0, 1.8,393,218.33333333333331 6.571034482758621,5,a-sust-i4,2020-21,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.0, .9, .0, .0, .0, 2.9,518,178.6206896551724 7.689917355371901,5,a-sust-i4,2020-21,Norfolk - H Olive Day,02080015, 11.7, .0, .0, .0, .4, .0, 12.1,469,38.760330578512395 --Infinity,1,a-sust-i4,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,588,Infinity +NA,NA,a-sust-i4,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,588,Infinity 7.1,5,a-sust-i4,2020-21,North Adams - Brayton,02090035, 0.8, .8, .3, .0, .3, .0, 2.0,225,112.5 6.964,5,a-sust-i4,2020-21,North Adams - Colegrove Park Elementary,02090008, 0.9, .9, .3, .0, .0, .0, 2.0,259,129.5 6.658064516129032,5,a-sust-i4,2020-21,North Adams - Drury High,02090505, 0.0, .0, .0, .5, 2.6, .0, 3.1,520,167.74193548387098 @@ -6651,7 +6651,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.3,4.3,a-sust-i4,2020-21,North Attleborough - Falls,02120010, 0.2, .2, .0, .0, .0, .0, 0.4,185,462.5 3.136,3.14,a-sust-i4,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.4, .6, .0, .0, .0, .0, 1.0,608,608.0 6.106086956521739,5,a-sust-i4,2020-21,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 4.6, .0, .0, 4.6,1089,236.73913043478262 --Infinity,1,a-sust-i4,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,141,Infinity +NA,NA,a-sust-i4,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,141,Infinity 6.014,5,a-sust-i4,2020-21,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, 4.0, .0, .0, .0, 4.0,993,248.25 6.448,5,a-sust-i4,2020-21,North Attleborough - Roosevelt Avenue,02120015, 0.5, .6, .0, .0, .0, .0, 1.0,194,194.0 3.408,3.41,a-sust-i4,2020-21,North Brookfield - North Brookfield Elementary,02150015, 0.2, .2, .2, .0, .0, .0, 0.5,287,574.0 @@ -6661,7 +6661,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.854857142857143,5,a-sust-i4,2020-21,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.3, 2.2, .0, .0, .0, 3.5,501,143.14285714285714 6.825185185185185,5,a-sust-i4,2020-21,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .0, 5.4, .0, .0, 5.4,793,146.85185185185185 6.412,5,a-sust-i4,2020-21,North Middlesex - Spaulding Memorial,07350005, 1.2, .8, .0, .0, .0, .0, 2.0,397,198.5 --Infinity,1,a-sust-i4,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.02,5,a-sust-i4,2020-21,North Middlesex - Varnum Brook,07350035, 1.2, .8, .0, .0, .0, .0, 2.0,495,247.5 6.768,5,a-sust-i4,2020-21,North Reading - E Ethel Little School,02170003, 1.0, 1.0, .0, .0, .0, .0, 2.0,308,154.0 6.197333333333333,5,a-sust-i4,2020-21,North Reading - J Turner Hood,02170010, 0.8, .8, .0, .0, .0, .0, 1.5,338,225.33333333333334 @@ -6685,8 +6685,8 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.32,5,a-sust-i4,2020-21,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 2.5, .0, .0, 2.5,525,210.0 6.248,5,a-sust-i4,2020-21,Northbridge - Northbridge Middle,02140305, 0.0, .8, 2.3, .0, .0, .0, 3.0,657,219.0 6.444,5,a-sust-i4,2020-21,Northbridge - W Edward Balmer,02140001, 0.6, 1.4, .0, .0, .0, .0, 2.0,389,194.5 --Infinity,1,a-sust-i4,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1281,Infinity --Infinity,1,a-sust-i4,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,506,Infinity +NA,NA,a-sust-i4,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1281,Infinity +NA,NA,a-sust-i4,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,506,Infinity 4.54,4.54,a-sust-i4,2020-21,Norton - Henri A. Yelle,02180060, 0.0, .8, .0, .0, .0, .0, 0.8,346,432.5 0.624,1,a-sust-i4,2020-21,Norton - J C Solmonese,02180015, 0.4, .1, .0, .0, .0, .0, 0.5,461,922.0 5.6,5,a-sust-i4,2020-21,Norton - L G Nourse Elementary,02180010, 0.6, .2, .0, .0, .0, .0, 0.9,270,300.0 @@ -6701,16 +6701,16 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.895,5,a-sust-i4,2020-21,Norwood - Cornelius M Callahan,02200010, 0.5, .7, .0, .0, .0, .4, 1.6,221,138.125 6.447567567567567,5,a-sust-i4,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, .0, 3.7, .0, .0, .0, 3.7,718,194.05405405405403 6.746666666666667,5,a-sust-i4,2020-21,Norwood - F A Cleveland,02200015, 0.5, .7, .0, .0, .0, .9, 2.1,329,156.66666666666666 --Infinity,1,a-sust-i4,2020-21,Norwood - George F. Willett,02200075, 0.0, .0, .0, .0, .0, .0, 0.0,348,Infinity +NA,NA,a-sust-i4,2020-21,Norwood - George F. Willett,02200075, 0.0, .0, .0, .0, .0, .0, 0.0,348,Infinity 6.4861538461538455,5,a-sust-i4,2020-21,Norwood - John P Oldham,02200020, 0.3, .4, .0, .0, .0, .6, 1.3,246,189.23076923076923 6.558518518518518,5,a-sust-i4,2020-21,Norwood - Norwood High,02200505, 0.0, .0, .0, 5.0, .0, .4, 5.4,973,180.18518518518516 6.56,5,a-sust-i4,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.9, .7, .4, .0, .3, .0, 2.3,414,180.0 --Infinity,1,a-sust-i4,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,563,Infinity +NA,NA,a-sust-i4,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,563,Infinity 6.090666666666667,5,a-sust-i4,2020-21,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 1.8, 1.3, .0, 3.0,716,238.66666666666666 6.896,5,a-sust-i4,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 3.0, .0, .0, .0, 3.0,414,138.0 --Infinity,1,a-sust-i4,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, .0, .0, .0, .0, .0, 0.0,280,Infinity --Infinity,1,a-sust-i4,2020-21,Orange - Dexter Park,02230010, 0.0, .0, .0, .0, .0, .0, 0.0,264,Infinity --Infinity,1,a-sust-i4,2020-21,Orange - Fisher Hill,02230015, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity +NA,NA,a-sust-i4,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, .0, .0, .0, .0, .0, 0.0,280,Infinity +NA,NA,a-sust-i4,2020-21,Orange - Dexter Park,02230010, 0.0, .0, .0, .0, .0, .0, 0.0,264,Infinity +NA,NA,a-sust-i4,2020-21,Orange - Fisher Hill,02230015, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity 7.0,5,a-sust-i4,2020-21,Orleans - Orleans Elementary,02240005, 0.5, .9, .0, .0, .0, .0, 1.4,175,125.00000000000001 5.69142857142857,5,a-sust-i4,2020-21,Oxford - Alfred M Chaffee,02260010, 0.7, .0, .0, .0, .0, .0, 0.7,202,288.5714285714286 5.809230769230769,5,a-sust-i4,2020-21,Oxford - Clara Barton,02260005, 0.4, .9, .0, .0, .0, .0, 1.3,356,273.8461538461538 @@ -6743,9 +6743,9 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.9688888888888885,5,a-sust-i4,2020-21,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, 1.9, .0, .0, .8, 2.7,348,128.88888888888889 5.929230769230769,5,a-sust-i4,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, 1.5, .0, 1.1, 2.6,673,258.8461538461538 7.754,5,a-sust-i4,2020-21,Petersham - Petersham Center,02340005, 1.1, 2.5, .4, .0, .0, .0, 4.0,123,30.75 --Infinity,1,a-sust-i4,2020-21,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,159,Infinity --Infinity,1,a-sust-i4,2020-21,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,208,Infinity --Infinity,1,a-sust-i4,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,221,Infinity +NA,NA,a-sust-i4,2020-21,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,159,Infinity +NA,NA,a-sust-i4,2020-21,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,208,Infinity +NA,NA,a-sust-i4,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,221,Infinity 6.648510638297872,5,a-sust-i4,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.0, 1.2, 1.5, .3, .8, .0, 4.7,794,168.93617021276594 6.15,5,a-sust-i4,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, .0, .4, .0, 1.2, .0, 1.6,370,231.25 6.544,5,a-sust-i4,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.3, .5, .3, .0, .0, .0, 1.0,182,182.0 @@ -6776,7 +6776,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.253333333333334,5,a-sust-i4,2020-21,Plymouth - Manomet Elementary,02390015, 1.0, 1.7, .0, .0, .0, .0, 2.7,252,93.33333333333333 6.873142857142857,5,a-sust-i4,2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 1.4, 2.1, .0, .0, .0, .0, 3.5,493,140.85714285714286 6.384,5,a-sust-i4,2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 5.0, .0, .0, .0, 5.0,1010,202.0 --Infinity,1,a-sust-i4,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity +NA,NA,a-sust-i4,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity 5.584761904761905,5,a-sust-i4,2020-21,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 4.2, .0, .0, 4.2,1268,301.90476190476187 5.563428571428571,5,a-sust-i4,2020-21,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 3.4, .0, .1, 3.5,1066,304.57142857142856 6.67,5,a-sust-i4,2020-21,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 3.9, .0, .0, .1, 4.0,665,166.25 @@ -6796,7 +6796,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.616,5,a-sust-i4,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, 1.0, .0, .0, .0, 1.0,173,173.0 5.287272727272728,5,a-sust-i4,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.5, .5, .2, .0, .0, .0, 1.1,373,339.09090909090907 5.097142857142857,5,a-sust-i4,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.2, .4, .1, .0, .0, .0, 0.7,254,362.8571428571429 --Infinity,1,a-sust-i4,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity +NA,NA,a-sust-i4,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity 5.26,5,a-sust-i4,2020-21,Quincy - Atherton Hough,02430040, 0.3, .5, .0, .0, .0, .1, 0.8,274,342.5 6.18,5,a-sust-i4,2020-21,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.4, .0, .0, .0, 2.4,546,227.5 5.44,5,a-sust-i4,2020-21,Quincy - Beechwood Knoll Elementary,02430020, 0.4, .7, .0, .0, .0, .0, 1.1,352,320.0 @@ -6839,7 +6839,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.5,5,a-sust-i4,2020-21,Revere - Paul Revere,02480050, 1.3, 1.1, .0, .0, .0, .0, 2.4,450,187.5 5.488253968253968,5,a-sust-i4,2020-21,Revere - Revere High,02480505, 0.0, .0, .0, 5.3, .3, .8, 6.3,1978,313.968253968254 5.6,5,a-sust-i4,2020-21,Revere - Rumney Marsh Academy,02480014, 0.0, .0, 2.0, .0, .0, .0, 2.0,600,300.0 --Infinity,1,a-sust-i4,2020-21,Revere - Seacoast School,02480520, 0.0, .0, .0, .0, .0, .0, 0.0,81,Infinity +NA,NA,a-sust-i4,2020-21,Revere - Seacoast School,02480520, 0.0, .0, .0, .0, .0, .0, 0.0,81,Infinity 6.020740740740741,5,a-sust-i4,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 1.4, 1.3, .0, .0, .0, .0, 2.7,668,247.4074074074074 6.466666666666667,5,a-sust-i4,2020-21,Revere - Susan B. Anthony Middle School,02480305, 0.0, .0, 3.0, .0, .0, .0, 3.0,575,191.66666666666666 7.284705882352941,5,a-sust-i4,2020-21,Richmond - Richmond Consolidated,02490005, 0.4, 1.2, .2, .0, .0, .0, 1.7,152,89.41176470588236 @@ -6855,14 +6855,14 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.184,5,a-sust-i4,2020-21,Rockport - Rockport High,02520510, 0.0, .0, .0, 2.5, .0, .0, 2.5,255,102.0 7.461333333333334,5,a-sust-i4,2020-21,Rockport - Rockport Middle,02520305, 0.0, .0, 3.0, .0, .0, .0, 3.0,202,67.33333333333333 7.16,5,a-sust-i4,2020-21,Rowe - Rowe Elementary,02530005, 0.2, .2, .2, .0, .0, .0, 0.6,63,105.0 --Infinity,1,a-sust-i4,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, .0, .0, .0, .0, .0, 0.0,1596,Infinity +NA,NA,a-sust-i4,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, .0, .0, .0, .0, .0, 0.0,1596,Infinity 4.886,4.89,a-sust-i4,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 1.0, 1.0, .7, .3, .0, 1.0, 4.0,1557,389.25 7.034666666666666,5,a-sust-i4,2020-21,Salem - Bates,02580003, 2.0, 1.0, .0, .0, .0, .0, 3.0,362,120.66666666666667 6.716,5,a-sust-i4,2020-21,Salem - Bentley Academy Innovation School,02580010, 1.3, .7, .0, .0, .0, .0, 2.0,321,160.5 6.5371428571428565,5,a-sust-i4,2020-21,Salem - Carlton,02580015, 0.6, .8, .0, .0, .0, .0, 1.4,256,182.85714285714286 6.958399999999999,5,a-sust-i4,2020-21,Salem - Collins Middle,02580305, 0.0, .0, 5.0, .0, .0, .0, 5.0,651,130.2 6.65,5,a-sust-i4,2020-21,Salem - Horace Mann Laboratory,02580030, 1.0, .6, .0, .0, .0, .0, 1.6,270,168.75 --Infinity,1,a-sust-i4,2020-21,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2020-21,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity 6.373333333333333,5,a-sust-i4,2020-21,Salem - Salem Early Childhood,02580001, 0.3, .0, .0, .0, .0, .0, 0.3,61,203.33333333333334 6.624,5,a-sust-i4,2020-21,Salem - Salem High,02580505, 0.0, .0, .0, 5.0, .0, .0, 5.0,860,172.0 7.2,5,a-sust-i4,2020-21,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .2, .0, .0, 0.2,20,100.0 @@ -6874,11 +6874,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.974399999999999,5,a-sust-i4,2020-21,Sandwich - Sandwich High,02610505, 0.0, .0, .0, .7, 4.3, .0, 5.0,641,128.2 6.714074074074074,5,a-sust-i4,2020-21,Sandwich - Sandwich STEM Academy,02610305, 0.0, .0, 2.7, .0, .0, .0, 2.7,434,160.74074074074073 3.653333333333333,3.65,a-sust-i4,2020-21,Saugus - Douglas Waybright,02620067, 0.3, .0, .0, .0, .0, .0, 0.3,163,543.3333333333334 --Infinity,1,a-sust-i4,2020-21,Saugus - Lynnhurst,02620040, 0.0, .0, .0, .0, .0, .0, 0.0,216,Infinity +NA,NA,a-sust-i4,2020-21,Saugus - Lynnhurst,02620040, 0.0, .0, .0, .0, .0, .0, 0.0,216,Infinity 4.784,4.78,a-sust-i4,2020-21,Saugus - Oaklandvale,02620050, 0.5, .0, .0, .0, .0, .0, 0.5,201,402.0 6.3,5,a-sust-i4,2020-21,Saugus - Saugus High,02620505, 0.0, .0, .0, 3.2, .0, .0, 3.2,680,212.5 6.576,5,a-sust-i4,2020-21,Saugus - Saugus Middle School,02620305, 0.0, .0, 3.5, .0, .0, .0, 3.5,623,178.0 --Infinity,1,a-sust-i4,2020-21,Saugus - Veterans Memorial,02620065, 0.0, .0, .0, .0, .0, .0, 0.0,414,Infinity +NA,NA,a-sust-i4,2020-21,Saugus - Veterans Memorial,02620065, 0.0, .0, .0, .0, .0, .0, 0.0,414,Infinity 7.413333333333333,5,a-sust-i4,2020-21,Savoy - Emma L Miller Elementary School,02630010, 0.2, .2, .2, .0, .0, .0, 0.6,44,73.33333333333334 6.6147368421052635,5,a-sust-i4,2020-21,Scituate - Cushing Elementary,02640007, 0.8, 1.2, .0, .0, .0, .0, 1.9,329,173.1578947368421 7.250588235294117,5,a-sust-i4,2020-21,Scituate - Gates Middle School,02640305, 0.0, .0, 6.8, .0, .0, .0, 6.8,637,93.67647058823529 @@ -6893,16 +6893,16 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.7407407407407405,5,a-sust-i4,2020-21,Sharon - Cottage Street,02660005, 0.8, 1.8, .0, .0, .0, .0, 2.7,425,157.4074074074074 6.4256,5,a-sust-i4,2020-21,Sharon - East Elementary,02660010, 1.0, 1.5, .0, .0, .0, .0, 2.5,492,196.8 6.793333333333333,5,a-sust-i4,2020-21,Sharon - Heights Elementary,02660015, 1.2, 2.4, .0, .0, .0, .0, 3.6,543,150.83333333333334 --Infinity,1,a-sust-i4,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +NA,NA,a-sust-i4,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity 5.845714285714286,5,a-sust-i4,2020-21,Sharon - Sharon High,02660505, 0.0, .0, .0, .2, 4.0, .0, 4.2,1131,269.2857142857143 6.009142857142857,5,a-sust-i4,2020-21,Sharon - Sharon Middle,02660305, 0.0, .0, 3.5, .0, .0, .0, 3.5,871,248.85714285714286 --Infinity,1,a-sust-i4,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1308,Infinity +NA,NA,a-sust-i4,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1308,Infinity 6.353684210526316,5,a-sust-i4,2020-21,Sherborn - Pine Hill,02690010, 1.0, .9, .0, .0, .0, .0, 1.9,391,205.78947368421055 2.98,2.98,a-sust-i4,2020-21,Shrewsbury - Beal School,02710005, 0.4, .0, .0, .0, .0, .0, 0.4,251,627.5 4.56,4.56,a-sust-i4,2020-21,Shrewsbury - Calvin Coolidge,02710015, 0.7, .3, .0, .0, .0, .0, 1.0,430,430.0 -1.053333333333334,1,a-sust-i4,2020-21,Shrewsbury - Floral Street School,02710020, 0.1, .5, .0, .0, .0, .0, 0.6,679,1131.6666666666667 3.8526315789473684,3.85,a-sust-i4,2020-21,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 1.9, .0, .0, .0, 1.9,985,518.421052631579 --Infinity,1,a-sust-i4,2020-21,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity +NA,NA,a-sust-i4,2020-21,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity 4.144,4.14,a-sust-i4,2020-21,Shrewsbury - Sherwood Middle School,02710305, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,964,482.0 5.225185185185185,5,a-sust-i4,2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, .0, .0, .3, 5.0, .0, 5.4,1873,346.85185185185185 5.344,5,a-sust-i4,2020-21,Shrewsbury - Spring Street,02710035, 0.2, .8, .0, .0, .0, .0, 1.0,332,332.0 @@ -6933,7 +6933,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.013913043478261,5,a-sust-i4,2020-21,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .5, 1.8, .0, 2.3,571,248.2608695652174 2.5533333333333332,2.55,a-sust-i4,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, 1.2, .0, .0, 1.2,817,680.8333333333334 6.245217391304348,5,a-sust-i4,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 1.1, 1.6, 1.9, .0, .0, .0, 4.6,1009,219.34782608695653 --Infinity,1,a-sust-i4,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,646,Infinity +NA,NA,a-sust-i4,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,646,Infinity 4.416,4.42,a-sust-i4,2020-21,Southampton - William E Norris,02750005, 0.5, .4, .1, .0, .0, .0, 1.0,448,448.0 6.3133333333333335,5,a-sust-i4,2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 0.6, .6, .0, .0, .1, .0, 1.2,253,210.83333333333334 7.328,5,a-sust-i4,2020-21,Southborough - Margaret A Neary,02760020, 0.0, 3.0, .0, .0, .0, .0, 3.0,252,84.0 @@ -6941,16 +6941,16 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.871111111111111,5,a-sust-i4,2020-21,Southborough - P Brent Trottier,02760305, 0.0, .0, 2.4, .0, .4, .0, 2.7,381,141.11111111111111 6.924,5,a-sust-i4,2020-21,Southbridge - Charlton Street,02770005, 0.5, 1.5, .0, .0, .0, .0, 2.0,269,134.5 6.592,5,a-sust-i4,2020-21,Southbridge - Eastford Road,02770010, 2.0, .0, .0, .0, .0, .0, 2.0,352,176.0 --Infinity,1,a-sust-i4,2020-21,Southbridge - Southbridge Academy,02770525, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity +NA,NA,a-sust-i4,2020-21,Southbridge - Southbridge Academy,02770525, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity 6.0463157894736845,5,a-sust-i4,2020-21,Southbridge - Southbridge High School,02770515, 0.0, .0, .0, 1.9, .0, .0, 1.9,464,244.21052631578948 6.9525,5,a-sust-i4,2020-21,Southbridge - Southbridge Middle School,02770315, 0.0, .0, 3.2, .0, .0, .0, 3.2,419,130.9375 6.748,5,a-sust-i4,2020-21,Southbridge - West Street,02770020, 0.5, 1.5, .0, .0, .0, .0, 2.0,313,156.5 --Infinity,1,a-sust-i4,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1527,Infinity +NA,NA,a-sust-i4,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1527,Infinity 6.96,5,a-sust-i4,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 0.0, .0, .8, 1.7, .0, .0, 2.5,325,130.0 7.026666666666666,5,a-sust-i4,2020-21,Southern Berkshire - New Marlborough Central,07650018, 0.4, .2, .0, .0, .0, .0, 0.6,73,121.66666666666667 7.4,5,a-sust-i4,2020-21,Southern Berkshire - South Egremont,07650030, 0.2, .0, .0, .0, .0, .0, 0.2,15,75.0 7.156363636363636,5,a-sust-i4,2020-21,Southern Berkshire - Undermountain,07650035, 0.6, 1.6, .0, .0, .0, .0, 2.2,232,105.45454545454544 --Infinity,1,a-sust-i4,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1171,Infinity +NA,NA,a-sust-i4,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1171,Infinity 6.3,5,a-sust-i4,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.5, .5, .0, .0, .0, 2.0,425,212.5 6.747906976744186,5,a-sust-i4,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, 1.1, 3.2, .0, .0, 4.3,673,156.51162790697674 6.82,5,a-sust-i4,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, .0, .0, .0, .0, .0, 2.0,295,147.5 @@ -6963,19 +6963,19 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.112,5,a-sust-i4,2020-21,Springfield - Arthur T Talmadge,02810165, 0.3, .5, .0, .0, .2, .0, 1.0,236,236.0 7.84,5,a-sust-i4,2020-21,Springfield - Balliet Middle School,02810360, 0.0, .0, 1.0, .0, .0, .0, 1.0,20,20.0 5.264,5,a-sust-i4,2020-21,Springfield - Brightwood,02810025, 0.6, .5, .0, .0, .0, .0, 1.0,342,342.0 --Infinity,1,a-sust-i4,2020-21,Springfield - Chestnut Academy,02810365, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity --Infinity,1,a-sust-i4,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, .0, .0, .0, .0, 0.0,321,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Chestnut Academy,02810365, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, .0, .0, .0, .0, 0.0,321,Infinity 7.558666666666666,5,a-sust-i4,2020-21,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 2.9, .4, 1.6, 1.1, 6.0,331,55.166666666666664 5.6,5,a-sust-i4,2020-21,Springfield - Daniel B Brunton,02810035, 0.7, .8, .0, .0, .0, .0, 1.4,420,300.0 --Infinity,1,a-sust-i4,2020-21,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,124,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,124,Infinity 5.982608695652174,5,a-sust-i4,2020-21,Springfield - Edward P. Boland School,02810010, 1.0, 1.3, .0, .0, .0, .0, 2.3,580,252.17391304347828 6.812,5,a-sust-i4,2020-21,Springfield - Elias Brookings,02810030, 0.7, 1.0, .0, .0, .3, .0, 2.0,297,148.5 --Infinity,1,a-sust-i4,2020-21,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .0, .0, .0, 0.0,13,Infinity --Infinity,1,a-sust-i4,2020-21,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,641,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .0, .0, .0, 0.0,13,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,641,Infinity 6.445714285714286,5,a-sust-i4,2020-21,Springfield - Frank H Freedman,02810075, 0.6, .8, .0, .0, .0, .0, 1.4,272,194.2857142857143 5.52,5,a-sust-i4,2020-21,Springfield - Frederick Harris,02810080, 0.8, 1.1, .0, .0, .1, .0, 2.0,620,310.0 --Infinity,1,a-sust-i4,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity --Infinity,1,a-sust-i4,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity 5.404,5,a-sust-i4,2020-21,Springfield - German Gerena Community School,02810195, 0.6, 1.1, .0, .0, .3, .0, 2.0,649,324.5 6.528,5,a-sust-i4,2020-21,Springfield - Glenwood,02810065, 0.6, .8, .0, .0, .1, .0, 1.5,276,184.0 6.625882352941177,5,a-sust-i4,2020-21,Springfield - Glickman Elementary,02810068, 0.5, .9, .0, .0, .4, .0, 1.7,292,171.76470588235296 @@ -6988,33 +6988,33 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.783157894736842,4.78,a-sust-i4,2020-21,Springfield - John J Duggan Middle,02810320, 0.0, .0, .9, .0, .1, .9, 1.9,764,402.10526315789474 6.48,5,a-sust-i4,2020-21,Springfield - Kensington International School,02810110, 0.6, .8, .0, .0, .0, .0, 1.4,266,190.0 5.7,5,a-sust-i4,2020-21,Springfield - Kiley Academy,02810316, 0.0, .0, .4, .0, .0, .0, 0.4,115,287.5 --Infinity,1,a-sust-i4,2020-21,Springfield - Kiley Prep,02810315, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Kiley Prep,02810315, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity 6.7155555555555555,5,a-sust-i4,2020-21,Springfield - Liberty,02810115, 0.8, 1.0, .0, .0, .0, .0, 1.8,289,160.55555555555554 7.813333333333334,5,a-sust-i4,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .3, .0, 0.3,7,23.333333333333336 5.786666666666666,5,a-sust-i4,2020-21,Springfield - Lincoln,02810120, 0.6, .9, .0, .0, .0, .0, 1.5,415,276.6666666666667 --Infinity,1,a-sust-i4,2020-21,Springfield - Lyceum Academy,02810317, 0.0, .0, .0, .0, .0, .0, 0.0,371,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Lyceum Academy,02810317, 0.0, .0, .0, .0, .0, .0, 0.0,371,Infinity -1.62,1,a-sust-i4,2020-21,Springfield - M Marcus Kiley Middle,02810330, 0.0, .0, .4, .0, .0, .0, 0.4,481,1202.5 --Infinity,1,a-sust-i4,2020-21,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,135,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,135,Infinity 5.738181818181818,5,a-sust-i4,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.4, .6, .0, .0, .1, .0, 1.1,311,282.7272727272727 6.566153846153846,5,a-sust-i4,2020-21,Springfield - Mary M Lynch,02810140, 0.6, .7, .0, .0, .0, .0, 1.3,233,179.23076923076923 5.72,5,a-sust-i4,2020-21,Springfield - Mary M Walsh,02810155, 0.4, .5, .0, .0, .1, .0, 1.0,285,285.0 6.308,5,a-sust-i4,2020-21,Springfield - Mary O Pottenger,02810145, 0.8, 1.2, .0, .0, .0, .0, 2.0,423,211.5 5.916,5,a-sust-i4,2020-21,Springfield - Milton Bradley School,02810023, 0.8, 1.0, .0, .0, .2, .0, 2.0,521,260.5 6.12,5,a-sust-i4,2020-21,Springfield - Rebecca M Johnson,02810055, 1.2, 1.8, .0, .0, .0, .0, 3.0,705,235.0 --Infinity,1,a-sust-i4,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,304,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,304,Infinity 5.6102127659574474,5,a-sust-i4,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, .0, .0, 3.9, .7, .1, 4.7,1404,298.7234042553191 6.649411764705882,5,a-sust-i4,2020-21,Springfield - STEM Middle Academy,02810350, 0.0, .0, 1.7, .0, .0, .0, 1.7,287,168.82352941176472 6.79,5,a-sust-i4,2020-21,Springfield - Samuel Bowles,02810020, 0.7, .8, .0, .0, .1, .0, 1.6,242,151.25 5.222857142857143,5,a-sust-i4,2020-21,Springfield - South End Middle School,02810355, 0.0, .0, .7, .0, .0, .0, 0.7,243,347.14285714285717 6.036705882352941,5,a-sust-i4,2020-21,Springfield - Springfield Central High,02810500, 0.0, .0, .0, 3.0, 3.4, 2.1, 8.5,2086,245.41176470588235 --Infinity,1,a-sust-i4,2020-21,Springfield - Springfield High School,02810570, 0.0, .0, .0, .0, .0, .0, 0.0,206,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Springfield High School,02810570, 0.0, .0, .0, .0, .0, .0, 0.0,206,Infinity 5.84909090909091,5,a-sust-i4,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 0.0, .0, .0, 1.3, 2.4, .7, 4.4,1183,268.8636363636363 7.573333333333334,5,a-sust-i4,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, .3, .0, .0, .0, .0, 0.3,16,53.333333333333336 --Infinity,1,a-sust-i4,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity 7.827368421052632,5,a-sust-i4,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0.0, .0, .0, .0, 1.9, .0, 1.9,41,21.578947368421055 --Infinity,1,a-sust-i4,2020-21,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity 7.552,5,a-sust-i4,2020-21,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, 1.0, .0, .0, .0, 1.0,56,56.0 --Infinity,1,a-sust-i4,2020-21,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity +NA,NA,a-sust-i4,2020-21,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity 6.986,5,a-sust-i4,2020-21,Springfield - Sumner Avenue,02810160, 1.5, 1.7, .0, .0, .8, .0, 4.0,507,126.75 6.405,5,a-sust-i4,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.6, 1.4, .0, .2, 3.2,638,199.375 5.94,5,a-sust-i4,2020-21,Springfield - Thomas M Balliet,02810015, 0.5, .8, .0, .0, .0, .0, 1.2,309,257.5 @@ -7029,7 +7029,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.614545454545455,5,a-sust-i4,2020-21,Stoneham - South,02840030, 0.7, .5, .0, .0, .0, .0, 1.1,328,298.18181818181813 6.112,5,a-sust-i4,2020-21,Stoneham - Stoneham Central Middle School,02840405, 0.0, .6, 2.5, .0, .0, .0, 3.0,708,236.0 6.78,5,a-sust-i4,2020-21,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 4.0, .0, 4.0,610,152.5 --Infinity,1,a-sust-i4,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity +NA,NA,a-sust-i4,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity 6.516923076923077,5,a-sust-i4,2020-21,Stoughton - Helen Hansen Elementary,02850010, 0.4, .5, .0, .0, .4, .0, 1.3,241,185.3846153846154 6.526315789473684,5,a-sust-i4,2020-21,Stoughton - Joseph H Gibbons,02850025, 0.7, .8, .0, .0, .4, .0, 1.9,350,184.21052631578948 6.373333333333334,5,a-sust-i4,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.6, .8, .0, .0, .4, .0, 1.8,366,203.33333333333331 @@ -7063,18 +7063,18 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -1.141818181818182,1,a-sust-i4,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.2, .2, 1.0, .7, .0, .0, 2.2,2514,1142.7272727272727 6.44,5,a-sust-i4,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,585,195.0 6.59076923076923,5,a-sust-i4,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, 3.8, .1, .0, 3.9,687,176.15384615384616 --Infinity,1,a-sust-i4,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,499,Infinity +NA,NA,a-sust-i4,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,499,Infinity 5.318260869565217,5,a-sust-i4,2020-21,Taunton - Benjamin Friedman Middle,02930315, 0.0, .6, 1.7, .0, .0, .0, 2.3,771,335.21739130434787 4.043636363636364,4.04,a-sust-i4,2020-21,Taunton - East Taunton Elementary,02930010, 0.6, .5, .0, .0, .0, .0, 1.1,544,494.5454545454545 5.656,5,a-sust-i4,2020-21,Taunton - Edmund Hatch Bennett,02930007, 0.6, .4, .0, .0, .0, .0, 1.0,293,293.0 --Infinity,1,a-sust-i4,2020-21,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity +NA,NA,a-sust-i4,2020-21,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity 4.596923076923077,4.6,a-sust-i4,2020-21,Taunton - Elizabeth Pole,02930027, 0.7, .6, .0, .0, .0, .0, 1.3,553,425.38461538461536 5.131428571428571,5,a-sust-i4,2020-21,Taunton - H H Galligan,02930057, 0.5, .3, .0, .0, .0, .0, 0.7,251,358.5714285714286 5.61,5,a-sust-i4,2020-21,Taunton - John F Parker Middle,02930305, 0.0, .4, 1.1, .0, .0, .0, 1.6,478,298.75 5.193846153846154,5,a-sust-i4,2020-21,Taunton - Joseph C Chamberlain,02930008, 0.7, .5, .0, .0, .0, .0, 1.3,456,350.7692307692308 5.683478260869565,5,a-sust-i4,2020-21,Taunton - Joseph H Martin,02930042, 0.0, .7, 1.6, .0, .0, .0, 2.3,666,289.5652173913044 4.555555555555555,4.56,a-sust-i4,2020-21,Taunton - Mulcahey Elementary School,02930015, 1.1, .7, .0, .0, .0, .0, 1.8,775,430.55555555555554 --Infinity,1,a-sust-i4,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 4.338983050847458,4.34,a-sust-i4,2020-21,Taunton - Taunton High,02930505, 0.0, .0, 2.1, 2.9, .8, .0, 5.9,2700,457.62711864406776 5.496,5,a-sust-i4,2020-21,Tewksbury - Heath-Brook,02950010, 1.0, .0, .0, .0, .0, .0, 1.0,313,313.0 6.1,5,a-sust-i4,2020-21,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,475,237.5 @@ -7100,17 +7100,17 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.26,5,a-sust-i4,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.7, .6, .8, .0, .0, .0, 2.0,685,342.5 7.333333333333333,5,a-sust-i4,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 0.2, .0, .0, .0, .4, .0, 0.6,50,83.33333333333334 7.337142857142857,5,a-sust-i4,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, .0, 2.0, .0, 2.2, .0, 4.2,348,82.85714285714285 --Infinity,1,a-sust-i4,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,722,Infinity --Infinity,1,a-sust-i4,2020-21,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity +NA,NA,a-sust-i4,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,722,Infinity +NA,NA,a-sust-i4,2020-21,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity 5.976,5,a-sust-i4,2020-21,Uxbridge - Taft Early Learning Center,03040005, 1.5, .5, .0, .0, .0, .0, 2.0,506,253.0 6.08,5,a-sust-i4,2020-21,Uxbridge - Uxbridge High,03040505, 0.0, .0, .5, 2.0, .0, .0, 2.5,600,240.0 6.688,5,a-sust-i4,2020-21,Uxbridge - Whitin Intermediate,03040405, 0.0, .8, 1.8, .0, .0, .3, 3.0,492,164.0 --Infinity,1,a-sust-i4,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, .0, .0, .0, .0, .0, 0.0,419,Infinity +NA,NA,a-sust-i4,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, .0, .0, .0, .0, .0, 0.0,419,Infinity 6.689523809523809,5,a-sust-i4,2020-21,Wachusett - Central Tree Middle,07750310, 0.0, .0, 2.1, .0, .0, .0, 2.1,344,163.8095238095238 6.4,5,a-sust-i4,2020-21,Wachusett - Chocksett Middle School,07750315, 0.0, .4, 1.1, .0, .0, .0, 1.5,300,200.0 6.304,5,a-sust-i4,2020-21,Wachusett - Davis Hill Elementary,07750018, 1.1, .9, .0, .0, .0, .0, 2.0,424,212.0 6.22,5,a-sust-i4,2020-21,Wachusett - Dawson,07750020, 1.1, .9, .0, .0, .0, .0, 2.0,445,222.5 --Infinity,1,a-sust-i4,2020-21,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,93,Infinity +NA,NA,a-sust-i4,2020-21,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,93,Infinity 6.3,5,a-sust-i4,2020-21,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.6, .0, .0, .0, .0, 1.6,340,212.5 6.776,5,a-sust-i4,2020-21,Wachusett - Houghton Elementary,07750027, 1.3, .7, .0, .0, .0, .0, 2.0,306,153.0 6.084,5,a-sust-i4,2020-21,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,479,239.5 @@ -7120,7 +7120,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.9152,5,a-sust-i4,2020-21,Wachusett - Thomas Prince,07750045, 0.9, .8, .9, .0, .0, .0, 2.5,339,135.6 6.502429906542057,5,a-sust-i4,2020-21,Wachusett - Wachusett Regional High,07750505, 0.0, .0, .0, 6.1, 4.5, .0, 10.7,2003,187.196261682243 5.785,5,a-sust-i4,2020-21,Wakefield - Dolbeare,03050005, 1.0, .6, .0, .0, .0, .0, 1.6,443,276.875 --Infinity,1,a-sust-i4,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,68,Infinity +NA,NA,a-sust-i4,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,68,Infinity 6.2726530612244895,5,a-sust-i4,2020-21,Wakefield - Galvin Middle School,03050310, 0.0, 1.3, 3.6, .0, .0, .0, 4.9,1058,215.91836734693877 6.088888888888889,5,a-sust-i4,2020-21,Wakefield - Greenwood,03050020, 0.0, .9, .0, .0, .0, .0, 0.9,215,238.88888888888889 7.034594594594595,5,a-sust-i4,2020-21,Wakefield - Wakefield Memorial High,03050505, 0.0, .0, .0, 3.8, 3.6, .0, 7.4,893,120.67567567567566 @@ -7129,7 +7129,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.346666666666666,5,a-sust-i4,2020-21,Wales - Wales Elementary,03060005, 0.4, .1, .0, .0, .0, .0, 0.6,124,206.66666666666669 7.1177777777777775,5,a-sust-i4,2020-21,Walpole - Bird Middle,03070305, 0.0, .0, 3.5, .0, .0, .1, 3.6,397,110.27777777777777 5.2,5,a-sust-i4,2020-21,Walpole - Boyden,03070010, 0.6, .5, .0, .0, .0, .0, 1.0,350,350.0 --Infinity,1,a-sust-i4,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,62,Infinity +NA,NA,a-sust-i4,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,62,Infinity 6.698461538461539,5,a-sust-i4,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 2.5, .0, .0, .1, 2.6,423,162.69230769230768 6.264,5,a-sust-i4,2020-21,Walpole - Elm Street School,03070005, 1.0, 1.0, .0, .0, .0, .0, 2.0,434,217.0 6.172,5,a-sust-i4,2020-21,Walpole - Fisher,03070015, 1.1, .9, .0, .0, .0, .0, 2.0,457,228.5 @@ -7150,7 +7150,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.904,5,a-sust-i4,2020-21,Ware - Ware Middle School,03090305, 0.0, 1.3, .7, .0, .0, .0, 2.0,274,137.0 5.856,5,a-sust-i4,2020-21,Wareham - John William Decas,03100003, 2.0, .0, .0, .0, .0, .0, 2.0,536,268.0 6.796,5,a-sust-i4,2020-21,Wareham - Minot Forest,03100017, 0.0, 2.0, .0, .0, .0, .0, 2.0,301,150.5 --Infinity,1,a-sust-i4,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity +NA,NA,a-sust-i4,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity 6.2943999999999996,5,a-sust-i4,2020-21,Wareham - Wareham Middle,03100305, 0.0, .8, 1.7, .0, .0, .0, 2.5,533,213.2 6.768421052631579,5,a-sust-i4,2020-21,Wareham - Wareham Senior High,03100505, 0.0, .0, .2, 2.0, .0, 1.6, 3.8,585,153.94736842105263 6.665,5,a-sust-i4,2020-21,Watertown - Cunniff,03140015, 0.8, .8, .0, .0, .0, .0, 1.6,267,166.875 @@ -7171,7 +7171,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.627692307692308,5,a-sust-i4,2020-21,Wellesley - John D Hardy,03170020, 0.6, .6, .0, .0, .0, .0, 1.3,223,171.53846153846152 6.944,5,a-sust-i4,2020-21,Wellesley - Joseph E Fiske,03170015, 1.2, .8, .0, .0, .0, .0, 2.0,264,132.0 6.918095238095239,5,a-sust-i4,2020-21,Wellesley - Katharine Lee Bates,03170005, 1.1, 1.0, .0, .0, .0, .0, 2.1,284,135.23809523809524 --Infinity,1,a-sust-i4,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity 6.66,5,a-sust-i4,2020-21,Wellesley - Schofield,03170045, 1.1, .9, .0, .0, .0, .0, 2.0,335,167.5 6.736,5,a-sust-i4,2020-21,Wellesley - Sprague Elementary School,03170048, 0.9, 1.1, .0, .0, .0, .0, 2.0,316,158.0 7.030222222222223,5,a-sust-i4,2020-21,Wellesley - Wellesley Middle,03170305, 0.0, .0, 8.4, .0, .0, .6, 9.0,1091,121.22222222222223 @@ -7183,7 +7183,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.16,4.16,a-sust-i4,2020-21,West Bridgewater - Rose L Macdonald,03230003, 0.4, .2, .0, .0, .0, .0, 0.6,288,480.0 5.906666666666666,5,a-sust-i4,2020-21,West Bridgewater - Spring Street School,03230005, 0.6, .0, .0, .0, .0, .0, 0.6,157,261.6666666666667 6.843636363636364,5,a-sust-i4,2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, .0, 1.1, 3.4, .0, .0, 4.4,636,144.54545454545453 --Infinity,1,a-sust-i4,2020-21,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity +NA,NA,a-sust-i4,2020-21,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity 5.417142857142857,5,a-sust-i4,2020-21,West Springfield - John Ashley,03320005, 0.7, .0, .0, .0, .0, .0, 0.7,226,322.8571428571429 5.6171428571428565,5,a-sust-i4,2020-21,West Springfield - John R Fausey,03320010, 0.5, .9, .0, .0, .0, .0, 1.4,417,297.8571428571429 6.364444444444445,5,a-sust-i4,2020-21,West Springfield - Memorial,03320025, 0.2, .6, .0, .0, .0, .0, 0.9,184,204.44444444444443 @@ -7199,7 +7199,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.098181818181818,5,a-sust-i4,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 4.9, .0, .5, .0, 5.5,620,112.72727272727273 6.03,5,a-sust-i4,2020-21,Westborough - Westborough High,03210505, 0.0, .0, .0, .7, 4.1, .0, 4.8,1182,246.25 6.666666666666666,5,a-sust-i4,2020-21,Westfield - Abner Gibbs,03250020, 0.6, .4, .0, .0, .2, .0, 1.2,200,166.66666666666669 --Infinity,1,a-sust-i4,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,118,Infinity +NA,NA,a-sust-i4,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,118,Infinity 6.8246153846153845,5,a-sust-i4,2020-21,Westfield - Franklin Ave,03250015, 0.8, .3, .0, .0, .2, .0, 1.3,191,146.9230769230769 6.0369230769230775,5,a-sust-i4,2020-21,Westfield - Highland,03250025, 0.8, .3, .0, .0, .2, .0, 1.3,319,245.3846153846154 6.23,5,a-sust-i4,2020-21,Westfield - Munger Hill,03250033, 0.8, .6, .0, .0, .2, .0, 1.6,354,221.25 @@ -7233,12 +7233,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8589473684210525,5,a-sust-i4,2020-21,Westwood - Martha Jones,03350017, 0.9, 1.0, .0, .0, .0, .0, 1.9,271,142.63157894736844 7.232,5,a-sust-i4,2020-21,Westwood - Paul Hanlon,03350015, 0.9, 1.1, .0, .0, .0, .0, 2.0,192,96.0 6.954736842105263,5,a-sust-i4,2020-21,Westwood - Westwood High,03350505, 0.0, .0, .0, 7.5, .0, .1, 7.6,993,130.6578947368421 --Infinity,1,a-sust-i4,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 6.844,5,a-sust-i4,2020-21,Westwood - William E Sheehan,03350025, 1.2, .8, .0, .0, .0, .0, 2.0,289,144.5 7.12,5,a-sust-i4,2020-21,Weymouth - Abigail Adams Middle School,03360310, 0.0, .0, 8.0, .0, .0, .0, 8.0,880,110.0 5.272,5,a-sust-i4,2020-21,Weymouth - Academy Avenue,03360005, 0.5, .5, .0, .0, .0, .0, 1.0,341,341.0 5.832,5,a-sust-i4,2020-21,Weymouth - Frederick C Murphy,03360050, 0.5, .5, .0, .0, .0, .0, 1.0,271,271.0 --Infinity,1,a-sust-i4,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity +NA,NA,a-sust-i4,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity 6.248,5,a-sust-i4,2020-21,Weymouth - Lawrence W Pingree,03360065, 0.5, .5, .0, .0, .0, .0, 1.0,219,219.0 5.872,5,a-sust-i4,2020-21,Weymouth - Ralph Talbot,03360085, 0.5, .5, .0, .0, .0, .0, 1.0,266,266.0 6.36,5,a-sust-i4,2020-21,Weymouth - Thomas V Nash,03360060, 0.5, .5, .0, .0, .0, .0, 1.0,205,205.0 @@ -7251,10 +7251,10 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.12,5,a-sust-i4,2020-21,Whitman-Hanson - Indian Head,07800035, 1.1, .9, .0, .0, .0, .0, 2.0,470,235.0 4.664,4.66,a-sust-i4,2020-21,Whitman-Hanson - John H Duval,07800030, 0.5, .5, .0, .0, .0, .0, 1.0,417,417.0 6.016,5,a-sust-i4,2020-21,Whitman-Hanson - Louise A Conley,07800010, 0.9, 1.1, .0, .0, .0, .0, 2.0,496,248.0 --Infinity,1,a-sust-i4,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity +NA,NA,a-sust-i4,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity 5.021333333333334,5,a-sust-i4,2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, .0, .0, .0, .8, 2.2, 3.0,1117,372.3333333333333 5.804,5,a-sust-i4,2020-21,Whitman-Hanson - Whitman Middle,07800310, 0.0, .0, 2.0, .0, .0, .0, 2.0,549,274.5 --Infinity,1,a-sust-i4,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, .0, .0, .0, .0, .0, 0.0,1249,Infinity +NA,NA,a-sust-i4,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, .0, .0, .0, .0, .0, 0.0,1249,Infinity 7.524,5,a-sust-i4,2020-21,Williamsburg - Anne T. Dunphy School,03400020, 0.9, .9, .3, .0, .0, .0, 2.0,119,59.5 5.76,5,a-sust-i4,2020-21,Wilmington - Boutwell,03420005, 0.4, .0, .0, .0, .0, .0, 0.4,112,280.0 7.062857142857143,5,a-sust-i4,2020-21,Wilmington - North Intermediate,03420060, 0.0, 2.1, .0, .0, .0, .0, 2.1,246,117.14285714285714 @@ -7265,11 +7265,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.604878048780488,5,a-sust-i4,2020-21,Wilmington - Wilmington Middle School,03420330, 0.0, .0, 4.1, .0, .0, .0, 4.1,715,174.39024390243904 6.54,5,a-sust-i4,2020-21,Wilmington - Woburn Street,03420020, 1.3, .7, .0, .0, .0, .0, 2.0,365,182.5 3.872,3.87,a-sust-i4,2020-21,Winchendon - Memorial,03430040, 0.5, .0, .0, .0, .0, .0, 0.5,258,516.0 --Infinity,1,a-sust-i4,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity +NA,NA,a-sust-i4,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity 5.904,5,a-sust-i4,2020-21,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .0, 1.0, .0, 1.0,262,262.0 5.26,5,a-sust-i4,2020-21,Winchendon - Murdock Middle School,03430315, 0.0, .0, .8, .0, .0, .0, 0.8,274,342.5 3.312,3.31,a-sust-i4,2020-21,Winchendon - Toy Town Elementary,03430050, 0.0, .5, .0, .0, .0, .0, 0.5,293,586.0 --Infinity,1,a-sust-i4,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity +NA,NA,a-sust-i4,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity 6.2026666666666666,5,a-sust-i4,2020-21,Winchester - Ambrose Elementary,03440045, 1.2, .2, .0, .0, .0, .0, 1.5,337,224.66666666666666 6.63304347826087,5,a-sust-i4,2020-21,Winchester - Lincoln Elementary,03440005, 1.4, .9, .0, .0, .0, .0, 2.3,393,170.8695652173913 6.491851851851852,5,a-sust-i4,2020-21,Winchester - Lynch Elementary,03440020, 1.2, 1.6, .0, .0, .0, .0, 2.7,509,188.5185185185185 @@ -7335,12 +7335,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.447671232876712,5,a-sust-i4,2020-21,Worcester - Woodland Academy,03480030, 3.4, 2.9, 1.0, .0, .0, .0, 7.3,504,69.04109589041096 7.373617021276596,5,a-sust-i4,2020-21,Worcester - Worcester Arts Magnet School,03480225, 2.6, 1.6, .5, .0, .0, .0, 4.7,368,78.29787234042553 6.8224,5,a-sust-i4,2020-21,Worcester - Worcester East Middle,03480420, 0.0, .0, 5.0, .0, .0, .0, 5.0,736,147.2 --Infinity,1,a-sust-i4,2020-21,Worcester - Worcester Technical High,03480605, 0.0, .0, .0, .0, .0, .0, 0.0,1481,Infinity +NA,NA,a-sust-i4,2020-21,Worcester - Worcester Technical High,03480605, 0.0, .0, .0, .0, .0, .0, 0.0,1481,Infinity 7.58,5,a-sust-i4,2020-21,Worthington - R. H. Conwell,03490010, 0.5, .5, .2, .0, .0, .0, 1.2,63,52.5 4.684444444444444,4.68,a-sust-i4,2020-21,Wrentham - Charles E Roderick,03500010, 0.0, .6, .3, .0, .0, .0, 0.9,373,414.44444444444446 6.221818181818182,5,a-sust-i4,2020-21,Wrentham - Delaney,03500003, 1.5, .7, .0, .0, .0, .0, 2.2,489,222.27272727272725 6.719101123595506,5,a-sust-i4,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 1.5, 2.9, 3.0, .0, .0, 8.9,1425,160.1123595505618 --Infinity,1,a-sust-i4,2019-20,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity +NA,NA,a-sust-i4,2019-20,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity 5.937391304347826,5,a-sust-i4,2019-20,Abington - Abington High,00010505, 0.0, .0, .0, 2.3, .0, .0, 2.3,593,257.82608695652175 6.745454545454546,5,a-sust-i4,2019-20,Abington - Abington Middle School,00010405, 0.0, 1.4, 3.0, .0, .0, .0, 4.4,690,156.8181818181818 6.784516129032258,5,a-sust-i4,2019-20,Abington - Beaver Brook Elementary,00010020, 3.1, .0, .0, .0, .0, .0, 3.1,471,151.93548387096774 @@ -7349,7 +7349,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.896811594202898,5,a-sust-i4,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, 1.9, 1.2, 3.8, 6.9,1814,262.8985507246377 6.112,5,a-sust-i4,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 1.0, .8, .3, .0, .0, .0, 2.0,472,236.0 6.428,5,a-sust-i4,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.8, .9, .3, .0, .0, .0, 2.0,393,196.5 --Infinity,1,a-sust-i4,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity +NA,NA,a-sust-i4,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,102,Infinity 6.364,5,a-sust-i4,2019-20,Acton-Boxborough - Luther Conant School,06000030, 1.0, .7, .3, .0, .0, .0, 2.0,409,204.5 5.94,5,a-sust-i4,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0.8, .8, .3, .0, .0, .0, 2.0,515,257.5 6.1,5,a-sust-i4,2019-20,Acton-Boxborough - Merriam School,06000010, 0.8, .8, .4, .0, .0, .0, 2.0,475,237.5 @@ -7358,7 +7358,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.732,5,a-sust-i4,2019-20,Acushnet - Acushnet Elementary School,00030025, 1.3, .7, .0, .0, .0, .0, 2.0,567,283.5 6.228,5,a-sust-i4,2019-20,Acushnet - Albert F Ford Middle School,00030305, 0.0, .6, 1.4, .0, .0, .0, 2.0,443,221.5 6.120975609756098,5,a-sust-i4,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 1.9, 2.1, .0, .0, 4.1,963,234.87804878048783 --Infinity,1,a-sust-i4,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,160,Infinity +NA,NA,a-sust-i4,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,160,Infinity 6.3476923076923075,5,a-sust-i4,2019-20,Agawam - Agawam High,00050505, 0.0, .0, .0, 5.2, .0, .0, 5.2,1074,206.53846153846152 7.009777777777777,5,a-sust-i4,2019-20,Agawam - Agawam Junior High,00050405, 0.0, .0, 4.5, .0, .0, .0, 4.5,557,123.77777777777777 5.72,5,a-sust-i4,2019-20,Agawam - Benjamin J Phelps,00050020, 0.5, .6, .0, .0, .0, .0, 1.2,342,285.0 @@ -7383,7 +7383,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.663225806451613,5,a-sust-i4,2019-20,Andover - Doherty Middle,00090305, 0.0, .0, 3.1, .0, .0, .0, 3.1,518,167.09677419354838 6.698181818181818,5,a-sust-i4,2019-20,Andover - Henry C Sanborn Elementary,00090010, 1.0, 1.2, .0, .0, .0, .0, 2.2,358,162.72727272727272 6.243333333333333,5,a-sust-i4,2019-20,Andover - High Plain Elementary,00090004, 1.2, 1.2, .0, .0, .0, .0, 2.4,527,219.58333333333334 --Infinity,1,a-sust-i4,2019-20,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,81,Infinity +NA,NA,a-sust-i4,2019-20,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,81,Infinity 6.763870967741935,5,a-sust-i4,2019-20,Andover - South Elementary,00090020, 1.2, 1.9, .0, .0, .0, .0, 3.1,479,154.51612903225805 6.68,5,a-sust-i4,2019-20,Andover - West Elementary,00090025, 1.6, 2.1, .0, .0, .0, .0, 3.6,594,165.0 6.797037037037037,5,a-sust-i4,2019-20,Andover - Wood Hill Middle School,00090350, 0.0, .0, 2.7, .0, .0, .0, 2.7,406,150.37037037037035 @@ -7395,7 +7395,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.224,5,a-sust-i4,2019-20,Arlington - Hardy,00100030, 1.0, 1.0, .0, .0, .0, .0, 2.0,444,222.0 6.147368421052632,5,a-sust-i4,2019-20,Arlington - John A Bishop,00100005, 1.0, .9, .0, .0, .0, .0, 1.9,440,231.57894736842107 6.105263157894736,5,a-sust-i4,2019-20,Arlington - M Norcross Stratton,00100055, 1.0, .9, .0, .0, .0, .0, 1.9,450,236.84210526315792 --Infinity,1,a-sust-i4,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 6.643018867924528,5,a-sust-i4,2019-20,Arlington - Ottoson Middle,00100410, 0.0, .0, 5.3, .0, .0, .0, 5.3,899,169.62264150943398 6.110769230769231,5,a-sust-i4,2019-20,Arlington - Peirce,00100045, 0.8, .5, .0, .0, .0, .0, 1.3,307,236.15384615384613 6.041904761904761,5,a-sust-i4,2019-20,Arlington - Thompson,00100050, 1.0, 1.1, .0, .0, .0, .0, 2.1,514,244.76190476190476 @@ -7408,7 +7408,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.301935483870968,5,a-sust-i4,2019-20,Ashland - Ashland Middle,00140405, 0.0, .0, 3.1, .0, .0, .0, 3.1,658,212.25806451612902 5.803333333333333,5,a-sust-i4,2019-20,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,659,274.58333333333337 4.93,4.93,a-sust-i4,2019-20,Ashland - Henry E Warren Elementary,00140010, 1.6, .0, .0, .0, .0, .0, 1.6,614,383.75 --Infinity,1,a-sust-i4,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,93,Infinity +NA,NA,a-sust-i4,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,93,Infinity 4.957333333333334,4.96,a-sust-i4,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 3.0, .0, .0, 3.0,1141,380.3333333333333 4.752,4.75,a-sust-i4,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 0.9, .6, .0, .0, .0, .0, 1.5,609,406.0 6.1257142857142854,5,a-sust-i4,2019-20,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, 1.4, .0, .0, 1.4,328,234.2857142857143 @@ -7419,7 +7419,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.76,3.76,a-sust-i4,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .1, .0, .0, 0.1,53,530.0 5.168,5,a-sust-i4,2019-20,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 5.0, .0, .0, 5.0,1770,354.0 6.0128,5,a-sust-i4,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, .6, 1.9, .0, .0, .0, 2.5,621,248.4 --Infinity,1,a-sust-i4,2019-20,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,184,Infinity +NA,NA,a-sust-i4,2019-20,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,184,Infinity 6.176,5,a-sust-i4,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 1.2, .8, .0, .0, .0, .0, 2.0,456,228.0 6.156,5,a-sust-i4,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 1.2, .8, .0, .0, .0, .0, 2.0,461,230.5 6.363636363636364,5,a-sust-i4,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 1.4, .8, .0, .0, .0, .0, 2.2,450,204.54545454545453 @@ -7442,7 +7442,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.56,5,a-sust-i4,2019-20,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 4.2, .0, .0, .0, 4.2,756,180.0 6.213333333333334,5,a-sust-i4,2019-20,Barnstable - Barnstable United Elementary School,00200050, 0.0, 3.6, .0, .0, .0, .0, 3.6,804,223.33333333333331 6.611428571428571,5,a-sust-i4,2019-20,Barnstable - Centerville Elementary,00200010, 1.1, .4, .0, .0, .0, .0, 1.4,243,173.57142857142858 --Infinity,1,a-sust-i4,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,161,Infinity +NA,NA,a-sust-i4,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,161,Infinity 6.764,5,a-sust-i4,2019-20,Barnstable - Hyannis West Elementary,00200025, 1.5, .5, .0, .0, .0, .0, 2.0,309,154.5 5.55,5,a-sust-i4,2019-20,Barnstable - West Barnstable Elementary,00200005, 0.6, .2, .0, .0, .0, .0, 0.8,245,306.25 6.304,5,a-sust-i4,2019-20,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,424,212.0 @@ -7456,7 +7456,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.84,5,a-sust-i4,2019-20,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,189,270.0 7.008,5,a-sust-i4,2019-20,Belchertown - Jabish Middle School,00240025, 0.0, .0, 3.0, .0, .0, .0, 3.0,372,124.0 6.092,5,a-sust-i4,2019-20,Belchertown - Swift River Elementary,00240018, 1.4, .6, .0, .0, .0, .0, 2.0,477,238.5 --Infinity,1,a-sust-i4,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity +NA,NA,a-sust-i4,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity 6.544390243902439,5,a-sust-i4,2019-20,Bellingham - Bellingham High School,00250505, 0.0, .0, .9, 3.2, .0, .0, 4.1,746,181.95121951219514 6.721951219512195,5,a-sust-i4,2019-20,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.1, 2.0, .0, .0, .0, 4.1,655,159.75609756097563 6.597894736842105,5,a-sust-i4,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 1.5, .5, .0, .0, .0, .0, 1.9,333,175.26315789473685 @@ -7486,7 +7486,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.522352941176471,5,a-sust-i4,2019-20,Beverly - Centerville Elementary,00300010, 1.0, .7, .0, .0, .0, .0, 1.7,314,184.7058823529412 6.284,5,a-sust-i4,2019-20,Beverly - Cove Elementary,00300015, 1.2, .8, .0, .0, .0, .0, 2.0,429,214.5 6.432941176470588,5,a-sust-i4,2019-20,Beverly - Hannah Elementary,00300033, 1.0, .7, .0, .0, .0, .0, 1.7,333,195.88235294117646 --Infinity,1,a-sust-i4,2019-20,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity +NA,NA,a-sust-i4,2019-20,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity 6.29,5,a-sust-i4,2019-20,Beverly - North Beverly Elementary,00300040, 0.9, .7, .0, .0, .0, .0, 1.6,342,213.75 6.427555555555555,5,a-sust-i4,2019-20,Billerica - Billerica Memorial High School,00310505, 0.0, .0, 4.0, 5.1, .0, .0, 9.0,1769,196.55555555555554 6.785,5,a-sust-i4,2019-20,Billerica - Frederick J Dutile,00310007, 1.1, .5, .0, .0, .0, .0, 1.6,243,151.875 @@ -7507,16 +7507,16 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.893333333333333,3.89,a-sust-i4,2019-20,Boston - Baldwin Early Learning Center,00350003, 0.3, .0, .0, .0, .0, .0, 0.3,154,513.3333333333334 7.131428571428572,5,a-sust-i4,2019-20,Boston - Beethoven,00350021, 2.8, .0, .0, .0, .0, .0, 2.8,304,108.57142857142858 6.575483870967743,5,a-sust-i4,2019-20,Boston - Blackstone,00350390, 1.1, 2.0, .0, .0, .0, .0, 3.1,552,178.06451612903226 --Infinity,1,a-sust-i4,2019-20,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity 7.715223880597016,5,a-sust-i4,2019-20,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 13.4, .0, .0, 13.4,477,35.59701492537313 1.0,1.0,a-sust-i4,2019-20,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .2, .0, .0, 0.2,175,875.0 --Infinity,1,a-sust-i4,2019-20,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, .0, .0, .0, 0.0,506,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, .0, .0, .0, 0.0,506,Infinity 4.1866666666666665,4.19,a-sust-i4,2019-20,Boston - Boston International High School,00350507, 0.0, .0, .0, .9, .0, .0, 0.9,429,476.66666666666663 5.5892682926829265,5,a-sust-i4,2019-20,Boston - Boston Latin,00350560, 0.0, .0, 4.3, 3.8, .0, .0, 8.2,2471,301.3414634146342 4.166486486486487,4.17,a-sust-i4,2019-20,Boston - Boston Latin Academy,00350545, 0.0, .0, 2.3, 1.4, .0, .0, 3.7,1773,479.18918918918916 6.782222222222223,5,a-sust-i4,2019-20,Boston - Boston Teachers Union School,00350012, 0.8, .6, .4, .0, .0, .0, 1.8,274,152.22222222222223 4.10909090909091,4.11,a-sust-i4,2019-20,Boston - Brighton High,00350505, 0.0, .0, .0, 1.1, .0, .0, 1.1,535,486.3636363636363 --Infinity,1,a-sust-i4,2019-20,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity 4.576,4.58,a-sust-i4,2019-20,Boston - Charles H Taylor,00350054, 0.6, .4, .0, .0, .0, .0, 1.0,428,428.0 5.973333333333334,5,a-sust-i4,2019-20,Boston - Charles Sumner,00350052, 1.2, 1.0, .0, .0, .0, .0, 2.1,532,253.33333333333331 3.4346666666666668,3.43,a-sust-i4,2019-20,Boston - Charlestown High,00350515, 0.0, .0, .0, 1.5, .0, .0, 1.5,856,570.6666666666666 @@ -7551,7 +7551,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.18,5,a-sust-i4,2019-20,Boston - Haynes Early Education Center,00350010, 2.0, .0, .0, .0, .0, .0, 2.0,205,102.5 4.288,4.29,a-sust-i4,2019-20,Boston - Henry Grew,00350135, 0.5, .0, .0, .0, .0, .0, 0.5,232,464.0 6.872,5,a-sust-i4,2019-20,Boston - Higginson,00350015, 1.0, .0, .0, .0, .0, .0, 1.0,141,141.0 --Infinity,1,a-sust-i4,2019-20,Boston - Higginson/Lewis K-8,00350377, 0.0, .0, .0, .0, .0, .0, 0.0,230,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Higginson/Lewis K-8,00350377, 0.0, .0, .0, .0, .0, .0, 0.0,230,Infinity 7.565714285714286,5,a-sust-i4,2019-20,Boston - Horace Mann School for the Deaf,00350750, 0.3, .7, .2, .3, .0, .0, 1.4,76,54.28571428571429 -13.04,1,a-sust-i4,2019-20,Boston - Hugh Roe O'Donnell,00350141, 0.1, .0, .0, .0, .0, .0, 0.1,263,2630.0 6.568275862068965,5,a-sust-i4,2019-20,Boston - Jackson Mann,00350013, 1.1, .9, .9, .0, .0, .0, 2.9,519,178.9655172413793 @@ -7571,19 +7571,19 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.0125,5,a-sust-i4,2019-20,Boston - Josiah Quincy,00350286, 2.1, 1.1, .0, .0, .0, .0, 3.2,795,248.4375 6.8053333333333335,5,a-sust-i4,2019-20,Boston - Joyce Kilmer,00350190, 1.6, .9, .5, .0, .0, .0, 3.0,448,149.33333333333334 6.032727272727273,5,a-sust-i4,2019-20,Boston - King K-8,00350376, 1.0, .2, 1.1, .0, .0, .0, 2.2,541,245.90909090909088 --Infinity,1,a-sust-i4,2019-20,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,194,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,194,Infinity 6.789333333333333,5,a-sust-i4,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 0.0, .0, 3.0, .0, .0, .0, 3.0,454,151.33333333333334 6.142857142857143,5,a-sust-i4,2019-20,Boston - Lyndon,00350262, 0.8, 1.3, .7, .0, .0, .0, 2.8,650,232.14285714285717 7.472,5,a-sust-i4,2019-20,Boston - Lyon K-8,00350004, 0.8, .8, .3, .0, .0, .0, 2.0,132,66.0 --Infinity,1,a-sust-i4,2019-20,Boston - Lyon Upper 9-12,00350655, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity --Infinity,1,a-sust-i4,2019-20,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1021,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Lyon Upper 9-12,00350655, 0.0, .0, .0, .0, .0, .0, 0.0,133,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1021,Infinity 5.816,5,a-sust-i4,2019-20,Boston - Manassah E Bradley,00350215, 0.7, .2, .0, .0, .0, .0, 1.0,273,273.0 7.4896,5,a-sust-i4,2019-20,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 5.0, .0, .0, 5.0,319,63.8 5.43448275862069,5,a-sust-i4,2019-20,Boston - Mario Umana Academy,00350656, 0.4, .5, 2.0, .0, .0, .0, 2.9,930,320.6896551724138 6.74,5,a-sust-i4,2019-20,Boston - Mather,00350227, 1.8, 1.8, .0, .0, .0, .0, 3.6,567,157.5 6.917333333333333,5,a-sust-i4,2019-20,Boston - Mattahunt Elementary School,00350016, 2.5, .5, .0, .0, .0, .0, 3.0,406,135.33333333333334 4.901818181818182,4.9,a-sust-i4,2019-20,Boston - Maurice J Tobin,00350229, 0.6, .1, .4, .0, .0, .0, 1.1,426,387.27272727272725 --Infinity,1,a-sust-i4,2019-20,Boston - Michael J Perkins,00350231, 0.0, .0, .0, .0, .0, .0, 0.0,161,Infinity +NA,NA,a-sust-i4,2019-20,Boston - Michael J Perkins,00350231, 0.0, .0, .0, .0, .0, .0, 0.0,161,Infinity 6.995555555555556,5,a-sust-i4,2019-20,Boston - Mildred Avenue K-8,00350378, 1.6, 1.2, 2.7, .0, .0, .0, 5.4,678,125.55555555555554 2.0533333333333332,2.05,a-sust-i4,2019-20,Boston - Mission Hill School,00350382, 0.0, .0, .3, .0, .0, .0, 0.3,223,743.3333333333334 7.257777777777777,5,a-sust-i4,2019-20,Boston - Mozart,00350237, 1.1, .7, .0, .0, .0, .0, 1.8,167,92.77777777777777 @@ -7612,7 +7612,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.48,5,a-sust-i4,2019-20,Boston - Urban Science Academy,00350579, 0.0, .0, .0, .6, .0, .0, 0.6,39,65.0 6.523870967741936,5,a-sust-i4,2019-20,Boston - Warren-Prescott,00350346, 1.3, 1.2, .6, .0, .0, .0, 3.1,572,184.51612903225805 5.56,5,a-sust-i4,2019-20,Boston - Washington Irving Middle,00350445, 0.0, .0, .8, .0, .0, .0, 0.8,244,305.0 --Infinity,1,a-sust-i4,2019-20,Boston - West Roxbury Academy,00350658, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity +NA,NA,a-sust-i4,2019-20,Boston - West Roxbury Academy,00350658, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity 7.0475,5,a-sust-i4,2019-20,Boston - William E Russell,00350366, 1.9, 1.3, .0, .0, .0, .0, 3.2,381,119.0625 7.405333333333334,5,a-sust-i4,2019-20,Boston - William Ellery Channing,00350360, 2.2, .7, .0, .0, .0, .0, 3.0,223,74.33333333333333 6.288571428571428,5,a-sust-i4,2019-20,Boston - William H Ohrenberger,00350258, 0.0, 1.5, 1.3, .0, .0, .0, 2.8,599,213.92857142857144 @@ -7623,7 +7623,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.088275862068966,5,a-sust-i4,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, .4, 1.0, 1.5, .0, .0, 2.9,693,238.96551724137933 1.376,1.38,a-sust-i4,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, .0, .0, .0, .5, .0, 0.5,414,828.0 1.333333333333333,1.33,a-sust-i4,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, .0, .4, .3, .0, .0, 0.6,500,833.3333333333334 --Infinity,1,a-sust-i4,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, .0, .0, .0, .0, .0, 0.0,581,Infinity +NA,NA,a-sust-i4,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, .0, .0, .0, .0, .0, 0.0,581,Infinity 6.76,5,a-sust-i4,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 3.2, 2.4, .4, .0, .0, .0, 6.0,930,155.0 6.915294117647059,5,a-sust-i4,2019-20,Bourne - Bourne High School,00360505, 0.0, .0, .0, .1, 3.3, .0, 3.4,461,135.58823529411765 6.104,5,a-sust-i4,2019-20,Bourne - Bourne Intermediate School,00360030, 0.0, 1.7, .0, .0, .3, .0, 2.0,474,237.0 @@ -7650,13 +7650,13 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.36,5,a-sust-i4,2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 1.0, .0, .0, .0, .0, .0, 1.0,330,330.0 5.251764705882353,5,a-sust-i4,2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 2.5, .9, .0, .0, .0, .0, 3.4,1168,343.5294117647059 6.515555555555555,5,a-sust-i4,2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, .8, 2.7, .0, .0, .0, 3.6,668,185.55555555555554 --Infinity,1,a-sust-i4,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity +NA,NA,a-sust-i4,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity 6.732444444444444,5,a-sust-i4,2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 3.5, 1.0, .0, .0, .0, 4.5,713,158.44444444444446 6.592941176470588,5,a-sust-i4,2019-20,Brimfield - Brimfield Elementary,00430005, 1.0, .5, .2, .0, .0, .0, 1.7,299,175.88235294117646 --Infinity,1,a-sust-i4,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,451,Infinity --Infinity,1,a-sust-i4,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1305,Infinity +NA,NA,a-sust-i4,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,451,Infinity +NA,NA,a-sust-i4,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1305,Infinity 6.485333333333333,5,a-sust-i4,2019-20,Brockton - Ashfield Middle School,00440421, 0.0, .0, 2.3, .0, .0, .7, 3.0,568,189.33333333333334 --Infinity,1,a-sust-i4,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,237,Infinity +NA,NA,a-sust-i4,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,237,Infinity 6.352,5,a-sust-i4,2019-20,Brockton - Brockton Champion High School,00440515, 0.0, .0, .0, .0, .0, .5, 0.5,103,206.0 5.034909090909091,5,a-sust-i4,2019-20,Brockton - Brockton High,00440505, 0.0, .0, .0, 6.3, .0, 4.7, 11.0,4077,370.6363636363636 5.908,5,a-sust-i4,2019-20,Brockton - Brookfield,00440010, 0.8, .8, .0, .0, .0, .4, 2.0,523,261.5 @@ -7664,7 +7664,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.954666666666667,5,a-sust-i4,2019-20,Brockton - Dr W Arnone Community School,00440001, 1.1, 1.0, .0, .0, .0, 1.0, 3.0,767,255.66666666666666 6.149333333333333,5,a-sust-i4,2019-20,Brockton - East Middle School,00440405, 0.0, .0, 2.0, .0, .0, 1.0, 3.0,694,231.33333333333334 5.808421052631578,5,a-sust-i4,2019-20,Brockton - Edgar B Davis,00440023, 1.0, .9, 1.1, .0, .0, .8, 3.8,1041,273.94736842105266 --Infinity,1,a-sust-i4,2019-20,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,249,Infinity +NA,NA,a-sust-i4,2019-20,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,249,Infinity 7.4,5,a-sust-i4,2019-20,Brockton - Frederick Douglass Academy,00440080, 0.0, .0, .0, .0, .0, .2, 0.2,15,75.0 6.342857142857143,5,a-sust-i4,2019-20,Brockton - Gilmore Elementary School,00440055, 0.8, 1.1, .0, .0, .0, .2, 2.1,435,207.14285714285714 5.571764705882353,5,a-sust-i4,2019-20,Brockton - Hancock,00440045, 0.8, .5, .0, .0, .0, .3, 1.7,516,303.5294117647059 @@ -7680,9 +7680,9 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.940740740740741,5,a-sust-i4,2019-20,Brockton - West Middle School,00440420, 0.0, .0, 1.7, .0, .0, 1.0, 2.7,695,257.4074074074074 6.249777777777777,5,a-sust-i4,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 3.5, 2.7, 1.8, .0, 1.0, .0, 9.0,1969,218.77777777777777 6.2457142857142856,5,a-sust-i4,2019-20,Brookfield - Brookfield Elementary,00450005, 0.3, 1.0, .1, .0, .0, .0, 1.4,307,219.2857142857143 --Infinity,1,a-sust-i4,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity --Infinity,1,a-sust-i4,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,17,Infinity --Infinity,1,a-sust-i4,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity +NA,NA,a-sust-i4,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity +NA,NA,a-sust-i4,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,17,Infinity +NA,NA,a-sust-i4,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,56,Infinity 6.5634482758620685,5,a-sust-i4,2019-20,Brookline - Brookline High,00460505, 0.0, .0, .0, 11.6, .0, .0, 11.6,2083,179.5689655172414 6.468333333333333,5,a-sust-i4,2019-20,Brookline - Coolidge Corner School,00460015, 1.7, 2.1, 1.0, .0, .0, .0, 4.8,919,191.45833333333334 6.695652173913043,5,a-sust-i4,2019-20,Brookline - Edith C Baker,00460005, 1.4, 1.9, 1.2, .0, .0, .0, 4.6,750,163.0434782608696 @@ -7691,7 +7691,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.913600000000001,5,a-sust-i4,2019-20,Brookline - Lawrence,00460030, 1.7, 2.3, 1.0, .0, .0, .0, 5.0,679,135.8 6.666666666666667,5,a-sust-i4,2019-20,Brookline - Michael Driscoll,00460020, 1.0, 1.7, .8, .0, .0, .0, 3.6,600,166.66666666666666 6.396190476190476,5,a-sust-i4,2019-20,Brookline - Pierce,00460040, 1.3, 1.9, 1.1, .0, .0, .0, 4.2,842,200.47619047619048 --Infinity,1,a-sust-i4,2019-20,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity +NA,NA,a-sust-i4,2019-20,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity 6.6036363636363635,5,a-sust-i4,2019-20,Brookline - William H Lincoln,00460035, 1.0, 1.6, .8, .0, .0, .0, 3.3,576,174.54545454545456 6.531929824561404,5,a-sust-i4,2019-20,Burlington - Burlington High,00480505, 0.0, .0, .0, 5.7, .0, .0, 5.7,1046,183.50877192982455 7.0088888888888885,5,a-sust-i4,2019-20,Burlington - Fox Hill,00480007, 1.3, 1.7, .0, .0, .0, .6, 3.6,446,123.88888888888889 @@ -7720,10 +7720,10 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.354782608695652,5,a-sust-i4,2019-20,Canton - Dean S Luce,00500020, 1.2, 1.1, .0, .0, .0, .0, 2.3,473,205.6521739130435 5.7555555555555555,5,a-sust-i4,2019-20,Canton - John F Kennedy,00500017, 1.0, .9, .0, .0, .0, .0, 1.8,505,280.55555555555554 6.295652173913043,5,a-sust-i4,2019-20,Canton - Lt Peter M Hansen,00500012, 1.3, 1.1, .0, .0, .0, .0, 2.3,490,213.0434782608696 --Infinity,1,a-sust-i4,2019-20,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity +NA,NA,a-sust-i4,2019-20,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity 6.7952941176470585,5,a-sust-i4,2019-20,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 5.1, .0, .0, .0, 5.1,768,150.58823529411765 6.52923076923077,5,a-sust-i4,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, 1.3, .0, .0, .0, 1.3,239,183.84615384615384 --Infinity,1,a-sust-i4,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .0, .0, .0, 0.0,616,Infinity +NA,NA,a-sust-i4,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .0, .0, .0, 0.0,616,Infinity 7.0448,5,a-sust-i4,2019-20,Carlisle - Carlisle School,00510025, 1.3, 1.6, 2.2, .0, .0, .0, 5.0,597,119.4 4.744,4.74,a-sust-i4,2019-20,Carver - Carver Elementary School,00520015, 0.8, 1.2, .0, .0, .0, .0, 2.0,814,407.0 6.612727272727273,5,a-sust-i4,2019-20,Carver - Carver Middle/High School,00520405, 0.0, .0, 3.0, 1.4, .0, .0, 4.4,763,173.4090909090909 @@ -7737,11 +7737,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.53,5,a-sust-i4,2019-20,Chelmsford - Charles D Harrington,00560025, 1.0, .6, .0, .0, .0, .0, 1.6,494,308.75 6.362898550724638,5,a-sust-i4,2019-20,Chelmsford - Chelmsford High,00560505, 0.0, .0, .0, 6.9, .0, .0, 6.9,1412,204.63768115942028 6.850196078431372,5,a-sust-i4,2019-20,Chelmsford - Col Moses Parker School,00560305, 0.0, 2.0, 3.1, .0, .0, .0, 5.1,733,143.72549019607845 --Infinity,1,a-sust-i4,2019-20,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,166,Infinity +NA,NA,a-sust-i4,2019-20,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,166,Infinity 6.554545454545455,5,a-sust-i4,2019-20,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.4, 3.0, .0, .0, .0, 4.4,795,180.68181818181816 6.228,5,a-sust-i4,2019-20,Chelmsford - South Row,00560015, 1.2, .8, .0, .0, .0, .0, 2.0,443,221.5 6.397714285714287,5,a-sust-i4,2019-20,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 7.0, .0, .0, 7.0,1402,200.28571428571428 --Infinity,1,a-sust-i4,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity +NA,NA,a-sust-i4,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity 6.149333333333333,5,a-sust-i4,2019-20,Chelsea - Clark Avenue School,00570050, 0.0, .5, 1.5, .0, .0, 1.0, 3.0,694,231.33333333333334 6.546666666666667,5,a-sust-i4,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 1.1, .9, .0, .0, 1.0, .0, 3.0,545,181.66666666666666 5.892,5,a-sust-i4,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, .5, 1.5, .0, .0, .0, 2.0,527,263.5 @@ -7765,11 +7765,11 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.16,4.16,a-sust-i4,2019-20,Chicopee - Lambert-Lavoie,00610040, 0.2, .4, .0, .0, .0, .0, 0.6,288,480.0 4.96,4.96,a-sust-i4,2019-20,Chicopee - Litwin,00610022, 0.2, .8, .0, .0, .0, .0, 1.0,380,380.0 6.373333333333333,5,a-sust-i4,2019-20,Chicopee - Streiber Memorial School,00610065, 0.6, .5, .0, .0, .1, .0, 1.2,244,203.33333333333334 --Infinity,1,a-sust-i4,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,249,Infinity +NA,NA,a-sust-i4,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,249,Infinity 6.396,5,a-sust-i4,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, .0, 1.0, .0, .0, 1.0, 2.0,401,200.5 --Infinity,1,a-sust-i4,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .0, .0, .0, 0.0,228,Infinity --Infinity,1,a-sust-i4,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity --Infinity,1,a-sust-i4,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity +NA,NA,a-sust-i4,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .0, .0, .0, 0.0,228,Infinity +NA,NA,a-sust-i4,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity +NA,NA,a-sust-i4,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,149,Infinity 6.03,5,a-sust-i4,2019-20,Clarksburg - Clarksburg Elementary,00630010, 0.4, .3, .2, .0, .0, .0, 0.8,197,246.25 4.652,4.65,a-sust-i4,2019-20,Clinton - Clinton Elementary,00640050, 1.2, .8, .0, .0, .0, .0, 2.0,837,418.5 6.070399999999999,5,a-sust-i4,2019-20,Clinton - Clinton Middle School,00640305, 0.0, 1.0, 1.5, .0, .0, .0, 2.5,603,241.2 @@ -7781,9 +7781,9 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.325,5,a-sust-i4,2019-20,Cohasset - Joseph Osgood,00650010, 1.6, .0, .0, .0, .0, .0, 1.6,335,209.375 4.272,4.27,a-sust-i4,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.9, .9, .1, .1, .0, .0, 2.0,932,466.0 5.102222222222222,5,a-sust-i4,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, .0, .0, .0, .9, .0, 0.9,326,362.22222222222223 --Infinity,1,a-sust-i4,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity --Infinity,1,a-sust-i4,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity --Infinity,1,a-sust-i4,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity +NA,NA,a-sust-i4,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity +NA,NA,a-sust-i4,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,400,Infinity +NA,NA,a-sust-i4,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity 6.501538461538462,5,a-sust-i4,2019-20,Concord - Alcott,00670005, 1.0, 1.6, .0, .0, .0, .0, 2.6,487,187.3076923076923 7.094603174603175,5,a-sust-i4,2019-20,Concord - Concord Middle,00670305, 0.0, .0, 6.3, .0, .0, .0, 6.3,713,113.17460317460318 6.624615384615384,5,a-sust-i4,2019-20,Concord - Thoreau,00670020, 1.0, 1.5, .0, .0, .0, .0, 2.6,447,171.9230769230769 @@ -7836,7 +7836,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.3828571428571435,5,a-sust-i4,2019-20,Dracut - Greenmont Avenue,00790030, 0.6, .8, .0, .0, .0, .0, 1.4,283,202.14285714285717 5.095,5,a-sust-i4,2019-20,Dracut - Joseph A Campbell Elementary,00790020, 0.8, .8, .0, .0, .0, .0, 1.6,581,363.125 5.348571428571429,5,a-sust-i4,2019-20,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 2.8, .0, .0, .0, 2.8,928,331.42857142857144 --Infinity,1,a-sust-i4,2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,271,Infinity +NA,NA,a-sust-i4,2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,271,Infinity 4.46,4.46,a-sust-i4,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.8, .0, .0, .0, .0, .0, 0.8,354,442.5 6.658,5,a-sust-i4,2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 1.0, 3.0, .0, .0, .0, 4.0,671,167.75 5.573333333333333,5,a-sust-i4,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.4, .8, .0, .0, .0, .0, 1.2,364,303.33333333333337 @@ -7871,8 +7871,8 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8828571428571435,5,a-sust-i4,2019-20,Edgartown - Edgartown Elementary,00890005, 0.7, .8, .6, .0, .5, .3, 2.8,391,139.64285714285714 4.896,4.9,a-sust-i4,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, 0.0, .0, .0, 1.0, .0, .0, 1.0,388,388.0 7.113333333333333,5,a-sust-i4,2019-20,Erving - Erving Elementary,00910030, 0.6, .5, .2, .0, .0, .0, 1.2,133,110.83333333333334 --Infinity,1,a-sust-i4,2019-20,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,1492,Infinity --Infinity,1,a-sust-i4,2019-20,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity +NA,NA,a-sust-i4,2019-20,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,1492,Infinity +NA,NA,a-sust-i4,2019-20,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity 7.63076923076923,5,a-sust-i4,2019-20,Everett - Devens School,00930030, 0.2, .3, .6, .2, .0, .0, 1.3,60,46.15384615384615 6.244395604395604,5,a-sust-i4,2019-20,Everett - Everett High,00930505, 0.0, .0, .0, 9.1, .0, .0, 9.1,1997,219.45054945054946 6.025945945945946,5,a-sust-i4,2019-20,Everett - George Keverian School,00930028, 0.9, 1.6, 1.3, .0, .0, .0, 3.7,913,246.75675675675674 @@ -7880,7 +7880,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.418461538461538,5,a-sust-i4,2019-20,Everett - Madeline English School,00930018, 1.0, 1.5, 1.4, .0, .0, .0, 3.9,771,197.6923076923077 5.5775,5,a-sust-i4,2019-20,Everett - Parlin School,00930058, 1.0, 1.1, 1.1, .0, .0, .0, 3.2,969,302.8125 5.945600000000001,5,a-sust-i4,2019-20,Everett - Sumner G. Whittier School,00930010, 0.6, 1.1, .8, .0, .0, .0, 2.5,642,256.8 --Infinity,1,a-sust-i4,2019-20,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,211,Infinity +NA,NA,a-sust-i4,2019-20,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,211,Infinity 6.048,5,a-sust-i4,2019-20,Everett - Webster School,00930015, 0.8, .7, .0, .0, .0, .0, 1.5,366,244.0 6.142372881355932,5,a-sust-i4,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.0, 2.9, .0, 2.1, .0, 5.9,1370,232.20338983050846 6.349473684210527,5,a-sust-i4,2019-20,Fairhaven - East Fairhaven,00940010, 0.4, 1.4, .0, .0, .0, .0, 1.9,392,206.31578947368422 @@ -7914,7 +7914,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.714782608695652,5,a-sust-i4,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, .5, 1.8, .0, .0, .0, 2.3,657,285.6521739130435 5.404,5,a-sust-i4,2019-20,Fitchburg - Crocker Elementary,00970016, 1.2, .8, .0, .0, .0, .0, 2.0,649,324.5 6.006530612244898,5,a-sust-i4,2019-20,Fitchburg - Fitchburg High,00970505, 0.0, .0, .0, 4.9, .0, .0, 4.9,1221,249.18367346938774 --Infinity,1,a-sust-i4,2019-20,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity +NA,NA,a-sust-i4,2019-20,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity 6.897600000000001,5,a-sust-i4,2019-20,Fitchburg - McKay Arts Academy,00970340, 1.0, 1.5, 2.5, .0, .0, .0, 5.0,689,137.8 6.413714285714287,5,a-sust-i4,2019-20,Fitchburg - Memorial Middle School,00970048, 0.0, .9, 2.6, .0, .0, .0, 3.5,694,198.28571428571428 5.48,5,a-sust-i4,2019-20,Fitchburg - Reingold Elementary,00970043, 1.2, .8, .0, .0, .0, .0, 2.0,630,315.0 @@ -7944,7 +7944,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.586666666666668,1,a-sust-i4,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .3, .0, .0, 0.3,397,1323.3333333333335 6.472,5,a-sust-i4,2019-20,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 2.0, .0, .0, .0, 2.0,382,191.0 5.982222222222223,5,a-sust-i4,2019-20,Franklin - Davis Thayer,01010035, 0.5, .4, .0, .0, .0, .0, 0.9,227,252.22222222222223 --Infinity,1,a-sust-i4,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,111,Infinity +NA,NA,a-sust-i4,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,111,Infinity 6.691588785046729,5,a-sust-i4,2019-20,Franklin - Franklin High,01010505, 0.0, .0, .0, 10.4, .0, .3, 10.7,1750,163.5514018691589 6.27,5,a-sust-i4,2019-20,Franklin - Helen Keller Elementary,01010012, 0.8, .9, .0, .0, .0, .0, 1.6,346,216.25 6.2,5,a-sust-i4,2019-20,Franklin - Horace Mann,01010405, 0.0, .0, 2.0, .0, .0, .0, 2.0,450,225.0 @@ -7972,7 +7972,7 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.110588235294117,5,a-sust-i4,2019-20,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 3.4, .0, .0, 3.4,378,111.17647058823529 6.773333333333333,5,a-sust-i4,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, .0, 1.2, .0, .0, .0, 1.2,184,153.33333333333334 5.863703703703704,5,a-sust-i4,2019-20,Georgetown - Penn Brook,01050010, 1.2, 1.1, .5, .0, .0, .0, 2.7,721,267.037037037037 --Infinity,1,a-sust-i4,2019-20,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity +NA,NA,a-sust-i4,2019-20,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity 5.76,5,a-sust-i4,2019-20,Gill-Montague - Gill Elementary,06740005, 0.2, .2, .1, .0, .0, .0, 0.5,140,280.0 7.1854545454545455,5,a-sust-i4,2019-20,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 2.2, .0, .0, .0, 2.2,224,101.81818181818181 5.96,5,a-sust-i4,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,153,255.0 @@ -7982,12 +7982,12 @@ NaN,NaN,a-sust-i4,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.684,5,a-sust-i4,2019-20,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,329,164.5 6.653333333333333,5,a-sust-i4,2019-20,Gloucester - East Gloucester Elementary,01070020, 0.0, .0, .0, .0, .0, 1.2, 1.2,202,168.33333333333334 6.771199999999999,5,a-sust-i4,2019-20,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .4, 4.6, .0, 5.0,768,153.6 --Infinity,1,a-sust-i4,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity +NA,NA,a-sust-i4,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity 6.501818181818182,5,a-sust-i4,2019-20,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.1, 1.1,206,187.27272727272725 6.686,5,a-sust-i4,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 4.0, .0, .0, .0, 4.0,657,164.25 6.695384615384615,5,a-sust-i4,2019-20,Gloucester - Veterans Memorial,01070045, 0.0, .0, .0, .0, .0, 1.3, 1.3,212,163.07692307692307 6.556,5,a-sust-i4,2019-20,Gloucester - West Parish,01070050, 0.0, .0, .0, .0, .0, 2.0, 2.0,361,180.5 -NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN +NA,NA,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN 5.508571428571428,5,a-sust-i4,2019-20,Grafton - Grafton High School,01100505, 0.0, .0, .0, 1.1, 1.0, .7, 2.8,872,311.42857142857144 4.466666666666666,4.47,a-sust-i4,2019-20,Grafton - Grafton Middle,01100305, 0.0, .0, 1.2, .0, .0, .0, 1.2,530,441.6666666666667 6.349090909090909,5,a-sust-i4,2019-20,Grafton - Millbury Street Elementary School,01100200, 0.6, 1.9, .8, .0, .0, .0, 3.3,681,206.36363636363637 @@ -7999,7 +7999,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -14.928,1,a-sust-i4,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .5, .0, .0, 0.5,1433,2866.0 -4.728,1,a-sust-i4,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, 1.0, .0, .0, 1.0,1591,1591.0 -52.56,1,a-sust-i4,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2271,7570.0 --Infinity,1,a-sust-i4,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2124,Infinity +NA,NA,a-sust-i4,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2124,Infinity 6.145454545454546,5,a-sust-i4,2019-20,Greenfield - Discovery School at Four Corners,01140025, 0.7, .3, .0, .0, .1, .0, 1.1,255,231.8181818181818 6.736,5,a-sust-i4,2019-20,Greenfield - Federal Street School,01140010, 0.8, .6, .0, .0, .1, .0, 1.5,237,158.0 6.6171428571428565,5,a-sust-i4,2019-20,Greenfield - Greenfield High,01140505, 0.0, .0, .5, 1.7, .6, .0, 2.8,484,172.85714285714286 @@ -8007,7 +8007,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.72,5,a-sust-i4,2019-20,Greenfield - Newton School,01140035, 1.0, .5, .0, .0, .0, .0, 1.5,240,160.0 5.58,5,a-sust-i4,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.4, .0, .0, .0, .0, .0, 0.4,121,302.5 4.685,4.69,a-sust-i4,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.4, .4, .4, .0, .3, .0, 1.6,663,414.375 --Infinity,1,a-sust-i4,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity +NA,NA,a-sust-i4,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity 5.888,5,a-sust-i4,2019-20,Groton-Dunstable - Florence Roche School,06730010, 1.2, .8, .0, .0, .0, .0, 2.0,528,264.0 6.066666666666667,5,a-sust-i4,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.0, .0, 3.0,725,241.66666666666666 6.792,5,a-sust-i4,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.4, 3.6, .0, .0, .0, 5.0,755,151.0 @@ -8041,16 +8041,16 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.92,5,a-sust-i4,2019-20,Haverhill - Bradford Elementary,01280008, 1.4, .6, .0, .0, .0, .0, 2.0,520,260.0 4.898666666666666,4.9,a-sust-i4,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 1.0, .9, 1.2, .0, .0, .0, 3.0,1163,387.6666666666667 5.004,5,a-sust-i4,2019-20,Haverhill - Consentino Middle School,01280100, 0.0, .3, 1.7, .0, .0, .0, 2.0,749,374.5 --Infinity,1,a-sust-i4,2019-20,Haverhill - Crowell,01280515, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity +NA,NA,a-sust-i4,2019-20,Haverhill - Crowell,01280515, 0.0, .0, .0, .0, .0, .0, 0.0,24,Infinity 5.68,5,a-sust-i4,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.0, .6, 1.4, .0, .1, .0, 2.0,580,290.0 5.896,5,a-sust-i4,2019-20,Haverhill - Golden Hill,01280026, 1.1, .9, .0, .0, .0, .0, 2.0,526,263.0 7.38,5,a-sust-i4,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, .0, .0, .2, .2, .0, 0.4,31,77.5 6.275764705882353,5,a-sust-i4,2019-20,Haverhill - Haverhill High,01280505, 0.0, .0, .0, .4, 8.1, .0, 8.5,1832,215.52941176470588 3.896,3.9,a-sust-i4,2019-20,Haverhill - John G Whittier,01280085, 0.0, .2, .8, .0, .0, .0, 1.0,513,513.0 --Infinity,1,a-sust-i4,2019-20,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,207,Infinity +NA,NA,a-sust-i4,2019-20,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,207,Infinity 5.573333333333334,5,a-sust-i4,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 1.0, .8, .0, .0, .0, .0, 1.8,546,303.3333333333333 5.826086956521739,5,a-sust-i4,2019-20,Haverhill - Silver Hill Elementary School,01280067, 0.8, 1.2, .0, .0, .0, .3, 2.3,625,271.7391304347826 --Infinity,1,a-sust-i4,2019-20,Haverhill - TEACH,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity +NA,NA,a-sust-i4,2019-20,Haverhill - TEACH,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity 6.364,5,a-sust-i4,2019-20,Haverhill - Tilton,01280075, 1.5, .5, .0, .0, .0, .0, 2.0,409,204.5 6.984615384615385,5,a-sust-i4,2019-20,Haverhill - Tilton Upper Middle School,01280105, 0.0, .8, .2, .0, .0, .3, 1.3,165,126.92307692307692 2.24,2.24,a-sust-i4,2019-20,Haverhill - Walnut Square,01280080, 0.2, .0, .0, .0, .0, .0, 0.2,144,720.0 @@ -8074,27 +8074,27 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.502857142857144,5,a-sust-i4,2019-20,Holyoke - E N White Elementary,01370045, 0.8, .6, .0, .0, .0, .0, 1.4,437,312.14285714285717 6.981052631578947,5,a-sust-i4,2019-20,Holyoke - H.B. Lawrence School,01370070, 1.4, .5, .0, .0, .0, .0, 1.9,242,127.36842105263159 5.5728,5,a-sust-i4,2019-20,Holyoke - Holyoke High,01370505, 0.0, .0, .0, 5.0, .0, .0, 5.0,1517,303.4 --Infinity,1,a-sust-i4,2019-20,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .0, .0, .0, .0, 0.0,221,Infinity +NA,NA,a-sust-i4,2019-20,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .0, .0, .0, .0, 0.0,221,Infinity 5.824,5,a-sust-i4,2019-20,Holyoke - Joseph Metcalf School,01370003, 0.7, .3, .0, .0, .0, .0, 1.0,272,272.0 6.376,5,a-sust-i4,2019-20,Holyoke - Kelly Elementary,01370040, 0.8, .7, .5, .0, .0, .0, 2.0,406,203.0 3.936,3.94,a-sust-i4,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.3, .5, .3, .0, .0, .0, 1.0,508,508.0 6.356,5,a-sust-i4,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.7, .7, .6, .0, .0, .0, 2.0,411,205.5 6.316521739130435,5,a-sust-i4,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 0.3, .2, .5, .0, 1.2, .0, 2.3,484,210.43478260869566 --Infinity,1,a-sust-i4,2019-20,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,362,Infinity +NA,NA,a-sust-i4,2019-20,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,362,Infinity 6.168,5,a-sust-i4,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, .4, .6, .0, .0, .0, 1.0,229,229.0 6.956,5,a-sust-i4,2019-20,Holyoke - William R. Peck School,01370030, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,261,130.5 --Infinity,1,a-sust-i4,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,701,Infinity +NA,NA,a-sust-i4,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,701,Infinity 6.370526315789474,5,a-sust-i4,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.4, .5, .0, .0, .0, .0, 1.9,387,203.6842105263158 6.564210526315789,5,a-sust-i4,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, .0, .3, .6, .9, .0, 1.9,341,179.47368421052633 6.8,5,a-sust-i4,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 1.3, 1.2, .0, .0, .0, 2.5,375,150.0 6.619259259259259,5,a-sust-i4,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, .9, 1.8, .0, .0, 2.7,466,172.59259259259258 6.019047619047619,5,a-sust-i4,2019-20,Hopedale - Memorial,01380010, 0.8, .9, .4, .0, .0, .0, 2.1,520,247.61904761904762 --Infinity,1,a-sust-i4,2019-20,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity +NA,NA,a-sust-i4,2019-20,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity 5.378823529411764,5,a-sust-i4,2019-20,Hopkinton - Elmwood,01390010, 0.8, .9, .0, .0, .0, .0, 1.7,557,327.64705882352945 6.296296296296297,5,a-sust-i4,2019-20,Hopkinton - Hopkins Elementary School,01390015, 0.0, 2.7, .0, .0, .0, .0, 2.7,575,212.96296296296296 6.072156862745098,5,a-sust-i4,2019-20,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 5.1, .0, .0, 5.1,1229,240.98039215686276 6.816551724137931,5,a-sust-i4,2019-20,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 5.8, .0, .0, .0, 5.8,858,147.93103448275863 --Infinity,1,a-sust-i4,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity +NA,NA,a-sust-i4,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,80,Infinity 5.497777777777777,5,a-sust-i4,2019-20,Hopkinton - Marathon Elementary School,01390005, 1.8, .0, .0, .0, .0, .0, 1.8,563,312.77777777777777 6.450909090909091,5,a-sust-i4,2019-20,Hudson - C A Farley,01410030, 1.1, 1.1, .0, .0, .0, .0, 2.2,426,193.63636363636363 6.914782608695652,5,a-sust-i4,2019-20,Hudson - David J. Quinn Middle School,01410410, 0.0, .9, 3.7, .0, .0, .0, 4.6,624,135.6521739130435 @@ -8124,17 +8124,17 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.704,3.7,a-sust-i4,2019-20,Lawrence - Frost Middle School,01490525, 0.0, .3, .8, .0, .0, .0, 1.0,537,537.0 6.621333333333333,5,a-sust-i4,2019-20,Lawrence - Gerard A. Guilmette,01490022, 1.5, 1.5, .0, .0, .0, .0, 3.0,517,172.33333333333334 7.2063999999999995,5,a-sust-i4,2019-20,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 4.0, .0, .0, .0, 5.0,496,99.2 --Infinity,1,a-sust-i4,2019-20,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,150,Infinity +NA,NA,a-sust-i4,2019-20,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,150,Infinity 6.716,5,a-sust-i4,2019-20,Lawrence - James F Hennessey,01490020, 2.0, .0, .0, .0, .0, .0, 2.0,321,160.5 4.411428571428571,4.41,a-sust-i4,2019-20,Lawrence - John Breen School,01490003, 0.7, .0, .0, .0, .0, .0, 0.7,314,448.5714285714286 6.796,5,a-sust-i4,2019-20,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,301,150.5 --Infinity,1,a-sust-i4,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity +NA,NA,a-sust-i4,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity 7.332,5,a-sust-i4,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 2.0, .0, .0, .0, .0, .0, 2.0,167,83.5 6.418571428571428,5,a-sust-i4,2019-20,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 13.3, 3.5, .0, 16.8,3321,197.67857142857142 6.072,5,a-sust-i4,2019-20,Lawrence - Oliver Partnership School,01490048, 0.8, 1.2, .0, .0, .0, .0, 2.0,482,241.0 5.624,5,a-sust-i4,2019-20,Lawrence - Parthum Middle School,01490027, 0.0, .5, 1.5, .0, .0, .0, 2.0,594,297.0 5.676,5,a-sust-i4,2019-20,Lawrence - Robert Frost,01490018, 1.2, .8, .0, .0, .0, .0, 2.0,581,290.5 --Infinity,1,a-sust-i4,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,209,Infinity +NA,NA,a-sust-i4,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,209,Infinity 7.6342857142857135,5,a-sust-i4,2019-20,Lawrence - School for Exceptional Studies,01490537, 0.5, .7, 1.5, .2, .0, .0, 2.8,128,45.714285714285715 5.06,5,a-sust-i4,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0.8, 1.2, .0, .0, .0, .0, 2.0,735,367.5 1.68,1.68,a-sust-i4,2019-20,Lawrence - Spark Academy,01490085, 0.0, .0, .6, .0, .0, .0, 0.6,474,790.0 @@ -8145,18 +8145,18 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.772173913043478,5,a-sust-i4,2019-20,Lee - Lee Middle/High School,01500505, 0.0, .0, .4, 1.1, .8, .0, 2.3,353,153.47826086956522 6.036,5,a-sust-i4,2019-20,Leicester - Leicester Elementary,01510005, 1.3, .7, .0, .0, .0, .0, 2.0,491,245.5 6.287272727272728,5,a-sust-i4,2019-20,Leicester - Leicester High,01510505, 0.0, .0, .0, .3, 1.9, .0, 2.2,471,214.09090909090907 --Infinity,1,a-sust-i4,2019-20,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity +NA,NA,a-sust-i4,2019-20,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity 6.136,5,a-sust-i4,2019-20,Leicester - Leicester Middle,01510015, 0.0, .0, 1.0, .0, 1.0, .0, 2.0,466,233.0 6.950857142857143,5,a-sust-i4,2019-20,Lenox - Lenox Memorial High,01520505, 0.0, .0, .5, 3.1, .0, .0, 3.5,459,131.14285714285714 6.591111111111111,5,a-sust-i4,2019-20,Lenox - Morris,01520015, 0.9, .9, .0, .0, .0, .0, 1.8,317,176.11111111111111 --Infinity,1,a-sust-i4,2019-20,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,113,Infinity --Infinity,1,a-sust-i4,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,722,Infinity +NA,NA,a-sust-i4,2019-20,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,113,Infinity +NA,NA,a-sust-i4,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,722,Infinity 5.452,5,a-sust-i4,2019-20,Leominster - Fall Brook,01530007, 0.9, 1.1, .0, .0, .0, .0, 2.0,637,318.5 5.935238095238096,5,a-sust-i4,2019-20,Leominster - Frances Drake School,01530010, 1.0, 1.1, .0, .0, .0, .0, 2.1,542,258.0952380952381 5.332,5,a-sust-i4,2019-20,Leominster - Johnny Appleseed,01530025, 1.0, 1.0, .0, .0, .0, .0, 2.0,667,333.5 --Infinity,1,a-sust-i4,2019-20,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,43,Infinity +NA,NA,a-sust-i4,2019-20,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,43,Infinity 6.321509433962264,5,a-sust-i4,2019-20,Leominster - Leominster High School,01530505, 0.0, .0, .0, 5.3, .0, .0, 5.3,1112,209.811320754717 --Infinity,1,a-sust-i4,2019-20,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,37,Infinity +NA,NA,a-sust-i4,2019-20,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,37,Infinity 5.284,5,a-sust-i4,2019-20,Leominster - Northwest,01530030, 0.9, 1.1, .0, .0, .0, .0, 2.0,679,339.5 7.08,5,a-sust-i4,2019-20,Leominster - Priest Street,01530040, 1.0, .0, .0, .0, .0, .0, 1.0,115,115.0 5.94,5,a-sust-i4,2019-20,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,515,257.5 @@ -8168,7 +8168,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.953333333333333,5,a-sust-i4,2019-20,Lexington - Harrington,01550030, 2.0, 1.6, .0, .0, .0, .0, 3.6,471,130.83333333333334 6.971111111111111,5,a-sust-i4,2019-20,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 7.2, .0, .0, .0, 7.2,926,128.61111111111111 6.469333333333333,5,a-sust-i4,2019-20,Lexington - Joseph Estabrook,01550010, 1.2, 1.8, .0, .0, .0, .0, 3.0,574,191.33333333333334 --Infinity,1,a-sust-i4,2019-20,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,68,Infinity +NA,NA,a-sust-i4,2019-20,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,68,Infinity 6.661764705882353,5,a-sust-i4,2019-20,Lexington - Lexington High,01550505, 0.0, .0, .0, 13.6, .0, .0, 13.6,2275,167.27941176470588 6.6016,5,a-sust-i4,2019-20,Lexington - Maria Hastings,01550035, 0.8, 1.7, .0, .0, .0, .0, 2.5,437,174.8 7.086582278481012,5,a-sust-i4,2019-20,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 7.9, .0, .0, .0, 7.9,902,114.17721518987341 @@ -8221,7 +8221,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.421818181818182,5,a-sust-i4,2019-20,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 4.4, .0, .0, 4.4,868,197.27272727272725 6.56,5,a-sust-i4,2019-20,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 3.4, .0, .0, .0, 3.4,612,180.0 6.656,5,a-sust-i4,2019-20,Ludlow - Veterans Park Elementary,01610023, 0.0, 2.0, .0, .0, .0, .0, 2.0,336,168.0 --Infinity,1,a-sust-i4,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity +NA,NA,a-sust-i4,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity 5.9911111111111115,5,a-sust-i4,2019-20,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .3, 1.5, .0, 1.8,452,251.11111111111111 6.376,5,a-sust-i4,2019-20,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.0, .0, .0, .0, 2.0,406,203.0 4.664,4.66,a-sust-i4,2019-20,Lunenburg - Lunenburg Primary School,01620010, 0.0, .0, .0, .0, 1.0, .0, 1.0,417,417.0 @@ -8235,7 +8235,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.96,5,a-sust-i4,2019-20,Lynn - Cobbet Elementary,01630035, 1.1, 1.2, .0, .0, .0, .0, 2.4,612,255.0 5.534545454545455,5,a-sust-i4,2019-20,Lynn - E J Harrington,01630045, 1.3, 1.0, .0, .0, .0, .0, 2.2,678,308.18181818181813 5.88235294117647,5,a-sust-i4,2019-20,Lynn - Edward A Sisson,01630095, 0.8, .9, .0, .0, .0, .0, 1.7,450,264.70588235294116 --Infinity,1,a-sust-i4,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity +NA,NA,a-sust-i4,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity 5.781052631578946,5,a-sust-i4,2019-20,Lynn - Hood,01630055, 0.9, .9, .0, .0, .0, .0, 1.9,527,277.3684210526316 5.631304347826087,5,a-sust-i4,2019-20,Lynn - Ingalls,01630060, 1.2, 1.1, .0, .0, .0, .0, 2.3,681,296.0869565217391 6.173333333333334,5,a-sust-i4,2019-20,Lynn - Julia F Callahan,01630030, 0.9, .9, .0, .0, .0, .0, 1.8,411,228.33333333333331 @@ -8254,15 +8254,15 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.152,5,a-sust-i4,2019-20,Lynnfield - Huckleberry Hill,01640010, 1.2, .8, .0, .0, .0, .0, 2.0,462,231.0 6.691891891891892,5,a-sust-i4,2019-20,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, 3.7, .0, .0, 3.7,605,163.51351351351352 5.252,5,a-sust-i4,2019-20,Lynnfield - Lynnfield Middle School,01640405, 0.0, .5, 1.5, .0, .0, .0, 2.0,687,343.5 --Infinity,1,a-sust-i4,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,40,Infinity +NA,NA,a-sust-i4,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,40,Infinity 6.368,5,a-sust-i4,2019-20,Lynnfield - Summer Street,01640020, 1.3, .7, .0, .0, .0, .0, 2.0,408,204.0 5.554,5,a-sust-i4,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, .0, .0, 1.0, 3.0, .0, 4.0,1223,305.75 --Infinity,1,a-sust-i4,2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity +NA,NA,a-sust-i4,2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity 5.110399999999999,5,a-sust-i4,2019-20,Malden - Beebe,01650003, 1.3, 1.1, .2, .0, .0, .0, 2.5,903,361.2 5.881142857142857,5,a-sust-i4,2019-20,Malden - Ferryway,01650013, 1.2, 1.2, 1.1, .0, .0, .0, 3.5,927,264.85714285714283 6.1792,5,a-sust-i4,2019-20,Malden - Forestdale,01650027, 0.7, .8, 1.0, .0, .0, .0, 2.5,569,227.6 5.260800000000001,5,a-sust-i4,2019-20,Malden - Linden,01650047, 0.6, .8, 1.1, .0, .0, .0, 2.5,856,342.4 --Infinity,1,a-sust-i4,2019-20,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,330,Infinity +NA,NA,a-sust-i4,2019-20,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,330,Infinity 5.1632,5,a-sust-i4,2019-20,Malden - Malden High,01650505, 0.0, .0, .0, 5.0, .0, .0, 5.0,1773,354.6 6.2032,5,a-sust-i4,2019-20,Malden - Salemwood,01650057, 1.1, 1.9, 2.0, .0, .0, .0, 5.0,1123,224.6 6.6523076923076925,5,a-sust-i4,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0.7, .7, .0, .0, .0, .0, 1.3,219,168.46153846153845 @@ -8273,7 +8273,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.864,5,a-sust-i4,2019-20,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 6.0, .0, .0, .0, 6.0,852,142.0 6.514285714285714,5,a-sust-i4,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.2, .0, .0, .0, .0, 4.2,780,185.7142857142857 6.496969696969697,5,a-sust-i4,2019-20,Mansfield - Mansfield High,01670505, 0.0, .0, .0, 6.6, .0, .0, 6.6,1240,187.87878787878788 --Infinity,1,a-sust-i4,2019-20,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,111,Infinity +NA,NA,a-sust-i4,2019-20,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,111,Infinity 6.39,5,a-sust-i4,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, .0, .0, .8, .0, .0, 0.8,161,201.25 6.893333333333333,5,a-sust-i4,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.6, .0, .0, .0, .0, .0, 0.6,83,138.33333333333334 6.5371428571428565,5,a-sust-i4,2019-20,Marblehead - Glover,01680020, 1.6, .5, .0, .0, .0, .0, 2.1,384,182.85714285714286 @@ -8285,7 +8285,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.845333333333333,5,a-sust-i4,2019-20,Marion - Sippican,01690005, 0.9, 1.5, .6, .0, .0, .0, 3.0,433,144.33333333333334 6.8176000000000005,5,a-sust-i4,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 3.7, 6.3, .0, .0, .0, 10.0,1478,147.8 4.91047619047619,4.91,a-sust-i4,2019-20,Marlborough - Charles Jaworek School,01700030, 1.4, .8, .0, .0, .0, .0, 2.1,811,386.19047619047615 --Infinity,1,a-sust-i4,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity +NA,NA,a-sust-i4,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity 5.616842105263158,5,a-sust-i4,2019-20,Marlborough - Francis J Kane,01700008, 1.1, .8, .0, .0, .0, .0, 1.9,566,297.89473684210526 7.011764705882353,5,a-sust-i4,2019-20,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 8.5, .0, .0, 8.5,1050,123.52941176470588 5.292,5,a-sust-i4,2019-20,Marlborough - Richer,01700025, 1.2, .8, .0, .0, .0, .0, 2.0,677,338.5 @@ -8354,7 +8354,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.463333333333333,5,a-sust-i4,2019-20,Milford - Brookside,01850065, 2.4, .0, .0, .0, .0, .0, 2.4,461,192.08333333333334 6.4832,5,a-sust-i4,2019-20,Milford - Memorial,01850010, 2.5, .0, .0, .0, .0, .0, 2.5,474,189.6 5.798260869565217,5,a-sust-i4,2019-20,Milford - Milford High,01850505, 0.0, .0, .0, 4.5, .0, .1, 4.6,1266,275.21739130434787 --Infinity,1,a-sust-i4,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,182,Infinity +NA,NA,a-sust-i4,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,182,Infinity 6.517818181818182,5,a-sust-i4,2019-20,Milford - Stacy Middle,01850305, 0.0, .0, 5.5, .0, .0, .0, 5.5,1019,185.27272727272728 6.325,5,a-sust-i4,2019-20,Milford - Woodland,01850090, 0.0, 4.8, .0, .0, .0, .0, 4.8,1005,209.375 5.8,5,a-sust-i4,2019-20,Millbury - Elmwood Street,01860017, 1.5, .5, .0, .0, .0, .0, 2.0,550,275.0 @@ -8446,7 +8446,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.38,5,a-sust-i4,2019-20,New Bedford - Trinity Day Academy,02010510, 0.0, .5, .5, .2, .0, .0, 1.2,93,77.5 6.56,5,a-sust-i4,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, .0, .0, .7, .0, .0, 0.7,126,180.0 5.42,5,a-sust-i4,2019-20,New Bedford - William H Taylor,02010135, 0.4, .5, .0, .0, .0, .0, 0.8,258,322.5 --Infinity,1,a-sust-i4,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,602,Infinity +NA,NA,a-sust-i4,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,602,Infinity 6.84,5,a-sust-i4,2019-20,New Salem-Wendell - Swift River,07280015, 0.5, .4, .1, .0, .0, .0, 1.0,145,145.0 6.184615384615385,5,a-sust-i4,2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.3, .0, .0, .0, .0, 1.3,295,226.9230769230769 5.592380952380952,5,a-sust-i4,2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 1.6, .5, .0, .0, .0, .0, 2.1,632,300.95238095238096 @@ -8466,7 +8466,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.47578947368421,5,a-sust-i4,2019-20,Newton - Lincoln-Eliot,02070070, 1.0, 1.0, .0, .0, .0, .0, 1.9,362,190.5263157894737 6.216,5,a-sust-i4,2019-20,Newton - Mason-Rice,02070080, 0.9, 1.1, .0, .0, .0, .0, 2.0,446,223.0 6.512,5,a-sust-i4,2019-20,Newton - Memorial Spaulding,02070105, 0.9, 1.6, .0, .0, .0, .0, 2.5,465,186.0 --Infinity,1,a-sust-i4,2019-20,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,181,Infinity +NA,NA,a-sust-i4,2019-20,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,181,Infinity 6.0348235294117645,5,a-sust-i4,2019-20,Newton - Newton North High,02070505, 0.0, .0, .0, 8.5, .0, .0, 8.5,2088,245.64705882352942 5.991898734177215,5,a-sust-i4,2019-20,Newton - Newton South High,02070510, 0.0, .0, .0, 7.9, .0, .0, 7.9,1983,251.01265822784808 6.467878787878788,5,a-sust-i4,2019-20,Newton - Oak Hill Middle,02070320, 0.0, .0, 3.3, .0, .0, .0, 3.3,632,191.51515151515153 @@ -8476,7 +8476,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.264,5,a-sust-i4,2019-20,Newton - Zervas,02070130, 1.0, 1.0, .0, .0, .0, .0, 2.0,434,217.0 6.526896551724137,5,a-sust-i4,2019-20,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.1, .8, .0, .0, .0, 2.9,534,184.13793103448276 5.006666666666666,5,a-sust-i4,2019-20,Norfolk - H Olive Day,02080015, 1.2, .0, .0, .0, .0, .0, 1.2,449,374.1666666666667 --Infinity,1,a-sust-i4,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,551,Infinity +NA,NA,a-sust-i4,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,551,Infinity 7.2444444444444445,5,a-sust-i4,2019-20,North Adams - Brayton,02090035, 0.8, 1.2, .6, .0, .1, .0, 2.7,255,94.44444444444444 7.0048,5,a-sust-i4,2019-20,North Adams - Colegrove Park Elementary,02090008, 0.9, 1.2, .5, .0, .0, .0, 2.5,311,124.4 6.686060606060606,5,a-sust-i4,2019-20,North Adams - Drury High,02090505, 0.0, .0, .1, .9, 2.4, .0, 3.3,542,164.24242424242425 @@ -8494,7 +8494,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.064,5,a-sust-i4,2019-20,North Attleborough - Falls,02120010, 0.4, .6, .0, .0, .0, .0, 1.0,242,242.0 5.576,5,a-sust-i4,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.9, 1.1, .0, .0, .0, .0, 2.0,606,303.0 6.194285714285715,5,a-sust-i4,2019-20,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 4.9, .0, .0, 4.9,1106,225.7142857142857 --Infinity,1,a-sust-i4,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity +NA,NA,a-sust-i4,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity 5.066666666666666,5,a-sust-i4,2019-20,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, 3.0, .0, .0, .0, 3.0,1100,366.6666666666667 5.848,5,a-sust-i4,2019-20,North Attleborough - Roosevelt Avenue,02120015, 0.5, .5, .0, .0, .0, .0, 1.0,269,269.0 6.049230769230769,5,a-sust-i4,2019-20,North Brookfield - North Brookfield Elementary,02150015, 0.6, .5, .2, .0, .0, .0, 1.3,317,243.84615384615384 @@ -8504,7 +8504,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.605333333333333,5,a-sust-i4,2019-20,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.0, 2.0, .0, .0, .0, 3.0,523,174.33333333333334 6.766792452830188,5,a-sust-i4,2019-20,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .0, 5.3, .0, .0, 5.3,817,154.1509433962264 6.232,5,a-sust-i4,2019-20,North Middlesex - Spaulding Memorial,07350005, 1.2, .8, .0, .0, .0, .0, 2.0,442,221.0 --Infinity,1,a-sust-i4,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity +NA,NA,a-sust-i4,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,94,Infinity 5.832,5,a-sust-i4,2019-20,North Middlesex - Varnum Brook,07350035, 1.2, .8, .0, .0, .0, .0, 2.0,542,271.0 6.644,5,a-sust-i4,2019-20,North Reading - E Ethel Little School,02170003, 1.0, 1.0, .0, .0, .0, .0, 2.0,339,169.5 6.197333333333333,5,a-sust-i4,2019-20,North Reading - J Turner Hood,02170010, 0.8, .8, .0, .0, .0, .0, 1.5,338,225.33333333333334 @@ -8528,8 +8528,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.411851851851853,5,a-sust-i4,2019-20,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 2.7, .0, .0, 2.7,536,198.5185185185185 6.197333333333333,5,a-sust-i4,2019-20,Northbridge - Northbridge Middle,02140305, 0.0, .6, 2.4, .0, .0, .0, 3.0,676,225.33333333333334 6.292,5,a-sust-i4,2019-20,Northbridge - W Edward Balmer,02140001, 0.7, 1.3, .0, .0, .0, .0, 2.0,427,213.5 --Infinity,1,a-sust-i4,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1275,Infinity --Infinity,1,a-sust-i4,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,507,Infinity +NA,NA,a-sust-i4,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1275,Infinity +NA,NA,a-sust-i4,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,507,Infinity 4.44,4.44,a-sust-i4,2019-20,Norton - Henri A. Yelle,02180060, 0.0, .8, .0, .0, .0, .0, 0.8,356,445.0 4.356363636363636,4.36,a-sust-i4,2019-20,Norton - J C Solmonese,02180015, 0.9, .2, .0, .0, .0, .0, 1.1,501,455.45454545454544 5.582222222222223,5,a-sust-i4,2019-20,Norton - L G Nourse Elementary,02180010, 0.6, .2, .0, .0, .0, .0, 0.9,272,302.22222222222223 @@ -8544,18 +8544,18 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.615384615384615,5,a-sust-i4,2019-20,Norwood - Cornelius M Callahan,02200010, 0.4, .5, .0, .0, .0, .4, 1.3,225,173.07692307692307 6.690909090909091,5,a-sust-i4,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, .0, 4.4, .0, .0, .0, 4.4,720,163.63636363636363 6.785454545454546,5,a-sust-i4,2019-20,Norwood - F A Cleveland,02200015, 0.5, .8, .0, .0, .0, 1.0, 2.2,334,151.8181818181818 --Infinity,1,a-sust-i4,2019-20,Norwood - George F. Willett,02200075, 0.0, .0, .0, .0, .0, .0, 0.0,390,Infinity +NA,NA,a-sust-i4,2019-20,Norwood - George F. Willett,02200075, 0.0, .0, .0, .0, .0, .0, 0.0,390,Infinity 6.661333333333333,5,a-sust-i4,2019-20,Norwood - John P Oldham,02200020, 0.5, .4, .0, .0, .0, .6, 1.5,251,167.33333333333334 6.472307692307693,5,a-sust-i4,2019-20,Norwood - Norwood High,02200505, 0.0, .0, .0, 5.2, .0, .0, 5.2,993,190.96153846153845 6.864,5,a-sust-i4,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.8, .8, .4, .0, .5, .5, 3.0,426,142.0 --Infinity,1,a-sust-i4,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,556,Infinity +NA,NA,a-sust-i4,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,556,Infinity 5.7807407407407405,5,a-sust-i4,2019-20,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 1.5, 1.2, .0, 2.7,749,277.4074074074074 6.853333333333333,5,a-sust-i4,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 3.0, .0, .0, .0, 3.0,430,143.33333333333334 5.6,5,a-sust-i4,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.5, .4, .0, .0, .0, .0, 0.8,240,300.0 6.153846153846154,5,a-sust-i4,2019-20,Orange - Dexter Park,02230010, 0.0, .8, .6, .0, .0, .0, 1.3,300,230.76923076923077 6.128,5,a-sust-i4,2019-20,Orange - Fisher Hill,02230015, 1.0, .0, .0, .0, .0, .0, 1.0,234,234.0 6.874285714285714,5,a-sust-i4,2019-20,Orleans - Orleans Elementary,02240005, 0.6, .8, .0, .0, .0, .0, 1.4,197,140.71428571428572 --Infinity,1,a-sust-i4,2019-20,Oxford - ACE Program,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,8,Infinity +NA,NA,a-sust-i4,2019-20,Oxford - ACE Program,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,8,Infinity 5.4,5,a-sust-i4,2019-20,Oxford - Alfred M Chaffee,02260010, 0.8, .0, .0, .0, .0, .0, 0.8,260,325.0 5.473333333333333,5,a-sust-i4,2019-20,Oxford - Clara Barton,02260005, 0.4, .9, .0, .0, .0, .0, 1.2,379,315.83333333333337 6.4628571428571435,5,a-sust-i4,2019-20,Oxford - Oxford High,02260505, 0.0, .0, 1.1, 1.7, .0, .0, 2.8,538,192.14285714285717 @@ -8588,8 +8588,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.082580645161291,5,a-sust-i4,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, 3.1, .0, .0, 3.1,743,239.6774193548387 7.650666666666666,5,a-sust-i4,2019-20,Petersham - Petersham Center,02340005, 3.0, .0, .0, .0, .0, .0, 3.0,131,43.666666666666664 4.693333333333333,4.69,a-sust-i4,2019-20,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, .0, .0, .0, .3, .0, 0.3,124,413.33333333333337 --Infinity,1,a-sust-i4,2019-20,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,188,Infinity --Infinity,1,a-sust-i4,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,216,Infinity +NA,NA,a-sust-i4,2019-20,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,188,Infinity +NA,NA,a-sust-i4,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,216,Infinity 6.6502127659574475,5,a-sust-i4,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.0, 1.2, 1.5, .3, .8, .0, 4.7,793,168.72340425531914 6.2,5,a-sust-i4,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, .0, .4, .0, 1.2, .0, 1.6,360,225.0 6.364444444444445,5,a-sust-i4,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.3, .5, .1, .0, .0, .0, 0.9,184,204.44444444444443 @@ -8619,7 +8619,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.217142857142857,5,a-sust-i4,2019-20,Plymouth - Manomet Elementary,02390015, 1.0, 1.8, .0, .0, .0, .0, 2.8,274,97.85714285714286 6.694857142857143,5,a-sust-i4,2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 1.3, 2.1, .0, .0, .0, .0, 3.5,571,163.14285714285714 6.404615384615385,5,a-sust-i4,2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 5.2, .0, .0, .0, 5.2,1037,199.4230769230769 --Infinity,1,a-sust-i4,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,189,Infinity +NA,NA,a-sust-i4,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,189,Infinity 6.178909090909091,5,a-sust-i4,2019-20,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 5.5, .0, .0, 5.5,1252,227.63636363636363 6.288979591836735,5,a-sust-i4,2019-20,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 4.9, .0, .0, 4.9,1048,213.87755102040813 6.446666666666667,5,a-sust-i4,2019-20,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 3.6, .0, .0, .0, 3.6,699,194.16666666666666 @@ -8639,7 +8639,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.56,5,a-sust-i4,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, 1.0, .0, .0, .0, 1.0,180,180.0 6.332,5,a-sust-i4,2019-20,Quaboag Regional - Warren Elementary,07780005, 0.8, .8, .3, .0, .0, .0, 2.0,417,208.5 5.752,5,a-sust-i4,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.4, .4, .1, .0, .0, .0, 1.0,281,281.0 --Infinity,1,a-sust-i4,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity +NA,NA,a-sust-i4,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity 5.22,5,a-sust-i4,2019-20,Quincy - Atherton Hough,02430040, 0.3, .5, .0, .0, .0, .0, 0.8,278,347.5 6.1856,5,a-sust-i4,2019-20,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.5, .0, .0, .0, 2.5,567,226.8 5.152,5,a-sust-i4,2019-20,Quincy - Beechwood Knoll Elementary,02430020, 0.4, .6, .0, .0, .0, .0, 1.0,356,356.0 @@ -8704,7 +8704,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.2,5,a-sust-i4,2019-20,Salem - Carlton,02580015, 1.0, 1.6, .0, .0, .0, .0, 2.5,250,100.0 6.929600000000001,5,a-sust-i4,2019-20,Salem - Collins Middle,02580305, 0.0, .0, 5.0, .0, .0, .0, 5.0,669,133.8 6.88,5,a-sust-i4,2019-20,Salem - Horace Mann Laboratory,02580030, 0.9, 1.3, .0, .0, .0, .0, 2.2,308,140.0 --Infinity,1,a-sust-i4,2019-20,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity +NA,NA,a-sust-i4,2019-20,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity 5.44,5,a-sust-i4,2019-20,Salem - Salem Early Childhood,02580001, 0.3, .0, .0, .0, .0, .0, 0.3,96,320.0 6.662641509433962,5,a-sust-i4,2019-20,Salem - Salem High,02580505, 0.0, .0, .0, 5.3, .0, .0, 5.3,886,167.16981132075472 7.24,5,a-sust-i4,2019-20,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .2, .0, .0, 0.2,19,95.0 @@ -8736,16 +8736,16 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.673103448275862,5,a-sust-i4,2019-20,Sharon - Cottage Street,02660005, 0.8, 2.1, .0, .0, .0, .0, 2.9,481,165.86206896551724 6.48,5,a-sust-i4,2019-20,Sharon - East Elementary,02660010, 0.9, 1.9, .0, .0, .0, .0, 2.8,532,190.0 6.2208000000000006,5,a-sust-i4,2019-20,Sharon - Heights Elementary,02660015, 1.0, 1.5, .0, .0, .0, .0, 2.5,556,222.4 --Infinity,1,a-sust-i4,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.556129032258064,5,a-sust-i4,2019-20,Sharon - Sharon High,02660505, 0.0, .0, .0, .3, 5.9, .0, 6.2,1119,180.48387096774192 6.754285714285714,5,a-sust-i4,2019-20,Sharon - Sharon Middle,02660305, 0.0, .0, 5.6, .0, .0, .0, 5.6,872,155.71428571428572 --Infinity,1,a-sust-i4,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1265,Infinity +NA,NA,a-sust-i4,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1265,Infinity 6.164444444444444,5,a-sust-i4,2019-20,Sherborn - Pine Hill,02690010, 0.9, .9, .0, .0, .0, .0, 1.8,413,229.44444444444443 5.191111111111112,5,a-sust-i4,2019-20,Shrewsbury - Beal School,02710005, 0.9, .0, .0, .0, .0, .0, 0.9,316,351.1111111111111 6.070588235294117,5,a-sust-i4,2019-20,Shrewsbury - Calvin Coolidge,02710015, 0.8, .8, .0, .0, .0, .0, 1.7,410,241.1764705882353 5.766153846153846,5,a-sust-i4,2019-20,Shrewsbury - Floral Street School,02710020, 1.0, 1.7, .0, .0, .0, .0, 2.6,726,279.2307692307692 5.349333333333334,5,a-sust-i4,2019-20,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 3.0, .0, .0, .0, 3.0,994,331.3333333333333 --Infinity,1,a-sust-i4,2019-20,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,230,Infinity +NA,NA,a-sust-i4,2019-20,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,230,Infinity 5.946666666666666,5,a-sust-i4,2019-20,Shrewsbury - Sherwood Middle School,02710305, 0.0, 2.1, 1.8, .0, .0, .0, 3.9,1001,256.6666666666667 5.845714285714286,5,a-sust-i4,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, .0, .0, .1, 6.9, .0, 7.0,1885,269.2857142857143 5.988571428571428,5,a-sust-i4,2019-20,Shrewsbury - Spring Street,02710035, 0.8, .6, .0, .0, .0, .0, 1.4,352,251.42857142857144 @@ -8772,7 +8772,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.829333333333333,5,a-sust-i4,2019-20,Somerville - Winter Hill Community,02740120, 0.4, 1.2, 1.4, .0, .0, .0, 3.0,439,146.33333333333334 6.504,5,a-sust-i4,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0.0, .8, 2.3, .0, .0, .0, 3.0,561,187.0 6.324,5,a-sust-i4,2019-20,South Hadley - Mosier,02780020, 0.6, 1.4, .0, .0, .0, .0, 2.0,419,209.5 --Infinity,1,a-sust-i4,2019-20,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity +NA,NA,a-sust-i4,2019-20,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity 6.252307692307692,5,a-sust-i4,2019-20,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .4, 2.2, .0, 2.6,568,218.46153846153845 2.18909090909091,2.19,a-sust-i4,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, 1.1, .0, .0, 1.1,799,726.3636363636363 6.973333333333333,5,a-sust-i4,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 1.7, 2.1, 3.2, .8, .0, .0, 7.8,1001,128.33333333333334 @@ -8784,7 +8784,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.893333333333333,5,a-sust-i4,2019-20,Southborough - P Brent Trottier,02760305, 0.0, .0, 3.0, .0, .0, .0, 3.0,415,138.33333333333334 6.908,5,a-sust-i4,2019-20,Southbridge - Charlton Street,02770005, 0.4, 1.7, .0, .0, .0, .0, 2.0,273,136.5 6.544,5,a-sust-i4,2019-20,Southbridge - Eastford Road,02770010, 2.0, .0, .0, .0, .0, .0, 2.0,364,182.0 --Infinity,1,a-sust-i4,2019-20,Southbridge - Southbridge Academy,02770525, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +NA,NA,a-sust-i4,2019-20,Southbridge - Southbridge Academy,02770525, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity 6.281904761904761,5,a-sust-i4,2019-20,Southbridge - Southbridge High School,02770515, 0.0, .0, .0, 2.1, .0, .0, 2.1,451,214.76190476190476 6.012631578947368,5,a-sust-i4,2019-20,Southbridge - Southbridge Middle School,02770315, 0.0, .0, 1.9, .0, .0, .0, 1.9,472,248.42105263157896 6.736,5,a-sust-i4,2019-20,Southbridge - West Street,02770020, 0.6, 1.4, .0, .0, .0, .0, 2.0,316,158.0 @@ -8793,7 +8793,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.46,5,a-sust-i4,2019-20,Southern Berkshire - New Marlborough Central,07650018, 0.2, .2, .0, .0, .0, .0, 0.4,77,192.5 7.56,5,a-sust-i4,2019-20,Southern Berkshire - South Egremont,07650030, 0.2, .0, .0, .0, .0, .0, 0.2,11,55.0 7.028,5,a-sust-i4,2019-20,Southern Berkshire - Undermountain,07650035, 0.5, 1.5, .0, .0, .0, .0, 2.0,243,121.5 --Infinity,1,a-sust-i4,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1145,Infinity +NA,NA,a-sust-i4,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1145,Infinity 6.44,5,a-sust-i4,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.7, .7, .0, .0, .0, 2.4,468,195.0 6.873333333333333,5,a-sust-i4,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, 1.2, 3.6, .0, .0, 4.8,676,140.83333333333334 6.632,5,a-sust-i4,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, .0, .0, .0, .0, .0, 2.0,342,171.0 @@ -8810,14 +8810,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.527058823529412,5,a-sust-i4,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, 1.5, .0, .2, .0, 1.7,313,184.11764705882354 7.511111111111111,5,a-sust-i4,2019-20,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 2.6, .9, 1.3, .7, 5.4,330,61.11111111111111 6.64,5,a-sust-i4,2019-20,Springfield - Daniel B Brunton,02810035, 0.9, 1.5, .0, .0, .0, .0, 2.5,425,170.0 --Infinity,1,a-sust-i4,2019-20,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,169,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,169,Infinity 6.532631578947369,5,a-sust-i4,2019-20,Springfield - Edward P. Boland School,02810010, 1.5, 2.2, .0, .0, .0, .0, 3.8,697,183.42105263157896 6.7,5,a-sust-i4,2019-20,Springfield - Elias Brookings,02810030, 0.6, .9, .0, .0, .6, .0, 2.0,325,162.5 2.312,2.31,a-sust-i4,2019-20,Springfield - Forest Park Middle,02810325, 0.0, .0, 1.0, .0, .0, .0, 1.0,711,711.0 5.890909090909091,5,a-sust-i4,2019-20,Springfield - Frank H Freedman,02810075, 0.5, .6, .0, .0, .0, .0, 1.1,290,263.6363636363636 5.384,5,a-sust-i4,2019-20,Springfield - Frederick Harris,02810080, 0.7, 1.1, .0, .0, .3, .0, 2.0,654,327.0 --Infinity,1,a-sust-i4,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,32,Infinity --Infinity,1,a-sust-i4,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,32,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity 5.22,5,a-sust-i4,2019-20,Springfield - German Gerena Community School,02810195, 0.6, .9, .0, .0, .5, .0, 2.0,695,347.5 6.956,5,a-sust-i4,2019-20,Springfield - Glenwood,02810065, 0.7, 1.0, .0, .0, .3, .0, 2.0,261,130.5 3.76,3.76,a-sust-i4,2019-20,Springfield - Glickman Elementary,02810068, 0.2, .2, .0, .0, .2, .0, 0.6,318,530.0 @@ -8830,17 +8830,17 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.732631578947369,4.73,a-sust-i4,2019-20,Springfield - John J Duggan Middle,02810320, 0.0, .0, 1.0, .6, .2, .0, 1.9,776,408.42105263157896 6.914285714285714,5,a-sust-i4,2019-20,Springfield - Kensington International School,02810110, 0.9, 1.2, .0, .0, .0, .0, 2.1,285,135.71428571428572 6.715294117647058,5,a-sust-i4,2019-20,Springfield - Liberty,02810115, 0.7, 1.0, .0, .0, .0, .0, 1.7,273,160.58823529411765 --Infinity,1,a-sust-i4,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,15,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,15,Infinity 6.666666666666666,5,a-sust-i4,2019-20,Springfield - Lincoln,02810120, 1.0, 1.4, .0, .0, .0, .0, 2.4,400,166.66666666666669 5.7446153846153845,5,a-sust-i4,2019-20,Springfield - M Marcus Kiley Middle,02810330, 0.0, .0, 2.6, .0, .0, .0, 2.6,733,281.9230769230769 --Infinity,1,a-sust-i4,2019-20,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,188,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,188,Infinity 5.312,5,a-sust-i4,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.4, .7, .0, .0, .0, .0, 1.0,336,336.0 6.682666666666667,5,a-sust-i4,2019-20,Springfield - Mary M Lynch,02810140, 0.6, .9, .0, .0, .0, .0, 1.5,247,164.66666666666666 6.896,5,a-sust-i4,2019-20,Springfield - Mary M Walsh,02810155, 0.6, 1.0, .0, .0, .4, .0, 2.0,276,138.0 6.108,5,a-sust-i4,2019-20,Springfield - Mary O Pottenger,02810145, 0.8, 1.2, .0, .0, .0, .0, 2.0,473,236.5 6.3264,5,a-sust-i4,2019-20,Springfield - Milton Bradley School,02810023, 1.0, 1.2, .0, .0, .3, .0, 2.5,523,209.2 6.728333333333333,5,a-sust-i4,2019-20,Springfield - Rebecca M Johnson,02810055, 2.5, 1.7, .0, .0, .5, .0, 4.8,763,158.95833333333334 --Infinity,1,a-sust-i4,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,307,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,307,Infinity 4.816,4.82,a-sust-i4,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, .0, .0, 2.8, .8, .0, 3.5,1393,398.0 6.904,5,a-sust-i4,2019-20,Springfield - STEM Middle Academy,02810350, 0.0, .0, 2.0, .0, .0, .0, 2.0,274,137.0 6.88,5,a-sust-i4,2019-20,Springfield - Samuel Bowles,02810020, 0.8, 1.2, .0, .0, .3, .0, 2.3,322,140.0 @@ -8851,9 +8851,9 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.333333333333333,5,a-sust-i4,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, .0, .0, .0, .3, .0, 0.3,25,83.33333333333334 3.92,3.92,a-sust-i4,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, .0, .0, .1, .0, .0, 0.1,51,510.0 7.768888888888888,5,a-sust-i4,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 0.0, .0, .0, .0, 1.8, .0, 1.8,52,28.88888888888889 --Infinity,1,a-sust-i4,2019-20,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity 7.624,5,a-sust-i4,2019-20,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, 1.0, .0, .0, .0, 1.0,47,47.0 --Infinity,1,a-sust-i4,2019-20,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity +NA,NA,a-sust-i4,2019-20,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity 6.585806451612903,5,a-sust-i4,2019-20,Springfield - Sumner Avenue,02810160, 1.2, 1.3, .0, .0, .7, .0, 3.1,548,176.7741935483871 5.92,5,a-sust-i4,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.2, 1.3, .0, .0, 2.5,650,260.0 6.923333333333333,5,a-sust-i4,2019-20,Springfield - Thomas M Balliet,02810015, 1.5, .9, .0, .0, .0, .0, 2.4,323,134.58333333333334 @@ -8868,7 +8868,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.329411764705882,5,a-sust-i4,2019-20,Stoneham - South,02840030, 1.1, .6, .0, .0, .0, .0, 1.7,355,208.82352941176472 6.096,5,a-sust-i4,2019-20,Stoneham - Stoneham Central Middle School,02840405, 0.0, .6, 2.5, .0, .0, .0, 3.0,714,238.0 6.71,5,a-sust-i4,2019-20,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 4.0, .0, 4.0,645,161.25 --Infinity,1,a-sust-i4,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 6.828235294117647,5,a-sust-i4,2019-20,Stoughton - Helen Hansen Elementary,02850010, 0.6, .6, .0, .0, .5, .0, 1.7,249,146.47058823529412 6.71304347826087,5,a-sust-i4,2019-20,Stoughton - Joseph H Gibbons,02850025, 0.9, .9, .0, .0, .5, .0, 2.3,370,160.8695652173913 6.80695652173913,5,a-sust-i4,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.9, .9, .0, .0, .5, .0, 2.3,343,149.13043478260872 @@ -8902,11 +8902,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.061818181818182896,1,a-sust-i4,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.2, .2, .8, 1.0, .0, .0, 2.2,2183,992.2727272727271 6.434666666666667,5,a-sust-i4,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,587,195.66666666666666 6.266666666666666,5,a-sust-i4,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, 3.3, .0, .0, 3.3,715,216.66666666666669 --Infinity,1,a-sust-i4,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,491,Infinity +NA,NA,a-sust-i4,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,491,Infinity 5.4688,5,a-sust-i4,2019-20,Taunton - Benjamin Friedman Middle,02930315, 0.0, .8, 1.7, .0, .0, .0, 2.5,791,316.4 5.152941176470589,5,a-sust-i4,2019-20,Taunton - East Taunton Elementary,02930010, 1.0, .7, .0, .0, .0, .0, 1.7,605,355.88235294117646 4.445714285714286,4.45,a-sust-i4,2019-20,Taunton - Edmund Hatch Bennett,02930007, 0.4, .3, .0, .0, .0, .0, 0.7,311,444.28571428571433 --Infinity,1,a-sust-i4,2019-20,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,278,Infinity +NA,NA,a-sust-i4,2019-20,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,278,Infinity 5.3082352941176465,5,a-sust-i4,2019-20,Taunton - Elizabeth Pole,02930027, 0.9, .8, .0, .0, .0, .0, 1.7,572,336.47058823529414 5.005714285714285,5,a-sust-i4,2019-20,Taunton - H H Galligan,02930057, 0.4, .3, .0, .0, .0, .0, 0.7,262,374.28571428571433 4.868571428571428,4.87,a-sust-i4,2019-20,Taunton - Hopewell,02930035, 0.4, .3, .0, .0, .0, .0, 0.7,274,391.42857142857144 @@ -8914,7 +8914,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.614117647058824,5,a-sust-i4,2019-20,Taunton - Joseph C Chamberlain,02930008, 1.0, .7, .0, .0, .0, .0, 1.7,507,298.2352941176471 5.551304347826086,5,a-sust-i4,2019-20,Taunton - Joseph H Martin,02930042, 0.0, .8, 1.5, .0, .0, .0, 2.3,704,306.0869565217392 3.96,3.96,a-sust-i4,2019-20,Taunton - Mulcahey Elementary School,02930015, 0.6, .4, .0, .0, .0, .0, 1.0,505,505.0 --Infinity,1,a-sust-i4,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity +NA,NA,a-sust-i4,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity 4.715076923076923,4.72,a-sust-i4,2019-20,Taunton - Taunton High,02930505, 0.0, .0, 2.1, 3.6, .8, .0, 6.5,2669,410.61538461538464 5.312,5,a-sust-i4,2019-20,Tewksbury - Heath-Brook,02950010, 1.0, .0, .0, .0, .0, .0, 1.0,336,336.0 5.956,5,a-sust-i4,2019-20,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,511,255.5 @@ -8940,8 +8940,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.156,5,a-sust-i4,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.6, .6, .8, .0, .0, .0, 2.0,711,355.5 7.73,5,a-sust-i4,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 0.2, .0, .0, .0, 1.4, .0, 1.6,54,33.75 7.284,5,a-sust-i4,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 0.7, .7, .7, .0, 2.0, .0, 4.0,358,89.5 --Infinity,1,a-sust-i4,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,706,Infinity --Infinity,1,a-sust-i4,2019-20,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,36,Infinity +NA,NA,a-sust-i4,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,706,Infinity +NA,NA,a-sust-i4,2019-20,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,36,Infinity 5.708,5,a-sust-i4,2019-20,Uxbridge - Taft Early Learning Center,03040005, 1.5, .5, .0, .0, .0, .0, 2.0,573,286.5 6.308571428571429,5,a-sust-i4,2019-20,Uxbridge - Uxbridge High,03040505, 0.0, .0, .6, 2.2, .0, .0, 2.8,592,211.42857142857144 6.621333333333333,5,a-sust-i4,2019-20,Uxbridge - Whitin Intermediate,03040405, 0.0, 1.4, 1.6, .0, .0, .0, 3.0,517,172.33333333333334 @@ -8950,7 +8950,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.893333333333333,5,a-sust-i4,2019-20,Wachusett - Chocksett Middle School,07750315, 0.0, .6, 1.8, .0, .0, .0, 2.4,332,138.33333333333334 6.104,5,a-sust-i4,2019-20,Wachusett - Davis Hill Elementary,07750018, 1.0, 1.0, .0, .0, .0, .0, 2.0,474,237.0 5.96,5,a-sust-i4,2019-20,Wachusett - Dawson,07750020, 1.0, 1.0, .0, .0, .0, .0, 2.0,510,255.0 --Infinity,1,a-sust-i4,2019-20,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity +NA,NA,a-sust-i4,2019-20,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity 6.205,5,a-sust-i4,2019-20,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.6, .0, .0, .0, .0, 1.6,359,224.375 6.584,5,a-sust-i4,2019-20,Wachusett - Houghton Elementary,07750027, 1.3, .7, .0, .0, .0, .0, 2.0,354,177.0 6.072,5,a-sust-i4,2019-20,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,482,241.0 @@ -8960,7 +8960,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8256000000000006,5,a-sust-i4,2019-20,Wachusett - Thomas Prince,07750045, 0.6, .8, 1.2, .0, .0, .0, 2.5,367,146.8 6.295833333333333,5,a-sust-i4,2019-20,Wachusett - Wachusett Regional High,07750505, 0.0, .0, .0, 6.2, 3.4, .0, 9.6,2045,213.02083333333334 5.52,5,a-sust-i4,2019-20,Wakefield - Dolbeare,03050005, 0.9, .6, .0, .0, .0, .0, 1.5,465,310.0 --Infinity,1,a-sust-i4,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity +NA,NA,a-sust-i4,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity 6.387692307692308,5,a-sust-i4,2019-20,Wakefield - Galvin Middle School,03050310, 0.0, 1.4, 3.8, .0, .0, .0, 5.2,1048,201.53846153846152 6.208,5,a-sust-i4,2019-20,Wakefield - Greenwood,03050020, 0.6, .4, .0, .0, .0, .0, 1.0,224,224.0 6.843529411764706,5,a-sust-i4,2019-20,Wakefield - Wakefield Memorial High,03050505, 0.0, .0, .0, 6.8, .0, .0, 6.8,983,144.55882352941177 @@ -8969,7 +8969,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.342857142857143,5,a-sust-i4,2019-20,Wales - Wales Elementary,03060005, 0.4, .2, .1, .0, .0, .0, 0.7,145,207.14285714285717 6.989714285714286,5,a-sust-i4,2019-20,Walpole - Bird Middle,03070305, 0.0, .0, 3.5, .0, .0, .0, 3.5,442,126.28571428571429 6.628,5,a-sust-i4,2019-20,Walpole - Boyden,03070010, 1.0, 1.0, .0, .0, .0, .0, 2.0,343,171.5 --Infinity,1,a-sust-i4,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity +NA,NA,a-sust-i4,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity 7.0125714285714285,5,a-sust-i4,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 3.5, .0, .0, .0, 3.5,432,123.42857142857143 6.324,5,a-sust-i4,2019-20,Walpole - Elm Street School,03070005, 0.9, 1.1, .0, .0, .0, .0, 2.0,419,209.5 6.232,5,a-sust-i4,2019-20,Walpole - Fisher,03070015, 1.0, 1.0, .0, .0, .0, .0, 2.0,442,221.0 @@ -8990,7 +8990,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.787368421052632,5,a-sust-i4,2019-20,Ware - Ware Middle School,03090305, 0.0, 1.3, .6, .0, .0, .0, 1.9,288,151.57894736842107 6.32,5,a-sust-i4,2019-20,Wareham - John William Decas,03100003, 3.0, .0, .0, .0, .0, .0, 3.0,630,210.0 6.769523809523809,5,a-sust-i4,2019-20,Wareham - Minot Forest,03100017, 0.0, 2.1, .0, .0, .0, .0, 2.1,323,153.8095238095238 --Infinity,1,a-sust-i4,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity +NA,NA,a-sust-i4,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity 6.3264,5,a-sust-i4,2019-20,Wareham - Wareham Middle,03100305, 0.0, .6, 1.4, .0, .4, .0, 2.5,523,209.2 6.742564102564103,5,a-sust-i4,2019-20,Wareham - Wareham Senior High,03100505, 0.0, .0, .5, 1.4, .0, 2.0, 3.9,613,157.17948717948718 6.455,5,a-sust-i4,2019-20,Watertown - Cunniff,03140015, 0.9, .7, .0, .0, .0, .0, 1.6,309,193.125 @@ -9011,7 +9011,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.5371428571428565,5,a-sust-i4,2019-20,Wellesley - John D Hardy,03170020, 0.6, .8, .0, .0, .0, .0, 1.4,256,182.85714285714286 6.82,5,a-sust-i4,2019-20,Wellesley - Joseph E Fiske,03170015, 1.0, 1.0, .0, .0, .0, .0, 2.0,295,147.5 6.66,5,a-sust-i4,2019-20,Wellesley - Katharine Lee Bates,03170005, 1.0, 1.0, .0, .0, .0, .0, 2.0,335,167.5 --Infinity,1,a-sust-i4,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity +NA,NA,a-sust-i4,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity 6.504,5,a-sust-i4,2019-20,Wellesley - Schofield,03170045, 1.0, 1.0, .0, .0, .0, .0, 2.0,374,187.0 6.58,5,a-sust-i4,2019-20,Wellesley - Sprague Elementary School,03170048, 1.0, 1.0, .0, .0, .0, .0, 2.0,355,177.5 6.997849462365592,5,a-sust-i4,2019-20,Wellesley - Wellesley Middle,03170305, 0.0, .0, 8.9, .0, .0, .4, 9.3,1165,125.26881720430107 @@ -9023,7 +9023,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.04,4.04,a-sust-i4,2019-20,West Bridgewater - Rose L Macdonald,03230003, 0.4, .2, .0, .0, .0, .0, 0.6,297,495.0 5.893333333333333,5,a-sust-i4,2019-20,West Bridgewater - Spring Street School,03230005, 0.6, .0, .0, .0, .0, .0, 0.6,158,263.33333333333337 6.798095238095239,5,a-sust-i4,2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, .0, .8, 3.4, .0, .0, 4.2,631,150.23809523809524 --Infinity,1,a-sust-i4,2019-20,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,124,Infinity +NA,NA,a-sust-i4,2019-20,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,124,Infinity 5.337142857142857,5,a-sust-i4,2019-20,West Springfield - John Ashley,03320005, 0.7, .0, .0, .0, .0, .0, 0.7,233,332.8571428571429 5.6171428571428565,5,a-sust-i4,2019-20,West Springfield - John R Fausey,03320010, 0.4, 1.0, .0, .0, .0, .0, 1.4,417,297.8571428571429 6.106666666666667,5,a-sust-i4,2019-20,West Springfield - Memorial,03320025, 0.3, .6, .0, .0, .0, .0, 0.9,213,236.66666666666666 @@ -9039,7 +9039,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.825454545454546,5,a-sust-i4,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 3.7, .0, .8, .0, 4.4,646,146.8181818181818 6.235384615384615,5,a-sust-i4,2019-20,Westborough - Westborough High,03210505, 0.0, .0, .0, .9, 4.2, .0, 5.2,1147,220.57692307692307 6.151111111111112,5,a-sust-i4,2019-20,Westfield - Abner Gibbs,03250020, 0.5, .3, .0, .0, .2, .0, 0.9,208,231.11111111111111 --Infinity,1,a-sust-i4,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,171,Infinity +NA,NA,a-sust-i4,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,171,Infinity 6.16,5,a-sust-i4,2019-20,Westfield - Franklin Ave,03250015, 0.4, .3, .0, .0, .2, .0, 0.9,207,230.0 6.532,5,a-sust-i4,2019-20,Westfield - Highland,03250025, 1.1, .7, .0, .0, .2, .0, 2.0,367,183.5 6.010666666666667,5,a-sust-i4,2019-20,Westfield - Munger Hill,03250033, 0.8, .5, .0, .0, .2, .0, 1.5,373,248.66666666666666 @@ -9054,7 +9054,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.808,5,a-sust-i4,2019-20,Westford - Col John Robinson,03260025, 1.0, .0, .0, .0, .0, .0, 1.0,274,274.0 6.376470588235294,5,a-sust-i4,2019-20,Westford - Day Elementary,03260007, 0.0, 1.7, .0, .0, .0, .0, 1.7,345,202.94117647058823 6.584,5,a-sust-i4,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 2.0, .0, .0, .0, .0, 2.0,354,177.0 --Infinity,1,a-sust-i4,2019-20,Westford - Millennium Elementary,03260013, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity +NA,NA,a-sust-i4,2019-20,Westford - Millennium Elementary,03260013, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity 5.806666666666666,5,a-sust-i4,2019-20,Westford - Nabnasset,03260015, 1.2, .0, .0, .0, .0, .0, 1.2,329,274.1666666666667 5.809230769230769,5,a-sust-i4,2019-20,Westford - Rita E. Miller Elementary School,03260055, 1.3, .0, .0, .0, .0, .0, 1.3,356,273.8461538461538 6.394666666666667,5,a-sust-i4,2019-20,Westford - Stony Brook School,03260330, 0.0, .0, 3.0, .0, .0, .0, 3.0,602,200.66666666666666 @@ -9074,12 +9074,12 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.975238095238096,5,a-sust-i4,2019-20,Westwood - Martha Jones,03350017, 0.7, 1.4, .0, .0, .0, .0, 2.1,269,128.0952380952381 6.885333333333333,5,a-sust-i4,2019-20,Westwood - Paul Hanlon,03350015, 0.6, .8, .0, .0, .0, .0, 1.5,209,139.33333333333334 6.847536231884058,5,a-sust-i4,2019-20,Westwood - Westwood High,03350505, 0.0, .0, .0, 6.9, .0, .0, 6.9,994,144.05797101449275 --Infinity,1,a-sust-i4,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,40,Infinity +NA,NA,a-sust-i4,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,40,Infinity 6.921739130434782,5,a-sust-i4,2019-20,Westwood - William E Sheehan,03350025, 0.8, 1.5, .0, .0, .0, .0, 2.3,310,134.7826086956522 6.814666666666667,5,a-sust-i4,2019-20,Weymouth - Abigail Adams Middle School,03360310, 0.0, 3.0, 3.0, .0, .0, .0, 6.0,889,148.16666666666666 3.8666666666666663,3.87,a-sust-i4,2019-20,Weymouth - Academy Avenue,03360005, 0.3, .3, .0, .0, .0, .0, 0.6,310,516.6666666666667 6.384,5,a-sust-i4,2019-20,Weymouth - Frederick C Murphy,03360050, 0.5, .5, .0, .0, .0, .0, 1.0,202,202.0 --Infinity,1,a-sust-i4,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,199,Infinity +NA,NA,a-sust-i4,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,199,Infinity 6.408,5,a-sust-i4,2019-20,Weymouth - Lawrence W Pingree,03360065, 0.5, .5, .0, .0, .0, .0, 1.0,199,199.0 5.624,5,a-sust-i4,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, .0, 3.0, .0, .0, .0, 3.0,891,297.0 6.04,5,a-sust-i4,2019-20,Weymouth - Ralph Talbot,03360085, 0.5, .6, .0, .0, .0, .0, 1.0,245,245.0 @@ -9093,7 +9093,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.008,5,a-sust-i4,2019-20,Whitman-Hanson - Indian Head,07800035, 1.2, .8, .0, .0, .0, .0, 2.0,498,249.0 4.432,4.43,a-sust-i4,2019-20,Whitman-Hanson - John H Duval,07800030, 0.4, .6, .0, .0, .0, .0, 1.0,446,446.0 5.988,5,a-sust-i4,2019-20,Whitman-Hanson - Louise A Conley,07800010, 0.9, 1.1, .0, .0, .0, .0, 2.0,503,251.5 --Infinity,1,a-sust-i4,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity +NA,NA,a-sust-i4,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity 4.8055172413793095,4.81,a-sust-i4,2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, .0, .0, .2, .7, 2.0, 2.9,1158,399.3103448275862 6.2844444444444445,5,a-sust-i4,2019-20,Whitman-Hanson - Whitman Middle,07800310, 0.0, .0, 2.7, .0, .0, .0, 2.7,579,214.44444444444443 -2.032,1,a-sust-i4,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, .0, .0, 1.0, .0, .0, 1.0,1254,1254.0 @@ -9107,11 +9107,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.441904761904762,5,a-sust-i4,2019-20,Wilmington - Wilmington Middle School,03420330, 0.0, .0, 4.2, .0, .0, .0, 4.2,818,194.76190476190476 6.436,5,a-sust-i4,2019-20,Wilmington - Woburn Street,03420020, 1.4, .6, .0, .0, .0, .0, 2.0,391,195.5 5.576,5,a-sust-i4,2019-20,Winchendon - Memorial,03430040, 1.0, .0, .0, .0, .0, .0, 1.0,303,303.0 --Infinity,1,a-sust-i4,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,34,Infinity +NA,NA,a-sust-i4,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,34,Infinity 6.956,5,a-sust-i4,2019-20,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .0, 2.0, .0, 2.0,261,130.5 5.88,5,a-sust-i4,2019-20,Winchendon - Murdock Middle School,03430315, 0.0, .0, 1.0, .0, .0, .0, 1.0,265,265.0 5.792,5,a-sust-i4,2019-20,Winchendon - Toy Town Elementary,03430050, 0.0, 1.0, .0, .0, .0, .0, 1.0,276,276.0 --Infinity,1,a-sust-i4,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity +NA,NA,a-sust-i4,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity 6.464,5,a-sust-i4,2019-20,Winchester - Ambrose Elementary,03440045, 0.7, 1.3, .0, .0, .0, .0, 2.0,384,192.0 6.32,5,a-sust-i4,2019-20,Winchester - Lincoln Elementary,03440005, 0.8, 1.2, .0, .0, .0, .0, 2.0,420,210.0 5.904,5,a-sust-i4,2019-20,Winchester - Lynch Elementary,03440020, 1.0, 1.1, .0, .0, .0, .0, 2.0,524,262.0 @@ -9182,7 +9182,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.31578947368421,5,a-sust-i4,2019-20,Wrentham - Charles E Roderick,03500010, 0.0, .6, .3, .0, 1.0, .0, 1.9,400,210.5263157894737 5.992727272727273,5,a-sust-i4,2019-20,Wrentham - Delaney,03500003, 1.6, .6, .0, .0, .0, .0, 2.2,552,250.90909090909088 6.64,5,a-sust-i4,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 1.5, 2.7, 2.8, .0, .0, 8.4,1428,170.0 --Infinity,1,a-sust-i4,2018-19,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity +NA,NA,a-sust-i4,2018-19,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity 5.923809523809524,5,a-sust-i4,2018-19,Abington - Abington High,00010505, 0.0, .0, .0, 2.1, .0, .0, 2.1,545,259.5238095238095 6.72,5,a-sust-i4,2018-19,Abington - Abington Middle School,00010405, 0.0, 1.3, 2.9, .0, .0, .0, 4.2,672,160.0 6.744827586206897,5,a-sust-i4,2018-19,Abington - Beaver Brook Elementary,00010020, 2.9, .0, .0, .0, .0, .0, 2.9,455,156.89655172413794 @@ -9191,7 +9191,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.466206896551725,5,a-sust-i4,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, 2.0, .5, 3.2, 5.8,1837,316.7241379310345 6.144,5,a-sust-i4,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 0.9, .8, .3, .0, .0, .0, 2.0,464,232.0 6.38,5,a-sust-i4,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.7, 1.0, .3, .0, .0, .0, 2.0,405,202.5 --Infinity,1,a-sust-i4,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity +NA,NA,a-sust-i4,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity 6.204,5,a-sust-i4,2018-19,Acton-Boxborough - Luther Conant School,06000030, 0.9, .7, .4, .0, .0, .0, 2.0,449,224.5 5.92,5,a-sust-i4,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0.8, .9, .2, .0, .0, .0, 2.0,520,260.0 6.032,5,a-sust-i4,2018-19,Acton-Boxborough - Merriam School,06000010, 0.8, .9, .3, .0, .0, .0, 2.0,492,246.0 @@ -9203,7 +9203,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.192941176470589,5,a-sust-i4,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, .0, .3, 1.3, .1, .0, 1.7,384,225.88235294117646 6.7136000000000005,5,a-sust-i4,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 1.6, .8, .0, .0, .0, 2.5,402,160.8 6.144761904761904,5,a-sust-i4,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 2.0, 2.2, .0, .0, 4.2,974,231.9047619047619 --Infinity,1,a-sust-i4,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,162,Infinity +NA,NA,a-sust-i4,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,162,Infinity 5.88,5,a-sust-i4,2018-19,Agawam - Agawam High,00050505, 0.0, .0, .0, 4.2, .0, .0, 4.2,1113,265.0 7.054399999999999,5,a-sust-i4,2018-19,Agawam - Agawam Junior High,00050405, 0.0, .0, 5.0, .0, .0, .0, 5.0,591,118.2 5.216,5,a-sust-i4,2018-19,Agawam - Benjamin J Phelps,00050020, 0.6, .4, .0, .0, .0, .0, 1.0,348,348.0 @@ -9228,7 +9228,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.526451612903226,5,a-sust-i4,2018-19,Andover - Doherty Middle,00090305, 0.0, .0, 3.1, .0, .0, .0, 3.1,571,184.19354838709677 5.952,5,a-sust-i4,2018-19,Andover - Henry C Sanborn Elementary,00090010, 0.7, .8, .0, .0, .0, .0, 1.5,384,256.0 6.193333333333333,5,a-sust-i4,2018-19,Andover - High Plain Elementary,00090004, 0.9, 1.5, .0, .0, .0, .0, 2.4,542,225.83333333333334 --Infinity,1,a-sust-i4,2018-19,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,66,Infinity +NA,NA,a-sust-i4,2018-19,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,66,Infinity 6.900571428571428,5,a-sust-i4,2018-19,Andover - South Elementary,00090020, 1.4, 2.1, .0, .0, .0, .0, 3.5,481,137.42857142857142 6.664444444444444,5,a-sust-i4,2018-19,Andover - West Elementary,00090025, 1.6, 1.9, .0, .0, .0, .0, 3.6,601,166.94444444444443 6.825714285714286,5,a-sust-i4,2018-19,Andover - Wood Hill Middle School,00090350, 0.0, .0, 2.8, .0, .0, .0, 2.8,411,146.7857142857143 @@ -9240,7 +9240,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.995555555555556,5,a-sust-i4,2018-19,Arlington - Hardy,00100030, 0.9, .7, .0, .0, .0, .2, 1.8,451,250.55555555555554 4.986666666666666,4.99,a-sust-i4,2018-19,Arlington - John A Bishop,00100005, 0.5, .5, .0, .0, .0, .2, 1.2,452,376.6666666666667 6.377142857142857,5,a-sust-i4,2018-19,Arlington - M Norcross Stratton,00100055, 1.0, .9, .0, .0, .0, .2, 2.1,426,202.85714285714286 --Infinity,1,a-sust-i4,2018-19,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity +NA,NA,a-sust-i4,2018-19,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity 6.29,5,a-sust-i4,2018-19,Arlington - Ottoson Middle,00100410, 0.0, .0, 4.0, .0, .0, .0, 4.0,855,213.75 5.946666666666666,5,a-sust-i4,2018-19,Arlington - Peirce,00100045, 0.6, .4, .0, .0, .0, .2, 1.2,308,256.6666666666667 6.0685714285714285,5,a-sust-i4,2018-19,Arlington - Thompson,00100050, 0.9, .9, .0, .0, .0, .2, 2.1,507,241.42857142857142 @@ -9253,7 +9253,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.430967741935484,5,a-sust-i4,2018-19,Ashland - Ashland Middle,00140405, 0.0, .0, 3.1, .0, .0, .0, 3.1,608,196.1290322580645 5.906666666666666,5,a-sust-i4,2018-19,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,628,261.6666666666667 4.695,4.7,a-sust-i4,2018-19,Ashland - Henry E Warren Elementary,00140010, 1.6, .0, .0, .0, .0, .0, 1.6,661,413.125 --Infinity,1,a-sust-i4,2018-19,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity +NA,NA,a-sust-i4,2018-19,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity 4.976,4.98,a-sust-i4,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 3.0, .0, .0, 3.0,1134,378.0 4.976,4.98,a-sust-i4,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 1.0, .5, .0, .0, .0, .0, 1.5,567,378.0 6.644,5,a-sust-i4,2018-19,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, 2.0, .0, .0, 2.0,339,169.5 @@ -9261,10 +9261,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.792,5,a-sust-i4,2018-19,Athol-Royalston - Royalston Community School,06150050, 0.2, .2, .1, .0, .0, .0, 0.5,138,276.0 5.412,5,a-sust-i4,2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.2, 1.3, 1.5, .0, .0, .0, 4.0,1294,323.5 4.832,4.83,a-sust-i4,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0.5, .5, .0, .0, .0, .0, 1.0,396,396.0 --Infinity,1,a-sust-i4,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity +NA,NA,a-sust-i4,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity 5.460363636363636,5,a-sust-i4,2018-19,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 5.5, .0, .0, 5.5,1746,317.45454545454544 5.624,5,a-sust-i4,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, .5, 1.5, .0, .0, .0, 2.0,594,297.0 --Infinity,1,a-sust-i4,2018-19,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,179,Infinity +NA,NA,a-sust-i4,2018-19,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,179,Infinity 6.184,5,a-sust-i4,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 1.3, .7, .0, .0, .0, .0, 2.0,454,227.0 6.156,5,a-sust-i4,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 1.3, .7, .0, .0, .0, .0, 2.0,461,230.5 6.3,5,a-sust-i4,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 1.2, .7, .0, .0, .0, .1, 2.0,425,212.5 @@ -9286,7 +9286,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.512380952380952,5,a-sust-i4,2018-19,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 4.2, .0, .0, .0, 4.2,781,185.95238095238093 6.294736842105263,5,a-sust-i4,2018-19,Barnstable - Barnstable United Elementary School,00200050, 0.0, 3.8, .0, .0, .0, .0, 3.8,810,213.1578947368421 6.565714285714285,5,a-sust-i4,2018-19,Barnstable - Centerville Elementary,00200010, 1.0, .4, .0, .0, .0, .0, 1.4,251,179.2857142857143 --Infinity,1,a-sust-i4,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,146,Infinity +NA,NA,a-sust-i4,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,146,Infinity 6.712,5,a-sust-i4,2018-19,Barnstable - Hyannis West Elementary,00200025, 1.4, .6, .0, .0, .0, .0, 2.0,322,161.0 4.56,4.56,a-sust-i4,2018-19,Barnstable - West Barnstable Elementary,00200005, 0.5, .1, .0, .0, .0, .0, 0.6,258,430.0 6.316,5,a-sust-i4,2018-19,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,421,210.5 @@ -9301,7 +9301,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.954285714285714,5,a-sust-i4,2018-19,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,179,255.71428571428572 6.46,5,a-sust-i4,2018-19,Belchertown - Jabish Middle School,00240025, 0.0, .0, 2.0, .0, .0, .0, 2.0,385,192.5 6.096,5,a-sust-i4,2018-19,Belchertown - Swift River Elementary,00240018, 1.4, .6, .0, .0, .0, .0, 2.0,476,238.0 --Infinity,1,a-sust-i4,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity +NA,NA,a-sust-i4,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity 6.647272727272728,5,a-sust-i4,2018-19,Bellingham - Bellingham High School,00250505, 0.0, .0, .9, 3.4, .0, .0, 4.4,744,169.09090909090907 6.612682926829268,5,a-sust-i4,2018-19,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.1, 2.0, .0, .0, .0, 4.1,711,173.41463414634148 6.896,5,a-sust-i4,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 1.9, .6, .0, .0, .0, .0, 2.5,345,138.0 @@ -9330,7 +9330,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.684444444444444,5,a-sust-i4,2018-19,Beverly - Centerville Elementary,00300010, 0.9, .6, .0, .0, .0, .3, 1.8,296,164.44444444444443 6.528695652173913,5,a-sust-i4,2018-19,Beverly - Cove Elementary,00300015, 1.2, .8, .0, .0, .0, .3, 2.3,423,183.91304347826087 6.355,5,a-sust-i4,2018-19,Beverly - Hannah Elementary,00300033, 0.7, .6, .0, .0, .0, .3, 1.6,329,205.625 --Infinity,1,a-sust-i4,2018-19,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,123,Infinity +NA,NA,a-sust-i4,2018-19,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,123,Infinity 6.956666666666666,5,a-sust-i4,2018-19,Beverly - North Beverly Elementary,00300040, 1.1, 1.1, .0, .0, .0, .3, 2.4,313,130.41666666666669 6.247868852459016,5,a-sust-i4,2018-19,Billerica - Billerica Memorial High School,00310505, 0.0, .0, .0, 6.1, .0, .0, 6.1,1336,219.01639344262296 6.2,5,a-sust-i4,2018-19,Billerica - Eugene C Vining,00310030, 0.4, .5, .0, .0, .0, .0, 0.8,180,225.0 @@ -9349,20 +9349,20 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.832,5,a-sust-i4,2018-19,Blackstone-Millville - Millville Elementary,06220010, 0.4, .6, .0, .0, .0, .0, 1.0,271,271.0 -1.7828571428571431,1,a-sust-i4,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, .0, .0, .7, .0, .0, 0.7,856,1222.857142857143 6.370909090909091,5,a-sust-i4,2018-19,Boston - Another Course To College,00350541, 0.0, .0, .0, .4, .7, .0, 1.1,224,203.63636363636363 --Infinity,1,a-sust-i4,2018-19,Boston - Baldwin Early Learning Center,00350003, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Baldwin Early Learning Center,00350003, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity 6.772,5,a-sust-i4,2018-19,Boston - Beethoven,00350021, 2.0, .0, .0, .0, .0, .0, 2.0,307,153.5 5.796,5,a-sust-i4,2018-19,Boston - Blackstone,00350390, 1.2, .8, .0, .0, .0, .0, 2.0,551,275.5 7.3223529411764705,5,a-sust-i4,2018-19,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .3, 1.4, .0, 1.7,144,84.70588235294117 7.6924590163934425,5,a-sust-i4,2018-19,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 7.8, 4.5, .0, 12.2,469,38.442622950819676 4.8,4.8,a-sust-i4,2018-19,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .1, .3, .0, 0.4,160,400.0 --Infinity,1,a-sust-i4,2018-19,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, .0, .0, .0, 0.0,487,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, .0, .0, .0, 0.0,487,Infinity 5.048,5,a-sust-i4,2018-19,Boston - Boston International High School,00350507, 0.0, .0, .0, .6, .4, .0, 1.0,369,369.0 5.923404255319149,5,a-sust-i4,2018-19,Boston - Boston Latin,00350560, 0.0, .0, 2.4, 1.4, 5.6, .0, 9.4,2440,259.5744680851064 3.9611428571428573,3.96,a-sust-i4,2018-19,Boston - Boston Latin Academy,00350545, 0.0, .0, .9, 1.1, 1.6, .0, 3.5,1767,504.85714285714283 6.92,5,a-sust-i4,2018-19,Boston - Boston Teachers Union School,00350012, 0.6, .6, .4, .0, .5, .0, 2.0,270,135.0 3.312,3.31,a-sust-i4,2018-19,Boston - Brighton High,00350505, 0.0, .0, .0, .0, 1.0, .0, 1.0,586,586.0 --Infinity,1,a-sust-i4,2018-19,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity --Infinity,1,a-sust-i4,2018-19,Boston - Charles H Taylor,00350054, 0.0, .0, .0, .0, .0, .0, 0.0,517,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Charles H Taylor,00350054, 0.0, .0, .0, .0, .0, .0, 0.0,517,Infinity 3.632,3.63,a-sust-i4,2018-19,Boston - Charles Sumner,00350052, 0.5, .5, .0, .0, .0, .0, 1.0,546,546.0 5.28923076923077,5,a-sust-i4,2018-19,Boston - Charlestown High,00350515, 0.0, .0, .0, .1, 2.4, .0, 2.6,881,338.8461538461538 6.965714285714285,5,a-sust-i4,2018-19,Boston - Clarence R Edwards Middle,00350430, 0.0, .0, 2.0, .0, .7, .0, 2.8,362,129.2857142857143 @@ -9383,7 +9383,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.528,5,a-sust-i4,2018-19,Boston - East Boston Early Childhood Center,00350009, 1.0, .0, .0, .0, .0, .0, 1.0,184,184.0 3.244,3.24,a-sust-i4,2018-19,Boston - East Boston High,00350530, 0.0, .0, .0, 1.0, 1.0, .0, 2.0,1189,594.5 7.015510204081632,5,a-sust-i4,2018-19,Boston - Edison K-8,00350375, 1.4, 1.7, 1.4, .0, .4, .0, 4.9,603,123.0612244897959 --Infinity,1,a-sust-i4,2018-19,Boston - Edward Everett,00350088, 0.0, .0, .0, .0, .0, .0, 0.0,264,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Edward Everett,00350088, 0.0, .0, .0, .0, .0, .0, 0.0,264,Infinity 7.217391304347826,5,a-sust-i4,2018-19,Boston - Eliot Elementary,00350096, 2.9, 2.4, .4, .0, 1.2, .0, 6.9,675,97.82608695652173 6.908,5,a-sust-i4,2018-19,Boston - Ellis Mendell,00350100, 1.6, .4, .0, .0, .0, .0, 2.0,273,136.5 6.3424,5,a-sust-i4,2018-19,Boston - Excel High School,00350522, 0.0, .0, .0, .2, 2.3, .0, 2.5,518,207.2 @@ -9394,11 +9394,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.2,4.2,a-sust-i4,2018-19,Boston - Greater Egleston Community High School,00350543, 0.0, .0, .0, .0, .2, .0, 0.2,95,475.0 5.64,5,a-sust-i4,2018-19,Boston - Harvard-Kent,00350200, 0.8, .6, .0, .0, .0, .0, 1.4,413,295.0 7.2084210526315795,5,a-sust-i4,2018-19,Boston - Haynes Early Education Center,00350010, 1.9, .0, .0, .0, .0, .0, 1.9,188,98.94736842105263 --Infinity,1,a-sust-i4,2018-19,Boston - Henry Grew,00350135, 0.0, .0, .0, .0, .0, .0, 0.0,239,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Henry Grew,00350135, 0.0, .0, .0, .0, .0, .0, 0.0,239,Infinity 7.328,5,a-sust-i4,2018-19,Boston - Higginson,00350015, 2.0, .0, .0, .0, .0, .0, 2.0,168,84.0 5.912,5,a-sust-i4,2018-19,Boston - Higginson/Lewis K-8,00350377, 0.0, .6, .4, .0, .0, .0, 1.0,261,261.0 7.296,5,a-sust-i4,2018-19,Boston - Horace Mann School for the Deaf,00350750, 0.2, .1, .1, .0, .6, .0, 1.0,88,88.0 --Infinity,1,a-sust-i4,2018-19,Boston - Hugh Roe O'Donnell,00350141, 0.0, .0, .0, .0, .0, .0, 0.0,265,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Hugh Roe O'Donnell,00350141, 0.0, .0, .0, .0, .0, .0, 0.0,265,Infinity 6.475,5,a-sust-i4,2018-19,Boston - Jackson Mann,00350013, 1.3, 1.1, .2, .0, .6, .0, 3.2,610,190.625 6.517333333333333,5,a-sust-i4,2018-19,Boston - James J Chittick,00350154, 0.5, 1.0, .0, .0, .0, .0, 1.5,278,185.33333333333334 6.502857142857144,5,a-sust-i4,2018-19,Boston - James Otis,00350156, 1.1, 1.0, .0, .0, .0, .0, 2.1,393,187.14285714285714 @@ -9412,7 +9412,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.2,5,a-sust-i4,2018-19,Boston - Joseph J Hurley,00350182, 0.4, .4, .2, .0, .0, .0, 1.0,350,350.0 6.725853658536585,5,a-sust-i4,2018-19,Boston - Joseph Lee,00350183, 2.2, 1.1, .5, .0, .4, .0, 4.1,653,159.26829268292684 7.465454545454546,5,a-sust-i4,2018-19,Boston - Joseph P Manning,00350184, 1.0, 1.2, .0, .0, .0, .0, 2.2,147,66.81818181818181 --Infinity,1,a-sust-i4,2018-19,Boston - Joseph P Tynan,00350181, 0.0, .0, .0, .0, .0, .0, 0.0,229,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Joseph P Tynan,00350181, 0.0, .0, .0, .0, .0, .0, 0.0,229,Infinity 5.4304,5,a-sust-i4,2018-19,Boston - Josiah Quincy,00350286, 1.6, .9, .0, .0, .0, .0, 2.5,803,321.2 7.143414634146342,5,a-sust-i4,2018-19,Boston - Joyce Kilmer,00350190, 1.6, 1.7, .4, .0, .5, .0, 4.1,439,107.07317073170732 6.696,5,a-sust-i4,2018-19,Boston - King K-8,00350376, 1.6, .8, .3, .0, .3, .0, 3.0,489,163.0 @@ -9421,7 +9421,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.231428571428571,5,a-sust-i4,2018-19,Boston - Lyndon,00350262, 1.0, 1.3, .1, .0, .4, .0, 2.8,619,221.07142857142858 7.187692307692307,5,a-sust-i4,2018-19,Boston - Lyon K-8,00350004, 0.5, .5, .1, .0, .1, .0, 1.3,132,101.53846153846153 5.872,5,a-sust-i4,2018-19,Boston - Lyon Upper 9-12,00350655, 0.0, .0, .0, .5, .0, .0, 0.5,133,266.0 --Infinity,1,a-sust-i4,2018-19,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,887,Infinity +NA,NA,a-sust-i4,2018-19,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,887,Infinity 5.792,5,a-sust-i4,2018-19,Boston - Manassah E Bradley,00350215, 0.6, .5, .0, .0, .0, .0, 1.0,276,276.0 7.537254901960784,5,a-sust-i4,2018-19,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 4.9, .3, .0, 5.1,295,57.84313725490196 6.349565217391304,5,a-sust-i4,2018-19,Boston - Mario Umana Academy,00350656, 0.8, .7, 2.3, .0, .9, .0, 4.6,949,206.30434782608697 @@ -9457,7 +9457,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.542222222222223,5,a-sust-i4,2018-19,Boston - Urban Science Academy,00350579, 0.0, .0, .0, .0, 1.8, .0, 1.8,328,182.22222222222223 5.790476190476191,5,a-sust-i4,2018-19,Boston - Warren-Prescott,00350346, 0.9, 1.0, .2, .0, .0, .0, 2.1,580,276.1904761904762 5.608,5,a-sust-i4,2018-19,Boston - Washington Irving Middle,00350445, 0.0, .0, 1.0, .0, .0, .0, 1.0,299,299.0 --Infinity,1,a-sust-i4,2018-19,Boston - West Roxbury Academy,00350658, 0.0, .0, .0, .0, .0, .0, 0.0,408,Infinity +NA,NA,a-sust-i4,2018-19,Boston - West Roxbury Academy,00350658, 0.0, .0, .0, .0, .0, .0, 0.0,408,Infinity 6.7296000000000005,5,a-sust-i4,2018-19,Boston - William E Russell,00350366, 1.8, .8, .0, .0, .0, .0, 2.5,397,158.8 6.336,5,a-sust-i4,2018-19,Boston - William Ellery Channing,00350360, 0.6, .4, .0, .0, .0, .0, 1.0,208,208.0 6.248275862068966,5,a-sust-i4,2018-19,Boston - William H Ohrenberger,00350258, 0.0, 1.6, .8, .0, .4, .0, 2.9,635,218.96551724137933 @@ -9499,10 +9499,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.56,5,a-sust-i4,2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .1, .1, .0, 0.1,18,180.0 6.684255319148936,5,a-sust-i4,2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 3.7, 1.0, .0, .0, .0, 4.7,773,164.46808510638297 6.621176470588235,5,a-sust-i4,2018-19,Brimfield - Brimfield Elementary,00430005, 1.0, .5, .2, .0, .0, .0, 1.7,293,172.35294117647058 --Infinity,1,a-sust-i4,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,454,Infinity --Infinity,1,a-sust-i4,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1288,Infinity +NA,NA,a-sust-i4,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,454,Infinity +NA,NA,a-sust-i4,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1288,Infinity 6.1792,5,a-sust-i4,2018-19,Brockton - Ashfield Middle School,00440421, 0.0, .0, 1.6, .0, .7, .2, 2.5,569,227.6 --Infinity,1,a-sust-i4,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,207,Infinity +NA,NA,a-sust-i4,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,207,Infinity 5.792,5,a-sust-i4,2018-19,Brockton - Brockton Champion High School,00440515, 0.0, .0, .0, .0, .0, .5, 0.5,138,276.0 4.455384615384615,4.46,a-sust-i4,2018-19,Brockton - Brockton High,00440505, 0.0, .0, .0, 5.8, .0, 3.3, 9.1,4032,443.0769230769231 4.6171428571428565,4.62,a-sust-i4,2018-19,Brockton - Brookfield,00440010, 0.4, .5, .0, .0, .0, .4, 1.4,592,422.8571428571429 @@ -9510,7 +9510,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.92,2.92,a-sust-i4,2018-19,Brockton - Dr W Arnone Community School,00440001, 0.5, .5, .0, .0, .0, .3, 1.2,762,635.0 6.661621621621622,5,a-sust-i4,2018-19,Brockton - East Middle School,00440405, 0.0, .0, 1.6, .0, .2, 1.9, 3.7,619,167.2972972972973 5.926,5,a-sust-i4,2018-19,Brockton - Edgar B Davis,00440023, 1.7, .9, .7, .0, .0, .8, 4.0,1037,259.25 --Infinity,1,a-sust-i4,2018-19,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,238,Infinity +NA,NA,a-sust-i4,2018-19,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,238,Infinity 7.28,5,a-sust-i4,2018-19,Brockton - Frederick Douglass Academy,00440080, 0.0, .0, .0, .0, .0, .2, 0.2,18,90.0 5.402666666666666,5,a-sust-i4,2018-19,Brockton - Gilmore Elementary School,00440055, 0.6, .7, .0, .0, .0, .1, 1.5,487,324.6666666666667 5.488888888888889,5,a-sust-i4,2018-19,Brockton - Hancock,00440045, 0.7, .7, .0, .0, .0, .3, 1.8,565,313.88888888888886 @@ -9526,8 +9526,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.9259259259259265,5,a-sust-i4,2018-19,Brockton - West Middle School,00440420, 0.0, .0, 1.8, .0, .0, .9, 2.7,700,259.25925925925924 6.352888888888889,5,a-sust-i4,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 3.4, 2.7, 2.8, .0, .0, .0, 9.0,1853,205.88888888888889 6.42,5,a-sust-i4,2018-19,Brookfield - Brookfield Elementary,00450005, 0.9, .5, .2, .0, .0, .0, 1.6,316,197.5 --Infinity,1,a-sust-i4,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity --Infinity,1,a-sust-i4,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity +NA,NA,a-sust-i4,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity +NA,NA,a-sust-i4,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity 6.599333333333333,5,a-sust-i4,2018-19,Brookline - Brookline High,00460505, 0.0, .0, .0, 12.0, .0, .0, 12.0,2101,175.08333333333334 6.5568,5,a-sust-i4,2018-19,Brookline - Coolidge Corner School,00460015, 1.6, 2.3, 1.0, .0, .0, .0, 5.0,902,180.4 6.58232558139535,5,a-sust-i4,2018-19,Brookline - Edith C Baker,00460005, 1.4, 1.7, 1.2, .0, .0, .0, 4.3,762,177.2093023255814 @@ -9536,7 +9536,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.773913043478261,5,a-sust-i4,2018-19,Brookline - Lawrence,00460030, 1.4, 2.3, 1.0, .0, .0, .0, 4.6,705,153.2608695652174 6.705641025641025,5,a-sust-i4,2018-19,Brookline - Michael Driscoll,00460020, 1.1, 1.8, .9, .0, .0, .0, 3.9,631,161.7948717948718 6.4622222222222225,5,a-sust-i4,2018-19,Brookline - Pierce,00460040, 1.5, 2.2, .8, .0, .0, .0, 4.5,865,192.22222222222223 --Infinity,1,a-sust-i4,2018-19,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,55,Infinity +NA,NA,a-sust-i4,2018-19,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,55,Infinity 6.632941176470588,5,a-sust-i4,2018-19,Brookline - William H Lincoln,00460035, 1.1, 1.5, .9, .0, .0, .0, 3.4,581,170.88235294117646 6.547796610169492,5,a-sust-i4,2018-19,Burlington - Burlington High,00480505, 0.0, .0, .0, 5.9, .0, .0, 5.9,1071,181.52542372881354 6.967272727272727,5,a-sust-i4,2018-19,Burlington - Fox Hill,00480007, 1.2, 1.7, .0, .0, .0, .4, 3.3,426,129.0909090909091 @@ -9565,10 +9565,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.229090909090909,5,a-sust-i4,2018-19,Canton - Dean S Luce,00500020, 1.2, 1.0, .0, .0, .0, .0, 2.2,487,221.36363636363635 5.221333333333334,5,a-sust-i4,2018-19,Canton - John F Kennedy,00500017, 0.7, .8, .0, .0, .0, .0, 1.5,521,347.3333333333333 6.064,5,a-sust-i4,2018-19,Canton - Lt Peter M Hansen,00500012, 0.9, 1.1, .0, .0, .0, .0, 2.0,484,242.0 --Infinity,1,a-sust-i4,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity +NA,NA,a-sust-i4,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity 6.862745098039216,5,a-sust-i4,2018-19,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 5.1, .0, .0, .0, 5.1,725,142.15686274509804 6.386666666666666,5,a-sust-i4,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, 1.2, .0, .0, .0, 1.2,242,201.66666666666669 --Infinity,1,a-sust-i4,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .0, .0, .0, 0.0,571,Infinity +NA,NA,a-sust-i4,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .0, .0, .0, 0.0,571,Infinity 7.04,5,a-sust-i4,2018-19,Carlisle - Carlisle School,00510025, 1.3, 2.0, 1.7, .0, .0, .0, 5.0,600,120.0 4.82,4.82,a-sust-i4,2018-19,Carver - Carver Elementary School,00520015, 0.8, 1.1, .0, .0, .0, .0, 2.0,795,397.5 6.706382978723404,5,a-sust-i4,2018-19,Carver - Carver Middle/High School,00520405, 0.0, .0, 2.5, 2.1, .0, .1, 4.7,760,161.70212765957447 @@ -9582,11 +9582,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.024,5,a-sust-i4,2018-19,Chelmsford - Charles D Harrington,00560025, 1.2, .8, .0, .0, .0, .0, 2.0,494,247.0 6.537721518987342,5,a-sust-i4,2018-19,Chelmsford - Chelmsford High,00560505, 0.0, .0, .0, 7.9, .0, .0, 7.9,1444,182.78481012658227 6.730909090909091,5,a-sust-i4,2018-19,Chelmsford - Col Moses Parker School,00560305, 0.0, 1.2, 3.2, .0, .0, .0, 4.4,698,158.63636363636363 --Infinity,1,a-sust-i4,2018-19,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity +NA,NA,a-sust-i4,2018-19,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity 6.758461538461539,5,a-sust-i4,2018-19,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.3, 3.9, .0, .0, .0, 5.2,807,155.19230769230768 6.336,5,a-sust-i4,2018-19,Chelmsford - South Row,00560015, 1.2, .8, .0, .0, .0, .0, 2.0,416,208.0 6.445714285714287,5,a-sust-i4,2018-19,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 7.0, .0, .0, 7.0,1360,194.28571428571428 --Infinity,1,a-sust-i4,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,52,Infinity +NA,NA,a-sust-i4,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,52,Infinity 6.28,5,a-sust-i4,2018-19,Chelsea - Clark Avenue School,00570050, 0.0, .5, 1.5, .0, 1.0, .0, 3.0,645,215.0 5.832,5,a-sust-i4,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 0.9, 1.1, .0, .0, .0, .0, 2.0,542,271.0 5.976,5,a-sust-i4,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, .5, 1.5, .0, .0, .0, 2.0,506,253.0 @@ -9596,7 +9596,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.68,5,a-sust-i4,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 3.0, .0, .0, .0, .0, .0, 3.0,870,290.0 6.076,5,a-sust-i4,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 1.0, 1.0, .0, .0, .0, .0, 2.0,481,240.5 6.853333333333333,5,a-sust-i4,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.4, .4, .1, .0, .0, .0, 0.9,129,143.33333333333334 --Infinity,1,a-sust-i4,2018-19,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,431,Infinity +NA,NA,a-sust-i4,2018-19,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,431,Infinity 2.72,2.72,a-sust-i4,2018-19,Chicopee - Belcher,00610010, 0.4, .0, .0, .0, .0, .0, 0.4,264,660.0 4.768,4.77,a-sust-i4,2018-19,Chicopee - Bellamy Middle,00610305, 0.0, .0, 2.0, .0, .0, .0, 2.0,808,404.0 5.333333333333334,5,a-sust-i4,2018-19,Chicopee - Bowe,00610015, 1.0, .5, .0, .0, .0, .0, 1.5,500,333.3333333333333 @@ -9610,11 +9610,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.328,3.33,a-sust-i4,2018-19,Chicopee - Lambert-Lavoie,00610040, 0.2, .3, .0, .0, .0, .0, 0.5,292,584.0 4.8,4.8,a-sust-i4,2018-19,Chicopee - Litwin,00610022, 0.3, .7, .0, .0, .0, .0, 1.0,400,400.0 5.54,5,a-sust-i4,2018-19,Chicopee - Streiber Memorial School,00610065, 0.3, .3, .0, .0, .2, .0, 0.8,246,307.5 --Infinity,1,a-sust-i4,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,229,Infinity --Infinity,1,a-sust-i4,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, .0, .0, .0, .0, .0, 0.0,398,Infinity +NA,NA,a-sust-i4,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,229,Infinity +NA,NA,a-sust-i4,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, .0, .0, .0, .0, .0, 0.0,398,Infinity -2.84,1,a-sust-i4,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .0, .2, .0, 0.2,271,1355.0 --Infinity,1,a-sust-i4,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, .0, .0, .0, .0, .0, 0.0,245,Infinity --Infinity,1,a-sust-i4,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,217,Infinity +NA,NA,a-sust-i4,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, .0, .0, .0, .0, .0, 0.0,245,Infinity +NA,NA,a-sust-i4,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,217,Infinity 6.15,5,a-sust-i4,2018-19,Clarksburg - Clarksburg Elementary,00630010, 0.3, .3, .3, .0, .0, .0, 0.8,185,231.25 4.704,4.7,a-sust-i4,2018-19,Clinton - Clinton Elementary,00640050, 1.2, .8, .0, .0, .0, .0, 2.0,824,412.0 6.2215384615384615,5,a-sust-i4,2018-19,Clinton - Clinton Middle School,00640305, 0.0, .9, 1.7, .0, .0, .0, 2.6,578,222.3076923076923 @@ -9625,9 +9625,9 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.448888888888889,5,a-sust-i4,2018-19,Cohasset - Joseph Osgood,00650010, 1.8, .0, .0, .0, .0, .0, 1.8,349,193.88888888888889 5.493333333333334,5,a-sust-i4,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 1.6, 1.0, .0, .0, .0, .0, 2.7,846,313.3333333333333 4.2057142857142855,4.21,a-sust-i4,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, .0, .0, .0, .7, .0, 0.7,332,474.28571428571433 --Infinity,1,a-sust-i4,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,360,Infinity --Infinity,1,a-sust-i4,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity --Infinity,1,a-sust-i4,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,360,Infinity +NA,NA,a-sust-i4,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, .0, .0, .0, .0, .0, 0.0,360,Infinity +NA,NA,a-sust-i4,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity +NA,NA,a-sust-i4,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, .0, .0, .0, .0, .0, 0.0,360,Infinity 6.5261538461538455,5,a-sust-i4,2018-19,Concord - Alcott,00670005, 1.0, 1.6, .0, .0, .0, .0, 2.6,479,184.23076923076923 6.892075471698114,5,a-sust-i4,2018-19,Concord - Concord Middle,00670305, 0.0, .0, 5.3, .0, .0, .0, 5.3,734,138.49056603773585 6.56923076923077,5,a-sust-i4,2018-19,Concord - Thoreau,00670020, 1.0, 1.5, .0, .0, .0, .0, 2.6,465,178.84615384615384 @@ -9680,7 +9680,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.233333333333333,5,a-sust-i4,2018-19,Dracut - Greenmont Avenue,00790030, 0.6, .6, .0, .0, .0, .0, 1.2,265,220.83333333333334 6.136666666666666,5,a-sust-i4,2018-19,Dracut - Joseph A Campbell Elementary,00790020, 1.7, .7, .0, .0, .0, .0, 2.4,559,232.91666666666669 5.425714285714285,5,a-sust-i4,2018-19,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 2.8, .0, .0, .0, 2.8,901,321.78571428571433 --Infinity,1,a-sust-i4,2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,256,Infinity +NA,NA,a-sust-i4,2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,256,Infinity 6.149333333333333,5,a-sust-i4,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.5, .0, .0, .0, .0, .0, 1.5,347,231.33333333333334 6.566315789473684,5,a-sust-i4,2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, .9, 3.0, .0, .0, .0, 3.8,681,179.21052631578948 6.524,5,a-sust-i4,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.6, 1.4, .0, .0, .0, .0, 2.0,369,184.5 @@ -9715,8 +9715,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.9037037037037035,5,a-sust-i4,2018-19,Edgartown - Edgartown Elementary,00890005, 0.6, .7, .6, .0, .7, .0, 2.7,370,137.03703703703704 4.595555555555555,4.6,a-sust-i4,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, 0.0, .0, .0, .9, .0, .0, 0.9,383,425.55555555555554 7.1466666666666665,5,a-sust-i4,2018-19,Erving - Erving Elementary,00910030, 0.5, .4, .2, .0, .0, .0, 1.2,128,106.66666666666667 --Infinity,1,a-sust-i4,2018-19,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,1413,Infinity --Infinity,1,a-sust-i4,2018-19,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,194,Infinity +NA,NA,a-sust-i4,2018-19,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,1413,Infinity +NA,NA,a-sust-i4,2018-19,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,194,Infinity 7.377777777777777,5,a-sust-i4,2018-19,Everett - Devens School,00930030, 0.1, .3, .4, .2, .0, .0, 0.9,70,77.77777777777777 5.832328767123287,5,a-sust-i4,2018-19,Everett - Everett High,00930505, 0.0, .0, .0, 7.3, .0, .0, 7.3,1978,270.95890410958907 6.1189189189189195,5,a-sust-i4,2018-19,Everett - George Keverian School,00930028, 1.6, .9, 1.2, .0, .0, .0, 3.7,870,235.13513513513513 @@ -9757,7 +9757,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.412,5,a-sust-i4,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, .5, 1.5, .0, .0, .0, 2.0,647,323.5 5.428,5,a-sust-i4,2018-19,Fitchburg - Crocker Elementary,00970016, 1.3, .7, .0, .0, .0, .0, 2.0,643,321.5 5.894545454545454,5,a-sust-i4,2018-19,Fitchburg - Fitchburg High,00970505, 0.0, .0, .0, 4.4, .0, .0, 4.4,1158,263.1818181818182 --Infinity,1,a-sust-i4,2018-19,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,207,Infinity +NA,NA,a-sust-i4,2018-19,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,207,Infinity 6.831304347826087,5,a-sust-i4,2018-19,Fitchburg - McKay Arts Academy,00970340, 0.7, 1.5, 2.4, .0, .0, .0, 4.6,672,146.08695652173915 6.24,5,a-sust-i4,2018-19,Fitchburg - Memorial Middle School,00970048, 0.0, .9, 2.6, .0, .0, .0, 3.4,748,220.0 5.416,5,a-sust-i4,2018-19,Fitchburg - Reingold Elementary,00970043, 1.1, .8, .0, .0, .0, .1, 2.0,646,323.0 @@ -9777,7 +9777,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.021639344262295,5,a-sust-i4,2018-19,Framingham - Framingham High School,01000515, 0.0, .0, .0, 6.1, .0, .0, 6.1,2271,372.29508196721315 6.676363636363636,5,a-sust-i4,2018-19,Framingham - Fuller Middle,01000305, 0.0, .0, 3.3, .0, .0, .0, 3.3,546,165.45454545454547 7.407368421052632,5,a-sust-i4,2018-19,Framingham - Hemenway,01000015, 3.6, 4.0, .0, .0, .0, .0, 7.6,563,74.07894736842105 --Infinity,1,a-sust-i4,2018-19,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,276,Infinity +NA,NA,a-sust-i4,2018-19,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,276,Infinity 6.708,5,a-sust-i4,2018-19,Framingham - King Elementary School,01000005, 1.2, .8, .0, .0, .0, .0, 2.0,323,161.5 6.831304347826087,5,a-sust-i4,2018-19,Framingham - Mary E Stapleton Elementary,01000045, 1.1, 1.2, .0, .0, .0, .0, 2.3,336,146.08695652173915 6.592,5,a-sust-i4,2018-19,Framingham - Miriam F McCarthy School,01000050, 1.3, 1.7, .0, .0, .0, .0, 3.0,528,176.0 @@ -9787,7 +9787,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -2.586666666666668,1,a-sust-i4,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .0, .3, .0, 0.3,397,1323.3333333333335 6.794074074074074,5,a-sust-i4,2018-19,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 2.7, .0, .0, .0, 2.7,407,150.74074074074073 6.698666666666667,5,a-sust-i4,2018-19,Franklin - Davis Thayer,01010035, 0.8, .7, .0, .0, .0, .0, 1.5,244,162.66666666666666 --Infinity,1,a-sust-i4,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity +NA,NA,a-sust-i4,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity 6.293658536585366,5,a-sust-i4,2018-19,Franklin - Franklin High,01010505, 0.0, .0, .0, 7.1, .8, .2, 8.2,1749,213.2926829268293 6.894285714285714,5,a-sust-i4,2018-19,Franklin - Helen Keller Elementary,01010012, 0.4, 1.4, .0, .0, 1.0, .0, 2.8,387,138.21428571428572 6.613333333333334,5,a-sust-i4,2018-19,Franklin - Horace Mann,01010405, 0.0, .0, 2.7, .0, .0, .0, 2.7,468,173.33333333333331 @@ -9815,7 +9815,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.115555555555556,5,a-sust-i4,2018-19,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 3.6, .0, .0, 3.6,398,110.55555555555556 7.075555555555556,5,a-sust-i4,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, .0, 1.8, .0, .0, .0, 1.8,208,115.55555555555556 6.2275,5,a-sust-i4,2018-19,Georgetown - Penn Brook,01050010, 1.5, 1.3, .4, .0, .0, .0, 3.2,709,221.5625 --Infinity,1,a-sust-i4,2018-19,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2018-19,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 4.586666666666666,4.59,a-sust-i4,2018-19,Gill-Montague - Gill Elementary,06740005, 0.1, .1, .1, .0, .0, .0, 0.3,128,426.6666666666667 -1.56,1,a-sust-i4,2018-19,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, .2, .0, .0, .0, 0.2,239,1195.0 5.933333333333333,5,a-sust-i4,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,155,258.33333333333337 @@ -9825,7 +9825,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.676,5,a-sust-i4,2018-19,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,331,165.5 6.6066666666666665,5,a-sust-i4,2018-19,Gloucester - East Gloucester Elementary,01070020, 0.0, .0, .0, .0, .0, 1.2, 1.2,209,174.16666666666669 6.7056000000000004,5,a-sust-i4,2018-19,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .4, 4.6, .0, 5.0,809,161.8 --Infinity,1,a-sust-i4,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,123,Infinity +NA,NA,a-sust-i4,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,123,Infinity 6.613333333333333,5,a-sust-i4,2018-19,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.2, 1.2,208,173.33333333333334 6.718,5,a-sust-i4,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 4.0, .0, .0, .0, 4.0,641,160.25 6.553333333333333,5,a-sust-i4,2018-19,Gloucester - Veterans Memorial,01070045, 0.0, .0, .0, .0, .0, 1.2, 1.2,217,180.83333333333334 @@ -9842,7 +9842,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -8.14857142857143,1,a-sust-i4,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .7, .0, .0, 0.7,1413,2018.5714285714287 -7.76,1,a-sust-i4,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .8, .0, .0, 0.8,1576,1970.0 -52.16,1,a-sust-i4,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2256,7520.0 --Infinity,1,a-sust-i4,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2139,Infinity +NA,NA,a-sust-i4,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2139,Infinity 6.64,5,a-sust-i4,2018-19,Greenfield - Discovery School at Four Corners,01140025, 0.9, .5, .0, .0, .0, .0, 1.4,238,170.0 6.688,5,a-sust-i4,2018-19,Greenfield - Federal Street School,01140010, 0.9, .6, .0, .0, .1, .0, 1.5,246,164.0 6.743225806451613,5,a-sust-i4,2018-19,Greenfield - Greenfield High,01140505, 0.0, .0, .5, 1.8, .8, .0, 3.1,487,157.09677419354838 @@ -9850,7 +9850,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.090909090909091,5,a-sust-i4,2018-19,Greenfield - Newton School,01140035, 1.3, .9, .0, .0, .0, .0, 2.2,250,113.63636363636363 -1.68,1,a-sust-i4,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .1, 0.1,121,1210.0 4.8533333333333335,4.85,a-sust-i4,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.4, .4, .4, .0, .1, .0, 1.5,590,393.3333333333333 --Infinity,1,a-sust-i4,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity +NA,NA,a-sust-i4,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity 5.832,5,a-sust-i4,2018-19,Groton-Dunstable - Florence Roche School,06730010, 1.2, .8, .0, .0, .0, .0, 2.0,542,271.0 6.256,5,a-sust-i4,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.5, .0, 3.5,763,218.0 6.8271999999999995,5,a-sust-i4,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, .9, 4.1, .0, .0, .0, 5.0,733,146.6 @@ -9893,14 +9893,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.56,5,a-sust-i4,2018-19,Haverhill - Haverhill Alternative School,01280033, 0.0, .0, .0, .1, .1, .0, 0.2,36,180.0 6.00972972972973,5,a-sust-i4,2018-19,Haverhill - Haverhill High,01280505, 0.0, .0, .0, .7, 6.8, .0, 7.4,1841,248.78378378378378 -0.4,1,a-sust-i4,2018-19,Haverhill - John G Whittier,01280085, 0.0, .1, .4, .0, .0, .0, 0.5,525,1050.0 --Infinity,1,a-sust-i4,2018-19,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity +NA,NA,a-sust-i4,2018-19,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity 5.027692307692307,5,a-sust-i4,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0.7, .7, .0, .0, .0, .0, 1.3,483,371.53846153846155 5.716,5,a-sust-i4,2018-19,Haverhill - Silver Hill Elementary School,01280067, 1.0, 1.0, .0, .0, .0, .0, 2.0,571,285.5 7.4628571428571435,5,a-sust-i4,2018-19,Haverhill - TEACH,01280073, 0.1, .4, .2, .0, .0, .0, 0.7,47,67.14285714285715 6.16,5,a-sust-i4,2018-19,Haverhill - Tilton,01280075, 1.4, .6, .0, .0, .0, .0, 2.0,460,230.0 6.457142857142857,5,a-sust-i4,2018-19,Haverhill - Walnut Square,01280080, 0.7, .0, .0, .0, .0, .0, 0.7,135,192.85714285714286 3.973333333333333,3.97,a-sust-i4,2018-19,Hawlemont - Hawlemont Regional,06850005, 0.1, .1, .0, .0, .0, .0, 0.3,151,503.33333333333337 --Infinity,1,a-sust-i4,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, .0, .0, .0, .0, .0, 0.0,191,Infinity +NA,NA,a-sust-i4,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, .0, .0, .0, .0, .0, 0.0,191,Infinity 6.784,5,a-sust-i4,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.5, .7, .8, .0, .0, .0, 2.0,304,152.0 7.38,5,a-sust-i4,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.8, .9, 1.1, .0, .0, .0, 2.8,217,77.5 6.191304347826087,5,a-sust-i4,2018-19,Hingham - East Elementary School,01310005, 1.0, 1.4, .0, .0, .0, .0, 2.3,520,226.08695652173915 @@ -9925,18 +9925,18 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.872,3.87,a-sust-i4,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.3, .5, .3, .0, .0, .0, 1.0,516,516.0 6.484,5,a-sust-i4,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.7, .7, .6, .0, .0, .0, 2.0,379,189.5 6.932571428571428,5,a-sust-i4,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 0.6, .6, .2, .0, 2.0, .0, 3.5,467,133.42857142857142 --Infinity,1,a-sust-i4,2018-19,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,306,Infinity --Infinity,1,a-sust-i4,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0.0, .0, .0, .0, .0, .0, 0.0,139,Infinity +NA,NA,a-sust-i4,2018-19,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,306,Infinity +NA,NA,a-sust-i4,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0.0, .0, .0, .0, .0, .0, 0.0,139,Infinity 6.295384615384616,5,a-sust-i4,2018-19,Holyoke - William R. Peck School,01370030, 0.0, 1.0, .3, .0, .0, .0, 1.3,277,213.07692307692307 --Infinity,1,a-sust-i4,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,704,Infinity +NA,NA,a-sust-i4,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,704,Infinity 6.583703703703703,5,a-sust-i4,2018-19,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, .8, 1.9, .0, .0, 2.7,478,177.03703703703704 6.011428571428572,5,a-sust-i4,2018-19,Hopedale - Memorial,01380010, 0.8, .9, .3, .0, .0, .0, 2.1,522,248.57142857142856 --Infinity,1,a-sust-i4,2018-19,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity +NA,NA,a-sust-i4,2018-19,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity 5.416470588235294,5,a-sust-i4,2018-19,Hopkinton - Elmwood,01390010, 0.9, .8, .0, .0, .0, .0, 1.7,549,322.94117647058823 6.367407407407407,5,a-sust-i4,2018-19,Hopkinton - Hopkins Elementary School,01390015, 0.0, 2.7, .0, .0, .0, .0, 2.7,551,204.07407407407405 5.850909090909091,5,a-sust-i4,2018-19,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 4.4, .0, .0, 4.4,1182,268.6363636363636 6.830344827586207,5,a-sust-i4,2018-19,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 5.8, .0, .0, .0, 5.8,848,146.20689655172416 --Infinity,1,a-sust-i4,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity +NA,NA,a-sust-i4,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity 5.009230769230769,5,a-sust-i4,2018-19,Hopkinton - Marathon Elementary School,01390005, 1.3, .0, .0, .0, .0, .0, 1.3,486,373.8461538461538 5.26,5,a-sust-i4,2018-19,Hudson - C A Farley,01410030, 0.6, .6, .0, .0, .0, .0, 1.2,411,342.5 6.786666666666667,5,a-sust-i4,2018-19,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.9, 2.3, .0, .0, .0, 4.2,637,151.66666666666666 @@ -9966,20 +9966,20 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.864,3.86,a-sust-i4,2018-19,Lawrence - Frost Middle School,01490525, 0.0, .3, .8, .0, .0, .0, 1.0,517,517.0 6.621333333333333,5,a-sust-i4,2018-19,Lawrence - Gerard A. Guilmette,01490022, 1.5, 1.5, .0, .0, .0, .0, 3.0,517,172.33333333333334 7.018,5,a-sust-i4,2018-19,Lawrence - Guilmette Middle School,01490025, 0.0, 1.4, 2.6, .0, .0, .0, 4.0,491,122.75 --Infinity,1,a-sust-i4,2018-19,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity +NA,NA,a-sust-i4,2018-19,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity 6.592,5,a-sust-i4,2018-19,Lawrence - James F Hennessey,01490020, 2.0, .0, .0, .0, .0, .0, 2.0,352,176.0 --Infinity,1,a-sust-i4,2018-19,Lawrence - John Breen School,01490003, 0.0, .0, .0, .0, .0, .0, 0.0,327,Infinity +NA,NA,a-sust-i4,2018-19,Lawrence - John Breen School,01490003, 0.0, .0, .0, .0, .0, .0, 0.0,327,Infinity 6.816,5,a-sust-i4,2018-19,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,296,148.0 --Infinity,1,a-sust-i4,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,190,Infinity +NA,NA,a-sust-i4,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,190,Infinity 7.232,5,a-sust-i4,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 2.0, .0, .0, .0, .0, .0, 2.0,192,96.0 6.2122222222222225,5,a-sust-i4,2018-19,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 13.8, .6, .0, 14.4,3218,223.47222222222223 6.02,5,a-sust-i4,2018-19,Lawrence - Oliver Partnership School,01490048, 0.9, 1.1, .0, .0, .0, .0, 2.0,495,247.5 5.588,5,a-sust-i4,2018-19,Lawrence - Parthum Middle School,01490027, 0.0, .5, 1.5, .0, .0, .0, 2.0,603,301.5 5.576,5,a-sust-i4,2018-19,Lawrence - Robert Frost,01490018, 1.2, .8, .0, .0, .0, .0, 2.0,606,303.0 --Infinity,1,a-sust-i4,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity +NA,NA,a-sust-i4,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity 6.711111111111111,5,a-sust-i4,2018-19,Lawrence - School for Exceptional Studies,01490537, 0.2, .4, .4, .0, .0, .0, 0.9,145,161.11111111111111 5.989333333333333,5,a-sust-i4,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 1.3, 1.7, .0, .0, .0, .0, 3.0,754,251.33333333333334 --Infinity,1,a-sust-i4,2018-19,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,458,Infinity +NA,NA,a-sust-i4,2018-19,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,458,Infinity 5.696,5,a-sust-i4,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,288,288.0 5.328,5,a-sust-i4,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,334,334.0 4.96,4.96,a-sust-i4,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.8, .6, .6, .0, .0, .0, 2.0,760,380.0 @@ -9991,14 +9991,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.064,5,a-sust-i4,2018-19,Leicester - Leicester Primary School,01510010, 1.0, .0, .0, .0, .0, .0, 1.0,367,367.0 6.9225,5,a-sust-i4,2018-19,Lenox - Lenox Memorial High,01520505, 0.0, .0, .5, 2.7, .0, .0, 3.2,431,134.6875 6.555555555555555,5,a-sust-i4,2018-19,Lenox - Morris,01520015, 0.9, .9, .0, .0, .0, .0, 1.8,325,180.55555555555554 --Infinity,1,a-sust-i4,2018-19,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity +NA,NA,a-sust-i4,2018-19,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity -46.56,1,a-sust-i4,2018-19,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .1, .0, .0, 0.1,682,6820.0 5.476,5,a-sust-i4,2018-19,Leominster - Fall Brook,01530007, 0.9, 1.1, .0, .0, .0, .0, 2.0,631,315.5 5.768,5,a-sust-i4,2018-19,Leominster - Frances Drake School,01530010, 1.6, .4, .0, .0, .0, .0, 2.0,558,279.0 5.312,5,a-sust-i4,2018-19,Leominster - Johnny Appleseed,01530025, 0.9, 1.1, .0, .0, .0, .0, 2.0,672,336.0 --Infinity,1,a-sust-i4,2018-19,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity +NA,NA,a-sust-i4,2018-19,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,57,Infinity 6.521379310344828,5,a-sust-i4,2018-19,Leominster - Leominster High School,01530505, 0.0, .0, .0, 5.8, .0, .0, 5.8,1072,184.82758620689657 --Infinity,1,a-sust-i4,2018-19,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity +NA,NA,a-sust-i4,2018-19,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity 5.312,5,a-sust-i4,2018-19,Leominster - Northwest,01530030, 0.9, 1.1, .0, .0, .0, .0, 2.0,672,336.0 6.856,5,a-sust-i4,2018-19,Leominster - Priest Street,01530040, 1.0, .0, .0, .0, .0, .0, 1.0,143,143.0 6.012,5,a-sust-i4,2018-19,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,497,248.5 @@ -10010,11 +10010,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.64,5,a-sust-i4,2018-19,Lexington - Harrington,01550030, 1.1, 1.8, .0, .0, .0, .0, 2.9,493,170.0 6.892121212121212,5,a-sust-i4,2018-19,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 6.6, .0, .0, .0, 6.6,914,138.4848484848485 6.55,5,a-sust-i4,2018-19,Lexington - Joseph Estabrook,01550010, 1.2, 2.0, .0, .0, .0, .0, 3.2,580,181.25 --Infinity,1,a-sust-i4,2018-19,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity +NA,NA,a-sust-i4,2018-19,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,69,Infinity 6.607384615384615,5,a-sust-i4,2018-19,Lexington - Lexington High,01550505, 0.0, .0, .0, 12.5, .1, .4, 13.0,2263,174.07692307692307 6.5472,5,a-sust-i4,2018-19,Lexington - Maria Hastings,01550035, 0.9, 1.6, .0, .0, .0, .0, 2.5,454,181.6 7.019733333333334,5,a-sust-i4,2018-19,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 7.5, .0, .0, .0, 7.5,919,122.53333333333333 --Infinity,1,a-sust-i4,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,178,Infinity +NA,NA,a-sust-i4,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,178,Infinity 6.876190476190476,5,a-sust-i4,2018-19,Lincoln - Hanscom Middle,01570305, 0.0, .9, 1.2, .0, .0, .0, 2.1,295,140.47619047619048 6.78,5,a-sust-i4,2018-19,Lincoln - Hanscom Primary,01570006, 1.5, .5, .0, .0, .0, .0, 2.0,305,152.5 6.992340425531915,5,a-sust-i4,2018-19,Lincoln - Lincoln School,01570025, 1.3, 1.7, 1.7, .0, .0, .0, 4.7,592,125.95744680851064 @@ -10032,7 +10032,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.964,5,a-sust-i4,2018-19,Lowell - Abraham Lincoln,01600020, 1.2, .8, .0, .0, .0, .0, 2.0,509,254.5 6.1856,5,a-sust-i4,2018-19,Lowell - B.F. Butler Middle School,01600310, 0.0, .5, 1.6, .0, .4, .0, 2.5,567,226.8 6.104,5,a-sust-i4,2018-19,Lowell - Bartlett Community Partnership,01600090, 0.8, .6, .6, .0, .0, .0, 2.0,474,237.0 --Infinity,1,a-sust-i4,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity +NA,NA,a-sust-i4,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity 5.956,5,a-sust-i4,2018-19,Lowell - Charles W Morey,01600030, 1.2, .8, .0, .0, .0, .0, 2.0,511,255.5 5.964,5,a-sust-i4,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 1.2, .8, .0, .0, .0, .0, 2.0,509,254.5 6.776888888888888,5,a-sust-i4,2018-19,Lowell - Dr An Wang School,01600345, 0.0, .9, 3.1, .0, .5, .0, 4.5,688,152.88888888888889 @@ -10063,7 +10063,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.124210526315789,5,a-sust-i4,2018-19,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 3.8, .0, .0, 3.8,891,234.47368421052633 5.56,5,a-sust-i4,2018-19,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 2.0, .0, .0, .0, 2.0,610,305.0 6.516,5,a-sust-i4,2018-19,Ludlow - Veterans Park Elementary,01610023, 0.0, 2.0, .0, .0, .0, .0, 2.0,371,185.5 --Infinity,1,a-sust-i4,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,8,Infinity +NA,NA,a-sust-i4,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,8,Infinity 5.71,5,a-sust-i4,2018-19,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .5, 1.1, .0, 1.6,458,286.25 6.570909090909091,5,a-sust-i4,2018-19,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.2, .0, .0, .0, 2.2,393,178.63636363636363 4.656,4.66,a-sust-i4,2018-19,Lunenburg - Lunenburg Primary School,01620010, 0.0, .0, .0, .0, 1.0, .0, 1.0,418,418.0 @@ -10078,7 +10078,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.58909090909091,5,a-sust-i4,2018-19,Lynn - E J Harrington,01630045, 1.3, 1.0, .0, .0, .0, .0, 2.2,663,301.3636363636363 5.876363636363636,5,a-sust-i4,2018-19,Lynn - Early Childhood Center,01630004, 1.1, .0, .0, .0, .0, .0, 1.1,292,265.45454545454544 6.308571428571429,5,a-sust-i4,2018-19,Lynn - Edward A Sisson,01630095, 1.0, 1.1, .0, .0, .0, .0, 2.1,444,211.42857142857142 --Infinity,1,a-sust-i4,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 5.63,5,a-sust-i4,2018-19,Lynn - Hood,01630055, 0.6, 1.0, .0, .0, .0, .0, 1.6,474,296.25 5.694545454545455,5,a-sust-i4,2018-19,Lynn - Ingalls,01630060, 0.9, 1.3, .0, .0, .0, .0, 2.2,634,288.18181818181813 5.929411764705883,5,a-sust-i4,2018-19,Lynn - Julia F Callahan,01630030, 0.8, .9, .0, .0, .0, .0, 1.7,440,258.8235294117647 @@ -10097,15 +10097,15 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.264,5,a-sust-i4,2018-19,Lynnfield - Huckleberry Hill,01640010, 1.1, .9, .0, .0, .0, .0, 2.0,434,217.0 6.64,5,a-sust-i4,2018-19,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, 3.7, .0, .0, 3.7,629,170.0 5.344,5,a-sust-i4,2018-19,Lynnfield - Lynnfield Middle School,01640405, 0.0, .6, 1.4, .0, .0, .0, 2.0,664,332.0 --Infinity,1,a-sust-i4,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity +NA,NA,a-sust-i4,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity 6.272,5,a-sust-i4,2018-19,Lynnfield - Summer Street,01640020, 1.2, .8, .0, .0, .0, .0, 2.0,432,216.0 5.43578947368421,5,a-sust-i4,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, .0, .0, .8, 3.0, .0, 3.8,1218,320.5263157894737 --Infinity,1,a-sust-i4,2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity +NA,NA,a-sust-i4,2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,98,Infinity 5.324444444444445,5,a-sust-i4,2018-19,Malden - Beebe,01650003, 1.3, .9, .6, .0, .0, .0, 2.7,903,334.4444444444444 5.906285714285714,5,a-sust-i4,2018-19,Malden - Ferryway,01650013, 1.2, 1.2, 1.1, .0, .0, .0, 3.5,916,261.7142857142857 6.2112,5,a-sust-i4,2018-19,Malden - Forestdale,01650027, 0.7, .8, 1.0, .0, .0, .0, 2.5,559,223.6 5.2703999999999995,5,a-sust-i4,2018-19,Malden - Linden,01650047, 0.6, .8, 1.1, .0, .0, .0, 2.5,853,341.2 --Infinity,1,a-sust-i4,2018-19,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,319,Infinity +NA,NA,a-sust-i4,2018-19,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,319,Infinity 5.048,5,a-sust-i4,2018-19,Malden - Malden High,01650505, 0.0, .0, .0, 5.0, .0, .0, 5.0,1845,369.0 6.1296,5,a-sust-i4,2018-19,Malden - Salemwood,01650057, 1.2, 1.6, 2.3, .0, .0, .0, 5.0,1169,233.8 6.731428571428571,5,a-sust-i4,2018-19,Manchester Essex Regional - Essex Elementary,06980020, 0.7, .7, .0, .0, .0, .0, 1.4,222,158.57142857142858 @@ -10116,7 +10116,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.7973333333333334,5,a-sust-i4,2018-19,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 6.0, .0, .0, .0, 6.0,902,150.33333333333334 6.483809523809524,5,a-sust-i4,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.2, .0, .0, .0, .0, 4.2,796,189.52380952380952 6.63027027027027,5,a-sust-i4,2018-19,Mansfield - Mansfield High,01670505, 0.0, .0, .0, 7.4, .0, .0, 7.4,1267,171.2162162162162 --Infinity,1,a-sust-i4,2018-19,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity +NA,NA,a-sust-i4,2018-19,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity 6.7,5,a-sust-i4,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, .0, .0, .8, .0, .0, 0.8,130,162.5 6.654545454545455,5,a-sust-i4,2018-19,Marblehead - Glover,01680020, 1.6, .6, .0, .0, .0, .0, 2.2,370,168.18181818181816 6.765714285714285,5,a-sust-i4,2018-19,Marblehead - L H Coffin,01680010, 0.9, .5, .0, .0, .0, .0, 1.4,216,154.2857142857143 @@ -10128,7 +10128,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.808,5,a-sust-i4,2018-19,Marion - Sippican,01690005, 0.8, 1.5, .7, .0, .0, .0, 3.0,447,149.0 6.695813953488372,5,a-sust-i4,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 2.2, 6.4, .0, .0, .0, 8.6,1402,163.02325581395348 5.04,5,a-sust-i4,2018-19,Marlborough - Charles Jaworek School,01700030, 1.3, .8, .0, .0, .0, .0, 2.1,777,370.0 --Infinity,1,a-sust-i4,2018-19,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity +NA,NA,a-sust-i4,2018-19,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity 5.5073684210526315,5,a-sust-i4,2018-19,Marlborough - Francis J Kane,01700008, 1.1, .8, .0, .0, .0, .0, 1.9,592,311.57894736842104 6.753623188405797,5,a-sust-i4,2018-19,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 6.9, .0, .0, 6.9,1075,155.79710144927535 5.173333333333334,5,a-sust-i4,2018-19,Marlborough - Richer,01700025, 1.1, .7, .0, .0, .0, .0, 1.8,636,353.3333333333333 @@ -10197,7 +10197,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.496,5,a-sust-i4,2018-19,Milford - Brookside,01850065, 2.5, .0, .0, .0, .0, .0, 2.5,470,188.0 6.56,5,a-sust-i4,2018-19,Milford - Memorial,01850010, 2.5, .0, .0, .0, .0, .0, 2.5,450,180.0 5.075,5,a-sust-i4,2018-19,Milford - Milford High,01850505, 0.0, .0, .0, 3.0, .0, .2, 3.2,1170,365.625 --Infinity,1,a-sust-i4,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,161,Infinity +NA,NA,a-sust-i4,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,161,Infinity 6.521428571428571,5,a-sust-i4,2018-19,Milford - Stacy Middle,01850305, 0.0, .0, 5.6, .0, .0, .0, 5.6,1035,184.82142857142858 6.348333333333333,5,a-sust-i4,2018-19,Milford - Woodland,01850090, 0.0, 4.8, .0, .0, .0, .0, 4.8,991,206.45833333333334 5.816,5,a-sust-i4,2018-19,Millbury - Elmwood Street,01860017, 1.5, .5, .0, .0, .0, .0, 2.0,546,273.0 @@ -10310,7 +10310,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.463157894736842,5,a-sust-i4,2018-19,Newton - Lincoln-Eliot,02070070, 1.0, .9, .0, .0, .0, .0, 1.9,365,192.10526315789474 6.052,5,a-sust-i4,2018-19,Newton - Mason-Rice,02070080, 0.8, 1.2, .0, .0, .0, .0, 2.0,487,243.5 6.144,5,a-sust-i4,2018-19,Newton - Memorial Spaulding,02070105, 0.9, 1.1, .0, .0, .0, .0, 2.0,464,232.0 --Infinity,1,a-sust-i4,2018-19,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,212,Infinity +NA,NA,a-sust-i4,2018-19,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,212,Infinity 6.069090909090909,5,a-sust-i4,2018-19,Newton - Newton North High,02070505, 0.0, .0, .0, 8.8, .0, .0, 8.8,2124,241.36363636363635 6.4075,5,a-sust-i4,2018-19,Newton - Newton South High,02070510, 0.0, .0, .0, 9.6, .0, .0, 9.6,1911,199.0625 6.6,5,a-sust-i4,2018-19,Newton - Oak Hill Middle,02070320, 0.0, .0, 3.6, .0, .0, .0, 3.6,630,175.0 @@ -10320,12 +10320,12 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.202105263157895,5,a-sust-i4,2018-19,Newton - Zervas,02070130, 1.0, .8, .0, .0, .0, .0, 1.9,427,224.73684210526318 6.568275862068965,5,a-sust-i4,2018-19,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.3, .6, .0, .0, .0, 2.9,519,178.9655172413793 5.04,5,a-sust-i4,2018-19,Norfolk - H Olive Day,02080015, 1.2, .0, .0, .0, .0, .0, 1.2,444,370.0 --Infinity,1,a-sust-i4,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,557,Infinity +NA,NA,a-sust-i4,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,557,Infinity 7.241481481481482,5,a-sust-i4,2018-19,North Adams - Brayton,02090035, 0.9, 1.1, .4, .0, .0, .3, 2.7,256,94.81481481481481 6.803636363636364,5,a-sust-i4,2018-19,North Adams - Colegrove Park Elementary,02090008, 0.9, .9, .3, .0, .1, .1, 2.2,329,149.54545454545453 6.925128205128205,5,a-sust-i4,2018-19,North Adams - Drury High,02090505, 0.0, .0, .0, 1.2, 2.6, .1, 3.9,524,134.35897435897436 7.069090909090909,5,a-sust-i4,2018-19,North Adams - Greylock,02090015, 0.9, .9, .3, .0, .1, .1, 2.2,256,116.36363636363636 --Infinity,1,a-sust-i4,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, .0, .0, .0, .0, .0, 0.0,471,Infinity +NA,NA,a-sust-i4,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, .0, .0, .0, .0, .0, 0.0,471,Infinity 5.7835294117647065,5,a-sust-i4,2018-19,North Andover - Annie L Sargent School,02110018, 0.7, 1.0, .0, .0, .0, .0, 1.7,471,277.05882352941177 6.205,5,a-sust-i4,2018-19,North Andover - Atkinson,02110001, 0.6, 1.0, .0, .0, .0, .0, 1.6,359,224.375 6.192941176470589,5,a-sust-i4,2018-19,North Andover - Franklin,02110010, 0.7, 1.0, .0, .0, .0, .0, 1.7,384,225.88235294117646 @@ -10338,7 +10338,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.024,5,a-sust-i4,2018-19,North Attleborough - Falls,02120010, 0.5, .5, .0, .0, .0, .0, 1.0,247,247.0 5.544,5,a-sust-i4,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.9, 1.1, .0, .0, .0, .0, 2.0,614,307.0 6.191020408163266,5,a-sust-i4,2018-19,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 4.9, .0, .0, 4.9,1108,226.1224489795918 --Infinity,1,a-sust-i4,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,134,Infinity +NA,NA,a-sust-i4,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,134,Infinity 5.064,5,a-sust-i4,2018-19,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, 3.0, .0, .0, .0, 3.0,1101,367.0 5.936,5,a-sust-i4,2018-19,North Attleborough - Roosevelt Avenue,02120015, 0.5, .5, .0, .0, .0, .0, 1.0,258,258.0 5.472,5,a-sust-i4,2018-19,North Brookfield - North Brookfield Elementary,02150015, 0.4, .4, .1, .0, .0, .1, 1.0,316,316.0 @@ -10348,7 +10348,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.597333333333333,5,a-sust-i4,2018-19,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.0, 2.0, .0, .0, .0, 3.0,526,175.33333333333334 6.698039215686275,5,a-sust-i4,2018-19,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .0, 5.1, .0, .0, 5.1,830,162.7450980392157 6.296,5,a-sust-i4,2018-19,North Middlesex - Spaulding Memorial,07350005, 1.2, .8, .0, .0, .0, .0, 2.0,426,213.0 --Infinity,1,a-sust-i4,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 5.856,5,a-sust-i4,2018-19,North Middlesex - Varnum Brook,07350035, 1.2, .8, .0, .0, .0, .0, 2.0,536,268.0 6.564444444444445,5,a-sust-i4,2018-19,North Reading - E Ethel Little School,02170003, 0.7, 1.1, .0, .0, .0, .0, 1.8,323,179.44444444444443 6.133333333333333,5,a-sust-i4,2018-19,North Reading - J Turner Hood,02170010, 0.6, .9, .0, .0, .0, .0, 1.5,350,233.33333333333334 @@ -10372,8 +10372,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.323076923076923,5,a-sust-i4,2018-19,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 2.6, .0, .0, 2.6,545,209.6153846153846 6.141333333333333,5,a-sust-i4,2018-19,Northbridge - Northbridge Middle,02140305, 0.0, .6, 2.4, .0, .0, .0, 3.0,697,232.33333333333334 6.108,5,a-sust-i4,2018-19,Northbridge - W Edward Balmer,02140001, 0.6, 1.4, .0, .0, .0, .0, 2.0,473,236.5 --Infinity,1,a-sust-i4,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1249,Infinity --Infinity,1,a-sust-i4,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,496,Infinity +NA,NA,a-sust-i4,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1249,Infinity +NA,NA,a-sust-i4,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,496,Infinity 4.18,4.18,a-sust-i4,2018-19,Norton - Henri A. Yelle,02180060, 0.0, .8, .0, .0, .0, .0, 0.8,382,477.5 4.450909090909091,4.45,a-sust-i4,2018-19,Norton - J C Solmonese,02180015, 0.8, .3, .0, .0, .0, .0, 1.1,488,443.6363636363636 5.644444444444444,5,a-sust-i4,2018-19,Norton - L G Nourse Elementary,02180010, 0.7, .2, .0, .0, .0, .0, 0.9,265,294.44444444444446 @@ -10392,7 +10392,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.88,5,a-sust-i4,2018-19,Norwood - John P Oldham,02200020, 0.4, .7, .0, .0, .0, .6, 1.7,238,140.0 6.454901960784314,5,a-sust-i4,2018-19,Norwood - Norwood High,02200505, 0.0, .0, .0, 5.1, .0, .0, 5.1,985,193.1372549019608 6.87741935483871,5,a-sust-i4,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.8, .8, .4, .0, .6, .5, 3.1,435,140.32258064516128 --Infinity,1,a-sust-i4,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,550,Infinity +NA,NA,a-sust-i4,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,550,Infinity 5.703703703703704,5,a-sust-i4,2018-19,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 1.6, 1.1, .0, 2.7,775,287.037037037037 6.834666666666667,5,a-sust-i4,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 3.0, .0, .0, .0, 3.0,437,145.66666666666666 2.666666666666666,2.67,a-sust-i4,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.2, .1, .0, .0, .0, .0, 0.3,200,666.6666666666667 @@ -10403,7 +10403,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.306666666666666,5,a-sust-i4,2018-19,Oxford - Clara Barton,02260005, 0.4, .7, .0, .0, .0, .0, 1.2,404,336.6666666666667 6.532413793103449,5,a-sust-i4,2018-19,Oxford - Oxford High,02260505, 0.0, .0, .9, 1.9, .0, .0, 2.9,532,183.44827586206898 6.288,5,a-sust-i4,2018-19,Oxford - Oxford Middle,02260405, 0.0, .8, 1.2, .0, .0, .0, 2.0,428,214.0 --Infinity,1,a-sust-i4,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,19,Infinity +NA,NA,a-sust-i4,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,19,Infinity 6.250666666666667,5,a-sust-i4,2018-19,Palmer - Old Mill Pond,02270008, 1.5, 1.5, .0, .0, .0, .0, 3.0,656,218.66666666666666 6.934901960784313,5,a-sust-i4,2018-19,Palmer - Palmer High,02270505, 0.0, .0, 1.5, 3.6, .0, .0, 5.1,679,133.1372549019608 -43.84,1,a-sust-i4,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, .0, .0, .1, .0, .0, 0.1,648,6480.0 @@ -10431,9 +10431,9 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.231111111111112,5,a-sust-i4,2018-19,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, 1.8, .0, .0, .0, 1.8,398,221.11111111111111 6.15,5,a-sust-i4,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .1, .3, .0, 2.7, 3.2,740,231.25 7.703225806451613,5,a-sust-i4,2018-19,Petersham - Petersham Center,02340005, 0.1, .0, .0, .0, .0, 3.0, 3.1,115,37.096774193548384 --Infinity,1,a-sust-i4,2018-19,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,119,Infinity --Infinity,1,a-sust-i4,2018-19,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,198,Infinity --Infinity,1,a-sust-i4,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity +NA,NA,a-sust-i4,2018-19,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,119,Infinity +NA,NA,a-sust-i4,2018-19,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,198,Infinity +NA,NA,a-sust-i4,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity 6.892631578947368,5,a-sust-i4,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 2.3, 1.2, .9, .3, .9, .0, 5.7,789,138.42105263157893 6.552,5,a-sust-i4,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, .0, .5, .0, 1.5, .0, 2.0,362,181.0 6.182857142857143,5,a-sust-i4,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.2, .4, .1, .0, .0, .0, 0.7,159,227.14285714285717 @@ -10464,7 +10464,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.748235294117647,5,a-sust-i4,2018-19,Plymouth - Manomet Elementary,02390015, 0.9, .8, .0, .0, .0, .0, 1.7,266,156.47058823529412 6.6075,5,a-sust-i4,2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 1.4, 1.8, .0, .0, .0, .0, 3.2,557,174.0625 6.378461538461539,5,a-sust-i4,2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 5.2, .0, .0, .0, 5.2,1054,202.69230769230768 --Infinity,1,a-sust-i4,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,155,Infinity +NA,NA,a-sust-i4,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,155,Infinity 6.221754385964912,5,a-sust-i4,2018-19,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 5.7, .0, .0, 5.7,1267,222.28070175438594 6.315294117647059,5,a-sust-i4,2018-19,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 5.1, .0, .0, 5.1,1074,210.58823529411765 6.435555555555555,5,a-sust-i4,2018-19,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 3.6, .0, .0, .0, 3.6,704,195.55555555555554 @@ -10484,7 +10484,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.448,4.45,a-sust-i4,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, .5, .0, .0, .0, 0.5,222,444.0 6.26,5,a-sust-i4,2018-19,Quaboag Regional - Warren Elementary,07780005, 0.9, .9, .3, .0, .0, .0, 2.0,435,217.5 6.421333333333333,5,a-sust-i4,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.6, .6, .2, .0, .0, .0, 1.5,296,197.33333333333334 --Infinity,1,a-sust-i4,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,177,Infinity +NA,NA,a-sust-i4,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,177,Infinity 5.29,5,a-sust-i4,2018-19,Quincy - Atherton Hough,02430040, 0.3, .5, .0, .0, .0, .0, 0.8,271,338.75 6.2912,5,a-sust-i4,2018-19,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.5, .0, .0, .0, 2.5,534,213.6 5.416,5,a-sust-i4,2018-19,Quincy - Beechwood Knoll Elementary,02430020, 0.5, .5, .0, .0, .0, .0, 1.0,323,323.0 @@ -10503,9 +10503,9 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.803333333333333,5,a-sust-i4,2018-19,Quincy - South West Middle School,02430320, 0.0, .7, 1.7, .0, .0, .0, 2.4,359,149.58333333333334 5.483636363636364,5,a-sust-i4,2018-19,Quincy - Squantum,02430095, 0.5, .6, .0, .0, .0, .0, 1.1,346,314.5454545454545 5.004444444444444,5,a-sust-i4,2018-19,Quincy - Wollaston School,02430110, 0.4, .6, .0, .0, .0, .0, 0.9,337,374.44444444444446 --Infinity,1,a-sust-i4,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity +NA,NA,a-sust-i4,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity 6.338666666666667,5,a-sust-i4,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, .0, .6, .1, 2.3, .0, 3.0,623,207.66666666666666 --Infinity,1,a-sust-i4,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity +NA,NA,a-sust-i4,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity 6.378666666666667,5,a-sust-i4,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0.8, .8, .0, .0, .0, .0, 1.5,304,202.66666666666666 6.32,5,a-sust-i4,2018-19,Randolph - J F Kennedy Elementary,02440018, 1.2, .9, .0, .0, .0, .0, 2.1,441,210.0 7.094,5,a-sust-i4,2018-19,Randolph - Margaret L Donovan,02440015, 0.9, 3.1, .0, .0, .0, .0, 4.0,453,113.25 @@ -10517,7 +10517,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.486666666666666,5,a-sust-i4,2018-19,Reading - Birch Meadow,02460005, 0.5, .6, .0, .0, .0, .0, 1.2,377,314.1666666666667 5.003636363636364,5,a-sust-i4,2018-19,Reading - J Warren Killam,02460017, 0.5, .6, .0, .0, .0, .0, 1.1,412,374.5454545454545 5.426666666666666,5,a-sust-i4,2018-19,Reading - Joshua Eaton,02460010, 0.4, .7, .0, .0, .0, .0, 1.2,386,321.6666666666667 --Infinity,1,a-sust-i4,2018-19,Reading - RISE PreSchool,02460001, 0.0, .0, .0, .0, .0, .0, 0.0,115,Infinity +NA,NA,a-sust-i4,2018-19,Reading - RISE PreSchool,02460001, 0.0, .0, .0, .0, .0, .0, 0.0,115,Infinity 6.2128571428571435,5,a-sust-i4,2018-19,Reading - Reading Memorial High,02460505, 0.0, .0, .0, 5.6, .0, .0, 5.6,1251,223.39285714285717 6.7844444444444445,5,a-sust-i4,2018-19,Reading - Walter S Parker Middle,02460310, 0.0, .0, 3.6, .0, .0, .0, 3.6,547,151.94444444444443 4.95,4.95,a-sust-i4,2018-19,Reading - Wood End Elementary School,02460020, 0.4, .5, .0, .0, .0, .0, 0.8,305,381.25 @@ -10551,10 +10551,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.1072,5,a-sust-i4,2018-19,Salem - Carlton,02580015, 1.0, 1.5, .0, .0, .0, .0, 2.5,279,111.6 7.175757575757576,5,a-sust-i4,2018-19,Salem - Collins Middle,02580305, 0.0, .0, 6.6, .0, .0, .0, 6.6,680,103.03030303030303 6.857142857142857,5,a-sust-i4,2018-19,Salem - Horace Mann Laboratory,02580030, 0.9, 1.3, .0, .0, .0, .0, 2.1,300,142.85714285714286 --Infinity,1,a-sust-i4,2018-19,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,52,Infinity --Infinity,1,a-sust-i4,2018-19,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2018-19,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,52,Infinity +NA,NA,a-sust-i4,2018-19,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 6.642962962962963,5,a-sust-i4,2018-19,Salem - Salem High,02580505, 0.0, .0, .0, 5.4, .0, .0, 5.4,916,169.62962962962962 --Infinity,1,a-sust-i4,2018-19,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity +NA,NA,a-sust-i4,2018-19,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity 6.785185185185186,5,a-sust-i4,2018-19,Salem - Saltonstall School,02580050, 0.4, 1.3, .9, .0, .0, .0, 2.7,410,151.85185185185185 6.218461538461539,5,a-sust-i4,2018-19,Salem - Witchcraft Heights,02580070, 1.1, 1.6, .0, .0, .0, .0, 2.6,579,222.69230769230768 6.844705882352941,5,a-sust-i4,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, .0, 1.3, 1.1, 1.0, .0, 3.4,491,144.41176470588235 @@ -10583,16 +10583,16 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.4622222222222225,5,a-sust-i4,2018-19,Sharon - Cottage Street,02660005, 0.8, 1.9, .0, .0, .0, .0, 2.7,519,192.2222222222222 5.96,5,a-sust-i4,2018-19,Sharon - East Elementary,02660010, 0.8, 1.2, .0, .0, .0, .0, 2.0,510,255.0 6.3476923076923075,5,a-sust-i4,2018-19,Sharon - Heights Elementary,02660015, 0.8, 1.8, .0, .0, .0, .0, 2.6,537,206.53846153846152 --Infinity,1,a-sust-i4,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity +NA,NA,a-sust-i4,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity 6.661492537313433,5,a-sust-i4,2018-19,Sharon - Sharon High,02660505, 0.0, .0, .0, .3, 6.5, .0, 6.7,1121,167.3134328358209 6.782857142857143,5,a-sust-i4,2018-19,Sharon - Sharon Middle,02660305, 0.0, .0, 5.6, .0, .0, .0, 5.6,852,152.14285714285714 --Infinity,1,a-sust-i4,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1294,Infinity +NA,NA,a-sust-i4,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1294,Infinity 6.261052631578948,5,a-sust-i4,2018-19,Sherborn - Pine Hill,02690010, 0.9, 1.0, .0, .0, .0, .0, 1.9,413,217.3684210526316 5.06,5,a-sust-i4,2018-19,Shrewsbury - Beal School,02710005, 0.8, .0, .0, .0, .0, .0, 0.8,294,367.5 6.075294117647059,5,a-sust-i4,2018-19,Shrewsbury - Calvin Coolidge,02710015, 0.9, .8, .0, .0, .0, .0, 1.7,409,240.58823529411765 5.7846153846153845,5,a-sust-i4,2018-19,Shrewsbury - Floral Street School,02710020, 1.0, 1.7, .0, .0, .0, .0, 2.6,720,276.9230769230769 5.563636363636364,5,a-sust-i4,2018-19,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 3.3, .0, .0, .0, 3.3,1005,304.54545454545456 --Infinity,1,a-sust-i4,2018-19,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,242,Infinity +NA,NA,a-sust-i4,2018-19,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,242,Infinity 5.871111111111111,5,a-sust-i4,2018-19,Shrewsbury - Sherwood Middle School,02710305, 0.0, 1.6, 1.9, .0, .0, .0, 3.6,958,266.1111111111111 5.775757575757576,5,a-sust-i4,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, .0, .0, .3, 6.3, .0, 6.6,1835,278.03030303030306 5.92,5,a-sust-i4,2018-19,Shrewsbury - Spring Street,02710035, 0.7, .7, .0, .0, .0, .0, 1.4,364,260.0 @@ -10619,11 +10619,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.49142857142857,5,a-sust-i4,2018-19,Somerville - Winter Hill Community,02740120, 0.3, .4, .8, .0, .0, .0, 1.4,439,313.5714285714286 6.477333333333333,5,a-sust-i4,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0.0, .8, 2.3, .0, .0, .0, 3.0,571,190.33333333333334 6.264,5,a-sust-i4,2018-19,South Hadley - Mosier,02780020, 0.7, 1.3, .0, .0, .0, .0, 2.0,434,217.0 --Infinity,1,a-sust-i4,2018-19,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity +NA,NA,a-sust-i4,2018-19,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,352,Infinity 6.143333333333333,5,a-sust-i4,2018-19,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .0, 2.4, .0, 2.4,557,232.08333333333334 2.0,2.0,a-sust-i4,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, .9, .0, .1, 1.0,750,750.0 7.145454545454546,5,a-sust-i4,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 1.9, 1.9, 3.7, 1.2, .0, .0, 8.8,940,106.81818181818181 --Infinity,1,a-sust-i4,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,645,Infinity +NA,NA,a-sust-i4,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,645,Infinity 5.996,5,a-sust-i4,2018-19,Southampton - William E Norris,02750005, 0.9, .8, .3, .0, .0, .0, 2.0,501,250.5 6.28,5,a-sust-i4,2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 0.4, .7, .0, .0, .0, .0, 1.2,258,215.0 7.206153846153846,5,a-sust-i4,2018-19,Southborough - Margaret A Neary,02760020, 0.0, 2.6, .0, .0, .0, .0, 2.6,258,99.23076923076923 @@ -10640,7 +10640,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.46,5,a-sust-i4,2018-19,Southern Berkshire - New Marlborough Central,07650018, 0.3, .1, .0, .0, .0, .0, 0.4,77,192.5 7.48,5,a-sust-i4,2018-19,Southern Berkshire - South Egremont,07650030, 0.2, .0, .0, .0, .0, .0, 0.2,13,65.0 6.949090909090909,5,a-sust-i4,2018-19,Southern Berkshire - Undermountain,07650035, 0.6, .9, .7, .0, .0, .0, 2.2,289,131.36363636363635 --Infinity,1,a-sust-i4,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1131,Infinity +NA,NA,a-sust-i4,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1131,Infinity 6.778666666666667,5,a-sust-i4,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 2.2, .8, .0, .0, .0, 3.0,458,152.66666666666666 6.8133333333333335,5,a-sust-i4,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, 1.4, 3.5, .0, .0, 4.8,712,148.33333333333334 6.636,5,a-sust-i4,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, .0, .0, .0, .0, .0, 2.0,341,170.5 @@ -10657,14 +10657,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.137142857142857,5,a-sust-i4,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, 1.3, .0, .2, .0, 1.4,326,232.85714285714286 7.499636363636364,5,a-sust-i4,2018-19,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 3.0, 1.0, 1.2, .3, 5.5,344,62.54545454545455 6.576,5,a-sust-i4,2018-19,Springfield - Daniel B Brunton,02810035, 0.9, 1.6, .0, .0, .0, .0, 2.5,445,178.0 --Infinity,1,a-sust-i4,2018-19,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,155,Infinity +NA,NA,a-sust-i4,2018-19,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,155,Infinity 4.783157894736842,4.78,a-sust-i4,2018-19,Springfield - Edward P. Boland School,02810010, 0.6, 1.0, .0, .0, .3, .0, 1.9,764,402.10526315789474 6.656,5,a-sust-i4,2018-19,Springfield - Elias Brookings,02810030, 0.6, .9, .0, .0, .5, .0, 2.0,336,168.0 2.2,2.2,a-sust-i4,2018-19,Springfield - Forest Park Middle,02810325, 0.0, .0, 1.0, .0, .0, .0, 1.0,725,725.0 5.408,5,a-sust-i4,2018-19,Springfield - Frank H Freedman,02810075, 0.5, .5, .0, .0, .0, .0, 1.0,324,324.0 5.5,5,a-sust-i4,2018-19,Springfield - Frederick Harris,02810080, 0.8, 1.0, .0, .0, .2, .0, 2.0,625,312.5 --Infinity,1,a-sust-i4,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity --Infinity,1,a-sust-i4,2018-19,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,32,Infinity +NA,NA,a-sust-i4,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity +NA,NA,a-sust-i4,2018-19,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,32,Infinity 5.152,5,a-sust-i4,2018-19,Springfield - German Gerena Community School,02810195, 0.6, .8, .0, .0, .5, .0, 2.0,712,356.0 6.914285714285714,5,a-sust-i4,2018-19,Springfield - Glenwood,02810065, 0.7, 1.0, .0, .0, .3, .0, 2.1,285,135.71428571428572 7.025185185185185,5,a-sust-i4,2018-19,Springfield - Glickman Elementary,02810068, 1.1, 1.1, .0, .0, .5, .0, 2.7,329,121.85185185185185 @@ -10677,7 +10677,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.36,5,a-sust-i4,2018-19,Springfield - John J Duggan Middle,02810320, 0.0, .0, .0, 1.9, .0, .3, 2.3,759,330.0 6.744,5,a-sust-i4,2018-19,Springfield - Kensington International School,02810110, 0.8, 1.2, .0, .0, .0, .0, 2.0,314,157.0 6.872,5,a-sust-i4,2018-19,Springfield - Liberty,02810115, 0.8, 1.2, .0, .0, .0, .0, 2.0,282,141.0 --Infinity,1,a-sust-i4,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,9,Infinity +NA,NA,a-sust-i4,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,9,Infinity 6.772307692307693,5,a-sust-i4,2018-19,Springfield - Lincoln,02810120, 0.9, 1.7, .0, .0, .0, .0, 2.6,399,153.46153846153845 6.048571428571428,5,a-sust-i4,2018-19,Springfield - M Marcus Kiley Middle,02810330, 0.0, .0, 2.8, .0, .0, .0, 2.8,683,243.92857142857144 4.336,4.34,a-sust-i4,2018-19,Springfield - Margaret C Ells,02810060, 0.5, .0, .0, .0, .0, .0, 0.5,229,458.0 @@ -10687,7 +10687,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.252,5,a-sust-i4,2018-19,Springfield - Mary O Pottenger,02810145, 0.8, 1.2, .0, .0, .0, .0, 2.0,437,218.5 6.778378378378378,5,a-sust-i4,2018-19,Springfield - Milton Bradley School,02810023, 1.3, 1.9, .0, .0, .4, .0, 3.7,565,152.7027027027027 6.262857142857143,5,a-sust-i4,2018-19,Springfield - Rebecca M Johnson,02810055, 1.2, 1.5, .0, .0, .8, .0, 3.5,760,217.14285714285714 --Infinity,1,a-sust-i4,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,321,Infinity +NA,NA,a-sust-i4,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,321,Infinity 4.348387096774193,4.35,a-sust-i4,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, .0, .0, 2.3, .8, .0, 3.1,1415,456.4516129032258 5.04,5,a-sust-i4,2018-19,Springfield - STEM Middle Academy,02810350, 0.0, .0, .8, .0, .0, .0, 0.8,296,370.0 6.623157894736842,5,a-sust-i4,2018-19,Springfield - Samuel Bowles,02810020, 0.7, 1.2, .0, .0, .0, .0, 1.9,327,172.10526315789474 @@ -10700,11 +10700,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.728888888888888,5,a-sust-i4,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 0.2, .0, .0, .0, 1.6, .0, 1.8,61,33.888888888888886 7.208,5,a-sust-i4,2018-19,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .3, .7, .0, 1.0,99,99.0 7.51,5,a-sust-i4,2018-19,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, .8, .0, .0, .0, 0.8,49,61.25 --Infinity,1,a-sust-i4,2018-19,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +NA,NA,a-sust-i4,2018-19,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity 6.586666666666667,5,a-sust-i4,2018-19,Springfield - Sumner Avenue,02810160, 0.9, 1.4, .0, .0, .7, .0, 3.0,530,176.66666666666666 5.706666666666666,5,a-sust-i4,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.5, .8, .0, .1, 2.4,688,286.6666666666667 6.272,5,a-sust-i4,2018-19,Springfield - Thomas M Balliet,02810015, 0.7, .8, .0, .0, .0, .0, 1.5,324,216.0 --Infinity,1,a-sust-i4,2018-19,Springfield - Van Sickle Academy,02810485, 0.0, .0, .0, .0, .0, .0, 0.0,260,Infinity +NA,NA,a-sust-i4,2018-19,Springfield - Van Sickle Academy,02810485, 0.0, .0, .0, .0, .0, .0, 0.0,260,Infinity 6.936,5,a-sust-i4,2018-19,Springfield - Warner,02810180, 0.8, 1.2, .0, .0, .0, .0, 2.0,266,133.0 6.8,5,a-sust-i4,2018-19,Springfield - Washington,02810185, 1.4, 1.4, .0, .0, .0, .0, 2.8,420,150.0 6.503333333333333,5,a-sust-i4,2018-19,Springfield - White Street,02810190, 0.9, 1.4, .0, .0, .0, .0, 2.4,449,187.08333333333334 @@ -10715,7 +10715,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.43764705882353,5,a-sust-i4,2018-19,Stoneham - South,02840030, 1.1, .6, .0, .0, .0, .0, 1.7,332,195.29411764705884 6.340571428571429,5,a-sust-i4,2018-19,Stoneham - Stoneham Central Middle School,02840405, 0.0, .7, 2.8, .0, .0, .0, 3.5,726,207.42857142857142 6.591578947368421,5,a-sust-i4,2018-19,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 3.8, .0, 3.8,669,176.05263157894737 --Infinity,1,a-sust-i4,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity +NA,NA,a-sust-i4,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,91,Infinity 6.955294117647059,5,a-sust-i4,2018-19,Stoughton - Helen Hansen Elementary,02850010, 0.6, .6, .0, .0, .5, .0, 1.7,222,130.58823529411765 6.758260869565217,5,a-sust-i4,2018-19,Stoughton - Joseph H Gibbons,02850025, 0.9, .9, .0, .0, .5, .0, 2.3,357,155.21739130434784 6.738181818181818,5,a-sust-i4,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.9, .8, .0, .0, .5, .0, 2.2,347,157.72727272727272 @@ -10749,11 +10749,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -3.429333333333334,1,a-sust-i4,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.3, .3, .4, .5, .0, .0, 1.5,2143,1428.6666666666667 6.421333333333333,5,a-sust-i4,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,592,197.33333333333334 6.665454545454546,5,a-sust-i4,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, 4.4, .0, .0, 4.4,734,166.8181818181818 --Infinity,1,a-sust-i4,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,486,Infinity +NA,NA,a-sust-i4,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,486,Infinity 5.5136,5,a-sust-i4,2018-19,Taunton - Benjamin Friedman Middle,02930315, 0.0, .8, 1.7, .0, .0, .0, 2.5,777,310.8 5.15764705882353,5,a-sust-i4,2018-19,Taunton - East Taunton Elementary,02930010, 0.9, .8, .0, .0, .0, .0, 1.7,604,355.29411764705884 4.445714285714286,4.45,a-sust-i4,2018-19,Taunton - Edmund Hatch Bennett,02930007, 0.4, .3, .0, .0, .0, .0, 0.7,311,444.28571428571433 --Infinity,1,a-sust-i4,2018-19,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,282,Infinity +NA,NA,a-sust-i4,2018-19,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,282,Infinity 5.3223529411764705,5,a-sust-i4,2018-19,Taunton - Elizabeth Pole,02930027, 1.0, .7, .0, .0, .0, .0, 1.7,569,334.70588235294116 5.234285714285714,5,a-sust-i4,2018-19,Taunton - H H Galligan,02930057, 0.4, .3, .0, .0, .0, .0, 0.7,242,345.7142857142857 4.777142857142857,4.78,a-sust-i4,2018-19,Taunton - Hopewell,02930035, 0.4, .3, .0, .0, .0, .0, 0.7,282,402.8571428571429 @@ -10761,7 +10761,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.647058823529412,5,a-sust-i4,2018-19,Taunton - Joseph C Chamberlain,02930008, 0.8, .9, .0, .0, .0, .0, 1.7,500,294.11764705882354 5.620869565217391,5,a-sust-i4,2018-19,Taunton - Joseph H Martin,02930042, 0.0, .8, 1.5, .0, .0, .0, 2.3,684,297.3913043478261 3.776,3.78,a-sust-i4,2018-19,Taunton - Mulcahey Elementary School,02930015, 0.6, .4, .0, .0, .0, .0, 1.0,528,528.0 --Infinity,1,a-sust-i4,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity +NA,NA,a-sust-i4,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,101,Infinity 4.819393939393939,4.82,a-sust-i4,2018-19,Taunton - Taunton High,02930505, 0.0, .0, 1.7, 3.9, 1.0, .0, 6.6,2624,397.5757575757576 5.232,5,a-sust-i4,2018-19,Tewksbury - Heath-Brook,02950010, 1.0, .0, .0, .0, .0, .0, 1.0,346,346.0 5.956,5,a-sust-i4,2018-19,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,511,255.5 @@ -10787,8 +10787,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.104,5,a-sust-i4,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.1, .9, .0, .0, .0, .0, 2.0,724,362.0 7.52,5,a-sust-i4,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0.2, .0, .0, .0, .8, .0, 1.0,60,60.0 7.16235294117647,5,a-sust-i4,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 0.8, .8, .5, .0, 1.1, .3, 3.4,356,104.70588235294117 --Infinity,1,a-sust-i4,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,703,Infinity --Infinity,1,a-sust-i4,2018-19,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity +NA,NA,a-sust-i4,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,703,Infinity +NA,NA,a-sust-i4,2018-19,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity 5.756,5,a-sust-i4,2018-19,Uxbridge - Taft Early Learning Center,03040005, 1.5, .5, .0, .0, .0, .0, 2.0,561,280.5 6.614117647058824,5,a-sust-i4,2018-19,Uxbridge - Uxbridge High,03040505, 0.0, .0, .6, 2.8, .0, .0, 3.4,589,173.23529411764707 6.592,5,a-sust-i4,2018-19,Uxbridge - Whitin Intermediate,03040405, 0.0, 1.2, 1.8, .0, .0, .0, 3.0,528,176.0 @@ -10797,7 +10797,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.7443478260869565,5,a-sust-i4,2018-19,Wachusett - Chocksett Middle School,07750315, 0.0, .6, 1.7, .0, .0, .0, 2.3,361,156.95652173913044 6.18,5,a-sust-i4,2018-19,Wachusett - Davis Hill Elementary,07750018, 1.1, .9, .0, .0, .0, .0, 2.0,455,227.5 6.084,5,a-sust-i4,2018-19,Wachusett - Dawson,07750020, 1.1, .9, .0, .0, .0, .0, 2.0,479,239.5 --Infinity,1,a-sust-i4,2018-19,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,154,Infinity +NA,NA,a-sust-i4,2018-19,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,154,Infinity 6.225,5,a-sust-i4,2018-19,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.6, .0, .0, .0, .0, 1.6,355,221.875 6.301176470588235,5,a-sust-i4,2018-19,Wachusett - Houghton Elementary,07750027, 1.0, .6, .0, .0, .0, .0, 1.7,361,212.35294117647058 6.084,5,a-sust-i4,2018-19,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,479,239.5 @@ -10807,7 +10807,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.468,5,a-sust-i4,2018-19,Wachusett - Thomas Prince,07750045, 0.3, .6, 1.0, .0, .0, .0, 2.0,383,191.5 6.382307692307692,5,a-sust-i4,2018-19,Wachusett - Wachusett Regional High,07750505, 0.0, .0, .0, 6.5, 3.9, .0, 10.4,2103,202.21153846153845 5.562666666666666,5,a-sust-i4,2018-19,Wakefield - Dolbeare,03050005, 0.9, .6, .0, .0, .0, .0, 1.5,457,304.6666666666667 --Infinity,1,a-sust-i4,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity +NA,NA,a-sust-i4,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity 6.401538461538462,5,a-sust-i4,2018-19,Wakefield - Galvin Middle School,03050310, 0.0, 1.4, 3.8, .0, .0, .0, 5.2,1039,199.8076923076923 7.073684210526316,5,a-sust-i4,2018-19,Wakefield - Greenwood,03050020, 0.5, 1.4, .0, .0, .0, .0, 1.9,220,115.78947368421053 6.866285714285714,5,a-sust-i4,2018-19,Wakefield - Wakefield Memorial High,03050505, 0.0, .0, .0, 7.0, .0, .0, 7.0,992,141.71428571428572 @@ -10816,7 +10816,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.32,5,a-sust-i4,2018-19,Wales - Wales Elementary,03060005, 0.4, .2, .1, .0, .0, .0, 0.7,147,210.0 6.973714285714286,5,a-sust-i4,2018-19,Walpole - Bird Middle,03070305, 0.0, .0, 3.5, .0, .0, .0, 3.5,449,128.28571428571428 6.632,5,a-sust-i4,2018-19,Walpole - Boyden,03070010, 1.0, 1.0, .0, .0, .0, .0, 2.0,342,171.0 --Infinity,1,a-sust-i4,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity 7.001142857142857,5,a-sust-i4,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 3.5, .0, .0, .0, 3.5,437,124.85714285714286 6.296,5,a-sust-i4,2018-19,Walpole - Elm Street School,03070005, 1.1, .9, .0, .0, .0, .0, 2.0,426,213.0 6.156,5,a-sust-i4,2018-19,Walpole - Fisher,03070015, 1.0, 1.0, .0, .0, .0, .0, 2.0,461,230.5 @@ -10837,7 +10837,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.728,5,a-sust-i4,2018-19,Ware - Ware Middle School,03090305, 0.0, 1.2, .8, .0, .0, .0, 2.0,318,159.0 6.392,5,a-sust-i4,2018-19,Wareham - John William Decas,03100003, 3.0, .0, .0, .0, .0, .0, 3.0,603,201.0 6.4926315789473685,5,a-sust-i4,2018-19,Wareham - Minot Forest,03100017, 0.0, 1.9, .0, .0, .0, .0, 1.9,358,188.42105263157896 --Infinity,1,a-sust-i4,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity +NA,NA,a-sust-i4,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity 6.522857142857143,5,a-sust-i4,2018-19,Wareham - Wareham Middle,03100305, 0.0, .9, 1.4, .0, .5, .0, 2.8,517,184.64285714285717 6.525,5,a-sust-i4,2018-19,Wareham - Wareham Senior High,03100505, 0.0, .0, .4, 1.3, .0, 1.5, 3.2,590,184.375 6.35,5,a-sust-i4,2018-19,Watertown - Cunniff,03140015, 0.9, .7, .0, .0, .0, .0, 1.6,330,206.25 @@ -10858,7 +10858,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.852,5,a-sust-i4,2018-19,Wellesley - John D Hardy,03170020, 0.9, 1.1, .0, .0, .0, .0, 2.0,287,143.5 6.836,5,a-sust-i4,2018-19,Wellesley - Joseph E Fiske,03170015, 1.0, 1.0, .0, .0, .0, .0, 2.0,291,145.5 6.572,5,a-sust-i4,2018-19,Wellesley - Katharine Lee Bates,03170005, 1.0, 1.0, .0, .0, .0, .0, 2.0,357,178.5 --Infinity,1,a-sust-i4,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +NA,NA,a-sust-i4,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity 6.472,5,a-sust-i4,2018-19,Wellesley - Schofield,03170045, 1.0, 1.0, .0, .0, .0, .0, 2.0,382,191.0 6.536,5,a-sust-i4,2018-19,Wellesley - Sprague Elementary School,03170048, 1.0, 1.0, .0, .0, .0, .0, 2.0,366,183.0 7.053877551020409,5,a-sust-i4,2018-19,Wellesley - Wellesley Middle,03170305, 0.0, .0, 9.6, .0, .0, .2, 9.8,1159,118.26530612244898 @@ -10870,7 +10870,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.506666666666666,4.51,a-sust-i4,2018-19,West Bridgewater - Rose L Macdonald,03230003, 0.4, .2, .0, .0, .0, .0, 0.6,262,436.6666666666667 5.586666666666666,5,a-sust-i4,2018-19,West Bridgewater - Spring Street School,03230005, 0.6, .0, .0, .0, .0, .0, 0.6,181,301.6666666666667 6.384516129032257,5,a-sust-i4,2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, .0, .5, 2.5, .0, .0, 3.1,626,201.93548387096774 --Infinity,1,a-sust-i4,2018-19,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity +NA,NA,a-sust-i4,2018-19,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity 4.68,4.68,a-sust-i4,2018-19,West Springfield - John Ashley,03320005, 0.6, .0, .0, .0, .0, .0, 0.6,249,415.0 5.1753846153846155,5,a-sust-i4,2018-19,West Springfield - John R Fausey,03320010, 0.6, .7, .0, .0, .0, .0, 1.3,459,353.07692307692304 5.1466666666666665,5,a-sust-i4,2018-19,West Springfield - Memorial,03320025, 0.2, .3, .0, .0, .0, .0, 0.6,214,356.6666666666667 @@ -10886,7 +10886,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.757894736842105,5,a-sust-i4,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 3.0, .0, .8, .0, 3.8,590,155.26315789473685 6.464,5,a-sust-i4,2018-19,Westborough - Westborough High,03210505, 0.0, .0, .0, .9, 5.1, .0, 6.0,1152,192.0 5.508571428571428,5,a-sust-i4,2018-19,Westfield - Abner Gibbs,03250020, 0.4, .3, .0, .0, .0, .0, 0.7,218,311.42857142857144 --Infinity,1,a-sust-i4,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity +NA,NA,a-sust-i4,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity 5.588571428571428,5,a-sust-i4,2018-19,Westfield - Franklin Ave,03250015, 0.4, .3, .0, .0, .0, .0, 0.7,211,301.42857142857144 6.1866666666666665,5,a-sust-i4,2018-19,Westfield - Highland,03250025, 0.7, .4, .0, .0, .3, .0, 1.5,340,226.66666666666666 6.074666666666667,5,a-sust-i4,2018-19,Westfield - Munger Hill,03250033, 0.7, .5, .0, .0, .3, .0, 1.5,361,240.66666666666666 @@ -10901,7 +10901,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.576,5,a-sust-i4,2018-19,Westford - Col John Robinson,03260025, 1.0, .0, .0, .0, .0, .0, 1.0,303,303.0 5.852307692307693,5,a-sust-i4,2018-19,Westford - Day Elementary,03260007, 0.0, 1.3, .0, .0, .0, .0, 1.3,349,268.46153846153845 6.453333333333334,5,a-sust-i4,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 1.8, .0, .0, .0, .0, 1.8,348,193.33333333333331 --Infinity,1,a-sust-i4,2018-19,Westford - Millennium Elementary,03260013, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity +NA,NA,a-sust-i4,2018-19,Westford - Millennium Elementary,03260013, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity 6.194285714285714,5,a-sust-i4,2018-19,Westford - Nabnasset,03260015, 1.4, .0, .0, .0, .0, .0, 1.4,316,225.71428571428572 6.110769230769231,5,a-sust-i4,2018-19,Westford - Rita E. Miller Elementary School,03260055, 1.3, .0, .0, .0, .0, .0, 1.3,307,236.15384615384613 6.224,5,a-sust-i4,2018-19,Westford - Stony Brook School,03260330, 0.0, .0, 3.0, .0, .0, .0, 3.0,666,222.0 @@ -10921,12 +10921,12 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.056666666666666,5,a-sust-i4,2018-19,Westwood - Martha Jones,03350017, 0.7, 1.7, .0, .0, .0, .0, 2.4,283,117.91666666666667 6.794666666666667,5,a-sust-i4,2018-19,Westwood - Paul Hanlon,03350015, 0.6, .9, .0, .0, .0, .0, 1.5,226,150.66666666666666 6.758153846153846,5,a-sust-i4,2018-19,Westwood - Westwood High,03350505, 0.0, .0, .0, 6.5, .0, .0, 6.5,1009,155.23076923076923 --Infinity,1,a-sust-i4,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity +NA,NA,a-sust-i4,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity 6.897391304347826,5,a-sust-i4,2018-19,Westwood - William E Sheehan,03350025, 0.9, 1.5, .0, .0, .0, .0, 2.3,317,137.82608695652175 6.82,5,a-sust-i4,2018-19,Weymouth - Abigail Adams Middle School,03360310, 0.0, 3.0, 3.0, .0, .0, .0, 6.0,885,147.5 5.395555555555555,5,a-sust-i4,2018-19,Weymouth - Academy Avenue,03360005, 0.4, .4, .0, .0, .0, .0, 0.9,293,325.55555555555554 5.1466666666666665,5,a-sust-i4,2018-19,Weymouth - Frederick C Murphy,03360050, 0.3, .3, .0, .0, .0, .0, 0.6,214,356.6666666666667 --Infinity,1,a-sust-i4,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,194,Infinity +NA,NA,a-sust-i4,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,194,Infinity 4.912,4.91,a-sust-i4,2018-19,Weymouth - Lawrence W Pingree,03360065, 0.3, .3, .0, .0, .0, .0, 0.5,193,386.0 5.645333333333334,5,a-sust-i4,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, .0, 3.0, .0, .0, .0, 3.0,883,294.3333333333333 5.2,5,a-sust-i4,2018-19,Weymouth - Ralph Talbot,03360085, 0.3, .4, .0, .0, .0, .0, 0.7,245,350.0 @@ -10953,11 +10953,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.512380952380952,5,a-sust-i4,2018-19,Wilmington - Wilmington Middle School,03420330, 0.0, .0, 4.2, .0, .0, .0, 4.2,781,185.95238095238093 6.324,5,a-sust-i4,2018-19,Wilmington - Woburn Street,03420020, 1.3, .7, .0, .0, .0, .0, 2.0,419,209.5 5.576,5,a-sust-i4,2018-19,Winchendon - Memorial,03430040, 1.0, .0, .0, .0, .0, .0, 1.0,303,303.0 --Infinity,1,a-sust-i4,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity +NA,NA,a-sust-i4,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity 6.909090909090909,5,a-sust-i4,2018-19,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .0, 2.2, .0, 2.2,300,136.36363636363635 5.744,5,a-sust-i4,2018-19,Winchendon - Murdock Middle School,03430315, 0.0, .0, 1.0, .0, .0, .0, 1.0,282,282.0 5.896,5,a-sust-i4,2018-19,Winchendon - Toy Town Elementary,03430050, 0.0, 1.0, .0, .0, .0, .0, 1.0,263,263.0 --Infinity,1,a-sust-i4,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +NA,NA,a-sust-i4,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity 6.424,5,a-sust-i4,2018-19,Winchester - Ambrose Elementary,03440045, 0.7, 1.3, .0, .0, .0, .0, 2.0,394,197.0 6.276,5,a-sust-i4,2018-19,Winchester - Lincoln Elementary,03440005, 0.8, 1.2, .0, .0, .0, .0, 2.0,431,215.5 5.86,5,a-sust-i4,2018-19,Winchester - Lynch Elementary,03440020, 0.9, 1.1, .0, .0, .0, .0, 2.0,535,267.5 @@ -11028,7 +11028,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.138947368421053,5,a-sust-i4,2018-19,Wrentham - Charles E Roderick,03500010, 0.0, .6, .3, .0, 1.0, .0, 1.9,442,232.63157894736844 5.9381818181818184,5,a-sust-i4,2018-19,Wrentham - Delaney,03500003, 1.6, .5, .0, .0, .0, .0, 2.2,567,257.7272727272727 6.5925925925925934,5,a-sust-i4,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 1.4, 2.5, 2.8, .0, .0, 8.1,1425,175.92592592592592 --Infinity,1,a-sust-i4,2017-18,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,84,Infinity +NA,NA,a-sust-i4,2017-18,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,84,Infinity 6.336,5,a-sust-i4,2017-18,Abington - Abington High,00010505, 0.0, .0, .0, 2.5, .0, .0, 2.5,520,208.0 6.659512195121952,5,a-sust-i4,2017-18,Abington - Abington Middle School,00010405, 0.0, 1.2, 2.7, .0, .2, .0, 4.1,687,167.5609756097561 6.743703703703703,5,a-sust-i4,2017-18,Abington - Beaver Brook Elementary,00010020, 2.7, .0, .0, .0, .0, .0, 2.7,424,157.03703703703704 @@ -11037,7 +11037,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.242264150943396,5,a-sust-i4,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, 2.0, .4, 3.0, 5.3,1827,344.7169811320755 6.212,5,a-sust-i4,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 1.0, .8, .3, .0, .0, .0, 2.0,447,223.5 6.292,5,a-sust-i4,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.7, 1.0, .3, .0, .0, .0, 2.0,427,213.5 --Infinity,1,a-sust-i4,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,111,Infinity +NA,NA,a-sust-i4,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,111,Infinity 6.232,5,a-sust-i4,2017-18,Acton-Boxborough - Luther Conant School,06000030, 0.8, .9, .3, .0, .0, .0, 2.0,442,221.0 6.052,5,a-sust-i4,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0.9, .8, .3, .0, .0, .0, 2.0,487,243.5 6.008,5,a-sust-i4,2017-18,Acton-Boxborough - Merriam School,06000010, 0.8, .9, .3, .0, .0, .0, 2.0,498,249.0 @@ -11049,7 +11049,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.03764705882353,5,a-sust-i4,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, .0, .4, .0, 1.3, .0, 1.7,417,245.29411764705884 6.396,5,a-sust-i4,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,401,200.5 6.1085714285714285,5,a-sust-i4,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 2.2, 2.0, .0, .0, 4.2,993,236.42857142857142 --Infinity,1,a-sust-i4,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity +NA,NA,a-sust-i4,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity 6.12,5,a-sust-i4,2017-18,Agawam - Agawam High,00050505, 0.0, .0, .0, 5.0, .0, .0, 5.0,1175,235.0 6.981333333333334,5,a-sust-i4,2017-18,Agawam - Agawam Junior High,00050405, 0.0, .0, 4.5, .0, .0, .0, 4.5,573,127.33333333333333 4.896,4.9,a-sust-i4,2017-18,Agawam - Benjamin J Phelps,00050020, 0.6, .4, .0, .0, .0, .0, 1.0,388,388.0 @@ -11074,7 +11074,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.61,5,a-sust-i4,2017-18,Andover - Doherty Middle,00090305, 0.0, .0, 3.2, .0, .0, .0, 3.2,556,173.75 6.589090909090909,5,a-sust-i4,2017-18,Andover - Henry C Sanborn Elementary,00090010, 0.9, 1.3, .0, .0, .0, .0, 2.2,388,176.36363636363635 6.666666666666667,5,a-sust-i4,2017-18,Andover - High Plain Elementary,00090004, 1.2, 1.8, .0, .0, .0, .0, 3.0,500,166.66666666666666 --Infinity,1,a-sust-i4,2017-18,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity +NA,NA,a-sust-i4,2017-18,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity 6.7725,5,a-sust-i4,2017-18,Andover - South Elementary,00090020, 1.2, 2.0, .0, .0, .0, .0, 3.2,491,153.4375 6.054399999999999,5,a-sust-i4,2017-18,Andover - West Elementary,00090025, 1.1, 1.4, .0, .0, .0, .0, 2.5,608,243.2 6.8662068965517244,5,a-sust-i4,2017-18,Andover - Wood Hill Middle School,00090350, 0.0, .0, 2.9, .0, .0, .0, 2.9,411,141.72413793103448 @@ -11085,7 +11085,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.3828571428571435,5,a-sust-i4,2017-18,Arlington - Hardy,00100030, 0.8, .6, .0, .0, .0, .0, 1.4,458,327.14285714285717 5.76,5,a-sust-i4,2017-18,Arlington - John A Bishop,00100005, 0.7, .8, .0, .0, .0, .0, 1.5,420,280.0 6.307368421052631,5,a-sust-i4,2017-18,Arlington - M Norcross Stratton,00100055, 0.9, 1.0, .0, .0, .0, .0, 1.9,402,211.57894736842107 --Infinity,1,a-sust-i4,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity +NA,NA,a-sust-i4,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity 6.692987012987013,5,a-sust-i4,2017-18,Arlington - Ottoson Middle,00100410, 0.0, .0, 7.7, .0, .0, .0, 7.7,1258,163.37662337662337 5.288888888888889,5,a-sust-i4,2017-18,Arlington - Peirce,00100045, 0.5, .4, .0, .0, .0, .0, 0.9,305,338.88888888888886 4.990769230769231,4.99,a-sust-i4,2017-18,Arlington - Thompson,00100050, 0.7, .6, .0, .0, .0, .0, 1.3,489,376.15384615384613 @@ -11098,7 +11098,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.449032258064516,5,a-sust-i4,2017-18,Ashland - Ashland Middle,00140405, 0.0, .0, 3.1, .0, .0, .0, 3.1,601,193.8709677419355 5.843333333333333,5,a-sust-i4,2017-18,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,647,269.58333333333337 6.64,5,a-sust-i4,2017-18,Ashland - Henry E Warren Elementary,00140010, 3.6, .0, .0, .0, .0, .0, 3.6,612,170.0 --Infinity,1,a-sust-i4,2017-18,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity +NA,NA,a-sust-i4,2017-18,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity 4.4384,4.44,a-sust-i4,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 2.5, .0, .0, 2.5,1113,445.2 4.789333333333334,4.79,a-sust-i4,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 0.9, .6, .0, .0, .0, .0, 1.5,602,401.3333333333333 6.2682352941176465,5,a-sust-i4,2017-18,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, .0, 1.7, .0, 1.7,368,216.47058823529412 @@ -11106,10 +11106,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.776,5,a-sust-i4,2017-18,Athol-Royalston - Royalston Community School,06150050, 0.2, .3, .1, .0, .0, .0, 0.5,139,278.0 5.576,5,a-sust-i4,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.2, 1.3, 1.5, .0, .0, .0, 4.0,1212,303.0 4.928,4.93,a-sust-i4,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.6, .4, .0, .0, .0, .0, 1.0,384,384.0 --Infinity,1,a-sust-i4,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity +NA,NA,a-sust-i4,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity 4.903636363636364,4.9,a-sust-i4,2017-18,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 2.2, 2.2, .0, 4.4,1703,387.0454545454545 6.448,5,a-sust-i4,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, .7, 2.2, .0, .0, .0, 3.0,582,194.0 --Infinity,1,a-sust-i4,2017-18,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,184,Infinity +NA,NA,a-sust-i4,2017-18,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,184,Infinity 6.168,5,a-sust-i4,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 1.3, .7, .0, .0, .0, .0, 2.0,458,229.0 6.068,5,a-sust-i4,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 1.3, .7, .0, .0, .0, .0, 2.0,483,241.5 6.32,5,a-sust-i4,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 1.2, .9, .0, .0, .0, .0, 2.0,420,210.0 @@ -11131,7 +11131,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.526,5,a-sust-i4,2017-18,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 4.0, .0, .0, .0, 4.0,737,184.25 6.286,5,a-sust-i4,2017-18,Barnstable - Barnstable United Elementary School,00200050, 0.0, 4.0, .0, .0, .0, .0, 4.0,857,214.25 6.705,5,a-sust-i4,2017-18,Barnstable - Centerville Elementary,00200010, 1.1, .5, .0, .0, .0, .0, 1.6,259,161.875 --Infinity,1,a-sust-i4,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,135,Infinity +NA,NA,a-sust-i4,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,135,Infinity 6.664,5,a-sust-i4,2017-18,Barnstable - Hyannis West Elementary,00200025, 1.4, .6, .0, .0, .0, .0, 2.0,334,167.0 6.266666666666666,5,a-sust-i4,2017-18,Barnstable - West Barnstable Elementary,00200005, 0.9, .3, .0, .0, .0, .0, 1.2,260,216.66666666666669 6.276,5,a-sust-i4,2017-18,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,431,215.5 @@ -11146,7 +11146,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.794285714285714,5,a-sust-i4,2017-18,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,193,275.7142857142857 6.408,5,a-sust-i4,2017-18,Belchertown - Jabish Middle School,00240025, 0.0, .0, 2.0, .0, .0, .0, 2.0,398,199.0 6.301818181818182,5,a-sust-i4,2017-18,Belchertown - Swift River Elementary,00240018, 1.2, .6, .0, .0, .3, .0, 2.2,467,212.27272727272725 --Infinity,1,a-sust-i4,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity +NA,NA,a-sust-i4,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity 6.474,5,a-sust-i4,2017-18,Bellingham - Bellingham High School,00250505, 0.0, .0, .5, 3.5, .0, .0, 4.0,763,190.75 6.525128205128205,5,a-sust-i4,2017-18,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.6, 2.2, .0, .0, .0, 3.9,719,184.35897435897436 7.66,5,a-sust-i4,2017-18,Bellingham - Keough Memorial Academy,00250510, 0.0, .0, .2, .7, .0, .0, 0.8,34,42.5 @@ -11175,7 +11175,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.47578947368421,5,a-sust-i4,2017-18,Beverly - Centerville Elementary,00300010, 0.0, .0, .0, .0, .0, 1.9, 1.9,362,190.5263157894737 6.36,5,a-sust-i4,2017-18,Beverly - Cove Elementary,00300015, 0.0, .0, .0, .0, .0, 2.4, 2.4,492,205.0 6.262222222222222,5,a-sust-i4,2017-18,Beverly - Hannah Elementary,00300033, 0.0, .0, .0, .0, .0, 1.8, 1.8,391,217.22222222222223 --Infinity,1,a-sust-i4,2017-18,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity +NA,NA,a-sust-i4,2017-18,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity 6.723199999999999,5,a-sust-i4,2017-18,Beverly - North Beverly Elementary,00300040, 0.0, .0, .0, .0, .0, 2.5, 2.5,399,159.6 6.270967741935484,5,a-sust-i4,2017-18,Billerica - Billerica Memorial High School,00310505, 0.0, .0, .0, 6.2, .0, .0, 6.2,1340,216.1290322580645 6.266666666666667,5,a-sust-i4,2017-18,Billerica - Eugene C Vining,00310030, 0.4, .4, .0, .0, .0, .0, 0.9,195,216.66666666666666 @@ -11194,10 +11194,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.72,5,a-sust-i4,2017-18,Blackstone-Millville - Millville Elementary,06220010, 0.6, .4, .0, .0, .0, .0, 1.0,285,285.0 -1.76,1,a-sust-i4,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, .0, .0, .7, .0, .0, 0.7,854,1220.0 6.208,5,a-sust-i4,2017-18,Boston - Another Course To College,00350541, 0.0, .0, .0, 1.0, .0, .0, 1.0,224,224.0 --Infinity,1,a-sust-i4,2017-18,Boston - Baldwin Early Learning Center,00350003, 0.0, .0, .0, .0, .0, .0, 0.0,173,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Baldwin Early Learning Center,00350003, 0.0, .0, .0, .0, .0, .0, 0.0,173,Infinity 6.765714285714286,5,a-sust-i4,2017-18,Boston - Beethoven,00350021, 2.0, .1, .0, .0, .0, .0, 2.1,324,154.28571428571428 6.904761904761904,5,a-sust-i4,2017-18,Boston - Blackstone,00350390, 2.3, 1.7, .0, .0, .0, .2, 4.2,575,136.9047619047619 --Infinity,1,a-sust-i4,2017-18,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,154,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,154,Infinity 7.69984,5,a-sust-i4,2017-18,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 10.7, .3, 1.6, 12.5,469,37.52 3.146666666666666,3.15,a-sust-i4,2017-18,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .3, .0, .0, 0.3,182,606.6666666666667 5.0830769230769235,5,a-sust-i4,2017-18,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, .4, .0, .9, 1.3,474,364.6153846153846 @@ -11206,12 +11206,12 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.9291428571428573,3.93,a-sust-i4,2017-18,Boston - Boston Latin Academy,00350545, 0.0, .0, 1.5, 1.2, .3, .5, 3.5,1781,508.85714285714283 6.906666666666667,5,a-sust-i4,2017-18,Boston - Boston Teachers Union School,00350012, 0.2, .8, .4, .4, .0, .3, 2.1,287,136.66666666666666 5.979259259259259,5,a-sust-i4,2017-18,Boston - Brighton High,00350505, 0.0, .0, .0, 1.7, .0, 1.0, 2.7,682,252.59259259259258 --Infinity,1,a-sust-i4,2017-18,Boston - Carter Developmental Center,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Carter Developmental Center,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity 5.365,5,a-sust-i4,2017-18,Boston - Charles H Taylor,00350054, 0.8, .8, .0, .0, .0, .0, 1.6,527,329.375 3.774545454545455,3.77,a-sust-i4,2017-18,Boston - Charles Sumner,00350052, 0.5, .5, .0, .0, .0, .0, 1.1,581,528.1818181818181 3.4,3.4,a-sust-i4,2017-18,Boston - Charlestown High,00350515, 0.0, .0, .0, .1, .0, 1.5, 1.6,920,575.0 7.125714285714286,5,a-sust-i4,2017-18,Boston - Clarence R Edwards Middle,00350430, 0.0, .0, 1.5, .0, .0, 1.2, 2.8,306,109.28571428571429 --Infinity,1,a-sust-i4,2017-18,Boston - Community Academy,00350518, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Community Academy,00350518, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 6.362105263157895,5,a-sust-i4,2017-18,Boston - Community Academy of Science and Health,00350581, 0.0, .0, .0, 1.0, .0, .9, 1.9,389,204.73684210526318 7.0063157894736845,5,a-sust-i4,2017-18,Boston - Curley K-8 School,00350020, 3.1, 3.2, 1.0, .0, .0, .4, 7.6,944,124.21052631578948 7.125925925925926,5,a-sust-i4,2017-18,Boston - Curtis Guild,00350062, 1.0, 1.7, .0, .0, .0, .0, 2.7,295,109.25925925925925 @@ -11220,7 +11220,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.46,4.46,a-sust-i4,2017-18,Boston - Dearborn,00350074, 0.0, .0, .5, .0, .0, .3, 0.8,354,442.5 6.8825,5,a-sust-i4,2017-18,Boston - Dennis C Haley,00350077, 0.9, 1.1, 1.2, .0, .0, .0, 3.2,447,139.6875 5.992258064516129,5,a-sust-i4,2017-18,Boston - Donald Mckay,00350080, 1.2, 1.2, .0, .0, .7, .0, 3.1,778,250.96774193548387 --Infinity,1,a-sust-i4,2017-18,Boston - Dorchester Academy,00350651, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Dorchester Academy,00350651, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity 6.488,5,a-sust-i4,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.8, .3, .0, .0, .0, .0, 1.0,189,189.0 7.415172413793103,5,a-sust-i4,2017-18,Boston - Dr. William Henderson Lower,00350266, 1.6, .6, .6, .0, .0, .2, 2.9,212,73.10344827586208 6.384,5,a-sust-i4,2017-18,Boston - Dr. William Henderson Upper,00350426, 0.3, 1.1, .3, .9, .0, .5, 3.0,606,202.0 @@ -11239,11 +11239,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.16,5,a-sust-i4,2017-18,Boston - Greater Egleston Community High School,00350543, 0.0, .0, .0, .0, .0, 1.0, 1.0,105,105.0 4.846666666666666,4.85,a-sust-i4,2017-18,Boston - Harvard-Kent,00350200, 0.5, .6, .0, .0, .0, .0, 1.2,473,394.1666666666667 7.057777777777777,5,a-sust-i4,2017-18,Boston - Haynes Early Education Center,00350010, 1.3, .0, .0, .0, .0, .5, 1.8,212,117.77777777777777 --Infinity,1,a-sust-i4,2017-18,Boston - Henry Grew,00350135, 0.0, .0, .0, .0, .0, .0, 0.0,254,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Henry Grew,00350135, 0.0, .0, .0, .0, .0, .0, 0.0,254,Infinity 7.195294117647059,5,a-sust-i4,2017-18,Boston - Higginson,00350015, 1.5, .0, .0, .0, .0, .2, 1.7,171,100.58823529411765 5.536,5,a-sust-i4,2017-18,Boston - Higginson/Lewis K-8,00350377, 0.1, .5, .4, .0, .0, .0, 1.0,308,308.0 7.328,5,a-sust-i4,2017-18,Boston - Horace Mann School for the Deaf,00350750, 0.2, .2, .1, .2, .0, .4, 1.0,84,84.0 --Infinity,1,a-sust-i4,2017-18,Boston - Hugh Roe O'Donnell,00350141, 0.0, .0, .0, .0, .0, .0, 0.0,247,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Hugh Roe O'Donnell,00350141, 0.0, .0, .0, .0, .0, .0, 0.0,247,Infinity 6.883404255319149,5,a-sust-i4,2017-18,Boston - Jackson Mann,00350013, 1.6, 1.4, 1.1, .0, .1, .5, 4.7,656,139.5744680851064 6.793333333333333,5,a-sust-i4,2017-18,Boston - James Condon Elementary,00350146, 1.5, 2.4, 1.7, .0, .0, .4, 6.0,905,150.83333333333334 7.184,5,a-sust-i4,2017-18,Boston - James J Chittick,00350154, 0.8, 2.1, .0, .0, .0, .2, 3.0,306,102.0 @@ -11268,7 +11268,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.417777777777777,5,a-sust-i4,2017-18,Boston - Lyon K-8,00350004, 0.2, .9, .6, .0, .0, .1, 1.8,131,72.77777777777777 6.346666666666666,5,a-sust-i4,2017-18,Boston - Lyon Upper 9-12,00350655, 0.0, .0, .0, .0, .0, .6, 0.6,124,206.66666666666669 -60.72,1,a-sust-i4,2017-18,Boston - Madison Park High,00350537, 0.0, .0, .0, .1, .0, .0, 0.1,859,8590.0 --Infinity,1,a-sust-i4,2017-18,Boston - Manassah E Bradley,00350215, 0.0, .0, .0, .0, .0, .0, 0.0,295,Infinity +NA,NA,a-sust-i4,2017-18,Boston - Manassah E Bradley,00350215, 0.0, .0, .0, .0, .0, .0, 0.0,295,Infinity 7.418536585365853,5,a-sust-i4,2017-18,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 3.6, .0, .5, 4.1,298,72.6829268292683 6.68327868852459,5,a-sust-i4,2017-18,Boston - Mario Umana Academy,00350656, 0.9, .8, 3.2, .0, .7, .4, 6.1,1004,164.59016393442624 5.683809523809524,5,a-sust-i4,2017-18,Boston - Mather,00350227, 0.9, 1.1, .0, .0, .0, .2, 2.1,608,289.5238095238095 @@ -11314,7 +11314,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.133333333333333,5,a-sust-i4,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, .4, 1.2, 1.4, .0, .0, 3.0,700,233.33333333333334 1.536,1.54,a-sust-i4,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, .0, .0, .0, .5, .0, 0.5,404,808.0 0.464,1,a-sust-i4,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, .0, .2, .0, .3, .0, 0.5,471,942.0 --Infinity,1,a-sust-i4,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, .0, .0, .0, .0, .0, 0.0,463,Infinity +NA,NA,a-sust-i4,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, .0, .0, .0, .0, .0, 0.0,463,Infinity 6.749333333333333,5,a-sust-i4,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 4.2, 1.2, .7, .0, .0, .0, 6.0,938,156.33333333333334 6.933333333333333,5,a-sust-i4,2017-18,Bourne - Bourne High School,00360505, 0.0, .0, .0, 1.6, 2.0, .0, 3.6,480,133.33333333333334 6.2925,5,a-sust-i4,2017-18,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 2.2, .0, .0, .0, 3.2,683,213.4375 @@ -11345,10 +11345,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.573333333333334,5,a-sust-i4,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .1, .1, .1, .0, 0.3,16,53.333333333333336 6.743529411764706,5,a-sust-i4,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 3.5, 1.6, .0, .0, .0, 5.1,801,157.05882352941177 7.12,5,a-sust-i4,2017-18,Brimfield - Brimfield Elementary,00430005, 0.9, 1.0, .2, .0, .5, .0, 2.6,286,110.0 --Infinity,1,a-sust-i4,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,456,Infinity --Infinity,1,a-sust-i4,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1278,Infinity +NA,NA,a-sust-i4,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,456,Infinity +NA,NA,a-sust-i4,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1278,Infinity 6.24695652173913,5,a-sust-i4,2017-18,Brockton - Ashfield Middle School,00440421, 0.0, .0, 1.5, .0, .5, .2, 2.3,504,219.13043478260872 --Infinity,1,a-sust-i4,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,237,Infinity +NA,NA,a-sust-i4,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,237,Infinity 4.48,4.48,a-sust-i4,2017-18,Brockton - Brockton Champion High School,00440515, 0.0, .0, .0, .0, .0, .4, 0.4,176,440.0 4.251818181818182,4.25,a-sust-i4,2017-18,Brockton - Brockton High,00440505, 0.0, .0, .0, 5.7, .0, 3.1, 8.8,4123,468.52272727272725 5.124444444444444,5,a-sust-i4,2017-18,Brockton - Brookfield,00440010, 0.6, .7, .0, .0, .0, .5, 1.8,647,359.44444444444446 @@ -11372,8 +11372,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.876666666666666,5,a-sust-i4,2017-18,Brockton - West Middle School,00440420, 0.0, .0, 1.7, .0, .0, .7, 2.4,637,265.4166666666667 6.3063414634146335,5,a-sust-i4,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 3.2, 2.7, 2.2, .0, .0, .0, 8.2,1736,211.70731707317074 6.445,5,a-sust-i4,2017-18,Brookfield - Brookfield Elementary,00450005, 0.4, .6, .1, .0, .5, .0, 1.6,311,194.375 --Infinity,1,a-sust-i4,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity --Infinity,1,a-sust-i4,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity +NA,NA,a-sust-i4,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity +NA,NA,a-sust-i4,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity 6.415238095238095,5,a-sust-i4,2017-18,Brookline - Brookline High,00460505, 0.0, .0, .0, .1, 10.4, .0, 10.5,2080,198.0952380952381 6.755918367346939,5,a-sust-i4,2017-18,Brookline - Edith C Baker,00460005, 1.5, 2.1, .5, .0, .8, .0, 4.9,762,155.51020408163265 6.813333333333334,5,a-sust-i4,2017-18,Brookline - Edward Devotion,00460015, 1.9, 2.4, .7, .0, .4, .0, 5.4,801,148.33333333333331 @@ -11382,7 +11382,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.556,5,a-sust-i4,2017-18,Brookline - Lawrence,00460030, 1.2, 1.9, .5, .0, .3, .0, 4.0,722,180.5 6.602222222222222,5,a-sust-i4,2017-18,Brookline - Michael Driscoll,00460020, 0.9, 1.9, .4, .0, .4, .0, 3.6,629,174.72222222222223 6.597551020408164,5,a-sust-i4,2017-18,Brookline - Pierce,00460040, 1.7, 1.9, .5, .0, .8, .0, 4.9,859,175.30612244897958 --Infinity,1,a-sust-i4,2017-18,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity +NA,NA,a-sust-i4,2017-18,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,58,Infinity 6.508387096774193,5,a-sust-i4,2017-18,Brookline - William H Lincoln,00460035, 1.0, 1.4, .4, .0, .4, .0, 3.1,578,186.4516129032258 6.532413793103449,5,a-sust-i4,2017-18,Burlington - Burlington High,00480505, 0.0, .0, .0, 5.8, .0, .0, 5.8,1064,183.44827586206898 7.137297297297297,5,a-sust-i4,2017-18,Burlington - Fox Hill,00480007, 1.4, 1.7, .0, .0, .0, .7, 3.7,399,107.83783783783784 @@ -11411,10 +11411,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.1854545454545455,5,a-sust-i4,2017-18,Canton - Dean S Luce,00500020, 1.1, 1.1, .0, .0, .0, .0, 2.2,499,226.8181818181818 5.5058823529411764,5,a-sust-i4,2017-18,Canton - John F Kennedy,00500017, 0.9, .8, .0, .0, .0, .0, 1.7,530,311.7647058823529 5.625,5,a-sust-i4,2017-18,Canton - Lt Peter M Hansen,00500012, 0.8, .8, .0, .0, .0, .0, 1.6,475,296.875 --Infinity,1,a-sust-i4,2017-18,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity +NA,NA,a-sust-i4,2017-18,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity 6.8224,5,a-sust-i4,2017-18,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 5.0, .0, .0, .0, 5.0,736,147.2 7.078095238095239,5,a-sust-i4,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, 2.1, .0, .0, .0, 2.1,242,115.23809523809523 --Infinity,1,a-sust-i4,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .0, .0, .0, 0.0,590,Infinity +NA,NA,a-sust-i4,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .0, .0, .0, 0.0,590,Infinity 7.030399999999999,5,a-sust-i4,2017-18,Carlisle - Carlisle School,00510025, 1.3, 2.1, 1.7, .0, .0, .0, 5.0,606,121.2 5.013333333333334,5,a-sust-i4,2017-18,Carver - Carver Elementary School,00520015, 0.9, 1.2, .0, .0, .0, .0, 2.1,784,373.3333333333333 6.454634146341463,5,a-sust-i4,2017-18,Carver - Carver Middle/High School,00520405, 0.0, .0, 2.7, 1.4, .0, .0, 4.1,792,193.1707317073171 @@ -11428,7 +11428,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.024,5,a-sust-i4,2017-18,Chelmsford - Charles D Harrington,00560025, 1.2, .8, .0, .0, .0, .0, 2.0,494,247.0 6.521,5,a-sust-i4,2017-18,Chelmsford - Chelmsford High,00560505, 0.0, .0, .0, 8.0, .0, .0, 8.0,1479,184.875 6.978571428571429,5,a-sust-i4,2017-18,Chelmsford - Col Moses Parker School,00560305, 0.0, 2.5, 3.1, .0, .0, .0, 5.6,715,127.67857142857143 --Infinity,1,a-sust-i4,2017-18,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,132,Infinity +NA,NA,a-sust-i4,2017-18,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,132,Infinity 6.92983606557377,5,a-sust-i4,2017-18,Chelmsford - McCarthy Middle School,00560310, 0.0, 2.1, 4.0, .0, .0, .0, 6.1,816,133.7704918032787 6.396,5,a-sust-i4,2017-18,Chelmsford - South Row,00560015, 1.2, .8, .0, .0, .0, .0, 2.0,401,200.5 6.242285714285714,5,a-sust-i4,2017-18,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 3.7, 3.3, .0, 7.0,1538,219.71428571428572 @@ -11441,7 +11441,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.682666666666666,5,a-sust-i4,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 0.0, .0, .0, .0, .0, 3.0, 3.0,869,289.6666666666667 5.96,5,a-sust-i4,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 0.0, .0, .0, .0, .0, 2.0, 2.0,510,255.0 6.791111111111111,5,a-sust-i4,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.4, .4, .1, .0, .0, .0, 0.9,136,151.11111111111111 --Infinity,1,a-sust-i4,2017-18,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity +NA,NA,a-sust-i4,2017-18,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,399,Infinity 2.58,2.58,a-sust-i4,2017-18,Chicopee - Belcher,00610010, 0.4, .0, .0, .0, .0, .0, 0.4,271,677.5 4.812,4.81,a-sust-i4,2017-18,Chicopee - Bellamy Middle,00610305, 0.0, .0, 2.0, .0, .0, .0, 2.0,797,398.5 4.176,4.18,a-sust-i4,2017-18,Chicopee - Bowe,00610015, 0.5, .5, .0, .0, .0, .0, 1.0,478,478.0 @@ -11455,11 +11455,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.182222222222222,5,a-sust-i4,2017-18,Chicopee - Lambert-Lavoie,00610040, 0.4, .6, .0, .0, .0, .0, 0.9,317,352.22222222222223 4.656,4.66,a-sust-i4,2017-18,Chicopee - Litwin,00610022, 0.3, .7, .0, .0, .0, .0, 1.0,418,418.0 5.970909090909091,5,a-sust-i4,2017-18,Chicopee - Streiber Memorial School,00610065, 0.5, .4, .0, .0, .2, .0, 1.1,279,253.63636363636363 --Infinity,1,a-sust-i4,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,241,Infinity +NA,NA,a-sust-i4,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,241,Infinity 4.84,4.84,a-sust-i4,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, .0, 1.0, .0, .0, .0, 1.0,395,395.0 --Infinity,1,a-sust-i4,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .0, .0, .0, 0.0,283,Infinity --Infinity,1,a-sust-i4,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, .0, .0, .0, .0, .0, 0.0,272,Infinity --Infinity,1,a-sust-i4,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,236,Infinity +NA,NA,a-sust-i4,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .0, .0, .0, 0.0,283,Infinity +NA,NA,a-sust-i4,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, .0, .0, .0, .0, .0, 0.0,272,Infinity +NA,NA,a-sust-i4,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,236,Infinity 6.07,5,a-sust-i4,2017-18,Clarksburg - Clarksburg Elementary,00630010, 0.3, .3, .3, .0, .0, .0, 0.8,193,241.25 5.28,5,a-sust-i4,2017-18,Clinton - Clinton Elementary,00640050, 1.3, .7, .0, .0, .0, .0, 2.0,680,340.0 5.942068965517241,5,a-sust-i4,2017-18,Clinton - Clinton Middle School,00640305, 0.0, 2.1, .8, .0, .0, .0, 2.9,746,257.2413793103448 @@ -11525,7 +11525,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.616470588235294,5,a-sust-i4,2017-18,Dracut - Greenmont Avenue,00790030, 1.2, .5, .0, .0, .0, .0, 1.7,294,172.94117647058823 4.73142857142857,4.73,a-sust-i4,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 0.7, .7, .0, .0, .0, .0, 1.4,572,408.5714285714286 5.8075,5,a-sust-i4,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 3.2, .0, .0, .0, 3.2,877,274.0625 --Infinity,1,a-sust-i4,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,284,Infinity +NA,NA,a-sust-i4,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,284,Infinity 6.0285714285714285,5,a-sust-i4,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.4, .0, .0, .0, .0, .0, 1.4,345,246.42857142857144 6.618,5,a-sust-i4,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 1.0, 3.0, .0, .0, .0, 4.0,691,172.75 6.436,5,a-sust-i4,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.7, 1.3, .0, .0, .0, .0, 2.0,391,195.5 @@ -11560,8 +11560,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.989629629629629,5,a-sust-i4,2017-18,Edgartown - Edgartown Elementary,00890005, 0.7, 1.4, .6, .0, .0, .0, 2.7,341,126.29629629629629 4.96,4.96,a-sust-i4,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, 0.0, .0, .0, 1.0, .0, .0, 1.0,380,380.0 7.053333333333333,5,a-sust-i4,2017-18,Erving - Erving Elementary,00910030, 0.5, .4, .2, .0, .0, .0, 1.2,142,118.33333333333334 --Infinity,1,a-sust-i4,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, .0, .0, .0, .0, .0, 0.0,1382,Infinity --Infinity,1,a-sust-i4,2017-18,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity +NA,NA,a-sust-i4,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, .0, .0, .0, .0, .0, 0.0,1382,Infinity +NA,NA,a-sust-i4,2017-18,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,201,Infinity 7.44,5,a-sust-i4,2017-18,Everett - Devens School,00930030, 0.1, .2, .2, .3, .0, .0, 0.8,56,70.0 6.275652173913043,5,a-sust-i4,2017-18,Everett - Everett High,00930505, 0.0, .0, .0, 9.2, .0, .0, 9.2,1983,215.5434782608696 6.231794871794872,5,a-sust-i4,2017-18,Everett - George Keverian School,00930028, 1.3, 1.0, 1.5, .0, .0, .0, 3.9,862,221.02564102564102 @@ -11577,7 +11577,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.956,5,a-sust-i4,2017-18,Fairhaven - Leroy Wood,00940030, 0.5, 1.5, .0, .0, .0, .0, 2.0,511,255.5 6.375384615384616,5,a-sust-i4,2017-18,Fall River - B M C Durfee High,00950505, 0.0, .0, .0, .3, .0, 10.2, 10.4,2112,203.07692307692307 5.044,5,a-sust-i4,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.9, 1.1, .0, .0, .0, .0, 2.0,739,369.5 --Infinity,1,a-sust-i4,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, .0, .0, .0, .0, .0, 0.0,1,Infinity +NA,NA,a-sust-i4,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, .0, .0, .0, .0, .0, 0.0,1,Infinity 6.958399999999999,5,a-sust-i4,2017-18,Fall River - Henry Lord Community School,00950017, 1.3, 1.1, 2.6, .0, .0, .0, 5.0,651,130.2 6.2,5,a-sust-i4,2017-18,Fall River - James Tansey,00950140, 0.6, .7, .0, .0, .0, .0, 1.4,315,225.00000000000003 5.9,5,a-sust-i4,2017-18,Fall River - John J Doran,00950045, 0.7, .7, .5, .0, .0, .0, 2.0,525,262.5 @@ -11603,7 +11603,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.05,5,a-sust-i4,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, .4, 1.1, .0, .1, .0, 1.6,590,368.75 5.34,5,a-sust-i4,2017-18,Fitchburg - Crocker Elementary,00970016, 1.3, .7, .0, .0, .0, .0, 2.0,665,332.5 6.181132075471698,5,a-sust-i4,2017-18,Fitchburg - Fitchburg High,00970505, 0.0, .0, .0, 3.0, 2.3, .0, 5.3,1205,227.35849056603774 --Infinity,1,a-sust-i4,2017-18,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,169,Infinity +NA,NA,a-sust-i4,2017-18,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,169,Infinity 7.092,5,a-sust-i4,2017-18,Fitchburg - McKay Arts Academy,00970340, 1.2, 2.3, 2.5, .0, .0, .0, 6.0,681,113.5 6.334117647058823,5,a-sust-i4,2017-18,Fitchburg - Memorial Intermediate,00970048, 0.0, 1.2, 2.3, .0, .0, .0, 3.4,708,208.23529411764707 5.466666666666667,5,a-sust-i4,2017-18,Fitchburg - Reingold Elementary,00970043, 1.2, .9, .0, .0, .0, .0, 2.1,665,316.66666666666663 @@ -11623,7 +11623,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.997241379310344,5.0,a-sust-i4,2017-18,Framingham - Framingham High School,01000515, 0.0, .0, .0, 5.8, .0, .0, 5.8,2177,375.3448275862069 6.178181818181818,5,a-sust-i4,2017-18,Framingham - Fuller Middle,01000305, 0.0, .0, 2.2, .0, .0, .0, 2.2,501,227.72727272727272 7.567238095238095,5,a-sust-i4,2017-18,Framingham - Hemenway,01000015, 5.7, 4.8, .0, .0, .0, .0, 10.5,568,54.095238095238095 --Infinity,1,a-sust-i4,2017-18,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,273,Infinity +NA,NA,a-sust-i4,2017-18,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,273,Infinity 7.2925,5,a-sust-i4,2017-18,Framingham - King Elementary School,01000005, 2.7, .5, .0, .0, .0, .0, 3.2,283,88.4375 7.358260869565218,5,a-sust-i4,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 1.7, 2.9, .0, .0, .0, .0, 4.6,369,80.21739130434783 6.872,5,a-sust-i4,2017-18,Framingham - Miriam F McCarthy School,01000050, 1.8, 2.2, .0, .0, .0, .0, 4.0,564,141.0 @@ -11633,7 +11633,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.664,1.66,a-sust-i4,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .0, .5, .0, 0.5,396,792.0 6.678518518518518,5,a-sust-i4,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 2.7, .0, .0, .0, 2.7,446,165.18518518518516 5.946666666666666,5,a-sust-i4,2017-18,Franklin - Davis Thayer,01010035, 0.5, .4, .0, .0, .0, .0, 0.9,231,256.6666666666667 --Infinity,1,a-sust-i4,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity +NA,NA,a-sust-i4,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,104,Infinity 6.598431372549019,5,a-sust-i4,2017-18,Franklin - Franklin High,01010505, 0.0, .0, .0, .0, 10.2, .0, 10.2,1787,175.19607843137257 7.300869565217391,5,a-sust-i4,2017-18,Franklin - Helen Keller Elementary,01010012, 0.8, 1.8, .0, .0, 2.0, .0, 4.6,402,87.3913043478261 6.6251851851851855,5,a-sust-i4,2017-18,Franklin - Horace Mann,01010405, 0.0, .0, 2.7, .0, .0, .0, 2.7,464,171.85185185185185 @@ -11661,7 +11661,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.270909090909091,5,a-sust-i4,2017-18,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 4.4, .0, .0, 4.4,401,91.13636363636363 -10.4,1,a-sust-i4,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, .0, .1, .0, .0, .0, 0.1,230,2300.0 6.216774193548387,5,a-sust-i4,2017-18,Georgetown - Penn Brook,01050010, 1.4, 1.1, .6, .0, .0, .0, 3.1,691,222.90322580645162 --Infinity,1,a-sust-i4,2017-18,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity +NA,NA,a-sust-i4,2017-18,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,121,Infinity 5.32,5,a-sust-i4,2017-18,Gill-Montague - Gill Elementary,06740005, 0.2, .2, .1, .0, .0, .0, 0.4,134,335.0 6.366666666666666,5,a-sust-i4,2017-18,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 1.2, .0, .0, .0, 1.2,245,204.16666666666669 5.84,5,a-sust-i4,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,162,270.0 @@ -11671,7 +11671,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.644,5,a-sust-i4,2017-18,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,339,169.5 6.566666666666666,5,a-sust-i4,2017-18,Gloucester - East Gloucester Elementary,01070020, 0.0, .0, .0, .0, .0, 1.2, 1.2,215,179.16666666666669 6.723199999999999,5,a-sust-i4,2017-18,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .0, 5.0, .0, 5.0,798,159.6 --Infinity,1,a-sust-i4,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity +NA,NA,a-sust-i4,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity 6.586666666666666,5,a-sust-i4,2017-18,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.2, 1.2,212,176.66666666666669 6.928,5,a-sust-i4,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 5.0, .0, .0, .0, 5.0,670,134.0 6.62,5,a-sust-i4,2017-18,Gloucester - Veterans Memorial,01070045, 0.0, .0, .0, .0, .0, 1.2, 1.2,207,172.5 @@ -11686,17 +11686,17 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.52,5,a-sust-i4,2017-18,Granby - East Meadow,01110004, 0.0, .4, .3, .0, .0, .0, 0.8,148,185.0 6.051428571428572,5,a-sust-i4,2017-18,Granby - Granby Jr Sr High School,01110505, 0.0, .0, .5, .9, .0, .0, 1.4,341,243.57142857142858 6.586666666666666,5,a-sust-i4,2017-18,Granby - West Street,01110010, 0.9, .2, .0, .0, .0, .0, 1.2,212,176.66666666666669 --Infinity,1,a-sust-i4,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1398,Infinity --Infinity,1,a-sust-i4,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1509,Infinity +NA,NA,a-sust-i4,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1398,Infinity +NA,NA,a-sust-i4,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1509,Infinity -52.53333333333334,1,a-sust-i4,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2270,7566.666666666667 --Infinity,1,a-sust-i4,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2153,Infinity +NA,NA,a-sust-i4,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2153,Infinity 6.167272727272728,5,a-sust-i4,2017-18,Greenfield - Discovery School at Four Corners,01140025, 0.7, .4, .0, .0, .0, .0, 1.1,252,229.09090909090907 6.682666666666667,5,a-sust-i4,2017-18,Greenfield - Federal Street School,01140010, 0.8, .6, .0, .0, .1, .0, 1.5,247,164.66666666666666 6.845,5,a-sust-i4,2017-18,Greenfield - Greenfield High,01140505, 0.0, .0, .5, 1.8, .9, .0, 3.2,462,144.375 7.021935483870968,5,a-sust-i4,2017-18,Greenfield - Greenfield Middle,01140305, 0.0, .9, 1.4, .0, .8, .0, 3.1,379,122.25806451612902 7.12,5,a-sust-i4,2017-18,Greenfield - Newton School,01140035, 1.3, .9, .0, .0, .0, .0, 2.2,242,109.99999999999999 5.66,5,a-sust-i4,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .4, 0.4,117,292.5 --Infinity,1,a-sust-i4,2017-18,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity +NA,NA,a-sust-i4,2017-18,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity 5.948,5,a-sust-i4,2017-18,Groton-Dunstable - Florence Roche School,06730010, 1.2, .8, .0, .0, .0, .0, 2.0,513,256.5 5.904,5,a-sust-i4,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.0, .0, 3.0,786,262.0 6.776,5,a-sust-i4,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.2, 3.8, .0, .0, .0, 5.0,765,153.0 @@ -11739,13 +11739,13 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.773333333333333,5,a-sust-i4,2017-18,Haverhill - Haverhill Alternative School,01280033, 0.0, .0, .0, .2, .1, .0, 0.3,46,153.33333333333334 6.072631578947369,5,a-sust-i4,2017-18,Haverhill - Haverhill High,01280505, 0.0, .0, .0, 1.1, 6.5, .0, 7.6,1831,240.92105263157896 3.664,3.66,a-sust-i4,2017-18,Haverhill - John G Whittier,01280085, 0.0, .3, .7, .0, .0, .0, 1.0,542,542.0 --Infinity,1,a-sust-i4,2017-18,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,221,Infinity +NA,NA,a-sust-i4,2017-18,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,221,Infinity 3.968,3.97,a-sust-i4,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0.5, .5, .0, .0, .0, .0, 1.0,504,504.0 7.428571428571429,5,a-sust-i4,2017-18,Haverhill - TEACH,01280073, 0.1, .4, .1, .0, .0, .2, 0.7,50,71.42857142857143 5.852,5,a-sust-i4,2017-18,Haverhill - Tilton,01280075, 1.3, .7, .0, .0, .0, .0, 2.0,537,268.5 6.88,5,a-sust-i4,2017-18,Haverhill - Walnut Square,01280080, 1.0, .0, .0, .0, .0, .0, 1.0,140,140.0 6.551111111111111,5,a-sust-i4,2017-18,Hawlemont - Hawlemont Regional,06850005, 0.3, .4, .1, .0, .1, .0, 0.9,163,181.11111111111111 --Infinity,1,a-sust-i4,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, .0, .0, .0, .0, .0, 0.0,214,Infinity +NA,NA,a-sust-i4,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, .0, .0, .0, .0, .0, 0.0,214,Infinity 6.788,5,a-sust-i4,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.5, .6, .8, .0, .1, .0, 2.0,303,151.5 7.32923076923077,5,a-sust-i4,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.5, .0, .5, .0, 1.6, .0, 2.6,218,83.84615384615384 6.16695652173913,5,a-sust-i4,2017-18,Hingham - East Elementary School,01310005, 1.0, 1.3, .0, .0, .0, .0, 2.3,527,229.13043478260872 @@ -11771,17 +11771,17 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.152,5,a-sust-i4,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 0.7, .7, .6, .0, .0, .0, 2.0,462,231.0 4.672,4.67,a-sust-i4,2017-18,Holyoke - Morgan Full Service Community School,01370025, 0.4, .4, .2, .0, .0, .0, 1.0,416,416.0 7.1251612903225805,5,a-sust-i4,2017-18,Holyoke - William R. Peck School,01370030, 0.0, 1.1, 1.9, .0, .1, .0, 3.1,339,109.35483870967741 --Infinity,1,a-sust-i4,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity --Infinity,1,a-sust-i4,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,702,Infinity +NA,NA,a-sust-i4,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, .0, .0, .0, .0, .0, 0.0,183,Infinity +NA,NA,a-sust-i4,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,702,Infinity 6.503703703703703,5,a-sust-i4,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, .2, .8, 1.6, .0, 2.7,505,187.03703703703704 5.435294117647058,5,a-sust-i4,2017-18,Hopedale - Memorial,01380010, 0.6, .7, .3, .0, .0, .0, 1.7,545,320.5882352941177 --Infinity,1,a-sust-i4,2017-18,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity +NA,NA,a-sust-i4,2017-18,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity 4.66909090909091,4.67,a-sust-i4,2017-18,Hopkinton - Center,01390005, 1.1, .0, .0, .0, .0, .0, 1.1,458,416.3636363636363 5.495,5,a-sust-i4,2017-18,Hopkinton - Elmwood,01390010, 0.8, .8, .0, .0, .0, .0, 1.6,501,313.125 6.338461538461539,5,a-sust-i4,2017-18,Hopkinton - Hopkins Elementary School,01390015, 0.0, 2.6, .0, .0, .0, .0, 2.6,540,207.69230769230768 6.4852459016393444,5,a-sust-i4,2017-18,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 6.1, .0, .0, 6.1,1155,189.344262295082 6.737254901960784,5,a-sust-i4,2017-18,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 5.1, .0, .0, .0, 5.1,805,157.84313725490196 --Infinity,1,a-sust-i4,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,59,Infinity +NA,NA,a-sust-i4,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,59,Infinity 4.647272727272728,4.65,a-sust-i4,2017-18,Hudson - C A Farley,01410030, 0.7, .4, .0, .0, .0, .0, 1.1,461,419.09090909090907 6.763809523809524,5,a-sust-i4,2017-18,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.4, 2.8, .0, .0, .0, 4.2,649,154.52380952380952 6.426666666666667,5,a-sust-i4,2017-18,Hudson - Forest Avenue Elementary,01410015, 1.2, .6, .0, .0, .0, .0, 1.8,354,196.66666666666666 @@ -11811,21 +11811,21 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.944,3.94,a-sust-i4,2017-18,Lawrence - Frost Middle School,01490525, 0.0, .3, .8, .0, .0, .0, 1.0,507,507.0 6.629333333333333,5,a-sust-i4,2017-18,Lawrence - Gerard A. Guilmette,01490022, 1.5, 1.5, .0, .0, .0, .0, 3.0,514,171.33333333333334 7.028,5,a-sust-i4,2017-18,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 3.0, .0, .0, .0, 4.0,486,121.5 --Infinity,1,a-sust-i4,2017-18,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity +NA,NA,a-sust-i4,2017-18,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity 4.915555555555556,4.92,a-sust-i4,2017-18,Lawrence - James F Hennessey,01490020, 0.9, .0, .0, .0, .0, .0, 0.9,347,385.55555555555554 1.3,1.3,a-sust-i4,2017-18,Lawrence - John Breen School,01490003, 0.4, .0, .0, .0, .0, .0, 0.4,335,837.5 6.692,5,a-sust-i4,2017-18,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,327,163.5 --Infinity,1,a-sust-i4,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity +NA,NA,a-sust-i4,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity 7.152,5,a-sust-i4,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 2.0, .0, .0, .0, .0, .0, 2.0,212,106.0 6.189589041095891,5,a-sust-i4,2017-18,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 14.6, .0, .0, 14.6,3304,226.3013698630137 6.212,5,a-sust-i4,2017-18,Lawrence - Oliver Partnership School,01490048, 0.8, 1.2, .0, .0, .0, .0, 2.0,447,223.5 5.676,5,a-sust-i4,2017-18,Lawrence - Parthum Middle School,01490027, 0.0, .5, 1.5, .0, .0, .0, 2.0,581,290.5 --Infinity,1,a-sust-i4,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity +NA,NA,a-sust-i4,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity 5.64,5,a-sust-i4,2017-18,Lawrence - Robert Frost,01490018, 1.0, 1.0, .0, .0, .0, .0, 2.0,590,295.0 --Infinity,1,a-sust-i4,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,190,Infinity +NA,NA,a-sust-i4,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,190,Infinity 2.0,2.0,a-sust-i4,2017-18,Lawrence - School for Exceptional Studies,01490537, 0.0, .0, .0, .2, .0, .0, 0.2,150,750.0 6.005333333333333,5,a-sust-i4,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 1.2, 1.8, .0, .0, .0, .0, 3.0,748,249.33333333333334 --Infinity,1,a-sust-i4,2017-18,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,460,Infinity +NA,NA,a-sust-i4,2017-18,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,460,Infinity 5.624,5,a-sust-i4,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,297,297.0 5.256,5,a-sust-i4,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,343,343.0 5.192380952380952,5,a-sust-i4,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.9, .6, .6, .0, .0, .0, 2.1,737,350.95238095238096 @@ -11837,14 +11837,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.096,5,a-sust-i4,2017-18,Leicester - Leicester Primary School,01510010, 0.8, .0, .0, .0, .1, .0, 1.0,363,363.0 6.923636363636364,5,a-sust-i4,2017-18,Lenox - Lenox Memorial High,01520505, 0.0, .0, .6, 2.7, .0, .0, 3.3,444,134.54545454545456 6.756,5,a-sust-i4,2017-18,Lenox - Morris,01520015, 0.9, 1.1, .0, .0, .0, .0, 2.0,311,155.5 --Infinity,1,a-sust-i4,2017-18,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity --Infinity,1,a-sust-i4,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,717,Infinity +NA,NA,a-sust-i4,2017-18,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity +NA,NA,a-sust-i4,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,717,Infinity 5.372,5,a-sust-i4,2017-18,Leominster - Fall Brook,01530007, 1.0, 1.0, .0, .0, .0, .0, 2.0,657,328.5 6.388148148148148,5,a-sust-i4,2017-18,Leominster - Frances Drake School,01530010, 0.9, 1.8, .0, .0, .0, .0, 2.7,544,201.48148148148147 5.396,5,a-sust-i4,2017-18,Leominster - Johnny Appleseed,01530025, 0.9, 1.1, .0, .0, .0, .0, 2.0,651,325.5 --Infinity,1,a-sust-i4,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity 6.72,5,a-sust-i4,2017-18,Leominster - Leominster High School,01530505, 0.0, .0, .0, 6.6, .0, .0, 6.6,1056,160.0 --Infinity,1,a-sust-i4,2017-18,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity +NA,NA,a-sust-i4,2017-18,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity 5.26,5,a-sust-i4,2017-18,Leominster - Northwest,01530030, 0.9, 1.1, .0, .0, .0, .0, 2.0,685,342.5 7.0,5,a-sust-i4,2017-18,Leominster - Priest Street,01530040, 1.0, .0, .0, .0, .0, .0, 1.0,125,125.0 6.036,5,a-sust-i4,2017-18,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,491,245.5 @@ -11856,11 +11856,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.52923076923077,5,a-sust-i4,2017-18,Lexington - Harrington,01550030, 1.2, 1.4, .0, .0, .0, .0, 2.6,478,183.84615384615384 6.941714285714286,5,a-sust-i4,2017-18,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 7.0, .0, .0, .0, 7.0,926,132.28571428571428 6.57,5,a-sust-i4,2017-18,Lexington - Joseph Estabrook,01550010, 1.2, 2.0, .0, .0, .0, .0, 3.2,572,178.75 --Infinity,1,a-sust-i4,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,71,Infinity +NA,NA,a-sust-i4,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,71,Infinity 6.71768115942029,5,a-sust-i4,2017-18,Lexington - Lexington High,01550505, 0.0, .0, .0, 7.2, 3.5, 3.1, 13.8,2212,160.28985507246375 6.446666666666666,5,a-sust-i4,2017-18,Lexington - Maria Hastings,01550035, 0.9, 1.5, .0, .0, .0, .0, 2.4,466,194.16666666666669 6.924848484848485,5,a-sust-i4,2017-18,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 6.2, .0, .2, .3, 6.6,887,134.3939393939394 --Infinity,1,a-sust-i4,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity +NA,NA,a-sust-i4,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity 6.916,5,a-sust-i4,2017-18,Lincoln - Hanscom Middle,01570305, 0.0, 1.1, .7, .0, .2, .0, 2.0,271,135.5 6.672,5,a-sust-i4,2017-18,Lincoln - Hanscom Primary,01570006, 1.6, .4, .0, .0, .0, .0, 2.0,332,166.0 7.08078431372549,5,a-sust-i4,2017-18,Lincoln - Lincoln School,01570025, 1.1, 1.7, 1.9, .0, .4, .0, 5.1,586,114.90196078431373 @@ -11899,7 +11899,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.775,5,a-sust-i4,2017-18,Lowell - Pyne Arts,01600018, 1.4, .9, .7, .0, .0, .2, 3.2,490,153.125 5.26,5,a-sust-i4,2017-18,Lowell - Rogers STEM Academy,01600005, 1.0, .9, .1, .0, .0, .0, 2.0,685,342.5 6.068,5,a-sust-i4,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 1.1, .9, .0, .0, .0, .0, 2.0,483,241.5 --Infinity,1,a-sust-i4,2017-18,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,113,Infinity +NA,NA,a-sust-i4,2017-18,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,113,Infinity 7.008,5,a-sust-i4,2017-18,Lowell - Washington,01600055, 1.2, .8, .0, .0, .0, .0, 2.0,248,124.0 5.588148148148147,5,a-sust-i4,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.9, .7, 1.1, .0, .0, .0, 2.7,814,301.48148148148147 7.393333333333333,5,a-sust-i4,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, .0, .0, 1.2, .0, .0, 1.2,91,75.83333333333334 @@ -11908,7 +11908,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.51,5,a-sust-i4,2017-18,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 4.8, .0, .0, 4.8,894,186.25 6.405,5,a-sust-i4,2017-18,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 3.2, .0, .0, .0, 3.2,638,199.375 6.424,5,a-sust-i4,2017-18,Ludlow - Veterans Park Elementary,01610023, 0.0, 2.0, .0, .0, .0, .0, 2.0,394,197.0 --Infinity,1,a-sust-i4,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,9,Infinity +NA,NA,a-sust-i4,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,9,Infinity 6.526666666666666,5,a-sust-i4,2017-18,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .4, 2.0, .0, 2.4,442,184.16666666666669 6.388571428571429,5,a-sust-i4,2017-18,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.1, .0, .0, .0, 2.1,423,201.42857142857142 4.848,4.85,a-sust-i4,2017-18,Lunenburg - Lunenburg Primary School,01620010, 1.0, .0, .0, .0, .0, .0, 1.0,394,394.0 @@ -11923,7 +11923,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.705454545454546,5,a-sust-i4,2017-18,Lynn - E J Harrington,01630045, 1.0, .8, .0, .0, .0, .4, 2.2,631,286.8181818181818 5.608,5,a-sust-i4,2017-18,Lynn - Early Childhood Center,01630004, 0.7, .0, .0, .0, .0, .4, 1.0,299,299.0 6.264,5,a-sust-i4,2017-18,Lynn - Edward A Sisson,01630095, 0.8, .8, .0, .0, .0, .4, 2.0,434,217.0 --Infinity,1,a-sust-i4,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity +NA,NA,a-sust-i4,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,107,Infinity 5.835555555555556,5,a-sust-i4,2017-18,Lynn - Hood,01630055, 0.7, .7, .0, .0, .0, .4, 1.8,487,270.55555555555554 5.621818181818182,5,a-sust-i4,2017-18,Lynn - Ingalls,01630060, 0.8, 1.0, .0, .0, .0, .4, 2.2,654,297.27272727272725 6.172,5,a-sust-i4,2017-18,Lynn - Julia F Callahan,01630030, 0.7, .7, .0, .0, .0, .6, 2.0,457,228.5 @@ -11942,15 +11942,15 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.292,5,a-sust-i4,2017-18,Lynnfield - Huckleberry Hill,01640010, 1.2, .8, .0, .0, .0, .0, 2.0,427,213.5 6.63578947368421,5,a-sust-i4,2017-18,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, 3.8, .0, .0, 3.8,648,170.5263157894737 5.292,5,a-sust-i4,2017-18,Lynnfield - Lynnfield Middle School,01640405, 0.0, .7, 1.3, .0, .0, .0, 2.0,677,338.5 --Infinity,1,a-sust-i4,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 6.276,5,a-sust-i4,2017-18,Lynnfield - Summer Street,01640020, 1.1, .9, .0, .0, .0, .0, 2.0,431,215.5 5.822222222222223,5,a-sust-i4,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 1.2, .8, 1.0, 1.5, .0, .0, 4.5,1225,272.22222222222223 --Infinity,1,a-sust-i4,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity +NA,NA,a-sust-i4,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity 5.252307692307692,5,a-sust-i4,2017-18,Malden - Beebe,01650003, 1.1, .8, .7, .0, .0, .0, 2.6,893,343.46153846153845 6.0,5,a-sust-i4,2017-18,Malden - Ferryway,01650013, 1.2, 1.2, 1.1, .0, .0, .0, 3.5,875,250.0 5.812,5,a-sust-i4,2017-18,Malden - Forestdale,01650027, 0.7, .7, .6, .0, .0, .0, 2.0,547,273.5 4.516,4.52,a-sust-i4,2017-18,Malden - Linden,01650047, 0.6, .6, .7, .0, .1, .0, 2.0,871,435.5 --Infinity,1,a-sust-i4,2017-18,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,314,Infinity +NA,NA,a-sust-i4,2017-18,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,314,Infinity 5.0832,5,a-sust-i4,2017-18,Malden - Malden High,01650505, 0.0, .0, .0, 3.9, .0, 1.1, 5.0,1823,364.6 6.0528,5,a-sust-i4,2017-18,Malden - Salemwood,01650057, 1.3, 1.5, 2.3, .0, .0, .0, 5.0,1217,243.4 6.697142857142857,5,a-sust-i4,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 0.7, .7, .0, .0, .0, .0, 1.4,228,162.85714285714286 @@ -11961,7 +11961,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.745333333333333,5,a-sust-i4,2017-18,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 6.0, .0, .0, .0, 6.0,941,156.83333333333334 6.500952380952381,5,a-sust-i4,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.2, .0, .0, .0, .0, 4.2,787,187.38095238095238 6.613684210526316,5,a-sust-i4,2017-18,Mansfield - Mansfield High,01670505, 0.0, .0, .0, .5, 7.0, .0, 7.6,1317,173.28947368421052 --Infinity,1,a-sust-i4,2017-18,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +NA,NA,a-sust-i4,2017-18,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity 6.896,5,a-sust-i4,2017-18,Marblehead - Elbridge Gerry,01680015, 1.0, .0, .0, .0, .0, .0, 1.0,138,138.0 6.654545454545455,5,a-sust-i4,2017-18,Marblehead - Glover,01680020, 1.7, .5, .0, .0, .0, .0, 2.2,370,168.18181818181816 6.64,5,a-sust-i4,2017-18,Marblehead - L H Coffin,01680010, 0.5, .5, .0, .0, .0, .0, 0.9,153,170.0 @@ -11973,7 +11973,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.789333333333333,5,a-sust-i4,2017-18,Marion - Sippican,01690005, 0.9, 1.5, .6, .0, .0, .0, 3.0,454,151.33333333333334 6.8501098901098905,5,a-sust-i4,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 2.3, 6.8, .0, .0, .0, 9.1,1308,143.73626373626374 5.35304347826087,5,a-sust-i4,2017-18,Marlborough - Charles Jaworek School,01700030, 1.4, .9, .0, .0, .0, .0, 2.3,761,330.8695652173913 --Infinity,1,a-sust-i4,2017-18,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,174,Infinity +NA,NA,a-sust-i4,2017-18,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,174,Infinity 5.397894736842105,5,a-sust-i4,2017-18,Marlborough - Francis J Kane,01700008, 1.1, .8, .0, .0, .0, .0, 1.9,618,325.2631578947369 6.816,5,a-sust-i4,2017-18,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 7.5, .0, .0, 7.5,1110,148.0 5.315555555555556,5,a-sust-i4,2017-18,Marlborough - Richer,01700025, 1.1, .7, .0, .0, .0, .0, 1.8,604,335.55555555555554 @@ -11997,7 +11997,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.088,5,a-sust-i4,2017-18,Mattapoisett - Center,01730005, 0.8, .2, .0, .0, .0, .0, 1.0,239,239.0 6.36,5,a-sust-i4,2017-18,Mattapoisett - Old Hammondtown,01730010, 0.0, .6, .3, .0, .0, .0, 1.0,205,205.0 6.393846153846154,5,a-sust-i4,2017-18,Maynard - Fowler School,01740305, 0.0, 1.3, 1.3, .0, .0, .0, 2.6,522,200.76923076923077 --Infinity,1,a-sust-i4,2017-18,Maynard - Green Meadow,01740010, 0.0, .0, .0, .0, .0, .0, 0.0,486,Infinity +NA,NA,a-sust-i4,2017-18,Maynard - Green Meadow,01740010, 0.0, .0, .0, .0, .0, .0, 0.0,486,Infinity 5.7714285714285705,5,a-sust-i4,2017-18,Maynard - Maynard High,01740505, 0.0, .0, .0, 1.2, .0, .2, 1.4,390,278.5714285714286 7.141176470588235,5,a-sust-i4,2017-18,Medfield - Dale Street,01750005, 0.0, 3.4, .0, .0, .0, .0, 3.4,365,107.3529411764706 6.3843902439024385,5,a-sust-i4,2017-18,Medfield - Medfield Senior High,01750505, 0.0, .0, .0, 3.1, 1.0, .0, 4.1,828,201.95121951219514 @@ -12016,7 +12016,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.511111111111111,5,a-sust-i4,2017-18,Medway - John D Mc Govern Elementary,01770013, 1.8, .0, .0, .0, .0, .0, 1.8,335,186.11111111111111 5.088,5,a-sust-i4,2017-18,Medway - Medway High,01770505, 0.0, .0, .0, 1.0, 1.1, .0, 2.0,728,364.0 6.8751999999999995,5,a-sust-i4,2017-18,Medway - Medway Middle,01770305, 0.0, 1.3, 3.7, .0, .0, .0, 5.0,703,140.6 --Infinity,1,a-sust-i4,2017-18,Melrose - Early Childhood Center,01780003, 0.0, .0, .0, .0, .0, .0, 0.0,318,Infinity +NA,NA,a-sust-i4,2017-18,Melrose - Early Childhood Center,01780003, 0.0, .0, .0, .0, .0, .0, 0.0,318,Infinity 6.804444444444444,5,a-sust-i4,2017-18,Melrose - Herbert Clark Hoover,01780017, 1.0, .8, .0, .0, .0, .0, 1.8,269,149.44444444444443 6.270769230769231,5,a-sust-i4,2017-18,Melrose - Horace Mann,01780025, 0.5, .8, .0, .0, .0, .0, 1.3,281,216.15384615384616 6.227368421052632,5,a-sust-i4,2017-18,Melrose - Lincoln,01780020, 1.1, .8, .0, .0, .0, .0, 1.9,421,221.57894736842107 @@ -12043,7 +12043,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.413333333333333,5,a-sust-i4,2017-18,Milford - Brookside,01850065, 2.4, .0, .0, .0, .0, .0, 2.4,476,198.33333333333334 6.4992,5,a-sust-i4,2017-18,Milford - Memorial,01850010, 2.5, .0, .0, .0, .0, .0, 2.5,469,187.6 5.366857142857143,5,a-sust-i4,2017-18,Milford - Milford High,01850505, 0.0, .0, .0, 3.5, .0, .0, 3.5,1152,329.14285714285717 --Infinity,1,a-sust-i4,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,144,Infinity +NA,NA,a-sust-i4,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,144,Infinity 6.6,5,a-sust-i4,2017-18,Milford - Stacy Middle,01850305, 0.0, .0, 5.6, .0, .0, .0, 5.6,980,175.0 6.424489795918367,5,a-sust-i4,2017-18,Milford - Woodland,01850090, 0.0, 4.9, .0, .0, .0, .0, 4.9,965,196.93877551020407 5.68,5,a-sust-i4,2017-18,Millbury - Elmwood Street,01860017, 1.5, .5, .0, .0, .0, .0, 2.0,580,290.0 @@ -12134,7 +12134,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.097142857142857,5,a-sust-i4,2017-18,New Bedford - Trinity Day Academy,02010510, 0.0, .0, .4, .3, .0, .0, 0.7,79,112.85714285714286 7.2,5,a-sust-i4,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, .0, .0, 1.0, .0, .0, 1.0,100,100.0 6.253333333333333,5,a-sust-i4,2017-18,New Bedford - William H Taylor,02010135, 0.5, .7, .0, .0, .0, .0, 1.2,262,218.33333333333334 --Infinity,1,a-sust-i4,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,422,Infinity +NA,NA,a-sust-i4,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,422,Infinity 6.784,5,a-sust-i4,2017-18,New Salem-Wendell - Swift River,07280015, 0.5, .4, .1, .0, .0, .0, 1.0,152,152.0 5.86,5,a-sust-i4,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.2, .0, .0, .0, .0, 1.2,321,267.5 5.54,5,a-sust-i4,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 1.5, .5, .0, .0, .0, .0, 2.0,615,307.5 @@ -12154,7 +12154,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.425263157894737,5,a-sust-i4,2017-18,Newton - Lincoln-Eliot,02070070, 1.0, 1.0, .0, .0, .0, .0, 1.9,374,196.8421052631579 6.0495238095238095,5,a-sust-i4,2017-18,Newton - Mason-Rice,02070080, 0.9, 1.1, .0, .0, .0, .1, 2.1,512,243.8095238095238 6.274285714285715,5,a-sust-i4,2017-18,Newton - Memorial Spaulding,02070105, 0.9, .9, .0, .0, .0, .3, 2.1,453,215.7142857142857 --Infinity,1,a-sust-i4,2017-18,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity +NA,NA,a-sust-i4,2017-18,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity 6.264242424242424,5,a-sust-i4,2017-18,Newton - Newton North High,02070505, 0.0, .0, .0, 2.8, 5.3, 1.8, 9.9,2148,216.96969696969697 6.4225,5,a-sust-i4,2017-18,Newton - Newton South High,02070510, 0.0, .0, .0, 2.5, 5.7, 1.4, 9.6,1893,197.1875 6.635555555555555,5,a-sust-i4,2017-18,Newton - Oak Hill Middle,02070320, 0.0, .0, 3.1, .0, .5, .0, 3.6,614,170.55555555555554 @@ -12164,7 +12164,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.084705882352941,5,a-sust-i4,2017-18,Newton - Zervas,02070130, 0.9, .8, .0, .0, .0, .0, 1.7,407,239.41176470588235 6.651034482758621,5,a-sust-i4,2017-18,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.2, .7, .0, .0, .0, 2.9,489,168.6206896551724 4.92,4.92,a-sust-i4,2017-18,Norfolk - H Olive Day,02080015, 1.2, .0, .0, .0, .0, .0, 1.2,462,385.0 --Infinity,1,a-sust-i4,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,550,Infinity +NA,NA,a-sust-i4,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,550,Infinity 7.229629629629629,5,a-sust-i4,2017-18,North Adams - Brayton,02090035, 0.9, 1.1, .4, .0, .0, .3, 2.7,260,96.29629629629629 6.687272727272728,5,a-sust-i4,2017-18,North Adams - Colegrove Park Elementary,02090008, 0.9, .9, .3, .0, .1, .1, 2.2,361,164.09090909090907 7.111489361702128,5,a-sust-i4,2017-18,North Adams - Drury High,02090505, 0.0, .0, .0, 1.2, 3.5, .0, 4.7,522,111.06382978723404 @@ -12181,7 +12181,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.25,5,a-sust-i4,2017-18,North Attleborough - Falls,02120010, 0.3, .5, .0, .0, .0, .0, 0.8,275,343.75 5.456,5,a-sust-i4,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.9, 1.1, .0, .0, .0, .0, 2.0,636,318.0 5.898181818181818,5,a-sust-i4,2017-18,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 2.2, .0, 2.2, 4.4,1156,262.7272727272727 --Infinity,1,a-sust-i4,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,126,Infinity +NA,NA,a-sust-i4,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,126,Infinity 5.824,5,a-sust-i4,2017-18,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, 3.8, .0, .1, .1, 4.0,1088,272.0 4.765714285714285,4.77,a-sust-i4,2017-18,North Attleborough - Roosevelt Avenue,02120015, 0.4, .4, .0, .0, .0, .0, 0.7,283,404.28571428571433 5.36,5,a-sust-i4,2017-18,North Brookfield - North Brookfield Elementary,02150015, 0.4, .4, .1, .0, .0, .0, 1.0,330,330.0 @@ -12190,7 +12190,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.996,5,a-sust-i4,2017-18,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.3, 2.7, .0, .0, .0, 4.0,502,125.5 6.6,5,a-sust-i4,2017-18,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.0, 2.0, .0, .0, .0, 3.0,525,175.0 6.798490566037735,5,a-sust-i4,2017-18,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .0, 5.3, .0, .0, 5.3,796,150.18867924528303 --Infinity,1,a-sust-i4,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity +NA,NA,a-sust-i4,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, .0, .0, .0, .0, .0, 0.0,18,Infinity 6.312,5,a-sust-i4,2017-18,North Middlesex - Spaulding Memorial,07350005, 1.2, .8, .0, .0, .0, .0, 2.0,422,211.0 4.4,4.4,a-sust-i4,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 0.2, .0, .0, .0, .0, .0, 0.2,90,450.0 6.3476923076923075,5,a-sust-i4,2017-18,North Middlesex - Varnum Brook,07350035, 1.4, 1.2, .0, .0, .0, .0, 2.6,537,206.53846153846152 @@ -12205,7 +12205,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.432,5,a-sust-i4,2017-18,Northampton - Leeds,02100025, 0.3, .7, .0, .0, .0, .0, 1.0,321,321.0 6.42,5,a-sust-i4,2017-18,Northampton - Northampton High,02100505, 0.0, .0, .0, 4.4, .0, .0, 4.4,869,197.49999999999997 6.232,5,a-sust-i4,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0.4, .6, .0, .0, .0, .0, 1.0,221,221.0 --Infinity,1,a-sust-i4,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, .0, .0, .0, .0, .0, 0.0,498,Infinity +NA,NA,a-sust-i4,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, .0, .0, .0, .0, .0, 0.0,498,Infinity 6.16125,5,a-sust-i4,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, .0, .0, 6.4, .0, .0, 6.4,1471,229.84375 6.5771428571428565,5,a-sust-i4,2017-18,Northborough - Fannie E Proctor,02130015, 0.5, .9, .0, .0, .0, .0, 1.4,249,177.85714285714286 5.085714285714285,5,a-sust-i4,2017-18,Northborough - Lincoln Street,02130003, 0.2, .5, .0, .0, .0, .0, 0.7,255,364.28571428571433 @@ -12216,8 +12216,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.1856,5,a-sust-i4,2017-18,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 2.5, .0, .0, 2.5,567,226.8 6.072,5,a-sust-i4,2017-18,Northbridge - Northbridge Middle,02140305, 0.0, .5, 2.5, .0, .0, .0, 3.0,723,241.0 5.98,5,a-sust-i4,2017-18,Northbridge - W Edward Balmer,02140001, 0.6, 1.4, .0, .0, .0, .0, 2.0,505,252.5 --Infinity,1,a-sust-i4,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1246,Infinity --Infinity,1,a-sust-i4,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,488,Infinity +NA,NA,a-sust-i4,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1246,Infinity +NA,NA,a-sust-i4,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,488,Infinity 4.05,4.05,a-sust-i4,2017-18,Norton - Henri A. Yelle,02180060, 0.0, .8, .0, .0, .0, .0, 0.8,395,493.75 4.92,4.92,a-sust-i4,2017-18,Norton - J C Solmonese,02180015, 0.9, .3, .0, .0, .0, .0, 1.2,462,385.0 5.15,5,a-sust-i4,2017-18,Norton - L G Nourse Elementary,02180010, 0.6, .2, .0, .0, .0, .0, 0.8,285,356.25 @@ -12236,7 +12236,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.931764705882353,5,a-sust-i4,2017-18,Norwood - John P Oldham,02200020, 0.4, .7, .0, .0, .0, .6, 1.7,227,133.52941176470588 6.553962264150943,5,a-sust-i4,2017-18,Norwood - Norwood High,02200505, 0.0, .0, .0, 5.3, .0, .0, 5.3,958,180.75471698113208 6.900645161290323,5,a-sust-i4,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.0, .8, .3, .0, .6, .5, 3.1,426,137.41935483870967 --Infinity,1,a-sust-i4,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,538,Infinity +NA,NA,a-sust-i4,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,538,Infinity 5.60923076923077,5,a-sust-i4,2017-18,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 2.6, .0, .0, 2.6,777,298.8461538461538 6.258181818181818,5,a-sust-i4,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 2.2, .0, .0, .0, 2.2,479,217.72727272727272 5.44,5,a-sust-i4,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.4, .1, .0, .0, .0, .0, 0.5,160,320.0 @@ -12247,10 +12247,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.214545454545455,5,a-sust-i4,2017-18,Oxford - Clara Barton,02260005, 0.4, .8, .0, .0, .0, .0, 1.1,383,348.18181818181813 6.6425,5,a-sust-i4,2017-18,Oxford - Oxford High,02260505, 0.0, .0, .9, 2.3, .0, .0, 3.2,543,169.6875 6.228,5,a-sust-i4,2017-18,Oxford - Oxford Middle,02260405, 0.0, .9, 1.1, .0, .0, .0, 2.0,443,221.5 --Infinity,1,a-sust-i4,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity +NA,NA,a-sust-i4,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity 6.626,5,a-sust-i4,2017-18,Palmer - Old Mill Pond,02270008, 1.4, 2.6, .0, .0, .0, .0, 4.0,687,171.75 6.903076923076923,5,a-sust-i4,2017-18,Palmer - Palmer High,02270505, 0.0, .0, 2.2, 3.0, .0, .0, 5.2,713,137.1153846153846 --Infinity,1,a-sust-i4,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, .0, .0, .0, .0, .0, 0.0,614,Infinity +NA,NA,a-sust-i4,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, .0, .0, .0, .0, .0, 0.0,614,Infinity 6.036363636363636,5,a-sust-i4,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, .0, .0, 1.1, .0, .0, 1.1,270,245.45454545454544 5.954285714285714,5,a-sust-i4,2017-18,Peabody - Captain Samuel Brown,02290005, 0.6, .8, .0, .0, .0, .0, 1.4,358,255.71428571428572 5.748571428571428,5,a-sust-i4,2017-18,Peabody - Center,02290015, 0.7, .7, .0, .0, .0, .0, 1.4,394,281.42857142857144 @@ -12275,8 +12275,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.014117647058823,5,a-sust-i4,2017-18,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, 1.6, .0, .0, .1, 1.7,422,248.23529411764707 6.021333333333333,5,a-sust-i4,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, .2, .0, 2.8, 3.0,742,247.33333333333334 7.690666666666666,5,a-sust-i4,2017-18,Petersham - Petersham Center,02340005, 1.3, 1.3, .4, .0, .0, .0, 3.0,116,38.666666666666664 --Infinity,1,a-sust-i4,2017-18,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,203,Infinity --Infinity,1,a-sust-i4,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity +NA,NA,a-sust-i4,2017-18,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,203,Infinity +NA,NA,a-sust-i4,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity 6.473142857142857,5,a-sust-i4,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.2, .7, .5, 1.0, .0, .0, 3.5,668,190.85714285714286 6.413333333333334,5,a-sust-i4,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, .0, .5, 1.3, .0, .0, 1.8,357,198.33333333333331 6.604444444444445,5,a-sust-i4,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 0.2, .5, .2, .0, .0, .0, 0.9,157,174.44444444444443 @@ -12307,7 +12307,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.649411764705882,5,a-sust-i4,2017-18,Plymouth - Manomet Elementary,02390015, 0.8, .9, .0, .0, .0, .0, 1.7,287,168.82352941176472 6.437142857142857,5,a-sust-i4,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 1.5, 1.3, .0, .0, .0, .0, 2.8,547,195.35714285714286 6.4603773584905655,5,a-sust-i4,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 5.3, .0, .0, .0, 5.3,1020,192.45283018867926 --Infinity,1,a-sust-i4,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity +NA,NA,a-sust-i4,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity 6.136727272727273,5,a-sust-i4,2017-18,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 5.5, .0, .0, 5.5,1281,232.9090909090909 6.175,5,a-sust-i4,2017-18,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 4.8, .0, .0, 4.8,1095,228.125 6.391111111111111,5,a-sust-i4,2017-18,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 3.6, .0, .0, .0, 3.6,724,201.11111111111111 @@ -12328,7 +12328,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.902222222222223,5,a-sust-i4,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, .9, .0, .0, .0, 0.9,236,262.22222222222223 6.22,5,a-sust-i4,2017-18,Quaboag Regional - Warren Elementary,07780005, 0.9, .9, .3, .0, .0, .0, 2.0,445,222.5 5.568,5,a-sust-i4,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 0.4, .4, .1, .0, .0, .0, 1.0,304,304.0 --Infinity,1,a-sust-i4,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity +NA,NA,a-sust-i4,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity 5.131428571428571,5,a-sust-i4,2017-18,Quincy - Atherton Hough,02430040, 0.4, .3, .0, .0, .0, .0, 0.7,251,358.5714285714286 6.4096,5,a-sust-i4,2017-18,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.5, .0, .0, .0, 2.5,497,198.8 5.192,5,a-sust-i4,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 0.6, .4, .0, .0, .0, .0, 1.0,351,351.0 @@ -12347,9 +12347,9 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 3.36,3.36,a-sust-i4,2017-18,Quincy - Snug Harbor Community School,02430090, 0.4, .4, .0, .0, .0, .0, 0.8,464,580.0 5.24,5,a-sust-i4,2017-18,Quincy - Squantum,02430095, 0.5, .5, .0, .0, .0, .0, 1.0,345,345.0 4.194285714285714,4.19,a-sust-i4,2017-18,Quincy - Wollaston School,02430110, 0.3, .4, .0, .0, .0, .0, 0.7,333,475.7142857142857 --Infinity,1,a-sust-i4,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, .0, .0, .0, .0, .0, 0.0,36,Infinity +NA,NA,a-sust-i4,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, .0, .0, .0, .0, .0, 0.0,36,Infinity 6.650526315789473,5,a-sust-i4,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, .0, .8, .2, 2.8, .0, 3.8,641,168.6842105263158 --Infinity,1,a-sust-i4,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity +NA,NA,a-sust-i4,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity 6.410666666666667,5,a-sust-i4,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 0.7, .8, .0, .0, .0, .0, 1.5,298,198.66666666666666 6.14,5,a-sust-i4,2017-18,Randolph - J F Kennedy Elementary,02440018, 1.0, 1.0, .0, .0, .0, .0, 2.0,465,232.5 6.8213333333333335,5,a-sust-i4,2017-18,Randolph - Margaret L Donovan,02440015, 1.0, 2.0, .0, .0, .0, .0, 3.0,442,147.33333333333334 @@ -12396,8 +12396,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.319365079365079,5,a-sust-i4,2017-18,Salem - Collins Middle,02580305, 0.0, .0, 6.3, .0, .0, .0, 6.3,536,85.07936507936508 7.010909090909091,5,a-sust-i4,2017-18,Salem - Horace Mann Laboratory,02580030, 0.7, 1.4, .0, .0, .0, .0, 2.2,272,123.63636363636363 6.92,5,a-sust-i4,2017-18,Salem - Nathaniel Bowditch,02580025, 0.7, 1.5, .6, .0, .0, .0, 2.8,378,135.0 --Infinity,1,a-sust-i4,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity --Infinity,1,a-sust-i4,2017-18,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,93,Infinity +NA,NA,a-sust-i4,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity +NA,NA,a-sust-i4,2017-18,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,93,Infinity 6.556862745098039,5,a-sust-i4,2017-18,Salem - Salem High,02580505, 0.0, .0, .0, 5.1, .0, .0, 5.1,920,180.3921568627451 6.96,5,a-sust-i4,2017-18,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .2, .0, .0, 0.2,26,130.0 6.897777777777778,5,a-sust-i4,2017-18,Salem - Saltonstall School,02580050, 0.4, 1.4, .9, .0, .0, .0, 2.7,372,137.77777777777777 @@ -12428,16 +12428,16 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.688888888888889,5,a-sust-i4,2017-18,Sharon - Cottage Street,02660005, 0.5, 1.3, .0, .0, .0, .0, 1.8,520,288.88888888888886 6.4288,5,a-sust-i4,2017-18,Sharon - East Elementary,02660010, 0.8, 1.7, .0, .0, .0, .0, 2.5,491,196.4 6.444444444444445,5,a-sust-i4,2017-18,Sharon - Heights Elementary,02660015, 0.9, 1.8, .0, .0, .0, .0, 2.7,525,194.44444444444443 --Infinity,1,a-sust-i4,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity +NA,NA,a-sust-i4,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,50,Infinity 6.536949152542372,5,a-sust-i4,2017-18,Sharon - Sharon High,02660505, 0.0, .0, .0, .8, 5.1, .0, 5.9,1079,182.88135593220338 6.752857142857144,5,a-sust-i4,2017-18,Sharon - Sharon Middle,02660305, 0.0, .0, 5.6, .0, .0, .0, 5.6,873,155.89285714285714 --Infinity,1,a-sust-i4,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1326,Infinity +NA,NA,a-sust-i4,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1326,Infinity 6.227368421052632,5,a-sust-i4,2017-18,Sherborn - Pine Hill,02690010, 0.9, 1.0, .0, .0, .0, .0, 1.9,421,221.57894736842107 5.752727272727273,5,a-sust-i4,2017-18,Shrewsbury - Beal School,02710005, 1.1, .0, .0, .0, .0, .0, 1.1,309,280.9090909090909 6.261052631578948,5,a-sust-i4,2017-18,Shrewsbury - Calvin Coolidge,02710015, 1.0, .8, .0, .0, .0, .0, 1.9,413,217.3684210526316 5.6923076923076925,5,a-sust-i4,2017-18,Shrewsbury - Floral Street School,02710020, 1.0, 1.6, .0, .0, .0, .0, 2.6,750,288.46153846153845 5.625882352941177,5,a-sust-i4,2017-18,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 3.4, .0, .0, .0, 3.4,1009,296.7647058823529 --Infinity,1,a-sust-i4,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,235,Infinity +NA,NA,a-sust-i4,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,235,Infinity 5.789714285714286,5,a-sust-i4,2017-18,Shrewsbury - Sherwood Middle School,02710305, 0.0, 1.6, 1.9, .0, .0, .0, 3.5,967,276.2857142857143 5.746461538461539,5,a-sust-i4,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, .0, .0, 6.5, .0, .0, 6.5,1831,281.6923076923077 5.3963636363636365,5,a-sust-i4,2017-18,Shrewsbury - Spring Street,02710035, 0.6, .4, .0, .0, .0, .0, 1.1,358,325.45454545454544 @@ -12465,11 +12465,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.688571428571429,5,a-sust-i4,2017-18,Somerville - Winter Hill Community,02740120, 0.5, .6, 1.6, .0, .0, .0, 2.8,459,163.92857142857144 6.474666666666667,5,a-sust-i4,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0.0, .8, 2.3, .0, .0, .0, 3.0,572,190.66666666666666 6.32,5,a-sust-i4,2017-18,South Hadley - Mosier,02780020, 0.6, 1.4, .0, .0, .0, .0, 2.0,420,210.0 --Infinity,1,a-sust-i4,2017-18,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,340,Infinity +NA,NA,a-sust-i4,2017-18,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,340,Infinity 6.224,5,a-sust-i4,2017-18,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .8, 1.4, .3, 2.5,555,222.0 2.152,2.15,a-sust-i4,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, 1.0, .0, .0, 1.0,731,731.0 7.095609756097561,5,a-sust-i4,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 2.2, 1.9, 3.1, 1.0, .0, .0, 8.2,927,113.04878048780489 --Infinity,1,a-sust-i4,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,650,Infinity +NA,NA,a-sust-i4,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,650,Infinity 5.952,5,a-sust-i4,2017-18,Southampton - William E Norris,02750005, 0.8, .8, .3, .0, .0, .0, 2.0,512,256.0 6.226666666666666,5,a-sust-i4,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 0.5, .7, .0, .0, .0, .0, 1.2,266,221.66666666666669 7.206153846153846,5,a-sust-i4,2017-18,Southborough - Margaret A Neary,02760020, 0.0, 2.6, .0, .0, .0, .0, 2.6,258,99.23076923076923 @@ -12484,7 +12484,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.189333333333334,5,a-sust-i4,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 0.0, .0, 1.0, 2.1, .0, .0, 3.0,304,101.33333333333333 7.42,5,a-sust-i4,2017-18,Southern Berkshire - New Marlborough Central,07650018, 0.8, .4, .0, .0, .0, .0, 1.2,87,72.5 6.342857142857143,5,a-sust-i4,2017-18,Southern Berkshire - Undermountain,07650035, 0.2, .7, .5, .0, .0, .0, 1.4,290,207.14285714285717 --Infinity,1,a-sust-i4,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1123,Infinity +NA,NA,a-sust-i4,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1123,Infinity 6.232,5,a-sust-i4,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.5, .5, .0, .0, .0, 2.0,442,221.0 7.070967741935484,5,a-sust-i4,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, 2.2, 4.0, .0, .0, 6.2,720,116.12903225806451 6.572,5,a-sust-i4,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, .0, .0, .0, .0, .0, 2.0,357,178.5 @@ -12501,14 +12501,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.893333333333333,5,a-sust-i4,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, 1.2, .0, .0, .0, 1.2,316,263.33333333333337 7.399183673469388,5,a-sust-i4,2017-18,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 2.0, 1.6, .3, 1.0, 4.9,368,75.10204081632652 6.5088,5,a-sust-i4,2017-18,Springfield - Daniel B Brunton,02810035, 1.0, 1.5, .0, .0, .0, .0, 2.5,466,186.4 --Infinity,1,a-sust-i4,2017-18,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity 4.856,4.86,a-sust-i4,2017-18,Springfield - Edward P. Boland School,02810010, 0.7, 1.1, .0, .0, .2, .0, 2.0,786,393.0 6.628,5,a-sust-i4,2017-18,Springfield - Elias Brookings,02810030, 0.8, 1.0, .0, .0, .1, .0, 2.0,343,171.5 --Infinity,1,a-sust-i4,2017-18,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,712,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,712,Infinity 6.592,5,a-sust-i4,2017-18,Springfield - Frank H Freedman,02810075, 0.5, .5, .0, .0, .0, 1.0, 2.0,352,176.0 6.508235294117647,5,a-sust-i4,2017-18,Springfield - Frederick Harris,02810080, 1.3, 2.2, .0, .0, .0, .0, 3.4,634,186.47058823529412 --Infinity,1,a-sust-i4,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity --Infinity,1,a-sust-i4,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,26,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity 5.12,5,a-sust-i4,2017-18,Springfield - German Gerena Community School,02810195, 0.8, 1.0, .0, .0, .1, .0, 2.0,720,360.0 6.963478260869565,5,a-sust-i4,2017-18,Springfield - Glenwood,02810065, 0.7, 1.6, .0, .0, .0, .0, 2.3,298,129.56521739130434 7.238857142857143,5,a-sust-i4,2017-18,Springfield - Glickman Elementary,02810068, 1.2, 2.2, .0, .0, .0, .2, 3.5,333,95.14285714285714 @@ -12521,7 +12521,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.936,4.94,a-sust-i4,2017-18,Springfield - John J Duggan Middle,02810320, 0.0, .0, .0, 2.0, .0, .0, 2.0,766,383.0 6.76,5,a-sust-i4,2017-18,Springfield - Kensington International School,02810110, 1.0, .8, .0, .0, .0, .2, 2.0,310,155.0 7.056666666666666,5,a-sust-i4,2017-18,Springfield - Liberty,02810115, 1.1, 1.1, .0, .0, .0, .2, 2.4,283,117.91666666666667 --Infinity,1,a-sust-i4,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,12,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,12,Infinity 7.02060606060606,5,a-sust-i4,2017-18,Springfield - Lincoln,02810120, 1.2, 2.1, .0, .0, .0, .0, 3.3,404,122.42424242424244 5.364,5,a-sust-i4,2017-18,Springfield - M Marcus Kiley Middle,02810330, 0.0, .0, 2.0, .0, .0, .0, 2.0,659,329.5 3.2,3.2,a-sust-i4,2017-18,Springfield - Margaret C Ells,02810060, 0.4, .0, .0, .0, .0, .0, 0.4,240,600.0 @@ -12531,18 +12531,18 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.3,5,a-sust-i4,2017-18,Springfield - Mary O Pottenger,02810145, 0.7, 1.3, .0, .0, .0, .0, 2.0,425,212.5 6.6375,5,a-sust-i4,2017-18,Springfield - Milton Bradley School,02810023, 1.3, 1.9, .0, .0, .0, .0, 3.2,545,170.3125 6.380540540540541,5,a-sust-i4,2017-18,Springfield - Rebecca M Johnson,02810055, 1.3, 2.2, .0, .0, .1, .0, 3.7,749,202.43243243243242 --Infinity,1,a-sust-i4,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,215,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .0, .0, .0, .0, 0.0,215,Infinity 4.518787878787878,4.52,a-sust-i4,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, .0, .0, 3.1, .2, .0, 3.3,1436,435.1515151515152 5.07,5,a-sust-i4,2017-18,Springfield - STEM Middle Academy,02810350, 0.0, .0, .0, .0, .0, .8, 0.8,293,366.25 6.648,5,a-sust-i4,2017-18,Springfield - Samuel Bowles,02810020, 0.7, 1.2, .0, .0, .0, .1, 2.0,338,169.0 --Infinity,1,a-sust-i4,2017-18,Springfield - South End Middle School,02810355, 0.0, .0, .0, .0, .0, .0, 0.0,240,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - South End Middle School,02810355, 0.0, .0, .0, .0, .0, .0, 0.0,240,Infinity 5.9250632911392405,5,a-sust-i4,2017-18,Springfield - Springfield Central High,02810500, 0.0, .0, .0, 7.4, .5, .0, 7.9,2049,259.36708860759495 3.78,3.78,a-sust-i4,2017-18,Springfield - Springfield High School,02810570, 0.0, .0, .0, .2, .3, .0, 0.4,211,527.5 6.551111111111111,5,a-sust-i4,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 0.0, .0, .0, 5.1, 1.9, .1, 7.2,1304,181.11111111111111 7.513333333333334,5,a-sust-i4,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 0.2, .6, .0, .0, .3, .1, 1.2,73,60.833333333333336 7.216,5,a-sust-i4,2017-18,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, 1.0, .0, .0, 1.0,98,98.0 7.428571428571429,5,a-sust-i4,2017-18,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, .7, .0, .0, .0, 0.7,50,71.42857142857143 --Infinity,1,a-sust-i4,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity +NA,NA,a-sust-i4,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity 6.572121212121212,5,a-sust-i4,2017-18,Springfield - Sumner Avenue,02810160, 1.5, 1.7, .0, .0, .0, .1, 3.3,589,178.4848484848485 5.476363636363636,5,a-sust-i4,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.2, 1.0, .0, .0, 2.2,694,315.45454545454544 6.41,5,a-sust-i4,2017-18,Springfield - Thomas M Balliet,02810015, 0.7, 1.0, .0, .0, .0, .0, 1.6,318,198.75 @@ -12557,7 +12557,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.4,5,a-sust-i4,2017-18,Stoneham - South,02840030, 1.0, .7, .0, .0, .0, .0, 1.6,320,200.0 6.2825,5,a-sust-i4,2017-18,Stoneham - Stoneham Central Middle School,02840405, 0.0, .8, 2.3, .0, .0, .0, 3.2,687,214.6875 6.31,5,a-sust-i4,2017-18,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 3.2, .0, 3.2,676,211.25 --Infinity,1,a-sust-i4,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,103,Infinity +NA,NA,a-sust-i4,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,103,Infinity 7.027368421052632,5,a-sust-i4,2017-18,Stoughton - Helen Hansen Elementary,02850010, 0.7, 1.2, .0, .0, .0, .0, 1.9,231,121.57894736842105 6.701818181818182,5,a-sust-i4,2017-18,Stoughton - Joseph H Gibbons,02850025, 0.8, 1.4, .0, .0, .0, .0, 2.2,357,162.27272727272725 6.857600000000001,5,a-sust-i4,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 1.0, 1.4, .0, .0, .0, .0, 2.5,357,142.8 @@ -12591,11 +12591,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.31,1,a-sust-i4,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.4, .3, .4, .4, .0, .0, 1.6,1538,961.25 6.426666666666667,5,a-sust-i4,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 2.9, .0, .1, .0, 3.0,590,196.66666666666666 6.941090909090909,5,a-sust-i4,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, 5.5, .0, .0, 5.5,728,132.36363636363637 --Infinity,1,a-sust-i4,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,470,Infinity +NA,NA,a-sust-i4,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,470,Infinity 5.968,5,a-sust-i4,2017-18,Taunton - Benjamin Friedman Middle,02930315, 0.0, 1.1, 1.9, .0, .0, .0, 3.0,762,254.0 4.196923076923077,4.2,a-sust-i4,2017-18,Taunton - East Taunton Elementary,02930010, 0.8, .5, .0, .0, .0, .0, 1.3,618,475.38461538461536 4.2057142857142855,4.21,a-sust-i4,2017-18,Taunton - Edmund Hatch Bennett,02930007, 0.4, .3, .0, .0, .0, .0, 0.7,332,474.28571428571433 --Infinity,1,a-sust-i4,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,338,Infinity +NA,NA,a-sust-i4,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,338,Infinity 5.0729411764705885,5,a-sust-i4,2017-18,Taunton - Elizabeth Pole,02930027, 1.0, .7, .0, .0, .0, .0, 1.7,622,365.88235294117646 1.6,1.6,a-sust-i4,2017-18,Taunton - H H Galligan,02930057, 0.2, .1, .0, .0, .0, .0, 0.3,240,800.0 4.868571428571428,4.87,a-sust-i4,2017-18,Taunton - Hopewell,02930035, 0.4, .3, .0, .0, .0, .0, 0.7,274,391.42857142857144 @@ -12603,7 +12603,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.8184615384615395,4.82,a-sust-i4,2017-18,Taunton - Joseph C Chamberlain,02930008, 0.7, .6, .0, .0, .0, .0, 1.3,517,397.6923076923077 5.648695652173913,5,a-sust-i4,2017-18,Taunton - Joseph H Martin,02930042, 0.0, .7, 1.6, .0, .0, .0, 2.3,676,293.9130434782609 4.104,4.1,a-sust-i4,2017-18,Taunton - Mulcahey Elementary School,02930015, 0.6, .4, .0, .0, .0, .0, 1.0,487,487.0 --Infinity,1,a-sust-i4,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity +NA,NA,a-sust-i4,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity 4.8501492537313435,4.85,a-sust-i4,2017-18,Taunton - Taunton High,02930505, 0.0, .0, 1.6, 3.7, 1.4, .0, 6.7,2638,393.7313432835821 4.88,4.88,a-sust-i4,2017-18,Tewksbury - Heath-Brook,02950010, 0.0, .0, .0, .0, .9, .0, 0.9,351,390.0 5.956,5,a-sust-i4,2017-18,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,511,255.5 @@ -12629,8 +12629,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.888421052631578,4.89,a-sust-i4,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.7, .8, .4, .0, .0, .0, 1.9,739,388.94736842105266 7.306666666666666,5,a-sust-i4,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 0.0, .0, .0, .0, .6, .0, 0.6,52,86.66666666666667 7.171764705882353,5,a-sust-i4,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 0.6, .6, .8, .0, 1.4, .0, 3.4,352,103.52941176470588 --Infinity,1,a-sust-i4,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,715,Infinity --Infinity,1,a-sust-i4,2017-18,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity +NA,NA,a-sust-i4,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,715,Infinity +NA,NA,a-sust-i4,2017-18,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity 6.7104,5,a-sust-i4,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.0, .0, 2.5, .0, .0, .0, 2.5,403,161.2 4.392,4.39,a-sust-i4,2017-18,Uxbridge - Taft Early Learning Center,03040005, 1.0, .0, .0, .0, .0, .0, 1.0,451,451.0 6.898285714285714,5,a-sust-i4,2017-18,Uxbridge - Uxbridge High,03040505, 0.0, .0, .0, 3.5, .0, .0, 3.5,482,137.71428571428572 @@ -12640,7 +12640,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.88,5,a-sust-i4,2017-18,Wachusett - Chocksett Middle School,07750315, 0.0, .6, 1.9, .0, .0, .0, 2.6,364,140.0 6.196,5,a-sust-i4,2017-18,Wachusett - Davis Hill Elementary,07750018, 1.0, .9, .0, .0, .0, .0, 2.0,451,225.5 6.063157894736841,5,a-sust-i4,2017-18,Wachusett - Dawson,07750020, 1.1, .9, .0, .0, .0, .0, 1.9,460,242.10526315789474 --Infinity,1,a-sust-i4,2017-18,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,162,Infinity +NA,NA,a-sust-i4,2017-18,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,162,Infinity 6.285,5,a-sust-i4,2017-18,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.6, .0, .0, .0, .0, 1.6,343,214.375 6.235294117647059,5,a-sust-i4,2017-18,Wachusett - Houghton Elementary,07750027, 1.1, .6, .0, .0, .0, .0, 1.7,375,220.58823529411765 6.092,5,a-sust-i4,2017-18,Wachusett - Leroy E.Mayo,07750032, 1.0, .9, .0, .0, .1, .0, 2.0,477,238.5 @@ -12659,7 +12659,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.424,5,a-sust-i4,2017-18,Wales - Wales Elementary,03060005, 0.1, .2, .1, .0, .1, .0, 0.5,161,322.0 6.732903225806452,5,a-sust-i4,2017-18,Walpole - Bird Middle,03070305, 0.0, .0, 3.1, .0, .0, .0, 3.1,491,158.38709677419354 6.576,5,a-sust-i4,2017-18,Walpole - Boyden,03070010, 1.0, 1.0, .0, .0, .0, .0, 2.0,356,178.0 --Infinity,1,a-sust-i4,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity +NA,NA,a-sust-i4,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity 6.764137931034483,5,a-sust-i4,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 2.9, .0, .0, .0, 2.9,448,154.48275862068965 6.276,5,a-sust-i4,2017-18,Walpole - Elm Street School,03070005, 1.1, .9, .0, .0, .0, .0, 2.0,431,215.5 6.184,5,a-sust-i4,2017-18,Walpole - Fisher,03070015, 1.0, 1.0, .0, .0, .0, .0, 2.0,454,227.0 @@ -12680,7 +12680,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.66,5,a-sust-i4,2017-18,Ware - Ware Middle School,03090305, 0.0, 1.3, .7, .0, .0, .0, 2.0,335,167.5 5.692,5,a-sust-i4,2017-18,Wareham - John William Decas,03100003, 2.0, .0, .0, .0, .0, .0, 2.0,577,288.5 6.04,5,a-sust-i4,2017-18,Wareham - Minot Forest,03100017, 0.2, 1.8, .0, .0, .0, .0, 2.0,490,245.0 --Infinity,1,a-sust-i4,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity +NA,NA,a-sust-i4,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity 6.43027027027027,5,a-sust-i4,2017-18,Wareham - Wareham Middle,03100305, 0.0, 1.4, 2.3, .0, .0, .0, 3.7,726,196.2162162162162 6.8180645161290325,5,a-sust-i4,2017-18,Wareham - Wareham Senior High,03100505, 0.0, .0, .0, 1.8, .0, 1.3, 3.1,458,147.74193548387098 6.635555555555555,5,a-sust-i4,2017-18,Watertown - Cunniff,03140015, 0.8, 1.0, .0, .0, .0, .0, 1.8,307,170.55555555555554 @@ -12712,8 +12712,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.706666666666666,4.71,a-sust-i4,2017-18,West Bridgewater - Rose L Macdonald,03230003, 0.4, .2, .0, .0, .0, .0, 0.6,247,411.6666666666667 6.12,5,a-sust-i4,2017-18,West Bridgewater - Spring Street School,03230005, 0.6, .0, .0, .0, .0, .0, 0.6,141,235.0 6.748,5,a-sust-i4,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, .0, .7, 3.3, .0, .0, 4.0,626,156.5 --Infinity,1,a-sust-i4,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, .0, .0, .0, .0, .0, 0.0,8,Infinity --Infinity,1,a-sust-i4,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,122,Infinity +NA,NA,a-sust-i4,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, .0, .0, .0, .0, .0, 0.0,8,Infinity +NA,NA,a-sust-i4,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,122,Infinity 4.88,4.88,a-sust-i4,2017-18,West Springfield - John Ashley,03320005, 0.6, .0, .0, .0, .0, .0, 0.6,234,390.0 5.7,5,a-sust-i4,2017-18,West Springfield - John R Fausey,03320010, 0.6, 1.0, .0, .0, .0, .0, 1.6,460,287.5 6.261818181818182,5,a-sust-i4,2017-18,West Springfield - Memorial,03320025, 0.4, .7, .0, .0, .0, .0, 1.1,239,217.27272727272725 @@ -12729,7 +12729,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.956521739130435,5,a-sust-i4,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 4.6, .0, .0, .0, 4.6,600,130.43478260869566 6.4126315789473685,5,a-sust-i4,2017-18,Westborough - Westborough High,03210505, 0.0, .0, .0, 5.7, .0, .0, 5.7,1131,198.42105263157893 6.216,5,a-sust-i4,2017-18,Westfield - Abner Gibbs,03250020, 0.4, .4, .0, .0, .0, .2, 1.0,223,223.0 --Infinity,1,a-sust-i4,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,196,Infinity +NA,NA,a-sust-i4,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,196,Infinity 6.196363636363636,5,a-sust-i4,2017-18,Westfield - Franklin Ave,03250015, 0.5, .5, .0, .0, .0, .2, 1.1,248,225.45454545454544 6.508,5,a-sust-i4,2017-18,Westfield - Highland,03250025, 0.9, 1.0, .0, .0, .0, .0, 2.0,373,186.5 5.834285714285714,5,a-sust-i4,2017-18,Westfield - Munger Hill,03250033, 0.6, .6, .0, .0, .0, .2, 1.4,379,270.7142857142857 @@ -12765,12 +12765,12 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.934545454545455,5,a-sust-i4,2017-18,Westwood - Martha Jones,03350017, 0.8, 1.4, .0, .0, .0, .0, 2.2,293,133.18181818181816 6.826666666666667,5,a-sust-i4,2017-18,Westwood - Paul Hanlon,03350015, 0.7, .8, .0, .0, .0, .0, 1.5,220,146.66666666666666 6.821176470588235,5,a-sust-i4,2017-18,Westwood - Westwood High,03350505, 0.0, .0, .0, .9, 5.9, .0, 6.8,1002,147.35294117647058 --Infinity,1,a-sust-i4,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity +NA,NA,a-sust-i4,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity 6.893913043478261,5,a-sust-i4,2017-18,Westwood - William E Sheehan,03350025, 0.9, 1.5, .0, .0, .0, .0, 2.3,318,138.2608695652174 6.792,5,a-sust-i4,2017-18,Weymouth - Abigail Adams Middle School,03360310, 0.0, 2.9, 3.1, .0, .0, .0, 6.0,906,151.0 4.93,4.93,a-sust-i4,2017-18,Weymouth - Academy Avenue,03360005, 0.4, .4, .0, .0, .0, .0, 0.8,307,383.75 4.064,4.06,a-sust-i4,2017-18,Weymouth - Frederick C Murphy,03360050, 0.2, .3, .0, .0, .0, .0, 0.5,246,492.0 --Infinity,1,a-sust-i4,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity +NA,NA,a-sust-i4,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity 4.912,4.91,a-sust-i4,2017-18,Weymouth - Lawrence W Pingree,03360065, 0.2, .2, .0, .0, .0, .0, 0.5,193,386.0 5.648,5,a-sust-i4,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, .0, 3.0, .0, .0, .0, 3.0,882,294.0 5.1657142857142855,5,a-sust-i4,2017-18,Weymouth - Ralph Talbot,03360085, 0.4, .3, .0, .0, .0, .0, 0.7,248,354.28571428571433 @@ -12799,11 +12799,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.368780487804878,5,a-sust-i4,2017-18,Wilmington - Wilmington Middle School,03420330, 0.0, .0, 4.1, .0, .0, .0, 4.1,836,203.90243902439025 6.468,5,a-sust-i4,2017-18,Wilmington - Woburn Street,03420020, 1.5, .5, .0, .0, .0, .0, 2.0,383,191.5 5.544,5,a-sust-i4,2017-18,Winchendon - Memorial,03430040, 1.0, .0, .0, .0, .0, .0, 1.0,307,307.0 --Infinity,1,a-sust-i4,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity +NA,NA,a-sust-i4,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity 6.8945454545454545,5,a-sust-i4,2017-18,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .0, 2.2, .0, 2.2,304,138.18181818181816 5.816,5,a-sust-i4,2017-18,Winchendon - Murdock Middle School,03430315, 0.0, .0, 1.0, .0, .0, .0, 1.0,273,273.0 5.648,5,a-sust-i4,2017-18,Winchendon - Toy Town Elementary,03430050, 0.0, 1.0, .0, .0, .0, .0, 1.0,294,294.0 --Infinity,1,a-sust-i4,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 6.316,5,a-sust-i4,2017-18,Winchester - Ambrose Elementary,03440045, 0.7, 1.2, .0, .0, .0, .0, 2.0,421,210.5 6.388,5,a-sust-i4,2017-18,Winchester - Lincoln Elementary,03440005, 0.8, 1.2, .0, .0, .0, .0, 2.0,403,201.5 5.84,5,a-sust-i4,2017-18,Winchester - Lynch Elementary,03440020, 0.8, 1.2, .0, .0, .0, .0, 2.0,540,270.0 @@ -12884,7 +12884,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.337142857142857,5,a-sust-i4,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, 2.2, .3, 3.1, 5.6,1864,332.8571428571429 6.348,5,a-sust-i4,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.8, .8, .3, .0, .0, .0, 2.0,413,206.5 6.176,5,a-sust-i4,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.8, .9, .3, .0, .0, .0, 2.0,456,228.0 --Infinity,1,a-sust-i4,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +NA,NA,a-sust-i4,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity 6.196,5,a-sust-i4,2016-17,Acton-Boxborough - Luther Conant School,06000030, 0.7, 1.0, .3, .0, .0, .0, 2.0,451,225.5 6.1,5,a-sust-i4,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0.9, .9, .3, .0, .0, .0, 2.0,475,237.5 5.932,5,a-sust-i4,2016-17,Acton-Boxborough - Merriam School,06000010, 0.8, .9, .3, .0, .0, .0, 2.0,517,258.5 @@ -12896,7 +12896,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.492121212121212,5,a-sust-i4,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0.0, .0, 2.4, .0, .9, .0, 3.3,622,188.4848484848485 5.87764705882353,5,a-sust-i4,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0.8, .9, .0, .0, .0, .0, 1.7,451,265.29411764705884 6.1866666666666665,5,a-sust-i4,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 2.1, 2.1, .0, .0, 4.2,952,226.66666666666666 --Infinity,1,a-sust-i4,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity +NA,NA,a-sust-i4,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity 6.12,5,a-sust-i4,2016-17,Agawam - Agawam High,00050505, 0.0, .0, .0, 5.2, .0, .0, 5.2,1222,235.0 6.929523809523809,5,a-sust-i4,2016-17,Agawam - Agawam Junior High,00050405, 0.0, .0, 4.2, .0, .0, .0, 4.2,562,133.8095238095238 4.92,4.92,a-sust-i4,2016-17,Agawam - Benjamin J Phelps,00050020, 0.6, .4, .0, .0, .0, .0, 1.0,385,385.0 @@ -12921,7 +12921,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.504,5,a-sust-i4,2016-17,Andover - Doherty Middle,00090305, 0.0, .0, 3.0, .0, .0, .0, 3.0,561,187.0 6.73,5,a-sust-i4,2016-17,Andover - Henry C Sanborn Elementary,00090010, 1.1, 1.2, .0, .0, .0, .0, 2.4,381,158.75 6.5285714285714285,5,a-sust-i4,2016-17,Andover - High Plain Elementary,00090004, 1.1, 1.7, .0, .0, .0, .0, 2.8,515,183.92857142857144 --Infinity,1,a-sust-i4,2016-17,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity +NA,NA,a-sust-i4,2016-17,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,73,Infinity 6.7675,5,a-sust-i4,2016-17,Andover - South Elementary,00090020, 1.3, 1.9, .0, .0, .0, .0, 3.2,493,154.0625 6.624864864864865,5,a-sust-i4,2016-17,Andover - West Elementary,00090025, 1.6, 2.1, .0, .0, .0, .0, 3.7,636,171.89189189189187 6.758518518518518,5,a-sust-i4,2016-17,Andover - Wood Hill Middle School,00090350, 0.0, .0, 2.7, .0, .0, .0, 2.7,419,155.18518518518516 @@ -12932,7 +12932,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.594666666666666,5,a-sust-i4,2016-17,Arlington - Hardy,00100030, 0.8, .6, .0, .0, .0, .0, 1.5,451,300.6666666666667 5.733333333333334,5,a-sust-i4,2016-17,Arlington - John A Bishop,00100005, 0.7, .8, .0, .0, .0, .0, 1.5,425,283.3333333333333 6.332631578947368,5,a-sust-i4,2016-17,Arlington - M Norcross Stratton,00100055, 1.1, .7, .0, .0, .0, .0, 1.9,396,208.42105263157896 --Infinity,1,a-sust-i4,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity +NA,NA,a-sust-i4,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,70,Infinity 6.776708860759494,5,a-sust-i4,2016-17,Arlington - Ottoson Middle,00100410, 0.0, .0, 7.9, .0, .0, .0, 7.9,1208,152.91139240506328 5.546666666666666,5,a-sust-i4,2016-17,Arlington - Peirce,00100045, 0.5, .5, .0, .0, .0, .0, 0.9,276,306.6666666666667 5.807058823529411,5,a-sust-i4,2016-17,Arlington - Thompson,00100050, 1.0, .7, .0, .0, .0, .0, 1.7,466,274.11764705882354 @@ -12945,7 +12945,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.380689655172414,5,a-sust-i4,2016-17,Ashland - Ashland Middle,00140405, 0.0, .0, 2.9, .0, .0, .0, 2.9,587,202.41379310344828 5.6380952380952385,5,a-sust-i4,2016-17,Ashland - David Mindess,00140015, 0.0, 2.1, .0, .0, .0, .0, 2.1,620,295.23809523809524 6.624444444444444,5,a-sust-i4,2016-17,Ashland - Henry E Warren Elementary,00140010, 3.6, .0, .0, .0, .0, .0, 3.6,619,171.94444444444443 --Infinity,1,a-sust-i4,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,131,Infinity +NA,NA,a-sust-i4,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,131,Infinity 4.4704,4.47,a-sust-i4,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 2.5, .0, .0, 2.5,1103,441.2 4.702857142857143,4.7,a-sust-i4,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 0.9, .6, .0, .0, .0, .0, 1.4,577,412.14285714285717 6.568,5,a-sust-i4,2016-17,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, .0, 2.0, .0, 2.0,358,179.0 @@ -12953,10 +12953,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.08,5,a-sust-i4,2016-17,Athol-Royalston - Royalston Community School,06150050, 0.2, .3, .1, .0, .0, .0, 0.6,144,240.0 5.778,5,a-sust-i4,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.3, 1.2, 1.5, .0, .0, .0, 4.0,1111,277.75 5.795,5,a-sust-i4,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 1.0, .6, .0, .0, .0, .0, 1.6,441,275.625 --Infinity,1,a-sust-i4,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity +NA,NA,a-sust-i4,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .0, .0, .0, .0, 0.0,63,Infinity 4.286666666666667,4.29,a-sust-i4,2016-17,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 3.6, .0, .0, 3.6,1671,464.16666666666663 6.4228571428571435,5,a-sust-i4,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, .6, 2.2, .0, .0, .0, 2.8,552,197.14285714285717 --Infinity,1,a-sust-i4,2016-17,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity +NA,NA,a-sust-i4,2016-17,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,187,Infinity 5.80235294117647,5,a-sust-i4,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 1.0, .7, .0, .0, .0, .0, 1.7,467,274.70588235294116 5.915294117647059,5,a-sust-i4,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 1.0, .6, .0, .0, .0, .0, 1.7,443,260.5882352941177 6.499047619047619,5,a-sust-i4,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 1.2, .9, .0, .0, .0, .0, 2.1,394,187.61904761904762 @@ -12978,7 +12978,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.5287804878048785,5,a-sust-i4,2016-17,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 2.6, .0, 1.5, .0, 4.1,754,183.90243902439025 5.87,5,a-sust-i4,2016-17,Barnstable - Barnstable United Elementary School,00200050, 0.0, 3.2, .0, .0, .0, .0, 3.2,852,266.25 6.535,5,a-sust-i4,2016-17,Barnstable - Centerville Elementary,00200010, 1.2, .4, .0, .0, .0, .0, 1.6,293,183.125 --Infinity,1,a-sust-i4,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,126,Infinity +NA,NA,a-sust-i4,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,126,Infinity 6.576,5,a-sust-i4,2016-17,Barnstable - Hyannis West Elementary,00200025, 1.1, .5, .0, .0, .5, .0, 2.0,356,178.0 7.133333333333333,5,a-sust-i4,2016-17,Barnstable - West Barnstable Elementary,00200005, 1.8, .6, .0, .0, .0, .0, 2.4,260,108.33333333333334 6.236,5,a-sust-i4,2016-17,Barnstable - West Villages Elementary School,00200045, 1.6, .5, .0, .0, .0, .0, 2.0,441,220.5 @@ -12993,7 +12993,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.057142857142857,5,a-sust-i4,2016-17,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,170,242.85714285714286 6.946666666666667,5,a-sust-i4,2016-17,Belchertown - Jabish Middle School,00240025, 0.0, .0, 3.0, .0, .0, .0, 3.0,395,131.66666666666666 6.178181818181818,5,a-sust-i4,2016-17,Belchertown - Swift River Elementary,00240018, 1.2, .7, .0, .0, .3, .0, 2.2,501,227.72727272727272 --Infinity,1,a-sust-i4,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity +NA,NA,a-sust-i4,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity 5.961379310344828,5,a-sust-i4,2016-17,Bellingham - Bellingham High School,00250505, 0.0, .0, .4, 2.5, .0, .0, 2.9,739,254.82758620689657 6.374857142857143,5,a-sust-i4,2016-17,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.0, 1.5, .0, .0, .0, 3.5,711,203.14285714285714 7.752727272727273,5,a-sust-i4,2016-17,Bellingham - Keough Memorial Academy,00250510, 0.0, .0, .4, .7, .0, .0, 1.1,34,30.909090909090907 @@ -13022,7 +13022,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.4926315789473685,5,a-sust-i4,2016-17,Beverly - Centerville Elementary,00300010, 0.0, .0, .0, .0, 1.9, .0, 1.9,358,188.42105263157896 6.453333333333333,5,a-sust-i4,2016-17,Beverly - Cove Elementary,00300015, 0.0, .0, .0, .0, 2.4, .0, 2.4,464,193.33333333333334 6.306666666666667,5,a-sust-i4,2016-17,Beverly - Hannah Elementary,00300033, 0.0, .0, .0, .0, 1.8, .0, 1.8,381,211.66666666666666 --Infinity,1,a-sust-i4,2016-17,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,112,Infinity +NA,NA,a-sust-i4,2016-17,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,112,Infinity 6.353684210526316,5,a-sust-i4,2016-17,Beverly - North Beverly Elementary,00300040, 0.0, .0, .0, .0, 1.9, .0, 1.9,391,205.78947368421055 6.449577464788732,5,a-sust-i4,2016-17,Billerica - Billerica Memorial High School,00310505, 0.0, .0, .0, .3, .0, 6.9, 7.1,1376,193.80281690140845 4.06,4.06,a-sust-i4,2016-17,Billerica - Eugene C Vining,00310030, 0.2, .2, .0, .0, .0, .0, 0.4,197,492.5 @@ -13041,24 +13041,24 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.736,5,a-sust-i4,2016-17,Blackstone-Millville - Millville Elementary,06220010, 0.6, .4, .0, .0, .0, .0, 1.0,283,283.0 -1.9085714285714293,1,a-sust-i4,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, .0, .0, .7, .0, .0, 0.7,867,1238.5714285714287 7.0610526315789475,5,a-sust-i4,2016-17,Boston - Another Course To College,00350541, 0.0, .0, .0, 1.9, .0, .0, 1.9,223,117.36842105263159 --Infinity,1,a-sust-i4,2016-17,Boston - Baldwin Early Learning Center,00350003, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Baldwin Early Learning Center,00350003, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity 6.803636363636364,5,a-sust-i4,2016-17,Boston - Beethoven,00350021, 2.0, .1, .0, .0, .0, .0, 2.2,329,149.54545454545453 6.386206896551725,5,a-sust-i4,2016-17,Boston - Blackstone,00350390, 1.5, 1.4, .0, .0, .0, .0, 2.9,585,201.72413793103448 --Infinity,1,a-sust-i4,2016-17,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Boston Adult Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,197,Infinity 7.735111111111111,5,a-sust-i4,2016-17,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 12.0, .0, 1.5, 13.5,447,33.111111111111114 --Infinity,1,a-sust-i4,2016-17,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity --Infinity,1,a-sust-i4,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, .0, .0, .0, 0.0,500,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, .0, .0, .0, .0, 0.0,500,Infinity 6.88,5,a-sust-i4,2016-17,Boston - Boston International High School,00350507, 0.0, .0, .0, 2.7, .0, .0, 2.7,378,140.0 5.9975,5,a-sust-i4,2016-17,Boston - Boston Latin,00350560, 0.0, .0, 5.2, 4.3, .0, .0, 9.6,2403,250.3125 4.004705882352941,4.0,a-sust-i4,2016-17,Boston - Boston Latin Academy,00350545, 0.0, .0, 1.8, 1.6, .0, .0, 3.4,1698,499.4117647058824 6.816,5,a-sust-i4,2016-17,Boston - Boston Teachers Union School,00350012, 0.6, .7, .5, .2, .0, .0, 2.0,296,148.0 3.945,3.95,a-sust-i4,2016-17,Boston - Brighton High,00350505, 0.0, .0, .0, 1.6, .0, .0, 1.6,811,506.875 --Infinity,1,a-sust-i4,2016-17,Boston - Carter Developmental Center,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Carter Developmental Center,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,29,Infinity 6.986,5,a-sust-i4,2016-17,Boston - Charles H Taylor,00350054, 2.7, 1.3, .0, .0, .0, .0, 4.0,507,126.75 5.874285714285714,5,a-sust-i4,2016-17,Boston - Charles Sumner,00350052, 1.1, 1.0, .0, .0, .0, .0, 2.1,558,265.7142857142857 6.133333333333333,5,a-sust-i4,2016-17,Boston - Charlestown High,00350515, 0.0, .0, .0, 3.9, .0, .0, 3.9,910,233.33333333333334 7.187878787878788,5,a-sust-i4,2016-17,Boston - Clarence R Edwards Middle,00350430, 0.0, .0, 3.2, .1, .0, .0, 3.3,335,101.51515151515152 --Infinity,1,a-sust-i4,2016-17,Boston - Community Academy,00350518, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Community Academy,00350518, 0.0, .0, .0, .0, .0, .0, 0.0,44,Infinity 6.377777777777777,5,a-sust-i4,2016-17,Boston - Community Academy of Science and Health,00350581, 0.0, .0, .0, 1.8, .0, .0, 1.8,365,202.77777777777777 6.75672131147541,5,a-sust-i4,2016-17,Boston - Curley K-8 School,00350020, 3.1, 2.8, .2, .0, .0, .0, 6.1,948,155.40983606557378 7.20258064516129,5,a-sust-i4,2016-17,Boston - Curtis Guild,00350062, 1.2, 1.9, .0, .0, .0, .0, 3.1,309,99.6774193548387 @@ -13067,11 +13067,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -0.24,1,a-sust-i4,2016-17,Boston - Dearborn,00350074, 0.0, .0, .3, .0, .0, .0, 0.3,309,1030.0 6.794666666666667,5,a-sust-i4,2016-17,Boston - Dennis C Haley,00350077, 0.9, 1.1, 1.0, .0, .0, .0, 3.0,452,150.66666666666666 6.110967741935484,5,a-sust-i4,2016-17,Boston - Donald Mckay,00350080, 1.0, 1.3, .8, .0, .0, .0, 3.1,732,236.1290322580645 --Infinity,1,a-sust-i4,2016-17,Boston - Dorchester Academy,00350651, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Dorchester Academy,00350651, 0.0, .0, .0, .0, .0, .0, 0.0,99,Infinity 6.488,5,a-sust-i4,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.7, .2, .0, .0, .0, .0, 1.0,189,189.0 6.071111111111112,5,a-sust-i4,2016-17,Boston - Dr. William Henderson Lower,00350266, 0.9, .0, .0, .0, .0, .0, 0.9,217,241.11111111111111 6.877777777777777,5,a-sust-i4,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.0, .9, .9, 1.9, .0, .0, 3.6,505,140.27777777777777 --Infinity,1,a-sust-i4,2016-17,Boston - ELC - West Zone,00350006, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity +NA,NA,a-sust-i4,2016-17,Boston - ELC - West Zone,00350006, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity 6.64,5,a-sust-i4,2016-17,Boston - East Boston Early Childhood Center,00350009, 1.0, .0, .0, .0, .0, .0, 1.0,170,170.0 0.96,1,a-sust-i4,2016-17,Boston - East Boston High,00350530, 0.0, .0, .0, 1.7, .0, .0, 1.7,1496,880.0 7.126349206349206,5,a-sust-i4,2016-17,Boston - Edison K-8,00350375, 1.3, 1.9, 1.7, 1.4, .0, .1, 6.3,688,109.20634920634922 @@ -13079,27 +13079,27 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.874285714285714,5,a-sust-i4,2016-17,Boston - Eliot Elementary,00350096, 0.8, .8, .5, .0, .0, .0, 2.1,558,265.7142857142857 6.048,5,a-sust-i4,2016-17,Boston - Ellis Mendell,00350100, 0.5, .5, .0, .0, .0, .0, 1.0,244,244.0 5.375,5,a-sust-i4,2016-17,Boston - Excel High School,00350522, 0.0, .0, .0, 1.6, .0, .0, 1.6,525,328.125 --Infinity,1,a-sust-i4,2016-17,Boston - Fenway High School,00350540, 0.0, .0, .0, .0, .0, .0, 0.0,360,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Fenway High School,00350540, 0.0, .0, .0, .0, .0, .0, 0.0,360,Infinity 6.49,5,a-sust-i4,2016-17,Boston - Franklin D Roosevelt,00350116, 0.7, .8, .9, .0, .0, .0, 2.4,453,188.75 4.792,4.79,a-sust-i4,2016-17,Boston - Gardner Pilot Academy,00350326, 0.4, .4, .1, .0, .0, .0, 1.0,401,401.0 6.224,5,a-sust-i4,2016-17,Boston - George H Conley,00350122, 0.5, .5, .0, .0, .0, .0, 1.0,222,222.0 --Infinity,1,a-sust-i4,2016-17,Boston - Greater Egleston Community High School,00350543, 0.0, .0, .0, .0, .0, .0, 0.0,225,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Greater Egleston Community High School,00350543, 0.0, .0, .0, .0, .0, .0, 0.0,225,Infinity 4.04,4.04,a-sust-i4,2016-17,Boston - Harvard-Kent,00350200, 0.5, .5, .0, .0, .0, .0, 1.0,495,495.0 7.252,5,a-sust-i4,2016-17,Boston - Haynes Early Education Center,00350010, 2.0, .0, .0, .0, .0, .0, 2.0,187,93.5 6.088,5,a-sust-i4,2016-17,Boston - Henry Grew,00350135, 0.6, .5, .0, .0, .0, .0, 1.0,239,239.0 7.308,5,a-sust-i4,2016-17,Boston - Higginson,00350015, 2.0, .0, .0, .0, .0, .0, 2.0,173,86.5 6.647619047619048,5,a-sust-i4,2016-17,Boston - Higginson/Lewis K-8,00350377, 0.2, 1.1, .8, .0, .0, .0, 2.1,355,169.04761904761904 7.28,5,a-sust-i4,2016-17,Boston - Horace Mann School for the Deaf,00350750, 0.4, .3, .1, .1, .0, .0, 1.0,90,90.0 --Infinity,1,a-sust-i4,2016-17,Boston - Hugh Roe O'Donnell,00350141, 0.0, .0, .0, .0, .0, .0, 0.0,272,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Hugh Roe O'Donnell,00350141, 0.0, .0, .0, .0, .0, .0, 0.0,272,Infinity 6.609090909090909,5,a-sust-i4,2016-17,Boston - Jackson Mann,00350013, 1.6, 1.4, .6, .1, .1, .7, 4.4,765,173.86363636363635 5.744,5,a-sust-i4,2016-17,Boston - James Condon Elementary,00350146, 1.2, 1.4, .4, .0, .0, .0, 3.0,846,282.0 6.816,5,a-sust-i4,2016-17,Boston - James J Chittick,00350154, 1.0, 1.0, .0, .0, .0, .0, 2.0,296,148.0 7.005,5,a-sust-i4,2016-17,Boston - James Otis,00350156, 1.8, 1.4, .0, .0, .0, .0, 3.2,398,124.375 --Infinity,1,a-sust-i4,2016-17,Boston - James P Timilty Middle,00350485, 0.0, .0, .0, .0, .0, .0, 0.0,371,Infinity +NA,NA,a-sust-i4,2016-17,Boston - James P Timilty Middle,00350485, 0.0, .0, .0, .0, .0, .0, 0.0,371,Infinity 5.313684210526316,5,a-sust-i4,2016-17,Boston - James W Hennigan,00350153, 0.5, 1.1, .4, .0, .0, .0, 1.9,638,335.7894736842105 4.088,4.09,a-sust-i4,2016-17,Boston - Jeremiah E Burke High,00350525, 0.0, .0, .0, 1.0, .0, .0, 1.0,489,489.0 7.235555555555556,5,a-sust-i4,2016-17,Boston - John D Philbrick,00350172, 1.1, .8, .0, .0, .0, .0, 1.8,172,95.55555555555556 --Infinity,1,a-sust-i4,2016-17,Boston - John F Kennedy,00350166, 0.0, .0, .0, .0, .0, .0, 0.0,382,Infinity +NA,NA,a-sust-i4,2016-17,Boston - John F Kennedy,00350166, 0.0, .0, .0, .0, .0, .0, 0.0,382,Infinity 7.04,5,a-sust-i4,2016-17,Boston - John W McCormack,00350179, 0.0, .0, 3.7, .0, .0, .0, 3.7,444,120.0 6.746666666666667,5,a-sust-i4,2016-17,Boston - John Winthrop,00350180, 1.1, 1.0, .0, .0, .0, .0, 2.1,329,156.66666666666666 5.176,5,a-sust-i4,2016-17,Boston - Joseph J Hurley,00350182, 0.4, .4, .2, .0, .0, .0, 1.0,353,353.0 @@ -13114,14 +13114,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.672,5,a-sust-i4,2016-17,Boston - Lyndon,00350262, 0.7, .9, .4, .0, .0, .0, 2.0,582,291.0 7.414736842105263,5,a-sust-i4,2016-17,Boston - Lyon K-8,00350004, 0.5, .7, .7, .0, .0, .0, 1.9,139,73.15789473684211 6.74,5,a-sust-i4,2016-17,Boston - Lyon Upper 9-12,00350655, 0.0, .0, .0, .8, .0, .0, 0.8,126,157.5 --Infinity,1,a-sust-i4,2016-17,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,841,Infinity --Infinity,1,a-sust-i4,2016-17,Boston - Manassah E Bradley,00350215, 0.0, .0, .0, .0, .0, .0, 0.0,286,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Madison Park High,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,841,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Manassah E Bradley,00350215, 0.0, .0, .0, .0, .0, .0, 0.0,286,Infinity 7.459047619047619,5,a-sust-i4,2016-17,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 3.8, .0, .4, 4.2,284,67.61904761904762 6.608301886792453,5,a-sust-i4,2016-17,Boston - Mario Umana Academy,00350656, 1.0, .2, 3.1, 1.0, .0, .0, 5.3,922,173.9622641509434 5.649523809523809,5,a-sust-i4,2016-17,Boston - Mather,00350227, 1.0, 1.2, .0, .0, .0, .0, 2.1,617,293.8095238095238 5.584761904761905,5,a-sust-i4,2016-17,Boston - Mattahunt,00350226, 1.6, .5, .0, .0, .0, .0, 2.1,634,301.90476190476187 5.675,5,a-sust-i4,2016-17,Boston - Maurice J Tobin,00350229, 0.6, .5, .2, .0, .0, .2, 1.6,465,290.625 --Infinity,1,a-sust-i4,2016-17,Boston - Michael J Perkins,00350231, 0.0, .0, .0, .0, .0, .0, 0.0,238,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Michael J Perkins,00350231, 0.0, .0, .0, .0, .0, .0, 0.0,238,Infinity 5.98,5,a-sust-i4,2016-17,Boston - Mildred Avenue K-8,00350378, 1.0, .0, 1.0, .0, .0, .0, 2.0,505,252.5 -0.68,1,a-sust-i4,2016-17,Boston - Mission Hill School,00350382, 0.2, .0, .0, .0, .0, .0, 0.2,217,1085.0 5.666666666666666,5,a-sust-i4,2016-17,Boston - Mozart,00350237, 0.3, .3, .0, .0, .0, .0, 0.6,175,291.6666666666667 @@ -13140,7 +13140,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.477333333333334,5,a-sust-i4,2016-17,Boston - Richard J Murphy,00350240, 0.5, 1.6, .9, .0, .0, .0, 3.0,946,315.3333333333333 6.64,5,a-sust-i4,2016-17,Boston - Roger Clap,00350298, 0.6, .4, .0, .0, .0, .0, 1.0,170,170.0 5.648,5,a-sust-i4,2016-17,Boston - Samuel Adams,00350302, 1.0, .0, .0, .0, .0, .0, 1.0,294,294.0 --Infinity,1,a-sust-i4,2016-17,Boston - Samuel W Mason,00350304, 0.0, .0, .0, .0, .0, .0, 0.0,231,Infinity +NA,NA,a-sust-i4,2016-17,Boston - Samuel W Mason,00350304, 0.0, .0, .0, .0, .0, .0, 0.0,231,Infinity 4.808,4.81,a-sust-i4,2016-17,Boston - Sarah Greenwood,00350308, 0.3, .3, .4, .1, .0, .0, 1.0,399,399.0 5.658666666666666,5,a-sust-i4,2016-17,Boston - Snowden International School at Copley,00350690, 0.0, .0, .0, 1.0, .0, .5, 1.5,439,292.6666666666667 5.222857142857143,5,a-sust-i4,2016-17,Boston - TechBoston Academy,00350657, 0.0, .0, 1.8, 1.0, .0, .0, 2.8,972,347.14285714285717 @@ -13159,9 +13159,9 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.056,5,a-sust-i4,2016-17,Boston - Winship Elementary,00350374, 0.6, .4, .0, .0, .0, .0, 1.0,243,243.0 5.672,5,a-sust-i4,2016-17,Boston - Young Achievers,00350380, 1.0, .8, .2, .0, .0, .0, 2.0,582,291.0 5.634782608695652,5,a-sust-i4,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, .4, 1.2, .7, .0, .0, 2.3,680,295.6521739130435 --Infinity,1,a-sust-i4,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, .0, .0, .0, .0, .0, 0.0,404,Infinity +NA,NA,a-sust-i4,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, .0, .0, .0, .0, .0, 0.0,404,Infinity 3.24,3.24,a-sust-i4,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, .0, .7, .1, .0, .0, 0.8,476,595.0 --Infinity,1,a-sust-i4,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, .0, .0, .0, .0, .0, 0.0,415,Infinity +NA,NA,a-sust-i4,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, .0, .0, .0, .0, .0, 0.0,415,Infinity 6.682758620689655,5,a-sust-i4,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 3.1, 1.7, .6, .0, .4, .0, 5.8,955,164.6551724137931 6.91,5,a-sust-i4,2016-17,Bourne - Bourne High School,00360505, 0.0, .0, .0, .0, 3.2, .0, 3.2,436,136.25 5.812307692307693,5,a-sust-i4,2016-17,Bourne - Bourne Middle School,00360325, 0.0, .7, 1.9, .0, .0, .0, 2.6,711,273.46153846153845 @@ -13192,8 +13192,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.12,5,a-sust-i4,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .0, .0, .0, 0.1,11,110.0 6.7328,5,a-sust-i4,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 3.5, 1.5, .0, .0, .0, 5.0,792,158.4 6.963636363636364,5,a-sust-i4,2016-17,Brimfield - Brimfield Elementary,00430005, 0.4, .6, .2, .0, 1.0, .0, 2.2,285,129.54545454545453 --Infinity,1,a-sust-i4,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,468,Infinity --Infinity,1,a-sust-i4,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1303,Infinity +NA,NA,a-sust-i4,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,468,Infinity +NA,NA,a-sust-i4,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1303,Infinity 6.701333333333333,5,a-sust-i4,2016-17,Brockton - Ashfield Middle School,00440421, 0.0, .0, 1.5, .0, 1.3, .2, 3.0,487,162.33333333333334 4.496,4.5,a-sust-i4,2016-17,Brockton - Barrett Russell School,00440007, 0.5, .0, .0, .0, .0, .0, 0.5,219,438.0 -6.16,1,a-sust-i4,2016-17,Brockton - Brockton Champion High School,00440515, 0.0, .0, .0, .0, .0, .1, 0.1,177,1770.0 @@ -13203,7 +13203,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.041212121212121,5,a-sust-i4,2016-17,Brockton - Dr W Arnone Community School,00440001, 1.7, 1.0, .0, .0, .0, .5, 3.3,808,244.84848484848487 6.4,5,a-sust-i4,2016-17,Brockton - East Middle School,00440405, 0.0, .0, 1.9, .0, .0, .8, 2.7,540,200.0 5.618285714285713,5,a-sust-i4,2016-17,Brockton - Edgar B Davis,00440023, 1.1, 1.0, .8, .0, .0, .6, 3.5,1042,297.7142857142857 --Infinity,1,a-sust-i4,2016-17,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,153,Infinity +NA,NA,a-sust-i4,2016-17,Brockton - Edison Academy,00440520, 0.0, .0, .0, .0, .0, .0, 0.0,153,Infinity 6.6,5,a-sust-i4,2016-17,Brockton - Frederick Douglass Academy,00440080, 0.0, .0, .0, .0, .0, .2, 0.2,35,175.0 4.16,4.16,a-sust-i4,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 0.6, .0, .0, .0, .0, .0, 0.6,288,480.0 7.786666666666666,5,a-sust-i4,2016-17,Brockton - Goddard Alternative School,00440400, 0.0, .0, .0, .0, .0, 1.8, 1.8,48,26.666666666666664 @@ -13218,10 +13218,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 1.056,1.06,a-sust-i4,2016-17,Brockton - Oscar F Raymond,00440078, 0.5, .4, .0, .0, .0, .0, 1.0,868,868.0 6.045714285714286,5,a-sust-i4,2016-17,Brockton - South Middle School,00440415, 0.0, .0, 1.6, .0, .0, .5, 2.1,513,244.28571428571428 5.9872,5,a-sust-i4,2016-17,Brockton - West Middle School,00440420, 0.0, .0, 1.8, .0, .0, .7, 2.5,629,251.6 --Infinity,1,a-sust-i4,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, .0, .0, .0, .0, .0, 0.0,1608,Infinity +NA,NA,a-sust-i4,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, .0, .0, .0, .0, .0, 0.0,1608,Infinity 6.893913043478261,5,a-sust-i4,2016-17,Brookfield - Brookfield Elementary,00450005, 0.4, .8, .1, .0, 1.0, .0, 2.3,318,138.2608695652174 --Infinity,1,a-sust-i4,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity --Infinity,1,a-sust-i4,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity +NA,NA,a-sust-i4,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity 6.483773584905661,5,a-sust-i4,2016-17,Brookline - Brookline High,00460505, 0.0, .0, .0, .3, 10.3, .0, 10.6,2009,189.52830188679246 6.57860465116279,5,a-sust-i4,2016-17,Brookline - Edith C Baker,00460005, 1.4, 1.7, .5, .0, .6, .0, 4.3,764,177.67441860465118 6.772307692307693,5,a-sust-i4,2016-17,Brookline - Edward Devotion,00460015, 1.6, 2.1, 1.5, .0, .0, .0, 5.2,798,153.46153846153845 @@ -13230,7 +13230,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.327058823529412,5,a-sust-i4,2016-17,Brookline - Lawrence,00460030, 1.1, 1.7, .3, .0, .4, .0, 3.4,711,209.11764705882354 6.5,5,a-sust-i4,2016-17,Brookline - Michael Driscoll,00460020, 0.8, 1.7, .4, .0, .4, .0, 3.2,600,187.5 6.4111627906976745,5,a-sust-i4,2016-17,Brookline - Pierce,00460040, 1.5, 1.6, .7, .0, .5, .0, 4.3,854,198.6046511627907 --Infinity,1,a-sust-i4,2016-17,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,68,Infinity +NA,NA,a-sust-i4,2016-17,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,68,Infinity 6.464,5,a-sust-i4,2016-17,Brookline - William H Lincoln,00460035, 1.0, 1.3, .4, .0, .3, .0, 3.0,576,192.0 6.365925925925926,5,a-sust-i4,2016-17,Burlington - Burlington High,00480505, 0.0, .0, .0, 5.4, .0, .0, 5.4,1103,204.25925925925924 6.998709677419355,5,a-sust-i4,2016-17,Burlington - Fox Hill,00480007, 1.3, 1.7, .0, .0, .0, .1, 3.1,388,125.16129032258064 @@ -13259,7 +13259,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.4256,5,a-sust-i4,2016-17,Canton - Dean S Luce,00500020, 1.4, 1.1, .0, .0, .0, .0, 2.5,492,196.8 5.312,5,a-sust-i4,2016-17,Canton - John F Kennedy,00500017, 0.7, .8, .0, .0, .0, .0, 1.5,504,336.0 5.322666666666666,5,a-sust-i4,2016-17,Canton - Lt Peter M Hansen,00500012, 0.8, .7, .0, .0, .0, .0, 1.5,502,334.6666666666667 --Infinity,1,a-sust-i4,2016-17,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity +NA,NA,a-sust-i4,2016-17,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity 6.7907692307692304,5,a-sust-i4,2016-17,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 5.2, .0, .0, .0, 5.2,786,151.15384615384616 6.785,5,a-sust-i4,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, 1.0, .0, .6, .0, 1.6,243,151.875 -4.46,1,a-sust-i4,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .4, .0, .0, 0.4,623,1557.5 @@ -13276,7 +13276,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.116,5,a-sust-i4,2016-17,Chelmsford - Charles D Harrington,00560025, 1.2, .8, .0, .0, .0, .0, 2.0,471,235.5 6.776082474226804,5,a-sust-i4,2016-17,Chelmsford - Chelmsford High,00560505, 0.0, .0, .0, .6, 2.2, 6.9, 9.7,1484,152.9896907216495 6.816326530612245,5,a-sust-i4,2016-17,Chelmsford - Col Moses Parker School,00560305, 0.0, 1.8, 3.1, .0, .0, .0, 4.9,725,147.95918367346937 --Infinity,1,a-sust-i4,2016-17,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity +NA,NA,a-sust-i4,2016-17,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity 6.903225806451613,5,a-sust-i4,2016-17,Chelmsford - McCarthy Middle School,00560310, 0.0, 2.5, 3.8, .0, .0, .0, 6.2,850,137.09677419354838 6.484,5,a-sust-i4,2016-17,Chelmsford - South Row,00560015, 1.2, .8, .0, .0, .0, .0, 2.0,379,189.5 6.394805194805194,5,a-sust-i4,2016-17,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 7.7, .0, .0, 7.7,1545,200.64935064935065 @@ -13289,7 +13289,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.698666666666666,5,a-sust-i4,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 0.0, .0, .0, .0, .0, 3.0, 3.0,863,287.6666666666667 5.836,5,a-sust-i4,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 0.0, .0, .0, .0, .0, 2.0, 2.0,541,270.5 6.7555555555555555,5,a-sust-i4,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.4, .3, .1, .0, .0, .0, 0.9,140,155.55555555555554 --Infinity,1,a-sust-i4,2016-17,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,425,Infinity +NA,NA,a-sust-i4,2016-17,Chicopee - Barry,00610003, 0.0, .0, .0, .0, .0, .0, 0.0,425,Infinity 2.62,2.62,a-sust-i4,2016-17,Chicopee - Belcher,00610010, 0.4, .0, .0, .0, .0, .0, 0.4,269,672.5 3.1507692307692303,3.15,a-sust-i4,2016-17,Chicopee - Bellamy Middle,00610305, 0.0, .0, 1.3, .0, .0, .0, 1.3,788,606.1538461538462 4.384,4.38,a-sust-i4,2016-17,Chicopee - Bowe,00610015, 0.5, .5, .0, .0, .0, .0, 1.0,452,452.0 @@ -13303,11 +13303,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.56,5,a-sust-i4,2016-17,Chicopee - Lambert-Lavoie,00610040, 0.5, .5, .0, .0, .0, .0, 1.0,305,305.0 4.624,4.62,a-sust-i4,2016-17,Chicopee - Litwin,00610022, 0.3, .7, .0, .0, .0, .0, 1.0,422,422.0 6.252307692307692,5,a-sust-i4,2016-17,Chicopee - Streiber Memorial School,00610065, 0.4, .7, .0, .0, .2, .0, 1.3,284,218.46153846153845 --Infinity,1,a-sust-i4,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,281,Infinity +NA,NA,a-sust-i4,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, .0, .0, .0, .0, .0, 0.0,281,Infinity -2.533333333333334,1,a-sust-i4,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, .0, .3, .0, .0, .0, 0.3,395,1316.6666666666667 --Infinity,1,a-sust-i4,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .0, .0, .0, 0.0,279,Infinity +NA,NA,a-sust-i4,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, .0, .0, .0, .0, .0, 0.0,279,Infinity 5.752,5,a-sust-i4,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, .0, .0, 1.0, .0, .0, 1.0,281,281.0 --Infinity,1,a-sust-i4,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,177,Infinity +NA,NA,a-sust-i4,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, .0, .0, .0, .0, .0, 0.0,177,Infinity 6.27,5,a-sust-i4,2016-17,Clarksburg - Clarksburg Elementary,00630010, 0.3, .3, .3, .0, .0, .0, 0.8,173,216.25 5.176,5,a-sust-i4,2016-17,Clinton - Clinton Elementary,00640050, 1.0, 1.0, .0, .0, .0, .0, 2.0,706,353.0 5.76,5,a-sust-i4,2016-17,Clinton - Clinton Middle School,00640305, 0.0, 1.7, .8, .0, .0, .0, 2.5,700,280.0 @@ -13326,7 +13326,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.443333333333333,5,a-sust-i4,2016-17,Concord - Thoreau,00670020, 1.0, 1.4, .0, .0, .1, .0, 2.4,467,194.58333333333334 6.49,5,a-sust-i4,2016-17,Concord - Willard,00670030, 1.0, 1.4, .0, .0, .1, .0, 2.4,453,188.75 6.707848101265823,5,a-sust-i4,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, .0, .0, 5.9, 1.2, .8, 7.9,1276,161.51898734177215 --Infinity,1,a-sust-i4,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, .0, .0, .0, .0, .0, 0.0,450,Infinity +NA,NA,a-sust-i4,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, .0, .0, .0, .0, .0, 0.0,450,Infinity 6.746666666666667,5,a-sust-i4,2016-17,Conway - Conway Grammar,00680005, 0.1, .0, .0, .0, .0, .8, 0.9,141,156.66666666666666 6.3421276595744684,5,a-sust-i4,2016-17,Danvers - Danvers High,00710505, 0.0, .0, .0, 1.1, 1.5, 2.1, 4.7,974,207.23404255319147 6.993333333333333,5,a-sust-i4,2016-17,Danvers - Great Oak,00710015, 1.0, 1.5, .0, .0, .0, .0, 2.4,302,125.83333333333334 @@ -13406,10 +13406,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.256,5,a-sust-i4,2016-17,Easton - Parkview Elementary,00880015, 1.0, .0, .0, .0, .0, .0, 1.0,343,343.0 5.43076923076923,5,a-sust-i4,2016-17,Easton - Richardson Olmsted School,00880025, 0.0, 2.6, .0, .0, .0, .0, 2.6,835,321.15384615384613 6.9688888888888885,5,a-sust-i4,2016-17,Edgartown - Edgartown Elementary,00890005, 0.8, .6, .6, .0, .5, .2, 2.7,348,128.88888888888889 --Infinity,1,a-sust-i4,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, 0.0, .0, .0, .0, .0, .0, 0.0,359,Infinity +NA,NA,a-sust-i4,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, 0.0, .0, .0, .0, .0, .0, 0.0,359,Infinity 7.093333333333333,5,a-sust-i4,2016-17,Erving - Erving Elementary,00910030, 0.5, .5, .2, .0, .1, .0, 1.2,136,113.33333333333334 --Infinity,1,a-sust-i4,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, .0, .0, .0, .0, .0, 0.0,1307,Infinity --Infinity,1,a-sust-i4,2016-17,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,209,Infinity +NA,NA,a-sust-i4,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, .0, .0, .0, .0, .0, 0.0,1307,Infinity +NA,NA,a-sust-i4,2016-17,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,209,Infinity 7.566666666666666,5,a-sust-i4,2016-17,Everett - Devens School,00930030, 0.2, .5, .2, .0, .3, .0, 1.2,65,54.16666666666667 5.977,5,a-sust-i4,2016-17,Everett - Everett High,00930505, 0.0, .0, .0, 1.6, 6.4, .0, 8.0,2023,252.875 5.963243243243244,5,a-sust-i4,2016-17,Everett - George Keverian School,00930028, 0.9, 1.1, .9, .0, .8, .0, 3.7,942,254.59459459459458 @@ -13425,7 +13425,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.944,5,a-sust-i4,2016-17,Fairhaven - Leroy Wood,00940030, 0.5, 1.5, .0, .0, .0, .0, 2.0,514,257.0 6.07,5,a-sust-i4,2016-17,Fall River - B M C Durfee High,00950505, 0.0, .0, .0, .5, .0, 8.3, 8.8,2123,241.24999999999997 5.583333333333333,5,a-sust-i4,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 1.0, 1.0, .0, .0, .0, .4, 2.4,725,302.08333333333337 --Infinity,1,a-sust-i4,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity +NA,NA,a-sust-i4,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity 5.730909090909091,5,a-sust-i4,2016-17,Fall River - Henry Lord Community School,00950017, 0.9, .6, .6, .0, .0, .0, 2.2,624,283.6363636363636 2.14,2.14,a-sust-i4,2016-17,Fall River - James Tansey,00950140, 0.2, .2, .0, .0, .0, .0, 0.4,293,732.5 6.014545454545455,5,a-sust-i4,2016-17,Fall River - John J Doran,00950045, 0.8, .7, .5, .0, .0, .2, 2.2,546,248.18181818181816 @@ -13434,7 +13434,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.42051282051282,5,a-sust-i4,2016-17,Fall River - Matthew J Kuss Middle,00950320, 0.0, .0, 3.0, .0, .0, .9, 3.9,770,197.43589743589743 7.0048,5,a-sust-i4,2016-17,Fall River - Morton Middle,00950315, 0.0, .0, 5.0, .0, .0, .0, 5.0,622,124.4 5.895172413793103,5,a-sust-i4,2016-17,Fall River - North End Elementary,00950005, 1.2, 1.3, .0, .0, .0, .4, 2.9,763,263.1034482758621 --Infinity,1,a-sust-i4,2016-17,Fall River - Resiliency Middle School,00950335, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity +NA,NA,a-sust-i4,2016-17,Fall River - Resiliency Middle School,00950335, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity 5.84,5,a-sust-i4,2016-17,Fall River - Resiliency Preparatory School,00950325, 0.0, .0, .0, .0, .0, .6, 0.6,162,270.0 3.9466666666666663,3.95,a-sust-i4,2016-17,Fall River - Samuel Watson,00950145, 0.2, .3, .0, .0, .0, .0, 0.6,304,506.6666666666667 6.007619047619047,5,a-sust-i4,2016-17,Fall River - Spencer Borden,00950130, 1.0, 1.1, .0, .0, .0, .0, 2.1,523,249.04761904761904 @@ -13452,7 +13452,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.764,5,a-sust-i4,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, .3, .8, .0, 1.0, .0, 2.0,559,279.5 5.432,5,a-sust-i4,2016-17,Fitchburg - Crocker Elementary,00970016, 1.2, .8, .0, .0, .0, .0, 2.0,642,321.0 5.798181818181818,5,a-sust-i4,2016-17,Fitchburg - Fitchburg High,00970505, 0.0, .0, .0, 2.7, 1.7, .0, 4.4,1211,275.2272727272727 --Infinity,1,a-sust-i4,2016-17,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity +NA,NA,a-sust-i4,2016-17,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity 7.102666666666666,5,a-sust-i4,2016-17,Fitchburg - McKay Arts Academy,00970340, 1.2, 1.8, 3.0, .0, .0, .0, 6.0,673,112.16666666666667 6.090666666666667,5,a-sust-i4,2016-17,Fitchburg - Memorial Intermediate,00970048, 0.0, .8, 2.3, .0, .0, .0, 3.0,716,238.66666666666666 5.512,5,a-sust-i4,2016-17,Fitchburg - Reingold Elementary,00970043, 1.2, .8, .0, .0, .0, .0, 2.0,622,311.0 @@ -13472,7 +13472,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.089090909090909,5,a-sust-i4,2016-17,Framingham - Framingham High School,01000515, 0.0, .0, .0, 7.6, 1.3, .0, 8.8,2102,238.86363636363635 6.966666666666667,5,a-sust-i4,2016-17,Framingham - Fuller Middle,01000305, 0.0, .0, 3.6, .0, .0, .0, 3.6,465,129.16666666666666 6.8246153846153845,5,a-sust-i4,2016-17,Framingham - Hemenway,01000015, 2.3, 1.5, .0, .0, .0, .0, 3.9,573,146.92307692307693 --Infinity,1,a-sust-i4,2016-17,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,234,Infinity +NA,NA,a-sust-i4,2016-17,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,234,Infinity 6.571428571428571,5,a-sust-i4,2016-17,Framingham - King Elementary School,01000005, 1.4, .0, .0, .0, .0, .0, 1.4,250,178.57142857142858 6.877142857142857,5,a-sust-i4,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 1.1, 1.7, .0, .0, .0, .0, 2.8,393,140.35714285714286 6.886,5,a-sust-i4,2016-17,Framingham - Miriam F McCarthy School,01000050, 1.8, 2.2, .0, .0, .0, .0, 4.0,557,139.25 @@ -13482,7 +13482,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.84,4.84,a-sust-i4,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .0, 1.0, .0, 1.0,395,395.0 6.6251851851851855,5,a-sust-i4,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 2.7, .0, .0, .0, 2.7,464,171.85185185185185 5.582222222222223,5,a-sust-i4,2016-17,Franklin - Davis Thayer,01010035, 0.4, .5, .0, .0, .0, .0, 0.9,272,302.22222222222223 --Infinity,1,a-sust-i4,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,131,Infinity +NA,NA,a-sust-i4,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,131,Infinity 6.303414634146341,5,a-sust-i4,2016-17,Franklin - Franklin High,01010505, 0.0, .0, .0, .0, 8.2, .0, 8.2,1739,212.07317073170734 7.281739130434782,5,a-sust-i4,2016-17,Franklin - Helen Keller Elementary,01010012, 0.8, 1.8, .0, .0, 2.0, .0, 4.6,413,89.78260869565219 6.619259259259259,5,a-sust-i4,2016-17,Franklin - Horace Mann,01010405, 0.0, .0, 2.7, .0, .0, .0, 2.7,466,172.59259259259258 @@ -13510,7 +13510,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.8662068965517244,5,a-sust-i4,2016-17,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 2.9, .0, .0, 2.9,411,141.72413793103448 7.12,5,a-sust-i4,2016-17,Georgetown - Georgetown Middle School,01050305, 0.0, .0, 2.1, .0, .0, .0, 2.1,231,110.0 6.2575,5,a-sust-i4,2016-17,Georgetown - Penn Brook,01050010, 1.5, 1.2, .6, .0, .0, .0, 3.2,697,217.8125 --Infinity,1,a-sust-i4,2016-17,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity +NA,NA,a-sust-i4,2016-17,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity 5.66,5,a-sust-i4,2016-17,Gill-Montague - Gill Elementary,06740005, 0.2, .2, .1, .0, .0, .0, 0.4,117,292.5 6.64,5,a-sust-i4,2016-17,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 1.4, .0, .0, .0, 1.4,238,170.0 5.04,5,a-sust-i4,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 0.4, .0, .0, .0, .0, .0, 0.4,148,370.0 @@ -13520,7 +13520,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.58,5,a-sust-i4,2016-17,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,355,177.5 6.433333333333333,5,a-sust-i4,2016-17,Gloucester - East Gloucester Elementary,01070020, 0.0, .0, .0, .0, .0, 1.2, 1.2,235,195.83333333333334 6.6912,5,a-sust-i4,2016-17,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .0, 5.0, .0, 5.0,818,163.6 --Infinity,1,a-sust-i4,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity +NA,NA,a-sust-i4,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity 6.935,5,a-sust-i4,2016-17,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.6, 1.6,213,133.125 6.9808,5,a-sust-i4,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 5.0, .0, .0, .0, 5.0,637,127.4 6.533333333333333,5,a-sust-i4,2016-17,Gloucester - Veterans Memorial,01070045, 0.0, .0, .0, .0, .0, 1.2, 1.2,220,183.33333333333334 @@ -13535,18 +13535,18 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.497777777777777,5,a-sust-i4,2016-17,Granby - East Meadow,01110004, 0.0, .6, .3, .0, .0, .0, 0.9,169,187.77777777777777 5.822857142857143,5,a-sust-i4,2016-17,Granby - Granby Jr Sr High School,01110505, 0.0, .0, .4, 1.0, .0, .0, 1.4,381,272.14285714285717 4.704,4.7,a-sust-i4,2016-17,Granby - West Street,01110010, 0.4, .1, .0, .0, .0, .0, 0.5,206,412.0 --Infinity,1,a-sust-i4,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1395,Infinity --Infinity,1,a-sust-i4,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1473,Infinity --Infinity,1,a-sust-i4,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .0, .0, .0, 0.0,2184,Infinity --Infinity,1,a-sust-i4,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2154,Infinity +NA,NA,a-sust-i4,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .0, .0, .0, 0.0,1395,Infinity +NA,NA,a-sust-i4,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1473,Infinity +NA,NA,a-sust-i4,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .0, .0, .0, 0.0,2184,Infinity +NA,NA,a-sust-i4,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2154,Infinity 7.028,5,a-sust-i4,2016-17,Greenfield - Discovery School at Four Corners,01140025, 1.3, .7, .0, .0, .0, .0, 2.0,243,121.5 7.064,5,a-sust-i4,2016-17,Greenfield - Federal Street School,01140010, 1.2, .5, .0, .0, .3, .0, 2.0,234,117.0 7.76,5,a-sust-i4,2016-17,Greenfield - Green River,01140030, 0.0, .0, .0, .0, .2, .0, 0.2,6,30.0 6.88,5,a-sust-i4,2016-17,Greenfield - Greenfield High,01140505, 0.0, .0, .3, 2.1, .8, .0, 3.2,448,140.0 7.124444444444444,5,a-sust-i4,2016-17,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 1.6, .0, 1.0, .0, 3.6,394,109.44444444444444 7.362962962962963,5,a-sust-i4,2016-17,Greenfield - Newton School,01140035, 1.7, 1.0, .0, .0, .0, .0, 2.7,215,79.62962962962962 --Infinity,1,a-sust-i4,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .0, 0.0,122,Infinity --Infinity,1,a-sust-i4,2016-17,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .0, 0.0,122,Infinity +NA,NA,a-sust-i4,2016-17,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity 6.088,5,a-sust-i4,2016-17,Groton-Dunstable - Florence Roche School,06730010, 1.1, .8, .0, .0, .0, .0, 2.0,478,239.0 5.97,5,a-sust-i4,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, 3.2, .0, .0, 3.2,812,253.75 6.7344,5,a-sust-i4,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.2, 3.8, .0, .0, .0, 5.0,791,158.2 @@ -13589,7 +13589,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.16,5,a-sust-i4,2016-17,Haverhill - Haverhill Alternative School,01280033, 0.0, .0, .0, .0, .2, .0, 0.2,46,230.0 6.050133333333333,5,a-sust-i4,2016-17,Haverhill - Haverhill High,01280505, 0.0, .0, .0, .8, 6.7, .0, 7.5,1828,243.73333333333332 5.455,5,a-sust-i4,2016-17,Haverhill - John G Whittier,01280085, 0.0, .4, 1.3, .0, .0, .0, 1.6,509,318.125 --Infinity,1,a-sust-i4,2016-17,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,203,Infinity +NA,NA,a-sust-i4,2016-17,Haverhill - Moody,01280045, 0.0, .0, .0, .0, .0, .0, 0.0,203,Infinity 5.6,5,a-sust-i4,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0.8, .8, .0, .0, .0, .0, 1.7,510,300.0 7.49,5,a-sust-i4,2016-17,Haverhill - TEACH,01280073, 0.2, .1, .0, .0, .5, .0, 0.8,51,63.75 5.84,5,a-sust-i4,2016-17,Haverhill - Tilton,01280075, 1.1, .8, .0, .0, .0, .0, 2.0,540,270.0 @@ -13622,17 +13622,17 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.84,5,a-sust-i4,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 0.6, .6, .6, .0, .0, .0, 1.7,459,270.0 4.696,4.7,a-sust-i4,2016-17,Holyoke - Morgan Full Service Community School,01370025, 0.3, .3, .3, .0, .0, .0, 1.0,413,413.0 6.458947368421052,5,a-sust-i4,2016-17,Holyoke - William R. Peck School,01370030, 0.0, .5, 1.3, .0, .1, .0, 1.9,366,192.63157894736844 --Infinity,1,a-sust-i4,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, .0, .0, .0, .0, .0, 0.0,252,Infinity --Infinity,1,a-sust-i4,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,702,Infinity +NA,NA,a-sust-i4,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, .0, .0, .0, .0, .0, 0.0,252,Infinity +NA,NA,a-sust-i4,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,702,Infinity 5.534117647058824,5,a-sust-i4,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, .6, .7, .4, .0, 1.7,524,308.2352941176471 6.310769230769231,5,a-sust-i4,2016-17,Hopedale - Memorial,01380010, 0.8, 1.1, .7, .0, .0, .0, 2.6,549,211.15384615384616 --Infinity,1,a-sust-i4,2016-17,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity +NA,NA,a-sust-i4,2016-17,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,64,Infinity 4.7272727272727275,4.73,a-sust-i4,2016-17,Hopkinton - Center,01390005, 1.1, .0, .0, .0, .0, .0, 1.1,450,409.09090909090907 5.56,5,a-sust-i4,2016-17,Hopkinton - Elmwood,01390010, 0.9, .7, .0, .0, .0, .0, 1.6,488,305.0 6.4096,5,a-sust-i4,2016-17,Hopkinton - Hopkins Elementary School,01390015, 0.0, 2.5, .0, .0, .0, .0, 2.5,497,198.8 6.5193220338983044,5,a-sust-i4,2016-17,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 5.9, .0, .0, 5.9,1092,185.08474576271186 6.820338983050847,5,a-sust-i4,2016-17,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 5.9, .0, .0, .0, 5.9,870,147.45762711864407 --Infinity,1,a-sust-i4,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity +NA,NA,a-sust-i4,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity 6.052,5,a-sust-i4,2016-17,Hudson - C A Farley,01410030, 1.2, .8, .0, .0, .0, .0, 2.0,487,243.5 6.890434782608696,5,a-sust-i4,2016-17,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.5, 3.1, .0, .0, .0, 4.6,638,138.69565217391306 7.434782608695652,5,a-sust-i4,2016-17,Hudson - Forest Avenue Elementary,01410015, 4.0, .6, .0, .0, .0, .0, 4.6,325,70.65217391304348 @@ -13662,21 +13662,21 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.192,4.19,a-sust-i4,2016-17,Lawrence - Frost Middle School,01490525, 0.0, .3, .8, .0, .0, .0, 1.0,476,476.0 6.613333333333333,5,a-sust-i4,2016-17,Lawrence - Gerard A. Guilmette,01490022, 1.4, 1.5, .0, .0, .0, .0, 3.0,520,173.33333333333334 7.004,5,a-sust-i4,2016-17,Lawrence - Guilmette Middle School,01490025, 0.0, 1.1, 2.9, .0, .0, .0, 4.0,498,124.5 --Infinity,1,a-sust-i4,2016-17,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,176,Infinity +NA,NA,a-sust-i4,2016-17,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,176,Infinity 4.928,4.93,a-sust-i4,2016-17,Lawrence - James F Hennessey,01490020, 1.0, .0, .0, .0, .0, .0, 1.0,384,384.0 --Infinity,1,a-sust-i4,2016-17,Lawrence - John Breen School,01490003, 0.0, .0, .0, .0, .0, .0, 0.0,327,Infinity +NA,NA,a-sust-i4,2016-17,Lawrence - John Breen School,01490003, 0.0, .0, .0, .0, .0, .0, 0.0,327,Infinity 6.548,5,a-sust-i4,2016-17,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,363,181.5 --Infinity,1,a-sust-i4,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,139,Infinity +NA,NA,a-sust-i4,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,139,Infinity 7.312,5,a-sust-i4,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 2.0, .0, .0, .0, .0, .0, 2.0,172,86.0 6.156643356643357,5,a-sust-i4,2016-17,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 14.3, .0, .0, 14.3,3295,230.4195804195804 4.0,4.0,a-sust-i4,2016-17,Lawrence - Oliver Partnership School,01490048, 0.4, .6, .0, .0, .0, .0, 1.0,500,500.0 5.892,5,a-sust-i4,2016-17,Lawrence - Parthum Middle School,01490027, 0.0, .5, 1.5, .0, .0, .0, 2.0,527,263.5 --Infinity,1,a-sust-i4,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity +NA,NA,a-sust-i4,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, .0, .0, .0, .0, .0, 0.0,151,Infinity 6.402666666666667,5,a-sust-i4,2016-17,Lawrence - Robert Frost,01490018, 1.8, 1.2, .0, .0, .0, .0, 3.0,599,199.66666666666666 --Infinity,1,a-sust-i4,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity --Infinity,1,a-sust-i4,2016-17,Lawrence - School for Exceptional Studies,01490537, 0.0, .0, .0, .0, .0, .0, 0.0,176,Infinity +NA,NA,a-sust-i4,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 0.0, .0, .0, .0, .0, .0, 0.0,172,Infinity +NA,NA,a-sust-i4,2016-17,Lawrence - School for Exceptional Studies,01490537, 0.0, .0, .0, .0, .0, .0, 0.0,176,Infinity 5.156,5,a-sust-i4,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 0.8, 1.2, .0, .0, .0, .0, 2.0,711,355.5 --Infinity,1,a-sust-i4,2016-17,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,458,Infinity +NA,NA,a-sust-i4,2016-17,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,458,Infinity 5.424,5,a-sust-i4,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,322,322.0 5.24,5,a-sust-i4,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,345,345.0 5.132,5,a-sust-i4,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.9, .6, .6, .0, .0, .0, 2.0,717,358.5 @@ -13688,14 +13688,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.817777777777778,4.82,a-sust-i4,2016-17,Leicester - Leicester Primary School,01510010, 0.9, .0, .0, .0, .0, .0, 0.9,358,397.77777777777777 6.744827586206897,5,a-sust-i4,2016-17,Lenox - Lenox Memorial High,01520505, 0.0, .0, .6, 2.3, .0, .0, 2.9,455,156.89655172413794 6.622222222222223,5,a-sust-i4,2016-17,Lenox - Morris,01520015, 0.9, .9, .0, .0, .0, .0, 1.8,310,172.22222222222223 --Infinity,1,a-sust-i4,2016-17,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity +NA,NA,a-sust-i4,2016-17,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity -19.84,1,a-sust-i4,2016-17,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .2, .0, 0.2,696,3480.0 5.252,5,a-sust-i4,2016-17,Leominster - Fall Brook,01530007, 0.9, 1.1, .0, .0, .0, .0, 2.0,687,343.5 5.732,5,a-sust-i4,2016-17,Leominster - Frances Drake School,01530010, 1.0, 1.0, .0, .0, .0, .0, 2.0,567,283.5 6.061538461538462,5,a-sust-i4,2016-17,Leominster - Johnny Appleseed,01530025, 1.5, 1.1, .0, .0, .0, .0, 2.6,630,242.3076923076923 --Infinity,1,a-sust-i4,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity +NA,NA,a-sust-i4,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity 6.420363636363636,5,a-sust-i4,2016-17,Leominster - Leominster High School,01530505, 0.0, .0, .0, .2, 5.3, .0, 5.5,1086,197.45454545454547 --Infinity,1,a-sust-i4,2016-17,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity +NA,NA,a-sust-i4,2016-17,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity 5.232,5,a-sust-i4,2016-17,Leominster - Northwest,01530030, 1.0, 1.1, .0, .0, .0, .0, 2.0,692,346.0 5.92,5,a-sust-i4,2016-17,Leominster - Priest Street,01530040, 0.5, .0, .0, .0, .0, .0, 0.5,130,260.0 6.072,5,a-sust-i4,2016-17,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,482,241.0 @@ -13707,7 +13707,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.512,5,a-sust-i4,2016-17,Lexington - Harrington,01550030, 1.0, 1.5, .0, .0, .0, .0, 2.5,465,186.0 6.68,5,a-sust-i4,2016-17,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 5.4, .0, .0, .0, 5.4,891,165.0 6.524137931034483,5,a-sust-i4,2016-17,Lexington - Joseph Estabrook,01550010, 1.1, 1.8, .0, .0, .0, .0, 2.9,535,184.48275862068965 --Infinity,1,a-sust-i4,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +NA,NA,a-sust-i4,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity 6.567213114754098,5,a-sust-i4,2016-17,Lexington - Lexington High,01550505, 0.0, .0, .0, 6.9, 3.0, 2.3, 12.2,2185,179.0983606557377 6.483333333333333,5,a-sust-i4,2016-17,Lexington - Maria Hastings,01550035, 0.9, 1.5, .0, .0, .0, .0, 2.4,455,189.58333333333334 6.864,5,a-sust-i4,2016-17,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 5.6, .0, .2, .2, 6.0,852,142.0 @@ -13748,7 +13748,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.672,5,a-sust-i4,2016-17,Lowell - Pyne Arts,01600018, 1.4, 1.0, .4, .0, .0, .2, 3.0,498,166.0 5.572,5,a-sust-i4,2016-17,Lowell - Rogers STEM Academy,01600005, 1.2, .8, .0, .0, .0, .0, 2.0,607,303.5 4.064,4.06,a-sust-i4,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 0.5, .5, .0, .0, .0, .0, 1.0,492,492.0 --Infinity,1,a-sust-i4,2016-17,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,119,Infinity +NA,NA,a-sust-i4,2016-17,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,119,Infinity 6.968,5,a-sust-i4,2016-17,Lowell - Washington,01600055, 1.3, .8, .0, .0, .0, .0, 2.0,258,129.0 3.642666666666667,3.64,a-sust-i4,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.2, .2, .2, .0, .0, 1.0, 1.5,817,544.6666666666666 7.06,5,a-sust-i4,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, .0, .0, .8, .0, .0, 0.8,94,117.5 @@ -13771,7 +13771,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.574545454545455,5,a-sust-i4,2016-17,Lynn - E J Harrington,01630045, 1.1, .7, .0, .0, .2, .2, 2.2,667,303.18181818181813 5.832727272727273,5,a-sust-i4,2016-17,Lynn - Early Childhood Center,01630004, 0.7, .0, .0, .0, .4, .0, 1.1,298,270.9090909090909 6.252,5,a-sust-i4,2016-17,Lynn - Edward A Sisson,01630095, 0.8, .8, .0, .0, .2, .2, 2.0,437,218.5 --Infinity,1,a-sust-i4,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,308,Infinity +NA,NA,a-sust-i4,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .0, .0, .0, .0, 0.0,308,Infinity 5.625,5,a-sust-i4,2016-17,Lynn - Hood,01630055, 0.7, .6, .0, .0, .1, .2, 1.6,475,296.875 5.367619047619048,5,a-sust-i4,2016-17,Lynn - Ingalls,01630060, 0.8, .9, .0, .0, .1, .3, 2.1,691,329.04761904761904 5.7694117647058825,5,a-sust-i4,2016-17,Lynn - Julia F Callahan,01630030, 0.7, .6, .0, .0, .2, .2, 1.7,474,278.8235294117647 @@ -13790,15 +13790,15 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.348,5,a-sust-i4,2016-17,Lynnfield - Huckleberry Hill,01640010, 1.2, .8, .0, .0, .0, .0, 2.0,413,206.5 6.744,5,a-sust-i4,2016-17,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, 4.0, .0, .0, 4.0,628,157.0 5.208,5,a-sust-i4,2016-17,Lynnfield - Lynnfield Middle School,01640405, 0.0, .5, 1.5, .0, .0, .0, 2.0,698,349.0 --Infinity,1,a-sust-i4,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +NA,NA,a-sust-i4,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity 6.316,5,a-sust-i4,2016-17,Lynnfield - Summer Street,01640020, 1.3, .7, .0, .0, .0, .0, 2.0,421,210.5 5.869767441860466,5,a-sust-i4,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 2.2, .9, .0, 1.3, .0, .0, 4.3,1145,266.27906976744185 --Infinity,1,a-sust-i4,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +NA,NA,a-sust-i4,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity 5.056666666666666,5,a-sust-i4,2016-17,Malden - Beebe,01650003, 1.1, .7, .6, .0, .0, .0, 2.4,883,367.9166666666667 5.9154285714285715,5,a-sust-i4,2016-17,Malden - Ferryway,01650013, 1.2, 1.2, 1.2, .0, .0, .0, 3.5,912,260.57142857142856 5.672,5,a-sust-i4,2016-17,Malden - Forestdale,01650027, 0.7, .7, .6, .0, .0, .0, 2.0,582,291.0 5.52551724137931,5,a-sust-i4,2016-17,Malden - Linden,01650047, 0.5, .8, 1.4, .0, .2, .0, 2.9,897,309.3103448275862 --Infinity,1,a-sust-i4,2016-17,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,299,Infinity +NA,NA,a-sust-i4,2016-17,Malden - Malden Early Learning Center,01650049, 0.0, .0, .0, .0, .0, .0, 0.0,299,Infinity 5.0672,5,a-sust-i4,2016-17,Malden - Malden High,01650505, 0.0, .0, .0, 3.8, .0, 1.2, 5.0,1833,366.6 6.0528,5,a-sust-i4,2016-17,Malden - Salemwood,01650057, 1.3, 1.5, 2.3, .0, .0, .0, 5.0,1217,243.4 6.8,5,a-sust-i4,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 0.7, .8, .0, .0, .0, .0, 1.5,225,150.0 @@ -13809,7 +13809,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.773333333333333,5,a-sust-i4,2016-17,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 6.6, .0, .0, .0, 6.6,1012,153.33333333333334 6.409523809523809,5,a-sust-i4,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.2, .0, .0, .0, .0, 4.2,835,198.8095238095238 6.6157894736842096,5,a-sust-i4,2016-17,Mansfield - Mansfield High,01670505, 0.0, .0, .0, .2, 7.4, .0, 7.6,1315,173.0263157894737 --Infinity,1,a-sust-i4,2016-17,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity +NA,NA,a-sust-i4,2016-17,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,86,Infinity 6.824,5,a-sust-i4,2016-17,Marblehead - Elbridge Gerry,01680015, 1.0, .0, .0, .0, .0, .0, 1.0,147,147.0 6.700952380952381,5,a-sust-i4,2016-17,Marblehead - Glover,01680020, 1.6, .5, .0, .0, .0, .0, 2.1,341,162.38095238095238 6.664,5,a-sust-i4,2016-17,Marblehead - L H Coffin,01680010, 0.5, .5, .0, .0, .0, .0, 1.0,167,167.0 @@ -13821,7 +13821,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.778666666666667,5,a-sust-i4,2016-17,Marion - Sippican,01690005, 0.9, 1.5, .6, .0, .0, .0, 3.0,458,152.66666666666666 6.715,5,a-sust-i4,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 2.0, 6.0, .0, .0, .0, 8.0,1285,160.625 4.96,4.96,a-sust-i4,2016-17,Marlborough - Charles Jaworek School,01700030, 1.3, .9, .0, .0, .0, .0, 2.2,836,379.99999999999994 --Infinity,1,a-sust-i4,2016-17,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,164,Infinity +NA,NA,a-sust-i4,2016-17,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,164,Infinity 5.516,5,a-sust-i4,2016-17,Marlborough - Francis J Kane,01700008, 1.2, .7, .0, .0, .0, .0, 2.0,621,310.5 6.851578947368421,5,a-sust-i4,2016-17,Marlborough - Marlborough High,01700505, 0.0, .0, .0, .2, 7.3, .2, 7.6,1091,143.55263157894737 5.888,5,a-sust-i4,2016-17,Marlborough - Richer,01700025, 1.2, .8, .0, .0, .0, .0, 2.0,528,264.0 @@ -13852,20 +13852,20 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.605714285714286,5,a-sust-i4,2016-17,Medfield - Memorial School,01750003, 1.4, .0, .0, .0, .0, .0, 1.4,419,299.2857142857143 5.46909090909091,5,a-sust-i4,2016-17,Medfield - Ralph Wheelock School,01750007, 0.6, .5, .0, .0, .0, .0, 1.1,348,316.3636363636363 6.211428571428572,5,a-sust-i4,2016-17,Medfield - Thomas Blake Middle,01750305, 0.0, .0, 2.8, .0, .0, .0, 2.8,626,223.57142857142858 --Infinity,1,a-sust-i4,2016-17,Medford - Brooks School,01760130, 0.0, .0, .0, .0, .0, .0, 0.0,497,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - Christopher Columbus,01760140, 0.0, .0, .0, .0, .0, .0, 0.0,426,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - Curtis-Tufts,01760510, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, .0, .0, .0, .0, .0, 0.0,544,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, .0, .0, .0, .0, .0, 0.0,476,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, .0, .0, .0, .0, .0, 0.0,506,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - Medford High,01760505, 0.0, .0, .0, .0, .0, .0, 0.0,1174,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, .0, .0, .0, .0, .0, 0.0,257,Infinity --Infinity,1,a-sust-i4,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, .0, .0, .0, .0, .0, 0.0,585,Infinity +NA,NA,a-sust-i4,2016-17,Medford - Brooks School,01760130, 0.0, .0, .0, .0, .0, .0, 0.0,497,Infinity +NA,NA,a-sust-i4,2016-17,Medford - Christopher Columbus,01760140, 0.0, .0, .0, .0, .0, .0, 0.0,426,Infinity +NA,NA,a-sust-i4,2016-17,Medford - Curtis-Tufts,01760510, 0.0, .0, .0, .0, .0, .0, 0.0,22,Infinity +NA,NA,a-sust-i4,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, .0, .0, .0, .0, .0, 0.0,544,Infinity +NA,NA,a-sust-i4,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, .0, .0, .0, .0, .0, 0.0,476,Infinity +NA,NA,a-sust-i4,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, .0, .0, .0, .0, .0, 0.0,506,Infinity +NA,NA,a-sust-i4,2016-17,Medford - Medford High,01760505, 0.0, .0, .0, .0, .0, .0, 0.0,1174,Infinity +NA,NA,a-sust-i4,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, .0, .0, .0, .0, .0, 0.0,257,Infinity +NA,NA,a-sust-i4,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, .0, .0, .0, .0, .0, 0.0,585,Infinity 5.996,5,a-sust-i4,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.7, 1.3, .0, .0, .0, .0, 2.0,501,250.5 6.04,5,a-sust-i4,2016-17,Medway - John D Mc Govern Elementary,01770013, 1.4, .0, .0, .0, .0, .0, 1.4,343,245.00000000000003 5.897931034482759,5,a-sust-i4,2016-17,Medway - Medway High,01770505, 0.0, .0, .0, .1, 2.7, .0, 2.9,762,262.7586206896552 6.864,5,a-sust-i4,2016-17,Medway - Medway Middle,01770305, 0.0, 1.2, 3.8, .0, .0, .0, 5.0,710,142.0 --Infinity,1,a-sust-i4,2016-17,Melrose - Early Childhood Center,01780003, 0.0, .0, .0, .0, .0, .0, 0.0,290,Infinity +NA,NA,a-sust-i4,2016-17,Melrose - Early Childhood Center,01780003, 0.0, .0, .0, .0, .0, .0, 0.0,290,Infinity 6.818823529411765,5,a-sust-i4,2016-17,Melrose - Herbert Clark Hoover,01780017, 0.4, 1.4, .0, .0, .0, .0, 1.7,251,147.64705882352942 5.35,5,a-sust-i4,2016-17,Melrose - Horace Mann,01780025, 0.4, .4, .0, .0, .0, .0, 0.8,265,331.25 5.133333333333333,5,a-sust-i4,2016-17,Melrose - Lincoln,01780020, 0.7, .5, .0, .0, .0, .0, 1.2,430,358.33333333333337 @@ -13892,7 +13892,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.859428571428571,5,a-sust-i4,2016-17,Milford - Brookside,01850065, 3.5, .0, .0, .0, .0, .0, 3.5,499,142.57142857142858 6.136,5,a-sust-i4,2016-17,Milford - Memorial,01850010, 2.0, .0, .0, .0, .0, .0, 2.0,466,233.0 5.248484848484848,5,a-sust-i4,2016-17,Milford - Milford High,01850505, 0.0, .0, .0, 1.8, 1.5, .0, 3.3,1135,343.93939393939394 --Infinity,1,a-sust-i4,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity +NA,NA,a-sust-i4,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity 6.730491803278688,5,a-sust-i4,2016-17,Milford - Stacy Middle,01850305, 0.0, .0, 5.9, .0, .0, .2, 6.1,968,158.68852459016395 6.4272,5,a-sust-i4,2016-17,Milford - Woodland,01850090, 0.0, 5.0, .0, .0, .0, .0, 5.0,983,196.6 5.748,5,a-sust-i4,2016-17,Millbury - Elmwood Street,01860017, 0.5, .0, .0, .0, 1.5, .0, 2.0,563,281.5 @@ -13920,10 +13920,10 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.748,5,a-sust-i4,2016-17,Monson - Granite Valley Middle,01910310, 0.0, .4, 1.6, .0, .0, .0, 2.0,313,156.5 6.724444444444444,5,a-sust-i4,2016-17,Monson - Monson High School,01910505, 0.0, .0, .0, 1.2, .0, .6, 1.8,287,159.44444444444443 6.484,5,a-sust-i4,2016-17,Monson - Quarry Hill Community School,01910025, 1.3, .7, .0, .0, .0, .0, 2.0,379,189.5 --Infinity,1,a-sust-i4,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, .0, .0, .0, .0, .0, 0.0,1429,Infinity +NA,NA,a-sust-i4,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, .0, .0, .0, .0, .0, 0.0,1429,Infinity 6.595,5,a-sust-i4,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, .0, .0, 1.4, 1.8, .0, 3.2,562,175.625 5.877142857142857,5,a-sust-i4,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 1.2, 1.5, 1.9, .3, .7, .0, 5.6,1486,265.3571428571429 --Infinity,1,a-sust-i4,2016-17,Nahant - Johnson,01960010, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity +NA,NA,a-sust-i4,2016-17,Nahant - Johnson,01960010, 0.0, .0, .0, .0, .0, .0, 0.0,142,Infinity 6.750476190476191,5,a-sust-i4,2016-17,Nantucket - Cyrus Peirce,01970010, 0.0, .0, 2.1, .0, .0, .0, 2.1,328,156.19047619047618 6.566,5,a-sust-i4,2016-17,Nantucket - Nantucket Elementary,01970005, 2.0, 2.0, .0, .0, .0, .0, 4.0,717,179.25 6.128695652173913,5,a-sust-i4,2016-17,Nantucket - Nantucket High,01970505, 0.0, .0, .0, 2.3, .0, .0, 2.3,538,233.91304347826087 @@ -13983,7 +13983,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.74,5,a-sust-i4,2016-17,New Bedford - Trinity Day Academy,02010510, 0.0, .0, .0, .4, .0, .0, 0.4,63,157.5 6.533333333333333,5,a-sust-i4,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, .0, .0, .6, .0, .0, 0.6,110,183.33333333333334 6.46,5,a-sust-i4,2016-17,New Bedford - William H Taylor,02010135, 0.6, .6, .0, .0, .0, .0, 1.2,231,192.5 --Infinity,1,a-sust-i4,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,313,Infinity +NA,NA,a-sust-i4,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, .0, .0, 0.0,313,Infinity 7.60235294117647,5,a-sust-i4,2016-17,New Salem-Wendell - Swift River,07280015, 1.2, 1.6, .5, .0, .0, .0, 3.4,169,49.70588235294118 6.1085714285714285,5,a-sust-i4,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.4, .0, .0, .0, .0, 1.4,331,236.42857142857144 5.428,5,a-sust-i4,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 1.4, .5, .0, .0, .0, .0, 2.0,643,321.5 @@ -14003,7 +14003,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.543157894736842,5,a-sust-i4,2016-17,Newton - Lincoln-Eliot,02070070, 1.0, 1.0, .0, .0, .0, .0, 1.9,346,182.10526315789474 6.0685714285714285,5,a-sust-i4,2016-17,Newton - Mason-Rice,02070080, 1.2, .9, .0, .0, .0, .0, 2.1,507,241.42857142857142 5.982222222222223,5,a-sust-i4,2016-17,Newton - Memorial Spaulding,02070105, 1.0, .8, .0, .0, .0, .0, 1.8,454,252.22222222222223 --Infinity,1,a-sust-i4,2016-17,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity +NA,NA,a-sust-i4,2016-17,Newton - Newton Early Childhood Center,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,193,Infinity 6.246597938144331,5,a-sust-i4,2016-17,Newton - Newton North High,02070505, 0.0, .0, .0, 3.4, 4.3, 2.1, 9.7,2126,219.17525773195877 6.194146341463415,5,a-sust-i4,2016-17,Newton - Newton South High,02070510, 0.0, .0, .0, 2.6, 4.5, 1.2, 8.2,1851,225.7317073170732 6.4025,5,a-sust-i4,2016-17,Newton - Oak Hill Middle,02070320, 0.0, .0, 2.7, .0, .5, .0, 3.2,639,199.6875 @@ -14013,7 +14013,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.63,4.63,a-sust-i4,2016-17,Newton - Zervas,02070130, 0.4, .4, .0, .0, .0, .0, 0.8,337,421.25 6.35,5,a-sust-i4,2016-17,Norfolk - Freeman-Kennedy School,02080005, 0.0, .7, .7, .0, .0, 1.0, 2.4,495,206.25 5.053333333333333,5,a-sust-i4,2016-17,Norfolk - H Olive Day,02080015, 1.2, .0, .0, .0, .0, .0, 1.2,442,368.33333333333337 --Infinity,1,a-sust-i4,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,534,Infinity +NA,NA,a-sust-i4,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,534,Infinity 6.444,5,a-sust-i4,2016-17,North Adams - Brayton,02090035, 0.4, .4, .8, .0, .4, .0, 2.0,389,194.5 7.104,5,a-sust-i4,2016-17,North Adams - Colegrove Park Elementary,02090008, 0.8, .7, .5, .0, 1.0, .0, 3.0,336,112.0 7.122,5,a-sust-i4,2016-17,North Adams - Drury High,02090505, 0.0, .0, .0, 1.0, 3.0, .0, 4.0,439,109.75 @@ -14030,7 +14030,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.18,5,a-sust-i4,2016-17,North Attleborough - Falls,02120010, 0.3, .5, .0, .0, .0, .0, 0.8,282,352.5 5.268,5,a-sust-i4,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.8, 1.2, .0, .0, .0, .0, 2.0,683,341.5 5.836279069767442,5,a-sust-i4,2016-17,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 1.9, .2, 2.2, 4.3,1163,270.4651162790698 --Infinity,1,a-sust-i4,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity +NA,NA,a-sust-i4,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity 5.798974358974359,5,a-sust-i4,2016-17,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, 3.7, .0, .1, .1, 3.9,1073,275.12820512820514 4.88,4.88,a-sust-i4,2016-17,North Attleborough - Roosevelt Avenue,02120015, 0.4, .3, .0, .0, .0, .0, 0.8,312,390.0 6.451764705882353,5,a-sust-i4,2016-17,North Brookfield - North Brookfield Elementary,02150015, 0.7, .7, .2, .0, .0, .0, 1.7,329,193.52941176470588 @@ -14039,7 +14039,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.02,5,a-sust-i4,2016-17,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.0, 2.0, .0, .0, 1.0, 4.0,490,122.5 6.597333333333333,5,a-sust-i4,2016-17,North Middlesex - Nissitissit Middle School,07350310, 0.0, .5, 1.5, .0, .0, 1.0, 3.0,526,175.33333333333334 6.8,5,a-sust-i4,2016-17,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .0, 5.3, .0, .0, 5.3,795,150.0 --Infinity,1,a-sust-i4,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, .0, .0, .0, .0, .0, 0.0,10,Infinity +NA,NA,a-sust-i4,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, .0, .0, .0, .0, .0, 0.0,10,Infinity 6.292,5,a-sust-i4,2016-17,North Middlesex - Spaulding Memorial,07350005, 1.2, .8, .0, .0, .0, .0, 2.0,427,213.5 6.736,5,a-sust-i4,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 0.5, .0, .0, .0, .0, .0, 0.5,79,158.0 5.855238095238096,5,a-sust-i4,2016-17,North Middlesex - Varnum Brook,07350035, 1.2, .9, .0, .0, .0, .0, 2.1,563,268.0952380952381 @@ -14054,7 +14054,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.74,5,a-sust-i4,2016-17,Northampton - Leeds,02100025, 0.4, .8, .0, .0, .0, .0, 1.2,339,282.5 6.373953488372093,5,a-sust-i4,2016-17,Northampton - Northampton High,02100505, 0.0, .0, .0, 3.4, .9, .0, 4.3,874,203.25581395348837 5.72,5,a-sust-i4,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 0.3, .5, .0, .0, .0, .0, 0.8,228,285.0 --Infinity,1,a-sust-i4,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, .0, .0, .0, .0, .0, 0.0,486,Infinity +NA,NA,a-sust-i4,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, .0, .0, .0, .0, .0, 0.0,486,Infinity 6.32695652173913,5,a-sust-i4,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, .0, .0, 6.5, .4, .0, 6.9,1443,209.1304347826087 6.805,5,a-sust-i4,2016-17,Northborough - Fannie E Proctor,02130015, 0.8, .9, .0, .0, .0, .0, 1.6,239,149.375 6.956,5,a-sust-i4,2016-17,Northborough - Lincoln Street,02130003, 0.6, 1.4, .0, .0, .0, .0, 2.0,261,130.5 @@ -14065,8 +14065,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.1312,5,a-sust-i4,2016-17,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 1.0, 1.5, .0, 2.5,584,233.6 5.957333333333333,5,a-sust-i4,2016-17,Northbridge - Northbridge Middle,02140305, 0.0, .7, 2.3, .0, .0, .0, 3.0,766,255.33333333333334 5.892,5,a-sust-i4,2016-17,Northbridge - W Edward Balmer,02140001, 1.0, 1.0, .0, .0, .0, .0, 2.0,527,263.5 --Infinity,1,a-sust-i4,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1261,Infinity --Infinity,1,a-sust-i4,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,484,Infinity +NA,NA,a-sust-i4,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1261,Infinity +NA,NA,a-sust-i4,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,484,Infinity 5.016,5,a-sust-i4,2016-17,Norton - Henri A. Yelle,02180060, 0.0, 1.0, .0, .0, .0, .0, 1.0,373,373.0 5.326666666666666,5,a-sust-i4,2016-17,Norton - J C Solmonese,02180015, 0.9, .4, .0, .0, .0, .0, 1.2,401,334.1666666666667 3.7942857142857136,3.79,a-sust-i4,2016-17,Norton - L G Nourse Elementary,02180010, 0.6, .2, .0, .0, .0, .0, 0.7,368,525.7142857142858 @@ -14085,7 +14085,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.752,5,a-sust-i4,2016-17,Norwood - John P Oldham,02200020, 0.4, .6, .0, .0, .3, .2, 1.5,234,156.0 6.371063829787234,5,a-sust-i4,2016-17,Norwood - Norwood High,02200505, 0.0, .0, .0, 4.7, .0, .0, 4.7,957,203.61702127659575 6.794482758620689,5,a-sust-i4,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.8, .7, .5, .0, .5, .4, 2.9,437,150.6896551724138 --Infinity,1,a-sust-i4,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,546,Infinity +NA,NA,a-sust-i4,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,546,Infinity 6.005333333333333,5,a-sust-i4,2016-17,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 2.3, .7, .0, 3.0,748,249.33333333333334 6.292173913043478,5,a-sust-i4,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 2.3, .0, .0, .0, 2.3,491,213.47826086956525 5.585454545454546,5,a-sust-i4,2016-17,Orange - Dexter Park,02230010, 0.0, .8, .3, .0, .0, .0, 1.1,332,301.8181818181818 @@ -14095,11 +14095,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.967272727272728,4.97,a-sust-i4,2016-17,Oxford - Clara Barton,02260005, 0.4, .7, .0, .0, .0, .0, 1.1,417,379.09090909090907 6.515862068965517,5,a-sust-i4,2016-17,Oxford - Oxford High,02260505, 0.0, .0, .3, 2.6, .0, .0, 2.9,538,185.51724137931035 6.384761904761905,5,a-sust-i4,2016-17,Oxford - Oxford Middle,02260405, 0.0, .9, 1.2, .0, .0, .0, 2.1,424,201.9047619047619 --Infinity,1,a-sust-i4,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity +NA,NA,a-sust-i4,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity 6.677333333333333,5,a-sust-i4,2016-17,Palmer - Converse Middle,02270305, 0.0, .0, 1.5, .0, .0, .0, 1.5,248,165.33333333333334 6.416,5,a-sust-i4,2016-17,Palmer - Old Mill Pond,02270008, 1.2, 2.2, .0, .0, .0, .0, 3.5,693,198.0 7.028,5,a-sust-i4,2016-17,Palmer - Palmer High,02270505, 0.0, .0, 1.0, 3.0, .0, .0, 4.0,486,121.5 --Infinity,1,a-sust-i4,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, .0, .0, .0, .0, .0, 0.0,618,Infinity +NA,NA,a-sust-i4,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, .0, .0, .0, .0, .0, 0.0,618,Infinity 4.251428571428571,4.25,a-sust-i4,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, .0, .0, .7, .0, .0, 0.7,328,468.5714285714286 5.891428571428571,5,a-sust-i4,2016-17,Peabody - Captain Samuel Brown,02290005, 0.6, .8, .0, .0, .0, .0, 1.4,369,263.5714285714286 6.183529411764706,5,a-sust-i4,2016-17,Peabody - Center,02290015, 0.8, .9, .0, .0, .0, .0, 1.7,386,227.05882352941177 @@ -14124,8 +14124,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.810322580645161,5,a-sust-i4,2016-17,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, 1.6, .0, .9, .6, 3.1,461,148.70967741935485 6.22060606060606,5,a-sust-i4,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, 1.0, .0, 2.4, 3.3,734,222.42424242424244 7.504,5,a-sust-i4,2016-17,Petersham - Petersham Center,02340005, 0.8, .9, .3, .0, .0, .0, 2.0,124,62.0 --Infinity,1,a-sust-i4,2016-17,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,193,Infinity --Infinity,1,a-sust-i4,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity +NA,NA,a-sust-i4,2016-17,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,193,Infinity +NA,NA,a-sust-i4,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity 6.025454545454546,5,a-sust-i4,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.0, .0, .6, .6, .0, .0, 2.2,543,246.81818181818178 6.018461538461539,5,a-sust-i4,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, .0, .8, .5, .0, .0, 1.3,322,247.69230769230768 6.72,5,a-sust-i4,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 0.4, .6, .1, .0, .0, .0, 1.1,176,160.0 @@ -14156,7 +14156,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.841904761904761,5,a-sust-i4,2016-17,Plymouth - Manomet Elementary,02390015, 0.8, 1.0, .0, .0, .3, .0, 2.1,304,144.76190476190476 6.649142857142857,5,a-sust-i4,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 1.6, 1.4, .0, .0, .6, .0, 3.5,591,168.85714285714286 6.372244897959184,5,a-sust-i4,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 4.9, .0, .0, .0, 4.9,997,203.46938775510202 --Infinity,1,a-sust-i4,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity +NA,NA,a-sust-i4,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,116,Infinity 6.098909090909091,5,a-sust-i4,2016-17,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, .5, 5.0, .0, 5.5,1307,237.63636363636363 6.324897959183673,5,a-sust-i4,2016-17,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, .4, 4.5, .0, 4.9,1026,209.3877551020408 6.405714285714287,5,a-sust-i4,2016-17,Plymouth - Plymouth South Middle,02390305, 0.0, 1.0, 3.2, .0, .0, .0, 4.2,837,199.28571428571428 @@ -14176,8 +14176,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.753846153846154,5,a-sust-i4,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0.0, .0, .0, .0, 1.3, .0, 1.3,365,280.7692307692308 4.208,4.21,a-sust-i4,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, .5, .0, .0, .0, 0.5,237,474.0 6.112,5,a-sust-i4,2016-17,Quaboag Regional - Warren Elementary,07780005, 0.9, .9, .3, .0, .0, .0, 2.0,472,236.0 --Infinity,1,a-sust-i4,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, .0, .0, .0, .0, .0, 0.0,326,Infinity --Infinity,1,a-sust-i4,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity +NA,NA,a-sust-i4,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, .0, .0, .0, .0, .0, 0.0,326,Infinity +NA,NA,a-sust-i4,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity 5.856,5,a-sust-i4,2016-17,Quincy - Atherton Hough,02430040, 0.4, .6, .0, .0, .0, .0, 1.0,268,268.0 6.365217391304348,5,a-sust-i4,2016-17,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.3, .0, .0, .0, 2.3,470,204.34782608695653 5.846153846153846,5,a-sust-i4,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 0.6, .7, .0, .0, .0, .0, 1.3,350,269.2307692307692 @@ -14196,9 +14196,9 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.1466666666666665,5,a-sust-i4,2016-17,Quincy - Snug Harbor Community School,02430090, 0.5, .7, .0, .0, .0, .0, 1.2,428,356.6666666666667 5.92,5,a-sust-i4,2016-17,Quincy - Squantum,02430095, 0.7, .6, .0, .0, .0, .0, 1.3,338,260.0 5.296,5,a-sust-i4,2016-17,Quincy - Wollaston School,02430110, 0.4, .6, .0, .0, .0, .0, 1.0,338,338.0 --Infinity,1,a-sust-i4,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity +NA,NA,a-sust-i4,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, .0, .0, .0, .0, .0, 0.0,38,Infinity 6.697435897435898,5,a-sust-i4,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, .0, 1.9, 1.9, .0, .0, 3.9,635,162.82051282051282 --Infinity,1,a-sust-i4,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +NA,NA,a-sust-i4,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity 6.421333333333333,5,a-sust-i4,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 1.3, .2, .0, .0, .0, .0, 1.5,296,197.33333333333334 6.064,5,a-sust-i4,2016-17,Randolph - J F Kennedy Elementary,02440018, 1.6, .4, .0, .0, .0, .0, 2.0,484,242.0 6.346666666666667,5,a-sust-i4,2016-17,Randolph - Margaret L Donovan,02440015, 1.6, .5, .0, .0, .0, .0, 2.1,434,206.66666666666666 @@ -14245,8 +14245,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.273333333333334,5,a-sust-i4,2016-17,Salem - Collins Middle,02580305, 0.0, .0, 6.0, .0, .0, .0, 6.0,545,90.83333333333333 7.149629629629629,5,a-sust-i4,2016-17,Salem - Horace Mann Laboratory,02580030, 1.0, 1.7, .0, .0, .0, .0, 2.7,287,106.29629629629629 6.633846153846155,5,a-sust-i4,2016-17,Salem - Nathaniel Bowditch,02580025, 0.7, 1.3, .6, .0, .0, .0, 2.6,444,170.76923076923077 --Infinity,1,a-sust-i4,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity --Infinity,1,a-sust-i4,2016-17,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity +NA,NA,a-sust-i4,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity +NA,NA,a-sust-i4,2016-17,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity 6.851692307692308,5,a-sust-i4,2016-17,Salem - Salem High,02580505, 0.0, .0, .0, .0, 6.5, .0, 6.5,933,143.53846153846155 6.96,5,a-sust-i4,2016-17,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .0, .1, .0, 0.1,13,130.0 6.973793103448275,5,a-sust-i4,2016-17,Salem - Saltonstall School,02580050, 0.6, 1.6, .7, .0, .0, .0, 2.9,372,128.27586206896552 @@ -14256,7 +14256,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.936,5,a-sust-i4,2016-17,Sandwich - Oak Ridge,02610025, 0.0, 2.8, .7, .0, .0, .0, 3.5,903,258.0 5.8184615384615395,5,a-sust-i4,2016-17,Sandwich - Sandwich High,02610505, 0.0, .0, .0, .1, 2.5, .0, 2.6,709,272.6923076923077 6.365217391304348,5,a-sust-i4,2016-17,Sandwich - Sandwich STEM Academy,02610305, 0.0, .0, 2.3, .0, .0, .0, 2.3,470,204.34782608695653 --Infinity,1,a-sust-i4,2016-17,Saugus - Ballard School,02620001, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity +NA,NA,a-sust-i4,2016-17,Saugus - Ballard School,02620001, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity 6.696,5,a-sust-i4,2016-17,Saugus - Belmonte Saugus Middle,02620305, 0.0, .0, 4.0, .0, .0, .0, 4.0,652,163.0 -0.24,1,a-sust-i4,2016-17,Saugus - Douglas Waybright,02620067, 0.1, .1, .0, .0, .0, .0, 0.2,206,1030.0 -1.4,1,a-sust-i4,2016-17,Saugus - Lynnhurst,02620040, 0.1, .1, .0, .0, .0, .0, 0.2,235,1175.0 @@ -14280,13 +14280,13 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.717575757575758,5,a-sust-i4,2016-17,Sharon - Heights Elementary,02660015, 1.0, 2.4, .0, .0, .0, .0, 3.3,529,160.3030303030303 6.589333333333333,5,a-sust-i4,2016-17,Sharon - Sharon High,02660505, 0.0, .0, .0, .0, 6.0, .0, 6.0,1058,176.33333333333334 6.532244897959184,5,a-sust-i4,2016-17,Sharon - Sharon Middle,02660305, 0.0, .0, 4.9, .0, .0, .0, 4.9,899,183.46938775510202 --Infinity,1,a-sust-i4,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1336,Infinity +NA,NA,a-sust-i4,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1336,Infinity 6.193684210526316,5,a-sust-i4,2016-17,Sherborn - Pine Hill,02690010, 0.8, 1.1, .0, .0, .0, .0, 1.9,429,225.78947368421055 6.728,5,a-sust-i4,2016-17,Shrewsbury - Beal School,02710005, 2.0, .0, .0, .0, .0, .0, 2.0,318,159.0 6.182222222222222,5,a-sust-i4,2016-17,Shrewsbury - Calvin Coolidge,02710015, 1.0, .8, .0, .0, .0, .0, 1.8,409,227.22222222222223 5.778461538461539,5,a-sust-i4,2016-17,Shrewsbury - Floral Street School,02710020, 1.0, 1.6, .0, .0, .0, .0, 2.6,722,277.6923076923077 5.325333333333334,5,a-sust-i4,2016-17,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 3.0, .0, .0, .0, 3.0,1003,334.3333333333333 --Infinity,1,a-sust-i4,2016-17,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,232,Infinity +NA,NA,a-sust-i4,2016-17,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,232,Infinity 6.046,5,a-sust-i4,2016-17,Shrewsbury - Sherwood Middle School,02710305, 0.0, 2.0, 1.9, .0, .1, .0, 4.0,977,244.25 5.827878787878788,5,a-sust-i4,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, .0, .0, .3, 6.3, .0, 6.6,1792,271.5151515151515 6.346666666666667,5,a-sust-i4,2016-17,Shrewsbury - Spring Street,02710035, 1.0, .8, .0, .0, .0, .0, 1.8,372,206.66666666666666 @@ -14306,19 +14306,19 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.651428571428571,5,a-sust-i4,2016-17,Somerville - Benjamin G Brown,02740015, 0.5, .9, .0, .0, .0, .0, 1.4,236,168.57142857142858 4.2057142857142855,4.21,a-sust-i4,2016-17,Somerville - Capuano Early Childhood Center,02740005, 0.7, .0, .0, .0, .0, .0, 0.7,332,474.28571428571433 6.791666666666666,5,a-sust-i4,2016-17,Somerville - E Somerville Community,02740111, 1.2, 1.7, 1.8, .0, .0, .0, 4.8,725,151.04166666666669 --Infinity,1,a-sust-i4,2016-17,Somerville - Full Circle High School,02740510, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity +NA,NA,a-sust-i4,2016-17,Somerville - Full Circle High School,02740510, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity 6.55076923076923,5,a-sust-i4,2016-17,Somerville - John F Kennedy,02740083, 0.5, 1.1, 1.0, .0, .0, .0, 2.6,471,181.15384615384616 --Infinity,1,a-sust-i4,2016-17,Somerville - Next Wave Junior High,02740410, 0.0, .0, .0, .0, .0, .0, 0.0,16,Infinity +NA,NA,a-sust-i4,2016-17,Somerville - Next Wave Junior High,02740410, 0.0, .0, .0, .0, .0, .0, 0.0,16,Infinity 6.855454545454546,5,a-sust-i4,2016-17,Somerville - Somerville High,02740505, 0.0, .0, .0, .7, .2, 7.9, 8.8,1259,143.0681818181818 6.492,5,a-sust-i4,2016-17,Somerville - West Somerville Neighborhood,02740115, 0.5, .7, .8, .0, .0, .0, 2.0,377,188.5 6.5216,5,a-sust-i4,2016-17,Somerville - Winter Hill Community,02740120, 0.6, .8, 1.2, .0, .0, .0, 2.5,462,184.8 6.528,5,a-sust-i4,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 0.0, .7, 2.2, .0, .0, .0, 3.0,552,184.0 6.197894736842105,5,a-sust-i4,2016-17,South Hadley - Mosier,02780020, 0.7, 1.2, .0, .0, .0, .0, 1.9,428,225.26315789473685 --Infinity,1,a-sust-i4,2016-17,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,344,Infinity +NA,NA,a-sust-i4,2016-17,South Hadley - Plains Elementary,02780015, 0.0, .0, .0, .0, .0, .0, 0.0,344,Infinity 6.754285714285714,5,a-sust-i4,2016-17,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .0, 3.5, .0, 3.5,545,155.71428571428572 2.264,2.26,a-sust-i4,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, 1.0, .0, .0, 1.0,717,717.0 6.936140350877193,5,a-sust-i4,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.9, 1.5, 2.3, 1.0, .0, .0, 5.7,758,132.98245614035088 --Infinity,1,a-sust-i4,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,636,Infinity +NA,NA,a-sust-i4,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,636,Infinity 5.92,5,a-sust-i4,2016-17,Southampton - William E Norris,02750005, 0.8, .8, .3, .0, .0, .0, 2.0,520,260.0 6.492307692307692,5,a-sust-i4,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 0.6, .7, .0, .0, .0, .0, 1.3,245,188.46153846153845 7.083076923076923,5,a-sust-i4,2016-17,Southborough - Margaret A Neary,02760020, 0.0, 2.6, .0, .0, .0, .0, 2.6,298,114.61538461538461 @@ -14329,12 +14329,12 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.149090909090909,5,a-sust-i4,2016-17,Southbridge - Southbridge High School,02770515, 0.0, .0, .0, 2.2, .0, .0, 2.2,509,231.36363636363635 6.982,5,a-sust-i4,2016-17,Southbridge - Southbridge Middle School,02770315, 0.0, .0, 4.0, .0, .0, .0, 4.0,509,127.25 6.276,5,a-sust-i4,2016-17,Southbridge - West Street,02770020, 0.8, 1.2, .0, .0, .0, .0, 2.0,431,215.5 --Infinity,1,a-sust-i4,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1416,Infinity +NA,NA,a-sust-i4,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1416,Infinity 7.134814814814815,5,a-sust-i4,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 0.0, .0, 1.1, 1.6, .0, .0, 2.7,292,108.14814814814814 6.9714285714285715,5,a-sust-i4,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.5, .2, .0, .0, .0, .0, 0.7,90,128.57142857142858 7.851428571428571,5,a-sust-i4,2016-17,Southern Berkshire - South Egremont,07650030, 0.7, .0, .0, .0, .0, .0, 0.7,13,18.571428571428573 5.36,5,a-sust-i4,2016-17,Southern Berkshire - Undermountain,07650035, 0.4, .5, .2, .0, .0, .0, 1.0,330,330.0 --Infinity,1,a-sust-i4,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1114,Infinity +NA,NA,a-sust-i4,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1114,Infinity 5.8133333333333335,5,a-sust-i4,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.1, .1, .0, .0, .0, .0, 0.3,82,273.33333333333337 6.349473684210527,5,a-sust-i4,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.4, .5, .0, .0, .0, 1.9,392,206.31578947368422 6.628837209302326,5,a-sust-i4,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, 1.3, 3.0, .0, .0, 4.3,737,171.3953488372093 @@ -14353,14 +14353,14 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.1,5,a-sust-i4,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, .4, .3, .4, .0, 1.2,285,237.5 7.614857142857143,5,a-sust-i4,2016-17,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 3.0, 2.6, 1.4, .0, 7.0,337,48.142857142857146 6.586666666666667,5,a-sust-i4,2016-17,Springfield - Daniel B Brunton,02810035, 1.1, 1.6, .0, .0, .0, .0, 2.7,477,176.66666666666666 --Infinity,1,a-sust-i4,2016-17,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,144,Infinity +NA,NA,a-sust-i4,2016-17,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,144,Infinity 6.198857142857143,5,a-sust-i4,2016-17,Springfield - Edward P. Boland School,02810010, 1.1, 1.7, .0, .0, .7, .0, 3.5,788,225.14285714285714 6.484,5,a-sust-i4,2016-17,Springfield - Elias Brookings,02810030, 0.6, .8, .0, .0, .6, .0, 2.0,379,189.5 --Infinity,1,a-sust-i4,2016-17,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,714,Infinity +NA,NA,a-sust-i4,2016-17,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,714,Infinity 6.673684210526316,5,a-sust-i4,2016-17,Springfield - Frank H Freedman,02810075, 0.6, 1.0, .0, .0, .3, .0, 1.9,315,165.78947368421052 6.868571428571428,5,a-sust-i4,2016-17,Springfield - Frederick Harris,02810080, 1.7, 2.1, .0, .0, .3, .0, 4.2,594,141.42857142857142 --Infinity,1,a-sust-i4,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity --Infinity,1,a-sust-i4,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity +NA,NA,a-sust-i4,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,27,Infinity +NA,NA,a-sust-i4,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,48,Infinity 6.1725,5,a-sust-i4,2016-17,Springfield - German Gerena Community School,02810195, 1.2, 1.7, .0, .0, .2, .1, 3.2,731,228.4375 7.073846153846154,5,a-sust-i4,2016-17,Springfield - Glenwood,02810065, 0.9, 1.3, .0, .0, .4, .0, 2.6,301,115.76923076923076 6.895384615384615,5,a-sust-i4,2016-17,Springfield - Glickman Elementary,02810068, 0.7, .9, .0, .0, 1.0, .0, 2.6,359,138.07692307692307 @@ -14372,7 +14372,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.013333333333334,5,a-sust-i4,2016-17,Springfield - John J Duggan Middle,02810320, 0.0, .0, .7, .5, .7, .0, 1.8,672,373.3333333333333 6.98,5,a-sust-i4,2016-17,Springfield - Kensington International School,02810110, 1.0, 1.4, .0, .0, .0, .0, 2.4,306,127.5 6.464,5,a-sust-i4,2016-17,Springfield - Liberty,02810115, 0.7, .8, .0, .0, .0, .0, 1.5,288,192.0 --Infinity,1,a-sust-i4,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,13,Infinity +NA,NA,a-sust-i4,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .0, .0, 0.0,13,Infinity 6.8029629629629635,5,a-sust-i4,2016-17,Springfield - Lincoln,02810120, 1.0, 1.7, .0, .0, .0, .0, 2.7,404,149.62962962962962 5.428,5,a-sust-i4,2016-17,Springfield - M Marcus Kiley Middle,02810330, 0.0, .0, 2.0, .0, .0, .0, 2.0,643,321.5 5.08,5,a-sust-i4,2016-17,Springfield - Margaret C Ells,02810060, 0.6, .0, .0, .0, .0, .0, 0.6,219,365.0 @@ -14385,7 +14385,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.154666666666666,4.15,a-sust-i4,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, .0, .0, 2.2, .9, .0, 3.0,1442,480.6666666666667 5.12,5,a-sust-i4,2016-17,Springfield - STEM Middle Academy,02810350, 0.0, .0, .8, .0, .0, .0, 0.8,288,360.0 6.731428571428571,5,a-sust-i4,2016-17,Springfield - Samuel Bowles,02810020, 1.0, 1.1, .0, .0, .0, .0, 2.1,333,158.57142857142856 --Infinity,1,a-sust-i4,2016-17,Springfield - South End Middle School,02810355, 0.0, .0, .0, .0, .0, .0, 0.0,246,Infinity +NA,NA,a-sust-i4,2016-17,Springfield - South End Middle School,02810355, 0.0, .0, .0, .0, .0, .0, 0.0,246,Infinity 5.945,5,a-sust-i4,2016-17,Springfield - Springfield Central High,02810500, 0.0, .0, .0, 2.4, 4.3, 1.3, 8.0,2055,256.875 -1.36,1,a-sust-i4,2016-17,Springfield - Springfield High School,02810570, 0.0, .0, .0, .0, .1, .0, 0.1,117,1170.0 6.1786666666666665,5,a-sust-i4,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 0.0, .0, .0, .9, 4.4, .6, 6.0,1366,227.66666666666666 @@ -14401,13 +14401,13 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.008,5,a-sust-i4,2016-17,Springfield - Washington,02810185, 1.2, 2.1, .0, .0, .2, .0, 3.5,434,124.0 6.802666666666667,5,a-sust-i4,2016-17,Springfield - White Street,02810190, 0.7, 2.3, .0, .0, .0, .0, 3.0,449,149.66666666666666 6.013333333333333,5,a-sust-i4,2016-17,Springfield - William N. DeBerry,02810045, 0.4, .6, .0, .0, .2, .0, 1.2,298,248.33333333333334 --Infinity,1,a-sust-i4,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity +NA,NA,a-sust-i4,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity 5.872,5,a-sust-i4,2016-17,Stoneham - Colonial Park,02840005, 0.6, .4, .0, .0, .0, .0, 1.0,266,266.0 5.056,5,a-sust-i4,2016-17,Stoneham - Robin Hood,02840025, 0.6, .4, .0, .0, .0, .0, 1.0,368,368.0 6.218666666666667,5,a-sust-i4,2016-17,Stoneham - South,02840030, 0.9, .6, .0, .0, .0, .0, 1.5,334,222.66666666666666 6.117333333333333,5,a-sust-i4,2016-17,Stoneham - Stoneham Central Middle School,02840405, 0.0, .7, 2.3, .0, .0, .0, 3.0,706,235.33333333333334 6.531891891891892,5,a-sust-i4,2016-17,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 3.7, .0, 3.7,679,183.51351351351352 --Infinity,1,a-sust-i4,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity +NA,NA,a-sust-i4,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity 6.95578947368421,5,a-sust-i4,2016-17,Stoughton - Helen Hansen Elementary,02850010, 0.7, .6, .0, .0, .5, .0, 1.9,248,130.5263157894737 6.548,5,a-sust-i4,2016-17,Stoughton - Joseph H Gibbons,02850025, 0.8, .8, .0, .0, .3, .0, 2.0,363,181.5 6.7904,5,a-sust-i4,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.9, 1.0, .0, .0, .5, .0, 2.5,378,151.2 @@ -14441,11 +14441,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 2.032,2.03,a-sust-i4,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.4, .3, .4, .4, .0, .0, 1.5,1119,746.0 6.448,5,a-sust-i4,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,582,194.0 6.44102564102564,5,a-sust-i4,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, 3.9, .0, .0, 3.9,760,194.8717948717949 --Infinity,1,a-sust-i4,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,497,Infinity +NA,NA,a-sust-i4,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,497,Infinity 5.856,5,a-sust-i4,2016-17,Taunton - Benjamin Friedman Middle,02930315, 0.0, .9, 2.1, .0, .0, .0, 3.0,804,268.0 4.965,4.97,a-sust-i4,2016-17,Taunton - East Taunton Elementary,02930010, 0.7, .5, .0, .0, .4, .0, 1.6,607,379.375 4.194285714285714,4.19,a-sust-i4,2016-17,Taunton - Edmund Hatch Bennett,02930007, 0.4, .3, .0, .0, .0, .0, 0.7,333,475.7142857142857 --Infinity,1,a-sust-i4,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,329,Infinity +NA,NA,a-sust-i4,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,329,Infinity 4.514285714285713,4.51,a-sust-i4,2016-17,Taunton - Elizabeth Pole,02930027, 0.7, .6, .0, .0, .1, .0, 1.4,610,435.7142857142857 5.813333333333334,5,a-sust-i4,2016-17,Taunton - H H Galligan,02930057, 0.5, .3, .0, .0, .0, .0, 0.9,246,273.3333333333333 4.662857142857143,4.66,a-sust-i4,2016-17,Taunton - Hopewell,02930035, 0.4, .3, .0, .0, .0, .0, 0.7,292,417.14285714285717 @@ -14453,7 +14453,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 4.7446153846153845,4.74,a-sust-i4,2016-17,Taunton - Joseph C Chamberlain,02930008, 0.7, .6, .0, .0, .0, .0, 1.3,529,406.9230769230769 5.488695652173913,5,a-sust-i4,2016-17,Taunton - Joseph H Martin,02930042, 0.0, .6, 1.7, .0, .0, .0, 2.3,722,313.9130434782609 3.653333333333333,3.65,a-sust-i4,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.6, .4, .0, .0, .0, .0, 0.9,489,543.3333333333334 --Infinity,1,a-sust-i4,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +NA,NA,a-sust-i4,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity 2.44,2.44,a-sust-i4,2016-17,Taunton - Taunton High,02930505, 0.0, .0, 1.0, 1.9, .7, .0, 3.6,2502,695.0 4.995555555555556,5.0,a-sust-i4,2016-17,Tewksbury - Heath-Brook,02950010, 0.0, .0, .0, .0, .9, .0, 0.9,338,375.55555555555554 5.856,5,a-sust-i4,2016-17,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,536,268.0 @@ -14479,8 +14479,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.016,5,a-sust-i4,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 1.4, .6, .0, .0, .0, 3.0,744,248.0 7.413333333333333,5,a-sust-i4,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.0, .0, .0, .0, .6, .0, 0.6,44,73.33333333333334 7.099354838709678,5,a-sust-i4,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 0.6, .6, .8, .0, 1.1, .0, 3.1,349,112.58064516129032 --Infinity,1,a-sust-i4,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,709,Infinity --Infinity,1,a-sust-i4,2016-17,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity +NA,NA,a-sust-i4,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,709,Infinity +NA,NA,a-sust-i4,2016-17,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity 6.6592,5,a-sust-i4,2016-17,Uxbridge - McCloskey Middle School,03040015, 0.0, .0, 2.5, .0, .0, .0, 2.5,419,167.6 5.064615384615385,5,a-sust-i4,2016-17,Uxbridge - Taft Early Learning Center,03040005, 1.3, .0, .0, .0, .0, .0, 1.3,477,366.9230769230769 6.795,5,a-sust-i4,2016-17,Uxbridge - Uxbridge High,03040505, 0.0, .0, .0, 3.2, .0, .0, 3.2,482,150.625 @@ -14490,7 +14490,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 7.027096774193549,5,a-sust-i4,2016-17,Wachusett - Chocksett Middle School,07750315, 0.0, .8, 2.2, .0, .0, .0, 3.1,377,121.61290322580645 6.08,5,a-sust-i4,2016-17,Wachusett - Davis Hill Elementary,07750018, 1.0, 1.0, .0, .0, .0, .0, 1.9,456,240.0 5.972,5,a-sust-i4,2016-17,Wachusett - Dawson,07750020, 1.1, .8, .0, .0, .0, .0, 2.0,507,253.5 --Infinity,1,a-sust-i4,2016-17,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,150,Infinity +NA,NA,a-sust-i4,2016-17,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,150,Infinity 6.56,5,a-sust-i4,2016-17,Wachusett - Glenwood Elementary School,07750060, 0.0, 2.0, .0, .0, .0, .0, 2.0,360,180.0 6.04,5,a-sust-i4,2016-17,Wachusett - Houghton Elementary,07750027, 1.0, .6, .0, .0, .0, .0, 1.6,392,245.0 6.032,5,a-sust-i4,2016-17,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,492,246.0 @@ -14509,7 +14509,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.376,5,a-sust-i4,2016-17,Wales - Wales Elementary,03060005, 0.2, .2, .1, .0, .0, .0, 0.5,164,328.0 6.675862068965517,5,a-sust-i4,2016-17,Walpole - Bird Middle,03070305, 0.0, .0, 2.9, .0, .0, .0, 2.9,480,165.51724137931035 6.488,5,a-sust-i4,2016-17,Walpole - Boyden,03070010, 0.8, 1.2, .0, .0, .0, .0, 2.0,378,189.0 --Infinity,1,a-sust-i4,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity +NA,NA,a-sust-i4,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,82,Infinity 6.678518518518518,5,a-sust-i4,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 2.7, .0, .0, .0, 2.7,446,165.18518518518516 6.288,5,a-sust-i4,2016-17,Walpole - Elm Street School,03070005, 1.0, 1.0, .0, .0, .0, .0, 2.0,428,214.0 6.176,5,a-sust-i4,2016-17,Walpole - Fisher,03070015, 1.0, .9, .0, .0, .0, .0, 2.0,456,228.0 @@ -14530,7 +14530,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.652,5,a-sust-i4,2016-17,Ware - Ware Middle School,03090305, 0.0, 1.4, .6, .0, .0, .0, 2.0,337,168.5 5.568,5,a-sust-i4,2016-17,Wareham - John William Decas,03100003, 2.0, .0, .0, .0, .0, .0, 2.0,608,304.0 5.972,5,a-sust-i4,2016-17,Wareham - Minot Forest,03100017, 0.2, 1.8, .0, .0, .0, .0, 2.0,507,253.5 --Infinity,1,a-sust-i4,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity +NA,NA,a-sust-i4,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,61,Infinity 5.5456,5,a-sust-i4,2016-17,Wareham - Wareham Middle,03100305, 0.0, 1.0, 1.5, .0, .0, .0, 2.5,767,306.8 6.52,5,a-sust-i4,2016-17,Wareham - Wareham Senior High,03100505, 0.0, .0, .0, 1.3, .0, 1.5, 2.8,518,185.0 6.52,5,a-sust-i4,2016-17,Watertown - Cunniff,03140015, 0.7, .9, .0, .0, .0, .0, 1.6,296,185.0 @@ -14562,8 +14562,8 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.7155555555555555,5,a-sust-i4,2016-17,West Bridgewater - Rose L Macdonald,03230003, 0.6, .3, .0, .0, .0, .0, 0.9,257,285.55555555555554 4.24,4.24,a-sust-i4,2016-17,West Bridgewater - Spring Street School,03230005, 0.3, .0, .0, .0, .0, .0, 0.3,141,470.0 6.5851428571428565,5,a-sust-i4,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, .0, .4, .1, 3.0, .0, 3.5,619,176.85714285714286 --Infinity,1,a-sust-i4,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity --Infinity,1,a-sust-i4,2016-17,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity +NA,NA,a-sust-i4,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, .0, .0, .0, .0, .0, 0.0,14,Infinity +NA,NA,a-sust-i4,2016-17,West Springfield - Cowing Early Childhood,03320001, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity 5.417142857142857,5,a-sust-i4,2016-17,West Springfield - John Ashley,03320005, 0.7, .0, .0, .0, .0, .0, 0.7,226,322.8571428571429 5.825882352941177,5,a-sust-i4,2016-17,West Springfield - John R Fausey,03320010, 0.7, 1.0, .0, .0, .0, .0, 1.7,462,271.7647058823529 5.302857142857143,5,a-sust-i4,2016-17,West Springfield - Memorial,03320025, 0.3, .4, .0, .0, .0, .0, 0.7,236,337.14285714285717 @@ -14579,7 +14579,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.546285714285713,5,a-sust-i4,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 3.3, .0, .2, .0, 3.5,636,181.71428571428572 5.28258064516129,5,a-sust-i4,2016-17,Westborough - Westborough High,03210505, 0.0, .0, .0, .4, 2.7, .0, 3.1,1053,339.6774193548387 5.508571428571428,5,a-sust-i4,2016-17,Westfield - Abner Gibbs,03250020, 0.3, .3, .0, .0, .2, .0, 0.7,218,311.42857142857144 --Infinity,1,a-sust-i4,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity +NA,NA,a-sust-i4,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,175,Infinity 6.174545454545455,5,a-sust-i4,2016-17,Westfield - Franklin Ave,03250015, 0.5, .5, .0, .0, .2, .0, 1.1,251,228.18181818181816 6.332631578947368,5,a-sust-i4,2016-17,Westfield - Highland,03250025, 0.9, 1.0, .0, .0, .0, .0, 1.9,396,208.42105263157896 4.06,4.06,a-sust-i4,2016-17,Westfield - Munger Hill,03250033, 0.3, .3, .0, .0, .2, .0, 0.8,394,492.5 @@ -14595,7 +14595,7 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 5.29,5,a-sust-i4,2016-17,Westford - Col John Robinson,03260025, 0.8, .0, .0, .0, .0, .0, 0.8,271,338.75 6.701818181818182,5,a-sust-i4,2016-17,Westford - Day Elementary,03260007, 0.0, 2.2, .0, .0, .0, .0, 2.2,357,162.27272727272725 6.585263157894737,5,a-sust-i4,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 1.9, .0, .0, .0, .0, 1.9,336,176.8421052631579 --Infinity,1,a-sust-i4,2016-17,Westford - Millennium Elementary,03260013, 0.0, .0, .0, .0, .0, .0, 0.0,119,Infinity +NA,NA,a-sust-i4,2016-17,Westford - Millennium Elementary,03260013, 0.0, .0, .0, .0, .0, .0, 0.0,119,Infinity 5.593333333333333,5,a-sust-i4,2016-17,Westford - Nabnasset,03260015, 1.2, .0, .0, .0, .0, .0, 1.2,361,300.83333333333337 5.32,5,a-sust-i4,2016-17,Westford - Rita E. Miller Elementary School,03260055, 1.0, .0, .0, .0, .0, .0, 1.0,335,335.0 6.2725,5,a-sust-i4,2016-17,Westford - Stony Brook School,03260330, 0.0, .0, 3.2, .0, .0, .0, 3.2,691,215.9375 @@ -14615,12 +14615,12 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.883809523809524,5,a-sust-i4,2016-17,Westwood - Martha Jones,03350017, 0.6, 1.5, .0, .0, .0, .0, 2.1,293,139.52380952380952 6.52,5,a-sust-i4,2016-17,Westwood - Paul Hanlon,03350015, 0.6, .6, .0, .0, .0, .0, 1.2,222,185.0 6.824705882352942,5,a-sust-i4,2016-17,Westwood - Westwood High,03350505, 0.0, .0, .0, .8, 6.0, .0, 6.8,999,146.91176470588235 --Infinity,1,a-sust-i4,2016-17,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity +NA,NA,a-sust-i4,2016-17,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity 6.803478260869565,5,a-sust-i4,2016-17,Westwood - William E Sheehan,03350025, 0.9, 1.4, .0, .0, .0, .0, 2.3,344,149.56521739130437 6.4976,5,a-sust-i4,2016-17,Weymouth - Abigail Adams Middle School,03360310, 0.0, 2.4, 2.6, .0, .0, .0, 5.0,939,187.8 4.83,4.83,a-sust-i4,2016-17,Weymouth - Academy Avenue,03360005, 0.3, .4, .0, .0, .0, .0, 0.8,317,396.25 4.8,4.8,a-sust-i4,2016-17,Weymouth - Frederick C Murphy,03360050, 0.3, .3, .0, .0, .0, .0, 0.6,240,400.0 --Infinity,1,a-sust-i4,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,199,Infinity +NA,NA,a-sust-i4,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,199,Infinity 4.48,4.48,a-sust-i4,2016-17,Weymouth - Lawrence W Pingree,03360065, 0.3, .3, .0, .0, .0, .0, 0.5,220,440.0 5.557333333333334,5,a-sust-i4,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, .0, 3.0, .0, .0, .0, 3.0,916,305.3333333333333 4.24,4.24,a-sust-i4,2016-17,Weymouth - Ralph Talbot,03360085, 0.4, .3, .0, .0, .0, .0, 0.6,282,470.0 @@ -14649,11 +14649,11 @@ NaN,NaN,a-sust-i4,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 6.013714285714286,5,a-sust-i4,2016-17,Wilmington - Wilmington Middle School,03420330, 0.0, .0, 3.5, .0, .0, .0, 3.5,869,248.28571428571428 6.352,5,a-sust-i4,2016-17,Wilmington - Woburn Street,03420020, 1.2, .8, .0, .0, .0, .0, 2.0,412,206.0 5.8,5,a-sust-i4,2016-17,Winchendon - Memorial,03430040, 1.0, .0, .0, .0, .0, .0, 1.0,275,275.0 --Infinity,1,a-sust-i4,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity +NA,NA,a-sust-i4,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity 6.7155555555555555,5,a-sust-i4,2016-17,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .0, 1.8, .0, 1.8,289,160.55555555555554 6.816,5,a-sust-i4,2016-17,Winchendon - Murdock Middle School,03430315, 0.0, .0, 2.0, .0, .0, .0, 2.0,296,148.0 5.752,5,a-sust-i4,2016-17,Winchendon - Toy Town Elementary,03430050, 0.0, 1.0, .0, .0, .0, .0, 1.0,281,281.0 --Infinity,1,a-sust-i4,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity +NA,NA,a-sust-i4,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity 6.24,5,a-sust-i4,2016-17,Winchester - Ambrose Elementary,03440045, 0.8, 1.2, .0, .0, .0, .0, 2.0,440,220.0 6.36,5,a-sust-i4,2016-17,Winchester - Lincoln Elementary,03440005, 0.8, 1.2, .0, .0, .0, .0, 2.0,410,205.0 5.701052631578946,5,a-sust-i4,2016-17,Winchester - Lynch Elementary,03440020, 0.8, 1.2, .0, .0, .0, .0, 1.9,546,287.3684210526316 diff --git a/data/admin_data/dese/3B_2_student_by_race_and_gender.csv b/data/admin_data/dese/3B_2_student_by_race_and_gender.csv index f7a7e629..69f70668 100644 --- a/data/admin_data/dese/3B_2_student_by_race_and_gender.csv +++ b/data/admin_data/dese/3B_2_student_by_race_and_gender.csv @@ -1,14727 +1,16543 @@ -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 (%) -1.3984108967082862,1.4,a-cure-i1,2023-24,7.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.4,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 -3.627530364372469,3.63,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,3.9,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 -3.767918088737202,3.77,a-cure-i1,2023-24,6.9,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 -6.926118626430802,5,a-cure-i1,2023-24,41.6,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 -1,1,a-cure-i1,2023-24,4.199999999999999,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 -1.847422680412371,1.85,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,1.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.0869565217391304,2.09,a-cure-i1,2023-24,9.6,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.1,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 -2.4201680672268906,2.42,a-cure-i1,2023-24,7.2,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,3.5,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 -5.2825396825396815,5,a-cure-i1,2023-24,10.399999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.685785536159601,5,a-cure-i1,2023-24,28.500000000000004,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 -5.773195876288658,5,a-cure-i1,2023-24,7.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.3771428571428572,2.38,a-cure-i1,2023-24,7.8,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 -7.717314487632509,5,a-cure-i1,2023-24,27.3,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 -13.050279329608939,5,a-cure-i1,2023-24,43.800000000000004,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 -7.479518072289156,5,a-cure-i1,2023-24,19.4,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 -9.020134228187919,5,a-cure-i1,2023-24,25.2,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 -5.04812834224599,5,a-cure-i1,2023-24,11.8,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 -1,1,a-cure-i1,2023-24,2.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -9.326633165829143,5,a-cure-i1,2023-24,11.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.2,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 -3.686635944700461,3.69,a-cure-i1,2023-24,10.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.7,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 -2.3170254403131114,2.32,a-cure-i1,2023-24,7.4,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 -6.6476578411405285,5,a-cure-i1,2023-24,20.4,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 -4.931506849315068,4.93,a-cure-i1,2023-24,9.0,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 -4.1337386018237074,4.13,a-cure-i1,2023-24,8.5,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 -5.552941176470589,5,a-cure-i1,2023-24,11.8,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 -1,1,a-cure-i1,2023-24,2.5999999999999996,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 -1,1,a-cure-i1,2023-24,4.6,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 -1,1,a-cure-i1,2023-24,0.6,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 -3.1067961165048543,3.11,a-cure-i1,2023-24,8.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.718032786885246,5,a-cure-i1,2023-24,10.9,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 -5.9335038363171355,5,a-cure-i1,2023-24,14.5,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 -1,1,a-cure-i1,2023-24,0.5,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 -7.999999999999997,5,a-cure-i1,2023-24,6.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.5354838709677425,5,a-cure-i1,2023-24,7.300000000000001,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 -1,1,a-cure-i1,2023-24,3.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.7,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,4.5,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 -1,1,a-cure-i1,2023-24,2.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.4,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 -1,1,a-cure-i1,2023-24,3.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.7555555555555555,2.76,a-cure-i1,2023-24,6.2,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 -1,1,a-cure-i1,2023-24,4.6,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 -1,1,a-cure-i1,2023-24,1.5,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 -3.103274559193955,3.1,a-cure-i1,2023-24,7.700000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,1.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.876132930513595,2.88,a-cure-i1,2023-24,11.9,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 -2.3208191126279862,2.32,a-cure-i1,2023-24,8.5,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 -3.1351351351351355,3.14,a-cure-i1,2023-24,5.8,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 -4.879432624113474,4.88,a-cure-i1,2023-24,8.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.1999999999999997,3.2,a-cure-i1,2023-24,9.7,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 -1,1,a-cure-i1,2023-24,2.1,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 -2.0826446280991737,2.08,a-cure-i1,2023-24,6.300000000000001,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 -3.045317220543807,3.05,a-cure-i1,2023-24,6.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.1959026888604356,3.2,a-cure-i1,2023-24,15.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -9.808049535603715,5,a-cure-i1,2023-24,59.400000000000006,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 -2.5633074935400515,2.56,a-cure-i1,2023-24,6.2,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 -1,1,a-cure-i1,2023-24,2.4,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 -3.4310722100656457,3.43,a-cure-i1,2023-24,9.8,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 -3.3488372093023253,3.35,a-cure-i1,2023-24,9.899999999999999,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -25.14285714285713,5,a-cure-i1,2023-24,12.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -6.12853470437018,5,a-cure-i1,2023-24,14.9,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 -7.336585365853659,5,a-cure-i1,2023-24,18.8,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 -4.058394160583942,4.06,a-cure-i1,2023-24,13.900000000000002,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 -2.4293193717277486,2.43,a-cure-i1,2023-24,5.8,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 -1,1,a-cure-i1,2023-24,4.8,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 -4.0262582056892775,4.03,a-cure-i1,2023-24,11.5,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 -5.12621359223301,5,a-cure-i1,2023-24,13.200000000000001,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 -9.88671472708548,5,a-cure-i1,2023-24,60.0,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.578947368421051,5,a-cure-i1,2023-24,10.6,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 -6.5108225108225115,5,a-cure-i1,2023-24,9.399999999999999,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.791469194312797,3.79,a-cure-i1,2023-24,5.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,4.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.5,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 -1,1,a-cure-i1,2023-24,3.4000000000000004,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.953757225433527,5,a-cure-i1,2023-24,8.6,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 -8.389189189189189,5,a-cure-i1,2023-24,9.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.3,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 -2.052104208416834,2.05,a-cure-i1,2023-24,6.4,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 -3.6165680473372785,3.62,a-cure-i1,2023-24,19.1,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 -21.876543209876544,5,a-cure-i1,2023-24,88.6,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 -8.96794208893485,5,a-cure-i1,2023-24,54.2,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 -7.582938388625592,5,a-cure-i1,2023-24,40.0,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 -7.785330948121646,5,a-cure-i1,2023-24,27.2,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 -3.372972972972973,3.37,a-cure-i1,2023-24,15.600000000000001,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 -5.455683003128259,5,a-cure-i1,2023-24,32.7,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 -13.479674796747968,5,a-cure-i1,2023-24,82.9,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 -9.96994219653179,5,a-cure-i1,2023-24,53.89999999999999,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 -7.094496365524404,5,a-cure-i1,2023-24,42.7,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 -8.625792811839323,5,a-cure-i1,2023-24,51.0,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 -7.18935516888434,5,a-cure-i1,2023-24,43.900000000000006,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 -10.060130718954248,5,a-cure-i1,2023-24,48.1,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 -6.970542635658914,5,a-cure-i1,2023-24,28.099999999999998,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 -7.771428571428572,5,a-cure-i1,2023-24,35.7,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 -5.288135593220339,5,a-cure-i1,2023-24,19.5,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 -5.925925925925926,5,a-cure-i1,2023-24,35.0,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 -8.494845360824742,5,a-cure-i1,2023-24,51.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -6.5070118662351675,5,a-cure-i1,2023-24,37.7,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 -6.06423982869379,5,a-cure-i1,2023-24,35.4,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 -5.836691410392365,5,a-cure-i1,2023-24,34.4,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 -5.026467203682393,5,a-cure-i1,2023-24,27.3,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 -16.393442622950822,5,a-cure-i1,2023-24,100.0,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 -8.462809917355372,5,a-cure-i1,2023-24,51.2,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 -6.081447963800905,5,a-cure-i1,2023-24,33.6,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 -5.247524752475248,5,a-cure-i1,2023-24,26.5,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 -4.561194029850746,4.56,a-cure-i1,2023-24,19.1,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 -7.430894308943088,5,a-cure-i1,2023-24,45.699999999999996,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 -9.554083885209716,5,a-cure-i1,2023-24,54.10000000000001,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 -11.549668874172186,5,a-cure-i1,2023-24,54.5,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 -5.607142857142858,5,a-cure-i1,2023-24,31.4,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 -8.250871080139373,5,a-cure-i1,2023-24,44.4,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 -17.0840108401084,5,a-cure-i1,2023-24,39.4,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 -11.114375655823716,5,a-cure-i1,2023-24,66.2,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 -12.320328542094455,5,a-cure-i1,2023-24,75.0,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 -6.923879040667361,5,a-cure-i1,2023-24,41.5,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 -6.852097130242826,5,a-cure-i1,2023-24,38.8,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 -10.500556173526139,5,a-cure-i1,2023-24,59.0,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 -9.38219895287958,5,a-cure-i1,2023-24,56.0,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 -9.016393442622952,5,a-cure-i1,2023-24,55.00000000000001,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 -9.492468134414834,5,a-cure-i1,2023-24,51.2,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 -7.68,5,a-cure-i1,2023-24,48.0,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 -9.977619532044761,5,a-cure-i1,2023-24,61.3,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 -13.243243243243244,5,a-cure-i1,2023-24,73.5,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 -3.9320498301245754,3.93,a-cure-i1,2023-24,21.7,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 -12.309111880046137,5,a-cure-i1,2023-24,66.7,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 -11.150259067357512,5,a-cure-i1,2023-24,53.8,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 -7.477124183006535,5,a-cure-i1,2023-24,28.599999999999998,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 -10.716666666666667,5,a-cure-i1,2023-24,64.3,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 -8.367491166077738,5,a-cure-i1,2023-24,44.4,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 -6.290748898678415,5,a-cure-i1,2023-24,35.7,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 -5.970893970893971,5,a-cure-i1,2023-24,35.9,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 -14.530232558139534,5,a-cure-i1,2023-24,78.1,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 -12.34658511722732,5,a-cure-i1,2023-24,75.7,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 -8.080971659919028,5,a-cure-i1,2023-24,49.9,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 -8.825331971399386,5,a-cure-i1,2023-24,54.0,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 -1.149478563151796,1.15,a-cure-i1,2023-24,6.2,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 -13.796653796653796,5,a-cure-i1,2023-24,67.0,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 -7.591933570581258,5,a-cure-i1,2023-24,40.0,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 -4.371308016877637,4.37,a-cure-i1,2023-24,25.9,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 -10.653113087674713,5,a-cure-i1,2023-24,52.4,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 -7.820895522388059,5,a-cure-i1,2023-24,26.2,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 -10.705759162303664,5,a-cure-i1,2023-24,63.9,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 -6.7368421052631575,5,a-cure-i1,2023-24,40.0,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 -5.68177028451001,5,a-cure-i1,2023-24,33.7,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 -9.06422018348624,5,a-cure-i1,2023-24,24.700000000000003,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 -3.745075318655852,3.75,a-cure-i1,2023-24,20.2,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 -3.505507955936353,3.51,a-cure-i1,2023-24,17.900000000000002,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 -8.18833162743091,5,a-cure-i1,2023-24,50.0,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 -1,1,a-cure-i1,2023-24,0.2,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 -9.842424242424242,5,a-cure-i1,2023-24,60.9,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 -7.142268041237113,5,a-cure-i1,2023-24,43.3,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 -5.795407098121086,5,a-cure-i1,2023-24,34.7,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 -9.444561774023231,5,a-cure-i1,2023-24,55.900000000000006,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 -7.01123595505618,5,a-cure-i1,2023-24,42.900000000000006,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 -4.688453159041395,4.69,a-cure-i1,2023-24,26.900000000000002,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 -4.341621621621622,4.34,a-cure-i1,2023-24,25.099999999999998,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 -16.023121387283236,5,a-cure-i1,2023-24,69.3,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 -9.49124613800206,5,a-cure-i1,2023-24,57.6,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 -5.00374531835206,5,a-cure-i1,2023-24,16.7,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 -6.522522522522523,5,a-cure-i1,2023-24,36.2,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 -7.8705501618122975,5,a-cure-i1,2023-24,45.6,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 -10.321995464852607,5,a-cure-i1,2023-24,56.9,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 -6.592202318229714,5,a-cure-i1,2023-24,39.099999999999994,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 -6.2608695652173925,5,a-cure-i1,2023-24,32.400000000000006,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 -5.771839671120247,5,a-cure-i1,2023-24,35.1,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 -3.0552763819095476,3.06,a-cure-i1,2023-24,15.2,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 -6.7808676307007785,5,a-cure-i1,2023-24,38.1,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 -11.52876712328767,5,a-cure-i1,2023-24,26.299999999999997,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 -9.57060849598163,5,a-cure-i1,2023-24,52.1,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 -11.648616125150422,5,a-cure-i1,2023-24,60.5,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 -10.55863539445629,5,a-cure-i1,2023-24,61.900000000000006,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 -5.88034188034188,5,a-cure-i1,2023-24,30.1,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 -5.6570820021299255,5,a-cure-i1,2023-24,33.2,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 -8.998984771573605,5,a-cure-i1,2023-24,55.400000000000006,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 -7.735325506937032,5,a-cure-i1,2023-24,45.3,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 -5.779548472775565,5,a-cure-i1,2023-24,27.2,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 -11.18712273641851,5,a-cure-i1,2023-24,69.5,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 -8.040941658137154,5,a-cure-i1,2023-24,49.1,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 -7.562700964630224,5,a-cure-i1,2023-24,44.099999999999994,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 -11.266666666666666,5,a-cure-i1,2023-24,67.6,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 -7.405275779376499,5,a-cure-i1,2023-24,38.6,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 -6.137435897435897,5,a-cure-i1,2023-24,37.4,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 -8.099255583126551,5,a-cure-i1,2023-24,20.4,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 -7.159322033898305,5,a-cure-i1,2023-24,39.6,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 -9.504950495049505,5,a-cure-i1,2023-24,42.0,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 -6.419855222337125,5,a-cure-i1,2023-24,38.8,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 -7.74245472837022,5,a-cure-i1,2023-24,48.099999999999994,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 -13.742160278745645,5,a-cure-i1,2023-24,49.300000000000004,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 -10.655737704918034,5,a-cure-i1,2023-24,65.0,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 -6.946681175190424,5,a-cure-i1,2023-24,39.9,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 -7.732522796352582,5,a-cure-i1,2023-24,47.699999999999996,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 -1.967479674796748,1.97,a-cure-i1,2023-24,12.100000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.626373626373626,5,a-cure-i1,2023-24,6.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.319838056680163,5,a-cure-i1,2023-24,45.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,4.1,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.958002270147561,4.96,a-cure-i1,2023-24,27.300000000000004,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.4275092936802973,1.43,a-cure-i1,2023-24,7.2,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 -1,1,a-cure-i1,2023-24,2.7,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 -1.500526870389884,1.5,a-cure-i1,2023-24,8.9,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 -2.707692307692308,2.71,a-cure-i1,2023-24,14.3,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 -1.7092511013215859,1.71,a-cure-i1,2023-24,9.7,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 -1.8937198067632852,1.89,a-cure-i1,2023-24,9.8,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 -11.610471204188482,5,a-cure-i1,2023-24,69.3,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 -3.057113187954309,3.06,a-cure-i1,2023-24,18.4,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 -3.331719128329298,3.33,a-cure-i1,2023-24,17.2,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 -2.0843672456575684,2.08,a-cure-i1,2023-24,10.5,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 -3.4299401197604786,3.43,a-cure-i1,2023-24,17.9,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 -2.0730270906949353,2.07,a-cure-i1,2023-24,11.0,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 -1.2972972972972974,1.3,a-cure-i1,2023-24,7.5,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 -1.665859564164649,1.67,a-cure-i1,2023-24,8.6,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 -2.384449244060475,2.38,a-cure-i1,2023-24,13.799999999999999,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 -2.089171974522293,2.09,a-cure-i1,2023-24,12.3,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 -5.1498335183129855,5,a-cure-i1,2023-24,29.0,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 -0.8918617614269788,1,a-cure-i1,2023-24,5.0,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 -5.60730593607306,5,a-cure-i1,2023-24,30.700000000000003,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 -4.472049689440993,4.47,a-cure-i1,2023-24,22.5,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 -9.007284079084288,5,a-cure-i1,2023-24,54.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.503184713375797,5,a-cure-i1,2023-24,16.200000000000003,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 -4.643356643356643,4.64,a-cure-i1,2023-24,16.6,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 -3.221006564551422,3.22,a-cure-i1,2023-24,9.2,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 -2.0125786163522013,2.01,a-cure-i1,2023-24,6.0,47.7,Brookline - Heath,00460025, 5.3, 17.7, 12.9, 52.3, 0.0, 0.0, 11.8, 53.7, 46.3, 0.0 -1.8842975206611572,1.88,a-cure-i1,2023-24,5.7,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 -4.075213675213675,4.08,a-cure-i1,2023-24,14.9,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 -3.8461538461538463,3.85,a-cure-i1,2023-24,12.5,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 -6.136200716845879,5,a-cure-i1,2023-24,21.400000000000002,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 -4.574496644295302,4.57,a-cure-i1,2023-24,21.3,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 -3.2101105845181674,3.21,a-cure-i1,2023-24,12.7,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 -3.608200455580866,3.61,a-cure-i1,2023-24,9.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.2,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 -2.6730310262529833,2.67,a-cure-i1,2023-24,7.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,4.0,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 -12.926829268292684,5,a-cure-i1,2023-24,53.0,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 -7.161904761904761,5,a-cure-i1,2023-24,28.2,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 -9.171974522292993,5,a-cure-i1,2023-24,36.0,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 -8.727272727272727,5,a-cure-i1,2023-24,31.2,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 -5.624454148471616,5,a-cure-i1,2023-24,32.2,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 -2.7686116700201207,2.77,a-cure-i1,2023-24,8.6,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 -10.102564102564102,5,a-cure-i1,2023-24,39.4,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 -4.978369384359401,4.98,a-cure-i1,2023-24,18.7,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 -2.5852417302798982,2.59,a-cure-i1,2023-24,12.7,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 -7.029185867895546,5,a-cure-i1,2023-24,28.599999999999998,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 -10.20952380952381,5,a-cure-i1,2023-24,26.8,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 -8.512820512820513,5,a-cure-i1,2023-24,41.5,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 -2.972222222222222,2.97,a-cure-i1,2023-24,10.7,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 -5.925925925925926,5,a-cure-i1,2023-24,21.0,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 -7.106082036775105,5,a-cure-i1,2023-24,31.4,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 -8.95617529880478,5,a-cure-i1,2023-24,28.099999999999998,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 -3.6202531645569622,3.62,a-cure-i1,2023-24,14.3,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 -3.588390501319261,3.59,a-cure-i1,2023-24,8.5,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.503667481662592,2.5,a-cure-i1,2023-24,6.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.694736842105263,2.69,a-cure-i1,2023-24,6.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.3,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -10.666666666666666,5,a-cure-i1,2023-24,6.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,1.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.428872497365648,5,a-cure-i1,2023-24,32.2,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 -4.80672268907563,4.81,a-cure-i1,2023-24,28.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.761006289308176,1.76,a-cure-i1,2023-24,10.5,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 -4.824561403508771,4.82,a-cure-i1,2023-24,27.5,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 -3.4820457018498367,3.48,a-cure-i1,2023-24,20.0,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 -1.7241379310344829,1.72,a-cure-i1,2023-24,10.0,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 -11.856115107913668,5,a-cure-i1,2023-24,72.1,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 -8.614072494669509,5,a-cure-i1,2023-24,50.5,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 -3.4519956850053934,3.45,a-cure-i1,2023-24,20.0,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 -3.4297606659729447,3.43,a-cure-i1,2023-24,20.599999999999998,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.298507462686567,4.3,a-cure-i1,2023-24,10.8,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 -3.1904047976011993,3.19,a-cure-i1,2023-24,13.3,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 -2.896551724137931,2.9,a-cure-i1,2023-24,8.4,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 -2.184049079754601,2.18,a-cure-i1,2023-24,8.9,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 -3.5428571428571423,3.54,a-cure-i1,2023-24,12.399999999999999,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 -1.6894409937888197,1.69,a-cure-i1,2023-24,6.8,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 -1.149171270718232,1.15,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,1.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -8.569395017793594,5,a-cure-i1,2023-24,30.1,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 -6.006153846153846,5,a-cure-i1,2023-24,36.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.5,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 -1,1,a-cure-i1,2023-24,4.8,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 -3.6042105263157893,3.6,a-cure-i1,2023-24,10.7,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 -8.255999999999998,5,a-cure-i1,2023-24,51.599999999999994,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.425165562913907,5,a-cure-i1,2023-24,25.6,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 -5.9893955461293755,5,a-cure-i1,2023-24,35.300000000000004,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 -4.883011190233978,4.88,a-cure-i1,2023-24,30.0,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 -5.546012269938652,5,a-cure-i1,2023-24,11.3,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 -8.514285714285714,5,a-cure-i1,2023-24,14.9,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 -1,1,a-cure-i1,2023-24,4.1,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 -8.076923076923078,5,a-cure-i1,2023-24,10.5,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 -6.581132075471698,5,a-cure-i1,2023-24,10.9,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 -5.422314911366006,5,a-cure-i1,2023-24,32.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.4,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 -1,1,a-cure-i1,2023-24,4.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -8.903225806451609,5,a-cure-i1,2023-24,6.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.9,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 -1,1,a-cure-i1,2023-24,1.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.0,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 -2.9132947976878616,2.91,a-cure-i1,2023-24,6.3,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,1.7,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 -6.628571428571428,5,a-cure-i1,2023-24,5.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -4.602739726027397,4.6,a-cure-i1,2023-24,8.4,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 -5.255474452554743,5,a-cure-i1,2023-24,9.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.5762711864406773,2.58,a-cure-i1,2023-24,5.699999999999999,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 -9.876543209876543,5,a-cure-i1,2023-24,60.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.9,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 -5.84738955823293,5,a-cure-i1,2023-24,9.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.1,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 -7.529411764705883,5,a-cure-i1,2023-24,11.2,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 -1,1,a-cure-i1,2023-24,4.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -1,1,a-cure-i1,2023-24,3.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.3333333333333326,3.33,a-cure-i1,2023-24,5.5,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 -4.451612903225807,4.45,a-cure-i1,2023-24,6.8999999999999995,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.5,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 -1,1,a-cure-i1,2023-24,3.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.4,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 -5.5929203539823025,5,a-cure-i1,2023-24,7.9,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 -3.224806201550388,3.22,a-cure-i1,2023-24,5.2,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 -2.088772845953003,2.09,a-cure-i1,2023-24,5.0,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 -8.351378958120529,5,a-cure-i1,2023-24,51.099999999999994,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.77319587628866,1.77,a-cure-i1,2023-24,8.6,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 -2.315294117647059,2.32,a-cure-i1,2023-24,12.3,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 -1.225305216426193,1.23,a-cure-i1,2023-24,6.8999999999999995,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 -1.304964539007092,1.3,a-cure-i1,2023-24,6.8999999999999995,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 -1.0442890442890442,1.04,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,3.7,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 -1.1746384872080087,1.17,a-cure-i1,2023-24,6.6,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 -2.6824085005903187,2.68,a-cure-i1,2023-24,14.2,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 -1,1,a-cure-i1,2023-24,1.1,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 -7.61904761904762,5,a-cure-i1,2023-24,42.00000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.2816399286987523,2.28,a-cure-i1,2023-24,8.0,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 -1,1,a-cure-i1,2023-24,1.9,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 -4.530693069306931,4.53,a-cure-i1,2023-24,14.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.154351395730706,2.15,a-cure-i1,2023-24,8.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.6,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 -1,1,a-cure-i1,2023-24,3.3,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 -3.30791788856305,3.31,a-cure-i1,2023-24,14.100000000000001,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 -3.0862944162436547,3.09,a-cure-i1,2023-24,11.4,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 -2.8693957115009745,2.87,a-cure-i1,2023-24,9.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.2730109204368174,1.27,a-cure-i1,2023-24,5.1,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 -3.447368421052632,3.45,a-cure-i1,2023-24,13.1,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 -2.446680080482897,2.45,a-cure-i1,2023-24,7.6,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 -6.088495575221239,5,a-cure-i1,2023-24,17.2,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 -5.856905158069884,5,a-cure-i1,2023-24,22.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -4.616393442622951,4.62,a-cure-i1,2023-24,8.8,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,4.2,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 -3.4909090909090907,3.49,a-cure-i1,2023-24,6.0,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 -1,1,a-cure-i1,2023-24,3.2,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 -13.3953488372093,5,a-cure-i1,2023-24,14.399999999999999,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 -3.18819188191882,3.19,a-cure-i1,2023-24,5.4,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 -1,1,a-cure-i1,2023-24,4.9,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 -1.7708333333333335,1.77,a-cure-i1,2023-24,8.5,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 -1.7919999999999996,1.79,a-cure-i1,2023-24,8.399999999999999,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 -4.141414141414141,4.14,a-cure-i1,2023-24,20.5,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 -4.1659513590844055,4.17,a-cure-i1,2023-24,18.2,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 -1,1,a-cure-i1,2023-24,4.1,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 -1.7165562913907289,1.72,a-cure-i1,2023-24,8.100000000000001,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 -2.2823179791976225,2.28,a-cure-i1,2023-24,9.6,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 -2.9379128137384414,2.94,a-cure-i1,2023-24,13.900000000000002,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 -1,1,a-cure-i1,2023-24,0.0,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 -14.235294117647065,5,a-cure-i1,2023-24,12.1,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 -1,1,a-cure-i1,2023-24,3.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -3.163498098859316,3.16,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.6576787807737396,3.66,a-cure-i1,2023-24,19.5,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 -12.306264501160092,5,a-cure-i1,2023-24,66.3,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 -6.438502673796792,5,a-cure-i1,2023-24,30.1,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 -7.127012522361359,5,a-cure-i1,2023-24,24.9,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 -7.258687258687259,5,a-cure-i1,2023-24,23.5,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 -4.830188679245284,4.83,a-cure-i1,2023-24,17.6,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 -6.197991391678622,5,a-cure-i1,2023-24,27.0,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 -5.455797933409874,5,a-cure-i1,2023-24,29.7,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 -1,1,a-cure-i1,2023-24,4.0,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 -3.6684303350970016,3.67,a-cure-i1,2023-24,13.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.7376586741889986,1.74,a-cure-i1,2023-24,7.7,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 -1,1,a-cure-i1,2023-24,3.6999999999999997,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 -1.3075780089153046,1.31,a-cure-i1,2023-24,5.5,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 -5.700516351118761,5,a-cure-i1,2023-24,20.700000000000003,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 -17.13475177304965,5,a-cure-i1,2023-24,15.1,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 -1,1,a-cure-i1,2023-24,1.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.7999999999999998,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.4,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 -1,1,a-cure-i1,2023-24,2.8,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5999999999999996,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 -3.278048780487805,3.28,a-cure-i1,2023-24,8.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.804878048780489,5,a-cure-i1,2023-24,6.0,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 -19.12195121951219,5,a-cure-i1,2023-24,9.8,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 -10.29885057471264,5,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,2.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.965517241379311,4.97,a-cure-i1,2023-24,6.300000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.908794788273615,3.91,a-cure-i1,2023-24,7.5,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 -3.3817034700315456,3.38,a-cure-i1,2023-24,6.7,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 -4.578241430700447,4.58,a-cure-i1,2023-24,19.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.5976331360946747,3.6,a-cure-i1,2023-24,7.6,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 -1,1,a-cure-i1,2023-24,0.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.526530612244898,3.53,a-cure-i1,2023-24,5.4,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 -3.4705882352941173,3.47,a-cure-i1,2023-24,5.9,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 -1,1,a-cure-i1,2023-24,2.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9000000000000004,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 -3.169811320754717,3.17,a-cure-i1,2023-24,16.8,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 -1.7476923076923077,1.75,a-cure-i1,2023-24,7.1,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 -2.905908096280087,2.91,a-cure-i1,2023-24,8.299999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.5801104972375692,3.58,a-cure-i1,2023-24,8.100000000000001,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 -5.962732919254658,5,a-cure-i1,2023-24,12.0,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 -2.6666666666666665,2.67,a-cure-i1,2023-24,7.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,2.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.924528301886792,5,a-cure-i1,2023-24,10.5,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 -4.971428571428571,4.97,a-cure-i1,2023-24,8.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -10.992366412213745,5,a-cure-i1,2023-24,9.0,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 -15.05185185185185,5,a-cure-i1,2023-24,12.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.503259452411995,2.5,a-cure-i1,2023-24,12.0,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 -4.038240917782027,4.04,a-cure-i1,2023-24,13.200000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.930232558139534,4.93,a-cure-i1,2023-24,5.3,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 -1,1,a-cure-i1,2023-24,1.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.2,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,3.3,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 -6.095238095238096,5,a-cure-i1,2023-24,9.600000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -20.4,5,a-cure-i1,2023-24,5.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.8591549295774654,3.86,a-cure-i1,2023-24,13.700000000000001,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 -1,1,a-cure-i1,2023-24,3.4,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 -1,1,a-cure-i1,2023-24,4.2,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 -2.9952,3.0,a-cure-i1,2023-24,11.700000000000001,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 -5.840776699029126,5,a-cure-i1,2023-24,18.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.4174757281553396,3.42,a-cure-i1,2023-24,11.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,2.1,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 -1,1,a-cure-i1,2023-24,4.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -9.904000000000002,5,a-cure-i1,2023-24,61.900000000000006,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 -2.7072243346007605,2.71,a-cure-i1,2023-24,8.9,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 -1,1,a-cure-i1,2023-24,3.0,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,1.0,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 -7.608391608391611,5,a-cure-i1,2023-24,6.800000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.0,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -8.291497975708502,5,a-cure-i1,2023-24,12.8,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 -1,1,a-cure-i1,2023-24,4.5,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 -5.586206896551723,5,a-cure-i1,2023-24,8.1,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 -14.184696569920845,5,a-cure-i1,2023-24,67.2,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 -3.0715835140997836,3.07,a-cure-i1,2023-24,17.700000000000003,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 -4.136674259681094,4.14,a-cure-i1,2023-24,22.7,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 -3.5359116022099446,3.54,a-cure-i1,2023-24,20.0,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 -2.5365853658536586,2.54,a-cure-i1,2023-24,14.3,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 -8.48356309650053,5,a-cure-i1,2023-24,50.0,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 -8.74859075535513,5,a-cure-i1,2023-24,48.5,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 -1,1,a-cure-i1,2023-24,4.5,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 -2.745995423340961,2.75,a-cure-i1,2023-24,15.0,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 -4.23728813559322,4.24,a-cure-i1,2023-24,25.0,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 -4.545073375262055,4.55,a-cure-i1,2023-24,27.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.194174757281555,4.19,a-cure-i1,2023-24,5.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.747826086956522,2.75,a-cure-i1,2023-24,7.9,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 -2.1196581196581197,2.12,a-cure-i1,2023-24,6.2,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 -3.606936416184972,3.61,a-cure-i1,2023-24,7.800000000000001,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 -1,1,a-cure-i1,2023-24,4.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.890295358649789,1.89,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,4.8,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 -4.132450331125828,4.13,a-cure-i1,2023-24,7.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.740458015267175,5,a-cure-i1,2023-24,9.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.3689567430025456,5,a-cure-i1,2023-24,18.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -6.545454545454543,5,a-cure-i1,2023-24,6.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,4.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -10.070493454179257,5,a-cure-i1,2023-24,62.50000000000001,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 -9.001051524710832,5,a-cure-i1,2023-24,53.5,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 -2.6288032454361057,2.63,a-cure-i1,2023-24,16.2,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 -2.5040650406504064,2.5,a-cure-i1,2023-24,15.4,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 -3.0437436419125135,3.04,a-cure-i1,2023-24,18.700000000000003,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 -1.3761658031088084,1.38,a-cure-i1,2023-24,8.3,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 -3.4028629856850716,3.4,a-cure-i1,2023-24,20.8,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 -2.98989898989899,2.99,a-cure-i1,2023-24,18.5,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 -2.912169312169312,2.91,a-cure-i1,2023-24,17.2,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 -1.2687950566426365,1.27,a-cure-i1,2023-24,7.699999999999999,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 -3.2974619289340104,3.3,a-cure-i1,2023-24,20.3,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 -4.800000000000001,4.8,a-cure-i1,2023-24,29.700000000000003,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 -3.666314677930306,3.67,a-cure-i1,2023-24,21.7,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 -1.931321540062435,1.93,a-cure-i1,2023-24,11.6,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 -2.290422245108136,2.29,a-cure-i1,2023-24,13.9,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 -3.248730964467005,3.25,a-cure-i1,2023-24,20.0,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 -5.333333333333332,5,a-cure-i1,2023-24,32.3,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 -5.791411042944786,5,a-cure-i1,2023-24,35.4,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 -5.6016096579476855,5,a-cure-i1,2023-24,34.8,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 -4.410986775178027,4.41,a-cure-i1,2023-24,27.1,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 -2.9623601220752795,2.96,a-cure-i1,2023-24,18.2,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 -2.661157024793389,2.66,a-cure-i1,2023-24,16.1,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 -5.3604060913705585,5,a-cure-i1,2023-24,33.0,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 -1.618945102260495,1.62,a-cure-i1,2023-24,9.4,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 -4.711758584807493,4.71,a-cure-i1,2023-24,28.3,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 -8.234800838574424,5,a-cure-i1,2023-24,49.1,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 -1.7759506680369992,1.78,a-cure-i1,2023-24,10.8,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 -4.2898550724637685,4.29,a-cure-i1,2023-24,25.9,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 -5.279515640766903,5,a-cure-i1,2023-24,32.7,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 -3.2916224814422055,3.29,a-cure-i1,2023-24,19.4,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 -1,1,a-cure-i1,2023-24,2.8,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 -4.512820512820513,4.51,a-cure-i1,2023-24,5.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.501529051987767,4.5,a-cure-i1,2023-24,9.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -2.047244094488189,2.05,a-cure-i1,2023-24,6.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.0,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 -9.169373549883991,5,a-cure-i1,2023-24,24.7,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 -1.4369602763385148,1.44,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.094240837696335,2.09,a-cure-i1,2023-24,7.5,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -6.238993710691824,5,a-cure-i1,2023-24,24.8,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 -1.8823529411764708,1.88,a-cure-i1,2023-24,8.8,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 -2.3734729493891797,2.37,a-cure-i1,2023-24,8.5,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 -3.190404797601199,3.19,a-cure-i1,2023-24,13.299999999999999,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 -3.3131313131313136,3.31,a-cure-i1,2023-24,12.3,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 -2.3929618768328442,2.39,a-cure-i1,2023-24,10.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.61038961038961,3.61,a-cure-i1,2023-24,13.899999999999999,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 -5.379509379509379,5,a-cure-i1,2023-24,23.299999999999997,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 -3.5072,3.51,a-cure-i1,2023-24,13.700000000000001,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 -7.57807652533609,5,a-cure-i1,2023-24,45.8,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 -2.1287553648068664,2.13,a-cure-i1,2023-24,6.199999999999999,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 -3.5799086757990866,3.58,a-cure-i1,2023-24,9.799999999999999,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 -5.91186440677966,5,a-cure-i1,2023-24,10.899999999999999,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 -4.102564102564101,4.1,a-cure-i1,2023-24,6.0,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.105058365758754,5,a-cure-i1,2023-24,8.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.816118047673099,1.82,a-cure-i1,2023-24,10.0,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 -6.364532019704432,5,a-cure-i1,2023-24,32.3,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 -1.4242774566473988,1.42,a-cure-i1,2023-24,7.699999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.377123442808607,1.38,a-cure-i1,2023-24,7.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.062415196743555,2.06,a-cure-i1,2023-24,9.5,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.2661870503597121,1.27,a-cure-i1,2023-24,6.6,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 -5.347204161248374,5,a-cure-i1,2023-24,25.700000000000003,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 -1.6467598475222365,1.65,a-cure-i1,2023-24,8.100000000000001,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 -1.7297297297297298,1.73,a-cure-i1,2023-24,7.6,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 -1.4292803970223327,1.43,a-cure-i1,2023-24,7.2,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 -1.5876288659793816,1.59,a-cure-i1,2023-24,7.7,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 -1.330254041570439,1.33,a-cure-i1,2023-24,7.2,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 -4.736,4.74,a-cure-i1,2023-24,22.2,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 -3.6941529235382307,3.69,a-cure-i1,2023-24,15.4,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 -3.5141104294478533,3.51,a-cure-i1,2023-24,17.900000000000002,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 -1.4930362116991645,1.49,a-cure-i1,2023-24,6.7,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 -1.831187410586552,1.83,a-cure-i1,2023-24,8.0,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 -2.2816901408450705,2.28,a-cure-i1,2023-24,8.1,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 -1.5579598145285933,1.56,a-cure-i1,2023-24,6.3,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 -2.103194103194103,2.1,a-cure-i1,2023-24,10.7,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 -1.7367706919945725,1.74,a-cure-i1,2023-24,8.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.1484184914841848,1.15,a-cure-i1,2023-24,5.9,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 -4.055853920515575,4.06,a-cure-i1,2023-24,23.599999999999998,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 -9.774058577405857,5,a-cure-i1,2023-24,43.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.0505920344456403,1.05,a-cure-i1,2023-24,6.1,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 -1.6770538243626065,1.68,a-cure-i1,2023-24,7.4,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 -2.6812705366922236,2.68,a-cure-i1,2023-24,15.3,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 -4.140350877192983,4.14,a-cure-i1,2023-24,23.6,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 -3.5792592592592594,3.58,a-cure-i1,2023-24,15.1,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 -2.4824462061155153,2.48,a-cure-i1,2023-24,13.7,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 -1.379876796714579,1.38,a-cure-i1,2023-24,8.4,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 -2.3586358635863585,2.36,a-cure-i1,2023-24,13.4,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 -1,1,a-cure-i1,2023-24,3.4,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 -1.9795918367346936,1.98,a-cure-i1,2023-24,9.7,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 -3.0540827147401908,3.05,a-cure-i1,2023-24,18.0,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 -3.9437837837837844,3.94,a-cure-i1,2023-24,22.800000000000004,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 -1.3333333333333335,1.33,a-cure-i1,2023-24,7.9,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 -1.753424657534247,1.75,a-cure-i1,2023-24,9.600000000000001,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 -1,1,a-cure-i1,2023-24,3.6,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 -3.0762620837808807,3.08,a-cure-i1,2023-24,17.9,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 -1.8058690744920998,1.81,a-cure-i1,2023-24,10.000000000000002,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.6531645569620252,2.65,a-cure-i1,2023-24,13.1,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 -1,1,a-cure-i1,2023-24,3.6,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 -0.9976019184652278,1,a-cure-i1,2023-24,5.2,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 -4.301639344262295,4.3,a-cure-i1,2023-24,24.599999999999998,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 -1,1,a-cure-i1,2023-24,1.9,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 -2.611042944785276,2.61,a-cure-i1,2023-24,13.3,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 -1.1162790697674418,1.12,a-cure-i1,2023-24,6.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.616977225672878,2.62,a-cure-i1,2023-24,15.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.2,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 -23.064935064935067,5,a-cure-i1,2023-24,33.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.8668596237337196,3.87,a-cure-i1,2023-24,16.7,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 -1.1675675675675676,1.17,a-cure-i1,2023-24,5.4,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 -1.4527112232030266,1.45,a-cure-i1,2023-24,7.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.8174706649282912,3.82,a-cure-i1,2023-24,18.299999999999997,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.68051948051948,2.68,a-cure-i1,2023-24,12.899999999999999,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 -3.6577017114914434,3.66,a-cure-i1,2023-24,18.700000000000003,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.5,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 -3.014492753623189,3.01,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,2.9,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 -5.675213675213675,5,a-cure-i1,2023-24,8.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -9.99209486166008,5,a-cure-i1,2023-24,15.799999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -6.9818181818181815,5,a-cure-i1,2023-24,7.199999999999999,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 -1,1,a-cure-i1,2023-24,4.800000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.841095890410959,1.84,a-cure-i1,2023-24,8.4,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.3367697594501715,2.34,a-cure-i1,2023-24,8.5,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 -1,1,a-cure-i1,2023-24,1.7,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 -1.2782369146005512,1.28,a-cure-i1,2023-24,5.800000000000001,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 -1,1,a-cure-i1,2023-24,2.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.349862258953168,3.35,a-cure-i1,2023-24,7.6,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 -9.90134529147982,5,a-cure-i1,2023-24,13.799999999999999,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 -9.237613751263902,5,a-cure-i1,2023-24,57.1,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 -1,1,a-cure-i1,2023-24,1.5,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 -8.330578512396698,5,a-cure-i1,2023-24,6.300000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.764705882352942,3.76,a-cure-i1,2023-24,7.2,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 -1,1,a-cure-i1,2023-24,1.1,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 -6.347914547304171,5,a-cure-i1,2023-24,39.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -8.927038626609443,5,a-cure-i1,2023-24,13.0,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 -9.611510791366907,5,a-cure-i1,2023-24,16.7,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,1.0,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 -10.947368421052634,5,a-cure-i1,2023-24,9.1,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 -1,1,a-cure-i1,2023-24,3.4000000000000004,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.1999999999999997,3.2,a-cure-i1,2023-24,12.1,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 -1,1,a-cure-i1,2023-24,4.8999999999999995,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 -2.6096256684491976,2.61,a-cure-i1,2023-24,6.1,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 -1,1,a-cure-i1,2023-24,4.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.3,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -1,1,a-cure-i1,2023-24,1.4,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 -1,1,a-cure-i1,2023-24,4.2,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 -4.437500000000001,4.44,a-cure-i1,2023-24,7.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.3,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 -1,1,a-cure-i1,2023-24,4.9,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 -7.172413793103446,5,a-cure-i1,2023-24,7.8,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.4382022471910112,1.44,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,1.6,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.495412844036697,2.5,a-cure-i1,2023-24,6.8,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 -2.4504504504504503,2.45,a-cure-i1,2023-24,6.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.118143459915611,4.12,a-cure-i1,2023-24,6.1,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,1.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.335211267605634,3.34,a-cure-i1,2023-24,7.4,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 -6.449612403100776,5,a-cure-i1,2023-24,10.4,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 -4.744827586206896,4.74,a-cure-i1,2023-24,8.6,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 -5.963636363636363,5,a-cure-i1,2023-24,8.2,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 -1,1,a-cure-i1,2023-24,4.7,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 -4.777947932618683,4.78,a-cure-i1,2023-24,19.5,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 -1,1,a-cure-i1,2023-24,3.9000000000000004,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.4,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 -5.184,5,a-cure-i1,2023-24,8.1,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,2.9,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 -18.000000000000007,5,a-cure-i1,2023-24,9.9,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 -6.891385767790261,5,a-cure-i1,2023-24,11.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.613793103448276,5,a-cure-i1,2023-24,6.9,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 -1,1,a-cure-i1,2023-24,3.2,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 -4.54380664652568,4.54,a-cure-i1,2023-24,18.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.215053763440861,4.22,a-cure-i1,2023-24,14.700000000000001,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 -1.7943925233644857,1.79,a-cure-i1,2023-24,7.199999999999999,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 -4.559139784946237,4.56,a-cure-i1,2023-24,15.9,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 -2.2974358974358973,2.3,a-cure-i1,2023-24,8.399999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.017751479289939,5,a-cure-i1,2023-24,5.3,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 -3.7647058823529425,3.76,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.8,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 -1,1,a-cure-i1,2023-24,4.6,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 -3.555555555555555,3.56,a-cure-i1,2023-24,7.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.8333333333333335,2.83,a-cure-i1,2023-24,5.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.8326996197718635,3.83,a-cure-i1,2023-24,6.3,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 -1,1,a-cure-i1,2023-24,3.1000000000000005,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 -1,1,a-cure-i1,2023-24,2.8,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 -1,1,a-cure-i1,2023-24,2.4,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 -5.316770186335403,5,a-cure-i1,2023-24,10.7,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 -1,1,a-cure-i1,2023-24,2.7,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 -2.8822170900692843,2.88,a-cure-i1,2023-24,7.8,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 -9.322314049586776,5,a-cure-i1,2023-24,14.1,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 -3.679442508710801,3.68,a-cure-i1,2023-24,6.6,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 -5.6598639455782305,5,a-cure-i1,2023-24,10.4,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 -6.040816326530612,5,a-cure-i1,2023-24,11.100000000000001,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 -1,1,a-cure-i1,2023-24,4.4,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 -8.642464246424643,5,a-cure-i1,2023-24,49.1,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 -1.9358600583090382,1.94,a-cure-i1,2023-24,8.3,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 -4.716553287981859,4.72,a-cure-i1,2023-24,26.0,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 -1,1,a-cure-i1,2023-24,3.4,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 -2.1361256544502614,2.14,a-cure-i1,2023-24,10.2,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,2.7,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 -4.9694793536804305,4.97,a-cure-i1,2023-24,17.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.4647887323943662,1.46,a-cure-i1,2023-24,5.2,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 -2.1626794258373208,2.16,a-cure-i1,2023-24,11.3,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 -1.8420348058902274,1.84,a-cure-i1,2023-24,8.6,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 -2.475873544093178,2.48,a-cure-i1,2023-24,9.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.933333333333334,3.93,a-cure-i1,2023-24,17.700000000000003,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.3475513428120065,4.35,a-cure-i1,2023-24,17.2,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 -3.965417867435158,3.97,a-cure-i1,2023-24,17.2,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 -2.3428571428571425,2.34,a-cure-i1,2023-24,8.2,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 -3.1372549019607843,3.14,a-cure-i1,2023-24,14.0,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 -3.737062937062937,3.74,a-cure-i1,2023-24,16.7,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 -2.899145299145299,2.9,a-cure-i1,2023-24,10.6,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 -1,1,a-cure-i1,2023-24,4.3,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 -2.4403183023872677,2.44,a-cure-i1,2023-24,11.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.93131313131313,5,a-cure-i1,2023-24,36.699999999999996,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 -13.548387096774187,5,a-cure-i1,2023-24,10.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -17.454545454545453,5,a-cure-i1,2023-24,12.0,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 -7.494736842105263,5,a-cure-i1,2023-24,17.8,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 -2.970917225950783,2.97,a-cure-i1,2023-24,8.3,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 -9.062937062937062,5,a-cure-i1,2023-24,32.4,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 -8.02930402930403,5,a-cure-i1,2023-24,27.4,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 -2.699588477366255,2.7,a-cure-i1,2023-24,8.2,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 -2.3244552058111383,2.32,a-cure-i1,2023-24,6.0,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 -4.039761431411532,4.04,a-cure-i1,2023-24,12.700000000000001,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 -4.2898550724637685,4.29,a-cure-i1,2023-24,11.100000000000001,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 -3.603960396039604,3.6,a-cure-i1,2023-24,9.1,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 -7.378823529411764,5,a-cure-i1,2023-24,19.599999999999998,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 -5.107344632768361,5,a-cure-i1,2023-24,11.3,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 -4.521739130434782,4.52,a-cure-i1,2023-24,16.9,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 -1,1,a-cure-i1,2023-24,4.6,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 -4.7207207207207205,4.72,a-cure-i1,2023-24,13.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.9553349875930515,5,a-cure-i1,2023-24,14.999999999999998,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 -5.186206896551724,5,a-cure-i1,2023-24,14.1,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 -4.784761904761905,4.78,a-cure-i1,2023-24,15.700000000000001,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 -4.780722891566265,4.78,a-cure-i1,2023-24,12.4,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 -5.562724014336918,5,a-cure-i1,2023-24,19.4,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 -1.9705882352941178,1.97,a-cure-i1,2023-24,6.7,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 -2.8368794326241136,2.84,a-cure-i1,2023-24,10.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.5,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 -1,1,a-cure-i1,2023-24,2.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.9000000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.4068441064638786,3.41,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.5,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 -3.983673469387755,3.98,a-cure-i1,2023-24,6.1,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 -8.546583850931679,5,a-cure-i1,2023-24,8.6,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 -1,1,a-cure-i1,2023-24,3.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.7,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 -1,1,a-cure-i1,2023-24,1.3,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 -1,1,a-cure-i1,2023-24,1.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,3.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -13.933933933933934,5,a-cure-i1,2023-24,29.0,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 -1,1,a-cure-i1,2023-24,1.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.893470790378008,4.89,a-cure-i1,2023-24,8.9,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 -5.847715736040608,5,a-cure-i1,2023-24,7.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.6,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 -1,1,a-cure-i1,2023-24,2.3,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 -1,1,a-cure-i1,2023-24,2.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.971830985915491,5,a-cure-i1,2023-24,5.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.2919254658385093,1.29,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -1.9185520361990949,1.92,a-cure-i1,2023-24,5.3,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 -1,1,a-cure-i1,2023-24,2.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.4438040345821324,2.44,a-cure-i1,2023-24,5.3,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 -2.9928057553956835,2.99,a-cure-i1,2023-24,7.800000000000001,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 -1,1,a-cure-i1,2023-24,4.8,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 -1,1,a-cure-i1,2023-24,4.0,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 -1,1,a-cure-i1,2023-24,2.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.4,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -4.469635627530364,4.47,a-cure-i1,2023-24,6.9,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 -1,1,a-cure-i1,2023-24,2.5,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 -1,1,a-cure-i1,2023-24,2.3000000000000003,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.4,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 -1,1,a-cure-i1,2023-24,0.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.679245283018869,4.68,a-cure-i1,2023-24,9.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -8.414814814814815,5,a-cure-i1,2023-24,7.1,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 -1,1,a-cure-i1,2023-24,2.0,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 -12.610169491525427,5,a-cure-i1,2023-24,9.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.864476386036961,5,a-cure-i1,2023-24,35.7,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 -6.586046511627908,5,a-cure-i1,2023-24,35.400000000000006,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 -13.440660474716202,5,a-cure-i1,2023-24,81.4,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 -4.065573770491803,4.07,a-cure-i1,2023-24,15.5,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 -7.293506493506494,5,a-cure-i1,2023-24,35.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -16.974459724950883,5,a-cure-i1,2023-24,54.0,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 -7.158924205378973,5,a-cure-i1,2023-24,18.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -2.6163522012578615,2.62,a-cure-i1,2023-24,7.8,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 -1,1,a-cure-i1,2023-24,3.6,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 -2.766917293233083,2.77,a-cure-i1,2023-24,6.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.061224489795919,5,a-cure-i1,2023-24,12.400000000000002,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.0,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 -8.301886792452835,5,a-cure-i1,2023-24,5.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.308203991130819,5,a-cure-i1,2023-24,41.199999999999996,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.338129496402878,3.34,a-cure-i1,2023-24,5.8,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 -4.35543018335684,4.36,a-cure-i1,2023-24,19.3,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 -2.066666666666667,2.07,a-cure-i1,2023-24,9.3,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 -1,1,a-cure-i1,2023-24,1.5,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 -1.3311148086522462,1.33,a-cure-i1,2023-24,5.0,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.111111111111111,5,a-cure-i1,2023-24,25.3,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 -1,1,a-cure-i1,2023-24,2.7,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 -2.5706371191135733,2.57,a-cure-i1,2023-24,5.8,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 -2.1937106918238993,2.19,a-cure-i1,2023-24,10.9,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 -2.1333333333333333,2.13,a-cure-i1,2023-24,8.8,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 -1.9626666666666666,1.96,a-cure-i1,2023-24,9.2,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 -3.6193895870736084,3.62,a-cure-i1,2023-24,12.6,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 -1,1,a-cure-i1,2023-24,0.6,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 -1.28,1.28,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.4,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 -2.58128078817734,2.58,a-cure-i1,2023-24,13.1,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 -2.660592255125285,2.66,a-cure-i1,2023-24,14.600000000000001,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 -2.639910813823857,2.64,a-cure-i1,2023-24,14.8,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 -3.921387283236994,3.92,a-cure-i1,2023-24,21.2,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 -5.208472686733558,5,a-cure-i1,2023-24,29.200000000000006,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 -2.200873362445415,2.2,a-cure-i1,2023-24,12.600000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,1.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.7031484257871063,1.7,a-cure-i1,2023-24,7.1,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 -1.6880733944954127,1.69,a-cure-i1,2023-24,6.9,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 -1,1,a-cure-i1,2023-24,2.8,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 -2.1144414168937327,2.11,a-cure-i1,2023-24,9.7,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 -2.0227560050568902,2.02,a-cure-i1,2023-24,10.0,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 -5.92904073587385,5,a-cure-i1,2023-24,28.2,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 -1,1,a-cure-i1,2023-24,2.7,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 -3.5649867374005297,3.56,a-cure-i1,2023-24,16.799999999999997,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 -1.314447592067989,1.31,a-cure-i1,2023-24,5.800000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.2557510148849795,1.26,a-cure-i1,2023-24,5.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -8.973544973544971,5,a-cure-i1,2023-24,10.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.4213649851632044,2.42,a-cure-i1,2023-24,5.1,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 -1,1,a-cure-i1,2023-24,2.2,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 -2.9090909090909083,2.91,a-cure-i1,2023-24,5.8,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 -5.565217391304347,5,a-cure-i1,2023-24,11.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -8.934010152284262,5,a-cure-i1,2023-24,11.0,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 -6.986828774062816,5,a-cure-i1,2023-24,43.099999999999994,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 -4.288973384030418,4.29,a-cure-i1,2023-24,14.099999999999998,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 -7.893333333333333,5,a-cure-i1,2023-24,44.4,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 -4.705882352941177,4.71,a-cure-i1,2023-24,12.5,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 -6.707070707070707,5,a-cure-i1,2023-24,24.9,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 -2.783661119515885,2.78,a-cure-i1,2023-24,11.5,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 -3.286356821589205,3.29,a-cure-i1,2023-24,13.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.532924961715161,4.53,a-cure-i1,2023-24,18.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.4280991735537192,1.43,a-cure-i1,2023-24,5.4,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 -2.5611510791366903,2.56,a-cure-i1,2023-24,8.899999999999999,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 -4.574679943100996,4.57,a-cure-i1,2023-24,20.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.875,1.88,a-cure-i1,2023-24,6.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.648044692737429,4.65,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,3.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.9837398373983737,1.98,a-cure-i1,2023-24,6.1,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 -1,1,a-cure-i1,2023-24,4.1,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 -1,1,a-cure-i1,2023-24,1.3,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 -4.327868852459015,4.33,a-cure-i1,2023-24,6.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.8128078817733992,1.81,a-cure-i1,2023-24,6.9,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 -2.2285714285714286,2.23,a-cure-i1,2023-24,7.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.78096947935368,1.78,a-cure-i1,2023-24,6.199999999999999,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 -1.9803536345776034,1.98,a-cure-i1,2023-24,6.300000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.7214076246334313,2.72,a-cure-i1,2023-24,5.8,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 -8.691358024691358,5,a-cure-i1,2023-24,8.8,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 -1,1,a-cure-i1,2023-24,1.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.4,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 -5.528795811518326,5,a-cure-i1,2023-24,6.6,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 -1,1,a-cure-i1,2023-24,3.0,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 -2.118067978533095,2.12,a-cure-i1,2023-24,7.4,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 -6.633608815426998,5,a-cure-i1,2023-24,30.1,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,4.3,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 -3.9501246882793017,3.95,a-cure-i1,2023-24,19.8,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 -1.208706786171575,1.21,a-cure-i1,2023-24,5.9,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 -7.85185185185185,5,a-cure-i1,2023-24,15.9,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 -7.102439024390243,5,a-cure-i1,2023-24,27.299999999999997,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 -4.396946564885496,4.4,a-cure-i1,2023-24,18.0,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 -3.7078085642317373,3.71,a-cure-i1,2023-24,9.2,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 -2.721259842519685,2.72,a-cure-i1,2023-24,10.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -2.3197026022304836,2.32,a-cure-i1,2023-24,7.800000000000001,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 -3.49185667752443,3.49,a-cure-i1,2023-24,13.4,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 -1,1,a-cure-i1,2023-24,4.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.8087774294670838,2.81,a-cure-i1,2023-24,5.6,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 -2.2535211267605635,2.25,a-cure-i1,2023-24,10.0,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 -2.8993288590604025,2.9,a-cure-i1,2023-24,13.5,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 -9.989708404802744,5,a-cure-i1,2023-24,36.4,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 -3.030640668523677,3.03,a-cure-i1,2023-24,13.6,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 -6.966618287373004,5,a-cure-i1,2023-24,30.0,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 -1.1614518147684605,1.16,a-cure-i1,2023-24,5.8,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 -3.3279999999999994,3.33,a-cure-i1,2023-24,12.999999999999998,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,2.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.8,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 -14.989473684210527,5,a-cure-i1,2023-24,17.8,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 -1,1,a-cure-i1,2023-24,3.8,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 -11.67567567567568,5,a-cure-i1,2023-24,8.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.7644970414201184,2.76,a-cure-i1,2023-24,14.6,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 -1,1,a-cure-i1,2023-24,4.8,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 -1.188470066518847,1.19,a-cure-i1,2023-24,6.7,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 -3.506607929515418,3.51,a-cure-i1,2023-24,19.9,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 -4.123711340206185,4.12,a-cure-i1,2023-24,25.0,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 -4.54054054054054,4.54,a-cure-i1,2023-24,27.299999999999997,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 -10.630385487528343,5,a-cure-i1,2023-24,58.599999999999994,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 -6.696035242290749,5,a-cure-i1,2023-24,38.0,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 -3.7862595419847325,3.79,a-cure-i1,2023-24,18.599999999999998,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 -6.357507660878447,5,a-cure-i1,2023-24,38.9,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 -3.6080084299262376,3.61,a-cure-i1,2023-24,21.4,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 -5.769152196118488,5,a-cure-i1,2023-24,35.3,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 -11.42354235423542,5,a-cure-i1,2023-24,64.89999999999999,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 -3.148936170212766,3.15,a-cure-i1,2023-24,18.5,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 -8.330726256983239,5,a-cure-i1,2023-24,46.599999999999994,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 -2.0571428571428574,2.06,a-cure-i1,2023-24,10.8,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 -17.222820236813778,5,a-cure-i1,2023-24,100.0,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 -16.0,5,a-cure-i1,2023-24,100.0,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 -2.762589928057554,2.76,a-cure-i1,2023-24,16.8,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 -2.750816104461371,2.75,a-cure-i1,2023-24,15.8,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 -1,1,a-cure-i1,2023-24,0.3,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 -9.1528384279476,5,a-cure-i1,2023-24,52.400000000000006,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 -2.1206896551724137,2.12,a-cure-i1,2023-24,12.299999999999999,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 -9.482722513089005,5,a-cure-i1,2023-24,56.6,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 -1.4545454545454548,1.45,a-cure-i1,2023-24,8.3,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 -8.43918191603875,5,a-cure-i1,2023-24,49.0,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 -6.1842696629213485,5,a-cure-i1,2023-24,34.4,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 -4.0251572327044025,4.03,a-cure-i1,2023-24,24.0,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 -9.786578657865787,5,a-cure-i1,2023-24,55.60000000000001,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 -6.912707182320441,5,a-cure-i1,2023-24,39.099999999999994,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 -2.081587651598677,2.08,a-cure-i1,2023-24,11.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -6.1000000000000005,5,a-cure-i1,2023-24,36.6,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 -6.2956521739130435,5,a-cure-i1,2023-24,36.2,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 -2.215384615384615,2.22,a-cure-i1,2023-24,11.7,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 -6.812227074235809,5,a-cure-i1,2023-24,39.0,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 -4.178960096735187,4.18,a-cure-i1,2023-24,21.599999999999998,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 -5.207708779443254,5,a-cure-i1,2023-24,30.4,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 -2.0970072239422084,2.1,a-cure-i1,2023-24,12.7,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 -5.33882595262616,5,a-cure-i1,2023-24,32.400000000000006,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 -7.498920086393087,5,a-cure-i1,2023-24,43.39999999999999,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 -4.394849785407724,4.39,a-cure-i1,2023-24,25.599999999999998,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 -3.9409761634506246,3.94,a-cure-i1,2023-24,21.7,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 -9.091299677765843,5,a-cure-i1,2023-24,52.9,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 -3.948051948051947,3.95,a-cure-i1,2023-24,22.799999999999997,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 -6.136263736263736,5,a-cure-i1,2023-24,34.9,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 -5.1240721102863205,5,a-cure-i1,2023-24,30.2,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 -1.1154285714285714,1.12,a-cure-i1,2023-24,6.1,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 -5.598377281947262,5,a-cure-i1,2023-24,34.5,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 -10.580121703853957,5,a-cure-i1,2023-24,65.2,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 -8.849474912485414,5,a-cure-i1,2023-24,47.4,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 -4.933196300102775,4.93,a-cure-i1,2023-24,30.0,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 -13.33013205282113,5,a-cure-i1,2023-24,69.4,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 -1.6034858387799564,1.6,a-cure-i1,2023-24,9.2,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 -12.016326530612243,5,a-cure-i1,2023-24,73.6,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 -5.6120789779326365,5,a-cure-i1,2023-24,30.2,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 -6.632402234636872,5,a-cure-i1,2023-24,37.1,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 -2.9344978165938866,2.93,a-cure-i1,2023-24,16.8,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 -6.142695356738393,5,a-cure-i1,2023-24,33.900000000000006,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.815703380588877,4.82,a-cure-i1,2023-24,27.6,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 -5.129770992366412,5,a-cure-i1,2023-24,29.4,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 -3.0095642933049955,3.01,a-cure-i1,2023-24,17.700000000000003,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 -2.898047722342733,2.9,a-cure-i1,2023-24,16.7,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 -1.4303534303534302,1.43,a-cure-i1,2023-24,8.6,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 -3.995854922279793,4.0,a-cure-i1,2023-24,24.1,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 -4.395402298850574,4.4,a-cure-i1,2023-24,23.9,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 -14.405036726128017,5,a-cure-i1,2023-24,85.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,4.6,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 -5.687500000000001,5,a-cure-i1,2023-24,9.1,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 -1,1,a-cure-i1,2023-24,2.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.6859504132231404,1.69,a-cure-i1,2023-24,5.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.144827586206896,3.14,a-cure-i1,2023-24,11.399999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.538324420677362,2.54,a-cure-i1,2023-24,8.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -5.116279069767441,5,a-cure-i1,2023-24,5.5,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 -3.9233716475095792,3.92,a-cure-i1,2023-24,6.3999999999999995,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 -4.384341637010676,4.38,a-cure-i1,2023-24,7.699999999999999,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 -3.877133105802048,3.88,a-cure-i1,2023-24,7.1,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 -1,1,a-cure-i1,2023-24,2.6,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 -1,1,a-cure-i1,2023-24,3.0,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 -2.690690690690691,2.69,a-cure-i1,2023-24,5.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.789473684210527,3.79,a-cure-i1,2023-24,6.3,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.6,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 -8.975609756097557,5,a-cure-i1,2023-24,9.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.6,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 -9.104704097116842,5,a-cure-i1,2023-24,37.5,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 -1.825311942959002,1.83,a-cure-i1,2023-24,6.4,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 -1,1,a-cure-i1,2023-24,4.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.88,2.88,a-cure-i1,2023-24,8.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.7,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 -2.6018691588785043,2.6,a-cure-i1,2023-24,8.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.4,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 -1,1,a-cure-i1,2023-24,1.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.1,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,3.9,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 -5.742738589211618,5,a-cure-i1,2023-24,34.6,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 -6.348178137651822,5,a-cure-i1,2023-24,39.2,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 -17.401459854014597,5,a-cure-i1,2023-24,14.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.958027282266527,5,a-cure-i1,2023-24,47.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -8.290155440414509,5,a-cure-i1,2023-24,10.0,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 -1,1,a-cure-i1,2023-24,2.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -17.03703703703704,5,a-cure-i1,2023-24,11.5,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 -4.404858299595141,4.4,a-cure-i1,2023-24,6.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -10.87920298879203,5,a-cure-i1,2023-24,54.6,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,3.5,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 -4.432637571157495,4.43,a-cure-i1,2023-24,14.6,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 -3.0172642762284196,3.02,a-cure-i1,2023-24,14.2,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 -1.9937694704049844,1.99,a-cure-i1,2023-24,8.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.9221556886227544,2.92,a-cure-i1,2023-24,12.2,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 -1.4189602446483178,1.42,a-cure-i1,2023-24,5.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -6.980392156862743,5,a-cure-i1,2023-24,8.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.0,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 -5.538461538461539,5,a-cure-i1,2023-24,12.600000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -6.259259259259259,5,a-cure-i1,2023-24,16.9,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 -1,1,a-cure-i1,2023-24,2.0,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 -4.8,4.8,a-cure-i1,2023-24,13.8,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 -1,1,a-cure-i1,2023-24,1.8,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 -1,1,a-cure-i1,2023-24,4.2,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 -1,1,a-cure-i1,2023-24,3.4,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 -4.578461538461539,4.58,a-cure-i1,2023-24,9.3,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 -13.556195965417865,5,a-cure-i1,2023-24,29.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.2,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 -8.196491228070176,5,a-cure-i1,2023-24,14.600000000000001,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 -1,1,a-cure-i1,2023-24,3.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.172413793103449,5,a-cure-i1,2023-24,15.600000000000001,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 -1,1,a-cure-i1,2023-24,2.6,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 -2.2809917355371905,2.28,a-cure-i1,2023-24,6.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -6.893280632411068,5,a-cure-i1,2023-24,10.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.447129909365559,4.45,a-cure-i1,2023-24,9.2,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 -1,1,a-cure-i1,2023-24,0.8,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 -3.2160804020100504,3.22,a-cure-i1,2023-24,8.0,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 -3.011764705882353,3.01,a-cure-i1,2023-24,6.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.2,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 -4.1626016260162615,4.16,a-cure-i1,2023-24,6.4,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 -7.430962343096232,5,a-cure-i1,2023-24,11.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.1530343007915564,2.15,a-cure-i1,2023-24,5.1,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 -1,1,a-cure-i1,2023-24,4.4,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 -2.766208251473478,2.77,a-cure-i1,2023-24,8.8,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 -1,1,a-cure-i1,2023-24,3.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.0213523131672595,2.02,a-cure-i1,2023-24,7.1,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 -1.9887005649717513,1.99,a-cure-i1,2023-24,6.6,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 -2.872651356993737,2.87,a-cure-i1,2023-24,8.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.0,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 -1,1,a-cure-i1,2023-24,1.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,1.3,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.4197952218430034,1.42,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,4.9,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.6090225563909777,3.61,a-cure-i1,2023-24,9.0,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 -2.545454545454545,2.55,a-cure-i1,2023-24,5.6,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 -8.74820143884892,5,a-cure-i1,2023-24,22.799999999999997,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 -2.5964912280701755,2.6,a-cure-i1,2023-24,7.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.324324324324324,4.32,a-cure-i1,2023-24,6.0,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 -3.3684210526315788,3.37,a-cure-i1,2023-24,7.6,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 -5.669291338582676,5,a-cure-i1,2023-24,9.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.0853994490358128,3.09,a-cure-i1,2023-24,7.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.2,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 -2.674351585014409,2.67,a-cure-i1,2023-24,5.8,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.303834808259587,3.3,a-cure-i1,2023-24,7.000000000000001,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 -1,1,a-cure-i1,2023-24,4.5,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -1,1,a-cure-i1,2023-24,3.9,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 -1,1,a-cure-i1,2023-24,0.0,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 -13.973799126637552,5,a-cure-i1,2023-24,20.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.2164948453608253,3.22,a-cure-i1,2023-24,7.800000000000001,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.9,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 -3.9808612440191378,3.98,a-cure-i1,2023-24,5.2,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 -1,1,a-cure-i1,2023-24,1.4,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 -1,1,a-cure-i1,2023-24,0.0,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 -9.904761904761902,5,a-cure-i1,2023-24,11.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -7.871657754010694,5,a-cure-i1,2023-24,9.2,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -16.59751037344399,5,a-cure-i1,2023-24,25.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.6,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 -2.7804878048780486,2.78,a-cure-i1,2023-24,5.699999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -3.7674418604651154,3.77,a-cure-i1,2023-24,8.1,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 -4.717325227963524,4.72,a-cure-i1,2023-24,9.7,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.338028169014083,4.34,a-cure-i1,2023-24,7.699999999999999,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,3.5,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 -1,1,a-cure-i1,2023-24,4.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -2.681318681318681,2.68,a-cure-i1,2023-24,6.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,4.8,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 -1,1,a-cure-i1,2023-24,2.8,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 -3.9943899018232822,3.99,a-cure-i1,2023-24,17.8,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 -2.405673758865248,2.41,a-cure-i1,2023-24,10.6,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 -1,1,a-cure-i1,2023-24,0.0,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 -1.6342042755344417,1.63,a-cure-i1,2023-24,8.6,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 -1,1,a-cure-i1,2023-24,2.1,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 -9.403019744483158,5,a-cure-i1,2023-24,50.599999999999994,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 -2.3225806451612905,2.32,a-cure-i1,2023-24,11.700000000000001,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 -3.8673796791443853,3.87,a-cure-i1,2023-24,22.6,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 -4.4958677685950414,4.5,a-cure-i1,2023-24,23.8,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 -1.6936488169364883,1.69,a-cure-i1,2023-24,8.5,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 -3.3333333333333335,3.33,a-cure-i1,2023-24,13.0,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 -1.5882352941176472,1.59,a-cure-i1,2023-24,8.1,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 -1,1,a-cure-i1,2023-24,0.0,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 -4.855842185128983,4.86,a-cure-i1,2023-24,20.0,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 -1,1,a-cure-i1,2023-24,2.3,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 -1.492772667542707,1.49,a-cure-i1,2023-24,7.1,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 -1.4983277591973245,1.5,a-cure-i1,2023-24,8.4,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 -1,1,a-cure-i1,2023-24,3.7,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 -1,1,a-cure-i1,2023-24,4.3,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 -3.1672354948805466,3.17,a-cure-i1,2023-24,11.600000000000001,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 -1,1,a-cure-i1,2023-24,3.6,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 -3.259720062208398,3.26,a-cure-i1,2023-24,13.1,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 -1.147023086269745,1.15,a-cure-i1,2023-24,5.9,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 -4.707438016528925,4.71,a-cure-i1,2023-24,17.799999999999997,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 -2.9642105263157896,2.96,a-cure-i1,2023-24,8.8,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 -1,1,a-cure-i1,2023-24,4.5,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 -3.734087694483734,3.73,a-cure-i1,2023-24,16.5,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 -3.884057971014493,3.88,a-cure-i1,2023-24,20.1,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 -3.4966887417218544,3.5,a-cure-i1,2023-24,16.5,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 -4.774869109947644,4.77,a-cure-i1,2023-24,22.8,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 -1.2201438848920865,1.22,a-cure-i1,2023-24,5.300000000000001,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 -2.744063324538259,2.74,a-cure-i1,2023-24,13.000000000000002,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 -2.56,2.56,a-cure-i1,2023-24,12.0,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 -1,1,a-cure-i1,2023-24,3.8,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 -1,1,a-cure-i1,2023-24,4.8,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 -2.607683352735739,2.61,a-cure-i1,2023-24,14.0,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 -1.888641425389755,1.89,a-cure-i1,2023-24,10.6,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 -2.1853658536585363,2.19,a-cure-i1,2023-24,11.2,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 -1.8631732168850073,1.86,a-cure-i1,2023-24,8.0,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 -5.738140417457305,5,a-cure-i1,2023-24,18.9,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 -3.091703056768559,3.09,a-cure-i1,2023-24,17.7,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 -1,1,a-cure-i1,2023-24,1.9,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 -3.5705669481302773,3.57,a-cure-i1,2023-24,18.5,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 -1.713490959666203,1.71,a-cure-i1,2023-24,7.7,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 -8.891191709844561,5,a-cure-i1,2023-24,42.900000000000006,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,0.0,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 -1,1,a-cure-i1,2023-24,2.7,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 -4.524590163934425,4.52,a-cure-i1,2022-23,6.9,24.400000000000006,Abington - Abington Middle School,00010405, 6.2, 2.0, 14.2, 75.6, 0.5, 0.2, 1.4, 50.2, 49.5, 0.3 -1,1,a-cure-i1,2022-23,3.7,28.200000000000003,Abington - Beaver Brook Elementary,00010020, 6.1, 2.5, 14.6, 71.8, 0.2, 0.2, 4.6, 48.6, 51.4, 0.0 -4.363636363636363,4.36,a-cure-i1,2022-23,6.6,24.200000000000003,Abington - Woodsdale Elementary School,00010015, 5.1, 3.0, 13.4, 75.8, 0.9, 0.0, 1.8, 52.2, 47.5, 0.3 -6.178723404255319,5,a-cure-i1,2022-23,36.3,94.0,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 64.9, 0.0, 26.6, 6.0, 0.0, 0.0, 2.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2022-23,4.2,50.4,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 3.2, 36.8, 6.8, 49.6, 0.2, 0.2, 3.1, 52.0, 47.3, 0.7 -1,1,a-cure-i1,2022-23,3.6,46.4,Acton-Boxborough - Blanchard Memorial School,06000005, 3.2, 27.7, 9.5, 53.6, 0.2, 0.0, 5.9, 50.6, 49.2, 0.2 -1,1,a-cure-i1,2022-23,0.5,36.3,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 2.1, 15.9, 10.3, 63.7, 0.0, 0.0, 8.0, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,60.7,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 5.6, 39.3, 7.5, 39.3, 0.0, 0.0, 8.4, 61.7, 38.3, 0.0 -2.7891891891891887,2.79,a-cure-i1,2022-23,12.899999999999999,74.0,Acton-Boxborough - Luther Conant School,06000030, 2.9, 58.1, 7.8, 26.0, 0.0, 0.0, 5.1, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,4.2,29.599999999999994,Acton-Boxborough - McCarthy-Towne School,06000015, 2.9, 9.9, 10.8, 70.4, 0.0, 0.0, 6.1, 51.1, 48.7, 0.2 -1,1,a-cure-i1,2022-23,4.3,34.099999999999994,Acton-Boxborough - Merriam School,06000010, 2.8, 16.7, 6.7, 65.9, 0.0, 0.0, 7.9, 49.2, 50.3, 0.5 -1,1,a-cure-i1,2022-23,4.1,72.0,Acton-Boxborough - Paul P Gates Elementary School,06000025, 1.1, 56.3, 6.9, 28.0, 0.0, 0.0, 7.7, 50.0, 50.0, 0.0 -2.862823061630219,2.86,a-cure-i1,2022-23,9.0,50.3,Acton-Boxborough - Raymond J Grey Junior High,06000405, 3.3, 35.9, 7.4, 49.7, 0.2, 0.1, 3.4, 52.7, 47.0, 0.2 -1,1,a-cure-i1,2022-23,2.9,12.400000000000006,Acushnet - Acushnet Elementary School,00030025, 1.4, 0.9, 6.1, 87.6, 0.7, 0.2, 3.1, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.799999999999997,Acushnet - Albert F Ford Middle School,00030305, 1.2, 0.5, 4.7, 89.2, 0.5, 0.0, 3.9, 48.9, 50.9, 0.2 -4.951140065146579,4.95,a-cure-i1,2022-23,9.5,30.700000000000003,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 2.8, 11.9, 8.5, 69.3, 0.0, 0.0, 7.6, 54.2, 45.0, 0.7 -1,1,a-cure-i1,2022-23,0.0,29.099999999999994,Agawam - Agawam Early Childhood Center,00050003, 0.7, 7.4, 18.9, 70.9, 0.0, 0.0, 2.0, 62.2, 37.8, 0.0 -1,1,a-cure-i1,2022-23,1.6,18.599999999999994,Agawam - Agawam High,00050505, 2.5, 4.2, 9.1, 81.4, 0.0, 0.0, 2.9, 51.7, 47.5, 0.8 -1,1,a-cure-i1,2022-23,2.1,22.400000000000006,Agawam - Agawam Junior High,00050405, 2.9, 3.1, 14.1, 77.6, 0.0, 0.0, 2.3, 56.0, 43.8, 0.2 -1,1,a-cure-i1,2022-23,0.0,17.200000000000003,Agawam - Benjamin J Phelps,00050020, 2.3, 3.6, 8.1, 82.8, 0.3, 0.0, 2.9, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.200000000000003,Agawam - Clifford M Granger,00050010, 0.9, 3.9, 16.7, 75.8, 0.6, 0.0, 2.1, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.099999999999994,Agawam - James Clark School,00050030, 1.6, 4.9, 12.1, 77.9, 0.0, 0.0, 3.6, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.700000000000003,Agawam - Roberta G. Doering School,00050303, 2.9, 2.7, 10.0, 81.3, 0.2, 0.2, 2.7, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.5,Agawam - Robinson Park,00050025, 2.9, 2.5, 14.4, 75.5, 0.0, 0.0, 4.7, 46.9, 53.1, 0.0 -3.6491228070175437,3.65,a-cure-i1,2022-23,18.2,79.8,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 14.2, 0.5, 60.3, 20.2, 0.5, 0.0, 4.3, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.0,Amesbury - Amesbury Elementary,00070005, 2.1, 0.0, 8.2, 86.0, 0.0, 0.0, 3.7, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,4.4,18.5,Amesbury - Amesbury High,00070505, 1.5, 1.5, 10.6, 81.5, 0.0, 0.0, 4.9, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.799999999999997,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 8.9, 82.2, 0.0, 0.0, 8.9, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2022-23,2.1,18.799999999999997,Amesbury - Amesbury Middle,00070013, 1.7, 1.5, 11.1, 81.2, 0.2, 0.0, 4.3, 55.7, 44.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.0,Amesbury - Charles C Cashman Elementary,00070010, 1.9, 0.5, 15.7, 78.0, 0.3, 0.3, 3.3, 49.6, 50.4, 0.0 -2.0326678765880217,2.03,a-cure-i1,2022-23,7.0,55.1,Amherst - Crocker Farm Elementary,00080009, 12.8, 11.6, 19.1, 44.9, 0.3, 0.3, 11.0, 46.4, 52.2, 1.4 -9.199294532627865,5,a-cure-i1,2022-23,32.6,56.7,Amherst - Fort River Elementary,00080020, 6.3, 10.3, 32.5, 43.3, 0.3, 0.0, 7.4, 54.6, 44.9, 0.5 -11.74368932038835,5,a-cure-i1,2022-23,37.800000000000004,51.5,Amherst - Wildwood Elementary,00080050, 15.3, 10.7, 18.4, 48.5, 0.6, 0.0, 6.4, 46.6, 52.8, 0.6 -6.321428571428573,5,a-cure-i1,2022-23,17.700000000000003,44.8,Amherst-Pelham - Amherst Regional High,06050505, 7.9, 9.1, 19.1, 55.2, 0.0, 0.0, 8.6, 51.3, 47.2, 1.5 -14.603491271820445,5,a-cure-i1,2022-23,36.599999999999994,40.1,Amherst-Pelham - Amherst Regional Middle School,06050405, 7.0, 11.0, 15.9, 59.9, 0.0, 0.3, 5.9, 55.4, 43.3, 1.3 -5.711048158640227,5,a-cure-i1,2022-23,12.6,35.3,Andover - Andover High,00090505, 2.9, 20.1, 8.3, 64.7, 0.4, 0.1, 3.5, 48.8, 51.0, 0.2 -1,1,a-cure-i1,2022-23,2.8,29.5,Andover - Andover West Middle,00090310, 1.7, 15.6, 9.8, 70.5, 0.2, 0.0, 2.1, 47.9, 51.5, 0.6 -1,1,a-cure-i1,2022-23,0.0,23.599999999999994,Andover - Bancroft Elementary,00090003, 1.1, 8.5, 7.9, 76.4, 0.0, 0.0, 6.1, 48.8, 51.0, 0.2 -8.0,5,a-cure-i1,2022-23,11.5,23.0,Andover - Doherty Middle,00090305, 0.9, 10.6, 7.6, 77.0, 0.0, 0.0, 3.9, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,39.0,Andover - Henry C Sanborn Elementary,00090010, 3.0, 19.3, 10.0, 61.0, 0.3, 0.0, 6.3, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2022-23,4.2,50.3,Andover - High Plain Elementary,00090004, 3.2, 26.4, 14.2, 49.7, 0.2, 0.2, 6.1, 50.1, 49.9, 0.0 -3.629764065335753,3.63,a-cure-i1,2022-23,12.5,55.1,Andover - Shawsheen School,00090005, 7.1, 27.6, 16.3, 44.9, 0.0, 0.0, 4.1, 62.2, 37.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,30.700000000000003,Andover - South Elementary,00090020, 1.1, 18.3, 6.2, 69.3, 0.0, 0.0, 5.1, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2022-23,1.8,35.0,Andover - West Elementary,00090025, 3.8, 16.4, 8.8, 65.0, 0.2, 0.0, 5.8, 53.5, 46.5, 0.0 -2.2902584493041753,2.29,a-cure-i1,2022-23,7.2,50.3,Andover - Wood Hill Middle School,00090350, 3.3, 31.1, 10.7, 49.7, 0.3, 0.0, 5.0, 54.1, 45.9, 0.0 -4.2494969818913475,4.25,a-cure-i1,2022-23,13.2,49.7,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 14.6, 2.5, 25.7, 50.3, 0.5, 0.2, 6.1, 54.8, 45.2, 0.0 -4.941176470588235,4.94,a-cure-i1,2022-23,8.4,27.200000000000003,Arlington - Arlington High,00100505, 3.3, 10.2, 7.7, 72.8, 0.0, 0.1, 5.9, 47.7, 50.4, 1.9 -3.869281045751635,3.87,a-cure-i1,2022-23,7.4,30.599999999999994,Arlington - Brackett,00100010, 0.9, 9.6, 5.4, 69.4, 0.0, 0.0, 14.6, 53.6, 46.4, 0.0 -5.525525525525526,5,a-cure-i1,2022-23,11.5,33.3,Arlington - Cyrus E Dallin,00100025, 1.4, 12.8, 7.2, 66.7, 0.0, 0.0, 11.8, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,2.0,30.900000000000006,Arlington - Gibbs School,00100305, 2.7, 16.8, 8.6, 69.1, 0.0, 0.0, 2.7, 53.0, 46.8, 0.2 -1,1,a-cure-i1,2022-23,4.2,35.3,Arlington - Hardy,00100030, 3.3, 14.1, 6.3, 64.7, 0.0, 0.0, 11.6, 49.1, 50.6, 0.3 -1,1,a-cure-i1,2022-23,4.3,34.2,Arlington - John A Bishop,00100005, 2.7, 13.7, 5.5, 65.8, 0.0, 0.0, 12.2, 51.4, 48.6, 0.0 -3.6324324324324326,3.63,a-cure-i1,2022-23,8.4,37.0,Arlington - M Norcross Stratton,00100055, 3.2, 16.8, 6.2, 63.0, 0.0, 0.0, 10.8, 49.4, 50.3, 0.2 -1,1,a-cure-i1,2022-23,0.0,44.3,Arlington - Menotomy Preschool,00100038, 1.1, 14.8, 8.0, 55.7, 0.0, 1.1, 19.3, 61.4, 38.6, 0.0 -5.952218430034129,5,a-cure-i1,2022-23,10.899999999999999,29.299999999999997,Arlington - Ottoson Middle,00100410, 4.0, 10.8, 7.0, 70.7, 0.2, 0.3, 6.8, 50.4, 49.0, 0.5 -6.136986301369863,5,a-cure-i1,2022-23,14.0,36.5,Arlington - Peirce,00100045, 5.2, 15.4, 9.3, 63.5, 0.0, 0.0, 6.6, 53.3, 46.2, 0.5 -1,1,a-cure-i1,2022-23,0.0,36.9,Arlington - Thompson,00100050, 5.4, 12.7, 8.8, 63.1, 0.0, 0.0, 10.0, 46.2, 53.4, 0.4 -7.630769230769231,5,a-cure-i1,2022-23,6.2,13.0,Ashburnham-Westminster - Briggs Elementary,06100025, 1.9, 1.0, 6.1, 87.0, 0.0, 0.0, 4.0, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.099999999999994,Ashburnham-Westminster - Meetinghouse School,06100010, 2.6, 0.5, 4.2, 89.9, 0.0, 0.0, 2.6, 50.8, 49.2, 0.0 -6.528,5,a-cure-i1,2022-23,5.1,12.5,Ashburnham-Westminster - Oakmont Regional High School,06100505, 1.4, 1.2, 6.7, 87.5, 0.2, 0.0, 3.0, 52.0, 46.4, 1.7 -1,1,a-cure-i1,2022-23,2.9,13.099999999999994,Ashburnham-Westminster - Overlook Middle School,06100305, 1.6, 1.3, 7.8, 86.9, 0.0, 0.0, 2.4, 50.5, 48.6, 0.9 -1,1,a-cure-i1,2022-23,0.0,10.799999999999997,Ashburnham-Westminster - Westminster Elementary,06100005, 2.3, 0.5, 4.9, 89.2, 0.0, 0.0, 3.1, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2022-23,1.7,36.9,Ashland - Ashland High,00140505, 2.3, 13.6, 17.9, 63.1, 0.7, 0.0, 2.5, 50.0, 49.9, 0.1 -1,1,a-cure-i1,2022-23,4.2,36.4,Ashland - Ashland Middle,00140405, 2.8, 13.0, 16.7, 63.6, 0.4, 0.1, 3.2, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,4.6,44.4,Ashland - David Mindess,00140015, 3.7, 19.4, 17.5, 55.6, 0.2, 0.2, 3.4, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2022-23,2.2,48.5,Ashland - Henry E Warren Elementary,00140010, 3.3, 21.6, 19.6, 51.5, 0.3, 0.0, 3.7, 51.3, 48.5, 0.2 -1,1,a-cure-i1,2022-23,0.0,59.8,Ashland - William Pittaway Elementary,00140005, 4.9, 36.6, 9.8, 40.2, 0.0, 0.0, 8.5, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,4.5,30.400000000000006,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 2.1, 0.2, 24.7, 69.6, 0.2, 0.0, 3.2, 55.4, 43.6, 1.0 -1,1,a-cure-i1,2022-23,3.3,21.5,Athol-Royalston - Athol Community Elementary School,06150020, 2.4, 1.2, 13.6, 78.5, 0.0, 0.0, 4.2, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,3.8,27.700000000000003,Athol-Royalston - Athol High,06150505, 3.7, 2.0, 19.3, 72.3, 0.2, 0.0, 2.5, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.400000000000006,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.9, 1.6, 12.1, 81.6, 0.0, 0.0, 3.7, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.099999999999994,Athol-Royalston - Royalston Community School,06150050, 0.6, 0.6, 7.0, 89.9, 0.0, 0.0, 1.9, 57.6, 42.4, 0.0 -3.3684210526315788,3.37,a-cure-i1,2022-23,6.799999999999999,32.3,Atlantis Charter (District) - Atlantis Charter School,04910550, 6.3, 2.0, 17.8, 67.7, 0.0, 0.1, 6.0, 47.0, 52.8, 0.2 -2.311614730878187,2.31,a-cure-i1,2022-23,5.1,35.3,Attleboro - A. Irvin Studley Elementary School,00160001, 7.1, 3.7, 17.1, 64.7, 0.0, 0.3, 7.1, 51.9, 47.9, 0.3 -10.118380062305297,5,a-cure-i1,2022-23,20.299999999999997,32.099999999999994,Attleboro - Attleboro Community Academy,00160515, 8.9, 1.8, 16.1, 67.9, 0.0, 0.0, 5.4, 53.6, 44.6, 1.8 -5.8652291105121295,5,a-cure-i1,2022-23,13.600000000000001,37.1,Attleboro - Attleboro High,00160505, 9.1, 4.8, 17.1, 62.9, 0.3, 0.0, 5.9, 54.0, 45.6, 0.5 -1,1,a-cure-i1,2022-23,0.0,30.0,Attleboro - Attleboro Virtual Academy,00160705, 5.0, 5.0, 15.0, 70.0, 0.0, 0.0, 5.0, 80.0, 20.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,38.7,Attleboro - Cyril K. Brennan Middle School,00160315, 8.5, 2.7, 20.1, 61.3, 0.5, 0.0, 6.9, 49.6, 50.2, 0.2 -1,1,a-cure-i1,2022-23,0.0,33.7,Attleboro - Early Learning Center,00160008, 8.4, 5.8, 15.8, 66.3, 0.5, 0.0, 3.2, 60.0, 40.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,36.7,Attleboro - Hill-Roberts Elementary School,00160045, 7.3, 7.3, 15.6, 63.3, 0.0, 0.0, 6.4, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2022-23,4.3,41.6,Attleboro - Hyman Fine Elementary School,00160040, 8.9, 3.3, 19.6, 58.4, 0.7, 0.0, 9.1, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2022-23,3.5,39.4,Attleboro - Peter Thacher Elementary School,00160050, 11.3, 2.9, 18.6, 60.6, 0.2, 0.0, 6.3, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,33.2,Attleboro - Robert J. Coelho Middle School,00160305, 8.9, 5.1, 12.2, 66.8, 0.3, 0.2, 6.5, 55.3, 44.5, 0.2 -1,1,a-cure-i1,2022-23,0.0,37.4,Attleboro - Thomas Willett Elementary School,00160035, 9.9, 3.0, 17.7, 62.6, 0.5, 0.3, 5.9, 49.5, 50.5, 0.0 -2.2097186700767266,2.21,a-cure-i1,2022-23,5.4,39.1,Attleboro - Wamsutta Middle School,00160320, 7.3, 5.9, 16.8, 60.9, 0.0, 0.0, 9.0, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2022-23,4.9,23.0,Auburn - Auburn Middle,00170305, 3.1, 5.7, 11.5, 77.0, 0.3, 0.0, 2.5, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2022-23,1.7,24.400000000000006,Auburn - Auburn Senior High,00170505, 4.3, 5.2, 11.3, 75.6, 0.1, 0.1, 3.3, 49.8, 49.7, 0.5 -1,1,a-cure-i1,2022-23,0.0,24.200000000000003,Auburn - Bryn Mawr,00170010, 3.0, 4.1, 14.1, 75.8, 0.7, 0.0, 2.2, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.299999999999997,Auburn - Pakachoag School,00170025, 2.9, 4.1, 10.3, 77.7, 0.4, 0.0, 4.5, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.900000000000006,Auburn - Swanson Road Intermediate School,00170030, 2.0, 3.2, 12.3, 79.1, 0.2, 0.2, 3.1, 51.4, 48.6, 0.0 -3.160493827160494,3.16,a-cure-i1,2022-23,12.8,64.8,Avon - Avon Middle High School,00180510, 39.9, 4.4, 14.8, 35.2, 0.9, 0.0, 4.7, 50.9, 49.1, 0.0 -2.0273972602739727,2.03,a-cure-i1,2022-23,7.4,58.4,Avon - Ralph D Butler,00180010, 33.9, 3.1, 13.8, 41.6, 0.0, 0.0, 7.7, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,3.6,26.599999999999994,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 5.3, 3.3, 14.2, 73.4, 1.0, 0.3, 2.5, 52.3, 47.2, 0.5 -7.935483870967742,5,a-cure-i1,2022-23,12.299999999999999,24.799999999999997,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 3.8, 2.7, 13.1, 75.2, 0.5, 0.5, 4.1, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,4.5,25.099999999999994,Ayer Shirley School District - Lura A. White Elementary School,06160001, 3.8, 3.2, 11.7, 74.9, 1.2, 0.0, 5.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,33.099999999999994,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 7.5, 6.0, 12.0, 66.9, 0.6, 0.0, 7.0, 52.6, 47.4, 0.0 -2.0967238689547583,2.1,a-cure-i1,2022-23,8.4,64.1,Barnstable - Barnstable Community Innovation School,00200012, 10.0, 2.8, 43.1, 35.9, 1.0, 0.0, 7.2, 51.4, 48.6, 0.0 -2.1476510067114094,2.15,a-cure-i1,2022-23,6.000000000000001,44.7,Barnstable - Barnstable High,00200505, 9.8, 2.0, 25.9, 55.3, 0.5, 0.2, 6.3, 50.3, 49.3, 0.5 -1,1,a-cure-i1,2022-23,4.8,49.0,Barnstable - Barnstable Intermediate School,00200315, 9.4, 3.2, 30.3, 51.0, 0.2, 0.0, 6.0, 51.8, 48.1, 0.2 -2.122105263157895,2.12,a-cure-i1,2022-23,6.300000000000001,47.5,Barnstable - Barnstable United Elementary School,00200050, 8.6, 2.4, 27.9, 52.5, 0.1, 0.0, 8.4, 50.2, 49.5, 0.3 -2.8148148148148144,2.81,a-cure-i1,2022-23,5.7,32.400000000000006,Barnstable - Centerville Elementary,00200010, 5.3, 2.0, 13.4, 67.6, 0.0, 0.0, 11.7, 53.8, 46.2, 0.0 -3.1657754010695185,3.17,a-cure-i1,2022-23,11.1,56.1,Barnstable - Enoch Cobb Early Learning Center,00200001, 12.1, 4.5, 28.0, 43.9, 0.0, 0.0, 11.5, 59.9, 40.1, 0.0 -1.6886543535620053,1.69,a-cure-i1,2022-23,8.0,75.8,Barnstable - Hyannis West Elementary,00200025, 14.2, 0.6, 49.7, 24.2, 0.3, 0.0, 10.9, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,34.099999999999994,Barnstable - West Barnstable Elementary,00200005, 4.2, 2.3, 17.8, 65.9, 0.0, 0.0, 9.8, 59.1, 40.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.700000000000003,Barnstable - West Villages Elementary School,00200045, 3.7, 1.2, 12.5, 70.3, 0.0, 0.0, 12.2, 53.1, 46.9, 0.0 -8.34417628541448,5,a-cure-i1,2022-23,49.7,95.3,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 28.9, 0.5, 64.4, 4.7, 0.0, 0.7, 0.7, 55.5, 44.5, 0.0 -2.5,2.5,a-cure-i1,2022-23,6.0,38.4,Bedford - Bedford High,00230505, 6.3, 17.7, 10.2, 61.6, 0.0, 0.0, 4.2, 51.1, 48.0, 0.8 -1,1,a-cure-i1,2022-23,0.5,38.5,Bedford - John Glenn Middle,00230305, 7.5, 19.3, 6.4, 61.5, 0.0, 0.0, 5.4, 49.6, 50.4, 0.0 -2.532981530343008,2.53,a-cure-i1,2022-23,6.0,37.9,Bedford - Lt Eleazer Davis,00230010, 4.5, 21.6, 5.6, 62.1, 0.0, 0.0, 6.2, 53.5, 46.5, 0.0 -3.2653061224489797,3.27,a-cure-i1,2022-23,9.0,44.1,Bedford - Lt Job Lane School,00230012, 6.0, 23.7, 5.8, 55.9, 0.0, 0.0, 8.7, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,4.1,12.400000000000006,Belchertown - Belchertown High,00240505, 1.9, 1.7, 5.0, 87.6, 0.3, 0.5, 3.0, 48.7, 50.1, 1.3 -1,1,a-cure-i1,2022-23,0.0,13.900000000000006,Belchertown - Chestnut Hill Community School,00240006, 0.6, 1.2, 7.1, 86.1, 0.0, 0.0, 5.0, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.599999999999994,Belchertown - Cold Spring,00240005, 1.5, 2.6, 8.8, 79.4, 1.0, 0.0, 6.7, 53.1, 46.9, 0.0 -6.282208588957056,5,a-cure-i1,2022-23,6.4,16.299999999999997,Belchertown - Jabish Middle School,00240025, 1.8, 1.2, 8.3, 83.7, 0.6, 0.0, 4.4, 53.8, 45.9, 0.3 -1,1,a-cure-i1,2022-23,0.0,17.299999999999997,Belchertown - Swift River Elementary,00240018, 0.4, 1.5, 11.4, 82.7, 0.0, 0.0, 4.0, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.0,Bellingham - Bellingham Early Childhood Center,00250003, 2.0, 6.0, 15.0, 69.0, 0.0, 0.0, 8.0, 49.0, 50.0, 1.0 -4.371134020618555,4.37,a-cure-i1,2022-23,5.3,19.400000000000006,Bellingham - Bellingham High School,00250505, 2.7, 3.5, 10.3, 80.6, 0.4, 0.0, 2.5, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.599999999999994,Bellingham - Bellingham Memorial School,00250315, 3.1, 2.0, 10.2, 81.4, 0.0, 1.0, 2.2, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.299999999999997,Bellingham - Joseph F DiPietro Elementary School,00250020, 2.3, 3.3, 13.0, 76.7, 0.3, 0.0, 4.3, 49.3, 50.7, 0.0 -21.6822429906542,5,a-cure-i1,2022-23,14.5,10.700000000000003,Bellingham - Keough Memorial Academy,00250510, 0.0, 3.6, 7.1, 89.3, 0.0, 0.0, 0.0, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.900000000000006,Bellingham - Stall Brook,00250025, 1.6, 1.2, 18.8, 75.1, 0.0, 0.0, 3.3, 51.4, 48.6, 0.0 -6.067532467532468,5,a-cure-i1,2022-23,14.600000000000001,38.5,Belmont - Belmont High,00260505, 4.0, 21.6, 5.9, 61.5, 0.1, 0.1, 6.7, 50.0, 49.7, 0.3 -4.0452830188679245,4.05,a-cure-i1,2022-23,13.4,53.0,Belmont - Daniel Butler,00260015, 3.0, 30.5, 10.8, 47.0, 0.0, 0.0, 8.7, 52.7, 46.7, 0.6 -3.9669421487603307,3.97,a-cure-i1,2022-23,9.0,36.3,Belmont - Mary Lee Burbank,00260010, 3.6, 22.9, 3.3, 63.7, 0.0, 0.0, 6.5, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,1.0,37.7,Belmont - Roger E Wellington,00260035, 5.9, 19.1, 3.3, 62.3, 0.0, 0.0, 9.3, 49.7, 50.1, 0.2 -1,1,a-cure-i1,2022-23,3.6,47.0,Belmont - Winn Brook,00260005, 2.3, 31.3, 4.4, 53.0, 0.0, 0.0, 9.0, 44.9, 55.1, 0.0 -7.708333333333334,5,a-cure-i1,2022-23,18.5,38.4,Belmont - Winthrop L Chenery Middle,00260305, 3.6, 21.2, 4.0, 61.6, 0.1, 0.1, 9.3, 50.1, 49.2, 0.7 -10.29393627954779,5,a-cure-i1,2022-23,62.599999999999994,97.3,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 81.6, 1.8, 8.4, 2.7, 0.0, 0.0, 5.4, 47.3, 52.4, 0.3 -1,1,a-cure-i1,2022-23,4.0,37.2,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 3.1, 22.7, 4.6, 62.8, 1.2, 1.2, 4.4, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2022-23,3.1,10.200000000000003,Berkley - Berkley Community School,00270010, 1.3, 0.4, 3.8, 89.8, 0.2, 0.2, 4.4, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.799999999999997,Berkley - Berkley Middle School,00270305, 0.8, 0.5, 2.4, 92.2, 0.0, 0.0, 4.0, 48.5, 51.5, 0.0 -4.858895705521473,4.86,a-cure-i1,2022-23,9.899999999999999,32.599999999999994,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 10.1, 1.3, 15.8, 67.4, 0.0, 0.3, 5.1, 52.2, 44.6, 3.2 -7.009523809523809,5,a-cure-i1,2022-23,9.2,21.0,Berkshire Hills - Monument Mt Regional High,06180505, 1.5, 2.3, 13.3, 79.0, 0.0, 0.2, 3.6, 53.2, 46.6, 0.2 -3.1351351351351355,3.14,a-cure-i1,2022-23,5.8,29.599999999999994,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 2.7, 3.0, 14.8, 70.4, 0.0, 0.0, 9.1, 47.6, 52.2, 0.3 -1,1,a-cure-i1,2022-23,2.4,23.099999999999994,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 1.8, 2.2, 13.2, 76.9, 0.0, 0.0, 5.8, 50.2, 48.6, 1.2 -1,1,a-cure-i1,2022-23,0.0,14.5,Berlin-Boylston - Berlin Memorial School,06200005, 0.5, 0.9, 8.2, 85.5, 1.4, 0.0, 3.6, 50.5, 49.1, 0.5 -4.341708542713567,4.34,a-cure-i1,2022-23,5.4,19.900000000000006,Berlin-Boylston - Boylston Elementary School,06200010, 1.5, 4.7, 9.2, 80.1, 0.0, 0.0, 4.5, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2022-23,2.2,21.0,Berlin-Boylston - Tahanto Regional High,06200505, 1.6, 5.2, 8.5, 79.0, 0.2, 0.2, 5.2, 46.8, 52.4, 0.8 -1,1,a-cure-i1,2022-23,4.8,17.599999999999994,Beverly - Ayers/Ryal Side School,00300055, 2.3, 1.3, 10.9, 82.4, 0.0, 0.0, 3.1, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2022-23,3.6,26.400000000000006,Beverly - Beverly High,00300505, 3.6, 2.6, 17.1, 73.6, 0.0, 0.1, 3.1, 49.8, 49.8, 0.4 -1,1,a-cure-i1,2022-23,4.1,28.0,Beverly - Beverly Middle School,00300305, 3.9, 1.8, 17.4, 72.0, 0.1, 0.0, 4.9, 51.2, 48.4, 0.4 -1,1,a-cure-i1,2022-23,0.0,28.099999999999994,Beverly - Centerville Elementary,00300010, 4.7, 1.9, 14.8, 71.9, 0.0, 0.0, 6.6, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.200000000000003,Beverly - Cove Elementary,00300015, 3.3, 1.9, 17.4, 71.8, 0.2, 0.0, 5.3, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.599999999999994,Beverly - Hannah Elementary,00300033, 3.0, 3.0, 11.5, 76.4, 0.3, 0.0, 5.8, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.799999999999997,Beverly - McKeown School,00300002, 4.0, 5.6, 12.0, 75.2, 0.0, 0.0, 3.2, 64.8, 35.2, 0.0 -1,1,a-cure-i1,2022-23,4.2,20.900000000000006,Beverly - North Beverly Elementary,00300040, 2.6, 1.7, 12.8, 79.1, 0.0, 0.0, 3.8, 58.0, 42.0, 0.0 -1,1,a-cure-i1,2022-23,4.2,29.700000000000003,Billerica - Billerica Memorial High School,00310505, 6.6, 10.4, 9.1, 70.3, 0.2, 0.2, 3.2, 50.2, 49.7, 0.1 -1,1,a-cure-i1,2022-23,0.0,31.099999999999994,Billerica - Frederick J Dutile,00310007, 6.8, 13.2, 7.5, 68.9, 0.0, 0.0, 3.6, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.799999999999997,Billerica - Hajjar Elementary,00310026, 5.3, 7.7, 12.0, 71.2, 0.3, 0.0, 3.5, 46.4, 53.3, 0.3 -1,1,a-cure-i1,2022-23,0.0,14.5,Billerica - John F Kennedy,00310012, 1.3, 5.3, 4.9, 85.5, 0.3, 0.0, 2.6, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.400000000000006,Billerica - Locke Middle,00310310, 3.3, 10.6, 8.0, 73.6, 0.0, 0.0, 4.6, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,4.6,30.5,Billerica - Marshall Middle School,00310305, 7.1, 8.1, 11.4, 69.5, 0.3, 0.0, 3.5, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,35.599999999999994,Billerica - Parker,00310015, 8.9, 15.5, 6.8, 64.4, 1.2, 0.0, 3.3, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.599999999999994,Billerica - Thomas Ditson,00310005, 2.5, 11.8, 10.4, 70.4, 0.5, 0.0, 4.3, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,2.1,16.299999999999997,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 2.0, 1.8, 9.9, 83.7, 0.0, 0.1, 2.5, 55.0, 44.3, 0.7 -1,1,a-cure-i1,2022-23,0.0,20.700000000000003,Blackstone-Millville - A F Maloney,06220015, 1.6, 0.4, 13.7, 79.3, 0.0, 0.0, 5.1, 52.3, 47.7, 0.0 -8.292682926829265,5,a-cure-i1,2022-23,8.5,16.400000000000006,Blackstone-Millville - Blackstone Millville RHS,06220505, 2.3, 1.5, 8.1, 83.6, 0.0, 0.0, 4.5, 51.0, 48.2, 0.8 -7.7546012269938664,5,a-cure-i1,2022-23,7.9,16.299999999999997,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.5, 0.3, 9.9, 83.7, 0.0, 0.0, 4.7, 54.8, 44.6, 0.6 -1,1,a-cure-i1,2022-23,0.0,19.299999999999997,Blackstone-Millville - John F Kennedy Elementary,06220008, 2.8, 1.8, 10.1, 80.7, 0.0, 0.0, 4.6, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2022-23,4.1,12.400000000000006,Blackstone-Millville - Millville Elementary,06220010, 2.7, 0.8, 6.0, 87.6, 0.0, 0.0, 2.7, 49.5, 50.5, 0.0 -2.715746421267894,2.72,a-cure-i1,2022-23,8.3,48.9,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 19.6, 2.5, 18.4, 51.1, 0.9, 0.0, 7.6, 51.8, 48.2, 0.0 -4.646415552855407,4.65,a-cure-i1,2022-23,23.9,82.3,Boston - Adams Elementary School,00350302, 4.8, 1.6, 73.9, 17.7, 0.0, 0.0, 2.0, 52.6, 47.4, 0.0 -12.01799100449775,5,a-cure-i1,2022-23,50.099999999999994,66.7,Boston - Alighieri Dante Montessori School,00350066, 1.9, 3.7, 52.8, 33.3, 0.0, 0.0, 8.3, 55.6, 44.4, 0.0 -10.289281997918836,5,a-cure-i1,2022-23,61.800000000000004,96.1,Boston - Another Course To College,00350541, 42.6, 0.0, 50.9, 3.9, 0.0, 0.0, 2.6, 60.4, 39.1, 0.4 -11.157333333333332,5,a-cure-i1,2022-23,52.3,75.0,Boston - Baldwin Early Learning Pilot Academy,00350003, 10.5, 25.0, 31.4, 25.0, 0.0, 0.0, 8.1, 48.8, 51.2, 0.0 -6.306188925081434,5,a-cure-i1,2022-23,24.200000000000003,61.4,Boston - Bates Elementary School,00350278, 23.5, 2.2, 30.3, 38.6, 0.4, 0.0, 5.1, 57.0, 43.0, 0.0 -3.695906432748538,3.7,a-cure-i1,2022-23,15.8,68.4,Boston - Beethoven Elementary School,00350021, 21.7, 6.5, 34.2, 31.6, 0.0, 0.0, 6.1, 53.6, 46.4, 0.0 -6.072992700729927,5,a-cure-i1,2022-23,36.4,95.9,Boston - Blackstone Elementary School,00350390, 27.4, 2.0, 64.6, 4.1, 0.0, 0.0, 1.9, 52.5, 47.5, 0.0 -13.522051282051281,5,a-cure-i1,2022-23,82.39999999999999,97.5,Boston - Boston Adult Tech Academy,00350548, 33.9, 2.5, 59.5, 2.5, 0.8, 0.0, 0.8, 57.0, 43.0, 0.0 -9.614112458654905,5,a-cure-i1,2022-23,54.49999999999999,90.7,Boston - Boston Arts Academy,00350546, 37.0, 1.2, 48.8, 9.3, 0.0, 0.0, 3.6, 29.1, 69.8, 1.0 -5.43756786102063,5,a-cure-i1,2022-23,31.3,92.1,Boston - Boston Collaborative High School,00350755, 35.4, 2.8, 50.6, 7.9, 1.1, 0.0, 2.2, 48.9, 50.6, 0.6 -7.634095634095635,5,a-cure-i1,2022-23,45.900000000000006,96.2,Boston - Boston Community Leadership Academy,00350558, 31.9, 4.2, 57.7, 3.8, 0.2, 0.0, 2.2, 49.0, 50.3, 0.7 -7.584097859327217,5,a-cure-i1,2022-23,46.5,98.1,Boston - Boston International High School & Newcomers Academy,00350507, 28.4, 6.1, 62.3, 1.9, 0.4, 0.4, 0.4, 63.3, 36.7, 0.0 -10.745945945945946,5,a-cure-i1,2022-23,49.7,74.0,Boston - Boston Latin Academy,00350545, 24.6, 17.1, 27.7, 26.0, 0.1, 0.2, 4.2, 42.7, 57.1, 0.2 -7.766233766233766,5,a-cure-i1,2022-23,29.9,61.6,Boston - Boston Latin School,00350560, 12.3, 29.1, 15.2, 38.4, 0.1, 0.2, 4.8, 46.9, 52.7, 0.4 -9.56373937677054,5,a-cure-i1,2022-23,42.2,70.6,Boston - Boston Teachers Union K-8 Pilot,00350012, 26.8, 1.0, 37.1, 29.4, 0.3, 0.0, 5.4, 52.2, 47.8, 0.0 -2.706075533661741,2.71,a-cure-i1,2022-23,10.3,60.9,Boston - Bradley Elementary School,00350215, 6.6, 5.9, 45.3, 39.1, 0.0, 0.7, 2.4, 48.4, 51.6, 0.0 -6.095238095238095,5,a-cure-i1,2022-23,36.0,94.5,Boston - Brighton High School,00350505, 29.7, 3.9, 57.7, 5.5, 0.8, 0.0, 2.4, 55.3, 44.7, 0.0 -6.9680082559339525,5,a-cure-i1,2022-23,42.2,96.9,Boston - Burke High School,00350525, 54.0, 1.9, 36.0, 3.1, 0.7, 0.0, 4.3, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,88.5,Boston - Carter School,00350036, 50.0, 7.7, 26.9, 11.5, 0.0, 3.8, 0.0, 61.5, 38.5, 0.0 -7.498956158663883,5,a-cure-i1,2022-23,44.9,95.8,Boston - Channing Elementary School,00350360, 45.5, 2.6, 45.0, 4.2, 0.0, 0.0, 2.6, 57.1, 42.9, 0.0 -6.345991561181435,5,a-cure-i1,2022-23,37.6,94.8,Boston - Charlestown High School,00350515, 23.4, 6.7, 62.8, 5.2, 0.1, 0.1, 1.8, 55.7, 44.2, 0.1 -6.39337474120083,5,a-cure-i1,2022-23,38.60000000000001,96.6,Boston - Chittick Elementary School,00350154, 61.6, 0.9, 30.6, 3.4, 0.0, 0.4, 3.0, 55.6, 44.4, 0.0 -1.5905325443786984,1.59,a-cure-i1,2022-23,8.4,84.5,Boston - Clap Elementary School,00350298, 27.3, 7.3, 44.5, 15.5, 0.0, 0.0, 5.5, 54.5, 45.5, 0.0 -13.621181262729126,5,a-cure-i1,2022-23,83.60000000000001,98.2,Boston - Community Academy,00350518, 67.3, 0.0, 30.9, 1.8, 0.0, 0.0, 0.0, 63.6, 34.5, 1.8 -9.55442522889115,5,a-cure-i1,2022-23,58.7,98.3,Boston - Community Academy of Science and Health,00350581, 55.6, 5.5, 32.9, 1.7, 0.0, 0.3, 4.0, 52.4, 47.6, 0.0 -6.976744186046512,5,a-cure-i1,2022-23,37.5,86.0,Boston - Condon K-8 School,00350146, 30.9, 6.3, 44.1, 14.0, 0.5, 0.3, 3.9, 54.2, 45.8, 0.0 -6.434782608695651,5,a-cure-i1,2022-23,33.3,82.8,Boston - Conley Elementary School,00350122, 27.6, 0.6, 49.7, 17.2, 0.6, 1.2, 3.1, 56.4, 43.6, 0.0 -5.466275659824046,5,a-cure-i1,2022-23,23.299999999999997,68.2,Boston - Curley K-8 School,00350020, 17.3, 4.2, 39.3, 31.8, 0.1, 0.1, 7.2, 56.4, 43.6, 0.0 -8.755329949238579,5,a-cure-i1,2022-23,53.9,98.5,Boston - Dearborn 6-12 STEM Academy,00350074, 57.3, 1.3, 35.5, 1.5, 0.0, 0.7, 3.7, 51.9, 47.9, 0.2 -5.769316909294513,5,a-cure-i1,2022-23,32.2,89.3,Boston - Dever Elementary School,00350268, 21.7, 2.9, 62.8, 10.7, 0.5, 0.3, 1.1, 57.5, 42.5, 0.0 -11.590723055934514,5,a-cure-i1,2022-23,53.099999999999994,73.3,Boston - East Boston Early Education Center,00350009, 5.3, 0.5, 63.6, 26.7, 0.0, 0.0, 3.7, 52.9, 47.1, 0.0 -5.813273340832395,5,a-cure-i1,2022-23,32.3,88.9,Boston - East Boston High School,00350530, 5.3, 1.1, 81.5, 11.1, 0.0, 0.1, 0.9, 56.1, 43.7, 0.2 -8.29090909090909,5,a-cure-i1,2022-23,45.599999999999994,88.0,Boston - Edison K-8 School,00350375, 14.4, 10.4, 58.1, 12.0, 0.8, 0.2, 4.2, 53.6, 46.4, 0.0 -18.89315068493151,5,a-cure-i1,2022-23,43.1,36.5,Boston - Eliot K-8 Innovation School,00350096, 5.4, 10.8, 14.1, 63.5, 0.0, 0.2, 5.9, 51.8, 48.2, 0.0 -13.675789473684208,5,a-cure-i1,2022-23,81.19999999999999,95.0,Boston - Ellis Elementary School,00350072, 31.8, 0.3, 61.3, 5.0, 0.0, 0.0, 1.6, 47.8, 52.2, 0.0 -8.350730688935283,5,a-cure-i1,2022-23,50.0,95.8,Boston - Ellison-Parks Early Education School,00350008, 49.7, 3.7, 39.8, 4.2, 0.0, 0.0, 2.6, 48.2, 51.8, 0.0 -7.256008359456635,5,a-cure-i1,2022-23,43.4,95.7,Boston - English High School,00350535, 34.4, 0.8, 57.8, 4.3, 0.0, 0.2, 2.6, 54.5, 45.5, 0.0 -5.449023861171367,5,a-cure-i1,2022-23,31.4,92.2,Boston - Everett Elementary School,00350088, 38.3, 15.2, 34.6, 7.8, 1.5, 0.4, 2.2, 50.6, 49.4, 0.0 -10.981420765027321,5,a-cure-i1,2022-23,62.8,91.5,Boston - Excel High School,00350522, 32.3, 13.8, 41.9, 8.5, 0.0, 0.2, 3.2, 58.8, 41.0, 0.2 -9.64406779661017,5,a-cure-i1,2022-23,56.9,94.4,Boston - Fenway High School,00350540, 28.9, 2.4, 61.5, 5.6, 0.0, 0.0, 1.6, 48.0, 51.7, 0.3 -10.157948717948718,5,a-cure-i1,2022-23,61.900000000000006,97.5,Boston - Frederick Pilot Middle School,00350383, 33.7, 8.7, 52.3, 2.5, 0.6, 0.3, 1.9, 52.9, 47.1, 0.0 -12.394110985277464,5,a-cure-i1,2022-23,68.4,88.3,Boston - Gardner Pilot Academy,00350326, 12.4, 4.7, 67.6, 11.7, 0.0, 0.0, 3.6, 51.3, 48.2, 0.5 -8.816,5,a-cure-i1,2022-23,55.1,100.0,Boston - Greater Egleston High School,00350543, 43.3, 1.1, 48.9, 0.0, 2.2, 0.0, 4.4, 50.0, 50.0, 0.0 -10.958459979736576,5,a-cure-i1,2022-23,67.60000000000001,98.7,Boston - Greenwood Sarah K-8 School,00350308, 12.6, 0.3, 85.0, 1.3, 0.0, 0.0, 0.8, 49.2, 50.8, 0.0 -5.650224215246636,5,a-cure-i1,2022-23,31.5,89.2,Boston - Grew Elementary School,00350135, 36.3, 0.0, 42.5, 10.8, 0.9, 0.0, 9.4, 59.9, 40.1, 0.0 -4.844390832328106,4.84,a-cure-i1,2022-23,25.1,82.9,Boston - Guild Elementary School,00350062, 2.4, 0.4, 78.9, 17.1, 0.0, 0.0, 1.2, 52.6, 47.4, 0.0 -12.600667408231367,5,a-cure-i1,2022-23,70.8,89.9,Boston - Hale Elementary School,00350243, 47.9, 5.3, 30.2, 10.1, 0.0, 0.0, 6.5, 49.7, 50.3, 0.0 -6.7823899371069185,5,a-cure-i1,2022-23,33.7,79.5,Boston - Haley Pilot School,00350077, 38.5, 1.3, 35.3, 20.5, 0.0, 0.0, 4.3, 50.9, 49.1, 0.0 -7.445300462249614,5,a-cure-i1,2022-23,30.2,64.9,Boston - Harvard-Kent Elementary School,00350200, 15.8, 15.8, 29.2, 35.1, 0.0, 0.0, 4.1, 53.8, 46.2, 0.0 -11.715481171548118,5,a-cure-i1,2022-23,70.0,95.6,Boston - Haynes Early Education Center,00350010, 46.8, 0.0, 43.8, 4.4, 0.5, 0.0, 4.4, 48.3, 51.7, 0.0 -8.097087378640778,5,a-cure-i1,2022-23,41.7,82.4,Boston - Henderson K-12 Inclusion School Lower,00350266, 34.8, 11.8, 25.7, 17.6, 0.0, 1.6, 8.6, 51.9, 48.1, 0.0 -7.269364161849712,5,a-cure-i1,2022-23,39.300000000000004,86.5,Boston - Henderson K-12 Inclusion School Upper,00350426, 44.1, 7.2, 30.6, 13.5, 0.8, 0.3, 3.5, 54.2, 45.6, 0.2 -6.572333685322069,5,a-cure-i1,2022-23,38.9,94.7,Boston - Hennigan K-8 School,00350153, 24.6, 3.7, 64.6, 5.3, 0.0, 0.4, 1.4, 48.9, 51.1, 0.0 -12.526434195725535,5,a-cure-i1,2022-23,69.60000000000001,88.9,Boston - Hernandez K-8 School,00350691, 3.5, 0.0, 81.6, 11.1, 0.0, 0.0, 3.8, 47.5, 52.5, 0.0 -8.418461538461537,5,a-cure-i1,2022-23,51.3,97.5,Boston - Higginson Inclusion K0-2 School,00350015, 31.7, 0.8, 62.5, 2.5, 0.0, 0.0, 2.5, 53.3, 46.7, 0.0 -6.632548618219038,5,a-cure-i1,2022-23,40.5,97.7,Boston - Higginson-Lewis K-8 School,00350377, 33.9, 1.1, 58.2, 2.3, 0.0, 0.0, 4.5, 60.5, 39.5, 0.0 -6.880490296220633,5,a-cure-i1,2022-23,42.1,97.9,Boston - Holmes Elementary School,00350138, 55.4, 1.1, 37.1, 2.1, 0.0, 0.0, 4.3, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2022-23,4.0,85.7,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 30.0, 5.7, 48.6, 14.3, 0.0, 0.0, 1.4, 68.6, 31.4, 0.0 -14.062421972534334,5,a-cure-i1,2022-23,70.4,80.1,Boston - Hurley K-8 School,00350182, 4.0, 1.7, 71.0, 19.9, 0.3, 0.0, 3.1, 44.6, 55.1, 0.3 -5.513905683192261,5,a-cure-i1,2022-23,28.5,82.7,Boston - Kennedy John F Elementary School,00350166, 20.5, 1.6, 54.9, 17.3, 0.3, 0.0, 5.3, 51.2, 48.8, 0.0 -5.094781682641107,5,a-cure-i1,2022-23,29.9,93.9,Boston - Kennedy Patrick J Elementary School,00350264, 2.3, 1.1, 90.5, 6.1, 0.0, 0.0, 0.0, 54.5, 45.5, 0.0 -11.594202898550725,5,a-cure-i1,2022-23,55.0,75.9,Boston - Kenny Elementary School,00350328, 30.7, 11.4, 27.8, 24.1, 0.0, 0.0, 6.0, 53.5, 46.5, 0.0 -8.545454545454545,5,a-cure-i1,2022-23,28.2,52.8,Boston - Kilmer K-8 School,00350190, 18.2, 8.1, 21.2, 47.2, 0.3, 0.0, 5.1, 55.6, 44.2, 0.3 -11.37888198757764,5,a-cure-i1,2022-23,68.7,96.6,Boston - King Elementary School,00350376, 52.3, 0.9, 39.1, 3.4, 1.1, 0.0, 3.2, 55.2, 44.8, 0.0 -7.742471443406022,5,a-cure-i1,2022-23,46.599999999999994,96.3,Boston - Lee Academy,00350001, 52.4, 2.7, 33.7, 3.7, 0.0, 0.0, 7.5, 56.7, 43.3, 0.0 -3.410658307210031,3.41,a-cure-i1,2022-23,20.4,95.7,Boston - Lee K-8 School,00350183, 53.8, 4.8, 33.3, 4.3, 0.4, 0.2, 3.3, 57.9, 42.1, 0.0 -11.595294117647057,5,a-cure-i1,2022-23,30.799999999999997,42.5,Boston - Lyndon K-8 School,00350262, 10.6, 4.8, 21.0, 57.5, 0.0, 0.2, 6.0, 51.4, 48.6, 0.0 -2.88862837045721,2.89,a-cure-i1,2022-23,15.4,85.3,Boston - Lyon High School,00350655, 21.6, 5.2, 50.9, 14.7, 0.0, 0.0, 7.8, 62.1, 37.1, 0.9 -3.8663239074550133,3.87,a-cure-i1,2022-23,18.8,77.8,Boston - Lyon K-8 School,00350004, 24.6, 8.7, 35.7, 22.2, 0.0, 0.0, 8.7, 54.8, 45.2, 0.0 -7.712230215827337,5,a-cure-i1,2022-23,46.89999999999999,97.3,Boston - Madison Park Technical Vocational High School,00350537, 38.5, 1.5, 53.9, 2.7, 0.2, 0.5, 2.8, 59.1, 40.8, 0.1 -1,1,a-cure-i1,2022-23,2.8,48.1,Boston - Manning Elementary School,00350184, 11.9, 4.4, 21.3, 51.9, 0.0, 0.0, 10.6, 46.9, 53.1, 0.0 -8.933601609657947,5,a-cure-i1,2022-23,55.5,99.4,Boston - Margarita Muniz Academy,00350549, 5.4, 0.0, 93.0, 0.6, 0.0, 0.3, 0.6, 47.5, 52.5, 0.0 -7.733333333333332,5,a-cure-i1,2022-23,46.39999999999999,96.0,Boston - Mario Umana Academy,00350656, 1.7, 0.9, 92.3, 4.0, 0.2, 0.0, 1.0, 52.3, 47.7, 0.0 -6.655462184873948,5,a-cure-i1,2022-23,39.599999999999994,95.2,Boston - Mason Elementary School,00350304, 54.8, 2.1, 34.6, 4.8, 0.0, 0.0, 3.7, 53.7, 45.7, 0.5 -9.663531870428422,5,a-cure-i1,2022-23,57.8,95.7,Boston - Mather Elementary School,00350227, 43.1, 27.6, 20.0, 4.3, 0.8, 0.2, 3.9, 50.1, 49.9, 0.0 -6.634953464322647,5,a-cure-i1,2022-23,40.1,96.7,Boston - Mattahunt Elementary School,00350016, 64.4, 0.8, 28.0, 3.3, 0.4, 0.0, 3.1, 62.3, 37.7, 0.0 -7.920441988950276,5,a-cure-i1,2022-23,44.8,90.5,Boston - McKay K-8 School,00350080, 2.8, 1.0, 85.8, 9.5, 0.0, 0.0, 0.9, 50.5, 49.5, 0.0 -5.725576289791438,5,a-cure-i1,2022-23,32.6,91.1,Boston - McKinley Schools,00350363, 46.2, 1.9, 38.0, 8.9, 0.6, 0.0, 4.4, 76.6, 22.8, 0.6 -13.879234167893962,5,a-cure-i1,2022-23,58.900000000000006,67.9,Boston - Mendell Elementary School,00350100, 28.5, 3.5, 29.5, 32.1, 0.3, 0.0, 6.1, 52.6, 47.4, 0.0 -8.337796086508755,5,a-cure-i1,2022-23,50.6,97.1,Boston - Mildred Avenue K-8 School,00350378, 59.1, 1.1, 31.9, 2.9, 0.8, 0.0, 4.2, 52.9, 47.1, 0.0 -15.911926605504588,5,a-cure-i1,2022-23,54.2,54.5,Boston - Mozart Elementary School,00350237, 23.9, 0.0, 21.6, 45.5, 0.6, 0.0, 8.5, 60.8, 39.2, 0.0 -7.115044247787611,5,a-cure-i1,2022-23,40.2,90.4,Boston - Murphy K-8 School,00350240, 17.3, 51.2, 17.1, 9.6, 0.5, 0.2, 4.1, 52.5, 47.4, 0.1 -8.10212765957447,5,a-cure-i1,2022-23,47.6,94.0,Boston - New Mission High School,00350542, 47.9, 2.8, 41.2, 6.0, 0.0, 0.2, 2.0, 50.7, 49.0, 0.3 -10.242905788876277,5,a-cure-i1,2022-23,56.39999999999999,88.1,Boston - O'Bryant School of Math & Science,00350575, 31.3, 19.1, 35.1, 11.9, 0.1, 0.2, 2.3, 47.6, 52.3, 0.1 -4.5448785638859555,4.54,a-cure-i1,2022-23,26.900000000000002,94.7,Boston - O'Donnell Elementary School,00350141, 2.8, 1.1, 89.3, 5.3, 0.4, 0.0, 1.1, 47.3, 52.7, 0.0 -6.5200000000000005,5,a-cure-i1,2022-23,32.6,80.0,Boston - Ohrenberger School,00350258, 33.0, 4.7, 39.0, 20.0, 0.2, 0.0, 3.1, 54.5, 45.5, 0.0 -4.198347107438017,4.2,a-cure-i1,2022-23,25.400000000000002,96.8,Boston - Orchard Gardens K-8 School,00350257, 52.1, 1.1, 41.3, 3.2, 0.6, 0.4, 1.4, 52.3, 47.7, 0.0 -2.258142340168878,2.26,a-cure-i1,2022-23,11.7,82.9,Boston - Otis Elementary School,00350156, 4.1, 2.4, 73.9, 17.1, 0.2, 0.0, 2.2, 50.5, 49.5, 0.0 -6.672727272727273,5,a-cure-i1,2022-23,36.7,88.0,Boston - Perkins Elementary School,00350231, 38.6, 8.9, 34.8, 12.0, 1.3, 0.0, 4.4, 49.4, 50.6, 0.0 -7.478260869565218,5,a-cure-i1,2022-23,17.2,36.8,Boston - Perry Elementary School,00350255, 15.4, 4.4, 14.3, 63.2, 0.5, 0.0, 2.2, 52.2, 47.8, 0.0 -9.172093023255814,5,a-cure-i1,2022-23,49.3,86.0,Boston - Philbrick Elementary School,00350172, 41.2, 3.5, 33.3, 14.0, 0.9, 0.0, 7.0, 46.5, 53.5, 0.0 -11.053864168618267,5,a-cure-i1,2022-23,59.0,85.4,Boston - Quincy Elementary School,00350286, 11.9, 56.8, 10.0, 14.6, 0.0, 0.0, 6.6, 48.2, 51.8, 0.0 -11.462433862433864,5,a-cure-i1,2022-23,67.7,94.5,Boston - Quincy Upper School,00350565, 18.7, 51.5, 22.1, 5.5, 0.2, 0.0, 2.1, 52.3, 47.5, 0.2 -1.4145758661887695,1.41,a-cure-i1,2022-23,7.4,83.7,Boston - Roosevelt K-8 School,00350116, 36.3, 4.2, 36.9, 16.3, 0.3, 0.0, 5.9, 51.0, 49.0, 0.0 -4.743286788399571,4.74,a-cure-i1,2022-23,27.6,93.1,Boston - Russell Elementary School,00350366, 29.2, 6.6, 54.8, 6.9, 0.3, 0.6, 1.7, 50.1, 49.9, 0.0 -6.97560975609756,5,a-cure-i1,2022-23,42.9,98.4,Boston - Shaw Elementary School,00350014, 59.4, 0.5, 33.2, 1.6, 1.1, 0.0, 4.3, 50.8, 49.2, 0.0 -6.308668076109936,5,a-cure-i1,2022-23,37.3,94.6,Boston - Snowden International High School,00350690, 30.5, 3.9, 57.5, 5.4, 0.2, 0.0, 2.6, 50.8, 49.2, 0.0 -9.27626459143969,5,a-cure-i1,2022-23,44.7,77.1,Boston - Sumner Elementary School,00350052, 15.1, 1.7, 55.8, 22.9, 0.4, 0.0, 4.3, 51.9, 48.1, 0.0 -10.042726347914549,5,a-cure-i1,2022-23,61.7,98.3,Boston - Taylor Elementary School,00350054, 75.1, 1.4, 19.6, 1.7, 0.8, 0.0, 1.4, 54.5, 45.5, 0.0 -7.425051334702258,5,a-cure-i1,2022-23,45.199999999999996,97.4,Boston - TechBoston Academy,00350657, 57.6, 2.2, 32.6, 2.6, 0.1, 0.0, 4.8, 56.5, 43.5, 0.0 -8.85,5,a-cure-i1,2022-23,53.1,96.0,Boston - Tobin K-8 School,00350229, 26.3, 4.9, 62.7, 4.0, 0.2, 0.0, 1.9, 51.4, 48.6, 0.0 -12.68619246861925,5,a-cure-i1,2022-23,75.80000000000001,95.6,Boston - Trotter Elementary School,00350370, 54.5, 2.4, 34.0, 4.4, 0.3, 2.0, 2.4, 51.9, 48.1, 0.0 -6.520681265206813,5,a-cure-i1,2022-23,33.5,82.2,Boston - Tynan Elementary School,00350181, 32.0, 6.6, 35.5, 17.8, 0.0, 0.5, 7.6, 60.4, 39.6, 0.0 -5.185185185185185,5,a-cure-i1,2022-23,31.5,97.2,Boston - UP Academy Holland,00350167, 47.8, 1.9, 43.2, 2.8, 1.3, 0.2, 2.8, 50.0, 50.0, 0.0 -9.034825870646765,5,a-cure-i1,2022-23,22.7,40.2,Boston - Warren-Prescott K-8 School,00350346, 11.3, 3.8, 19.1, 59.8, 0.0, 0.0, 5.9, 53.7, 46.3, 0.0 -6.582959641255606,5,a-cure-i1,2022-23,36.7,89.2,Boston - West Zone Early Learning Center,00350006, 25.2, 9.0, 54.1, 10.8, 0.0, 0.0, 0.9, 51.4, 48.6, 0.0 -10.328275862068965,5,a-cure-i1,2022-23,46.8,72.5,Boston - Winship Elementary School,00350374, 12.7, 13.6, 38.2, 27.5, 0.3, 0.0, 7.7, 46.7, 53.3, 0.0 -4.472049689440994,4.47,a-cure-i1,2022-23,27.0,96.6,Boston - Winthrop Elementary School,00350180, 57.4, 2.1, 34.6, 3.4, 0.4, 0.4, 1.7, 46.8, 53.2, 0.0 -8.437246963562753,5,a-cure-i1,2022-23,52.099999999999994,98.8,Boston - Young Achievers K-8 School,00350380, 42.7, 0.4, 51.6, 1.2, 0.6, 0.4, 3.1, 56.5, 43.5, 0.0 -14.73015873015873,5,a-cure-i1,2022-23,52.2,56.7,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 29.1, 3.4, 19.6, 43.3, 0.0, 0.1, 4.4, 52.3, 47.4, 0.3 -11.252032520325205,5,a-cure-i1,2022-23,69.20000000000002,98.4,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 49.2, 1.9, 46.7, 1.6, 0.6, 0.0, 0.0, 46.4, 52.6, 0.9 -8.380952380952381,5,a-cure-i1,2022-23,48.400000000000006,92.4,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 43.3, 2.9, 42.9, 7.6, 0.6, 0.0, 2.7, 50.0, 50.0, 0.0 -6.817813765182188,5,a-cure-i1,2022-23,42.10000000000001,98.8,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 63.7, 0.3, 29.9, 1.2, 0.3, 0.9, 3.7, 50.1, 49.9, 0.0 -2.934143870314083,2.93,a-cure-i1,2022-23,18.1,98.7,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 57.6, 0.0, 37.4, 1.3, 0.1, 0.0, 3.6, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.200000000000003,Bourne - Bourne High School,00360505, 1.4, 4.3, 4.6, 83.8, 1.1, 0.0, 4.8, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.599999999999994,Bourne - Bourne Intermediate School,00360030, 1.1, 2.4, 6.8, 82.4, 0.5, 0.3, 6.5, 47.8, 52.2, 0.0 -5.43030303030303,5,a-cure-i1,2022-23,5.6,16.5,Bourne - Bourne Middle School,00360325, 1.9, 1.2, 6.5, 83.5, 0.7, 0.0, 6.3, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.400000000000006,Bourne - Bournedale Elementary School,00360005, 0.7, 2.5, 7.2, 79.6, 0.0, 0.0, 10.0, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.200000000000003,Boxford - Harry Lee Cole,00380005, 1.1, 2.3, 4.3, 88.8, 0.0, 0.0, 3.4, 52.3, 47.7, 0.0 -12.036697247706416,5,a-cure-i1,2022-23,8.2,10.900000000000006,Boxford - Spofford Pond,00380013, 0.0, 2.3, 3.1, 89.1, 0.0, 0.0, 5.5, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,48.5,Braintree - Archie T Morrison,00400033, 7.9, 27.9, 7.2, 51.5, 0.3, 0.0, 5.2, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2022-23,4.1,38.6,Braintree - Braintree High,00400505, 6.2, 23.8, 6.6, 61.4, 0.1, 0.2, 1.6, 50.1, 49.6, 0.3 -1,1,a-cure-i1,2022-23,0.0,53.9,Braintree - Donald Ross,00400050, 12.1, 27.2, 11.7, 46.1, 0.5, 0.0, 2.4, 44.2, 55.8, 0.0 -1,1,a-cure-i1,2022-23,1.5,41.1,Braintree - East Middle School,00400305, 5.9, 25.0, 7.3, 58.9, 0.1, 0.0, 2.8, 52.8, 47.1, 0.1 -1,1,a-cure-i1,2022-23,0.0,31.299999999999997,Braintree - Highlands,00400015, 1.7, 23.7, 4.9, 68.7, 0.0, 0.0, 1.0, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,42.0,Braintree - Hollis,00400005, 4.2, 27.9, 6.0, 58.0, 0.3, 0.0, 3.6, 53.2, 46.5, 0.3 -1,1,a-cure-i1,2022-23,0.0,45.6,Braintree - Liberty,00400025, 3.0, 33.4, 5.7, 54.4, 0.0, 0.8, 2.7, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,44.5,Braintree - Mary E Flaherty School,00400020, 3.4, 29.0, 5.5, 55.5, 0.0, 0.0, 6.6, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,50.0,Braintree - Monatiquot Kindergarten Center,00400009, 4.0, 30.0, 13.0, 50.0, 0.0, 0.5, 2.5, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,35.400000000000006,Braintree - South Middle School,00400310, 2.9, 24.7, 5.1, 64.6, 0.2, 0.2, 2.3, 48.4, 51.4, 0.2 -1,1,a-cure-i1,2022-23,0.0,19.400000000000006,Brewster - Eddy Elementary,00410010, 1.0, 0.5, 11.4, 80.6, 0.0, 0.0, 6.5, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.900000000000006,Brewster - Stony Brook Elementary,00410005, 3.9, 2.2, 10.4, 76.1, 0.0, 0.0, 7.4, 45.2, 54.8, 0.0 -6.4590163934426235,5,a-cure-i1,2022-23,39.4,97.6,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 65.6, 1.2, 26.9, 2.4, 0.0, 0.3, 3.6, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.599999999999994,Bridgewater-Raynham - Bridgewater Middle School,06250320, 11.7, 2.2, 4.3, 76.4, 0.1, 0.0, 5.3, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2022-23,3.6,23.099999999999994,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 11.4, 2.4, 3.8, 76.9, 0.1, 0.1, 5.2, 51.2, 48.7, 0.1 -1,1,a-cure-i1,2022-23,0.0,23.400000000000006,Bridgewater-Raynham - Laliberte Elementary School,06250050, 9.4, 3.6, 5.4, 76.6, 0.0, 0.0, 5.0, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.099999999999994,Bridgewater-Raynham - Merrill Elementary School,06250020, 6.8, 4.3, 8.5, 73.9, 0.0, 0.0, 6.5, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.400000000000006,Bridgewater-Raynham - Mitchell Elementary School,06250002, 9.8, 2.2, 8.9, 72.6, 0.1, 0.0, 6.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.0,Bridgewater-Raynham - Raynham Middle School,06250315, 10.3, 2.2, 3.0, 80.0, 0.1, 0.0, 4.3, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.400000000000006,Bridgewater-Raynham - Therapeutic Day School,06250415, 7.1, 0.0, 7.1, 78.6, 0.0, 0.0, 7.1, 64.3, 35.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.5,Bridgewater-Raynham - Williams Intermediate School,06250300, 9.4, 2.6, 8.0, 75.5, 0.0, 0.1, 4.4, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.0,Brimfield - Brimfield Elementary,00430005, 1.4, 1.0, 4.2, 92.0, 0.7, 0.0, 0.7, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2022-23,2.4,16.0,Bristol County Agricultural - Bristol County Agricultural High,09100705, 2.7, 0.2, 12.4, 84.0, 0.2, 0.0, 0.5, 31.1, 68.7, 0.2 -1,1,a-cure-i1,2022-23,4.7,16.200000000000003,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 4.6, 0.8, 7.0, 83.8, 0.1, 0.0, 3.7, 56.8, 43.1, 0.1 -1.3242876526458616,1.32,a-cure-i1,2022-23,6.1,73.7,Brockton - Ashfield Middle School,00440421, 53.1, 2.0, 15.2, 26.3, 0.0, 0.2, 3.1, 52.9, 46.9, 0.2 -1,1,a-cure-i1,2022-23,0.0,87.3,Brockton - Barrett Russell Early Childhood Center,00440008, 59.4, 2.2, 21.4, 12.7, 0.4, 0.0, 3.9, 55.5, 44.5, 0.0 -4.860759493670886,4.86,a-cure-i1,2022-23,24.0,79.0,Brockton - Brockton Champion High School,00440515, 56.5, 0.0, 15.9, 21.0, 0.0, 0.0, 6.5, 57.2, 42.8, 0.0 -4.687427912341406,4.69,a-cure-i1,2022-23,25.4,86.7,Brockton - Brockton High,00440505, 61.3, 2.7, 18.3, 13.3, 0.1, 0.2, 4.1, 55.2, 44.7, 0.2 -1,1,a-cure-i1,2022-23,0.0,83.2,Brockton - Brockton Virtual Learning Academy,00440705, 51.4, 3.5, 17.3, 16.8, 0.6, 0.0, 10.4, 50.3, 49.1, 0.6 -1.4600760456273763,1.46,a-cure-i1,2022-23,7.2,78.9,Brockton - Brookfield,00440010, 51.5, 1.4, 20.0, 21.1, 0.2, 0.0, 5.8, 51.7, 48.3, 0.0 -0.9834515366430261,1,a-cure-i1,2022-23,5.2,84.6,Brockton - Downey,00440110, 59.1, 1.4, 17.4, 15.4, 0.5, 0.2, 6.1, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2022-23,4.8,92.8,Brockton - Dr W Arnone Community School,00440001, 58.1, 0.3, 26.7, 7.2, 0.5, 0.4, 6.7, 51.7, 48.3, 0.0 -1.5477629987908101,1.55,a-cure-i1,2022-23,8.0,82.7,Brockton - East Middle School,00440405, 61.3, 0.9, 15.7, 17.3, 0.2, 0.2, 4.4, 56.2, 43.8, 0.0 -1.6692563817980024,1.67,a-cure-i1,2022-23,9.4,90.1,Brockton - Edgar B Davis,00440023, 65.4, 0.9, 17.3, 9.9, 0.5, 0.3, 5.7, 48.4, 51.6, 0.0 -10.944734098018769,5,a-cure-i1,2022-23,65.6,95.9,Brockton - Edison Academy,00440520, 61.8, 1.2, 29.9, 4.1, 0.0, 0.4, 2.5, 59.8, 40.2, 0.0 -3.5,3.5,a-cure-i1,2022-23,21.0,96.0,Brockton - Gilmore Elementary School,00440055, 73.7, 0.2, 18.4, 4.0, 0.0, 0.2, 3.5, 51.1, 48.9, 0.0 -3.9460122699386497,3.95,a-cure-i1,2022-23,20.099999999999998,81.5,Brockton - Hancock,00440045, 52.4, 2.4, 21.4, 18.5, 0.2, 0.3, 4.7, 46.8, 53.2, 0.0 -1.1231788079470197,1.12,a-cure-i1,2022-23,5.3,75.5,Brockton - Huntington Therapeutic Day School,00440400, 53.1, 0.0, 16.3, 24.5, 0.0, 0.0, 6.1, 67.3, 28.6, 4.1 -2.318840579710145,2.32,a-cure-i1,2022-23,12.0,82.8,Brockton - John F Kennedy,00440017, 58.5, 1.4, 19.7, 17.2, 0.4, 0.0, 2.9, 48.3, 51.7, 0.0 -2.880778588807786,2.88,a-cure-i1,2022-23,14.8,82.2,Brockton - Louis F Angelo Elementary,00440065, 53.2, 3.5, 21.9, 17.8, 0.6, 0.0, 2.9, 55.6, 44.4, 0.0 -1.159165751920966,1.16,a-cure-i1,2022-23,6.6,91.1,Brockton - Manthala George Jr. School,00440003, 52.8, 0.3, 33.9, 8.9, 0.1, 0.3, 3.8, 48.7, 51.3, 0.0 -1.8576779026217232,1.86,a-cure-i1,2022-23,9.3,80.1,Brockton - Mary E. Baker School,00440002, 49.3, 1.6, 21.0, 19.9, 0.3, 0.4, 7.4, 49.6, 50.4, 0.0 -2.856516976998905,2.86,a-cure-i1,2022-23,16.3,91.3,Brockton - North Middle School,00440410, 72.8, 0.9, 12.5, 8.7, 0.4, 0.2, 4.5, 51.6, 48.4, 0.0 -1.4017094017094016,1.4,a-cure-i1,2022-23,8.2,93.6,Brockton - Oscar F Raymond,00440078, 78.0, 1.3, 11.3, 6.4, 0.3, 0.4, 2.4, 53.5, 46.5, 0.0 -4.7186440677966095,4.72,a-cure-i1,2022-23,26.099999999999998,88.5,Brockton - Plouffe Middle School,00440422, 40.0, 2.8, 41.1, 11.5, 0.3, 0.2, 4.1, 50.8, 49.2, 0.0 -8.196078431372548,5,a-cure-i1,2022-23,41.8,81.6,Brockton - PROMISE College and Career Academy,00440525, 44.7, 2.6, 34.2, 18.4, 0.0, 0.0, 0.0, 55.3, 44.7, 0.0 -5.47514450867052,5,a-cure-i1,2022-23,29.599999999999998,86.5,Brockton - South Middle School,00440415, 66.0, 1.5, 13.1, 13.5, 0.0, 0.0, 5.8, 53.5, 46.5, 0.0 -2.4736196319018404,2.47,a-cure-i1,2022-23,12.6,81.5,Brockton - West Middle School,00440420, 56.2, 1.8, 15.6, 18.5, 0.0, 0.0, 7.9, 52.1, 47.9, 0.0 -8.39289446185998,5,a-cure-i1,2022-23,50.2,95.7,Brooke Charter School (District) - Brooke Charter School,04280305, 51.4, 1.5, 39.8, 4.3, 0.2, 0.1, 2.7, 48.3, 51.4, 0.3 -1,1,a-cure-i1,2022-23,0.0,12.0,Brookfield - Brookfield Elementary,00450005, 2.4, 0.3, 5.2, 88.0, 0.0, 0.0, 4.1, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,58.0,Brookline - Brookline Early Education Program at Beacon,00460001, 2.0, 30.0, 8.0, 42.0, 0.0, 0.0, 18.0, 66.0, 34.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,51.6,Brookline - Brookline Early Education Program at Clark Road,00460003, 1.6, 10.9, 20.3, 48.4, 0.0, 0.0, 18.8, 59.4, 40.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,42.3,Brookline - Brookline Early Education Program at Putterham,00460002, 7.7, 19.2, 7.7, 57.7, 0.0, 0.0, 7.7, 61.5, 38.5, 0.0 -4.967880085653105,4.97,a-cure-i1,2022-23,14.500000000000002,46.7,Brookline - Brookline High,00460505, 7.4, 16.0, 12.9, 53.3, 0.0, 0.0, 10.3, 49.3, 49.7, 1.0 -3.724867724867725,3.72,a-cure-i1,2022-23,13.200000000000001,56.7,Brookline - Edith C Baker,00460005, 6.7, 28.0, 9.5, 43.3, 0.1, 0.0, 12.4, 52.7, 47.3, 0.0 -2.871794871794872,2.87,a-cure-i1,2022-23,7.7,42.9,Brookline - Florida Ruffin Ridley School,00460015, 5.2, 16.8, 10.0, 57.1, 0.0, 0.0, 10.9, 48.8, 51.1, 0.1 -1.951219512195122,1.95,a-cure-i1,2022-23,5.5,45.1,Brookline - Heath,00460025, 4.6, 15.9, 11.3, 54.9, 0.0, 0.0, 13.3, 51.6, 48.1, 0.2 -2.488120950323974,2.49,a-cure-i1,2022-23,7.199999999999999,46.3,Brookline - John D Runkle,00460045, 4.3, 14.4, 13.2, 53.7, 0.0, 0.0, 14.4, 54.7, 45.1, 0.2 -3.6400679117147705,3.64,a-cure-i1,2022-23,13.399999999999999,58.9,Brookline - Lawrence,00460030, 5.0, 33.8, 9.3, 41.1, 0.0, 0.2, 10.6, 48.1, 51.9, 0.0 -4.032258064516129,4.03,a-cure-i1,2022-23,12.5,49.6,Brookline - Michael Driscoll,00460020, 5.9, 19.3, 10.5, 50.4, 0.0, 0.0, 13.8, 54.4, 45.6, 0.0 -5.353383458646617,5,a-cure-i1,2022-23,17.8,53.2,Brookline - Pierce,00460040, 5.7, 25.1, 10.4, 46.8, 0.0, 0.0, 12.1, 48.1, 51.3, 0.6 -5.325,5,a-cure-i1,2022-23,21.3,64.0,Brookline - The Lynch Center,00460060, 12.0, 24.0, 16.0, 36.0, 0.0, 0.0, 12.0, 60.0, 40.0, 0.0 -3.28476821192053,3.28,a-cure-i1,2022-23,12.4,60.4,Brookline - William H Lincoln,00460035, 12.2, 27.2, 11.3, 39.6, 0.2, 0.0, 9.5, 49.9, 50.1, 0.0 -3.99002493765586,3.99,a-cure-i1,2022-23,10.0,40.1,Burlington - Burlington High,00480505, 8.6, 18.4, 10.0, 59.9, 0.4, 0.0, 2.7, 51.9, 47.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,35.5,Burlington - Fox Hill,00480007, 5.6, 16.4, 7.2, 64.5, 0.5, 0.0, 5.8, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,36.5,Burlington - Francis Wyman Elementary,00480035, 12.4, 12.8, 5.9, 63.5, 0.0, 0.0, 5.5, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2022-23,3.5,38.6,Burlington - Marshall Simonds Middle,00480303, 6.4, 17.4, 9.8, 61.4, 0.2, 0.0, 4.8, 49.1, 50.6, 0.4 -1,1,a-cure-i1,2022-23,3.5,41.4,Burlington - Memorial,00480015, 4.3, 19.5, 10.7, 58.6, 0.0, 0.0, 6.9, 51.0, 49.0, 0.0 -3.7052631578947373,3.71,a-cure-i1,2022-23,8.8,38.0,Burlington - Pine Glen Elementary,00480020, 3.2, 22.4, 6.8, 62.0, 0.0, 0.0, 5.5, 52.3, 47.7, 0.0 -12.097560975609758,5,a-cure-i1,2022-23,49.6,65.6,Cambridge - Amigos School,00490006, 4.7, 3.4, 50.4, 34.4, 0.0, 0.0, 7.1, 50.1, 49.6, 0.2 -7.323763955342902,5,a-cure-i1,2022-23,28.7,62.7,Cambridge - Cambridge Rindge and Latin,00490506, 26.1, 11.1, 15.2, 37.3, 0.3, 0.0, 10.0, 48.4, 51.0, 0.6 -8.97171381031614,5,a-cure-i1,2022-23,33.7,60.1,Cambridge - Cambridge Street Upper School,00490305, 27.0, 10.9, 11.6, 39.9, 0.3, 0.0, 10.2, 50.2, 49.5, 0.3 -12.04979253112033,5,a-cure-i1,2022-23,36.3,48.2,Cambridge - Cambridgeport,00490007, 16.5, 11.0, 7.1, 51.8, 0.0, 0.0, 13.7, 48.6, 50.2, 1.2 -4.917594654788419,4.92,a-cure-i1,2022-23,27.6,89.8,Cambridge - Fletcher/Maynard Academy,00490090, 51.6, 7.1, 20.9, 10.2, 0.4, 0.0, 9.8, 58.7, 41.3, 0.0 -2.694736842105263,2.69,a-cure-i1,2022-23,8.0,47.5,Cambridge - Graham and Parks,00490080, 13.5, 16.6, 9.1, 52.5, 0.0, 0.0, 8.3, 54.4, 45.6, 0.0 -12.577696526508227,5,a-cure-i1,2022-23,43.0,54.7,Cambridge - Haggerty,00490020, 15.9, 22.4, 9.5, 45.3, 0.9, 0.0, 6.0, 45.3, 54.7, 0.0 -3.741293532338309,3.74,a-cure-i1,2022-23,14.100000000000001,60.3,Cambridge - John M Tobin,00490065, 23.8, 15.9, 7.8, 39.7, 0.0, 0.0, 12.8, 51.6, 48.4, 0.0 -3.626943005181347,3.63,a-cure-i1,2022-23,17.5,77.2,Cambridge - Kennedy-Longfellow,00490040, 23.4, 23.9, 21.7, 22.8, 0.0, 0.0, 8.2, 49.5, 50.5, 0.0 -6.546603475513428,5,a-cure-i1,2022-23,25.9,63.3,Cambridge - King Open,00490035, 22.6, 13.2, 13.5, 36.7, 0.0, 0.0, 14.0, 51.5, 48.5, 0.0 -8.976525821596244,5,a-cure-i1,2022-23,23.9,42.6,Cambridge - Maria L. Baldwin,00490005, 10.0, 9.1, 9.1, 57.4, 0.0, 0.0, 14.4, 49.1, 50.9, 0.0 -9.854166666666666,5,a-cure-i1,2022-23,47.3,76.8,Cambridge - Martin Luther King Jr.,00490030, 12.0, 35.8, 4.2, 23.2, 0.0, 0.0, 24.7, 50.6, 49.4, 0.0 -2.8457350272232307,2.85,a-cure-i1,2022-23,9.8,55.1,Cambridge - Morse,00490045, 25.5, 9.5, 8.8, 44.9, 0.0, 0.0, 11.2, 52.0, 48.0, 0.0 -7.243636363636363,5,a-cure-i1,2022-23,24.9,55.0,Cambridge - Peabody,00490050, 23.9, 15.1, 8.2, 45.0, 0.3, 0.0, 7.5, 50.0, 50.0, 0.0 -7.381275440976934,5,a-cure-i1,2022-23,34.0,73.7,Cambridge - Putnam Avenue Upper School,00490310, 30.7, 15.9, 12.4, 26.3, 1.2, 0.0, 13.5, 54.2, 45.8, 0.0 -9.516129032258064,5,a-cure-i1,2022-23,29.5,49.6,Cambridge - Rindge Avenue Upper School,00490315, 22.3, 10.2, 9.5, 50.4, 0.0, 0.0, 7.7, 50.4, 48.5, 1.1 -5.418530351437698,5,a-cure-i1,2022-23,21.199999999999996,62.6,Cambridge - Vassal Lane Upper School,00490320, 23.8, 17.6, 11.0, 37.4, 0.0, 0.0, 10.3, 52.7, 46.9, 0.4 -3.9193083573487026,3.92,a-cure-i1,2022-23,8.5,34.7,Canton - Canton High,00500505, 14.2, 10.5, 4.9, 65.3, 0.2, 0.1, 4.9, 44.9, 54.8, 0.3 -1,1,a-cure-i1,2022-23,3.5,34.599999999999994,Canton - Dean S Luce,00500020, 10.1, 9.8, 6.3, 65.4, 0.2, 0.0, 8.1, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,30.200000000000003,Canton - John F Kennedy,00500017, 6.2, 8.5, 6.8, 69.8, 0.0, 0.0, 8.7, 53.2, 46.8, 0.0 -2.49645390070922,2.5,a-cure-i1,2022-23,6.6,42.3,Canton - Lt Peter M Hansen,00500012, 11.4, 11.5, 9.3, 57.7, 0.2, 0.4, 9.5, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,47.2,Canton - Rodman Early Childhood Center,00500010, 10.1, 23.6, 7.9, 52.8, 0.0, 0.0, 5.6, 53.9, 46.1, 0.0 -2.761421319796954,2.76,a-cure-i1,2022-23,6.8,39.4,Canton - Wm H Galvin Middle,00500305, 13.8, 11.2, 8.1, 60.6, 0.0, 0.4, 6.0, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.0,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 2.0, 1.6, 2.8, 92.0, 0.4, 0.0, 1.2, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2022-23,4.0,23.299999999999997,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 5.7, 0.9, 11.3, 76.7, 1.1, 0.3, 4.1, 62.2, 37.7, 0.2 -1,1,a-cure-i1,2022-23,3.4,27.599999999999994,Carlisle - Carlisle School,00510025, 0.3, 12.0, 6.2, 72.4, 0.0, 0.5, 8.7, 50.4, 49.4, 0.2 -1,1,a-cure-i1,2022-23,2.2,8.799999999999997,Carver - Carver Elementary School,00520015, 2.2, 0.3, 3.5, 91.2, 0.1, 0.0, 2.7, 49.5, 50.5, 0.0 -13.837837837837828,5,a-cure-i1,2022-23,6.4,7.400000000000006,Carver - Carver Middle/High School,00520405, 2.5, 0.4, 2.7, 92.6, 0.5, 0.0, 1.3, 52.7, 47.2, 0.1 -1,1,a-cure-i1,2022-23,0.0,12.0,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 8.0, 88.0, 0.0, 0.0, 4.0, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.200000000000003,Central Berkshire - Craneville,06350025, 0.9, 1.1, 7.4, 84.8, 0.0, 0.0, 5.8, 50.4, 49.3, 0.2 -1,1,a-cure-i1,2022-23,0.0,6.799999999999997,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 3.1, 93.2, 0.0, 0.0, 3.7, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.200000000000003,Central Berkshire - Nessacus Regional Middle School,06350305, 0.6, 1.2, 4.6, 87.8, 0.0, 0.0, 5.8, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.200000000000003,Central Berkshire - Wahconah Regional High,06350505, 0.8, 0.2, 4.1, 91.8, 0.0, 0.0, 3.1, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,33.5,Chelmsford - Byam School,00560030, 3.8, 13.6, 11.4, 66.5, 0.0, 0.0, 4.8, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,34.0,Chelmsford - Center Elementary School,00560005, 3.7, 19.8, 6.8, 66.0, 0.2, 0.0, 3.5, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,43.7,Chelmsford - Charles D Harrington,00560025, 4.0, 21.4, 13.4, 56.3, 0.6, 0.4, 3.8, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2022-23,4.0,32.7,Chelmsford - Chelmsford High,00560505, 3.8, 18.1, 7.2, 67.3, 0.2, 0.2, 3.1, 52.1, 47.5, 0.4 -1,1,a-cure-i1,2022-23,0.0,33.7,Chelmsford - Col Moses Parker School,00560305, 3.5, 15.8, 10.0, 66.3, 0.0, 0.0, 4.6, 52.0, 47.9, 0.1 -1,1,a-cure-i1,2022-23,0.0,50.2,Chelmsford - Community Education Center,00560001, 5.5, 28.9, 11.9, 49.8, 0.5, 0.5, 3.0, 68.7, 31.3, 0.0 -1,1,a-cure-i1,2022-23,3.2,37.1,Chelmsford - McCarthy Middle School,00560310, 4.4, 19.1, 8.6, 62.9, 0.1, 0.5, 4.4, 51.5, 48.1, 0.4 -1,1,a-cure-i1,2022-23,0.0,32.400000000000006,Chelmsford - South Row,00560015, 2.6, 16.0, 7.1, 67.6, 0.4, 0.0, 6.3, 51.2, 48.8, 0.0 -4.378947368421053,4.38,a-cure-i1,2022-23,26.0,95.0,Chelsea - Chelsea High,00570505, 3.8, 1.0, 89.2, 5.0, 0.2, 0.0, 0.7, 54.9, 45.1, 0.1 -2.7433264887063653,2.74,a-cure-i1,2022-23,16.7,97.4,Chelsea - Chelsea Opportunity Academy,00570515, 1.7, 0.9, 94.8, 2.6, 0.0, 0.0, 0.0, 70.4, 29.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,87.2,Chelsea - Chelsea Virtual Learning Academy,00570705, 2.1, 0.0, 85.1, 12.8, 0.0, 0.0, 0.0, 44.7, 55.3, 0.0 -2.3340380549682878,2.33,a-cure-i1,2022-23,13.8,94.6,Chelsea - Clark Avenue School,00570050, 3.1, 0.3, 90.0, 5.4, 0.1, 0.0, 1.0, 50.5, 49.5, 0.0 -3.2815964523281593,3.28,a-cure-i1,2022-23,18.5,90.2,Chelsea - Edgar A Hooks Elementary,00570030, 6.4, 0.4, 82.3, 9.8, 0.4, 0.0, 0.6, 55.4, 44.6, 0.0 -1.6842105263157896,1.68,a-cure-i1,2022-23,9.8,93.1,Chelsea - Eugene Wright Science and Technology Academy,00570045, 4.9, 0.7, 86.9, 6.9, 0.0, 0.0, 0.7, 50.3, 49.7, 0.0 -2.675409836065574,2.68,a-cure-i1,2022-23,15.3,91.5,Chelsea - Frank M Sokolowski Elementary,00570040, 3.8, 0.2, 87.1, 8.5, 0.2, 0.0, 0.2, 48.9, 51.1, 0.0 -7.369294605809129,5,a-cure-i1,2022-23,44.400000000000006,96.4,Chelsea - George F. Kelly Elementary,00570035, 1.7, 0.2, 94.6, 3.6, 0.0, 0.0, 0.0, 48.1, 51.9, 0.0 -7.122470713525026,5,a-cure-i1,2022-23,41.8,93.9,Chelsea - Joseph A. Browne School,00570055, 6.5, 1.8, 84.9, 6.1, 0.4, 0.0, 0.4, 55.4, 44.6, 0.0 -2.176278563656148,2.18,a-cure-i1,2022-23,12.5,91.9,Chelsea - Shurtleff Early Childhood,00570003, 3.8, 0.9, 87.0, 8.1, 0.1, 0.0, 0.1, 52.6, 47.4, 0.0 -1.9348054679284965,1.93,a-cure-i1,2022-23,11.5,95.1,Chelsea - William A Berkowitz Elementary,00570025, 7.3, 0.9, 86.3, 4.9, 0.2, 0.0, 0.4, 45.3, 54.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,4.099999999999994,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.7, 0.0, 2.1, 95.9, 0.7, 0.0, 0.7, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,44.1,Chicopee - Barry,00610003, 4.9, 2.3, 32.8, 55.9, 0.3, 0.6, 3.2, 55.4, 44.6, 0.0 -1.8569157392686804,1.86,a-cure-i1,2022-23,7.3,62.9,Chicopee - Belcher,00610010, 10.3, 0.4, 46.4, 37.1, 0.0, 0.4, 5.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,1.7,49.6,Chicopee - Bellamy Middle,00610305, 5.3, 1.0, 39.7, 50.4, 0.0, 0.1, 3.5, 53.2, 46.6, 0.1 -1,1,a-cure-i1,2022-23,0.0,77.5,Chicopee - Bowe,00610015, 4.2, 2.2, 66.5, 22.5, 0.0, 0.0, 4.6, 49.9, 50.1, 0.0 -3.089108910891089,3.09,a-cure-i1,2022-23,7.8,40.4,Chicopee - Bowie,00610020, 4.7, 2.9, 28.7, 59.6, 0.0, 0.0, 4.0, 48.7, 51.3, 0.0 -1.783206106870229,1.78,a-cure-i1,2022-23,7.3,65.5,Chicopee - Chicopee Academy,00610021, 9.2, 1.1, 50.6, 34.5, 0.0, 0.0, 4.6, 72.4, 27.6, 0.0 -3.764705882352941,3.76,a-cure-i1,2022-23,10.4,44.2,Chicopee - Chicopee Comprehensive High School,00610510, 3.1, 1.4, 36.4, 55.8, 0.1, 0.0, 3.2, 58.7, 41.0, 0.2 -2.488888888888889,2.49,a-cure-i1,2022-23,9.8,63.0,Chicopee - Chicopee High,00610505, 5.3, 2.6, 51.3, 37.0, 0.0, 0.0, 3.8, 47.5, 52.3, 0.2 -2.690777576853526,2.69,a-cure-i1,2022-23,9.299999999999999,55.3,Chicopee - Dupont Middle,00610310, 5.2, 1.4, 45.8, 44.7, 0.0, 0.0, 2.9, 54.5, 45.3, 0.3 -1,1,a-cure-i1,2022-23,4.0,65.9,Chicopee - Fairview Elementary,00610050, 10.0, 1.1, 50.4, 34.1, 0.0, 0.0, 4.3, 55.3, 44.7, 0.0 -1.1685393258426966,1.17,a-cure-i1,2022-23,5.2,71.2,Chicopee - Gen John J Stefanik,00610090, 4.6, 1.0, 62.0, 28.8, 0.0, 0.0, 3.6, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2022-23,1.1,46.5,Chicopee - Lambert-Lavoie,00610040, 3.3, 2.1, 36.5, 53.5, 0.0, 0.0, 4.6, 57.3, 42.7, 0.0 -1,1,a-cure-i1,2022-23,0.8,50.2,Chicopee - Litwin,00610022, 9.1, 1.8, 35.6, 49.8, 0.0, 0.0, 3.6, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,1.2,41.6,Chicopee - Streiber Memorial School,00610065, 4.0, 3.1, 31.4, 58.4, 0.0, 0.0, 3.1, 56.2, 43.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,47.3,Chicopee - Szetela Early Childhood Center,00610001, 7.2, 1.8, 33.8, 52.7, 0.0, 0.0, 4.5, 55.0, 45.0, 0.0 -3.3825503355704702,3.38,a-cure-i1,2022-23,12.600000000000001,59.6,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 7.9, 6.7, 35.0, 40.4, 1.2, 0.0, 8.8, 57.1, 41.3, 1.5 -3.138211382113821,3.14,a-cure-i1,2022-23,19.3,98.4,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 67.8, 0.0, 30.1, 1.6, 0.0, 0.0, 0.5, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,4.799999999999997,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 2.1, 95.2, 0.0, 0.0, 2.1, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,44.0,Clinton - Clinton Elementary,00640050, 2.6, 0.8, 37.7, 56.0, 0.1, 0.1, 2.6, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,4.6,43.9,Clinton - Clinton Middle School,00640305, 2.0, 0.4, 39.6, 56.1, 0.0, 0.0, 1.8, 51.0, 49.0, 0.0 -4.251748251748252,4.25,a-cure-i1,2022-23,11.399999999999999,42.9,Clinton - Clinton Senior High,00640505, 3.7, 0.5, 37.3, 57.1, 0.0, 0.2, 1.2, 56.2, 43.6, 0.2 -7.638916750250753,5,a-cure-i1,2022-23,47.60000000000001,99.7,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 74.4, 0.0, 24.4, 0.3, 0.0, 0.0, 0.9, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,2.8,8.599999999999994,Cohasset - Cohasset High School,00650505, 3.2, 1.9, 1.6, 91.4, 0.0, 0.0, 1.9, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,3.7,8.099999999999994,Cohasset - Cohasset Middle School,00650305, 2.4, 2.7, 0.7, 91.9, 0.0, 0.0, 2.4, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.599999999999994,Cohasset - Deer Hill,00650005, 3.9, 0.7, 2.6, 91.4, 0.0, 0.0, 1.3, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.700000000000003,Cohasset - Joseph Osgood,00650010, 1.1, 1.1, 2.4, 92.3, 0.3, 0.0, 2.9, 49.7, 50.3, 0.0 -7.672391017173051,5,a-cure-i1,2022-23,36.3,75.7,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 19.8, 25.1, 24.4, 24.3, 2.5, 0.0, 3.9, 49.1, 50.8, 0.1 -7.135362014690451,5,a-cure-i1,2022-23,42.5,95.3,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 70.8, 5.1, 16.2, 4.7, 0.4, 0.0, 2.8, 43.9, 56.1, 0.0 -4.562118126272912,4.56,a-cure-i1,2022-23,28.0,98.2,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 1.3, 0.4, 95.7, 1.8, 0.3, 0.0, 0.4, 49.3, 50.7, 0.0 -5.732087227414331,5,a-cure-i1,2022-23,11.5,32.099999999999994,Concord - Alcott,00670005, 8.4, 6.5, 9.6, 67.9, 0.0, 0.0, 7.7, 49.4, 50.6, 0.0 -10.381679389312977,5,a-cure-i1,2022-23,17.0,26.200000000000003,Concord - Concord Middle,00670305, 4.0, 7.4, 7.8, 73.8, 0.0, 0.0, 6.9, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2022-23,4.2,27.900000000000006,Concord - Thoreau,00670020, 2.1, 9.5, 7.4, 72.1, 0.2, 0.0, 8.8, 52.2, 47.8, 0.0 -8.55813953488372,5,a-cure-i1,2022-23,11.5,21.5,Concord - Willard,00670030, 0.7, 8.5, 5.2, 78.5, 0.0, 0.0, 7.2, 49.3, 50.7, 0.0 -7.657587548638132,5,a-cure-i1,2022-23,12.3,25.700000000000003,Concord-Carlisle - Concord Carlisle High,06400505, 4.2, 8.9, 5.9, 74.3, 0.1, 0.2, 6.4, 52.9, 46.5, 0.6 -5.89121338912134,5,a-cure-i1,2022-23,35.2,95.6,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 47.4, 2.6, 42.1, 4.4, 0.2, 0.0, 3.3, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.099999999999994,Conway - Conway Grammar,00680005, 0.0, 0.0, 4.9, 91.9, 0.0, 0.0, 3.3, 59.3, 40.7, 0.0 -1,1,a-cure-i1,2022-23,0.7,19.799999999999997,Danvers - Danvers High,00710505, 2.6, 3.1, 10.8, 80.2, 0.0, 0.0, 3.3, 49.9, 49.3, 0.8 -1,1,a-cure-i1,2022-23,4.9,22.900000000000006,Danvers - Great Oak,00710015, 3.7, 2.3, 11.6, 77.1, 0.3, 0.0, 5.0, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.599999999999994,Danvers - Highlands,00710010, 5.4, 3.1, 12.7, 76.4, 0.3, 0.0, 2.1, 54.9, 45.1, 0.0 -4.288659793814432,4.29,a-cure-i1,2022-23,5.2,19.400000000000006,Danvers - Holten Richmond Middle School,00710305, 2.1, 2.8, 12.3, 80.6, 0.0, 0.0, 2.2, 48.8, 51.0, 0.1 -1,1,a-cure-i1,2022-23,4.5,13.900000000000006,Danvers - Ivan G Smith,00710032, 3.2, 1.8, 7.4, 86.1, 0.0, 0.0, 1.5, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.099999999999994,Danvers - Riverside,00710030, 3.0, 0.9, 13.9, 81.9, 0.0, 0.0, 0.3, 56.8, 43.2, 0.0 -6.2089552238805945,5,a-cure-i1,2022-23,5.2,13.400000000000006,Danvers - Willis E Thorpe,00710045, 0.9, 0.9, 10.6, 86.6, 0.0, 0.0, 0.9, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.599999999999994,Dartmouth - Andrew B. Cushman School,00720005, 0.8, 2.3, 7.6, 79.4, 0.0, 0.0, 9.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.900000000000006,Dartmouth - Dartmouth High,00720505, 2.8, 0.7, 7.2, 81.1, 0.0, 0.1, 8.2, 47.9, 51.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,15.299999999999997,Dartmouth - Dartmouth Middle,00720050, 1.5, 1.1, 5.8, 84.7, 0.0, 0.0, 6.8, 54.1, 45.8, 0.1 -1,1,a-cure-i1,2022-23,0.0,14.700000000000003,Dartmouth - George H Potter,00720030, 0.5, 1.5, 6.0, 85.3, 0.0, 0.0, 6.7, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.799999999999997,Dartmouth - James M. Quinn School,00720040, 1.1, 1.7, 6.5, 83.2, 0.0, 0.0, 7.4, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.5,Dartmouth - Joseph Demello,00720015, 1.7, 1.1, 5.1, 85.5, 0.3, 0.0, 6.3, 49.6, 50.1, 0.3 -1,1,a-cure-i1,2022-23,0.0,45.8,Dedham - Avery,00730010, 8.1, 1.7, 31.0, 54.2, 0.0, 0.0, 5.1, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2022-23,3.8,31.599999999999994,Dedham - Dedham High,00730505, 10.1, 2.5, 16.2, 68.4, 0.0, 0.0, 2.8, 51.7, 46.7, 1.5 -1,1,a-cure-i1,2022-23,0.0,37.8,Dedham - Dedham Middle School,00730305, 9.3, 2.4, 20.6, 62.2, 0.2, 0.0, 5.4, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.099999999999994,Dedham - Early Childhood Center,00730005, 4.9, 2.6, 13.4, 73.9, 0.0, 0.0, 5.2, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.700000000000003,Dedham - Greenlodge,00730025, 1.8, 1.4, 9.7, 78.3, 0.0, 0.0, 8.7, 52.3, 47.3, 0.4 -1,1,a-cure-i1,2022-23,0.0,27.799999999999997,Dedham - Oakdale,00730030, 9.4, 2.0, 9.8, 72.2, 0.0, 0.0, 6.5, 44.9, 55.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.200000000000003,Dedham - Riverdale,00730045, 4.6, 3.4, 13.2, 71.8, 0.0, 0.0, 6.9, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.900000000000006,Deerfield - Deerfield Elementary,00740015, 0.6, 0.6, 5.2, 86.1, 0.0, 0.0, 7.4, 53.7, 46.0, 0.3 -1,1,a-cure-i1,2022-23,3.7,31.099999999999994,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 9.3, 2.4, 11.9, 68.9, 0.9, 0.4, 6.2, 50.0, 50.0, 0.0 -4.057636887608069,4.06,a-cure-i1,2022-23,8.8,34.7,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 10.3, 2.5, 10.7, 65.3, 1.9, 0.2, 9.0, 57.1, 42.6, 0.2 -2.2127659574468086,2.21,a-cure-i1,2022-23,5.2,37.6,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 13.3, 2.7, 13.2, 62.4, 1.9, 0.1, 6.4, 50.1, 49.4, 0.5 -1,1,a-cure-i1,2022-23,3.8,35.3,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 11.2, 2.4, 13.2, 64.7, 1.2, 0.0, 7.4, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,44.0,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 11.7, 2.8, 19.1, 56.0, 1.8, 0.0, 8.5, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.700000000000003,Dennis-Yarmouth - Station Avenue Elementary,06450025, 11.5, 2.9, 9.6, 70.3, 0.7, 0.0, 5.0, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.799999999999997,Dighton-Rehoboth - Dighton Elementary,06500005, 3.5, 2.3, 4.9, 85.2, 0.0, 0.0, 4.2, 52.2, 47.8, 0.0 -9.62091503267974,5,a-cure-i1,2022-23,9.2,15.299999999999997,Dighton-Rehoboth - Dighton Middle School,06500305, 3.6, 1.6, 5.7, 84.7, 0.0, 0.0, 4.4, 52.2, 47.5, 0.3 -1,1,a-cure-i1,2022-23,3.5,13.200000000000003,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.5, 1.5, 5.4, 86.8, 0.1, 0.0, 4.8, 51.1, 48.6, 0.3 -1,1,a-cure-i1,2022-23,3.0,12.599999999999994,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 1.6, 1.8, 4.5, 87.4, 0.2, 0.0, 4.5, 49.1, 50.4, 0.4 -1,1,a-cure-i1,2022-23,0.0,10.200000000000003,Dighton-Rehoboth - Palmer River,06500010, 0.9, 1.5, 4.9, 89.8, 0.0, 0.0, 2.9, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.599999999999994,Douglas - Douglas Elementary School,00770015, 0.6, 0.3, 7.0, 88.4, 0.0, 0.0, 3.8, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.0,Douglas - Douglas High School,00770505, 0.6, 1.5, 5.2, 91.0, 0.0, 0.0, 1.5, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.400000000000006,Douglas - Douglas Middle School,00770305, 1.0, 0.7, 7.0, 87.6, 0.0, 0.0, 3.7, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.5,Douglas - Douglas Primary School,00770005, 1.4, 0.0, 4.5, 90.5, 0.0, 0.0, 3.6, 58.6, 41.4, 0.0 -1,1,a-cure-i1,2022-23,4.7,27.5,Dover - Chickering,00780005, 3.4, 13.1, 4.6, 72.5, 0.2, 0.0, 6.2, 53.2, 46.8, 0.0 -4.666666666666667,4.67,a-cure-i1,2022-23,8.4,28.799999999999997,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 3.4, 12.7, 6.1, 71.2, 0.3, 0.0, 6.3, 49.6, 49.9, 0.4 -6.228571428571428,5,a-cure-i1,2022-23,10.899999999999999,28.0,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 2.1, 12.4, 5.8, 72.0, 0.0, 0.0, 7.7, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,37.3,Dracut - Brookside Elementary,00790035, 10.2, 10.2, 15.3, 62.7, 0.0, 0.0, 1.5, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,3.4,33.099999999999994,Dracut - Dracut Senior High,00790505, 8.6, 10.6, 11.8, 66.9, 0.4, 0.0, 1.7, 49.8, 49.8, 0.4 -1,1,a-cure-i1,2022-23,0.0,40.0,Dracut - George H. Englesby Elementary School,00790045, 6.4, 11.5, 19.0, 60.0, 0.2, 0.0, 3.0, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,35.400000000000006,Dracut - Greenmont Avenue,00790030, 7.1, 10.8, 14.6, 64.6, 0.0, 0.0, 2.9, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.0,Dracut - Joseph A Campbell Elementary,00790020, 9.2, 6.9, 9.7, 73.0, 0.2, 0.0, 1.0, 54.4, 45.6, 0.0 -2.953846153846154,2.95,a-cure-i1,2022-23,6.0,32.5,Dracut - Justus C. Richardson Middle School,00790410, 6.8, 8.4, 15.4, 67.5, 0.0, 0.0, 1.9, 52.1, 47.6, 0.2 -8.7826982492276,5,a-cure-i1,2022-23,53.3,97.1,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 61.2, 0.4, 34.2, 2.9, 0.7, 0.0, 0.7, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.799999999999997,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.2, 0.6, 11.0, 85.2, 0.3, 0.0, 1.8, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.700000000000003,Dudley-Charlton Reg - Charlton Middle School,06580310, 1.7, 0.8, 8.3, 84.3, 0.2, 0.0, 4.7, 52.7, 47.3, 0.0 -6.0338983050847474,5,a-cure-i1,2022-23,8.9,23.599999999999994,Dudley-Charlton Reg - Dudley Elementary,06580005, 3.8, 0.3, 14.6, 76.4, 0.3, 0.0, 4.7, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.5,Dudley-Charlton Reg - Dudley Middle School,06580305, 3.3, 0.9, 12.1, 81.5, 0.0, 0.0, 2.2, 54.3, 45.7, 0.0 -7.908045977011492,5,a-cure-i1,2022-23,8.6,17.400000000000006,Dudley-Charlton Reg - Heritage School,06580030, 1.1, 0.9, 11.0, 82.6, 0.0, 0.0, 4.4, 51.4, 48.3, 0.2 -6.730158730158729,5,a-cure-i1,2022-23,10.6,25.200000000000003,Dudley-Charlton Reg - Mason Road School,06580010, 1.7, 1.3, 17.1, 74.8, 0.0, 0.0, 5.1, 51.3, 48.7, 0.0 -5.752808988764047,5,a-cure-i1,2022-23,6.4,17.799999999999997,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 2.6, 2.1, 10.5, 82.2, 0.1, 0.1, 2.4, 47.9, 51.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,9.599999999999994,Duxbury - Alden School,00820004, 1.0, 1.2, 3.3, 90.4, 0.0, 0.2, 4.0, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,2.9,9.299999999999997,Duxbury - Chandler Elementary,00820006, 1.1, 0.9, 3.3, 90.7, 0.2, 0.0, 3.8, 49.9, 49.9, 0.2 -1,1,a-cure-i1,2022-23,3.0,8.200000000000003,Duxbury - Duxbury High,00820505, 0.3, 1.6, 2.8, 91.8, 0.2, 0.0, 3.2, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.200000000000003,Duxbury - Duxbury Middle,00820305, 0.5, 0.8, 2.6, 91.8, 0.2, 0.0, 4.2, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.200000000000003,East Bridgewater - Central,00830005, 5.3, 1.3, 5.5, 83.8, 0.2, 0.0, 3.8, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,3.1,16.599999999999994,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 6.6, 1.1, 4.5, 83.4, 0.6, 0.1, 3.7, 54.8, 45.1, 0.1 -1,1,a-cure-i1,2022-23,0.0,17.400000000000006,East Bridgewater - Gordon W. Mitchell School,00830010, 5.7, 0.6, 7.0, 82.6, 0.5, 0.0, 3.6, 48.5, 51.5, 0.0 -4.7891156462585025,4.79,a-cure-i1,2022-23,8.8,29.400000000000006,East Longmeadow - Birchland Park,00870305, 4.7, 6.0, 13.7, 70.6, 0.3, 0.0, 4.7, 57.2, 42.6, 0.2 -5.552511415525112,5,a-cure-i1,2022-23,7.6,21.900000000000006,East Longmeadow - East Longmeadow High,00870505, 4.3, 6.4, 7.7, 78.1, 0.0, 0.0, 3.6, 51.5, 48.4, 0.1 -1,1,a-cure-i1,2022-23,0.0,26.0,East Longmeadow - Mapleshade,00870010, 2.4, 7.9, 12.3, 74.0, 0.3, 0.0, 3.1, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.299999999999997,East Longmeadow - Meadow Brook,00870013, 4.1, 4.6, 17.3, 68.7, 0.0, 0.0, 5.3, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.599999999999994,East Longmeadow - Mountain View,00870015, 3.0, 3.3, 11.9, 78.4, 0.0, 0.0, 3.3, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.099999999999994,Eastham - Eastham Elementary,00850005, 10.2, 0.0, 4.3, 76.9, 0.0, 0.0, 8.6, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2022-23,2.8,24.900000000000006,Easthampton - Easthampton High,00860505, 1.9, 5.4, 15.1, 75.1, 0.3, 0.0, 2.2, 51.4, 47.6, 1.1 -1,1,a-cure-i1,2022-23,1.5,23.900000000000006,Easthampton - Mountain View School,00860415, 1.1, 2.2, 15.4, 76.1, 0.3, 0.1, 4.8, 51.5, 48.2, 0.3 -1,1,a-cure-i1,2022-23,2.1,28.0,Easton - Blanche A. Ames Elementary School,00880015, 6.7, 4.4, 10.7, 72.0, 0.0, 0.0, 6.2, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,3.2,24.0,Easton - Easton Middle School,00880405, 8.4, 2.8, 7.9, 76.0, 0.9, 0.1, 3.9, 51.4, 48.6, 0.0 -7.024390243902439,5,a-cure-i1,2022-23,9.0,20.5,Easton - Oliver Ames High,00880505, 7.1, 3.7, 6.7, 79.5, 0.2, 0.0, 2.9, 49.5, 50.2, 0.3 -1,1,a-cure-i1,2022-23,2.6,24.299999999999997,Easton - Richardson Olmsted School,00880025, 7.4, 3.8, 9.1, 75.7, 0.1, 0.0, 3.9, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2022-23,2.8,36.9,Edgartown - Edgartown Elementary,00890005, 4.7, 0.2, 24.8, 63.1, 2.7, 0.0, 4.5, 50.2, 49.8, 0.0 -7.346432264736299,5,a-cure-i1,2022-23,44.400000000000006,96.7,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.5, 1.1, 54.4, 3.3, 0.0, 0.0, 2.7, 33.2, 66.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.700000000000003,Erving - Erving Elementary,00910030, 0.0, 0.0, 5.4, 85.3, 0.0, 0.0, 9.3, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2022-23,2.4000000000000004,22.5,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 2.1, 1.8, 14.7, 77.5, 0.1, 0.1, 3.7, 42.3, 57.3, 0.4 -1,1,a-cure-i1,2022-23,0.0,83.0,Everett - Adams School,00930003, 17.0, 12.1, 51.1, 17.0, 0.5, 0.0, 2.2, 47.3, 52.7, 0.0 -1.5862068965517244,1.59,a-cure-i1,2022-23,6.9,69.6,Everett - Devens School,00930030, 23.9, 0.0, 43.5, 30.4, 0.0, 0.0, 2.2, 71.7, 28.3, 0.0 -2.824644549763033,2.82,a-cure-i1,2022-23,14.9,84.4,Everett - Everett High,00930505, 14.3, 5.1, 62.7, 15.6, 0.4, 0.0, 1.8, 51.2, 48.8, 0.0 -1.382716049382716,1.38,a-cure-i1,2022-23,7.699999999999999,89.1,Everett - George Keverian School,00930028, 12.7, 3.5, 71.2, 10.9, 0.1, 0.1, 1.4, 48.4, 51.6, 0.0 -1.709483793517407,1.71,a-cure-i1,2022-23,8.9,83.3,Everett - Lafayette School,00930038, 15.7, 7.1, 58.7, 16.7, 0.1, 0.0, 1.8, 51.6, 48.4, 0.0 -1.4388489208633093,1.44,a-cure-i1,2022-23,7.5,83.4,Everett - Madeline English School,00930018, 9.8, 4.5, 67.5, 16.6, 0.1, 0.0, 1.4, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,4.5,91.9,Everett - Parlin School,00930058, 10.0, 3.5, 77.4, 8.1, 0.0, 0.1, 1.0, 48.7, 51.3, 0.0 -1.4926052332195678,1.49,a-cure-i1,2022-23,8.200000000000001,87.9,Everett - Sumner G. Whittier School,00930010, 7.6, 3.0, 74.4, 12.1, 0.8, 0.0, 2.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,82.1,Everett - Webster Extension,00930001, 13.3, 19.1, 49.1, 17.9, 0.0, 0.0, 0.6, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2022-23,3.8,76.6,Everett - Webster School,00930015, 8.5, 2.7, 64.7, 23.4, 0.0, 0.0, 0.6, 55.0, 45.0, 0.0 -6.429223744292238,5,a-cure-i1,2022-23,35.2,87.6,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 5.7, 1.3, 78.7, 12.4, 0.4, 0.5, 0.9, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,19.5,Fairhaven - East Fairhaven,00940010, 2.2, 1.6, 8.9, 80.5, 0.6, 0.0, 6.1, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.299999999999997,Fairhaven - Fairhaven High,00940505, 1.6, 2.2, 7.6, 84.7, 0.5, 0.0, 3.5, 50.6, 49.3, 0.2 -5.987096774193549,5,a-cure-i1,2022-23,5.8,15.5,Fairhaven - Hastings Middle,00940305, 3.4, 1.4, 6.2, 84.5, 0.7, 0.0, 3.9, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.0,Fairhaven - Leroy Wood,00940030, 2.5, 2.9, 6.8, 83.0, 0.5, 0.0, 4.3, 51.8, 48.2, 0.0 -2.0528301886792457,2.05,a-cure-i1,2022-23,6.800000000000001,53.0,Fall River - B M C Durfee High,00950505, 10.3, 4.3, 30.4, 47.0, 0.2, 0.0, 7.7, 49.3, 50.6, 0.1 -1.4402618657937807,1.44,a-cure-i1,2022-23,5.5,61.1,Fall River - Carlton M. Viveiros Elementary School,00950009, 9.2, 2.7, 38.2, 38.9, 0.1, 0.0, 10.8, 50.1, 49.9, 0.0 -4.976671850699844,4.98,a-cure-i1,2022-23,20.0,64.3,Fall River - Early Learning Center,00950001, 7.1, 3.6, 39.3, 35.7, 0.0, 0.0, 14.3, 67.9, 32.1, 0.0 -1.4400000000000002,1.44,a-cure-i1,2022-23,5.4,60.0,Fall River - Henry Lord Community School,00950017, 10.2, 1.7, 38.3, 40.0, 0.4, 0.0, 9.4, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.5,Fall River - James Tansey,00950140, 6.5, 2.2, 13.8, 68.5, 0.0, 0.0, 9.1, 49.3, 50.4, 0.4 -1.4222222222222223,1.42,a-cure-i1,2022-23,5.2,58.5,Fall River - John J Doran,00950045, 10.2, 0.6, 33.2, 41.5, 0.0, 0.0, 14.5, 52.8, 47.2, 0.0 -2.750413223140496,2.75,a-cure-i1,2022-23,10.4,60.5,Fall River - Letourneau Elementary School,00950013, 9.4, 2.5, 38.9, 39.5, 0.0, 0.0, 9.7, 53.4, 46.6, 0.0 -2.9219440353460966,2.92,a-cure-i1,2022-23,12.399999999999999,67.9,Fall River - Mary Fonseca Elementary School,00950011, 13.4, 2.2, 43.2, 32.1, 0.3, 0.0, 8.8, 50.0, 50.0, 0.0 -2.98932384341637,2.99,a-cure-i1,2022-23,10.5,56.2,Fall River - Matthew J Kuss Middle,00950320, 9.7, 4.0, 33.1, 43.8, 0.1, 0.0, 9.2, 51.6, 48.4, 0.0 -2.989010989010989,2.99,a-cure-i1,2022-23,8.5,45.5,Fall River - Morton Middle,00950315, 16.7, 4.8, 22.3, 54.5, 0.1, 0.0, 1.6, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,47.2,Fall River - North End Elementary,00950005, 20.4, 3.1, 20.1, 52.8, 0.0, 0.0, 3.6, 50.8, 49.2, 0.0 -2.1492537313432836,2.15,a-cure-i1,2022-23,9.0,67.0,Fall River - Resiliency Preparatory Academy,00950525, 21.3, 0.5, 33.0, 33.0, 0.0, 0.0, 12.2, 61.9, 38.1, 0.0 -1.844155844155844,1.84,a-cure-i1,2022-23,7.1,61.6,Fall River - Samuel Watson,00950145, 11.6, 2.5, 31.8, 38.4, 0.0, 0.8, 14.9, 47.1, 52.9, 0.0 -3.976878612716763,3.98,a-cure-i1,2022-23,12.899999999999999,51.9,Fall River - Spencer Borden,00950130, 14.1, 5.4, 22.9, 48.1, 0.0, 0.0, 9.5, 53.8, 46.2, 0.0 -3.874439461883408,3.87,a-cure-i1,2022-23,10.8,44.6,Fall River - Stone PK-12 School,00950340, 9.5, 0.0, 23.0, 55.4, 1.4, 1.4, 9.5, 68.9, 31.1, 0.0 -3.9069767441860463,3.91,a-cure-i1,2022-23,14.7,60.2,Fall River - Talbot Innovation School,00950305, 10.9, 3.0, 37.5, 39.8, 0.4, 0.0, 8.4, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,63.0,Fall River - William S Greene,00950065, 12.1, 4.3, 34.7, 37.0, 0.4, 0.1, 11.4, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,25.5,Falmouth - East Falmouth Elementary,00960005, 5.0, 3.2, 8.9, 74.5, 0.7, 0.0, 7.8, 59.2, 40.8, 0.0 -1,1,a-cure-i1,2022-23,4.1,23.5,Falmouth - Falmouth High,00960505, 5.6, 1.7, 8.7, 76.5, 1.4, 0.0, 6.0, 52.5, 46.6, 0.9 -5.139896373056995,5,a-cure-i1,2022-23,6.199999999999999,19.299999999999997,Falmouth - Lawrence,00960405, 4.8, 0.8, 7.8, 80.7, 0.6, 0.0, 5.2, 49.7, 49.9, 0.4 -3.2,3.2,a-cure-i1,2022-23,5.4,27.0,Falmouth - Morse Pond School,00960305, 6.0, 1.5, 9.5, 73.0, 1.7, 0.0, 8.3, 55.4, 44.4, 0.2 -3.727598566308243,3.73,a-cure-i1,2022-23,6.5,27.900000000000006,Falmouth - Mullen-Hall,00960020, 2.4, 1.8, 14.5, 72.1, 1.1, 0.0, 8.2, 50.8, 49.2, 0.0 -7.859649122807021,5,a-cure-i1,2022-23,8.4,17.099999999999994,Falmouth - North Falmouth Elementary,00960030, 2.5, 1.0, 7.6, 82.9, 0.0, 0.0, 6.0, 45.7, 54.3, 0.0 -5.128919860627176,5,a-cure-i1,2022-23,9.2,28.700000000000003,Falmouth - Teaticket,00960015, 5.7, 1.5, 10.6, 71.3, 1.9, 0.0, 9.1, 52.8, 46.0, 1.1 -1,1,a-cure-i1,2022-23,4.9,2.5,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 47.5, 52.5, 0.0 -1.206030150753769,1.21,a-cure-i1,2022-23,6.0,79.6,Fitchburg - Arthur M Longsjo Middle School,00970315, 6.6, 5.3, 60.5, 20.4, 0.3, 0.0, 6.8, 52.0, 48.0, 0.0 -1.8649006622516557,1.86,a-cure-i1,2022-23,8.8,75.5,Fitchburg - Crocker Elementary,00970016, 8.1, 3.2, 56.8, 24.5, 0.0, 0.0, 7.3, 49.2, 50.8, 0.0 -4.438709677419355,4.44,a-cure-i1,2022-23,21.5,77.5,Fitchburg - Fitchburg High,00970505, 8.7, 5.6, 57.1, 22.5, 0.0, 0.0, 6.2, 49.7, 50.2, 0.1 -5.647058823529412,5,a-cure-i1,2022-23,22.2,62.9,Fitchburg - Goodrich Academy,00970510, 4.1, 1.5, 48.5, 37.1, 0.0, 0.0, 8.8, 45.9, 54.1, 0.0 -1.281602002503129,1.28,a-cure-i1,2022-23,6.4,79.9,Fitchburg - McKay Elementary School,00970340, 5.8, 5.1, 61.6, 20.1, 0.0, 0.0, 7.4, 56.0, 44.0, 0.0 -2.520393811533052,2.52,a-cure-i1,2022-23,11.2,71.1,Fitchburg - Memorial Middle School,00970048, 5.2, 2.9, 56.1, 28.9, 0.0, 0.0, 6.9, 49.4, 50.3, 0.3 -1.8599105812220569,1.86,a-cure-i1,2022-23,7.800000000000001,67.1,Fitchburg - Reingold Elementary,00970043, 5.7, 4.0, 51.3, 32.9, 0.0, 0.0, 6.1, 55.3, 44.7, 0.0 -2.4960000000000004,2.5,a-cure-i1,2022-23,11.700000000000001,75.0,Fitchburg - South Street Early Learning Center,00970060, 7.1, 3.9, 56.7, 25.0, 0.0, 0.0, 7.3, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,1.0999999999999943,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 55.4, 44.6, 0.0 -12.503311258278151,5,a-cure-i1,2022-23,11.8,15.099999999999994,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 1.4, 1.8, 6.8, 84.9, 0.0, 0.0, 5.0, 47.9, 50.7, 1.4 -1,1,a-cure-i1,2022-23,3.8,22.0,Foxborough - Charles Taylor Elementary,00990050, 5.9, 4.3, 7.9, 78.0, 0.0, 0.0, 3.9, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.799999999999997,Foxborough - Foxborough High,00990505, 9.1, 3.5, 7.6, 77.2, 0.4, 0.0, 2.3, 50.4, 49.5, 0.1 -2.9039145907473314,2.9,a-cure-i1,2022-23,5.1,28.099999999999994,Foxborough - John J Ahern,00990405, 6.5, 6.4, 9.4, 71.9, 0.3, 0.1, 5.3, 52.0, 48.0, 0.0 -3.851851851851853,3.85,a-cure-i1,2022-23,5.2,21.599999999999994,Foxborough - Mabelle M Burrell,00990015, 6.3, 5.1, 6.6, 78.4, 0.3, 0.0, 3.3, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.599999999999994,Foxborough - Vincent M Igo Elementary,00990020, 8.5, 7.1, 11.6, 68.4, 0.0, 0.0, 4.5, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,80.4,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 60.2, 8.2, 6.2, 19.6, 0.5, 0.2, 5.2, 48.1, 51.9, 0.0 -10.654335260115607,5,a-cure-i1,2022-23,57.6,86.5,Framingham - Barbieri Elementary,01000035, 1.7, 0.4, 81.2, 13.5, 0.0, 0.0, 3.2, 47.1, 52.9, 0.0 -5.491251682368776,5,a-cure-i1,2022-23,25.5,74.3,Framingham - Brophy,01000006, 5.7, 3.5, 60.6, 25.7, 0.2, 0.0, 4.3, 53.2, 46.6, 0.2 -6.842767295597484,5,a-cure-i1,2022-23,20.4,47.7,Framingham - Cameron Middle School,01000302, 6.1, 2.0, 35.6, 52.3, 0.0, 0.0, 4.0, 54.8, 45.2, 0.0 -2.6723044397463003,2.67,a-cure-i1,2022-23,7.9,47.3,Framingham - Charlotte A Dunning,01000007, 5.3, 7.2, 29.8, 52.7, 0.0, 0.0, 5.1, 51.3, 48.5, 0.2 -4.8432432432432435,4.84,a-cure-i1,2022-23,16.8,55.5,Framingham - Framingham High School,01000515, 5.9, 4.3, 41.5, 44.5, 0.0, 0.0, 3.7, 50.2, 49.5, 0.3 -4.897038081805359,4.9,a-cure-i1,2022-23,21.7,70.9,Framingham - Fuller Middle,01000305, 6.8, 1.5, 58.9, 29.1, 0.0, 0.0, 3.7, 51.8, 47.9, 0.3 -2.4736196319018404,2.47,a-cure-i1,2022-23,12.6,81.5,Framingham - Harmony Grove Elementary,01000055, 7.3, 1.2, 70.6, 18.5, 0.0, 0.0, 2.4, 54.8, 45.0, 0.2 -1,1,a-cure-i1,2022-23,4.8,52.1,Framingham - Hemenway,01000015, 7.2, 10.3, 26.3, 47.9, 0.0, 0.0, 8.3, 52.1, 47.7, 0.2 -1,1,a-cure-i1,2022-23,4.9,58.7,Framingham - Juniper Hill School,01000001, 5.2, 7.4, 37.2, 41.3, 0.0, 0.0, 8.9, 63.9, 36.1, 0.0 -1,1,a-cure-i1,2022-23,4.2,52.0,Framingham - King Elementary School,01000005, 3.8, 8.4, 31.9, 48.0, 0.0, 0.0, 7.9, 50.8, 49.0, 0.3 -1.707317073170732,1.71,a-cure-i1,2022-23,7.0,65.6,Framingham - Mary E Stapleton Elementary,01000045, 8.5, 4.4, 45.2, 34.4, 0.0, 0.0, 7.6, 52.2, 47.8, 0.0 -1.5716234652114596,1.57,a-cure-i1,2022-23,7.199999999999999,73.3,Framingham - Miriam F McCarthy School,01000050, 10.0, 2.7, 53.1, 26.7, 0.0, 0.0, 7.5, 52.7, 47.3, 0.0 -1.9644588045234248,1.96,a-cure-i1,2022-23,7.6,61.9,Framingham - Potter Road,01000039, 5.9, 1.3, 50.1, 38.1, 0.0, 0.0, 4.6, 51.6, 48.4, 0.0 -4.51063829787234,4.51,a-cure-i1,2022-23,15.9,56.4,Framingham - Walsh Middle,01000310, 5.1, 4.9, 42.6, 43.6, 0.0, 0.0, 3.8, 45.8, 53.6, 0.6 -17.954198473282453,5,a-cure-i1,2022-23,14.700000000000001,13.099999999999994,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 2.1, 3.1, 3.9, 86.9, 0.0, 0.0, 4.1, 44.1, 51.8, 4.1 -1,1,a-cure-i1,2022-23,0.0,15.700000000000003,Franklin - Annie Sullivan Middle School,01010040, 2.8, 3.8, 5.3, 84.3, 0.0, 1.3, 2.5, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,36.9,Franklin - Franklin Early Childhood Development Center,01010003, 4.0, 24.2, 6.7, 63.1, 0.7, 0.0, 1.3, 59.1, 40.9, 0.0 -1,1,a-cure-i1,2022-23,1.1,18.700000000000003,Franklin - Franklin High,01010505, 2.6, 7.9, 5.5, 81.3, 0.1, 0.2, 2.3, 50.2, 49.2, 0.6 -1,1,a-cure-i1,2022-23,0.0,16.200000000000003,Franklin - Helen Keller Elementary,01010012, 2.1, 5.3, 6.6, 83.8, 0.0, 0.6, 1.7, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.799999999999997,Franklin - Horace Mann,01010405, 0.5, 8.2, 5.3, 82.2, 0.3, 1.1, 2.4, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.799999999999997,Franklin - J F Kennedy Memorial,01010013, 0.0, 7.7, 4.1, 85.2, 0.0, 1.2, 1.8, 58.0, 41.7, 0.3 -1,1,a-cure-i1,2022-23,0.0,20.599999999999994,Franklin - Jefferson Elementary,01010010, 2.0, 6.3, 7.4, 79.4, 0.0, 0.6, 4.3, 57.0, 42.7, 0.3 -1,1,a-cure-i1,2022-23,4.2,20.900000000000006,Franklin - Oak Street Elementary,01010030, 1.7, 6.9, 7.2, 79.1, 0.6, 0.6, 4.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.0,Franklin - Parmenter,01010032, 5.2, 7.3, 10.0, 73.0, 0.0, 0.7, 3.8, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,3.1,22.099999999999994,Franklin - Remington Middle,01010310, 4.9, 7.4, 7.4, 77.9, 0.0, 0.3, 2.2, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.599999999999994,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.0, 0.2, 6.1, 89.4, 0.3, 0.3, 2.7, 57.3, 42.7, 0.0 -1,1,a-cure-i1,2022-23,3.7,6.900000000000006,Freetown-Lakeville - Apponequet Regional High,06650505, 2.7, 0.8, 1.9, 93.1, 0.0, 0.0, 1.4, 47.1, 52.5, 0.4 -1,1,a-cure-i1,2022-23,0.0,11.599999999999994,Freetown-Lakeville - Assawompset Elementary School,06650002, 3.9, 0.4, 3.2, 88.4, 0.0, 0.2, 3.9, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.299999999999997,Freetown-Lakeville - Freetown Elementary School,06650001, 0.5, 0.7, 2.6, 93.7, 0.0, 0.0, 2.6, 52.6, 47.4, 0.0 -7.843137254901959,5,a-cure-i1,2022-23,5.0,10.200000000000003,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 3.9, 1.2, 1.9, 89.8, 0.1, 0.0, 3.1, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.299999999999997,Freetown-Lakeville - George R Austin Intermediate School,06650015, 2.6, 0.4, 4.6, 88.7, 0.0, 0.0, 3.5, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2022-23,3.7,16.200000000000003,Frontier - Frontier Regional,06700505, 1.7, 3.6, 6.3, 83.8, 0.0, 0.0, 4.6, 52.0, 47.5, 0.5 -1,1,a-cure-i1,2022-23,0.0,28.700000000000003,Gardner - Gardner Academy for Learning and Technology,01030515, 5.6, 0.9, 16.7, 71.3, 0.0, 0.0, 5.6, 39.8, 59.3, 0.9 -1,1,a-cure-i1,2022-23,4.4,39.6,Gardner - Gardner Elementary School,01030001, 2.5, 1.4, 29.0, 60.4, 0.3, 0.0, 6.3, 54.9, 45.0, 0.1 -3.2251308900523554,3.23,a-cure-i1,2022-23,7.699999999999999,38.2,Gardner - Gardner High,01030505, 4.0, 1.2, 24.1, 61.8, 0.2, 0.0, 8.6, 52.2, 47.3, 0.5 -1,1,a-cure-i1,2022-23,0.0,40.9,Gardner - Gardner Middle School,01030405, 3.5, 2.2, 28.4, 59.1, 0.4, 0.0, 6.3, 46.4, 53.4, 0.2 -1,1,a-cure-i1,2022-23,0.0,4.799999999999997,Gateway - Chester Elementary,06720059, 0.0, 0.8, 2.4, 95.2, 0.0, 0.0, 1.6, 53.6, 46.4, 0.0 -8.068376068376066,5,a-cure-i1,2022-23,5.9,11.700000000000003,Gateway - Gateway Regional High,06720505, 1.8, 0.0, 8.0, 88.3, 1.2, 0.0, 0.6, 49.7, 50.3, 0.0 -22.028985507246357,5,a-cure-i1,2022-23,9.5,6.900000000000006,Gateway - Gateway Regional Middle School,06720405, 0.5, 0.5, 3.2, 93.1, 0.0, 0.0, 2.7, 54.3, 45.2, 0.5 -1,1,a-cure-i1,2022-23,0.0,10.0,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 7.0, 90.0, 0.0, 0.3, 2.7, 50.2, 49.8, 0.0 -9.422222222222222,5,a-cure-i1,2022-23,5.3,9.0,Georgetown - Georgetown High School,01050505, 1.0, 0.7, 5.7, 91.0, 0.0, 0.7, 1.0, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,2.5,9.099999999999994,Georgetown - Georgetown Middle School,01050305, 2.2, 1.6, 4.3, 90.9, 0.0, 0.0, 1.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.400000000000006,Georgetown - Penn Brook,01050010, 0.6, 0.7, 3.8, 91.6, 0.0, 0.0, 3.3, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,1.2000000000000028,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.400000000000006,Gill-Montague - Gill Elementary,06740005, 1.0, 0.0, 4.8, 88.6, 0.0, 0.0, 5.7, 49.5, 50.5, 0.0 -4.476683937823835,4.48,a-cure-i1,2022-23,5.4,19.299999999999997,Gill-Montague - Great Falls Middle,06740310, 0.5, 0.0, 11.6, 80.7, 0.0, 0.5, 6.8, 55.6, 44.0, 0.5 -1,1,a-cure-i1,2022-23,0.0,25.299999999999997,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.7, 16.4, 74.7, 0.7, 0.0, 7.5, 55.5, 44.5, 0.0 -4.228571428571429,4.23,a-cure-i1,2022-23,7.4,28.0,Gill-Montague - Sheffield Elementary School,06740050, 3.3, 0.5, 19.4, 72.0, 0.0, 0.0, 4.7, 55.9, 44.1, 0.0 -3.347692307692308,3.35,a-cure-i1,2022-23,6.800000000000001,32.5,Gill-Montague - Turners Fall High,06740505, 3.1, 0.5, 18.6, 67.5, 0.5, 0.0, 9.8, 54.6, 44.8, 0.5 -3.7064748201438844,3.71,a-cure-i1,2022-23,16.099999999999998,69.5,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 13.8, 1.0, 49.7, 30.5, 0.4, 0.0, 4.6, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.299999999999997,Gloucester - Beeman Memorial,01070010, 2.7, 1.0, 21.3, 70.7, 0.0, 0.0, 4.3, 48.0, 52.0, 0.0 -6.030150753768843,5,a-cure-i1,2022-23,7.5,19.900000000000006,Gloucester - East Gloucester Elementary,01070020, 1.7, 2.2, 13.8, 80.1, 0.0, 0.0, 2.2, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2022-23,3.5,21.400000000000006,Gloucester - Gloucester High,01070505, 1.2, 1.4, 14.2, 78.6, 0.5, 0.5, 3.6, 54.0, 45.5, 0.5 -1,1,a-cure-i1,2022-23,0.0,21.0,Gloucester - Gloucester PreSchool,01070025, 1.0, 4.8, 9.5, 79.0, 0.0, 0.0, 5.7, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.799999999999997,Gloucester - Plum Cove School,01070042, 0.5, 0.0, 6.4, 86.2, 0.0, 0.0, 6.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.400000000000006,Gloucester - Ralph B O'Maley Middle,01070305, 2.1, 1.0, 13.8, 79.6, 0.3, 0.2, 3.1, 51.6, 48.2, 0.2 -2.8426395939086295,2.84,a-cure-i1,2022-23,7.0,39.4,Gloucester - Veterans Memorial,01070045, 5.1, 2.8, 25.0, 60.6, 0.0, 1.4, 5.1, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.400000000000006,Gloucester - West Parish,01070050, 1.1, 1.1, 6.1, 86.6, 0.3, 0.3, 4.5, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,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 -3.7647058823529425,3.76,a-cure-i1,2022-23,5.2,22.099999999999994,Grafton - Grafton High School,01100505, 2.7, 9.1, 7.2, 77.9, 0.2, 0.1, 2.6, 49.5, 50.1, 0.5 -3.569230769230769,3.57,a-cure-i1,2022-23,5.8,26.0,Grafton - Grafton Middle,01100305, 1.5, 13.0, 8.2, 74.0, 0.2, 0.2, 2.9, 51.7, 47.9, 0.4 -1,1,a-cure-i1,2022-23,0.0,29.900000000000006,Grafton - Millbury Street Elementary School,01100200, 1.8, 17.8, 6.9, 70.1, 0.2, 0.0, 3.2, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,32.8,Grafton - North Grafton Elementary,01100025, 4.1, 14.8, 8.6, 67.2, 1.6, 0.0, 3.7, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.799999999999997,Grafton - North Street Elementary School,01100030, 3.5, 14.8, 5.3, 73.2, 0.4, 0.0, 2.9, 49.8, 50.0, 0.2 -1,1,a-cure-i1,2022-23,0.0,33.0,Grafton - South Grafton Elementary,01100005, 3.4, 17.0, 9.2, 67.0, 0.7, 0.0, 2.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.900000000000006,Granby - East Meadow,01110004, 0.7, 2.7, 10.3, 81.1, 0.5, 0.0, 4.7, 51.1, 48.9, 0.0 -9.078014184397167,5,a-cure-i1,2022-23,8.0,14.099999999999994,Granby - Granby Jr Sr High School,01110505, 0.0, 1.9, 10.0, 85.9, 0.3, 0.0, 1.9, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,48.1,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 7.4, 5.6, 26.4, 51.9, 0.0, 0.4, 8.1, 45.0, 53.9, 1.1 -1,1,a-cure-i1,2022-23,3.0999999999999996,27.299999999999997,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 3.4, 2.2, 15.2, 72.7, 0.6, 0.0, 5.9, 57.2, 42.2, 0.6 -2.983372921615202,2.98,a-cure-i1,2022-23,15.700000000000001,84.2,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.6, 0.9, 81.3, 15.8, 0.0, 0.0, 0.5, 47.5, 52.3, 0.2 -2.0913385826771655,2.09,a-cure-i1,2022-23,8.3,63.5,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 6.9, 18.5, 34.8, 36.5, 0.2, 0.0, 3.3, 51.0, 48.0, 1.0 -2.0550458715596327,2.06,a-cure-i1,2022-23,5.6,43.6,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 8.8, 1.0, 28.1, 56.4, 0.2, 0.1, 5.4, 52.7, 47.2, 0.1 -6.72,5,a-cure-i1,2022-23,6.3,15.0,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.9, 10.7, 85.0, 0.0, 0.0, 3.3, 57.9, 42.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,32.099999999999994,Greenfield - Federal Street School,01140010, 3.1, 2.6, 22.3, 67.9, 0.0, 0.0, 4.1, 43.5, 56.5, 0.0 -2.484472049689441,2.48,a-cure-i1,2022-23,5.0,32.2,Greenfield - Greenfield High,01140505, 3.1, 2.0, 20.7, 67.8, 0.2, 0.0, 6.2, 49.6, 50.2, 0.2 -6.0,5,a-cure-i1,2022-23,12.0,32.0,Greenfield - Greenfield Middle,01140305, 2.7, 1.0, 24.0, 68.0, 0.0, 0.0, 4.3, 55.0, 45.0, 0.0 -2.73838630806846,2.74,a-cure-i1,2022-23,7.0,40.9,Greenfield - Newton School,01140035, 3.4, 0.5, 31.0, 59.1, 0.0, 1.0, 4.9, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.400000000000006,Greenfield - The Academy of Early Learning at North Parish,01140005, 1.2, 0.0, 13.4, 75.6, 0.0, 0.0, 9.8, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.799999999999997,Groton-Dunstable - Boutwell School,06730001, 2.1, 6.4, 2.1, 87.2, 0.0, 0.0, 2.1, 58.5, 41.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.099999999999994,Groton-Dunstable - Florence Roche School,06730010, 2.5, 8.0, 5.1, 78.9, 0.6, 0.0, 4.9, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,2.3,12.799999999999997,Groton-Dunstable - Groton Dunstable Regional,06730505, 1.3, 5.9, 3.1, 87.2, 0.1, 0.1, 2.2, 51.0, 48.7, 0.3 -1,1,a-cure-i1,2022-23,2.0,18.0,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 1.9, 8.0, 3.9, 82.0, 0.3, 0.1, 3.7, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,19.799999999999997,Groton-Dunstable - Swallow/Union School,06730005, 1.2, 7.9, 7.3, 80.2, 0.0, 0.0, 3.4, 54.9, 45.1, 0.0 -8.54298642533937,5,a-cure-i1,2022-23,11.8,22.099999999999994,Hadley - Hadley Elementary,01170015, 4.1, 5.5, 9.6, 77.9, 0.4, 0.4, 2.2, 56.5, 43.5, 0.0 -9.05785123966942,5,a-cure-i1,2022-23,13.7,24.200000000000003,Hadley - Hopkins Academy,01170505, 4.5, 3.1, 10.3, 75.8, 0.0, 3.6, 2.7, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.299999999999997,Halifax - Halifax Elementary,01180005, 1.8, 0.0, 5.3, 90.7, 0.4, 0.0, 1.8, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,19.200000000000003,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.8, 6.0, 10.9, 80.8, 0.0, 0.0, 1.5, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.099999999999994,Hamilton-Wenham - Cutler School,06750010, 0.0, 1.2, 5.9, 90.9, 0.0, 0.0, 2.0, 48.8, 51.2, 0.0 -6.7096774193548345,5,a-cure-i1,2022-23,5.199999999999999,12.400000000000006,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.4, 5.1, 3.8, 87.6, 0.0, 0.0, 3.1, 45.8, 54.0, 0.2 -12.129032258064509,5,a-cure-i1,2022-23,9.399999999999999,12.400000000000006,Hamilton-Wenham - Miles River Middle,06750310, 0.3, 3.8, 3.5, 87.6, 0.0, 0.8, 4.0, 45.6, 54.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.700000000000003,Hamilton-Wenham - Winthrop School,06750015, 1.0, 5.4, 4.8, 86.3, 0.0, 0.0, 2.6, 49.5, 50.5, 0.0 -2.1108179419525066,2.11,a-cure-i1,2022-23,10.0,75.8,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 28.2, 3.3, 41.0, 24.2, 0.5, 0.0, 2.7, 52.1, 47.4, 0.5 -4.91743119266055,4.92,a-cure-i1,2022-23,13.4,43.6,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 11.7, 1.1, 28.6, 56.4, 0.3, 0.0, 1.9, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.099999999999994,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.9, 0.0, 12.6, 81.9, 0.0, 0.0, 2.6, 52.4, 47.6, 0.0 -5.442176870748298,5,a-cure-i1,2022-23,5.0,14.700000000000003,Hampden-Wilbraham - Mile Tree Elementary,06800025, 2.3, 1.7, 5.6, 85.3, 0.0, 0.0, 5.1, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,1.6,22.099999999999994,Hampden-Wilbraham - Minnechaug Regional High,06800505, 4.0, 2.9, 10.5, 77.9, 0.3, 0.0, 4.4, 50.4, 49.5, 0.1 -1,1,a-cure-i1,2022-23,0.0,16.099999999999994,Hampden-Wilbraham - Soule Road,06800030, 3.2, 2.6, 6.5, 83.9, 0.0, 0.6, 3.2, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.5,Hampden-Wilbraham - Stony Hill School,06800050, 3.0, 1.7, 7.9, 84.5, 0.0, 0.0, 3.0, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,19.400000000000006,Hampden-Wilbraham - Wilbraham Middle,06800310, 2.8, 2.5, 10.0, 80.6, 0.0, 0.0, 4.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.099999999999994,Hampshire - Hampshire Regional High,06830505, 0.6, 1.7, 5.0, 89.9, 0.2, 0.0, 2.7, 47.1, 52.1, 0.8 -1,1,a-cure-i1,2022-23,0.0,15.299999999999997,Hancock - Hancock Elementary,01210005, 3.4, 3.4, 5.1, 84.7, 0.0, 0.0, 3.4, 39.0, 61.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.900000000000006,Hanover - Cedar Elementary,01220004, 1.7, 0.9, 3.8, 91.1, 0.0, 0.0, 2.6, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,3.1,7.200000000000003,Hanover - Center Elementary,01220005, 1.4, 2.3, 2.3, 92.8, 0.2, 0.0, 0.9, 49.5, 50.4, 0.2 -1,1,a-cure-i1,2022-23,3.8,7.200000000000003,Hanover - Hanover High,01220505, 1.5, 2.8, 2.1, 92.8, 0.0, 0.0, 0.7, 51.4, 48.4, 0.1 -1,1,a-cure-i1,2022-23,1.8,7.0,Hanover - Hanover Middle,01220305, 1.0, 1.7, 3.1, 93.0, 0.0, 0.0, 1.1, 52.7, 47.3, 0.0 -4.806584362139918,4.81,a-cure-i1,2022-23,7.3,24.299999999999997,Harvard - Bromfield,01250505, 2.9, 14.1, 3.2, 75.7, 0.0, 0.0, 4.1, 48.9, 50.9, 0.2 -1,1,a-cure-i1,2022-23,3.1,29.299999999999997,Harvard - Hildreth Elementary School,01250005, 2.6, 12.6, 5.4, 70.7, 0.2, 0.0, 8.5, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.0,Hatfield - Hatfield Elementary,01270005, 0.5, 0.9, 2.8, 92.0, 0.0, 0.0, 3.8, 47.6, 51.9, 0.5 -17.77777777777778,5,a-cure-i1,2022-23,5.0,4.5,Hatfield - Smith Academy,01270505, 0.0, 0.0, 3.8, 95.5, 0.0, 0.0, 0.8, 58.6, 41.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,62.9,Haverhill - Bartlett School and Assessment Center,01280073, 11.4, 0.0, 48.6, 37.1, 0.0, 0.0, 2.9, 77.1, 22.9, 0.0 -2.519480519480519,2.52,a-cure-i1,2022-23,9.7,61.6,Haverhill - Bradford Elementary,01280008, 5.1, 1.4, 53.1, 38.4, 0.0, 0.0, 2.0, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2022-23,3.3,38.1,Haverhill - Caleb Dustin Hunking School,01280030, 5.2, 2.1, 27.9, 61.9, 0.0, 0.0, 3.0, 51.6, 48.3, 0.1 -1,1,a-cure-i1,2022-23,2.5,64.9,Haverhill - Consentino Middle School,01280100, 4.9, 2.0, 54.4, 35.1, 0.0, 0.0, 3.6, 53.0, 47.0, 0.0 -2.3003194888178915,2.3,a-cure-i1,2022-23,9.0,62.6,Haverhill - Dr Paul Nettle,01280050, 3.9, 1.9, 54.2, 37.4, 0.0, 0.0, 2.6, 51.4, 48.6, 0.0 -4.155143338954469,4.16,a-cure-i1,2022-23,15.4,59.3,Haverhill - Gateway Academy,01280515, 4.9, 1.2, 50.6, 40.7, 0.0, 0.0, 2.5, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,52.4,Haverhill - Golden Hill,01280026, 3.8, 1.9, 44.6, 47.6, 0.2, 0.0, 1.9, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,68.7,Haverhill - Greenleaf Academy,01280033, 6.3, 0.0, 56.3, 31.3, 3.1, 0.0, 3.1, 75.0, 25.0, 0.0 -4.176706827309237,4.18,a-cure-i1,2022-23,13.0,49.8,Haverhill - Haverhill High,01280505, 5.9, 1.8, 39.9, 50.2, 0.3, 0.3, 1.6, 52.6, 47.2, 0.3 -2.3572744014732967,2.36,a-cure-i1,2022-23,8.0,54.3,Haverhill - John G Whittier,01280085, 5.4, 1.2, 44.4, 45.7, 0.4, 0.0, 2.9, 51.0, 48.6, 0.4 -1,1,a-cure-i1,2022-23,0.0,55.0,Haverhill - Moody,01280045, 9.4, 3.3, 39.4, 45.0, 0.0, 1.1, 1.7, 58.9, 41.1, 0.0 -3.5918367346938775,3.59,a-cure-i1,2022-23,14.3,63.7,Haverhill - Moody Preschool Extension,01280001, 8.8, 2.0, 51.0, 36.3, 0.0, 0.0, 2.0, 57.8, 42.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,60.5,Haverhill - Pentucket Lake Elementary,01280054, 9.6, 0.8, 46.8, 39.5, 0.4, 0.0, 2.9, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,3.8,63.5,Haverhill - Silver Hill Elementary School,01280067, 7.0, 3.2, 50.1, 36.5, 0.0, 0.0, 3.2, 47.1, 52.9, 0.0 -1.3215339233038348,1.32,a-cure-i1,2022-23,5.6,67.8,Haverhill - Tilton,01280075, 5.1, 0.0, 59.7, 32.2, 0.3, 0.7, 2.0, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,66.7,Haverhill - Tilton Upper Middle School,01280105, 3.5, 1.2, 59.1, 33.3, 0.0, 0.0, 2.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,44.9,Haverhill - Walnut Square,01280080, 5.9, 1.5, 36.0, 55.1, 0.0, 0.0, 1.5, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.099999999999994,Hawlemont - Hawlemont Regional,06850005, 0.0, 5.5, 4.4, 87.9, 1.1, 0.0, 1.1, 45.1, 54.9, 0.0 -11.92,5,a-cure-i1,2022-23,74.5,100.0,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 77.2, 0.9, 20.2, 0.0, 0.0, 0.9, 0.9, 53.5, 46.5, 0.0 -3.8110882956878847,3.81,a-cure-i1,2022-23,11.6,48.7,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 5.9, 0.0, 36.9, 51.3, 0.0, 0.0, 5.9, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,3.6,18.0,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.3, 4.6, 82.0, 0.0, 0.0, 11.1, 56.2, 41.5, 2.3 -1,1,a-cure-i1,2022-23,3.2,7.799999999999997,Hingham - East Elementary School,01310005, 1.8, 1.8, 2.0, 92.2, 0.0, 0.0, 2.2, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2022-23,0.9,12.200000000000003,Hingham - Hingham High,01310505, 1.6, 3.6, 3.8, 87.8, 0.1, 0.0, 3.1, 52.8, 46.9, 0.3 -7.757575757575756,5,a-cure-i1,2022-23,6.4,13.200000000000003,Hingham - Hingham Middle School,01310410, 1.7, 2.3, 5.0, 86.8, 0.0, 0.0, 4.3, 50.6, 49.3, 0.1 -1,1,a-cure-i1,2022-23,0.0,13.400000000000006,Hingham - Plymouth River,01310019, 3.7, 1.8, 5.0, 86.6, 0.0, 0.3, 2.6, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,3.7,9.599999999999994,Hingham - South Elementary,01310020, 1.4, 5.0, 1.8, 90.4, 0.0, 0.0, 1.4, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.599999999999994,Hingham - Wm L Foster Elementary,01310010, 1.0, 1.7, 3.7, 86.4, 0.0, 0.2, 6.9, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,57.8,Holbrook - Holbrook Middle High School,01330505, 25.4, 7.2, 17.5, 42.2, 0.3, 0.0, 7.4, 52.9, 46.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,52.3,Holbrook - John F Kennedy,01330018, 21.5, 4.7, 17.2, 47.7, 0.3, 0.0, 8.6, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.799999999999997,Holland - Holland Elementary,01350005, 0.4, 1.3, 4.8, 92.2, 0.4, 0.0, 0.9, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,2.6,19.400000000000006,Holliston - Holliston High,01360505, 0.7, 7.6, 7.2, 80.6, 0.6, 0.4, 2.8, 51.4, 47.7, 1.0 -5.931707317073171,5,a-cure-i1,2022-23,7.6,20.5,Holliston - Miller School,01360007, 1.5, 10.4, 5.0, 79.5, 0.2, 0.2, 3.3, 51.3, 48.5, 0.2 -1,1,a-cure-i1,2022-23,3.4,19.099999999999994,Holliston - Placentino Elementary,01360010, 2.0, 12.8, 1.7, 80.9, 0.6, 0.9, 1.1, 55.3, 44.4, 0.3 -9.908256880733948,5,a-cure-i1,2022-23,13.500000000000002,21.799999999999997,Holliston - Robert H. Adams Middle School,01360305, 1.2, 11.1, 4.7, 78.2, 0.6, 0.2, 4.0, 51.5, 48.1, 0.5 -7.28421052631579,5,a-cure-i1,2022-23,34.6,76.0,Holyoke - E N White Elementary,01370045, 3.9, 0.5, 68.3, 24.0, 0.0, 0.0, 3.4, 52.1, 47.9, 0.0 -1.1858216970998927,1.19,a-cure-i1,2022-23,6.9,93.1,Holyoke - H.B. Lawrence School,01370070, 5.8, 0.6, 84.4, 6.9, 0.0, 0.0, 2.3, 50.9, 49.1, 0.0 -4.971231300345224,4.97,a-cure-i1,2022-23,27.0,86.9,Holyoke - Holyoke High,01370505, 3.4, 0.5, 81.7, 13.1, 0.0, 0.0, 1.3, 53.2, 46.5, 0.3 -4.29826353421859,4.3,a-cure-i1,2022-23,26.299999999999997,97.9,Holyoke - Holyoke Middle School,01370325, 3.2, 0.7, 93.6, 2.1, 0.0, 0.0, 0.4, 53.4, 46.6, 0.0 -3.7811408614668216,3.78,a-cure-i1,2022-23,20.3,85.9,Holyoke - Holyoke STEM Academy,01370320, 2.8, 0.3, 81.4, 14.1, 0.0, 0.0, 1.4, 55.2, 44.8, 0.0 -11.102850061957868,5,a-cure-i1,2022-23,56.0,80.7,Holyoke - Joseph Metcalf School,01370003, 2.1, 0.0, 77.2, 19.3, 0.0, 0.0, 1.3, 48.8, 51.2, 0.0 -5.050882658359294,5,a-cure-i1,2022-23,30.4,96.3,Holyoke - Kelly Elementary,01370040, 4.6, 0.0, 90.8, 3.7, 0.0, 0.0, 0.9, 49.2, 50.8, 0.0 -3.903296703296703,3.9,a-cure-i1,2022-23,22.2,91.0,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.8, 1.8, 84.5, 9.0, 0.0, 0.0, 2.0, 53.6, 46.4, 0.0 -2.8054794520547945,2.81,a-cure-i1,2022-23,12.8,73.0,Holyoke - Lt Elmer J McMahon Elementary,01370015, 2.4, 2.1, 65.3, 27.0, 0.0, 0.0, 3.3, 55.8, 44.2, 0.0 -4.280936454849498,4.28,a-cure-i1,2022-23,24.0,89.7,Holyoke - Maurice A Donahue Elementary,01370060, 4.4, 0.6, 83.1, 10.3, 0.0, 0.3, 1.4, 58.6, 41.4, 0.0 -4.102145045965271,4.1,a-cure-i1,2022-23,25.1,97.9,Holyoke - Morgan Full Service Community School,01370025, 4.6, 0.0, 91.9, 2.1, 0.0, 0.0, 1.4, 47.0, 53.0, 0.0 -5.11431742508324,5,a-cure-i1,2022-23,28.799999999999997,90.1,Holyoke - William R. Peck School,01370030, 6.8, 0.0, 78.6, 9.9, 0.0, 0.0, 4.7, 52.1, 47.9, 0.0 -4.640837696335079,4.64,a-cure-i1,2022-23,27.7,95.5,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.3, 0.7, 92.6, 4.5, 0.0, 0.0, 0.9, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.799999999999997,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.9, 1.3, 5.3, 87.2, 0.0, 0.3, 4.0, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.5,Hoosac Valley Regional - Hoosac Valley High School,06030505, 3.7, 0.3, 3.1, 89.5, 0.3, 0.0, 3.1, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.0,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 2.4, 0.0, 4.5, 91.0, 0.0, 0.0, 2.1, 50.3, 49.3, 0.3 -4.39378238341969,4.39,a-cure-i1,2022-23,5.3,19.299999999999997,Hopedale - Hopedale Jr Sr High,01380505, 1.8, 3.2, 11.2, 80.7, 0.2, 0.5, 2.3, 49.8, 49.5, 0.7 -1,1,a-cure-i1,2022-23,0.0,21.099999999999994,Hopedale - Memorial,01380010, 0.7, 1.6, 11.7, 78.9, 0.5, 0.0, 6.5, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.599999999999994,Hopedale - Park Street School,01380003, 0.0, 2.9, 8.8, 82.4, 0.0, 0.0, 5.9, 55.9, 44.1, 0.0 -2.7719298245614037,2.77,a-cure-i1,2022-23,7.9,45.6,Hopkinton - Elmwood,01390010, 0.6, 34.4, 4.3, 54.4, 0.3, 0.0, 5.9, 51.2, 48.8, 0.0 -2.0395604395604394,2.04,a-cure-i1,2022-23,5.8,45.5,Hopkinton - Hopkins Elementary School,01390015, 0.5, 34.1, 4.9, 54.5, 0.2, 0.0, 5.9, 49.8, 50.2, 0.0 -2.624605678233438,2.62,a-cure-i1,2022-23,5.2,31.700000000000003,Hopkinton - Hopkinton High,01390505, 1.1, 21.6, 4.9, 68.3, 0.2, 0.0, 3.8, 49.8, 49.8, 0.3 -1,1,a-cure-i1,2022-23,4.6,36.5,Hopkinton - Hopkinton Middle School,01390305, 0.6, 27.8, 3.6, 63.5, 0.3, 0.0, 4.2, 50.8, 49.0, 0.2 -1,1,a-cure-i1,2022-23,0.0,55.6,Hopkinton - Hopkinton Pre-School,01390003, 3.0, 37.4, 8.1, 44.4, 0.0, 0.0, 7.1, 52.5, 47.5, 0.0 -1.9779249448123621,1.98,a-cure-i1,2022-23,5.6,45.3,Hopkinton - Marathon Elementary School,01390005, 1.2, 30.4, 5.2, 54.7, 0.2, 0.0, 8.3, 52.9, 47.0, 0.2 -3.7866666666666666,3.79,a-cure-i1,2022-23,7.1,30.0,Hudson - C A Farley,01410030, 3.0, 1.4, 22.3, 70.0, 0.0, 0.0, 3.3, 47.7, 52.3, 0.0 -3.10077519379845,3.1,a-cure-i1,2022-23,5.0,25.799999999999997,Hudson - David J. Quinn Middle School,01410410, 2.0, 1.3, 18.5, 74.2, 0.2, 0.0, 3.9, 53.9, 45.7, 0.4 -1,1,a-cure-i1,2022-23,0.0,25.700000000000003,Hudson - Forest Avenue Elementary,01410015, 3.2, 0.7, 19.4, 74.3, 0.4, 0.0, 2.1, 49.6, 50.4, 0.0 -5.196581196581195,5,a-cure-i1,2022-23,7.6,23.400000000000006,Hudson - Hudson High,01410505, 2.8, 2.0, 15.7, 76.6, 0.1, 0.1, 2.6, 46.0, 53.7, 0.2 -1,1,a-cure-i1,2022-23,0.0,22.200000000000003,Hudson - Mulready Elementary,01410007, 2.9, 1.6, 14.8, 77.8, 0.0, 0.0, 2.9, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.599999999999994,Hull - Hull High,01420505, 1.7, 0.4, 3.3, 93.4, 0.0, 0.0, 1.2, 55.6, 43.2, 1.2 -1,1,a-cure-i1,2022-23,0.0,11.599999999999994,Hull - Lillian M Jacobs,01420015, 2.8, 1.4, 4.4, 88.4, 0.3, 0.0, 2.8, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.599999999999994,Hull - Memorial Middle,01420305, 1.7, 2.9, 3.5, 88.4, 0.6, 0.0, 2.9, 49.4, 50.6, 0.0 -5.473684210526316,5,a-cure-i1,2022-23,13.0,38.0,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 8.7, 9.0, 14.1, 62.0, 0.4, 0.0, 5.8, 49.3, 50.2, 0.5 -1,1,a-cure-i1,2022-23,0.0,14.900000000000006,Ipswich - Ipswich High,01440505, 1.8, 1.8, 7.6, 85.1, 0.2, 0.0, 3.6, 48.0, 51.8, 0.2 -1,1,a-cure-i1,2022-23,3.6,13.5,Ipswich - Ipswich Middle School,01440305, 0.8, 1.4, 6.9, 86.5, 0.0, 0.0, 4.4, 48.9, 51.1, 0.0 -6.773722627737224,5,a-cure-i1,2022-23,5.8,13.700000000000003,Ipswich - Paul F Doyon Memorial,01440007, 0.3, 0.5, 8.5, 86.3, 0.5, 0.0, 3.8, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2022-23,3.1,19.599999999999994,Ipswich - Winthrop,01440015, 1.1, 2.1, 11.8, 80.4, 0.0, 0.0, 4.6, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2022-23,1.9,16.599999999999994,King Philip - King Philip Middle School,06900510, 2.2, 2.7, 7.0, 83.4, 0.3, 0.0, 4.3, 51.2, 48.4, 0.4 -1,1,a-cure-i1,2022-23,3.5999999999999996,14.400000000000006,King Philip - King Philip Regional High,06900505, 3.1, 3.2, 4.6, 85.6, 0.2, 0.0, 3.2, 50.3, 49.5, 0.3 -1,1,a-cure-i1,2022-23,0.0,7.099999999999994,Kingston - Kingston Elementary,01450005, 1.3, 0.6, 4.0, 92.9, 0.2, 0.2, 0.8, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.400000000000006,Kingston - Kingston Intermediate,01450020, 1.2, 0.7, 3.9, 92.6, 0.2, 0.0, 1.5, 50.3, 49.7, 0.0 -11.842900302114804,5,a-cure-i1,2022-23,73.5,99.3,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 59.3, 0.0, 36.9, 0.7, 0.5, 0.2, 2.4, 50.1, 49.9, 0.0 -8.870116156282998,5,a-cure-i1,2022-23,52.5,94.7,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 16.1, 3.3, 72.7, 5.3, 0.2, 0.1, 2.2, 49.8, 50.1, 0.1 -1.4887525562372188,1.49,a-cure-i1,2022-23,9.1,97.8,Lawrence - Alexander B Bruce,01490015, 2.2, 1.5, 93.6, 2.2, 0.0, 0.0, 0.5, 52.1, 47.4, 0.5 -2.6095820591233436,2.61,a-cure-i1,2022-23,16.0,98.1,Lawrence - Arlington Elementary,01490009, 0.9, 0.0, 97.1, 1.9, 0.0, 0.2, 0.0, 50.4, 48.5, 1.0 -1.894736842105263,1.89,a-cure-i1,2022-23,11.7,98.8,Lawrence - Arlington Middle School,01490017, 0.5, 0.0, 97.9, 1.2, 0.0, 0.0, 0.3, 52.0, 48.0, 0.0 -0.9284974093264248,1,a-cure-i1,2022-23,5.6,96.5,Lawrence - Edward F. Parthum,01490053, 1.6, 0.1, 93.9, 3.5, 0.0, 0.0, 0.7, 53.8, 45.9, 0.3 -3.1047227926078023,3.1,a-cure-i1,2022-23,18.9,97.4,Lawrence - Emily G Wetherbee,01490080, 0.8, 1.4, 94.7, 2.6, 0.0, 0.0, 0.4, 49.5, 50.3, 0.2 -1,1,a-cure-i1,2022-23,4.0,98.7,Lawrence - Francis M Leahy,01490040, 1.1, 0.0, 97.4, 1.3, 0.3, 0.0, 0.0, 55.5, 44.5, 0.0 -4.0085653104925045,4.01,a-cure-i1,2022-23,23.4,93.4,Lawrence - Frost Middle School,01490525, 1.6, 1.9, 89.5, 6.6, 0.0, 0.0, 0.4, 49.6, 50.2, 0.2 -1,1,a-cure-i1,2022-23,0.5,97.5,Lawrence - Gerard A. Guilmette,01490022, 1.5, 1.5, 94.0, 2.5, 0.0, 0.2, 0.4, 54.5, 45.5, 0.0 -2.907614213197969,2.91,a-cure-i1,2022-23,17.9,98.5,Lawrence - Guilmette Middle School,01490025, 2.4, 1.3, 94.6, 1.5, 0.0, 0.0, 0.2, 51.0, 48.8, 0.2 -4.654545454545454,4.65,a-cure-i1,2022-23,28.799999999999997,99.0,Lawrence - High School Learning Center,01490536, 0.3, 0.0, 98.7, 1.0, 0.0, 0.0, 0.0, 59.4, 40.3, 0.3 -3.6432318992654773,3.64,a-cure-i1,2022-23,21.7,95.3,Lawrence - James F Hennessey,01490020, 2.5, 0.3, 92.1, 4.7, 0.0, 0.0, 0.3, 56.5, 43.5, 0.0 -2.8126315789473684,2.81,a-cure-i1,2022-23,16.7,95.0,Lawrence - John Breen School,01490003, 2.3, 2.7, 89.5, 5.0, 0.0, 0.0, 0.4, 60.5, 39.5, 0.0 -0.9161554192229039,1,a-cure-i1,2022-23,5.6,97.8,Lawrence - John K Tarbox,01490075, 0.4, 0.0, 97.1, 2.2, 0.0, 0.0, 0.4, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,97.6,Lawrence - Lawlor Early Childhood Center,01490002, 1.2, 0.6, 95.7, 2.4, 0.0, 0.0, 0.0, 50.0, 50.0, 0.0 -3.322949117341641,3.32,a-cure-i1,2022-23,20.0,96.3,Lawrence - Lawrence Family Public Academy,01490011, 1.6, 0.5, 93.1, 3.7, 0.0, 0.5, 0.5, 55.0, 45.0, 0.0 -5.20777891504606,5,a-cure-i1,2022-23,31.8,97.7,Lawrence - Lawrence High School,01490515, 1.2, 1.6, 94.5, 2.3, 0.0, 0.0, 0.4, 53.2, 46.4, 0.4 -4.048582995951417,4.05,a-cure-i1,2022-23,25.0,98.8,Lawrence - Leonard Middle School,01490090, 0.6, 0.0, 98.2, 1.2, 0.0, 0.0, 0.0, 52.6, 47.4, 0.0 -5.914460285132383,5,a-cure-i1,2022-23,36.3,98.2,Lawrence - Oliver Elementary School,01490048, 1.6, 0.0, 96.1, 1.8, 0.0, 0.0, 0.5, 50.8, 49.2, 0.0 -2.245614035087719,2.25,a-cure-i1,2022-23,13.6,96.9,Lawrence - Oliver Middle School,01490049, 1.4, 0.9, 94.6, 3.1, 0.0, 0.0, 0.0, 54.1, 45.9, 0.0 -2.1477627471383975,2.15,a-cure-i1,2022-23,12.899999999999999,96.1,Lawrence - Parthum Middle School,01490027, 1.2, 0.4, 94.4, 3.9, 0.0, 0.0, 0.2, 51.8, 48.2, 0.0 -5.686354378818737,5,a-cure-i1,2022-23,34.9,98.2,Lawrence - RISE Academy,01490615, 0.0, 0.0, 96.4, 1.8, 0.0, 0.0, 1.8, 80.4, 19.6, 0.0 -1.6905016008537883,1.69,a-cure-i1,2022-23,9.899999999999999,93.7,Lawrence - Robert Frost,01490018, 2.3, 3.1, 87.1, 6.3, 0.0, 0.0, 1.2, 49.3, 50.3, 0.3 -7.175257731958763,5,a-cure-i1,2022-23,43.5,97.0,Lawrence - Rollins Early Childhood Center,01490001, 2.0, 0.5, 93.6, 3.0, 0.0, 0.0, 1.0, 56.4, 43.6, 0.0 -6.327497425334706,5,a-cure-i1,2022-23,38.4,97.1,Lawrence - School for Exceptional Studies,01490537, 4.9, 0.0, 92.2, 2.9, 0.0, 0.0, 0.0, 86.3, 13.7, 0.0 -2.236024844720497,2.24,a-cure-i1,2022-23,13.5,96.6,Lawrence - South Lawrence East Elementary School,01490004, 1.4, 3.1, 91.3, 3.4, 0.0, 0.0, 0.9, 49.3, 50.5, 0.2 -4.785046728971963,4.79,a-cure-i1,2022-23,28.8,96.3,Lawrence - Spark Academy,01490085, 0.5, 1.1, 94.7, 3.7, 0.0, 0.0, 0.0, 55.6, 44.4, 0.0 -3.6092648539778454,3.61,a-cure-i1,2022-23,22.400000000000002,99.3,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.2, 0.0, 98.8, 0.7, 0.0, 0.0, 0.2, 45.1, 54.9, 0.0 -3.153039832285115,3.15,a-cure-i1,2022-23,18.8,95.4,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 45.3, 0.9, 46.8, 4.6, 0.0, 0.0, 2.4, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,2.8,16.400000000000006,Lee - Lee Elementary,01500025, 1.2, 2.3, 10.6, 83.6, 0.3, 0.0, 2.1, 51.3, 48.7, 0.0 -4.943820224719102,4.94,a-cure-i1,2022-23,5.5,17.799999999999997,Lee - Lee Middle/High School,01500505, 0.6, 3.1, 11.1, 82.2, 0.0, 0.0, 3.1, 54.2, 45.5, 0.3 -1,1,a-cure-i1,2022-23,0.0,33.099999999999994,Leicester - Leicester Elementary,01510005, 5.9, 3.2, 20.5, 66.9, 0.2, 0.0, 3.2, 49.3, 50.7, 0.0 -3.7509157509157514,3.75,a-cure-i1,2022-23,6.4,27.299999999999997,Leicester - Leicester High,01510505, 5.8, 3.1, 16.2, 72.7, 0.0, 0.0, 2.2, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.900000000000006,Leicester - Leicester Integrated Preschool,01510001, 5.3, 0.0, 21.1, 71.1, 0.0, 0.0, 2.6, 57.9, 42.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.900000000000006,Leicester - Leicester Middle,01510015, 5.6, 3.9, 14.9, 71.1, 0.2, 0.0, 4.2, 54.8, 45.0, 0.2 -1,1,a-cure-i1,2022-23,0.0,17.599999999999994,Lenox - Lenox Memorial High,01520505, 0.7, 4.2, 9.3, 82.4, 0.0, 0.0, 3.5, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.299999999999997,Lenox - Morris,01520015, 0.9, 7.1, 9.1, 76.7, 0.0, 0.9, 5.3, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,47.9,Leominster - Bennett,01530003, 12.8, 2.1, 23.4, 52.1, 0.0, 0.0, 9.6, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,55.0,Leominster - Center For Technical Education Innovation,01530605, 9.4, 2.1, 40.5, 45.0, 0.0, 0.1, 2.9, 64.9, 35.0, 0.1 -2.176245210727969,2.18,a-cure-i1,2022-23,7.1,52.2,Leominster - Fall Brook,01530007, 7.8, 2.6, 35.9, 47.8, 0.0, 0.0, 5.9, 54.6, 45.2, 0.2 -1,1,a-cure-i1,2022-23,0.0,63.4,Leominster - Frances Drake School,01530010, 9.5, 3.7, 45.8, 36.6, 0.0, 0.0, 4.5, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2022-23,2.9,54.8,Leominster - Johnny Appleseed,01530025, 9.7, 3.2, 36.9, 45.2, 0.0, 0.0, 5.0, 49.6, 50.4, 0.0 -13.600000000000001,5,a-cure-i1,2022-23,30.6,36.0,Leominster - Leominster Center for Excellence,01530515, 6.0, 0.0, 22.0, 64.0, 0.0, 0.0, 8.0, 34.0, 60.0, 6.0 -1.8419243986254292,1.84,a-cure-i1,2022-23,6.699999999999999,58.2,Leominster - Leominster High School,01530505, 9.7, 5.6, 39.5, 41.8, 0.2, 0.0, 3.3, 43.9, 55.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,83.3,Leominster - Lincoln School,01530005, 13.3, 6.7, 56.7, 16.7, 0.0, 0.0, 6.7, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,63.0,Leominster - Northwest,01530030, 7.0, 3.6, 48.4, 37.0, 0.0, 0.0, 4.0, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,67.9,Leominster - Priest Street,01530040, 14.2, 1.5, 47.8, 32.1, 0.0, 0.0, 4.5, 53.0, 47.0, 0.0 -1.457092819614711,1.46,a-cure-i1,2022-23,5.2,57.1,Leominster - Samoset School,01530045, 8.3, 2.4, 41.5, 42.9, 0.0, 0.0, 5.0, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2022-23,3.1,61.5,Leominster - Sky View Middle School,01530320, 8.9, 1.9, 44.6, 38.5, 0.2, 0.0, 5.9, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.200000000000003,Leverett - Leverett Elementary,01540005, 0.0, 0.7, 2.1, 85.8, 0.0, 0.0, 11.3, 48.9, 51.1, 0.0 -8.39087947882736,5,a-cure-i1,2022-23,32.199999999999996,61.4,Lexington - Bowman,01550008, 4.2, 41.9, 5.3, 38.6, 0.0, 0.0, 10.0, 51.2, 48.8, 0.0 -2.0258992805755396,2.03,a-cure-i1,2022-23,8.8,69.5,Lexington - Bridge,01550006, 6.7, 44.1, 9.1, 30.5, 0.0, 0.0, 9.6, 48.7, 51.3, 0.0 -2.612844036697248,2.61,a-cure-i1,2022-23,8.9,54.5,Lexington - Fiske,01550015, 2.6, 35.8, 4.7, 45.5, 0.3, 0.0, 11.1, 52.8, 47.2, 0.0 -4.226415094339623,4.23,a-cure-i1,2022-23,16.8,63.6,Lexington - Harrington,01550030, 6.6, 44.7, 5.6, 36.4, 0.0, 0.0, 6.8, 48.2, 51.8, 0.0 -3.9799666110183645,3.98,a-cure-i1,2022-23,14.900000000000002,59.9,Lexington - Jonas Clarke Middle,01550305, 4.5, 44.3, 4.3, 40.1, 0.1, 0.0, 6.7, 50.9, 49.0, 0.1 -1,1,a-cure-i1,2022-23,4.1,66.6,Lexington - Joseph Estabrook,01550010, 3.7, 45.4, 5.9, 33.4, 0.0, 0.0, 11.6, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,77.3,Lexington - Lexington Children's Place,01550001, 4.0, 64.0, 5.3, 22.7, 0.0, 0.0, 4.0, 50.7, 49.3, 0.0 -4.006633499170813,4.01,a-cure-i1,2022-23,15.1,60.3,Lexington - Lexington High,01550505, 3.7, 45.5, 4.3, 39.7, 0.0, 0.0, 6.6, 49.6, 50.1, 0.3 -3.560975609756098,3.56,a-cure-i1,2022-23,14.600000000000001,65.6,Lexington - Maria Hastings,01550035, 3.2, 47.3, 5.9, 34.4, 0.0, 0.0, 9.2, 51.0, 49.0, 0.0 -3.6963696369636962,3.7,a-cure-i1,2022-23,14.0,60.6,Lexington - Wm Diamond Middle,01550310, 3.5, 44.2, 4.7, 39.4, 0.0, 0.1, 8.2, 52.9, 47.0, 0.1 -6.4896265560165975,5,a-cure-i1,2022-23,39.1,96.4,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 10.7, 0.5, 81.0, 3.6, 0.7, 0.0, 3.4, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,2.0,45.1,Lincoln - Hanscom Middle,01570305, 6.3, 3.6, 25.4, 54.9, 0.4, 0.9, 8.5, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,4.8,40.2,Lincoln - Hanscom Primary,01570006, 3.8, 2.5, 22.6, 59.8, 0.0, 0.0, 11.3, 49.8, 50.2, 0.0 -2.458797327394209,2.46,a-cure-i1,2022-23,6.8999999999999995,44.9,Lincoln - Lincoln School,01570025, 11.4, 8.6, 11.8, 55.1, 0.0, 0.0, 13.1, 50.6, 49.3, 0.2 -6.171428571428572,5,a-cure-i1,2022-23,10.8,28.0,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 5.9, 6.0, 6.3, 72.0, 0.1, 0.2, 9.6, 48.5, 51.1, 0.5 -1,1,a-cure-i1,2022-23,3.0,22.099999999999994,Littleton - Littleton High School,01580505, 2.5, 11.9, 4.2, 77.9, 0.2, 0.0, 3.3, 49.0, 50.4, 0.6 -1,1,a-cure-i1,2022-23,1.3,20.299999999999997,Littleton - Littleton Middle School,01580305, 0.8, 13.0, 4.4, 79.7, 0.3, 0.8, 1.0, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.599999999999994,Littleton - Russell St Elementary,01580015, 0.3, 16.5, 2.6, 78.4, 0.0, 0.8, 1.5, 50.6, 49.1, 0.3 -1,1,a-cure-i1,2022-23,3.9,24.5,Littleton - Shaker Lane Elementary,01580005, 0.9, 17.7, 3.2, 75.5, 0.0, 0.2, 2.5, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.599999999999994,Longmeadow - Blueberry Hill,01590005, 2.0, 14.8, 4.8, 71.4, 0.0, 0.0, 6.9, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2022-23,3.4,17.900000000000006,Longmeadow - Center,01590010, 2.6, 3.3, 8.3, 82.1, 0.0, 0.0, 3.8, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,30.400000000000006,Longmeadow - Glenbrook Middle,01590017, 6.6, 11.4, 6.3, 69.6, 0.0, 0.0, 6.0, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,3.2,24.799999999999997,Longmeadow - Longmeadow High,01590505, 2.4, 11.3, 7.4, 75.2, 0.0, 0.3, 3.3, 50.3, 49.0, 0.7 -5.4296028880866425,5,a-cure-i1,2022-23,9.4,27.700000000000003,Longmeadow - Williams Middle,01590305, 2.5, 12.4, 8.5, 72.3, 0.0, 0.0, 4.3, 57.4, 42.2, 0.4 -1,1,a-cure-i1,2022-23,0.0,27.5,Longmeadow - Wolf Swamp Road,01590025, 4.3, 9.9, 9.7, 72.5, 0.0, 0.0, 3.6, 52.3, 47.7, 0.0 -1.9636363636363638,1.96,a-cure-i1,2022-23,10.8,88.0,Lowell - Abraham Lincoln,01600020, 4.9, 41.3, 36.2, 12.0, 0.4, 0.4, 4.9, 49.2, 50.8, 0.0 -5.172932330827068,5,a-cure-i1,2022-23,25.8,79.8,Lowell - B.F. Butler Middle School,01600310, 7.4, 30.2, 38.3, 20.2, 0.0, 0.0, 3.9, 48.6, 51.4, 0.0 -0.9337822671156005,1,a-cure-i1,2022-23,5.2,89.1,Lowell - Bartlett Community Partnership,01600090, 10.3, 34.4, 40.7, 10.9, 0.2, 0.0, 3.4, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,79.8,Lowell - Cardinal O'Connell Early Learning Center,01600001, 17.2, 23.2, 32.3, 20.2, 0.0, 0.0, 7.1, 52.5, 47.5, 0.0 -1.9910313901345293,1.99,a-cure-i1,2022-23,11.100000000000001,89.2,Lowell - Charles W Morey,01600030, 4.0, 58.8, 21.8, 10.8, 0.0, 0.0, 4.6, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,86.3,Lowell - Charlotte M Murkland Elementary,01600080, 11.0, 27.9, 44.3, 13.7, 0.0, 0.0, 3.2, 50.9, 49.1, 0.0 -1.22911051212938,1.23,a-cure-i1,2022-23,5.7,74.2,Lowell - Dr An Wang School,01600345, 8.5, 20.9, 40.5, 25.8, 0.0, 0.0, 4.2, 51.7, 48.1, 0.2 -1,1,a-cure-i1,2022-23,3.7,77.0,Lowell - Dr Gertrude Bailey,01600002, 7.6, 39.1, 25.2, 23.0, 0.0, 0.0, 5.0, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,65.5,Lowell - Dr. Janice Adie Day School,01600605, 12.7, 14.5, 30.9, 34.5, 1.8, 0.0, 5.5, 78.2, 21.8, 0.0 -1.382716049382716,1.38,a-cure-i1,2022-23,7.0,81.0,Lowell - Greenhalge,01600015, 10.8, 11.8, 54.1, 19.0, 0.0, 0.0, 4.2, 52.0, 48.0, 0.0 -4.831372549019608,4.83,a-cure-i1,2022-23,23.1,76.5,Lowell - Henry J Robinson Middle,01600330, 9.0, 11.1, 53.4, 23.5, 0.3, 0.0, 2.7, 49.8, 50.1, 0.2 -1.3840104849279162,1.38,a-cure-i1,2022-23,6.6000000000000005,76.3,Lowell - James S Daley Middle School,01600315, 4.5, 48.2, 19.0, 23.7, 0.0, 0.0, 4.6, 54.0, 45.8, 0.1 -2.107091172214183,2.11,a-cure-i1,2022-23,9.100000000000001,69.1,Lowell - James Sullivan Middle School,01600340, 6.1, 12.2, 46.8, 30.9, 0.0, 0.2, 3.9, 51.4, 48.5, 0.2 -1,1,a-cure-i1,2022-23,3.6,79.3,Lowell - John J Shaughnessy,01600050, 5.2, 26.3, 43.4, 20.7, 0.0, 0.0, 4.4, 52.6, 47.4, 0.0 -2.330708661417323,2.33,a-cure-i1,2022-23,11.100000000000001,76.2,Lowell - Joseph McAvinnue,01600010, 8.2, 15.0, 47.7, 23.8, 0.0, 0.0, 5.4, 49.8, 50.2, 0.0 -1.6507936507936507,1.65,a-cure-i1,2022-23,9.1,88.2,Lowell - Kathryn P. Stoklosa Middle School,01600360, 3.3, 45.8, 35.5, 11.8, 0.3, 0.2, 3.0, 55.1, 44.7, 0.2 -4.603421461897356,4.6,a-cure-i1,2022-23,18.5,64.3,Lowell - Laura Lee Therapeutic Day School,01600085, 14.3, 0.0, 35.7, 35.7, 0.0, 0.0, 14.3, 78.6, 21.4, 0.0 -2.891820580474934,2.89,a-cure-i1,2022-23,13.7,75.8,Lowell - Leblanc Therapeutic Day School,01600320, 9.1, 0.0, 54.5, 24.2, 0.0, 0.0, 12.1, 72.7, 27.3, 0.0 -3.5098039215686274,3.51,a-cure-i1,2022-23,17.9,81.6,Lowell - Lowell High,01600505, 9.3, 29.0, 39.4, 18.4, 0.0, 0.0, 3.7, 53.6, 46.2, 0.2 -1.7410468319559231,1.74,a-cure-i1,2022-23,7.9,72.6,Lowell - Moody Elementary,01600027, 8.3, 10.4, 51.5, 27.4, 0.4, 0.0, 2.1, 46.9, 52.7, 0.4 -1,1,a-cure-i1,2022-23,4.2,67.2,Lowell - Pawtucketville Memorial,01600036, 8.2, 22.7, 31.1, 32.8, 0.0, 0.0, 5.2, 50.9, 49.1, 0.0 -2.3587921847246895,2.36,a-cure-i1,2022-23,8.3,56.3,Lowell - Peter W Reilly,01600040, 3.9, 9.7, 37.3, 43.7, 0.0, 0.0, 5.4, 47.6, 52.4, 0.0 -1.5646687697160884,1.56,a-cure-i1,2022-23,6.2,63.4,Lowell - Pyne Arts,01600018, 4.6, 14.5, 40.4, 36.6, 0.0, 0.0, 4.0, 53.1, 46.9, 0.0 -1.9095477386934674,1.91,a-cure-i1,2022-23,9.5,79.6,Lowell - Rogers STEM Academy,01600005, 8.6, 19.5, 47.1, 20.4, 0.2, 0.1, 4.1, 52.1, 47.9, 0.0 -1.7879656160458453,1.79,a-cure-i1,2022-23,7.8,69.8,Lowell - S Christa McAuliffe Elementary,01600075, 6.0, 7.7, 52.3, 30.2, 0.2, 0.0, 3.5, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,78.4,Lowell - The Career Academy,01600515, 13.6, 17.0, 39.8, 21.6, 0.0, 0.0, 8.0, 65.9, 34.1, 0.0 -1.1568627450980393,1.16,a-cure-i1,2022-23,5.9,81.6,Lowell - Washington,01600055, 5.3, 43.0, 25.4, 18.4, 0.4, 0.0, 7.4, 58.2, 41.8, 0.0 -4.456776947705443,4.46,a-cure-i1,2022-23,26.099999999999998,93.7,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 25.8, 17.0, 47.8, 6.3, 0.0, 0.0, 3.1, 49.0, 50.9, 0.1 -4.473118279569893,4.47,a-cure-i1,2022-23,18.2,65.1,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 2.4, 6.0, 54.2, 34.9, 0.0, 0.0, 2.4, 42.2, 55.4, 2.4 -1,1,a-cure-i1,2022-23,0.0,24.5,Ludlow - East Street Elementary School,01610010, 1.6, 2.2, 15.4, 75.5, 0.0, 0.0, 5.3, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2022-23,4.2,22.599999999999994,Ludlow - Harris Brook Elementary School,01610665, 1.7, 1.2, 15.3, 77.4, 0.0, 0.0, 4.4, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,2.7,16.0,Ludlow - Ludlow Senior High,01610505, 1.6, 0.9, 10.8, 84.0, 0.0, 0.0, 2.6, 49.9, 49.9, 0.1 -1,1,a-cure-i1,2022-23,2.4,23.400000000000006,Ludlow - Paul R Baird Middle,01610305, 1.9, 1.0, 17.8, 76.6, 0.2, 0.0, 2.5, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,0.0,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 40.0, 60.0, 0.0 -1,1,a-cure-i1,2022-23,3.0,16.400000000000006,Lunenburg - Lunenburg High,01620505, 0.9, 2.0, 9.1, 83.6, 0.5, 0.7, 3.2, 52.5, 47.3, 0.2 -1,1,a-cure-i1,2022-23,0.0,21.599999999999994,Lunenburg - Lunenburg Middle School,01620305, 2.9, 2.1, 11.3, 78.4, 0.0, 0.3, 5.0, 51.1, 48.7, 0.3 -1,1,a-cure-i1,2022-23,0.0,20.799999999999997,Lunenburg - Lunenburg Primary School,01620010, 3.4, 1.0, 11.5, 79.2, 0.0, 0.5, 4.4, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.200000000000003,Lunenburg - Turkey Hill Elementary School,01620025, 2.5, 0.8, 8.5, 85.8, 0.0, 0.3, 2.0, 49.3, 50.7, 0.0 -2.1645021645021645,2.16,a-cure-i1,2022-23,12.5,92.4,Lynn - A Drewicz Elementary,01630016, 3.9, 9.2, 77.5, 7.6, 0.0, 0.0, 1.8, 46.9, 53.1, 0.0 -1.5542857142857143,1.55,a-cure-i1,2022-23,6.8,70.0,Lynn - Aborn,01630011, 6.0, 11.1, 45.2, 30.0, 0.9, 0.0, 6.9, 51.6, 48.4, 0.0 -2.0463065049614113,2.05,a-cure-i1,2022-23,11.600000000000001,90.7,Lynn - Breed Middle School,01630405, 7.1, 7.9, 72.5, 9.3, 0.1, 0.0, 3.0, 53.2, 46.8, 0.1 -2.600896860986547,2.6,a-cure-i1,2022-23,14.5,89.2,Lynn - Brickett Elementary,01630020, 8.9, 10.2, 66.2, 10.8, 0.0, 0.0, 3.9, 53.1, 46.6, 0.3 -1.875,1.88,a-cure-i1,2022-23,7.5,64.0,Lynn - Capt William G Shoemaker,01630090, 13.5, 8.1, 35.0, 36.0, 0.0, 0.0, 7.4, 60.9, 39.1, 0.0 -2.202502844141069,2.2,a-cure-i1,2022-23,12.1,87.9,Lynn - Classical High,01630505, 7.4, 7.9, 70.1, 12.1, 0.0, 0.0, 2.5, 54.0, 45.9, 0.1 -1.2892561983471074,1.29,a-cure-i1,2022-23,7.8,96.8,Lynn - Cobbet Elementary,01630035, 7.6, 3.2, 84.6, 3.2, 0.2, 0.0, 1.3, 56.0, 44.0, 0.0 -2.0395604395604394,2.04,a-cure-i1,2022-23,11.6,91.0,Lynn - E J Harrington,01630045, 8.8, 4.6, 75.4, 9.0, 0.0, 0.0, 2.2, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,3.5,76.5,Lynn - Edward A Sisson,01630095, 7.5, 11.4, 51.7, 23.5, 1.2, 0.0, 4.6, 50.2, 49.8, 0.0 -1.8823529411764703,1.88,a-cure-i1,2022-23,9.2,78.2,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 9.0, 2.6, 61.5, 21.8, 0.0, 0.0, 5.1, 62.8, 35.9, 1.3 -4.600858369098712,4.6,a-cure-i1,2022-23,26.8,93.2,Lynn - Fredrick Douglass Collegiate Academy,01630575, 4.1, 6.8, 78.1, 6.8, 0.0, 0.0, 4.1, 54.8, 43.8, 1.4 -2.8161434977578472,2.82,a-cure-i1,2022-23,15.7,89.2,Lynn - Hood,01630055, 7.5, 8.2, 71.9, 10.8, 0.2, 0.0, 1.3, 49.6, 50.4, 0.0 -1.3964248159831758,1.4,a-cure-i1,2022-23,8.3,95.1,Lynn - Ingalls,01630060, 7.3, 6.0, 80.1, 4.9, 0.3, 0.0, 1.3, 52.2, 47.8, 0.0 -1.3640552995391706,1.36,a-cure-i1,2022-23,7.4,86.8,Lynn - Julia F Callahan,01630030, 10.7, 8.2, 64.9, 13.2, 0.0, 0.0, 3.0, 56.2, 43.8, 0.0 -1.2896725440806045,1.29,a-cure-i1,2022-23,6.4,79.4,Lynn - Lincoln-Thomson,01630070, 3.7, 13.2, 57.7, 20.6, 0.0, 0.0, 4.8, 48.7, 51.3, 0.0 -3.158351409978308,3.16,a-cure-i1,2022-23,18.2,92.2,Lynn - Lynn English High,01630510, 8.5, 7.1, 73.7, 7.8, 0.2, 0.0, 2.7, 53.3, 46.4, 0.3 -1.2559726962457338,1.26,a-cure-i1,2022-23,6.9,87.9,Lynn - Lynn Vocational Technical Institute,01630605, 5.6, 4.6, 74.1, 12.1, 0.5, 0.0, 3.2, 53.5, 46.3, 0.2 -1,1,a-cure-i1,2022-23,0.0,56.8,Lynn - Lynn Woods,01630075, 0.7, 9.5, 42.6, 43.2, 0.7, 0.0, 3.4, 49.3, 50.7, 0.0 -2.5860709592641267,2.59,a-cure-i1,2022-23,12.3,76.1,Lynn - Pickering Middle,01630420, 6.3, 8.9, 55.3, 23.9, 0.5, 0.0, 5.1, 52.0, 48.0, 0.0 -1.7343251859723698,1.73,a-cure-i1,2022-23,10.2,94.1,Lynn - Robert L Ford,01630050, 7.4, 4.2, 80.7, 5.9, 0.2, 0.0, 1.5, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,80.3,Lynn - Sewell-Anderson,01630085, 8.9, 6.7, 59.9, 19.7, 0.4, 0.0, 4.5, 44.6, 55.4, 0.0 -2.8758169934640523,2.88,a-cure-i1,2022-23,16.5,91.8,Lynn - Thurgood Marshall Mid,01630305, 7.9, 6.8, 74.1, 8.2, 0.3, 0.0, 2.6, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,96.1,Lynn - Tracy,01630100, 4.1, 3.3, 86.7, 3.9, 0.6, 0.0, 1.4, 51.9, 48.1, 0.0 -5.213270142180095,5,a-cure-i1,2022-23,27.5,84.4,Lynn - Virginia Barton Early Childhood Center,01630004, 12.5, 15.6, 56.3, 15.6, 0.0, 0.0, 0.0, 62.5, 37.5, 0.0 -1.6638655462184875,1.66,a-cure-i1,2022-23,9.9,95.2,Lynn - Washington Elementary School,01630005, 12.7, 4.6, 75.5, 4.8, 0.0, 0.0, 2.4, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,0.9,81.5,Lynn - William R Fallon,01630080, 14.8, 0.0, 48.1, 18.5, 0.0, 0.0, 18.5, 88.9, 11.1, 0.0 -2.331573389651531,2.33,a-cure-i1,2022-23,13.8,94.7,Lynn - Wm P Connery,01630040, 5.1, 7.9, 80.6, 5.3, 0.0, 0.0, 1.1, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.599999999999994,Lynnfield - Huckleberry Hill,01640010, 3.7, 9.8, 7.2, 72.4, 0.0, 0.0, 6.8, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.400000000000006,Lynnfield - Lynnfield High,01640505, 1.9, 7.8, 8.3, 79.6, 0.0, 0.0, 2.3, 50.8, 49.0, 0.2 -1,1,a-cure-i1,2022-23,0.0,20.900000000000006,Lynnfield - Lynnfield Middle School,01640405, 2.0, 7.6, 7.4, 79.1, 0.0, 0.0, 3.9, 51.9, 48.0, 0.1 -25.990243902439023,5,a-cure-i1,2022-23,33.3,20.5,Lynnfield - Lynnfield Preschool,01640005, 2.6, 7.7, 5.1, 79.5, 0.0, 0.0, 5.1, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.099999999999994,Lynnfield - Summer Street,01640020, 1.0, 4.0, 2.9, 87.9, 0.0, 0.0, 4.3, 50.6, 49.4, 0.0 -3.929411764705882,3.93,a-cure-i1,2022-23,16.7,68.0,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 2.0, 63.0, 2.0, 32.0, 0.0, 1.0, 0.0, 51.0, 49.0, 0.0 -1.1926863572433193,1.19,a-cure-i1,2022-23,5.3,71.1,Malden - Beebe,01650003, 12.9, 31.9, 20.2, 28.9, 0.7, 0.1, 5.2, 52.4, 47.6, 0.0 -2.0460358056265986,2.05,a-cure-i1,2022-23,10.0,78.2,Malden - Ferryway,01650013, 19.2, 19.7, 35.0, 21.8, 0.7, 0.2, 3.4, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,58.6,Malden - Forestdale,01650027, 15.7, 12.1, 24.9, 41.4, 0.0, 0.0, 5.9, 54.2, 45.6, 0.2 -2.2459893048128343,2.25,a-cure-i1,2022-23,10.5,74.8,Malden - Linden,01650047, 19.4, 26.1, 24.0, 25.2, 0.7, 0.1, 4.4, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,66.5,Malden - Malden Early Learning Center,01650049, 18.0, 34.3, 10.9, 33.5, 0.0, 0.0, 3.3, 59.4, 40.6, 0.0 -3.0625,3.06,a-cure-i1,2022-23,14.7,76.8,Malden - Malden High,01650505, 19.9, 21.9, 31.3, 23.2, 0.3, 0.0, 3.5, 49.3, 50.6, 0.1 -3.183879093198992,3.18,a-cure-i1,2022-23,15.799999999999999,79.4,Malden - Salemwood,01650057, 20.3, 15.2, 40.4, 20.6, 0.4, 0.0, 3.0, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.099999999999994,Manchester Essex Regional - Essex Elementary,06980020, 1.7, 0.0, 3.5, 93.9, 0.0, 0.0, 0.9, 42.0, 58.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,3.0999999999999943,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.4, 1.0, 96.9, 0.0, 0.0, 0.7, 50.0, 49.8, 0.2 -1,1,a-cure-i1,2022-23,4.0,3.200000000000003,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 1.1, 0.4, 1.8, 96.8, 0.0, 0.0, 0.0, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.900000000000006,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 1.0, 1.4, 2.4, 93.1, 0.0, 0.0, 2.1, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,2.5,25.299999999999997,Mansfield - Everett W Robinson,01670007, 4.0, 8.4, 7.8, 74.7, 0.3, 0.0, 4.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2022-23,3.5999999999999996,26.599999999999994,Mansfield - Harold L Qualters Middle,01670035, 5.7, 9.7, 5.7, 73.4, 0.0, 0.0, 5.4, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,2.6,24.900000000000006,Mansfield - Jordan/Jackson Elementary,01670014, 4.4, 8.5, 6.4, 75.1, 0.3, 0.1, 5.1, 51.8, 48.0, 0.1 -5.032863849765259,5,a-cure-i1,2022-23,6.7,21.299999999999997,Mansfield - Mansfield High,01670505, 4.5, 7.2, 6.9, 78.7, 0.1, 0.0, 2.7, 52.7, 47.0, 0.3 -1,1,a-cure-i1,2022-23,0.0,15.400000000000006,Mansfield - Roland Green School,01670003, 4.4, 6.6, 2.2, 84.6, 0.0, 0.0, 2.2, 60.4, 39.6, 0.0 -6.918918918918917,5,a-cure-i1,2022-23,11.2,25.900000000000006,Map Academy Charter School (District) - Map Academy Charter School,35170505, 4.0, 1.2, 13.5, 74.1, 2.0, 0.4, 4.8, 54.2, 41.8, 4.0 -1,1,a-cure-i1,2022-23,0.0,13.799999999999997,Marblehead - Glover,01680020, 0.9, 1.5, 6.1, 86.2, 0.0, 0.0, 5.2, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2022-23,4.0,17.099999999999994,Marblehead - Lucretia and Joseph Brown School,01680030, 0.7, 1.6, 8.8, 82.9, 0.0, 0.0, 6.1, 54.1, 45.9, 0.0 -5.8364779874213815,5,a-cure-i1,2022-23,5.8,15.900000000000006,Marblehead - Marblehead High,01680505, 3.8, 1.8, 7.5, 84.1, 0.1, 0.1, 2.6, 49.8, 49.5, 0.7 -1,1,a-cure-i1,2022-23,2.5,17.700000000000003,Marblehead - Marblehead Veterans Middle School,01680300, 3.8, 1.2, 7.7, 82.3, 0.0, 0.0, 5.0, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.400000000000006,Marblehead - Village School,01680016, 2.0, 2.2, 6.8, 85.6, 0.0, 0.0, 3.4, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,25.900000000000006,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 6.3, 2.2, 11.2, 74.1, 0.0, 0.0, 6.3, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.900000000000006,Marion - Sippican,01690005, 3.0, 1.7, 5.7, 82.1, 0.0, 0.0, 7.4, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,4.7,69.5,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 3.8, 1.1, 61.8, 30.5, 0.0, 0.0, 2.8, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,4.8,60.8,Marlborough - Charles Jaworek School,01700030, 5.0, 1.1, 48.6, 39.2, 0.0, 0.0, 6.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,45.5,Marlborough - Early Childhood Center,01700006, 5.8, 3.1, 24.1, 54.5, 0.0, 0.0, 12.6, 59.7, 39.8, 0.5 -1.928436911487759,1.93,a-cure-i1,2022-23,6.4,53.1,Marlborough - Francis J Kane,01700008, 4.7, 0.2, 43.8, 46.9, 0.0, 0.0, 4.5, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,2.1,63.8,Marlborough - Goodnow Brothers Elementary School,01700020, 4.6, 0.4, 55.6, 36.2, 0.0, 0.0, 3.2, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2022-23,4.9,72.7,Marlborough - Marlborough High,01700505, 4.4, 0.8, 63.9, 27.3, 0.0, 0.0, 3.6, 55.1, 44.5, 0.4 -1,1,a-cure-i1,2022-23,2.9,72.4,Marlborough - Richer,01700025, 3.6, 0.6, 61.2, 27.6, 0.0, 0.0, 7.1, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.099999999999994,Marshfield - Daniel Webster,01710015, 3.8, 2.2, 3.2, 87.9, 0.0, 1.3, 1.6, 56.9, 43.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.599999999999994,Marshfield - Eames Way School,01710005, 1.9, 0.4, 2.3, 92.4, 0.4, 0.0, 2.7, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.700000000000003,Marshfield - Furnace Brook Middle,01710310, 0.6, 1.2, 5.1, 90.3, 0.1, 0.2, 2.5, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,5.400000000000006,Marshfield - Gov Edward Winslow,01710020, 0.3, 0.3, 3.7, 94.6, 0.0, 0.0, 1.1, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2022-23,2.0,7.599999999999994,Marshfield - Marshfield High,01710505, 1.0, 1.1, 3.6, 92.4, 0.2, 0.2, 1.6, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,3.8,14.099999999999994,Marshfield - Martinson Elementary,01710025, 4.3, 0.9, 5.4, 85.9, 0.0, 0.0, 3.5, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,5.400000000000006,Marshfield - South River,01710010, 0.8, 1.2, 0.8, 94.6, 0.0, 0.0, 2.7, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,4.1,37.6,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 4.1, 0.8, 26.4, 62.4, 1.2, 0.0, 5.2, 50.9, 49.0, 0.1 -9.218106995884774,5,a-cure-i1,2022-23,14.0,24.299999999999997,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 1.1, 0.6, 11.0, 75.7, 1.7, 0.0, 9.9, 38.1, 61.9, 0.0 -7.33061224489796,5,a-cure-i1,2022-23,44.900000000000006,98.0,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 30.4, 1.7, 61.9, 2.0, 1.4, 0.0, 2.6, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,1.4,9.799999999999997,Masconomet - Masconomet Regional High School,07050505, 0.8, 3.0, 3.5, 90.2, 0.0, 0.1, 2.3, 46.3, 53.6, 0.1 -11.24324324324325,5,a-cure-i1,2022-23,7.8,11.099999999999994,Masconomet - Masconomet Regional Middle School,07050405, 0.5, 3.6, 3.8, 88.9, 0.5, 0.0, 2.7, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.5,Mashpee - Kenneth Coombs School,01720005, 3.3, 1.3, 9.2, 70.5, 4.1, 0.3, 11.3, 50.8, 49.2, 0.0 -3.294117647058823,3.29,a-cure-i1,2022-23,5.6,27.200000000000003,Mashpee - Mashpee Middle-High School,01720505, 4.7, 2.1, 6.1, 72.8, 6.3, 0.0, 7.9, 50.2, 49.2, 0.6 -1,1,a-cure-i1,2022-23,0.0,33.7,Mashpee - Quashnet School,01720035, 4.8, 1.0, 7.8, 66.3, 6.3, 0.0, 13.8, 56.3, 43.7, 0.0 -6.17629179331307,5,a-cure-i1,2022-23,38.1,98.7,Match Charter Public School (District) - Match Charter Public School,04690505, 49.0, 0.4, 46.5, 1.3, 0.2, 0.3, 2.4, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.400000000000006,Mattapoisett - Center,01730005, 0.8, 0.4, 6.8, 88.6, 0.4, 0.0, 3.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.5,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.0, 6.3, 86.5, 0.0, 0.0, 6.3, 52.6, 47.4, 0.0 -8.590163934426227,5,a-cure-i1,2022-23,13.1,24.400000000000006,Maynard - Fowler School,01740305, 2.4, 1.3, 16.6, 75.6, 0.0, 0.0, 4.1, 52.7, 46.6, 0.7 -10.86178861788618,5,a-cure-i1,2022-23,16.7,24.599999999999994,Maynard - Green Meadow,01740010, 3.1, 3.1, 13.4, 75.4, 0.2, 0.0, 4.8, 49.9, 50.1, 0.0 -3.3903345724907057,3.39,a-cure-i1,2022-23,5.7,26.900000000000006,Maynard - Maynard High,01740505, 2.8, 2.5, 18.0, 73.1, 0.0, 0.0, 3.5, 46.5, 52.5, 0.9 -1,1,a-cure-i1,2022-23,4.0,14.400000000000006,Medfield - Dale Street,01750005, 2.1, 4.9, 3.6, 85.6, 0.3, 0.0, 3.6, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2022-23,3.6,15.400000000000006,Medfield - Medfield Senior High,01750505, 0.8, 4.5, 5.1, 84.6, 0.3, 0.0, 4.7, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2022-23,1.1,11.099999999999994,Medfield - Memorial School,01750003, 1.4, 2.8, 3.8, 88.9, 0.0, 0.0, 3.1, 51.4, 48.6, 0.0 -9.203539823008851,5,a-cure-i1,2022-23,6.5,11.299999999999997,Medfield - Ralph Wheelock School,01750007, 1.3, 3.9, 2.6, 88.7, 0.3, 0.0, 3.2, 45.5, 54.5, 0.0 -1,1,a-cure-i1,2022-23,3.5999999999999996,16.700000000000003,Medfield - Thomas Blake Middle,01750305, 1.9, 5.2, 6.0, 83.3, 0.5, 0.0, 3.1, 54.3, 45.5, 0.2 -1,1,a-cure-i1,2022-23,0.0,26.700000000000003,Medford - Brooks School,01760130, 4.2, 6.4, 7.5, 73.3, 0.7, 0.0, 7.9, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,33.3,Medford - Curtis-Tufts,01760510, 11.1, 0.0, 11.1, 66.7, 0.0, 0.0, 11.1, 44.4, 50.0, 5.6 -2.586145648312611,2.59,a-cure-i1,2022-23,9.1,56.3,Medford - John J McGlynn Elementary School,01760068, 11.0, 17.0, 23.1, 43.7, 0.4, 0.0, 4.8, 50.9, 48.9, 0.2 -1,1,a-cure-i1,2022-23,4.699999999999999,44.0,Medford - John J. McGlynn Middle School,01760320, 13.0, 10.0, 15.6, 56.0, 0.2, 0.2, 5.0, 56.0, 43.8, 0.2 -1,1,a-cure-i1,2022-23,1.2,38.6,Medford - Madeleine Dugger Andrews,01760315, 11.2, 8.6, 11.8, 61.4, 1.1, 0.2, 5.7, 46.7, 52.9, 0.4 -1,1,a-cure-i1,2022-23,3.4000000000000004,44.8,Medford - Medford High,01760505, 14.0, 9.3, 17.1, 55.2, 0.2, 0.0, 4.2, 53.7, 45.8, 0.6 -1,1,a-cure-i1,2022-23,0.0,37.3,Medford - Milton Fuller Roberts,01760150, 8.7, 10.0, 11.8, 62.7, 0.5, 0.0, 6.3, 50.0, 49.8, 0.2 -1,1,a-cure-i1,2022-23,3.2,42.5,Medford - Missituk Elementary School,01760140, 8.4, 6.4, 18.9, 57.5, 1.3, 0.3, 7.2, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.0,Medway - Burke/Memorial Elementary School,01770015, 1.4, 5.4, 8.1, 82.0, 0.2, 0.0, 2.9, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2022-23,4.5,20.400000000000006,Medway - John D Mc Govern Elementary,01770013, 1.4, 4.7, 8.7, 79.6, 0.0, 0.0, 5.6, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,4.5,17.0,Medway - Medway High,01770505, 1.8, 3.6, 7.7, 83.0, 0.5, 0.3, 3.1, 45.8, 53.7, 0.5 -1,1,a-cure-i1,2022-23,2.1,15.5,Medway - Medway Middle,01770305, 1.8, 2.8, 8.1, 84.5, 0.0, 0.2, 2.6, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.0,Melrose - Early Childhood Center,01780003, 3.4, 9.0, 3.7, 78.0, 1.2, 0.0, 4.6, 55.7, 44.0, 0.3 -1,1,a-cure-i1,2022-23,0.0,27.400000000000006,Melrose - Herbert Clark Hoover,01780017, 5.9, 9.6, 6.9, 72.6, 0.0, 0.0, 5.0, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,1.6,9.799999999999997,Melrose - Horace Mann,01780025, 0.0, 0.8, 3.3, 90.2, 0.0, 0.0, 5.7, 45.9, 53.7, 0.4 -1,1,a-cure-i1,2022-23,0.8,44.5,Melrose - Lincoln,01780020, 7.4, 16.0, 9.7, 55.5, 0.3, 0.0, 11.2, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2022-23,4.3,24.900000000000006,Melrose - Melrose High,01780505, 8.0, 5.4, 7.1, 75.1, 0.0, 0.0, 4.4, 49.6, 50.0, 0.4 -5.267489711934157,5,a-cure-i1,2022-23,8.0,24.299999999999997,Melrose - Melrose Middle,01780305, 5.8, 5.6, 7.4, 75.7, 0.0, 0.0, 5.5, 48.2, 51.6, 0.2 -1,1,a-cure-i1,2022-23,0.0,18.599999999999994,Melrose - Roosevelt,01780035, 4.2, 3.4, 3.9, 81.4, 0.0, 0.0, 7.1, 51.0, 48.5, 0.5 -1,1,a-cure-i1,2022-23,4.5,17.0,Melrose - Winthrop,01780050, 2.9, 4.7, 3.4, 83.0, 0.0, 0.0, 6.0, 49.1, 50.4, 0.5 -8.313725490196076,5,a-cure-i1,2022-23,5.3,10.200000000000003,Mendon-Upton - Henry P Clough,07100179, 1.1, 1.4, 6.8, 89.8, 0.6, 0.0, 0.3, 53.0, 47.0, 0.0 -7.5180722891566285,5,a-cure-i1,2022-23,7.8,16.599999999999994,Mendon-Upton - Memorial School,07100001, 1.5, 4.8, 7.5, 83.4, 0.0, 0.0, 2.7, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2022-23,2.4,11.0,Mendon-Upton - Miscoe Hill School,07100015, 1.1, 2.7, 5.7, 89.0, 0.0, 0.0, 1.6, 50.6, 49.3, 0.2 -1,1,a-cure-i1,2022-23,2.3,14.200000000000003,Mendon-Upton - Nipmuc Regional High,07100510, 0.5, 2.5, 8.3, 85.8, 0.0, 0.0, 2.8, 46.2, 53.4, 0.3 -1,1,a-cure-i1,2022-23,2.8,58.0,Methuen - Comprehensive Grammar School,01810050, 6.1, 3.7, 46.0, 42.0, 0.0, 0.0, 2.3, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2022-23,2.7,66.4,Methuen - Donald P Timony Grammar,01810060, 6.9, 3.2, 54.2, 33.6, 0.2, 0.1, 1.9, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,51.5,Methuen - Marsh Grammar School,01810030, 4.6, 2.7, 40.6, 48.5, 0.1, 0.1, 3.5, 56.8, 43.2, 0.0 -1.410981697171381,1.41,a-cure-i1,2022-23,5.300000000000001,60.1,Methuen - Methuen High,01810505, 5.5, 4.4, 48.2, 39.9, 0.0, 0.0, 2.0, 52.0, 48.0, 0.1 -1,1,a-cure-i1,2022-23,2.4,72.1,Methuen - Tenney Grammar School,01810055, 4.5, 2.7, 62.3, 27.9, 0.0, 0.1, 2.5, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.200000000000003,Middleborough - Henry B. Burkland Elementary School,01820008, 3.5, 1.2, 4.7, 83.8, 0.7, 0.2, 5.8, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.099999999999994,Middleborough - John T. Nichols Middle,01820305, 3.2, 1.1, 3.2, 83.9, 0.1, 0.0, 8.3, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,2.8,15.799999999999997,Middleborough - Mary K. Goode Elementary School,01820010, 2.9, 1.3, 4.5, 84.2, 0.6, 0.0, 6.5, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.5,Middleborough - Memorial Early Childhood Center,01820011, 1.1, 2.1, 8.2, 81.5, 0.7, 0.4, 6.0, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,1.7,16.200000000000003,Middleborough - Middleborough High,01820505, 4.1, 1.2, 4.5, 83.8, 1.1, 0.1, 5.3, 49.0, 50.8, 0.2 -1,1,a-cure-i1,2022-23,0.0,15.900000000000006,Middleton - Fuller Meadow,01840003, 1.7, 3.4, 5.7, 84.1, 1.4, 0.0, 3.7, 56.4, 43.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.299999999999997,Middleton - Howe-Manning,01840005, 1.4, 4.2, 5.2, 84.7, 0.7, 0.2, 3.5, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2022-23,4.5,44.1,Milford - Brookside,01850065, 4.2, 0.9, 35.5, 55.9, 1.3, 0.0, 2.2, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2022-23,4.1,48.7,Milford - Memorial,01850010, 4.2, 2.1, 38.1, 51.3, 1.3, 0.0, 3.0, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2022-23,4.2,45.2,Milford - Milford High,01850505, 3.4, 1.9, 34.8, 54.8, 2.1, 0.0, 2.9, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,45.3,Milford - Shining Star Early Childhood Center,01850075, 4.1, 4.1, 32.9, 54.7, 0.6, 0.6, 2.9, 57.1, 42.9, 0.0 -2.654028436018957,2.65,a-cure-i1,2022-23,7.0,42.2,Milford - Stacy Middle,01850305, 3.4, 1.2, 31.7, 57.8, 1.7, 0.3, 4.1, 51.5, 48.5, 0.0 -2.1384248210023866,2.14,a-cure-i1,2022-23,5.6,41.9,Milford - Woodland,01850090, 3.6, 1.7, 33.2, 58.1, 1.1, 0.1, 2.2, 52.1, 47.8, 0.1 -1,1,a-cure-i1,2022-23,0.0,26.099999999999994,Millbury - Elmwood Street,01860017, 5.2, 4.0, 11.2, 73.9, 0.2, 0.0, 5.5, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,1.8,25.299999999999997,Millbury - Millbury Junior/Senior High,01860505, 4.1, 3.8, 11.6, 74.7, 0.0, 0.1, 5.7, 52.0, 47.0, 0.9 -1,1,a-cure-i1,2022-23,0.0,20.299999999999997,Millbury - Raymond E. Shaw Elementary,01860025, 3.5, 3.9, 7.2, 79.7, 0.0, 0.0, 5.7, 52.2, 47.8, 0.0 -4.0881057268722465,4.09,a-cure-i1,2022-23,5.8,22.700000000000003,Millis - Clyde F Brown,01870005, 1.5, 2.9, 12.5, 77.3, 0.6, 0.0, 5.2, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,3.7,19.799999999999997,Millis - Millis High School,01870505, 1.3, 2.2, 12.5, 80.2, 0.3, 0.0, 3.5, 46.3, 52.4, 1.3 -1,1,a-cure-i1,2022-23,3.2,14.799999999999997,Millis - Millis Middle,01870020, 1.1, 1.9, 6.7, 85.2, 0.0, 0.4, 4.8, 46.3, 53.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.700000000000003,Millis - TIES,01870515, 16.7, 0.0, 0.0, 83.3, 0.0, 0.0, 0.0, 33.3, 66.7, 0.0 -2.757062146892655,2.76,a-cure-i1,2022-23,6.1,35.400000000000006,Milton - Charles S Pierce Middle,01890410, 15.1, 8.1, 6.2, 64.6, 0.1, 0.0, 6.0, 48.5, 51.5, 0.0 -7.864406779661018,5,a-cure-i1,2022-23,11.6,23.599999999999994,Milton - Collicot,01890005, 3.1, 10.6, 4.3, 76.4, 0.0, 0.0, 5.7, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2022-23,2.5,26.799999999999997,Milton - Cunningham School,01890007, 5.1, 10.2, 5.3, 73.2, 0.2, 0.2, 5.9, 50.4, 49.6, 0.0 -9.866666666666665,5,a-cure-i1,2022-23,14.799999999999999,24.0,Milton - Glover,01890010, 5.4, 5.7, 6.0, 76.0, 0.5, 0.0, 6.5, 45.3, 54.7, 0.0 -3.918367346938776,3.92,a-cure-i1,2022-23,8.4,34.3,Milton - Milton High,01890505, 15.8, 7.0, 7.4, 65.7, 0.2, 0.0, 3.9, 50.3, 49.0, 0.8 -4.06514657980456,4.07,a-cure-i1,2022-23,15.6,61.4,Milton - Tucker,01890020, 31.4, 7.0, 10.7, 38.6, 0.0, 0.0, 12.4, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2022-23,3.5,26.200000000000003,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 4.3, 3.6, 10.7, 73.8, 0.4, 0.0, 7.1, 61.5, 36.9, 1.6 -1,1,a-cure-i1,2022-23,0.0,12.0,Mohawk Trail - Buckland-Shelburne Regional,07170005, 1.1, 0.0, 6.6, 88.0, 0.0, 0.0, 4.4, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.599999999999994,Mohawk Trail - Colrain Central,07170010, 1.9, 0.0, 5.8, 90.4, 0.0, 0.0, 1.9, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2022-23,3.1,8.900000000000006,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.4, 0.7, 4.1, 91.1, 0.0, 0.0, 3.7, 48.0, 51.3, 0.7 -1,1,a-cure-i1,2022-23,0.0,5.0,Mohawk Trail - Sanderson Academy,07170020, 1.4, 0.0, 2.9, 95.0, 0.7, 0.0, 0.0, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.200000000000003,Monomoy Regional School District - Chatham Elementary School,07120001, 6.0, 0.7, 13.2, 72.8, 0.7, 0.0, 6.6, 56.3, 43.7, 0.0 -1,1,a-cure-i1,2022-23,4.6,25.400000000000006,Monomoy Regional School District - Harwich Elementary School,07120002, 5.5, 1.5, 8.4, 74.6, 0.6, 0.2, 9.2, 57.7, 42.3, 0.0 -6.513274336283187,5,a-cure-i1,2022-23,9.2,22.599999999999994,Monomoy Regional School District - Monomoy Regional High School,07120515, 7.0, 1.4, 8.5, 77.4, 1.0, 0.3, 4.4, 47.0, 52.6, 0.4 -1,1,a-cure-i1,2022-23,2.5,24.099999999999994,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 6.6, 1.6, 9.3, 75.9, 0.5, 0.2, 5.9, 54.4, 45.3, 0.2 -1,1,a-cure-i1,2022-23,2.9,13.599999999999994,Monson - Granite Valley School,01910030, 0.5, 1.3, 9.3, 86.4, 0.5, 0.0, 2.0, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,3.4,16.900000000000006,Monson - Monson High School,01910505, 1.4, 1.0, 9.2, 83.1, 0.3, 0.3, 4.7, 43.1, 56.6, 0.3 -21.1014492753623,5,a-cure-i1,2022-23,9.1,6.900000000000006,Monson - Quarry Hill Community School,01910010, 1.5, 0.8, 4.6, 93.1, 0.0, 0.0, 0.0, 43.8, 56.2, 0.0 -5.51310861423221,5,a-cure-i1,2022-23,9.200000000000001,26.700000000000003,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 2.4, 1.3, 18.0, 73.3, 0.0, 0.1, 4.9, 50.2, 48.6, 1.2 -1,1,a-cure-i1,2022-23,0.0,13.900000000000006,Mount Greylock - Lanesborough Elementary,07150005, 1.3, 3.9, 7.4, 86.1, 0.0, 0.0, 1.3, 49.8, 50.2, 0.0 -10.777777777777773,5,a-cure-i1,2022-23,9.7,14.400000000000006,Mount Greylock - Mt Greylock Regional High,07150505, 3.0, 2.2, 5.8, 85.6, 0.0, 0.0, 3.4, 47.6, 51.5, 0.9 -1,1,a-cure-i1,2022-23,3.0,22.299999999999997,Mount Greylock - Williamstown Elementary,07150010, 4.9, 2.3, 6.7, 77.7, 0.0, 0.0, 8.4, 53.8, 45.5, 0.7 -2.876971608832808,2.88,a-cure-i1,2022-23,11.4,63.4,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 18.0, 28.7, 11.4, 36.6, 0.2, 0.1, 4.9, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.799999999999997,Nahant - Johnson,01960010, 0.0, 0.6, 10.3, 83.2, 0.0, 0.0, 5.8, 60.0, 40.0, 0.0 -4.4230055658627085,4.42,a-cure-i1,2022-23,14.9,53.9,Nantucket - Cyrus Peirce,01970010, 8.7, 0.8, 40.0, 46.1, 0.0, 0.0, 4.5, 52.1, 47.9, 0.0 -1.9072847682119203,1.91,a-cure-i1,2022-23,7.199999999999999,60.4,Nantucket - Nantucket Elementary,01970005, 7.0, 1.2, 45.9, 39.6, 0.0, 0.0, 6.3, 47.6, 52.4, 0.0 -2.6666666666666665,2.67,a-cure-i1,2022-23,8.7,52.2,Nantucket - Nantucket High,01970505, 10.2, 1.9, 36.3, 47.8, 0.2, 0.0, 3.6, 51.5, 48.5, 0.0 -1.4922279792746116,1.49,a-cure-i1,2022-23,5.4,57.9,Nantucket - Nantucket Intermediate School,01970020, 7.1, 1.2, 44.7, 42.1, 0.0, 0.0, 5.0, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.299999999999997,Narragansett - Narragansett Middle,07200305, 1.1, 0.3, 6.4, 89.7, 0.0, 0.0, 2.5, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.200000000000003,Narragansett - Narragansett Regional High,07200505, 1.1, 1.1, 10.7, 81.8, 0.2, 0.2, 4.9, 54.3, 44.7, 1.1 -1,1,a-cure-i1,2022-23,0.0,16.599999999999994,Narragansett - Templeton Elementary School,07200020, 2.2, 0.9, 10.2, 83.4, 0.0, 0.0, 3.3, 51.7, 48.3, 0.0 -4.316279069767441,4.32,a-cure-i1,2022-23,5.8,21.5,Nashoba - Center School,07250020, 0.6, 6.0, 8.0, 78.5, 0.0, 0.0, 6.8, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.200000000000003,Nashoba - Florence Sawyer School,07250025, 1.1, 4.5, 5.0, 84.8, 0.0, 0.1, 4.5, 50.5, 49.5, 0.0 -5.077844311377245,5,a-cure-i1,2022-23,5.3,16.700000000000003,Nashoba - Hale,07250310, 2.6, 4.1, 4.8, 83.3, 0.0, 0.0, 5.2, 46.7, 53.3, 0.0 -5.05699481865285,5,a-cure-i1,2022-23,6.1,19.299999999999997,Nashoba - Luther Burbank Middle School,07250305, 2.1, 1.2, 13.2, 80.7, 0.4, 0.0, 2.5, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.200000000000003,Nashoba - Mary Rowlandson Elementary,07250010, 0.8, 2.1, 14.8, 77.8, 0.0, 0.0, 4.4, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2022-23,4.9,16.799999999999997,Nashoba - Nashoba Regional,07250505, 1.8, 4.7, 7.0, 83.2, 0.0, 0.1, 3.2, 50.7, 49.1, 0.2 -6.264550264550263,5,a-cure-i1,2022-23,7.4,18.900000000000006,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 2.4, 1.3, 11.5, 81.1, 0.4, 0.1, 3.2, 60.1, 37.5, 2.4 -3.688473520249222,3.69,a-cure-i1,2022-23,7.4,32.099999999999994,Natick - Bennett-Hemenway,01980005, 1.9, 15.4, 9.2, 67.9, 0.0, 0.0, 5.6, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,46.1,Natick - Brown,01980010, 2.8, 24.1, 13.9, 53.9, 0.0, 0.0, 5.4, 54.5, 45.5, 0.0 -3.5687732342007426,3.57,a-cure-i1,2022-23,6.0,26.900000000000006,Natick - J F Kennedy Middle School,01980305, 1.1, 11.5, 7.9, 73.1, 0.3, 0.0, 6.0, 54.5, 45.2, 0.2 -1,1,a-cure-i1,2022-23,0.0,22.799999999999997,Natick - Johnson,01980031, 2.9, 6.6, 8.8, 77.2, 0.0, 0.0, 4.4, 53.7, 45.6, 0.7 -1,1,a-cure-i1,2022-23,0.0,35.0,Natick - Lilja Elementary,01980035, 3.7, 12.8, 11.1, 65.0, 0.2, 0.0, 7.1, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.0,Natick - Memorial,01980043, 1.4, 6.9, 5.1, 78.0, 0.0, 0.0, 8.6, 49.3, 50.7, 0.0 -4.3984063745019935,4.4,a-cure-i1,2022-23,6.9,25.099999999999994,Natick - Natick High,01980505, 3.7, 9.3, 7.1, 74.9, 0.1, 0.0, 5.0, 52.8, 46.7, 0.6 -1,1,a-cure-i1,2022-23,3.0,27.400000000000006,Natick - Wilson Middle,01980310, 4.2, 8.4, 7.7, 72.6, 0.1, 0.1, 6.8, 48.7, 51.2, 0.1 -1,1,a-cure-i1,2022-23,2.6,16.700000000000003,Nauset - Nauset Regional High,06600505, 6.4, 2.3, 4.7, 83.3, 0.1, 0.0, 3.1, 45.3, 54.2, 0.5 -1,1,a-cure-i1,2022-23,3.3,19.5,Nauset - Nauset Regional Middle,06600305, 4.9, 1.3, 7.6, 80.5, 0.0, 0.0, 5.7, 49.4, 50.6, 0.0 -5.753424657534246,5,a-cure-i1,2022-23,10.5,29.200000000000003,Needham - Broadmeadow,01990005, 2.0, 13.7, 4.7, 70.8, 0.0, 0.0, 8.8, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2022-23,2.7,29.099999999999994,Needham - High Rock School,01990410, 4.5, 11.9, 7.0, 70.9, 0.0, 0.0, 5.8, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,3.7,40.8,Needham - John Eliot,01990020, 6.8, 17.6, 8.5, 59.2, 0.0, 0.0, 8.0, 50.5, 49.5, 0.0 -7.999999999999999,5,a-cure-i1,2022-23,11.1,22.200000000000003,Needham - Needham High,01990505, 1.9, 7.6, 7.9, 77.8, 0.0, 0.1, 4.7, 48.4, 50.9, 0.7 -1,1,a-cure-i1,2022-23,4.8,26.599999999999994,Needham - Newman Elementary,01990050, 2.9, 11.3, 6.7, 73.4, 0.0, 0.1, 5.6, 53.6, 46.2, 0.1 -4.085106382978723,4.09,a-cure-i1,2022-23,7.2,28.200000000000003,Needham - Pollard Middle,01990405, 3.8, 11.1, 7.5, 71.8, 0.0, 0.1, 5.7, 48.8, 51.1, 0.1 -4.518272425249171,4.52,a-cure-i1,2022-23,8.5,30.099999999999994,Needham - Sunita L. Williams Elementary,01990035, 4.2, 11.9, 6.2, 69.9, 0.2, 0.2, 7.4, 54.6, 45.4, 0.0 -7.166023166023165,5,a-cure-i1,2022-23,11.600000000000001,25.900000000000006,Needham - William Mitchell,01990040, 3.5, 10.4, 5.5, 74.1, 0.0, 0.0, 6.4, 53.5, 46.5, 0.0 -7.725359911406423,5,a-cure-i1,2022-23,43.6,90.3,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 51.3, 2.3, 29.5, 9.7, 0.7, 0.0, 6.5, 51.3, 48.7, 0.0 -2.3390357698289272,2.34,a-cure-i1,2022-23,9.4,64.3,New Bedford - Abraham Lincoln,02010095, 12.5, 0.8, 44.1, 35.7, 0.2, 0.2, 6.6, 53.4, 46.6, 0.0 -4.4719358533791524,4.47,a-cure-i1,2022-23,24.4,87.3,New Bedford - Alfred J Gomes,02010063, 12.1, 0.2, 71.6, 12.7, 0.6, 0.0, 2.8, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2022-23,3.4,37.7,New Bedford - Betsey B Winslow,02010140, 11.3, 2.2, 17.3, 62.3, 0.4, 0.0, 6.5, 53.2, 46.3, 0.4 -1,1,a-cure-i1,2022-23,4.7,74.4,New Bedford - Carlos Pacheco,02010105, 15.2, 1.5, 51.8, 25.6, 0.3, 0.0, 5.5, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2022-23,4.6,33.099999999999994,New Bedford - Casimir Pulaski,02010123, 6.1, 1.3, 20.0, 66.9, 0.6, 0.2, 5.0, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2022-23,4.1,47.8,New Bedford - Charles S Ashley,02010010, 5.8, 2.2, 32.0, 52.2, 0.4, 0.0, 7.6, 51.4, 48.6, 0.0 -4.0795660036166375,4.08,a-cure-i1,2022-23,14.100000000000001,55.3,New Bedford - Elizabeth Carter Brooks,02010015, 13.8, 1.1, 34.9, 44.7, 0.4, 0.0, 5.1, 46.2, 53.8, 0.0 -1.2201438848920863,1.22,a-cure-i1,2022-23,5.3,69.5,New Bedford - Ellen R Hathaway,02010075, 18.6, 1.7, 44.5, 30.5, 0.4, 0.0, 4.2, 52.1, 47.9, 0.0 -1.3289036544850499,1.33,a-cure-i1,2022-23,5.0,60.2,New Bedford - Elwyn G Campbell,02010020, 14.4, 0.7, 39.4, 39.8, 0.0, 0.0, 5.6, 55.3, 44.7, 0.0 -2.327990135635019,2.33,a-cure-i1,2022-23,11.8,81.1,New Bedford - Hayden/McFadden,02010078, 12.0, 0.4, 64.5, 18.9, 0.4, 0.0, 3.7, 50.6, 49.4, 0.0 -3.6721311475409837,3.67,a-cure-i1,2022-23,16.8,73.2,New Bedford - Irwin M. Jacobs Elementary School,02010070, 8.4, 0.5, 58.6, 26.8, 0.0, 0.2, 5.5, 51.6, 48.1, 0.2 -2.7379679144385025,2.74,a-cure-i1,2022-23,9.6,56.1,New Bedford - James B Congdon,02010040, 15.3, 0.3, 35.0, 43.9, 0.6, 0.0, 4.9, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,41.6,New Bedford - Jireh Swift,02010130, 8.0, 0.9, 27.4, 58.4, 0.9, 0.0, 4.4, 46.0, 54.0, 0.0 -3.7509933774834443,3.75,a-cure-i1,2022-23,17.700000000000003,75.5,New Bedford - John Avery Parker,02010115, 19.5, 0.8, 45.9, 24.5, 0.0, 0.0, 9.3, 50.2, 49.8, 0.0 -1.989189189189189,1.99,a-cure-i1,2022-23,9.2,74.0,New Bedford - John B Devalles,02010050, 17.4, 0.0, 51.0, 26.0, 0.0, 0.0, 5.6, 49.3, 50.7, 0.0 -2.2122186495176845,2.21,a-cure-i1,2022-23,8.6,62.2,New Bedford - Keith Middle School,02010405, 17.9, 0.7, 35.3, 37.8, 0.3, 0.0, 7.9, 51.3, 48.6, 0.1 -3.6182085168869316,3.62,a-cure-i1,2022-23,15.400000000000002,68.1,New Bedford - New Bedford High,02010505, 15.2, 0.6, 46.8, 31.9, 0.3, 0.1, 5.1, 53.9, 45.9, 0.2 -2.285714285714286,2.29,a-cure-i1,2022-23,7.7,53.9,New Bedford - Normandin Middle School,02010410, 9.4, 1.1, 37.9, 46.1, 0.5, 0.1, 4.9, 51.5, 48.5, 0.0 -3.67816091954023,3.68,a-cure-i1,2022-23,20.0,87.0,New Bedford - Renaissance Community Innovation School,02010124, 22.9, 0.0, 61.8, 13.0, 0.8, 0.0, 1.5, 49.6, 50.4, 0.0 -2.1850220264317186,2.19,a-cure-i1,2022-23,9.3,68.1,New Bedford - Roosevelt Middle School,02010415, 16.5, 0.3, 47.3, 31.9, 0.1, 0.1, 3.9, 53.1, 46.9, 0.0 -2.7435158501440915,2.74,a-cure-i1,2022-23,11.899999999999999,69.4,New Bedford - Sgt Wm H Carney Academy,02010045, 20.0, 0.8, 39.4, 30.6, 0.5, 0.0, 8.7, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2022-23,3.6,56.2,New Bedford - Thomas R Rodman,02010125, 11.4, 1.0, 39.5, 43.8, 0.0, 0.0, 4.3, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,3.4,57.8,New Bedford - Trinity Day Academy,02010510, 8.4, 0.0, 38.6, 42.2, 0.0, 0.0, 10.8, 68.7, 30.1, 1.2 -2.9146496815286627,2.91,a-cure-i1,2022-23,14.3,78.5,New Bedford - Whaling City Junior/Senior High School,02010515, 23.0, 0.7, 40.7, 21.5, 1.5, 0.0, 12.6, 63.7, 36.3, 0.0 -2.9999999999999996,3.0,a-cure-i1,2022-23,6.6,35.2,New Bedford - William H Taylor,02010135, 8.2, 0.0, 17.6, 64.8, 0.0, 0.0, 9.4, 50.4, 49.6, 0.0 -5.467741935483871,5,a-cure-i1,2022-23,33.9,99.2,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 87.9, 0.5, 6.6, 0.8, 0.1, 0.3, 3.8, 48.3, 51.7, 0.0 -14.399999999999999,5,a-cure-i1,2022-23,11.7,13.0,New Salem-Wendell - Swift River,07280015, 0.0, 1.5, 3.8, 87.0, 0.0, 0.0, 7.6, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.099999999999994,Newburyport - Edward G. Molin Elementary School,02040030, 0.7, 2.2, 5.7, 88.9, 0.0, 0.0, 2.5, 43.0, 57.0, 0.0 -1,1,a-cure-i1,2022-23,3.8,11.799999999999997,Newburyport - Francis T Bresnahan Elementary,02040005, 0.7, 2.1, 5.6, 88.2, 0.0, 0.0, 3.5, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,1.6,9.799999999999997,Newburyport - Newburyport High,02040505, 1.2, 2.8, 3.5, 90.2, 0.2, 0.0, 2.0, 49.4, 50.6, 0.0 -19.076923076923066,5,a-cure-i1,2022-23,12.399999999999999,10.400000000000006,Newburyport - Rupert A Nock Middle,02040305, 0.8, 2.3, 6.0, 89.6, 0.0, 0.0, 1.2, 51.1, 48.6, 0.2 -7.775280898876406,5,a-cure-i1,2022-23,17.3,35.599999999999994,Newton - A E Angier,02070005, 3.7, 16.2, 6.1, 64.4, 0.0, 0.0, 9.6, 49.7, 49.2, 1.1 -2.962962962962963,2.96,a-cure-i1,2022-23,8.0,43.2,Newton - Bigelow Middle,02070305, 6.4, 17.0, 11.7, 56.8, 0.0, 0.0, 8.0, 47.1, 52.2, 0.7 -8.073126142595978,5,a-cure-i1,2022-23,27.6,54.7,Newton - Bowen,02070015, 4.4, 27.2, 12.8, 45.3, 0.0, 0.0, 10.3, 49.4, 50.3, 0.3 -8.162661737523106,5,a-cure-i1,2022-23,27.6,54.1,Newton - C C Burr,02070020, 6.3, 24.2, 14.4, 45.9, 0.0, 0.0, 9.2, 50.5, 48.6, 0.8 -4.21978021978022,4.22,a-cure-i1,2022-23,12.0,45.5,Newton - Cabot,02070025, 5.4, 15.8, 11.1, 54.5, 0.2, 0.2, 12.7, 49.3, 50.5, 0.2 -3.45631067961165,3.46,a-cure-i1,2022-23,8.899999999999999,41.2,Newton - Charles E Brown Middle,02070310, 4.1, 23.5, 7.2, 58.8, 0.1, 0.0, 6.3, 51.6, 47.5, 0.9 -4.064,4.06,a-cure-i1,2022-23,12.700000000000001,50.0,Newton - Countryside,02070040, 5.9, 28.0, 7.3, 50.0, 0.0, 0.0, 8.9, 54.0, 46.0, 0.0 -3.270072992700729,3.27,a-cure-i1,2022-23,8.399999999999999,41.1,Newton - F A Day Middle,02070315, 4.9, 16.7, 9.6, 58.9, 0.3, 0.4, 9.1, 50.5, 49.3, 0.1 -3.607843137254902,3.61,a-cure-i1,2022-23,9.2,40.8,Newton - Franklin,02070055, 3.0, 16.5, 11.8, 59.2, 0.0, 0.0, 9.4, 46.0, 54.0, 0.0 -7.9801488833746905,5,a-cure-i1,2022-23,20.1,40.3,Newton - Horace Mann,02070075, 5.6, 13.7, 10.1, 59.7, 0.0, 0.0, 10.9, 52.9, 46.8, 0.3 -10.702341137123744,5,a-cure-i1,2022-23,20.0,29.900000000000006,Newton - John Ward,02070120, 1.5, 14.4, 5.7, 70.1, 0.0, 0.0, 8.2, 52.6, 47.4, 0.0 -4.863309352517985,4.86,a-cure-i1,2022-23,16.9,55.6,Newton - Lincoln-Eliot,02070070, 7.1, 20.1, 18.6, 44.4, 0.0, 0.0, 9.8, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2022-23,4.6,41.0,Newton - Mason-Rice,02070080, 0.6, 24.7, 5.7, 59.0, 0.0, 0.0, 9.9, 47.9, 51.8, 0.3 -4.385964912280701,4.39,a-cure-i1,2022-23,12.5,45.6,Newton - Memorial Spaulding,02070105, 5.5, 25.7, 9.1, 54.4, 0.0, 0.0, 5.3, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,58.1,Newton - Newton Early Childhood Program,02070108, 3.8, 28.5, 9.7, 41.9, 0.0, 0.0, 16.1, 63.4, 36.6, 0.0 -5.949748743718593,5,a-cure-i1,2022-23,14.799999999999999,39.8,Newton - Newton North High,02070505, 5.1, 15.5, 12.1, 60.2, 0.1, 0.1, 7.0, 50.3, 48.9, 0.8 -6.171428571428571,5,a-cure-i1,2022-23,16.2,42.0,Newton - Newton South High,02070510, 3.5, 24.1, 7.5, 58.0, 0.2, 0.1, 6.6, 51.5, 47.8, 0.7 -5.379310344827585,5,a-cure-i1,2022-23,15.599999999999998,46.4,Newton - Oak Hill Middle,02070320, 5.3, 23.9, 10.7, 53.6, 0.0, 0.0, 6.5, 49.3, 50.4, 0.3 -5.035532994923858,5,a-cure-i1,2022-23,12.4,39.4,Newton - Peirce,02070100, 4.1, 14.5, 11.2, 60.6, 0.0, 0.0, 9.5, 52.3, 47.7, 0.0 -3.826086956521739,3.83,a-cure-i1,2022-23,13.2,55.2,Newton - Underwood,02070115, 8.6, 22.6, 12.7, 44.8, 0.5, 0.0, 10.9, 46.6, 53.4, 0.0 -3.4945848375451263,3.49,a-cure-i1,2022-23,12.1,55.4,Newton - Williams,02070125, 3.9, 36.8, 6.9, 44.6, 0.0, 0.0, 7.8, 52.8, 47.2, 0.0 -2.862254025044723,2.86,a-cure-i1,2022-23,10.0,55.9,Newton - Zervas,02070130, 6.9, 27.6, 9.9, 44.1, 0.5, 0.5, 10.6, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.799999999999997,Norfolk - Freeman-Kennedy School,02080005, 1.7, 2.3, 3.6, 89.2, 0.0, 0.0, 3.2, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.0,Norfolk - H Olive Day,02080015, 1.4, 2.7, 3.1, 89.0, 0.0, 0.0, 3.9, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.200000000000003,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 2.1, 0.5, 0.2, 92.8, 0.9, 0.2, 3.4, 27.1, 71.4, 1.6 -1,1,a-cure-i1,2022-23,4.9,20.200000000000003,North Adams - Brayton,02090035, 1.3, 1.3, 9.6, 79.8, 0.0, 0.0, 7.9, 61.8, 38.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.700000000000003,North Adams - Colegrove Park Elementary,02090008, 2.6, 0.4, 8.1, 78.3, 0.9, 0.0, 9.8, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2022-23,1.7,18.900000000000006,North Adams - Drury High,02090505, 2.8, 0.8, 7.3, 81.1, 0.4, 0.4, 7.1, 45.4, 54.4, 0.2 -1,1,a-cure-i1,2022-23,0.0,18.299999999999997,North Adams - Greylock,02090015, 0.8, 0.0, 7.5, 81.7, 0.0, 0.4, 9.5, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.900000000000006,North Andover - Anne Bradstreet Early Childhood Center,02110005, 2.6, 9.8, 16.0, 68.1, 0.0, 0.2, 3.3, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.0,North Andover - Annie L Sargent School,02110018, 1.3, 7.5, 6.9, 79.0, 0.2, 0.0, 5.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,46.4,North Andover - Atkinson,02110001, 4.4, 5.5, 33.9, 53.6, 0.0, 0.0, 2.6, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.400000000000006,North Andover - Franklin,02110010, 3.4, 7.9, 8.7, 75.6, 0.0, 0.0, 4.5, 54.1, 45.7, 0.3 -1,1,a-cure-i1,2022-23,0.0,19.900000000000006,North Andover - Kittredge,02110015, 1.8, 2.2, 11.9, 80.1, 0.0, 0.0, 4.0, 52.7, 46.9, 0.4 -1,1,a-cure-i1,2022-23,1.1,28.299999999999997,North Andover - North Andover High,02110505, 3.3, 6.9, 14.1, 71.7, 0.3, 0.1, 3.6, 50.0, 49.9, 0.1 -1,1,a-cure-i1,2022-23,0.0,30.0,North Andover - North Andover Middle,02110305, 2.7, 7.5, 15.6, 70.0, 0.1, 0.0, 4.1, 53.6, 46.1, 0.3 -1,1,a-cure-i1,2022-23,0.0,29.900000000000006,North Andover - Thomson,02110020, 2.0, 5.3, 19.9, 70.1, 0.0, 0.0, 2.7, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.599999999999994,North Attleborough - Amvet Boulevard,02120007, 6.0, 14.9, 5.0, 68.4, 0.7, 0.0, 5.0, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,39.8,North Attleborough - Community,02120030, 9.0, 8.3, 14.2, 60.2, 0.3, 0.7, 7.3, 51.9, 47.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,21.0,North Attleborough - Falls,02120010, 3.9, 4.8, 3.9, 79.0, 0.4, 0.0, 7.9, 55.0, 44.5, 0.4 -1,1,a-cure-i1,2022-23,0.0,16.400000000000006,North Attleborough - Joseph W Martin Jr Elementary,02120013, 3.5, 4.1, 6.2, 83.6, 0.0, 0.0, 2.6, 54.7, 45.3, 0.0 -4.857142857142856,4.86,a-cure-i1,2022-23,6.8,22.400000000000006,North Attleborough - North Attleboro High,02120505, 5.0, 7.6, 6.1, 77.6, 0.1, 0.3, 3.4, 48.4, 51.1, 0.5 -1,1,a-cure-i1,2022-23,0.0,35.8,North Attleborough - North Attleborough Early Learning Center,02120020, 7.4, 15.5, 5.4, 64.2, 0.0, 0.0, 7.4, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2022-23,3.2,25.099999999999994,North Attleborough - North Attleborough Middle,02120305, 5.2, 7.8, 7.2, 74.9, 0.0, 0.0, 4.8, 52.7, 47.3, 0.0 -18.433179723502302,5,a-cure-i1,2022-23,25.0,21.700000000000003,North Attleborough - Roosevelt Avenue,02120015, 6.8, 8.8, 5.2, 78.3, 0.0, 0.0, 0.8, 51.4, 48.6, 0.0 -9.025641025641029,5,a-cure-i1,2022-23,8.8,15.599999999999994,North Brookfield - North Brookfield Elementary,02150015, 3.0, 1.0, 7.6, 84.4, 0.0, 0.0, 4.0, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2022-23,2.9,19.099999999999994,North Brookfield - North Brookfield High,02150505, 2.9, 0.7, 12.5, 80.9, 0.0, 0.0, 2.9, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.599999999999994,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 12.1, 84.4, 0.0, 0.0, 3.5, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2022-23,1.5,14.0,North Middlesex - Hawthorne Brook,07350030, 1.7, 1.3, 7.3, 86.0, 0.0, 0.0, 3.7, 44.2, 55.8, 0.0 -1,1,a-cure-i1,2022-23,4.0,23.700000000000003,North Middlesex - Nissitissit Middle School,07350310, 3.3, 3.5, 10.8, 76.3, 0.2, 0.0, 5.8, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,1.9,15.299999999999997,North Middlesex - North Middlesex Regional,07350505, 1.7, 2.7, 7.3, 84.7, 0.0, 0.1, 3.5, 52.9, 46.7, 0.4 -1,1,a-cure-i1,2022-23,0.0,13.099999999999994,North Middlesex - Spaulding Memorial,07350005, 2.4, 1.2, 7.2, 86.9, 0.0, 0.0, 2.4, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.0,North Middlesex - Squannacook Early Childhood Center,07350002, 4.0, 2.0, 3.0, 88.0, 0.0, 0.0, 3.0, 62.0, 38.0, 0.0 -1,1,a-cure-i1,2022-23,3.2,20.099999999999994,North Middlesex - Varnum Brook,07350035, 2.5, 3.3, 9.6, 79.9, 0.0, 0.2, 4.4, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.599999999999994,North Reading - E Ethel Little School,02170003, 0.9, 4.3, 4.3, 85.4, 0.0, 0.0, 5.0, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.400000000000006,North Reading - J Turner Hood,02170010, 0.8, 5.5, 6.0, 84.6, 0.0, 0.3, 2.9, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.700000000000003,North Reading - L D Batchelder,02170005, 0.9, 4.5, 2.4, 88.3, 0.0, 0.0, 3.9, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2022-23,4.9,14.099999999999994,North Reading - North Reading High,02170505, 0.2, 5.9, 5.0, 85.9, 0.0, 0.0, 3.1, 47.5, 52.0, 0.5 -1,1,a-cure-i1,2022-23,0.0,15.900000000000006,North Reading - North Reading Middle,02170305, 0.7, 5.2, 5.7, 84.1, 0.0, 0.0, 4.3, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,42.2,Northampton - Bridge Street,02100005, 3.4, 3.0, 29.7, 57.8, 0.0, 0.0, 6.1, 49.8, 49.8, 0.4 -16.66453674121406,5,a-cure-i1,2022-23,32.6,31.299999999999997,Northampton - Jackson Street,02100020, 2.7, 4.1, 15.5, 68.7, 0.0, 0.0, 8.9, 53.3, 46.4, 0.3 -1,1,a-cure-i1,2022-23,1.0,32.099999999999994,Northampton - John F Kennedy Middle School,02100410, 4.1, 2.7, 17.7, 67.9, 0.2, 0.0, 7.4, 52.7, 46.1, 1.2 -1,1,a-cure-i1,2022-23,0.0,30.5,Northampton - Leeds,02100025, 0.7, 3.0, 19.8, 69.5, 0.3, 0.0, 6.7, 53.0, 46.6, 0.3 -5.693950177935944,5,a-cure-i1,2022-23,10.0,28.099999999999994,Northampton - Northampton High,02100505, 3.0, 3.0, 14.3, 71.9, 0.2, 0.0, 7.6, 48.9, 49.3, 1.8 -5.308755760368663,5,a-cure-i1,2022-23,7.2,21.700000000000003,Northampton - R. K. Finn Ryan Road,02100029, 2.1, 2.1, 14.0, 78.3, 0.0, 0.0, 3.4, 52.8, 46.4, 0.9 -1,1,a-cure-i1,2022-23,0.0,17.0,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.9, 0.5, 13.4, 83.0, 0.2, 0.2, 1.8, 59.2, 39.8, 1.1 -1,1,a-cure-i1,2022-23,1.9,30.400000000000006,Northboro-Southboro - Algonquin Regional High,07300505, 1.6, 14.7, 9.0, 69.6, 0.2, 0.4, 4.5, 47.5, 52.3, 0.2 -1,1,a-cure-i1,2022-23,0.0,37.7,Northborough - Fannie E Proctor,02130015, 5.6, 16.3, 11.5, 62.3, 0.4, 0.0, 4.0, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,25.900000000000006,Northborough - Lincoln Street,02130003, 1.0, 12.6, 6.3, 74.1, 0.3, 0.3, 5.2, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,39.8,Northborough - Marguerite E Peaslee,02130014, 2.4, 10.8, 14.7, 60.2, 0.4, 4.0, 7.6, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,36.3,Northborough - Marion E Zeh,02130020, 0.8, 18.3, 12.7, 63.7, 0.0, 0.0, 4.4, 52.2, 47.8, 0.0 -3.0967741935483866,3.1,a-cure-i1,2022-23,5.4,27.900000000000006,Northborough - Robert E. Melican Middle School,02130305, 1.1, 10.8, 10.1, 72.1, 0.4, 2.4, 3.2, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.5,Northbridge - Northbridge Elementary School,02140001, 1.8, 0.1, 11.8, 84.5, 0.0, 0.0, 1.9, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.5,Northbridge - Northbridge High,02140505, 1.9, 1.0, 12.1, 82.5, 0.0, 0.0, 2.5, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.599999999999994,Northbridge - Northbridge Middle,02140305, 0.8, 1.7, 9.8, 84.4, 0.2, 0.0, 3.1, 46.2, 53.8, 0.0 -1,1,a-cure-i1,2022-23,1.2,47.8,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 4.1, 1.5, 40.9, 52.2, 0.2, 0.2, 0.9, 54.6, 44.9, 0.5 -1,1,a-cure-i1,2022-23,0.0,4.299999999999997,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 1.1, 0.4, 1.1, 95.7, 0.0, 0.2, 1.5, 60.7, 39.1, 0.2 -1,1,a-cure-i1,2022-23,0.0,12.900000000000006,Norton - Henri A. Yelle,02180060, 3.3, 1.2, 5.1, 87.1, 0.0, 0.0, 3.3, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.599999999999994,Norton - J C Solmonese,02180015, 4.1, 2.3, 3.1, 85.4, 0.0, 0.0, 5.1, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.799999999999997,Norton - L G Nourse Elementary,02180010, 3.5, 2.1, 3.8, 87.2, 0.0, 0.0, 3.5, 53.3, 46.7, 0.0 -7.685039370078738,5,a-cure-i1,2022-23,6.1,12.700000000000003,Norton - Norton High,02180505, 3.4, 2.8, 3.7, 87.3, 0.1, 0.0, 2.7, 49.0, 50.6, 0.4 -1,1,a-cure-i1,2022-23,0.0,14.799999999999997,Norton - Norton Middle,02180305, 3.4, 0.7, 5.1, 85.2, 0.4, 0.2, 5.1, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,3.6,12.099999999999994,Norwell - Grace Farrar Cole,02190005, 1.1, 3.3, 1.3, 87.9, 0.0, 0.0, 6.3, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.799999999999997,Norwell - Norwell High,02190505, 0.2, 2.7, 1.3, 93.2, 0.2, 0.0, 2.5, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,2.7,8.200000000000003,Norwell - Norwell Middle School,02190405, 0.8, 2.4, 0.8, 91.8, 0.0, 0.2, 4.0, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.900000000000006,Norwell - William G Vinal,02190020, 0.4, 1.9, 1.5, 91.1, 0.0, 0.0, 5.1, 51.0, 48.6, 0.4 -1.3333333333333333,1.33,a-cure-i1,2022-23,5.1,61.2,Norwood - Balch,02200005, 15.7, 6.1, 36.5, 38.8, 0.0, 1.6, 1.3, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,56.8,Norwood - Charles J Prescott,02200025, 10.7, 26.3, 12.8, 43.2, 0.4, 1.2, 5.3, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2022-23,4.0,36.2,Norwood - Cornelius M Callahan,02200010, 12.1, 6.7, 12.9, 63.8, 0.0, 0.9, 3.6, 49.6, 50.4, 0.0 -1.9762470308788598,1.98,a-cure-i1,2022-23,5.2,42.1,Norwood - Dr. Philip O. Coakley Middle School,02200305, 13.3, 4.3, 21.4, 57.9, 0.1, 0.1, 3.0, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2022-23,2.4,35.8,Norwood - F A Cleveland,02200015, 8.9, 4.2, 16.0, 64.2, 0.0, 1.0, 5.8, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,45.8,Norwood - George F. Willett,02200075, 10.2, 10.2, 18.9, 54.2, 1.0, 1.5, 4.0, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,32.7,Norwood - John P Oldham,02200020, 12.4, 3.3, 12.4, 67.3, 0.4, 1.5, 2.9, 51.6, 48.4, 0.0 -3.067961165048543,3.07,a-cure-i1,2022-23,7.8999999999999995,41.2,Norwood - Norwood High,02200505, 13.6, 6.0, 18.7, 58.8, 0.1, 0.3, 2.6, 48.0, 51.4, 0.5 -1.7261410788381741,1.73,a-cure-i1,2022-23,5.2,48.2,Oak Bluffs - Oak Bluffs Elementary,02210005, 3.4, 1.4, 37.4, 51.8, 1.1, 0.0, 4.8, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,4.2,7.0,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.5, 0.9, 2.0, 93.0, 0.4, 0.0, 3.2, 64.0, 35.7, 0.4 -1,1,a-cure-i1,2022-23,2.2,12.0,Old Rochester - Old Rochester Regional High,07400505, 2.6, 1.8, 2.9, 88.0, 0.0, 0.0, 4.8, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,2.9,13.700000000000003,Old Rochester - Old Rochester Regional Jr High,07400405, 3.5, 0.9, 3.3, 86.3, 0.0, 0.0, 5.9, 50.5, 49.1, 0.5 -5.025270758122743,5,a-cure-i1,2022-23,8.7,27.700000000000003,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 3.9, 0.3, 20.7, 72.3, 0.3, 0.3, 2.2, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.700000000000003,Orange - Dexter Park,02230010, 1.7, 1.0, 11.2, 81.3, 0.3, 0.0, 4.4, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.099999999999994,Orange - Fisher Hill,02230015, 0.9, 1.7, 7.0, 83.9, 0.0, 0.4, 6.1, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.799999999999997,Orleans - Orleans Elementary,02240005, 4.1, 1.4, 10.3, 77.2, 0.7, 0.0, 6.2, 45.5, 54.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.5,Oxford - Alfred M Chaffee,02260010, 3.1, 0.3, 17.1, 73.5, 0.0, 0.0, 5.9, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.799999999999997,Oxford - Clara Barton,02260005, 2.3, 1.9, 15.6, 75.2, 0.4, 0.0, 4.6, 48.5, 51.5, 0.0 -4.894117647058823,4.89,a-cure-i1,2022-23,7.8,25.5,Oxford - Oxford High,02260505, 2.6, 1.8, 15.4, 74.5, 0.3, 0.0, 5.5, 48.2, 51.0, 0.8 -1,1,a-cure-i1,2022-23,3.1,22.599999999999994,Oxford - Oxford Middle,02260405, 3.2, 0.2, 15.1, 77.4, 0.0, 0.0, 4.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2022-23,2.4,22.5,Palmer - Old Mill Pond,02270008, 1.8, 1.5, 15.0, 77.5, 0.0, 0.0, 4.2, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,2.1,29.0,Palmer - Palmer High,02270505, 2.1, 3.0, 18.7, 71.0, 0.2, 0.0, 5.0, 52.5, 47.1, 0.4 -1,1,a-cure-i1,2022-23,0.0,14.799999999999997,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 1.9, 0.3, 9.1, 85.2, 0.2, 0.2, 3.3, 60.6, 38.9, 0.5 -1,1,a-cure-i1,2022-23,0.0,98.1,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 10.0, 0.0, 87.0, 1.9, 0.0, 0.0, 1.1, 41.8, 58.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,33.8,Peabody - Captain Samuel Brown,02290005, 4.3, 3.7, 23.9, 66.2, 0.0, 0.3, 1.6, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,3.2,44.2,Peabody - Center,02290015, 7.8, 3.1, 29.1, 55.8, 0.4, 0.0, 3.6, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.599999999999994,Peabody - J Henry Higgins Middle,02290305, 4.2, 2.1, 20.8, 70.4, 0.0, 0.1, 2.4, 49.7, 50.2, 0.1 -1,1,a-cure-i1,2022-23,0.0,15.900000000000006,Peabody - John E Burke,02290007, 2.0, 0.4, 11.1, 84.1, 0.0, 0.0, 2.4, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,32.0,Peabody - John E. McCarthy,02290016, 4.1, 1.8, 19.2, 68.0, 0.9, 0.9, 5.0, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,37.2,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 5.3, 5.3, 22.3, 62.8, 1.1, 0.0, 3.2, 43.6, 56.4, 0.0 -2.7092651757188504,2.71,a-cure-i1,2022-23,5.300000000000001,31.299999999999997,Peabody - Peabody Veterans Memorial High,02290510, 4.0, 2.2, 23.0, 68.7, 0.3, 0.0, 1.8, 52.2, 47.6, 0.1 -1,1,a-cure-i1,2022-23,0.0,28.599999999999994,Peabody - South Memorial,02290035, 3.2, 3.2, 17.2, 71.4, 0.6, 0.0, 4.4, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,41.5,Peabody - Thomas Carroll,02290010, 4.4, 2.2, 32.6, 58.5, 0.5, 0.0, 1.7, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.700000000000003,Peabody - West Memorial,02290045, 0.4, 1.5, 8.1, 87.3, 0.4, 0.0, 2.3, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,61.7,Peabody - William A Welch Sr,02290027, 4.3, 1.3, 53.0, 38.3, 0.9, 0.4, 1.7, 51.3, 48.7, 0.0 -6.411347517730496,5,a-cure-i1,2022-23,11.3,28.200000000000003,Pelham - Pelham Elementary,02300005, 6.1, 3.8, 13.7, 71.8, 0.0, 0.0, 4.6, 59.5, 38.9, 1.5 -1,1,a-cure-i1,2022-23,0.0,9.700000000000003,Pembroke - Bryantville Elementary,02310003, 0.5, 0.0, 3.2, 90.3, 0.5, 0.0, 5.6, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.299999999999997,Pembroke - Hobomock Elementary,02310010, 0.5, 1.5, 2.9, 91.7, 0.0, 0.0, 3.4, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.099999999999994,Pembroke - North Pembroke Elementary,02310015, 0.4, 1.0, 3.7, 89.9, 0.4, 0.0, 4.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,5.900000000000006,Pembroke - Pembroke Community Middle School,02310305, 0.2, 0.5, 1.2, 94.1, 0.0, 0.0, 4.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,4.599999999999994,Pembroke - Pembroke High School,02310505, 0.7, 1.0, 1.4, 95.4, 0.0, 0.0, 1.6, 53.8, 46.0, 0.3 -1,1,a-cure-i1,2022-23,0.0,15.400000000000006,Pentucket - Dr Frederick N Sweetsir,07450020, 0.9, 1.8, 8.8, 84.6, 0.0, 0.0, 4.0, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.8,8.799999999999997,Pentucket - Dr John C Page School,07450015, 0.3, 1.3, 4.7, 91.2, 0.0, 0.0, 2.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2022-23,4.4,13.200000000000003,Pentucket - Elmer S Bagnall,07450005, 0.2, 0.0, 9.5, 86.8, 0.0, 0.0, 3.5, 51.9, 48.1, 0.0 -11.555555555555559,5,a-cure-i1,2022-23,7.8,10.799999999999997,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 8.4, 89.2, 0.0, 0.0, 2.4, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2022-23,0.2,11.5,Pentucket - Pentucket Regional Middle,07450405, 0.3, 0.8, 7.5, 88.5, 0.0, 0.0, 2.8, 56.1, 43.9, 0.0 -7.57142857142857,5,a-cure-i1,2022-23,5.300000000000001,11.200000000000003,Pentucket - Pentucket Regional Sr High,07450505, 0.5, 1.7, 6.9, 88.8, 0.2, 0.2, 1.7, 47.9, 51.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,14.299999999999997,Petersham - Petersham Center,02340005, 0.0, 0.0, 11.1, 85.7, 0.0, 0.0, 3.2, 45.2, 54.8, 0.0 -2.153209109730849,2.15,a-cure-i1,2022-23,13.0,96.6,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 6.4, 0.5, 87.2, 3.4, 1.5, 0.0, 1.0, 47.3, 52.7, 0.0 -8.915887850467291,5,a-cure-i1,2022-23,47.7,85.6,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 3.2, 0.0, 80.8, 14.4, 0.8, 0.8, 0.0, 51.2, 48.8, 0.0 -12.912863070539418,5,a-cure-i1,2022-23,77.8,96.4,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.3, 0.0, 79.5, 3.6, 1.2, 0.0, 2.4, 53.6, 46.4, 0.0 -4.380327868852459,4.38,a-cure-i1,2022-23,16.7,61.0,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 23.1, 7.2, 26.8, 39.0, 1.3, 0.0, 2.7, 48.1, 51.9, 0.0 -9.514093959731545,5,a-cure-i1,2022-23,44.300000000000004,74.5,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 29.9, 16.9, 23.2, 25.5, 0.4, 0.0, 4.1, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.900000000000006,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 3.4, 93.1, 0.0, 0.5, 2.9, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.0,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.5, 93.0, 0.5, 0.5, 4.5, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.799999999999997,Pioneer Valley - Pioneer Valley Regional,07500505, 0.8, 1.2, 2.3, 90.2, 0.0, 0.4, 5.1, 51.2, 48.8, 0.0 -14.712273641851107,5,a-cure-i1,2022-23,45.7,49.7,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 8.0, 18.9, 8.2, 50.3, 0.0, 0.0, 14.6, 52.5, 47.2, 0.4 -6.317948717948718,5,a-cure-i1,2022-23,15.399999999999999,39.0,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 9.7, 1.3, 21.0, 61.0, 0.3, 0.0, 6.7, 32.1, 66.2, 1.8 -1,1,a-cure-i1,2022-23,4.3,48.0,Pittsfield - Allendale,02360010, 15.4, 1.8, 17.9, 52.0, 0.7, 0.0, 12.1, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,60.0,Pittsfield - Crosby,02360065, 13.0, 0.0, 33.0, 40.0, 0.4, 0.0, 13.7, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,52.9,Pittsfield - Crosby Educational Academy,02360030, 5.9, 0.0, 29.4, 47.1, 0.0, 0.0, 17.6, 70.6, 29.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,47.8,Pittsfield - Eagle Education Academy,02360525, 17.4, 0.0, 21.7, 52.2, 0.0, 0.0, 8.7, 73.9, 26.1, 0.0 -1,1,a-cure-i1,2022-23,3.6,44.5,Pittsfield - Egremont,02360035, 9.2, 1.8, 22.5, 55.5, 0.3, 0.5, 10.2, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2022-23,4.0,46.9,Pittsfield - John T Reid Middle,02360305, 12.9, 0.4, 18.4, 53.1, 0.4, 0.0, 14.7, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,3.6,54.9,Pittsfield - Morningside Community School,02360055, 14.6, 1.1, 23.4, 45.1, 0.8, 0.0, 14.9, 46.2, 53.8, 0.0 -2.833787465940054,2.83,a-cure-i1,2022-23,6.5,36.7,Pittsfield - Pittsfield High,02360505, 11.1, 1.5, 17.1, 63.3, 0.2, 0.0, 6.9, 49.2, 50.4, 0.5 -1,1,a-cure-i1,2022-23,0.0,42.3,Pittsfield - Pittsfield Public Virtual Academy,02360705, 15.4, 2.9, 14.4, 57.7, 0.0, 0.0, 9.6, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,30.900000000000006,Pittsfield - Robert T. Capeless Elementary School,02360045, 5.0, 0.0, 14.9, 69.1, 1.1, 0.0, 9.9, 50.3, 49.7, 0.0 -1.6944024205748867,1.69,a-cure-i1,2022-23,7.0,66.1,Pittsfield - Silvio O Conte Community,02360105, 20.7, 0.3, 30.5, 33.9, 0.0, 0.0, 14.6, 49.6, 50.1, 0.3 -1,1,a-cure-i1,2022-23,0.0,23.900000000000006,Pittsfield - Stearns,02360090, 5.1, 1.3, 9.4, 76.1, 0.0, 0.0, 8.1, 60.3, 39.7, 0.0 -4.720626631853786,4.72,a-cure-i1,2022-23,11.3,38.3,Pittsfield - Taconic High,02360510, 12.0, 1.6, 14.9, 61.7, 0.2, 0.0, 9.5, 53.0, 46.9, 0.1 -1,1,a-cure-i1,2022-23,4.4,37.5,Pittsfield - Theodore Herberg Middle,02360310, 10.1, 1.6, 16.1, 62.5, 0.4, 0.2, 9.1, 55.4, 43.8, 0.8 -1,1,a-cure-i1,2022-23,0.0,33.2,Pittsfield - Williams,02360100, 9.8, 3.5, 12.5, 66.8, 0.0, 0.0, 7.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.599999999999994,Plainville - Anna Ware Jackson,02380010, 5.8, 3.8, 9.9, 75.4, 0.3, 0.0, 4.8, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.099999999999994,Plainville - Beatrice H Wood Elementary,02380005, 5.6, 2.8, 7.9, 78.9, 0.3, 0.0, 4.5, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.599999999999994,Plymouth - Cold Spring,02390005, 2.8, 1.4, 25.0, 68.4, 0.0, 0.0, 2.4, 46.2, 53.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.900000000000006,Plymouth - Federal Furnace School,02390011, 6.7, 1.0, 6.4, 79.1, 0.2, 0.0, 6.7, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,55.5,Plymouth - Hedge,02390010, 5.7, 0.5, 39.2, 44.5, 0.5, 0.0, 9.6, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2022-23,3.1,10.599999999999994,Plymouth - Indian Brook,02390012, 0.9, 0.3, 5.9, 89.4, 0.0, 0.2, 3.3, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.299999999999997,Plymouth - Manomet Elementary,02390015, 0.8, 1.2, 4.4, 86.7, 0.0, 0.0, 6.8, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.900000000000006,Plymouth - Nathaniel Morton Elementary,02390030, 1.2, 0.6, 12.5, 81.1, 0.0, 0.0, 4.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,1.4,20.200000000000003,Plymouth - Plymouth Commun Intermediate,02390405, 3.2, 1.4, 10.3, 79.8, 0.0, 0.0, 5.4, 50.2, 49.5, 0.2 -1,1,a-cure-i1,2022-23,0.0,15.200000000000003,Plymouth - Plymouth Early Childhood Center,02390003, 1.0, 0.5, 8.9, 84.8, 0.0, 0.0, 4.7, 66.5, 33.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.700000000000003,Plymouth - Plymouth North High,02390505, 3.1, 1.7, 10.9, 79.3, 0.2, 0.1, 4.8, 52.7, 46.9, 0.4 -1,1,a-cure-i1,2022-23,3.0999999999999996,9.900000000000006,Plymouth - Plymouth South High,02390515, 1.5, 0.3, 4.2, 90.1, 0.3, 0.0, 3.7, 52.5, 47.4, 0.1 -1,1,a-cure-i1,2022-23,2.2,10.200000000000003,Plymouth - Plymouth South Middle,02390305, 1.0, 0.0, 4.2, 89.8, 0.5, 0.5, 4.0, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.700000000000003,Plymouth - South Elementary,02390046, 1.6, 1.3, 6.5, 86.3, 0.2, 0.2, 4.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,4.3,21.200000000000003,Plymouth - West Elementary,02390047, 3.4, 2.2, 7.8, 78.8, 0.0, 0.0, 7.8, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,3.799999999999997,Plympton - Dennett Elementary,02400010, 0.4, 0.4, 2.5, 96.2, 0.0, 0.0, 0.4, 52.3, 47.7, 0.0 -4.489337822671156,4.49,a-cure-i1,2022-23,25.0,89.1,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 56.6, 6.8, 21.2, 10.9, 0.0, 0.2, 4.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,43.7,Provincetown - Provincetown Schools,02420020, 20.4, 0.0, 13.4, 56.3, 0.7, 0.0, 9.2, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.299999999999997,Quabbin - Hardwick Elementary,07530005, 0.5, 0.0, 8.7, 89.7, 0.0, 0.0, 1.1, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.200000000000003,Quabbin - Hubbardston Center,07530010, 0.3, 1.3, 5.9, 90.8, 0.3, 0.0, 1.3, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.900000000000006,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 5.3, 92.1, 0.0, 0.0, 2.6, 55.3, 42.1, 2.6 -1,1,a-cure-i1,2022-23,0.0,14.900000000000006,Quabbin - Oakham Center,07530025, 2.9, 1.1, 7.5, 85.1, 0.0, 0.0, 3.4, 56.3, 43.7, 0.0 -1,1,a-cure-i1,2022-23,4.3,11.700000000000003,Quabbin - Quabbin Regional High School,07530505, 1.2, 1.8, 7.1, 88.3, 0.0, 0.0, 1.6, 45.1, 54.6, 0.4 -1,1,a-cure-i1,2022-23,4.2,12.599999999999994,Quabbin - Quabbin Regional Middle School,07530405, 2.1, 1.0, 6.0, 87.4, 0.2, 0.0, 3.3, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.599999999999994,Quabbin - Ruggles Lane,07530030, 3.4, 0.3, 4.4, 88.4, 0.0, 0.3, 3.4, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.400000000000006,Quaboag Regional - Quaboag Integrated Preschool,07780001, 4.3, 2.1, 17.0, 76.6, 0.0, 0.0, 0.0, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.700000000000003,Quaboag Regional - Quaboag Regional High,07780505, 0.8, 0.0, 7.1, 87.3, 0.3, 0.0, 4.5, 48.6, 50.0, 1.4 -1,1,a-cure-i1,2022-23,0.0,17.200000000000003,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 8.9, 82.8, 0.0, 0.0, 8.4, 49.3, 50.2, 0.5 -1,1,a-cure-i1,2022-23,0.0,14.700000000000003,Quaboag Regional - Warren Elementary,07780005, 1.6, 0.3, 7.5, 85.3, 0.3, 0.0, 5.0, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.799999999999997,Quaboag Regional - West Brookfield Elementary,07780010, 0.8, 0.8, 9.3, 85.2, 0.0, 0.0, 3.9, 49.8, 49.8, 0.4 -1,1,a-cure-i1,2022-23,0.0,75.8,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 10.9, 40.0, 11.5, 24.2, 0.6, 0.0, 12.7, 67.9, 32.1, 0.0 -2.835443037974684,2.84,a-cure-i1,2022-23,5.6,31.599999999999994,Quincy - Atherton Hough,02430040, 5.9, 12.1, 6.6, 68.4, 0.4, 0.4, 6.3, 59.8, 40.2, 0.0 -4.155844155844156,4.16,a-cure-i1,2022-23,18.0,69.3,Quincy - Atlantic Middle,02430305, 4.0, 54.6, 7.8, 30.7, 0.0, 0.2, 2.7, 52.8, 47.0, 0.2 -1,1,a-cure-i1,2022-23,4.7,70.0,Quincy - Beechwood Knoll Elementary,02430020, 2.1, 59.1, 6.7, 30.0, 0.0, 0.0, 2.1, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,43.0,Quincy - Broad Meadows Middle,02430310, 6.9, 22.1, 10.6, 57.0, 0.3, 0.0, 3.1, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,56.0,Quincy - Central Middle,02430315, 3.4, 43.6, 4.5, 44.0, 0.0, 0.9, 3.6, 55.2, 44.4, 0.5 -1,1,a-cure-i1,2022-23,4.6,42.6,Quincy - Charles A Bernazzani Elementary,02430025, 4.1, 27.9, 4.4, 57.4, 0.0, 0.0, 6.2, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,73.7,Quincy - Clifford H Marshall Elementary,02430055, 15.8, 35.6, 16.0, 26.3, 0.0, 0.2, 6.2, 46.9, 53.1, 0.0 -4.775193798449612,4.78,a-cure-i1,2022-23,23.1,77.4,Quincy - Francis W Parker,02430075, 5.3, 63.6, 6.0, 22.6, 0.0, 0.0, 2.5, 49.5, 50.5, 0.0 -1.2907153729071537,1.29,a-cure-i1,2022-23,5.3,65.7,Quincy - Lincoln-Hancock Community School,02430035, 11.4, 33.6, 11.3, 34.3, 0.7, 0.0, 8.7, 49.4, 50.4, 0.2 -1,1,a-cure-i1,2022-23,1.0,36.1,Quincy - Merrymount,02430060, 4.3, 19.9, 6.4, 63.9, 0.0, 0.0, 5.5, 51.7, 48.3, 0.0 -1.1717171717171717,1.17,a-cure-i1,2022-23,5.8,79.2,Quincy - Montclair,02430065, 4.2, 64.7, 5.3, 20.8, 0.0, 0.0, 5.1, 51.0, 49.0, 0.0 -2.6982248520710064,2.7,a-cure-i1,2022-23,11.4,67.6,Quincy - North Quincy High,02430510, 4.7, 55.0, 4.3, 32.4, 0.2, 0.2, 3.2, 52.8, 47.2, 0.0 -2.0934579439252334,2.09,a-cure-i1,2022-23,9.8,74.9,Quincy - Point Webster Middle,02430325, 17.5, 36.0, 17.0, 25.1, 0.0, 1.0, 3.4, 46.2, 53.3, 0.5 -3.003831417624521,3.0,a-cure-i1,2022-23,9.8,52.2,Quincy - Quincy High,02430505, 14.0, 21.4, 11.5, 47.8, 0.3, 0.5, 4.5, 51.0, 48.6, 0.4 -1,1,a-cure-i1,2022-23,0.6,69.2,Quincy - Snug Harbor Community School,02430090, 14.0, 31.8, 15.8, 30.8, 0.3, 0.0, 7.5, 59.8, 40.3, 0.0 -1,1,a-cure-i1,2022-23,3.0,67.7,Quincy - South West Middle School,02430320, 16.0, 28.8, 15.8, 32.3, 0.7, 0.7, 5.7, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,45.5,Quincy - Squantum,02430095, 4.5, 30.1, 5.7, 54.5, 0.0, 0.0, 5.1, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,69.1,Quincy - Wollaston School,02430110, 3.3, 59.2, 4.8, 30.9, 0.0, 0.0, 1.8, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,2.0,15.5,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.3, 1.1, 9.4, 84.5, 0.0, 0.2, 3.4, 51.6, 46.1, 2.3 -3.880597014925373,3.88,a-cure-i1,2022-23,19.5,80.4,Randolph - Elizabeth G Lyons Elementary,02440020, 43.2, 11.9, 17.2, 19.6, 0.4, 0.4, 7.4, 52.6, 47.4, 0.0 -1.8198198198198199,1.82,a-cure-i1,2022-23,10.1,88.8,Randolph - J F Kennedy Elementary,02440018, 55.7, 12.6, 14.8, 11.2, 0.2, 0.2, 5.2, 50.2, 49.8, 0.0 -3.7192982456140347,3.72,a-cure-i1,2022-23,21.2,91.2,Randolph - Margaret L Donovan,02440015, 46.8, 18.5, 20.7, 8.8, 0.2, 0.0, 5.0, 49.6, 50.1, 0.2 -3.52414605418139,3.52,a-cure-i1,2022-23,18.700000000000003,84.9,Randolph - Martin E Young Elementary,02440040, 52.8, 8.3, 19.8, 15.1, 0.8, 0.0, 3.2, 46.8, 53.2, 0.0 -4.656179775280899,4.66,a-cure-i1,2022-23,25.900000000000002,89.0,Randolph - Randolph Community Middle,02440410, 49.8, 18.0, 15.7, 11.0, 0.4, 0.5, 4.6, 52.1, 47.9, 0.0 -2.2832244008714597,2.28,a-cure-i1,2022-23,13.1,91.8,Randolph - Randolph High,02440505, 50.6, 20.2, 17.0, 8.2, 0.2, 0.0, 3.9, 56.9, 43.0, 0.2 -1,1,a-cure-i1,2022-23,0.0,11.799999999999997,Reading - Alice M Barrows,02460002, 2.0, 3.4, 4.5, 88.2, 0.0, 0.0, 2.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,3.6,10.700000000000003,Reading - Arthur W Coolidge Middle,02460305, 2.1, 3.7, 3.0, 89.3, 0.0, 0.0, 1.9, 54.5, 45.2, 0.2 -1,1,a-cure-i1,2022-23,0.0,14.799999999999997,Reading - Birch Meadow,02460005, 3.6, 4.7, 3.4, 85.2, 0.0, 0.0, 3.1, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.700000000000003,Reading - J Warren Killam,02460017, 3.0, 8.6, 3.9, 83.3, 0.0, 0.0, 1.2, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,4.9,21.299999999999997,Reading - Joshua Eaton,02460010, 1.5, 7.5, 8.7, 78.7, 0.0, 0.0, 3.6, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,1.4,13.299999999999997,Reading - Reading Memorial High,02460505, 3.6, 4.8, 2.6, 86.7, 0.2, 0.1, 2.0, 52.9, 46.7, 0.4 -1,1,a-cure-i1,2022-23,0.0,23.299999999999997,Reading - RISE PreSchool,02460001, 1.0, 8.7, 6.8, 76.7, 0.0, 0.0, 6.8, 59.2, 40.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.099999999999994,Reading - Walter S Parker Middle,02460310, 5.0, 3.7, 4.1, 81.9, 0.6, 0.0, 4.7, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.599999999999994,Reading - Wood End Elementary School,02460020, 2.8, 4.5, 4.1, 85.4, 0.0, 0.0, 3.3, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2022-23,2.8,65.6,Revere - A. C. Whelan Elementary School,02480003, 2.2, 3.3, 57.4, 34.4, 0.1, 0.0, 2.5, 52.3, 47.7, 0.0 -2.55,2.55,a-cure-i1,2022-23,10.2,64.0,Revere - Abraham Lincoln,02480025, 3.3, 2.5, 55.5, 36.0, 0.7, 0.0, 2.0, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,63.7,Revere - Beachmont Veterans Memorial School,02480013, 5.1, 3.9, 53.6, 36.3, 0.0, 0.3, 0.9, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,72.6,Revere - CityLab Innovation High School,02480520, 2.1, 2.1, 64.2, 27.4, 0.0, 0.0, 4.2, 60.0, 38.9, 1.1 -1.7258883248730965,1.73,a-cure-i1,2022-23,8.5,78.8,Revere - Garfield Elementary School,02480056, 3.2, 5.3, 68.9, 21.2, 0.1, 0.0, 1.3, 48.8, 51.1, 0.1 -4.272479564032698,4.27,a-cure-i1,2022-23,19.6,73.4,Revere - Garfield Middle School,02480057, 2.7, 3.8, 63.9, 26.6, 0.5, 0.0, 2.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,65.8,Revere - Paul Revere,02480050, 2.2, 4.4, 57.0, 34.2, 0.9, 0.0, 1.3, 48.2, 51.8, 0.0 -2.791208791208791,2.79,a-cure-i1,2022-23,12.7,72.8,Revere - Revere High,02480505, 3.8, 4.0, 63.4, 27.2, 0.3, 0.0, 1.2, 51.9, 47.9, 0.1 -1.3773314203730271,1.38,a-cure-i1,2022-23,6.0,69.7,Revere - Rumney Marsh Academy,02480014, 2.3, 4.9, 61.8, 30.3, 0.2, 0.2, 0.4, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,2.1,77.7,Revere - Staff Sargent James J. Hill Elementary School,02480035, 4.0, 3.3, 69.0, 22.3, 0.2, 0.0, 1.2, 51.9, 48.1, 0.0 -1.3008130081300813,1.3,a-cure-i1,2022-23,6.0,73.8,Revere - Susan B. Anthony Middle School,02480305, 3.9, 3.1, 65.9, 26.2, 0.4, 0.0, 0.5, 44.9, 54.9, 0.2 -1,1,a-cure-i1,2022-23,0.0,14.299999999999997,Richmond - Richmond Consolidated,02490005, 1.3, 0.0, 7.1, 85.7, 0.0, 0.0, 5.8, 47.4, 52.6, 0.0 -14.361445783132533,5,a-cure-i1,2022-23,14.899999999999999,16.599999999999994,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.3, 1.9, 5.0, 83.4, 0.8, 0.0, 7.6, 49.5, 49.8, 0.6 -1,1,a-cure-i1,2022-23,0.0,14.200000000000003,River Valley Charter (District) - River Valley Charter School,04820050, 1.0, 1.0, 6.6, 85.8, 0.0, 0.0, 5.6, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.5,Rochester - Rochester Memorial,02500005, 0.6, 0.4, 3.3, 93.5, 0.0, 0.0, 2.2, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,37.7,Rockland - Jefferson Elementary School,02510060, 6.1, 0.8, 25.5, 62.3, 1.2, 0.0, 4.0, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,4.4,31.200000000000003,Rockland - John W Rogers Middle,02510305, 6.4, 1.3, 18.9, 68.8, 0.8, 0.0, 3.8, 52.7, 47.3, 0.0 -2.565217391304348,2.57,a-cure-i1,2022-23,5.9,36.8,Rockland - Memorial Park,02510020, 3.6, 2.8, 25.1, 63.2, 0.0, 0.0, 5.3, 51.0, 49.0, 0.0 -3.7493188010899177,3.75,a-cure-i1,2022-23,8.6,36.7,Rockland - R Stewart Esten,02510025, 7.3, 2.9, 24.3, 63.3, 0.3, 0.0, 1.9, 51.8, 48.2, 0.0 -2.700636942675159,2.7,a-cure-i1,2022-23,5.300000000000001,31.400000000000006,Rockland - Rockland Senior High,02510505, 6.2, 1.7, 20.0, 68.6, 1.1, 0.2, 2.2, 51.5, 48.4, 0.2 -1,1,a-cure-i1,2022-23,0.0,10.900000000000006,Rockport - Rockport Elementary,02520005, 1.6, 1.6, 3.9, 89.1, 0.0, 0.0, 3.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,11.299999999999997,Rockport - Rockport High,02520510, 1.3, 1.3, 5.2, 88.7, 0.0, 0.0, 3.5, 59.7, 40.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.200000000000003,Rockport - Rockport Middle,02520305, 0.0, 2.1, 2.6, 92.8, 0.0, 0.0, 2.6, 50.3, 49.7, 0.0 -10.572687224669602,5,a-cure-i1,2022-23,15.0,22.700000000000003,Rowe - Rowe Elementary,02530005, 3.0, 0.0, 4.5, 77.3, 0.0, 0.0, 15.2, 56.1, 43.9, 0.0 -6.884848484848484,5,a-cure-i1,2022-23,42.599999999999994,99.0,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 55.1, 0.6, 40.6, 1.0, 0.2, 0.2, 2.2, 54.7, 45.3, 0.0 -2.4499054820415878,2.45,a-cure-i1,2022-23,8.1,52.9,Salem - Bates,02580003, 7.2, 0.8, 39.8, 47.1, 0.5, 0.3, 4.3, 52.1, 47.6, 0.3 -7.8394332939787486,5,a-cure-i1,2022-23,41.5,84.7,Salem - Bentley Academy Innovation School,02580010, 9.9, 1.5, 70.1, 15.3, 0.0, 0.7, 2.6, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,43.1,Salem - Carlton,02580015, 2.8, 1.6, 32.5, 56.9, 0.0, 0.0, 6.1, 48.4, 51.2, 0.4 -5.333333333333333,5,a-cure-i1,2022-23,19.5,58.5,Salem - Collins Middle,02580305, 6.0, 2.0, 45.8, 41.5, 0.0, 0.0, 4.7, 49.3, 50.7, 0.0 -1.636963696369637,1.64,a-cure-i1,2022-23,6.2,60.6,Salem - Horace Mann Laboratory,02580030, 8.4, 4.4, 45.1, 39.4, 0.0, 0.0, 2.7, 50.2, 49.8, 0.0 -5.514431239388795,5,a-cure-i1,2022-23,20.3,58.9,Salem - New Liberty Innovation School,02580510, 10.7, 0.0, 42.9, 41.1, 0.0, 0.0, 5.4, 37.5, 60.7, 1.8 -1,1,a-cure-i1,2022-23,0.0,47.9,Salem - Salem Early Childhood,02580001, 10.4, 3.1, 30.2, 52.1, 0.0, 0.0, 4.2, 58.3, 41.7, 0.0 -3.448946515397082,3.45,a-cure-i1,2022-23,13.299999999999999,61.7,Salem - Salem High,02580505, 7.2, 2.5, 48.9, 38.3, 0.1, 0.1, 2.9, 52.9, 46.8, 0.2 -1,1,a-cure-i1,2022-23,0.0,35.7,Salem - Salem Prep High School,02580515, 7.1, 0.0, 28.6, 64.3, 0.0, 0.0, 0.0, 50.0, 50.0, 0.0 -2.505338078291815,2.51,a-cure-i1,2022-23,8.8,56.2,Salem - Saltonstall School,02580050, 5.0, 1.0, 44.8, 43.8, 0.0, 0.0, 5.3, 49.6, 50.4, 0.0 -2.4661654135338344,2.47,a-cure-i1,2022-23,8.2,53.2,Salem - Witchcraft Heights,02580070, 6.8, 4.2, 39.1, 46.8, 0.0, 0.2, 2.9, 54.7, 45.3, 0.0 -4.7099567099567095,4.71,a-cure-i1,2022-23,20.4,69.3,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 11.9, 5.5, 49.7, 30.7, 0.0, 0.0, 2.2, 48.9, 50.5, 0.6 -1,1,a-cure-i1,2022-23,2.6,12.0,Sandwich - Forestdale School,02610002, 0.6, 3.0, 4.8, 88.0, 0.4, 0.2, 3.1, 53.7, 46.3, 0.0 -7.238095238095242,5,a-cure-i1,2022-23,5.7,12.599999999999994,Sandwich - Oak Ridge,02610025, 1.3, 2.8, 6.2, 87.4, 0.4, 0.1, 1.6, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,3.9,9.700000000000003,Sandwich - Sandwich Middle High School,02610505, 1.4, 3.0, 3.0, 90.3, 0.1, 0.3, 1.8, 51.6, 47.8, 0.5 -1,1,a-cure-i1,2022-23,0.0,45.3,Saugus - Belmonte STEAM Academy,02620060, 5.3, 6.4, 27.8, 54.7, 1.0, 0.3, 4.5, 52.7, 47.3, 0.0 -2.502202643171806,2.5,a-cure-i1,2022-23,7.1,45.4,Saugus - Saugus High,02620505, 6.9, 4.3, 31.3, 54.6, 0.6, 0.6, 1.8, 52.2, 47.7, 0.1 -1,1,a-cure-i1,2022-23,0.0,46.8,Saugus - Saugus Middle School,02620305, 5.0, 7.4, 30.8, 53.2, 0.8, 0.3, 2.5, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2022-23,3.3,47.7,Saugus - Veterans Early Learning Center,02620065, 6.2, 8.4, 28.0, 52.3, 0.5, 0.0, 4.6, 59.6, 40.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,5.0,Savoy - Emma L Miller Elementary School,02630010, 2.5, 0.0, 2.5, 95.0, 0.0, 0.0, 0.0, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.400000000000006,Scituate - Cushing Elementary,02640007, 0.6, 0.8, 2.5, 92.6, 0.0, 0.3, 3.1, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2022-23,2.4,10.700000000000003,Scituate - Gates Middle School,02640305, 3.6, 0.8, 3.5, 89.3, 0.2, 0.0, 2.6, 54.0, 45.8, 0.2 -1,1,a-cure-i1,2022-23,0.0,6.700000000000003,Scituate - Hatherly Elementary,02640010, 2.4, 0.0, 2.0, 93.3, 0.0, 0.0, 2.4, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.599999999999994,Scituate - Jenkins Elementary School,02640015, 3.0, 0.0, 2.7, 89.4, 0.0, 0.0, 4.9, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,1.8,6.799999999999997,Scituate - Scituate High School,02640505, 2.0, 0.7, 2.0, 93.2, 0.0, 0.0, 2.2, 48.2, 51.2, 0.5 -1,1,a-cure-i1,2022-23,0.0,6.599999999999994,Scituate - Wampatuck Elementary,02640020, 1.1, 0.0, 2.4, 93.4, 0.0, 0.0, 3.1, 49.6, 50.4, 0.0 -5.454545454545456,5,a-cure-i1,2022-23,6.0,17.599999999999994,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 4.5, 2.9, 6.5, 82.4, 0.0, 0.0, 3.7, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.599999999999994,Seekonk - George R Martin,02650007, 2.2, 3.9, 6.4, 84.4, 0.0, 0.0, 3.1, 46.1, 53.9, 0.0 -6.296774193548386,5,a-cure-i1,2022-23,6.1,15.5,Seekonk - Mildred Aitken School,02650015, 1.4, 3.1, 6.7, 84.5, 0.0, 0.0, 4.3, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,4.699999999999999,18.400000000000006,Seekonk - Seekonk High,02650505, 3.2, 4.7, 6.2, 81.6, 0.0, 0.2, 4.1, 52.5, 46.7, 0.8 -1,1,a-cure-i1,2022-23,0.0,0.0,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,48.0,Sharon - Cottage Street,02660005, 6.8, 20.5, 9.3, 52.0, 0.0, 0.0, 11.4, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2022-23,3.6,48.1,Sharon - East Elementary,02660010, 3.9, 28.2, 7.4, 51.9, 0.0, 0.0, 8.6, 52.4, 47.4, 0.2 -1,1,a-cure-i1,2022-23,3.3,49.7,Sharon - Heights Elementary,02660015, 5.6, 31.3, 4.9, 50.3, 0.4, 0.0, 7.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,57.1,Sharon - Sharon Early Childhood Center,02660001, 3.6, 35.7, 10.7, 42.9, 0.0, 0.0, 7.1, 60.7, 39.3, 0.0 -1,1,a-cure-i1,2022-23,4.2,47.6,Sharon - Sharon High,02660505, 5.3, 31.1, 5.6, 52.4, 0.1, 0.1, 5.4, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2022-23,3.9,52.5,Sharon - Sharon Middle,02660305, 5.9, 32.9, 5.2, 47.5, 0.4, 0.1, 8.0, 49.7, 50.2, 0.1 -1,1,a-cure-i1,2022-23,0.2,11.700000000000003,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.5, 0.7, 7.1, 88.3, 0.3, 0.0, 2.1, 61.8, 37.5, 0.7 -1,1,a-cure-i1,2022-23,2.9,22.200000000000003,Sherborn - Pine Hill,02690010, 4.0, 8.0, 4.5, 77.8, 0.0, 0.0, 5.7, 47.1, 52.6, 0.2 -1,1,a-cure-i1,2022-23,0.0,59.9,Shrewsbury - Calvin Coolidge School,02710015, 4.5, 28.7, 22.7, 40.1, 0.4, 0.0, 3.6, 45.7, 54.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,68.8,Shrewsbury - Floral Street School,02710020, 4.6, 52.0, 5.6, 31.2, 1.0, 0.0, 5.6, 55.5, 44.5, 0.0 -1.8947368421052633,1.89,a-cure-i1,2022-23,7.2,60.8,Shrewsbury - Major Howard W. Beal School,02710005, 2.5, 41.5, 10.8, 39.2, 1.1, 0.0, 4.8, 51.4, 48.6, 0.0 -2.2598870056497176,2.26,a-cure-i1,2022-23,7.5,53.1,Shrewsbury - Oak Middle School,02710030, 3.5, 33.2, 10.8, 46.9, 0.7, 0.0, 4.9, 49.0, 50.8, 0.1 -1,1,a-cure-i1,2022-23,0.0,66.5,Shrewsbury - Parker Road Preschool,02710040, 6.4, 42.9, 9.9, 33.5, 1.5, 0.0, 5.9, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2022-23,1.8,57.3,Shrewsbury - Sherwood Middle School,02710305, 4.6, 37.1, 9.4, 42.7, 0.7, 0.0, 5.4, 54.3, 45.7, 0.0 -2.074074074074074,2.07,a-cure-i1,2022-23,6.3,48.6,Shrewsbury - Shrewsbury High School,02710505, 3.8, 30.0, 9.9, 51.4, 0.3, 0.0, 4.6, 48.3, 51.7, 0.1 -1,1,a-cure-i1,2022-23,0.0,44.2,Shrewsbury - Spring Street School,02710035, 2.3, 30.5, 5.2, 55.8, 0.0, 0.0, 6.2, 54.5, 45.5, 0.0 -2.3305322128851538,2.33,a-cure-i1,2022-23,5.2,35.7,Shrewsbury - Walter J. Paton School,02710025, 3.1, 15.5, 7.9, 64.3, 0.7, 0.0, 8.6, 51.9, 48.1, 0.0 -10.27737226277372,5,a-cure-i1,2022-23,8.8,13.700000000000003,Shutesbury - Shutesbury Elementary,02720005, 0.8, 0.0, 9.7, 86.3, 0.8, 0.0, 2.4, 47.6, 50.8, 1.6 -1,1,a-cure-i1,2022-23,1.5,7.400000000000006,Silver Lake - Silver Lake Regional High,07600505, 1.3, 0.8, 3.3, 92.6, 0.5, 0.0, 1.4, 51.2, 48.6, 0.2 -1,1,a-cure-i1,2022-23,0.0,7.0,Silver Lake - Silver Lake Regional Middle School,07600405, 1.3, 0.4, 4.0, 93.0, 0.6, 0.0, 0.8, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,3.4,41.9,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 9.3, 1.5, 25.3, 58.1, 0.9, 0.0, 4.9, 51.5, 47.7, 0.9 -1,1,a-cure-i1,2022-23,0.0,12.700000000000003,Somerset - Chace Street,02730005, 0.9, 2.5, 6.5, 87.3, 0.0, 0.0, 2.8, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.5,Somerset - North Elementary,02730008, 2.0, 1.7, 4.6, 86.5, 0.2, 0.0, 5.0, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2022-23,3.1,12.299999999999997,Somerset - Somerset Middle School,02730305, 0.7, 1.9, 6.4, 87.7, 0.2, 0.0, 3.1, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.900000000000006,Somerset - South,02730015, 2.3, 2.7, 6.6, 84.1, 0.4, 0.0, 3.9, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,1.4,10.799999999999997,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 1.6, 1.4, 5.2, 89.2, 0.4, 0.0, 2.2, 49.5, 50.4, 0.1 -3.891891891891892,3.89,a-cure-i1,2022-23,13.5,55.5,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.1, 7.4, 35.7, 44.5, 0.4, 0.2, 6.8, 53.7, 46.1, 0.2 -6.342141863699582,5,a-cure-i1,2022-23,28.5,71.9,Somerville - Arthur D Healey,02740075, 15.0, 3.0, 49.6, 28.1, 0.2, 0.2, 4.0, 51.6, 48.2, 0.2 -1,1,a-cure-i1,2022-23,4.1,39.8,Somerville - Benjamin G Brown,02740015, 6.6, 9.5, 7.1, 60.2, 0.0, 0.0, 16.6, 36.0, 64.0, 0.0 -1,1,a-cure-i1,2022-23,4.8,61.5,Somerville - Capuano Early Childhood Center,02740005, 7.5, 8.9, 32.9, 38.5, 0.0, 0.5, 11.7, 56.8, 42.7, 0.5 -5.548549810844893,5,a-cure-i1,2022-23,27.5,79.3,Somerville - E Somerville Community,02740111, 4.8, 4.9, 66.8, 20.7, 0.0, 0.1, 2.6, 55.3, 44.4, 0.3 -1,1,a-cure-i1,2022-23,3.8,74.1,Somerville - Full Circle High School,02740510, 14.8, 0.0, 53.7, 25.9, 0.0, 0.0, 5.6, 61.1, 38.9, 0.0 -7.68,5,a-cure-i1,2022-23,15.6,32.5,Somerville - John F Kennedy,02740083, 4.3, 6.8, 14.5, 67.5, 0.2, 0.0, 6.6, 52.0, 48.0, 0.0 -2.140715109573241,2.14,a-cure-i1,2022-23,11.6,86.7,Somerville - Next Wave Junior High,02740410, 26.7, 0.0, 53.3, 13.3, 0.0, 0.0, 6.7, 73.3, 26.7, 0.0 -3.9693721286370605,3.97,a-cure-i1,2022-23,16.200000000000003,65.3,Somerville - Somerville High,02740505, 9.3, 5.7, 47.3, 34.7, 0.2, 0.1, 2.7, 51.7, 47.0, 1.3 -4.129032258064516,4.13,a-cure-i1,2022-23,9.6,37.2,Somerville - West Somerville Neighborhood,02740115, 10.0, 4.9, 10.0, 62.8, 0.0, 0.5, 11.9, 51.2, 48.2, 0.5 -1.92,1.92,a-cure-i1,2022-23,8.1,67.5,Somerville - Winter Hill Community,02740120, 9.5, 4.5, 49.3, 32.5, 0.0, 0.2, 4.0, 56.2, 43.6, 0.2 -1,1,a-cure-i1,2022-23,0.0,23.799999999999997,South Hadley - Michael E. Smith Middle School,02780305, 1.7, 1.7, 17.7, 76.2, 0.2, 0.0, 2.5, 49.4, 50.4, 0.2 -1,1,a-cure-i1,2022-23,4.7,22.900000000000006,South Hadley - Mosier,02780020, 2.0, 0.9, 17.1, 77.1, 0.0, 0.0, 2.9, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.299999999999997,South Hadley - Plains Elementary,02780015, 0.7, 3.3, 18.2, 71.7, 0.3, 0.0, 5.9, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2022-23,0.9,22.0,South Hadley - South Hadley High,02780505, 2.6, 1.8, 15.4, 78.0, 0.0, 0.0, 2.2, 49.6, 49.6, 0.8 -2.4923076923076923,2.49,a-cure-i1,2022-23,8.1,52.0,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 5.0, 1.4, 41.2, 48.0, 1.8, 0.0, 2.6, 55.7, 43.1, 1.2 -3.2876712328767126,3.29,a-cure-i1,2022-23,12.0,58.4,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 35.8, 7.7, 8.0, 41.6, 0.8, 0.3, 6.0, 50.7, 48.7, 0.7 -1,1,a-cure-i1,2022-23,2.0,10.599999999999994,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 2.8, 0.3, 6.3, 89.4, 0.2, 0.0, 1.1, 65.7, 33.7, 0.6 -1,1,a-cure-i1,2022-23,0.0,10.5,Southampton - William E Norris,02750005, 0.0, 1.0, 6.3, 89.5, 0.0, 0.0, 3.1, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,36.9,Southborough - Albert S. Woodward Memorial School,02760050, 1.5, 26.5, 5.6, 63.1, 0.0, 0.4, 3.0, 49.6, 50.4, 0.0 -4.451127819548874,4.45,a-cure-i1,2022-23,7.4,26.599999999999994,Southborough - Margaret A Neary,02760020, 0.7, 15.7, 4.1, 73.4, 0.0, 0.0, 6.0, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,44.9,Southborough - Mary E Finn School,02760008, 2.3, 29.7, 7.4, 55.1, 0.3, 0.0, 5.1, 52.0, 48.0, 0.0 -2.770149253731343,2.77,a-cure-i1,2022-23,5.8,33.5,Southborough - P Brent Trottier,02760305, 1.0, 21.3, 4.4, 66.5, 0.3, 0.0, 6.5, 49.4, 50.6, 0.0 -3.746686303387334,3.75,a-cure-i1,2022-23,15.899999999999999,67.9,Southbridge - Charlton Street,02770005, 1.2, 1.6, 62.7, 32.1, 0.4, 0.0, 2.0, 48.6, 51.4, 0.0 -3.6010781671159027,3.6,a-cure-i1,2022-23,16.7,74.2,Southbridge - Eastford Road,02770010, 3.3, 0.3, 67.9, 25.8, 0.3, 0.0, 2.4, 55.2, 44.8, 0.0 -3.574212893553223,3.57,a-cure-i1,2022-23,14.9,66.7,Southbridge - Southbridge Academy,02770525, 3.0, 0.0, 63.6, 33.3, 0.0, 0.0, 0.0, 75.8, 24.2, 0.0 -2.2122905027932958,2.21,a-cure-i1,2022-23,9.899999999999999,71.6,Southbridge - Southbridge High School,02770515, 3.1, 1.5, 65.4, 28.4, 0.0, 0.2, 1.3, 56.2, 43.3, 0.4 -4.345978755690441,4.35,a-cure-i1,2022-23,17.900000000000002,65.9,Southbridge - Southbridge Middle School,02770315, 3.0, 1.0, 60.2, 34.1, 0.2, 0.0, 1.5, 51.1, 48.9, 0.0 -2.2795115332428764,2.28,a-cure-i1,2022-23,10.5,73.7,Southbridge - West Street,02770020, 1.5, 0.3, 69.6, 26.3, 0.0, 0.0, 2.4, 50.4, 49.6, 0.0 -4.013559322033898,4.01,a-cure-i1,2022-23,14.799999999999999,59.0,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 38.6, 1.2, 14.4, 41.0, 0.0, 0.0, 4.8, 45.7, 53.3, 1.0 -5.254901960784313,5,a-cure-i1,2022-23,6.7,20.400000000000006,Southern Berkshire - Mt Everett Regional,07650505, 1.0, 0.3, 12.6, 79.6, 0.3, 0.0, 6.1, 52.4, 47.3, 0.3 -34.637362637362656,5,a-cure-i1,2022-23,19.7,9.099999999999994,Southern Berkshire - New Marlborough Central,07650018, 1.5, 0.0, 4.5, 90.9, 0.0, 0.0, 3.0, 43.9, 56.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.099999999999994,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 7.7, 76.9, 0.0, 0.0, 15.4, 23.1, 76.9, 0.0 -3.9420289855072457,3.94,a-cure-i1,2022-23,5.1,20.700000000000003,Southern Berkshire - Undermountain,07650035, 0.4, 1.2, 13.3, 79.3, 0.8, 0.0, 5.0, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2022-23,1.8,17.200000000000003,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 1.4, 0.8, 12.2, 82.8, 0.1, 0.0, 2.7, 55.8, 44.1, 0.2 -1,1,a-cure-i1,2022-23,0.0,11.700000000000003,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.0, 1.3, 5.5, 88.3, 0.3, 0.0, 3.6, 51.3, 48.7, 0.0 -12.767676767676761,5,a-cure-i1,2022-23,7.9,9.900000000000006,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.1, 1.3, 5.0, 90.1, 0.2, 0.0, 2.4, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.099999999999994,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 1.6, 1.6, 6.7, 85.9, 0.3, 0.0, 3.8, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.0,Spencer-E Brookfield - David Prouty High,07670505, 2.8, 2.2, 17.4, 72.0, 0.6, 0.0, 5.0, 52.4, 47.1, 0.6 -1,1,a-cure-i1,2022-23,0.0,16.700000000000003,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.9, 0.4, 9.2, 83.3, 0.0, 0.0, 4.2, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.900000000000006,Spencer-E Brookfield - Knox Trail Middle School,07670415, 2.5, 1.1, 21.2, 71.1, 0.0, 0.0, 4.1, 55.4, 44.4, 0.3 -1,1,a-cure-i1,2022-23,0.0,29.5,Spencer-E Brookfield - Wire Village School,07670040, 3.4, 1.7, 21.3, 70.5, 0.0, 0.0, 3.1, 52.8, 47.2, 0.0 -2.8156956004756246,2.82,a-cure-i1,2022-23,14.8,84.1,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 21.4, 0.0, 55.1, 15.9, 0.0, 0.0, 7.6, 45.6, 54.4, 0.0 -0.9379310344827586,1,a-cure-i1,2022-23,5.1,87.0,Springfield - Alice B Beal Elementary,02810175, 18.7, 8.4, 54.8, 13.0, 0.3, 0.0, 4.7, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,90.9,Springfield - Arthur T Talmadge,02810165, 16.8, 3.4, 64.7, 9.1, 0.0, 0.0, 6.0, 53.4, 46.6, 0.0 -5.3218142548596115,5,a-cure-i1,2022-23,30.8,92.6,Springfield - Balliet Preschool,02810003, 20.1, 2.0, 63.1, 7.4, 0.7, 0.7, 6.0, 61.1, 38.9, 0.0 -3.6768100734522564,3.68,a-cure-i1,2022-23,21.900000000000002,95.3,Springfield - Brightwood,02810025, 9.6, 0.2, 85.1, 4.7, 0.0, 0.0, 0.4, 48.8, 51.2, 0.0 -11.270668176670442,5,a-cure-i1,2022-23,62.2,88.3,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 21.2, 3.6, 62.0, 11.7, 0.0, 0.0, 1.5, 55.5, 43.8, 0.7 -7.5929203539823,5,a-cure-i1,2022-23,42.9,90.4,Springfield - Conservatory of the Arts,02810475, 18.3, 0.6, 69.6, 9.6, 0.0, 0.0, 1.9, 29.8, 69.3, 0.9 -2.600985221674877,2.6,a-cure-i1,2022-23,13.2,81.2,Springfield - Daniel B Brunton,02810035, 14.3, 2.2, 59.1, 18.8, 0.0, 0.0, 5.6, 48.2, 51.8, 0.0 -6.674948240165631,5,a-cure-i1,2022-23,40.3,96.6,Springfield - Early Childhood Education Center,02810001, 24.0, 0.6, 66.5, 3.4, 0.0, 0.0, 5.6, 51.4, 48.6, 0.0 -2.77602523659306,2.78,a-cure-i1,2022-23,16.5,95.1,Springfield - Edward P. Boland School,02810010, 11.6, 1.8, 78.9, 4.9, 0.0, 0.0, 2.7, 56.4, 43.6, 0.0 -5.360910031023785,5,a-cure-i1,2022-23,32.4,96.7,Springfield - Elias Brookings,02810030, 22.2, 0.0, 72.2, 3.3, 0.4, 0.0, 1.9, 49.3, 50.7, 0.0 -7.60775370581528,5,a-cure-i1,2022-23,41.7,87.7,Springfield - Emergence Academy,02810318, 9.6, 0.9, 72.8, 12.3, 0.0, 0.0, 4.4, 53.5, 46.5, 0.0 -2.7656415694591723,2.77,a-cure-i1,2022-23,16.299999999999997,94.3,Springfield - Forest Park Middle,02810325, 19.6, 2.8, 68.2, 5.7, 0.0, 0.0, 3.7, 49.7, 50.0, 0.3 -7.5461624026696335,5,a-cure-i1,2022-23,42.400000000000006,89.9,Springfield - Frank H Freedman,02810075, 18.4, 1.4, 64.6, 10.1, 0.4, 0.0, 5.1, 47.7, 52.3, 0.0 -1.7001180637544273,1.7,a-cure-i1,2022-23,9.0,84.7,Springfield - Frederick Harris,02810080, 16.4, 4.8, 57.0, 15.3, 0.5, 0.0, 6.0, 52.8, 47.2, 0.0 -18.07909604519774,5,a-cure-i1,2022-23,100.0,88.5,Springfield - Gateway to College at Holyoke Community College,02810575, 19.2, 0.0, 69.2, 11.5, 0.0, 0.0, 0.0, 26.9, 73.1, 0.0 -17.77777777777778,5,a-cure-i1,2022-23,100.0,90.0,Springfield - Gateway to College at Springfield Technical Community College,02810580, 16.7, 0.0, 70.0, 10.0, 0.0, 0.0, 3.3, 36.7, 63.3, 0.0 -2.94824016563147,2.95,a-cure-i1,2022-23,17.8,96.6,Springfield - German Gerena Community School,02810195, 14.6, 0.7, 77.4, 3.4, 0.3, 0.0, 3.6, 52.3, 47.7, 0.0 -1.807909604519774,1.81,a-cure-i1,2022-23,10.0,88.5,Springfield - Glenwood,02810065, 5.9, 0.7, 79.2, 11.5, 0.0, 0.0, 2.8, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2022-23,0.3,89.1,Springfield - Glickman Elementary,02810068, 13.8, 2.2, 68.6, 10.9, 0.3, 0.0, 4.2, 54.8, 45.2, 0.0 -7.113062568605928,5,a-cure-i1,2022-23,40.5,91.1,Springfield - High School Of Commerce,02810510, 17.0, 1.2, 71.4, 8.9, 0.1, 0.1, 1.3, 52.9, 47.1, 0.1 -2.072447859495061,2.07,a-cure-i1,2022-23,11.8,91.1,Springfield - Hiram L Dorman,02810050, 14.8, 1.5, 70.1, 8.9, 0.0, 0.0, 4.8, 51.7, 48.3, 0.0 -2.9928057553956835,2.99,a-cure-i1,2022-23,18.2,97.3,Springfield - Homer Street,02810085, 23.5, 0.5, 67.9, 2.7, 0.5, 0.0, 4.9, 50.1, 49.9, 0.0 -10.282183316168899,5,a-cure-i1,2022-23,62.4,97.1,Springfield - Impact Prep at Chestnut,02810366, 13.6, 0.0, 79.6, 2.9, 0.5, 0.5, 2.9, 51.0, 49.0, 0.0 -0.9381107491856678,1,a-cure-i1,2022-23,5.4,92.1,Springfield - Indian Orchard Elementary,02810100, 17.5, 0.6, 69.1, 7.9, 0.4, 0.0, 4.6, 52.7, 47.3, 0.0 -6.330054644808742,5,a-cure-i1,2022-23,36.199999999999996,91.5,Springfield - John F Kennedy Middle,02810328, 21.0, 0.0, 67.2, 8.5, 0.0, 0.0, 3.3, 46.9, 53.1, 0.0 -6.183050847457627,5,a-cure-i1,2022-23,34.2,88.5,Springfield - John J Duggan Academy,02810320, 23.9, 2.1, 59.8, 11.5, 0.1, 0.0, 2.6, 54.2, 45.4, 0.4 -3.654320987654321,3.65,a-cure-i1,2022-23,22.2,97.2,Springfield - Kensington International School,02810110, 14.1, 1.2, 75.4, 2.8, 0.0, 0.0, 6.5, 50.0, 50.0, 0.0 -8.654307524536533,5,a-cure-i1,2022-23,49.6,91.7,Springfield - Kiley Academy,02810316, 23.5, 1.0, 64.1, 8.3, 0.0, 0.0, 3.2, 54.0, 46.0, 0.0 -7.1699779249448135,5,a-cure-i1,2022-23,40.6,90.6,Springfield - Kiley Prep,02810315, 22.9, 1.9, 62.8, 9.4, 0.4, 0.0, 2.6, 56.4, 43.2, 0.4 -0.9205983889528193,1,a-cure-i1,2022-23,5.0,86.9,Springfield - Liberty,02810115, 7.6, 0.4, 77.7, 13.1, 0.4, 0.0, 0.8, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,37.5,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 37.5, 62.5, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0 -4.7413612565445025,4.74,a-cure-i1,2022-23,28.299999999999997,95.5,Springfield - Lincoln,02810120, 10.0, 0.2, 83.5, 4.5, 0.0, 0.0, 1.8, 49.1, 50.9, 0.0 -4.5592315901814295,4.56,a-cure-i1,2022-23,26.7,93.7,Springfield - Margaret C Ells,02810060, 10.6, 1.9, 75.6, 6.3, 0.0, 0.0, 5.6, 61.9, 38.1, 0.0 -2.059594755661502,2.06,a-cure-i1,2022-23,10.8,83.9,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 15.4, 8.7, 54.0, 16.1, 0.3, 0.0, 5.4, 48.3, 51.7, 0.0 -6.903991370010787,5,a-cure-i1,2022-23,40.0,92.7,Springfield - Mary M Lynch,02810140, 21.5, 2.3, 62.6, 7.3, 0.0, 0.0, 6.4, 47.9, 52.1, 0.0 -2.51270207852194,2.51,a-cure-i1,2022-23,13.6,86.6,Springfield - Mary M Walsh,02810155, 15.7, 0.4, 66.7, 13.4, 0.0, 0.0, 3.8, 50.2, 49.8, 0.0 -3.661166116611661,3.66,a-cure-i1,2022-23,20.8,90.9,Springfield - Mary O Pottenger,02810145, 11.1, 1.8, 74.9, 9.1, 0.0, 0.0, 3.0, 50.9, 48.9, 0.3 -1.9771547248182764,1.98,a-cure-i1,2022-23,11.9,96.3,Springfield - Milton Bradley School,02810023, 15.1, 0.2, 77.3, 3.7, 0.2, 0.0, 3.5, 51.3, 48.7, 0.0 -5.533333333333334,5,a-cure-i1,2022-23,33.2,96.0,Springfield - Rebecca M Johnson,02810055, 23.0, 0.0, 70.3, 4.0, 0.2, 0.0, 2.6, 52.7, 47.3, 0.0 -7.391120507399578,5,a-cure-i1,2022-23,43.7,94.6,Springfield - Rise Academy at Van Sickle,02810480, 21.6, 1.2, 68.5, 5.4, 0.0, 0.0, 3.3, 51.9, 48.1, 0.0 -4.3257328990228014,4.33,a-cure-i1,2022-23,24.9,92.1,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 16.3, 2.5, 71.5, 7.9, 0.1, 0.0, 1.6, 46.0, 53.9, 0.1 -4.479283314669653,4.48,a-cure-i1,2022-23,25.0,89.3,Springfield - Samuel Bowles,02810020, 16.4, 0.9, 68.9, 10.7, 0.9, 0.4, 1.8, 48.4, 51.6, 0.0 -6.214876033057852,5,a-cure-i1,2022-23,37.6,96.8,Springfield - South End Middle School,02810355, 21.9, 0.0, 72.7, 3.2, 0.0, 0.0, 2.1, 50.3, 49.7, 0.0 -3.7176981541802387,3.72,a-cure-i1,2022-23,21.4,92.1,Springfield - Springfield Central High,02810500, 20.9, 3.0, 65.6, 7.9, 0.1, 0.0, 2.5, 54.7, 45.3, 0.0 -6.607888631090487,5,a-cure-i1,2022-23,35.6,86.2,Springfield - Springfield High School,02810570, 16.7, 0.0, 69.0, 13.8, 0.0, 0.0, 0.5, 54.2, 44.3, 1.5 -4.243850267379679,4.24,a-cure-i1,2022-23,24.8,93.5,Springfield - Springfield High School of Science and Technology,02810530, 18.8, 1.4, 70.7, 6.5, 0.0, 0.2, 2.5, 54.8, 45.1, 0.1 -6.865315852205005,5,a-cure-i1,2022-23,36.0,83.9,Springfield - Springfield International Academy at Johnson,02810215, 22.6, 3.2, 58.1, 16.1, 0.0, 0.0, 0.0, 41.9, 58.1, 0.0 -4.3839999999999995,4.38,a-cure-i1,2022-23,27.4,100.0,Springfield - Springfield International Academy at Sci-Tech,02810700, 6.8, 0.0, 92.0, 0.0, 0.0, 0.0, 1.1, 71.6, 28.4, 0.0 -8.096579476861166,5,a-cure-i1,2022-23,50.3,99.4,Springfield - Springfield Legacy Academy,02810317, 12.1, 0.3, 86.0, 0.6, 0.0, 0.0, 0.9, 55.8, 44.2, 0.0 -11.608888888888888,5,a-cure-i1,2022-23,65.3,90.0,Springfield - Springfield Middle School,02810360, 10.0, 0.0, 75.0, 10.0, 0.0, 0.0, 5.0, 75.0, 25.0, 0.0 -3.4014447884416925,3.4,a-cure-i1,2022-23,20.6,96.9,Springfield - Springfield Public Day Elementary School,02810005, 28.1, 0.0, 62.5, 3.1, 0.0, 0.0, 6.3, 71.9, 28.1, 0.0 -10.352941176470589,5,a-cure-i1,2022-23,59.400000000000006,91.8,Springfield - Springfield Public Day High School,02810550, 29.5, 0.0, 60.7, 8.2, 0.0, 0.0, 1.6, 70.5, 29.5, 0.0 -1.2698412698412698,1.27,a-cure-i1,2022-23,7.0,88.2,Springfield - Springfield Public Day Middle School,02810345, 11.8, 0.0, 76.5, 11.8, 0.0, 0.0, 0.0, 76.5, 23.5, 0.0 -12.948453608247423,5,a-cure-i1,2022-23,78.5,97.0,Springfield - Springfield Realization Academy,02810335, 18.8, 5.3, 69.2, 3.0, 0.0, 0.0, 3.8, 42.9, 57.1, 0.0 -3.9046538024971627,3.9,a-cure-i1,2022-23,21.5,88.1,Springfield - Springfield Transition Academy,02810675, 14.9, 3.0, 70.3, 11.9, 0.0, 0.0, 0.0, 69.3, 30.7, 0.0 -6.460511679644048,5,a-cure-i1,2022-23,36.3,89.9,Springfield - STEM Middle Academy,02810350, 14.1, 3.7, 68.4, 10.1, 0.3, 0.0, 3.4, 52.5, 47.5, 0.0 -2.9441401971522456,2.94,a-cure-i1,2022-23,16.8,91.3,Springfield - Sumner Avenue,02810160, 18.5, 2.2, 67.2, 8.7, 0.0, 0.2, 3.3, 52.2, 47.8, 0.0 -6.0510440835266825,5,a-cure-i1,2022-23,32.6,86.2,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 18.9, 1.4, 64.2, 13.8, 0.0, 0.0, 1.7, 47.7, 52.1, 0.2 -1,1,a-cure-i1,2022-23,0.0,92.3,Springfield - The Springfield Virtual School,02810705, 13.0, 0.5, 76.7, 7.7, 0.0, 0.0, 2.1, 50.2, 49.8, 0.0 -4.195232690124858,4.2,a-cure-i1,2022-23,23.1,88.1,Springfield - Thomas M Balliet,02810015, 22.7, 2.9, 56.0, 11.9, 0.0, 0.0, 6.5, 49.5, 50.5, 0.0 -4.043763676148797,4.04,a-cure-i1,2022-23,23.1,91.4,Springfield - Van Sickle Academy,02810485, 7.8, 2.7, 80.1, 8.6, 0.4, 0.0, 0.4, 49.2, 50.8, 0.0 -4.693333333333333,4.69,a-cure-i1,2022-23,26.4,90.0,Springfield - Warner,02810180, 26.0, 1.2, 59.2, 10.0, 0.0, 0.0, 3.6, 54.4, 45.6, 0.0 -2.8571428571428568,2.86,a-cure-i1,2022-23,16.5,92.4,Springfield - Washington,02810185, 16.9, 5.0, 65.7, 7.6, 0.0, 0.0, 4.8, 50.2, 49.8, 0.0 -1.442348008385744,1.44,a-cure-i1,2022-23,8.6,95.4,Springfield - White Street,02810190, 21.1, 2.9, 68.1, 4.6, 0.2, 0.0, 3.1, 51.1, 48.9, 0.0 -3.1699687174139726,3.17,a-cure-i1,2022-23,19.0,95.9,Springfield - William N. DeBerry,02810045, 25.0, 0.0, 67.6, 4.1, 0.0, 0.0, 3.3, 49.2, 50.8, 0.0 -3.4165694282380397,3.42,a-cure-i1,2022-23,18.3,85.7,Springfield International Charter (District) - Springfield International Charter School,04410505, 27.9, 3.1, 48.6, 14.3, 0.0, 0.0, 6.1, 50.8, 49.1, 0.1 -16.718913270637408,5,a-cure-i1,2022-23,100.0,95.7,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 19.7, 2.1, 72.7, 4.3, 0.0, 0.0, 1.2, 52.2, 47.6, 0.2 -1,1,a-cure-i1,2022-23,0.0,21.200000000000003,Stoneham - Colonial Park,02840005, 1.2, 8.3, 8.3, 78.8, 0.8, 0.0, 2.5, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2022-23,4.0,28.0,Stoneham - Robin Hood,02840025, 2.8, 5.3, 12.0, 72.0, 0.8, 0.0, 7.1, 51.4, 48.6, 0.0 -4.717948717948717,4.72,a-cure-i1,2022-23,9.2,31.200000000000003,Stoneham - South,02840030, 4.6, 7.7, 14.6, 68.8, 0.3, 0.3, 3.7, 53.0, 46.7, 0.3 -6.836363636363637,5,a-cure-i1,2022-23,9.4,22.0,Stoneham - Stoneham Central Middle School,02840405, 2.5, 5.2, 10.2, 78.0, 0.3, 0.0, 3.8, 48.5, 51.5, 0.0 -3.6065573770491794,3.61,a-cure-i1,2022-23,5.5,24.400000000000006,Stoneham - Stoneham High,02840505, 3.7, 5.8, 11.1, 75.6, 0.3, 0.0, 3.4, 50.4, 48.9, 0.6 -1,1,a-cure-i1,2022-23,0.0,66.3,Stoughton - Edwin A Jones Early Childhood Center,02850012, 31.7, 4.8, 22.1, 33.7, 0.0, 1.0, 6.7, 64.4, 35.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,48.9,Stoughton - Helen Hansen Elementary,02850010, 18.6, 5.7, 15.5, 51.1, 0.0, 0.4, 8.7, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,48.4,Stoughton - Joseph H Gibbons,02850025, 20.6, 3.2, 17.5, 51.6, 0.0, 0.0, 7.2, 53.0, 46.7, 0.3 -1,1,a-cure-i1,2022-23,0.0,49.5,Stoughton - Joseph R Dawe Jr Elementary,02850014, 22.9, 3.9, 17.6, 50.5, 0.3, 0.0, 4.7, 54.7, 45.3, 0.0 -3.1292517006802725,3.13,a-cure-i1,2022-23,11.5,58.8,Stoughton - O'Donnell Middle School,02850405, 29.4, 5.6, 17.9, 41.2, 0.2, 0.1, 5.4, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,54.8,Stoughton - Richard L. Wilkins Elementary School,02850020, 19.2, 4.2, 25.6, 45.2, 0.0, 0.3, 5.4, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,49.8,Stoughton - South Elementary,02850015, 18.1, 10.3, 11.7, 50.2, 0.0, 0.4, 9.3, 49.5, 50.5, 0.0 -3.1940298507462686,3.19,a-cure-i1,2022-23,10.7,53.6,Stoughton - Stoughton High,02850505, 26.0, 7.1, 15.1, 46.4, 0.2, 0.7, 4.6, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.099999999999994,Sturbridge - Burgess Elementary,02870005, 0.7, 1.5, 9.8, 81.9, 0.0, 0.0, 6.2, 48.5, 51.4, 0.1 -7.6,5,a-cure-i1,2022-23,7.6,16.0,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.9, 3.5, 5.5, 84.0, 0.2, 0.1, 3.7, 38.8, 60.1, 1.1 -4.235294117647058,4.24,a-cure-i1,2022-23,7.199999999999999,27.200000000000003,Sudbury - Ephraim Curtis Middle,02880305, 3.1, 10.5, 4.9, 72.8, 0.1, 0.2, 8.4, 54.5, 45.5, 0.0 -4.5795053003533575,4.58,a-cure-i1,2022-23,8.1,28.299999999999997,Sudbury - General John Nixon Elementary,02880025, 4.0, 8.0, 5.5, 71.7, 0.0, 0.0, 10.8, 43.7, 56.3, 0.0 -4.072727272727272,4.07,a-cure-i1,2022-23,7.0,27.5,Sudbury - Israel Loring School,02880015, 3.1, 8.0, 9.9, 72.5, 0.0, 0.0, 6.6, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2022-23,1.9,22.700000000000003,Sudbury - Josiah Haynes,02880010, 3.2, 8.6, 4.9, 77.3, 0.3, 0.0, 5.7, 54.6, 45.4, 0.0 -3.6834532374100726,3.68,a-cure-i1,2022-23,6.4,27.799999999999997,Sudbury - Peter Noyes,02880030, 1.4, 12.2, 6.0, 72.2, 0.0, 0.0, 8.2, 52.5, 47.5, 0.0 -2.7290969899665543,2.73,a-cure-i1,2022-23,5.1,29.900000000000006,Sunderland - Sunderland Elementary,02890005, 2.8, 10.2, 10.7, 70.1, 0.0, 0.0, 6.2, 56.5, 41.8, 1.7 -1,1,a-cure-i1,2022-23,0.0,13.799999999999997,Sutton - Sutton Early Learning,02900003, 1.8, 1.5, 6.1, 86.2, 0.0, 0.0, 4.3, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.5,Sutton - Sutton Elementary,02900005, 1.0, 1.6, 3.9, 90.5, 0.0, 0.3, 2.6, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.400000000000006,Sutton - Sutton High School,02900510, 2.4, 2.2, 6.0, 84.6, 0.0, 0.3, 4.6, 48.2, 50.9, 0.8 -1,1,a-cure-i1,2022-23,0.0,10.099999999999994,Sutton - Sutton Middle School,02900305, 0.7, 2.4, 3.4, 89.9, 0.0, 0.0, 3.7, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,25.400000000000006,Swampscott - Clarke,02910005, 2.4, 2.9, 16.6, 74.6, 0.5, 0.0, 2.9, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.400000000000006,Swampscott - Hadley,02910010, 3.4, 2.9, 15.7, 72.6, 0.6, 0.6, 4.3, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,15.5,Swampscott - Stanley,02910020, 1.9, 3.7, 8.1, 84.5, 0.0, 0.0, 1.9, 60.2, 39.8, 0.0 -4.033057851239668,4.03,a-cure-i1,2022-23,6.1,24.200000000000003,Swampscott - Swampscott High,02910505, 5.3, 2.8, 13.4, 75.8, 0.3, 0.0, 2.3, 50.7, 49.0, 0.3 -1,1,a-cure-i1,2022-23,1.4,24.200000000000003,Swampscott - Swampscott Middle,02910305, 4.0, 3.7, 13.3, 75.8, 0.3, 0.0, 2.9, 51.4, 48.3, 0.3 -1,1,a-cure-i1,2022-23,0.0,8.700000000000003,Swansea - Elizabeth S Brown,02920006, 1.7, 1.4, 2.8, 91.3, 0.3, 0.0, 2.4, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.700000000000003,Swansea - Gardner,02920015, 1.2, 0.4, 1.6, 93.3, 0.8, 0.0, 2.8, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2022-23,2.3,5.200000000000003,Swansea - Joseph Case High,02920505, 0.9, 0.7, 2.4, 94.8, 0.2, 0.0, 0.9, 50.1, 49.7, 0.2 -1,1,a-cure-i1,2022-23,2.9,7.0,Swansea - Joseph Case Jr High,02920305, 1.0, 1.0, 2.6, 93.0, 0.4, 0.0, 2.0, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.0,Swansea - Joseph G Luther,02920020, 1.1, 2.8, 1.1, 91.0, 0.0, 0.0, 3.9, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.900000000000006,Swansea - Mark G Hoyle Elementary,02920017, 0.9, 1.7, 1.3, 93.1, 0.4, 0.0, 2.6, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.700000000000003,Tantasqua - Tantasqua Regional Jr High,07700405, 1.8, 1.3, 7.8, 85.3, 0.2, 0.0, 3.6, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,3.8,14.799999999999997,Tantasqua - Tantasqua Regional Sr High,07700505, 1.6, 1.9, 7.8, 85.2, 0.3, 0.0, 3.1, 44.6, 54.8, 0.6 -1,1,a-cure-i1,2022-23,0.0,13.900000000000006,Tantasqua - Tantasqua Regional Vocational,07700605, 1.3, 0.2, 7.3, 86.1, 0.4, 0.2, 4.6, 65.1, 34.5, 0.4 -1,1,a-cure-i1,2022-23,0.0,37.9,Taunton - Benjamin Friedman Middle,02930315, 18.2, 1.0, 13.6, 62.1, 0.1, 0.0, 5.1, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2022-23,3.7,36.2,Taunton - East Taunton Elementary,02930010, 18.4, 0.6, 9.4, 63.8, 0.2, 0.0, 7.7, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,36.1,Taunton - Edmund Hatch Bennett,02930007, 17.2, 1.4, 13.7, 63.9, 0.0, 0.0, 3.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,45.6,Taunton - Edward F. Leddy Preschool,02930005, 23.0, 0.8, 15.5, 54.4, 1.2, 0.0, 5.2, 66.7, 33.3, 0.0 -1.7313432835820894,1.73,a-cure-i1,2022-23,5.8,53.6,Taunton - Elizabeth Pole,02930027, 23.9, 1.6, 17.3, 46.4, 0.9, 0.3, 9.5, 49.6, 50.3, 0.2 -8.982035928143713,5,a-cure-i1,2022-23,37.5,66.8,Taunton - H H Galligan,02930057, 32.4, 0.4, 21.6, 33.2, 0.8, 0.4, 11.2, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,54.2,Taunton - James L. Mulcahey Elementary School,02930015, 27.6, 0.6, 19.4, 45.8, 0.2, 0.1, 6.2, 50.3, 49.7, 0.0 -3.014925373134328,3.01,a-cure-i1,2022-23,10.1,53.6,Taunton - John F Parker Middle,02930305, 29.1, 0.4, 16.2, 46.4, 0.0, 0.4, 7.5, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,34.0,Taunton - Joseph C Chamberlain,02930008, 13.5, 1.8, 12.4, 66.0, 0.2, 0.0, 6.2, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,40.7,Taunton - Joseph H Martin,02930042, 23.7, 1.1, 10.4, 59.3, 0.2, 0.2, 5.1, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,50.7,Taunton - Taunton Alternative High School,02930525, 24.6, 0.0, 17.4, 49.3, 0.0, 0.0, 8.7, 63.8, 36.2, 0.0 -2.8452655889145504,2.85,a-cure-i1,2022-23,7.700000000000001,43.3,Taunton - Taunton High,02930505, 22.3, 1.1, 13.8, 56.7, 0.6, 0.3, 5.2, 51.0, 48.8, 0.1 -1,1,a-cure-i1,2022-23,0.0,44.7,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 11.2, 3.4, 21.5, 55.3, 0.5, 0.3, 7.9, 43.8, 56.0, 0.2 -1,1,a-cure-i1,2022-23,0.0,18.099999999999994,Tewksbury - Heath-Brook,02950010, 4.5, 2.4, 7.8, 81.9, 0.0, 0.0, 3.3, 58.1, 41.9, 0.0 -1,1,a-cure-i1,2022-23,0.7,17.5,Tewksbury - John F. Ryan,02950023, 4.3, 3.5, 8.2, 82.5, 0.0, 0.0, 1.4, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,2.8,20.200000000000003,Tewksbury - John W. Wynn Middle,02950305, 5.0, 3.2, 9.7, 79.8, 0.0, 0.0, 2.2, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.299999999999997,Tewksbury - L F Dewing,02950001, 6.4, 8.8, 7.5, 72.7, 0.0, 0.0, 4.6, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.599999999999994,Tewksbury - Louise Davy Trahan,02950025, 6.0, 0.9, 7.4, 82.4, 0.5, 0.0, 2.8, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.900000000000006,Tewksbury - North Street,02950020, 5.7, 6.0, 8.5, 78.1, 0.4, 0.0, 1.4, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,1.6,19.299999999999997,Tewksbury - Tewksbury Memorial High,02950505, 5.1, 5.5, 6.9, 80.7, 0.3, 0.0, 1.6, 50.4, 49.2, 0.4 -1.747126436781609,1.75,a-cure-i1,2022-23,5.7,52.2,Tisbury - Tisbury Elementary,02960005, 6.6, 0.7, 39.0, 47.8, 3.3, 0.0, 2.6, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,9.299999999999997,Topsfield - Proctor Elementary,02980005, 0.4, 0.8, 4.2, 90.7, 1.2, 0.0, 2.7, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,3.2,8.900000000000006,Topsfield - Steward Elementary,02980010, 0.3, 2.2, 4.6, 91.1, 0.0, 0.0, 1.9, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.799999999999997,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 2.2, 0.6, 11.2, 81.2, 0.0, 0.0, 4.8, 59.5, 39.1, 1.5 -1,1,a-cure-i1,2022-23,0.0,7.299999999999997,Triton - Newbury Elementary,07730020, 1.0, 1.0, 2.4, 92.7, 0.0, 0.0, 2.9, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.200000000000003,Triton - Pine Grove,07730025, 1.2, 1.4, 2.3, 92.8, 0.5, 0.0, 1.9, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2022-23,4.1,18.799999999999997,Triton - Salisbury Elementary,07730015, 4.3, 1.9, 10.2, 81.2, 0.2, 0.0, 2.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,4.0,12.200000000000003,Triton - Triton Regional High School,07730505, 1.4, 3.2, 5.9, 87.8, 0.2, 0.2, 1.4, 50.2, 49.1, 0.6 -1,1,a-cure-i1,2022-23,3.4,11.200000000000003,Triton - Triton Regional Middle School,07730405, 1.6, 2.2, 4.4, 88.8, 0.0, 0.3, 2.8, 51.3, 48.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,34.3,Truro - Truro Central,03000005, 6.1, 0.0, 8.1, 65.7, 0.0, 0.0, 20.2, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,2.6,33.400000000000006,Tyngsborough - Tyngsborough Elementary,03010020, 5.1, 11.8, 11.4, 66.6, 0.1, 0.0, 4.9, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2022-23,3.5,26.599999999999994,Tyngsborough - Tyngsborough High School,03010505, 3.9, 9.7, 7.0, 73.4, 0.0, 0.0, 6.0, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,3.4,26.700000000000003,Tyngsborough - Tyngsborough Middle,03010305, 4.5, 8.8, 9.0, 73.3, 0.3, 0.0, 4.3, 56.5, 43.3, 0.3 -7.012345679012346,5,a-cure-i1,2022-23,42.6,97.2,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 47.4, 1.9, 45.5, 2.8, 0.9, 0.0, 1.4, 46.0, 54.0, 0.0 -5.542799597180262,5,a-cure-i1,2022-23,34.4,99.3,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 51.4, 1.0, 43.6, 0.7, 0.2, 0.3, 2.9, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,14.299999999999997,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 2.9, 0.0, 85.7, 1.4, 0.0, 10.0, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2022-23,3.3,28.099999999999994,Up-Island Regional - West Tisbury Elementary,07740020, 2.0, 0.0, 16.1, 71.9, 4.1, 0.0, 5.8, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.099999999999994,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 2.3, 0.7, 6.1, 81.9, 0.9, 0.3, 7.8, 57.3, 42.1, 0.5 -1,1,a-cure-i1,2022-23,0.0,36.8,Uxbridge - Gateway to College,03040515, 2.6, 2.6, 15.8, 63.2, 0.0, 0.0, 15.8, 44.7, 55.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,12.900000000000006,Uxbridge - Taft Early Learning Center,03040005, 0.4, 1.0, 8.6, 87.1, 0.4, 0.2, 2.3, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,2.4,12.900000000000006,Uxbridge - Uxbridge High,03040505, 1.7, 2.5, 6.1, 87.1, 0.3, 0.0, 2.2, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.299999999999997,Uxbridge - Whitin Intermediate,03040405, 1.0, 1.2, 7.5, 86.7, 0.2, 0.2, 3.2, 55.6, 44.4, 0.0 -9.443983402489627,5,a-cure-i1,2022-23,56.900000000000006,96.4,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 20.6, 1.0, 70.9, 3.6, 0.6, 0.2, 3.2, 46.1, 53.7, 0.2 -1,1,a-cure-i1,2022-23,0.0,13.700000000000003,Wachusett - Central Tree Middle,07750310, 3.2, 1.9, 5.9, 86.3, 0.8, 0.0, 1.9, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.200000000000003,Wachusett - Chocksett Middle School,07750315, 3.2, 1.8, 9.7, 82.8, 0.0, 0.0, 2.5, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,3.3,16.299999999999997,Wachusett - Davis Hill Elementary,07750018, 3.8, 1.3, 8.5, 83.7, 0.2, 0.0, 2.5, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.799999999999997,Wachusett - Dawson,07750020, 3.4, 4.6, 8.0, 79.2, 0.2, 0.2, 4.4, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.900000000000006,Wachusett - Early Childhood Center,07750001, 3.1, 6.2, 13.1, 73.1, 0.8, 0.0, 3.8, 67.7, 32.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.5,Wachusett - Glenwood Elementary School,07750060, 3.9, 1.5, 7.5, 83.5, 0.0, 0.0, 3.6, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.5,Wachusett - Houghton Elementary,07750027, 3.0, 3.0, 13.7, 76.5, 0.0, 0.0, 3.7, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.5,Wachusett - Leroy E.Mayo,07750032, 4.3, 3.3, 8.6, 81.5, 0.0, 0.0, 2.4, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,2.3,16.700000000000003,Wachusett - Mountview Middle,07750305, 3.0, 4.1, 7.0, 83.3, 0.1, 0.1, 2.3, 52.2, 47.5, 0.3 -1,1,a-cure-i1,2022-23,0.0,18.200000000000003,Wachusett - Naquag Elementary School,07750005, 5.0, 0.8, 8.8, 81.8, 0.0, 0.0, 3.6, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,13.900000000000006,Wachusett - Paxton Center,07750040, 1.5, 2.0, 6.6, 86.1, 0.0, 0.2, 3.5, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2022-23,4.0,7.0,Wachusett - Thomas Prince,07750045, 1.8, 0.3, 4.1, 93.0, 0.0, 0.0, 0.9, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.099999999999994,Wachusett - Wachusett Regional High,07750505, 2.8, 3.8, 6.7, 83.9, 0.0, 0.1, 2.6, 47.0, 52.9, 0.1 -1,1,a-cure-i1,2022-23,0.0,15.900000000000006,Wakefield - Dolbeare,03050005, 1.2, 4.6, 8.1, 84.1, 0.0, 0.0, 2.1, 45.5, 54.5, 0.0 -6.06060606060606,5,a-cure-i1,2022-23,10.0,26.400000000000006,Wakefield - Early Childhood Center at the Doyle School,03050001, 2.5, 5.0, 11.6, 73.6, 0.0, 3.3, 4.1, 56.2, 43.8, 0.0 -1,1,a-cure-i1,2022-23,2.5,19.900000000000006,Wakefield - Galvin Middle School,03050310, 2.8, 3.9, 8.9, 80.1, 0.2, 0.5, 3.6, 52.3, 47.4, 0.3 -1,1,a-cure-i1,2022-23,0.0,15.5,Wakefield - Greenwood,03050020, 1.4, 3.2, 6.4, 84.5, 0.0, 0.5, 4.1, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2022-23,1.5,19.299999999999997,Wakefield - Wakefield Memorial High,03050505, 3.9, 3.9, 8.3, 80.7, 0.2, 0.1, 2.9, 49.7, 50.2, 0.1 -1,1,a-cure-i1,2022-23,0.0,15.0,Wakefield - Walton,03050040, 2.8, 1.9, 7.5, 85.0, 0.0, 0.5, 2.3, 57.7, 42.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.299999999999997,Wakefield - Woodville School,03050015, 4.0, 6.3, 13.6, 71.7, 0.0, 0.0, 4.4, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,6.200000000000003,Wales - Wales Elementary,03060005, 2.1, 0.0, 2.1, 93.8, 1.0, 0.0, 1.0, 59.4, 40.6, 0.0 -1,1,a-cure-i1,2022-23,3.2,23.099999999999994,Walpole - Bird Middle,03070305, 6.6, 3.4, 9.0, 76.9, 0.8, 0.0, 3.2, 46.7, 53.1, 0.3 -1,1,a-cure-i1,2022-23,0.0,23.799999999999997,Walpole - Boyden,03070010, 8.3, 2.9, 8.8, 76.2, 0.7, 0.0, 2.9, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.5,Walpole - Daniel Feeney Preschool Center,03070002, 3.4, 6.8, 9.1, 70.5, 2.3, 0.0, 8.0, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.200000000000003,Walpole - Eleanor N Johnson Middle,03070310, 3.4, 9.1, 7.2, 75.8, 0.2, 0.0, 4.3, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.200000000000003,Walpole - Elm Street School,03070005, 3.6, 8.0, 5.5, 78.8, 0.0, 0.0, 4.1, 45.1, 54.7, 0.2 -1,1,a-cure-i1,2022-23,0.0,30.700000000000003,Walpole - Fisher,03070015, 1.5, 16.4, 8.2, 69.3, 0.2, 0.4, 4.0, 50.0, 49.8, 0.2 -1,1,a-cure-i1,2022-23,0.0,22.799999999999997,Walpole - Old Post Road,03070018, 2.6, 3.3, 10.5, 77.2, 0.2, 0.0, 6.1, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,1.3,19.5,Walpole - Walpole High,03070505, 3.5, 7.1, 6.3, 80.5, 0.3, 0.0, 2.2, 50.1, 49.8, 0.1 -1,1,a-cure-i1,2022-23,0.9,37.7,Waltham - Douglas MacArthur Elementary School,03080032, 6.5, 8.4, 17.4, 62.3, 0.2, 0.2, 5.0, 49.1, 50.9, 0.0 -1.1672278338945006,1.17,a-cure-i1,2022-23,6.5,89.1,Waltham - Henry Whittemore Elementary School,03080065, 5.7, 3.6, 78.4, 10.9, 0.0, 0.0, 1.3, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,44.7,Waltham - James Fitzgerald Elementary School,03080060, 2.6, 4.8, 31.7, 55.3, 0.0, 0.0, 5.6, 52.9, 47.1, 0.0 -5.354969574036511,5,a-cure-i1,2022-23,16.5,49.3,Waltham - John F Kennedy Middle,03080404, 9.0, 3.3, 32.5, 50.7, 0.2, 0.2, 4.2, 53.5, 46.2, 0.3 -2.364116094986808,2.36,a-cure-i1,2022-23,11.200000000000001,75.8,Waltham - John W. McDevitt Middle School,03080415, 8.6, 2.9, 63.0, 24.2, 0.0, 0.0, 1.3, 53.9, 46.1, 0.0 -1.439446366782007,1.44,a-cure-i1,2022-23,5.2,57.8,Waltham - Northeast Elementary School,03080040, 11.8, 7.1, 36.5, 42.2, 0.2, 0.0, 2.2, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,63.5,Waltham - Thomas R Plympton Elementary School,03080050, 12.5, 6.2, 41.1, 36.5, 0.0, 0.0, 3.7, 52.4, 47.6, 0.0 -12.759493670886076,5,a-cure-i1,2022-23,63.0,79.0,Waltham - Waltham Public Schools Dual Language Program,03080001, 3.7, 0.0, 71.0, 21.0, 0.0, 0.0, 4.2, 53.3, 46.7, 0.0 -2.670906200317965,2.67,a-cure-i1,2022-23,10.5,62.9,Waltham - Waltham Sr High,03080505, 9.1, 3.8, 48.3, 37.1, 0.0, 0.1, 1.7, 54.2, 45.5, 0.3 -1,1,a-cure-i1,2022-23,2.5,65.3,Waltham - William F. Stanley Elementary School,03080005, 9.9, 9.7, 42.6, 34.7, 0.5, 0.0, 2.6, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,25.299999999999997,Ware - Stanley M Koziol Elementary School,03090020, 3.7, 0.3, 14.5, 74.7, 0.3, 0.0, 6.6, 49.3, 50.1, 0.5 -4.9740932642487055,4.97,a-cure-i1,2022-23,6.0,19.299999999999997,Ware - Ware Junior/Senior High School,03090505, 2.0, 0.2, 11.9, 80.7, 0.4, 0.4, 4.4, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.299999999999997,Ware - Ware Middle School,03090305, 2.0, 0.4, 10.5, 82.7, 0.4, 0.0, 4.0, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.200000000000003,Wareham - Wareham Cooperative Alternative School,03100315, 3.0, 0.0, 3.0, 78.8, 9.1, 0.0, 6.1, 42.4, 57.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.799999999999997,Wareham - Wareham Elementary School,03100017, 5.3, 0.8, 9.5, 71.2, 1.1, 0.1, 12.1, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2022-23,2.3,35.7,Wareham - Wareham Middle,03100305, 6.9, 0.9, 13.0, 64.3, 1.6, 0.2, 13.0, 52.2, 47.6, 0.2 -4.141176470588236,4.14,a-cure-i1,2022-23,8.8,34.0,Wareham - Wareham Senior High,03100505, 11.0, 0.2, 8.0, 66.0, 1.6, 0.2, 13.1, 50.3, 49.4, 0.3 -4.356807511737089,4.36,a-cure-i1,2022-23,11.6,42.6,Watertown - Cunniff,03140015, 3.4, 4.9, 24.5, 57.4, 0.3, 0.0, 9.5, 51.2, 48.8, 0.0 -1.902097902097902,1.9,a-cure-i1,2022-23,5.1,42.9,Watertown - Hosmer,03140020, 4.3, 9.8, 18.9, 57.1, 0.1, 0.1, 9.6, 53.4, 46.6, 0.0 -4.44258872651357,4.44,a-cure-i1,2022-23,13.3,47.9,Watertown - James Russell Lowell,03140025, 2.8, 8.2, 25.1, 52.1, 0.0, 0.0, 11.8, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2022-23,3.1,44.5,Watertown - Watertown High,03140505, 4.0, 8.3, 25.0, 55.5, 0.7, 0.0, 6.5, 54.4, 45.2, 0.4 -2.023866348448687,2.02,a-cure-i1,2022-23,5.3,41.9,Watertown - Watertown Middle,03140305, 2.8, 8.6, 22.0, 58.1, 0.4, 0.0, 8.1, 48.3, 51.3, 0.4 -1,1,a-cure-i1,2022-23,3.5,26.900000000000006,Wayland - Claypit Hill School,03150005, 3.8, 8.6, 5.2, 73.1, 0.0, 0.0, 9.2, 48.8, 51.2, 0.0 -4.699669966996701,4.7,a-cure-i1,2022-23,8.9,30.299999999999997,Wayland - Happy Hollow School,03150015, 1.9, 13.2, 5.8, 69.7, 0.3, 0.0, 9.1, 49.3, 50.7, 0.0 -7.431952662721894,5,a-cure-i1,2022-23,15.7,33.8,Wayland - Loker School,03150020, 1.8, 15.3, 9.9, 66.2, 0.3, 0.0, 6.5, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,22.200000000000003,Wayland - The Children's Way Preschool,03150025, 1.6, 15.9, 3.2, 77.8, 0.0, 0.0, 1.6, 60.3, 39.7, 0.0 -2.492917847025496,2.49,a-cure-i1,2022-23,5.5,35.3,Wayland - Wayland High School,03150505, 5.3, 18.0, 5.0, 64.7, 0.0, 0.1, 6.9, 48.2, 51.8, 0.0 -6.917491749174918,5,a-cure-i1,2022-23,13.1,30.299999999999997,Wayland - Wayland Middle School,03150305, 6.9, 14.3, 3.5, 69.7, 0.0, 0.2, 5.3, 53.6, 46.2, 0.2 -1,1,a-cure-i1,2022-23,2.8,57.3,Webster - Bartlett High School,03160505, 8.5, 2.7, 41.4, 42.7, 0.0, 0.0, 4.7, 52.9, 46.6, 0.5 -1,1,a-cure-i1,2022-23,0.0,52.8,Webster - Park Avenue Elementary,03160015, 7.5, 1.5, 38.3, 47.2, 0.1, 0.0, 5.4, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,0.7,51.0,Webster - Webster Middle School,03160315, 7.1, 1.9, 36.4, 49.0, 0.2, 0.0, 5.4, 54.1, 45.9, 0.0 -6.941538461538462,5,a-cure-i1,2022-23,14.100000000000001,32.5,Wellesley - Ernest F Upham,03170050, 5.6, 10.0, 7.5, 67.5, 0.6, 0.0, 8.8, 52.5, 47.5, 0.0 -11.294117647058822,5,a-cure-i1,2022-23,13.200000000000001,18.700000000000003,Wellesley - Hunnewell,03170025, 1.5, 6.1, 6.6, 81.3, 0.0, 0.0, 4.5, 50.0, 50.0, 0.0 -2.0257510729613735,2.03,a-cure-i1,2022-23,5.9,46.6,Wellesley - John D Hardy,03170020, 2.4, 26.7, 8.3, 53.4, 0.0, 0.0, 9.2, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,42.5,Wellesley - Joseph E Fiske,03170015, 3.6, 27.1, 4.3, 57.5, 0.0, 0.0, 7.5, 52.5, 47.5, 0.0 -5.80281690140845,5,a-cure-i1,2022-23,10.3,28.400000000000006,Wellesley - Katharine Lee Bates,03170005, 3.0, 9.2, 5.9, 71.6, 0.0, 0.0, 10.3, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,43.8,Wellesley - Preschool at Wellesley Schools,03170001, 1.1, 22.5, 13.5, 56.2, 1.1, 0.0, 5.6, 62.9, 37.1, 0.0 -3.7701149425287355,3.77,a-cure-i1,2022-23,8.2,34.8,Wellesley - Schofield,03170045, 4.2, 19.2, 6.3, 65.2, 0.0, 0.3, 4.8, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,46.0,Wellesley - Sprague Elementary School,03170048, 3.1, 22.3, 7.3, 54.0, 0.0, 0.0, 13.2, 54.4, 45.6, 0.0 -3.924528301886792,3.92,a-cure-i1,2022-23,9.1,37.1,Wellesley - Wellesley Middle,03170305, 4.3, 17.0, 6.2, 62.9, 0.0, 0.0, 9.5, 49.6, 50.4, 0.0 -4.03883495145631,4.04,a-cure-i1,2022-23,7.8,30.900000000000006,Wellesley - Wellesley Sr High,03170505, 4.2, 15.0, 5.9, 69.1, 0.0, 0.0, 5.7, 47.7, 52.0, 0.3 -1,1,a-cure-i1,2022-23,0.0,17.299999999999997,Wellfleet - Wellfleet Elementary,03180005, 1.0, 1.0, 4.1, 82.7, 0.0, 0.0, 11.2, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.400000000000006,West Boylston - Major Edwards Elementary,03220005, 3.5, 2.6, 12.1, 76.6, 0.0, 0.2, 5.1, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,2.1,22.200000000000003,West Boylston - West Boylston Junior/Senior High,03220505, 3.7, 3.2, 12.0, 77.8, 0.0, 0.2, 3.0, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.299999999999997,West Bridgewater - Howard School,03230305, 4.8, 0.3, 9.6, 79.7, 0.3, 0.0, 5.1, 51.4, 48.6, 0.0 -4.182572614107885,4.18,a-cure-i1,2022-23,6.3,24.099999999999994,West Bridgewater - Rose L Macdonald,03230003, 9.3, 0.6, 8.0, 75.9, 0.3, 0.0, 5.8, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.599999999999994,West Bridgewater - Spring Street School,03230005, 7.1, 1.9, 7.7, 81.4, 0.6, 0.0, 1.3, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.400000000000006,West Bridgewater - West Bridgewater Junior/Senior,03230505, 8.6, 1.0, 6.7, 78.6, 0.3, 0.2, 4.6, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,46.6,West Springfield - John Ashley,03320005, 5.2, 5.2, 30.5, 53.4, 0.0, 0.0, 5.7, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,37.5,West Springfield - John R Fausey,03320010, 5.1, 6.6, 20.4, 62.5, 0.0, 0.0, 5.4, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,64.1,West Springfield - Memorial,03320025, 6.6, 9.6, 39.9, 35.9, 0.0, 0.0, 8.1, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,30.900000000000006,West Springfield - Mittineague,03320030, 1.3, 3.4, 22.1, 69.1, 0.0, 0.0, 4.0, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,51.9,West Springfield - Philip G Coburn,03320007, 6.2, 13.1, 26.4, 48.1, 0.2, 0.0, 6.0, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,25.700000000000003,West Springfield - Tatham,03320040, 1.7, 3.0, 16.1, 74.3, 0.0, 0.0, 4.8, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,53.9,West Springfield - West Springfield Early Childhood,03320001, 3.4, 15.7, 23.6, 46.1, 0.0, 0.0, 11.2, 58.4, 41.6, 0.0 -1,1,a-cure-i1,2022-23,4.6,37.7,West Springfield - West Springfield High,03320505, 4.3, 8.3, 20.4, 62.3, 0.1, 0.1, 4.6, 52.6, 46.6, 0.8 -1,1,a-cure-i1,2022-23,4.6,36.3,West Springfield - West Springfield Middle,03320305, 3.8, 8.0, 19.7, 63.7, 0.0, 0.0, 4.8, 50.3, 49.6, 0.1 -1,1,a-cure-i1,2022-23,4.4,51.7,Westborough - Annie E Fales,03210010, 2.1, 39.6, 6.0, 48.3, 0.0, 0.0, 3.9, 51.4, 48.6, 0.0 -1.518821603927987,1.52,a-cure-i1,2022-23,5.8,61.1,Westborough - Elsie A Hastings Elementary,03210025, 3.2, 36.4, 16.2, 38.9, 1.3, 0.0, 4.0, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,53.5,Westborough - J Harding Armstrong,03210005, 3.1, 33.0, 11.5, 46.5, 0.3, 0.0, 5.6, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2022-23,3.5,54.8,Westborough - Mill Pond School,03210045, 3.0, 38.2, 10.4, 45.2, 0.1, 0.1, 3.0, 48.9, 51.1, 0.0 -2.6999999999999997,2.7,a-cure-i1,2022-23,8.1,48.0,Westborough - Sarah W Gibbons Middle,03210305, 3.6, 33.7, 8.1, 52.0, 0.2, 0.0, 2.4, 52.5, 47.3, 0.2 -2.6899563318777293,2.69,a-cure-i1,2022-23,7.699999999999999,45.8,Westborough - Westborough High,03210505, 2.3, 32.0, 8.1, 54.2, 0.0, 0.0, 3.4, 48.9, 50.7, 0.4 -1,1,a-cure-i1,2022-23,0.0,39.9,Westfield - Abner Gibbs,03250020, 1.3, 7.2, 28.8, 60.1, 0.0, 0.0, 2.6, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.099999999999994,Westfield - Fort Meadow Early Childhood Center,03250003, 2.3, 5.3, 14.3, 75.9, 0.0, 0.0, 2.3, 60.2, 39.8, 0.0 -2.7158671586715863,2.72,a-cure-i1,2022-23,9.2,54.2,Westfield - Franklin Ave,03250015, 1.2, 2.4, 42.8, 45.8, 0.0, 0.0, 7.8, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,19.200000000000003,Westfield - Highland,03250025, 0.5, 3.0, 10.5, 80.8, 0.0, 0.0, 5.1, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.799999999999997,Westfield - Munger Hill,03250033, 2.6, 4.4, 13.5, 73.2, 0.0, 0.0, 6.2, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,35.5,Westfield - Paper Mill,03250036, 1.8, 2.1, 24.0, 64.5, 0.0, 0.0, 7.6, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.099999999999994,Westfield - Southampton Road,03250040, 1.2, 3.4, 19.4, 68.9, 0.0, 0.0, 7.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,1.4,29.099999999999994,Westfield - Westfield High,03250505, 2.6, 2.9, 20.0, 70.9, 0.1, 0.0, 3.5, 47.2, 52.6, 0.2 -1,1,a-cure-i1,2022-23,1.8,28.299999999999997,Westfield - Westfield Intermediate School,03250075, 2.5, 2.1, 20.7, 71.7, 0.1, 0.1, 2.7, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.599999999999994,Westfield - Westfield Middle School,03250310, 2.6, 2.9, 18.2, 72.4, 0.1, 0.0, 3.8, 53.1, 46.7, 0.1 -1,1,a-cure-i1,2022-23,4.7,18.0,Westfield - Westfield Technical Academy,03250605, 0.9, 1.1, 13.3, 82.0, 0.2, 0.0, 2.6, 67.8, 31.9, 0.4 -1,1,a-cure-i1,2022-23,0.0,41.8,Westfield - Westfield Virtual School,03250705, 5.1, 0.0, 30.4, 58.2, 0.0, 0.0, 6.3, 40.5, 58.2, 1.3 -1,1,a-cure-i1,2022-23,0.0,24.700000000000003,Westford - Abbot Elementary,03260004, 0.3, 22.8, 0.8, 75.3, 0.3, 0.0, 0.6, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2022-23,2.5,45.5,Westford - Blanchard Middle,03260310, 1.1, 36.3, 6.6, 54.5, 0.4, 0.0, 1.1, 47.1, 52.7, 0.2 -1,1,a-cure-i1,2022-23,0.0,40.8,Westford - Col John Robinson,03260025, 2.4, 31.4, 4.1, 59.2, 0.3, 0.0, 2.7, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,48.0,Westford - Day Elementary,03260007, 3.1, 36.4, 6.1, 52.0, 0.0, 0.6, 1.8, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,43.0,Westford - John A. Crisafulli Elementary School,03260045, 2.7, 34.0, 3.3, 57.0, 0.3, 0.0, 2.7, 54.9, 44.8, 0.3 -1,1,a-cure-i1,2022-23,0.0,27.599999999999994,Westford - Nabnasset,03260015, 1.4, 20.1, 4.3, 72.4, 0.8, 0.0, 1.1, 50.4, 49.6, 0.0 -1.4469565217391305,1.45,a-cure-i1,2022-23,5.2,57.5,Westford - Rita E. Miller Elementary School,03260055, 2.3, 44.5, 8.6, 42.5, 0.0, 0.0, 2.0, 64.1, 35.9, 0.0 -1,1,a-cure-i1,2022-23,2.3,35.3,Westford - Stony Brook School,03260330, 0.7, 30.4, 2.3, 64.7, 0.0, 0.2, 1.8, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2022-23,3.9,37.0,Westford - Westford Academy,03260505, 2.0, 31.1, 3.1, 63.0, 0.4, 0.2, 0.2, 50.0, 49.8, 0.2 -1,1,a-cure-i1,2022-23,0.0,9.599999999999994,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 8.7, 90.4, 0.0, 0.0, 1.0, 56.7, 43.3, 0.0 -6.55813953488372,5,a-cure-i1,2022-23,14.100000000000001,34.400000000000006,Weston - Country,03300010, 4.8, 14.8, 7.3, 65.6, 0.0, 0.0, 7.6, 51.7, 48.3, 0.0 -2.198198198198198,2.2,a-cure-i1,2022-23,6.1,44.4,Weston - Field Elementary School,03300012, 7.9, 22.2, 8.3, 55.6, 0.0, 0.0, 6.0, 48.9, 50.8, 0.4 -5.912144702842377,5,a-cure-i1,2022-23,14.299999999999999,38.7,Weston - Weston High,03300505, 6.6, 18.8, 5.8, 61.3, 0.0, 0.0, 7.5, 56.0, 43.7, 0.3 -3.0896551724137926,3.09,a-cure-i1,2022-23,8.399999999999999,43.5,Weston - Weston Middle,03300305, 5.4, 20.7, 9.2, 56.5, 0.0, 0.2, 7.9, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2022-23,0.0,35.900000000000006,Weston - Woodland,03300015, 6.3, 16.6, 7.8, 64.1, 0.0, 0.0, 5.3, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,8.700000000000003,Westport - Alice A Macomber,03310015, 0.6, 1.2, 4.0, 91.3, 0.0, 0.0, 2.9, 42.8, 57.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.700000000000003,Westport - Westport Elementary,03310030, 0.9, 0.5, 6.3, 89.3, 0.0, 0.0, 2.9, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.099999999999994,Westport - Westport Middle-High School,03310515, 1.2, 0.8, 4.2, 89.9, 0.2, 0.0, 3.6, 54.0, 45.7, 0.4 -4.492307692307692,4.49,a-cure-i1,2022-23,7.3,26.0,Westwood - Deerfield School,03350010, 2.6, 13.8, 3.6, 74.0, 0.0, 0.0, 6.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,1.0,35.099999999999994,Westwood - Downey,03350012, 0.3, 22.7, 6.8, 64.9, 0.0, 0.3, 4.9, 56.5, 43.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,27.099999999999994,Westwood - E W Thurston Middle,03350305, 2.0, 11.3, 6.4, 72.9, 0.2, 0.2, 7.1, 51.1, 48.9, 0.0 -4.5373134328358224,4.54,a-cure-i1,2022-23,5.7,20.099999999999994,Westwood - Martha Jones,03350017, 0.0, 9.1, 4.2, 79.9, 0.0, 0.0, 6.8, 48.5, 51.5, 0.0 -2.9872122762148337,2.99,a-cure-i1,2022-23,7.3,39.1,Westwood - Paul Hanlon,03350015, 4.8, 13.5, 14.3, 60.9, 0.0, 0.0, 6.5, 52.2, 47.8, 0.0 -6.38655462184874,5,a-cure-i1,2022-23,9.5,23.799999999999997,Westwood - Westwood High,03350505, 3.1, 11.8, 6.2, 76.2, 0.1, 0.1, 2.5, 51.4, 48.3, 0.2 -1,1,a-cure-i1,2022-23,0.0,23.799999999999997,Westwood - Westwood Integrated Preschool,03350050, 0.0, 7.1, 7.1, 76.2, 0.0, 0.0, 9.5, 59.5, 40.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,23.0,Westwood - William E Sheehan,03350025, 0.7, 10.8, 4.2, 77.0, 0.0, 0.0, 7.3, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,31.099999999999994,Weymouth - Academy Avenue,03360005, 7.3, 4.7, 11.6, 68.9, 0.0, 0.6, 7.0, 49.1, 50.9, 0.0 -2.21105527638191,2.21,a-cure-i1,2022-23,5.5,39.8,Weymouth - Frederick C Murphy,03360050, 7.5, 5.7, 20.8, 60.2, 0.0, 0.0, 5.7, 54.1, 45.9, 0.0 -3.7784256559766765,3.78,a-cure-i1,2022-23,8.1,34.3,Weymouth - Johnson Early Childhood Center,03360003, 7.3, 11.2, 6.7, 65.7, 0.6, 0.0, 8.4, 58.4, 41.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,28.700000000000003,Weymouth - Lawrence W Pingree,03360065, 6.2, 4.3, 12.4, 71.3, 0.4, 0.0, 5.4, 45.3, 54.7, 0.0 -1,1,a-cure-i1,2022-23,4.0,34.2,Weymouth - Maria Weston Chapman Middle School,03360020, 8.6, 5.8, 15.8, 65.8, 0.1, 0.2, 3.8, 47.4, 52.5, 0.1 -2.816,2.82,a-cure-i1,2022-23,6.6,37.5,Weymouth - Ralph Talbot,03360085, 10.8, 7.7, 12.4, 62.5, 0.0, 0.0, 6.6, 56.4, 43.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,29.299999999999997,Weymouth - Thomas V Nash,03360060, 3.9, 6.5, 11.2, 70.7, 0.0, 0.4, 7.3, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,33.400000000000006,Weymouth - Thomas W. Hamilton Primary School,03360105, 3.1, 12.9, 12.0, 66.6, 0.3, 0.0, 5.1, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,30.799999999999997,Weymouth - Wessagusset,03360110, 7.3, 9.4, 7.3, 69.2, 0.0, 0.0, 6.7, 51.6, 48.4, 0.0 -3.785488958990536,3.79,a-cure-i1,2022-23,7.5,31.700000000000003,Weymouth - Weymouth High School,03360505, 8.5, 5.4, 13.6, 68.3, 0.2, 0.1, 3.9, 49.4, 50.3, 0.3 -1,1,a-cure-i1,2022-23,0.0,57.6,Weymouth - William Seach,03360080, 18.0, 7.0, 24.2, 42.4, 0.6, 0.0, 7.9, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,7.799999999999997,Whately - Whately Elementary,03370005, 0.8, 0.8, 4.7, 92.2, 0.0, 0.0, 1.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,10.900000000000006,Whitman-Hanson - Hanson Middle School,07800315, 1.6, 1.6, 5.6, 89.1, 0.4, 0.0, 1.8, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,3.8,12.599999999999994,Whitman-Hanson - Indian Head,07800035, 2.7, 1.2, 4.9, 87.4, 0.0, 0.4, 3.3, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2022-23,4.3,27.900000000000006,Whitman-Hanson - John H Duval,07800030, 6.1, 1.9, 15.3, 72.1, 0.5, 0.0, 4.2, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.700000000000003,Whitman-Hanson - Louise A Conley,07800010, 4.8, 3.3, 8.3, 79.3, 0.2, 0.0, 4.1, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.0,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 7.0, 3.0, 8.0, 74.0, 2.0, 0.0, 6.0, 67.0, 33.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.900000000000006,Whitman-Hanson - Whitman Hanson Regional,07800505, 5.6, 1.6, 7.8, 81.1, 1.0, 0.1, 2.9, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.200000000000003,Whitman-Hanson - Whitman Middle,07800310, 6.2, 1.4, 8.3, 79.8, 1.0, 0.2, 3.2, 51.2, 48.8, 0.0 -3.288888888888889,3.29,a-cure-i1,2022-23,7.4,36.0,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 3.0, 1.6, 27.5, 64.0, 0.4, 0.0, 3.6, 54.5, 44.4, 1.1 -1,1,a-cure-i1,2022-23,0.0,6.299999999999997,Williamsburg - Anne T. Dunphy School,03400020, 0.8, 0.8, 4.7, 93.7, 0.0, 0.0, 0.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.0,Wilmington - Boutwell,03420005, 2.8, 4.9, 6.3, 79.0, 0.0, 0.0, 7.0, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.700000000000003,Wilmington - North Intermediate,03420060, 0.8, 5.6, 7.1, 81.3, 0.0, 0.0, 5.2, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.900000000000006,Wilmington - Shawsheen Elementary,03420025, 1.3, 7.8, 3.9, 81.1, 0.0, 0.0, 5.9, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2022-23,3.9,16.799999999999997,Wilmington - West Intermediate,03420080, 1.4, 8.6, 4.1, 83.2, 0.0, 0.0, 2.7, 53.1, 46.9, 0.0 -5.6,5,a-cure-i1,2022-23,6.3,18.0,Wilmington - Wilmington High,03420505, 1.2, 7.3, 5.2, 82.0, 0.2, 0.0, 4.1, 49.2, 50.3, 0.5 -1,1,a-cure-i1,2022-23,1.5,16.299999999999997,Wilmington - Wilmington Middle School,03420330, 1.1, 6.3, 5.5, 83.7, 0.0, 0.0, 3.3, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2022-23,0.0,20.200000000000003,Wilmington - Woburn Street,03420020, 3.1, 5.2, 6.6, 79.8, 0.2, 0.0, 5.2, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,16.0,Winchendon - Memorial,03430040, 1.6, 0.0, 9.1, 84.0, 0.3, 0.0, 5.0, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2022-23,0.0,18.200000000000003,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 9.1, 81.8, 0.0, 0.0, 9.1, 59.1, 40.9, 0.0 -6.120218579234973,5,a-cure-i1,2022-23,7.0,18.299999999999997,Winchendon - Murdock High School,03430515, 1.9, 3.4, 9.1, 81.7, 0.0, 0.8, 3.0, 50.6, 49.0, 0.4 -1,1,a-cure-i1,2022-23,0.0,16.700000000000003,Winchendon - Murdock Middle School,03430315, 2.2, 1.1, 11.5, 83.3, 0.0, 0.4, 1.5, 60.2, 39.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.700000000000003,Winchendon - Toy Town Elementary,03430050, 2.7, 1.7, 9.9, 82.3, 0.0, 0.0, 3.4, 53.7, 46.3, 0.0 -20.618556701030922,5,a-cure-i1,2022-23,25.0,19.400000000000006,Winchendon - Winchendon PreSchool Program,03430010, 2.8, 2.8, 8.3, 80.6, 0.0, 0.0, 5.6, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,17.700000000000003,Winchester - Ambrose Elementary,03440045, 1.2, 8.1, 2.0, 82.3, 0.0, 0.0, 6.4, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,25.900000000000006,Winchester - Lincoln Elementary,03440005, 0.9, 12.2, 3.0, 74.1, 0.0, 0.0, 9.8, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2022-23,0.0,45.7,Winchester - Lynch Elementary,03440020, 1.5, 31.3, 4.7, 54.3, 0.0, 0.0, 8.2, 59.0, 41.0, 0.0 -3.116883116883117,3.12,a-cure-i1,2022-23,6.0,30.799999999999997,Winchester - McCall Middle,03440305, 1.4, 18.3, 3.8, 69.2, 0.1, 0.0, 7.2, 47.7, 52.1, 0.2 -1,1,a-cure-i1,2022-23,0.0,32.5,Winchester - Muraco Elementary,03440040, 0.3, 22.7, 3.4, 67.5, 0.0, 0.0, 6.1, 50.6, 49.1, 0.3 -3.841945288753799,3.84,a-cure-i1,2022-23,7.9,32.900000000000006,Winchester - Vinson-Owen Elementary,03440025, 0.2, 21.8, 2.5, 67.1, 0.0, 0.0, 8.4, 48.8, 51.2, 0.0 -3.1282051282051277,3.13,a-cure-i1,2022-23,6.1,31.200000000000003,Winchester - Winchester High School,03440505, 2.2, 19.5, 3.5, 68.8, 0.3, 0.0, 5.6, 48.4, 51.4, 0.1 -1,1,a-cure-i1,2022-23,0.0,24.099999999999994,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.4, 0.7, 20.2, 75.9, 0.0, 0.0, 1.9, 43.6, 56.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,24.200000000000003,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.6, 0.4, 20.0, 75.8, 0.2, 0.0, 2.0, 51.5, 48.5, 0.0 -3.18819188191882,3.19,a-cure-i1,2022-23,5.4,27.099999999999994,Winthrop - Winthrop High School,03460505, 1.9, 1.3, 22.2, 72.9, 0.7, 0.0, 1.0, 48.1, 51.7, 0.2 -1,1,a-cure-i1,2022-23,0.0,21.599999999999994,Winthrop - Winthrop Middle School,03460305, 1.6, 0.0, 17.6, 78.4, 0.7, 0.2, 1.4, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2022-23,3.9,32.7,Woburn - Clyde Reeves,03470040, 8.5, 6.6, 10.4, 67.3, 2.6, 0.0, 4.5, 54.7, 45.0, 0.2 -1,1,a-cure-i1,2022-23,3.0,30.900000000000006,Woburn - Daniel L Joyce Middle School,03470410, 9.4, 3.4, 12.1, 69.1, 1.6, 0.0, 4.5, 46.3, 53.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,42.2,Woburn - Goodyear Elementary School,03470005, 6.5, 8.1, 21.1, 57.8, 2.2, 0.3, 4.0, 45.3, 54.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,21.799999999999997,Woburn - Hurld-Wyman Elementary School,03470020, 3.3, 4.1, 10.8, 78.2, 0.5, 0.3, 2.8, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2022-23,3.9,34.2,Woburn - John F Kennedy Middle School,03470405, 7.4, 7.4, 13.8, 65.8, 1.6, 0.2, 3.9, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2022-23,0.0,38.7,Woburn - Linscott-Rumford,03470025, 8.5, 12.6, 10.1, 61.3, 1.5, 0.5, 5.5, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2022-23,0.0,35.599999999999994,Woburn - Malcolm White,03470055, 6.9, 6.9, 12.9, 64.4, 4.1, 0.0, 4.7, 44.2, 55.5, 0.3 -1,1,a-cure-i1,2022-23,0.0,48.3,Woburn - Mary D Altavesta,03470065, 14.8, 13.3, 14.8, 51.7, 2.5, 0.0, 3.0, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2022-23,0.0,45.8,Woburn - Shamrock,03470043, 14.1, 6.3, 20.4, 54.2, 1.1, 0.0, 3.9, 53.5, 46.5, 0.0 -2.7234042553191484,2.72,a-cure-i1,2022-23,5.6,32.900000000000006,Woburn - Woburn High,03470505, 7.9, 6.4, 15.1, 67.1, 0.6, 0.3, 2.7, 48.6, 51.0, 0.3 -1,1,a-cure-i1,2022-23,1.7999999999999998,79.8,Worcester - Belmont Street Community,03480020, 18.3, 3.8, 53.8, 20.2, 0.2, 0.0, 3.8, 51.3, 48.7, 0.0 -4.699140401146132,4.7,a-cure-i1,2022-23,20.5,69.8,Worcester - Burncoat Middle School,03480405, 18.3, 3.4, 43.5, 30.2, 0.3, 0.0, 4.4, 47.6, 52.4, 0.0 -3.10413694721826,3.1,a-cure-i1,2022-23,13.6,70.1,Worcester - Burncoat Senior High,03480503, 19.3, 5.6, 41.2, 29.9, 0.1, 0.0, 3.8, 49.8, 50.1, 0.1 -1.1093333333333333,1.11,a-cure-i1,2022-23,5.2,75.0,Worcester - Burncoat Street,03480035, 11.7, 4.2, 54.6, 25.0, 0.0, 0.0, 4.6, 53.3, 46.7, 0.0 -1.513264129181084,1.51,a-cure-i1,2022-23,8.2,86.7,Worcester - Canterbury,03480045, 13.6, 14.3, 55.4, 13.3, 0.3, 0.0, 3.1, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2022-23,1.9,85.2,Worcester - Chandler Elementary Community,03480050, 12.2, 7.7, 62.0, 14.8, 0.2, 0.0, 3.1, 49.8, 50.2, 0.0 -8.42806183115339,5,a-cure-i1,2022-23,44.3,84.1,Worcester - Chandler Magnet,03480052, 4.5, 1.0, 75.9, 15.9, 0.5, 0.0, 2.2, 45.3, 54.7, 0.0 -1.753958587088916,1.75,a-cure-i1,2022-23,9.0,82.1,Worcester - City View,03480053, 14.2, 1.9, 61.2, 17.9, 0.2, 0.0, 4.7, 50.7, 49.3, 0.0 -3.53448275862069,3.53,a-cure-i1,2022-23,20.5,92.8,Worcester - Claremont Academy,03480350, 10.0, 5.9, 74.4, 7.2, 0.4, 0.0, 2.0, 51.0, 49.0, 0.0 -4.903846153846153,4.9,a-cure-i1,2022-23,25.5,83.2,Worcester - Clark St Community,03480055, 13.4, 11.2, 55.6, 16.8, 0.4, 0.0, 2.6, 50.0, 50.0, 0.0 -1.1191709844559585,1.12,a-cure-i1,2022-23,5.4,77.2,Worcester - Columbus Park,03480060, 11.9, 5.4, 55.4, 22.8, 1.0, 0.0, 3.4, 55.4, 44.6, 0.0 -3.5140186915887845,3.51,a-cure-i1,2022-23,14.099999999999998,64.2,Worcester - Doherty Memorial High,03480512, 15.8, 6.3, 37.5, 35.8, 0.2, 0.0, 4.5, 56.0, 44.0, 0.0 -1.44,1.44,a-cure-i1,2022-23,7.2,80.0,Worcester - Elm Park Community,03480095, 9.9, 6.0, 60.5, 20.0, 0.0, 0.0, 3.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2022-23,0.0,26.5,Worcester - Flagg Street,03480090, 4.5, 4.5, 13.9, 73.5, 0.3, 0.0, 3.3, 49.6, 50.4, 0.0 -5.0,5.0,a-cure-i1,2022-23,19.5,62.4,Worcester - Forest Grove Middle,03480415, 15.5, 5.4, 34.9, 37.6, 0.3, 0.0, 6.4, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2022-23,2.2,73.1,Worcester - Francis J McGrath Elementary,03480177, 20.7, 4.8, 41.3, 26.9, 0.0, 0.0, 6.3, 53.4, 46.6, 0.0 -1.5716234652114596,1.57,a-cure-i1,2022-23,7.199999999999999,73.3,Worcester - Gates Lane,03480110, 13.8, 13.8, 39.2, 26.7, 0.2, 0.0, 6.4, 57.4, 42.6, 0.0 -2.3418994413407823,2.34,a-cure-i1,2022-23,13.100000000000001,89.5,Worcester - Goddard School/Science Technical,03480100, 13.4, 8.2, 65.3, 10.5, 0.3, 0.0, 2.4, 51.3, 48.7, 0.0 -2.479784366576819,2.48,a-cure-i1,2022-23,11.5,74.2,Worcester - Grafton Street,03480115, 18.7, 2.6, 49.2, 25.8, 0.2, 0.0, 3.5, 52.2, 47.8, 0.0 -1.7163995067817508,1.72,a-cure-i1,2022-23,8.7,81.1,Worcester - Head Start,03480002, 19.7, 3.2, 56.3, 18.9, 0.2, 0.2, 1.5, 47.2, 52.8, 0.0 -2.098360655737705,2.1,a-cure-i1,2022-23,7.2,54.9,Worcester - Heard Street,03480136, 14.2, 8.9, 26.0, 45.1, 0.0, 0.0, 5.7, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2022-23,3.2,86.0,Worcester - Jacob Hiatt Magnet,03480140, 35.2, 4.0, 42.5, 14.0, 0.3, 0.0, 4.0, 48.9, 51.1, 0.0 -11.62642369020501,5,a-cure-i1,2022-23,63.8,87.8,Worcester - La Familia Dual Language School,03480025, 6.4, 1.7, 76.7, 12.2, 0.6, 0.0, 2.3, 50.0, 49.4, 0.6 -2.735483870967742,2.74,a-cure-i1,2022-23,10.6,62.0,Worcester - Lake View,03480145, 18.5, 8.4, 28.2, 38.0, 0.3, 0.0, 6.5, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2022-23,0.0,84.3,Worcester - Lincoln Street,03480160, 27.7, 7.9, 42.1, 15.7, 0.0, 0.0, 6.6, 52.1, 47.9, 0.0 -4.6392092257001645,4.64,a-cure-i1,2022-23,17.6,60.7,Worcester - May Street,03480175, 13.9, 7.8, 27.1, 39.3, 0.3, 0.3, 11.2, 50.8, 49.2, 0.0 -2.7051546391752574,2.71,a-cure-i1,2022-23,8.2,48.5,Worcester - Midland Street,03480185, 7.8, 10.7, 23.3, 51.5, 0.0, 0.0, 6.8, 57.3, 42.7, 0.0 -2.570888468809074,2.57,a-cure-i1,2022-23,8.5,52.9,Worcester - Nelson Place,03480200, 16.0, 8.9, 22.8, 47.1, 0.0, 0.0, 5.2, 56.9, 43.1, 0.0 -3.7938144329896906,3.79,a-cure-i1,2022-23,16.1,67.9,Worcester - Norrback Avenue,03480202, 27.8, 2.6, 32.7, 32.1, 0.4, 0.0, 4.3, 55.6, 44.4, 0.0 -4.560292326431182,4.56,a-cure-i1,2022-23,23.400000000000002,82.1,Worcester - North High,03480515, 19.4, 4.3, 54.8, 17.9, 0.0, 0.0, 3.6, 51.9, 47.8, 0.3 -2.4649243466299864,2.46,a-cure-i1,2022-23,11.200000000000001,72.7,Worcester - Quinsigamond,03480210, 13.3, 5.0, 50.6, 27.3, 0.4, 0.0, 3.2, 52.3, 47.7, 0.0 -5.467549668874171,5,a-cure-i1,2022-23,25.799999999999997,75.5,Worcester - Rice Square,03480215, 18.8, 7.9, 44.3, 24.5, 0.9, 0.0, 3.7, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2022-23,2.9,67.3,Worcester - Roosevelt,03480220, 26.9, 4.6, 31.6, 32.7, 0.0, 0.2, 4.1, 55.5, 44.5, 0.0 -2.816166883963494,2.82,a-cure-i1,2022-23,13.5,76.7,Worcester - South High Community,03480520, 17.1, 10.1, 45.4, 23.3, 0.1, 0.0, 3.9, 53.4, 46.6, 0.1 -3.2608695652173916,3.26,a-cure-i1,2022-23,15.0,73.6,Worcester - Sullivan Middle,03480423, 15.7, 9.6, 43.4, 26.4, 0.2, 0.0, 4.7, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2022-23,3.5,59.0,Worcester - Tatnuck,03480230, 17.1, 5.7, 30.6, 41.0, 0.3, 0.0, 5.2, 51.2, 48.8, 0.0 -1.386018237082067,1.39,a-cure-i1,2022-23,5.7,65.8,Worcester - Thorndyke Road,03480235, 16.5, 6.1, 39.9, 34.2, 0.3, 0.0, 3.0, 49.3, 50.7, 0.0 -1.5925058548009368,1.59,a-cure-i1,2022-23,8.5,85.4,Worcester - Union Hill School,03480240, 16.2, 3.1, 63.6, 14.6, 0.0, 0.0, 2.6, 54.6, 45.4, 0.0 -1.598163030998852,1.6,a-cure-i1,2022-23,8.7,87.1,Worcester - University Pk Campus School,03480285, 13.4, 14.3, 55.4, 12.9, 0.0, 0.0, 4.0, 54.5, 45.1, 0.4 -1.6152019002375297,1.62,a-cure-i1,2022-23,8.5,84.2,Worcester - Vernon Hill School,03480280, 21.7, 3.0, 56.3, 15.8, 0.2, 0.0, 3.0, 48.3, 51.7, 0.0 -1.9685264663805433,1.97,a-cure-i1,2022-23,8.6,69.9,Worcester - Wawecus Road School,03480026, 14.3, 6.0, 42.9, 30.1, 0.0, 0.0, 6.8, 49.6, 50.4, 0.0 -4.118811881188119,4.12,a-cure-i1,2022-23,13.0,50.5,Worcester - West Tatnuck,03480260, 15.4, 7.1, 19.8, 49.5, 0.3, 0.0, 8.0, 55.8, 44.2, 0.0 -3.515151515151515,3.52,a-cure-i1,2022-23,20.3,92.4,Worcester - Woodland Academy,03480030, 9.7, 4.5, 76.2, 7.6, 0.2, 0.0, 1.8, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2022-23,4.3,59.8,Worcester - Worcester Arts Magnet School,03480225, 23.6, 7.9, 25.5, 40.2, 0.0, 0.0, 2.7, 49.7, 50.3, 0.0 -4.932484076433121,4.93,a-cure-i1,2022-23,24.2,78.5,Worcester - Worcester East Middle,03480420, 17.7, 3.5, 54.2, 21.5, 0.1, 0.0, 3.0, 51.4, 48.6, 0.0 -2.1149425287356323,2.11,a-cure-i1,2022-23,9.2,69.6,Worcester - Worcester Technical High,03480605, 18.4, 6.4, 40.8, 30.4, 0.2, 0.1, 3.7, 43.1, 56.8, 0.1 -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 -6.273127753303965,5,a-cure-i1,2021-22,8.9,22.700000000000003,Abington - Abington Middle School,00010405, 4.8, 2.3, 13.0, 77.3, 0.8, 0.2, 1.7, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.400000000000006,Abington - Beaver Brook Elementary,00010020, 5.6, 1.9, 13.6, 74.6, 0.4, 0.2, 3.8, 48.6, 51.2, 0.2 -1,1,a-cure-i1,2021-22,0.0,21.299999999999997,Abington - Woodsdale Elementary School,00010015, 4.5, 3.2, 10.5, 78.7, 1.0, 0.0, 2.2, 50.3, 49.7, 0.0 -8.02577873254565,5,a-cure-i1,2021-22,46.699999999999996,93.1,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 61.0, 0.4, 30.0, 6.9, 0.0, 0.2, 1.6, 52.0, 48.0, 0.0 -1.622718052738337,1.62,a-cure-i1,2021-22,5.0,49.3,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 2.8, 36.6, 5.9, 50.7, 0.1, 0.1, 3.6, 51.5, 48.2, 0.4 -1,1,a-cure-i1,2021-22,3.7,46.2,Acton-Boxborough - Blanchard Memorial School,06000005, 2.4, 28.8, 9.3, 53.8, 0.0, 0.0, 5.6, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,34.8,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 3.1, 14.7, 8.9, 65.2, 0.0, 0.0, 8.1, 50.3, 49.5, 0.3 -1,1,a-cure-i1,2021-22,0.0,64.2,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 4.7, 46.2, 3.8, 35.8, 0.9, 0.0, 8.5, 58.5, 41.5, 0.0 -2.716981132075472,2.72,a-cure-i1,2021-22,12.600000000000001,74.2,Acton-Boxborough - Luther Conant School,06000030, 4.2, 56.6, 8.9, 25.8, 0.0, 0.0, 4.5, 54.1, 45.7, 0.2 -2.894736842105263,2.89,a-cure-i1,2021-22,5.5,30.400000000000006,Acton-Boxborough - McCarthy-Towne School,06000015, 3.3, 11.3, 8.7, 69.6, 0.0, 0.0, 7.1, 48.4, 51.6, 0.0 -3.8670694864048345,3.87,a-cure-i1,2021-22,8.0,33.099999999999994,Acton-Boxborough - Merriam School,06000010, 3.3, 15.2, 5.7, 66.9, 0.0, 0.0, 8.8, 49.9, 49.9, 0.2 -1,1,a-cure-i1,2021-22,2.8,73.9,Acton-Boxborough - Paul P Gates Elementary School,06000025, 1.9, 61.4, 5.7, 26.1, 0.0, 0.0, 4.9, 53.0, 47.0, 0.0 -1.7959183673469388,1.8,a-cure-i1,2021-22,5.5,49.0,Acton-Boxborough - Raymond J Grey Junior High,06000405, 3.3, 34.5, 6.9, 51.0, 0.4, 0.2, 3.6, 51.9, 48.0, 0.1 -1,1,a-cure-i1,2021-22,3.0,11.0,Acushnet - Acushnet Elementary School,00030025, 1.7, 0.9, 4.7, 89.0, 0.0, 0.0, 3.7, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.299999999999997,Acushnet - Albert F Ford Middle School,00030305, 0.5, 0.8, 4.0, 90.7, 0.5, 0.0, 3.5, 51.0, 49.0, 0.0 -3.7740863787375423,3.77,a-cure-i1,2021-22,7.1,30.099999999999994,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 2.0, 14.4, 7.3, 69.9, 0.0, 0.0, 6.4, 53.5, 46.1, 0.4 -1,1,a-cure-i1,2021-22,0.0,21.700000000000003,Agawam - Agawam Early Childhood Center,00050003, 0.0, 5.7, 11.5, 78.3, 0.6, 0.0, 3.8, 63.7, 36.3, 0.0 -1,1,a-cure-i1,2021-22,1.2,17.5,Agawam - Agawam High,00050505, 2.7, 3.4, 8.3, 82.5, 0.1, 0.0, 3.0, 52.2, 47.7, 0.1 -1,1,a-cure-i1,2021-22,1.8,23.700000000000003,Agawam - Agawam Junior High,00050405, 2.1, 4.3, 14.2, 76.3, 0.0, 0.0, 3.1, 53.0, 46.8, 0.2 -1,1,a-cure-i1,2021-22,0.0,15.5,Agawam - Benjamin J Phelps,00050020, 1.0, 3.0, 6.7, 84.5, 0.0, 0.0, 4.7, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,21.700000000000003,Agawam - Clifford M Granger,00050010, 1.6, 4.2, 15.7, 78.3, 0.0, 0.0, 0.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.0,Agawam - James Clark School,00050030, 1.4, 5.4, 14.2, 76.0, 0.0, 0.0, 3.0, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.299999999999997,Agawam - Roberta G. Doering School,00050303, 2.3, 2.3, 8.6, 83.7, 0.0, 0.2, 2.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.400000000000006,Agawam - Robinson Park,00050025, 2.5, 3.5, 16.2, 73.6, 0.0, 0.0, 4.2, 52.8, 47.2, 0.0 -3.1468710089399745,3.15,a-cure-i1,2021-22,15.4,78.3,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 13.0, 0.3, 60.7, 21.7, 0.4, 0.0, 3.8, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.400000000000006,Amesbury - Amesbury Elementary,00070005, 0.6, 0.3, 6.3, 89.6, 0.0, 0.0, 3.2, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,4.3,15.099999999999994,Amesbury - Amesbury High,00070505, 1.5, 1.5, 7.1, 84.9, 0.0, 0.2, 4.8, 49.2, 50.5, 0.2 -1,1,a-cure-i1,2021-22,0.0,10.599999999999994,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 6.4, 89.4, 0.0, 0.0, 4.3, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.900000000000006,Amesbury - Amesbury Middle,00070013, 2.0, 2.0, 9.8, 81.1, 0.2, 0.0, 5.0, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.599999999999994,Amesbury - Charles C Cashman Elementary,00070010, 1.4, 0.3, 14.1, 79.4, 0.3, 0.3, 4.2, 49.9, 50.1, 0.0 -3.992380952380953,3.99,a-cure-i1,2021-22,13.100000000000001,52.5,Amherst - Crocker Farm Elementary,00080009, 12.3, 12.3, 17.6, 47.5, 0.3, 0.3, 9.8, 50.3, 48.3, 1.4 -8.527629233511586,5,a-cure-i1,2021-22,29.9,56.1,Amherst - Fort River Elementary,00080020, 7.1, 11.4, 29.9, 43.9, 0.3, 0.3, 7.1, 53.6, 46.4, 0.0 -11.889094269870608,5,a-cure-i1,2021-22,40.199999999999996,54.1,Amherst - Wildwood Elementary,00080050, 15.7, 9.6, 21.5, 45.9, 0.6, 0.0, 6.7, 47.1, 52.3, 0.6 -6.17607223476298,5,a-cure-i1,2021-22,17.1,44.3,Amherst-Pelham - Amherst Regional High,06050505, 8.4, 9.1, 18.2, 55.7, 0.0, 0.0, 8.6, 52.6, 46.9, 0.6 -12.145077720207254,5,a-cure-i1,2021-22,29.3,38.6,Amherst-Pelham - Amherst Regional Middle School,06050405, 7.0, 7.5, 17.2, 61.4, 0.0, 0.0, 6.8, 51.9, 47.8, 0.2 -6.179640718562873,5,a-cure-i1,2021-22,12.9,33.400000000000006,Andover - Andover High,00090505, 2.9, 19.5, 8.0, 66.6, 0.4, 0.1, 2.7, 49.0, 50.7, 0.3 -2.881028938906753,2.88,a-cure-i1,2021-22,5.6,31.099999999999994,Andover - Andover West Middle,00090310, 3.2, 17.7, 7.9, 68.9, 0.2, 0.0, 2.1, 48.7, 51.1, 0.2 -1,1,a-cure-i1,2021-22,0.0,23.299999999999997,Andover - Bancroft Elementary,00090003, 1.2, 8.4, 7.8, 76.7, 0.0, 0.0, 6.0, 50.8, 49.2, 0.0 -7.479674796747969,5,a-cure-i1,2021-22,11.5,24.599999999999994,Andover - Doherty Middle,00090305, 1.3, 11.4, 8.8, 75.4, 0.0, 0.0, 3.1, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,39.6,Andover - Henry C Sanborn Elementary,00090010, 2.7, 21.0, 9.5, 60.4, 0.0, 0.0, 6.4, 51.5, 48.5, 0.0 -2.6401590457256465,2.64,a-cure-i1,2021-22,8.3,50.3,Andover - High Plain Elementary,00090004, 3.4, 27.5, 12.8, 49.7, 0.2, 0.2, 6.2, 52.0, 48.0, 0.0 -3.8535645472061657,3.85,a-cure-i1,2021-22,12.5,51.9,Andover - Shawsheen School,00090005, 2.6, 24.7, 14.3, 48.1, 1.3, 0.0, 9.1, 59.7, 40.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.299999999999997,Andover - South Elementary,00090020, 1.1, 17.5, 4.6, 71.7, 0.0, 0.0, 5.1, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.599999999999994,Andover - West Elementary,00090025, 3.5, 15.7, 7.8, 68.4, 0.0, 0.0, 4.6, 54.0, 46.0, 0.0 -3.7824267782426784,3.78,a-cure-i1,2021-22,11.3,47.8,Andover - Wood Hill Middle School,00090350, 2.7, 29.5, 9.8, 52.2, 0.5, 0.3, 4.9, 49.7, 50.3, 0.0 -9.950413223140497,5,a-cure-i1,2021-22,30.1,48.4,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 13.6, 1.9, 26.7, 51.6, 0.5, 0.0, 5.7, 53.2, 46.8, 0.0 -5.435114503816793,5,a-cure-i1,2021-22,8.9,26.200000000000003,Arlington - Arlington High,00100505, 3.8, 10.9, 6.0, 73.8, 0.0, 0.1, 5.5, 46.8, 52.3, 0.9 -3.972413793103448,3.97,a-cure-i1,2021-22,7.2,29.0,Arlington - Brackett,00100010, 1.6, 10.0, 6.6, 71.0, 0.0, 0.0, 10.9, 55.9, 44.1, 0.0 -6.239999999999999,5,a-cure-i1,2021-22,11.7,30.0,Arlington - Cyrus E Dallin,00100025, 1.6, 14.3, 5.4, 70.0, 0.0, 0.0, 8.7, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,2.3,28.099999999999994,Arlington - Gibbs School,00100305, 3.5, 11.9, 5.8, 71.9, 0.0, 0.4, 6.4, 46.7, 53.1, 0.2 -4.2,4.2,a-cure-i1,2021-22,8.4,32.0,Arlington - Hardy,00100030, 1.7, 16.3, 5.1, 68.0, 0.0, 0.0, 8.8, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2021-22,4.8,31.799999999999997,Arlington - John A Bishop,00100005, 3.1, 14.6, 3.8, 68.2, 0.0, 0.0, 10.3, 52.1, 47.7, 0.3 -1,1,a-cure-i1,2021-22,3.9,36.6,Arlington - M Norcross Stratton,00100055, 2.9, 19.2, 5.3, 63.4, 0.0, 0.0, 9.3, 51.0, 48.8, 0.2 -5.5669099756691,5,a-cure-i1,2021-22,14.3,41.1,Arlington - Menotomy Preschool,00100038, 2.7, 19.2, 5.5, 58.9, 0.0, 0.0, 13.7, 54.8, 45.2, 0.0 -5.075862068965517,5,a-cure-i1,2021-22,9.2,29.0,Arlington - Ottoson Middle,00100410, 4.5, 9.6, 8.2, 71.0, 0.2, 0.1, 6.4, 53.3, 46.2, 0.4 -4.545961002785514,4.55,a-cure-i1,2021-22,10.2,35.900000000000006,Arlington - Peirce,00100045, 4.9, 16.3, 8.0, 64.1, 0.0, 0.0, 6.7, 56.7, 42.9, 0.3 -1,1,a-cure-i1,2021-22,0.0,36.4,Arlington - Thompson,00100050, 4.2, 14.1, 9.9, 63.6, 0.0, 0.0, 8.3, 46.7, 53.1, 0.2 -12.717948717948715,5,a-cure-i1,2021-22,9.3,11.700000000000003,Ashburnham-Westminster - Briggs Elementary,06100025, 1.1, 1.3, 4.9, 88.3, 0.2, 0.0, 4.2, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.799999999999997,Ashburnham-Westminster - Meetinghouse School,06100010, 2.4, 0.6, 3.0, 89.2, 0.0, 0.0, 4.8, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,4.7,9.799999999999997,Ashburnham-Westminster - Oakmont Regional High School,06100505, 1.0, 1.1, 5.6, 90.2, 0.2, 0.0, 1.9, 52.8, 45.9, 1.3 -1,1,a-cure-i1,2021-22,0.0,14.299999999999997,Ashburnham-Westminster - Overlook Middle School,06100305, 1.6, 0.7, 7.8, 85.7, 0.0, 0.0, 4.2, 51.7, 47.8, 0.5 -1,1,a-cure-i1,2021-22,0.0,11.099999999999994,Ashburnham-Westminster - Westminster Elementary,06100005, 1.3, 0.5, 7.4, 88.9, 0.0, 0.0, 1.9, 49.1, 50.7, 0.3 -1,1,a-cure-i1,2021-22,3.6,34.400000000000006,Ashland - Ashland High,00140505, 2.2, 14.2, 15.0, 65.6, 0.5, 0.0, 2.5, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,4.4,37.6,Ashland - Ashland Middle,00140405, 2.9, 12.8, 18.2, 62.4, 0.7, 0.0, 3.0, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,4.8,42.0,Ashland - David Mindess,00140015, 3.5, 16.5, 17.8, 58.0, 0.2, 0.2, 3.9, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,2.3,47.3,Ashland - Henry E Warren Elementary,00140010, 2.6, 24.0, 16.9, 52.7, 0.2, 0.0, 3.5, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,53.2,Ashland - William Pittaway Elementary,00140005, 2.6, 37.7, 6.5, 46.8, 0.0, 0.0, 6.5, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2021-22,2.4,27.599999999999994,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 1.9, 0.5, 23.0, 72.4, 0.1, 0.0, 2.0, 57.0, 42.0, 1.1 -1,1,a-cure-i1,2021-22,0.0,19.700000000000003,Athol-Royalston - Athol Community Elementary School,06150020, 1.7, 1.5, 12.8, 80.3, 0.0, 0.0, 3.6, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.099999999999994,Athol-Royalston - Athol High,06150505, 2.7, 1.9, 17.0, 74.9, 0.3, 0.0, 3.2, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.5,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.9, 1.1, 12.3, 81.5, 0.0, 0.0, 4.1, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,5.599999999999994,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 4.2, 94.4, 0.0, 0.0, 1.4, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2021-22,4.8,28.299999999999997,Atlantis Charter (District) - Atlantis Charter School,04910550, 6.2, 2.0, 15.5, 71.7, 0.1, 0.1, 4.4, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2021-22,4.8,29.5,Attleboro - A. Irvin Studley Elementary School,00160001, 5.3, 3.8, 14.7, 70.5, 0.0, 0.3, 5.3, 50.1, 49.9, 0.0 -2.682352941176471,2.68,a-cure-i1,2021-22,5.7,34.0,Attleboro - Attleboro Community Academy,00160515, 6.0, 4.0, 20.0, 66.0, 0.0, 0.0, 4.0, 56.0, 42.0, 2.0 -5.741176470588235,5,a-cure-i1,2021-22,12.2,34.0,Attleboro - Attleboro High,00160505, 7.5, 4.8, 16.4, 66.0, 0.3, 0.1, 4.9, 54.7, 45.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,38.0,Attleboro - Attleboro Virtual Academy,00160705, 8.0, 12.0, 14.0, 62.0, 0.0, 0.0, 4.0, 58.0, 42.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,38.0,Attleboro - Cyril K. Brennan Middle School,00160315, 6.8, 3.3, 20.0, 62.0, 0.2, 0.0, 7.8, 49.8, 50.1, 0.2 -1,1,a-cure-i1,2021-22,0.0,30.599999999999994,Attleboro - Early Learning Center,00160008, 10.6, 6.1, 8.9, 69.4, 0.6, 0.0, 4.4, 58.9, 41.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,34.8,Attleboro - Hill-Roberts Elementary School,00160045, 8.2, 6.2, 14.7, 65.2, 0.2, 0.0, 5.5, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2021-22,4.1,36.9,Attleboro - Hyman Fine Elementary School,00160040, 5.9, 3.0, 19.1, 63.1, 0.0, 0.0, 8.9, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,3.4,40.0,Attleboro - Peter Thacher Elementary School,00160050, 12.1, 5.8, 15.6, 60.0, 0.4, 0.0, 6.0, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,34.400000000000006,Attleboro - Robert J. Coelho Middle School,00160305, 9.6, 5.3, 12.1, 65.6, 0.5, 0.2, 6.6, 55.3, 44.5, 0.2 -1,1,a-cure-i1,2021-22,0.0,35.7,Attleboro - Thomas Willett Elementary School,00160035, 8.0, 3.0, 17.6, 64.3, 0.0, 0.0, 7.1, 49.7, 50.3, 0.0 -2.8764044943820233,2.88,a-cure-i1,2021-22,6.4,35.599999999999994,Attleboro - Wamsutta Middle School,00160320, 6.7, 4.8, 15.1, 64.4, 0.0, 0.0, 9.0, 50.4, 49.4, 0.2 -5.187214611872145,5,a-cure-i1,2021-22,7.1,21.900000000000006,Auburn - Auburn Middle,00170305, 3.4, 4.0, 11.4, 78.1, 0.0, 0.0, 3.1, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,1.7,22.900000000000006,Auburn - Auburn Senior High,00170505, 3.5, 5.4, 10.5, 77.1, 0.0, 0.1, 3.5, 50.5, 49.2, 0.4 -1,1,a-cure-i1,2021-22,0.0,23.400000000000006,Auburn - Bryn Mawr,00170010, 1.1, 3.8, 13.4, 76.6, 0.8, 0.0, 4.2, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.5,Auburn - Pakachoag School,00170025, 0.8, 3.9, 9.4, 80.5, 0.0, 0.0, 5.5, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,21.599999999999994,Auburn - Swanson Road Intermediate School,00170030, 2.1, 5.3, 10.9, 78.4, 0.0, 0.0, 3.3, 53.4, 46.6, 0.0 -5.216216216216216,5,a-cure-i1,2021-22,19.3,59.2,Avon - Avon Middle High School,00180510, 34.2, 5.1, 12.3, 40.8, 1.3, 0.0, 6.3, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,4.1,53.6,Avon - Ralph D Butler,00180010, 28.8, 4.3, 11.8, 46.4, 0.0, 0.0, 8.8, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.0,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 3.8, 2.4, 12.2, 75.0, 1.9, 0.8, 3.8, 52.4, 47.6, 0.0 -4.942084942084941,4.94,a-cure-i1,2021-22,8.0,25.900000000000006,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 5.1, 3.1, 15.1, 74.1, 0.3, 0.3, 2.1, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,4.5,18.200000000000003,Ayer Shirley School District - Lura A. White Elementary School,06160001, 1.2, 1.5, 8.0, 81.8, 0.9, 0.3, 6.2, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,32.2,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 6.5, 5.9, 13.1, 67.8, 0.4, 0.0, 6.3, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,57.9,Barnstable - Barnstable Community Innovation School,00200012, 9.9, 3.4, 37.0, 42.1, 1.0, 0.0, 6.5, 51.7, 47.9, 0.3 -2.219895287958115,2.22,a-cure-i1,2021-22,5.3,38.2,Barnstable - Barnstable High,00200505, 9.6, 2.0, 20.6, 61.8, 0.5, 0.2, 5.3, 49.8, 50.1, 0.1 -1,1,a-cure-i1,2021-22,2.2,42.4,Barnstable - Barnstable Intermediate School,00200315, 9.4, 2.1, 24.0, 57.6, 0.4, 0.0, 6.5, 53.5, 45.9, 0.6 -2.5569007263922523,2.56,a-cure-i1,2021-22,6.6000000000000005,41.3,Barnstable - Barnstable United Elementary School,00200050, 8.1, 2.4, 22.3, 58.7, 0.1, 0.0, 8.3, 50.6, 49.2, 0.3 -1,1,a-cure-i1,2021-22,0.0,36.0,Barnstable - Centerville Elementary,00200010, 6.1, 0.8, 17.4, 64.0, 0.0, 0.0, 11.7, 53.0, 47.0, 0.0 -4.342298288508557,4.34,a-cure-i1,2021-22,11.1,40.9,Barnstable - Enoch Cobb Early Learning Center,00200001, 10.7, 2.7, 15.4, 59.1, 0.0, 0.0, 12.1, 64.4, 35.6, 0.0 -1.8929577464788734,1.89,a-cure-i1,2021-22,8.4,71.0,Barnstable - Hyannis West Elementary,00200025, 14.5, 0.7, 44.1, 29.0, 0.3, 0.0, 11.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.599999999999994,Barnstable - West Barnstable Elementary,00200005, 2.9, 3.3, 17.4, 66.4, 0.0, 0.0, 10.0, 57.3, 42.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.900000000000006,Barnstable - West Villages Elementary School,00200045, 3.5, 1.3, 10.6, 73.1, 0.0, 0.0, 11.4, 51.1, 48.9, 0.0 -6.071278825995807,5,a-cure-i1,2021-22,36.2,95.4,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 29.8, 0.7, 63.6, 4.6, 0.0, 0.4, 0.9, 54.8, 45.2, 0.0 -3.088471849865952,3.09,a-cure-i1,2021-22,7.2,37.3,Bedford - Bedford High,00230505, 6.4, 16.8, 9.8, 62.7, 0.0, 0.0, 4.4, 51.7, 48.1, 0.2 -1,1,a-cure-i1,2021-22,0.9,37.2,Bedford - John Glenn Middle,00230305, 6.7, 20.2, 5.2, 62.8, 0.0, 0.0, 5.1, 50.7, 49.2, 0.2 -1.9675174013921113,1.97,a-cure-i1,2021-22,5.3,43.1,Bedford - Lt Elezer Davis,00230010, 5.0, 24.4, 6.1, 56.9, 0.0, 0.0, 7.7, 56.1, 43.9, 0.0 -3.011764705882353,3.01,a-cure-i1,2021-22,8.0,42.5,Bedford - Lt Job Lane School,00230012, 7.0, 22.1, 5.2, 57.5, 0.0, 0.0, 8.2, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,2.1,10.599999999999994,Belchertown - Belchertown High,00240505, 2.0, 1.5, 3.8, 89.4, 0.2, 0.5, 2.6, 48.2, 50.8, 1.1 -1,1,a-cure-i1,2021-22,0.0,13.700000000000003,Belchertown - Chestnut Hill Community School,00240006, 1.0, 1.2, 7.5, 86.3, 0.4, 0.0, 3.5, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.099999999999994,Belchertown - Cold Spring,00240005, 1.5, 1.0, 8.8, 83.9, 0.0, 0.0, 4.9, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.0,Belchertown - Jabish Middle School,00240025, 1.5, 0.0, 7.6, 86.0, 0.6, 0.0, 4.4, 52.0, 47.4, 0.6 -1,1,a-cure-i1,2021-22,0.0,16.599999999999994,Belchertown - Swift River Elementary,00240018, 0.2, 1.3, 11.2, 83.4, 0.0, 0.0, 3.8, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.299999999999997,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 4.5, 8.0, 80.7, 0.0, 0.0, 6.8, 44.3, 55.7, 0.0 -1,1,a-cure-i1,2021-22,3.4,16.700000000000003,Bellingham - Bellingham High School,00250505, 2.0, 3.2, 8.5, 83.3, 0.0, 0.0, 3.0, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.900000000000006,Bellingham - Bellingham Memorial School,00250315, 1.7, 2.2, 8.0, 85.1, 0.2, 0.8, 2.0, 52.7, 47.2, 0.2 -1,1,a-cure-i1,2021-22,0.0,23.5,Bellingham - Joseph F DiPietro Elementary School,00250020, 2.4, 2.4, 14.3, 76.5, 0.0, 0.0, 4.4, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.5,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 9.5, 90.5, 0.0, 0.0, 0.0, 38.1, 61.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,21.299999999999997,Bellingham - Stall Brook,00250025, 1.7, 0.9, 13.6, 78.7, 0.0, 0.4, 4.7, 49.4, 50.6, 0.0 -5.090909090909091,5,a-cure-i1,2021-22,11.200000000000001,35.2,Belmont - Belmont High,00260505, 4.0, 19.1, 5.9, 64.8, 0.1, 0.0, 6.2, 49.0, 51.0, 0.0 -3.0730688935281836,3.07,a-cure-i1,2021-22,9.2,47.9,Belmont - Daniel Butler,00260015, 1.5, 28.0, 6.3, 52.1, 0.0, 0.0, 12.0, 49.7, 50.0, 0.3 -3.903485254691689,3.9,a-cure-i1,2021-22,9.1,37.3,Belmont - Mary Lee Burbank,00260010, 5.1, 24.0, 1.7, 62.7, 0.0, 0.0, 6.5, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,34.2,Belmont - Roger E Wellington,00260035, 5.6, 15.6, 4.3, 65.8, 0.0, 0.0, 8.8, 50.7, 49.1, 0.2 -1,1,a-cure-i1,2021-22,3.5,43.5,Belmont - Winn Brook,00260005, 1.7, 27.8, 5.2, 56.5, 0.0, 0.0, 8.8, 45.6, 54.4, 0.0 -6.057441253263708,5,a-cure-i1,2021-22,14.5,38.3,Belmont - Winthrop L Chenery Middle,00260305, 3.5, 21.4, 4.2, 61.7, 0.2, 0.2, 8.9, 50.4, 49.6, 0.0 -8.742268041237113,5,a-cure-i1,2021-22,53.0,97.0,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 80.5, 1.8, 8.8, 3.0, 0.0, 0.0, 5.8, 49.8, 49.8, 0.3 -1,1,a-cure-i1,2021-22,2.1,31.099999999999994,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 2.8, 18.8, 4.4, 68.9, 0.4, 0.2, 4.4, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,2.9,9.5,Berkley - Berkley Community School,00270010, 1.1, 0.4, 2.6, 90.5, 0.2, 0.2, 5.0, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.099999999999994,Berkley - Berkley Middle School,00270305, 0.5, 0.5, 1.7, 92.9, 0.0, 0.0, 4.4, 50.2, 49.8, 0.0 -7.384615384615385,5,a-cure-i1,2021-22,15.0,32.5,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 10.7, 2.2, 14.2, 67.5, 0.0, 0.0, 5.5, 52.7, 44.5, 2.7 -5.743589743589744,5,a-cure-i1,2021-22,7.0,19.5,Berkshire Hills - Monument Mt Regional High,06180505, 2.0, 2.1, 11.1, 80.5, 0.4, 0.4, 3.5, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,3.0,29.400000000000006,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 2.4, 3.1, 13.5, 70.6, 0.0, 0.0, 10.4, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2021-22,2.3,23.799999999999997,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 1.1, 2.6, 14.0, 76.2, 0.3, 0.0, 5.7, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.700000000000003,Berlin-Boylston - Berlin Memorial School,06200005, 0.9, 1.9, 8.3, 84.3, 1.4, 0.0, 3.2, 49.1, 50.9, 0.0 -4.59668508287293,4.6,a-cure-i1,2021-22,5.2,18.099999999999994,Berlin-Boylston - Boylston Elementary School,06200010, 1.3, 4.9, 6.6, 81.9, 0.0, 0.0, 5.3, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2021-22,2.2,18.400000000000006,Berlin-Boylston - Tahanto Regional High,06200505, 1.5, 5.8, 7.5, 81.6, 0.2, 0.2, 3.2, 48.6, 50.7, 0.8 -1,1,a-cure-i1,2021-22,0.0,17.299999999999997,Beverly - Ayers/Ryal Side School,00300055, 2.6, 1.8, 9.9, 82.7, 0.0, 0.0, 3.1, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,3.8000000000000003,26.0,Beverly - Beverly High,00300505, 3.5, 2.9, 16.3, 74.0, 0.1, 0.1, 3.2, 52.0, 47.7, 0.2 -1,1,a-cure-i1,2021-22,2.4,26.599999999999994,Beverly - Beverly Middle School,00300305, 3.6, 1.8, 16.5, 73.4, 0.1, 0.1, 4.6, 51.1, 48.8, 0.1 -1,1,a-cure-i1,2021-22,0.0,27.700000000000003,Beverly - Centerville Elementary,00300010, 5.5, 1.4, 13.4, 72.3, 0.0, 0.0, 7.5, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.299999999999997,Beverly - Cove Elementary,00300015, 3.1, 1.0, 17.1, 73.7, 0.2, 0.0, 4.8, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.700000000000003,Beverly - Hannah Elementary,00300033, 4.1, 4.4, 12.0, 74.3, 0.0, 0.0, 5.3, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,27.599999999999994,Beverly - McKeown School,00300002, 8.1, 4.9, 9.8, 72.4, 0.0, 0.0, 4.9, 63.4, 36.6, 0.0 -1,1,a-cure-i1,2021-22,4.2,20.200000000000003,Beverly - North Beverly Elementary,00300040, 2.9, 2.0, 11.6, 79.8, 0.0, 0.0, 3.8, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2021-22,2.6,26.599999999999994,Billerica - Billerica Memorial High School,00310505, 6.5, 9.8, 7.9, 73.4, 0.1, 0.2, 2.1, 50.5, 49.4, 0.1 -1,1,a-cure-i1,2021-22,0.0,27.5,Billerica - Frederick J Dutile,00310007, 4.2, 13.7, 6.1, 72.5, 0.0, 0.0, 3.4, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.799999999999997,Billerica - Hajjar Elementary,00310026, 3.6, 11.5, 13.7, 68.2, 0.0, 0.0, 3.0, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.700000000000003,Billerica - John F Kennedy,00310012, 1.6, 5.3, 6.0, 83.3, 0.0, 0.0, 3.8, 44.3, 55.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.799999999999997,Billerica - Locke Middle,00310310, 3.2, 7.9, 7.8, 76.2, 0.0, 0.0, 4.9, 50.5, 49.1, 0.4 -1,1,a-cure-i1,2021-22,2.4,30.900000000000006,Billerica - Marshall Middle School,00310305, 6.7, 8.7, 12.4, 69.1, 0.2, 0.0, 3.0, 52.5, 47.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,33.3,Billerica - Parker,00310015, 8.5, 13.3, 7.0, 66.7, 0.2, 0.0, 4.1, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.900000000000006,Billerica - Thomas Ditson,00310005, 1.9, 10.3, 9.0, 74.1, 0.0, 0.0, 4.7, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2021-22,2.0,14.5,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 1.4, 2.0, 8.9, 85.5, 0.0, 0.1, 2.1, 50.6, 49.1, 0.3 -1,1,a-cure-i1,2021-22,0.0,18.099999999999994,Blackstone-Millville - A F Maloney,06220015, 1.7, 0.0, 11.1, 81.9, 0.0, 0.0, 5.2, 51.3, 48.7, 0.0 -9.28671328671329,5,a-cure-i1,2021-22,8.3,14.299999999999997,Blackstone-Millville - Blackstone Millville RHS,06220505, 1.9, 1.2, 6.8, 85.7, 0.0, 0.0, 4.4, 50.1, 49.2, 0.7 -11.812080536912747,5,a-cure-i1,2021-22,11.0,14.900000000000006,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.0, 0.8, 8.6, 85.1, 0.0, 0.0, 4.6, 55.9, 43.5, 0.5 -1,1,a-cure-i1,2021-22,0.0,19.599999999999994,Blackstone-Millville - John F Kennedy Elementary,06220008, 2.0, 2.0, 10.8, 80.4, 0.0, 0.0, 4.9, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.200000000000003,Blackstone-Millville - Millville Elementary,06220010, 2.8, 1.8, 3.9, 88.8, 0.0, 0.0, 2.8, 48.4, 51.6, 0.0 -2.9437229437229435,2.94,a-cure-i1,2021-22,8.5,46.2,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 20.1, 2.2, 16.6, 53.8, 0.5, 0.0, 6.9, 52.6, 47.4, 0.0 -4.682926829268292,4.68,a-cure-i1,2021-22,24.0,82.0,Boston - Adams Elementary School,00350302, 2.4, 1.6, 75.9, 18.0, 0.0, 0.0, 2.0, 47.8, 52.2, 0.0 -5.378917378917379,5,a-cure-i1,2021-22,23.6,70.2,Boston - Alighieri Dante Montessori School,00350066, 1.9, 3.8, 54.8, 29.8, 0.0, 0.0, 9.6, 49.0, 51.0, 0.0 -10.193814432989692,5,a-cure-i1,2021-22,61.800000000000004,97.0,Boston - Another Course To College,00350541, 49.8, 0.0, 46.3, 3.0, 0.0, 0.0, 0.9, 60.6, 39.0, 0.4 -9.453646477132262,5,a-cure-i1,2021-22,47.8,80.9,Boston - Baldwin Early Learning Pilot Academy,00350003, 11.3, 27.7, 29.1, 19.1, 0.7, 0.0, 12.1, 51.1, 48.9, 0.0 -5.6064,5,a-cure-i1,2021-22,21.9,62.5,Boston - Bates Elementary School,00350278, 24.5, 2.3, 31.0, 37.5, 0.5, 0.0, 4.2, 55.1, 44.9, 0.0 -3.76036866359447,3.76,a-cure-i1,2021-22,15.299999999999999,65.1,Boston - Beethoven Elementary School,00350021, 21.6, 3.9, 32.2, 34.9, 0.0, 0.0, 7.5, 57.6, 42.4, 0.0 -6.359832635983264,5,a-cure-i1,2021-22,38.0,95.6,Boston - Blackstone Elementary School,00350390, 25.1, 3.7, 65.1, 4.4, 0.0, 0.0, 1.8, 52.1, 47.9, 0.0 -11.241935483870968,5,a-cure-i1,2021-22,69.7,99.2,Boston - Boston Adult Tech Academy,00350548, 30.8, 2.5, 64.2, 0.8, 0.0, 0.0, 1.7, 48.3, 51.7, 0.0 -9.582222222222223,5,a-cure-i1,2021-22,53.900000000000006,90.0,Boston - Boston Arts Academy,00350546, 40.2, 1.4, 44.3, 10.0, 0.0, 0.0, 4.1, 30.6, 69.0, 0.4 -4.115812917594655,4.12,a-cure-i1,2021-22,23.1,89.8,Boston - Boston Collaborative High School,00350755, 36.7, 2.0, 46.9, 10.2, 1.0, 0.0, 3.1, 51.0, 49.0, 0.0 -7.9263050153531225,5,a-cure-i1,2021-22,48.400000000000006,97.7,Boston - Boston Community Leadership Academy,00350558, 33.9, 3.0, 58.7, 2.3, 0.3, 0.3, 1.5, 51.3, 48.7, 0.0 -7.290519877675842,5,a-cure-i1,2021-22,44.7,98.1,Boston - Boston International High School & Newcomers Academy,00350507, 31.1, 6.9, 59.1, 1.9, 0.2, 0.2, 0.5, 59.4, 40.6, 0.0 -9.415730337078653,5,a-cure-i1,2021-22,41.900000000000006,71.2,Boston - Boston Latin Academy,00350545, 23.7, 17.1, 26.4, 28.8, 0.1, 0.1, 3.8, 42.6, 57.3, 0.2 -8.387543252595155,5,a-cure-i1,2021-22,30.299999999999997,57.8,Boston - Boston Latin School,00350560, 9.7, 28.6, 14.2, 42.2, 0.0, 0.2, 5.1, 46.5, 53.2, 0.3 -11.432024169184288,5,a-cure-i1,2021-22,47.3,66.2,Boston - Boston Teachers Union K-8 Pilot,00350012, 24.5, 1.4, 32.8, 33.8, 0.3, 0.0, 7.2, 52.4, 47.6, 0.0 -3.2704402515723268,3.27,a-cure-i1,2021-22,13.0,63.6,Boston - Bradley Elementary School,00350215, 7.2, 6.9, 46.0, 36.4, 0.0, 0.7, 2.7, 50.9, 49.1, 0.0 -6.2594142259414225,5,a-cure-i1,2021-22,37.4,95.6,Boston - Brighton High School,00350505, 32.2, 4.7, 56.7, 4.4, 0.3, 0.3, 1.4, 54.4, 45.6, 0.0 -8.460732984293193,5,a-cure-i1,2021-22,50.5,95.5,Boston - Burke High School,00350525, 54.2, 0.9, 37.3, 4.5, 0.3, 0.6, 2.1, 59.1, 40.6, 0.3 -1,1,a-cure-i1,2021-22,0.0,91.7,Boston - Carter School,00350036, 50.0, 8.3, 33.3, 8.3, 0.0, 0.0, 0.0, 54.2, 45.8, 0.0 -5.011640211640211,5,a-cure-i1,2021-22,29.599999999999998,94.5,Boston - Channing Elementary School,00350360, 48.8, 1.5, 41.8, 5.5, 0.0, 0.0, 2.5, 60.2, 39.8, 0.0 -6.3228511530398315,5,a-cure-i1,2021-22,37.699999999999996,95.4,Boston - Charlestown High School,00350515, 26.7, 6.1, 60.3, 4.6, 0.1, 0.0, 2.2, 55.3, 44.7, 0.0 -5.283333333333334,5,a-cure-i1,2021-22,31.700000000000003,96.0,Boston - Chittick Elementary School,00350154, 62.1, 0.0, 29.9, 4.0, 0.4, 0.4, 3.1, 54.0, 46.0, 0.0 -7.087885985748218,5,a-cure-i1,2021-22,37.3,84.2,Boston - Clap Elementary School,00350298, 35.0, 5.8, 40.0, 15.8, 0.0, 0.0, 3.3, 56.7, 43.3, 0.0 -12.4,5,a-cure-i1,2021-22,77.5,100.0,Boston - Community Academy,00350518, 52.9, 2.9, 44.1, 0.0, 0.0, 0.0, 0.0, 64.7, 35.3, 0.0 -7.951417004048582,5,a-cure-i1,2021-22,49.099999999999994,98.8,Boston - Community Academy of Science and Health,00350581, 54.7, 5.7, 33.2, 1.2, 0.3, 0.0, 4.8, 54.4, 45.6, 0.0 -7.961259079903147,5,a-cure-i1,2021-22,41.099999999999994,82.6,Boston - Condon K-8 School,00350146, 31.5, 6.2, 39.2, 17.4, 0.5, 0.3, 5.0, 52.3, 47.7, 0.0 -7.756962025316455,5,a-cure-i1,2021-22,38.3,79.0,Boston - Conley Elementary School,00350122, 32.4, 1.1, 42.0, 21.0, 0.0, 0.6, 2.8, 55.1, 44.9, 0.0 -8.251428571428571,5,a-cure-i1,2021-22,36.1,70.0,Boston - Curley K-8 School,00350020, 17.2, 2.6, 42.6, 30.0, 0.1, 0.0, 7.6, 53.8, 46.2, 0.0 -9.329255861365954,5,a-cure-i1,2021-22,57.2,98.1,Boston - Dearborn 6-12 STEM Academy,00350074, 58.7, 1.0, 33.4, 1.9, 0.2, 0.9, 4.0, 50.0, 49.7, 0.3 -4.928492849284928,4.93,a-cure-i1,2021-22,28.0,90.9,Boston - Dever Elementary School,00350268, 22.8, 3.0, 62.9, 9.1, 0.3, 0.3, 1.6, 54.6, 45.4, 0.0 -13.555869872701555,5,a-cure-i1,2021-22,59.9,70.7,Boston - East Boston Early Education Center,00350009, 6.9, 1.1, 59.6, 29.3, 0.0, 0.0, 3.2, 50.5, 49.5, 0.0 -5.810055865921788,5,a-cure-i1,2021-22,32.5,89.5,Boston - East Boston High School,00350530, 5.4, 1.6, 81.5, 10.5, 0.0, 0.1, 0.9, 57.8, 42.2, 0.0 -7.158878504672899,5,a-cure-i1,2021-22,38.300000000000004,85.6,Boston - Edison K-8 School,00350375, 13.0, 12.1, 55.8, 14.4, 0.8, 0.2, 3.7, 53.9, 46.1, 0.0 -19.843342036553526,5,a-cure-i1,2021-22,47.5,38.3,Boston - Eliot K-8 Innovation School,00350096, 5.3, 11.8, 14.6, 61.7, 0.1, 0.3, 6.3, 51.3, 48.7, 0.0 -12.409836065573769,5,a-cure-i1,2021-22,75.69999999999999,97.6,Boston - Ellis Elementary School,00350072, 35.7, 0.3, 59.8, 2.4, 0.0, 0.0, 1.8, 47.7, 52.3, 0.0 -6.066666666666666,5,a-cure-i1,2021-22,36.4,96.0,Boston - Ellison-Parks Early Education School,00350008, 49.1, 0.6, 43.4, 4.0, 0.0, 0.0, 2.9, 50.3, 49.7, 0.0 -7.420289855072465,5,a-cure-i1,2021-22,44.800000000000004,96.6,Boston - English High School,00350535, 36.8, 0.8, 55.8, 3.4, 0.4, 0.2, 2.7, 53.1, 46.9, 0.0 -7.116939890710384,5,a-cure-i1,2021-22,40.70000000000001,91.5,Boston - Everett Elementary School,00350088, 42.6, 15.9, 29.6, 8.5, 1.9, 0.4, 1.1, 53.0, 47.0, 0.0 -10.713501646542262,5,a-cure-i1,2021-22,61.0,91.1,Boston - Excel High School,00350522, 30.1, 14.8, 42.4, 8.9, 0.5, 0.2, 3.2, 56.7, 42.8, 0.5 -8.141519250780439,5,a-cure-i1,2021-22,48.900000000000006,96.1,Boston - Fenway High School,00350540, 29.2, 3.1, 60.9, 3.9, 0.3, 0.0, 2.6, 49.5, 50.5, 0.0 -8.804060913705584,5,a-cure-i1,2021-22,54.2,98.5,Boston - Frederick Pilot Middle School,00350383, 37.1, 10.6, 47.6, 1.5, 0.3, 0.0, 2.9, 54.1, 45.9, 0.0 -7.264472190692396,5,a-cure-i1,2021-22,40.0,88.1,Boston - Gardner Pilot Academy,00350326, 10.6, 6.9, 65.3, 11.9, 0.0, 0.0, 5.3, 50.1, 48.8, 1.1 -14.39344262295082,5,a-cure-i1,2021-22,87.8,97.6,Boston - Greater Egleston High School,00350543, 41.0, 1.2, 50.6, 2.4, 1.2, 0.0, 3.6, 43.4, 56.6, 0.0 -7.474216380182001,5,a-cure-i1,2021-22,46.199999999999996,98.9,Boston - Greenwood Sarah K-8 School,00350308, 12.4, 0.3, 85.4, 1.1, 0.0, 0.0, 0.8, 49.0, 51.0, 0.0 -8.117249154453212,5,a-cure-i1,2021-22,45.0,88.7,Boston - Grew Elementary School,00350135, 40.9, 0.0, 37.9, 11.3, 0.5, 0.0, 9.4, 59.6, 40.4, 0.0 -5.897810218978101,5,a-cure-i1,2021-22,30.299999999999997,82.2,Boston - Guild Elementary School,00350062, 2.9, 0.8, 78.1, 17.8, 0.0, 0.0, 0.4, 52.1, 47.9, 0.0 -12.530337078651685,5,a-cure-i1,2021-22,69.7,89.0,Boston - Hale Elementary School,00350243, 48.3, 5.2, 29.7, 11.0, 0.0, 0.0, 5.8, 48.3, 51.7, 0.0 -9.62849872773537,5,a-cure-i1,2021-22,47.3,78.6,Boston - Haley Pilot School,00350077, 38.4, 1.1, 33.7, 21.4, 0.0, 0.0, 5.3, 52.6, 47.4, 0.0 -5.30298719772404,5,a-cure-i1,2021-22,23.299999999999997,70.3,Boston - Harvard-Kent Elementary School,00350200, 17.6, 19.9, 28.8, 29.7, 0.0, 0.0, 4.0, 55.0, 45.0, 0.0 -12.180104712041885,5,a-cure-i1,2021-22,72.7,95.5,Boston - Haynes Early Education Center,00350010, 42.7, 1.7, 44.4, 4.5, 1.1, 0.0, 5.6, 54.5, 45.5, 0.0 -8.185538881309686,5,a-cure-i1,2021-22,37.5,73.3,Boston - Henderson K-12 Inclusion School Lower,00350266, 31.7, 12.4, 18.3, 26.7, 0.0, 1.0, 9.9, 53.0, 47.0, 0.0 -6.862650602409639,5,a-cure-i1,2021-22,35.6,83.0,Boston - Henderson K-12 Inclusion School Upper,00350426, 44.0, 7.7, 26.3, 17.0, 0.7, 0.3, 4.0, 52.8, 46.9, 0.3 -6.141078838174273,5,a-cure-i1,2021-22,37.0,96.4,Boston - Hennigan K-8 School,00350153, 25.2, 3.8, 66.5, 3.6, 0.0, 0.2, 0.8, 49.4, 50.6, 0.0 -11.436123348017622,5,a-cure-i1,2021-22,64.9,90.8,Boston - Hernandez K-8 School,00350691, 3.3, 0.0, 84.4, 9.2, 0.0, 0.0, 3.1, 47.4, 52.6, 0.0 -7.709677419354838,5,a-cure-i1,2021-22,47.8,99.2,Boston - Higginson Inclusion K0-2 School,00350015, 38.7, 0.8, 57.1, 0.8, 0.8, 0.0, 1.7, 52.1, 47.9, 0.0 -8.390243902439023,5,a-cure-i1,2021-22,51.599999999999994,98.4,Boston - Higginson-Lewis K-8 School,00350377, 39.9, 1.6, 52.1, 1.6, 0.0, 0.0, 4.8, 51.1, 48.9, 0.0 -5.606557377049181,5,a-cure-i1,2021-22,34.2,97.6,Boston - Holmes Elementary School,00350138, 58.3, 1.2, 34.3, 2.4, 0.0, 0.0, 3.9, 59.4, 40.6, 0.0 -1,1,a-cure-i1,2021-22,2.8,87.1,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 31.4, 5.7, 48.6, 12.9, 0.0, 0.0, 1.4, 67.1, 32.9, 0.0 -13.300492610837438,5,a-cure-i1,2021-22,67.5,81.2,Boston - Hurley K-8 School,00350182, 3.7, 1.7, 72.4, 18.8, 0.3, 0.0, 3.1, 47.3, 52.4, 0.3 -7.795291709314226,5,a-cure-i1,2021-22,47.599999999999994,97.7,Boston - Irving Middle School,00350445, 42.1, 1.5, 49.6, 2.3, 0.0, 0.0, 4.5, 51.1, 48.9, 0.0 -4.695837780149413,4.7,a-cure-i1,2021-22,27.5,93.7,Boston - Jackson-Mann K-8 School,00350013, 27.3, 11.1, 51.4, 6.3, 1.1, 0.0, 2.8, 60.5, 39.5, 0.0 -4.805790108564535,4.81,a-cure-i1,2021-22,24.9,82.9,Boston - Kennedy John F Elementary School,00350166, 14.7, 2.1, 61.4, 17.1, 0.3, 0.0, 4.5, 52.1, 47.9, 0.0 -3.9529411764705884,3.95,a-cure-i1,2021-22,23.1,93.5,Boston - Kennedy Patrick J Elementary School,00350264, 2.3, 1.5, 88.9, 6.5, 0.0, 0.0, 0.8, 55.2, 44.8, 0.0 -7.017173051519155,5,a-cure-i1,2021-22,33.2,75.7,Boston - Kenny Elementary School,00350328, 32.3, 11.6, 26.1, 24.3, 0.0, 0.0, 5.6, 49.9, 50.1, 0.0 -7.147663551401869,5,a-cure-i1,2021-22,23.9,53.5,Boston - Kilmer K-8 School,00350190, 17.6, 7.9, 22.3, 46.5, 0.0, 0.0, 5.7, 54.5, 45.3, 0.2 -9.911794871794871,5,a-cure-i1,2021-22,60.4,97.5,Boston - King K-8 School,00350376, 54.8, 1.1, 38.3, 2.5, 1.1, 0.0, 2.2, 50.5, 49.5, 0.0 -4.988335100742312,4.99,a-cure-i1,2021-22,29.4,94.3,Boston - Lee Academy,00350001, 53.1, 2.9, 32.0, 5.7, 0.0, 0.0, 6.3, 53.7, 46.3, 0.0 -4.466666666666666,4.47,a-cure-i1,2021-22,26.799999999999997,96.0,Boston - Lee K-8 School,00350183, 52.8, 4.9, 33.1, 4.0, 0.5, 0.4, 4.2, 57.2, 42.8, 0.0 -10.368298368298369,5,a-cure-i1,2021-22,27.8,42.9,Boston - Lyndon K-8 School,00350262, 9.4, 3.7, 23.9, 57.1, 0.0, 0.2, 5.7, 52.0, 48.0, 0.0 -3.629072681704261,3.63,a-cure-i1,2021-22,18.1,79.8,Boston - Lyon High School,00350655, 21.7, 4.7, 45.7, 20.2, 0.0, 0.0, 7.8, 65.1, 34.9, 0.0 -6.366925064599483,5,a-cure-i1,2021-22,30.8,77.4,Boston - Lyon K-8 School,00350004, 25.6, 11.3, 29.3, 22.6, 0.0, 0.0, 11.3, 51.9, 48.1, 0.0 -7.736082474226804,5,a-cure-i1,2021-22,46.9,97.0,Boston - Madison Park Technical Vocational High School,00350537, 38.7, 1.3, 54.3, 3.0, 0.3, 0.4, 1.9, 59.6, 40.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,52.5,Boston - Manning Elementary School,00350184, 13.1, 3.8, 25.6, 47.5, 0.0, 0.0, 10.0, 50.6, 49.4, 0.0 -8.473420260782346,5,a-cure-i1,2021-22,52.8,99.7,Boston - Margarita Muniz Academy,00350549, 7.7, 0.0, 90.1, 0.3, 0.3, 0.0, 1.5, 47.7, 52.3, 0.0 -6.731501057082452,5,a-cure-i1,2021-22,39.8,94.6,Boston - Mario Umana Academy,00350656, 1.7, 1.7, 90.2, 5.4, 0.2, 0.0, 0.9, 52.4, 47.3, 0.3 -6.22875131164743,5,a-cure-i1,2021-22,37.1,95.3,Boston - Mason Elementary School,00350304, 51.8, 2.1, 36.3, 4.7, 0.0, 0.0, 5.2, 56.5, 43.0, 0.5 -10.148380355276906,5,a-cure-i1,2021-22,60.699999999999996,95.7,Boston - Mather Elementary School,00350227, 38.1, 30.4, 22.3, 4.3, 0.6, 0.2, 4.1, 48.5, 51.5, 0.0 -7.036045314109167,5,a-cure-i1,2021-22,42.7,97.1,Boston - Mattahunt Elementary School,00350016, 68.0, 0.9, 24.9, 2.9, 0.7, 0.0, 2.7, 58.0, 42.0, 0.0 -4.437569060773481,4.44,a-cure-i1,2021-22,25.1,90.5,Boston - McKay K-8 School,00350080, 2.5, 0.6, 86.2, 9.5, 0.0, 0.0, 1.3, 48.8, 51.2, 0.0 -6.4207119741100325,5,a-cure-i1,2021-22,37.2,92.7,Boston - McKinley Schools,00350363, 42.9, 2.3, 42.9, 7.3, 0.9, 0.0, 3.7, 79.9, 19.6, 0.5 -14.709677419354836,5,a-cure-i1,2021-22,62.699999999999996,68.2,Boston - Mendell Elementary School,00350100, 29.9, 3.1, 27.6, 31.8, 0.4, 0.0, 7.3, 54.0, 46.0, 0.0 -7.770961145194274,5,a-cure-i1,2021-22,47.5,97.8,Boston - Mildred Avenue K-8 School,00350378, 63.0, 1.1, 29.2, 2.2, 1.0, 0.0, 3.5, 52.6, 47.4, 0.0 -5.632776934749621,5,a-cure-i1,2021-22,23.200000000000003,65.9,Boston - Mission Hill K-8 School,00350382, 27.8, 1.8, 30.0, 34.1, 0.0, 0.4, 5.8, 56.1, 43.9, 0.0 -19.558573853989813,5,a-cure-i1,2021-22,72.0,58.9,Boston - Mozart Elementary School,00350237, 24.1, 3.2, 22.2, 41.1, 0.6, 0.0, 8.9, 57.0, 43.0, 0.0 -6.899889988998899,5,a-cure-i1,2021-22,39.199999999999996,90.9,Boston - Murphy K-8 School,00350240, 17.4, 53.1, 16.5, 9.1, 0.5, 0.2, 3.3, 52.4, 47.6, 0.0 -7.278756476683937,5,a-cure-i1,2021-22,43.9,96.5,Boston - New Mission High School,00350542, 51.0, 2.2, 40.5, 3.5, 0.2, 0.2, 2.4, 48.6, 51.4, 0.0 -10.319634703196346,5,a-cure-i1,2021-22,56.49999999999999,87.6,Boston - O'Bryant School of Math & Science,00350575, 30.9, 20.2, 34.3, 12.4, 0.1, 0.3, 1.9, 46.3, 53.6, 0.1 -5.240174672489084,5,a-cure-i1,2021-22,30.0,91.6,Boston - O'Donnell Elementary School,00350141, 1.1, 1.5, 88.1, 8.4, 0.0, 0.0, 0.8, 52.5, 47.5, 0.0 -6.2210386151797605,5,a-cure-i1,2021-22,29.2,75.1,Boston - Ohrenberger School,00350258, 30.7, 4.3, 36.1, 24.9, 0.2, 0.0, 3.7, 49.3, 50.7, 0.0 -4.1924257932446265,4.19,a-cure-i1,2021-22,25.6,97.7,Boston - Orchard Gardens K-8 School,00350257, 52.4, 1.0, 40.8, 2.3, 1.0, 0.5, 2.0, 52.0, 48.0, 0.0 -2.835192069392813,2.84,a-cure-i1,2021-22,14.3,80.7,Boston - Otis Elementary School,00350156, 4.7, 1.5, 71.8, 19.3, 0.2, 0.2, 2.2, 49.3, 50.7, 0.0 -7.754266211604094,5,a-cure-i1,2021-22,42.599999999999994,87.9,Boston - Perkins Elementary School,00350231, 41.6, 4.6, 36.4, 12.1, 0.6, 0.0, 4.6, 48.0, 52.0, 0.0 -6.383838383838384,5,a-cure-i1,2021-22,15.8,39.6,Boston - Perry K-8 School,00350255, 12.8, 4.8, 17.1, 60.4, 0.5, 0.0, 4.3, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,85.9,Boston - Philbrick Elementary School,00350172, 38.4, 2.0, 39.4, 14.1, 1.0, 0.0, 5.1, 44.4, 55.6, 0.0 -10.08813559322034,5,a-cure-i1,2021-22,55.800000000000004,88.5,Boston - Quincy Elementary School,00350286, 11.7, 61.9, 9.3, 11.5, 0.0, 0.0, 5.6, 49.2, 50.8, 0.0 -10.705636743215033,5,a-cure-i1,2021-22,64.10000000000001,95.8,Boston - Quincy Upper School,00350565, 19.5, 52.3, 21.0, 4.2, 0.2, 0.0, 2.9, 51.9, 48.1, 0.0 -2.7417840375586855,2.74,a-cure-i1,2021-22,14.6,85.2,Boston - Roosevelt K-8 School,00350116, 36.9, 4.7, 36.9, 14.8, 0.0, 0.2, 6.4, 53.2, 46.8, 0.0 -7.621451104100946,5,a-cure-i1,2021-22,45.3,95.1,Boston - Russell Elementary School,00350366, 27.3, 8.2, 56.8, 4.9, 0.3, 0.8, 1.6, 48.9, 51.1, 0.0 -5.512742099898063,5,a-cure-i1,2021-22,33.8,98.1,Boston - Shaw Elementary School,00350014, 63.6, 2.6, 27.9, 1.9, 1.9, 0.0, 1.9, 52.6, 47.4, 0.0 -6.338983050847457,5,a-cure-i1,2021-22,37.4,94.4,Boston - Snowden International High School,00350690, 32.0, 4.7, 55.5, 5.6, 0.2, 0.0, 2.1, 49.1, 50.9, 0.0 -9.809641532756487,5,a-cure-i1,2021-22,49.599999999999994,80.9,Boston - Sumner Elementary School,00350052, 16.4, 1.5, 58.3, 19.1, 0.0, 0.0, 4.7, 55.7, 44.3, 0.0 -12.206686930091184,5,a-cure-i1,2021-22,75.3,98.7,Boston - Taylor Elementary School,00350054, 75.5, 1.0, 19.5, 1.3, 0.7, 0.0, 2.0, 49.3, 50.7, 0.0 -6.367179487179487,5,a-cure-i1,2021-22,38.8,97.5,Boston - TechBoston Academy,00350657, 58.3, 1.6, 32.7, 2.5, 0.1, 0.2, 4.6, 59.1, 40.8, 0.1 -7.90204081632653,5,a-cure-i1,2021-22,48.4,98.0,Boston - Timilty Middle School,00350485, 34.1, 1.5, 59.0, 2.0, 0.0, 0.0, 3.4, 57.1, 42.4, 0.5 -8.751565762004175,5,a-cure-i1,2021-22,52.4,95.8,Boston - Tobin K-8 School,00350229, 30.4, 2.5, 60.1, 4.2, 0.5, 0.0, 2.2, 49.9, 50.1, 0.0 -8.509605662285136,5,a-cure-i1,2021-22,52.6,98.9,Boston - Trotter K-8 School,00350370, 56.4, 1.4, 38.3, 1.1, 0.0, 1.4, 1.4, 49.4, 50.6, 0.0 -6.267639902676399,5,a-cure-i1,2021-22,32.2,82.2,Boston - Tynan Elementary School,00350181, 37.9, 7.0, 32.7, 17.8, 0.0, 0.5, 4.2, 54.2, 45.8, 0.0 -4.865306122448979,4.87,a-cure-i1,2021-22,29.8,98.0,Boston - UP Academy Holland,00350167, 46.9, 2.0, 45.7, 2.0, 1.2, 0.2, 2.1, 48.7, 51.3, 0.0 -9.686274509803923,5,a-cure-i1,2021-22,24.700000000000003,40.8,Boston - Warren-Prescott K-8 School,00350346, 12.5, 3.1, 19.6, 59.2, 0.0, 0.0, 5.6, 53.7, 46.3, 0.0 -6.200445434298441,5,a-cure-i1,2021-22,34.8,89.8,Boston - West Zone Early Learning Center,00350006, 23.9, 11.4, 54.5, 10.2, 0.0, 0.0, 0.0, 51.1, 48.9, 0.0 -10.18585298196949,5,a-cure-i1,2021-22,45.900000000000006,72.1,Boston - Winship Elementary School,00350374, 12.8, 15.5, 37.0, 27.9, 0.8, 0.0, 6.0, 46.0, 54.0, 0.0 -7.168399168399168,5,a-cure-i1,2021-22,43.1,96.2,Boston - Winthrop Elementary School,00350180, 58.5, 1.9, 33.0, 3.8, 0.5, 0.5, 1.9, 40.1, 59.9, 0.0 -9.832492431886983,5,a-cure-i1,2021-22,60.9,99.1,Boston - Young Achievers K-8 School,00350380, 46.1, 0.4, 49.0, 0.9, 0.5, 0.4, 2.7, 56.0, 44.0, 0.0 -13.502572898799315,5,a-cure-i1,2021-22,49.2,58.3,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 33.9, 2.4, 18.5, 41.7, 0.0, 0.1, 3.3, 50.0, 49.9, 0.1 -9.586708203530634,5,a-cure-i1,2021-22,57.7,96.3,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 46.6, 1.4, 46.6, 3.7, 0.9, 0.0, 0.9, 45.1, 54.9, 0.0 -7.401709401709402,5,a-cure-i1,2021-22,43.3,93.6,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 43.8, 1.9, 44.4, 6.4, 0.4, 0.4, 2.7, 53.9, 46.1, 0.0 -5.549039433771486,5,a-cure-i1,2021-22,34.3,98.9,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 66.4, 0.4, 28.7, 1.1, 0.0, 0.1, 3.2, 50.0, 50.0, 0.0 -2.7433264887063653,2.74,a-cure-i1,2021-22,16.7,97.4,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 57.1, 0.1, 36.6, 2.6, 0.1, 0.1, 3.4, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2021-22,3.4,13.0,Bourne - Bourne High School,00360505, 1.3, 2.3, 3.6, 87.0, 1.5, 0.0, 4.3, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.5,Bourne - Bourne Intermediate School,00360030, 2.2, 2.2, 3.6, 88.5, 0.5, 0.0, 3.0, 48.2, 51.8, 0.0 -10.550724637681162,5,a-cure-i1,2021-22,9.1,13.799999999999997,Bourne - Bourne Middle School,00360325, 1.4, 2.0, 5.4, 86.2, 0.9, 0.0, 4.1, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.0,Bourne - Bournedale Elementary School,00360005, 0.8, 2.0, 5.3, 81.0, 0.3, 0.0, 10.6, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.799999999999997,Boxford - Harry Lee Cole,00380005, 0.3, 2.3, 4.3, 88.2, 0.0, 0.0, 4.9, 52.3, 47.7, 0.0 -10.624,5,a-cure-i1,2021-22,8.3,12.5,Boxford - Spofford Pond,00380013, 0.5, 3.1, 3.3, 87.5, 0.0, 0.0, 5.6, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,42.6,Braintree - Archie T Morrison,00400033, 8.3, 24.1, 5.3, 57.4, 0.3, 0.0, 4.6, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,4.1,36.3,Braintree - Braintree High,00400505, 5.9, 22.4, 6.1, 63.7, 0.1, 0.2, 1.6, 50.2, 49.7, 0.1 -1,1,a-cure-i1,2021-22,0.0,50.3,Braintree - Donald Ross,00400050, 10.6, 31.2, 5.5, 49.7, 1.0, 0.0, 2.0, 44.7, 55.3, 0.0 -1,1,a-cure-i1,2021-22,1.5,38.2,Braintree - East Middle School,00400305, 6.3, 22.3, 7.1, 61.8, 0.1, 0.1, 2.4, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.700000000000003,Braintree - Highlands,00400015, 1.0, 23.9, 3.0, 71.3, 0.0, 0.0, 0.7, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,39.7,Braintree - Hollis,00400005, 2.3, 27.8, 6.0, 60.3, 0.0, 0.0, 3.6, 57.3, 42.4, 0.3 -1,1,a-cure-i1,2021-22,0.0,42.4,Braintree - Liberty,00400025, 3.4, 30.3, 4.5, 57.6, 0.0, 0.8, 3.4, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,43.7,Braintree - Mary E Flaherty School,00400020, 3.3, 28.7, 4.0, 56.3, 0.7, 0.0, 7.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,50.8,Braintree - Monatiquot Kindergarten Center,00400009, 5.9, 29.5, 9.8, 49.2, 0.0, 0.0, 5.5, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.099999999999994,Braintree - South Middle School,00400310, 1.7, 25.8, 3.2, 66.9, 0.6, 0.2, 1.7, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.400000000000006,Brewster - Eddy Elementary,00410010, 2.8, 0.0, 9.4, 83.6, 0.0, 0.0, 4.2, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.200000000000003,Brewster - Stony Brook Elementary,00410005, 3.6, 1.8, 12.0, 73.8, 0.0, 0.0, 8.9, 51.1, 48.9, 0.0 -6.367010309278351,5,a-cure-i1,2021-22,38.6,97.0,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 64.9, 1.2, 28.0, 3.0, 0.0, 0.3, 2.7, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2021-22,3.5,22.299999999999997,Bridgewater-Raynham - Bridgewater Middle School,06250320, 11.4, 2.0, 4.5, 77.7, 0.0, 0.0, 4.5, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2021-22,0.6,19.0,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 8.5, 2.0, 2.6, 81.0, 0.1, 0.2, 5.6, 51.6, 48.3, 0.1 -1,1,a-cure-i1,2021-22,0.0,19.099999999999994,Bridgewater-Raynham - Laliberte Elementary School,06250050, 7.4, 3.3, 4.3, 80.9, 0.0, 0.0, 4.3, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.5,Bridgewater-Raynham - Merrill Elementary School,06250020, 8.6, 3.4, 6.4, 75.5, 0.0, 0.0, 6.1, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.299999999999997,Bridgewater-Raynham - Mitchell Elementary School,06250002, 9.0, 2.6, 8.2, 74.7, 0.0, 0.1, 5.5, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.299999999999997,Bridgewater-Raynham - Raynham Middle School,06250315, 9.5, 2.5, 2.4, 81.7, 0.1, 0.0, 3.8, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.099999999999994,Bridgewater-Raynham - Therapeutic Day School,06250415, 7.7, 0.0, 7.7, 76.9, 0.0, 0.0, 7.7, 69.2, 30.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.099999999999994,Bridgewater-Raynham - Williams Intermediate School,06250300, 8.4, 2.2, 3.8, 80.9, 0.1, 0.0, 4.6, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.700000000000003,Brimfield - Brimfield Elementary,00430005, 1.5, 1.5, 5.6, 90.3, 1.1, 0.0, 0.0, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2021-22,3.5,12.599999999999994,Bristol County Agricultural - Bristol County Agricultural High,09100705, 2.8, 0.2, 9.0, 87.4, 0.0, 0.2, 0.4, 28.3, 71.7, 0.0 -1,1,a-cure-i1,2021-22,4.800000000000001,14.799999999999997,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 3.7, 0.9, 6.2, 85.2, 0.3, 0.0, 3.8, 59.2, 40.8, 0.1 -1.737265415549598,1.74,a-cure-i1,2021-22,8.1,74.6,Brockton - Ashfield Middle School,00440421, 52.2, 3.6, 15.1, 25.4, 0.0, 0.4, 3.2, 56.3, 43.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,83.2,Brockton - Barrett Russell Early Childhood Center,00440008, 59.2, 0.0, 20.1, 16.8, 0.0, 0.5, 3.3, 58.2, 41.8, 0.0 -3.57124842370744,3.57,a-cure-i1,2021-22,17.7,79.3,Brockton - Brockton Champion High School,00440515, 53.4, 0.0, 19.0, 20.7, 0.0, 1.7, 5.2, 67.2, 31.9, 0.9 -4.579439252336449,4.58,a-cure-i1,2021-22,24.5,85.6,Brockton - Brockton High,00440505, 61.9, 2.4, 16.9, 14.4, 0.1, 0.3, 4.2, 53.8, 46.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,86.5,Brockton - Brockton Virtual Learning Academy,00440705, 57.3, 4.4, 19.3, 13.5, 0.5, 0.3, 4.7, 54.4, 45.6, 0.0 -2.910941475826972,2.91,a-cure-i1,2021-22,14.299999999999999,78.6,Brockton - Brookfield,00440010, 55.6, 0.4, 14.9, 21.4, 0.4, 0.2, 6.9, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2021-22,2.2,85.0,Brockton - Downey,00440110, 56.3, 1.9, 18.8, 15.0, 0.4, 0.2, 7.4, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2021-22,4.9,90.7,Brockton - Dr W Arnone Community School,00440001, 63.7, 0.6, 20.0, 9.3, 0.0, 0.1, 6.4, 55.4, 44.6, 0.0 -1.9715639810426537,1.97,a-cure-i1,2021-22,10.399999999999999,84.4,Brockton - East Middle School,00440405, 62.6, 1.4, 15.6, 15.6, 0.2, 0.2, 4.5, 54.1, 45.9, 0.0 -1.846836847946726,1.85,a-cure-i1,2021-22,10.4,90.1,Brockton - Edgar B Davis,00440023, 68.6, 0.5, 14.1, 9.9, 0.1, 0.3, 6.5, 47.5, 52.5, 0.0 -10.556701030927835,5,a-cure-i1,2021-22,64.0,97.0,Brockton - Edison Academy,00440520, 61.1, 0.0, 34.0, 3.0, 0.0, 0.0, 2.0, 65.0, 35.0, 0.0 -3.136,3.14,a-cure-i1,2021-22,19.6,100.0,Brockton - Frederick Douglass Academy,00440080, 75.0, 0.0, 8.3, 0.0, 0.0, 0.0, 16.7, 75.0, 25.0, 0.0 -3.4261954261954264,3.43,a-cure-i1,2021-22,20.6,96.2,Brockton - Gilmore Elementary School,00440055, 75.3, 0.9, 17.3, 3.8, 0.0, 0.2, 2.4, 48.4, 51.6, 0.0 -3.8085381630012933,3.81,a-cure-i1,2021-22,18.4,77.3,Brockton - Hancock,00440045, 55.0, 2.0, 14.7, 22.7, 0.0, 0.2, 5.5, 46.6, 53.4, 0.0 -2.716180371352785,2.72,a-cure-i1,2021-22,12.8,75.4,Brockton - Huntington Therapeutic Day School,00440400, 45.9, 0.0, 18.0, 24.6, 0.0, 0.0, 11.5, 68.9, 31.1, 0.0 -3.060532687651332,3.06,a-cure-i1,2021-22,15.8,82.6,Brockton - John F Kennedy,00440017, 61.4, 1.8, 15.3, 17.4, 0.2, 0.2, 3.8, 50.8, 49.2, 0.0 -4.91725768321513,4.92,a-cure-i1,2021-22,26.0,84.6,Brockton - Joseph F. Plouffe Academy,00440422, 38.9, 3.1, 37.4, 15.4, 0.4, 0.1, 4.7, 50.2, 49.8, 0.0 -2.552763819095478,2.55,a-cure-i1,2021-22,12.700000000000001,79.6,Brockton - Louis F Angelo Elementary,00440065, 49.4, 3.8, 22.3, 20.4, 0.3, 0.0, 3.8, 54.9, 45.1, 0.0 -2.8609271523178816,2.86,a-cure-i1,2021-22,16.200000000000003,90.6,Brockton - Manthala George Jr. School,00440003, 46.5, 0.2, 40.9, 9.4, 0.0, 0.2, 2.8, 49.1, 50.9, 0.0 -2.4254777070063693,2.43,a-cure-i1,2021-22,11.9,78.5,Brockton - Mary E. Baker School,00440002, 48.7, 1.5, 20.4, 21.5, 0.2, 0.3, 7.4, 52.2, 47.8, 0.0 -2.115846994535519,2.12,a-cure-i1,2021-22,12.1,91.5,Brockton - North Middle School,00440410, 70.9, 1.0, 13.7, 8.5, 0.0, 0.0, 5.9, 51.0, 49.0, 0.0 -0.9240641711229947,1,a-cure-i1,2021-22,5.4,93.5,Brockton - Oscar F Raymond,00440078, 79.4, 0.9, 10.9, 6.5, 0.0, 0.3, 2.0, 53.8, 46.2, 0.0 -4.146118721461187,4.15,a-cure-i1,2021-22,22.7,87.6,Brockton - South Middle School,00440415, 65.5, 1.3, 14.4, 12.4, 0.0, 0.0, 6.5, 55.6, 44.4, 0.0 -2.3903614457831326,2.39,a-cure-i1,2021-22,12.4,83.0,Brockton - West Middle School,00440420, 57.9, 2.7, 16.1, 17.0, 0.0, 0.2, 6.2, 53.1, 46.9, 0.0 -7.86610878661088,5,a-cure-i1,2021-22,47.00000000000001,95.6,Brooke Charter School (District) - Brooke Charter School,04280305, 51.9, 1.7, 39.1, 4.4, 0.2, 0.1, 2.6, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.299999999999997,Brookfield - Brookfield Elementary,00450005, 0.4, 0.7, 5.0, 90.7, 0.0, 0.0, 3.2, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,62.5,Brookline - Brookline Early Education Program at Beacon,00460001, 2.1, 33.3, 10.4, 37.5, 0.0, 0.0, 16.7, 56.3, 43.8, 0.0 -6.830870279146142,5,a-cure-i1,2021-22,26.0,60.9,Brookline - Brookline Early Education Program at Clark Road,00460003, 1.6, 21.9, 17.2, 39.1, 0.0, 0.0, 20.3, 64.1, 35.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,44.2,Brookline - Brookline Early Education Program at Putterham,00460002, 2.3, 14.0, 14.0, 55.8, 0.0, 0.0, 14.0, 55.8, 44.2, 0.0 -5.076586433260393,5,a-cure-i1,2021-22,14.499999999999998,45.7,Brookline - Brookline High,00460505, 7.3, 15.1, 12.7, 54.3, 0.0, 0.0, 10.5, 50.9, 48.6, 0.5 -4.609665427509294,4.61,a-cure-i1,2021-22,15.5,53.8,Brookline - Edith C Baker,00460005, 7.1, 27.1, 9.9, 46.2, 0.2, 0.0, 9.6, 52.0, 47.8, 0.2 -3.5348837209302326,3.53,a-cure-i1,2021-22,9.5,43.0,Brookline - Florida Ruffin Ridley School,00460015, 5.3, 15.8, 10.5, 57.0, 0.0, 0.0, 11.4, 49.5, 50.1, 0.4 -2.1714285714285717,2.17,a-cure-i1,2021-22,5.7,42.0,Brookline - Heath,00460025, 4.2, 15.5, 10.5, 58.0, 0.0, 0.0, 11.8, 50.8, 49.0, 0.2 -2.459016393442623,2.46,a-cure-i1,2021-22,7.5,48.8,Brookline - John D Runkle,00460045, 4.9, 15.5, 13.9, 51.2, 0.0, 0.0, 14.5, 53.9, 45.7, 0.4 -4.150170648464163,4.15,a-cure-i1,2021-22,15.2,58.6,Brookline - Lawrence,00460030, 5.6, 31.8, 10.8, 41.4, 0.0, 0.3, 10.1, 49.3, 50.5, 0.2 -5.906040268456375,5,a-cure-i1,2021-22,16.5,44.7,Brookline - Michael Driscoll,00460020, 5.3, 17.4, 8.1, 55.3, 0.0, 0.0, 13.9, 55.1, 44.9, 0.0 -6.113060428849902,5,a-cure-i1,2021-22,19.599999999999998,51.3,Brookline - Pierce,00460040, 4.9, 22.9, 10.7, 48.7, 0.0, 0.0, 12.9, 48.4, 51.2, 0.4 -9.18181818181818,5,a-cure-i1,2021-22,40.4,70.4,Brookline - The Lynch Center,00460060, 14.8, 25.9, 20.4, 29.6, 0.0, 0.0, 9.3, 48.1, 51.9, 0.0 -3.562043795620438,3.56,a-cure-i1,2021-22,12.2,54.8,Brookline - William H Lincoln,00460035, 12.3, 22.5, 10.6, 45.2, 0.2, 0.0, 9.1, 48.6, 51.2, 0.2 -2.5402843601895735,2.54,a-cure-i1,2021-22,6.7,42.2,Burlington - Burlington High,00480505, 8.8, 18.6, 10.5, 57.8, 0.4, 0.0, 3.9, 51.7, 48.0, 0.3 -1,1,a-cure-i1,2021-22,0.0,36.2,Burlington - Fox Hill,00480007, 7.9, 16.7, 6.9, 63.8, 0.4, 0.0, 4.2, 48.1, 51.7, 0.2 -1,1,a-cure-i1,2021-22,0.5,39.8,Burlington - Francis Wyman Elementary,00480035, 11.4, 15.3, 8.3, 60.2, 0.0, 0.0, 4.8, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,2.6,34.5,Burlington - Marshall Simonds Middle,00480303, 6.8, 16.3, 7.6, 65.5, 0.4, 0.0, 3.4, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2021-22,3.5,42.5,Burlington - Memorial,00480015, 5.9, 19.6, 11.5, 57.5, 0.2, 0.0, 5.4, 49.1, 50.9, 0.0 -2.4169184290030215,2.42,a-cure-i1,2021-22,5.0,33.099999999999994,Burlington - Pine Glen Elementary,00480020, 1.5, 19.3, 6.5, 66.9, 0.0, 0.0, 5.8, 55.6, 44.4, 0.0 -12.98021308980213,5,a-cure-i1,2021-22,53.3,65.7,Cambridge - Amigos School,00490006, 5.4, 4.7, 47.8, 34.3, 0.0, 0.0, 7.8, 48.5, 51.2, 0.2 -7.515923566878982,5,a-cure-i1,2021-22,29.500000000000004,62.8,Cambridge - Cambridge Rindge and Latin,00490506, 27.3, 10.3, 15.2, 37.2, 0.2, 0.3, 9.5, 48.8, 50.7, 0.5 -11.043478260869565,5,a-cure-i1,2021-22,38.1,55.2,Cambridge - Cambridge Street Upper School,00490305, 24.0, 9.0, 11.8, 44.8, 0.4, 0.0, 10.0, 55.6, 44.1, 0.4 -12.899999999999999,5,a-cure-i1,2021-22,38.699999999999996,48.0,Cambridge - Cambridgeport,00490007, 18.3, 9.1, 8.7, 52.0, 0.0, 0.0, 11.9, 52.4, 46.4, 1.2 -4.856172140430352,4.86,a-cure-i1,2021-22,26.8,88.3,Cambridge - Fletcher/Maynard Academy,00490090, 52.8, 8.5, 17.3, 11.7, 0.4, 0.0, 9.3, 57.3, 42.7, 0.0 -5.931034482758621,5,a-cure-i1,2021-22,17.2,46.4,Cambridge - Graham and Parks,00490080, 16.4, 13.5, 6.9, 53.6, 0.0, 0.0, 9.5, 48.7, 51.3, 0.0 -12.22641509433962,5,a-cure-i1,2021-22,40.49999999999999,53.0,Cambridge - Haggerty,00490020, 17.8, 19.5, 8.9, 47.0, 0.0, 0.0, 6.8, 49.2, 50.8, 0.0 -4.923076923076923,4.92,a-cure-i1,2021-22,18.4,59.8,Cambridge - John M Tobin,00490065, 22.4, 17.4, 7.5, 40.2, 0.3, 0.0, 12.1, 54.2, 45.8, 0.0 -2.883845126835781,2.88,a-cure-i1,2021-22,13.5,74.9,Cambridge - Kennedy-Longfellow,00490040, 24.6, 19.7, 23.2, 25.1, 0.0, 0.0, 7.4, 55.2, 44.8, 0.0 -7.4904458598726125,5,a-cure-i1,2021-22,29.400000000000002,62.8,Cambridge - King Open,00490035, 23.1, 13.0, 14.6, 37.2, 0.0, 0.0, 12.1, 50.4, 49.6, 0.0 -13.821782178217822,5,a-cure-i1,2021-22,34.9,40.4,Cambridge - Maria L. Baldwin,00490005, 11.9, 9.0, 8.5, 59.6, 0.0, 0.0, 11.0, 49.4, 50.6, 0.0 -10.371541501976285,5,a-cure-i1,2021-22,49.2,75.9,Cambridge - Martin Luther King Jr.,00490030, 15.2, 32.8, 5.0, 24.1, 0.0, 0.0, 22.9, 53.3, 46.7, 0.0 -3.7597173144876326,3.76,a-cure-i1,2021-22,13.3,56.6,Cambridge - Morse,00490045, 27.3, 9.8, 8.7, 43.4, 0.0, 0.0, 10.8, 54.9, 45.1, 0.0 -8.986717267552182,5,a-cure-i1,2021-22,29.6,52.7,Cambridge - Peabody,00490050, 22.3, 14.4, 7.2, 47.3, 0.3, 0.0, 8.5, 50.5, 49.5, 0.0 -9.886896551724137,5,a-cure-i1,2021-22,44.8,72.5,Cambridge - Putnam Avenue Upper School,00490310, 32.1, 14.1, 13.0, 27.5, 1.5, 0.0, 11.8, 53.1, 46.9, 0.0 -7.37546468401487,5,a-cure-i1,2021-22,24.799999999999997,53.8,Cambridge - Rindge Avenue Upper School,00490315, 21.8, 11.5, 11.5, 46.2, 0.0, 0.0, 9.2, 43.1, 56.1, 0.8 -6.159999999999999,5,a-cure-i1,2021-22,23.099999999999998,60.0,Cambridge - Vassal Lane Upper School,00490320, 25.5, 15.9, 11.0, 40.0, 0.0, 0.0, 7.6, 51.0, 48.6, 0.3 -3.4883720930232553,3.49,a-cure-i1,2021-22,7.5,34.400000000000006,Canton - Canton High,00500505, 13.1, 11.4, 5.8, 65.6, 0.0, 0.0, 4.2, 44.3, 55.3, 0.4 -1,1,a-cure-i1,2021-22,0.0,32.7,Canton - Dean S Luce,00500020, 10.4, 9.5, 6.5, 67.3, 0.0, 0.0, 6.3, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,30.200000000000003,Canton - John F Kennedy,00500017, 6.3, 9.6, 5.9, 69.8, 0.0, 0.0, 8.5, 52.2, 47.8, 0.0 -2.6063348416289593,2.61,a-cure-i1,2021-22,7.2,44.2,Canton - Lt Peter M Hansen,00500012, 12.5, 12.0, 9.6, 55.8, 0.0, 0.0, 10.1, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,49.4,Canton - Rodman Early Childhood Center,00500010, 11.4, 20.3, 10.1, 50.6, 1.3, 0.0, 6.3, 59.5, 40.5, 0.0 -2.956521739130435,2.96,a-cure-i1,2021-22,6.8,36.8,Canton - Wm H Galvin Middle,00500305, 12.0, 11.0, 6.6, 63.2, 0.3, 0.6, 6.3, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,8.0,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 1.6, 1.6, 2.4, 92.0, 0.4, 0.0, 2.0, 51.6, 48.0, 0.4 -1,1,a-cure-i1,2021-22,3.8,23.900000000000006,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 6.7, 1.1, 10.7, 76.1, 1.2, 0.2, 4.0, 62.5, 37.2, 0.3 -1,1,a-cure-i1,2021-22,3.8,26.5,Carlisle - Carlisle School,00510025, 0.3, 11.7, 5.5, 73.5, 0.0, 0.3, 8.6, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,2.1,7.099999999999994,Carver - Carver Elementary School,00520015, 2.5, 0.1, 2.5, 92.9, 0.1, 0.0, 1.8, 49.2, 50.8, 0.0 -14.293333333333333,5,a-cure-i1,2021-22,6.7,7.5,Carver - Carver Middle/High School,00520405, 2.5, 0.3, 2.9, 92.5, 0.8, 0.0, 1.0, 52.6, 47.4, 0.0 -10.33333333333334,5,a-cure-i1,2021-22,6.2,9.599999999999994,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 5.8, 90.4, 0.0, 0.0, 3.8, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.299999999999997,Central Berkshire - Craneville,06350025, 0.7, 1.2, 7.5, 83.7, 0.2, 0.0, 6.6, 50.7, 49.3, 0.0 -16.923076923076913,5,a-cure-i1,2021-22,5.5,5.200000000000003,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 2.0, 94.8, 0.0, 0.0, 3.3, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.299999999999997,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 0.3, 3.4, 90.7, 0.3, 0.0, 5.0, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2021-22,1.5,9.400000000000006,Central Berkshire - Wahconah Regional High,06350505, 0.8, 0.6, 4.3, 90.6, 0.0, 0.0, 3.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,32.400000000000006,Chelmsford - Byam School,00560030, 2.6, 14.7, 10.2, 67.6, 0.0, 0.2, 4.7, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.099999999999994,Chelmsford - Center Elementary School,00560005, 3.1, 20.4, 5.7, 66.9, 0.0, 0.0, 3.9, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,42.4,Chelmsford - Charles D Harrington,00560025, 4.4, 22.2, 12.1, 57.6, 0.6, 0.4, 2.5, 50.0, 50.0, 0.0 -3.643564356435644,3.64,a-cure-i1,2021-22,6.9,30.299999999999997,Chelmsford - Chelmsford High,00560505, 3.4, 17.3, 6.2, 69.7, 0.1, 0.3, 2.9, 50.2, 49.7, 0.1 -1,1,a-cure-i1,2021-22,0.0,32.2,Chelmsford - Col Moses Parker School,00560305, 3.9, 14.4, 9.2, 67.8, 0.3, 0.0, 4.4, 56.4, 43.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,46.5,Chelmsford - Community Education Center,00560001, 3.9, 23.6, 15.7, 53.5, 0.0, 0.0, 3.1, 64.6, 35.4, 0.0 -1,1,a-cure-i1,2021-22,3.5,35.0,Chelmsford - McCarthy Middle School,00560310, 4.2, 18.0, 8.1, 65.0, 0.1, 0.2, 4.3, 50.7, 49.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,31.5,Chelmsford - South Row,00560015, 3.1, 17.7, 5.8, 68.5, 0.4, 0.0, 4.5, 50.3, 49.7, 0.0 -3.802313354363828,3.8,a-cure-i1,2021-22,22.6,95.1,Chelsea - Chelsea High,00570505, 3.4, 1.1, 89.8, 4.9, 0.3, 0.0, 0.5, 54.2, 45.7, 0.1 -3.8738555442522893,3.87,a-cure-i1,2021-22,23.8,98.3,Chelsea - Chelsea Opportunity Academy,00570515, 2.6, 0.0, 95.7, 1.7, 0.0, 0.0, 0.0, 63.2, 36.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,77.8,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 77.8, 22.2, 0.0, 0.0, 0.0, 77.8, 22.2, 0.0 -1.6,1.6,a-cure-i1,2021-22,9.5,95.0,Chelsea - Clark Avenue School,00570050, 2.5, 0.3, 91.0, 5.0, 0.3, 0.0, 1.0, 51.9, 48.1, 0.0 -1.3155555555555556,1.32,a-cure-i1,2021-22,7.4,90.0,Chelsea - Edgar A Hooks Elementary,00570030, 6.2, 0.8, 82.1, 10.0, 0.2, 0.0, 0.8, 52.8, 47.2, 0.0 -1.1744680851063831,1.17,a-cure-i1,2021-22,6.9,94.0,Chelsea - Eugene Wright Science and Technology Academy,00570045, 5.8, 0.6, 86.3, 6.0, 0.0, 0.0, 1.3, 51.3, 48.7, 0.0 -3.321739130434783,3.32,a-cure-i1,2021-22,19.1,92.0,Chelsea - Frank M Sokolowski Elementary,00570040, 5.7, 0.4, 85.2, 8.0, 0.2, 0.0, 0.4, 46.2, 53.8, 0.0 -6.687565308254963,5,a-cure-i1,2021-22,40.0,95.7,Chelsea - George F. Kelly Elementary,00570035, 2.0, 0.0, 93.7, 4.3, 0.0, 0.0, 0.0, 48.5, 51.5, 0.0 -5.676312968917471,5,a-cure-i1,2021-22,33.1,93.3,Chelsea - Joseph A. Browne School,00570055, 5.4, 1.3, 86.3, 6.7, 0.2, 0.0, 0.2, 56.3, 43.7, 0.0 -2.5761226725082147,2.58,a-cure-i1,2021-22,14.7,91.3,Chelsea - Shurtleff Early Childhood,00570003, 3.0, 0.7, 87.0, 8.7, 0.4, 0.0, 0.2, 52.9, 47.1, 0.0 -1.2555673382820787,1.26,a-cure-i1,2021-22,7.4,94.3,Chelsea - William A Berkowitz Elementary,00570025, 6.5, 1.3, 85.7, 5.7, 0.2, 0.0, 0.7, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,4.099999999999994,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.4, 0.0, 1.4, 95.9, 0.7, 0.0, 0.7, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,43.8,Chicopee - Barry,00610003, 4.2, 2.1, 33.4, 56.2, 0.3, 0.5, 3.2, 56.8, 43.2, 0.0 -2.0564263322884013,2.06,a-cure-i1,2021-22,8.2,63.8,Chicopee - Belcher,00610010, 10.0, 1.3, 49.3, 36.2, 0.0, 0.0, 3.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,1.5,52.5,Chicopee - Bellamy Middle,00610305, 3.5, 0.7, 44.9, 47.5, 0.0, 0.0, 3.3, 51.7, 48.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,74.8,Chicopee - Bowe,00610015, 3.8, 1.6, 65.5, 25.2, 0.0, 0.0, 3.8, 50.5, 49.5, 0.0 -3.264367816091954,3.26,a-cure-i1,2021-22,7.1,34.8,Chicopee - Bowie,00610020, 3.7, 1.9, 26.3, 65.2, 0.0, 0.0, 3.0, 50.4, 49.6, 0.0 -1.9210526315789473,1.92,a-cure-i1,2021-22,7.3,60.8,Chicopee - Chicopee Academy,00610021, 3.8, 0.0, 54.4, 39.2, 0.0, 0.0, 2.5, 75.9, 24.1, 0.0 -3.12,3.12,a-cure-i1,2021-22,7.800000000000001,40.0,Chicopee - Chicopee Comprehensive High School,00610510, 2.6, 1.6, 31.9, 60.0, 0.1, 0.0, 3.8, 55.9, 44.0, 0.1 -2.598984771573604,2.6,a-cure-i1,2021-22,9.6,59.1,Chicopee - Chicopee High,00610505, 4.5, 2.5, 48.9, 40.9, 0.0, 0.0, 3.2, 48.2, 51.7, 0.1 -1,1,a-cure-i1,2021-22,4.0,54.3,Chicopee - Dupont Middle,00610310, 5.3, 1.3, 45.0, 45.7, 0.0, 0.0, 2.7, 54.6, 45.2, 0.3 -1,1,a-cure-i1,2021-22,3.8,64.1,Chicopee - Fairview Elementary,00610050, 6.4, 1.2, 53.1, 35.9, 0.0, 0.2, 3.2, 57.5, 42.5, 0.0 -2.0367454068241466,2.04,a-cure-i1,2021-22,9.7,76.2,Chicopee - Gen John J Stefanik,00610090, 8.1, 0.6, 62.8, 23.8, 0.0, 0.0, 4.7, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,1.3,45.9,Chicopee - Lambert-Lavoie,00610040, 4.3, 2.7, 33.5, 54.1, 0.0, 0.0, 5.4, 57.6, 42.4, 0.0 -1,1,a-cure-i1,2021-22,1.0,47.6,Chicopee - Litwin,00610022, 8.4, 2.1, 34.7, 52.4, 0.0, 0.0, 2.4, 50.3, 49.7, 0.0 -2.3434343434343434,2.34,a-cure-i1,2021-22,5.8,39.6,Chicopee - Streiber Memorial School,00610065, 4.0, 3.5, 29.1, 60.4, 0.0, 0.0, 3.1, 55.9, 44.1, 0.0 -2.3406113537117905,2.34,a-cure-i1,2021-22,6.7,45.8,Chicopee - Szetela Early Childhood Center,00610001, 5.4, 1.0, 29.6, 54.2, 0.0, 0.5, 9.4, 56.2, 43.8, 0.0 -5.190965092402464,5,a-cure-i1,2021-22,15.8,48.7,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 7.5, 8.5, 25.0, 51.3, 2.3, 0.0, 5.4, 54.4, 45.6, 0.0 -3.0843373493975905,3.08,a-cure-i1,2021-22,19.2,99.6,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 67.2, 0.0, 30.1, 0.4, 0.0, 0.0, 2.2, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,4.299999999999997,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 2.4, 95.7, 0.0, 0.0, 1.4, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,38.6,Clinton - Clinton Elementary,00640050, 2.0, 0.9, 32.6, 61.4, 0.1, 0.1, 2.9, 52.8, 47.2, 0.0 -2.8097560975609754,2.81,a-cure-i1,2021-22,7.199999999999999,41.0,Clinton - Clinton Middle School,00640305, 2.6, 1.0, 35.1, 59.0, 0.0, 0.0, 2.2, 52.4, 47.6, 0.0 -2.90547263681592,2.91,a-cure-i1,2021-22,7.3,40.2,Clinton - Clinton Senior High,00640505, 3.9, 1.0, 34.1, 59.8, 0.0, 0.2, 1.0, 52.7, 46.9, 0.4 -7.1895687061183535,5,a-cure-i1,2021-22,44.79999999999999,99.7,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 74.9, 0.0, 23.6, 0.3, 0.0, 0.0, 1.2, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2021-22,2.6,10.099999999999994,Cohasset - Cohasset High School,00650505, 3.1, 2.4, 2.1, 89.9, 0.5, 0.0, 2.1, 51.2, 48.6, 0.2 -1,1,a-cure-i1,2021-22,3.5,8.200000000000003,Cohasset - Cohasset Middle School,00650305, 2.8, 2.2, 0.9, 91.8, 0.0, 0.0, 2.2, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.400000000000006,Cohasset - Deer Hill,00650005, 2.5, 1.3, 1.9, 93.6, 0.0, 0.0, 0.6, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,8.200000000000003,Cohasset - Joseph Osgood,00650010, 2.5, 0.8, 1.9, 91.8, 0.3, 0.0, 2.7, 48.6, 51.4, 0.0 -3.49936788874842,3.5,a-cure-i1,2021-22,17.3,79.1,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 20.6, 27.0, 26.1, 20.9, 1.6, 0.0, 3.7, 48.8, 51.1, 0.1 -6.261603375527427,5,a-cure-i1,2021-22,37.1,94.8,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 70.8, 4.2, 15.6, 5.2, 0.3, 0.0, 3.8, 42.0, 58.0, 0.0 -3.2719836400817996,3.27,a-cure-i1,2021-22,20.0,97.8,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.7, 0.5, 94.8, 2.2, 0.5, 0.0, 0.2, 50.9, 49.1, 0.0 -7.193548387096774,5,a-cure-i1,2021-22,44.6,99.2,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 1.3, 0.0, 97.8, 0.8, 0.3, 0.0, 0.0, 50.0, 50.0, 0.0 -1.270103092783505,1.27,a-cure-i1,2021-22,7.7,97.0,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 1.5, 0.8, 94.2, 3.0, 0.0, 0.0, 0.5, 49.0, 51.0, 0.0 -3.8303030303030305,3.83,a-cure-i1,2021-22,7.9,33.0,Concord - Alcott,00670005, 9.1, 7.9, 8.6, 67.0, 0.0, 0.0, 7.4, 50.7, 49.3, 0.0 -11.545787545787547,5,a-cure-i1,2021-22,19.7,27.299999999999997,Concord - Concord Middle,00670305, 5.7, 6.1, 8.0, 72.7, 0.0, 0.0, 7.6, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,0.7,25.700000000000003,Concord - Thoreau,00670020, 1.8, 8.2, 7.1, 74.3, 0.2, 0.0, 8.4, 51.9, 48.1, 0.0 -8.4,5,a-cure-i1,2021-22,10.5,20.0,Concord - Willard,00670030, 1.1, 7.7, 3.9, 80.0, 0.0, 0.0, 7.3, 48.3, 51.7, 0.0 -5.864541832669324,5,a-cure-i1,2021-22,9.2,25.099999999999994,Concord-Carlisle - Concord Carlisle High,06400505, 4.5, 8.2, 5.6, 74.9, 0.2, 0.0, 6.6, 49.6, 49.9, 0.5 -4.552016985138003,4.55,a-cure-i1,2021-22,26.799999999999997,94.2,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 48.1, 1.8, 41.4, 5.8, 0.2, 0.0, 2.7, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.599999999999994,Conway - Conway Grammar,00680005, 0.7, 0.0, 2.8, 92.4, 0.0, 0.0, 4.1, 56.6, 42.8, 0.7 -1,1,a-cure-i1,2021-22,0.7,18.0,Danvers - Danvers High,00710505, 2.9, 2.6, 9.2, 82.0, 0.0, 0.0, 3.3, 50.1, 49.4, 0.5 -1,1,a-cure-i1,2021-22,4.7,20.599999999999994,Danvers - Great Oak,00710015, 4.0, 2.8, 8.7, 79.4, 0.3, 0.0, 4.7, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.700000000000003,Danvers - Highlands,00710010, 4.1, 3.5, 10.4, 79.3, 0.3, 0.0, 2.5, 54.2, 45.8, 0.0 -5.135802469135802,5,a-cure-i1,2021-22,5.2,16.200000000000003,Danvers - Holten Richmond Middle School,00710305, 1.0, 2.6, 10.8, 83.8, 0.0, 0.0, 1.8, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2021-22,4.7,14.599999999999994,Danvers - Ivan G Smith,00710032, 2.9, 2.3, 7.4, 85.4, 0.0, 0.0, 1.9, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.200000000000003,Danvers - Riverside,00710030, 1.6, 1.3, 13.4, 81.8, 0.3, 0.3, 1.3, 60.2, 39.8, 0.0 -1,1,a-cure-i1,2021-22,4.7,13.099999999999994,Danvers - Willis E Thorpe,00710045, 1.2, 0.9, 9.7, 86.9, 0.0, 0.0, 1.2, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.299999999999997,Dartmouth - Andrew B. Cushman School,00720005, 1.5, 0.0, 5.3, 81.7, 0.0, 0.0, 11.5, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2021-22,1.4,17.799999999999997,Dartmouth - Dartmouth High,00720505, 2.7, 0.5, 6.2, 82.2, 0.0, 0.1, 8.3, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.099999999999994,Dartmouth - Dartmouth Middle,00720050, 1.2, 1.0, 6.2, 85.9, 0.0, 0.0, 5.7, 51.6, 48.3, 0.1 -1,1,a-cure-i1,2021-22,0.0,11.5,Dartmouth - George H Potter,00720030, 0.5, 1.3, 4.3, 88.5, 0.0, 0.0, 5.4, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.0,Dartmouth - James M. Quinn School,00720040, 1.3, 1.9, 6.7, 83.0, 0.1, 0.0, 6.8, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.200000000000003,Dartmouth - Joseph Demello,00720015, 1.6, 0.8, 4.8, 85.8, 0.0, 0.0, 7.0, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,50.0,Dedham - Avery,00730010, 9.3, 1.8, 32.1, 50.0, 0.0, 0.4, 6.4, 51.1, 48.9, 0.0 -2.6,2.6,a-cure-i1,2021-22,5.2,32.0,Dedham - Dedham High,00730505, 9.3, 2.3, 17.5, 68.0, 0.0, 0.0, 2.9, 52.2, 47.1, 0.7 -1,1,a-cure-i1,2021-22,0.0,31.799999999999997,Dedham - Dedham Middle School,00730305, 7.0, 2.4, 17.5, 68.2, 0.0, 0.0, 4.9, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.299999999999997,Dedham - Early Childhood Center,00730005, 4.8, 3.6, 13.6, 71.7, 0.0, 0.0, 6.3, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.0,Dedham - Greenlodge,00730025, 3.8, 0.4, 10.7, 77.0, 0.0, 0.0, 8.0, 56.3, 43.3, 0.4 -1,1,a-cure-i1,2021-22,0.0,28.099999999999994,Dedham - Oakdale,00730030, 8.8, 2.0, 11.2, 71.9, 0.0, 0.0, 6.0, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.099999999999994,Dedham - Riverdale,00730045, 5.2, 3.5, 15.1, 66.9, 0.0, 0.0, 9.3, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.099999999999994,Deerfield - Deerfield Elementary,00740015, 0.3, 0.3, 5.2, 85.9, 0.0, 0.0, 8.3, 51.8, 48.2, 0.0 -2.674094707520891,2.67,a-cure-i1,2021-22,6.0,35.900000000000006,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 12.3, 2.2, 14.3, 64.1, 2.2, 0.0, 4.8, 49.9, 49.8, 0.3 -1,1,a-cure-i1,2021-22,3.8,31.099999999999994,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 8.5, 2.6, 12.8, 68.9, 1.3, 0.0, 5.9, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,39.6,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 9.6, 2.7, 18.4, 60.4, 1.7, 0.0, 7.2, 57.3, 42.7, 0.0 -5.106382978723404,5,a-cure-i1,2021-22,10.5,32.900000000000006,Dennis-Yarmouth - Mattacheese Middle School,06450305, 9.6, 1.9, 10.0, 67.1, 1.4, 0.0, 10.0, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,4.0,33.5,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 10.6, 2.7, 10.0, 66.5, 2.7, 0.7, 6.8, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,30.0,Dennis-Yarmouth - Station Avenue Elementary,06450025, 8.0, 3.3, 12.2, 70.0, 0.5, 0.0, 6.1, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.900000000000006,Dighton-Rehoboth - Dighton Elementary,06500005, 3.6, 2.0, 4.7, 85.1, 0.0, 0.0, 4.5, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2021-22,4.4,15.0,Dighton-Rehoboth - Dighton Middle School,06500305, 3.4, 1.6, 4.9, 85.0, 0.0, 0.0, 5.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,3.6,10.0,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.1, 1.0, 4.5, 90.0, 0.1, 0.0, 3.2, 50.6, 48.9, 0.4 -1,1,a-cure-i1,2021-22,2.9,11.5,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 2.2, 1.9, 3.7, 88.5, 0.4, 0.0, 3.2, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.900000000000006,Dighton-Rehoboth - Palmer River,06500010, 0.5, 1.4, 4.6, 90.1, 0.0, 0.0, 3.3, 53.9, 46.0, 0.2 -1,1,a-cure-i1,2021-22,0.0,12.400000000000006,Douglas - Douglas Elementary School,00770015, 0.3, 0.3, 6.5, 87.6, 0.0, 0.0, 5.4, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,3.2,9.5,Douglas - Douglas High School,00770505, 0.6, 1.5, 5.4, 90.5, 0.0, 0.3, 1.8, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.5,Douglas - Douglas Middle School,00770305, 0.4, 0.7, 5.8, 90.5, 0.0, 0.0, 2.6, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.599999999999994,Douglas - Douglas Primary School,00770005, 1.0, 0.0, 4.5, 90.4, 0.0, 0.0, 4.0, 54.0, 46.0, 0.0 -3.085714285714286,3.09,a-cure-i1,2021-22,5.4,28.0,Dover - Chickering,00780005, 3.5, 13.9, 3.9, 72.0, 0.0, 0.0, 6.7, 53.8, 46.2, 0.0 -5.5408560311284045,5,a-cure-i1,2021-22,8.9,25.700000000000003,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 3.7, 11.1, 5.5, 74.3, 0.3, 0.0, 5.2, 50.5, 49.2, 0.3 -4.63157894736842,4.63,a-cure-i1,2021-22,8.8,30.400000000000006,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.6, 11.9, 7.6, 69.6, 0.0, 0.0, 7.4, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,36.7,Dracut - Brookside Elementary,00790035, 10.6, 11.3, 13.2, 63.3, 0.2, 0.0, 1.5, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,1.8,29.799999999999997,Dracut - Dracut Senior High,00790505, 8.4, 9.5, 8.8, 70.2, 0.7, 0.0, 2.4, 51.0, 48.4, 0.6 -1,1,a-cure-i1,2021-22,0.0,36.2,Dracut - George H. Englesby Elementary School,00790045, 6.2, 9.5, 18.3, 63.8, 0.2, 0.0, 2.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.799999999999997,Dracut - Greenmont Avenue,00790030, 5.3, 9.1, 14.4, 68.2, 0.0, 0.0, 3.0, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.700000000000003,Dracut - Joseph A Campbell Elementary,00790020, 8.5, 5.5, 8.3, 76.3, 0.2, 0.0, 1.2, 53.2, 46.8, 0.0 -2.702702702702703,2.7,a-cure-i1,2021-22,5.0,29.599999999999994,Dracut - Justus C. Richardson Middle School,00790410, 7.0, 7.0, 13.7, 70.4, 0.0, 0.0, 1.8, 51.8, 48.1, 0.1 -9.805924412665986,5,a-cure-i1,2021-22,60.0,97.9,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 62.2, 1.0, 32.9, 2.1, 1.0, 0.0, 0.7, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 1.3, 11.3, 84.1, 0.0, 0.0, 3.4, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.099999999999994,Dudley-Charlton Reg - Charlton Middle School,06580310, 1.9, 1.0, 6.6, 86.9, 0.3, 0.0, 3.4, 52.7, 47.3, 0.0 -11.383084577114431,5,a-cure-i1,2021-22,14.3,20.099999999999994,Dudley-Charlton Reg - Dudley Elementary,06580005, 3.2, 0.6, 13.1, 79.9, 0.3, 0.0, 2.9, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.5,Dudley-Charlton Reg - Dudley Middle School,06580305, 2.6, 1.1, 11.4, 82.5, 0.0, 0.0, 2.4, 53.1, 46.9, 0.0 -9.638554216867472,5,a-cure-i1,2021-22,10.0,16.599999999999994,Dudley-Charlton Reg - Heritage School,06580030, 1.8, 0.2, 10.1, 83.4, 0.0, 0.0, 4.4, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,3.6,22.200000000000003,Dudley-Charlton Reg - Mason Road School,06580010, 0.8, 0.8, 13.6, 77.8, 0.4, 0.0, 6.6, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,1.4,14.799999999999997,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 1.8, 1.6, 9.5, 85.2, 0.0, 0.1, 1.8, 47.2, 52.7, 0.1 -1,1,a-cure-i1,2021-22,0.0,6.900000000000006,Duxbury - Alden School,00820004, 0.3, 0.5, 2.9, 93.1, 0.0, 0.2, 3.0, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,3.2,9.799999999999997,Duxbury - Chandler Elementary,00820006, 1.3, 1.0, 3.5, 90.2, 0.0, 0.0, 4.0, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,3.0,8.0,Duxbury - Duxbury High,00820505, 0.2, 1.7, 2.2, 92.0, 0.2, 0.0, 3.7, 50.5, 49.4, 0.1 -1,1,a-cure-i1,2021-22,0.0,8.599999999999994,Duxbury - Duxbury Middle,00820305, 0.6, 0.9, 3.1, 91.4, 0.0, 0.0, 4.0, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.299999999999997,East Bridgewater - Central,00830005, 4.9, 0.9, 4.2, 86.7, 0.5, 0.0, 2.7, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.0,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 4.8, 0.6, 3.9, 87.0, 0.5, 0.1, 3.0, 54.6, 45.3, 0.1 -1,1,a-cure-i1,2021-22,0.0,15.599999999999994,East Bridgewater - Gordon W. Mitchell School,00830010, 5.4, 1.1, 5.3, 84.4, 0.3, 0.0, 3.5, 50.2, 49.8, 0.0 -5.829457364341085,5,a-cure-i1,2021-22,9.399999999999999,25.799999999999997,East Longmeadow - Birchland Park,00870305, 4.2, 6.8, 10.5, 74.2, 0.2, 0.0, 4.2, 53.7, 46.1, 0.2 -4.946859903381642,4.95,a-cure-i1,2021-22,6.4,20.700000000000003,East Longmeadow - East Longmeadow High,00870505, 3.8, 6.0, 8.5, 79.3, 0.0, 0.0, 2.5, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.0,East Longmeadow - Mapleshade,00870010, 1.9, 6.0, 14.0, 74.0, 0.0, 0.0, 4.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,3.3,26.5,East Longmeadow - Meadow Brook,00870013, 1.8, 5.5, 15.7, 73.5, 0.0, 0.0, 3.5, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,21.0,East Longmeadow - Mountain View,00870015, 2.2, 4.9, 8.2, 79.0, 0.0, 0.0, 5.6, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.400000000000006,Eastham - Eastham Elementary,00850005, 8.9, 2.1, 3.6, 77.6, 0.0, 0.0, 7.8, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.400000000000006,Easthampton - Center School,00860005, 1.6, 1.1, 10.1, 84.6, 0.0, 0.0, 2.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,3.0,20.900000000000006,Easthampton - Easthampton High,00860505, 1.7, 4.0, 12.7, 79.1, 0.2, 0.0, 2.2, 48.6, 50.4, 1.0 -1,1,a-cure-i1,2021-22,0.0,18.900000000000006,Easthampton - Maple,00860010, 0.0, 1.8, 12.3, 81.1, 0.4, 0.0, 4.4, 53.3, 45.8, 0.9 -1,1,a-cure-i1,2021-22,0.0,34.3,Easthampton - Neil A Pepin,00860020, 2.9, 2.3, 21.7, 65.7, 0.6, 0.6, 6.3, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2021-22,3.4,26.099999999999994,Easthampton - White Brook Middle School,00860305, 0.9, 3.8, 17.4, 73.9, 0.2, 0.0, 3.8, 53.8, 45.8, 0.5 -1,1,a-cure-i1,2021-22,0.0,32.599999999999994,Easton - Center School,00880003, 8.4, 4.7, 11.6, 67.4, 0.0, 0.0, 7.9, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,3.4,21.299999999999997,Easton - Easton Middle School,00880405, 7.8, 3.2, 6.4, 78.7, 0.1, 0.0, 3.8, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.0,Easton - Moreau Hall,00880020, 8.7, 4.6, 8.3, 72.0, 0.0, 0.0, 6.4, 55.0, 45.0, 0.0 -5.414141414141414,5,a-cure-i1,2021-22,6.699999999999999,19.799999999999997,Easton - Oliver Ames High,00880505, 6.7, 3.6, 5.5, 80.2, 0.4, 0.0, 3.5, 49.7, 50.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,18.200000000000003,Easton - Parkview Elementary,00880015, 2.7, 3.4, 7.7, 81.8, 0.0, 0.0, 4.4, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2021-22,2.8,22.799999999999997,Easton - Richardson Olmsted School,00880025, 7.2, 3.0, 8.5, 77.2, 0.7, 0.1, 3.4, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,2.6,34.0,Edgartown - Edgartown Elementary,00890005, 3.3, 0.3, 23.9, 66.0, 2.0, 0.0, 4.5, 49.1, 50.9, 0.0 -8.543364681295715,5,a-cure-i1,2021-22,51.099999999999994,95.7,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 36.7, 1.0, 55.2, 4.3, 0.3, 0.0, 2.5, 33.9, 66.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.299999999999997,Erving - Erving Elementary,00910030, 0.0, 0.0, 6.0, 85.7, 0.0, 0.0, 8.3, 57.1, 42.9, 0.0 -1,1,a-cure-i1,2021-22,1.3,21.5,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.8, 1.8, 13.8, 78.5, 0.1, 0.1, 3.9, 42.1, 57.6, 0.3 -1,1,a-cure-i1,2021-22,0.0,72.5,Everett - Adams School,00930003, 18.1, 13.0, 40.6, 27.5, 0.0, 0.0, 0.7, 48.6, 51.4, 0.0 -2.1956797966963153,2.2,a-cure-i1,2021-22,10.8,78.7,Everett - Devens School,00930030, 23.4, 0.0, 48.9, 21.3, 0.0, 0.0, 6.4, 74.5, 23.4, 2.1 -2.9375764993880047,2.94,a-cure-i1,2021-22,15.0,81.7,Everett - Everett High,00930505, 16.8, 5.2, 57.4, 18.3, 0.6, 0.0, 1.7, 51.0, 49.0, 0.0 -1.6054732041049031,1.61,a-cure-i1,2021-22,8.8,87.7,Everett - George Keverian School,00930028, 13.0, 4.2, 68.6, 12.3, 0.2, 0.1, 1.5, 49.1, 50.9, 0.0 -1.288723667905824,1.29,a-cure-i1,2021-22,6.5,80.7,Everett - Lafayette School,00930038, 15.5, 8.4, 55.1, 19.3, 0.1, 0.0, 1.6, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2021-22,3.1,79.1,Everett - Madeline English School,00930018, 11.0, 5.9, 60.1, 20.9, 0.2, 0.0, 2.0, 51.8, 48.2, 0.0 -1.0044052863436124,1.0,a-cure-i1,2021-22,5.7,90.8,Everett - Parlin School,00930058, 10.6, 2.7, 76.4, 9.2, 0.0, 0.0, 1.1, 46.8, 53.2, 0.0 -2.5564245810055866,2.56,a-cure-i1,2021-22,14.3,89.5,Everett - Sumner G. Whittier School,00930010, 10.0, 3.1, 73.8, 10.5, 0.7, 0.0, 1.8, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,81.3,Everett - Webster Extension,00930001, 12.9, 17.5, 49.1, 18.7, 0.6, 0.0, 1.2, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2021-22,3.8,73.8,Everett - Webster School,00930015, 12.3, 3.8, 56.8, 26.2, 0.0, 0.0, 0.9, 53.3, 46.7, 0.0 -6.531356898517673,5,a-cure-i1,2021-22,35.8,87.7,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 6.2, 1.3, 78.2, 12.3, 0.6, 0.5, 0.9, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.9,16.0,Fairhaven - East Fairhaven,00940010, 2.3, 2.0, 5.6, 84.0, 0.7, 0.0, 5.6, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.200000000000003,Fairhaven - Fairhaven High,00940505, 2.1, 2.4, 5.1, 86.8, 0.5, 0.0, 3.2, 49.0, 51.0, 0.0 -7.421686746987954,5,a-cure-i1,2021-22,7.7,16.599999999999994,Fairhaven - Hastings Middle,00940305, 3.3, 1.5, 6.6, 83.4, 1.1, 0.0, 4.0, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2021-22,0.7,17.299999999999997,Fairhaven - Leroy Wood,00940030, 3.5, 2.2, 6.6, 82.7, 0.4, 0.0, 4.6, 50.7, 49.3, 0.0 -2.1077844311377243,2.11,a-cure-i1,2021-22,6.6,50.1,Fall River - B M C Durfee High,00950505, 10.1, 4.6, 28.7, 49.9, 0.2, 0.0, 6.5, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,2.9,59.7,Fall River - Carlton M. Viveiros Elementary School,00950009, 8.8, 2.7, 37.3, 40.3, 0.1, 0.0, 10.8, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,4.2,59.6,Fall River - Henry Lord Community School,00950017, 10.3, 1.8, 38.3, 40.4, 0.0, 0.0, 9.2, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,27.400000000000006,Fall River - James Tansey,00950140, 5.7, 1.8, 12.1, 72.6, 0.0, 0.0, 7.8, 48.0, 51.6, 0.4 -1.802816901408451,1.8,a-cure-i1,2021-22,6.4,56.8,Fall River - John J Doran,00950045, 9.5, 1.0, 31.9, 43.2, 0.0, 0.2, 14.1, 51.9, 48.1, 0.0 -1.7512437810945274,1.75,a-cure-i1,2021-22,6.6,60.3,Fall River - Letourneau Elementary School,00950013, 9.7, 3.0, 39.2, 39.7, 0.0, 0.0, 8.4, 52.9, 47.1, 0.0 -2.0291545189504374,2.03,a-cure-i1,2021-22,8.7,68.6,Fall River - Mary Fonseca Elementary School,00950011, 12.0, 2.4, 43.7, 31.4, 0.2, 0.0, 10.4, 50.5, 49.5, 0.0 -3.6796714579055436,3.68,a-cure-i1,2021-22,11.2,48.7,Fall River - Matthew J Kuss Middle,00950320, 8.3, 4.1, 26.9, 51.3, 0.0, 0.0, 9.3, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,2.5,45.2,Fall River - Morton Middle,00950315, 9.4, 3.5, 23.9, 54.8, 0.1, 0.0, 8.4, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,47.0,Fall River - North End Elementary,00950005, 11.0, 1.7, 24.0, 53.0, 0.3, 0.0, 10.0, 50.4, 49.6, 0.0 -3.2398753894080996,3.24,a-cure-i1,2021-22,13.0,64.2,Fall River - Resiliency Preparatory Academy,00950525, 17.4, 0.9, 36.7, 35.8, 0.0, 0.0, 9.2, 73.4, 26.6, 0.0 -1.9001721170395869,1.9,a-cure-i1,2021-22,6.9,58.1,Fall River - Samuel Watson,00950145, 12.4, 2.1, 27.0, 41.9, 0.0, 0.4, 16.2, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2021-22,4.8,49.4,Fall River - Spencer Borden,00950130, 11.4, 4.6, 22.2, 50.6, 0.0, 0.0, 11.2, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,2.9,44.1,Fall River - Stone PK-12 School,00950340, 13.2, 0.0, 22.1, 55.9, 0.0, 1.5, 7.4, 73.5, 26.5, 0.0 -2.604651162790698,2.6,a-cure-i1,2021-22,9.8,60.2,Fall River - Talbot Innovation School,00950305, 8.7, 3.1, 37.4, 39.8, 0.3, 0.2, 10.5, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2021-22,3.1,59.4,Fall River - William S Greene,00950065, 9.4, 5.4, 34.1, 40.6, 0.0, 0.0, 10.6, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.400000000000006,Falmouth - East Falmouth Elementary,00960005, 5.4, 3.3, 11.2, 73.6, 1.1, 0.0, 5.4, 58.7, 41.3, 0.0 -1,1,a-cure-i1,2021-22,2.8000000000000003,20.599999999999994,Falmouth - Falmouth High,00960505, 6.0, 2.1, 7.3, 79.4, 0.5, 0.0, 4.7, 50.4, 48.6, 1.0 -6.570048309178743,5,a-cure-i1,2021-22,8.5,20.700000000000003,Falmouth - Lawrence,00960405, 4.6, 1.2, 6.8, 79.3, 2.2, 0.0, 5.8, 51.4, 48.2, 0.4 -4.383561643835615,4.38,a-cure-i1,2021-22,6.0,21.900000000000006,Falmouth - Morse Pond School,00960305, 4.2, 0.8, 7.4, 78.1, 1.5, 0.0, 8.0, 51.1, 48.9, 0.0 -4.078431372549019,4.08,a-cure-i1,2021-22,6.5,25.5,Falmouth - Mullen-Hall,00960020, 3.5, 1.8, 10.8, 74.5, 0.3, 0.0, 9.3, 57.3, 42.8, 0.0 -7.466666666666667,5,a-cure-i1,2021-22,8.4,18.0,Falmouth - North Falmouth Elementary,00960030, 3.0, 1.2, 8.6, 82.0, 0.3, 0.0, 5.0, 45.9, 54.1, 0.0 -4.972972972972974,4.97,a-cure-i1,2021-22,9.2,29.599999999999994,Falmouth - Teaticket,00960015, 7.5, 1.2, 10.3, 70.4, 0.8, 0.0, 9.9, 54.9, 43.9, 1.2 -1,1,a-cure-i1,2021-22,0.0,2.5999999999999943,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 44.8, 55.2, 0.0 -2.306122448979592,2.31,a-cure-i1,2021-22,11.3,78.4,Fitchburg - Arthur M Longsjo Middle School,00970315, 6.3, 3.9, 60.0, 21.6, 0.2, 0.0, 8.0, 52.3, 47.4, 0.3 -1.8016085790884717,1.8,a-cure-i1,2021-22,8.399999999999999,74.6,Fitchburg - Crocker Elementary,00970016, 7.9, 5.2, 54.7, 25.4, 0.0, 0.0, 6.7, 49.4, 50.6, 0.0 -3.774574049803408,3.77,a-cure-i1,2021-22,18.0,76.3,Fitchburg - Fitchburg High,00970505, 7.5, 6.1, 56.0, 23.7, 0.0, 0.0, 6.7, 52.0, 48.0, 0.0 -3.2989690721649483,3.3,a-cure-i1,2021-22,12.0,58.2,Fitchburg - Goodrich Academy,00970510, 3.8, 3.2, 45.6, 41.8, 0.0, 0.0, 5.7, 55.7, 43.7, 0.6 -1,1,a-cure-i1,2021-22,4.6,76.2,Fitchburg - McKay Arts Academy,00970340, 6.9, 5.1, 58.1, 23.8, 0.0, 0.0, 6.0, 54.6, 45.4, 0.0 -1.5397489539748952,1.54,a-cure-i1,2021-22,6.8999999999999995,71.7,Fitchburg - Memorial Middle School,00970048, 5.5, 3.1, 54.9, 28.3, 0.0, 0.1, 7.9, 45.4, 54.6, 0.0 -3.490909090909091,3.49,a-cure-i1,2021-22,14.4,66.0,Fitchburg - Reingold Elementary,00970043, 4.6, 3.7, 52.0, 34.0, 0.0, 0.0, 5.7, 55.1, 44.9, 0.0 -1.0256410256410255,1.03,a-cure-i1,2021-22,5.0,78.0,Fitchburg - South Street Elementary,00970060, 7.2, 2.9, 59.7, 22.0, 0.0, 0.0, 8.2, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,1.0,Florida - Abbott Memorial,00980005, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 56.7, 43.3, 0.0 -12.512820512820518,5,a-cure-i1,2021-22,12.200000000000001,15.599999999999994,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.9, 1.8, 5.5, 84.4, 0.5, 0.0, 6.9, 43.6, 55.5, 0.9 -1,1,a-cure-i1,2021-22,0.0,23.799999999999997,Foxborough - Charles Taylor Elementary,00990050, 5.6, 4.8, 8.1, 76.2, 0.0, 0.0, 5.2, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2021-22,0.3,20.900000000000006,Foxborough - Foxborough High,00990505, 8.3, 3.2, 6.6, 79.1, 0.6, 0.0, 2.1, 52.2, 47.7, 0.1 -1,1,a-cure-i1,2021-22,3.5,24.0,Foxborough - John J Ahern,00990405, 6.4, 4.8, 7.7, 76.0, 0.4, 0.1, 4.6, 52.1, 47.9, 0.0 -4.133971291866028,4.13,a-cure-i1,2021-22,5.4,20.900000000000006,Foxborough - Mabelle M Burrell,00990015, 5.6, 5.3, 6.2, 79.1, 0.3, 0.0, 3.5, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2021-22,2.5,28.700000000000003,Foxborough - Vincent M Igo Elementary,00990020, 7.0, 6.4, 9.3, 71.3, 0.0, 0.3, 5.8, 55.7, 44.3, 0.0 -2.6736842105263157,2.67,a-cure-i1,2021-22,12.7,76.0,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 54.8, 8.9, 6.7, 24.0, 0.4, 0.2, 5.1, 47.8, 52.2, 0.0 -8.703703703703702,5,a-cure-i1,2021-22,47.0,86.4,Framingham - Barbieri Elementary,01000035, 2.8, 0.4, 79.6, 13.6, 0.0, 0.0, 3.4, 48.4, 51.6, 0.0 -6.105849582172702,5,a-cure-i1,2021-22,27.4,71.8,Framingham - Brophy,01000006, 5.8, 3.0, 58.1, 28.2, 0.2, 0.0, 4.7, 53.8, 46.2, 0.0 -7.325842696629215,5,a-cure-i1,2021-22,16.3,35.599999999999994,Framingham - Cameron Middle School,01000302, 6.0, 1.9, 23.6, 64.4, 0.0, 0.0, 4.1, 52.7, 47.3, 0.0 -2.7936507936507935,2.79,a-cure-i1,2021-22,7.7,44.1,Framingham - Charlotte A Dunning,01000007, 7.0, 8.5, 25.1, 55.9, 0.0, 0.0, 3.5, 56.1, 43.9, 0.0 -4.312499999999999,4.31,a-cure-i1,2021-22,13.799999999999999,51.2,Framingham - Framingham High School,01000515, 6.4, 4.7, 35.9, 48.8, 0.0, 0.1, 4.0, 50.2, 49.7, 0.1 -4.688888888888888,4.69,a-cure-i1,2021-22,21.099999999999998,72.0,Framingham - Fuller Middle,01000305, 7.6, 1.4, 59.0, 28.0, 0.2, 0.0, 3.8, 51.9, 47.8, 0.3 -4.661951909476662,4.66,a-cure-i1,2021-22,20.6,70.7,Framingham - Harmony Grove Elementary,01000055, 9.8, 1.4, 57.2, 29.3, 0.2, 0.0, 2.2, 57.4, 42.4, 0.2 -1.9834710743801653,1.98,a-cure-i1,2021-22,6.0,48.4,Framingham - Hemenway,01000015, 6.9, 9.5, 23.2, 51.6, 0.2, 0.0, 8.6, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,4.8,58.3,Framingham - Juniper Hill School,01000001, 5.1, 7.9, 37.0, 41.7, 0.0, 0.4, 7.9, 61.8, 38.2, 0.0 -1,1,a-cure-i1,2021-22,4.3,43.6,Framingham - King Elementary School,01000005, 5.6, 10.6, 18.9, 56.4, 0.0, 0.0, 8.6, 53.6, 46.1, 0.3 -1,1,a-cure-i1,2021-22,1.2,61.3,Framingham - Mary E Stapleton Elementary,01000045, 7.7, 6.7, 39.4, 38.7, 0.0, 0.0, 7.4, 54.9, 45.1, 0.0 -1.6802507836990597,1.68,a-cure-i1,2021-22,6.7,63.8,Framingham - Miriam F McCarthy School,01000050, 11.8, 2.6, 41.1, 36.2, 0.0, 0.2, 8.1, 47.1, 52.7, 0.2 -6.352941176470589,5,a-cure-i1,2021-22,21.6,54.4,Framingham - Potter Road,01000039, 7.4, 1.9, 39.1, 45.6, 0.2, 0.0, 5.9, 51.3, 48.7, 0.0 -4.179337231968812,4.18,a-cure-i1,2021-22,13.4,51.3,Framingham - Walsh Middle,01000310, 4.8, 5.9, 37.1, 48.7, 0.0, 0.0, 3.5, 47.7, 52.1, 0.1 -11.831932773109239,5,a-cure-i1,2021-22,8.8,11.900000000000006,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 2.1, 2.3, 4.1, 88.1, 0.0, 0.0, 3.4, 42.0, 57.5, 0.5 -1,1,a-cure-i1,2021-22,0.0,15.0,Franklin - Annie Sullivan Middle School,01010040, 4.0, 4.6, 5.8, 85.0, 0.0, 0.3, 0.3, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,30.0,Franklin - Franklin Early Childhood Development Center,01010003, 2.3, 22.3, 1.5, 70.0, 0.0, 0.0, 3.8, 58.5, 41.5, 0.0 -1,1,a-cure-i1,2021-22,2.2,16.299999999999997,Franklin - Franklin High,01010505, 1.7, 7.7, 4.4, 83.7, 0.1, 0.2, 2.1, 49.6, 50.0, 0.4 -1,1,a-cure-i1,2021-22,0.0,14.299999999999997,Franklin - Helen Keller Elementary,01010012, 2.0, 3.1, 6.1, 85.7, 0.0, 0.7, 2.4, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.700000000000003,Franklin - Horace Mann,01010405, 1.6, 6.0, 4.1, 84.3, 0.0, 1.1, 2.7, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.099999999999994,Franklin - J F Kennedy Memorial,01010013, 0.0, 5.9, 4.4, 85.9, 0.3, 2.4, 1.2, 55.3, 44.1, 0.6 -1,1,a-cure-i1,2021-22,0.0,17.400000000000006,Franklin - Jefferson Elementary,01010010, 2.7, 6.0, 6.0, 82.6, 0.0, 0.6, 2.1, 58.9, 41.1, 0.0 -1,1,a-cure-i1,2021-22,4.7,19.599999999999994,Franklin - Oak Street Elementary,01010030, 1.9, 8.0, 5.9, 80.4, 0.0, 0.3, 3.5, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.900000000000006,Franklin - Parmenter,01010032, 5.3, 5.3, 9.3, 76.1, 0.0, 1.0, 3.0, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.5,Franklin - Remington Middle,01010310, 2.6, 7.1, 7.1, 81.5, 0.0, 0.3, 1.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.700000000000003,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.2, 0.0, 7.4, 88.3, 0.2, 0.5, 2.4, 59.9, 40.1, 0.0 -1,1,a-cure-i1,2021-22,4.1,7.799999999999997,Freetown-Lakeville - Apponequet Regional High,06650505, 2.6, 0.6, 2.6, 92.2, 0.0, 0.1, 1.8, 46.5, 53.1, 0.4 -1,1,a-cure-i1,2021-22,0.0,13.299999999999997,Freetown-Lakeville - Assawompset Elementary School,06650002, 3.9, 0.6, 3.1, 86.7, 0.0, 0.0, 5.6, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.700000000000003,Freetown-Lakeville - Freetown Elementary School,06650001, 0.9, 0.5, 2.8, 93.3, 0.0, 0.0, 2.5, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2021-22,4.8,6.799999999999997,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 3.0, 0.9, 1.0, 93.2, 0.0, 0.0, 1.9, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.700000000000003,Freetown-Lakeville - George R Austin Intermediate School,06650015, 2.5, 0.2, 3.8, 90.3, 0.0, 0.0, 3.1, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,4.2,15.700000000000003,Frontier - Frontier Regional,06700505, 1.6, 2.5, 7.2, 84.3, 0.0, 0.2, 4.3, 52.1, 47.9, 0.0 -2.8944723618090453,2.89,a-cure-i1,2021-22,7.2,39.8,Gardner - Elm Street School,01030001, 2.8, 1.1, 29.7, 60.2, 0.0, 0.0, 6.3, 53.2, 46.5, 0.2 -1,1,a-cure-i1,2021-22,0.0,29.200000000000003,Gardner - Gardner Academy for Learning and Technology,01030515, 8.3, 1.0, 16.7, 70.8, 0.0, 0.0, 3.1, 49.0, 51.0, 0.0 -3.2173913043478266,3.22,a-cure-i1,2021-22,7.4,36.8,Gardner - Gardner High,01030505, 4.1, 2.0, 22.0, 63.2, 0.1, 0.0, 8.5, 52.4, 47.4, 0.1 -2.1836228287841193,2.18,a-cure-i1,2021-22,5.5,40.3,Gardner - Gardner Middle School,01030405, 2.7, 1.7, 25.1, 59.7, 0.2, 0.0, 10.6, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,38.9,Gardner - Waterford Street,01030020, 1.4, 2.1, 29.2, 61.1, 0.2, 0.0, 6.0, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.0,Gateway - Chester Elementary,06720059, 0.0, 1.7, 3.4, 94.0, 0.0, 0.0, 0.9, 59.5, 40.5, 0.0 -12.173913043478256,5,a-cure-i1,2021-22,7.0,9.200000000000003,Gateway - Gateway Regional High,06720505, 0.6, 0.0, 5.7, 90.8, 1.1, 0.0, 1.7, 52.3, 47.1, 0.6 -16.475247524752486,5,a-cure-i1,2021-22,10.4,10.099999999999994,Gateway - Gateway Regional Middle School,06720405, 1.4, 0.0, 5.8, 89.9, 0.0, 0.0, 2.9, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,8.5,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 6.9, 91.5, 0.0, 0.3, 1.3, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,4.6,9.0,Georgetown - Georgetown High School,01050505, 1.2, 1.2, 5.3, 91.0, 0.0, 0.3, 0.9, 49.4, 50.3, 0.3 -1,1,a-cure-i1,2021-22,2.3,6.900000000000006,Georgetown - Georgetown Middle School,01050305, 2.0, 0.5, 2.5, 93.1, 0.0, 0.5, 1.5, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.099999999999994,Georgetown - Penn Brook,01050010, 0.4, 0.9, 3.1, 92.9, 0.0, 0.0, 2.6, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,5.599999999999994,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 2.8, 94.4, 0.0, 0.0, 2.8, 57.7, 42.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.299999999999997,Gill-Montague - Gill Elementary,06740005, 0.8, 0.0, 5.9, 90.7, 0.0, 0.0, 2.5, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2021-22,2.3,20.799999999999997,Gill-Montague - Great Falls Middle,06740310, 1.0, 0.0, 12.0, 79.2, 0.0, 1.0, 6.8, 52.6, 46.9, 0.5 -1,1,a-cure-i1,2021-22,0.0,31.0,Gill-Montague - Hillcrest Elementary School,06740015, 2.1, 0.7, 21.1, 69.0, 0.0, 0.0, 7.0, 54.9, 45.1, 0.0 -4.404181184668989,4.4,a-cure-i1,2021-22,7.9,28.700000000000003,Gill-Montague - Sheffield Elementary School,06740050, 1.9, 1.0, 19.1, 71.3, 0.0, 0.5, 6.2, 57.4, 42.1, 0.5 -3.8333333333333335,3.83,a-cure-i1,2021-22,6.8999999999999995,28.799999999999997,Gill-Montague - Turners Fall High,06740505, 2.2, 0.0, 15.8, 71.2, 1.1, 0.0, 9.8, 44.6, 55.4, 0.0 -2.1698956780923995,2.17,a-cure-i1,2021-22,9.1,67.1,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 12.7, 1.6, 47.4, 32.9, 0.6, 0.0, 4.8, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.700000000000003,Gloucester - Beeman Memorial,01070010, 1.9, 0.9, 21.3, 71.3, 0.0, 0.0, 4.6, 44.8, 55.2, 0.0 -8.0,5,a-cure-i1,2021-22,7.5,15.0,Gloucester - East Gloucester Elementary,01070020, 0.6, 1.2, 10.2, 85.0, 0.0, 0.0, 3.0, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2021-22,3.5,18.900000000000006,Gloucester - Gloucester High,01070505, 1.4, 1.3, 11.8, 81.1, 0.5, 0.5, 3.4, 54.3, 44.8, 0.8 -1,1,a-cure-i1,2021-22,0.0,21.200000000000003,Gloucester - Gloucester PreSchool,01070025, 0.0, 3.8, 11.3, 78.8, 0.0, 0.0, 6.3, 63.8, 36.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.5,Gloucester - Plum Cove School,01070042, 1.4, 0.5, 5.1, 86.5, 0.0, 0.0, 6.5, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.599999999999994,Gloucester - Ralph B O'Maley Middle,01070305, 1.3, 1.1, 14.0, 79.4, 0.5, 0.2, 3.7, 51.7, 48.3, 0.0 -2.880886426592798,2.88,a-cure-i1,2021-22,6.5,36.1,Gloucester - Veterans Memorial,01070045, 5.6, 3.2, 23.1, 63.9, 0.0, 0.9, 3.2, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.599999999999994,Gloucester - West Parish,01070050, 1.3, 1.6, 7.5, 84.4, 0.3, 0.3, 4.6, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,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 -3.9272727272727277,3.93,a-cure-i1,2021-22,5.4,22.0,Grafton - Grafton High School,01100505, 2.1, 10.2, 6.5, 78.0, 0.2, 0.1, 2.9, 48.5, 51.4, 0.1 -1,1,a-cure-i1,2021-22,2.9,24.900000000000006,Grafton - Grafton Middle,01100305, 1.5, 12.2, 8.8, 75.1, 0.2, 0.0, 2.1, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.700000000000003,Grafton - Millbury Street Elementary School,01100200, 2.1, 17.0, 6.2, 71.3, 0.2, 0.0, 3.3, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,27.799999999999997,Grafton - North Grafton Elementary,01100025, 4.2, 12.2, 8.4, 72.2, 0.8, 0.0, 2.3, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.599999999999994,Grafton - North Street Elementary School,01100030, 2.0, 11.5, 5.0, 76.4, 0.6, 0.2, 4.3, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.900000000000006,Grafton - South Grafton Elementary,01100005, 4.0, 19.3, 8.4, 66.1, 0.4, 0.0, 1.8, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,1.0,17.799999999999997,Granby - East Meadow,01110004, 0.0, 1.3, 11.4, 82.2, 0.8, 0.0, 4.3, 49.5, 50.5, 0.0 -10.862385321100913,5,a-cure-i1,2021-22,7.4,10.900000000000006,Granby - Granby Jr Sr High School,01110505, 0.3, 1.0, 7.9, 89.1, 0.0, 0.0, 1.7, 57.4, 41.6, 1.0 -1,1,a-cure-i1,2021-22,0.0,41.6,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 7.3, 5.6, 20.5, 58.4, 0.2, 0.3, 7.7, 46.2, 53.2, 0.6 -1,1,a-cure-i1,2021-22,1.0,26.200000000000003,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 3.2, 2.0, 14.4, 73.8, 0.7, 0.0, 5.9, 55.6, 44.0, 0.4 -2.713780918727915,2.71,a-cure-i1,2021-22,14.4,84.9,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.4, 0.9, 82.2, 15.1, 0.0, 0.1, 0.3, 48.3, 51.4, 0.2 -2.1772151898734173,2.18,a-cure-i1,2021-22,8.6,63.2,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 5.7, 17.4, 36.7, 36.8, 0.3, 0.0, 3.2, 50.3, 49.2, 0.6 -2.269503546099291,2.27,a-cure-i1,2021-22,6.0,42.3,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 8.5, 1.2, 26.4, 57.7, 0.2, 0.1, 5.7, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,12.200000000000003,Greenfield - Discovery School at Four Corners,01140025, 0.4, 1.3, 8.9, 87.8, 0.0, 0.0, 1.7, 59.9, 40.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.5,Greenfield - Federal Street School,01140010, 2.0, 2.5, 23.2, 68.5, 0.0, 0.0, 3.9, 47.8, 52.2, 0.0 -3.821656050955413,3.82,a-cure-i1,2021-22,7.5,31.400000000000006,Greenfield - Greenfield High,01140505, 2.9, 2.0, 19.8, 68.6, 0.4, 0.0, 6.3, 49.9, 49.9, 0.2 -4.2384105960264895,4.24,a-cure-i1,2021-22,8.0,30.200000000000003,Greenfield - Greenfield Middle,01140305, 2.5, 0.8, 22.7, 69.8, 0.0, 0.0, 4.2, 50.7, 49.3, 0.0 -2.980392156862745,2.98,a-cure-i1,2021-22,7.6,40.8,Greenfield - Newton School,01140035, 3.3, 0.5, 33.2, 59.2, 0.0, 0.0, 3.8, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.5,Greenfield - The Academy of Early Learning at North Parish,01140005, 3.6, 1.2, 18.1, 73.5, 0.0, 0.0, 3.6, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.400000000000006,Groton-Dunstable - Boutwell School,06730001, 0.0, 7.2, 4.3, 82.6, 1.4, 0.0, 4.3, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.700000000000003,Groton-Dunstable - Florence Roche School,06730010, 1.7, 6.4, 4.2, 81.3, 0.4, 0.0, 6.0, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,4.4,14.099999999999994,Groton-Dunstable - Groton Dunstable Regional,06730505, 1.0, 7.4, 3.0, 85.9, 0.1, 0.3, 2.3, 51.1, 48.2, 0.7 -1,1,a-cure-i1,2021-22,1.6,15.5,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 1.8, 7.3, 2.9, 84.5, 0.1, 0.1, 3.2, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.799999999999997,Groton-Dunstable - Swallow/Union School,06730005, 1.3, 7.5, 7.1, 80.2, 0.3, 0.0, 3.6, 53.2, 46.8, 0.0 -3.5481171548117145,3.55,a-cure-i1,2021-22,5.3,23.900000000000006,Hadley - Hadley Elementary,01170015, 4.4, 4.4, 11.4, 76.1, 0.4, 0.7, 2.6, 55.9, 43.8, 0.4 -6.6991869918699205,5,a-cure-i1,2021-22,10.3,24.599999999999994,Hadley - Hopkins Academy,01170505, 5.1, 4.2, 8.5, 75.4, 0.4, 3.8, 2.5, 51.3, 47.9, 0.8 -1,1,a-cure-i1,2021-22,0.0,9.0,Halifax - Halifax Elementary,01180005, 1.8, 0.0, 5.0, 91.0, 0.4, 0.0, 2.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.0,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.8, 5.6, 10.4, 82.0, 0.0, 0.0, 1.2, 56.4, 43.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,8.299999999999997,Hamilton-Wenham - Cutler School,06750010, 0.0, 2.4, 2.0, 91.7, 0.0, 0.0, 4.0, 45.8, 54.2, 0.0 -11.809523809523814,5,a-cure-i1,2021-22,9.299999999999999,12.599999999999994,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.6, 4.5, 5.1, 87.4, 0.0, 0.0, 2.4, 46.1, 53.9, 0.0 -10.24,5,a-cure-i1,2021-22,6.4,10.0,Hamilton-Wenham - Miles River Middle,06750310, 0.3, 2.9, 2.6, 90.0, 0.0, 0.8, 3.4, 48.0, 52.0, 0.0 -11.51079136690647,5,a-cure-i1,2021-22,10.0,13.900000000000006,Hamilton-Wenham - Winthrop School,06750015, 1.0, 5.8, 4.5, 86.1, 0.0, 0.0, 2.6, 48.7, 51.3, 0.0 -1.8535286284953398,1.85,a-cure-i1,2021-22,8.700000000000001,75.1,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 28.9, 2.9, 39.2, 24.9, 1.3, 0.0, 2.9, 51.3, 48.6, 0.2 -3.633802816901408,3.63,a-cure-i1,2021-22,12.899999999999999,56.8,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 16.3, 1.4, 36.1, 43.2, 0.3, 0.0, 2.7, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.599999999999994,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.1, 0.0, 12.5, 82.4, 0.0, 0.0, 3.0, 53.0, 47.0, 0.0 -10.526315789473681,5,a-cure-i1,2021-22,10.0,15.200000000000003,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.8, 1.2, 6.9, 84.8, 0.0, 0.0, 5.4, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,1.6,19.599999999999994,Hampden-Wilbraham - Minnechaug Regional High,06800505, 3.6, 3.1, 8.8, 80.4, 0.5, 0.0, 3.5, 48.1, 51.8, 0.1 -1,1,a-cure-i1,2021-22,0.0,13.700000000000003,Hampden-Wilbraham - Soule Road,06800030, 2.9, 2.9, 4.1, 86.3, 0.0, 0.0, 3.8, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.700000000000003,Hampden-Wilbraham - Stony Hill School,06800050, 2.3, 1.6, 8.9, 82.3, 0.0, 0.7, 4.3, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.0,Hampden-Wilbraham - Wilbraham Middle,06800310, 2.2, 1.9, 9.8, 83.0, 0.0, 0.0, 3.1, 52.2, 47.6, 0.2 -1,1,a-cure-i1,2021-22,0.0,9.200000000000003,Hampshire - Hampshire Regional High,06830505, 0.3, 1.2, 4.2, 90.8, 0.3, 0.0, 3.2, 45.1, 54.6, 0.3 -1,1,a-cure-i1,2021-22,0.0,8.799999999999997,Hancock - Hancock Elementary,01210005, 3.5, 3.5, 1.8, 91.2, 0.0, 0.0, 0.0, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.799999999999997,Hanover - Cedar Elementary,01220004, 1.3, 1.7, 3.4, 92.2, 0.2, 0.0, 1.3, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,3.3,6.5,Hanover - Center Elementary,01220005, 0.7, 1.5, 3.3, 93.5, 0.0, 0.0, 1.1, 51.8, 48.0, 0.2 -1,1,a-cure-i1,2021-22,3.6,6.299999999999997,Hanover - Hanover High,01220505, 1.6, 2.8, 1.3, 93.7, 0.0, 0.0, 0.7, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,1.9,7.400000000000006,Hanover - Hanover Middle,01220305, 1.5, 2.1, 2.9, 92.6, 0.0, 0.0, 0.9, 51.9, 48.1, 0.0 -6.899082568807341,5,a-cure-i1,2021-22,9.4,21.799999999999997,Harvard - Bromfield,01250505, 2.3, 12.2, 3.7, 78.2, 0.0, 0.0, 3.7, 47.3, 52.5, 0.2 -1,1,a-cure-i1,2021-22,3.2,26.5,Harvard - Hildreth Elementary School,01250005, 2.7, 12.2, 5.1, 73.5, 0.0, 0.0, 6.6, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.400000000000006,Hatfield - Hatfield Elementary,01270005, 0.5, 0.9, 3.2, 92.6, 0.0, 0.0, 2.8, 49.5, 50.0, 0.5 -1,1,a-cure-i1,2021-22,0.0,9.700000000000003,Hatfield - Smith Academy,01270505, 0.6, 1.7, 4.6, 90.3, 0.0, 0.0, 2.9, 50.3, 48.6, 1.1 -1,1,a-cure-i1,2021-22,0.0,51.9,Haverhill - Bartlett School and Assessment Center,01280073, 14.8, 0.0, 29.6, 48.1, 3.7, 0.0, 3.7, 74.1, 25.9, 0.0 -1.7971014492753623,1.8,a-cure-i1,2021-22,6.2,55.2,Haverhill - Bradford Elementary,01280008, 4.4, 1.6, 46.8, 44.8, 0.0, 0.0, 2.4, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2021-22,2.0,36.7,Haverhill - Caleb Dustin Hunking School,01280030, 5.4, 2.2, 26.3, 63.3, 0.1, 0.0, 2.8, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,2.4,62.7,Haverhill - Consentino Middle School,01280100, 4.8, 2.2, 52.6, 37.3, 0.1, 0.0, 3.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,78.9,Haverhill - Crowell,01280515, 10.5, 0.0, 68.4, 21.1, 0.0, 0.0, 0.0, 52.6, 47.4, 0.0 -1.636963696369637,1.64,a-cure-i1,2021-22,6.2,60.6,Haverhill - Dr Paul Nettle,01280050, 4.5, 1.7, 52.2, 39.4, 0.0, 0.0, 2.2, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,53.2,Haverhill - Golden Hill,01280026, 4.1, 1.4, 45.0, 46.8, 0.4, 0.0, 2.2, 50.1, 49.9, 0.0 -3.558320373250389,3.56,a-cure-i1,2021-22,14.3,64.3,Haverhill - Greenleaf Academy,01280033, 3.6, 0.0, 57.1, 35.7, 3.6, 0.0, 0.0, 75.0, 25.0, 0.0 -5.67741935483871,5,a-cure-i1,2021-22,16.5,46.5,Haverhill - Haverhill High,01280505, 5.2, 1.8, 37.4, 53.5, 0.3, 0.3, 1.6, 52.2, 47.6, 0.2 -2.2172284644194757,2.22,a-cure-i1,2021-22,7.4,53.4,Haverhill - John G Whittier,01280085, 5.6, 0.8, 43.7, 46.6, 0.6, 0.2, 2.7, 49.6, 50.2, 0.2 -1,1,a-cure-i1,2021-22,0.0,54.4,Haverhill - Moody,01280045, 10.9, 2.0, 40.8, 45.6, 0.0, 0.0, 0.7, 59.2, 40.8, 0.0 -5.947955390334573,5,a-cure-i1,2021-22,20.0,53.8,Haverhill - Moody Preschool Extension,01280001, 6.4, 3.8, 43.6, 46.2, 0.0, 0.0, 0.0, 69.2, 30.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,60.5,Haverhill - Pentucket Lake Elementary,01280054, 7.1, 1.0, 48.7, 39.5, 0.2, 0.0, 3.3, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,3.4,59.2,Haverhill - Silver Hill Elementary School,01280067, 6.6, 3.7, 45.5, 40.8, 0.2, 0.0, 3.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,63.7,Haverhill - Tilton,01280075, 5.0, 0.3, 55.5, 36.3, 0.3, 0.0, 2.7, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,71.6,Haverhill - Tilton Upper Middle School,01280105, 4.9, 1.2, 63.0, 28.4, 0.0, 0.0, 2.5, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,39.5,Haverhill - Walnut Square,01280080, 1.7, 0.8, 34.5, 60.5, 0.0, 0.0, 2.5, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.799999999999997,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 5.7, 90.2, 0.8, 0.0, 3.3, 39.0, 61.0, 0.0 -14.02028397565923,5,a-cure-i1,2021-22,86.4,98.6,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 85.5, 0.0, 11.6, 1.4, 0.0, 0.7, 0.7, 45.7, 54.3, 0.0 -2.058252427184466,2.06,a-cure-i1,2021-22,5.3,41.2,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 5.2, 0.0, 31.4, 58.8, 0.0, 0.0, 4.6, 51.0, 49.0, 0.0 -8.533333333333333,5,a-cure-i1,2021-22,9.6,18.0,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.8, 2.3, 82.0, 0.0, 0.0, 12.9, 53.9, 45.2, 0.9 -1,1,a-cure-i1,2021-22,3.3,8.0,Hingham - East Elementary School,01310005, 1.6, 1.8, 2.0, 92.0, 0.0, 0.4, 2.0, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,1.2,12.400000000000006,Hingham - Hingham High,01310505, 1.8, 3.5, 3.7, 87.6, 0.1, 0.0, 3.3, 52.2, 47.4, 0.4 -8.133333333333333,5,a-cure-i1,2021-22,6.1,12.0,Hingham - Hingham Middle School,01310410, 1.8, 3.0, 4.4, 88.0, 0.0, 0.0, 2.7, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.700000000000003,Hingham - Plymouth River,01310019, 4.8, 2.1, 5.4, 85.3, 0.3, 0.0, 2.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,3.6,13.799999999999997,Hingham - South Elementary,01310020, 3.8, 5.8, 2.2, 86.2, 0.0, 0.0, 2.0, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.599999999999994,Hingham - Wm L Foster Elementary,01310010, 1.0, 1.7, 4.1, 85.4, 0.0, 0.2, 7.6, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,55.1,Holbrook - Holbrook Middle High School,01330505, 25.5, 7.4, 13.4, 44.9, 0.5, 0.0, 8.3, 50.5, 49.2, 0.3 -1,1,a-cure-i1,2021-22,0.0,50.6,Holbrook - John F Kennedy,01330018, 20.2, 4.9, 16.9, 49.4, 0.3, 0.0, 8.3, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.599999999999994,Holland - Holland Elementary,01350005, 0.9, 1.8, 5.8, 89.4, 0.4, 0.0, 1.8, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,1.7,19.0,Holliston - Holliston High,01360505, 0.9, 8.6, 6.4, 81.0, 0.4, 0.0, 2.7, 49.6, 50.1, 0.2 -1,1,a-cure-i1,2021-22,3.8,19.700000000000003,Holliston - Miller School,01360007, 0.7, 9.0, 5.6, 80.3, 0.2, 0.3, 3.9, 53.4, 46.3, 0.3 -1,1,a-cure-i1,2021-22,2.3,20.400000000000006,Holliston - Placentino Elementary,01360010, 2.2, 13.3, 2.1, 79.6, 0.6, 0.7, 1.4, 54.6, 45.1, 0.3 -1,1,a-cure-i1,2021-22,2.6,21.900000000000006,Holliston - Robert H. Adams Middle School,01360305, 1.5, 10.2, 6.1, 78.1, 0.6, 0.1, 3.4, 51.2, 48.7, 0.1 -7.382978723404255,5,a-cure-i1,2021-22,34.7,75.2,Holyoke - E N White Elementary,01370045, 3.4, 0.5, 68.4, 24.8, 0.0, 0.0, 2.9, 49.6, 50.4, 0.0 -3.0288770053475935,3.03,a-cure-i1,2021-22,17.7,93.5,Holyoke - H.B. Lawrence School,01370070, 4.8, 0.5, 86.6, 6.5, 0.0, 0.0, 1.6, 50.5, 49.5, 0.0 -5.707602339181286,5,a-cure-i1,2021-22,30.5,85.5,Holyoke - Holyoke High,01370505, 3.4, 0.5, 80.2, 14.5, 0.1, 0.1, 1.1, 52.3, 47.3, 0.3 -2.675893886966551,2.68,a-cure-i1,2021-22,14.5,86.7,Holyoke - Holyoke STEM Academy,01370320, 3.5, 0.0, 81.3, 13.3, 0.0, 0.0, 2.0, 59.4, 40.6, 0.0 -10.144853875476493,5,a-cure-i1,2021-22,49.9,78.7,Holyoke - Joseph Metcalf School,01370003, 1.7, 0.0, 74.9, 21.3, 0.0, 0.0, 2.0, 45.8, 54.2, 0.0 -3.393939393939393,3.39,a-cure-i1,2021-22,20.299999999999997,95.7,Holyoke - Kelly Elementary,01370040, 3.6, 0.0, 91.4, 4.3, 0.0, 0.0, 0.7, 49.5, 50.5, 0.0 -3.111602209944752,3.11,a-cure-i1,2021-22,17.6,90.5,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.0, 1.1, 85.8, 9.5, 0.0, 0.0, 1.6, 53.4, 46.6, 0.0 -2.139402560455192,2.14,a-cure-i1,2021-22,9.4,70.3,Holyoke - Lt Elmer J McMahon Elementary,01370015, 2.6, 2.0, 62.5, 29.7, 0.0, 0.0, 3.2, 54.7, 45.3, 0.0 -4.338983050847458,4.34,a-cure-i1,2021-22,24.0,88.5,Holyoke - Maurice A Donahue Elementary,01370060, 4.3, 0.5, 82.1, 11.5, 0.0, 0.3, 1.3, 55.0, 45.0, 0.0 -1.950413223140496,1.95,a-cure-i1,2021-22,11.8,96.8,Holyoke - Morgan Full Service Community School,01370025, 5.3, 0.0, 90.8, 3.2, 0.0, 0.0, 0.7, 47.7, 52.3, 0.0 -8.15494393476045,5,a-cure-i1,2021-22,50.0,98.1,Holyoke - Veritas Prep Holyoke,01370075, 4.1, 0.7, 92.6, 1.9, 0.0, 0.0, 0.7, 51.8, 48.2, 0.0 -6.167209554831705,5,a-cure-i1,2021-22,35.5,92.1,Holyoke - William R. Peck School,01370030, 6.9, 0.0, 81.9, 7.9, 0.0, 0.0, 3.2, 51.4, 48.6, 0.0 -4.937048503611972,4.94,a-cure-i1,2021-22,29.900000000000002,96.9,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.1, 0.9, 93.4, 3.1, 0.0, 0.0, 1.5, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.0,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.7, 0.8, 3.9, 90.0, 0.3, 0.3, 3.1, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.700000000000003,Hoosac Valley Regional - Hoosac Valley High School,06030505, 4.7, 0.0, 2.4, 90.3, 0.6, 0.0, 2.1, 50.9, 48.8, 0.3 -1,1,a-cure-i1,2021-22,0.0,9.099999999999994,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 3.2, 0.3, 3.2, 90.9, 0.0, 0.0, 2.3, 50.0, 50.0, 0.0 -5.057471264367814,5,a-cure-i1,2021-22,5.5,17.400000000000006,Hopedale - Hopedale Jr Sr High,01380505, 1.1, 2.8, 11.3, 82.6, 0.2, 0.4, 1.7, 50.7, 48.8, 0.4 -1,1,a-cure-i1,2021-22,0.0,20.599999999999994,Hopedale - Memorial,01380010, 0.7, 1.5, 12.2, 79.4, 0.2, 0.0, 6.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.0,Hopedale - Park Street School,01380003, 1.1, 0.0, 6.4, 83.0, 0.0, 0.0, 9.6, 52.1, 47.9, 0.0 -2.018691588785047,2.02,a-cure-i1,2021-22,5.4,42.8,Hopkinton - Elmwood,01390010, 0.5, 31.7, 4.0, 57.2, 0.2, 0.0, 6.4, 50.6, 49.4, 0.0 -2.206896551724138,2.21,a-cure-i1,2021-22,5.6,40.6,Hopkinton - Hopkins Elementary School,01390015, 0.8, 31.7, 4.4, 59.4, 0.2, 0.0, 3.4, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2021-22,3.7,27.900000000000006,Hopkinton - Hopkinton High,01390505, 0.9, 18.9, 4.2, 72.1, 0.4, 0.0, 3.5, 49.6, 50.2, 0.2 -1,1,a-cure-i1,2021-22,4.6,34.7,Hopkinton - Hopkinton Middle School,01390305, 0.8, 25.4, 3.6, 65.3, 0.4, 0.0, 4.6, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,53.2,Hopkinton - Hopkinton Pre-School,01390003, 1.3, 40.5, 2.5, 46.8, 0.0, 0.0, 8.9, 50.6, 49.4, 0.0 -1.971563981042654,1.97,a-cure-i1,2021-22,5.2,42.2,Hopkinton - Marathon Elementary School,01390005, 0.4, 30.5, 5.3, 57.8, 0.4, 0.0, 5.7, 55.4, 44.4, 0.2 -1,1,a-cure-i1,2021-22,3.8,26.900000000000006,Hudson - C A Farley,01410030, 2.5, 2.0, 19.7, 73.1, 0.0, 0.0, 2.7, 49.9, 50.1, 0.0 -3.6190476190476186,3.62,a-cure-i1,2021-22,5.7,25.200000000000003,Hudson - David J. Quinn Middle School,01410410, 3.3, 1.1, 17.4, 74.8, 0.0, 0.0, 3.5, 47.5, 52.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,22.299999999999997,Hudson - Forest Avenue Elementary,01410015, 3.1, 1.6, 14.2, 77.7, 0.6, 0.0, 2.8, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,3.0,19.900000000000006,Hudson - Hudson High,01410505, 2.6, 1.6, 12.8, 80.1, 0.1, 0.0, 2.8, 46.2, 53.5, 0.4 -1,1,a-cure-i1,2021-22,0.0,21.400000000000006,Hudson - Mulready Elementary,01410007, 2.1, 1.7, 14.5, 78.6, 0.0, 0.0, 3.0, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.299999999999997,Hull - Hull High,01420505, 1.2, 1.2, 3.6, 92.7, 0.0, 0.0, 1.2, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.099999999999994,Hull - Lillian M Jacobs,01420015, 2.1, 0.8, 3.7, 89.9, 0.3, 0.0, 3.2, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.099999999999994,Hull - Memorial Middle,01420305, 0.6, 2.8, 3.4, 89.9, 0.6, 0.0, 2.8, 52.5, 47.5, 0.0 -4.2823529411764705,4.28,a-cure-i1,2021-22,9.1,34.0,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 7.7, 8.9, 11.0, 66.0, 0.4, 0.0, 6.1, 47.4, 52.1, 0.5 -1,1,a-cure-i1,2021-22,0.0,13.400000000000006,Ipswich - Ipswich High,01440505, 1.5, 1.5, 6.3, 86.6, 0.2, 0.0, 4.0, 47.2, 52.7, 0.2 -1,1,a-cure-i1,2021-22,3.3,14.200000000000003,Ipswich - Ipswich Middle School,01440305, 1.1, 1.9, 7.5, 85.8, 0.0, 0.0, 3.6, 48.9, 50.3, 0.8 -1,1,a-cure-i1,2021-22,3.4,10.599999999999994,Ipswich - Paul F Doyon Memorial,01440007, 0.3, 0.9, 6.3, 89.4, 0.6, 0.0, 2.6, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,3.2,17.099999999999994,Ipswich - Winthrop,01440015, 0.5, 0.8, 10.2, 82.9, 0.0, 0.0, 5.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,2.1,14.299999999999997,King Philip - King Philip Middle School,06900510, 1.7, 2.7, 5.6, 85.7, 0.3, 0.0, 4.1, 52.4, 47.3, 0.3 -1,1,a-cure-i1,2021-22,3.5999999999999996,12.700000000000003,King Philip - King Philip Regional High,06900505, 2.7, 3.2, 4.2, 87.3, 0.2, 0.0, 2.4, 49.7, 50.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,7.400000000000006,Kingston - Kingston Elementary,01450005, 0.7, 0.9, 4.6, 92.6, 0.2, 0.2, 0.9, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,4.900000000000006,Kingston - Kingston Intermediate,01450020, 0.3, 0.3, 2.7, 95.1, 0.3, 0.0, 1.2, 51.2, 48.8, 0.0 -11.634904714142424,5,a-cure-i1,2021-22,72.49999999999999,99.7,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 63.8, 0.0, 33.5, 0.3, 0.5, 0.2, 1.7, 51.8, 48.2, 0.0 -8.888888888888888,5,a-cure-i1,2021-22,52.49999999999999,94.5,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 17.5, 3.3, 70.9, 5.5, 0.2, 0.1, 2.5, 49.9, 50.0, 0.1 -1.2879256965944272,1.29,a-cure-i1,2021-22,7.8,96.9,Lawrence - Alexander B Bruce,01490015, 1.3, 1.6, 93.6, 3.1, 0.0, 0.0, 0.4, 50.8, 49.0, 0.2 -1.641025641025641,1.64,a-cure-i1,2021-22,10.0,97.5,Lawrence - Arlington Elementary,01490009, 1.2, 0.0, 96.1, 2.5, 0.0, 0.2, 0.0, 49.8, 49.1, 1.1 -2.195121951219512,2.2,a-cure-i1,2021-22,13.5,98.4,Lawrence - Arlington Middle School,01490017, 0.5, 0.0, 97.3, 1.6, 0.2, 0.0, 0.4, 50.4, 49.4, 0.2 -1.8385093167701865,1.84,a-cure-i1,2021-22,11.1,96.6,Lawrence - Edward F. Parthum,01490053, 1.5, 0.0, 94.8, 3.4, 0.0, 0.0, 0.3, 52.4, 47.3, 0.3 -1,1,a-cure-i1,2021-22,4.9,96.2,Lawrence - Emily G Wetherbee,01490080, 0.9, 1.1, 93.8, 3.8, 0.0, 0.0, 0.4, 50.1, 49.7, 0.2 -1,1,a-cure-i1,2021-22,4.2,98.2,Lawrence - Francis M Leahy,01490040, 0.5, 0.0, 97.7, 1.8, 0.0, 0.0, 0.0, 54.5, 45.5, 0.0 -2.740899357601713,2.74,a-cure-i1,2021-22,16.0,93.4,Lawrence - Frost Middle School,01490525, 1.9, 1.5, 88.8, 6.6, 0.0, 0.0, 1.1, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,3.6,97.5,Lawrence - Gerard A. Guilmette,01490022, 1.7, 1.1, 94.7, 2.5, 0.0, 0.0, 0.0, 53.2, 46.8, 0.0 -2.5801217038539557,2.58,a-cure-i1,2021-22,15.9,98.6,Lawrence - Guilmette Middle School,01490025, 2.4, 1.0, 94.6, 1.4, 0.0, 0.0, 0.6, 54.6, 45.4, 0.0 -4.390852390852391,4.39,a-cure-i1,2021-22,26.400000000000002,96.2,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 95.7, 3.8, 0.0, 0.0, 0.5, 66.8, 33.2, 0.0 -4.466257668711656,4.47,a-cure-i1,2021-22,27.3,97.8,Lawrence - James F Hennessey,01490020, 1.9, 1.0, 94.2, 2.2, 0.0, 0.0, 0.6, 53.8, 46.2, 0.0 -0.9817007534983854,1,a-cure-i1,2021-22,5.7,92.9,Lawrence - John Breen School,01490003, 2.4, 0.8, 89.3, 7.1, 0.0, 0.0, 0.4, 50.4, 49.6, 0.0 -0.9124236252545824,1,a-cure-i1,2021-22,5.6,98.2,Lawrence - John K Tarbox,01490075, 1.1, 0.4, 96.4, 1.8, 0.0, 0.0, 0.4, 56.2, 43.8, 0.0 -3.2262026612077785,3.23,a-cure-i1,2021-22,19.7,97.7,Lawrence - Lawlor Early Childhood Center,01490002, 1.5, 0.0, 94.0, 2.3, 0.0, 0.0, 2.3, 45.1, 54.9, 0.0 -2.74051282051282,2.74,a-cure-i1,2021-22,16.7,97.5,Lawrence - Lawrence Family Public Academy,01490011, 2.5, 3.1, 90.7, 2.5, 0.0, 0.6, 0.6, 55.6, 44.4, 0.0 -4.993839835728952,4.99,a-cure-i1,2021-22,30.4,97.4,Lawrence - Lawrence High School,01490515, 1.5, 1.5, 93.9, 2.6, 0.0, 0.0, 0.4, 51.9, 47.9, 0.3 -4.711656441717792,4.71,a-cure-i1,2021-22,28.8,97.8,Lawrence - Oliver Partnership School,01490048, 1.1, 0.2, 96.3, 2.2, 0.0, 0.0, 0.2, 47.9, 52.1, 0.0 -2.686131386861314,2.69,a-cure-i1,2021-22,16.1,95.9,Lawrence - Parthum Middle School,01490027, 0.7, 0.5, 94.3, 4.1, 0.0, 0.0, 0.4, 52.6, 47.4, 0.0 -1.9364102564102565,1.94,a-cure-i1,2021-22,11.8,97.5,Lawrence - RISE Academy,01490615, 1.3, 0.0, 96.2, 2.5, 0.0, 0.0, 0.0, 83.5, 16.5, 0.0 -2.271077908217716,2.27,a-cure-i1,2021-22,13.3,93.7,Lawrence - Robert Frost,01490018, 2.6, 3.3, 86.5, 6.3, 0.0, 0.0, 1.3, 53.0, 46.8, 0.2 -2.961093585699264,2.96,a-cure-i1,2021-22,17.6,95.1,Lawrence - Rollins Early Childhood Center,01490001, 1.2, 1.2, 91.4, 4.9, 0.0, 0.0, 1.2, 60.1, 39.9, 0.0 -5.5064935064935066,5,a-cure-i1,2021-22,31.8,92.4,Lawrence - School for Exceptional Studies,01490537, 2.9, 0.0, 88.6, 7.6, 0.0, 0.0, 1.0, 85.7, 14.3, 0.0 -0.9636552440290758,1,a-cure-i1,2021-22,5.8,96.3,Lawrence - South Lawrence East Elementary School,01490004, 2.0, 2.6, 90.8, 3.7, 0.0, 0.0, 0.9, 51.6, 48.0, 0.4 -5.028095733610822,5,a-cure-i1,2021-22,30.2,96.1,Lawrence - Spark Academy,01490085, 0.9, 0.7, 94.5, 3.9, 0.0, 0.0, 0.0, 55.0, 45.0, 0.0 -4.7967145790554415,4.8,a-cure-i1,2021-22,29.2,97.4,Lawrence - UP Academy Leonard Middle School,01490090, 0.3, 0.0, 97.1, 2.6, 0.0, 0.0, 0.0, 51.2, 48.8, 0.0 -3.111566018423746,3.11,a-cure-i1,2021-22,19.0,97.7,Lawrence - UP Academy Oliver Middle School,01490049, 1.0, 1.0, 95.8, 2.3, 0.0, 0.0, 0.0, 55.0, 44.4, 0.6 -2.0988900100908174,2.1,a-cure-i1,2021-22,13.0,99.1,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.3, 0.0, 98.7, 0.9, 0.0, 0.0, 0.1, 44.6, 55.4, 0.0 -1.8382978723404257,1.84,a-cure-i1,2021-22,10.8,94.0,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 46.8, 0.6, 44.9, 6.0, 0.0, 0.0, 1.8, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2021-22,2.8,12.299999999999997,Lee - Lee Elementary,01500025, 1.2, 2.1, 7.2, 87.7, 0.3, 0.0, 1.5, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2021-22,2.8,18.400000000000006,Lee - Lee Middle/High School,01500505, 0.6, 4.0, 10.1, 81.6, 0.0, 0.0, 3.7, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,29.5,Leicester - Leicester Elementary,01510005, 5.8, 3.0, 17.3, 70.5, 0.0, 0.0, 3.4, 49.6, 50.4, 0.0 -6.412955465587043,5,a-cure-i1,2021-22,9.899999999999999,24.700000000000003,Leicester - Leicester High,01510505, 5.5, 3.5, 12.7, 75.3, 0.0, 0.0, 3.0, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,30.400000000000006,Leicester - Leicester Integrated Preschool,01510001, 10.9, 0.0, 17.4, 69.6, 0.0, 0.0, 2.2, 41.3, 58.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.200000000000003,Leicester - Leicester Middle,01510015, 5.6, 2.7, 14.1, 74.8, 0.0, 0.0, 2.9, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.599999999999994,Lenox - Lenox Memorial High,01520505, 0.5, 4.9, 8.7, 82.4, 0.0, 0.0, 3.5, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.900000000000006,Lenox - Morris,01520015, 1.0, 5.1, 7.8, 80.1, 0.0, 0.7, 5.4, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,50.6,Leominster - Bennett,01530003, 16.5, 3.5, 25.9, 49.4, 0.0, 0.0, 4.7, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,3.0,54.5,Leominster - Center For Technical Education Innovation,01530605, 8.5, 2.9, 39.5, 45.5, 0.0, 0.3, 3.2, 64.4, 35.6, 0.0 -1.988527724665392,1.99,a-cure-i1,2021-22,6.5,52.3,Leominster - Fall Brook,01530007, 10.3, 2.8, 32.9, 47.7, 0.0, 0.0, 6.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,64.7,Leominster - Frances Drake School,01530010, 10.0, 3.9, 45.7, 35.3, 0.0, 0.0, 5.1, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,2.8,54.3,Leominster - Johnny Appleseed,01530025, 10.0, 2.1, 37.8, 45.7, 0.2, 0.0, 4.2, 49.3, 50.7, 0.0 -7.477806788511749,5,a-cure-i1,2021-22,17.9,38.3,Leominster - Leominster Center for Excellence,01530515, 4.3, 0.0, 29.8, 61.7, 0.0, 0.0, 4.3, 44.7, 48.9, 6.4 -1.7582417582417582,1.76,a-cure-i1,2021-22,6.0,54.6,Leominster - Leominster High School,01530505, 8.8, 4.7, 37.6, 45.4, 0.2, 0.0, 3.3, 43.1, 56.7, 0.2 -1,1,a-cure-i1,2021-22,0.0,75.9,Leominster - Lincoln School,01530005, 13.8, 6.9, 44.8, 24.1, 0.0, 0.0, 10.3, 37.9, 62.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,62.7,Leominster - Northwest,01530030, 6.8, 3.0, 48.2, 37.3, 0.0, 0.0, 4.7, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,70.2,Leominster - Priest Street,01530040, 4.6, 3.3, 55.0, 29.8, 0.0, 0.0, 7.3, 49.7, 50.3, 0.0 -1.6470588235294117,1.65,a-cure-i1,2021-22,5.6,54.4,Leominster - Samoset School,01530045, 7.0, 2.9, 40.1, 45.6, 0.2, 0.0, 4.1, 53.4, 46.4, 0.2 -1,1,a-cure-i1,2021-22,3.0,58.1,Leominster - Sky View Middle School,01530320, 9.5, 2.9, 40.5, 41.9, 0.1, 0.0, 5.1, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.299999999999997,Leverett - Leverett Elementary,01540005, 0.0, 2.1, 2.1, 84.7, 0.0, 0.0, 11.1, 51.4, 48.6, 0.0 -7.40587219343696,5,a-cure-i1,2021-22,26.8,57.9,Lexington - Bowman,01550008, 3.7, 38.4, 5.1, 42.1, 0.0, 0.0, 10.7, 49.8, 50.2, 0.0 -3.5238095238095237,3.52,a-cure-i1,2021-22,14.8,67.2,Lexington - Bridge,01550006, 6.1, 44.4, 7.8, 32.8, 0.0, 0.0, 8.9, 50.0, 50.0, 0.0 -1.8125000000000002,1.81,a-cure-i1,2021-22,5.800000000000001,51.2,Lexington - Fiske,01550015, 2.6, 31.6, 5.8, 48.8, 0.3, 0.0, 10.8, 56.7, 43.3, 0.0 -5.253731343283582,5,a-cure-i1,2021-22,19.8,60.3,Lexington - Harrington,01550030, 5.0, 42.3, 5.2, 39.7, 0.0, 0.0, 7.8, 48.2, 51.8, 0.0 -3.6274165202108968,3.63,a-cure-i1,2021-22,12.900000000000002,56.9,Lexington - Jonas Clarke Middle,01550305, 4.5, 42.3, 3.5, 43.1, 0.2, 0.0, 6.4, 53.3, 46.6, 0.1 -1,1,a-cure-i1,2021-22,0.0,65.8,Lexington - Joseph Estabrook,01550010, 3.8, 45.8, 5.9, 34.2, 0.0, 0.0, 10.3, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,67.2,Lexington - Lexington Children's Place,01550001, 4.5, 53.7, 3.0, 32.8, 0.0, 0.0, 6.0, 59.7, 40.3, 0.0 -3.6901893287435463,3.69,a-cure-i1,2021-22,13.400000000000002,58.1,Lexington - Lexington High,01550505, 3.9, 43.2, 4.4, 41.9, 0.0, 0.0, 6.6, 48.8, 50.9, 0.3 -6.275,5,a-cure-i1,2021-22,25.1,64.0,Lexington - Maria Hastings,01550035, 2.4, 45.9, 6.1, 36.0, 0.0, 0.0, 9.6, 52.0, 48.0, 0.0 -3.993254637436763,3.99,a-cure-i1,2021-22,14.8,59.3,Lexington - Wm Diamond Middle,01550310, 3.9, 43.5, 3.6, 40.7, 0.1, 0.0, 8.2, 51.7, 48.2, 0.1 -8.19551934826884,5,a-cure-i1,2021-22,50.300000000000004,98.2,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 13.6, 0.9, 80.7, 1.8, 0.6, 0.0, 2.4, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2021-22,2.0,46.1,Lincoln - Hanscom Middle,01570305, 9.6, 1.7, 26.1, 53.9, 0.4, 0.4, 7.8, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,4.1,40.5,Lincoln - Hanscom Primary,01570006, 5.6, 2.1, 21.5, 59.5, 0.0, 0.7, 10.6, 51.1, 48.9, 0.0 -2.528301886792453,2.53,a-cure-i1,2021-22,6.7,42.4,Lincoln - Lincoln School,01570025, 9.6, 8.2, 11.6, 57.6, 0.0, 0.0, 13.0, 49.6, 50.2, 0.2 -7.174603174603173,5,a-cure-i1,2021-22,11.299999999999999,25.200000000000003,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 5.8, 4.6, 5.7, 74.8, 0.1, 0.1, 9.0, 49.3, 50.4, 0.3 -1,1,a-cure-i1,2021-22,3.2,19.099999999999994,Littleton - Littleton High School,01580505, 1.3, 9.5, 4.4, 80.9, 0.2, 0.0, 3.5, 49.0, 50.1, 0.9 -1,1,a-cure-i1,2021-22,0.0,21.900000000000006,Littleton - Littleton Middle School,01580305, 1.8, 15.6, 2.8, 78.1, 0.3, 0.3, 1.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.599999999999994,Littleton - Russell St Elementary,01580015, 0.5, 12.9, 2.4, 82.4, 0.0, 0.0, 1.8, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,4.8,23.200000000000003,Littleton - Shaker Lane Elementary,01580005, 0.5, 19.4, 1.9, 76.8, 0.0, 0.5, 1.0, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.099999999999994,Longmeadow - Blueberry Hill,01590005, 1.5, 16.9, 4.9, 68.9, 0.0, 0.2, 7.6, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,3.3,19.200000000000003,Longmeadow - Center,01590010, 2.2, 3.6, 9.0, 80.8, 0.0, 0.0, 4.4, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,27.599999999999994,Longmeadow - Glenbrook Middle,01590017, 5.9, 11.6, 6.2, 72.4, 0.0, 0.0, 3.9, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2021-22,3.0999999999999996,22.099999999999994,Longmeadow - Longmeadow High,01590505, 2.4, 10.0, 6.4, 77.9, 0.0, 0.1, 3.2, 50.9, 48.7, 0.3 -1,1,a-cure-i1,2021-22,4.4,25.400000000000006,Longmeadow - Williams Middle,01590305, 1.0, 11.6, 7.1, 74.6, 0.0, 0.6, 5.1, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.200000000000003,Longmeadow - Wolf Swamp Road,01590025, 3.6, 8.7, 9.2, 73.8, 0.0, 0.0, 4.6, 54.4, 45.6, 0.0 -1.4085778781038376,1.41,a-cure-i1,2021-22,7.8,88.6,Lowell - Abraham Lincoln,01600020, 4.1, 46.9, 32.0, 11.4, 0.2, 0.2, 5.2, 50.2, 49.8, 0.0 -2.265306122448979,2.27,a-cure-i1,2021-22,11.1,78.4,Lowell - B.F. Butler Middle School,01600310, 6.8, 31.7, 34.8, 21.6, 0.0, 0.0, 5.2, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2021-22,4.9,87.9,Lowell - Bartlett Community Partnership,01600090, 8.9, 38.1, 37.4, 12.1, 0.2, 0.0, 3.2, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,83.3,Lowell - Cardinal O'Connell Early Learning Center,01600001, 11.9, 23.8, 40.5, 16.7, 1.2, 0.0, 6.0, 63.1, 36.9, 0.0 -2.0894117647058827,2.09,a-cure-i1,2021-22,11.100000000000001,85.0,Lowell - Charles W Morey,01600030, 4.2, 59.4, 16.3, 15.0, 0.0, 0.0, 5.1, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,83.9,Lowell - Charlotte M Murkland Elementary,01600080, 7.3, 30.5, 43.0, 16.1, 0.2, 0.0, 2.9, 51.9, 48.1, 0.0 -1.3186813186813187,1.32,a-cure-i1,2021-22,6.0,72.8,Lowell - Dr An Wang School,01600345, 9.8, 18.2, 39.2, 27.2, 0.0, 0.0, 5.6, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,3.7,75.7,Lowell - Dr Gertrude Bailey,01600002, 4.4, 42.5, 23.7, 24.3, 0.0, 0.0, 5.0, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,63.5,Lowell - Dr. Janice Adie Day School,01600605, 15.4, 15.4, 25.0, 36.5, 1.9, 0.0, 5.8, 76.9, 23.1, 0.0 -1.4267515923566878,1.43,a-cure-i1,2021-22,7.0,78.5,Lowell - Greenhalge,01600015, 12.9, 12.3, 49.7, 21.5, 0.0, 0.0, 3.7, 52.7, 47.3, 0.0 -5.305039787798408,5,a-cure-i1,2021-22,25.0,75.4,Lowell - Henry J Robinson Middle,01600330, 7.2, 11.3, 54.6, 24.6, 0.0, 0.0, 2.2, 47.9, 52.1, 0.0 -1.8501971090670173,1.85,a-cure-i1,2021-22,8.8,76.1,Lowell - James S Daley Middle School,01600315, 4.5, 49.3, 16.9, 23.9, 0.0, 0.0, 5.4, 54.1, 45.9, 0.0 -1.847041847041847,1.85,a-cure-i1,2021-22,8.0,69.3,Lowell - James Sullivan Middle School,01600340, 6.2, 13.8, 44.9, 30.7, 0.0, 0.2, 4.2, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2021-22,3.7,79.6,Lowell - John J Shaughnessy,01600050, 6.1, 29.5, 41.2, 20.4, 0.0, 0.0, 2.8, 50.5, 49.5, 0.0 -1.5198973042362003,1.52,a-cure-i1,2021-22,7.4,77.9,Lowell - Joseph McAvinnue,01600010, 7.4, 15.3, 50.2, 22.1, 0.0, 0.0, 5.0, 52.0, 48.0, 0.0 -2.1538461538461537,2.15,a-cure-i1,2021-22,11.9,88.4,Lowell - Kathryn P. Stoklosa Middle School,01600360, 4.5, 45.2, 36.4, 11.6, 0.0, 0.0, 2.3, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,70.6,Lowell - Laura Lee Therapeutic Day School,01600085, 5.9, 0.0, 47.1, 29.4, 0.0, 0.0, 17.6, 82.4, 17.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,66.7,Lowell - Leblanc Therapeutic Day School,01600320, 2.6, 2.6, 59.0, 33.3, 0.0, 0.0, 2.6, 53.8, 43.6, 2.6 -3.4501891551071875,3.45,a-cure-i1,2021-22,17.099999999999998,79.3,Lowell - Lowell High,01600505, 11.0, 29.4, 34.9, 20.7, 0.0, 0.0, 3.9, 52.9, 47.0, 0.1 -3.583098591549296,3.58,a-cure-i1,2021-22,15.9,71.0,Lowell - Moody Elementary,01600027, 6.2, 11.6, 51.5, 29.0, 0.4, 0.0, 1.2, 46.5, 53.1, 0.4 -1,1,a-cure-i1,2021-22,4.5,67.2,Lowell - Pawtucketville Memorial,01600036, 7.0, 24.0, 30.8, 32.8, 0.0, 0.0, 5.3, 50.9, 49.1, 0.0 -3.328467153284672,3.33,a-cure-i1,2021-22,11.4,54.8,Lowell - Peter W Reilly,01600040, 2.9, 10.3, 36.4, 45.2, 0.0, 0.0, 5.3, 49.1, 50.9, 0.0 -1.6228209191759113,1.62,a-cure-i1,2021-22,6.4,63.1,Lowell - Pyne Arts,01600018, 5.7, 14.1, 39.5, 36.9, 0.0, 0.2, 3.5, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2021-22,4.6,78.8,Lowell - Rogers STEM Academy,01600005, 9.5, 19.8, 45.7, 21.2, 0.2, 0.0, 3.7, 53.6, 46.4, 0.0 -1.8060781476121563,1.81,a-cure-i1,2021-22,7.8,69.1,Lowell - S Christa McAuliffe Elementary,01600075, 5.8, 9.2, 49.9, 30.9, 0.0, 0.2, 4.0, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,79.4,Lowell - The Career Academy,01600515, 6.2, 21.6, 44.3, 20.6, 0.0, 0.0, 7.2, 61.9, 38.1, 0.0 -1.1442424242424243,1.14,a-cure-i1,2021-22,5.9,82.5,Lowell - Washington,01600055, 7.3, 42.7, 26.4, 17.5, 0.4, 0.4, 5.3, 63.0, 37.0, 0.0 -4.65331928345627,4.65,a-cure-i1,2021-22,27.6,94.9,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 25.5, 16.8, 48.9, 5.1, 0.0, 0.0, 3.6, 49.4, 50.5, 0.1 -5.378151260504202,5,a-cure-i1,2021-22,20.0,59.5,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 1.4, 9.5, 43.2, 40.5, 0.0, 0.0, 5.4, 32.4, 64.9, 2.7 -1,1,a-cure-i1,2021-22,0.0,25.200000000000003,Ludlow - East Street Elementary School,01610010, 1.6, 1.3, 16.6, 74.8, 0.0, 0.0, 5.7, 56.4, 43.6, 0.0 -1,1,a-cure-i1,2021-22,2.2,22.5,Ludlow - Harris Brook Elementary School,01610665, 1.9, 0.8, 16.3, 77.5, 0.0, 0.0, 3.4, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,4.2,14.5,Ludlow - Ludlow Senior High,01610505, 2.1, 0.5, 8.3, 85.5, 0.0, 0.1, 3.5, 50.1, 49.7, 0.2 -1,1,a-cure-i1,2021-22,0.0,23.5,Ludlow - Paul R Baird Middle,01610305, 2.3, 0.2, 17.1, 76.5, 0.2, 0.2, 3.6, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,0.0,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.0, 40.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.099999999999994,Lunenburg - Lunenburg High,01620505, 1.3, 1.6, 10.4, 82.9, 0.7, 0.9, 2.2, 52.0, 47.8, 0.2 -1,1,a-cure-i1,2021-22,0.0,18.900000000000006,Lunenburg - Lunenburg Middle School,01620305, 2.2, 2.5, 9.7, 81.1, 0.0, 0.5, 4.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.700000000000003,Lunenburg - Lunenburg Primary School,01620010, 2.1, 1.1, 10.3, 81.3, 0.0, 0.5, 4.7, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.299999999999997,Lunenburg - Turkey Hill Elementary School,01620025, 4.2, 1.4, 7.8, 83.7, 0.0, 0.3, 2.8, 49.9, 50.1, 0.0 -3.5729847494553377,3.57,a-cure-i1,2021-22,20.5,91.8,Lynn - A Drewicz Elementary,01630016, 4.7, 8.6, 76.9, 8.2, 0.0, 0.0, 1.5, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,70.6,Lynn - Aborn,01630011, 7.1, 14.3, 40.3, 29.4, 1.3, 0.0, 7.6, 52.1, 47.9, 0.0 -2.4588364434687158,2.46,a-cure-i1,2021-22,14.0,91.1,Lynn - Breed Middle School,01630405, 7.4, 9.1, 70.8, 8.9, 0.1, 0.0, 3.8, 53.8, 46.1, 0.2 -1,1,a-cure-i1,2021-22,0.5,89.2,Lynn - Brickett Elementary,01630020, 9.2, 10.8, 64.9, 10.8, 0.3, 0.0, 4.1, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,62.4,Lynn - Capt William G Shoemaker,01630090, 13.2, 7.1, 33.8, 37.6, 0.0, 0.0, 8.4, 61.1, 38.9, 0.0 -1.7652582159624413,1.77,a-cure-i1,2021-22,9.4,85.2,Lynn - Classical High,01630505, 7.5, 8.3, 65.9, 14.8, 0.4, 0.0, 3.2, 53.7, 46.2, 0.1 -2.4232365145228214,2.42,a-cure-i1,2021-22,14.6,96.4,Lynn - Cobbet Elementary,01630035, 8.3, 3.2, 83.9, 3.6, 0.0, 0.0, 1.0, 53.3, 46.7, 0.0 -2.1061946902654864,2.11,a-cure-i1,2021-22,11.9,90.4,Lynn - E J Harrington,01630045, 10.7, 5.5, 72.2, 9.6, 0.0, 0.0, 2.0, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,4.0,75.6,Lynn - Edward A Sisson,01630095, 6.3, 11.3, 51.6, 24.4, 1.1, 0.0, 5.2, 51.1, 48.9, 0.0 -3.167095115681234,3.17,a-cure-i1,2021-22,15.4,77.8,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 7.8, 3.3, 58.9, 22.2, 0.0, 0.0, 7.8, 65.6, 33.3, 1.1 -2.00233918128655,2.0,a-cure-i1,2021-22,10.700000000000001,85.5,Lynn - Hood,01630055, 7.2, 8.9, 67.8, 14.5, 0.2, 0.0, 1.4, 52.3, 47.7, 0.0 -1.983050847457627,1.98,a-cure-i1,2021-22,11.7,94.4,Lynn - Ingalls,01630060, 8.3, 6.1, 77.9, 5.6, 0.6, 0.0, 1.5, 50.3, 49.7, 0.0 -1.2815076560659597,1.28,a-cure-i1,2021-22,6.8,84.9,Lynn - Julia F Callahan,01630030, 11.8, 8.0, 61.5, 15.1, 0.0, 0.0, 3.6, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2021-22,3.3,79.8,Lynn - Lincoln-Thomson,01630070, 6.3, 13.9, 54.3, 20.2, 0.0, 0.0, 5.3, 53.8, 46.2, 0.0 -2.529989094874591,2.53,a-cure-i1,2021-22,14.5,91.7,Lynn - Lynn English High,01630510, 8.6, 7.5, 72.7, 8.3, 0.3, 0.0, 2.4, 52.1, 47.6, 0.3 -1.8986175115207375,1.9,a-cure-i1,2021-22,10.3,86.8,Lynn - Lynn Vocational Technical Institute,01630605, 6.7, 5.2, 71.7, 13.2, 0.4, 0.0, 2.8, 53.2, 46.5, 0.3 -3.9689922480620154,3.97,a-cure-i1,2021-22,12.8,51.6,Lynn - Lynn Woods,01630075, 1.9, 8.3, 37.6, 48.4, 0.6, 0.0, 3.2, 49.7, 50.3, 0.0 -2.179775280898876,2.18,a-cure-i1,2021-22,9.7,71.2,Lynn - Pickering Middle,01630420, 5.8, 7.5, 52.6, 28.8, 1.1, 0.0, 4.2, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,94.4,Lynn - Robert L Ford,01630050, 6.9, 5.8, 79.6, 5.6, 0.2, 0.0, 1.8, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,75.6,Lynn - Sewell-Anderson,01630085, 6.7, 7.1, 56.9, 24.4, 0.4, 0.0, 4.6, 47.3, 52.7, 0.0 -1.9158576051779934,1.92,a-cure-i1,2021-22,11.1,92.7,Lynn - Thurgood Marshall Mid,01630305, 9.3, 6.3, 73.8, 7.3, 0.2, 0.1, 3.1, 52.2, 47.6, 0.2 -1,1,a-cure-i1,2021-22,0.0,94.5,Lynn - Tracy,01630100, 5.0, 4.5, 83.5, 5.5, 0.3, 0.0, 1.3, 52.5, 47.5, 0.0 -1.5814931650893798,1.58,a-cure-i1,2021-22,9.4,95.1,Lynn - Washington Elementary School,01630005, 12.7, 4.9, 75.7, 4.9, 0.0, 0.0, 1.7, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,80.0,Lynn - William R Fallon,01630080, 20.0, 0.0, 44.0, 20.0, 0.0, 0.0, 16.0, 84.0, 16.0, 0.0 -1,1,a-cure-i1,2021-22,2.8,94.2,Lynn - Wm P Connery,01630040, 5.8, 8.7, 78.6, 5.8, 0.0, 0.0, 1.1, 43.9, 56.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.700000000000003,Lynnfield - Huckleberry Hill,01640010, 3.2, 10.5, 6.6, 73.3, 0.0, 0.0, 6.4, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.700000000000003,Lynnfield - Lynnfield High,01640505, 1.4, 6.6, 4.1, 86.3, 0.0, 0.0, 1.6, 48.8, 51.1, 0.2 -1,1,a-cure-i1,2021-22,0.0,20.200000000000003,Lynnfield - Lynnfield Middle School,01640405, 2.2, 7.5, 7.5, 79.8, 0.0, 0.0, 3.0, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.200000000000003,Lynnfield - Lynnfield Preschool,01640005, 0.0, 7.9, 2.6, 86.8, 0.0, 0.0, 2.6, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.900000000000006,Lynnfield - Summer Street,01640020, 2.3, 4.8, 3.7, 86.1, 0.0, 0.0, 3.0, 52.2, 47.8, 0.0 -3.9236417033773865,3.92,a-cure-i1,2021-22,16.7,68.1,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 63.7, 2.2, 31.9, 0.0, 0.0, 2.2, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2021-22,4.5,69.6,Malden - Beebe,01650003, 14.7, 33.4, 16.9, 30.4, 0.5, 0.1, 4.1, 50.2, 49.8, 0.0 -1.2581913499344692,1.26,a-cure-i1,2021-22,6.0,76.3,Malden - Ferryway,01650013, 19.1, 20.6, 33.0, 23.7, 0.3, 0.2, 3.0, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,59.8,Malden - Forestdale,01650027, 16.9, 11.7, 25.6, 40.2, 0.0, 0.0, 5.7, 54.6, 45.4, 0.0 -2.805049088359046,2.81,a-cure-i1,2021-22,12.499999999999998,71.3,Malden - Linden,01650047, 19.4, 24.8, 22.0, 28.7, 0.5, 0.0, 4.6, 56.3, 43.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,63.6,Malden - Malden Early Learning Center,01650049, 17.1, 32.7, 10.6, 36.4, 0.0, 0.0, 3.2, 60.4, 39.6, 0.0 -3.124508519003932,3.12,a-cure-i1,2021-22,14.9,76.3,Malden - Malden High,01650505, 21.7, 23.2, 28.1, 23.7, 0.2, 0.0, 3.1, 49.2, 50.7, 0.1 -2.8271446862996163,2.83,a-cure-i1,2021-22,13.8,78.1,Malden - Salemwood,01650057, 22.7, 16.0, 36.5, 21.9, 0.3, 0.0, 2.6, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,5.0,Manchester Essex Regional - Essex Elementary,06980020, 0.9, 0.0, 3.7, 95.0, 0.0, 0.0, 0.5, 43.8, 56.2, 0.0 -1,1,a-cure-i1,2021-22,2.3,3.5999999999999943,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.8, 0.7, 96.4, 0.0, 0.0, 1.1, 51.6, 48.2, 0.2 -84.57142857142823,5,a-cure-i1,2021-22,7.4,1.4000000000000057,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.4, 0.0, 1.1, 98.6, 0.0, 0.0, 0.0, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.400000000000006,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 1.3, 1.7, 1.7, 92.6, 0.0, 0.0, 2.7, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2021-22,2.4,23.5,Mansfield - Everett W Robinson,01670007, 3.8, 8.1, 6.8, 76.5, 0.3, 0.1, 4.5, 50.8, 49.0, 0.1 -1,1,a-cure-i1,2021-22,4.9,23.599999999999994,Mansfield - Harold L Qualters Middle,01670035, 5.0, 8.0, 6.1, 76.4, 0.0, 0.0, 4.5, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2021-22,2.5,25.599999999999994,Mansfield - Jordan/Jackson Elementary,01670014, 5.2, 8.9, 5.6, 74.4, 0.1, 0.0, 5.6, 51.9, 48.1, 0.0 -4.256157635467981,4.26,a-cure-i1,2021-22,5.4,20.299999999999997,Mansfield - Mansfield High,01670505, 4.5, 6.5, 5.7, 79.7, 0.1, 0.0, 3.5, 52.0, 47.8, 0.2 -1,1,a-cure-i1,2021-22,0.0,23.099999999999994,Mansfield - Roland Green School,01670003, 3.3, 6.6, 7.7, 76.9, 0.0, 0.0, 5.5, 53.8, 46.2, 0.0 -9.867595818815332,5,a-cure-i1,2021-22,17.700000000000003,28.700000000000003,Map Academy Charter School (District) - Map Academy Charter School,35170505, 4.5, 0.9, 16.1, 71.3, 2.2, 0.4, 4.5, 54.7, 40.4, 4.9 -1,1,a-cure-i1,2021-22,0.0,14.099999999999994,Marblehead - Glover,01680020, 2.3, 1.6, 5.3, 85.9, 0.0, 0.0, 4.9, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2021-22,1.1,16.799999999999997,Marblehead - Lucretia and Joseph Brown School,01680030, 1.2, 1.2, 9.4, 83.2, 0.0, 0.0, 5.0, 54.2, 45.8, 0.0 -6.705882352941178,5,a-cure-i1,2021-22,5.699999999999999,13.599999999999994,Marblehead - Marblehead High,01680505, 3.4, 1.2, 6.7, 86.4, 0.1, 0.1, 2.1, 50.5, 49.0, 0.5 -1,1,a-cure-i1,2021-22,2.1,16.200000000000003,Marblehead - Marblehead Veterans Middle School,01680300, 3.1, 2.3, 6.9, 83.8, 0.0, 0.0, 3.8, 51.5, 48.2, 0.3 -1,1,a-cure-i1,2021-22,0.0,16.5,Marblehead - Village School,01680016, 2.7, 1.1, 8.2, 83.5, 0.0, 0.0, 4.5, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.700000000000003,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 4.0, 2.7, 11.6, 77.3, 0.0, 0.0, 4.4, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.5,Marion - Sippican,01690005, 3.2, 1.5, 3.4, 84.5, 0.0, 0.0, 7.4, 53.4, 46.6, 0.0 -1.5375375375375377,1.54,a-cure-i1,2021-22,6.4,66.6,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 3.1, 1.2, 58.6, 33.4, 0.0, 0.0, 3.7, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,57.2,Marlborough - Charles Jaworek School,01700030, 4.7, 0.3, 44.2, 42.8, 0.0, 0.0, 8.0, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,45.6,Marlborough - Early Childhood Center,01700006, 6.5, 3.6, 23.7, 54.4, 0.0, 0.0, 11.8, 59.2, 40.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,53.6,Marlborough - Francis J Kane,01700008, 5.0, 0.0, 43.5, 46.4, 0.0, 0.0, 5.0, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2021-22,4.0,60.0,Marlborough - Goodnow Brothers Elementary School,01700020, 3.0, 0.4, 53.6, 40.0, 0.0, 0.0, 3.0, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,3.9000000000000004,67.1,Marlborough - Marlborough High,01700505, 3.4, 0.9, 59.5, 32.9, 0.0, 0.0, 3.3, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2021-22,2.8,74.0,Marlborough - Richer,01700025, 5.2, 0.6, 62.6, 26.0, 0.0, 0.0, 5.7, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.0,Marshfield - Daniel Webster,01710015, 1.9, 2.1, 3.2, 89.0, 0.3, 1.6, 1.9, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,4.099999999999994,Marshfield - Eames Way School,01710005, 0.0, 0.0, 2.3, 95.9, 0.5, 0.0, 1.4, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2021-22,1.4,9.5,Marshfield - Furnace Brook Middle,01710310, 0.7, 1.2, 4.8, 90.5, 0.2, 0.2, 2.2, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,4.599999999999994,Marshfield - Gov Edward Winslow,01710020, 0.3, 0.8, 2.7, 95.4, 0.0, 0.0, 0.8, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2021-22,1.0,6.299999999999997,Marshfield - Marshfield High,01710505, 0.7, 0.8, 2.9, 93.7, 0.2, 0.1, 1.7, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,3.5,12.900000000000006,Marshfield - Martinson Elementary,01710025, 2.7, 1.2, 5.5, 87.1, 0.0, 0.0, 3.5, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.5,Marshfield - South River,01710010, 0.4, 0.4, 1.5, 93.5, 0.0, 0.0, 4.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,3.0,36.8,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 5.4, 1.1, 23.2, 63.2, 1.7, 0.0, 5.4, 54.7, 45.3, 0.0 -6.779661016949154,5,a-cure-i1,2021-22,10.0,23.599999999999994,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.6, 0.6, 11.5, 76.4, 0.6, 0.0, 10.3, 40.6, 59.4, 0.0 -7.238485158648926,5,a-cure-i1,2021-22,44.2,97.7,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 28.3, 2.0, 64.0, 2.3, 1.1, 0.0, 2.3, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2021-22,1.3,10.599999999999994,Masconomet - Masconomet Regional High School,07050505, 0.7, 3.9, 4.0, 89.4, 0.0, 0.2, 1.8, 46.7, 53.2, 0.1 -11.172413793103454,5,a-cure-i1,2021-22,8.1,11.599999999999994,Masconomet - Masconomet Regional Middle School,07050405, 0.5, 3.5, 4.0, 88.4, 0.2, 0.2, 3.2, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.599999999999994,Mashpee - Kenneth Coombs School,01720005, 3.6, 1.1, 8.8, 73.4, 3.3, 0.3, 9.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,2.0999999999999996,26.400000000000006,Mashpee - Mashpee High,01720505, 5.2, 2.7, 3.4, 73.6, 6.4, 0.2, 8.4, 52.0, 47.7, 0.2 -7.230125523012551,5,a-cure-i1,2021-22,10.8,23.900000000000006,Mashpee - Mashpee Middle School,01720020, 2.6, 1.7, 5.2, 76.1, 5.7, 0.0, 8.7, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,32.599999999999994,Mashpee - Quashnet School,01720035, 5.4, 0.9, 7.6, 67.4, 6.4, 0.0, 12.3, 52.5, 47.5, 0.0 -5.776876267748479,5,a-cure-i1,2021-22,35.6,98.6,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 47.5, 0.7, 47.6, 1.4, 0.2, 0.2, 2.4, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.400000000000006,Mattapoisett - Center,01730005, 0.4, 0.0, 5.6, 89.6, 0.4, 0.0, 4.0, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.400000000000006,Mattapoisett - Old Hammondtown,01730010, 0.5, 1.6, 6.4, 85.6, 0.0, 0.0, 5.9, 49.7, 50.3, 0.0 -9.53191489361702,5,a-cure-i1,2021-22,14.0,23.5,Maynard - Fowler School,01740305, 2.4, 1.1, 15.1, 76.5, 0.0, 0.0, 4.8, 50.2, 49.1, 0.7 -9.253012048192769,5,a-cure-i1,2021-22,14.4,24.900000000000006,Maynard - Green Meadow,01740010, 2.6, 2.6, 15.1, 75.1, 0.2, 0.0, 4.3, 51.4, 48.6, 0.0 -4.713692946058092,4.71,a-cure-i1,2021-22,7.1,24.099999999999994,Maynard - Maynard High,01740505, 2.6, 2.3, 15.4, 75.9, 0.3, 0.0, 3.5, 49.5, 49.2, 1.3 -1,1,a-cure-i1,2021-22,4.5,15.099999999999994,Medfield - Dale Street,01750005, 1.8, 3.8, 5.1, 84.9, 0.0, 0.0, 4.3, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2021-22,3.6,13.5,Medfield - Medfield Senior High,01750505, 0.8, 5.1, 3.1, 86.5, 0.3, 0.0, 4.3, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,1.4,11.0,Medfield - Memorial School,01750003, 0.9, 3.5, 3.3, 89.0, 0.2, 0.0, 3.0, 49.6, 50.4, 0.0 -10.344827586206902,5,a-cure-i1,2021-22,7.5,11.599999999999994,Medfield - Ralph Wheelock School,01750007, 1.3, 4.0, 2.5, 88.4, 0.3, 0.0, 3.5, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,3.8,14.5,Medfield - Thomas Blake Middle,01750305, 1.2, 4.4, 4.9, 85.5, 0.5, 0.0, 3.4, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2021-22,3.1,24.299999999999997,Medford - Brooks School,01760130, 4.2, 5.0, 7.1, 75.7, 0.8, 0.0, 7.3, 51.7, 48.1, 0.2 -1,1,a-cure-i1,2021-22,0.0,41.7,Medford - Curtis-Tufts,01760510, 25.0, 0.0, 8.3, 58.3, 0.0, 0.0, 8.3, 41.7, 58.3, 0.0 -2.1353383458646613,2.14,a-cure-i1,2021-22,7.1,53.2,Medford - John J McGlynn Elementary School,01760068, 12.9, 15.8, 18.1, 46.8, 0.5, 0.0, 5.9, 49.3, 50.7, 0.0 -3.2638580931263856,3.26,a-cure-i1,2021-22,9.2,45.1,Medford - John J. McGlynn Middle School,01760320, 14.9, 8.5, 16.2, 54.9, 0.2, 0.2, 5.0, 52.5, 47.0, 0.4 -1,1,a-cure-i1,2021-22,2.9,39.5,Medford - Madeleine Dugger Andrews,01760315, 11.8, 10.5, 10.9, 60.5, 0.9, 0.2, 5.2, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,4.4,42.3,Medford - Medford High,01760505, 14.0, 9.9, 14.4, 57.7, 0.1, 0.0, 4.0, 53.6, 46.1, 0.3 -1,1,a-cure-i1,2021-22,0.0,36.8,Medford - Milton Fuller Roberts,01760150, 6.6, 10.4, 13.3, 63.2, 0.4, 0.0, 6.0, 52.8, 47.0, 0.2 -1,1,a-cure-i1,2021-22,3.3,45.2,Medford - Missituk Elementary School,01760140, 9.8, 5.6, 23.0, 54.8, 1.0, 0.2, 5.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.0,Medway - Burke/Memorial Elementary School,01770015, 2.1, 2.6, 6.6, 87.0, 0.2, 0.0, 1.5, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,4.7,18.200000000000003,Medway - John D Mc Govern Elementary,01770013, 0.3, 5.4, 6.8, 81.8, 0.0, 0.0, 5.7, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2021-22,4.5,13.5,Medway - Medway High,01770505, 1.9, 3.0, 5.6, 86.5, 0.5, 0.2, 2.3, 48.8, 50.9, 0.3 -1,1,a-cure-i1,2021-22,4.4,14.299999999999997,Medway - Medway Middle,01770305, 2.3, 3.2, 5.9, 85.7, 0.0, 0.3, 2.7, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,1.3,33.3,Melrose - Early Childhood Center,01780003, 7.6, 10.6, 7.1, 66.7, 5.1, 0.0, 3.0, 61.1, 38.9, 0.0 -1,1,a-cure-i1,2021-22,2.7,24.200000000000003,Melrose - Herbert Clark Hoover,01780017, 6.4, 7.1, 6.4, 75.8, 0.0, 0.0, 4.4, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.400000000000006,Melrose - Horace Mann,01780025, 0.4, 0.7, 3.7, 90.6, 0.0, 0.0, 4.5, 44.6, 55.1, 0.4 -1,1,a-cure-i1,2021-22,2.3,42.6,Melrose - Lincoln,01780020, 7.7, 13.6, 10.6, 57.4, 0.0, 0.0, 10.6, 52.2, 47.8, 0.0 -4.173913043478261,4.17,a-cure-i1,2021-22,6.0,23.0,Melrose - Melrose High,01780505, 7.8, 5.1, 5.1, 77.0, 0.0, 0.0, 5.0, 49.8, 49.9, 0.2 -5.378151260504202,5,a-cure-i1,2021-22,8.0,23.799999999999997,Melrose - Melrose Middle,01780305, 6.2, 6.2, 6.4, 76.2, 0.0, 0.0, 5.1, 47.4, 52.5, 0.1 -1,1,a-cure-i1,2021-22,0.0,18.5,Melrose - Roosevelt,01780035, 4.1, 4.1, 3.1, 81.5, 0.2, 0.0, 7.0, 51.6, 48.4, 0.0 -6.104046242774567,5,a-cure-i1,2021-22,6.6,17.299999999999997,Melrose - Winthrop,01780050, 2.5, 3.8, 3.8, 82.7, 0.0, 0.0, 7.3, 51.0, 48.7, 0.3 -13.575757575757587,5,a-cure-i1,2021-22,5.6,6.599999999999994,Mendon-Upton - Henry P Clough,07100179, 0.9, 0.6, 4.3, 93.4, 0.3, 0.0, 0.6, 50.7, 49.3, 0.0 -16.000000000000004,5,a-cure-i1,2021-22,15.8,15.799999999999997,Mendon-Upton - Memorial School,07100001, 1.4, 4.9, 6.5, 84.2, 0.0, 0.0, 3.0, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,2.4,11.299999999999997,Mendon-Upton - Miscoe Hill School,07100015, 0.5, 2.6, 6.2, 88.7, 0.2, 0.0, 2.0, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,2.3,10.400000000000006,Mendon-Upton - Nipmuc Regional High,07100510, 0.9, 2.0, 5.0, 89.6, 0.0, 0.0, 2.4, 48.8, 51.0, 0.2 -1,1,a-cure-i1,2021-22,2.7,54.4,Methuen - Comprehensive Grammar School,01810050, 5.7, 4.3, 40.6, 45.6, 0.0, 0.0, 3.8, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,1.5,65.1,Methuen - Donald P Timony Grammar,01810060, 5.7, 3.7, 52.5, 34.9, 0.1, 0.1, 3.0, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,4.2,47.9,Methuen - Marsh Grammar School,01810030, 3.2, 2.5, 38.1, 52.1, 0.0, 0.1, 4.0, 56.9, 43.1, 0.0 -1.8472468916518652,1.85,a-cure-i1,2021-22,6.5,56.3,Methuen - Methuen High,01810505, 2.9, 4.1, 45.1, 43.7, 0.0, 0.0, 4.2, 51.9, 48.1, 0.1 -1,1,a-cure-i1,2021-22,1.2,71.5,Methuen - Tenney Grammar School,01810055, 4.4, 2.6, 61.4, 28.5, 0.0, 0.1, 3.0, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.700000000000003,Middleborough - Henry B. Burkland Elementary School,01820008, 2.7, 1.5, 3.3, 86.3, 0.4, 0.0, 5.9, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.400000000000006,Middleborough - John T. Nichols Middle,01820305, 3.0, 0.4, 2.9, 85.6, 0.3, 0.0, 7.9, 51.1, 48.8, 0.1 -1,1,a-cure-i1,2021-22,0.0,13.099999999999994,Middleborough - Mary K. Goode Elementary School,01820010, 2.8, 1.0, 1.3, 86.9, 0.7, 0.0, 7.3, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.700000000000003,Middleborough - Memorial Early Childhood Center,01820011, 2.2, 0.7, 6.1, 85.3, 0.4, 0.0, 5.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,1.8,13.5,Middleborough - Middleborough High,01820505, 3.1, 1.5, 4.0, 86.5, 1.0, 0.0, 4.0, 50.0, 49.8, 0.2 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,Middleton - Fuller Meadow,01840003, 2.1, 3.5, 5.2, 84.1, 1.4, 0.0, 3.8, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.900000000000006,Middleton - Howe-Manning,01840005, 1.7, 4.8, 6.0, 83.1, 0.5, 0.2, 3.8, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,3.2,41.4,Milford - Brookside,01850065, 3.9, 1.3, 32.8, 58.6, 1.3, 0.0, 2.2, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,43.8,Milford - Memorial,01850010, 2.6, 0.6, 36.9, 56.2, 1.2, 0.0, 2.4, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,3.6,43.0,Milford - Milford High,01850505, 2.8, 1.8, 33.3, 57.0, 1.7, 0.0, 3.3, 54.3, 45.6, 0.1 -1,1,a-cure-i1,2021-22,0.0,42.9,Milford - Shining Star Early Childhood Center,01850075, 1.4, 2.1, 34.3, 57.1, 0.7, 0.0, 4.3, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,4.5,42.3,Milford - Stacy Middle,01850305, 3.7, 1.4, 31.3, 57.7, 1.7, 0.1, 4.2, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,3.3,43.0,Milford - Woodland,01850090, 3.3, 0.6, 35.2, 57.0, 0.8, 0.1, 2.9, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.400000000000006,Millbury - Elmwood Street,01860017, 4.4, 4.9, 7.8, 76.6, 0.0, 0.0, 6.3, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2021-22,1.8,24.599999999999994,Millbury - Millbury Junior/Senior High,01860505, 4.1, 4.1, 10.6, 75.4, 0.0, 0.1, 5.7, 51.1, 48.6, 0.3 -1,1,a-cure-i1,2021-22,0.0,16.200000000000003,Millbury - Raymond E. Shaw Elementary,01860025, 2.4, 1.5, 8.0, 83.8, 0.0, 0.0, 4.4, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.099999999999994,Millis - Clyde F Brown,01870005, 0.7, 2.8, 10.2, 80.9, 0.5, 0.2, 4.8, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,3.5,18.299999999999997,Millis - Millis High School,01870505, 1.8, 2.1, 9.5, 81.7, 0.0, 0.0, 4.9, 50.0, 48.8, 1.2 -6.025974025974024,5,a-cure-i1,2021-22,5.800000000000001,15.400000000000006,Millis - Millis Middle,01870020, 0.8, 2.6, 8.3, 84.6, 0.0, 0.0, 3.8, 48.9, 51.1, 0.0 -4.345679012345679,4.35,a-cure-i1,2021-22,8.8,32.400000000000006,Milton - Charles S Pierce Middle,01890410, 14.3, 7.7, 5.3, 67.6, 0.2, 0.0, 5.0, 49.9, 50.1, 0.0 -5.931034482758621,5,a-cure-i1,2021-22,8.600000000000001,23.200000000000003,Milton - Collicot,01890005, 3.1, 11.2, 3.8, 76.8, 0.0, 0.0, 5.1, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2021-22,1.3,25.599999999999994,Milton - Cunningham School,01890007, 5.5, 10.9, 4.4, 74.4, 0.0, 0.0, 4.9, 49.4, 50.6, 0.0 -8.774193548387096,5,a-cure-i1,2021-22,13.599999999999998,24.799999999999997,Milton - Glover,01890010, 6.0, 5.6, 5.1, 75.2, 0.5, 0.0, 7.6, 47.5, 52.5, 0.0 -4.2439024390243905,4.24,a-cure-i1,2021-22,8.7,32.8,Milton - Milton High,01890505, 16.5, 6.5, 6.1, 67.2, 0.2, 0.2, 3.3, 50.5, 49.1, 0.4 -4.0,4.0,a-cure-i1,2021-22,16.1,64.4,Milton - Tucker,01890020, 35.8, 6.9, 9.5, 35.6, 0.0, 0.0, 12.3, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,4.0,23.700000000000003,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 4.0, 4.3, 8.7, 76.3, 0.3, 0.0, 6.4, 62.4, 36.5, 1.1 -7.51304347826087,5,a-cure-i1,2021-22,5.4,11.5,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.7, 0.0, 6.3, 88.5, 0.0, 0.0, 4.4, 50.0, 49.6, 0.4 -1,1,a-cure-i1,2021-22,0.0,6.299999999999997,Mohawk Trail - Colrain Central,07170010, 2.1, 0.0, 4.2, 93.7, 0.0, 0.0, 0.0, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.299999999999997,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.4, 5.5, 89.7, 0.0, 0.0, 4.4, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,2.4000000000000057,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.799999999999997,Monomoy Regional School District - Chatham Elementary School,07120001, 4.1, 0.7, 13.1, 75.2, 0.0, 0.0, 6.9, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,4.4,23.200000000000003,Monomoy Regional School District - Harwich Elementary School,07120002, 3.9, 1.2, 8.7, 76.8, 0.6, 0.0, 8.7, 57.5, 42.5, 0.0 -4.5296803652968025,4.53,a-cure-i1,2021-22,6.2,21.900000000000006,Monomoy Regional School District - Monomoy Regional High School,07120515, 6.0, 1.3, 9.3, 78.1, 0.9, 0.3, 4.2, 49.1, 50.4, 0.4 -1,1,a-cure-i1,2021-22,0.0,21.5,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 6.4, 1.1, 7.7, 78.5, 0.4, 0.4, 5.5, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,2.9,13.900000000000006,Monson - Granite Valley School,01910030, 0.7, 1.2, 8.6, 86.1, 0.0, 0.0, 3.4, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2021-22,3.3,12.599999999999994,Monson - Monson High School,01910505, 0.9, 1.2, 5.8, 87.4, 0.0, 0.6, 4.0, 47.4, 52.0, 0.6 -1,1,a-cure-i1,2021-22,0.0,13.5,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 9.6, 86.5, 1.0, 0.0, 2.9, 47.1, 52.9, 0.0 -3.8066914498141258,3.81,a-cure-i1,2021-22,6.4,26.900000000000006,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 2.0, 1.3, 18.2, 73.1, 0.0, 0.1, 5.2, 49.5, 49.8, 0.7 -1,1,a-cure-i1,2021-22,3.2,12.099999999999994,Mount Greylock - Lanesborough Elementary,07150005, 1.9, 2.4, 6.3, 87.9, 0.0, 0.0, 1.4, 50.2, 49.8, 0.0 -7.8273381294964,5,a-cure-i1,2021-22,6.800000000000001,13.900000000000006,Mount Greylock - Mt Greylock Regional High,07150505, 3.2, 1.9, 5.2, 86.1, 0.0, 0.0, 3.6, 45.4, 53.8, 0.8 -1,1,a-cure-i1,2021-22,2.9,20.900000000000006,Mount Greylock - Williamstown Elementary,07150010, 2.8, 2.4, 7.8, 79.1, 0.0, 0.0, 7.8, 53.6, 46.2, 0.2 -1,1,a-cure-i1,2021-22,4.3,61.1,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 18.8, 25.6, 11.1, 38.9, 0.3, 0.1, 5.2, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,Nahant - Johnson,01960010, 0.0, 0.6, 9.8, 84.1, 0.0, 0.0, 5.5, 58.5, 41.5, 0.0 -3.7419354838709675,3.74,a-cure-i1,2021-22,11.6,49.6,Nantucket - Cyrus Peirce,01970010, 9.5, 1.2, 34.9, 50.4, 0.0, 0.0, 4.0, 53.0, 47.0, 0.0 -1.395973154362416,1.4,a-cure-i1,2021-22,5.2,59.6,Nantucket - Nantucket Elementary,01970005, 7.4, 1.3, 45.6, 40.4, 0.0, 0.0, 5.3, 50.1, 49.9, 0.0 -3.0270270270270268,3.03,a-cure-i1,2021-22,9.799999999999999,51.8,Nantucket - Nantucket High,01970505, 10.3, 1.6, 35.4, 48.2, 0.4, 0.0, 4.2, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,3.1999999999999997,56.3,Nantucket - Nantucket Intermediate School,01970020, 5.7, 1.6, 44.0, 43.7, 0.0, 0.0, 5.0, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,12.900000000000006,Narragansett - Narragansett Middle,07200305, 1.1, 0.9, 6.9, 87.1, 0.0, 0.0, 4.0, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.0,Narragansett - Narragansett Regional High,07200505, 0.5, 0.7, 9.3, 85.0, 0.2, 0.2, 4.0, 53.4, 46.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,14.5,Narragansett - Templeton Elementary School,07200020, 1.0, 0.6, 10.0, 85.5, 0.0, 0.0, 2.9, 51.6, 48.4, 0.0 -4.89795918367347,4.9,a-cure-i1,2021-22,6.0,19.599999999999994,Nashoba - Center School,07250020, 0.8, 5.1, 7.1, 80.4, 0.0, 0.0, 6.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.0,Nashoba - Florence Sawyer School,07250025, 0.8, 4.1, 4.5, 86.0, 0.0, 0.1, 4.4, 49.4, 50.6, 0.0 -11.148387096774194,5,a-cure-i1,2021-22,10.8,15.5,Nashoba - Hale,07250310, 2.9, 3.6, 4.0, 84.5, 0.0, 0.0, 5.0, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2021-22,3.4,17.0,Nashoba - Luther Burbank Middle School,07250305, 1.8, 0.4, 12.1, 83.0, 0.0, 0.0, 2.7, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.400000000000006,Nashoba - Mary Rowlandson Elementary,07250010, 1.3, 1.7, 15.0, 77.6, 0.4, 0.0, 3.9, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2021-22,3.0,14.5,Nashoba - Nashoba Regional,07250505, 1.6, 5.0, 5.9, 85.5, 0.0, 0.2, 1.8, 49.7, 50.0, 0.3 -5.194805194805193,5,a-cure-i1,2021-22,5.0,15.400000000000006,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 2.0, 1.6, 8.0, 84.6, 0.4, 0.1, 3.1, 60.3, 38.5, 1.2 -3.9444444444444446,3.94,a-cure-i1,2021-22,7.1,28.799999999999997,Natick - Bennett-Hemenway,01980005, 2.2, 13.2, 7.5, 71.2, 0.2, 0.0, 5.7, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,44.6,Natick - Brown,01980010, 1.8, 26.7, 10.2, 55.4, 0.2, 0.0, 5.7, 52.3, 47.7, 0.0 -3.570247933884297,3.57,a-cure-i1,2021-22,5.4,24.200000000000003,Natick - J F Kennedy Middle School,01980305, 0.7, 11.8, 6.5, 75.8, 0.1, 0.0, 5.2, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.799999999999997,Natick - Johnson,01980031, 2.3, 5.0, 10.5, 77.2, 0.0, 0.0, 5.0, 53.0, 46.6, 0.5 -1,1,a-cure-i1,2021-22,4.0,31.299999999999997,Natick - Lilja Elementary,01980035, 3.4, 12.1, 9.0, 68.7, 0.3, 0.0, 6.5, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.900000000000006,Natick - Memorial,01980043, 1.8, 6.3, 4.8, 80.1, 0.0, 0.0, 7.1, 50.8, 49.2, 0.0 -5.599999999999999,5,a-cure-i1,2021-22,8.399999999999999,24.0,Natick - Natick High,01980505, 3.5, 8.3, 6.2, 76.0, 0.1, 0.0, 5.9, 51.7, 48.0, 0.3 -1,1,a-cure-i1,2021-22,0.9,25.200000000000003,Natick - Wilson Middle,01980310, 4.4, 7.6, 7.0, 74.8, 0.0, 0.1, 6.1, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,2.6,14.900000000000006,Nauset - Nauset Regional High,06600505, 5.8, 2.2, 4.3, 85.1, 0.1, 0.1, 2.4, 44.8, 54.6, 0.6 -1,1,a-cure-i1,2021-22,2.7,18.200000000000003,Nauset - Nauset Regional Middle,06600305, 4.9, 1.7, 7.3, 81.8, 0.0, 0.0, 4.3, 51.0, 49.0, 0.0 -3.6129032258064515,3.61,a-cure-i1,2021-22,7.0,31.0,Needham - Broadmeadow,01990005, 2.3, 14.5, 6.6, 69.0, 0.0, 0.0, 7.6, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2021-22,2.7,28.200000000000003,Needham - High Rock School,01990410, 3.1, 11.3, 7.6, 71.8, 0.0, 0.0, 6.2, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2021-22,3.7,39.0,Needham - John Eliot,01990020, 6.5, 18.8, 7.4, 61.0, 0.0, 0.0, 6.3, 51.5, 48.5, 0.0 -8.144144144144143,5,a-cure-i1,2021-22,11.299999999999999,22.200000000000003,Needham - Needham High,01990505, 1.9, 8.4, 6.7, 77.8, 0.1, 0.1, 5.0, 48.7, 50.6, 0.7 -4.048979591836734,4.05,a-cure-i1,2021-22,6.2,24.5,Needham - Newman Elementary,01990050, 2.3, 10.1, 5.4, 75.5, 0.0, 0.2, 6.6, 52.2, 47.8, 0.0 -4.819277108433734,4.82,a-cure-i1,2021-22,7.5,24.900000000000006,Needham - Pollard Middle,01990405, 3.7, 8.5, 8.1, 75.1, 0.0, 0.1, 4.5, 48.8, 51.1, 0.1 -1,1,a-cure-i1,2021-22,0.0,29.200000000000003,Needham - Sunita L. Williams Elementary,01990035, 4.2, 12.5, 5.3, 70.8, 0.2, 0.2, 6.9, 54.7, 45.3, 0.0 -9.689243027888448,5,a-cure-i1,2021-22,15.2,25.099999999999994,Needham - William Mitchell,01990040, 4.0, 10.7, 4.7, 74.9, 0.0, 0.0, 5.8, 52.0, 48.0, 0.0 -8.000000000000002,5,a-cure-i1,2021-22,44.300000000000004,88.6,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 54.1, 2.2, 25.5, 11.4, 0.8, 0.0, 6.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,4.0,61.6,New Bedford - Abraham Lincoln,02010095, 11.9, 0.9, 41.7, 38.4, 0.3, 0.2, 6.6, 52.9, 47.1, 0.0 -3.7821552723059093,3.78,a-cure-i1,2021-22,20.4,86.3,New Bedford - Alfred J Gomes,02010063, 12.7, 0.4, 70.7, 13.7, 0.4, 0.0, 2.0, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2021-22,3.5,35.3,New Bedford - Betsey B Winslow,02010140, 10.3, 1.7, 17.7, 64.7, 0.4, 0.0, 5.2, 48.3, 51.3, 0.4 -1,1,a-cure-i1,2021-22,0.0,71.9,New Bedford - Carlos Pacheco,02010105, 14.9, 1.3, 51.2, 28.1, 0.0, 0.0, 4.6, 47.5, 52.5, 0.0 -3.5897435897435894,3.59,a-cure-i1,2021-22,7.0,31.200000000000003,New Bedford - Casimir Pulaski,02010123, 6.1, 1.1, 18.4, 68.8, 0.6, 0.2, 4.8, 53.8, 46.2, 0.0 -3.5473441108545036,3.55,a-cure-i1,2021-22,9.6,43.3,New Bedford - Charles S Ashley,02010010, 5.1, 1.8, 29.1, 56.7, 0.4, 0.0, 6.9, 50.9, 49.1, 0.0 -5.773788150807898,5,a-cure-i1,2021-22,20.099999999999998,55.7,New Bedford - Elizabeth Carter Brooks,02010015, 12.7, 1.0, 34.4, 44.3, 1.0, 0.0, 6.5, 46.4, 53.6, 0.0 -2.4904552129221735,2.49,a-cure-i1,2021-22,10.6,68.1,New Bedford - Ellen R Hathaway,02010075, 18.3, 2.6, 42.5, 31.9, 0.4, 0.0, 4.4, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,4.8,57.8,New Bedford - Elwyn G Campbell,02010020, 13.8, 0.4, 39.6, 42.2, 0.0, 0.0, 4.1, 57.5, 42.5, 0.0 -1.944862155388471,1.94,a-cure-i1,2021-22,9.7,79.8,New Bedford - Hayden/McFadden,02010078, 13.0, 0.6, 61.8, 20.2, 0.5, 0.0, 3.9, 50.4, 49.6, 0.0 -1.9421965317919074,1.94,a-cure-i1,2021-22,8.4,69.2,New Bedford - Irwin M. Jacobs Elementary School,02010070, 8.0, 0.0, 56.8, 30.8, 0.0, 0.3, 4.0, 48.3, 51.5, 0.3 -1.487719298245614,1.49,a-cure-i1,2021-22,5.3,57.0,New Bedford - James B Congdon,02010040, 12.6, 0.4, 37.8, 43.0, 0.4, 0.0, 5.9, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,40.9,New Bedford - Jireh Swift,02010130, 11.1, 1.0, 23.1, 59.1, 0.0, 0.0, 5.8, 44.7, 55.3, 0.0 -7.525423728813561,5,a-cure-i1,2021-22,33.300000000000004,70.8,New Bedford - John Avery Parker,02010115, 16.8, 1.3, 44.2, 29.2, 0.0, 0.0, 8.4, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,4.6,72.3,New Bedford - John B Devalles,02010050, 19.0, 0.0, 49.7, 27.7, 0.0, 0.0, 3.5, 47.1, 52.9, 0.0 -2.346333853354134,2.35,a-cure-i1,2021-22,9.399999999999999,64.1,New Bedford - Keith Middle School,02010405, 16.4, 0.6, 38.3, 35.9, 0.5, 0.0, 8.2, 54.8, 45.2, 0.0 -3.180722891566265,3.18,a-cure-i1,2021-22,13.200000000000001,66.4,New Bedford - New Bedford High,02010505, 15.0, 0.7, 45.0, 33.6, 0.6, 0.1, 5.2, 53.0, 46.8, 0.1 -2.853889943074003,2.85,a-cure-i1,2021-22,9.399999999999999,52.7,New Bedford - Normandin Middle School,02010410, 8.4, 0.8, 38.7, 47.3, 0.4, 0.1, 4.4, 53.0, 47.0, 0.0 -2.4517593643586837,2.45,a-cure-i1,2021-22,13.5,88.1,New Bedford - Renaissance Community Innovation School,02010124, 20.0, 0.0, 65.6, 11.9, 0.0, 0.0, 2.5, 46.9, 53.1, 0.0 -1.5598227474150663,1.56,a-cure-i1,2021-22,6.6,67.7,New Bedford - Roosevelt Middle School,02010415, 15.7, 0.0, 46.4, 32.3, 0.0, 0.3, 5.4, 51.4, 48.6, 0.0 -2.979655712050078,2.98,a-cure-i1,2021-22,11.899999999999999,63.9,New Bedford - Sgt Wm H Carney Academy,02010045, 18.5, 1.2, 36.1, 36.1, 0.2, 0.0, 8.1, 57.7, 42.3, 0.0 -2.9568221070811744,2.96,a-cure-i1,2021-22,10.7,57.9,New Bedford - Thomas R Rodman,02010125, 11.6, 2.3, 40.3, 42.1, 0.0, 0.0, 3.7, 53.7, 46.3, 0.0 -3.8333333333333335,3.83,a-cure-i1,2021-22,13.8,57.6,New Bedford - Trinity Day Academy,02010510, 15.3, 0.0, 36.5, 42.4, 0.0, 0.0, 5.9, 67.1, 32.9, 0.0 -2.0558659217877095,2.06,a-cure-i1,2021-22,9.2,71.6,New Bedford - Whaling City Junior/Senior High School,02010515, 23.9, 0.0, 34.3, 28.4, 1.5, 0.0, 11.9, 68.7, 31.3, 0.0 -2.943620178041543,2.94,a-cure-i1,2021-22,6.2,33.7,New Bedford - William H Taylor,02010135, 9.1, 0.0, 16.3, 66.3, 0.0, 0.0, 8.3, 53.2, 46.8, 0.0 -5.7560975609756095,5,a-cure-i1,2021-22,35.4,98.4,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 88.8, 0.5, 6.6, 1.6, 0.1, 0.1, 2.2, 49.5, 50.5, 0.0 -16.0,5,a-cure-i1,2021-22,11.5,11.5,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 3.1, 88.5, 0.0, 0.0, 8.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,1.7,12.5,Newburyport - Edward G. Molin Elementary School,02040030, 1.4, 2.1, 6.0, 87.5, 0.0, 0.0, 2.8, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2021-22,0.6,11.099999999999994,Newburyport - Francis T Bresnahan Elementary,02040005, 0.3, 1.3, 5.8, 88.9, 0.0, 0.0, 3.6, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.200000000000003,Newburyport - Newburyport High,02040505, 0.9, 1.7, 4.0, 90.8, 0.1, 0.0, 2.6, 49.6, 50.3, 0.1 -31.999999999999982,5,a-cure-i1,2021-22,13.399999999999999,6.700000000000003,Newburyport - Rupert A Nock Middle,02040305, 1.3, 0.8, 4.0, 93.3, 0.0, 0.0, 0.6, 50.8, 49.2, 0.0 -5.49112426035503,5,a-cure-i1,2021-22,11.6,33.8,Newton - A E Angier,02070005, 3.5, 16.3, 5.2, 66.2, 0.0, 0.0, 8.7, 50.8, 48.7, 0.5 -4.8877284595300265,4.89,a-cure-i1,2021-22,11.7,38.3,Newton - Bigelow Middle,02070305, 4.9, 16.6, 10.1, 61.7, 0.0, 0.0, 6.7, 46.7, 53.1, 0.2 -10.029850746268657,5,a-cure-i1,2021-22,33.6,53.6,Newton - Bowen,02070015, 4.9, 27.8, 11.3, 46.4, 0.0, 0.0, 9.6, 49.3, 50.4, 0.3 -10.140417457305501,5,a-cure-i1,2021-22,33.4,52.7,Newton - C C Burr,02070020, 7.1, 22.9, 13.6, 47.3, 0.0, 0.0, 9.1, 51.6, 47.9, 0.6 -4.478555304740406,4.48,a-cure-i1,2021-22,12.4,44.3,Newton - Cabot,02070025, 5.8, 15.2, 8.9, 55.7, 0.2, 0.2, 14.0, 49.4, 50.4, 0.2 -4.5953002610966065,4.6,a-cure-i1,2021-22,11.0,38.3,Newton - Charles E Brown Middle,02070310, 3.2, 22.9, 7.1, 61.7, 0.3, 0.0, 4.9, 53.4, 46.4, 0.3 -2.961770623742454,2.96,a-cure-i1,2021-22,9.2,49.7,Newton - Countryside,02070040, 4.8, 28.5, 7.3, 50.3, 0.0, 0.0, 9.1, 50.3, 49.5, 0.3 -3.1372549019607847,3.14,a-cure-i1,2021-22,8.0,40.8,Newton - F A Day Middle,02070315, 5.4, 18.0, 8.6, 59.2, 0.1, 0.3, 8.5, 49.9, 49.9, 0.2 -3.6226415094339623,3.62,a-cure-i1,2021-22,8.4,37.1,Newton - Franklin,02070055, 2.2, 14.4, 11.9, 62.9, 0.0, 0.2, 8.2, 44.5, 55.5, 0.0 -8.141772151898735,5,a-cure-i1,2021-22,20.1,39.5,Newton - Horace Mann,02070075, 4.3, 14.1, 9.7, 60.5, 0.0, 0.0, 11.4, 53.8, 46.2, 0.0 -6.752851711026617,5,a-cure-i1,2021-22,11.1,26.299999999999997,Newton - John Ward,02070120, 2.8, 11.7, 4.2, 73.7, 0.0, 0.0, 7.5, 47.4, 52.6, 0.0 -2.8493150684931505,2.85,a-cure-i1,2021-22,9.1,51.1,Newton - Lincoln-Eliot,02070070, 6.0, 19.7, 14.6, 48.9, 0.3, 0.0, 10.5, 55.2, 44.4, 0.3 -1,1,a-cure-i1,2021-22,4.6,37.7,Newton - Mason-Rice,02070080, 0.9, 22.3, 5.0, 62.3, 0.0, 0.0, 9.5, 50.4, 49.6, 0.0 -2.8256070640176603,2.83,a-cure-i1,2021-22,8.0,45.3,Newton - Memorial Spaulding,02070105, 5.3, 24.2, 10.4, 54.7, 0.0, 0.0, 5.3, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,57.0,Newton - Newton Early Childhood Program,02070108, 2.2, 33.0, 7.8, 43.0, 0.0, 0.0, 14.0, 58.7, 41.3, 0.0 -6.786632390745502,5,a-cure-i1,2021-22,16.5,38.9,Newton - Newton North High,02070505, 5.0, 15.0, 11.8, 61.1, 0.1, 0.0, 7.1, 51.1, 48.4, 0.5 -6.559241706161136,5,a-cure-i1,2021-22,17.299999999999997,42.2,Newton - Newton South High,02070510, 4.5, 23.5, 7.3, 57.8, 0.1, 0.1, 6.8, 52.6, 47.0, 0.4 -6.226244343891402,5,a-cure-i1,2021-22,17.2,44.2,Newton - Oak Hill Middle,02070320, 5.9, 23.8, 8.3, 55.8, 0.0, 0.0, 6.2, 50.8, 49.0, 0.2 -4.972431077694236,4.97,a-cure-i1,2021-22,12.4,39.9,Newton - Peirce,02070100, 3.4, 14.7, 11.8, 60.1, 0.0, 0.0, 10.1, 52.5, 47.5, 0.0 -2.0,2.0,a-cure-i1,2021-22,6.6,52.8,Newton - Underwood,02070115, 5.5, 20.6, 14.2, 47.2, 0.5, 0.0, 11.9, 45.9, 54.1, 0.0 -2.0665362035225048,2.07,a-cure-i1,2021-22,6.6,51.1,Newton - Williams,02070125, 4.9, 30.7, 8.9, 48.9, 0.0, 0.0, 6.7, 52.9, 47.1, 0.0 -2.835820895522388,2.84,a-cure-i1,2021-22,9.5,53.6,Newton - Zervas,02070130, 7.6, 25.1, 9.5, 46.4, 0.5, 0.5, 10.4, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.0,Norfolk - Freeman-Kennedy School,02080005, 0.6, 2.0, 3.9, 90.0, 0.0, 0.0, 3.5, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.599999999999994,Norfolk - H Olive Day,02080015, 0.8, 2.4, 3.5, 90.4, 0.0, 0.0, 2.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.0,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.9, 0.9, 0.9, 91.0, 0.9, 0.3, 4.3, 25.3, 74.1, 0.5 -6.814814814814816,5,a-cure-i1,2021-22,9.2,21.599999999999994,North Adams - Brayton,02090035, 2.2, 0.9, 9.1, 78.4, 0.0, 0.0, 9.5, 59.5, 40.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.299999999999997,North Adams - Colegrove Park Elementary,02090008, 2.0, 0.4, 9.3, 77.7, 0.4, 0.4, 9.7, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2021-22,2.3,17.900000000000006,North Adams - Drury High,02090505, 2.3, 0.8, 5.4, 82.1, 0.4, 0.4, 8.6, 44.9, 55.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.700000000000003,North Adams - Greylock,02090015, 0.0, 0.4, 9.1, 80.3, 0.0, 0.0, 10.2, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,30.099999999999994,North Andover - Anne Bradstreet Early Childhood Center,02110005, 3.6, 8.1, 14.1, 69.9, 0.2, 0.2, 3.8, 58.5, 41.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,22.5,North Andover - Annie L Sargent School,02110018, 1.3, 9.4, 7.3, 77.5, 0.0, 0.0, 4.5, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,46.7,North Andover - Atkinson,02110001, 5.2, 6.6, 31.5, 53.3, 0.3, 0.0, 3.1, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.799999999999997,North Andover - Franklin,02110010, 3.2, 10.1, 8.2, 74.2, 0.0, 0.0, 4.3, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.599999999999994,North Andover - Kittredge,02110015, 1.8, 2.2, 11.2, 79.4, 0.0, 0.4, 4.9, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.9,25.200000000000003,North Andover - North Andover High,02110505, 3.4, 7.0, 11.9, 74.8, 0.1, 0.1, 2.8, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,29.5,North Andover - North Andover Middle,02110305, 2.8, 7.1, 15.3, 70.5, 0.2, 0.0, 4.2, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,32.400000000000006,North Andover - Thomson,02110020, 1.3, 6.7, 20.2, 67.6, 0.0, 0.0, 4.2, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.799999999999997,North Attleborough - Amvet Boulevard,02120007, 6.0, 16.0, 4.1, 68.2, 1.0, 0.0, 4.8, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,36.9,North Attleborough - Community,02120030, 10.6, 6.6, 12.4, 63.1, 0.4, 0.7, 6.2, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.299999999999997,North Attleborough - Falls,02120010, 3.2, 6.4, 4.1, 77.7, 0.5, 0.0, 8.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,North Attleborough - Joseph W Martin Jr Elementary,02120013, 2.6, 4.7, 5.7, 84.1, 0.5, 0.0, 2.4, 55.2, 44.8, 0.0 -4.186915887850466,4.19,a-cure-i1,2021-22,5.6,21.400000000000006,North Attleborough - North Attleboro High,02120505, 4.8, 7.7, 5.3, 78.6, 0.1, 0.3, 3.2, 50.0, 49.5, 0.5 -1,1,a-cure-i1,2021-22,0.0,32.099999999999994,North Attleborough - North Attleborough Early Learning Center,02120020, 5.2, 12.7, 7.5, 67.9, 0.0, 0.7, 6.0, 63.4, 36.6, 0.0 -1,1,a-cure-i1,2021-22,3.0,24.400000000000006,North Attleborough - North Attleborough Middle,02120305, 4.9, 8.3, 6.0, 75.6, 0.1, 0.0, 5.1, 49.9, 50.1, 0.0 -7.672514619883043,5,a-cure-i1,2021-22,8.2,17.099999999999994,North Attleborough - Roosevelt Avenue,02120015, 4.0, 7.1, 5.2, 82.9, 0.0, 0.0, 0.8, 53.6, 46.4, 0.0 -7.804878048780489,5,a-cure-i1,2021-22,6.0,12.299999999999997,North Brookfield - North Brookfield Elementary,02150015, 1.4, 1.4, 7.0, 87.7, 0.0, 0.0, 2.5, 50.5, 49.5, 0.0 -6.361445783132532,5,a-cure-i1,2021-22,6.6,16.599999999999994,North Brookfield - North Brookfield High,02150505, 2.4, 0.0, 11.2, 83.4, 0.0, 0.0, 3.0, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,12.900000000000006,North Middlesex - Ashby Elementary,07350010, 0.7, 0.7, 10.1, 87.1, 0.0, 0.0, 1.4, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,12.400000000000006,North Middlesex - Hawthorne Brook,07350030, 1.7, 1.7, 5.9, 87.6, 0.0, 0.0, 3.2, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,2.5,18.299999999999997,North Middlesex - Nissitissit Middle School,07350310, 2.5, 1.3, 8.6, 81.7, 0.2, 0.0, 5.7, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2021-22,2.0,13.5,North Middlesex - North Middlesex Regional,07350505, 1.8, 2.4, 6.0, 86.5, 0.1, 0.1, 3.1, 50.4, 49.3, 0.3 -1,1,a-cure-i1,2021-22,0.0,12.700000000000003,North Middlesex - Spaulding Memorial,07350005, 1.7, 2.1, 5.8, 87.3, 0.0, 0.2, 2.8, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,5.700000000000003,North Middlesex - Squannacook Early Childhood Center,07350002, 3.4, 1.1, 1.1, 94.3, 0.0, 0.0, 0.0, 65.5, 34.5, 0.0 -1,1,a-cure-i1,2021-22,3.4,15.299999999999997,North Middlesex - Varnum Brook,07350035, 2.3, 1.6, 6.6, 84.7, 0.0, 0.0, 4.8, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,12.799999999999997,North Reading - E Ethel Little School,02170003, 1.3, 4.4, 3.0, 87.2, 0.0, 0.0, 4.0, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.299999999999997,North Reading - J Turner Hood,02170010, 0.8, 5.9, 5.6, 83.7, 0.0, 0.3, 3.7, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.799999999999997,North Reading - L D Batchelder,02170005, 0.6, 4.3, 2.6, 89.2, 0.0, 0.0, 3.2, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2021-22,4.9,10.799999999999997,North Reading - North Reading High,02170505, 0.0, 4.5, 3.6, 89.2, 0.0, 0.2, 2.5, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.599999999999994,North Reading - North Reading Middle,02170305, 0.7, 5.3, 5.3, 84.4, 0.0, 0.0, 4.3, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,43.2,Northampton - Bridge Street,02100005, 3.2, 3.6, 28.1, 56.8, 0.0, 0.0, 8.3, 52.9, 46.8, 0.4 -11.999999999999998,5,a-cure-i1,2021-22,25.8,34.400000000000006,Northampton - Jackson Street,02100020, 5.6, 4.6, 15.4, 65.6, 0.0, 0.0, 8.9, 53.4, 46.2, 0.3 -1,1,a-cure-i1,2021-22,1.0,32.3,Northampton - John F Kennedy Middle School,02100410, 4.0, 3.3, 16.9, 67.7, 0.2, 0.0, 7.9, 51.3, 47.8, 0.9 -1,1,a-cure-i1,2021-22,0.0,29.400000000000006,Northampton - Leeds,02100025, 0.3, 2.3, 19.1, 70.6, 0.3, 0.0, 7.3, 59.1, 40.6, 0.3 -3.7575757575757565,3.76,a-cure-i1,2021-22,6.199999999999999,26.400000000000006,Northampton - Northampton High,02100505, 2.2, 3.4, 13.7, 73.6, 0.3, 0.0, 6.8, 48.6, 50.1, 1.3 -5.64705882352941,5,a-cure-i1,2021-22,7.2,20.400000000000006,Northampton - R. K. Finn Ryan Road,02100029, 2.4, 1.6, 13.9, 79.6, 0.0, 0.0, 2.4, 51.4, 48.2, 0.4 -1,1,a-cure-i1,2021-22,0.0,16.599999999999994,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.6, 0.5, 12.6, 83.4, 0.2, 0.2, 1.5, 58.3, 41.1, 0.5 -1,1,a-cure-i1,2021-22,0.9,27.799999999999997,Northboro-Southboro - Algonquin Regional High,07300505, 1.7, 13.2, 7.6, 72.2, 0.4, 0.4, 4.5, 47.2, 52.7, 0.1 -1,1,a-cure-i1,2021-22,0.0,37.6,Northborough - Fannie E Proctor,02130015, 4.3, 16.1, 12.9, 62.4, 0.4, 0.0, 3.9, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.799999999999997,Northborough - Lincoln Street,02130003, 0.7, 12.0, 4.1, 77.2, 0.4, 0.7, 4.9, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,35.3,Northborough - Marguerite E Peaslee,02130014, 1.6, 7.1, 12.3, 64.7, 0.8, 7.5, 6.0, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.599999999999994,Northborough - Marion E Zeh,02130020, 0.8, 16.6, 11.7, 66.4, 0.4, 0.0, 4.0, 52.6, 47.4, 0.0 -3.9298245614035086,3.93,a-cure-i1,2021-22,7.0,28.5,Northborough - Robert E. Melican Middle School,02130305, 1.7, 11.7, 10.2, 71.5, 0.4, 1.7, 2.8, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,Northbridge - Northbridge Elementary School,02140001, 0.7, 0.4, 9.9, 84.1, 0.1, 0.0, 4.7, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.900000000000006,Northbridge - Northbridge High,02140505, 1.9, 1.4, 9.7, 82.1, 0.0, 0.0, 4.9, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,Northbridge - Northbridge Middle,02140305, 0.8, 1.0, 8.4, 84.1, 0.0, 0.0, 5.7, 45.5, 54.5, 0.0 -1,1,a-cure-i1,2021-22,2.7,45.1,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 4.6, 1.4, 37.8, 54.9, 0.1, 0.2, 1.1, 55.9, 44.0, 0.2 -1,1,a-cure-i1,2021-22,0.0,4.200000000000003,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.6, 0.6, 1.3, 95.8, 0.0, 0.2, 1.5, 61.2, 38.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.799999999999997,Norton - Henri A. Yelle,02180060, 3.4, 0.8, 4.5, 86.2, 0.0, 0.0, 5.1, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.700000000000003,Norton - J C Solmonese,02180015, 3.1, 1.0, 2.7, 88.3, 0.0, 0.0, 4.9, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.5,Norton - L G Nourse Elementary,02180010, 4.0, 1.5, 5.1, 86.5, 0.4, 0.0, 2.5, 52.0, 48.0, 0.0 -10.666666666666664,5,a-cure-i1,2021-22,7.8,11.700000000000003,Norton - Norton High,02180505, 3.1, 2.1, 3.8, 88.3, 0.1, 0.0, 2.5, 50.5, 49.2, 0.3 -1,1,a-cure-i1,2021-22,0.0,12.5,Norton - Norton Middle,02180305, 2.7, 1.7, 3.8, 87.5, 0.3, 0.0, 4.0, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.599999999999994,Norwell - Grace Farrar Cole,02190005, 1.3, 3.4, 1.5, 88.4, 0.0, 0.0, 5.3, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.799999999999997,Norwell - Norwell High,02190505, 0.3, 3.2, 2.1, 92.2, 0.0, 0.0, 2.2, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2021-22,2.9,7.400000000000006,Norwell - Norwell Middle School,02190405, 0.6, 2.0, 1.2, 92.6, 0.2, 0.0, 3.4, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.5,Norwell - William G Vinal,02190020, 0.2, 1.3, 1.1, 92.5, 0.0, 0.2, 4.7, 52.0, 47.8, 0.2 -1.3924914675767917,1.39,a-cure-i1,2021-22,5.1,58.6,Norwood - Balch,02200005, 13.6, 3.6, 39.5, 41.4, 0.0, 1.0, 1.0, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,54.8,Norwood - Charles J Prescott,02200025, 8.5, 30.9, 11.2, 45.2, 0.4, 1.5, 2.3, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2021-22,3.6,34.099999999999994,Norwood - Cornelius M Callahan,02200010, 12.1, 6.7, 10.8, 65.9, 0.0, 0.4, 4.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,39.3,Norwood - Dr. Philip O. Coakley Middle School,02200305, 12.5, 4.1, 19.1, 60.7, 0.1, 0.1, 3.3, 48.3, 51.4, 0.3 -1,1,a-cure-i1,2021-22,2.4,32.099999999999994,Norwood - F A Cleveland,02200015, 7.6, 6.0, 13.2, 67.9, 0.0, 1.0, 4.3, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,45.5,Norwood - George F. Willett,02200075, 11.7, 11.7, 16.0, 54.5, 0.3, 1.9, 4.1, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,37.3,Norwood - John P Oldham,02200020, 15.7, 5.2, 12.7, 62.7, 0.0, 0.4, 3.4, 50.4, 49.6, 0.0 -2.7716535433070866,2.77,a-cure-i1,2021-22,6.6,38.1,Norwood - Norwood High,02200505, 13.2, 5.6, 16.6, 61.9, 0.1, 0.3, 2.3, 49.0, 50.6, 0.4 -1.8540772532188843,1.85,a-cure-i1,2021-22,5.4,46.6,Oak Bluffs - Oak Bluffs Elementary,02210005, 3.0, 1.9, 35.1, 53.4, 0.9, 0.0, 5.6, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,4.2,6.599999999999994,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.4, 1.1, 2.0, 93.4, 0.2, 0.0, 3.0, 64.3, 35.5, 0.2 -1,1,a-cure-i1,2021-22,4.4,11.5,Old Rochester - Old Rochester Regional High,07400505, 2.7, 1.8, 2.2, 88.5, 0.0, 0.0, 4.9, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.200000000000003,Old Rochester - Old Rochester Regional Jr High,07400405, 2.0, 1.0, 1.7, 89.8, 0.0, 0.0, 5.6, 52.7, 47.3, 0.0 -3.578059071729957,3.58,a-cure-i1,2021-22,5.3,23.700000000000003,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 4.1, 0.3, 17.8, 76.3, 0.0, 0.3, 1.3, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.700000000000003,Orange - Dexter Park,02230010, 1.4, 0.7, 10.4, 82.3, 0.3, 0.0, 4.9, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.5,Orange - Fisher Hill,02230015, 0.0, 1.6, 6.5, 83.5, 0.0, 0.4, 8.1, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.700000000000003,Orleans - Orleans Elementary,02240005, 4.9, 1.2, 9.8, 79.3, 0.6, 0.0, 4.3, 44.5, 55.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.799999999999997,Oxford - Alfred M Chaffee,02260010, 1.4, 1.7, 15.7, 75.2, 0.0, 0.0, 5.9, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.400000000000006,Oxford - Clara Barton,02260005, 2.4, 0.4, 18.0, 75.6, 0.4, 0.0, 3.2, 48.4, 51.6, 0.0 -3.621399176954733,3.62,a-cure-i1,2021-22,5.5,24.299999999999997,Oxford - Oxford High,02260505, 2.6, 1.3, 15.1, 75.7, 0.2, 0.2, 4.9, 48.5, 50.6, 0.9 -1,1,a-cure-i1,2021-22,4.0,21.200000000000003,Oxford - Oxford Middle,02260405, 3.0, 0.0, 13.8, 78.8, 0.0, 0.0, 4.5, 55.8, 44.3, 0.0 -5.0,5.0,a-cure-i1,2021-22,7.5,24.0,Palmer - Old Mill Pond,02270008, 3.2, 1.9, 15.0, 76.0, 0.0, 0.0, 3.9, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2021-22,4.2,25.299999999999997,Palmer - Palmer High,02270505, 2.8, 3.5, 13.6, 74.7, 0.2, 0.0, 5.1, 52.7, 46.9, 0.4 -1,1,a-cure-i1,2021-22,0.0,14.0,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 1.7, 0.0, 7.9, 86.0, 0.2, 0.0, 4.1, 60.6, 38.8, 0.6 -9.573635427394438,5,a-cure-i1,2021-22,58.099999999999994,97.1,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 10.3, 0.0, 86.0, 2.9, 0.0, 0.0, 0.8, 44.4, 55.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,29.599999999999994,Peabody - Captain Samuel Brown,02290005, 3.3, 3.0, 20.7, 70.4, 0.0, 0.3, 2.2, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,35.599999999999994,Peabody - Center,02290015, 7.2, 3.1, 21.7, 64.4, 0.2, 0.0, 3.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,27.400000000000006,Peabody - J Henry Higgins Middle,02290305, 4.2, 2.4, 18.7, 72.6, 0.0, 0.1, 1.9, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.400000000000006,Peabody - John E Burke,02290007, 0.8, 2.1, 9.1, 85.6, 0.0, 0.0, 2.5, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2021-22,4.5,31.400000000000006,Peabody - John E. McCarthy,02290016, 4.4, 3.5, 18.4, 68.6, 0.6, 0.3, 4.1, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,43.9,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 4.1, 3.3, 31.7, 56.1, 0.8, 0.0, 4.1, 39.0, 61.0, 0.0 -1,1,a-cure-i1,2021-22,3.5,29.599999999999994,Peabody - Peabody Veterans Memorial High,02290510, 4.2, 2.2, 21.7, 70.4, 0.3, 0.0, 1.2, 51.8, 48.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,24.200000000000003,Peabody - South Memorial,02290035, 2.8, 3.1, 13.7, 75.8, 0.5, 0.0, 4.0, 46.2, 53.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,37.3,Peabody - Thomas Carroll,02290010, 3.6, 1.4, 30.4, 62.7, 0.4, 0.0, 1.4, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.200000000000003,Peabody - West Memorial,02290045, 0.4, 2.0, 5.6, 88.8, 0.4, 0.0, 2.8, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,53.8,Peabody - William A Welch Sr,02290027, 4.9, 1.7, 43.6, 46.2, 0.9, 0.0, 2.6, 52.9, 47.1, 0.0 -11.772575250836118,5,a-cure-i1,2021-22,22.0,29.900000000000006,Pelham - Pelham Elementary,02300005, 4.3, 2.6, 17.1, 70.1, 0.0, 0.0, 6.0, 61.5, 37.6, 0.9 -1,1,a-cure-i1,2021-22,0.0,8.799999999999997,Pembroke - Bryantville Elementary,02310003, 0.7, 0.2, 3.2, 91.2, 0.5, 0.0, 4.3, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.599999999999994,Pembroke - Hobomock Elementary,02310010, 0.2, 1.2, 2.2, 93.4, 0.0, 0.0, 2.9, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.599999999999994,Pembroke - North Pembroke Elementary,02310015, 1.4, 1.0, 3.1, 89.4, 0.2, 0.0, 5.0, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,5.099999999999994,Pembroke - Pembroke Community Middle School,02310305, 0.2, 0.5, 0.7, 94.9, 0.0, 0.0, 3.6, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,4.200000000000003,Pembroke - Pembroke High School,02310505, 0.4, 1.5, 1.1, 95.8, 0.0, 0.0, 1.1, 50.8, 48.7, 0.5 -1,1,a-cure-i1,2021-22,0.0,11.700000000000003,Pentucket - Dr Frederick N Sweetsir,07450020, 0.5, 0.9, 8.5, 88.3, 0.0, 0.0, 1.9, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,1.3,8.799999999999997,Pentucket - Dr John C Page School,07450015, 0.3, 1.6, 4.5, 91.2, 0.0, 0.0, 2.3, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2021-22,0.9,13.599999999999994,Pentucket - Elmer S Bagnall,07450005, 0.2, 0.0, 9.5, 86.4, 0.0, 0.0, 3.8, 52.3, 47.7, 0.0 -16.326530612244902,5,a-cure-i1,2021-22,10.0,9.799999999999997,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 7.0, 90.2, 0.0, 0.0, 2.7, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2021-22,3.0,10.599999999999994,Pentucket - Pentucket Regional Middle,07450405, 0.3, 1.5, 6.1, 89.4, 0.3, 0.0, 2.4, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2021-22,1.5,10.299999999999997,Pentucket - Pentucket Regional Sr High,07450505, 0.5, 1.7, 6.2, 89.7, 0.0, 0.2, 1.7, 50.9, 48.9, 0.2 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,Petersham - Petersham Center,02340005, 0.0, 0.0, 10.6, 84.1, 0.0, 0.0, 5.3, 50.4, 49.6, 0.0 -5.674523007856342,5,a-cure-i1,2021-22,31.6,89.1,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.7, 0.0, 85.5, 10.9, 1.4, 0.7, 0.7, 58.0, 42.0, 0.0 -6.666666666666667,5,a-cure-i1,2021-22,40.0,96.0,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 12.0, 1.7, 78.3, 4.0, 0.6, 0.6, 2.9, 57.1, 42.9, 0.0 -10.049586776859504,5,a-cure-i1,2021-22,60.8,96.8,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 11.4, 0.0, 84.3, 3.2, 1.1, 0.0, 0.0, 48.6, 51.4, 0.0 -3.3452188006482984,3.35,a-cure-i1,2021-22,12.9,61.7,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 23.6, 6.6, 27.6, 38.3, 1.2, 0.0, 2.7, 47.9, 52.1, 0.0 -7.772609819121445,5,a-cure-i1,2021-22,37.599999999999994,77.4,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 35.9, 14.1, 24.2, 22.6, 0.5, 0.0, 2.7, 44.9, 55.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.900000000000006,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 3.7, 92.1, 0.0, 0.5, 3.7, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.400000000000006,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.5, 92.6, 0.5, 1.0, 4.4, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2021-22,4.1,9.799999999999997,Pioneer Valley - Pioneer Valley Regional,07500505, 0.8, 0.8, 3.0, 90.2, 0.0, 0.0, 5.3, 49.8, 50.2, 0.0 -14.188099808061422,5,a-cure-i1,2021-22,46.2,52.1,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 10.0, 18.5, 10.1, 47.9, 0.0, 0.2, 13.3, 50.0, 49.8, 0.2 -8.590909090909092,5,a-cure-i1,2021-22,18.900000000000002,35.2,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8.3, 1.0, 19.3, 64.8, 0.0, 0.0, 6.8, 34.0, 65.0, 1.0 -1,1,a-cure-i1,2021-22,4.7,44.2,Pittsfield - Allendale,02360010, 11.2, 1.6, 17.7, 55.8, 1.6, 0.0, 12.0, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2021-22,4.0,58.6,Pittsfield - Crosby,02360065, 10.4, 0.0, 33.9, 41.4, 1.1, 0.0, 13.2, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,57.1,Pittsfield - Crosby Educational Academy,02360030, 9.5, 0.0, 23.8, 42.9, 0.0, 0.0, 23.8, 66.7, 33.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,29.200000000000003,Pittsfield - Eagle Education Academy,02360525, 16.7, 0.0, 8.3, 70.8, 0.0, 0.0, 4.2, 79.2, 20.8, 0.0 -1,1,a-cure-i1,2021-22,3.2,39.3,Pittsfield - Egremont,02360035, 11.1, 1.2, 17.9, 60.7, 0.0, 0.0, 9.2, 48.7, 51.3, 0.0 -2.4054669703872436,2.41,a-cure-i1,2021-22,6.6,43.9,Pittsfield - John T Reid Middle,02360305, 11.4, 0.9, 17.5, 56.1, 0.4, 0.0, 13.8, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,55.3,Pittsfield - Morningside Community School,02360055, 13.6, 0.3, 23.7, 44.7, 0.6, 0.0, 17.2, 46.7, 53.0, 0.3 -3.8005865102639302,3.8,a-cure-i1,2021-22,8.1,34.099999999999994,Pittsfield - Pittsfield High,02360505, 10.3, 1.5, 15.0, 65.9, 0.0, 0.0, 7.3, 50.4, 49.3, 0.3 -1,1,a-cure-i1,2021-22,0.0,42.2,Pittsfield - Pittsfield Public Virtual Academy,02360705, 14.6, 1.9, 15.5, 57.8, 0.5, 0.0, 9.7, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.200000000000003,Pittsfield - Robert T. Capeless Elementary School,02360045, 2.5, 0.6, 10.7, 74.8, 0.6, 0.0, 10.7, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2021-22,3.7,63.9,Pittsfield - Silvio O Conte Community,02360105, 24.2, 0.3, 24.2, 36.1, 0.3, 0.0, 15.0, 46.2, 53.5, 0.3 -1,1,a-cure-i1,2021-22,0.0,24.599999999999994,Pittsfield - Stearns,02360090, 4.8, 1.3, 10.5, 75.4, 0.0, 0.0, 7.9, 58.8, 41.2, 0.0 -2.9531680440771355,2.95,a-cure-i1,2021-22,6.7,36.3,Pittsfield - Taconic High,02360510, 13.1, 0.8, 13.3, 63.7, 0.2, 0.0, 8.8, 48.9, 50.8, 0.2 -3.03448275862069,3.03,a-cure-i1,2021-22,6.6000000000000005,34.8,Pittsfield - Theodore Herberg Middle,02360310, 8.9, 1.9, 16.2, 65.2, 0.0, 0.2, 7.6, 53.8, 46.0, 0.2 -1,1,a-cure-i1,2021-22,0.0,32.3,Pittsfield - Williams,02360100, 9.2, 3.5, 12.7, 67.7, 0.0, 0.4, 6.5, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.299999999999997,Plainville - Anna Ware Jackson,02380010, 3.3, 4.3, 9.3, 76.7, 0.3, 0.0, 6.0, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,21.099999999999994,Plainville - Beatrice H Wood Elementary,02380005, 6.2, 2.0, 8.4, 78.9, 0.3, 0.0, 4.2, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,27.400000000000006,Plymouth - Cold Spring,02390005, 3.2, 2.3, 18.7, 72.6, 0.0, 0.0, 3.2, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.5,Plymouth - Federal Furnace School,02390011, 6.7, 0.8, 4.0, 81.5, 0.3, 0.0, 6.7, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,51.5,Plymouth - Hedge,02390010, 5.9, 0.5, 34.8, 48.5, 0.5, 0.0, 9.8, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,3.0,10.299999999999997,Plymouth - Indian Brook,02390012, 0.7, 0.4, 5.0, 89.7, 0.0, 0.0, 4.3, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.599999999999994,Plymouth - Manomet Elementary,02390015, 0.8, 0.8, 4.0, 88.4, 0.0, 0.0, 6.0, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.5,Plymouth - Nathaniel Morton Elementary,02390030, 1.4, 0.4, 10.3, 83.5, 0.2, 0.0, 4.2, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,4.5,20.0,Plymouth - Plymouth Commun Intermediate,02390405, 3.1, 1.4, 10.6, 80.0, 0.1, 0.0, 4.8, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.5,Plymouth - Plymouth Early Childhood Center,02390003, 1.6, 2.1, 7.9, 82.5, 0.0, 0.0, 5.8, 67.7, 32.3, 0.0 -1,1,a-cure-i1,2021-22,2.2,16.599999999999994,Plymouth - Plymouth North High,02390505, 3.1, 1.7, 7.5, 83.4, 0.1, 0.1, 4.2, 53.0, 46.8, 0.2 -1,1,a-cure-i1,2021-22,4.3,9.799999999999997,Plymouth - Plymouth South High,02390515, 1.0, 0.4, 4.0, 90.2, 0.4, 0.0, 4.0, 53.5, 46.4, 0.1 -1,1,a-cure-i1,2021-22,2.1,9.0,Plymouth - Plymouth South Middle,02390305, 1.1, 0.0, 4.7, 91.0, 0.2, 0.3, 2.9, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,2.6,13.5,Plymouth - South Elementary,02390046, 1.4, 0.9, 4.7, 86.5, 0.5, 0.3, 5.7, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,4.1,17.599999999999994,Plymouth - West Elementary,02390047, 3.0, 0.9, 6.1, 82.4, 0.0, 0.3, 7.3, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,5.0,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 4.1, 95.0, 0.4, 0.0, 0.4, 53.5, 46.5, 0.0 -6.7368421052631575,5,a-cure-i1,2021-22,37.599999999999994,89.3,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 55.1, 7.5, 22.2, 10.7, 0.0, 0.2, 4.4, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,48.2,Provincetown - Provincetown Schools,02420020, 19.9, 0.0, 17.0, 51.8, 0.0, 0.0, 11.3, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.900000000000006,Quabbin - Hardwick Elementary,07530005, 0.5, 0.0, 9.2, 88.1, 0.0, 0.0, 2.2, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,8.299999999999997,Quabbin - Hubbardston Center,07530010, 0.3, 1.3, 5.3, 91.7, 0.0, 0.0, 1.3, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.5,Quabbin - New Braintree Grade,07530020, 2.9, 1.4, 7.2, 85.5, 0.0, 0.0, 2.9, 58.0, 40.6, 1.4 -1,1,a-cure-i1,2021-22,0.0,14.599999999999994,Quabbin - Oakham Center,07530025, 1.6, 0.8, 8.1, 85.4, 0.0, 0.0, 4.1, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,4.6,10.0,Quabbin - Quabbin Regional High School,07530505, 1.0, 1.8, 5.5, 90.0, 0.0, 0.0, 1.8, 44.1, 55.6, 0.3 -1,1,a-cure-i1,2021-22,0.7,11.799999999999997,Quabbin - Quabbin Regional Middle School,07530405, 1.1, 1.1, 6.8, 88.2, 0.2, 0.2, 2.4, 48.2, 51.6, 0.2 -1,1,a-cure-i1,2021-22,0.0,11.700000000000003,Quabbin - Ruggles Lane,07530030, 2.3, 1.0, 4.3, 88.3, 0.0, 0.3, 3.8, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.700000000000003,Quaboag Regional - Quaboag Regional High,07780505, 0.9, 0.3, 8.5, 85.3, 0.3, 0.0, 4.7, 49.3, 49.9, 0.9 -1,1,a-cure-i1,2021-22,0.0,12.0,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.5, 0.0, 5.0, 88.0, 0.0, 0.0, 6.5, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.200000000000003,Quaboag Regional - Warren Elementary,07780005, 1.4, 0.3, 8.5, 85.8, 0.3, 0.0, 3.7, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.400000000000006,Quaboag Regional - West Brookfield Elementary,07780010, 0.8, 1.2, 8.1, 84.6, 0.0, 0.0, 5.3, 51.0, 48.6, 0.4 -1,1,a-cure-i1,2021-22,0.0,69.1,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 8.8, 40.4, 10.3, 30.9, 0.0, 0.0, 9.6, 67.6, 32.4, 0.0 -1,1,a-cure-i1,2021-22,1.0,31.799999999999997,Quincy - Atherton Hough,02430040, 4.7, 14.5, 6.7, 68.2, 0.4, 0.4, 5.1, 60.0, 40.0, 0.0 -2.709117221418235,2.71,a-cure-i1,2021-22,11.700000000000001,69.1,Quincy - Atlantic Middle,02430305, 5.0, 53.4, 7.7, 30.9, 0.2, 0.2, 2.7, 52.6, 47.4, 0.0 -1.7245508982035929,1.72,a-cure-i1,2021-22,7.2,66.8,Quincy - Beechwood Knoll Elementary,02430020, 2.9, 59.5, 3.2, 33.2, 0.0, 0.3, 0.9, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,2.6,43.1,Quincy - Broad Meadows Middle,02430310, 9.2, 19.6, 11.3, 56.9, 0.3, 0.0, 2.8, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,55.9,Quincy - Central Middle,02430315, 3.4, 44.0, 4.8, 44.1, 0.0, 0.6, 3.0, 52.3, 47.6, 0.2 -1,1,a-cure-i1,2021-22,2.8,45.7,Quincy - Charles A Bernazzani Elementary,02430025, 2.7, 31.2, 5.9, 54.3, 0.0, 0.0, 5.9, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,75.2,Quincy - Clifford H Marshall Elementary,02430055, 15.7, 41.7, 14.4, 24.8, 0.2, 0.2, 3.0, 45.1, 54.9, 0.0 -4.2310654685494224,4.23,a-cure-i1,2021-22,20.6,77.9,Quincy - Francis W Parker,02430075, 5.2, 67.2, 3.9, 22.1, 0.0, 0.0, 1.6, 53.6, 46.4, 0.0 -1.2705882352941178,1.27,a-cure-i1,2021-22,5.4,68.0,Quincy - Lincoln-Hancock Community School,02430035, 9.9, 37.3, 13.0, 32.0, 0.8, 0.2, 6.9, 48.4, 51.6, 0.0 -2.0725388601036268,2.07,a-cure-i1,2021-22,5.0,38.6,Quincy - Merrymount,02430060, 4.0, 24.4, 4.3, 61.4, 0.0, 0.6, 5.2, 51.5, 48.5, 0.0 -1.1139240506329113,1.11,a-cure-i1,2021-22,5.5,79.0,Quincy - Montclair,02430065, 3.5, 64.2, 6.2, 21.0, 0.0, 0.0, 5.1, 51.0, 49.0, 0.0 -2.8693009118541037,2.87,a-cure-i1,2021-22,11.8,65.8,Quincy - North Quincy High,02430510, 3.8, 53.5, 4.4, 34.2, 0.2, 0.3, 3.6, 53.3, 46.7, 0.1 -1.4078212290502794,1.41,a-cure-i1,2021-22,6.3,71.6,Quincy - Point Webster Middle,02430325, 14.4, 35.8, 15.4, 28.4, 0.5, 1.2, 4.2, 52.0, 47.8, 0.2 -3.04,3.04,a-cure-i1,2021-22,9.5,50.0,Quincy - Quincy High,02430505, 12.8, 21.4, 11.3, 50.0, 0.3, 0.3, 3.8, 50.9, 49.0, 0.1 -1,1,a-cure-i1,2021-22,0.6,66.4,Quincy - Snug Harbor Community School,02430090, 12.6, 33.6, 14.4, 33.6, 0.3, 0.0, 5.5, 58.8, 41.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,64.9,Quincy - South West Middle School,02430320, 16.7, 25.0, 15.8, 35.1, 0.5, 0.5, 6.4, 57.6, 42.2, 0.2 -1,1,a-cure-i1,2021-22,0.0,45.3,Quincy - Squantum,02430095, 6.1, 29.2, 6.4, 54.7, 0.3, 0.0, 3.3, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,69.1,Quincy - Wollaston School,02430110, 3.0, 62.1, 2.1, 30.9, 0.0, 0.0, 1.8, 53.6, 46.4, 0.0 -6.608695652173915,5,a-cure-i1,2021-22,5.7,13.799999999999997,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.6, 1.3, 7.0, 86.2, 0.2, 0.0, 3.8, 51.0, 48.7, 0.4 -4.957746478873239,4.96,a-cure-i1,2021-22,26.4,85.2,Randolph - Elizabeth G Lyons Elementary,02440020, 49.3, 10.9, 15.1, 14.8, 0.3, 0.7, 8.9, 53.6, 46.4, 0.0 -1.5169300225733635,1.52,a-cure-i1,2021-22,8.4,88.6,Randolph - J F Kennedy Elementary,02440018, 55.4, 13.0, 14.8, 11.4, 0.3, 0.3, 4.9, 52.3, 47.7, 0.0 -4.039517014270033,4.04,a-cure-i1,2021-22,23.0,91.1,Randolph - Margaret L Donovan,02440015, 49.4, 21.2, 16.0, 8.9, 0.5, 0.0, 4.0, 48.6, 51.1, 0.2 -1.0278787878787878,1.03,a-cure-i1,2021-22,5.3,82.5,Randolph - Martin E Young Elementary,02440040, 47.5, 10.4, 19.6, 17.5, 0.8, 0.0, 4.2, 49.2, 50.8, 0.0 -3.836363636363636,3.84,a-cure-i1,2021-22,21.099999999999998,88.0,Randolph - Randolph Community Middle,02440410, 50.2, 19.1, 15.2, 12.0, 0.2, 0.2, 3.2, 50.9, 49.1, 0.0 -3.273522975929978,3.27,a-cure-i1,2021-22,18.7,91.4,Randolph - Randolph High,02440505, 48.3, 21.5, 17.2, 8.6, 0.0, 0.0, 4.3, 58.6, 41.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.099999999999994,Reading - Alice M Barrows,02460002, 2.3, 5.1, 4.0, 86.9, 0.0, 0.0, 1.7, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,3.6,7.599999999999994,Reading - Arthur W Coolidge Middle,02460305, 1.2, 3.2, 2.0, 92.4, 0.0, 0.0, 1.2, 56.7, 43.1, 0.2 -1,1,a-cure-i1,2021-22,0.0,14.200000000000003,Reading - Birch Meadow,02460005, 2.7, 5.0, 3.6, 85.8, 0.0, 0.0, 3.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.200000000000003,Reading - J Warren Killam,02460017, 3.2, 7.4, 3.4, 84.8, 0.0, 0.0, 1.2, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,4.8,22.700000000000003,Reading - Joshua Eaton,02460010, 1.6, 8.0, 8.8, 77.3, 0.3, 0.0, 4.0, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,1.1,13.099999999999994,Reading - Reading Memorial High,02460505, 2.6, 5.4, 2.6, 86.9, 0.1, 0.1, 2.3, 51.5, 48.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,24.5,Reading - RISE PreSchool,02460001, 3.9, 6.9, 3.9, 75.5, 0.0, 0.0, 9.8, 64.7, 35.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.900000000000006,Reading - Walter S Parker Middle,02460310, 3.3, 4.1, 3.9, 84.1, 0.0, 0.0, 4.5, 47.2, 52.4, 0.4 -1,1,a-cure-i1,2021-22,0.0,12.099999999999994,Reading - Wood End Elementary School,02460020, 2.0, 3.2, 4.0, 87.9, 0.0, 0.0, 2.8, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2021-22,2.0,62.5,Revere - A. C. Whelan Elementary School,02480003, 2.7, 3.9, 53.9, 37.5, 0.3, 0.0, 1.9, 51.7, 48.3, 0.0 -2.146964856230032,2.15,a-cure-i1,2021-22,8.4,62.6,Revere - Abraham Lincoln,02480025, 3.3, 2.8, 53.8, 37.4, 0.5, 0.0, 2.1, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,61.4,Revere - Beachmont Veterans Memorial School,02480013, 6.1, 2.4, 51.5, 38.6, 0.0, 0.0, 1.4, 56.9, 43.1, 0.0 -1,1,a-cure-i1,2021-22,3.6,76.5,Revere - Garfield Elementary School,02480056, 3.1, 5.3, 67.0, 23.5, 0.1, 0.0, 1.0, 47.8, 52.0, 0.1 -3.3265007320644218,3.33,a-cure-i1,2021-22,14.2,68.3,Revere - Garfield Middle School,02480057, 3.2, 3.9, 59.3, 31.7, 0.4, 0.0, 1.5, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,64.2,Revere - Paul Revere,02480050, 3.9, 6.0, 51.9, 35.8, 0.2, 0.2, 1.9, 48.1, 51.9, 0.0 -2.841958041958042,2.84,a-cure-i1,2021-22,12.7,71.5,Revere - Revere High,02480505, 4.0, 4.8, 60.7, 28.5, 0.4, 0.1, 1.6, 50.6, 49.3, 0.1 -2.2103610675039245,2.21,a-cure-i1,2021-22,8.799999999999999,63.7,Revere - Rumney Marsh Academy,02480014, 3.3, 4.8, 54.0, 36.3, 0.2, 0.2, 1.2, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,81.4,Revere - Seacoast School,02480520, 5.7, 0.0, 67.1, 18.6, 0.0, 0.0, 8.6, 60.0, 38.6, 1.4 -1,1,a-cure-i1,2021-22,3.5,78.2,Revere - Staff Sargent James J. Hill Elementary School,02480035, 3.3, 3.9, 69.6, 21.8, 0.2, 0.0, 1.3, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,4.6,70.2,Revere - Susan B. Anthony Middle School,02480305, 4.3, 2.3, 62.6, 29.8, 0.2, 0.0, 0.9, 44.3, 55.7, 0.0 -1,1,a-cure-i1,2021-22,2.0,14.0,Richmond - Richmond Consolidated,02490005, 0.6, 0.0, 6.4, 86.0, 0.0, 0.0, 7.0, 49.0, 51.0, 0.0 -17.813333333333336,5,a-cure-i1,2021-22,16.700000000000003,15.0,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.1, 1.7, 4.3, 85.0, 1.1, 0.0, 6.9, 49.8, 49.9, 0.3 -1,1,a-cure-i1,2021-22,0.0,13.5,River Valley Charter (District) - River Valley Charter School,04820050, 1.0, 1.0, 6.6, 86.5, 0.3, 0.0, 4.5, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2021-22,3.2,7.200000000000003,Rochester - Rochester Memorial,02500005, 0.4, 0.4, 2.9, 92.8, 0.0, 0.0, 3.5, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.700000000000003,Rockland - Jefferson Elementary School,02510060, 4.8, 1.3, 20.3, 68.3, 0.0, 0.0, 5.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,2.5,29.599999999999994,Rockland - John W Rogers Middle,02510305, 6.3, 1.4, 18.9, 70.4, 0.0, 0.0, 3.1, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,30.400000000000006,Rockland - Memorial Park,02510020, 2.9, 0.8, 20.8, 69.6, 0.0, 0.0, 5.8, 49.2, 50.8, 0.0 -4.024539877300614,4.02,a-cure-i1,2021-22,8.2,32.599999999999994,Rockland - R Stewart Esten,02510025, 8.2, 0.9, 18.5, 67.4, 0.0, 0.0, 5.0, 54.2, 45.8, 0.0 -3.6794425087108014,3.68,a-cure-i1,2021-22,6.6000000000000005,28.700000000000003,Rockland - Rockland Senior High,02510505, 6.5, 1.3, 16.8, 71.3, 0.0, 0.0, 4.0, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,8.0,Rockport - Rockport Elementary,02520005, 0.6, 1.6, 2.6, 92.0, 0.0, 0.0, 3.2, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.799999999999997,Rockport - Rockport High,02520510, 1.3, 1.3, 5.2, 89.2, 0.0, 0.4, 2.6, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.799999999999997,Rockport - Rockport Middle,02520305, 0.0, 2.4, 2.9, 93.2, 0.0, 0.0, 1.5, 54.1, 45.9, 0.0 -10.112554112554115,5,a-cure-i1,2021-22,14.6,23.099999999999994,Rowe - Rowe Elementary,02530005, 1.5, 0.0, 4.6, 76.9, 0.0, 0.0, 16.9, 55.4, 44.6, 0.0 -6.47118301314459,5,a-cure-i1,2021-22,40.0,98.9,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 56.3, 0.7, 40.6, 1.1, 0.2, 0.1, 1.2, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,4.0,46.9,Salem - Bates,02580003, 5.6, 0.8, 36.2, 53.1, 0.0, 0.0, 4.2, 50.0, 50.0, 0.0 -6.645241038318912,5,a-cure-i1,2021-22,33.6,80.9,Salem - Bentley Academy Innovation School,02580010, 11.1, 1.9, 65.3, 19.1, 0.0, 0.0, 2.5, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,41.5,Salem - Carlton,02580015, 3.0, 0.8, 31.4, 58.5, 0.0, 0.0, 6.4, 49.2, 50.8, 0.0 -5.132075471698113,5,a-cure-i1,2021-22,18.7,58.3,Salem - Collins Middle,02580305, 6.3, 2.4, 45.5, 41.7, 0.0, 0.0, 4.1, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2021-22,1.3,57.7,Salem - Horace Mann Laboratory,02580030, 6.8, 3.4, 44.4, 42.3, 0.0, 0.0, 3.1, 48.1, 51.9, 0.0 -9.767284991568298,5,a-cure-i1,2021-22,36.2,59.3,Salem - New Liberty Innovation School,02580510, 3.7, 0.0, 50.0, 40.7, 0.0, 0.0, 5.6, 33.3, 64.8, 1.9 -1,1,a-cure-i1,2021-22,0.0,50.0,Salem - Salem Early Childhood,02580001, 12.7, 4.5, 30.9, 50.0, 0.0, 0.0, 1.8, 64.5, 35.5, 0.0 -2.2337662337662336,2.23,a-cure-i1,2021-22,8.6,61.6,Salem - Salem High,02580505, 6.2, 2.9, 48.1, 38.4, 0.1, 0.0, 4.4, 55.4, 44.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,47.1,Salem - Salem Prep High School,02580515, 0.0, 0.0, 35.3, 52.9, 0.0, 0.0, 11.8, 64.7, 35.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,51.9,Salem - Saltonstall School,02580050, 5.8, 1.1, 40.2, 48.1, 0.0, 0.0, 4.8, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,52.4,Salem - Witchcraft Heights,02580070, 7.2, 3.8, 37.8, 47.6, 0.0, 0.0, 3.6, 52.6, 47.4, 0.0 -3.324364723467862,3.32,a-cure-i1,2021-22,13.9,66.9,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 11.3, 5.9, 47.9, 33.1, 0.0, 0.0, 1.8, 49.1, 50.7, 0.2 -1,1,a-cure-i1,2021-22,0.0,13.299999999999997,Sandwich - Forestdale School,02610002, 1.1, 2.9, 5.7, 86.7, 0.5, 0.4, 2.7, 52.5, 47.5, 0.0 -11.169811320754723,5,a-cure-i1,2021-22,7.4,10.599999999999994,Sandwich - Oak Ridge,02610025, 1.1, 2.6, 5.2, 89.4, 0.3, 0.4, 1.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2021-22,3.1,6.400000000000006,Sandwich - Sandwich High,02610505, 0.7, 1.8, 2.0, 93.6, 0.5, 0.2, 1.3, 48.6, 51.1, 0.3 -12.857142857142854,5,a-cure-i1,2021-22,9.0,11.200000000000003,Sandwich - Sandwich STEM Academy,02610305, 2.8, 2.5, 3.6, 88.8, 0.8, 0.0, 1.5, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,41.8,Saugus - Belmonte STEAM Academy,02620060, 4.2, 6.4, 25.9, 58.2, 1.3, 0.3, 3.7, 51.9, 48.1, 0.0 -3.6032171581769443,3.6,a-cure-i1,2021-22,8.4,37.3,Saugus - Saugus High,02620505, 5.6, 4.6, 24.6, 62.7, 0.4, 0.3, 1.7, 50.9, 49.0, 0.1 -1,1,a-cure-i1,2021-22,0.0,43.6,Saugus - Saugus Middle School,02620305, 5.4, 5.8, 28.1, 56.4, 1.0, 0.2, 3.1, 52.8, 47.0, 0.2 -1,1,a-cure-i1,2021-22,3.4,41.8,Saugus - Veterans Early Learning Center,02620065, 5.1, 8.3, 24.1, 58.2, 0.3, 0.5, 3.5, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,3.9000000000000057,Savoy - Emma L Miller Elementary School,02630010, 2.0, 0.0, 2.0, 96.1, 0.0, 0.0, 0.0, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.200000000000003,Scituate - Cushing Elementary,02640007, 0.9, 0.9, 1.6, 92.8, 0.0, 0.3, 3.4, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2021-22,2.2,11.400000000000006,Scituate - Gates Middle School,02640305, 3.2, 0.8, 3.7, 88.6, 0.2, 0.0, 3.5, 55.2, 44.5, 0.3 -1,1,a-cure-i1,2021-22,0.0,5.700000000000003,Scituate - Hatherly Elementary,02640010, 2.0, 0.0, 1.6, 94.3, 0.0, 0.0, 2.0, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,10.900000000000006,Scituate - Jenkins Elementary School,02640015, 3.3, 0.0, 2.7, 89.1, 0.0, 0.0, 4.8, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2021-22,2.9000000000000004,6.700000000000003,Scituate - Scituate High School,02640505, 2.2, 1.4, 1.6, 93.3, 0.0, 0.0, 1.5, 48.5, 51.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,6.0,Scituate - Wampatuck Elementary,02640020, 1.2, 0.0, 2.2, 94.0, 0.0, 0.0, 2.7, 49.9, 50.1, 0.0 -4.800000000000001,4.8,a-cure-i1,2021-22,5.4,18.0,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 4.0, 4.0, 6.0, 82.0, 0.0, 0.0, 4.0, 48.6, 51.0, 0.4 -1,1,a-cure-i1,2021-22,0.0,17.700000000000003,Seekonk - George R Martin,02650007, 2.9, 3.3, 7.4, 82.3, 0.0, 0.0, 4.1, 43.9, 56.1, 0.0 -7.064935064935062,5,a-cure-i1,2021-22,6.8,15.400000000000006,Seekonk - Mildred Aitken School,02650015, 1.6, 3.3, 6.6, 84.6, 0.0, 0.0, 3.8, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2021-22,2.3,15.900000000000006,Seekonk - Seekonk High,02650505, 2.7, 3.4, 5.8, 84.1, 0.0, 0.2, 3.9, 53.3, 46.4, 0.3 -1,1,a-cure-i1,2021-22,1.3,48.3,Sharon - Cottage Street,02660005, 6.0, 24.4, 8.6, 51.7, 0.2, 0.0, 9.1, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2021-22,4.6,48.1,Sharon - East Elementary,02660010, 4.3, 28.1, 5.8, 51.9, 0.0, 0.0, 9.9, 51.4, 48.3, 0.2 -1,1,a-cure-i1,2021-22,4.5,49.5,Sharon - Heights Elementary,02660015, 6.0, 31.1, 5.2, 50.5, 0.2, 0.0, 7.1, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,54.0,Sharon - Sharon Early Childhood Center,02660001, 2.0, 32.0, 8.0, 46.0, 0.0, 0.0, 12.0, 60.0, 40.0, 0.0 -1,1,a-cure-i1,2021-22,4.9,44.5,Sharon - Sharon High,02660505, 5.2, 29.1, 5.4, 55.5, 0.1, 0.1, 4.7, 51.6, 48.3, 0.1 -1,1,a-cure-i1,2021-22,1.5,51.9,Sharon - Sharon Middle,02660305, 6.1, 32.6, 6.2, 48.1, 0.1, 0.1, 6.8, 52.2, 47.6, 0.2 -1,1,a-cure-i1,2021-22,0.2,10.5,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.1, 0.9, 6.5, 89.5, 0.2, 0.1, 1.7, 60.7, 39.0, 0.2 -4.8141592920353995,4.81,a-cure-i1,2021-22,6.8,22.599999999999994,Sherborn - Pine Hill,02690010, 3.2, 8.4, 3.5, 77.4, 0.0, 0.0, 7.4, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,56.1,Shrewsbury - Calvin Coolidge School,02710015, 5.1, 29.8, 18.4, 43.9, 0.0, 0.0, 2.7, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2021-22,2.9,70.5,Shrewsbury - Floral Street School,02710020, 3.3, 53.5, 5.7, 29.5, 2.0, 0.0, 5.9, 53.9, 46.1, 0.0 -1.9377162629757787,1.94,a-cure-i1,2021-22,7.0,57.8,Shrewsbury - Major Howard W. Beal School,02710005, 3.3, 38.8, 10.3, 42.2, 1.2, 0.0, 4.3, 52.7, 47.3, 0.0 -2.65625,2.66,a-cure-i1,2021-22,8.5,51.2,Shrewsbury - Oak Middle School,02710030, 3.0, 32.7, 9.9, 48.8, 0.6, 0.0, 5.0, 49.1, 50.8, 0.1 -1,1,a-cure-i1,2021-22,0.0,60.4,Shrewsbury - Parker Road Preschool,02710040, 6.1, 37.8, 6.7, 39.6, 1.8, 0.0, 7.9, 65.2, 34.8, 0.0 -1.889087656529517,1.89,a-cure-i1,2021-22,6.6,55.9,Shrewsbury - Sherwood Middle School,02710305, 3.3, 38.2, 9.9, 44.1, 0.5, 0.0, 4.0, 53.5, 46.5, 0.0 -2.4,2.4,a-cure-i1,2021-22,6.8999999999999995,46.0,Shrewsbury - Shrewsbury High School,02710505, 3.6, 28.7, 9.6, 54.0, 0.3, 0.0, 3.8, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,40.1,Shrewsbury - Spring Street School,02710035, 2.0, 27.6, 4.0, 59.9, 0.0, 0.0, 6.4, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,35.900000000000006,Shrewsbury - Walter J. Paton School,02710025, 3.2, 15.1, 9.9, 64.1, 0.6, 0.0, 7.1, 49.0, 51.0, 0.0 -16.67878787878788,5,a-cure-i1,2021-22,17.2,16.5,Shutesbury - Shutesbury Elementary,02720005, 0.9, 0.0, 11.3, 83.5, 0.9, 0.0, 3.5, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2021-22,1.4,6.599999999999994,Silver Lake - Silver Lake Regional High,07600505, 1.5, 0.9, 2.8, 93.4, 0.3, 0.0, 1.1, 53.7, 46.1, 0.2 -1,1,a-cure-i1,2021-22,0.0,8.099999999999994,Silver Lake - Silver Lake Regional Middle School,07600405, 0.8, 0.6, 4.5, 91.9, 0.8, 0.0, 1.4, 49.5, 50.1, 0.4 -4.0719794344473,4.07,a-cure-i1,2021-22,9.899999999999999,38.9,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 9.1, 2.0, 24.0, 61.1, 0.6, 0.0, 3.1, 51.7, 47.4, 0.9 -1,1,a-cure-i1,2021-22,0.0,10.099999999999994,Somerset - Chace Street,02730005, 0.3, 3.0, 4.6, 89.9, 0.0, 0.0, 2.1, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.099999999999994,Somerset - North Elementary,02730008, 0.9, 1.3, 4.3, 88.9, 0.0, 0.0, 4.7, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2021-22,2.6,13.700000000000003,Somerset - Somerset Middle School,02730305, 0.7, 1.9, 7.4, 86.3, 0.2, 0.0, 3.5, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.299999999999997,Somerset - South,02730015, 1.2, 2.3, 6.6, 85.7, 0.8, 0.0, 3.5, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,1.4,9.200000000000003,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 1.3, 1.0, 5.3, 90.8, 0.2, 0.1, 1.3, 49.7, 50.2, 0.1 -2.9119373776908026,2.91,a-cure-i1,2021-22,9.3,51.1,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.5, 8.1, 31.3, 48.9, 0.4, 0.2, 5.7, 51.1, 48.9, 0.0 -9.079889807162536,5,a-cure-i1,2021-22,41.2,72.6,Somerville - Arthur D Healey,02740075, 15.8, 4.4, 48.6, 27.4, 0.2, 0.2, 3.5, 51.0, 48.8, 0.2 -1,1,a-cure-i1,2021-22,4.4,40.9,Somerville - Benjamin G Brown,02740015, 6.1, 12.7, 7.7, 59.1, 0.0, 0.0, 14.4, 38.7, 61.3, 0.0 -1.3937282229965158,1.39,a-cure-i1,2021-22,5.0,57.4,Somerville - Capuano Early Childhood Center,02740005, 10.3, 7.7, 29.2, 42.6, 0.0, 0.0, 10.3, 52.3, 47.7, 0.0 -4.015209125475285,4.02,a-cure-i1,2021-22,19.8,78.9,Somerville - E Somerville Community,02740111, 4.4, 3.7, 68.1, 21.1, 0.0, 0.1, 2.4, 55.8, 43.9, 0.3 -1,1,a-cure-i1,2021-22,0.0,69.2,Somerville - Full Circle High School,02740510, 19.2, 0.0, 46.2, 30.8, 0.0, 0.0, 3.8, 65.4, 34.6, 0.0 -11.148387096774194,5,a-cure-i1,2021-22,21.6,31.0,Somerville - John F Kennedy,02740083, 4.6, 5.3, 14.7, 69.0, 0.2, 0.0, 6.2, 53.4, 46.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,88.9,Somerville - Next Wave Junior High,02740410, 27.8, 0.0, 55.6, 11.1, 0.0, 0.0, 5.6, 77.8, 22.2, 0.0 -4.691729323308271,4.69,a-cure-i1,2021-22,19.500000000000004,66.5,Somerville - Somerville High,02740505, 10.9, 5.8, 47.3, 33.5, 0.2, 0.2, 2.1, 51.3, 48.3, 0.4 -1,1,a-cure-i1,2021-22,4.9,40.2,Somerville - West Somerville Neighborhood,02740115, 11.3, 5.7, 11.6, 59.8, 0.0, 0.5, 11.1, 50.9, 48.8, 0.3 -2.2824207492795385,2.28,a-cure-i1,2021-22,9.899999999999999,69.4,Somerville - Winter Hill Community,02740120, 11.5, 4.8, 51.2, 30.6, 0.0, 0.2, 1.7, 56.9, 42.8, 0.2 -1,1,a-cure-i1,2021-22,0.0,23.099999999999994,South Hadley - Michael E. Smith Middle School,02780305, 1.7, 1.7, 18.1, 76.9, 0.2, 0.0, 1.5, 51.9, 48.1, 0.0 -8.444444444444445,5,a-cure-i1,2021-22,13.3,25.200000000000003,South Hadley - Mosier,02780020, 1.5, 1.8, 18.8, 74.8, 0.0, 0.0, 3.1, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.099999999999994,South Hadley - Plains Elementary,02780015, 0.7, 1.4, 16.4, 76.9, 0.3, 0.0, 4.2, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2021-22,1.7,21.200000000000003,South Hadley - South Hadley High,02780505, 1.8, 2.2, 14.9, 78.8, 0.0, 0.0, 2.4, 47.5, 52.4, 0.2 -2.117202268431002,2.12,a-cure-i1,2021-22,7.0,52.9,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 4.7, 1.6, 41.4, 47.1, 2.1, 0.0, 3.1, 57.2, 42.1, 0.7 -3.194295900178253,3.19,a-cure-i1,2021-22,11.200000000000001,56.1,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 35.9, 7.0, 6.9, 43.9, 0.4, 0.0, 5.9, 50.4, 49.2, 0.4 -1,1,a-cure-i1,2021-22,2.0,10.099999999999994,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 2.7, 0.8, 5.0, 89.9, 0.3, 0.0, 1.2, 67.2, 32.7, 0.2 -1,1,a-cure-i1,2021-22,0.0,12.0,Southampton - William E Norris,02750005, 0.2, 1.5, 6.2, 88.0, 0.0, 0.0, 4.1, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,30.5,Southborough - Albert S. Woodward Memorial School,02760050, 1.9, 18.6, 4.8, 69.5, 0.0, 0.0, 5.2, 53.5, 46.5, 0.0 -4.986301369863013,4.99,a-cure-i1,2021-22,9.1,29.200000000000003,Southborough - Margaret A Neary,02760020, 0.4, 17.7, 3.8, 70.8, 0.4, 0.0, 6.9, 51.5, 48.1, 0.4 -1,1,a-cure-i1,2021-22,0.0,40.6,Southborough - Mary E Finn School,02760008, 2.1, 28.7, 7.2, 59.4, 0.3, 0.3, 2.1, 49.0, 51.0, 0.0 -2.7062314540059345,2.71,a-cure-i1,2021-22,5.7,33.7,Southborough - P Brent Trottier,02760305, 1.8, 21.4, 5.5, 66.3, 0.0, 0.0, 5.0, 50.1, 49.9, 0.0 -1.2326656394453004,1.23,a-cure-i1,2021-22,5.0,64.9,Southbridge - Charlton Street,02770005, 2.1, 1.8, 59.2, 35.1, 0.4, 0.7, 0.7, 47.9, 52.1, 0.0 -2.4958217270194987,2.5,a-cure-i1,2021-22,11.2,71.8,Southbridge - Eastford Road,02770010, 1.6, 0.6, 66.5, 28.2, 0.0, 0.3, 2.8, 55.8, 44.2, 0.0 -3.7221324717285946,3.72,a-cure-i1,2021-22,14.4,61.9,Southbridge - Southbridge Academy,02770525, 2.4, 0.0, 57.1, 38.1, 0.0, 0.0, 2.4, 66.7, 33.3, 0.0 -3.545582047685835,3.55,a-cure-i1,2021-22,15.8,71.3,Southbridge - Southbridge High School,02770515, 2.9, 1.6, 65.5, 28.7, 0.0, 0.2, 1.1, 54.0, 46.0, 0.0 -4.498480243161095,4.5,a-cure-i1,2021-22,18.5,65.8,Southbridge - Southbridge Middle School,02770315, 1.5, 1.2, 59.7, 34.2, 0.2, 0.0, 3.2, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,74.0,Southbridge - West Street,02770020, 1.0, 1.0, 70.5, 26.0, 0.0, 0.0, 1.6, 49.4, 50.6, 0.0 -2.9844559585492227,2.98,a-cure-i1,2021-22,10.799999999999999,57.9,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 37.4, 1.2, 14.3, 42.1, 0.0, 0.0, 5.0, 46.9, 52.8, 0.3 -7.672514619883043,5,a-cure-i1,2021-22,8.2,17.099999999999994,Southern Berkshire - Mt Everett Regional,07650505, 1.6, 0.3, 9.5, 82.9, 0.3, 0.0, 5.3, 51.3, 48.4, 0.3 -36.74725274725277,5,a-cure-i1,2021-22,20.900000000000002,9.099999999999994,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 6.1, 90.9, 0.0, 0.0, 3.0, 54.5, 45.5, 0.0 -Infinity,5,a-cure-i1,2021-22,7.1,0.0,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 30.8, 69.2, 0.0 -1,1,a-cure-i1,2021-22,3.3,16.0,Southern Berkshire - Undermountain,07650035, 0.4, 0.0, 11.2, 84.0, 0.8, 0.0, 3.6, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2021-22,2.7,15.900000000000006,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 1.1, 1.0, 10.7, 84.1, 0.1, 0.0, 3.0, 57.5, 42.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,10.700000000000003,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.0, 0.8, 5.9, 89.3, 0.3, 0.0, 2.8, 51.0, 49.0, 0.0 -15.030303030303022,5,a-cure-i1,2021-22,9.3,9.900000000000006,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.7, 1.2, 4.7, 90.1, 0.3, 0.0, 2.0, 47.6, 52.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,11.299999999999997,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 1.9, 1.3, 4.5, 88.7, 0.0, 0.0, 3.6, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.0,Spencer-E Brookfield - David Prouty High,07670505, 3.8, 2.3, 16.3, 72.0, 0.6, 0.0, 5.0, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.299999999999997,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.6, 0.0, 10.1, 83.7, 0.0, 0.0, 3.5, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.799999999999997,Spencer-E Brookfield - Knox Trail Middle School,07670415, 2.0, 1.2, 17.4, 75.2, 0.0, 0.0, 4.2, 54.4, 45.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,27.099999999999994,Spencer-E Brookfield - Wire Village School,07670040, 2.6, 1.2, 19.9, 72.9, 0.0, 0.0, 3.4, 55.4, 44.4, 0.2 -2.304921968787515,2.3,a-cure-i1,2021-22,12.0,83.3,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 21.5, 0.0, 56.1, 16.7, 0.0, 0.0, 5.8, 43.4, 56.6, 0.0 -0.9464285714285715,1,a-cure-i1,2021-22,5.3,89.6,Springfield - Alice B Beal Elementary,02810175, 19.3, 10.4, 55.2, 10.4, 0.0, 0.0, 4.6, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,91.3,Springfield - Arthur T Talmadge,02810165, 20.9, 1.0, 64.6, 8.7, 0.0, 0.0, 4.9, 54.9, 45.1, 0.0 -3.5077559462254397,3.51,a-cure-i1,2021-22,21.200000000000003,96.7,Springfield - Brightwood,02810025, 11.1, 0.0, 85.3, 3.3, 0.0, 0.0, 0.2, 50.1, 49.9, 0.0 -12.679589509692132,5,a-cure-i1,2021-22,69.5,87.7,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 17.9, 3.7, 64.5, 12.3, 0.0, 0.0, 1.7, 56.5, 43.5, 0.0 -8.099210822998872,5,a-cure-i1,2021-22,44.9,88.7,Springfield - Conservatory of the Arts,02810475, 16.7, 0.6, 69.2, 11.3, 0.0, 0.3, 1.9, 28.3, 70.8, 0.9 -3.0806257521058966,3.08,a-cure-i1,2021-22,16.0,83.1,Springfield - Daniel B Brunton,02810035, 19.6, 1.0, 59.4, 16.9, 0.0, 0.0, 3.1, 52.2, 47.8, 0.0 -3.24487594390507,3.24,a-cure-i1,2021-22,18.8,92.7,Springfield - Early Childhood Education Center,02810001, 21.2, 1.3, 60.9, 7.3, 0.0, 0.7, 8.6, 62.3, 37.7, 0.0 -2.444444444444444,2.44,a-cure-i1,2021-22,14.299999999999999,93.6,Springfield - Edward P. Boland School,02810010, 10.7, 2.0, 78.5, 6.4, 0.0, 0.0, 2.4, 55.3, 44.7, 0.0 -5.983333333333334,5,a-cure-i1,2021-22,35.900000000000006,96.0,Springfield - Elias Brookings,02810030, 21.4, 0.0, 72.9, 4.0, 0.3, 0.0, 1.3, 50.2, 49.8, 0.0 -3.5155412647374065,3.52,a-cure-i1,2021-22,20.5,93.3,Springfield - Emergence Academy,02810318, 15.6, 2.2, 75.6, 6.7, 0.0, 0.0, 0.0, 42.2, 57.8, 0.0 -1.3023255813953487,1.3,a-cure-i1,2021-22,7.699999999999999,94.6,Springfield - Forest Park Middle,02810325, 21.5, 4.4, 65.2, 5.4, 0.0, 0.0, 3.5, 52.1, 47.9, 0.0 -6.791111111111111,5,a-cure-i1,2021-22,38.2,90.0,Springfield - Frank H Freedman,02810075, 21.6, 2.1, 59.3, 10.0, 0.8, 0.0, 6.2, 49.4, 50.6, 0.0 -2.308068459657702,2.31,a-cure-i1,2021-22,11.8,81.8,Springfield - Frederick Harris,02810080, 17.9, 4.3, 52.3, 18.2, 0.7, 0.0, 6.6, 51.9, 48.1, 0.0 -18.867924528301888,5,a-cure-i1,2021-22,100.0,84.8,Springfield - Gateway to College at Holyoke Community College,02810575, 12.1, 0.0, 72.7, 15.2, 0.0, 0.0, 0.0, 30.3, 69.7, 0.0 -23.988005997001498,5,a-cure-i1,2021-22,100.0,66.7,Springfield - Gateway to College at Springfield Technical Community College,02810580, 7.4, 0.0, 59.3, 33.3, 0.0, 0.0, 0.0, 22.2, 74.1, 3.7 -4.334728033472803,4.33,a-cure-i1,2021-22,25.9,95.6,Springfield - German Gerena Community School,02810195, 14.2, 0.9, 77.3, 4.4, 0.4, 0.0, 2.8, 51.3, 48.7, 0.0 -1.0135746606334841,1.01,a-cure-i1,2021-22,5.6,88.4,Springfield - Glenwood,02810065, 4.9, 2.5, 76.4, 11.6, 0.0, 0.0, 4.6, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,4.5,87.0,Springfield - Glickman Elementary,02810068, 17.5, 1.8, 63.5, 13.0, 0.7, 0.0, 3.5, 52.3, 47.7, 0.0 -7.429805615550756,5,a-cure-i1,2021-22,43.0,92.6,Springfield - High School Of Commerce,02810510, 18.3, 1.2, 71.2, 7.4, 0.1, 0.2, 1.6, 51.2, 48.7, 0.2 -2.088495575221239,2.09,a-cure-i1,2021-22,11.8,90.4,Springfield - Hiram L Dorman,02810050, 17.1, 0.4, 68.1, 9.6, 0.0, 0.0, 4.8, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,4.0,96.5,Springfield - Homer Street,02810085, 23.0, 1.1, 67.2, 3.5, 0.3, 0.0, 4.9, 49.3, 50.7, 0.0 -9.060041407867496,5,a-cure-i1,2021-22,54.7,96.6,Springfield - Impact Prep at Chestnut,02810366, 13.5, 0.0, 79.3, 3.4, 0.5, 0.5, 2.9, 47.6, 52.4, 0.0 -1.0201342281879193,1.02,a-cure-i1,2021-22,5.7,89.4,Springfield - Indian Orchard Elementary,02810100, 15.6, 0.4, 68.9, 10.6, 0.6, 0.0, 3.9, 54.1, 45.9, 0.0 -6.487912087912088,5,a-cure-i1,2021-22,36.9,91.0,Springfield - John F Kennedy Middle,02810328, 22.1, 0.5, 65.7, 9.0, 0.0, 0.0, 2.6, 48.3, 51.7, 0.0 -6.116040955631398,5,a-cure-i1,2021-22,33.599999999999994,87.9,Springfield - John J Duggan Middle,02810320, 24.9, 2.6, 58.9, 12.1, 0.0, 0.0, 1.5, 55.1, 44.9, 0.0 -2.2369263607257204,2.24,a-cure-i1,2021-22,13.1,93.7,Springfield - Kensington International School,02810110, 14.1, 1.6, 75.3, 6.3, 0.4, 0.0, 2.4, 45.5, 54.5, 0.0 -7.47470398277718,5,a-cure-i1,2021-22,43.400000000000006,92.9,Springfield - Kiley Academy,02810316, 28.4, 0.0, 62.6, 7.1, 0.0, 0.0, 1.9, 52.6, 47.4, 0.0 -4.3152053274139845,4.32,a-cure-i1,2021-22,24.3,90.1,Springfield - Kiley Prep,02810315, 18.7, 2.3, 65.5, 9.9, 0.6, 0.0, 2.9, 56.7, 43.3, 0.0 -1.797752808988764,1.8,a-cure-i1,2021-22,10.0,89.0,Springfield - Liberty,02810115, 10.6, 0.8, 76.5, 11.0, 0.4, 0.0, 0.8, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.0,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 25.0, 75.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0 -5.842323651452283,5,a-cure-i1,2021-22,35.2,96.4,Springfield - Lincoln,02810120, 11.0, 0.4, 83.5, 3.6, 0.0, 0.0, 1.5, 50.5, 49.5, 0.0 -7.757575757575758,5,a-cure-i1,2021-22,48.0,99.0,Springfield - Lyceum Academy,02810317, 11.6, 0.2, 86.7, 1.0, 0.0, 0.0, 0.5, 55.9, 44.1, 0.0 -5.267857142857143,5,a-cure-i1,2021-22,29.5,89.6,Springfield - M Marcus Kiley Middle,02810330, 18.1, 1.8, 64.7, 10.4, 0.5, 0.0, 4.5, 53.4, 46.6, 0.0 -3.5595105672969964,3.56,a-cure-i1,2021-22,20.0,89.9,Springfield - Margaret C Ells,02810060, 25.6, 1.6, 54.3, 10.1, 0.8, 0.0, 7.8, 56.6, 43.4, 0.0 -2.9962546816479403,3.0,a-cure-i1,2021-22,15.0,80.1,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 15.9, 9.4, 51.3, 19.9, 0.4, 0.0, 3.2, 51.6, 48.4, 0.0 -4.431034482758621,4.43,a-cure-i1,2021-22,25.700000000000003,92.8,Springfield - Mary M Lynch,02810140, 21.7, 1.9, 65.2, 7.2, 0.0, 0.0, 3.9, 44.4, 55.6, 0.0 -4.7420814479638,4.74,a-cure-i1,2021-22,26.2,88.4,Springfield - Mary M Walsh,02810155, 19.5, 0.0, 67.0, 11.6, 0.0, 0.0, 1.9, 53.2, 46.8, 0.0 -3.474484256243214,3.47,a-cure-i1,2021-22,20.0,92.1,Springfield - Mary O Pottenger,02810145, 11.9, 1.7, 74.8, 7.9, 0.2, 0.0, 3.5, 50.7, 49.0, 0.2 -1.8366080661840742,1.84,a-cure-i1,2021-22,11.1,96.7,Springfield - Milton Bradley School,02810023, 18.4, 0.2, 76.1, 3.3, 0.4, 0.0, 1.6, 50.8, 49.2, 0.0 -4.942408376963351,4.94,a-cure-i1,2021-22,29.5,95.5,Springfield - Rebecca M Johnson,02810055, 23.7, 0.2, 69.7, 4.5, 0.0, 0.0, 1.9, 52.4, 47.6, 0.0 -5.512459371614301,5,a-cure-i1,2021-22,31.799999999999997,92.3,Springfield - Rise Academy at Van Sickle,02810480, 17.6, 1.1, 70.0, 7.7, 0.0, 0.0, 3.7, 56.0, 44.0, 0.0 -4.180021953896817,4.18,a-cure-i1,2021-22,23.799999999999997,91.1,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 16.3, 2.2, 71.5, 8.9, 0.1, 0.0, 1.1, 44.3, 55.6, 0.1 -3.8645598194130923,3.86,a-cure-i1,2021-22,21.4,88.6,Springfield - Samuel Bowles,02810020, 15.7, 1.0, 69.0, 11.4, 1.0, 0.5, 1.4, 48.6, 51.4, 0.0 -1.9403905447070917,1.94,a-cure-i1,2021-22,11.8,97.3,Springfield - South End Middle School,02810355, 22.7, 0.0, 73.3, 2.7, 0.0, 0.0, 1.3, 56.4, 43.6, 0.0 -3.6236323851203496,3.62,a-cure-i1,2021-22,20.7,91.4,Springfield - Springfield Central High,02810500, 21.1, 3.6, 64.4, 8.6, 0.1, 0.0, 2.2, 53.3, 46.7, 0.0 -4.3472378804960545,4.35,a-cure-i1,2021-22,24.1,88.7,Springfield - Springfield High School,02810570, 15.8, 0.0, 70.9, 11.3, 0.5, 0.0, 1.5, 64.0, 35.5, 0.5 -4.943231441048035,4.94,a-cure-i1,2021-22,28.3,91.6,Springfield - Springfield High School of Science and Technology,02810530, 18.1, 1.6, 70.2, 8.4, 0.1, 0.2, 1.4, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,100.0,Springfield - Springfield International Academy at Johnson,02810215, 16.7, 0.0, 83.3, 0.0, 0.0, 0.0, 0.0, 44.4, 55.6, 0.0 -5.3059548254620115,5,a-cure-i1,2021-22,32.3,97.4,Springfield - Springfield International Academy at Sci-Tech,02810700, 6.5, 1.3, 89.6, 2.6, 0.0, 0.0, 0.0, 77.9, 22.1, 0.0 -2.8762109795479005,2.88,a-cure-i1,2021-22,16.7,92.9,Springfield - Springfield Middle School,02810360, 28.6, 0.0, 64.3, 7.1, 0.0, 0.0, 0.0, 71.4, 28.6, 0.0 -6.608695652173913,5,a-cure-i1,2021-22,38.0,92.0,Springfield - Springfield Public Day Elementary School,02810005, 28.0, 0.0, 60.0, 8.0, 0.0, 0.0, 4.0, 80.0, 20.0, 0.0 -7.262054507337525,5,a-cure-i1,2021-22,43.3,95.4,Springfield - Springfield Public Day High School,02810550, 33.8, 0.0, 58.5, 4.6, 0.0, 0.0, 3.1, 83.1, 16.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,92.1,Springfield - Springfield Public Day Middle School,02810345, 13.2, 0.0, 78.9, 7.9, 0.0, 0.0, 0.0, 89.5, 10.5, 0.0 -13.825557809330627,5,a-cure-i1,2021-22,85.19999999999999,98.6,Springfield - Springfield Realization Academy,02810335, 18.6, 5.7, 71.4, 1.4, 0.0, 0.0, 2.9, 41.4, 58.6, 0.0 -3.0642201834862384,3.06,a-cure-i1,2021-22,16.7,87.2,Springfield - Springfield Transition Academy,02810675, 20.0, 4.0, 63.2, 12.8, 0.0, 0.0, 0.0, 71.2, 28.8, 0.0 -3.4928335170893052,3.49,a-cure-i1,2021-22,19.8,90.7,Springfield - STEM Middle Academy,02810350, 20.6, 4.6, 63.0, 9.3, 0.4, 0.0, 2.1, 55.2, 44.8, 0.0 -3.7281553398058254,3.73,a-cure-i1,2021-22,21.6,92.7,Springfield - Sumner Avenue,02810160, 20.0, 4.0, 65.7, 7.3, 0.0, 0.0, 3.0, 53.3, 46.5, 0.2 -5.676814988290397,5,a-cure-i1,2021-22,30.299999999999997,85.4,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 22.0, 1.3, 60.5, 14.6, 0.0, 0.0, 1.5, 48.8, 51.0, 0.2 -1,1,a-cure-i1,2021-22,0.0,91.8,Springfield - The Springfield Virtual School,02810705, 15.9, 0.4, 73.0, 8.2, 0.2, 0.0, 2.3, 50.8, 49.2, 0.0 -4.502883506343713,4.5,a-cure-i1,2021-22,24.4,86.7,Springfield - Thomas M Balliet,02810015, 21.8, 4.1, 53.9, 13.3, 0.0, 0.0, 6.8, 51.5, 48.5, 0.0 -3.2527472527472527,3.25,a-cure-i1,2021-22,18.5,91.0,Springfield - Van Sickle Academy,02810485, 8.3, 1.8, 80.6, 9.0, 0.0, 0.0, 0.4, 51.1, 48.6, 0.4 -3.1708428246013667,3.17,a-cure-i1,2021-22,17.4,87.8,Springfield - Warner,02810180, 19.9, 0.8, 63.8, 12.2, 0.0, 0.0, 3.3, 53.7, 45.9, 0.4 -1.5130434782608695,1.51,a-cure-i1,2021-22,8.7,92.0,Springfield - Washington,02810185, 16.3, 7.5, 63.5, 8.0, 0.0, 0.0, 4.7, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,4.2,95.9,Springfield - White Street,02810190, 20.8, 3.6, 67.3, 4.1, 0.3, 0.0, 4.1, 51.8, 48.2, 0.0 -3.5574288724973657,3.56,a-cure-i1,2021-22,21.1,94.9,Springfield - William N. DeBerry,02810045, 21.6, 0.0, 70.3, 5.1, 0.0, 0.0, 3.0, 53.8, 46.2, 0.0 -2.9449003516998826,2.94,a-cure-i1,2021-22,15.7,85.3,Springfield International Charter (District) - Springfield International Charter School,04410505, 28.7, 3.8, 46.8, 14.7, 0.0, 0.0, 6.1, 49.2, 50.8, 0.0 -13.66217616580311,5,a-cure-i1,2021-22,82.4,96.5,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 18.9, 3.0, 72.5, 3.5, 0.0, 0.0, 2.1, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.700000000000003,Stoneham - Colonial Park,02840005, 0.8, 7.2, 12.4, 77.3, 0.4, 0.0, 2.0, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2021-22,4.0,26.599999999999994,Stoneham - Robin Hood,02840025, 2.6, 5.3, 11.8, 73.4, 0.0, 0.0, 6.8, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,4.6,27.5,Stoneham - South,02840030, 5.2, 7.1, 11.4, 72.5, 0.0, 0.0, 3.7, 48.5, 51.5, 0.0 -4.999999999999999,5.0,a-cure-i1,2021-22,6.0,19.200000000000003,Stoneham - Stoneham Central Middle School,02840405, 2.1, 4.1, 9.4, 80.8, 0.3, 0.0, 3.2, 50.8, 49.1, 0.1 -1,1,a-cure-i1,2021-22,0.0,23.099999999999994,Stoneham - Stoneham High,02840505, 2.6, 5.7, 10.4, 76.9, 0.5, 0.0, 4.0, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,60.0,Stoughton - Edwin A Jones Early Childhood Center,02850012, 27.0, 6.0, 17.0, 40.0, 1.0, 1.0, 8.0, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,50.0,Stoughton - Helen Hansen Elementary,02850010, 20.3, 5.4, 15.9, 50.0, 0.4, 0.0, 8.0, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,49.7,Stoughton - Joseph H Gibbons,02850025, 21.8, 3.8, 16.5, 50.3, 0.0, 0.0, 7.6, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,54.4,Stoughton - Joseph R Dawe Jr Elementary,02850014, 26.0, 5.2, 17.1, 45.6, 0.0, 0.6, 5.5, 56.9, 43.1, 0.0 -3.241252302025783,3.24,a-cure-i1,2021-22,11.0,54.3,Stoughton - O'Donnell Middle School,02850405, 26.0, 6.4, 16.2, 45.7, 0.2, 0.4, 5.0, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,4.6,62.1,Stoughton - Richard L. Wilkins Elementary School,02850020, 24.1, 4.5, 25.2, 37.9, 0.3, 0.7, 7.2, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,52.2,Stoughton - South Elementary,02850015, 21.7, 10.7, 10.3, 47.8, 0.0, 0.4, 9.1, 51.0, 49.0, 0.0 -2.6097087378640773,2.61,a-cure-i1,2021-22,8.399999999999999,51.5,Stoughton - Stoughton High,02850505, 26.6, 6.9, 12.2, 48.5, 0.1, 0.8, 5.0, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.5,Sturbridge - Burgess Elementary,02870005, 0.8, 1.3, 8.4, 84.5, 0.0, 0.0, 5.0, 52.0, 48.0, 0.0 -6.6315789473684195,5,a-cure-i1,2021-22,6.3,15.200000000000003,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.8, 2.8, 6.0, 84.8, 0.4, 0.1, 3.1, 42.1, 57.7, 0.2 -4.546125461254614,4.55,a-cure-i1,2021-22,7.7,27.099999999999994,Sudbury - Ephraim Curtis Middle,02880305, 2.9, 11.4, 4.5, 72.9, 0.0, 0.2, 8.1, 54.1, 45.6, 0.2 -5.396825396825396,5,a-cure-i1,2021-22,8.5,25.200000000000003,Sudbury - General John Nixon Elementary,02880025, 4.4, 7.0, 4.4, 74.8, 0.0, 0.0, 9.4, 45.3, 54.7, 0.0 -6.250896057347669,5,a-cure-i1,2021-22,10.9,27.900000000000006,Sudbury - Israel Loring School,02880015, 3.5, 7.3, 9.7, 72.1, 0.2, 0.2, 6.9, 49.4, 50.6, 0.0 -5.153846153846155,5,a-cure-i1,2021-22,6.7,20.799999999999997,Sudbury - Josiah Haynes,02880010, 3.1, 7.3, 5.1, 79.2, 0.3, 0.0, 5.1, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,3.1,28.700000000000003,Sudbury - Peter Noyes,02880030, 1.9, 12.2, 5.6, 71.3, 0.0, 0.0, 8.9, 53.5, 46.3, 0.2 -2.447058823529412,2.45,a-cure-i1,2021-22,5.2,34.0,Sunderland - Sunderland Elementary,02890005, 4.3, 9.6, 12.2, 66.0, 0.5, 0.0, 7.4, 53.2, 46.3, 0.5 -1,1,a-cure-i1,2021-22,0.0,14.0,Sutton - Sutton Early Learning,02900003, 1.1, 1.1, 5.8, 86.0, 0.0, 0.4, 5.8, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,8.5,Sutton - Sutton Elementary,02900005, 1.1, 1.1, 3.3, 91.5, 0.0, 0.0, 3.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.099999999999994,Sutton - Sutton High School,02900510, 1.9, 1.7, 3.9, 88.9, 0.0, 0.0, 3.6, 49.6, 49.9, 0.6 -1,1,a-cure-i1,2021-22,0.0,10.299999999999997,Sutton - Sutton Middle School,02900305, 0.3, 2.0, 3.3, 89.7, 0.0, 0.0, 4.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.599999999999994,Swampscott - Clarke,02910005, 2.4, 2.9, 19.4, 71.4, 0.5, 0.0, 3.4, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.700000000000003,Swampscott - Hadley,02910010, 3.4, 3.8, 13.0, 74.3, 0.7, 0.0, 4.8, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.900000000000006,Swampscott - Stanley,02910020, 1.4, 2.9, 7.2, 86.1, 0.0, 0.0, 2.4, 59.1, 40.9, 0.0 -3.9008264462809916,3.9,a-cure-i1,2021-22,5.9,24.200000000000003,Swampscott - Swampscott High,02910505, 5.7, 3.4, 12.9, 75.8, 0.3, 0.0, 2.0, 49.8, 50.1, 0.2 -1,1,a-cure-i1,2021-22,1.3,23.5,Swampscott - Swampscott Middle,02910305, 3.7, 3.5, 13.0, 76.5, 0.3, 0.0, 2.9, 49.6, 50.1, 0.3 -1,1,a-cure-i1,2021-22,0.0,7.200000000000003,Swansea - Elizabeth S Brown,02920006, 1.4, 1.4, 2.2, 92.8, 0.0, 0.0, 2.2, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,3.799999999999997,Swansea - Gardner,02920015, 0.4, 0.8, 1.5, 96.2, 0.4, 0.0, 0.8, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2021-22,2.2,5.700000000000003,Swansea - Joseph Case High,02920505, 1.3, 0.4, 3.7, 94.3, 0.0, 0.0, 0.4, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,3.0,7.400000000000006,Swansea - Joseph Case Jr High,02920305, 0.8, 1.6, 3.0, 92.6, 0.6, 0.0, 1.4, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.0,Swansea - Joseph G Luther,02920020, 2.0, 2.0, 1.5, 91.0, 0.0, 0.0, 3.5, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.0,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 1.3, 1.3, 94.0, 0.0, 0.0, 3.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,2.7,14.900000000000006,Tantasqua - Tantasqua Regional Jr High,07700405, 1.9, 1.7, 7.8, 85.1, 0.3, 0.0, 3.2, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,2.5,15.5,Tantasqua - Tantasqua Regional Sr High,07700505, 1.2, 1.9, 7.8, 84.5, 0.1, 0.0, 4.4, 44.4, 55.3, 0.3 -1,1,a-cure-i1,2021-22,0.0,11.700000000000003,Tantasqua - Tantasqua Regional Vocational,07700605, 0.8, 0.2, 7.1, 88.3, 0.0, 0.2, 3.5, 63.0, 36.7, 0.4 -1,1,a-cure-i1,2021-22,0.0,36.7,Taunton - Benjamin Friedman Middle,02930315, 16.6, 1.2, 12.3, 63.3, 0.5, 0.0, 6.0, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2021-22,3.9,34.099999999999994,Taunton - East Taunton Elementary,02930010, 16.4, 0.6, 9.7, 65.9, 0.2, 0.0, 7.2, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.400000000000006,Taunton - Edmund Hatch Bennett,02930007, 14.4, 0.7, 11.7, 68.6, 0.0, 0.0, 4.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,44.7,Taunton - Edward F. Leddy Preschool,02930005, 25.3, 0.5, 12.9, 55.3, 0.5, 0.0, 5.5, 57.1, 42.9, 0.0 -1,1,a-cure-i1,2021-22,4.0,52.7,Taunton - Elizabeth Pole,02930027, 24.4, 1.1, 16.5, 47.3, 0.4, 0.2, 10.1, 50.0, 49.8, 0.2 -10.153846153846157,5,a-cure-i1,2021-22,42.900000000000006,67.6,Taunton - H H Galligan,02930057, 33.6, 0.8, 21.2, 32.4, 1.2, 0.4, 10.4, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,3.0,50.6,Taunton - James L. Mulcahey Elementary School,02930015, 24.4, 0.7, 19.6, 49.4, 0.2, 0.1, 5.5, 49.9, 50.1, 0.0 -2.099403578528827,2.1,a-cure-i1,2021-22,6.6,50.3,Taunton - John F Parker Middle,02930305, 27.2, 0.2, 15.7, 49.7, 0.2, 0.4, 6.5, 52.3, 47.7, 0.0 -2.9324758842443734,2.93,a-cure-i1,2021-22,5.7,31.099999999999994,Taunton - Joseph C Chamberlain,02930008, 12.7, 1.6, 10.0, 68.9, 0.5, 0.0, 6.4, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,39.5,Taunton - Joseph H Martin,02930042, 21.2, 1.8, 10.9, 60.5, 0.5, 0.2, 5.0, 50.0, 50.0, 0.0 -1.9483394833948338,1.95,a-cure-i1,2021-22,6.6,54.2,Taunton - Taunton Alternative High School,02930525, 26.4, 0.0, 18.1, 45.8, 1.4, 0.0, 8.3, 72.2, 27.8, 0.0 -2.851485148514852,2.85,a-cure-i1,2021-22,7.2,40.4,Taunton - Taunton High,02930505, 20.3, 1.1, 13.7, 59.6, 0.5, 0.3, 4.6, 50.4, 49.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,41.7,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 9.2, 3.8, 21.0, 58.3, 0.4, 0.3, 7.0, 44.9, 55.0, 0.1 -1,1,a-cure-i1,2021-22,0.0,15.599999999999994,Tewksbury - Heath-Brook,02950010, 5.0, 1.7, 5.6, 84.4, 0.0, 0.0, 3.3, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2021-22,2.0,17.200000000000003,Tewksbury - John F. Ryan,02950023, 4.0, 3.2, 8.3, 82.8, 0.0, 0.0, 1.8, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2021-22,2.8,17.0,Tewksbury - John W. Wynn Middle,02950305, 3.7, 2.5, 8.4, 83.0, 0.4, 0.0, 2.0, 51.5, 48.3, 0.2 -1,1,a-cure-i1,2021-22,0.0,24.599999999999994,Tewksbury - L F Dewing,02950001, 4.4, 7.3, 8.0, 75.4, 0.0, 0.0, 4.9, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.299999999999997,Tewksbury - Louise Davy Trahan,02950025, 3.3, 1.4, 4.7, 88.7, 0.0, 0.0, 1.9, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.200000000000003,Tewksbury - North Street,02950020, 5.4, 5.8, 5.4, 81.8, 0.4, 0.0, 1.2, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,1.6,17.599999999999994,Tewksbury - Tewksbury Memorial High,02950505, 4.0, 5.4, 6.6, 82.4, 0.1, 0.0, 1.5, 49.0, 50.6, 0.4 -2.0735009671179885,2.07,a-cure-i1,2021-22,6.7,51.7,Tisbury - Tisbury Elementary,02960005, 5.6, 0.7, 39.5, 48.3, 2.4, 0.0, 3.5, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.700000000000003,Topsfield - Proctor Elementary,02980005, 0.4, 1.2, 3.5, 90.3, 1.6, 0.0, 3.1, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,3.2,9.900000000000006,Topsfield - Steward Elementary,02980010, 0.0, 1.9, 5.2, 90.1, 0.3, 0.0, 2.5, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.700000000000003,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 1.2, 0.7, 8.8, 84.3, 0.1, 0.1, 4.7, 59.7, 39.5, 0.7 -1,1,a-cure-i1,2021-22,0.0,6.099999999999994,Triton - Newbury Elementary,07730020, 1.3, 0.8, 2.5, 93.9, 0.0, 0.3, 1.3, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,6.299999999999997,Triton - Pine Grove,07730025, 0.5, 1.7, 2.0, 93.7, 0.2, 0.0, 2.0, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2021-22,3.6,17.299999999999997,Triton - Salisbury Elementary,07730015, 3.7, 2.6, 7.0, 82.7, 0.5, 0.2, 3.3, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,4.7,10.0,Triton - Triton Regional High School,07730505, 1.1, 3.1, 4.0, 90.0, 0.0, 0.2, 1.7, 51.2, 48.5, 0.3 -1,1,a-cure-i1,2021-22,0.0,12.200000000000003,Triton - Triton Regional Middle School,07730405, 2.7, 2.4, 5.0, 87.8, 0.0, 0.6, 1.5, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,32.400000000000006,Truro - Truro Central,03000005, 8.1, 0.0, 8.1, 67.6, 0.0, 0.0, 16.2, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.700000000000003,Tyngsborough - Tyngsborough Elementary,03010020, 4.3, 10.5, 9.8, 71.3, 0.2, 0.0, 3.7, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2021-22,3.3,22.799999999999997,Tyngsborough - Tyngsborough High School,03010505, 3.3, 8.2, 7.5, 77.2, 0.0, 0.0, 3.8, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2021-22,3.2,24.700000000000003,Tyngsborough - Tyngsborough Middle,03010305, 5.1, 9.4, 5.9, 75.3, 0.0, 0.0, 4.3, 53.4, 46.6, 0.0 -3.448704663212435,3.45,a-cure-i1,2021-22,20.799999999999997,96.5,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 44.2, 4.7, 45.7, 3.5, 0.3, 0.3, 1.3, 53.9, 46.1, 0.0 -6.048387096774193,5,a-cure-i1,2021-22,37.5,99.2,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 53.1, 0.6, 42.3, 0.8, 0.2, 0.6, 2.5, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.299999999999997,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 1.8, 0.0, 80.7, 0.0, 0.0, 17.5, 45.6, 54.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.299999999999997,Up-Island Regional - West Tisbury Elementary,07740020, 2.0, 0.0, 10.7, 76.7, 3.9, 0.0, 6.7, 50.8, 48.9, 0.3 -1,1,a-cure-i1,2021-22,0.0,17.299999999999997,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 3.2, 0.8, 5.1, 82.7, 0.7, 0.1, 7.4, 59.1, 40.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.0,Uxbridge - Gateway to College,03040515, 3.1, 3.1, 15.6, 75.0, 0.0, 0.0, 3.1, 37.5, 62.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.099999999999994,Uxbridge - Taft Early Learning Center,03040005, 0.4, 1.3, 8.0, 86.9, 0.0, 0.4, 3.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,2.1,12.700000000000003,Uxbridge - Uxbridge High,03040505, 1.1, 2.2, 6.0, 87.3, 0.9, 0.0, 2.5, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.900000000000006,Uxbridge - Whitin Intermediate,03040405, 1.9, 1.0, 5.4, 88.1, 0.4, 0.4, 2.7, 53.5, 46.5, 0.0 -7.142559833506764,5,a-cure-i1,2021-22,42.9,96.1,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 21.6, 1.8, 68.4, 3.9, 0.8, 0.3, 3.2, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.099999999999994,Wachusett - Central Tree Middle,07750310, 3.3, 2.2, 5.8, 84.9, 0.5, 0.0, 3.3, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,12.099999999999994,Wachusett - Chocksett Middle School,07750315, 1.0, 1.0, 8.3, 87.9, 0.0, 0.0, 1.7, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2021-22,3.6,16.900000000000006,Wachusett - Davis Hill Elementary,07750018, 4.0, 0.9, 7.8, 83.1, 0.4, 0.2, 3.5, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.299999999999997,Wachusett - Dawson,07750020, 2.9, 4.9, 7.0, 80.7, 0.0, 0.2, 4.3, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.400000000000006,Wachusett - Early Childhood Center,07750001, 2.4, 6.3, 11.8, 75.6, 0.0, 0.0, 3.9, 67.7, 32.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.0,Wachusett - Glenwood Elementary School,07750060, 1.8, 1.8, 7.3, 87.0, 0.0, 0.0, 2.1, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.900000000000006,Wachusett - Houghton Elementary,07750027, 4.9, 3.1, 10.7, 77.1, 0.0, 0.0, 4.3, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.400000000000006,Wachusett - Leroy E.Mayo,07750032, 4.0, 2.8, 9.0, 81.6, 0.0, 0.2, 2.4, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2021-22,2.2,17.0,Wachusett - Mountview Middle,07750305, 3.6, 4.0, 6.5, 83.0, 0.3, 0.0, 2.6, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.400000000000006,Wachusett - Naquag Elementary School,07750005, 2.3, 1.5, 9.0, 84.6, 0.0, 0.0, 2.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.299999999999997,Wachusett - Paxton Center,07750040, 1.3, 2.5, 7.4, 85.7, 0.0, 0.0, 3.1, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2021-22,4.1,8.0,Wachusett - Thomas Prince,07750045, 2.3, 0.9, 3.7, 92.0, 0.0, 0.0, 1.1, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.900000000000006,Wachusett - Wachusett Regional High,07750505, 2.0, 3.7, 5.9, 86.1, 0.1, 0.0, 2.2, 47.0, 52.9, 0.1 -1,1,a-cure-i1,2021-22,0.0,15.700000000000003,Wakefield - Dolbeare,03050005, 2.2, 3.6, 7.6, 84.3, 0.2, 0.0, 2.0, 49.7, 50.3, 0.0 -5.442176870748298,5,a-cure-i1,2021-22,10.0,29.400000000000006,Wakefield - Early Childhood Center at the Doyle School,03050001, 2.9, 6.9, 14.7, 70.6, 0.0, 0.0, 4.9, 57.8, 42.2, 0.0 -1,1,a-cure-i1,2021-22,0.7,17.5,Wakefield - Galvin Middle School,03050310, 2.2, 3.5, 8.4, 82.5, 0.1, 0.5, 2.9, 50.8, 48.9, 0.3 -1,1,a-cure-i1,2021-22,0.0,14.799999999999997,Wakefield - Greenwood,03050020, 1.3, 2.2, 5.8, 85.2, 0.0, 0.4, 4.9, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2021-22,1.2,17.700000000000003,Wakefield - Wakefield Memorial High,03050505, 3.3, 4.0, 7.7, 82.3, 0.2, 0.0, 2.5, 48.6, 51.3, 0.1 -1,1,a-cure-i1,2021-22,0.0,15.299999999999997,Wakefield - Walton,03050040, 3.7, 1.9, 7.4, 84.7, 0.0, 0.5, 1.9, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2021-22,4.2,24.799999999999997,Wakefield - Woodville School,03050015, 3.5, 6.4, 10.9, 75.2, 0.0, 0.2, 3.8, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,7.599999999999994,Wales - Wales Elementary,03060005, 1.7, 0.0, 3.4, 92.4, 1.7, 0.0, 0.8, 59.3, 40.7, 0.0 -1,1,a-cure-i1,2021-22,3.2,19.400000000000006,Walpole - Bird Middle,03070305, 4.8, 2.7, 8.8, 80.6, 0.5, 0.0, 2.7, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,21.599999999999994,Walpole - Boyden,03070010, 7.4, 3.4, 7.7, 78.4, 0.8, 0.0, 2.4, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.099999999999994,Walpole - Daniel Feeney Preschool Center,03070002, 2.3, 9.1, 9.1, 73.9, 1.1, 0.0, 4.5, 60.2, 39.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.700000000000003,Walpole - Eleanor N Johnson Middle,03070310, 2.6, 11.7, 5.9, 76.3, 0.0, 0.0, 3.5, 53.5, 46.0, 0.5 -1,1,a-cure-i1,2021-22,0.0,20.299999999999997,Walpole - Elm Street School,03070005, 4.6, 7.3, 4.6, 79.7, 0.0, 0.0, 3.9, 44.1, 55.7, 0.2 -1,1,a-cure-i1,2021-22,0.0,29.700000000000003,Walpole - Fisher,03070015, 1.8, 15.1, 7.9, 70.3, 0.4, 0.4, 4.0, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.599999999999994,Walpole - Old Post Road,03070018, 2.8, 3.2, 10.0, 79.4, 0.0, 0.0, 4.7, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,2.5,18.799999999999997,Walpole - Walpole High,03070505, 3.5, 6.3, 6.3, 81.2, 0.4, 0.0, 2.2, 50.3, 49.4, 0.3 -1,1,a-cure-i1,2021-22,0.3,39.2,Waltham - Douglas MacArthur Elementary School,03080032, 7.7, 10.0, 16.0, 60.8, 0.2, 0.0, 5.3, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2021-22,4.3999999999999995,87.8,Waltham - Henry Whittemore Elementary School,03080065, 7.2, 3.8, 75.5, 12.2, 0.0, 0.0, 1.2, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2021-22,0.8,47.0,Waltham - James Fitzgerald Elementary School,03080060, 1.8, 6.6, 32.3, 53.0, 0.0, 0.0, 6.3, 55.9, 44.1, 0.0 -4.502325581395349,4.5,a-cure-i1,2021-22,12.1,43.0,Waltham - John F Kennedy Middle,03080404, 7.8, 4.2, 27.8, 57.0, 0.0, 0.0, 3.3, 54.4, 45.4, 0.2 -2.618585298196949,2.62,a-cure-i1,2021-22,11.8,72.1,Waltham - John W. McDevitt Middle School,03080415, 8.9, 1.9, 60.0, 27.9, 0.0, 0.0, 1.3, 54.1, 45.9, 0.0 -1.55366269165247,1.55,a-cure-i1,2021-22,5.7,58.7,Waltham - Northeast Elementary School,03080040, 11.4, 6.1, 38.7, 41.3, 0.4, 0.0, 2.0, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2021-22,0.7,60.5,Waltham - Thomas R Plympton Elementary School,03080050, 12.9, 5.1, 38.3, 39.5, 0.0, 0.0, 4.2, 53.3, 46.7, 0.0 -10.673495518565943,5,a-cure-i1,2021-22,52.1,78.1,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.3, 0.0, 70.0, 21.9, 0.0, 0.0, 3.8, 54.3, 45.7, 0.0 -3.1731092436974793,3.17,a-cure-i1,2021-22,11.8,59.5,Waltham - Waltham Sr High,03080505, 9.7, 3.7, 44.6, 40.5, 0.0, 0.1, 1.5, 52.7, 47.1, 0.2 -1,1,a-cure-i1,2021-22,2.8,66.9,Waltham - William F. Stanley Elementary School,03080005, 10.8, 8.1, 45.9, 33.1, 0.3, 0.0, 1.8, 57.7, 42.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.299999999999997,Ware - Stanley M Koziol Elementary School,03090020, 2.4, 0.0, 12.9, 80.7, 0.0, 0.3, 3.8, 47.7, 52.3, 0.0 -7.95530726256983,5,a-cure-i1,2021-22,8.9,17.900000000000006,Ware - Ware Junior/Senior High School,03090505, 2.2, 0.2, 9.5, 82.1, 0.4, 0.4, 5.2, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.400000000000006,Ware - Ware Middle School,03090305, 2.0, 0.8, 11.8, 81.6, 0.4, 0.0, 3.5, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.299999999999997,Wareham - John William Decas,03100003, 4.8, 1.0, 7.6, 75.7, 1.3, 0.0, 9.6, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,39.8,Wareham - Minot Forest,03100017, 7.2, 0.9, 12.9, 60.2, 1.6, 0.3, 16.9, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.599999999999994,Wareham - Wareham Cooperative Alternative School,03100315, 13.2, 0.0, 10.5, 68.4, 2.6, 0.0, 5.3, 71.1, 28.9, 0.0 -1,1,a-cure-i1,2021-22,2.5,34.8,Wareham - Wareham Middle,03100305, 8.4, 0.9, 11.0, 65.2, 1.5, 0.2, 12.8, 51.3, 48.7, 0.0 -5.384615384615384,5,a-cure-i1,2021-22,10.5,31.200000000000003,Wareham - Wareham Senior High,03100505, 9.1, 0.6, 7.0, 68.8, 1.6, 0.0, 12.9, 47.1, 52.4, 0.5 -6.598870056497174,5,a-cure-i1,2021-22,14.6,35.400000000000006,Watertown - Cunniff,03140015, 3.2, 6.2, 19.8, 64.6, 0.0, 0.0, 6.2, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2021-22,2.7,38.0,Watertown - Hosmer,03140020, 5.4, 8.2, 17.1, 62.0, 0.1, 0.1, 7.0, 53.1, 46.9, 0.0 -8.264631043256998,5,a-cure-i1,2021-22,20.3,39.3,Watertown - James Russell Lowell,03140025, 5.3, 4.7, 19.5, 60.7, 0.0, 0.0, 9.7, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2021-22,3.3,37.7,Watertown - Watertown High,03140505, 4.1, 8.4, 20.4, 62.3, 0.6, 0.0, 4.3, 54.0, 45.5, 0.4 -1,1,a-cure-i1,2021-22,2.9,38.6,Watertown - Watertown Middle,03140305, 2.4, 6.8, 23.4, 61.4, 0.6, 0.0, 5.5, 48.0, 51.8, 0.2 -1,1,a-cure-i1,2021-22,3.2,27.900000000000006,Wayland - Claypit Hill School,03150005, 4.1, 10.3, 4.8, 72.1, 0.0, 0.0, 8.7, 49.6, 50.4, 0.0 -5.12455516014235,5,a-cure-i1,2021-22,9.0,28.099999999999994,Wayland - Happy Hollow School,03150015, 3.4, 11.6, 4.9, 71.9, 0.3, 0.0, 8.0, 52.1, 47.9, 0.0 -8.274143302180688,5,a-cure-i1,2021-22,16.6,32.099999999999994,Wayland - Loker School,03150020, 2.9, 14.2, 8.6, 67.9, 0.3, 0.0, 6.1, 47.6, 52.4, 0.0 -3.2737752161383282,3.27,a-cure-i1,2021-22,7.1,34.7,Wayland - Wayland High School,03150505, 5.1, 19.5, 4.2, 65.3, 0.0, 0.1, 5.8, 49.0, 51.0, 0.0 -7.017543859649122,5,a-cure-i1,2021-22,15.0,34.2,Wayland - Wayland Middle School,03150305, 6.8, 15.3, 5.0, 65.8, 0.0, 0.3, 6.8, 51.5, 48.3, 0.2 -1,1,a-cure-i1,2021-22,3.0,53.3,Webster - Bartlett High School,03160505, 7.9, 2.7, 35.5, 46.7, 0.2, 0.2, 6.7, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,51.4,Webster - Park Avenue Elementary,03160015, 6.9, 1.1, 37.0, 48.6, 0.3, 0.0, 6.1, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,45.2,Webster - Webster Middle School,03160315, 6.1, 1.5, 32.8, 54.8, 0.2, 0.0, 4.6, 54.3, 45.7, 0.0 -7.392739273927393,5,a-cure-i1,2021-22,14.0,30.299999999999997,Wellesley - Ernest F Upham,03170050, 6.7, 10.3, 6.7, 69.7, 0.6, 0.0, 6.1, 49.1, 50.9, 0.0 -10.1139896373057,5,a-cure-i1,2021-22,12.2,19.299999999999997,Wellesley - Hunnewell,03170025, 2.8, 5.5, 5.5, 80.7, 0.0, 0.0, 5.5, 45.9, 54.1, 0.0 -2.019723865877712,2.02,a-cure-i1,2021-22,6.4,50.7,Wellesley - John D Hardy,03170020, 1.9, 28.6, 10.8, 49.3, 0.0, 0.0, 9.4, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,37.0,Wellesley - Joseph E Fiske,03170015, 3.8, 21.9, 5.7, 63.0, 0.0, 0.0, 5.7, 48.7, 51.3, 0.0 -5.916981132075472,5,a-cure-i1,2021-22,9.8,26.5,Wellesley - Katharine Lee Bates,03170005, 2.1, 9.2, 3.9, 73.5, 0.0, 0.0, 11.3, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,44.7,Wellesley - Preschool at Wellesley Schools,03170001, 2.1, 19.1, 12.8, 55.3, 0.0, 0.0, 10.6, 58.5, 41.5, 0.0 -1,1,a-cure-i1,2021-22,4.2,31.599999999999994,Wellesley - Schofield,03170045, 3.3, 18.5, 4.2, 68.4, 0.0, 0.3, 5.4, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2021-22,4.7,43.9,Wellesley - Sprague Elementary School,03170048, 2.3, 21.1, 5.6, 56.1, 0.0, 0.0, 14.9, 51.2, 48.8, 0.0 -3.904761904761906,3.9,a-cure-i1,2021-22,8.200000000000001,33.599999999999994,Wellesley - Wellesley Middle,03170305, 4.3, 15.7, 5.6, 66.4, 0.0, 0.0, 8.1, 48.8, 51.2, 0.0 -3.2751677852348995,3.28,a-cure-i1,2021-22,6.1,29.799999999999997,Wellesley - Wellesley Sr High,03170505, 4.3, 14.2, 5.4, 70.2, 0.0, 0.0, 5.8, 48.7, 51.1, 0.1 -1,1,a-cure-i1,2021-22,0.0,22.299999999999997,Wellfleet - Wellfleet Elementary,03180005, 2.7, 0.0, 6.3, 77.7, 0.0, 0.0, 13.4, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.599999999999994,West Boylston - Major Edwards Elementary,03220005, 2.9, 1.7, 11.8, 79.4, 0.0, 0.2, 3.9, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2021-22,3.4000000000000004,21.200000000000003,West Boylston - West Boylston Junior/Senior High,03220505, 2.8, 3.2, 11.0, 78.8, 0.2, 0.2, 3.8, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.299999999999997,West Bridgewater - Howard School,03230305, 5.1, 1.0, 6.4, 81.7, 0.3, 0.0, 5.4, 48.8, 51.2, 0.0 -4.52017937219731,4.52,a-cure-i1,2021-22,6.3,22.299999999999997,West Bridgewater - Rose L Macdonald,03230003, 6.9, 0.9, 7.9, 77.7, 0.0, 0.0, 6.6, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.099999999999994,West Bridgewater - Spring Street School,03230005, 6.3, 0.0, 8.3, 81.9, 0.0, 0.0, 3.5, 57.6, 42.4, 0.0 -1,1,a-cure-i1,2021-22,2.1,18.599999999999994,West Bridgewater - West Bridgewater Junior/Senior,03230505, 7.1, 0.6, 6.3, 81.4, 0.3, 0.2, 4.2, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,42.7,West Springfield - Cowing Early Childhood,03320001, 4.5, 10.1, 19.1, 57.3, 0.0, 0.0, 9.0, 56.2, 43.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,44.7,West Springfield - John Ashley,03320005, 3.6, 3.6, 29.4, 55.3, 0.0, 0.0, 8.1, 48.2, 51.8, 0.0 -2.675078864353312,2.68,a-cure-i1,2021-22,5.3,31.700000000000003,West Springfield - John R Fausey,03320010, 3.0, 5.0, 19.3, 68.3, 0.0, 0.0, 4.5, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,63.6,West Springfield - Memorial,03320025, 4.8, 12.0, 41.1, 36.4, 0.0, 0.0, 5.7, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,32.3,West Springfield - Mittineague,03320030, 2.5, 3.1, 24.2, 67.7, 0.0, 0.0, 2.5, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,52.7,West Springfield - Philip G Coburn,03320007, 5.2, 16.8, 26.6, 47.3, 0.2, 0.2, 3.7, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,22.599999999999994,West Springfield - Tatham,03320040, 1.1, 3.3, 14.1, 77.4, 0.0, 0.0, 4.1, 57.4, 42.6, 0.0 -2.4043715846994536,2.4,a-cure-i1,2021-22,5.5,36.6,West Springfield - West Springfield High,03320505, 4.1, 8.4, 20.8, 63.4, 0.2, 0.1, 3.1, 53.2, 46.5, 0.3 -1,1,a-cure-i1,2021-22,4.2,35.2,West Springfield - West Springfield Middle,03320305, 3.6, 9.4, 17.3, 64.8, 0.0, 0.2, 4.7, 49.5, 50.5, 0.0 -2.475822050290135,2.48,a-cure-i1,2021-22,8.0,51.7,Westborough - Annie E Fales,03210010, 2.0, 42.2, 4.9, 48.3, 0.0, 0.3, 2.3, 51.7, 48.3, 0.0 -1.329073482428115,1.33,a-cure-i1,2021-22,5.2,62.6,Westborough - Elsie A Hastings Elementary,03210025, 2.9, 41.9, 13.0, 37.4, 0.8, 0.0, 3.9, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,54.2,Westborough - J Harding Armstrong,03210005, 3.0, 36.2, 9.8, 45.8, 0.3, 0.0, 4.9, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,53.0,Westborough - Mill Pond School,03210045, 3.5, 36.6, 9.3, 47.0, 0.1, 0.0, 3.5, 49.7, 50.3, 0.0 -2.0655737704918034,2.07,a-cure-i1,2021-22,6.3,48.8,Westborough - Sarah W Gibbons Middle,03210305, 4.9, 34.8, 6.6, 51.2, 0.2, 0.0, 2.4, 48.8, 51.2, 0.0 -2.104308390022676,2.1,a-cure-i1,2021-22,5.800000000000001,44.1,Westborough - Westborough High,03210505, 1.1, 31.7, 7.6, 55.9, 0.0, 0.1, 3.7, 48.4, 51.4, 0.2 -1,1,a-cure-i1,2021-22,0.0,38.6,Westfield - Abner Gibbs,03250020, 1.8, 7.0, 26.3, 61.4, 0.0, 0.0, 3.5, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,29.099999999999994,Westfield - Fort Meadow Early Childhood Center,03250003, 1.3, 2.5, 19.0, 70.9, 0.0, 0.0, 6.3, 59.5, 40.5, 0.0 -2.2974358974358977,2.3,a-cure-i1,2021-22,8.4,58.5,Westfield - Franklin Ave,03250015, 1.7, 1.7, 46.0, 41.5, 0.0, 0.0, 9.1, 41.5, 58.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.900000000000006,Westfield - Highland,03250025, 0.6, 3.7, 10.2, 82.1, 0.0, 0.0, 3.4, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.099999999999994,Westfield - Munger Hill,03250033, 2.7, 4.5, 15.2, 73.9, 0.0, 0.0, 3.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,32.400000000000006,Westfield - Paper Mill,03250036, 2.2, 1.9, 20.6, 67.6, 0.0, 0.0, 7.6, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,31.5,Westfield - Southampton Road,03250040, 2.1, 3.8, 18.8, 68.5, 0.0, 0.0, 6.8, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,27.799999999999997,Westfield - Westfield High,03250505, 2.8, 2.8, 19.0, 72.2, 0.0, 0.0, 3.2, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2021-22,1.9,25.599999999999994,Westfield - Westfield Intermediate School,03250075, 2.5, 2.8, 17.2, 74.4, 0.0, 0.1, 2.8, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2021-22,2.6,29.200000000000003,Westfield - Westfield Middle School,03250310, 2.7, 3.7, 19.5, 70.8, 0.3, 0.0, 3.1, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2021-22,4.300000000000001,17.0,Westfield - Westfield Technical Academy,03250605, 0.4, 1.5, 13.3, 83.0, 0.2, 0.0, 1.7, 66.2, 33.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,36.4,Westfield - Westfield Virtual School,03250705, 5.1, 1.0, 27.3, 63.6, 0.0, 0.0, 3.0, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.700000000000003,Westford - Abbot Elementary,03260004, 0.3, 22.3, 1.5, 73.3, 0.0, 0.0, 2.6, 51.9, 48.1, 0.0 -2.905747126436782,2.91,a-cure-i1,2021-22,7.9,43.5,Westford - Blanchard Middle,03260310, 1.8, 34.5, 3.0, 56.5, 0.2, 0.0, 4.0, 48.2, 51.6, 0.2 -1,1,a-cure-i1,2021-22,0.0,46.7,Westford - Col John Robinson,03260025, 2.5, 31.9, 4.3, 53.3, 0.3, 0.0, 7.7, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,45.9,Westford - Day Elementary,03260007, 1.7, 35.8, 3.4, 54.1, 0.0, 0.0, 5.1, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,41.9,Westford - John A. Crisafulli Elementary School,03260045, 0.6, 33.2, 2.4, 58.1, 0.0, 0.0, 5.7, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,25.0,Westford - Nabnasset,03260015, 0.3, 18.1, 1.4, 75.0, 0.5, 0.0, 4.7, 51.4, 48.6, 0.0 -1.5418181818181818,1.54,a-cure-i1,2021-22,5.3,55.0,Westford - Rita E. Miller Elementary School,03260055, 3.6, 41.0, 5.9, 45.0, 0.0, 0.0, 4.6, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2021-22,2.4,37.3,Westford - Stony Brook School,03260330, 0.6, 29.0, 3.0, 62.7, 0.2, 0.0, 4.6, 44.6, 55.1, 0.3 -2.1857923497267757,2.19,a-cure-i1,2021-22,5.0,36.6,Westford - Westford Academy,03260505, 1.3, 29.5, 2.5, 63.4, 0.2, 0.1, 3.1, 51.4, 48.6, 0.1 -1,1,a-cure-i1,2021-22,0.0,5.799999999999997,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 4.9, 94.2, 0.0, 0.0, 1.0, 57.3, 42.7, 0.0 -2.484472049689441,2.48,a-cure-i1,2021-22,5.0,32.2,Weston - Country,03300010, 5.8, 13.8, 4.5, 67.8, 0.0, 0.0, 8.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,42.6,Weston - Field Elementary School,03300012, 6.5, 21.7, 9.9, 57.4, 0.0, 0.4, 4.2, 51.7, 48.3, 0.0 -8.27882037533512,5,a-cure-i1,2021-22,19.299999999999997,37.3,Weston - Weston High,03300505, 7.5, 18.3, 5.0, 62.7, 0.3, 0.0, 6.1, 52.7, 47.3, 0.0 -4.194174757281553,4.19,a-cure-i1,2021-22,10.8,41.2,Weston - Weston Middle,03300305, 4.6, 19.7, 8.8, 58.8, 0.0, 0.0, 8.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.5,Weston - Woodland,03300015, 7.0, 13.4, 8.1, 66.5, 0.0, 0.0, 4.9, 44.4, 55.3, 0.4 -1,1,a-cure-i1,2021-22,0.0,13.599999999999994,Westport - Alice A Macomber,03310015, 1.9, 1.2, 6.8, 86.4, 0.0, 0.0, 3.7, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.5,Westport - Westport Elementary,03310030, 0.9, 0.2, 5.7, 90.5, 0.0, 0.0, 2.7, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.5,Westport - Westport Middle-High School,03310515, 0.6, 1.1, 4.1, 90.5, 0.1, 0.0, 3.6, 53.0, 46.7, 0.2 -9.736434108527133,5,a-cure-i1,2021-22,15.700000000000001,25.799999999999997,Westwood - Deerfield School,03350010, 3.3, 13.2, 3.3, 74.2, 0.0, 0.0, 6.0, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2021-22,4.3,31.700000000000003,Westwood - Downey,03350012, 0.3, 19.3, 5.2, 68.3, 0.0, 0.3, 6.5, 57.2, 42.8, 0.0 -1,1,a-cure-i1,2021-22,2.1,27.0,Westwood - E W Thurston Middle,03350305, 2.1, 12.2, 7.3, 73.0, 0.2, 0.2, 5.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2021-22,0.4,19.5,Westwood - Martha Jones,03350017, 0.0, 6.6, 4.0, 80.5, 0.0, 0.0, 8.8, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,29.599999999999994,Westwood - Paul Hanlon,03350015, 1.1, 16.4, 6.3, 70.4, 0.0, 0.0, 5.8, 52.4, 47.6, 0.0 -7.336244541484715,5,a-cure-i1,2021-22,10.5,22.900000000000006,Westwood - Westwood High,03350505, 3.7, 12.3, 4.4, 77.1, 0.0, 0.0, 2.5, 49.7, 50.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,30.200000000000003,Westwood - Westwood Integrated Preschool,03350050, 2.3, 7.0, 11.6, 69.8, 0.0, 0.0, 9.3, 60.5, 39.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.099999999999994,Westwood - William E Sheehan,03350025, 0.7, 8.7, 3.8, 79.9, 0.0, 0.0, 6.9, 54.5, 45.5, 0.0 -2.615384615384615,2.62,a-cure-i1,2021-22,5.1,31.200000000000003,Weymouth - Abigail Adams Middle School,03360310, 7.9, 6.1, 13.5, 68.8, 0.1, 0.1, 3.4, 46.2, 53.7, 0.1 -1,1,a-cure-i1,2021-22,0.0,28.400000000000006,Weymouth - Academy Avenue,03360005, 4.4, 5.9, 9.4, 71.6, 0.0, 0.6, 8.1, 53.8, 46.3, 0.0 -2.1782178217821784,2.18,a-cure-i1,2021-22,5.5,40.4,Weymouth - Frederick C Murphy,03360050, 9.3, 5.4, 20.7, 59.6, 0.0, 0.0, 5.0, 56.4, 43.6, 0.0 -4.124223602484472,4.12,a-cure-i1,2021-22,8.3,32.2,Weymouth - Johnson Early Childhood Center,03360003, 7.0, 11.7, 5.3, 67.8, 0.0, 0.0, 8.2, 58.5, 41.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,28.0,Weymouth - Lawrence W Pingree,03360065, 5.6, 4.4, 12.4, 72.0, 0.8, 0.0, 4.8, 46.4, 53.6, 0.0 -3.260053619302949,3.26,a-cure-i1,2021-22,7.6,37.3,Weymouth - Ralph Talbot,03360085, 10.4, 7.2, 13.7, 62.7, 0.0, 0.0, 6.0, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,20.900000000000006,Weymouth - Thomas V Nash,03360060, 2.5, 4.0, 6.5, 79.1, 0.0, 0.5, 7.5, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,36.2,Weymouth - Thomas W. Hamilton Primary School,03360105, 2.7, 15.9, 13.2, 63.8, 0.3, 0.0, 4.2, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,26.200000000000003,Weymouth - Wessagusset,03360110, 4.8, 7.1, 7.4, 73.8, 0.6, 0.0, 6.3, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2021-22,3.5999999999999996,29.200000000000003,Weymouth - Weymouth High School,03360505, 7.9, 5.4, 11.5, 70.8, 0.2, 0.1, 4.0, 50.7, 49.2, 0.1 -1,1,a-cure-i1,2021-22,0.0,62.3,Weymouth - William Seach,03360080, 18.3, 10.0, 24.8, 37.7, 0.3, 0.0, 8.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,5.799999999999997,Whately - Whately Elementary,03370005, 0.8, 0.0, 4.1, 94.2, 0.0, 0.0, 0.8, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.799999999999997,Whitman-Hanson - Hanson Middle School,07800315, 0.9, 1.5, 5.9, 88.2, 0.4, 0.0, 3.1, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,11.400000000000006,Whitman-Hanson - Indian Head,07800035, 2.2, 1.6, 5.0, 88.6, 0.0, 0.0, 2.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2021-22,4.2,23.299999999999997,Whitman-Hanson - John H Duval,07800030, 5.0, 1.7, 11.5, 76.7, 0.2, 0.0, 4.8, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,17.900000000000006,Whitman-Hanson - Louise A Conley,07800010, 3.9, 2.4, 7.7, 82.1, 0.4, 0.0, 3.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.799999999999997,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.3, 2.2, 8.8, 80.2, 0.0, 0.0, 5.5, 60.4, 39.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.099999999999994,Whitman-Hanson - Whitman Hanson Regional,07800505, 4.5, 1.4, 5.7, 84.9, 0.7, 0.1, 2.7, 51.2, 48.7, 0.1 -1,1,a-cure-i1,2021-22,0.0,17.0,Whitman-Hanson - Whitman Middle,07800310, 4.7, 1.6, 6.4, 83.0, 0.4, 0.2, 3.7, 51.7, 48.3, 0.0 -4.13953488372093,4.14,a-cure-i1,2021-22,8.9,34.400000000000006,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 3.0, 1.4, 25.5, 65.6, 0.6, 0.0, 3.9, 53.0, 46.6, 0.3 -1,1,a-cure-i1,2021-22,0.0,7.200000000000003,Williamsburg - Anne T. Dunphy School,03400020, 2.2, 0.7, 3.6, 92.8, 0.0, 0.0, 0.7, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,14.799999999999997,Wilmington - Boutwell,03420005, 0.8, 3.9, 5.5, 85.2, 0.0, 0.0, 4.7, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2021-22,0.0,15.200000000000003,Wilmington - North Intermediate,03420060, 1.2, 4.8, 4.4, 84.8, 0.0, 0.0, 4.8, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.299999999999997,Wilmington - Shawsheen Elementary,03420025, 1.2, 8.2, 3.4, 81.7, 0.0, 0.0, 5.5, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.900000000000006,Wilmington - West Intermediate,03420080, 0.9, 7.5, 5.6, 83.1, 0.0, 0.0, 2.8, 47.9, 52.1, 0.0 -5.614035087719299,5,a-cure-i1,2021-22,8.0,22.799999999999997,Wilmington - Wildwood,03420015, 4.4, 3.8, 8.2, 77.2, 0.0, 0.0, 6.3, 63.3, 36.7, 0.0 -1,1,a-cure-i1,2021-22,3.3,17.400000000000006,Wilmington - Wilmington High,03420505, 1.4, 5.8, 6.0, 82.6, 0.3, 0.0, 3.9, 47.3, 52.5, 0.1 -1,1,a-cure-i1,2021-22,1.4,14.200000000000003,Wilmington - Wilmington Middle School,03420330, 1.0, 5.6, 4.5, 85.8, 0.0, 0.0, 3.1, 52.9, 47.0, 0.1 -1,1,a-cure-i1,2021-22,0.0,16.5,Wilmington - Woburn Street,03420020, 0.9, 4.9, 6.1, 83.5, 0.3, 0.0, 4.3, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.200000000000003,Winchendon - Memorial,03430040, 1.7, 0.0, 8.6, 83.8, 0.3, 0.0, 5.5, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.200000000000003,Winchendon - Murdock Academy for Success,03430405, 7.7, 0.0, 3.8, 80.8, 0.0, 0.0, 7.7, 50.0, 50.0, 0.0 -6.9885057471264345,5,a-cure-i1,2021-22,7.6,17.400000000000006,Winchendon - Murdock High School,03430515, 2.3, 3.8, 7.5, 82.6, 0.4, 0.4, 3.0, 54.0, 45.7, 0.4 -1,1,a-cure-i1,2021-22,0.0,16.900000000000006,Winchendon - Murdock Middle School,03430315, 2.4, 1.2, 10.6, 83.1, 0.0, 0.0, 2.7, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,13.5,Winchendon - Toy Town Elementary,03430050, 1.7, 1.7, 6.4, 86.5, 0.0, 0.3, 3.4, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,9.700000000000003,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 6.9, 90.3, 0.0, 0.0, 2.8, 58.3, 41.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,16.200000000000003,Winchester - Ambrose Elementary,03440045, 0.3, 6.4, 1.7, 83.8, 0.0, 0.0, 7.8, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2021-22,0.0,23.099999999999994,Winchester - Lincoln Elementary,03440005, 0.0, 11.2, 3.5, 76.9, 0.0, 0.0, 8.4, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,0.0,45.1,Winchester - Lynch Elementary,03440020, 1.2, 30.8, 4.7, 54.9, 0.0, 0.0, 8.3, 55.9, 44.1, 0.0 -2.8478964401294493,2.85,a-cure-i1,2021-22,5.5,30.900000000000006,Winchester - McCall Middle,03440305, 1.5, 18.6, 3.6, 69.1, 0.1, 0.0, 7.1, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.3,Winchester - Muraco Elementary,03440040, 0.9, 22.0, 3.2, 66.7, 0.0, 0.0, 7.2, 50.1, 49.6, 0.3 -1,1,a-cure-i1,2021-22,4.0,33.599999999999994,Winchester - Vinson-Owen Elementary,03440025, 0.2, 21.7, 2.4, 66.4, 0.0, 0.0, 9.2, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2021-22,1.1,29.700000000000003,Winchester - Winchester High School,03440505, 1.4, 19.4, 3.7, 70.3, 0.4, 0.1, 4.7, 48.4, 51.5, 0.1 -1,1,a-cure-i1,2021-22,0.0,17.099999999999994,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.4, 0.5, 14.0, 82.9, 0.0, 0.0, 1.2, 45.5, 54.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,18.299999999999997,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.2, 0.2, 15.4, 81.7, 0.0, 0.0, 1.5, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2021-22,2.6,21.599999999999994,Winthrop - Winthrop High School,03460505, 1.2, 1.1, 18.3, 78.4, 0.0, 0.0, 1.1, 50.7, 49.1, 0.2 -1,1,a-cure-i1,2021-22,2.4,19.900000000000006,Winthrop - Winthrop Middle School,03460305, 2.1, 0.2, 15.4, 80.1, 0.5, 0.2, 1.4, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2021-22,3.4,30.400000000000006,Woburn - Clyde Reeves,03470040, 7.6, 7.8, 8.1, 69.6, 2.3, 0.0, 4.6, 52.5, 47.5, 0.0 -2.939929328621908,2.94,a-cure-i1,2021-22,5.199999999999999,28.299999999999997,Woburn - Daniel L Joyce Middle School,03470410, 6.7, 3.6, 12.6, 71.7, 1.0, 0.0, 4.4, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.599999999999994,Woburn - Goodyear Elementary School,03470005, 5.0, 8.3, 14.6, 66.4, 2.0, 0.0, 3.7, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,19.700000000000003,Woburn - Hurld-Wyman Elementary School,03470020, 3.5, 4.3, 9.6, 80.3, 0.3, 0.0, 2.1, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2021-22,3.7,34.3,Woburn - John F Kennedy Middle School,03470405, 9.5, 6.7, 11.2, 65.7, 1.2, 0.6, 5.1, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2021-22,0.0,38.5,Woburn - Linscott-Rumford,03470025, 8.8, 17.6, 6.3, 61.5, 1.0, 0.5, 4.4, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2021-22,0.0,33.3,Woburn - Malcolm White,03470055, 6.5, 6.5, 11.7, 66.7, 4.5, 0.0, 4.1, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2021-22,0.0,47.1,Woburn - Mary D Altavesta,03470065, 11.9, 17.6, 11.5, 52.9, 2.2, 0.9, 3.1, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2021-22,3.8,45.1,Woburn - Shamrock,03470043, 14.3, 7.1, 19.2, 54.9, 1.1, 0.0, 3.4, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2021-22,4.9,29.599999999999994,Woburn - Woburn High,03470505, 6.5, 6.4, 13.7, 70.4, 0.3, 0.2, 2.4, 47.6, 52.3, 0.1 -1,1,a-cure-i1,2021-22,1.2,78.2,Worcester - Belmont Street Community,03480020, 19.3, 6.1, 49.0, 21.8, 0.2, 0.0, 3.7, 52.1, 47.9, 0.0 -2.513595166163142,2.51,a-cure-i1,2021-22,10.4,66.2,Worcester - Burncoat Middle School,03480405, 18.7, 3.9, 38.8, 33.8, 0.0, 0.0, 4.8, 47.7, 52.3, 0.0 -2.5251396648044695,2.53,a-cure-i1,2021-22,11.3,71.6,Worcester - Burncoat Senior High,03480503, 17.8, 4.1, 45.1, 28.4, 0.2, 0.0, 4.5, 53.2, 46.8, 0.0 -1.0638297872340425,1.06,a-cure-i1,2021-22,5.0,75.2,Worcester - Burncoat Street,03480035, 12.2, 4.3, 54.7, 24.8, 0.0, 0.0, 3.9, 48.8, 51.2, 0.0 -1.486988847583643,1.49,a-cure-i1,2021-22,7.5,80.7,Worcester - Canterbury,03480045, 11.2, 12.5, 54.9, 19.3, 0.3, 0.0, 1.7, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2021-22,3.0999999999999996,86.1,Worcester - Chandler Elementary Community,03480050, 13.7, 6.4, 61.9, 13.9, 0.2, 0.0, 3.8, 48.9, 51.1, 0.0 -7.333333333333333,5,a-cure-i1,2021-22,38.5,84.0,Worcester - Chandler Magnet,03480052, 4.3, 1.0, 77.0, 16.0, 0.5, 0.0, 1.2, 45.2, 54.8, 0.0 -1.2750642673521853,1.28,a-cure-i1,2021-22,6.2,77.8,Worcester - City View,03480053, 14.0, 2.2, 55.7, 22.2, 0.2, 0.0, 5.8, 50.6, 49.4, 0.0 -3.2068965517241383,3.21,a-cure-i1,2021-22,18.6,92.8,Worcester - Claremont Academy,03480350, 10.2, 7.8, 73.1, 7.2, 0.2, 0.0, 1.5, 49.3, 50.7, 0.0 -3.215590742996346,3.22,a-cure-i1,2021-22,16.5,82.1,Worcester - Clark St Community,03480055, 19.1, 5.8, 52.9, 17.9, 0.4, 0.0, 3.9, 45.1, 54.9, 0.0 -1,1,a-cure-i1,2021-22,3.6,77.5,Worcester - Columbus Park,03480060, 12.5, 5.8, 56.5, 22.5, 0.8, 0.0, 1.9, 52.8, 47.2, 0.0 -2.4050632911392404,2.41,a-cure-i1,2021-22,9.5,63.2,Worcester - Doherty Memorial High,03480512, 14.7, 5.9, 37.6, 36.8, 0.3, 0.0, 4.7, 56.5, 43.5, 0.0 -1.2652068126520681,1.27,a-cure-i1,2021-22,6.5,82.2,Worcester - Elm Park Community,03480095, 12.8, 3.5, 62.1, 17.8, 0.3, 0.0, 3.5, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2021-22,0.0,24.5,Worcester - Flagg Street,03480090, 5.6, 3.5, 11.2, 75.5, 0.3, 0.0, 3.8, 48.7, 51.3, 0.0 -3.938879456706282,3.94,a-cure-i1,2021-22,14.5,58.9,Worcester - Forest Grove Middle,03480415, 14.8, 4.7, 32.4, 41.1, 0.2, 0.0, 6.8, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2021-22,2.6,76.0,Worcester - Francis J McGrath Elementary,03480177, 20.6, 3.9, 43.6, 24.0, 0.0, 0.0, 7.8, 52.9, 47.1, 0.0 -1.7333333333333334,1.73,a-cure-i1,2021-22,7.800000000000001,72.0,Worcester - Gates Lane,03480110, 15.7, 12.2, 38.1, 28.0, 0.2, 0.0, 5.8, 57.7, 42.3, 0.0 -1.4982658959537571,1.5,a-cure-i1,2021-22,8.1,86.5,Worcester - Goddard School/Science Technical,03480100, 12.2, 8.7, 61.1, 13.5, 0.3, 0.0, 4.2, 48.4, 51.6, 0.0 -2.4,2.4,a-cure-i1,2021-22,11.7,78.0,Worcester - Grafton Street,03480115, 21.7, 2.7, 50.5, 22.0, 0.0, 0.0, 3.2, 53.4, 46.6, 0.0 -2.5218543046357618,2.52,a-cure-i1,2021-22,11.9,75.5,Worcester - Head Start,03480002, 29.4, 2.5, 37.3, 24.5, 1.5, 0.0, 4.9, 42.2, 57.8, 0.0 -4.291296625222025,4.29,a-cure-i1,2021-22,15.100000000000001,56.3,Worcester - Heard Street,03480136, 14.3, 8.4, 27.7, 43.7, 0.0, 0.0, 5.9, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2021-22,0.0,87.7,Worcester - Jacob Hiatt Magnet,03480140, 33.5, 2.2, 47.8, 12.3, 0.0, 0.0, 4.2, 43.9, 56.1, 0.0 -13.139451728247915,5,a-cure-i1,2021-22,68.9,83.9,Worcester - La Familia Dual Language School,03480025, 9.7, 1.9, 67.7, 16.1, 0.6, 0.0, 3.9, 43.9, 56.1, 0.0 -1.4521452145214522,1.45,a-cure-i1,2021-22,5.5,60.6,Worcester - Lake View,03480145, 19.2, 7.5, 27.0, 39.4, 0.0, 0.0, 6.8, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2021-22,1.5,83.8,Worcester - Lincoln Street,03480160, 24.3, 5.5, 51.1, 16.2, 0.0, 0.0, 3.0, 57.4, 42.6, 0.0 -1.8839137645107795,1.88,a-cure-i1,2021-22,7.1,60.3,Worcester - May Street,03480175, 13.7, 9.3, 27.0, 39.7, 0.3, 0.3, 9.7, 51.0, 49.0, 0.0 -2.440087145969499,2.44,a-cure-i1,2021-22,7.0,45.9,Worcester - Midland Street,03480185, 9.2, 8.7, 19.9, 54.1, 0.0, 0.0, 8.2, 49.5, 50.5, 0.0 -1.6761904761904762,1.68,a-cure-i1,2021-22,5.5,52.5,Worcester - Nelson Place,03480200, 15.3, 8.6, 22.9, 47.5, 0.0, 0.0, 5.6, 58.8, 41.2, 0.0 -3.868383404864091,3.87,a-cure-i1,2021-22,16.9,69.9,Worcester - Norrback Avenue,03480202, 26.8, 3.1, 34.6, 30.1, 0.2, 0.0, 5.2, 55.5, 44.5, 0.0 -4.3099630996309966,4.31,a-cure-i1,2021-22,21.9,81.3,Worcester - North High,03480515, 18.7, 4.2, 54.8, 18.7, 0.0, 0.0, 3.5, 52.3, 47.6, 0.1 -2.4958217270194987,2.5,a-cure-i1,2021-22,11.2,71.8,Worcester - Quinsigamond,03480210, 15.9, 3.4, 47.5, 28.2, 0.3, 0.0, 4.7, 52.8, 47.2, 0.0 -4.939313984168865,4.94,a-cure-i1,2021-22,23.4,75.8,Worcester - Rice Square,03480215, 23.4, 6.4, 41.7, 24.2, 0.4, 0.0, 3.9, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2021-22,3.1,62.1,Worcester - Roosevelt,03480220, 27.9, 3.5, 25.6, 37.9, 0.2, 0.2, 4.6, 53.8, 46.3, 0.0 -2.8088426527958386,2.81,a-cure-i1,2021-22,13.5,76.9,Worcester - South High Community,03480520, 16.8, 10.4, 46.3, 23.1, 0.1, 0.0, 3.3, 53.7, 46.3, 0.1 -3.0014430014430014,3.0,a-cure-i1,2021-22,13.0,69.3,Worcester - Sullivan Middle,03480423, 15.3, 8.6, 40.1, 30.7, 0.2, 0.0, 5.1, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2021-22,4.1,57.8,Worcester - Tatnuck,03480230, 17.6, 5.9, 28.8, 42.2, 0.3, 0.3, 5.1, 52.2, 47.8, 0.0 -2.8571428571428568,2.86,a-cure-i1,2021-22,11.5,64.4,Worcester - Thorndyke Road,03480235, 17.1, 5.6, 39.8, 35.6, 0.0, 0.0, 2.0, 51.3, 48.7, 0.0 -1.0059311981020167,1.01,a-cure-i1,2021-22,5.3,84.3,Worcester - Union Hill School,03480240, 13.8, 2.3, 65.0, 15.7, 0.0, 0.0, 3.1, 52.5, 47.5, 0.0 -1.5449500554938957,1.54,a-cure-i1,2021-22,8.7,90.1,Worcester - University Pk Campus School,03480285, 13.3, 15.0, 55.8, 9.9, 0.9, 0.0, 5.2, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2021-22,3.3,84.9,Worcester - Vernon Hill School,03480280, 24.7, 3.2, 54.4, 15.1, 0.0, 0.0, 2.6, 47.1, 52.9, 0.0 -1.911806543385491,1.91,a-cure-i1,2021-22,8.4,70.3,Worcester - Wawecus Road School,03480026, 13.6, 7.6, 43.2, 29.7, 0.0, 0.0, 5.9, 51.7, 48.3, 0.0 -2.944,2.94,a-cure-i1,2021-22,9.2,50.0,Worcester - West Tatnuck,03480260, 14.7, 6.8, 18.5, 50.0, 0.3, 0.0, 9.7, 53.5, 46.5, 0.0 -3.382955771305286,3.38,a-cure-i1,2021-22,19.6,92.7,Worcester - Woodland Academy,03480030, 11.3, 6.3, 72.9, 7.3, 0.4, 0.0, 1.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2021-22,0.0,56.9,Worcester - Worcester Arts Magnet School,03480225, 24.4, 8.1, 20.6, 43.1, 0.3, 0.0, 3.6, 48.1, 51.9, 0.0 -4.948885976408913,4.95,a-cure-i1,2021-22,23.6,76.3,Worcester - Worcester East Middle,03480420, 16.9, 4.1, 50.8, 23.7, 0.3, 0.0, 4.2, 52.4, 47.6, 0.0 -1.5393586005830904,1.54,a-cure-i1,2021-22,6.6,68.6,Worcester - Worcester Technical High,03480605, 18.6, 7.7, 38.3, 31.4, 0.2, 0.1, 3.6, 41.3, 58.7, 0.0 -1,1,a-cure-i1,2021-22,0.0,4.5,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 3.0, 95.5, 0.0, 0.0, 1.5, 53.7, 44.8, 1.5 -1,1,a-cure-i1,2021-22,0.0,17.900000000000006,Wrentham - Charles E Roderick,03500010, 3.4, 2.6, 6.1, 82.1, 0.5, 0.3, 5.0, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2021-22,1.2,16.299999999999997,Wrentham - Delaney,03500003, 1.7, 3.3, 6.3, 83.7, 0.4, 0.4, 4.3, 51.6, 48.4, 0.0 -1.3542926239419588,1.35,a-cure-i1,2020-21,7.0,82.7,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 54.1, 3.4, 19.4, 17.3, 0.6, 0.0, 5.1, 45.7, 54.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.700000000000003,Abington - Abington Early Education Program,00010001, 7.8, 2.0, 3.9, 86.3, 0.0, 0.0, 0.0, 54.9, 45.1, 0.0 -4.783505154639173,4.78,a-cure-i1,2020-21,5.8,19.400000000000006,Abington - Abington High,00010505, 5.0, 2.9, 10.5, 80.6, 0.0, 0.0, 1.0, 52.7, 47.3, 0.0 -5.6748768472906415,5,a-cure-i1,2020-21,7.2,20.299999999999997,Abington - Abington Middle School,00010405, 3.8, 2.5, 11.0, 79.7, 0.5, 0.2, 2.5, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.5,Abington - Beaver Brook Elementary,00010020, 5.2, 2.6, 12.4, 75.5, 1.0, 0.0, 3.4, 48.4, 51.4, 0.2 -1,1,a-cure-i1,2020-21,0.0,19.599999999999994,Abington - Woodsdale Elementary School,00010015, 5.6, 1.6, 10.1, 80.4, 1.3, 0.3, 0.7, 49.0, 51.0, 0.0 -7.305466237942123,5,a-cure-i1,2020-21,42.6,93.3,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 62.8, 0.7, 28.3, 6.7, 0.0, 0.2, 1.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,3.5,47.2,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 2.8, 34.9, 5.0, 52.8, 0.1, 0.0, 4.4, 52.7, 47.2, 0.1 -2.428571428571429,2.43,a-cure-i1,2020-21,6.8,44.8,Acton-Boxborough - Blanchard Memorial School,06000005, 2.7, 29.8, 7.2, 55.2, 0.0, 0.0, 5.1, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.099999999999994,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 2.9, 15.6, 6.1, 66.9, 0.0, 0.3, 8.2, 53.2, 46.6, 0.3 -1,1,a-cure-i1,2020-21,0.0,54.8,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 6.8, 35.6, 6.8, 45.2, 0.0, 0.0, 5.5, 60.3, 39.7, 0.0 -1.9007832898172325,1.9,a-cure-i1,2020-21,9.1,76.6,Acton-Boxborough - Luther Conant School,06000030, 3.6, 61.4, 7.9, 23.4, 0.0, 0.0, 3.8, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,36.4,Acton-Boxborough - McCarthy-Towne School,06000015, 3.7, 16.1, 9.1, 63.6, 0.4, 0.0, 7.0, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.8,Acton-Boxborough - Merriam School,06000010, 2.5, 15.9, 6.7, 67.2, 0.0, 0.0, 7.6, 50.6, 49.4, 0.0 -1.6806722689075628,1.68,a-cure-i1,2020-21,7.5,71.4,Acton-Boxborough - Paul P Gates Elementary School,06000025, 3.2, 59.7, 4.8, 28.6, 0.0, 0.0, 3.7, 52.8, 47.2, 0.0 -1.6993987975951903,1.7,a-cure-i1,2020-21,5.3,49.9,Acton-Boxborough - Raymond J Grey Junior High,06000405, 3.4, 35.9, 6.4, 50.1, 0.4, 0.4, 3.6, 49.9, 49.9, 0.1 -1,1,a-cure-i1,2020-21,2.9,11.5,Acushnet - Acushnet Elementary School,00030025, 1.4, 0.8, 4.9, 88.5, 0.2, 0.0, 4.1, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.299999999999997,Acushnet - Albert F Ford Middle School,00030305, 0.2, 1.0, 3.8, 90.7, 0.2, 0.0, 4.0, 52.3, 47.7, 0.0 -3.6273291925465836,3.63,a-cure-i1,2020-21,7.3,32.2,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 1.9, 17.3, 7.0, 67.8, 0.0, 0.0, 6.0, 52.4, 47.5, 0.1 -1,1,a-cure-i1,2020-21,0.0,27.400000000000006,Agawam - Agawam Early Childhood Center,00050003, 2.8, 6.6, 15.1, 72.6, 0.0, 0.0, 2.8, 55.7, 44.3, 0.0 -1,1,a-cure-i1,2020-21,1.1,16.099999999999994,Agawam - Agawam High,00050505, 1.9, 2.8, 8.5, 83.9, 0.1, 0.0, 2.9, 51.1, 48.8, 0.1 -1,1,a-cure-i1,2020-21,1.8,19.200000000000003,Agawam - Agawam Junior High,00050405, 2.9, 2.7, 10.1, 80.8, 0.0, 0.0, 3.4, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,4.5,13.400000000000006,Agawam - Benjamin J Phelps,00050020, 0.6, 2.6, 6.6, 86.6, 0.0, 0.0, 3.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.099999999999994,Agawam - Clifford M Granger,00050010, 2.0, 5.7, 14.2, 76.9, 0.0, 0.4, 0.8, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.700000000000003,Agawam - James Clark School,00050030, 2.6, 5.9, 10.4, 77.3, 0.0, 0.0, 3.7, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.400000000000006,Agawam - Roberta G. Doering School,00050303, 2.1, 3.0, 11.4, 80.6, 0.0, 0.0, 2.8, 56.2, 43.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.900000000000006,Agawam - Robinson Park,00050025, 2.9, 2.4, 13.8, 76.1, 0.0, 0.0, 4.8, 50.7, 49.3, 0.0 -2.602774274905422,2.6,a-cure-i1,2020-21,12.899999999999999,79.3,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 13.7, 0.1, 60.5, 20.7, 0.8, 0.0, 4.3, 45.4, 54.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.299999999999997,Amesbury - Amesbury Elementary,00070005, 2.5, 1.2, 8.0, 83.7, 0.0, 0.0, 4.6, 59.7, 40.3, 0.0 -1,1,a-cure-i1,2020-21,2.4,16.5,Amesbury - Amesbury High,00070505, 2.7, 1.2, 8.4, 83.5, 0.0, 0.0, 4.2, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.299999999999997,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 7.1, 85.7, 0.0, 0.0, 7.1, 54.8, 42.9, 2.4 -1,1,a-cure-i1,2020-21,0.0,18.700000000000003,Amesbury - Amesbury Middle,00070013, 1.9, 1.8, 10.1, 81.3, 0.3, 0.2, 4.5, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.5,Amesbury - Charles C Cashman Elementary,00070010, 1.8, 0.3, 13.9, 80.5, 0.3, 0.3, 2.9, 50.4, 49.6, 0.0 -4.258064516129032,4.26,a-cure-i1,2020-21,13.2,49.6,Amherst - Crocker Farm Elementary,00080009, 9.6, 13.2, 19.7, 50.4, 0.6, 0.3, 6.2, 51.5, 47.6, 0.8 -7.232472324723247,5,a-cure-i1,2020-21,24.5,54.2,Amherst - Fort River Elementary,00080020, 5.6, 11.8, 29.1, 45.8, 0.3, 0.3, 7.2, 50.7, 49.3, 0.0 -10.994059405940595,5,a-cure-i1,2020-21,34.7,50.5,Amherst - Wildwood Elementary,00080050, 14.1, 10.6, 18.5, 49.5, 0.5, 0.0, 6.8, 51.6, 48.4, 0.0 -4.934240362811791,4.93,a-cure-i1,2020-21,13.6,44.1,Amherst-Pelham - Amherst Regional High,06050505, 8.3, 9.0, 17.2, 55.9, 0.0, 0.0, 9.7, 50.2, 49.4, 0.3 -8.325481798715202,5,a-cure-i1,2020-21,24.3,46.7,Amherst-Pelham - Amherst Regional Middle School,06050405, 7.7, 9.7, 20.3, 53.3, 0.0, 0.0, 9.0, 52.3, 47.7, 0.0 -6.289308176100629,5,a-cure-i1,2020-21,12.5,31.799999999999997,Andover - Andover High,00090505, 2.6, 19.4, 7.2, 68.2, 0.2, 0.0, 2.4, 46.5, 53.4, 0.2 -1,1,a-cure-i1,2020-21,2.7,32.400000000000006,Andover - Andover West Middle,00090310, 4.0, 17.5, 8.5, 67.6, 0.0, 0.0, 2.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,3.1,23.700000000000003,Andover - Bancroft Elementary,00090003, 1.3, 8.4, 7.5, 76.3, 0.0, 0.0, 6.5, 52.0, 48.0, 0.0 -5.670886075949365,5,a-cure-i1,2020-21,8.399999999999999,23.700000000000003,Andover - Doherty Middle,00090305, 1.3, 11.0, 7.8, 76.3, 0.2, 0.2, 3.2, 50.0, 50.0, 0.0 -2.5582655826558267,2.56,a-cure-i1,2020-21,5.9,36.9,Andover - Henry C Sanborn Elementary,00090010, 2.7, 22.2, 7.5, 63.1, 0.0, 0.0, 4.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,1.8,50.1,Andover - High Plain Elementary,00090004, 4.4, 30.6, 10.1, 49.9, 0.0, 0.2, 4.8, 54.0, 46.0, 0.0 -6.8708708708708714,5,a-cure-i1,2020-21,14.3,33.3,Andover - Shawsheen School,00090005, 0.0, 16.7, 9.3, 66.7, 0.0, 0.0, 7.4, 63.0, 37.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.599999999999994,Andover - South Elementary,00090020, 1.5, 17.5, 5.2, 71.4, 0.2, 0.0, 4.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.0,Andover - West Elementary,00090025, 3.7, 16.3, 7.5, 69.0, 0.0, 0.0, 3.5, 53.1, 46.9, 0.0 -2.272189349112426,2.27,a-cure-i1,2020-21,7.2,50.7,Andover - Wood Hill Middle School,00090350, 2.7, 33.6, 9.3, 49.3, 0.3, 0.3, 4.5, 51.7, 48.3, 0.0 -5.740976645435244,5,a-cure-i1,2020-21,16.9,47.1,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 13.5, 2.3, 25.4, 52.9, 0.5, 0.0, 5.4, 54.1, 45.9, 0.0 -6.573643410852713,5,a-cure-i1,2020-21,10.6,25.799999999999997,Arlington - Arlington High,00100505, 3.8, 10.9, 5.6, 74.2, 0.0, 0.1, 5.5, 46.1, 53.5, 0.4 -4.805860805860806,4.81,a-cure-i1,2020-21,8.2,27.299999999999997,Arlington - Brackett,00100010, 0.9, 11.6, 5.2, 72.7, 0.0, 0.0, 9.7, 53.3, 46.7, 0.0 -4.724409448818896,4.72,a-cure-i1,2020-21,7.5,25.400000000000006,Arlington - Cyrus E Dallin,00100025, 1.6, 13.2, 3.5, 74.6, 0.0, 0.0, 7.1, 50.1, 49.9, 0.0 -2.7012987012987013,2.7,a-cure-i1,2020-21,5.199999999999999,30.799999999999997,Arlington - Gibbs School,00100305, 4.3, 12.4, 6.4, 69.2, 0.4, 0.2, 7.0, 53.8, 46.2, 0.0 -5.349845201238391,5,a-cure-i1,2020-21,10.8,32.3,Arlington - Hardy,00100030, 2.5, 16.0, 5.4, 67.7, 0.0, 0.0, 8.4, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.5,Arlington - John A Bishop,00100005, 2.9, 15.0, 3.1, 68.5, 0.0, 0.5, 10.0, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,4.6,38.1,Arlington - M Norcross Stratton,00100055, 3.1, 19.3, 6.3, 61.9, 0.0, 0.0, 9.4, 51.8, 48.0, 0.2 -6.43855421686747,5,a-cure-i1,2020-21,16.7,41.5,Arlington - Menotomy Preschool,00100038, 6.2, 21.5, 7.7, 58.5, 0.0, 0.0, 6.2, 53.8, 46.2, 0.0 -4.732394366197182,4.73,a-cure-i1,2020-21,8.4,28.400000000000006,Arlington - Ottoson Middle,00100410, 4.0, 9.8, 8.1, 71.6, 0.1, 0.1, 6.3, 53.4, 46.5, 0.1 -3.2558139534883717,3.26,a-cure-i1,2020-21,7.0,34.400000000000006,Arlington - Peirce,00100045, 4.9, 17.0, 5.9, 65.6, 0.0, 0.0, 6.6, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,37.2,Arlington - Thompson,00100050, 4.2, 14.4, 10.0, 62.8, 0.2, 0.0, 8.4, 47.0, 52.8, 0.2 -15.230769230769221,5,a-cure-i1,2020-21,9.899999999999999,10.400000000000006,Ashburnham-Westminster - Briggs Elementary,06100025, 0.9, 1.3, 3.7, 89.6, 0.2, 0.0, 4.3, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.400000000000006,Ashburnham-Westminster - Meetinghouse School,06100010, 2.5, 0.0, 5.7, 86.6, 0.0, 0.0, 5.1, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2020-21,4.8,7.099999999999994,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.9, 1.2, 3.6, 92.9, 0.2, 0.0, 1.2, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.799999999999997,Ashburnham-Westminster - Overlook Middle School,06100305, 1.4, 1.1, 7.0, 86.2, 0.0, 0.0, 4.3, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.5,Ashburnham-Westminster - Westminster Elementary,06100005, 1.1, 0.5, 6.2, 90.5, 0.0, 0.0, 1.6, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,1.8,31.900000000000006,Ashland - Ashland High,00140505, 2.2, 13.7, 12.4, 68.1, 0.6, 0.0, 3.0, 49.1, 50.8, 0.1 -1,1,a-cure-i1,2020-21,4.3,34.0,Ashland - Ashland Middle,00140405, 3.0, 12.7, 14.2, 66.0, 0.9, 0.0, 3.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,4.4,39.0,Ashland - David Mindess,00140015, 2.7, 17.3, 15.1, 61.0, 0.0, 0.0, 4.0, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,3.0,43.6,Ashland - Henry E Warren Elementary,00140010, 3.7, 22.3, 13.6, 56.4, 0.2, 0.0, 3.8, 56.2, 43.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,36.0,Ashland - William Pittaway Elementary,00140005, 4.0, 24.0, 6.0, 64.0, 0.0, 0.0, 2.0, 68.0, 32.0, 0.0 -1,1,a-cure-i1,2020-21,3.5,26.5,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 1.7, 0.5, 21.9, 73.5, 0.2, 0.0, 2.3, 58.5, 40.6, 1.0 -1,1,a-cure-i1,2020-21,0.0,17.700000000000003,Athol-Royalston - Athol Community Elementary School,06150020, 2.7, 0.8, 10.8, 82.3, 0.0, 0.0, 3.4, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.5,Athol-Royalston - Athol High,06150505, 1.4, 0.6, 12.1, 81.5, 0.0, 0.0, 4.3, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.5,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.2, 1.9, 11.5, 81.5, 0.2, 0.0, 3.6, 57.6, 42.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.599999999999994,Athol-Royalston - Royalston Community School,06150050, 0.7, 0.0, 0.7, 93.4, 0.0, 0.0, 5.1, 50.7, 49.3, 0.0 -3.428571428571429,3.43,a-cure-i1,2020-21,5.699999999999999,26.599999999999994,Atlantis Charter (District) - Atlantis Charter School,04910550, 5.4, 2.2, 14.8, 73.4, 0.1, 0.1, 4.1, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2020-21,4.7,25.900000000000006,Attleboro - A. Irvin Studley Elementary School,00160001, 5.2, 2.5, 14.5, 74.1, 0.0, 0.3, 3.4, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.200000000000003,Attleboro - Attleboro Community Academy,00160515, 8.3, 4.2, 14.6, 68.8, 2.1, 0.0, 2.1, 58.3, 41.7, 0.0 -4.536585365853659,4.54,a-cure-i1,2020-21,9.3,32.8,Attleboro - Attleboro High,00160505, 6.4, 5.1, 16.0, 67.2, 0.2, 0.2, 4.9, 53.9, 46.1, 0.1 -1,1,a-cure-i1,2020-21,2.8,37.3,Attleboro - Cyril K. Brennan Middle School,00160315, 5.8, 4.5, 20.0, 62.7, 0.2, 0.0, 6.8, 53.4, 46.5, 0.2 -1,1,a-cure-i1,2020-21,0.0,29.799999999999997,Attleboro - Early Learning Center,00160008, 7.7, 4.8, 11.5, 70.2, 0.0, 0.0, 5.8, 63.5, 36.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.400000000000006,Attleboro - Hill-Roberts Elementary School,00160045, 5.9, 5.9, 13.5, 67.6, 0.2, 0.0, 6.9, 49.6, 50.4, 0.0 -3.3087818696883855,3.31,a-cure-i1,2020-21,7.3,35.3,Attleboro - Hyman Fine Elementary School,00160040, 4.8, 2.1, 19.1, 64.7, 0.0, 0.0, 9.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,38.4,Attleboro - Peter Thacher Elementary School,00160050, 11.4, 5.9, 14.7, 61.6, 0.2, 0.0, 6.1, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.400000000000006,Attleboro - Robert J. Coelho Middle School,00160305, 8.1, 5.2, 10.6, 68.6, 0.3, 0.2, 7.1, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.8,Attleboro - Thomas Willett Elementary School,00160035, 6.0, 2.3, 16.2, 67.2, 0.0, 0.0, 8.3, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,3.2,36.2,Attleboro - Wamsutta Middle School,00160320, 6.9, 4.8, 15.7, 63.8, 0.0, 0.0, 8.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.599999999999994,Auburn - Auburn Middle,00170305, 3.2, 5.4, 10.9, 77.4, 0.0, 0.0, 3.2, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2020-21,1.7,19.099999999999994,Auburn - Auburn Senior High,00170505, 3.2, 4.8, 8.1, 80.9, 0.1, 0.0, 2.8, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.599999999999994,Auburn - Bryn Mawr,00170010, 0.8, 4.6, 10.7, 79.4, 0.8, 0.0, 3.8, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.200000000000003,Auburn - Pakachoag School,00170025, 1.9, 3.4, 9.3, 82.8, 0.0, 0.0, 2.6, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.0,Auburn - Swanson Road Intermediate School,00170030, 1.9, 3.9, 9.5, 81.0, 0.0, 0.0, 3.7, 51.6, 48.4, 0.0 -3.6753022452504323,3.68,a-cure-i1,2020-21,13.3,57.9,Avon - Avon Middle High School,00180510, 33.8, 5.1, 11.3, 42.1, 1.3, 0.0, 6.4, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,50.3,Avon - Ralph D Butler,00180010, 25.8, 4.0, 13.7, 49.7, 0.0, 0.0, 6.7, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,3.4,26.299999999999997,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 2.8, 2.5, 11.8, 73.7, 1.7, 0.8, 6.7, 48.7, 51.3, 0.0 -7.8688524590163915,5,a-cure-i1,2020-21,12.0,24.400000000000006,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 4.6, 2.0, 14.1, 75.6, 1.0, 0.2, 2.4, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2020-21,4.7,17.799999999999997,Ayer Shirley School District - Lura A. White Elementary School,06160001, 1.8, 1.5, 7.3, 82.2, 0.3, 0.3, 6.6, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.5,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 5.1, 4.8, 10.9, 72.5, 0.2, 0.0, 6.5, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,4.3,58.9,Barnstable - Barnstable Community Innovation School,00200012, 13.7, 3.8, 33.9, 41.1, 1.4, 0.0, 6.2, 52.4, 47.3, 0.3 -2.904761904761905,2.9,a-cure-i1,2020-21,6.1,33.599999999999994,Barnstable - Barnstable High,00200505, 8.9, 2.0, 17.6, 66.4, 0.4, 0.3, 4.4, 49.4, 50.5, 0.1 -1,1,a-cure-i1,2020-21,2.2,37.1,Barnstable - Barnstable Intermediate School,00200315, 8.0, 2.1, 20.2, 62.9, 0.8, 0.1, 5.8, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,3.8,37.7,Barnstable - Barnstable United Elementary School,00200050, 7.7, 2.8, 21.4, 62.3, 0.1, 0.0, 5.7, 52.2, 47.5, 0.3 -1,1,a-cure-i1,2020-21,0.0,35.900000000000006,Barnstable - Centerville Elementary,00200010, 8.0, 0.4, 15.2, 64.1, 0.0, 0.0, 12.2, 56.5, 43.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.5,Barnstable - Enoch Cobb Early Learning Center,00200001, 5.6, 4.8, 14.5, 60.5, 0.0, 0.0, 14.5, 68.5, 31.5, 0.0 -2.148905109489051,2.15,a-cure-i1,2020-21,9.2,68.5,Barnstable - Hyannis West Elementary,00200025, 14.9, 1.1, 38.8, 31.5, 0.4, 0.0, 13.4, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.299999999999997,Barnstable - West Barnstable Elementary,00200005, 3.2, 1.4, 14.9, 69.7, 0.0, 0.0, 10.9, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.299999999999997,Barnstable - West Villages Elementary School,00200045, 1.8, 0.8, 12.1, 74.7, 0.0, 0.0, 10.5, 50.8, 49.2, 0.0 -5.984322508398656,5,a-cure-i1,2020-21,33.4,89.3,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 27.5, 0.9, 59.3, 10.7, 0.0, 0.4, 1.3, 53.3, 46.7, 0.0 -2.3384615384615386,2.34,a-cure-i1,2020-21,5.7,39.0,Bedford - Bedford High,00230505, 7.1, 14.8, 11.6, 61.0, 0.0, 0.1, 5.3, 50.5, 49.3, 0.1 -1,1,a-cure-i1,2020-21,0.4,32.900000000000006,Bedford - John Glenn Middle,00230305, 5.9, 20.0, 4.7, 67.1, 0.2, 0.0, 2.1, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,3.1,45.1,Bedford - Lt Elezer Davis,00230010, 5.6, 25.2, 6.6, 54.9, 0.0, 0.0, 7.7, 57.0, 43.0, 0.0 -3.395121951219512,3.4,a-cure-i1,2020-21,8.7,41.0,Bedford - Lt Job Lane School,00230012, 6.6, 20.6, 5.6, 59.0, 0.0, 0.0, 8.1, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2020-21,2.1,10.200000000000003,Belchertown - Belchertown High,00240505, 2.3, 1.3, 3.2, 89.8, 0.4, 0.4, 2.6, 47.6, 52.2, 0.3 -1,1,a-cure-i1,2020-21,0.0,16.299999999999997,Belchertown - Chestnut Hill Community School,00240006, 1.6, 1.0, 7.6, 83.7, 0.6, 0.0, 5.3, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.599999999999994,Belchertown - Cold Spring,00240005, 1.1, 0.0, 11.9, 82.4, 0.0, 0.0, 4.5, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.5,Belchertown - Jabish Middle School,00240025, 2.5, 1.1, 4.2, 89.5, 0.3, 0.3, 2.0, 51.7, 48.0, 0.3 -1,1,a-cure-i1,2020-21,0.0,13.900000000000006,Belchertown - Swift River Elementary,00240018, 0.5, 1.8, 7.5, 86.1, 0.0, 0.0, 4.1, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.799999999999997,Bellingham - Bellingham Early Childhood Center,00250003, 3.5, 3.5, 8.8, 84.2, 0.0, 0.0, 0.0, 45.6, 54.4, 0.0 -1,1,a-cure-i1,2020-21,3.6,14.5,Bellingham - Bellingham High School,00250505, 2.3, 4.1, 5.6, 85.5, 0.0, 0.0, 2.3, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,2.6,13.900000000000006,Bellingham - Bellingham Memorial School,00250315, 2.0, 2.3, 6.5, 86.1, 0.2, 0.3, 2.6, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.599999999999994,Bellingham - Joseph F DiPietro Elementary School,00250020, 2.1, 3.9, 9.1, 80.4, 0.0, 0.7, 3.9, 46.3, 53.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.5,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 9.5, 90.5, 0.0, 0.0, 0.0, 47.6, 47.6, 4.8 -1,1,a-cure-i1,2020-21,0.0,18.099999999999994,Bellingham - Stall Brook,00250025, 1.6, 1.6, 9.7, 81.9, 0.0, 1.2, 4.0, 52.0, 48.0, 0.0 -5.006134969325155,5,a-cure-i1,2020-21,10.200000000000001,32.599999999999994,Belmont - Belmont High,00260505, 3.4, 18.2, 4.7, 67.4, 0.1, 0.0, 6.3, 49.7, 50.3, 0.0 -3.1861471861471857,3.19,a-cure-i1,2020-21,9.2,46.2,Belmont - Daniel Butler,00260015, 2.1, 27.9, 4.5, 53.8, 0.0, 0.0, 11.7, 51.4, 48.6, 0.0 -4.117962466487936,4.12,a-cure-i1,2020-21,9.6,37.3,Belmont - Mary Lee Burbank,00260010, 4.3, 21.3, 1.6, 62.7, 0.0, 0.3, 9.9, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,2.8,32.7,Belmont - Roger E Wellington,00260035, 4.1, 16.4, 1.6, 67.3, 0.0, 0.0, 10.7, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,43.9,Belmont - Winn Brook,00260005, 0.5, 31.3, 4.2, 56.1, 0.0, 0.0, 7.9, 49.4, 50.6, 0.0 -7.387862796833773,5,a-cure-i1,2020-21,17.5,37.9,Belmont - Winthrop L Chenery Middle,00260305, 3.5, 21.8, 4.1, 62.1, 0.2, 0.1, 8.2, 50.5, 49.5, 0.0 -8.640657084188911,5,a-cure-i1,2020-21,52.6,97.4,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 77.9, 1.7, 11.9, 2.6, 0.3, 0.6, 4.9, 48.8, 50.9, 0.3 -1,1,a-cure-i1,2020-21,0.0,31.799999999999997,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 3.0, 19.2, 4.8, 68.2, 0.6, 0.1, 4.1, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,3.2,9.299999999999997,Berkley - Berkley Community School,00270010, 1.1, 0.8, 2.3, 90.7, 0.2, 0.2, 4.6, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.900000000000006,Berkley - Berkley Middle School,00270305, 0.5, 0.0, 2.6, 93.1, 0.0, 0.0, 3.9, 47.8, 52.2, 0.0 -3.171171171171171,3.17,a-cure-i1,2020-21,6.6,33.3,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 12.6, 2.4, 12.4, 66.7, 0.3, 0.0, 5.6, 53.2, 46.2, 0.5 -4.620320855614973,4.62,a-cure-i1,2020-21,5.4,18.700000000000003,Berkshire Hills - Monument Mt Regional High,06180505, 1.6, 3.0, 9.4, 81.3, 0.4, 0.6, 3.8, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.799999999999997,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.3, 2.8, 13.2, 74.2, 0.0, 0.0, 8.5, 45.6, 54.4, 0.0 -1,1,a-cure-i1,2020-21,2.4,22.700000000000003,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 1.7, 3.2, 11.6, 77.3, 0.0, 0.0, 6.1, 56.4, 43.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.900000000000006,Berlin-Boylston - Berlin Memorial School,06200005, 0.5, 1.6, 10.0, 82.1, 1.1, 0.0, 4.7, 47.9, 52.1, 0.0 -4.808743169398908,4.81,a-cure-i1,2020-21,5.5,18.299999999999997,Berlin-Boylston - Boylston Elementary School,06200010, 1.3, 5.0, 7.0, 81.7, 0.3, 0.0, 4.7, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,2.3,16.0,Berlin-Boylston - Tahanto Regional High,06200505, 1.8, 5.2, 6.1, 84.0, 0.0, 0.2, 2.7, 48.4, 51.3, 0.4 -1,1,a-cure-i1,2020-21,0.0,22.299999999999997,Beverly - Ayers/Ryal Side School,00300055, 3.7, 2.0, 13.4, 77.7, 0.0, 0.0, 3.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,2.3,24.5,Beverly - Beverly High,00300505, 3.6, 2.7, 14.7, 75.5, 0.1, 0.1, 3.3, 52.3, 47.6, 0.1 -3.8095238095238093,3.81,a-cure-i1,2020-21,6.0,25.200000000000003,Beverly - Beverly Middle School,00300305, 3.3, 2.4, 15.9, 74.8, 0.1, 0.1, 3.5, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.599999999999994,Beverly - Centerville Elementary,00300010, 4.8, 2.1, 17.1, 70.4, 0.0, 0.0, 5.7, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.5,Beverly - Cove Elementary,00300015, 3.5, 2.2, 16.8, 71.5, 0.0, 0.0, 5.9, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.700000000000003,Beverly - Hannah Elementary,00300033, 4.4, 2.8, 12.7, 76.3, 0.0, 0.0, 3.8, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.900000000000006,Beverly - McKeown School,00300002, 4.9, 8.5, 14.6, 67.1, 0.0, 0.0, 4.9, 62.2, 37.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.299999999999997,Beverly - North Beverly Elementary,00300040, 2.4, 1.9, 12.9, 77.7, 0.3, 0.0, 4.8, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,3.4000000000000004,24.799999999999997,Billerica - Billerica Memorial High School,00310505, 6.2, 8.9, 7.1, 75.2, 0.2, 0.2, 2.2, 50.2, 49.8, 0.1 -1,1,a-cure-i1,2020-21,0.0,27.5,Billerica - Frederick J Dutile,00310007, 4.5, 12.7, 7.8, 72.5, 0.0, 0.0, 2.5, 45.5, 54.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.0,Billerica - Hajjar Elementary,00310026, 3.4, 8.6, 12.9, 72.0, 0.0, 0.0, 3.1, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,4.8,17.599999999999994,Billerica - John F Kennedy,00310012, 2.3, 4.9, 5.9, 82.4, 0.0, 0.0, 4.6, 45.0, 55.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.099999999999994,Billerica - Locke Middle,00310310, 3.6, 7.8, 6.5, 76.9, 0.0, 0.0, 5.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,4.1,30.0,Billerica - Marshall Middle School,00310305, 8.2, 8.7, 10.1, 70.0, 0.2, 0.0, 2.8, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.099999999999994,Billerica - Parker,00310015, 7.8, 13.0, 8.5, 67.9, 0.0, 0.0, 2.8, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.400000000000006,Billerica - Thomas Ditson,00310005, 3.6, 10.4, 6.6, 74.6, 0.0, 0.0, 4.7, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,2.0,13.299999999999997,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 1.2, 1.9, 7.7, 86.7, 0.0, 0.1, 2.4, 49.7, 50.1, 0.2 -1,1,a-cure-i1,2020-21,0.0,18.400000000000006,Blackstone-Millville - A F Maloney,06220015, 0.7, 0.4, 10.1, 81.6, 0.0, 0.0, 7.2, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,4.1,13.599999999999994,Blackstone-Millville - Blackstone Millville RHS,06220505, 2.4, 1.0, 6.7, 86.4, 0.0, 0.0, 3.6, 53.7, 46.1, 0.2 -10.044444444444444,5,a-cure-i1,2020-21,11.3,18.0,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.3, 1.0, 10.8, 82.0, 0.0, 0.0, 4.9, 47.3, 52.4, 0.3 -1,1,a-cure-i1,2020-21,0.0,17.200000000000003,Blackstone-Millville - John F Kennedy Elementary,06220008, 2.9, 1.0, 9.8, 82.8, 0.0, 0.0, 3.4, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.400000000000006,Blackstone-Millville - Millville Elementary,06220010, 1.4, 0.4, 5.4, 90.6, 0.0, 0.0, 2.2, 57.2, 42.8, 0.0 -3.263157894736842,3.26,a-cure-i1,2020-21,9.3,45.6,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 22.1, 2.1, 15.3, 54.4, 0.7, 0.0, 5.4, 53.9, 46.1, 0.0 -7.856691253951529,5,a-cure-i1,2020-21,46.60000000000001,94.9,Boston - Another Course To College,00350541, 50.4, 0.8, 41.1, 5.1, 0.4, 0.0, 2.1, 58.1, 41.5, 0.4 -9.931758530183727,5,a-cure-i1,2020-21,47.3,76.2,Boston - Baldwin Early Learning Center,00350003, 12.9, 23.1, 28.6, 23.8, 0.7, 0.0, 10.9, 52.4, 47.6, 0.0 -2.9948006932409013,2.99,a-cure-i1,2020-21,10.8,57.7,Boston - Beethoven,00350021, 22.9, 3.9, 25.8, 42.3, 0.0, 0.0, 5.0, 52.3, 47.7, 0.0 -6.297872340425532,5,a-cure-i1,2020-21,37.0,94.0,Boston - Blackstone,00350390, 26.5, 2.3, 63.1, 6.0, 0.2, 0.0, 1.9, 54.2, 45.8, 0.0 -12.371134020618557,5,a-cure-i1,2020-21,75.0,97.0,Boston - Boston Adult Academy,00350548, 35.3, 5.3, 55.6, 3.0, 0.0, 0.8, 0.0, 60.2, 39.8, 0.0 -9.185510428100988,5,a-cure-i1,2020-21,52.3,91.1,Boston - Boston Arts Academy,00350546, 41.7, 2.1, 41.7, 8.9, 0.4, 0.2, 5.0, 30.3, 69.1, 0.6 -6.233995584988962,5,a-cure-i1,2020-21,35.3,90.6,Boston - Boston Collaborative High School,00350755, 33.8, 3.1, 51.9, 9.4, 0.0, 0.0, 1.9, 57.5, 42.5, 0.0 -8.703205791106514,5,a-cure-i1,2020-21,52.6,96.7,Boston - Boston Community Leadership Academy,00350558, 36.2, 2.7, 56.5, 3.3, 0.2, 0.2, 0.8, 52.5, 47.5, 0.0 -8.260692464358453,5,a-cure-i1,2020-21,50.7,98.2,Boston - Boston International High School,00350507, 33.4, 8.8, 55.5, 1.8, 0.3, 0.0, 0.3, 57.5, 42.5, 0.0 -8.965765765765767,5,a-cure-i1,2020-21,31.1,55.5,Boston - Boston Latin,00350560, 7.7, 29.3, 13.4, 44.5, 0.1, 0.2, 4.7, 47.5, 52.3, 0.2 -8.73968705547653,5,a-cure-i1,2020-21,38.400000000000006,70.3,Boston - Boston Latin Academy,00350545, 21.4, 18.8, 26.4, 29.7, 0.1, 0.1, 3.5, 41.1, 58.6, 0.3 -9.146456692913386,5,a-cure-i1,2020-21,36.3,63.5,Boston - Boston Teachers Union School,00350012, 23.5, 1.8, 31.8, 36.5, 0.4, 0.0, 6.1, 49.8, 50.2, 0.0 -6.16421052631579,5,a-cure-i1,2020-21,36.6,95.0,Boston - Brighton High,00350505, 38.1, 4.0, 50.5, 5.0, 0.2, 0.2, 2.0, 58.2, 41.8, 0.0 -18.779342723004696,5,a-cure-i1,2020-21,100.0,85.2,Boston - Carter School,00350036, 48.1, 7.4, 25.9, 14.8, 0.0, 3.7, 0.0, 55.6, 44.4, 0.0 -11.714867617107942,5,a-cure-i1,2020-21,71.89999999999999,98.2,Boston - Charles H Taylor,00350054, 74.9, 0.6, 19.9, 1.8, 0.9, 0.0, 1.8, 49.2, 50.8, 0.0 -9.194479297365119,5,a-cure-i1,2020-21,45.8,79.7,Boston - Charles Sumner,00350052, 16.7, 1.2, 56.7, 20.3, 0.0, 0.0, 5.1, 52.0, 48.0, 0.0 -6.77115987460815,5,a-cure-i1,2020-21,40.5,95.7,Boston - Charlestown High,00350515, 28.0, 7.8, 58.6, 4.3, 0.3, 0.0, 1.0, 56.9, 43.1, 0.0 -7.548172757475082,5,a-cure-i1,2020-21,42.599999999999994,90.3,Boston - Clarence R Edwards Middle,00350430, 16.0, 2.4, 69.9, 9.7, 0.0, 1.0, 1.0, 51.9, 48.1, 0.0 -14.672,5,a-cure-i1,2020-21,91.7,100.0,Boston - Community Academy,00350518, 66.7, 0.0, 27.5, 0.0, 2.0, 0.0, 3.9, 54.9, 45.1, 0.0 -7.032786885245902,5,a-cure-i1,2020-21,42.9,97.6,Boston - Community Academy of Science and Health,00350581, 59.6, 4.2, 29.3, 2.4, 0.3, 0.0, 4.2, 56.3, 43.7, 0.0 -7.1800000000000015,5,a-cure-i1,2020-21,35.900000000000006,80.0,Boston - Condon K-8,00350146, 30.1, 6.9, 37.8, 20.0, 0.4, 0.3, 4.5, 52.7, 47.3, 0.0 -7.311706629055006,5,a-cure-i1,2020-21,32.4,70.9,Boston - Curley K-8 School,00350020, 16.8, 2.5, 44.5, 29.1, 0.1, 0.0, 7.0, 53.5, 46.5, 0.0 -5.7990430622009566,5,a-cure-i1,2020-21,30.299999999999997,83.6,Boston - Curtis Guild,00350062, 2.0, 1.2, 80.1, 16.4, 0.0, 0.0, 0.4, 53.5, 46.5, 0.0 -5.640449438202247,5,a-cure-i1,2020-21,25.1,71.2,Boston - Dante Alighieri Montessori School,00350066, 1.8, 3.6, 57.7, 28.8, 0.0, 0.0, 8.1, 51.4, 48.6, 0.0 -10.715746421267895,5,a-cure-i1,2020-21,65.5,97.8,Boston - David A Ellis,00350072, 37.6, 0.0, 58.6, 2.2, 0.0, 0.0, 1.7, 50.3, 49.7, 0.0 -7.779366700715015,5,a-cure-i1,2020-21,47.6,97.9,Boston - Dearborn,00350074, 59.7, 0.9, 32.2, 2.1, 0.2, 1.0, 4.0, 49.7, 50.2, 0.2 -3.795918367346939,3.8,a-cure-i1,2020-21,18.6,78.4,Boston - Dennis C Haley,00350077, 36.1, 0.8, 35.4, 21.6, 0.0, 0.3, 5.8, 53.6, 46.4, 0.0 -5.6695652173913045,5,a-cure-i1,2020-21,32.6,92.0,Boston - Donald Mckay,00350080, 2.0, 0.5, 87.6, 8.0, 0.0, 0.0, 1.9, 48.9, 51.1, 0.0 -7.748427672955975,5,a-cure-i1,2020-21,46.2,95.4,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 53.4, 1.1, 38.5, 4.6, 0.6, 0.0, 1.7, 51.7, 48.3, 0.0 -9.453471196454949,5,a-cure-i1,2020-21,40.0,67.7,Boston - Dr. William Henderson Lower,00350266, 30.3, 10.6, 19.2, 32.3, 0.0, 2.0, 5.6, 47.5, 52.0, 0.5 -6.6355828220858895,5,a-cure-i1,2020-21,33.8,81.5,Boston - Dr. William Henderson Upper,00350426, 42.7, 8.7, 24.9, 18.5, 0.8, 0.1, 4.3, 55.0, 44.9, 0.1 -13.415220293724966,5,a-cure-i1,2020-21,62.8,74.9,Boston - East Boston Early Childhood Center,00350009, 5.9, 2.1, 63.1, 25.1, 0.5, 0.5, 2.7, 49.7, 50.3, 0.0 -4.901220865704773,4.9,a-cure-i1,2020-21,27.6,90.1,Boston - East Boston High,00350530, 4.6, 2.1, 81.8, 9.9, 0.1, 0.1, 1.4, 58.3, 41.7, 0.0 -6.2537142857142864,5,a-cure-i1,2020-21,34.2,87.5,Boston - Edison K-8,00350375, 16.0, 13.7, 53.3, 12.5, 0.8, 0.2, 3.7, 54.6, 45.4, 0.0 -5.186906019007392,5,a-cure-i1,2020-21,30.7,94.7,Boston - Edward Everett,00350088, 41.8, 15.1, 33.7, 5.3, 0.7, 0.4, 3.2, 48.1, 51.9, 0.0 -3.5099183197199535,3.51,a-cure-i1,2020-21,18.8,85.7,Boston - ELC - West Zone,00350006, 28.6, 8.2, 42.9, 14.3, 0.0, 0.0, 6.1, 55.1, 44.9, 0.0 -16.558603491271818,5,a-cure-i1,2020-21,41.49999999999999,40.1,Boston - Eliot Elementary,00350096, 5.9, 11.0, 15.9, 59.9, 0.3, 0.3, 6.8, 50.7, 49.3, 0.0 -10.407294832826748,5,a-cure-i1,2020-21,42.8,65.8,Boston - Ellis Mendell,00350100, 27.9, 2.2, 27.5, 34.2, 0.0, 0.0, 8.2, 52.4, 47.2, 0.4 -9.155172413793103,5,a-cure-i1,2020-21,53.1,92.8,Boston - Excel High School,00350522, 27.0, 21.0, 42.0, 7.2, 0.4, 0.2, 2.1, 59.9, 40.1, 0.0 -7.933054393305441,5,a-cure-i1,2020-21,47.400000000000006,95.6,Boston - Fenway High School,00350540, 29.4, 2.6, 60.6, 4.4, 0.3, 0.3, 2.6, 48.5, 51.5, 0.0 -2.7166276346604215,2.72,a-cure-i1,2020-21,14.5,85.4,Boston - Franklin D Roosevelt,00350116, 35.6, 4.0, 38.1, 14.6, 0.5, 0.2, 6.9, 54.5, 45.5, 0.0 -7.390300230946883,5,a-cure-i1,2020-21,40.0,86.6,Boston - Gardner Pilot Academy,00350326, 10.2, 5.6, 65.7, 13.4, 0.0, 0.0, 5.1, 50.4, 49.1, 0.5 -7.241895261845388,5,a-cure-i1,2020-21,36.300000000000004,80.2,Boston - George H Conley,00350122, 35.9, 1.6, 38.5, 19.8, 0.0, 0.5, 3.6, 52.1, 47.9, 0.0 -9.775967413441954,5,a-cure-i1,2020-21,60.0,98.2,Boston - Greater Egleston Community High School,00350543, 47.4, 0.9, 44.7, 1.8, 0.0, 0.0, 5.3, 50.0, 50.0, 0.0 -5.402328589909445,5,a-cure-i1,2020-21,26.1,77.3,Boston - Harvard-Kent,00350200, 21.9, 19.6, 31.4, 22.7, 0.3, 0.0, 4.1, 54.4, 45.6, 0.0 -11.128258602711158,5,a-cure-i1,2020-21,66.7,95.9,Boston - Haynes Early Education Center,00350010, 40.7, 2.9, 44.8, 4.1, 0.6, 0.0, 7.0, 54.7, 45.3, 0.0 -7.4124293785310735,5,a-cure-i1,2020-21,41.0,88.5,Boston - Henry Grew,00350135, 39.6, 0.0, 40.1, 11.5, 0.5, 0.0, 8.3, 48.8, 51.2, 0.0 -5.768378650553877,5,a-cure-i1,2020-21,35.8,99.3,Boston - Higginson,00350015, 41.0, 0.7, 56.0, 0.7, 0.7, 0.0, 0.7, 54.5, 45.5, 0.0 -9.3510747185261,5,a-cure-i1,2020-21,57.1,97.7,Boston - Higginson/Lewis K-8,00350377, 43.4, 1.4, 47.9, 2.3, 0.0, 0.0, 5.0, 58.4, 41.6, 0.0 -1.1085450346420325,1.11,a-cure-i1,2020-21,6.0,86.6,Boston - Horace Mann School for the Deaf,00350750, 32.8, 4.5, 49.3, 13.4, 0.0, 0.0, 0.0, 67.2, 32.8, 0.0 -4.596300326441784,4.6,a-cure-i1,2020-21,26.4,91.9,Boston - Hugh Roe O'Donnell,00350141, 0.4, 2.6, 88.6, 8.1, 0.0, 0.0, 0.4, 50.0, 50.0, 0.0 -5.948275862068965,5,a-cure-i1,2020-21,34.5,92.8,Boston - Jackson Mann,00350013, 29.4, 11.7, 48.3, 7.2, 0.9, 0.0, 2.6, 58.5, 41.5, 0.0 -5.208907741251325,5,a-cure-i1,2020-21,30.699999999999996,94.3,Boston - James J Chittick,00350154, 61.8, 0.8, 28.9, 5.7, 0.0, 0.0, 2.8, 51.2, 48.8, 0.0 -1.5639097744360901,1.56,a-cure-i1,2020-21,7.8,79.8,Boston - James Otis,00350156, 4.4, 2.4, 70.7, 20.2, 0.2, 0.0, 2.0, 47.3, 52.7, 0.0 -10.812563323201621,5,a-cure-i1,2020-21,66.7,98.7,Boston - James P Timilty Middle,00350485, 35.6, 0.9, 59.7, 1.3, 0.0, 0.0, 2.6, 49.4, 50.6, 0.0 -7.026014568158169,5,a-cure-i1,2020-21,42.2,96.1,Boston - James W Hennigan,00350153, 28.7, 2.6, 63.9, 3.9, 0.0, 0.2, 0.7, 48.9, 51.1, 0.0 -7.983367983367983,5,a-cure-i1,2020-21,48.0,96.2,Boston - Jeremiah E Burke High,00350525, 59.5, 0.8, 32.3, 3.8, 0.0, 0.8, 2.8, 57.4, 42.6, 0.0 -8.397687861271676,5,a-cure-i1,2020-21,45.4,86.5,Boston - John D Philbrick,00350172, 43.2, 2.7, 36.0, 13.5, 1.8, 0.0, 2.7, 54.1, 45.9, 0.0 -4.742791234140715,4.74,a-cure-i1,2020-21,25.7,86.7,Boston - John F Kennedy,00350166, 18.2, 1.7, 64.3, 13.3, 0.3, 0.0, 2.3, 54.2, 45.8, 0.0 -6.847736625514403,5,a-cure-i1,2020-21,41.6,97.2,Boston - John W McCormack,00350179, 27.6, 6.4, 60.0, 2.8, 0.4, 0.0, 2.8, 48.0, 52.0, 0.0 -5.104294478527607,5,a-cure-i1,2020-21,31.2,97.8,Boston - John Winthrop,00350180, 54.5, 0.9, 39.0, 2.2, 0.4, 0.0, 3.0, 41.6, 58.4, 0.0 -12.157635467980295,5,a-cure-i1,2020-21,61.7,81.2,Boston - Joseph J Hurley,00350182, 4.5, 2.2, 71.1, 18.8, 0.6, 0.0, 2.8, 46.9, 53.1, 0.0 -5.654008438818566,5,a-cure-i1,2020-21,33.5,94.8,Boston - Joseph Lee,00350183, 53.8, 4.5, 30.2, 5.2, 0.3, 0.3, 5.6, 56.4, 43.6, 0.0 -2.264432029795158,2.26,a-cure-i1,2020-21,7.6,53.7,Boston - Joseph P Manning,00350184, 12.6, 5.7, 24.0, 46.3, 0.0, 0.6, 10.9, 52.6, 47.4, 0.0 -7.044025157232705,5,a-cure-i1,2020-21,35.0,79.5,Boston - Joseph P Tynan,00350181, 40.6, 6.4, 26.9, 20.5, 0.4, 0.0, 5.2, 57.0, 43.0, 0.0 -10.751131221719456,5,a-cure-i1,2020-21,59.4,88.4,Boston - Josiah Quincy,00350286, 12.1, 62.5, 8.6, 11.6, 0.0, 0.0, 5.1, 50.1, 49.9, 0.0 -7.167999999999999,5,a-cure-i1,2020-21,22.4,50.0,Boston - Joyce Kilmer,00350190, 16.1, 7.7, 21.0, 50.0, 0.0, 0.0, 5.1, 56.1, 43.9, 0.0 -10.257668711656443,5,a-cure-i1,2020-21,62.7,97.8,Boston - King K-8,00350376, 56.5, 1.6, 36.2, 2.2, 0.7, 0.2, 2.6, 51.5, 48.5, 0.0 -5.105656350053361,5,a-cure-i1,2020-21,29.9,93.7,Boston - Lee Academy,00350001, 45.8, 7.3, 34.4, 6.3, 0.0, 0.0, 6.3, 50.0, 50.0, 0.0 -8.700610997963338,5,a-cure-i1,2020-21,53.39999999999999,98.2,Boston - Lilla G. Frederick Middle School,00350383, 40.2, 10.5, 45.1, 1.8, 0.0, 0.0, 2.4, 55.1, 44.9, 0.0 -7.886255924170616,5,a-cure-i1,2020-21,20.8,42.2,Boston - Lyndon,00350262, 9.3, 3.4, 24.1, 57.8, 0.2, 0.2, 5.1, 50.0, 50.0, 0.0 -9.148825065274151,5,a-cure-i1,2020-21,43.8,76.6,Boston - Lyon K-8,00350004, 25.8, 8.9, 33.1, 23.4, 0.0, 0.0, 8.9, 56.5, 43.5, 0.0 -8.590604026845638,5,a-cure-i1,2020-21,40.0,74.5,Boston - Lyon Upper 9-12,00350655, 21.2, 4.4, 40.9, 25.5, 0.0, 0.0, 8.0, 61.3, 38.7, 0.0 -7.7784615384615385,5,a-cure-i1,2020-21,47.4,97.5,Boston - Madison Park High,00350537, 39.7, 1.9, 53.4, 2.5, 0.4, 0.3, 1.8, 58.5, 41.5, 0.0 -1.425,1.43,a-cure-i1,2020-21,5.7,64.0,Boston - Manassah E Bradley,00350215, 6.3, 7.6, 46.9, 36.0, 0.0, 0.7, 2.6, 51.8, 48.2, 0.0 -7.45271629778672,5,a-cure-i1,2020-21,46.300000000000004,99.4,Boston - Margarita Muniz Academy,00350549, 6.7, 0.0, 91.7, 0.6, 0.3, 0.0, 0.6, 50.5, 49.5, 0.0 -6.06423982869379,5,a-cure-i1,2020-21,35.4,93.4,Boston - Mario Umana Academy,00350656, 1.7, 2.0, 88.8, 6.6, 0.1, 0.0, 0.8, 51.2, 48.8, 0.0 -9.025210084033613,5,a-cure-i1,2020-21,53.7,95.2,Boston - Mather,00350227, 38.4, 31.2, 19.2, 4.8, 0.4, 0.2, 5.8, 50.2, 49.8, 0.0 -6.7723995880535535,5,a-cure-i1,2020-21,41.1,97.1,Boston - Mattahunt Elementary School,00350016, 67.4, 0.7, 24.5, 2.9, 0.7, 0.2, 3.4, 58.1, 41.9, 0.0 -8.614090431125133,5,a-cure-i1,2020-21,51.2,95.1,Boston - Maurice J Tobin,00350229, 28.9, 1.7, 62.3, 4.9, 0.5, 0.0, 1.7, 48.8, 51.2, 0.0 -7.538280329799764,5,a-cure-i1,2020-21,40.0,84.9,Boston - Michael J Perkins,00350231, 39.8, 8.4, 32.5, 15.1, 0.0, 0.0, 4.2, 47.6, 52.4, 0.0 -8.09025641025641,5,a-cure-i1,2020-21,49.3,97.5,Boston - Mildred Avenue K-8,00350378, 63.1, 1.6, 28.4, 2.5, 0.7, 0.0, 3.6, 51.7, 48.3, 0.0 -11.250374812593702,5,a-cure-i1,2020-21,46.9,66.7,Boston - Mission Hill School,00350382, 26.8, 1.8, 31.1, 33.3, 0.0, 0.4, 6.6, 57.9, 42.1, 0.0 -8.39794168096055,5,a-cure-i1,2020-21,30.6,58.3,Boston - Mozart,00350237, 26.8, 2.4, 20.8, 41.7, 0.6, 0.0, 7.7, 61.3, 38.7, 0.0 -8.329004329004327,5,a-cure-i1,2020-21,48.099999999999994,92.4,Boston - Nathan Hale,00350243, 51.5, 7.0, 30.4, 7.6, 0.0, 0.0, 3.5, 46.2, 53.8, 0.0 -7.484135107471852,5,a-cure-i1,2020-21,45.699999999999996,97.7,Boston - New Mission High School,00350542, 49.7, 2.3, 43.5, 2.3, 0.2, 0.0, 2.1, 48.6, 51.1, 0.2 -5.602471678681772,5,a-cure-i1,2020-21,34.0,97.1,Boston - O W Holmes,00350138, 54.0, 2.6, 36.1, 2.9, 0.0, 0.0, 4.4, 60.2, 39.8, 0.0 -10.129105322763307,5,a-cure-i1,2020-21,55.9,88.3,Boston - O'Bryant School Math/Science,00350575, 32.3, 20.2, 33.8, 11.7, 0.1, 0.2, 1.6, 45.3, 54.7, 0.0 -10.768496420047732,5,a-cure-i1,2020-21,28.2,41.9,Boston - Oliver Hazard Perry,00350255, 15.8, 3.4, 18.7, 58.1, 0.0, 0.0, 3.9, 53.2, 46.8, 0.0 -6.370672097759674,5,a-cure-i1,2020-21,39.1,98.2,Boston - Orchard Gardens,00350257, 51.7, 1.0, 41.8, 1.8, 1.0, 0.7, 2.0, 50.5, 49.5, 0.0 -4.735729386892178,4.74,a-cure-i1,2020-21,28.0,94.6,Boston - Patrick J Kennedy,00350264, 4.3, 1.8, 87.4, 5.4, 0.0, 0.0, 1.1, 56.5, 43.5, 0.0 -6.242622950819673,5,a-cure-i1,2020-21,35.7,91.5,Boston - Paul A Dever,00350268, 24.6, 4.5, 60.2, 8.5, 0.6, 0.3, 1.4, 57.6, 42.4, 0.0 -5.133603238866398,5,a-cure-i1,2020-21,31.700000000000003,98.8,Boston - Pauline Agassiz Shaw Elementary School,00350014, 68.5, 0.6, 26.5, 1.2, 1.9, 0.0, 1.2, 48.1, 51.9, 0.0 -3.6190476190476186,3.62,a-cure-i1,2020-21,15.2,67.2,Boston - Phineas Bates,00350278, 29.4, 3.4, 29.8, 32.8, 0.4, 0.0, 4.2, 55.5, 44.5, 0.0 -10.018691588785046,5,a-cure-i1,2020-21,60.3,96.3,Boston - Quincy Upper School,00350565, 21.7, 49.7, 22.1, 3.7, 0.2, 0.0, 2.6, 52.1, 47.9, 0.0 -10.944625407166125,5,a-cure-i1,2020-21,63.0,92.1,Boston - Rafael Hernandez,00350691, 3.6, 0.0, 85.6, 7.9, 0.0, 0.0, 2.9, 47.1, 52.9, 0.0 -6.527716186252771,5,a-cure-i1,2020-21,36.8,90.2,Boston - Richard J Murphy,00350240, 18.7, 50.4, 16.9, 9.8, 0.3, 0.2, 3.6, 51.7, 48.3, 0.0 -4.822695035460994,4.82,a-cure-i1,2020-21,25.5,84.6,Boston - Roger Clap,00350298, 33.3, 8.1, 40.7, 15.4, 0.0, 0.0, 2.4, 53.7, 46.3, 0.0 -5.748502994011976,5,a-cure-i1,2020-21,30.0,83.5,Boston - Samuel Adams,00350302, 3.2, 1.6, 77.0, 16.5, 0.4, 0.0, 1.2, 48.8, 51.2, 0.0 -8.050526315789472,5,a-cure-i1,2020-21,47.8,95.0,Boston - Samuel W Mason,00350304, 55.2, 1.8, 30.8, 5.0, 0.9, 0.0, 6.3, 52.9, 46.6, 0.5 -6.936040609137057,5,a-cure-i1,2020-21,42.7,98.5,Boston - Sarah Greenwood,00350308, 15.5, 0.3, 80.7, 1.5, 0.0, 0.0, 2.0, 49.0, 51.0, 0.0 -6.488322717622081,5,a-cure-i1,2020-21,38.2,94.2,Boston - Snowden International School at Copley,00350690, 33.7, 6.2, 52.0, 5.8, 0.4, 0.0, 1.9, 52.2, 47.8, 0.0 -6.311019567456232,5,a-cure-i1,2020-21,38.300000000000004,97.1,Boston - TechBoston Academy,00350657, 60.6, 2.1, 30.5, 2.9, 0.2, 0.1, 3.6, 56.8, 43.1, 0.1 -7.0406673618352436,5,a-cure-i1,2020-21,42.199999999999996,95.9,Boston - The English High,00350535, 36.1, 1.2, 55.6, 4.1, 0.4, 0.0, 2.7, 54.4, 45.6, 0.0 -8.086486486486486,5,a-cure-i1,2020-21,37.4,74.0,Boston - Thomas J Kenny,00350328, 35.4, 11.5, 22.4, 26.0, 0.0, 0.0, 4.7, 52.5, 47.5, 0.0 -6.338399189463019,5,a-cure-i1,2020-21,39.1,98.7,Boston - UP Academy Holland,00350167, 47.3, 3.3, 44.7, 1.3, 0.9, 0.3, 2.2, 48.8, 51.2, 0.0 -7.644028103044495,5,a-cure-i1,2020-21,20.4,42.7,Boston - Warren-Prescott,00350346, 12.4, 3.6, 21.5, 57.3, 0.0, 0.0, 5.1, 50.9, 49.1, 0.0 -9.189304812834225,5,a-cure-i1,2020-21,53.699999999999996,93.5,Boston - Washington Irving Middle,00350445, 38.6, 1.1, 50.5, 6.5, 0.0, 0.0, 3.3, 52.2, 47.8, 0.0 -6.182939362795477,5,a-cure-i1,2020-21,37.599999999999994,97.3,Boston - William E Russell,00350366, 27.7, 8.2, 57.3, 2.7, 0.3, 1.1, 2.7, 52.1, 47.9, 0.0 -7.632085561497325,5,a-cure-i1,2020-21,44.599999999999994,93.5,Boston - William Ellery Channing,00350360, 44.7, 1.9, 42.3, 6.5, 0.0, 0.5, 4.2, 56.3, 43.7, 0.0 -6.94421768707483,5,a-cure-i1,2020-21,31.9,73.5,Boston - William H Ohrenberger,00350258, 29.3, 3.0, 37.2, 26.5, 0.2, 0.0, 3.9, 51.1, 48.9, 0.0 -4.65934065934066,4.66,a-cure-i1,2020-21,26.5,91.0,Boston - William McKinley,00350363, 41.9, 1.9, 43.1, 9.0, 0.7, 0.0, 3.4, 79.0, 21.0, 0.0 -6.632962588473205,5,a-cure-i1,2020-21,41.0,98.9,Boston - William Monroe Trotter,00350370, 54.5, 1.3, 38.4, 1.1, 0.3, 1.3, 3.2, 50.8, 49.2, 0.0 -9.784946236559138,5,a-cure-i1,2020-21,45.5,74.4,Boston - Winship Elementary,00350374, 14.1, 15.4, 37.4, 25.6, 0.4, 0.0, 7.0, 48.0, 52.0, 0.0 -9.39375629405841,5,a-cure-i1,2020-21,58.3,99.3,Boston - Young Achievers,00350380, 47.3, 0.4, 48.9, 0.7, 0.5, 0.4, 1.8, 55.0, 45.0, 0.0 -10.59233449477352,5,a-cure-i1,2020-21,38.0,57.4,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 34.7, 1.8, 17.4, 42.6, 0.1, 0.1, 3.2, 48.7, 51.3, 0.0 -16.64932362122789,5,a-cure-i1,2020-21,100.0,96.1,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 47.2, 0.8, 45.8, 3.9, 0.6, 0.0, 1.7, 46.6, 53.4, 0.0 -8.727272727272727,5,a-cure-i1,2020-21,51.0,93.5,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 44.6, 1.8, 43.6, 6.5, 0.2, 0.4, 2.9, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,99.0,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 67.5, 0.4, 27.9, 1.0, 0.0, 0.1, 3.0, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,98.4,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 60.2, 0.1, 34.3, 1.6, 0.2, 0.0, 3.6, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2020-21,2.7,11.400000000000006,Bourne - Bourne High School,00360505, 1.4, 2.1, 3.5, 88.6, 1.4, 0.0, 3.0, 45.3, 54.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.400000000000006,Bourne - Bourne Intermediate School,00360030, 2.6, 1.4, 6.1, 85.6, 0.5, 0.0, 3.8, 46.9, 53.1, 0.0 -10.47482014388489,5,a-cure-i1,2020-21,9.100000000000001,13.900000000000006,Bourne - Bourne Middle School,00360325, 1.7, 1.3, 5.4, 86.1, 1.7, 0.0, 3.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.0,Bourne - Bournedale Elementary School,00360005, 1.5, 3.0, 6.8, 82.0, 0.9, 0.0, 5.9, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.099999999999994,Boxford - Harry Lee Cole,00380005, 0.0, 2.4, 4.1, 87.9, 0.0, 0.0, 5.5, 55.9, 44.1, 0.0 -10.276422764227645,5,a-cure-i1,2020-21,7.9,12.299999999999997,Boxford - Spofford Pond,00380013, 0.5, 4.4, 2.6, 87.7, 0.0, 0.0, 4.9, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.5,Braintree - Archie T Morrison,00400033, 9.9, 22.8, 4.0, 60.5, 0.6, 0.0, 2.2, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,4.6,32.5,Braintree - Braintree High,00400505, 5.5, 19.9, 5.1, 67.5, 0.2, 0.2, 1.7, 49.8, 50.1, 0.1 -1,1,a-cure-i1,2020-21,0.0,48.0,Braintree - Donald Ross,00400050, 8.3, 33.1, 4.7, 52.0, 0.4, 0.0, 1.6, 44.9, 55.1, 0.0 -1,1,a-cure-i1,2020-21,1.4,38.5,Braintree - East Middle School,00400305, 8.0, 21.6, 7.2, 61.5, 0.0, 0.1, 1.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.099999999999994,Braintree - Highlands,00400015, 2.3, 20.8, 2.3, 73.9, 0.3, 0.0, 0.5, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,38.1,Braintree - Hollis,00400005, 1.8, 28.4, 4.9, 61.9, 0.0, 0.0, 3.0, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,42.2,Braintree - Liberty,00400025, 2.7, 31.0, 4.4, 57.8, 0.0, 0.8, 3.3, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,38.5,Braintree - Mary E Flaherty School,00400020, 1.9, 27.8, 4.4, 61.5, 0.0, 0.0, 4.4, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,48.6,Braintree - Monatiquot Kindergarten Center,00400009, 5.6, 32.6, 4.9, 51.4, 0.0, 0.7, 4.9, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.599999999999994,Braintree - South Middle School,00400310, 3.1, 23.9, 3.4, 68.4, 0.2, 0.0, 1.1, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.400000000000006,Brewster - Eddy Elementary,00410010, 3.3, 0.0, 5.3, 86.6, 0.0, 0.0, 4.8, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.700000000000003,Brewster - Stony Brook Elementary,00410005, 2.8, 0.5, 12.3, 76.3, 0.0, 0.0, 8.1, 49.3, 50.7, 0.0 -5.641237113402062,5,a-cure-i1,2020-21,34.2,97.0,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 66.6, 0.9, 26.0, 3.0, 0.0, 0.3, 3.3, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.599999999999994,Bridgewater-Raynham - Bridgewater Middle School,06250320, 7.6, 2.2, 2.4, 82.4, 0.2, 0.2, 5.1, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,1.2,16.200000000000003,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 7.1, 1.7, 2.0, 83.8, 0.1, 0.1, 5.3, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.799999999999997,Bridgewater-Raynham - Laliberte Elementary School,06250050, 8.2, 2.6, 3.2, 82.2, 0.0, 0.0, 3.7, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.700000000000003,Bridgewater-Raynham - Merrill Elementary School,06250020, 8.7, 3.0, 4.3, 77.3, 0.0, 0.0, 6.7, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.799999999999997,Bridgewater-Raynham - Mitchell Elementary School,06250002, 6.9, 2.8, 6.6, 78.2, 0.0, 0.3, 5.2, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.099999999999994,Bridgewater-Raynham - Raynham Middle School,06250315, 7.8, 2.8, 1.5, 83.9, 0.1, 0.0, 3.9, 53.5, 46.3, 0.1 -1,1,a-cure-i1,2020-21,0.0,25.0,Bridgewater-Raynham - Therapeutic Day School,06250415, 8.3, 0.0, 8.3, 75.0, 0.0, 0.0, 8.3, 66.7, 33.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.400000000000006,Bridgewater-Raynham - Williams Intermediate School,06250300, 8.3, 1.9, 2.9, 81.6, 0.1, 0.0, 5.2, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.200000000000003,Brimfield - Brimfield Elementary,00430005, 1.5, 1.1, 4.8, 91.8, 0.7, 0.0, 0.0, 50.9, 49.1, 0.0 -11.865168539325834,5,a-cure-i1,2020-21,6.6,8.900000000000006,Bristol County Agricultural - Bristol County Agricultural High,09100705, 2.2, 0.4, 4.5, 91.1, 0.0, 0.2, 1.6, 25.7, 74.1, 0.2 -1,1,a-cure-i1,2020-21,2.1,14.599999999999994,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 3.6, 1.0, 6.0, 85.4, 0.4, 0.0, 3.7, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2020-21,3.4,74.1,Brockton - Ashfield Middle School,00440421, 53.2, 3.7, 13.1, 25.9, 0.7, 0.7, 2.7, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,0.7,75.0,Brockton - Barrett Russell Early Childhood Center,00440008, 52.0, 0.7, 16.4, 25.0, 0.0, 0.7, 5.3, 65.1, 34.9, 0.0 -3.1880448318804486,3.19,a-cure-i1,2020-21,16.0,80.3,Brockton - Brockton Champion High School,00440515, 51.8, 0.7, 20.4, 19.7, 0.0, 1.5, 5.8, 56.9, 43.1, 0.0 -3.7635933806146578,3.76,a-cure-i1,2020-21,19.900000000000002,84.6,Brockton - Brockton High,00440505, 62.7, 2.3, 15.0, 15.4, 0.3, 0.2, 4.2, 54.0, 46.0, 0.0 -2.823529411764706,2.82,a-cure-i1,2020-21,13.5,76.5,Brockton - Brookfield,00440010, 60.6, 0.6, 10.1, 23.5, 0.2, 0.0, 4.9, 50.7, 49.3, 0.0 -1.5547355473554736,1.55,a-cure-i1,2020-21,7.9,81.3,Brockton - Downey,00440110, 55.6, 1.2, 17.6, 18.7, 0.5, 0.2, 6.2, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2020-21,4.7,89.3,Brockton - Dr W Arnone Community School,00440001, 63.4, 0.4, 18.3, 10.7, 0.6, 0.0, 6.7, 56.2, 43.8, 0.0 -2.1405895691609977,2.14,a-cure-i1,2020-21,11.8,88.2,Brockton - East Middle School,00440405, 67.3, 0.9, 15.1, 11.8, 0.5, 0.2, 4.2, 54.0, 46.0, 0.0 -1.873873873873874,1.87,a-cure-i1,2020-21,10.4,88.8,Brockton - Edgar B Davis,00440023, 68.4, 0.6, 13.6, 11.2, 0.4, 0.3, 5.5, 46.8, 53.2, 0.0 -8.261879619852165,5,a-cure-i1,2020-21,48.9,94.7,Brockton - Edison Academy,00440520, 66.2, 0.8, 25.6, 5.3, 1.5, 0.0, 0.8, 53.4, 46.6, 0.0 -4.408163265306122,4.41,a-cure-i1,2020-21,24.3,88.2,Brockton - Frederick Douglass Academy,00440080, 64.7, 0.0, 17.6, 11.8, 0.0, 0.0, 5.9, 47.1, 52.9, 0.0 -2.6831275720164602,2.68,a-cure-i1,2020-21,16.299999999999997,97.2,Brockton - Gilmore Elementary School,00440055, 78.6, 0.2, 14.4, 2.8, 0.4, 0.2, 3.3, 46.0, 54.0, 0.0 -3.697127937336815,3.7,a-cure-i1,2020-21,17.7,76.6,Brockton - Hancock,00440045, 53.7, 3.1, 14.0, 23.4, 0.0, 0.2, 5.5, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2020-21,4.9,78.1,Brockton - Huntington Therapeutic Day School,00440400, 45.3, 1.6, 23.4, 21.9, 0.0, 0.0, 7.8, 73.4, 26.6, 0.0 -3.018867924528302,3.02,a-cure-i1,2020-21,15.0,79.5,Brockton - John F Kennedy,00440017, 59.2, 3.1, 11.4, 20.5, 0.2, 0.2, 5.4, 50.4, 49.6, 0.0 -3.2117503059975516,3.21,a-cure-i1,2020-21,16.4,81.7,Brockton - Joseph F. Plouffe Academy,00440422, 42.7, 3.4, 30.6, 18.3, 0.5, 0.1, 4.3, 50.7, 49.3, 0.0 -2.2487562189054726,2.25,a-cure-i1,2020-21,11.3,80.4,Brockton - Louis F Angelo Elementary,00440065, 54.3, 4.9, 16.7, 19.6, 0.3, 0.0, 4.2, 54.4, 45.6, 0.0 -2.933333333333333,2.93,a-cure-i1,2020-21,16.5,90.0,Brockton - Manthala George Jr. School,00440003, 45.8, 0.3, 41.4, 10.0, 0.2, 0.1, 2.2, 50.7, 49.3, 0.0 -2.7275167785234897,2.73,a-cure-i1,2020-21,12.7,74.5,Brockton - Mary E. Baker School,00440002, 50.7, 1.6, 16.2, 25.5, 0.2, 0.3, 5.5, 52.3, 47.7, 0.0 -3.3608938547486034,3.36,a-cure-i1,2020-21,18.8,89.5,Brockton - North Middle School,00440410, 68.0, 1.5, 13.5, 10.5, 0.5, 0.0, 6.0, 48.0, 52.0, 0.0 -1.1452991452991454,1.15,a-cure-i1,2020-21,6.7,93.6,Brockton - Oscar F Raymond,00440078, 79.3, 1.3, 10.6, 6.4, 0.1, 0.3, 2.0, 52.8, 47.2, 0.0 -3.1746031746031744,3.17,a-cure-i1,2020-21,17.5,88.2,Brockton - South Middle School,00440415, 67.1, 0.5, 14.3, 11.8, 0.2, 0.0, 6.1, 56.7, 43.3, 0.0 -1.728155339805825,1.73,a-cure-i1,2020-21,8.899999999999999,82.4,Brockton - West Middle School,00440420, 61.5, 2.8, 12.4, 17.6, 0.4, 0.1, 5.0, 53.6, 46.4, 0.0 -8.342022940563085,5,a-cure-i1,2020-21,50.0,95.9,Brooke Charter School (District) - Brooke Charter School,04280305, 52.8, 1.8, 38.8, 4.1, 0.2, 0.1, 2.3, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.200000000000003,Brookfield - Brookfield Elementary,00450005, 0.4, 0.0, 6.0, 89.8, 0.0, 0.0, 3.8, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,57.7,Brookline - Brookline Early Education Program at Beacon,00460001, 3.8, 34.6, 0.0, 42.3, 0.0, 0.0, 19.2, 53.8, 46.2, 0.0 -6.053097345132744,5,a-cure-i1,2020-21,17.1,45.2,Brookline - Brookline Early Education Program at Clark Road,00460003, 3.2, 16.1, 6.5, 54.8, 0.0, 0.0, 19.4, 58.1, 41.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,50.0,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 14.3, 28.6, 50.0, 0.0, 0.0, 7.1, 46.4, 53.6, 0.0 -4.9442060085836905,4.94,a-cure-i1,2020-21,14.4,46.6,Brookline - Brookline High,00460505, 7.8, 15.7, 13.0, 53.4, 0.0, 0.1, 10.0, 51.4, 48.4, 0.2 -4.130019120458892,4.13,a-cure-i1,2020-21,13.5,52.3,Brookline - Edith C Baker,00460005, 5.7, 29.1, 9.2, 47.7, 0.2, 0.0, 8.2, 49.1, 50.9, 0.0 -6.46808510638298,5,a-cure-i1,2020-21,17.1,42.3,Brookline - Florida Ruffin Ridley School,00460015, 5.1, 15.6, 11.3, 57.7, 0.0, 0.0, 10.3, 50.9, 48.9, 0.2 -3.0167064439140816,3.02,a-cure-i1,2020-21,7.9,41.9,Brookline - Heath,00460025, 4.8, 17.2, 8.2, 58.1, 0.0, 0.0, 11.7, 49.3, 50.7, 0.0 -3.6785714285714293,3.68,a-cure-i1,2020-21,10.3,44.8,Brookline - John D Runkle,00460045, 4.4, 16.7, 11.1, 55.2, 0.0, 0.0, 12.7, 52.0, 48.0, 0.0 -3.471971066907776,3.47,a-cure-i1,2020-21,12.0,55.3,Brookline - Lawrence,00460030, 5.6, 30.3, 8.3, 44.7, 0.0, 0.3, 10.7, 52.4, 47.5, 0.2 -5.429213483146068,5,a-cure-i1,2020-21,15.100000000000001,44.5,Brookline - Michael Driscoll,00460020, 4.3, 16.3, 7.9, 55.5, 0.0, 0.0, 16.1, 54.7, 45.3, 0.0 -5.470355731225297,5,a-cure-i1,2020-21,17.3,50.6,Brookline - Pierce,00460040, 4.2, 24.4, 10.2, 49.4, 0.0, 0.0, 11.8, 47.2, 52.6, 0.1 -9.234285714285713,5,a-cure-i1,2020-21,40.4,70.0,Brookline - The Lynch Center,00460060, 20.0, 26.7, 16.7, 30.0, 0.0, 0.0, 6.7, 60.0, 40.0, 0.0 -3.8195488721804507,3.82,a-cure-i1,2020-21,12.7,53.2,Brookline - William H Lincoln,00460035, 10.7, 22.8, 11.1, 46.8, 0.2, 0.0, 8.4, 47.0, 53.0, 0.0 -2.8845070422535213,2.88,a-cure-i1,2020-21,6.4,35.5,Burlington - Burlington High,00480505, 7.5, 16.3, 7.3, 64.5, 0.5, 0.0, 3.9, 53.1, 46.8, 0.1 -1,1,a-cure-i1,2020-21,0.0,37.0,Burlington - Fox Hill,00480007, 8.8, 18.7, 6.1, 63.0, 0.0, 0.0, 3.4, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.5,Burlington - Francis Wyman Elementary,00480035, 9.5, 18.6, 7.6, 60.5, 0.2, 0.0, 3.7, 50.4, 49.4, 0.2 -1,1,a-cure-i1,2020-21,1.9,33.400000000000006,Burlington - Marshall Simonds Middle,00480303, 6.9, 18.2, 4.8, 66.6, 0.0, 0.0, 3.5, 49.1, 50.9, 0.0 -2.6395939086294415,2.64,a-cure-i1,2020-21,6.5,39.4,Burlington - Memorial,00480015, 5.7, 19.2, 9.5, 60.6, 0.2, 0.0, 4.7, 46.6, 53.4, 0.0 -3.4418604651162785,3.44,a-cure-i1,2020-21,7.4,34.400000000000006,Burlington - Pine Glen Elementary,00480020, 3.5, 18.0, 6.1, 65.6, 0.0, 0.0, 6.8, 52.4, 47.6, 0.0 -15.461538461538462,5,a-cure-i1,2020-21,60.3,62.4,Cambridge - Amigos School,00490006, 5.5, 3.8, 44.5, 37.6, 0.0, 0.0, 8.6, 47.9, 52.1, 0.0 -7.18048780487805,5,a-cure-i1,2020-21,27.600000000000005,61.5,Cambridge - Cambridge Rindge and Latin,00490506, 27.4, 9.8, 15.2, 38.5, 0.2, 0.4, 8.4, 49.1, 50.8, 0.2 -9.0446735395189,5,a-cure-i1,2020-21,32.9,58.2,Cambridge - Cambridge Street Upper School,00490305, 22.0, 9.5, 15.1, 41.8, 0.7, 0.0, 10.9, 58.2, 41.4, 0.3 -13.135371179039302,5,a-cure-i1,2020-21,37.6,45.8,Cambridge - Cambridgeport,00490007, 18.8, 9.2, 6.6, 54.2, 0.0, 0.0, 11.1, 50.6, 48.7, 0.7 -5.3272519954389965,5,a-cure-i1,2020-21,29.2,87.7,Cambridge - Fletcher/Maynard Academy,00490090, 51.8, 8.0, 16.7, 12.3, 0.4, 0.0, 10.9, 54.0, 46.0, 0.0 -4.861167002012072,4.86,a-cure-i1,2020-21,15.100000000000001,49.7,Cambridge - Graham and Parks,00490080, 17.7, 15.2, 9.0, 50.3, 0.0, 0.0, 7.8, 50.6, 49.4, 0.0 -10.382978723404255,5,a-cure-i1,2020-21,30.5,47.0,Cambridge - Haggerty,00490020, 15.0, 18.6, 6.5, 53.0, 0.0, 0.0, 6.9, 49.0, 51.0, 0.0 -4.6764705882352935,4.68,a-cure-i1,2020-21,15.899999999999999,54.4,Cambridge - John M Tobin,00490065, 18.2, 17.6, 7.5, 45.6, 0.7, 0.0, 10.4, 50.8, 49.2, 0.0 -2.9467625899280576,2.95,a-cure-i1,2020-21,12.8,69.5,Cambridge - Kennedy-Longfellow,00490040, 22.2, 17.7, 21.0, 30.5, 0.0, 0.0, 8.6, 54.3, 45.7, 0.0 -10.415357766143106,5,a-cure-i1,2020-21,37.3,57.3,Cambridge - King Open,00490035, 19.3, 12.6, 11.5, 42.7, 0.3, 0.3, 13.4, 49.7, 50.3, 0.0 -10.174563591022444,5,a-cure-i1,2020-21,25.500000000000004,40.1,Cambridge - Maria L. Baldwin,00490005, 10.7, 9.3, 9.6, 59.9, 0.0, 0.0, 10.5, 50.3, 49.7, 0.0 -6.152202937249665,5,a-cure-i1,2020-21,28.799999999999997,74.9,Cambridge - Martin Luther King Jr.,00490030, 16.7, 30.4, 6.0, 25.1, 0.3, 0.0, 21.4, 50.5, 49.2, 0.3 -5.265454545454546,5,a-cure-i1,2020-21,18.1,55.0,Cambridge - Morse,00490045, 24.2, 10.3, 11.3, 45.0, 0.3, 0.0, 8.9, 55.0, 45.0, 0.0 -9.310924369747898,5,a-cure-i1,2020-21,27.7,47.6,Cambridge - Peabody,00490050, 20.5, 14.7, 5.9, 52.4, 0.0, 0.0, 6.5, 46.9, 53.1, 0.0 -11.622222222222224,5,a-cure-i1,2020-21,52.300000000000004,72.0,Cambridge - Putnam Avenue Upper School,00490310, 33.7, 13.4, 12.3, 28.0, 0.8, 0.4, 11.5, 47.1, 52.5, 0.4 -8.785454545454545,5,a-cure-i1,2020-21,30.2,55.0,Cambridge - Rindge Avenue Upper School,00490315, 26.4, 8.9, 10.0, 45.0, 0.0, 0.0, 9.7, 50.2, 49.8, 0.0 -7.71764705882353,5,a-cure-i1,2020-21,28.700000000000003,59.5,Cambridge - Vassal Lane Upper School,00490320, 26.8, 17.2, 7.9, 40.5, 0.0, 0.0, 7.6, 52.9, 46.7, 0.3 -3.565714285714286,3.57,a-cure-i1,2020-21,7.800000000000001,35.0,Canton - Canton High,00500505, 12.8, 11.7, 6.0, 65.0, 0.0, 0.0, 4.5, 46.1, 53.7, 0.2 -1,1,a-cure-i1,2020-21,3.5,33.0,Canton - Dean S Luce,00500020, 9.1, 11.9, 5.2, 67.0, 0.0, 0.0, 6.9, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.5,Canton - John F Kennedy,00500017, 6.9, 9.9, 6.3, 69.5, 0.0, 0.0, 7.3, 52.1, 47.9, 0.0 -2.585858585858586,2.59,a-cure-i1,2020-21,6.4,39.6,Canton - Lt Peter M Hansen,00500012, 10.9, 11.7, 7.7, 60.4, 0.0, 0.0, 9.3, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,41.7,Canton - Rodman Early Childhood Center,00500010, 12.5, 16.7, 8.3, 58.3, 0.0, 0.0, 4.2, 75.0, 25.0, 0.0 -3.999999999999999,4.0,a-cure-i1,2020-21,8.6,34.400000000000006,Canton - Wm H Galvin Middle,00500305, 11.6, 11.6, 4.0, 65.6, 0.3, 0.7, 6.3, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2020-21,2.3,8.799999999999997,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.8, 1.2, 3.6, 91.2, 0.4, 0.0, 2.8, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,2.0,28.599999999999994,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 8.3, 0.5, 12.6, 71.4, 1.6, 0.3, 5.3, 63.3, 36.4, 0.3 -1,1,a-cure-i1,2020-21,3.5,27.599999999999994,Carlisle - Carlisle School,00510025, 0.5, 13.0, 5.5, 72.4, 0.0, 0.2, 8.5, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,4.300000000000001,5.700000000000003,Carver - Carver Elementary School,00520015, 2.6, 0.1, 1.7, 94.3, 0.0, 0.0, 1.2, 51.4, 48.6, 0.0 -18.11320754716982,5,a-cure-i1,2020-21,6.0,5.299999999999997,Carver - Carver Middle/High School,00520405, 1.5, 0.4, 1.6, 94.7, 0.7, 0.1, 1.0, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.900000000000006,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 2.0, 93.1, 0.0, 0.0, 5.0, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.900000000000006,Central Berkshire - Craneville,06350025, 0.5, 1.3, 8.1, 84.1, 0.3, 0.0, 5.8, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.200000000000003,Central Berkshire - Kittredge,06350035, 0.7, 0.0, 4.8, 91.8, 0.0, 0.0, 2.7, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.299999999999997,Central Berkshire - Nessacus Regional Middle School,06350305, 0.6, 0.3, 4.2, 89.7, 0.3, 0.0, 5.0, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2020-21,0.5,7.599999999999994,Central Berkshire - Wahconah Regional High,06350505, 0.4, 1.0, 3.1, 92.4, 0.2, 0.0, 2.9, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.700000000000003,Chelmsford - Byam School,00560030, 2.6, 14.9, 7.7, 71.3, 0.2, 0.0, 3.3, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.400000000000006,Chelmsford - Center Elementary School,00560005, 3.0, 18.6, 6.1, 68.6, 0.0, 0.0, 3.8, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,43.1,Chelmsford - Charles D Harrington,00560025, 6.1, 22.4, 11.0, 56.9, 0.6, 0.4, 2.6, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2020-21,4.9,27.599999999999994,Chelmsford - Chelmsford High,00560505, 3.7, 16.1, 5.4, 72.4, 0.0, 0.1, 2.3, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.099999999999994,Chelmsford - Col Moses Parker School,00560305, 4.3, 13.3, 9.8, 67.9, 0.5, 0.0, 4.3, 58.4, 41.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,50.0,Chelmsford - Community Education Center,00560001, 10.5, 17.1, 15.8, 50.0, 0.0, 0.0, 6.6, 69.7, 30.3, 0.0 -1,1,a-cure-i1,2020-21,3.5,31.599999999999994,Chelmsford - McCarthy Middle School,00560310, 3.8, 15.8, 7.0, 68.4, 0.0, 0.1, 4.8, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.2,Chelmsford - South Row,00560015, 4.0, 17.3, 7.1, 66.8, 0.5, 0.0, 4.3, 50.2, 49.8, 0.0 -3.0620399579390116,3.06,a-cure-i1,2020-21,18.2,95.1,Chelsea - Chelsea High,00570505, 4.2, 0.1, 89.2, 4.9, 0.2, 0.0, 1.4, 55.2, 44.8, 0.0 -3.943434343434343,3.94,a-cure-i1,2020-21,24.4,99.0,Chelsea - Chelsea Opportunity Academy,00570515, 3.0, 0.0, 96.0, 1.0, 0.0, 0.0, 0.0, 63.4, 36.6, 0.0 -2.1810436634717787,2.18,a-cure-i1,2020-21,12.8,93.9,Chelsea - Clark Avenue School,00570050, 2.8, 0.4, 89.2, 6.1, 0.3, 0.0, 1.1, 53.3, 46.7, 0.0 -1.181208053691275,1.18,a-cure-i1,2020-21,6.6,89.4,Chelsea - Edgar A Hooks Elementary,00570030, 5.8, 0.0, 82.1, 10.6, 0.6, 0.0, 1.0, 50.9, 49.1, 0.0 -1.1611526147278548,1.16,a-cure-i1,2020-21,6.8,93.7,Chelsea - Eugene Wright Science and Technology Academy,00570045, 5.8, 0.2, 85.0, 6.3, 0.4, 0.0, 2.3, 48.9, 51.1, 0.0 -3.213897937024973,3.21,a-cure-i1,2020-21,18.5,92.1,Chelsea - Frank M Sokolowski Elementary,00570040, 3.8, 0.2, 87.5, 7.9, 0.0, 0.0, 0.6, 49.8, 50.2, 0.0 -3.3402922755741127,3.34,a-cure-i1,2020-21,20.0,95.8,Chelsea - George F. Kelly Elementary,00570035, 3.6, 0.0, 92.0, 4.2, 0.0, 0.0, 0.2, 46.7, 53.3, 0.0 -4.845908607863975,4.85,a-cure-i1,2020-21,28.5,94.1,Chelsea - Joseph A. Browne School,00570055, 4.3, 0.0, 87.9, 5.9, 0.0, 0.0, 1.9, 53.9, 46.1, 0.0 -2.2561894510226046,2.26,a-cure-i1,2020-21,13.1,92.9,Chelsea - Shurtleff Early Childhood,00570003, 6.0, 0.0, 85.2, 7.1, 0.3, 0.0, 1.4, 51.0, 49.0, 0.0 -1.4931071049840934,1.49,a-cure-i1,2020-21,8.8,94.3,Chelsea - William A Berkowitz Elementary,00570025, 5.9, 0.0, 86.6, 5.7, 0.0, 0.0, 1.8, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.900000000000006,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.0, 0.0, 3.0, 93.1, 2.0, 0.0, 1.0, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.3,Chicopee - Barry,00610003, 2.7, 2.7, 30.5, 60.7, 0.0, 0.5, 2.9, 54.4, 45.6, 0.0 -1.608617594254937,1.61,a-cure-i1,2020-21,5.6,55.7,Chicopee - Belcher,00610010, 10.4, 0.9, 41.5, 44.3, 0.0, 0.0, 2.8, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,1.5,51.6,Chicopee - Bellamy Middle,00610305, 3.4, 1.1, 43.3, 48.4, 0.1, 0.0, 3.7, 52.7, 47.2, 0.1 -1,1,a-cure-i1,2020-21,0.0,70.6,Chicopee - Bowe,00610015, 5.4, 1.2, 58.9, 29.4, 0.0, 0.0, 5.1, 54.2, 45.8, 0.0 -2.552147239263804,2.55,a-cure-i1,2020-21,5.2,32.599999999999994,Chicopee - Bowie,00610020, 4.0, 2.2, 24.6, 67.4, 0.0, 0.0, 1.8, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,68.3,Chicopee - Chicopee Academy,00610021, 3.3, 0.0, 61.7, 31.7, 0.0, 0.0, 3.3, 78.3, 21.7, 0.0 -2.316353887399464,2.32,a-cure-i1,2020-21,5.4,37.3,Chicopee - Chicopee Comprehensive High School,00610510, 2.2, 2.5, 29.3, 62.7, 0.2, 0.0, 3.0, 56.2, 43.7, 0.1 -1.594306049822064,1.59,a-cure-i1,2020-21,5.6000000000000005,56.2,Chicopee - Chicopee High,00610505, 5.0, 2.9, 45.9, 43.8, 0.0, 0.0, 2.5, 50.0, 50.0, 0.0 -1.579143389199255,1.58,a-cure-i1,2020-21,5.3,53.7,Chicopee - Dupont Middle,00610310, 4.8, 2.4, 43.3, 46.3, 0.0, 0.0, 3.1, 54.2, 45.8, 0.0 -1.7605177993527508,1.76,a-cure-i1,2020-21,6.8,61.8,Chicopee - Fairview Elementary,00610050, 5.1, 1.7, 51.7, 38.2, 0.0, 0.0, 3.4, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2020-21,4.0,74.6,Chicopee - Gen John J Stefanik,00610090, 6.1, 0.3, 64.7, 25.4, 0.0, 0.0, 3.5, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,42.4,Chicopee - Lambert-Lavoie,00610040, 3.7, 3.0, 29.7, 57.6, 0.0, 0.0, 5.9, 59.5, 40.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,44.0,Chicopee - Litwin,00610022, 8.0, 1.1, 33.1, 56.0, 0.0, 0.0, 1.7, 51.7, 48.3, 0.0 -2.3978201634877383,2.4,a-cure-i1,2020-21,5.5,36.7,Chicopee - Streiber Memorial School,00610065, 4.4, 3.2, 23.0, 63.3, 0.0, 0.4, 5.6, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,63.6,Chicopee - Szetela Early Childhood Center,00610001, 5.0, 2.5, 49.6, 36.4, 0.0, 0.0, 6.6, 71.1, 28.9, 0.0 -4.447653429602888,4.45,a-cure-i1,2020-21,15.4,55.4,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 6.8, 9.5, 33.3, 44.6, 0.3, 0.0, 5.5, 52.9, 46.9, 0.3 -5.404298874104401,5,a-cure-i1,2020-21,33.0,97.7,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 64.5, 0.0, 32.4, 2.3, 0.0, 0.0, 0.7, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,4.700000000000003,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 2.6, 95.3, 0.0, 0.0, 1.6, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,2.1,37.0,Clinton - Clinton Elementary,00640050, 2.3, 0.8, 30.5, 63.0, 0.0, 0.0, 3.4, 54.0, 46.0, 0.0 -2.530831099195711,2.53,a-cure-i1,2020-21,5.9,37.3,Clinton - Clinton Middle School,00640305, 3.8, 0.9, 30.1, 62.7, 0.0, 0.2, 2.4, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2020-21,4.7,39.9,Clinton - Clinton Senior High,00640505, 3.9, 1.6, 33.2, 60.1, 0.0, 0.0, 1.2, 53.0, 46.8, 0.2 -7.002012072434608,5,a-cure-i1,2020-21,43.50000000000001,99.4,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 77.6, 0.0, 20.7, 0.6, 0.3, 0.0, 0.9, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.900000000000006,Cohasset - Cohasset High School,00650505, 2.7, 2.9, 1.3, 91.1, 0.4, 0.0, 1.6, 49.2, 50.6, 0.2 -1,1,a-cure-i1,2020-21,3.9,7.799999999999997,Cohasset - Cohasset Middle School,00650305, 3.6, 1.4, 0.3, 92.2, 0.0, 0.0, 2.5, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.799999999999997,Cohasset - Deer Hill,00650005, 1.9, 1.9, 1.6, 93.2, 0.0, 0.0, 1.3, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.099999999999994,Cohasset - Joseph Osgood,00650010, 3.3, 0.9, 1.5, 91.9, 0.3, 0.0, 2.1, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,85.2,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 20.4, 27.9, 33.0, 14.8, 0.5, 0.0, 3.4, 50.0, 50.0, 0.1 -1,1,a-cure-i1,2020-21,0.0,95.1,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 71.1, 4.3, 15.1, 4.9, 0.3, 0.0, 4.3, 42.8, 57.2, 0.0 -3.5864892528147387,3.59,a-cure-i1,2020-21,21.9,97.7,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.3, 0.5, 95.5, 2.3, 0.5, 0.0, 0.0, 52.5, 47.5, 0.0 -6.924643584521385,5,a-cure-i1,2020-21,42.5,98.2,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.8, 0.0, 97.2, 1.8, 0.3, 0.0, 0.0, 49.9, 50.1, 0.0 -4.049382716049382,4.05,a-cure-i1,2020-21,24.599999999999998,97.2,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 1.3, 1.0, 94.5, 2.8, 0.0, 0.0, 0.5, 48.0, 52.0, 0.0 -3.581395348837209,3.58,a-cure-i1,2020-21,7.7,34.400000000000006,Concord - Alcott,00670005, 9.1, 8.0, 10.2, 65.6, 0.0, 0.0, 7.1, 52.0, 48.0, 0.0 -11.999999999999998,5,a-cure-i1,2020-21,19.8,26.400000000000006,Concord - Concord Middle,00670305, 5.6, 7.6, 6.8, 73.6, 0.0, 0.0, 6.5, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,4.2,24.900000000000006,Concord - Thoreau,00670020, 2.5, 7.9, 7.0, 75.1, 0.2, 0.2, 7.0, 50.8, 49.2, 0.0 -9.417142857142858,5,a-cure-i1,2020-21,10.3,17.5,Concord - Willard,00670030, 1.6, 6.8, 3.5, 82.5, 0.0, 0.0, 5.6, 49.2, 50.8, 0.0 -5.424892703862661,5,a-cure-i1,2020-21,7.8999999999999995,23.299999999999997,Concord-Carlisle - Concord Carlisle High,06400505, 4.5, 7.8, 5.0, 76.7, 0.2, 0.0, 5.9, 48.8, 50.8, 0.4 -4.08042328042328,4.08,a-cure-i1,2020-21,24.099999999999998,94.5,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 47.9, 1.8, 41.6, 5.5, 0.2, 0.0, 3.1, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.0,Conway - Conway Grammar,00680005, 0.8, 0.0, 4.8, 92.0, 0.0, 0.0, 2.4, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2020-21,0.6,16.900000000000006,Danvers - Danvers High,00710505, 2.3, 2.6, 9.1, 83.1, 0.0, 0.0, 2.9, 50.2, 49.7, 0.1 -1,1,a-cure-i1,2020-21,0.0,18.900000000000006,Danvers - Great Oak,00710015, 3.2, 1.7, 9.0, 81.1, 0.0, 0.0, 4.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.700000000000003,Danvers - Highlands,00710010, 3.5, 4.1, 9.3, 79.3, 0.3, 0.0, 3.5, 53.7, 46.3, 0.0 -5.503184713375796,5,a-cure-i1,2020-21,5.4,15.700000000000003,Danvers - Holten Richmond Middle School,00710305, 1.8, 2.3, 9.5, 84.3, 0.0, 0.0, 2.2, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.0,Danvers - Ivan G Smith,00710032, 2.3, 2.6, 7.1, 86.0, 0.0, 0.0, 1.9, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.700000000000003,Danvers - Riverside,00710030, 2.6, 1.6, 10.8, 83.3, 0.3, 0.3, 1.0, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2020-21,4.7,8.900000000000006,Danvers - Willis E Thorpe,00710045, 1.5, 1.5, 5.2, 91.1, 0.0, 0.0, 0.6, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.1,14.200000000000003,Dartmouth - Andrew B. Cushman School,00720005, 0.8, 0.0, 10.0, 85.8, 0.0, 0.0, 3.3, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2020-21,1.5,15.700000000000003,Dartmouth - Dartmouth High,00720505, 2.8, 0.1, 5.2, 84.3, 0.0, 0.0, 7.7, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.299999999999997,Dartmouth - Dartmouth Middle,00720050, 1.1, 0.7, 5.6, 86.7, 0.0, 0.1, 5.7, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.4,9.200000000000003,Dartmouth - George H Potter,00720030, 0.5, 0.3, 4.1, 90.8, 0.0, 0.0, 4.3, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,1.2,14.700000000000003,Dartmouth - James M. Quinn School,00720040, 0.9, 1.4, 5.1, 85.3, 0.0, 0.0, 7.3, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.700000000000003,Dartmouth - Joseph Demello,00720015, 1.1, 1.1, 4.9, 85.3, 0.0, 0.0, 7.6, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,52.1,Dedham - Avery,00730010, 10.7, 2.1, 31.8, 47.9, 0.0, 0.4, 7.1, 49.6, 50.4, 0.0 -2.9387755102040813,2.94,a-cure-i1,2020-21,5.4,29.400000000000006,Dedham - Dedham High,00730505, 8.4, 2.9, 15.4, 70.6, 0.0, 0.0, 2.8, 52.6, 47.2, 0.1 -1,1,a-cure-i1,2020-21,1.8,30.200000000000003,Dedham - Dedham Middle School,00730305, 7.7, 2.0, 15.6, 69.8, 0.2, 0.0, 4.7, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.700000000000003,Dedham - Early Childhood Center,00730005, 4.0, 1.5, 13.1, 72.3, 0.0, 0.0, 9.1, 52.6, 47.1, 0.4 -1,1,a-cure-i1,2020-21,0.0,19.900000000000006,Dedham - Greenlodge,00730025, 3.0, 1.3, 10.2, 80.1, 0.0, 0.0, 5.5, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.299999999999997,Dedham - Oakdale,00730030, 8.1, 2.4, 11.7, 71.7, 0.0, 0.0, 6.1, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.400000000000006,Dedham - Riverdale,00730045, 4.7, 3.5, 14.1, 70.6, 0.0, 0.0, 7.1, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.799999999999997,Deerfield - Deerfield Elementary,00740015, 0.0, 0.3, 6.4, 85.2, 0.0, 0.0, 8.0, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,4.6,35.8,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 10.6, 2.7, 14.8, 64.2, 2.3, 0.0, 5.4, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,3.4,33.0,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 8.2, 2.1, 13.8, 67.0, 1.4, 0.4, 7.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,41.1,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 14.0, 3.1, 17.4, 58.9, 1.9, 0.0, 4.7, 54.7, 45.3, 0.0 -5.44080604534005,5,a-cure-i1,2020-21,13.5,39.7,Dennis-Yarmouth - Mattacheese Middle School,06450305, 10.9, 1.4, 15.5, 60.3, 3.0, 0.2, 8.6, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,3.9,33.599999999999994,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 9.7, 2.7, 9.5, 66.4, 2.3, 0.4, 9.0, 56.3, 43.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.5,Dennis-Yarmouth - Station Avenue Elementary,06450025, 8.8, 3.9, 7.8, 73.5, 0.5, 0.2, 5.4, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.200000000000003,Dighton-Rehoboth - Dighton Elementary,06500005, 2.7, 1.8, 4.5, 85.8, 0.0, 0.0, 5.2, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.400000000000006,Dighton-Rehoboth - Dighton Middle School,06500305, 2.1, 1.3, 5.9, 85.6, 0.0, 0.0, 5.1, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,1.8,8.599999999999994,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.3, 0.8, 3.9, 91.4, 0.1, 0.0, 2.5, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,3.1,10.299999999999997,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 1.4, 1.4, 3.9, 89.7, 0.2, 0.0, 3.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.799999999999997,Dighton-Rehoboth - Palmer River,06500010, 0.9, 2.2, 3.9, 89.2, 0.2, 0.0, 3.6, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.200000000000003,Douglas - Douglas Elementary School,00770015, 0.0, 0.6, 5.8, 88.8, 0.0, 0.0, 4.9, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,3.1,10.099999999999994,Douglas - Douglas High School,00770505, 1.2, 1.4, 4.9, 89.9, 0.0, 0.6, 2.0, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.0,Douglas - Douglas Middle School,00770305, 0.7, 0.7, 3.6, 92.0, 0.0, 0.0, 2.9, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.299999999999997,Douglas - Douglas Primary School,00770005, 1.1, 0.0, 5.5, 90.7, 0.0, 0.0, 2.7, 50.5, 49.5, 0.0 -3.2352941176470584,3.24,a-cure-i1,2020-21,5.5,27.200000000000003,Dover - Chickering,00780005, 3.4, 14.3, 4.2, 72.8, 0.0, 0.0, 5.3, 55.4, 44.6, 0.0 -6.4884792626728105,5,a-cure-i1,2020-21,8.8,21.700000000000003,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.5, 9.6, 4.3, 78.3, 0.4, 0.0, 4.7, 49.6, 50.3, 0.1 -4.511475409836065,4.51,a-cure-i1,2020-21,8.6,30.5,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 4.3, 13.5, 4.9, 69.5, 0.0, 0.0, 7.8, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.8,Dracut - Brookside Elementary,00790035, 10.6, 9.2, 12.6, 66.2, 0.2, 0.0, 1.1, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.5,Dracut - Dracut Senior High,00790505, 8.7, 9.0, 8.3, 70.5, 1.0, 0.0, 2.5, 51.0, 48.7, 0.3 -1,1,a-cure-i1,2020-21,0.0,32.7,Dracut - George H. Englesby Elementary School,00790045, 4.8, 8.6, 17.5, 67.3, 0.0, 0.0, 1.8, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.400000000000006,Dracut - Greenmont Avenue,00790030, 5.7, 7.4, 15.5, 69.6, 0.0, 0.0, 1.8, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.5,Dracut - Joseph A Campbell Elementary,00790020, 6.7, 5.9, 7.9, 77.5, 0.2, 0.0, 1.7, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2020-21,2.0,28.5,Dracut - Justus C. Richardson Middle School,00790410, 7.4, 6.2, 13.0, 71.5, 0.0, 0.0, 1.8, 52.4, 47.3, 0.3 -16.44398766700925,5,a-cure-i1,2020-21,100.0,97.3,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 59.2, 0.7, 35.0, 2.7, 0.3, 0.3, 1.7, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.200000000000003,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.7, 0.7, 7.9, 86.8, 0.0, 0.0, 4.0, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.099999999999994,Dudley-Charlton Reg - Charlton Middle School,06580310, 1.6, 1.1, 8.4, 85.9, 0.5, 0.2, 2.4, 53.1, 46.9, 0.0 -19.843575418994405,5,a-cure-i1,2020-21,22.2,17.900000000000006,Dudley-Charlton Reg - Dudley Elementary,06580005, 2.4, 0.9, 11.9, 82.1, 0.3, 0.0, 2.4, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.799999999999997,Dudley-Charlton Reg - Dudley Middle School,06580305, 2.6, 0.6, 9.5, 84.2, 0.4, 0.0, 2.8, 51.9, 47.9, 0.2 -1,1,a-cure-i1,2020-21,0.0,15.599999999999994,Dudley-Charlton Reg - Heritage School,06580030, 1.5, 0.2, 9.0, 84.4, 0.0, 0.0, 4.9, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.099999999999994,Dudley-Charlton Reg - Mason Road School,06580010, 1.3, 0.4, 13.4, 79.9, 0.9, 0.0, 4.0, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,1.1,15.599999999999994,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 1.5, 1.6, 9.9, 84.4, 0.0, 0.1, 2.6, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.900000000000006,Duxbury - Alden School,00820004, 0.5, 0.3, 2.8, 93.1, 0.0, 0.0, 3.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,3.3,8.799999999999997,Duxbury - Chandler Elementary,00820006, 0.9, 1.1, 2.7, 91.2, 0.0, 0.0, 4.1, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,4.2,8.099999999999994,Duxbury - Duxbury High,00820505, 0.4, 1.9, 2.1, 91.9, 0.1, 0.0, 3.6, 52.3, 47.5, 0.1 -1,1,a-cure-i1,2020-21,0.0,8.700000000000003,Duxbury - Duxbury Middle,00820305, 0.3, 1.4, 2.7, 91.3, 0.2, 0.0, 4.2, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.5,East Bridgewater - Central,00830005, 4.7, 0.8, 2.9, 88.5, 0.6, 0.0, 2.5, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,1.6,10.099999999999994,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 4.1, 0.7, 2.3, 89.9, 0.4, 0.1, 2.5, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.900000000000006,East Bridgewater - Gordon W. Mitchell School,00830010, 4.5, 0.8, 4.1, 86.1, 0.5, 0.0, 4.0, 50.6, 49.4, 0.0 -4.437500000000001,4.44,a-cure-i1,2020-21,7.1000000000000005,25.599999999999994,East Longmeadow - Birchland Park,00870305, 5.3, 6.5, 8.7, 74.4, 0.2, 0.0, 5.0, 52.0, 48.0, 0.0 -6.078212290502791,5,a-cure-i1,2020-21,6.8,17.900000000000006,East Longmeadow - East Longmeadow High,00870505, 3.1, 6.2, 7.1, 82.1, 0.0, 0.1, 1.4, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.200000000000003,East Longmeadow - Mapleshade,00870010, 1.1, 6.5, 14.9, 73.8, 0.0, 0.0, 3.6, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.299999999999997,East Longmeadow - Meadow Brook,00870013, 3.4, 5.1, 13.0, 75.7, 0.0, 0.0, 2.8, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.5,East Longmeadow - Mountain View,00870015, 2.2, 5.2, 8.5, 78.5, 0.0, 0.0, 5.6, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.200000000000003,Eastham - Eastham Elementary,00850005, 9.3, 2.1, 5.2, 75.8, 0.0, 0.0, 7.7, 54.1, 45.9, 0.0 -82.90155440414509,5,a-cure-i1,2020-21,100.0,19.299999999999997,Easthampton - Center School,00860005, 2.6, 0.0, 10.4, 80.7, 0.5, 0.0, 5.7, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.0,Easthampton - Easthampton High,00860505, 2.1, 3.6, 11.5, 80.0, 0.0, 0.2, 2.6, 48.2, 51.3, 0.5 -1,1,a-cure-i1,2020-21,0.0,19.099999999999994,Easthampton - Maple,00860010, 0.0, 2.5, 11.3, 80.9, 0.5, 0.0, 4.9, 55.4, 44.1, 0.5 -5.6560509554140115,5,a-cure-i1,2020-21,11.1,31.400000000000006,Easthampton - Neil A Pepin,00860020, 0.0, 3.2, 22.3, 68.6, 0.5, 0.0, 5.3, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.799999999999997,Easthampton - White Brook Middle School,00860305, 0.9, 4.8, 16.7, 74.2, 0.5, 0.0, 2.9, 54.3, 45.2, 0.5 -1,1,a-cure-i1,2020-21,0.0,30.099999999999994,Easton - Center School,00880003, 12.9, 3.8, 9.1, 69.9, 0.0, 0.0, 4.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,3.4,20.299999999999997,Easton - Easton Middle School,00880405, 7.8, 2.9, 6.0, 79.7, 0.1, 0.1, 3.3, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.099999999999994,Easton - Moreau Hall,00880020, 7.1, 6.0, 6.5, 73.9, 0.5, 0.5, 5.4, 49.5, 50.5, 0.0 -5.938144329896905,5,a-cure-i1,2020-21,7.199999999999999,19.400000000000006,Easton - Oliver Ames High,00880505, 6.9, 3.6, 5.1, 80.6, 0.2, 0.0, 3.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,3.0,20.099999999999994,Easton - Parkview Elementary,00880015, 3.9, 3.5, 8.5, 79.9, 0.0, 0.0, 4.2, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2020-21,4.1,21.599999999999994,Easton - Richardson Olmsted School,00880025, 6.4, 2.4, 8.0, 78.4, 0.9, 0.1, 3.8, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.7,Edgartown - Edgartown Elementary,00890005, 3.7, 0.8, 20.4, 67.3, 3.1, 0.0, 4.7, 49.5, 50.5, 0.0 -8.650875386199795,5,a-cure-i1,2020-21,52.5,97.1,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 36.9, 1.0, 56.4, 2.9, 0.3, 0.0, 2.6, 34.3, 65.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.0,Erving - Erving Elementary,00910030, 0.0, 0.0, 4.4, 85.0, 0.0, 0.0, 10.6, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2020-21,2.2,20.700000000000003,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.6, 1.7, 13.1, 79.3, 0.3, 0.1, 3.9, 41.6, 58.2, 0.2 -1,1,a-cure-i1,2020-21,0.0,74.1,Everett - Adams School,00930003, 13.9, 7.4, 50.9, 25.9, 0.0, 0.9, 0.9, 56.5, 43.5, 0.0 -1.579972183588317,1.58,a-cure-i1,2020-21,7.1,71.9,Everett - Devens School,00930030, 24.6, 0.0, 38.6, 28.1, 0.0, 0.0, 8.8, 73.7, 24.6, 1.8 -2.4919653893695917,2.49,a-cure-i1,2020-21,12.6,80.9,Everett - Everett High,00930505, 18.0, 5.2, 55.2, 19.1, 0.5, 0.1, 1.8, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,2.2,85.0,Everett - George Keverian School,00930028, 13.5, 3.8, 65.9, 15.0, 0.2, 0.1, 1.5, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,4.5,78.7,Everett - Lafayette School,00930038, 15.5, 8.4, 53.0, 21.3, 0.1, 0.0, 1.7, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,4.7,75.9,Everett - Madeline English School,00930018, 13.0, 7.0, 54.2, 24.1, 0.1, 0.0, 1.5, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,88.4,Everett - Parlin School,00930058, 13.3, 3.3, 70.7, 11.6, 0.0, 0.0, 1.1, 46.6, 53.4, 0.0 -2.1777277840269966,2.18,a-cure-i1,2020-21,12.100000000000001,88.9,Everett - Sumner G. Whittier School,00930010, 10.6, 4.1, 72.3, 11.1, 0.6, 0.0, 1.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,78.9,Everett - Webster Extension,00930001, 17.6, 12.7, 46.5, 21.1, 0.7, 0.0, 1.4, 56.3, 43.7, 0.0 -1,1,a-cure-i1,2020-21,3.7,70.9,Everett - Webster School,00930015, 13.0, 4.9, 51.9, 29.1, 0.0, 0.0, 1.2, 51.6, 48.4, 0.0 -6.381818181818182,5,a-cure-i1,2020-21,35.1,88.0,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 6.0, 0.9, 79.4, 12.0, 0.7, 0.4, 0.6, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.700000000000003,Fairhaven - East Fairhaven,00940010, 3.6, 1.8, 5.8, 83.3, 0.9, 0.0, 4.6, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.900000000000006,Fairhaven - Fairhaven High,00940505, 1.9, 2.9, 4.7, 87.1, 0.7, 0.0, 2.6, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.5,Fairhaven - Hastings Middle,00940305, 2.4, 2.2, 6.2, 83.5, 1.3, 0.0, 4.4, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.099999999999994,Fairhaven - Leroy Wood,00940030, 3.3, 1.3, 5.5, 85.9, 0.4, 0.0, 3.5, 51.2, 48.8, 0.0 -2.159509202453988,2.16,a-cure-i1,2020-21,6.6000000000000005,48.9,Fall River - B M C Durfee High,00950505, 9.6, 5.4, 28.2, 51.1, 0.1, 0.0, 5.6, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,55.9,Fall River - Carlton M. Viveiros Elementary School,00950009, 8.4, 3.2, 34.2, 44.1, 0.1, 0.0, 10.0, 49.6, 50.4, 0.0 -2.9437819420783646,2.94,a-cure-i1,2020-21,10.8,58.7,Fall River - Henry Lord Community School,00950017, 9.3, 3.5, 34.9, 41.3, 0.0, 0.0, 11.0, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.799999999999997,Fall River - James Tansey,00950140, 3.6, 1.8, 10.7, 76.2, 0.0, 0.0, 7.8, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,53.7,Fall River - John J Doran,00950045, 8.7, 0.8, 32.0, 46.3, 0.0, 0.0, 12.2, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,2.2,54.4,Fall River - Letourneau Elementary School,00950013, 7.9, 2.8, 36.0, 45.6, 0.0, 0.0, 7.7, 47.6, 52.4, 0.0 -2.200298953662182,2.2,a-cure-i1,2020-21,9.2,66.9,Fall River - Mary Fonseca Elementary School,00950011, 9.8, 2.6, 44.8, 33.1, 0.2, 0.2, 9.4, 54.4, 45.6, 0.0 -3.6314606741573034,3.63,a-cure-i1,2020-21,10.1,44.5,Fall River - Matthew J Kuss Middle,00950320, 6.9, 4.2, 23.1, 55.5, 0.0, 0.0, 10.2, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,4.3,42.9,Fall River - Morton Middle,00950315, 8.4, 2.8, 24.2, 57.1, 0.3, 0.1, 7.1, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,2.5,43.9,Fall River - North End Elementary,00950005, 10.1, 1.3, 23.3, 56.1, 0.1, 0.0, 9.0, 49.3, 50.7, 0.0 -1.9286926994906624,1.93,a-cure-i1,2020-21,7.1000000000000005,58.9,Fall River - Resiliency Preparatory Academy,00950525, 14.4, 0.5, 38.6, 41.1, 0.5, 0.0, 5.0, 62.4, 37.1, 0.5 -1,1,a-cure-i1,2020-21,0.0,56.8,Fall River - Samuel Watson,00950145, 11.2, 2.0, 27.6, 43.2, 0.4, 0.8, 14.8, 46.0, 54.0, 0.0 -3.2,3.2,a-cure-i1,2020-21,9.3,46.5,Fall River - Spencer Borden,00950130, 10.5, 4.0, 21.5, 53.5, 0.0, 0.0, 10.5, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,3.7,45.5,Fall River - Stone PK-12 School,00950340, 18.2, 0.0, 16.7, 54.5, 0.0, 0.0, 10.6, 72.7, 27.3, 0.0 -1.7504273504273504,1.75,a-cure-i1,2020-21,6.4,58.5,Fall River - Talbot Innovation School,00950305, 7.5, 3.6, 36.7, 41.5, 0.4, 0.0, 10.4, 51.3, 48.7, 0.0 -1.629090909090909,1.63,a-cure-i1,2020-21,5.6,55.0,Fall River - William S Greene,00950065, 8.0, 5.6, 31.2, 45.0, 0.0, 0.0, 10.2, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.099999999999994,Falmouth - East Falmouth Elementary,00960005, 5.1, 1.9, 11.7, 75.9, 1.9, 0.0, 3.5, 57.2, 42.8, 0.0 -1,1,a-cure-i1,2020-21,3.4,19.099999999999994,Falmouth - Falmouth High,00960505, 5.5, 1.8, 5.8, 80.9, 0.5, 0.0, 5.4, 49.9, 49.4, 0.6 -1,1,a-cure-i1,2020-21,4.4,22.700000000000003,Falmouth - Lawrence,00960405, 4.7, 2.9, 5.9, 77.3, 2.0, 0.0, 7.3, 52.0, 48.0, 0.0 -5.276595744680852,5,a-cure-i1,2020-21,6.2,18.799999999999997,Falmouth - Morse Pond School,00960305, 4.4, 1.4, 6.3, 81.2, 0.4, 0.2, 6.1, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,2.9,27.200000000000003,Falmouth - Mullen-Hall,00960020, 3.0, 1.7, 11.1, 72.8, 0.7, 0.0, 10.6, 56.8, 43.2, 0.0 -7.341176470588235,5,a-cure-i1,2020-21,7.8,17.0,Falmouth - North Falmouth Elementary,00960030, 2.9, 1.3, 7.5, 83.0, 0.0, 0.0, 5.2, 50.0, 50.0, 0.0 -4.95483870967742,4.95,a-cure-i1,2020-21,9.6,31.0,Falmouth - Teaticket,00960015, 10.2, 1.2, 8.6, 69.0, 1.2, 0.0, 9.8, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,2.799999999999997,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 50.5, 49.5, 0.0 -1.7800511508951404,1.78,a-cure-i1,2020-21,8.7,78.2,Fitchburg - Arthur M Longsjo Middle School,00970315, 7.1, 3.2, 60.5, 21.8, 0.2, 0.2, 7.1, 50.0, 50.0, 0.0 -1.2075471698113207,1.21,a-cure-i1,2020-21,5.6,74.2,Fitchburg - Crocker Elementary,00970016, 5.5, 3.2, 57.8, 25.8, 0.0, 0.0, 7.8, 51.6, 48.4, 0.0 -3.3478260869565215,3.35,a-cure-i1,2020-21,15.399999999999999,73.6,Fitchburg - Fitchburg High,00970505, 7.1, 5.6, 53.5, 26.4, 0.0, 0.0, 7.4, 51.8, 48.2, 0.0 -6.394106813996317,5,a-cure-i1,2020-21,21.7,54.3,Fitchburg - Goodrich Academy,00970510, 2.9, 2.2, 43.5, 45.7, 0.0, 0.0, 5.8, 59.4, 40.6, 0.0 -2.0394218134034166,2.04,a-cure-i1,2020-21,9.7,76.1,Fitchburg - McKay Arts Academy,00970340, 6.2, 6.1, 56.3, 23.9, 0.0, 0.0, 7.5, 51.9, 48.1, 0.0 -1.376586741889986,1.38,a-cure-i1,2020-21,6.1000000000000005,70.9,Fitchburg - Memorial Middle School,00970048, 5.5, 4.7, 52.3, 29.1, 0.0, 0.2, 8.2, 46.5, 53.5, 0.0 -1.4014598540145986,1.4,a-cure-i1,2020-21,6.0,68.5,Fitchburg - Reingold Elementary,00970043, 4.0, 3.8, 52.8, 31.5, 0.0, 0.0, 7.8, 58.0, 42.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,79.3,Fitchburg - South Street Elementary,00970060, 6.7, 3.0, 61.4, 20.7, 0.0, 0.0, 8.1, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,0.0,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.8, 46.3, 0.0 -10.232558139534882,5,a-cure-i1,2020-21,11.0,17.200000000000003,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.9, 1.4, 7.4, 82.8, 0.5, 0.0, 7.0, 43.3, 55.8, 0.9 -1,1,a-cure-i1,2020-21,0.0,20.5,Foxborough - Charles Taylor Elementary,00990050, 4.4, 3.6, 6.8, 79.5, 0.0, 0.8, 4.8, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2020-21,0.2,19.099999999999994,Foxborough - Foxborough High,00990505, 7.2, 2.5, 7.0, 80.9, 0.5, 0.0, 2.0, 50.5, 49.3, 0.1 -1,1,a-cure-i1,2020-21,3.4,20.099999999999994,Foxborough - John J Ahern,00990405, 5.8, 4.5, 6.0, 79.9, 0.8, 0.0, 3.0, 52.0, 48.0, 0.0 -3.87214611872146,3.87,a-cure-i1,2020-21,5.3,21.900000000000006,Foxborough - Mabelle M Burrell,00990015, 4.0, 6.6, 7.0, 78.1, 0.3, 0.0, 4.0, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,4.2,30.0,Foxborough - Vincent M Igo Elementary,00990020, 8.9, 8.6, 7.6, 70.0, 0.0, 0.3, 4.6, 54.9, 45.1, 0.0 -3.067586206896552,3.07,a-cure-i1,2020-21,13.9,72.5,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 51.5, 9.6, 6.0, 27.5, 0.1, 0.2, 5.1, 48.4, 51.6, 0.0 -6.743801652892563,5,a-cure-i1,2020-21,35.7,84.7,Framingham - Barbieri Elementary,01000035, 3.1, 0.4, 77.0, 15.3, 0.0, 0.0, 4.1, 47.4, 52.4, 0.1 -4.685714285714286,4.69,a-cure-i1,2020-21,20.5,70.0,Framingham - Brophy,01000006, 6.5, 4.0, 55.4, 30.0, 0.2, 0.0, 3.8, 49.6, 50.4, 0.0 -7.0559006211180115,5,a-cure-i1,2020-21,14.2,32.2,Framingham - Cameron Middle School,01000302, 6.4, 2.4, 19.7, 67.8, 0.0, 0.0, 3.7, 50.0, 50.0, 0.0 -3.25,3.25,a-cure-i1,2020-21,7.8,38.4,Framingham - Charlotte A Dunning,01000007, 6.9, 8.3, 19.7, 61.6, 0.0, 0.0, 3.6, 54.5, 45.5, 0.0 -4.369747899159663,4.37,a-cure-i1,2020-21,13.0,47.6,Framingham - Framingham High School,01000515, 6.9, 4.8, 31.9, 52.4, 0.1, 0.1, 3.7, 50.8, 49.2, 0.0 -6.090775988286969,5,a-cure-i1,2020-21,26.0,68.3,Framingham - Fuller Middle,01000305, 8.3, 1.4, 54.9, 31.7, 0.2, 0.0, 3.5, 58.0, 42.0, 0.0 -2.9090909090909096,2.91,a-cure-i1,2020-21,7.800000000000001,42.9,Framingham - Hemenway,01000015, 6.1, 8.7, 19.3, 57.1, 0.2, 0.0, 8.6, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,4.3,46.7,Framingham - Juniper Hill School,01000001, 6.7, 7.7, 29.7, 53.3, 0.0, 0.5, 2.1, 63.1, 36.9, 0.0 -3.2842105263157895,3.28,a-cure-i1,2020-21,7.8,38.0,Framingham - King Elementary School,01000005, 4.1, 10.5, 14.9, 62.0, 0.0, 0.0, 8.5, 52.9, 46.8, 0.3 -1,1,a-cure-i1,2020-21,1.7,50.5,Framingham - Mary E Stapleton Elementary,01000045, 7.0, 6.1, 31.0, 49.5, 0.0, 0.0, 6.4, 55.3, 44.7, 0.0 -1.4177215189873416,1.42,a-cure-i1,2020-21,5.6,63.2,Framingham - Miriam F McCarthy School,01000050, 12.1, 2.3, 40.5, 36.8, 0.0, 0.2, 8.0, 44.2, 55.8, 0.0 -8.091954022988507,5,a-cure-i1,2020-21,22.0,43.5,Framingham - Potter Road,01000039, 8.1, 3.1, 27.0, 56.5, 0.0, 0.2, 5.2, 49.7, 50.3, 0.0 -5.140425531914894,5,a-cure-i1,2020-21,15.1,47.0,Framingham - Walsh Middle,01000310, 4.8, 5.9, 32.8, 53.0, 0.0, 0.0, 3.5, 47.1, 52.9, 0.0 -2.881646655231561,2.88,a-cure-i1,2020-21,10.5,58.3,Framingham - Woodrow Wilson,01000055, 10.0, 0.6, 45.2, 41.7, 0.2, 0.0, 2.3, 54.4, 45.6, 0.0 -7.768115942028987,5,a-cure-i1,2020-21,6.7,13.799999999999997,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 1.8, 2.5, 4.0, 86.2, 0.3, 0.0, 5.3, 44.9, 54.6, 0.5 -1,1,a-cure-i1,2020-21,0.0,13.799999999999997,Franklin - Annie Sullivan Middle School,01010040, 2.3, 4.0, 6.3, 86.2, 0.3, 0.3, 0.6, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.099999999999994,Franklin - Davis Thayer,01010035, 0.5, 2.3, 5.6, 86.9, 0.0, 1.9, 2.8, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.5,Franklin - Franklin Early Childhood Development Center,01010003, 1.4, 9.6, 1.4, 79.5, 0.0, 0.0, 8.2, 68.5, 31.5, 0.0 -1,1,a-cure-i1,2020-21,1.1,15.099999999999994,Franklin - Franklin High,01010505, 1.7, 7.2, 3.7, 84.9, 0.2, 0.2, 2.1, 49.5, 50.3, 0.2 -1,1,a-cure-i1,2020-21,0.0,12.200000000000003,Franklin - Helen Keller Elementary,01010012, 3.4, 4.0, 2.4, 87.8, 0.0, 0.6, 1.8, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.700000000000003,Franklin - Horace Mann,01010405, 1.2, 6.3, 5.3, 84.3, 0.0, 1.0, 1.9, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.200000000000003,Franklin - J F Kennedy Memorial,01010013, 0.6, 5.4, 3.9, 85.8, 0.3, 2.7, 1.2, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.900000000000006,Franklin - Jefferson Elementary,01010010, 2.7, 5.8, 4.9, 84.1, 0.0, 0.9, 1.5, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2020-21,4.1,19.0,Franklin - Oak Street Elementary,01010030, 2.2, 7.6, 4.9, 81.0, 0.0, 0.5, 3.8, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.599999999999994,Franklin - Parmenter,01010032, 5.2, 4.5, 10.0, 77.4, 0.0, 1.0, 1.9, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.5,Franklin - Remington Middle,01010310, 2.9, 7.9, 5.5, 82.5, 0.3, 0.3, 0.8, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.599999999999994,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.1, 0.0, 6.3, 89.4, 0.2, 0.7, 2.3, 60.2, 39.8, 0.0 -1,1,a-cure-i1,2020-21,1.7,5.200000000000003,Freetown-Lakeville - Apponequet Regional High,06650505, 1.2, 0.5, 2.1, 94.8, 0.0, 0.1, 1.2, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.299999999999997,Freetown-Lakeville - Assawompset Elementary School,06650002, 3.1, 0.2, 3.5, 88.7, 0.0, 0.0, 4.4, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.5,Freetown-Lakeville - Freetown Elementary School,06650001, 0.7, 1.2, 4.1, 91.5, 0.0, 0.0, 2.4, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2020-21,4.8,5.599999999999994,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.1, 0.9, 0.9, 94.4, 0.2, 0.0, 1.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.400000000000006,Freetown-Lakeville - George R Austin Intermediate School,06650015, 1.9, 0.7, 2.4, 91.6, 0.0, 0.0, 3.3, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2020-21,3.4,16.299999999999997,Frontier - Frontier Regional,06700505, 2.5, 2.9, 6.6, 83.7, 0.0, 0.2, 4.2, 53.5, 46.5, 0.0 -3.174934725848564,3.17,a-cure-i1,2020-21,7.6,38.3,Gardner - Elm Street School,01030001, 2.0, 1.5, 26.3, 61.7, 0.0, 0.0, 8.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.299999999999997,Gardner - Gardner Academy for Learning and Technology,01030515, 7.0, 3.5, 13.2, 73.7, 0.9, 0.0, 1.8, 52.6, 47.4, 0.0 -4.231404958677686,4.23,a-cure-i1,2020-21,9.6,36.3,Gardner - Gardner High,01030505, 3.4, 2.6, 22.2, 63.7, 0.3, 0.0, 7.8, 52.5, 47.3, 0.1 -2.2974358974358973,2.3,a-cure-i1,2020-21,5.6,39.0,Gardner - Gardner Middle School,01030405, 2.9, 2.2, 23.3, 61.0, 0.2, 0.0, 10.3, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,34.3,Gardner - Waterford Street,01030020, 3.2, 2.7, 24.6, 65.7, 0.0, 0.0, 3.8, 52.2, 47.6, 0.3 -1,1,a-cure-i1,2020-21,0.0,6.900000000000006,Gateway - Chester Elementary,06720059, 0.0, 2.0, 3.9, 93.1, 0.0, 0.0, 1.0, 59.8, 40.2, 0.0 -1,1,a-cure-i1,2020-21,4.6,9.799999999999997,Gateway - Gateway Regional High,06720505, 0.5, 0.5, 6.2, 90.2, 0.5, 0.0, 2.1, 52.6, 47.4, 0.0 -11.254237288135597,5,a-cure-i1,2020-21,8.3,11.799999999999997,Gateway - Gateway Regional Middle School,06720405, 0.8, 0.0, 8.7, 88.2, 0.8, 0.8, 0.8, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.700000000000003,Gateway - Littleville Elementary School,06720143, 0.6, 0.0, 4.5, 93.3, 0.0, 0.3, 1.2, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,4.4,5.599999999999994,Georgetown - Georgetown High School,01050505, 1.2, 1.2, 3.0, 94.4, 0.0, 0.0, 0.3, 50.1, 49.6, 0.3 -1,1,a-cure-i1,2020-21,2.2,5.400000000000006,Georgetown - Georgetown Middle School,01050305, 1.0, 1.0, 1.5, 94.6, 0.0, 1.0, 1.0, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.400000000000006,Georgetown - Penn Brook,01050010, 0.6, 1.1, 2.9, 92.6, 0.0, 0.0, 2.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,5.900000000000006,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 94.1, 0.0, 0.0, 5.9, 76.5, 23.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.799999999999997,Gill-Montague - Gill Elementary,06740005, 1.8, 0.0, 6.3, 89.2, 0.0, 0.0, 2.7, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,2.4,23.299999999999997,Gill-Montague - Great Falls Middle,06740310, 0.5, 0.0, 11.9, 76.7, 0.5, 0.5, 10.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,35.0,Gill-Montague - Hillcrest Elementary School,06740015, 2.5, 0.8, 24.2, 65.0, 0.0, 0.0, 7.5, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.599999999999994,Gill-Montague - Sheffield Elementary School,06740050, 1.4, 0.9, 16.3, 74.4, 0.0, 0.5, 6.5, 54.4, 44.7, 0.9 -1,1,a-cure-i1,2020-21,2.5,23.700000000000003,Gill-Montague - Turners Fall High,06740505, 2.1, 0.5, 14.2, 76.3, 0.5, 0.0, 6.3, 41.6, 57.9, 0.5 -1.5,1.5,a-cure-i1,2020-21,6.0,64.0,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 10.7, 1.4, 46.3, 36.0, 0.8, 0.0, 4.8, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,4.3,29.5,Gloucester - Beeman Memorial,01070010, 2.9, 1.3, 20.8, 70.5, 0.0, 0.0, 4.5, 51.0, 49.0, 0.0 -6.857142857142856,5,a-cure-i1,2020-21,6.3,14.700000000000003,Gloucester - East Gloucester Elementary,01070020, 0.0, 1.6, 8.9, 85.3, 0.0, 0.0, 4.2, 49.2, 50.8, 0.0 -5.416666666666666,5,a-cure-i1,2020-21,6.5,19.200000000000003,Gloucester - Gloucester High,01070505, 1.3, 1.1, 12.0, 80.8, 0.1, 0.7, 3.9, 56.4, 43.3, 0.2 -1,1,a-cure-i1,2020-21,0.0,18.200000000000003,Gloucester - Gloucester PreSchool,01070025, 1.5, 1.5, 10.6, 81.8, 0.0, 0.0, 4.5, 59.1, 40.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.200000000000003,Gloucester - Plum Cove School,01070042, 2.0, 0.5, 3.4, 88.8, 0.0, 0.0, 5.4, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.799999999999997,Gloucester - Ralph B O'Maley Middle,01070305, 0.8, 1.5, 12.4, 83.2, 0.5, 0.0, 1.7, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.4,Gloucester - Veterans Memorial,01070045, 4.7, 2.3, 24.9, 60.6, 0.9, 1.9, 4.7, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.799999999999997,Gloucester - West Parish,01070050, 1.4, 1.4, 8.5, 84.2, 0.0, 0.0, 4.5, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,0.0,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 25.0, 75.0, 0.0 -4.444444444444445,4.44,a-cure-i1,2020-21,5.5,19.799999999999997,Grafton - Grafton High School,01100505, 2.3, 9.6, 4.7, 80.2, 0.2, 0.1, 2.9, 48.2, 51.8, 0.0 -4.884955752212391,4.88,a-cure-i1,2020-21,6.9,22.599999999999994,Grafton - Grafton Middle,01100305, 1.6, 11.1, 6.8, 77.4, 0.2, 0.0, 2.9, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.299999999999997,Grafton - Millbury Street Elementary School,01100200, 1.3, 17.3, 6.7, 71.7, 0.0, 0.0, 3.0, 55.7, 44.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.799999999999997,Grafton - North Grafton Elementary,01100025, 2.8, 11.1, 4.3, 80.2, 0.4, 0.0, 1.2, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.599999999999994,Grafton - North Street Elementary School,01100030, 1.4, 10.8, 5.1, 78.4, 0.2, 0.2, 3.9, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.299999999999997,Grafton - South Grafton Elementary,01100005, 3.5, 16.9, 7.7, 69.7, 0.7, 0.0, 1.4, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.099999999999994,Granby - East Meadow,01110004, 0.0, 1.0, 13.1, 80.9, 0.5, 0.0, 4.4, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,4.1,13.099999999999994,Granby - Granby Jr Sr High School,01110505, 0.3, 1.5, 7.9, 86.9, 0.0, 0.0, 3.4, 58.8, 40.9, 0.3 -1,1,a-cure-i1,2020-21,2.9,24.5,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 3.5, 2.2, 12.3, 75.5, 0.7, 0.0, 5.9, 54.8, 45.1, 0.1 -2.5721040189125297,2.57,a-cure-i1,2020-21,13.6,84.6,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.2, 1.2, 81.9, 15.4, 0.1, 0.1, 0.1, 49.7, 50.3, 0.0 -1.7893030794165314,1.79,a-cure-i1,2020-21,6.8999999999999995,61.7,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 5.2, 17.1, 36.1, 38.3, 0.2, 0.0, 3.0, 51.0, 48.6, 0.4 -2.28009828009828,2.28,a-cure-i1,2020-21,5.8,40.7,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 8.0, 1.1, 25.3, 59.3, 0.4, 0.1, 5.8, 52.2, 47.8, 0.0 -7.154471544715449,5,a-cure-i1,2020-21,5.5,12.299999999999997,Greenfield - Discovery School at Four Corners,01140025, 0.5, 1.4, 8.2, 87.7, 0.5, 0.0, 1.8, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.400000000000006,Greenfield - Federal Street School,01140010, 2.9, 1.9, 18.8, 72.6, 0.0, 0.0, 3.8, 51.4, 48.6, 0.0 -3.6697247706422016,3.67,a-cure-i1,2020-21,7.5,32.7,Greenfield - Greenfield High,01140505, 2.9, 2.1, 20.0, 67.3, 0.4, 0.0, 7.3, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,4.5,32.2,Greenfield - Greenfield Middle,01140305, 3.1, 0.8, 21.7, 67.8, 0.0, 0.0, 6.7, 49.7, 50.3, 0.0 -5.635467980295567,5,a-cure-i1,2020-21,14.3,40.6,Greenfield - Newton School,01140035, 4.9, 0.4, 32.1, 59.4, 0.0, 0.0, 3.1, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.900000000000006,Greenfield - The Academy of Early Learning at North Parish,01140005, 3.7, 0.0, 18.5, 74.1, 0.0, 0.0, 3.7, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.0,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 7.5, 5.2, 18.9, 61.0, 0.1, 0.3, 7.0, 45.3, 53.9, 0.8 -1,1,a-cure-i1,2020-21,0.0,13.5,Groton-Dunstable - Boutwell School,06730001, 0.0, 2.7, 8.1, 86.5, 0.0, 0.0, 2.7, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.099999999999994,Groton-Dunstable - Florence Roche School,06730010, 1.0, 7.0, 3.5, 81.9, 0.4, 0.0, 6.2, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,2.3,12.799999999999997,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.6, 7.6, 2.4, 87.2, 0.3, 0.3, 1.7, 51.6, 48.0, 0.4 -1,1,a-cure-i1,2020-21,2.1,14.299999999999997,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 1.7, 6.4, 3.3, 85.7, 0.1, 0.1, 2.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.0,Groton-Dunstable - Swallow/Union School,06730005, 0.7, 7.1, 6.0, 82.0, 0.4, 0.0, 3.9, 52.7, 47.3, 0.0 -3.9646017699115053,3.96,a-cure-i1,2020-21,5.6,22.599999999999994,Hadley - Hadley Elementary,01170015, 4.0, 3.2, 11.3, 77.4, 0.4, 1.2, 2.4, 52.4, 47.6, 0.0 -6.644067796610171,5,a-cure-i1,2020-21,9.8,23.599999999999994,Hadley - Hopkins Academy,01170505, 2.3, 5.0, 9.3, 76.4, 0.4, 3.5, 3.1, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.900000000000006,Halifax - Halifax Elementary,01180005, 1.6, 0.0, 6.2, 89.1, 0.4, 0.0, 2.8, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.900000000000006,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.4, 2.2, 9.9, 86.1, 0.0, 0.0, 1.3, 55.6, 44.4, 0.0 -9.098039215686272,5,a-cure-i1,2020-21,5.8,10.200000000000003,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.9, 2.3, 89.8, 0.0, 0.0, 3.9, 43.0, 57.0, 0.0 -11.733333333333333,5,a-cure-i1,2020-21,9.899999999999999,13.5,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.8, 4.6, 5.2, 86.5, 0.0, 0.0, 3.1, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2020-21,4.0,10.200000000000003,Hamilton-Wenham - Miles River Middle,06750310, 0.3, 2.5, 3.8, 89.8, 0.0, 0.8, 2.8, 51.9, 48.1, 0.0 -7.365079365079368,5,a-cure-i1,2020-21,5.8,12.599999999999994,Hamilton-Wenham - Winthrop School,06750015, 0.7, 5.1, 4.1, 87.4, 0.0, 0.0, 2.7, 46.6, 53.4, 0.0 -2.4399460188933877,2.44,a-cure-i1,2020-21,11.3,74.1,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 30.9, 2.0, 37.4, 25.9, 0.6, 0.0, 3.1, 49.8, 50.2, 0.0 -5.154562383612663,5,a-cure-i1,2020-21,17.3,53.7,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 16.9, 1.3, 34.1, 46.3, 0.0, 0.0, 1.6, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.900000000000006,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.2, 0.3, 13.3, 82.1, 0.0, 0.0, 2.2, 49.4, 50.6, 0.0 -9.035294117647059,5,a-cure-i1,2020-21,9.6,17.0,Hampden-Wilbraham - Mile Tree Elementary,06800025, 3.1, 1.9, 7.7, 83.0, 0.6, 0.0, 3.7, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,1.5,18.0,Hampden-Wilbraham - Minnechaug Regional High,06800505, 3.0, 3.2, 7.6, 82.0, 0.5, 0.0, 3.6, 47.8, 52.2, 0.0 -5.005586592178769,5,a-cure-i1,2020-21,5.6,17.900000000000006,Hampden-Wilbraham - Soule Road,06800030, 2.5, 2.2, 8.5, 82.1, 0.3, 0.0, 4.4, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.5,Hampden-Wilbraham - Stony Hill School,06800050, 2.7, 2.1, 8.2, 82.5, 0.0, 0.7, 3.8, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.299999999999997,Hampden-Wilbraham - Wilbraham Middle,06800310, 2.6, 2.6, 8.1, 83.7, 0.0, 0.0, 3.1, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,1.6,8.799999999999997,Hampshire - Hampshire Regional High,06830505, 0.3, 1.3, 4.1, 91.2, 0.1, 0.0, 2.9, 42.9, 57.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.0,Hancock - Hancock Elementary,01210005, 1.8, 3.5, 0.0, 93.0, 0.0, 0.0, 1.8, 43.9, 56.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,5.5,Hanover - Cedar Elementary,01220004, 1.3, 2.2, 1.5, 94.5, 0.2, 0.0, 0.2, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,3.4,6.799999999999997,Hanover - Center Elementary,01220005, 0.5, 1.5, 3.6, 93.2, 0.0, 0.0, 1.2, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,5.400000000000006,Hanover - Hanover High,01220505, 1.2, 2.8, 1.3, 94.6, 0.0, 0.0, 0.1, 53.0, 47.0, 0.0 -11.544303797468345,5,a-cure-i1,2020-21,5.699999999999999,7.900000000000006,Hanover - Hanover Middle,01220305, 1.6, 2.2, 3.1, 92.1, 0.0, 0.0, 1.0, 49.9, 50.1, 0.0 -4.017937219730943,4.02,a-cure-i1,2020-21,5.6000000000000005,22.299999999999997,Harvard - Bromfield,01250505, 2.0, 11.6, 4.4, 77.7, 0.0, 0.0, 4.2, 48.6, 51.3, 0.2 -3.555555555555555,3.56,a-cure-i1,2020-21,5.6,25.200000000000003,Harvard - Hildreth Elementary School,01250005, 2.9, 12.6, 4.4, 74.8, 0.0, 0.0, 5.3, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.299999999999997,Hatfield - Hatfield Elementary,01270005, 0.5, 0.9, 5.1, 91.7, 0.0, 0.0, 1.9, 50.9, 48.6, 0.5 -1,1,a-cure-i1,2020-21,0.0,7.700000000000003,Hatfield - Smith Academy,01270505, 1.1, 1.1, 3.3, 92.3, 0.0, 0.0, 2.2, 52.5, 47.0, 0.6 -1,1,a-cure-i1,2020-21,4.0,53.9,Haverhill - Bradford Elementary,01280008, 4.1, 1.6, 46.3, 46.1, 0.0, 0.0, 2.0, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,2.4,34.5,Haverhill - Caleb Dustin Hunking School,01280030, 4.9, 2.1, 24.8, 65.5, 0.1, 0.0, 2.5, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,58.1,Haverhill - Consentino Middle School,01280100, 5.2, 2.8, 47.1, 41.9, 0.1, 0.0, 2.9, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,73.9,Haverhill - Crowell,01280515, 4.3, 0.0, 69.6, 26.1, 0.0, 0.0, 0.0, 78.3, 21.7, 0.0 -1,1,a-cure-i1,2020-21,3.7,58.2,Haverhill - Dr Paul Nettle,01280050, 4.6, 2.5, 48.1, 41.8, 0.2, 0.2, 2.7, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,54.5,Haverhill - Golden Hill,01280026, 4.8, 2.3, 44.7, 45.5, 0.2, 0.0, 2.5, 51.8, 48.0, 0.2 -3.5805946791862286,3.58,a-cure-i1,2020-21,14.3,63.9,Haverhill - Greenleaf Academy,01280033, 2.8, 0.0, 58.3, 36.1, 0.0, 0.0, 2.8, 75.0, 25.0, 0.0 -4.839729119638826,4.84,a-cure-i1,2020-21,13.399999999999999,44.3,Haverhill - Haverhill High,01280505, 5.5, 1.5, 35.7, 55.7, 0.2, 0.2, 1.1, 52.1, 47.9, 0.1 -1,1,a-cure-i1,2020-21,0.0,41.6,Haverhill - John G Whittier,01280085, 3.9, 1.0, 34.8, 58.4, 0.6, 0.2, 1.2, 48.2, 51.6, 0.2 -2.488888888888889,2.49,a-cure-i1,2020-21,7.7,49.5,Haverhill - Moody,01280045, 11.5, 1.1, 36.3, 50.5, 0.0, 0.0, 0.5, 65.9, 34.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,58.6,Haverhill - Pentucket Lake Elementary,01280054, 7.1, 1.1, 46.6, 41.4, 0.6, 0.2, 3.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,4.5,54.8,Haverhill - Silver Hill Elementary School,01280067, 6.5, 3.0, 41.5, 45.2, 0.4, 0.0, 3.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,57.1,Haverhill - TEACH,01280073, 10.7, 0.0, 39.3, 42.9, 3.6, 0.0, 3.6, 67.9, 32.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,62.3,Haverhill - Tilton,01280075, 5.1, 1.6, 52.7, 37.7, 0.3, 0.0, 2.7, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,67.0,Haverhill - Tilton Upper Middle School,01280105, 4.4, 0.0, 62.6, 33.0, 0.0, 0.0, 0.0, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,35.8,Haverhill - Walnut Square,01280080, 3.3, 0.0, 30.9, 64.2, 0.0, 0.0, 1.6, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.900000000000006,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 6.8, 88.1, 0.8, 0.0, 4.2, 42.4, 57.6, 0.0 -15.030303030303031,5,a-cure-i1,2020-21,93.0,99.0,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 77.2, 0.0, 20.7, 1.0, 0.0, 0.5, 0.5, 49.7, 50.3, 0.0 -2.1857923497267757,2.19,a-cure-i1,2020-21,5.0,36.6,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 5.0, 0.3, 27.4, 63.4, 0.0, 0.0, 4.0, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2020-21,2.5,20.200000000000003,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.9, 2.8, 3.2, 79.8, 0.0, 0.0, 13.3, 50.9, 48.6, 0.5 -1,1,a-cure-i1,2020-21,3.5,9.799999999999997,Hingham - East Elementary School,01310005, 1.8, 1.3, 3.5, 90.2, 0.0, 0.0, 3.3, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,1.0,10.799999999999997,Hingham - Hingham High,01310505, 1.6, 2.7, 3.5, 89.2, 0.0, 0.0, 3.0, 51.6, 48.4, 0.1 -8.325203252032523,5,a-cure-i1,2020-21,6.4,12.299999999999997,Hingham - Hingham Middle School,01310410, 2.2, 3.4, 3.8, 87.7, 0.1, 0.0, 2.9, 50.8, 49.1, 0.1 -1,1,a-cure-i1,2020-21,0.0,12.900000000000006,Hingham - Plymouth River,01310019, 3.6, 2.5, 4.4, 87.1, 0.3, 0.0, 2.2, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2020-21,4.1,11.5,Hingham - South Elementary,01310020, 1.3, 4.6, 2.1, 88.5, 0.0, 0.0, 3.6, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.700000000000003,Hingham - Wm L Foster Elementary,01310010, 1.6, 1.8, 5.6, 84.3, 0.0, 0.0, 6.7, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,52.1,Holbrook - Holbrook Middle High School,01330505, 23.4, 6.3, 14.6, 47.9, 0.3, 0.0, 7.5, 51.1, 48.7, 0.2 -1,1,a-cure-i1,2020-21,2.5,47.4,Holbrook - John F Kennedy,01330018, 19.7, 5.0, 14.9, 52.6, 0.3, 0.0, 7.5, 54.2, 45.8, 0.0 -7.8709677419354795,5,a-cure-i1,2020-21,6.1,12.400000000000006,Holland - Holland Elementary,01350005, 0.5, 1.5, 7.7, 87.6, 0.5, 0.0, 2.1, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2020-21,1.7,17.599999999999994,Holliston - Holliston High,01360505, 1.1, 8.6, 5.4, 82.4, 0.6, 0.0, 1.8, 50.2, 49.8, 0.0 -5.358139534883721,5,a-cure-i1,2020-21,7.2,21.5,Holliston - Miller School,01360007, 0.9, 10.1, 5.1, 78.5, 0.8, 0.2, 4.5, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,1.6,18.400000000000006,Holliston - Placentino Elementary,01360010, 1.8, 11.0, 3.2, 81.6, 0.0, 0.5, 1.8, 54.8, 45.0, 0.2 -1,1,a-cure-i1,2020-21,1.7,18.900000000000006,Holliston - Robert H. Adams Middle School,01360305, 0.9, 8.4, 6.2, 81.1, 0.0, 0.1, 3.2, 50.5, 49.5, 0.0 -5.835051546391753,5,a-cure-i1,2020-21,28.3,77.6,Holyoke - E N White Elementary,01370045, 3.3, 0.7, 71.1, 22.4, 0.0, 0.0, 2.6, 54.3, 45.7, 0.0 -2.47787610619469,2.48,a-cure-i1,2020-21,14.0,90.4,Holyoke - H.B. Lawrence School,01370070, 7.9, 0.6, 79.2, 9.6, 0.0, 0.0, 2.8, 52.2, 47.8, 0.0 -5.244970414201183,5,a-cure-i1,2020-21,27.7,84.5,Holyoke - Holyoke High,01370505, 3.1, 0.3, 80.0, 15.5, 0.1, 0.1, 0.9, 52.4, 47.4, 0.1 -2.554926387315968,2.55,a-cure-i1,2020-21,14.1,88.3,Holyoke - Holyoke STEM Academy,01370320, 3.6, 0.8, 82.7, 11.7, 0.0, 0.0, 1.2, 54.4, 45.6, 0.0 -9.642384105960264,5,a-cure-i1,2020-21,45.5,75.5,Holyoke - Joseph Metcalf School,01370003, 2.0, 0.0, 71.1, 24.5, 0.0, 0.0, 2.3, 45.3, 54.7, 0.0 -2.3697650663942795,2.37,a-cure-i1,2020-21,14.5,97.9,Holyoke - Kelly Elementary,01370040, 3.0, 0.0, 94.6, 2.1, 0.0, 0.0, 0.3, 53.6, 46.4, 0.0 -3.394475138121547,3.39,a-cure-i1,2020-21,19.2,90.5,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.3, 1.7, 86.3, 9.5, 0.0, 0.0, 1.1, 56.4, 43.6, 0.0 -2.1059001512859306,2.11,a-cure-i1,2020-21,8.7,66.1,Holyoke - Lt Elmer J McMahon Elementary,01370015, 2.5, 2.5, 59.0, 33.9, 0.0, 0.0, 2.2, 52.1, 47.9, 0.0 -2.7029478458049883,2.7,a-cure-i1,2020-21,14.899999999999999,88.2,Holyoke - Maurice A Donahue Elementary,01370060, 4.0, 0.5, 82.3, 11.8, 0.0, 0.2, 1.2, 54.8, 45.2, 0.0 -2.175077239958805,2.18,a-cure-i1,2020-21,13.2,97.1,Holyoke - Morgan Full Service Community School,01370025, 5.1, 0.0, 92.0, 2.9, 0.0, 0.0, 0.0, 49.6, 50.4, 0.0 -8.392638036809817,5,a-cure-i1,2020-21,51.300000000000004,97.8,Holyoke - Veritas Prep Holyoke,01370075, 4.7, 0.9, 91.3, 2.2, 0.0, 0.0, 0.9, 55.3, 44.7, 0.0 -6.036131774707758,5,a-cure-i1,2020-21,35.5,94.1,Holyoke - William R. Peck School,01370030, 2.7, 0.0, 89.8, 5.9, 0.0, 0.0, 1.6, 54.9, 45.1, 0.0 -3.1235721703011423,3.12,a-cure-i1,2020-21,18.8,96.3,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.7, 1.0, 92.7, 3.7, 0.0, 0.0, 1.9, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.799999999999997,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 2.1, 1.2, 4.2, 89.2, 0.0, 0.0, 3.3, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.5,Hoosac Valley Regional - Hoosac Valley High School,06030505, 4.7, 0.3, 2.7, 90.5, 0.6, 0.0, 1.2, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.700000000000003,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 3.3, 0.3, 2.5, 91.3, 0.0, 0.0, 2.7, 49.2, 50.8, 0.0 -5.300613496932517,5,a-cure-i1,2020-21,5.4,16.299999999999997,Hopedale - Hopedale Jr Sr High,01380505, 1.4, 2.7, 9.3, 83.7, 0.4, 0.4, 2.1, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.0,Hopedale - Memorial,01380010, 0.9, 1.1, 10.5, 82.0, 0.0, 0.0, 5.4, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.200000000000003,Hopedale - Park Street School,01380003, 2.5, 1.3, 7.5, 73.8, 0.0, 0.0, 15.0, 53.8, 46.3, 0.0 -1,1,a-cure-i1,2020-21,4.5,42.6,Hopkinton - Elmwood,01390010, 0.3, 30.5, 5.3, 57.4, 0.2, 0.0, 6.2, 50.5, 49.5, 0.0 -3.8843930635838158,3.88,a-cure-i1,2020-21,8.4,34.599999999999994,Hopkinton - Hopkins Elementary School,01390015, 0.3, 27.4, 3.3, 65.4, 0.3, 0.0, 3.3, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,4.5,23.5,Hopkinton - Hopkinton High,01390505, 1.4, 15.5, 3.5, 76.5, 0.4, 0.0, 2.7, 48.6, 51.3, 0.1 -2.6666666666666665,2.67,a-cure-i1,2020-21,5.5,33.0,Hopkinton - Hopkinton Middle School,01390305, 0.8, 23.0, 4.2, 67.0, 0.3, 0.0, 4.7, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,38.7,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 25.3, 6.7, 61.3, 0.0, 0.0, 6.7, 64.0, 36.0, 0.0 -2.802919708029197,2.8,a-cure-i1,2020-21,7.2,41.1,Hopkinton - Marathon Elementary School,01390005, 0.4, 30.7, 4.4, 58.9, 0.4, 0.0, 5.3, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.200000000000003,Hudson - C A Farley,01410030, 1.5, 1.8, 20.9, 72.8, 0.0, 0.0, 3.0, 51.1, 48.9, 0.0 -5.953488372093023,5,a-cure-i1,2020-21,8.0,21.5,Hudson - David J. Quinn Middle School,01410410, 1.9, 1.9, 14.9, 78.5, 0.0, 0.0, 2.8, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.900000000000006,Hudson - Forest Avenue Elementary,01410015, 2.8, 2.2, 14.6, 76.1, 0.6, 0.0, 3.7, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,4.800000000000001,20.0,Hudson - Hudson High,01410505, 2.3, 1.4, 13.3, 80.0, 0.2, 0.1, 2.6, 46.3, 53.6, 0.1 -4.431924882629109,4.43,a-cure-i1,2020-21,5.9,21.299999999999997,Hudson - Mulready Elementary,01410007, 2.0, 2.0, 15.0, 78.7, 0.0, 0.0, 2.4, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.200000000000003,Hull - Hull High,01420505, 1.5, 1.9, 3.8, 90.8, 0.0, 0.0, 1.9, 56.5, 43.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.599999999999994,Hull - Lillian M Jacobs,01420015, 2.3, 2.3, 3.4, 88.4, 0.3, 0.0, 3.4, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.900000000000006,Hull - Memorial Middle,01420305, 1.1, 0.5, 3.2, 93.1, 0.0, 0.0, 2.1, 50.5, 48.9, 0.5 -5.560975609756097,5,a-cure-i1,2020-21,11.399999999999999,32.8,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 8.2, 8.7, 11.0, 67.2, 0.1, 0.0, 4.7, 47.1, 52.4, 0.5 -1,1,a-cure-i1,2020-21,0.0,12.5,Ipswich - Ipswich High,01440505, 1.3, 1.5, 5.4, 87.5, 0.2, 0.0, 4.1, 48.6, 51.0, 0.4 -1,1,a-cure-i1,2020-21,3.5,14.299999999999997,Ipswich - Ipswich Middle School,01440305, 1.9, 2.2, 7.0, 85.7, 0.0, 0.0, 3.2, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.400000000000006,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.3, 6.0, 91.6, 0.0, 0.0, 2.1, 49.1, 50.9, 0.0 -5.587301587301585,5,a-cure-i1,2020-21,6.6,18.900000000000006,Ipswich - Winthrop,01440015, 1.1, 1.1, 10.7, 81.1, 0.0, 0.0, 5.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,3.6,14.5,King Philip - King Philip Middle School,06900510, 1.8, 2.5, 6.3, 85.5, 0.3, 0.0, 3.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,2.6,10.599999999999994,King Philip - King Philip Regional High,06900505, 2.4, 2.8, 3.7, 89.4, 0.2, 0.0, 1.6, 50.5, 49.4, 0.1 -1,1,a-cure-i1,2020-21,0.0,4.200000000000003,Kingston - Kingston Elementary,01450005, 0.5, 0.9, 1.6, 95.8, 0.0, 0.0, 1.2, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,4.700000000000003,Kingston - Kingston Intermediate,01450020, 0.7, 0.3, 2.7, 95.3, 0.5, 0.0, 0.5, 53.3, 46.7, 0.0 -10.629145728643214,5,a-cure-i1,2020-21,66.1,99.5,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 64.6, 0.0, 33.6, 0.5, 0.3, 0.0, 1.0, 51.9, 48.1, 0.0 -7.26963906581741,5,a-cure-i1,2020-21,42.800000000000004,94.2,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 18.3, 3.3, 69.8, 5.8, 0.2, 0.1, 2.5, 49.6, 50.4, 0.0 -0.860392967942089,1,a-cure-i1,2020-21,5.2,96.7,Lawrence - Alexander B Bruce,01490015, 0.9, 1.7, 93.9, 3.3, 0.0, 0.0, 0.2, 48.7, 51.1, 0.2 -2.327568667344863,2.33,a-cure-i1,2020-21,14.3,98.3,Lawrence - Arlington Middle School,01490017, 0.9, 0.0, 97.1, 1.7, 0.2, 0.0, 0.2, 52.7, 46.9, 0.3 -1,1,a-cure-i1,2020-21,1.7,98.0,Lawrence - Community Day Arlington,01490009, 0.7, 0.0, 97.2, 2.0, 0.0, 0.0, 0.2, 50.5, 48.8, 0.7 -1.8276220145379025,1.83,a-cure-i1,2020-21,11.0,96.3,Lawrence - Edward F. Parthum,01490053, 2.3, 0.0, 93.8, 3.7, 0.0, 0.0, 0.2, 52.5, 47.0, 0.5 -1,1,a-cure-i1,2020-21,2.4,95.6,Lawrence - Emily G Wetherbee,01490080, 0.9, 0.9, 93.1, 4.4, 0.0, 0.0, 0.7, 48.5, 51.3, 0.2 -1,1,a-cure-i1,2020-21,0.0,97.0,Lawrence - Francis M Leahy,01490040, 1.2, 0.0, 95.8, 3.0, 0.0, 0.0, 0.0, 50.9, 48.8, 0.2 -2.657980456026059,2.66,a-cure-i1,2020-21,15.3,92.1,Lawrence - Frost Middle School,01490525, 1.8, 3.0, 85.2, 7.9, 0.0, 0.0, 2.0, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,3.4,98.5,Lawrence - Gerard A. Guilmette,01490022, 1.5, 0.9, 95.9, 1.5, 0.0, 0.0, 0.2, 51.5, 48.5, 0.0 -2.1344195519348266,2.13,a-cure-i1,2020-21,13.1,98.2,Lawrence - Guilmette Middle School,01490025, 1.6, 0.6, 95.7, 1.8, 0.0, 0.0, 0.2, 54.7, 45.3, 0.0 -4.282157676348547,4.28,a-cure-i1,2020-21,25.799999999999997,96.4,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 95.2, 3.6, 0.6, 0.0, 0.6, 62.9, 36.5, 0.6 -4.18848167539267,4.19,a-cure-i1,2020-21,25.0,95.5,Lawrence - James F Hennessey,01490020, 1.4, 1.0, 93.1, 4.5, 0.0, 0.0, 0.0, 50.9, 48.5, 0.7 -2.1299254526091587,2.13,a-cure-i1,2020-21,12.5,93.9,Lawrence - John Breen School,01490003, 3.0, 1.3, 89.1, 6.1, 0.0, 0.0, 0.4, 50.4, 49.6, 0.0 -0.9124236252545824,1,a-cure-i1,2020-21,5.6,98.2,Lawrence - John K Tarbox,01490075, 0.7, 0.0, 97.2, 1.8, 0.0, 0.0, 0.4, 58.2, 41.8, 0.0 -4.0983606557377055,4.1,a-cure-i1,2020-21,25.0,97.6,Lawrence - Lawlor Early Childhood Center,01490002, 1.6, 0.0, 95.3, 2.4, 0.0, 0.0, 0.8, 49.6, 50.4, 0.0 -2.4989858012170387,2.5,a-cure-i1,2020-21,15.4,98.6,Lawrence - Lawrence Family Public Academy,01490011, 2.0, 2.0, 93.9, 1.4, 0.0, 0.0, 0.7, 53.7, 46.3, 0.0 -4.4799999999999995,4.48,a-cure-i1,2020-21,27.299999999999997,97.5,Lawrence - Lawrence High School,01490515, 1.1, 1.7, 94.3, 2.5, 0.1, 0.0, 0.2, 52.5, 47.3, 0.3 -1,1,a-cure-i1,2020-21,0.0,98.3,Lawrence - Oliver Partnership School,01490048, 0.4, 0.4, 97.4, 1.7, 0.0, 0.0, 0.0, 50.6, 49.4, 0.0 -1.625130890052356,1.63,a-cure-i1,2020-21,9.7,95.5,Lawrence - Parthum Middle School,01490027, 0.5, 0.8, 93.9, 4.5, 0.0, 0.0, 0.3, 48.4, 51.2, 0.3 -3.168,3.17,a-cure-i1,2020-21,19.8,100.0,Lawrence - RISE Academy,01490615, 4.8, 0.0, 95.2, 0.0, 0.0, 0.0, 0.0, 81.0, 14.3, 4.8 -1.752953813104189,1.75,a-cure-i1,2020-21,10.2,93.1,Lawrence - Robert Frost,01490018, 2.4, 4.1, 86.2, 6.9, 0.0, 0.0, 0.4, 49.2, 50.5, 0.4 -1.4933333333333332,1.49,a-cure-i1,2020-21,9.1,97.5,Lawrence - Rollins Early Childhood Center,01490001, 1.9, 0.6, 94.3, 2.5, 0.0, 0.0, 0.6, 61.8, 38.2, 0.0 -3.5320088300220753,3.53,a-cure-i1,2020-21,20.0,90.6,Lawrence - School for Exceptional Studies,01490537, 2.4, 0.0, 87.4, 9.4, 0.0, 0.0, 0.8, 85.0, 15.0, 0.0 -0.9265770423991726,1,a-cure-i1,2020-21,5.6,96.7,Lawrence - South Lawrence East Elementary School,01490004, 1.7, 2.3, 92.5, 3.3, 0.0, 0.0, 0.3, 52.4, 47.4, 0.1 -5.128630705394191,5,a-cure-i1,2020-21,30.900000000000002,96.4,Lawrence - Spark Academy,01490085, 0.6, 1.1, 94.1, 3.6, 0.0, 0.0, 0.6, 56.9, 43.1, 0.0 -5.497942386831276,5,a-cure-i1,2020-21,33.4,97.2,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 96.9, 2.8, 0.0, 0.0, 0.3, 51.6, 48.1, 0.3 -4.409321175278622,4.41,a-cure-i1,2020-21,27.2,98.7,Lawrence - UP Academy Oliver Middle School,01490049, 1.0, 0.3, 97.4, 1.3, 0.0, 0.0, 0.0, 52.4, 47.0, 0.6 -2.2926337033299697,2.29,a-cure-i1,2020-21,14.2,99.1,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.4, 0.1, 98.6, 0.9, 0.0, 0.0, 0.0, 44.0, 56.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,93.8,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 46.5, 0.2, 45.3, 6.2, 0.0, 0.0, 2.0, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,2.7,16.299999999999997,Lee - Lee Elementary,01500025, 0.9, 2.3, 9.1, 83.7, 0.3, 0.0, 3.7, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,2.7,15.900000000000006,Lee - Lee Middle/High School,01500505, 0.9, 3.3, 8.1, 84.1, 0.3, 0.0, 3.3, 47.7, 52.0, 0.3 -1,1,a-cure-i1,2020-21,0.0,25.200000000000003,Leicester - Leicester Elementary,01510005, 5.9, 3.2, 13.0, 74.8, 0.0, 0.0, 3.2, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,3.9,22.700000000000003,Leicester - Leicester High,01510505, 4.5, 3.9, 11.6, 77.3, 0.2, 0.0, 2.5, 50.7, 48.9, 0.5 -1,1,a-cure-i1,2020-21,0.0,30.299999999999997,Leicester - Leicester Integrated Preschool,01510001, 3.0, 0.0, 21.2, 69.7, 0.0, 0.0, 6.1, 42.4, 57.6, 0.0 -1,1,a-cure-i1,2020-21,3.2,25.200000000000003,Leicester - Leicester Middle,01510015, 5.4, 2.8, 13.4, 74.8, 0.0, 0.0, 3.5, 59.1, 40.9, 0.0 -1,1,a-cure-i1,2020-21,2.3,18.400000000000006,Lenox - Lenox Memorial High,01520505, 0.4, 5.2, 10.1, 81.6, 0.0, 0.0, 2.7, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.0,Lenox - Morris,01520015, 0.3, 4.6, 8.5, 78.0, 0.0, 0.3, 8.2, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,64.7,Leominster - Bennett,01530003, 11.8, 0.0, 49.0, 35.3, 0.0, 0.0, 3.9, 60.8, 39.2, 0.0 -1.529636711281071,1.53,a-cure-i1,2020-21,5.0,52.3,Leominster - Center For Technical Education Innovation,01530605, 7.7, 3.4, 38.4, 47.7, 0.0, 0.1, 2.7, 63.4, 36.6, 0.0 -1,1,a-cure-i1,2020-21,3.4,51.1,Leominster - Fall Brook,01530007, 8.6, 2.7, 33.7, 48.9, 0.0, 0.0, 6.1, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,65.7,Leominster - Frances Drake School,01530010, 8.4, 4.4, 47.7, 34.3, 0.0, 0.0, 5.2, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,3.6,55.8,Leominster - Johnny Appleseed,01530025, 11.3, 3.7, 35.7, 44.2, 0.2, 0.0, 5.0, 48.8, 51.2, 0.0 -7.419689119170983,5,a-cure-i1,2020-21,17.9,38.6,Leominster - Leominster Center for Excellence,01530515, 4.5, 0.0, 31.8, 61.4, 0.0, 0.0, 2.3, 52.3, 45.5, 2.3 -1.7120622568093387,1.71,a-cure-i1,2020-21,5.5,51.4,Leominster - Leominster High School,01530505, 9.0, 4.2, 34.9, 48.6, 0.1, 0.0, 3.3, 43.2, 56.6, 0.2 -1,1,a-cure-i1,2020-21,0.0,66.7,Leominster - Lincoln School,01530005, 12.5, 0.0, 45.8, 33.3, 0.0, 0.0, 8.3, 58.3, 41.7, 0.0 -1,1,a-cure-i1,2020-21,3.1,59.3,Leominster - Northwest,01530030, 6.7, 2.7, 45.3, 40.7, 0.0, 0.0, 4.7, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,65.5,Leominster - Priest Street,01530040, 6.0, 4.8, 46.4, 34.5, 0.0, 0.0, 8.3, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,51.2,Leominster - Samoset School,01530045, 5.5, 3.1, 38.4, 48.8, 0.2, 0.2, 3.7, 49.0, 50.2, 0.8 -1,1,a-cure-i1,2020-21,2.3,55.0,Leominster - Sky View Middle School,01530320, 9.4, 3.6, 37.1, 45.0, 0.1, 0.0, 4.8, 48.8, 51.2, 0.0 -13.51456310679612,5,a-cure-i1,2020-21,8.7,10.299999999999997,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 2.6, 89.7, 0.0, 0.0, 7.8, 56.9, 43.1, 0.0 -8.703770197486534,5,a-cure-i1,2020-21,30.3,55.7,Lexington - Bowman,01550008, 3.8, 37.0, 5.5, 44.3, 0.0, 0.0, 9.4, 48.5, 51.5, 0.0 -2.0253164556962022,2.03,a-cure-i1,2020-21,8.0,63.2,Lexington - Bridge,01550006, 6.0, 43.0, 7.0, 36.8, 0.3, 0.0, 7.0, 48.8, 51.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,48.6,Lexington - Fiske,01550015, 2.3, 32.3, 4.9, 51.4, 0.0, 0.0, 9.0, 56.8, 43.2, 0.0 -3.865771812080537,3.87,a-cure-i1,2020-21,14.4,59.6,Lexington - Harrington,01550030, 6.5, 40.8, 5.2, 40.4, 0.0, 0.0, 7.2, 47.5, 52.5, 0.0 -4.201438848920863,4.2,a-cure-i1,2020-21,14.6,55.6,Lexington - Jonas Clarke Middle,01550305, 4.0, 42.3, 4.1, 44.4, 0.2, 0.1, 4.9, 52.8, 47.1, 0.1 -1,1,a-cure-i1,2020-21,0.2,65.3,Lexington - Joseph Estabrook,01550010, 3.4, 46.2, 6.3, 34.7, 0.0, 0.0, 9.4, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,52.6,Lexington - Lexington Children's Place,01550001, 3.5, 38.6, 1.8, 47.4, 1.8, 0.0, 7.0, 63.2, 36.8, 0.0 -2.8725314183123873,2.87,a-cure-i1,2020-21,9.999999999999998,55.7,Lexington - Lexington High,01550505, 3.8, 41.0, 4.5, 44.3, 0.1, 0.0, 6.3, 49.5, 50.4, 0.1 -6.155763239875389,5,a-cure-i1,2020-21,24.7,64.2,Lexington - Maria Hastings,01550035, 1.9, 48.8, 4.8, 35.8, 0.0, 0.0, 8.7, 53.3, 46.7, 0.0 -3.8367346938775517,3.84,a-cure-i1,2020-21,14.100000000000001,58.8,Lexington - Wm Diamond Middle,01550310, 3.7, 43.0, 3.6, 41.2, 0.0, 0.0, 8.4, 49.8, 50.2, 0.0 -4.678172588832487,4.68,a-cure-i1,2020-21,28.799999999999997,98.5,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 15.0, 0.8, 80.4, 1.5, 0.8, 0.0, 1.5, 49.6, 50.4, 0.0 -2.204724409448819,2.2,a-cure-i1,2020-21,7.0,50.8,Lincoln - Hanscom Middle,01570305, 9.7, 1.7, 29.7, 49.2, 0.0, 0.8, 8.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,1.2,47.6,Lincoln - Hanscom Primary,01570006, 6.1, 2.0, 24.3, 52.4, 0.3, 2.0, 12.8, 49.7, 50.3, 0.0 -3.0992736077481844,3.1,a-cure-i1,2020-21,8.0,41.3,Lincoln - Lincoln School,01570025, 11.2, 8.1, 9.5, 58.7, 0.0, 0.0, 12.4, 49.2, 50.8, 0.0 -4.491228070175439,4.49,a-cure-i1,2020-21,6.4,22.799999999999997,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 5.4, 4.2, 5.3, 77.2, 0.1, 0.1, 7.8, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,3.3,17.5,Littleton - Littleton High School,01580505, 1.1, 8.7, 3.0, 82.5, 0.5, 0.0, 4.1, 45.5, 54.3, 0.2 -1,1,a-cure-i1,2020-21,0.0,20.400000000000006,Littleton - Littleton Middle School,01580305, 1.5, 12.7, 3.8, 79.6, 0.3, 0.3, 1.8, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.200000000000003,Littleton - Russell St Elementary,01580015, 0.5, 11.8, 2.9, 82.8, 0.0, 0.0, 1.9, 46.9, 53.1, 0.0 -5.05699481865285,5,a-cure-i1,2020-21,6.1,19.299999999999997,Littleton - Shaker Lane Elementary,01580005, 0.6, 15.3, 2.0, 80.7, 0.0, 0.6, 0.9, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.299999999999997,Longmeadow - Blueberry Hill,01590005, 1.5, 18.1, 4.1, 69.7, 0.0, 0.3, 6.4, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,4.2,18.0,Longmeadow - Center,01590010, 2.2, 3.7, 7.5, 82.0, 0.0, 0.0, 4.5, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.0,Longmeadow - Glenbrook Middle,01590017, 4.2, 13.5, 6.0, 73.0, 0.0, 0.3, 3.0, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,2.9,21.299999999999997,Longmeadow - Longmeadow High,01590505, 2.8, 9.8, 5.7, 78.7, 0.1, 0.0, 3.0, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,4.5,20.900000000000006,Longmeadow - Williams Middle,01590305, 0.3, 9.6, 4.8, 79.1, 0.0, 0.6, 5.7, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.200000000000003,Longmeadow - Wolf Swamp Road,01590025, 4.1, 7.7, 6.9, 75.8, 0.0, 0.0, 5.4, 52.4, 47.6, 0.0 -1.334836527621195,1.33,a-cure-i1,2020-21,7.4,88.7,Lowell - Abraham Lincoln,01600020, 3.7, 47.8, 33.0, 11.3, 0.0, 0.2, 3.9, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,3.8,78.4,Lowell - B.F. Butler Middle School,01600310, 6.9, 31.5, 34.5, 21.6, 0.0, 0.0, 5.5, 49.8, 50.2, 0.0 -1.101516919486581,1.1,a-cure-i1,2020-21,5.9,85.7,Lowell - Bartlett Community Partnership,01600090, 8.9, 39.7, 33.5, 14.3, 0.0, 0.0, 3.6, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,74.3,Lowell - Cardinal O'Connell Early Learning Center,01600001, 5.7, 32.9, 32.9, 25.7, 0.0, 0.0, 2.9, 65.7, 34.3, 0.0 -2.2195416164053072,2.22,a-cure-i1,2020-21,11.5,82.9,Lowell - Charles W Morey,01600030, 5.6, 59.9, 12.3, 17.1, 0.0, 0.0, 5.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,84.4,Lowell - Charlotte M Murkland Elementary,01600080, 6.3, 35.0, 39.2, 15.6, 0.2, 0.0, 3.6, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,2.7,71.1,Lowell - Dr An Wang School,01600345, 9.0, 17.5, 39.4, 28.9, 0.0, 0.0, 5.2, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,75.0,Lowell - Dr Gertrude Bailey,01600002, 4.9, 42.9, 22.1, 25.0, 0.0, 0.0, 5.1, 52.7, 47.3, 0.0 -2.1411764705882352,2.14,a-cure-i1,2020-21,9.1,68.0,Lowell - Dr. Janice Adie Day School,01600605, 18.0, 18.0, 26.0, 32.0, 0.0, 0.0, 6.0, 80.0, 20.0, 0.0 -1,1,a-cure-i1,2020-21,3.4,74.9,Lowell - Greenhalge,01600015, 10.8, 11.1, 48.3, 25.1, 0.0, 0.0, 4.7, 52.6, 47.4, 0.0 -5.152909336941813,5,a-cure-i1,2020-21,23.8,73.9,Lowell - Henry J Robinson Middle,01600330, 10.2, 12.8, 48.9, 26.1, 0.0, 0.0, 2.0, 50.0, 50.0, 0.0 -1.9893048128342248,1.99,a-cure-i1,2020-21,9.3,74.8,Lowell - James S Daley Middle School,01600315, 5.1, 47.3, 17.9, 25.2, 0.0, 0.0, 4.5, 56.2, 43.8, 0.0 -2.018018018018018,2.02,a-cure-i1,2020-21,8.399999999999999,66.6,Lowell - James Sullivan Middle School,01600340, 5.3, 12.9, 43.1, 33.4, 0.0, 0.0, 5.3, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,79.0,Lowell - John J Shaughnessy,01600050, 5.1, 30.8, 39.6, 21.0, 0.0, 0.0, 3.5, 52.4, 47.6, 0.0 -2.224021592442645,2.22,a-cure-i1,2020-21,10.3,74.1,Lowell - Joseph McAvinnue,01600010, 7.5, 16.4, 45.8, 25.9, 0.0, 0.0, 4.4, 53.0, 47.0, 0.0 -1.974857142857143,1.97,a-cure-i1,2020-21,10.8,87.5,Lowell - Kathryn P. Stoklosa Middle School,01600360, 5.9, 44.8, 33.1, 12.5, 0.0, 0.0, 3.7, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,73.9,Lowell - Laura Lee Therapeutic Day School,01600085, 4.3, 0.0, 60.9, 26.1, 0.0, 0.0, 8.7, 91.3, 8.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,61.1,Lowell - Leblanc Therapeutic Day School,01600320, 2.8, 2.8, 52.8, 38.9, 0.0, 0.0, 2.8, 55.6, 44.4, 0.0 -3.357237715803453,3.36,a-cure-i1,2020-21,15.8,75.3,Lowell - Lowell High,01600505, 11.1, 29.9, 30.6, 24.7, 0.0, 0.0, 3.7, 51.6, 48.4, 0.0 -4.148148148148148,4.15,a-cure-i1,2020-21,17.5,67.5,Lowell - Moody Elementary,01600027, 6.1, 14.9, 44.7, 32.5, 0.0, 0.0, 1.8, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2020-21,4.4,65.9,Lowell - Pawtucketville Memorial,01600036, 8.2, 25.5, 27.4, 34.1, 0.0, 0.0, 4.8, 50.1, 49.9, 0.0 -3.454545454545455,3.45,a-cure-i1,2020-21,11.4,52.8,Lowell - Peter W Reilly,01600040, 3.1, 9.2, 36.2, 47.2, 0.0, 0.2, 4.0, 48.5, 51.5, 0.0 -1.792,1.79,a-cure-i1,2020-21,7.0,62.5,Lowell - Pyne Arts,01600018, 7.7, 13.6, 37.5, 37.5, 0.0, 0.0, 3.6, 54.8, 45.2, 0.0 -3.22,3.22,a-cure-i1,2020-21,16.1,80.0,Lowell - Rogers STEM Academy,01600005, 10.6, 21.6, 44.2, 20.0, 0.0, 0.0, 3.5, 51.8, 48.2, 0.0 -1.898697539797395,1.9,a-cure-i1,2020-21,8.2,69.1,Lowell - S Christa McAuliffe Elementary,01600075, 5.8, 11.8, 47.5, 30.9, 0.0, 0.0, 3.9, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,78.7,Lowell - The Career Academy,01600515, 4.3, 21.3, 47.9, 21.3, 0.0, 0.0, 5.3, 62.8, 37.2, 0.0 -2.061855670103093,2.06,a-cure-i1,2020-21,10.0,77.6,Lowell - Washington,01600055, 5.4, 43.2, 22.0, 22.4, 0.0, 0.0, 7.1, 61.0, 39.0, 0.0 -3.622641509433962,3.62,a-cure-i1,2020-21,21.599999999999998,95.4,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 24.7, 18.3, 48.4, 4.6, 0.0, 0.0, 4.0, 49.6, 50.3, 0.1 -7.061728395061729,5,a-cure-i1,2020-21,28.6,64.8,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 3.4, 11.4, 39.8, 35.2, 0.0, 0.0, 10.2, 43.2, 56.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.0,Ludlow - Chapin Street Elementary School,01610020, 1.7, 1.3, 15.7, 78.0, 0.0, 0.0, 3.3, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.799999999999997,Ludlow - East Street Elementary School,01610010, 1.5, 1.5, 13.3, 78.2, 0.0, 0.3, 5.1, 59.2, 40.8, 0.0 -7.030303030303029,5,a-cure-i1,2020-21,5.800000000000001,13.200000000000003,Ludlow - Ludlow Senior High,01610505, 2.0, 0.8, 7.1, 86.8, 0.0, 0.2, 3.0, 49.2, 50.5, 0.2 -1,1,a-cure-i1,2020-21,0.0,20.799999999999997,Ludlow - Paul R Baird Middle,01610305, 2.1, 0.0, 14.5, 79.2, 0.2, 0.0, 4.1, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2020-21,3.8,22.0,Ludlow - Veterans Park Elementary,01610023, 2.1, 0.3, 16.5, 78.0, 0.0, 0.3, 2.7, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,0.0,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.400000000000006,Lunenburg - Lunenburg High,01620505, 1.5, 1.5, 9.1, 84.6, 1.1, 0.6, 1.7, 52.5, 47.0, 0.4 -1,1,a-cure-i1,2020-21,0.0,16.599999999999994,Lunenburg - Lunenburg Middle School,01620305, 0.8, 1.0, 9.6, 83.4, 0.0, 1.0, 4.1, 50.0, 49.7, 0.3 -1,1,a-cure-i1,2020-21,0.0,16.599999999999994,Lunenburg - Lunenburg Primary School,01620010, 2.3, 0.5, 9.4, 83.4, 0.0, 0.5, 3.9, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.400000000000006,Lunenburg - Turkey Hill Elementary School,01620025, 3.5, 3.2, 9.3, 82.6, 0.0, 0.0, 1.5, 50.0, 50.0, 0.0 -1.9310344827586206,1.93,a-cure-i1,2020-21,11.2,92.8,Lynn - A Drewicz Elementary,01630016, 5.3, 11.6, 74.2, 7.2, 0.0, 0.0, 1.8, 46.6, 53.4, 0.0 -1.7338820301783264,1.73,a-cure-i1,2020-21,7.9,72.9,Lynn - Aborn,01630011, 8.1, 12.7, 41.1, 27.1, 0.8, 0.0, 10.2, 53.4, 46.6, 0.0 -1.8625277161862528,1.86,a-cure-i1,2020-21,10.5,90.2,Lynn - Breed Middle School,01630405, 8.7, 8.3, 69.7, 9.8, 0.2, 0.0, 3.3, 52.7, 47.2, 0.1 -1,1,a-cure-i1,2020-21,0.5,87.6,Lynn - Brickett Elementary,01630020, 7.4, 10.3, 65.0, 12.4, 0.6, 0.0, 4.4, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,60.9,Lynn - Capt William G Shoemaker,01630090, 12.6, 7.9, 33.1, 39.1, 0.0, 0.0, 7.3, 64.0, 36.0, 0.0 -2.1193317422434372,2.12,a-cure-i1,2020-21,11.100000000000001,83.8,Lynn - Classical High,01630505, 7.3, 8.7, 64.2, 16.2, 0.5, 0.0, 3.1, 53.9, 46.1, 0.0 -2.6058091286307055,2.61,a-cure-i1,2020-21,15.700000000000001,96.4,Lynn - Cobbet Elementary,01630035, 6.2, 3.1, 85.2, 3.6, 0.0, 0.0, 1.8, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2020-21,0.3,90.5,Lynn - E J Harrington,01630045, 9.8, 5.8, 72.5, 9.5, 0.0, 0.0, 2.4, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,4.3,72.4,Lynn - Edward A Sisson,01630095, 6.1, 12.0, 45.8, 27.6, 1.7, 0.0, 6.8, 49.1, 50.9, 0.0 -1.6853333333333333,1.69,a-cure-i1,2020-21,7.9,75.0,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 6.0, 2.0, 60.0, 25.0, 1.0, 0.0, 6.0, 70.0, 30.0, 0.0 -2.7010550996483005,2.7,a-cure-i1,2020-21,14.4,85.3,Lynn - Hood,01630055, 7.3, 8.4, 67.4, 14.7, 0.4, 0.0, 1.8, 52.5, 47.5, 0.0 -1.688699360341151,1.69,a-cure-i1,2020-21,9.899999999999999,93.8,Lynn - Ingalls,01630060, 9.0, 6.5, 74.6, 6.2, 0.4, 0.0, 3.2, 51.2, 48.8, 0.0 -1.520190023752969,1.52,a-cure-i1,2020-21,8.0,84.2,Lynn - Julia F Callahan,01630030, 12.2, 7.2, 59.4, 15.8, 0.0, 0.0, 5.3, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,80.6,Lynn - Lincoln-Thomson,01630070, 5.7, 12.8, 57.8, 19.4, 0.0, 0.0, 4.3, 55.0, 45.0, 0.0 -3.0577777777777784,3.06,a-cure-i1,2020-21,17.200000000000003,90.0,Lynn - Lynn English High,01630510, 9.3, 7.9, 70.0, 10.0, 0.3, 0.0, 2.4, 52.4, 47.3, 0.2 -2.030267753201397,2.03,a-cure-i1,2020-21,10.9,85.9,Lynn - Lynn Vocational Technical Institute,01630605, 6.4, 5.5, 70.9, 14.1, 0.3, 0.0, 2.9, 54.0, 46.0, 0.1 -3.286821705426356,3.29,a-cure-i1,2020-21,10.6,51.6,Lynn - Lynn Woods,01630075, 3.9, 5.2, 35.3, 48.4, 0.7, 0.0, 6.5, 48.4, 51.6, 0.0 -1.6326530612244898,1.63,a-cure-i1,2020-21,7.0,68.6,Lynn - Pickering Middle,01630420, 7.8, 8.3, 47.5, 31.4, 0.8, 0.0, 4.2, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.3,94.6,Lynn - Robert L Ford,01630050, 7.4, 6.4, 77.5, 5.4, 0.4, 0.0, 2.9, 50.5, 49.5, 0.0 -1.1224489795918366,1.12,a-cure-i1,2020-21,5.5,78.4,Lynn - Sewell-Anderson,01630085, 7.0, 7.0, 58.6, 21.6, 0.4, 0.0, 5.5, 49.1, 50.9, 0.0 -1.492407809110629,1.49,a-cure-i1,2020-21,8.6,92.2,Lynn - Thurgood Marshall Mid,01630305, 10.1, 7.1, 72.0, 7.8, 0.2, 0.1, 2.8, 51.9, 48.0, 0.1 -1,1,a-cure-i1,2020-21,0.0,93.1,Lynn - Tracy,01630100, 6.9, 5.0, 79.6, 6.9, 0.2, 0.0, 1.4, 52.8, 47.2, 0.0 -1.2012513034410843,1.2,a-cure-i1,2020-21,7.2,95.9,Lynn - Washington Elementary School,01630005, 12.8, 5.9, 75.1, 4.1, 0.0, 0.0, 2.1, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,80.6,Lynn - William R Fallon,01630080, 22.6, 3.2, 45.2, 19.4, 0.0, 0.0, 9.7, 87.1, 12.9, 0.0 -1,1,a-cure-i1,2020-21,3.1,94.4,Lynn - Wm P Connery,01630040, 5.5, 9.5, 77.3, 5.6, 0.0, 0.0, 2.2, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.299999999999997,Lynnfield - Huckleberry Hill,01640010, 2.7, 10.8, 6.9, 73.7, 0.0, 0.0, 6.0, 45.6, 54.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.799999999999997,Lynnfield - Lynnfield High,01640505, 1.5, 4.8, 5.0, 87.2, 0.0, 0.0, 1.5, 47.7, 52.2, 0.2 -1,1,a-cure-i1,2020-21,0.0,17.900000000000006,Lynnfield - Lynnfield Middle School,01640405, 1.7, 7.0, 6.6, 82.1, 0.0, 0.0, 2.6, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.599999999999994,Lynnfield - Lynnfield Preschool,01640005, 3.7, 7.4, 7.4, 70.4, 0.0, 0.0, 11.1, 44.4, 55.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.299999999999997,Lynnfield - Summer Street,01640020, 1.8, 5.9, 4.3, 84.7, 0.0, 0.0, 3.3, 52.9, 47.1, 0.0 -4.2211690363349135,4.22,a-cure-i1,2020-21,16.7,63.3,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 1.0, 57.1, 0.0, 36.7, 0.0, 0.0, 5.1, 44.9, 54.1, 1.0 -1,1,a-cure-i1,2020-21,2.5,69.3,Malden - Beebe,01650003, 13.9, 36.3, 14.9, 30.7, 0.0, 0.0, 4.3, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,2.0,78.2,Malden - Ferryway,01650013, 17.8, 21.6, 33.4, 21.8, 0.3, 0.2, 4.9, 51.0, 48.9, 0.1 -1,1,a-cure-i1,2020-21,0.0,57.6,Malden - Forestdale,01650027, 16.8, 10.5, 23.5, 42.4, 0.0, 0.2, 6.6, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,4.8,69.3,Malden - Linden,01650047, 20.2, 24.5, 19.5, 30.7, 0.2, 0.0, 4.8, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,66.8,Malden - Malden Early Learning Center,01650049, 17.1, 37.8, 6.5, 33.2, 0.0, 0.0, 5.5, 62.7, 37.3, 0.0 -3.2084432717678104,3.21,a-cure-i1,2020-21,15.200000000000001,75.8,Malden - Malden High,01650505, 20.6, 23.9, 28.6, 24.2, 0.2, 0.0, 2.5, 51.8, 48.1, 0.1 -2.68051948051948,2.68,a-cure-i1,2020-21,12.899999999999999,77.0,Malden - Salemwood,01650057, 20.8, 16.4, 36.6, 23.0, 0.2, 0.0, 3.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,3.700000000000003,Manchester Essex Regional - Essex Elementary,06980020, 0.5, 0.0, 3.2, 96.3, 0.0, 0.0, 0.0, 44.4, 55.6, 0.0 -1,1,a-cure-i1,2020-21,3.8,3.299999999999997,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.7, 0.9, 96.7, 0.0, 0.0, 0.7, 52.3, 47.5, 0.2 -67.76470588235283,5,a-cure-i1,2020-21,7.2,1.7000000000000028,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.6, 0.6, 98.3, 0.0, 0.0, 0.6, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,5.099999999999994,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 1.5, 1.5, 1.5, 94.9, 0.0, 0.0, 0.7, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.099999999999994,Mansfield - Everett W Robinson,01670007, 4.4, 7.0, 7.0, 75.9, 0.2, 0.2, 5.3, 50.5, 49.4, 0.2 -1,1,a-cure-i1,2020-21,1.5,20.400000000000006,Mansfield - Harold L Qualters Middle,01670035, 4.7, 6.6, 6.5, 79.6, 0.1, 0.0, 2.5, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,3.1,25.799999999999997,Mansfield - Jordan/Jackson Elementary,01670014, 4.8, 9.5, 5.6, 74.2, 0.1, 0.0, 5.7, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,4.5,19.799999999999997,Mansfield - Mansfield High,01670505, 4.2, 7.1, 4.7, 80.2, 0.0, 0.0, 3.8, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.200000000000003,Mansfield - Roland Green School,01670003, 3.3, 3.3, 11.0, 75.8, 1.1, 0.0, 5.5, 59.3, 40.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.099999999999994,Map Academy Charter School (District) - Map Academy Charter School,35170505, 6.8, 0.5, 16.0, 68.9, 1.0, 1.0, 5.8, 59.7, 40.3, 0.0 -1,1,a-cure-i1,2020-21,4.1,11.299999999999997,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 7.0, 88.7, 0.0, 0.0, 4.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.400000000000006,Marblehead - Glover,01680020, 2.6, 0.9, 5.6, 85.6, 0.0, 0.0, 5.3, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2020-21,3.2,14.700000000000003,Marblehead - L H Coffin,01680010, 2.1, 1.6, 6.8, 85.3, 0.0, 0.0, 4.2, 50.8, 49.2, 0.0 -8.386206896551723,5,a-cure-i1,2020-21,7.6,14.5,Marblehead - Marblehead High,01680505, 3.7, 1.7, 6.5, 85.5, 0.1, 0.1, 2.4, 48.7, 51.2, 0.1 -1,1,a-cure-i1,2020-21,2.5,12.799999999999997,Marblehead - Marblehead Veterans Middle School,01680300, 2.2, 1.5, 6.6, 87.2, 0.0, 0.0, 2.4, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.7,16.400000000000006,Marblehead - Village School,01680016, 3.0, 1.4, 7.9, 83.6, 0.0, 0.0, 4.0, 54.1, 45.8, 0.1 -1,1,a-cure-i1,2020-21,0.0,18.700000000000003,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 5.3, 1.9, 8.7, 81.3, 0.0, 0.0, 2.9, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.599999999999994,Marion - Sippican,01690005, 4.0, 1.3, 3.5, 85.4, 0.0, 0.0, 5.8, 52.8, 47.2, 0.0 -1.6151419558359623,1.62,a-cure-i1,2020-21,6.4,63.4,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 3.7, 1.8, 55.0, 36.6, 0.1, 0.0, 2.9, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.5,56.2,Marlborough - Charles Jaworek School,01700030, 3.1, 6.3, 44.9, 43.8, 0.1, 0.0, 1.8, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,49.0,Marlborough - Early Childhood Center,01700006, 7.0, 7.6, 30.6, 51.0, 0.0, 0.0, 3.8, 61.1, 38.9, 0.0 -1,1,a-cure-i1,2020-21,2.4,53.9,Marlborough - Francis J Kane,01700008, 4.1, 4.7, 43.4, 46.1, 0.0, 0.0, 1.6, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,1.8,54.7,Marlborough - Goodnow Brothers Elementary School,01700020, 2.9, 1.8, 48.0, 45.3, 0.1, 0.0, 1.8, 55.7, 44.3, 0.0 -1,1,a-cure-i1,2020-21,4.4,64.1,Marlborough - Marlborough High,01700505, 3.8, 1.5, 56.4, 35.9, 0.0, 0.0, 2.5, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,3.2,73.1,Marlborough - Richer,01700025, 4.2, 3.2, 63.0, 26.9, 0.0, 0.0, 2.8, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.599999999999994,Marshfield - Daniel Webster,01710015, 2.0, 2.3, 3.2, 88.4, 0.6, 1.7, 1.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,2.299999999999997,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.9, 97.7, 0.0, 0.0, 1.4, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2020-21,2.3,7.799999999999997,Marshfield - Furnace Brook Middle,01710310, 0.4, 1.2, 3.8, 92.2, 0.2, 0.1, 2.1, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,4.200000000000003,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.3, 2.4, 95.8, 0.0, 0.0, 1.6, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,1.1,6.099999999999994,Marshfield - Marshfield High,01710505, 0.2, 1.1, 3.4, 93.9, 0.0, 0.1, 1.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,4.2,10.200000000000003,Marshfield - Martinson Elementary,01710025, 1.0, 1.9, 4.8, 89.8, 0.0, 0.0, 2.4, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.099999999999994,Marshfield - South River,01710010, 0.4, 0.4, 3.2, 91.9, 0.0, 0.0, 4.2, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2020-21,3.2,34.099999999999994,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 4.8, 1.3, 20.8, 65.9, 2.2, 0.3, 4.8, 53.0, 47.0, 0.0 -2.8704318936877082,2.87,a-cure-i1,2020-21,5.4,30.099999999999994,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.6, 0.6, 17.0, 69.9, 1.1, 0.0, 10.8, 46.6, 53.4, 0.0 -5.045643153526971,5,a-cure-i1,2020-21,30.4,96.4,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 29.9, 1.1, 64.9, 3.6, 0.3, 0.0, 0.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,2.5,10.599999999999994,Masconomet - Masconomet Regional High School,07050505, 0.5, 4.4, 3.2, 89.4, 0.1, 0.2, 2.2, 45.1, 54.9, 0.0 -14.577777777777776,5,a-cure-i1,2020-21,8.2,9.0,Masconomet - Masconomet Regional Middle School,07050405, 0.9, 2.4, 2.8, 91.0, 0.0, 0.2, 2.8, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.200000000000003,Mashpee - Kenneth Coombs School,01720005, 5.2, 1.5, 8.8, 68.8, 3.6, 0.3, 11.8, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,1.4,23.5,Mashpee - Mashpee High,01720505, 5.4, 2.7, 3.4, 76.5, 6.1, 0.2, 5.7, 51.4, 48.6, 0.0 -4.155038759689923,4.16,a-cure-i1,2020-21,6.699999999999999,25.799999999999997,Mashpee - Mashpee Middle School,01720020, 4.3, 2.7, 3.9, 74.2, 6.3, 0.0, 8.6, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.5,Mashpee - Quashnet School,01720035, 4.5, 1.1, 6.8, 69.5, 6.6, 0.0, 11.4, 51.4, 48.6, 0.0 -5.608915906788246,5,a-cure-i1,2020-21,34.599999999999994,98.7,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 48.2, 0.5, 46.7, 1.3, 0.4, 0.2, 2.6, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.299999999999997,Mattapoisett - Center,01730005, 0.0, 0.4, 5.5, 87.7, 0.0, 0.0, 6.4, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.200000000000003,Mattapoisett - Old Hammondtown,01730010, 0.6, 1.2, 4.7, 88.8, 0.0, 0.0, 4.7, 47.6, 52.4, 0.0 -8.502092050209203,5,a-cure-i1,2020-21,12.7,23.900000000000006,Maynard - Fowler School,01740305, 2.2, 0.9, 15.6, 76.1, 0.2, 0.0, 5.0, 51.5, 48.2, 0.2 -13.205240174672484,5,a-cure-i1,2020-21,18.9,22.900000000000006,Maynard - Green Meadow,01740010, 1.2, 2.4, 14.1, 77.1, 0.2, 0.0, 4.9, 53.4, 46.6, 0.0 -6.564102564102564,5,a-cure-i1,2020-21,8.0,19.5,Maynard - Maynard High,01740505, 1.3, 2.2, 11.8, 80.5, 0.3, 0.0, 3.8, 47.9, 51.8, 0.3 -1,1,a-cure-i1,2020-21,2.8,14.299999999999997,Medfield - Dale Street,01750005, 1.5, 4.7, 4.7, 85.7, 0.0, 0.0, 3.4, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,3.4,12.099999999999994,Medfield - Medfield Senior High,01750505, 1.2, 4.9, 2.2, 87.9, 0.3, 0.0, 3.6, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.400000000000006,Medfield - Memorial School,01750003, 1.8, 3.6, 1.8, 88.6, 0.3, 0.0, 3.9, 49.1, 50.9, 0.0 -8.065040650406505,5,a-cure-i1,2020-21,6.2,12.299999999999997,Medfield - Ralph Wheelock School,01750007, 1.6, 4.2, 2.4, 87.7, 0.3, 0.0, 3.9, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2020-21,3.5,15.400000000000006,Medfield - Thomas Blake Middle,01750305, 0.5, 3.4, 6.6, 84.6, 0.5, 0.0, 4.3, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.5,Medford - Brooks School,01760130, 5.8, 5.2, 7.7, 74.5, 0.6, 0.0, 6.2, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,3.5,45.2,Medford - Christopher Columbus,01760140, 12.7, 5.6, 21.4, 54.8, 0.5, 0.0, 5.0, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,41.7,Medford - Curtis-Tufts,01760510, 16.7, 0.0, 16.7, 58.3, 0.0, 0.0, 8.3, 58.3, 41.7, 0.0 -2.206896551724138,2.21,a-cure-i1,2020-21,7.2,52.2,Medford - John J McGlynn Elementary School,01760068, 14.5, 15.4, 16.1, 47.8, 1.1, 0.2, 4.8, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2020-21,4.6,48.4,Medford - John J. McGlynn Middle School,01760320, 18.4, 8.2, 17.3, 51.6, 0.2, 0.0, 4.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,3.0,38.0,Medford - Madeleine Dugger Andrews,01760315, 9.7, 10.6, 9.7, 62.0, 0.7, 0.0, 7.3, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,3.8,41.1,Medford - Medford High,01760505, 13.5, 9.8, 13.9, 58.9, 0.0, 0.2, 3.8, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,36.4,Medford - Milton Fuller Roberts,01760150, 6.9, 11.2, 11.0, 63.6, 1.0, 0.0, 6.2, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.700000000000003,Medway - Burke/Memorial Elementary School,01770015, 2.0, 1.8, 5.6, 88.3, 0.5, 0.0, 1.8, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.700000000000003,Medway - John D Mc Govern Elementary,01770013, 1.2, 3.7, 8.1, 82.3, 0.0, 0.0, 4.7, 53.1, 46.9, 0.0 -7.750000000000001,5,a-cure-i1,2020-21,6.199999999999999,12.799999999999997,Medway - Medway High,01770505, 1.9, 4.3, 4.9, 87.2, 0.5, 0.0, 1.3, 47.5, 52.3, 0.2 -1,1,a-cure-i1,2020-21,2.0,12.799999999999997,Medway - Medway Middle,01770305, 1.6, 2.5, 5.0, 87.2, 0.0, 0.4, 3.2, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2020-21,1.2,29.599999999999994,Melrose - Early Childhood Center,01780003, 8.2, 6.9, 5.0, 70.4, 1.3, 0.0, 8.2, 57.2, 42.8, 0.0 -1,1,a-cure-i1,2020-21,3.5,27.0,Melrose - Herbert Clark Hoover,01780017, 5.3, 10.0, 8.3, 73.0, 0.0, 0.0, 3.3, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,2.0,10.299999999999997,Melrose - Horace Mann,01780025, 1.5, 0.0, 3.3, 89.7, 0.0, 0.0, 5.5, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,42.3,Melrose - Lincoln,01780020, 8.7, 14.4, 10.6, 57.7, 0.0, 0.0, 8.7, 48.5, 51.5, 0.0 -4.514851485148514,4.51,a-cure-i1,2020-21,5.7,20.200000000000003,Melrose - Melrose High,01780505, 7.2, 4.7, 4.2, 79.8, 0.0, 0.0, 4.1, 48.4, 51.6, 0.0 -4.902127659574467,4.9,a-cure-i1,2020-21,7.199999999999999,23.5,Melrose - Melrose Middle,01780305, 7.4, 6.2, 5.1, 76.5, 0.0, 0.0, 4.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.700000000000003,Melrose - Roosevelt,01780035, 4.5, 4.3, 4.8, 80.3, 0.0, 0.0, 6.2, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,1.6,15.799999999999997,Melrose - Winthrop,01780050, 2.0, 3.6, 3.3, 84.2, 0.0, 0.0, 6.9, 51.7, 48.1, 0.3 -42.10526315789477,5,a-cure-i1,2020-21,10.0,3.799999999999997,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 2.9, 96.2, 0.3, 0.0, 0.6, 48.0, 52.0, 0.0 -15.632183908045972,5,a-cure-i1,2020-21,17.0,17.400000000000006,Mendon-Upton - Memorial School,07100001, 1.5, 5.4, 6.7, 82.6, 0.0, 0.0, 3.7, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,2.6,10.099999999999994,Mendon-Upton - Miscoe Hill School,07100015, 0.1, 2.6, 5.2, 89.9, 0.0, 0.0, 2.1, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,2.5,11.0,Mendon-Upton - Nipmuc Regional High,07100510, 1.1, 2.2, 4.9, 89.0, 0.3, 0.0, 2.5, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2020-21,1.5,52.8,Methuen - Comprehensive Grammar School,01810050, 5.1, 4.4, 39.0, 47.2, 0.0, 0.0, 4.5, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,61.9,Methuen - Donald P Timony Grammar,01810060, 5.6, 3.7, 48.7, 38.1, 0.2, 0.2, 3.6, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2020-21,1.4,45.0,Methuen - Marsh Grammar School,01810030, 3.2, 2.6, 35.5, 55.0, 0.0, 0.1, 3.6, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2020-21,3.0,53.2,Methuen - Methuen High,01810505, 2.3, 4.3, 42.2, 46.8, 0.1, 0.0, 4.4, 51.3, 48.6, 0.1 -1,1,a-cure-i1,2020-21,0.0,68.9,Methuen - Tenney Grammar School,01810055, 3.9, 3.0, 58.5, 31.1, 0.0, 0.0, 3.5, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.200000000000003,Middleborough - Henry B. Burkland Elementary School,01820008, 2.5, 0.8, 2.9, 86.8, 0.2, 0.0, 6.9, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.0,Middleborough - John T. Nichols Middle,01820305, 3.2, 0.4, 2.8, 87.0, 0.7, 0.0, 5.9, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,2.8,9.799999999999997,Middleborough - Mary K. Goode Elementary School,01820010, 2.0, 0.9, 1.2, 90.2, 0.4, 0.0, 5.3, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.0,Middleborough - Memorial Early Childhood Center,01820011, 2.0, 2.4, 3.2, 88.0, 0.8, 0.0, 3.6, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,1.7,12.700000000000003,Middleborough - Middleborough High,01820505, 2.9, 1.7, 4.1, 87.3, 1.0, 0.0, 3.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.5,Middleton - Fuller Meadow,01840003, 1.0, 4.5, 5.9, 82.5, 1.4, 0.0, 4.5, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.799999999999997,Middleton - Howe-Manning,01840005, 1.5, 4.3, 5.6, 85.2, 0.0, 0.3, 3.1, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2020-21,3.4,37.8,Milford - Brookside,01850065, 3.4, 1.6, 30.2, 62.2, 0.7, 0.0, 2.0, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,3.3,41.6,Milford - Memorial,01850010, 2.1, 0.7, 35.9, 58.4, 0.9, 0.0, 2.1, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,4.0,40.5,Milford - Milford High,01850505, 3.7, 1.8, 30.4, 59.5, 1.4, 0.0, 3.2, 53.8, 46.1, 0.2 -1,1,a-cure-i1,2020-21,0.0,29.299999999999997,Milford - Shining Star Early Childhood Center,01850075, 1.1, 1.1, 26.1, 70.7, 0.0, 0.0, 1.1, 68.5, 31.5, 0.0 -1.971014492753623,1.97,a-cure-i1,2020-21,5.1,41.4,Milford - Stacy Middle,01850305, 2.8, 1.6, 29.7, 58.6, 2.6, 0.1, 4.6, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,3.2,40.7,Milford - Woodland,01850090, 3.5, 1.0, 31.9, 59.3, 0.7, 0.1, 3.5, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.400000000000006,Millbury - Elmwood Street,01860017, 3.5, 3.7, 7.1, 79.6, 0.0, 0.0, 6.1, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,2.0,22.599999999999994,Millbury - Millbury Junior/Senior High,01860505, 3.8, 3.4, 10.2, 77.4, 0.0, 0.0, 5.2, 49.8, 49.8, 0.4 -1,1,a-cure-i1,2020-21,0.0,19.099999999999994,Millbury - Raymond E. Shaw Elementary,01860025, 3.8, 3.5, 5.5, 80.9, 0.0, 0.3, 6.1, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,2.5,16.200000000000003,Millis - Clyde F Brown,01870005, 1.1, 2.0, 8.4, 83.8, 0.7, 0.2, 3.8, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,3.5,17.5,Millis - Millis High School,01870505, 1.5, 3.9, 8.7, 82.5, 0.0, 0.3, 3.0, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,3.9,15.200000000000003,Millis - Millis Middle,01870020, 0.7, 1.1, 8.0, 84.8, 0.0, 0.0, 5.4, 48.6, 51.1, 0.4 -5.572413793103448,5,a-cure-i1,2020-21,10.1,29.0,Milton - Charles S Pierce Middle,01890410, 13.2, 6.4, 4.9, 71.0, 0.2, 0.1, 4.3, 49.7, 50.3, 0.0 -9.40740740740741,5,a-cure-i1,2020-21,12.700000000000001,21.599999999999994,Milton - Collicot,01890005, 2.8, 10.5, 3.4, 78.4, 0.0, 0.0, 4.9, 51.3, 48.7, 0.0 -4.589641434262949,4.59,a-cure-i1,2020-21,7.199999999999999,25.099999999999994,Milton - Cunningham School,01890007, 5.3, 11.2, 4.3, 74.9, 0.0, 0.0, 4.4, 47.6, 52.4, 0.0 -6.50467289719626,5,a-cure-i1,2020-21,8.7,21.400000000000006,Milton - Glover,01890010, 5.5, 4.6, 3.8, 78.6, 0.5, 0.0, 7.0, 47.2, 52.8, 0.0 -4.363636363636363,4.36,a-cure-i1,2020-21,9.0,33.0,Milton - Milton High,01890505, 17.3, 6.2, 5.7, 67.0, 0.1, 0.2, 3.5, 50.3, 49.6, 0.1 -3.951807228915662,3.95,a-cure-i1,2020-21,16.4,66.4,Milton - Tucker,01890020, 37.9, 7.8, 8.1, 33.6, 0.0, 0.0, 12.6, 48.0, 52.0, 0.0 -4.893203883495147,4.89,a-cure-i1,2020-21,6.3,20.599999999999994,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 3.8, 3.8, 7.7, 79.4, 0.3, 0.0, 5.0, 61.6, 37.8, 0.6 -1,1,a-cure-i1,2020-21,0.0,11.400000000000006,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.4, 0.0, 6.9, 88.6, 0.0, 0.0, 4.1, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,3.700000000000003,Mohawk Trail - Colrain Central,07170010, 1.3, 0.0, 2.5, 96.3, 0.0, 0.0, 0.0, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,3.8,7.400000000000006,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.4, 4.2, 92.6, 0.0, 0.0, 2.8, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,4.599999999999994,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 3.1, 95.4, 0.0, 0.0, 1.5, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.799999999999997,Monomoy Regional School District - Chatham Elementary School,07120001, 7.6, 0.6, 13.9, 72.2, 0.0, 0.6, 5.1, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,3.0,23.900000000000006,Monomoy Regional School District - Harwich Elementary School,07120002, 4.0, 1.5, 8.2, 76.1, 0.6, 0.0, 9.6, 53.7, 46.3, 0.0 -5.174129353233832,5,a-cure-i1,2020-21,6.5,20.099999999999994,Monomoy Regional School District - Monomoy Regional High School,07120515, 6.6, 1.2, 8.4, 79.9, 0.4, 0.3, 3.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.299999999999997,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 5.8, 1.8, 8.0, 76.7, 0.9, 0.2, 6.7, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.599999999999994,Monson - Granite Valley School,01910030, 1.2, 0.5, 6.3, 88.4, 0.0, 0.2, 3.4, 47.5, 52.3, 0.2 -1,1,a-cure-i1,2020-21,4.1,9.5,Monson - Monson High School,01910505, 1.4, 1.7, 4.0, 90.5, 0.0, 0.3, 2.0, 49.4, 50.3, 0.3 -1,1,a-cure-i1,2020-21,0.0,9.299999999999997,Monson - Quarry Hill Community School,01910010, 1.0, 3.1, 3.1, 90.7, 1.0, 0.0, 1.0, 46.4, 53.6, 0.0 -3.746031746031746,3.75,a-cure-i1,2020-21,5.9,25.200000000000003,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 2.0, 1.8, 17.2, 74.8, 0.0, 0.0, 4.1, 48.8, 50.4, 0.8 -1,1,a-cure-i1,2020-21,0.0,11.599999999999994,Mount Greylock - Lanesborough Elementary,07150005, 2.1, 1.6, 4.8, 88.4, 0.0, 0.0, 3.2, 42.3, 57.7, 0.0 -7.433070866141731,5,a-cure-i1,2020-21,5.9,12.700000000000003,Mount Greylock - Mt Greylock Regional High,07150505, 2.7, 2.5, 4.2, 87.3, 0.0, 0.0, 3.4, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2020-21,3.3,16.5,Mount Greylock - Williamstown Elementary,07150010, 2.1, 1.1, 5.9, 83.5, 0.0, 0.0, 7.4, 54.5, 45.5, 0.0 -1.5384615384615383,1.54,a-cure-i1,2020-21,5.5,57.2,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 17.7, 24.7, 9.8, 42.8, 0.2, 0.0, 4.7, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.599999999999994,Nahant - Johnson,01960010, 0.0, 0.7, 6.1, 86.4, 0.0, 0.0, 6.8, 51.7, 48.3, 0.0 -1.9421965317919074,1.94,a-cure-i1,2020-21,6.3,51.9,Nantucket - Cyrus Peirce,01970010, 10.8, 1.2, 35.8, 48.1, 0.0, 0.0, 4.0, 49.8, 50.2, 0.0 -1.4910394265232976,1.49,a-cure-i1,2020-21,5.2,55.8,Nantucket - Nantucket Elementary,01970005, 6.3, 2.0, 42.7, 44.2, 0.0, 0.0, 4.8, 50.8, 49.2, 0.0 -3.2468619246861925,3.25,a-cure-i1,2020-21,9.7,47.8,Nantucket - Nantucket High,01970505, 12.3, 1.5, 29.2, 52.2, 0.4, 0.0, 4.4, 53.1, 46.9, 0.0 -1.702127659574468,1.7,a-cure-i1,2020-21,5.5,51.7,Nantucket - Nantucket Intermediate School,01970020, 6.3, 0.9, 39.8, 48.3, 0.0, 0.0, 4.7, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.299999999999997,Narragansett - Narragansett Middle,07200305, 0.9, 0.6, 6.5, 86.7, 0.3, 0.0, 5.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.400000000000006,Narragansett - Narragansett Regional High,07200505, 0.5, 0.0, 8.6, 87.6, 0.0, 0.2, 3.1, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.099999999999994,Narragansett - Templeton Elementary School,07200020, 0.7, 0.4, 7.4, 88.9, 0.0, 0.0, 2.6, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,4.1,16.5,Nashoba - Center School,07250020, 1.1, 4.9, 6.6, 83.5, 0.0, 0.0, 4.0, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.099999999999994,Nashoba - Florence Sawyer School,07250025, 0.4, 3.5, 4.5, 87.9, 0.1, 0.1, 3.5, 49.7, 50.3, 0.0 -4.444444444444445,4.44,a-cure-i1,2020-21,5.0,18.0,Nashoba - Hale,07250310, 2.3, 6.3, 5.0, 82.0, 0.3, 0.0, 4.0, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,2.6,18.799999999999997,Nashoba - Luther Burbank Middle School,07250305, 3.3, 1.3, 12.6, 81.2, 0.0, 0.0, 1.7, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.200000000000003,Nashoba - Mary Rowlandson Elementary,07250010, 1.6, 1.6, 12.3, 80.8, 0.2, 0.0, 3.4, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2020-21,1.6,11.299999999999997,Nashoba - Nashoba Regional,07250505, 1.4, 4.0, 3.8, 88.7, 0.0, 0.2, 1.8, 50.5, 49.2, 0.2 -5.402597402597401,5,a-cure-i1,2020-21,5.2,15.400000000000006,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 2.3, 1.9, 7.6, 84.6, 0.3, 0.1, 3.2, 60.2, 39.0, 0.8 -4.955223880597016,4.96,a-cure-i1,2020-21,8.3,26.799999999999997,Natick - Bennett-Hemenway,01980005, 2.4, 14.0, 5.9, 73.2, 0.0, 0.0, 4.5, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,44.5,Natick - Brown,01980010, 1.3, 27.5, 10.5, 55.5, 0.2, 0.0, 4.9, 51.8, 48.2, 0.0 -3.264,3.26,a-cure-i1,2020-21,5.1,25.0,Natick - J F Kennedy Middle School,01980305, 1.0, 11.8, 6.7, 75.0, 0.0, 0.0, 5.5, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.5,Natick - Johnson,01980031, 1.9, 4.8, 9.1, 78.5, 0.0, 0.0, 5.7, 52.2, 47.8, 0.0 -2.6752411575562705,2.68,a-cure-i1,2020-21,5.2,31.099999999999994,Natick - Lilja Elementary,01980035, 3.8, 13.4, 8.6, 68.9, 0.0, 0.0, 5.4, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.700000000000003,Natick - Memorial,01980043, 1.7, 5.7, 4.4, 82.3, 0.0, 0.0, 5.9, 53.1, 46.7, 0.2 -5.785714285714286,5,a-cure-i1,2020-21,8.100000000000001,22.400000000000006,Natick - Natick High,01980505, 3.1, 7.3, 6.3, 77.6, 0.1, 0.1, 5.6, 50.6, 49.3, 0.2 -1,1,a-cure-i1,2020-21,0.3,24.400000000000006,Natick - Wilson Middle,01980310, 4.7, 7.5, 5.5, 75.6, 0.2, 0.1, 6.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,4.0,16.0,Nauset - Nauset Regional High,06600505, 5.7, 2.7, 4.8, 84.0, 0.0, 0.1, 2.7, 44.6, 55.2, 0.2 -1,1,a-cure-i1,2020-21,1.9,14.900000000000006,Nauset - Nauset Regional Middle,06600305, 4.0, 1.6, 6.3, 85.1, 0.2, 0.0, 2.8, 49.9, 49.9, 0.2 -3.2218430034129697,3.22,a-cure-i1,2020-21,5.9,29.299999999999997,Needham - Broadmeadow,01990005, 2.9, 11.8, 7.4, 70.7, 0.0, 0.0, 7.2, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,2.9,25.599999999999994,Needham - High Rock School,01990410, 5.6, 10.2, 5.1, 74.4, 0.0, 0.3, 4.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,42.4,Needham - John Eliot,01990020, 5.9, 20.2, 9.3, 57.6, 0.0, 0.0, 7.1, 51.5, 48.5, 0.0 -7.547169811320754,5,a-cure-i1,2020-21,10.0,21.200000000000003,Needham - Needham High,01990505, 1.9, 8.6, 5.5, 78.8, 0.1, 0.1, 4.9, 48.7, 50.9, 0.4 -1,1,a-cure-i1,2020-21,3.5,24.299999999999997,Needham - Newman Elementary,01990050, 3.6, 9.6, 4.6, 75.7, 0.0, 0.0, 6.5, 50.4, 49.6, 0.0 -4.072727272727273,4.07,a-cure-i1,2020-21,5.6000000000000005,22.0,Needham - Pollard Middle,01990405, 2.2, 7.0, 8.2, 78.0, 0.0, 0.0, 4.6, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.6,28.5,Needham - Sunita L. Williams Elementary,01990035, 3.9, 12.3, 5.5, 71.5, 0.2, 0.0, 6.6, 55.5, 44.5, 0.0 -9.094017094017092,5,a-cure-i1,2020-21,13.299999999999999,23.400000000000006,Needham - William Mitchell,01990040, 4.4, 10.7, 3.3, 76.6, 0.0, 0.0, 5.0, 51.1, 48.9, 0.0 -9.305747126436781,5,a-cure-i1,2020-21,50.6,87.0,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 53.1, 2.5, 25.6, 13.0, 0.7, 0.0, 5.2, 51.4, 48.5, 0.1 -1.5018050541516246,1.5,a-cure-i1,2020-21,5.2,55.4,New Bedford - Abraham Lincoln,02010095, 11.4, 1.3, 37.3, 44.6, 0.1, 0.1, 5.2, 51.6, 48.4, 0.0 -3.298578199052132,3.3,a-cure-i1,2020-21,17.4,84.4,New Bedford - Alfred J Gomes,02010063, 13.0, 0.6, 67.9, 15.6, 0.8, 0.0, 2.2, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2020-21,3.2,38.0,New Bedford - Betsey B Winslow,02010140, 8.3, 2.0, 20.0, 62.0, 0.5, 1.0, 6.3, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,71.3,New Bedford - Carlos Pacheco,02010105, 17.9, 0.8, 48.2, 28.7, 0.5, 0.0, 3.9, 51.6, 48.4, 0.0 -3.848797250859107,3.85,a-cure-i1,2020-21,7.0,29.099999999999994,New Bedford - Casimir Pulaski,02010123, 6.3, 1.0, 16.6, 70.9, 0.5, 0.0, 4.7, 55.6, 44.4, 0.0 -3.409200968523003,3.41,a-cure-i1,2020-21,8.8,41.3,New Bedford - Charles S Ashley,02010010, 7.5, 1.0, 27.9, 58.7, 0.0, 0.0, 5.0, 48.8, 51.2, 0.0 -3.5194585448392552,3.52,a-cure-i1,2020-21,13.0,59.1,New Bedford - Elizabeth Carter Brooks,02010015, 7.7, 0.8, 41.3, 40.9, 0.8, 0.0, 8.5, 52.2, 47.8, 0.0 -3.11864406779661,3.12,a-cure-i1,2020-21,13.799999999999999,70.8,New Bedford - Ellen R Hathaway,02010075, 16.9, 1.8, 48.2, 29.2, 0.0, 0.4, 3.5, 51.1, 48.9, 0.0 -1.5473887814313345,1.55,a-cure-i1,2020-21,5.0,51.7,New Bedford - Elwyn G Campbell,02010020, 12.1, 1.1, 33.2, 48.3, 0.4, 0.0, 4.9, 57.7, 42.3, 0.0 -1.8500635324015247,1.85,a-cure-i1,2020-21,9.1,78.7,New Bedford - Hayden/McFadden,02010078, 13.8, 0.2, 61.0, 21.3, 0.5, 0.2, 3.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,3.9,72.6,New Bedford - Irwin M. Jacobs Elementary School,02010070, 10.0, 0.0, 61.2, 27.4, 0.0, 0.0, 1.5, 50.9, 49.1, 0.0 -1.5224913494809689,1.52,a-cure-i1,2020-21,5.5,57.8,New Bedford - James B Congdon,02010040, 14.1, 0.7, 36.3, 42.2, 0.7, 0.0, 6.2, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.5,New Bedford - Jireh Swift,02010130, 9.6, 1.3, 21.7, 60.5, 0.0, 0.0, 7.0, 46.5, 53.5, 0.0 -4.290909090909092,4.29,a-cure-i1,2020-21,17.700000000000003,66.0,New Bedford - John Avery Parker,02010115, 18.9, 0.9, 38.2, 34.0, 0.5, 0.0, 7.5, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,4.7,71.4,New Bedford - John B Devalles,02010050, 16.6, 0.0, 51.3, 28.6, 0.0, 0.0, 3.5, 51.6, 48.4, 0.0 -2.819165378670788,2.82,a-cure-i1,2020-21,11.399999999999999,64.7,New Bedford - Keith Middle School,02010405, 16.0, 0.9, 39.6, 35.3, 0.2, 0.0, 8.1, 54.4, 45.6, 0.0 -3.234042553191489,3.23,a-cure-i1,2020-21,13.299999999999999,65.8,New Bedford - New Bedford High,02010505, 15.3, 1.0, 44.1, 34.2, 0.5, 0.2, 4.8, 52.8, 47.2, 0.0 -2.499047619047619,2.5,a-cure-i1,2020-21,8.2,52.5,New Bedford - Normandin Middle School,02010410, 9.2, 0.7, 37.2, 47.5, 0.6, 0.0, 4.8, 51.1, 48.9, 0.0 -2.353522867737948,2.35,a-cure-i1,2020-21,11.9,80.9,New Bedford - Renaissance Community Innovation School,02010124, 18.0, 0.0, 59.0, 19.1, 0.0, 0.0, 3.9, 44.4, 55.6, 0.0 -2.1333333333333333,2.13,a-cure-i1,2020-21,8.8,66.0,New Bedford - Roosevelt Middle School,02010415, 14.9, 0.3, 45.4, 34.0, 0.0, 0.3, 5.1, 51.1, 48.9, 0.0 -1.6481774960380349,1.65,a-cure-i1,2020-21,6.5,63.1,New Bedford - Sgt Wm H Carney Academy,02010045, 17.4, 1.2, 35.6, 36.9, 0.0, 0.0, 8.9, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,53.1,New Bedford - Thomas R Rodman,02010125, 9.4, 2.5, 35.0, 46.9, 0.0, 0.0, 6.3, 55.6, 44.4, 0.0 -4.032733224222586,4.03,a-cure-i1,2020-21,15.4,61.1,New Bedford - Trinity Day Academy,02010510, 16.8, 0.0, 34.7, 38.9, 0.0, 0.0, 9.5, 63.2, 36.8, 0.0 -1.9151515151515153,1.92,a-cure-i1,2020-21,7.9,66.0,New Bedford - Whaling City Junior/Senior High School,02010515, 22.6, 0.0, 34.0, 34.0, 0.9, 0.0, 8.5, 66.0, 34.0, 0.0 -3.739130434782609,3.74,a-cure-i1,2020-21,8.6,36.8,New Bedford - William H Taylor,02010135, 9.3, 1.2, 16.6, 63.2, 0.0, 0.0, 9.7, 51.0, 49.0, 0.0 -8.105369807497468,5,a-cure-i1,2020-21,50.0,98.7,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 87.2, 1.2, 7.3, 1.3, 0.4, 0.0, 2.6, 49.7, 50.3, 0.0 -86.06451612903223,5,a-cure-i1,2020-21,66.7,12.400000000000006,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 3.9, 87.6, 0.0, 0.0, 8.5, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2020-21,1.6,9.0,Newburyport - Edward G. Molin Elementary School,02040030, 0.7, 1.0, 5.6, 91.0, 0.0, 0.0, 1.7, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.7,10.900000000000006,Newburyport - Francis T Bresnahan Elementary,02040005, 1.1, 1.7, 5.4, 89.1, 0.0, 0.0, 2.8, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.200000000000003,Newburyport - Newburyport High,02040505, 0.5, 2.1, 3.4, 91.8, 0.0, 0.0, 2.2, 49.2, 50.7, 0.1 -14.107526881720437,5,a-cure-i1,2020-21,8.200000000000001,9.299999999999997,Newburyport - Rupert A Nock Middle,02040305, 1.6, 2.2, 3.0, 90.7, 0.0, 0.0, 2.4, 50.9, 49.1, 0.0 -4.392156862745099,4.39,a-cure-i1,2020-21,8.4,30.599999999999994,Newton - A E Angier,02070005, 3.0, 14.0, 4.7, 69.4, 0.0, 0.0, 8.9, 50.0, 50.0, 0.0 -4.386422976501306,4.39,a-cure-i1,2020-21,10.5,38.3,Newton - Bigelow Middle,02070305, 5.9, 15.0, 10.9, 61.7, 0.0, 0.0, 6.5, 47.0, 53.0, 0.0 -9.96875,5,a-cure-i1,2020-21,31.900000000000002,51.2,Newton - Bowen,02070015, 5.3, 27.2, 9.9, 48.8, 0.0, 0.0, 8.8, 50.3, 49.4, 0.3 -11.041322314049587,5,a-cure-i1,2020-21,33.4,48.4,Newton - C C Burr,02070020, 6.2, 22.4, 10.6, 51.6, 0.0, 0.0, 9.1, 52.2, 47.8, 0.0 -3.9718969555035124,3.97,a-cure-i1,2020-21,10.6,42.7,Newton - Cabot,02070025, 6.3, 15.3, 7.1, 57.3, 0.0, 0.5, 13.5, 48.8, 51.2, 0.0 -3.165311653116531,3.17,a-cure-i1,2020-21,7.3,36.9,Newton - Charles E Brown Middle,02070310, 2.9, 21.9, 6.0, 63.1, 0.4, 0.0, 5.7, 50.9, 49.1, 0.0 -1.955193482688391,1.96,a-cure-i1,2020-21,6.0,49.1,Newton - Countryside,02070040, 4.9, 28.7, 6.2, 50.9, 0.0, 0.0, 9.2, 49.6, 50.4, 0.0 -2.639175257731959,2.64,a-cure-i1,2020-21,6.4,38.8,Newton - F A Day Middle,02070315, 4.7, 16.9, 9.2, 61.2, 0.3, 0.2, 7.4, 50.0, 49.9, 0.1 -1,1,a-cure-i1,2020-21,0.0,33.0,Newton - Franklin,02070055, 1.8, 14.2, 8.7, 67.0, 0.0, 0.3, 7.9, 43.0, 57.0, 0.0 -10.043795620437956,5,a-cure-i1,2020-21,25.8,41.1,Newton - Horace Mann,02070075, 4.8, 15.4, 8.2, 58.9, 0.0, 0.0, 12.7, 54.1, 45.9, 0.0 -7.568464730290459,5,a-cure-i1,2020-21,11.4,24.099999999999994,Newton - John Ward,02070120, 2.3, 12.5, 3.2, 75.9, 0.0, 0.0, 6.0, 47.7, 52.3, 0.0 -2.0840336134453783,2.08,a-cure-i1,2020-21,6.2,47.6,Newton - Lincoln-Eliot,02070070, 5.7, 19.5, 12.2, 52.4, 0.3, 0.0, 9.9, 53.8, 45.9, 0.3 -2.706948640483384,2.71,a-cure-i1,2020-21,5.6,33.099999999999994,Newton - Mason-Rice,02070080, 0.8, 19.1, 3.8, 66.9, 0.0, 0.0, 9.3, 51.9, 48.1, 0.0 -3.794871794871795,3.79,a-cure-i1,2020-21,11.1,46.8,Newton - Memorial Spaulding,02070105, 5.2, 27.7, 8.2, 53.2, 0.0, 0.0, 5.7, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,46.4,Newton - Newton Early Childhood Program,02070108, 2.4, 27.2, 6.4, 53.6, 0.0, 0.0, 10.4, 64.8, 35.2, 0.0 -7.074550128534704,5,a-cure-i1,2020-21,17.2,38.9,Newton - Newton North High,02070505, 5.5, 15.3, 10.9, 61.1, 0.1, 0.0, 7.0, 51.4, 48.4, 0.2 -7.044776119402984,5,a-cure-i1,2020-21,17.7,40.2,Newton - Newton South High,02070510, 4.2, 23.1, 6.4, 59.8, 0.1, 0.1, 6.4, 52.3, 47.6, 0.2 -6.085642317380353,5,a-cure-i1,2020-21,15.100000000000001,39.7,Newton - Oak Hill Middle,02070320, 4.8, 23.5, 5.4, 60.3, 0.2, 0.0, 5.9, 52.4, 47.4, 0.2 -1,1,a-cure-i1,2020-21,0.0,42.9,Newton - Peirce,02070100, 3.4, 23.1, 8.8, 57.1, 0.0, 0.0, 7.6, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,48.4,Newton - Underwood,02070115, 3.6, 20.4, 12.4, 51.6, 0.4, 0.0, 11.6, 44.4, 55.6, 0.0 -2.4732824427480917,2.47,a-cure-i1,2020-21,8.1,52.4,Newton - Williams,02070125, 5.3, 33.7, 8.5, 47.6, 0.0, 0.0, 4.9, 55.7, 44.3, 0.0 -2.168958742632613,2.17,a-cure-i1,2020-21,6.9,50.9,Newton - Zervas,02070130, 7.4, 22.9, 9.7, 49.1, 0.5, 0.5, 9.9, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.099999999999994,Norfolk - Freeman-Kennedy School,02080005, 0.2, 2.5, 3.3, 91.9, 0.0, 0.0, 2.1, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.700000000000003,Norfolk - H Olive Day,02080015, 1.3, 2.6, 3.0, 89.3, 0.0, 0.0, 3.8, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.0,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.2, 1.2, 1.4, 91.0, 0.3, 0.3, 4.6, 28.1, 71.8, 0.2 -1,1,a-cure-i1,2020-21,4.5,22.200000000000003,North Adams - Brayton,02090035, 3.1, 0.9, 10.2, 77.8, 0.0, 0.0, 8.0, 60.4, 39.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.099999999999994,North Adams - Colegrove Park Elementary,02090008, 1.5, 0.0, 8.1, 79.9, 0.8, 0.0, 9.7, 56.4, 43.6, 0.0 -1,1,a-cure-i1,2020-21,2.5,17.299999999999997,North Adams - Drury High,02090505, 3.7, 0.6, 5.0, 82.7, 0.0, 0.6, 7.5, 45.6, 54.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.0,North Adams - Greylock,02090015, 0.0, 0.9, 8.7, 79.0, 0.0, 0.0, 11.4, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.8,North Andover - Anne Bradstreet Early Childhood Center,02110005, 2.9, 8.7, 16.6, 66.2, 0.3, 0.0, 5.2, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.900000000000006,North Andover - Annie L Sargent School,02110018, 1.1, 8.7, 6.2, 80.1, 0.0, 0.0, 3.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,40.9,North Andover - Atkinson,02110001, 5.3, 7.4, 25.1, 59.1, 0.0, 0.0, 3.1, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.400000000000006,North Andover - Franklin,02110010, 2.4, 12.1, 8.9, 72.6, 0.0, 0.0, 3.9, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.0,North Andover - Kittredge,02110015, 1.8, 2.6, 10.1, 82.0, 0.0, 0.4, 3.1, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,0.9,23.900000000000006,North Andover - North Andover High,02110505, 3.3, 7.2, 11.3, 76.1, 0.1, 0.1, 2.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.5,North Andover - North Andover Middle,02110305, 3.4, 8.1, 13.6, 70.5, 0.4, 0.0, 4.2, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.400000000000006,North Andover - Thomson,02110020, 1.3, 4.7, 16.7, 73.6, 0.0, 0.0, 3.8, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.9,26.400000000000006,North Attleborough - Amvet Boulevard,02120007, 4.8, 13.1, 4.0, 73.6, 0.7, 0.0, 3.8, 51.5, 48.5, 0.0 -2.4201680672268906,2.42,a-cure-i1,2020-21,5.4,35.7,North Attleborough - Community,02120030, 11.1, 11.5, 7.2, 64.3, 0.0, 0.3, 5.6, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.299999999999997,North Attleborough - Falls,02120010, 3.2, 5.4, 4.3, 82.7, 0.0, 0.0, 4.3, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.599999999999994,North Attleborough - Joseph W Martin Jr Elementary,02120013, 3.6, 3.8, 5.3, 82.4, 0.3, 0.0, 4.6, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2020-21,2.6,20.400000000000006,North Attleborough - North Attleboro High,02120505, 4.5, 7.5, 5.1, 79.6, 0.1, 0.1, 3.1, 51.6, 48.1, 0.3 -1,1,a-cure-i1,2020-21,0.0,34.0,North Attleborough - North Attleborough Early Learning Center,02120020, 4.3, 17.7, 7.8, 66.0, 0.0, 0.0, 4.3, 64.5, 35.5, 0.0 -1,1,a-cure-i1,2020-21,4.2,20.700000000000003,North Attleborough - North Attleborough Middle,02120305, 3.7, 6.4, 5.7, 79.3, 0.1, 0.2, 4.5, 46.7, 53.3, 0.0 -10.962962962962967,5,a-cure-i1,2020-21,7.4,10.799999999999997,North Attleborough - Roosevelt Avenue,02120015, 4.1, 1.5, 2.1, 89.2, 0.5, 0.0, 2.6, 45.9, 54.1, 0.0 -8.069565217391304,5,a-cure-i1,2020-21,5.8,11.5,North Brookfield - North Brookfield Elementary,02150015, 1.4, 1.0, 5.9, 88.5, 0.0, 0.0, 3.1, 51.2, 48.8, 0.0 -12.059701492537307,5,a-cure-i1,2020-21,10.1,13.400000000000006,North Brookfield - North Brookfield High,02150505, 0.5, 0.0, 7.9, 86.6, 0.0, 0.0, 5.1, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.5,North Middlesex - Ashby Elementary,07350010, 2.9, 0.6, 8.1, 85.5, 0.0, 0.0, 2.9, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.200000000000003,North Middlesex - Hawthorne Brook,07350030, 1.2, 2.7, 2.3, 90.8, 0.0, 0.0, 3.1, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,2.4,12.799999999999997,North Middlesex - Nissitissit Middle School,07350310, 2.2, 1.0, 5.6, 87.2, 0.2, 0.0, 3.8, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,1.9,11.5,North Middlesex - North Middlesex Regional,07350505, 1.4, 1.9, 4.5, 88.5, 0.1, 0.1, 3.4, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.599999999999994,North Middlesex - Spaulding Memorial,07350005, 1.8, 2.3, 5.0, 88.4, 0.3, 0.0, 2.3, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.599999999999994,North Middlesex - Squannacook Early Childhood Center,07350002, 6.4, 2.1, 2.1, 89.4, 0.0, 0.0, 0.0, 70.2, 29.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.400000000000006,North Middlesex - Varnum Brook,07350035, 3.4, 1.8, 7.1, 84.6, 0.0, 0.0, 3.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.700000000000003,North Reading - E Ethel Little School,02170003, 1.0, 3.9, 3.2, 87.3, 0.0, 0.0, 4.5, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.099999999999994,North Reading - J Turner Hood,02170010, 1.2, 5.3, 5.6, 84.9, 0.0, 0.3, 2.7, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.099999999999994,North Reading - L D Batchelder,02170005, 0.4, 4.2, 4.6, 86.9, 0.0, 0.0, 3.8, 57.7, 42.3, 0.0 -1,1,a-cure-i1,2020-21,3.6,11.299999999999997,North Reading - North Reading High,02170505, 0.6, 4.5, 2.7, 88.7, 0.3, 0.2, 3.0, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.0,North Reading - North Reading Middle,02170305, 0.4, 4.4, 4.7, 88.0, 0.0, 0.0, 2.6, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,42.9,Northampton - Bridge Street,02100005, 2.5, 3.3, 29.2, 57.1, 0.0, 0.0, 7.9, 52.5, 47.5, 0.0 -4.539944903581268,4.54,a-cure-i1,2020-21,10.3,36.3,Northampton - Jackson Street,02100020, 4.9, 5.8, 15.2, 63.7, 0.0, 0.0, 10.4, 50.6, 48.8, 0.6 -1,1,a-cure-i1,2020-21,0.0,30.799999999999997,Northampton - John F Kennedy Middle School,02100410, 3.9, 2.9, 16.4, 69.2, 0.2, 0.0, 7.5, 49.1, 50.2, 0.6 -1,1,a-cure-i1,2020-21,0.0,30.0,Northampton - Leeds,02100025, 2.0, 1.7, 17.4, 70.0, 0.3, 0.0, 8.5, 56.7, 43.0, 0.3 -5.670886075949366,5,a-cure-i1,2020-21,8.4,23.700000000000003,Northampton - Northampton High,02100505, 2.2, 3.3, 12.4, 76.3, 0.3, 0.0, 5.5, 49.0, 50.6, 0.3 -1,1,a-cure-i1,2020-21,0.0,24.400000000000006,Northampton - R. K. Finn Ryan Road,02100029, 3.8, 1.3, 14.5, 75.6, 0.0, 0.0, 4.7, 54.3, 44.9, 0.9 -1,1,a-cure-i1,2020-21,0.0,16.900000000000006,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.5, 0.6, 13.1, 83.1, 0.0, 0.2, 1.5, 57.8, 42.0, 0.2 -1,1,a-cure-i1,2020-21,0.9,25.200000000000003,Northboro-Southboro - Algonquin Regional High,07300505, 1.5, 12.4, 6.3, 74.8, 0.4, 0.4, 4.2, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,34.0,Northborough - Fannie E Proctor,02130015, 2.9, 16.0, 12.2, 66.0, 0.0, 0.0, 2.9, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.099999999999994,Northborough - Lincoln Street,02130003, 0.4, 11.1, 2.3, 80.9, 1.1, 1.1, 3.1, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.099999999999994,Northborough - Marguerite E Peaslee,02130014, 1.5, 5.8, 8.7, 66.9, 0.4, 10.5, 6.2, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.8,Northborough - Marion E Zeh,02130020, 1.3, 20.0, 8.9, 67.2, 0.4, 0.0, 2.1, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2020-21,4.4,28.599999999999994,Northborough - Robert E. Melican Middle School,02130305, 1.4, 11.6, 10.8, 71.4, 0.6, 0.8, 3.5, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.0,Northbridge - Northbridge Elementary,02140005, 0.8, 0.0, 9.9, 85.0, 0.0, 0.0, 4.2, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.900000000000006,Northbridge - Northbridge High,02140505, 1.3, 1.1, 7.2, 86.1, 0.0, 0.2, 4.0, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,2.4,17.700000000000003,Northbridge - Northbridge Middle,02140305, 0.9, 0.9, 9.7, 82.3, 0.0, 0.0, 6.1, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.400000000000006,Northbridge - W Edward Balmer,02140001, 0.3, 1.0, 8.5, 84.6, 0.3, 0.0, 5.4, 53.7, 46.3, 0.0 -2.447592067988669,2.45,a-cure-i1,2020-21,5.4,35.3,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.5, 0.7, 30.4, 64.7, 0.2, 0.2, 1.4, 55.1, 44.7, 0.2 -1,1,a-cure-i1,2020-21,0.0,4.5,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.8, 0.6, 1.4, 95.5, 0.0, 0.0, 1.8, 59.1, 40.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.299999999999997,Norton - Henri A. Yelle,02180060, 2.0, 0.9, 4.3, 86.7, 0.0, 0.3, 5.8, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.200000000000003,Norton - J C Solmonese,02180015, 1.7, 1.1, 2.8, 89.8, 0.0, 0.0, 4.6, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.200000000000003,Norton - L G Nourse Elementary,02180010, 2.6, 2.6, 6.7, 84.8, 0.4, 0.0, 3.0, 51.9, 48.1, 0.0 -8.470588235294114,5,a-cure-i1,2020-21,5.3999999999999995,10.200000000000003,Norton - Norton High,02180505, 2.0, 2.5, 3.8, 89.8, 0.1, 0.0, 1.8, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.099999999999994,Norton - Norton Middle,02180305, 2.2, 2.3, 3.9, 86.9, 0.3, 0.0, 4.4, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.599999999999994,Norwell - Grace Farrar Cole,02190005, 0.4, 2.1, 0.6, 93.4, 0.0, 0.0, 3.4, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.5,Norwell - Norwell High,02190505, 0.9, 2.5, 2.6, 91.5, 0.0, 0.2, 2.3, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.700000000000003,Norwell - Norwell Middle School,02190405, 0.0, 2.0, 1.0, 93.3, 0.2, 0.0, 3.6, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.299999999999997,Norwell - William G Vinal,02190020, 0.4, 1.6, 1.2, 91.7, 0.0, 0.2, 5.0, 52.3, 47.5, 0.2 -1,1,a-cure-i1,2020-21,0.0,56.5,Norwood - Balch,02200005, 12.9, 5.1, 36.4, 43.5, 0.0, 1.0, 1.0, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,55.4,Norwood - Charles J Prescott,02200025, 5.0, 33.3, 12.0, 44.6, 0.4, 2.3, 2.3, 51.6, 48.4, 0.0 -4.795640326975477,4.8,a-cure-i1,2020-21,11.0,36.7,Norwood - Cornelius M Callahan,02200010, 14.5, 6.8, 10.0, 63.3, 0.0, 0.5, 5.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,36.2,Norwood - Dr. Philip O. Coakley Middle School,02200305, 11.0, 4.7, 17.5, 63.8, 0.0, 0.1, 2.8, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,4.1,28.599999999999994,Norwood - F A Cleveland,02200015, 6.1, 6.4, 11.9, 71.4, 0.0, 0.6, 3.6, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,37.4,Norwood - George F. Willett,02200075, 6.9, 14.1, 12.4, 62.6, 0.0, 1.7, 2.3, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,34.599999999999994,Norwood - John P Oldham,02200020, 13.4, 5.7, 13.4, 65.4, 0.0, 0.4, 1.6, 50.4, 49.6, 0.0 -2.5762711864406773,2.58,a-cure-i1,2020-21,5.699999999999999,35.400000000000006,Norwood - Norwood High,02200505, 11.0, 5.9, 15.6, 64.6, 0.0, 0.2, 2.7, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,2.9,42.8,Oak Bluffs - Oak Bluffs Elementary,02210005, 2.7, 1.4, 31.2, 57.2, 1.0, 0.0, 6.5, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,4.2,6.599999999999994,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.5, 0.9, 2.3, 93.4, 0.2, 0.0, 2.7, 62.3, 37.5, 0.2 -1,1,a-cure-i1,2020-21,4.2,10.599999999999994,Old Rochester - Old Rochester Regional High,07400505, 2.7, 1.4, 2.2, 89.4, 0.1, 0.0, 4.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.900000000000006,Old Rochester - Old Rochester Regional Jr High,07400405, 1.9, 1.4, 1.2, 89.1, 0.0, 0.0, 6.3, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.299999999999997,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 4.6, 1.1, 12.5, 80.7, 0.0, 0.0, 1.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.700000000000003,Orange - Dexter Park,02230010, 1.9, 0.4, 9.8, 83.3, 0.0, 0.0, 4.5, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.900000000000006,Orange - Fisher Hill,02230015, 0.5, 1.0, 6.0, 86.1, 0.5, 0.0, 6.0, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.700000000000003,Orleans - Orleans Elementary,02240005, 3.4, 1.1, 12.6, 78.3, 0.6, 0.0, 4.0, 44.6, 55.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.299999999999997,Oxford - Alfred M Chaffee,02260010, 1.0, 1.5, 12.9, 77.7, 0.0, 0.0, 6.9, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.099999999999994,Oxford - Clara Barton,02260005, 2.5, 0.0, 10.7, 82.9, 0.3, 0.0, 3.7, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,2.7,20.799999999999997,Oxford - Oxford High,02260505, 1.7, 2.2, 12.5, 79.2, 0.2, 0.4, 3.9, 48.3, 51.5, 0.2 -1,1,a-cure-i1,2020-21,0.0,17.299999999999997,Oxford - Oxford Middle,02260405, 1.7, 0.0, 11.2, 82.7, 0.0, 0.0, 4.5, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,2.6,24.799999999999997,Palmer - Old Mill Pond,02270008, 3.9, 2.4, 14.8, 75.2, 0.0, 0.0, 3.7, 50.0, 50.0, 0.0 -5.549549549549548,5,a-cure-i1,2020-21,7.699999999999999,22.200000000000003,Palmer - Palmer High,02270505, 2.7, 2.8, 10.8, 77.8, 0.2, 0.0, 5.7, 52.2, 47.7, 0.2 -1,1,a-cure-i1,2020-21,0.0,6.900000000000006,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.7, 0.0, 3.4, 93.1, 0.0, 0.0, 2.8, 62.5, 36.9, 0.7 -7.078491335372071,5,a-cure-i1,2020-21,43.400000000000006,98.1,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 8.4, 0.4, 89.0, 1.9, 0.0, 0.4, 0.0, 42.2, 57.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.0,Peabody - Captain Samuel Brown,02290005, 4.6, 1.7, 17.6, 74.0, 0.0, 0.3, 1.7, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.2,Peabody - Center,02290015, 7.5, 3.2, 20.0, 66.8, 0.2, 0.0, 2.2, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.700000000000003,Peabody - J Henry Higgins Middle,02290305, 4.4, 1.7, 17.0, 74.3, 0.1, 0.1, 2.4, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.599999999999994,Peabody - John E Burke,02290007, 0.4, 1.2, 8.4, 88.4, 0.0, 0.0, 1.6, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.200000000000003,Peabody - John E. McCarthy,02290016, 5.0, 5.0, 12.3, 73.8, 0.0, 0.0, 4.0, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2020-21,2.6,27.900000000000006,Peabody - Peabody Veterans Memorial High,02290510, 3.6, 2.3, 20.4, 72.1, 0.1, 0.0, 1.5, 52.1, 47.8, 0.1 -1,1,a-cure-i1,2020-21,0.0,20.099999999999994,Peabody - South Memorial,02290035, 2.0, 2.3, 11.3, 79.9, 0.3, 0.0, 4.3, 45.7, 54.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.0,Peabody - Thomas Carroll,02290010, 3.4, 1.1, 27.0, 67.0, 0.2, 0.0, 1.4, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.0,Peabody - West Memorial,02290045, 0.9, 0.9, 3.4, 91.0, 1.7, 0.0, 2.1, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,45.3,Peabody - William A Welch Sr,02290027, 4.4, 0.9, 37.4, 54.7, 0.0, 0.0, 2.6, 51.5, 48.5, 0.0 -7.337931034482759,5,a-cure-i1,2020-21,13.3,29.0,Pelham - Pelham Elementary,02300005, 3.7, 4.7, 15.0, 71.0, 0.0, 0.0, 5.6, 59.8, 39.3, 0.9 -1,1,a-cure-i1,2020-21,0.0,7.099999999999994,Pembroke - Bryantville Elementary,02310003, 0.7, 0.2, 1.8, 92.9, 0.2, 0.0, 4.2, 54.0, 45.8, 0.2 -1,1,a-cure-i1,2020-21,0.0,6.0,Pembroke - Hobomock Elementary,02310010, 0.3, 1.3, 1.8, 94.0, 0.0, 0.0, 2.8, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.0,Pembroke - North Pembroke Elementary,02310015, 0.8, 0.8, 2.5, 92.0, 0.4, 0.0, 3.5, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,3.700000000000003,Pembroke - Pembroke Community Middle School,02310305, 0.2, 0.7, 1.4, 96.3, 0.0, 0.0, 1.4, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,4.5,Pembroke - Pembroke High School,02310505, 0.6, 1.4, 1.4, 95.5, 0.0, 0.0, 1.1, 50.0, 49.9, 0.1 -1,1,a-cure-i1,2020-21,0.0,14.400000000000006,Pentucket - Dr Frederick N Sweetsir,07450020, 0.5, 0.5, 10.4, 85.6, 0.0, 0.0, 3.0, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2020-21,1.3,7.700000000000003,Pentucket - Dr John C Page School,07450015, 0.7, 1.7, 2.7, 92.3, 0.0, 0.0, 2.7, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,1.1,11.200000000000003,Pentucket - Elmer S Bagnall,07450005, 0.2, 0.0, 8.0, 88.8, 0.0, 0.0, 3.0, 54.0, 46.0, 0.0 -8.366972477064216,5,a-cure-i1,2020-21,5.7,10.900000000000006,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 7.6, 89.1, 0.0, 0.0, 3.4, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,0.5,9.200000000000003,Pentucket - Pentucket Regional Middle,07450405, 0.3, 0.9, 6.3, 90.8, 0.3, 0.0, 1.4, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,3.0999999999999996,8.299999999999997,Pentucket - Pentucket Regional Sr High,07450505, 0.7, 2.5, 3.4, 91.7, 0.0, 0.1, 1.5, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.400000000000006,Petersham - Petersham Center,02340005, 0.0, 0.0, 8.1, 88.6, 0.0, 0.0, 3.3, 48.8, 51.2, 0.0 -1.7075773745997864,1.71,a-cure-i1,2020-21,10.0,93.7,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, 0.0, 93.7, 6.3, 0.0, 0.0, 0.0, 62.3, 37.1, 0.6 -12.738853503184712,5,a-cure-i1,2020-21,75.0,94.2,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 12.5, 0.5, 78.4, 5.8, 0.5, 0.5, 1.9, 54.3, 45.7, 0.0 -10.839790575916231,5,a-cure-i1,2020-21,64.7,95.5,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 11.3, 0.0, 82.8, 4.5, 1.4, 0.0, 0.0, 49.8, 50.2, 0.0 -3.065420560747663,3.07,a-cure-i1,2020-21,12.299999999999999,64.2,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 24.9, 6.4, 29.0, 35.8, 1.5, 0.0, 2.4, 48.1, 51.9, 0.0 -8.200263504611328,5,a-cure-i1,2020-21,38.89999999999999,75.9,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 35.4, 12.7, 25.1, 24.1, 0.5, 0.0, 2.2, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,3.799999999999997,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.5, 96.2, 0.0, 0.5, 2.7, 41.8, 58.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.299999999999997,Pioneer Valley - Northfield Elementary,07500008, 0.6, 0.0, 1.8, 91.7, 0.0, 1.2, 4.7, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.200000000000003,Pioneer Valley - Pioneer Valley Regional,07500505, 1.1, 1.4, 1.4, 91.8, 0.0, 0.0, 4.3, 50.7, 49.3, 0.0 -16.093023255813954,5,a-cure-i1,2020-21,51.900000000000006,51.6,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 10.2, 19.6, 8.9, 48.4, 0.0, 0.2, 12.7, 49.3, 50.4, 0.4 -8.0,5,a-cure-i1,2020-21,18.4,36.8,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8.4, 1.0, 19.9, 63.2, 0.0, 0.3, 7.2, 33.5, 66.5, 0.0 -2.0100502512562817,2.01,a-cure-i1,2020-21,5.0,39.8,Pittsfield - Allendale,02360010, 9.7, 1.9, 16.0, 60.2, 1.1, 0.0, 11.2, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2020-21,3.8,57.7,Pittsfield - Crosby,02360065, 13.0, 0.3, 28.7, 42.3, 1.0, 0.0, 14.7, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,42.9,Pittsfield - Crosby Educational Academy,02360030, 9.5, 0.0, 19.0, 57.1, 0.0, 0.0, 14.3, 71.4, 28.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,50.0,Pittsfield - Eagle Education Academy,02360525, 21.9, 0.0, 21.9, 50.0, 0.0, 0.0, 6.3, 75.0, 25.0, 0.0 -2.8186528497409324,2.82,a-cure-i1,2020-21,6.8,38.6,Pittsfield - Egremont,02360035, 8.7, 1.7, 19.6, 61.4, 0.0, 0.0, 8.7, 50.2, 49.8, 0.0 -2.8944723618090453,2.89,a-cure-i1,2020-21,7.199999999999999,39.8,Pittsfield - John T Reid Middle,02360305, 12.2, 1.1, 14.7, 60.2, 0.6, 0.0, 11.2, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,55.0,Pittsfield - Morningside Community School,02360055, 15.6, 0.0, 23.1, 45.0, 0.3, 0.0, 16.1, 49.9, 50.1, 0.0 -4.564564564564565,4.56,a-cure-i1,2020-21,9.5,33.3,Pittsfield - Pittsfield High,02360505, 10.7, 2.1, 14.4, 66.7, 0.1, 0.0, 6.0, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.0,Pittsfield - Robert T. Capeless Elementary School,02360045, 3.6, 0.6, 8.4, 76.0, 0.0, 0.0, 11.4, 44.3, 55.7, 0.0 -1,1,a-cure-i1,2020-21,3.8,63.0,Pittsfield - Silvio O Conte Community,02360105, 22.4, 0.3, 24.5, 37.0, 0.6, 0.0, 15.2, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.599999999999994,Pittsfield - Stearns,02360090, 3.8, 1.0, 10.1, 78.4, 0.0, 0.0, 6.7, 58.2, 41.8, 0.0 -3.270718232044199,3.27,a-cure-i1,2020-21,7.4,36.2,Pittsfield - Taconic High,02360510, 13.7, 1.0, 12.5, 63.8, 0.1, 0.0, 8.9, 48.2, 51.7, 0.1 -1,1,a-cure-i1,2020-21,4.1,33.900000000000006,Pittsfield - Theodore Herberg Middle,02360310, 9.6, 1.3, 15.5, 66.1, 0.2, 0.2, 7.2, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.5,Pittsfield - Williams,02360100, 7.5, 3.9, 11.8, 70.5, 0.0, 0.4, 5.9, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.5,Plainville - Anna Ware Jackson,02380010, 5.8, 3.9, 8.6, 78.5, 0.0, 0.0, 3.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.599999999999994,Plainville - Beatrice H Wood Elementary,02380005, 4.6, 1.9, 7.3, 82.4, 0.0, 0.0, 3.8, 56.3, 43.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.099999999999994,Plymouth - Cold Spring,02390005, 2.6, 3.2, 11.6, 79.9, 0.0, 0.0, 2.6, 42.3, 57.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.400000000000006,Plymouth - Federal Furnace School,02390011, 6.9, 0.9, 5.4, 80.6, 0.0, 0.0, 6.3, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,45.1,Plymouth - Hedge,02390010, 4.3, 1.6, 29.9, 54.9, 0.5, 0.0, 8.7, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,3.0,9.299999999999997,Plymouth - Indian Brook,02390012, 0.6, 0.4, 3.5, 90.7, 0.0, 0.0, 4.8, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.900000000000006,Plymouth - Manomet Elementary,02390015, 1.2, 0.0, 3.6, 90.1, 0.0, 0.0, 5.2, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.799999999999997,Plymouth - Nathaniel Morton Elementary,02390030, 1.4, 0.4, 8.7, 84.2, 0.2, 0.0, 5.1, 55.2, 44.8, 0.0 -4.731182795698926,4.73,a-cure-i1,2020-21,5.5,18.599999999999994,Plymouth - Plymouth Commun Intermediate,02390405, 3.2, 1.3, 9.4, 81.4, 0.0, 0.1, 4.7, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.200000000000003,Plymouth - Plymouth Early Childhood Center,02390003, 0.7, 1.4, 11.3, 83.8, 0.7, 0.0, 2.1, 62.0, 38.0, 0.0 -1,1,a-cure-i1,2020-21,1.1,16.0,Plymouth - Plymouth North High,02390505, 2.3, 1.8, 7.0, 84.0, 0.2, 0.0, 4.7, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,3.0,9.0,Plymouth - Plymouth South High,02390515, 0.8, 0.8, 3.2, 91.0, 0.4, 0.0, 3.8, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,2.2,8.099999999999994,Plymouth - Plymouth South Middle,02390305, 2.0, 0.3, 3.0, 91.9, 0.2, 0.0, 2.7, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,2.7,14.599999999999994,Plymouth - South Elementary,02390046, 1.5, 0.8, 5.4, 85.4, 0.7, 0.2, 6.1, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,4.0,19.200000000000003,Plymouth - West Elementary,02390047, 3.1, 0.9, 5.3, 80.8, 0.0, 0.3, 9.4, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,1.4000000000000057,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 98.6, 0.0, 0.0, 0.5, 52.6, 47.4, 0.0 -6.2959641255605385,5,a-cure-i1,2020-21,35.1,89.2,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 56.9, 7.2, 20.9, 10.8, 0.0, 0.2, 4.0, 50.4, 49.6, 0.0 -4.446183953033268,4.45,a-cure-i1,2020-21,14.2,51.1,Provincetown - Provincetown Schools,02420020, 25.6, 0.8, 14.3, 48.9, 0.0, 0.0, 10.5, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.700000000000003,Quabbin - Hardwick Elementary,07530005, 0.5, 0.5, 11.7, 84.3, 0.5, 0.0, 2.5, 58.4, 41.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.5,Quabbin - Hubbardston Center,07530010, 0.4, 1.6, 6.2, 90.5, 0.0, 0.0, 1.2, 53.9, 46.1, 0.0 -23.23076923076922,5,a-cure-i1,2020-21,15.1,10.400000000000006,Quabbin - New Braintree Grade,07530020, 4.2, 0.0, 0.0, 89.6, 0.0, 0.0, 6.3, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.0,Quabbin - Oakham Center,07530025, 1.6, 1.6, 7.3, 87.0, 0.0, 0.0, 2.4, 46.3, 53.7, 0.0 -1,1,a-cure-i1,2020-21,2.2,8.5,Quabbin - Quabbin Regional High School,07530505, 0.8, 1.4, 4.1, 91.5, 0.2, 0.0, 2.1, 47.6, 51.9, 0.5 -1,1,a-cure-i1,2020-21,0.7,10.5,Quabbin - Quabbin Regional Middle School,07530405, 0.4, 1.2, 7.0, 89.5, 0.2, 0.2, 1.6, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.099999999999994,Quabbin - Ruggles Lane,07530030, 1.5, 1.2, 4.5, 89.9, 0.0, 0.3, 2.7, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.099999999999994,Quaboag Regional - Quaboag Regional High,07780505, 0.6, 0.3, 6.4, 88.9, 0.0, 0.0, 3.9, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.400000000000006,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 1.2, 0.0, 6.9, 89.6, 0.0, 0.0, 2.3, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.200000000000003,Quaboag Regional - Warren Elementary,07780005, 1.3, 0.3, 7.2, 85.8, 0.3, 0.0, 5.1, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.799999999999997,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.4, 7.9, 86.2, 0.0, 0.0, 5.5, 50.0, 49.6, 0.4 -1,1,a-cure-i1,2020-21,0.0,66.4,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 9.4, 38.9, 10.7, 33.6, 0.0, 0.0, 7.4, 63.8, 36.2, 0.0 -1,1,a-cure-i1,2020-21,1.2,34.3,Quincy - Atherton Hough,02430040, 5.1, 16.4, 8.0, 65.7, 0.7, 0.4, 3.6, 56.2, 43.8, 0.0 -1.973875181422351,1.97,a-cure-i1,2020-21,8.5,68.9,Quincy - Atlantic Middle,02430305, 4.4, 55.1, 6.8, 31.1, 0.0, 0.2, 2.4, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.3,63.1,Quincy - Beechwood Knoll Elementary,02430020, 2.3, 57.1, 2.0, 36.9, 0.0, 0.3, 1.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,1.5,39.1,Quincy - Broad Meadows Middle,02430310, 10.7, 17.8, 8.3, 60.9, 0.0, 0.0, 2.4, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,1.5,53.4,Quincy - Central Middle,02430315, 2.8, 43.2, 3.7, 46.6, 0.0, 0.8, 2.9, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,4.8,45.5,Quincy - Charles A Bernazzani Elementary,02430025, 3.1, 31.0, 5.0, 54.5, 0.0, 0.3, 6.2, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,75.0,Quincy - Clifford H Marshall Elementary,02430055, 14.1, 46.3, 13.0, 25.0, 0.2, 0.2, 1.3, 44.2, 55.8, 0.0 -4.363636363636364,4.36,a-cure-i1,2020-21,21.3,78.1,Quincy - Francis W Parker,02430075, 3.3, 68.0, 4.9, 21.9, 0.0, 0.0, 2.0, 52.6, 47.4, 0.0 -2.878186968838527,2.88,a-cure-i1,2020-21,12.7,70.6,Quincy - Lincoln-Hancock Community School,02430035, 8.8, 40.3, 14.2, 29.4, 0.9, 0.4, 6.1, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,41.4,Quincy - Merrymount,02430060, 3.9, 25.6, 5.7, 58.6, 0.3, 0.6, 5.4, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,4.7,78.3,Quincy - Montclair,02430065, 2.7, 66.6, 4.8, 21.7, 0.0, 0.0, 4.1, 49.9, 50.1, 0.0 -2.8544600938967135,2.85,a-cure-i1,2020-21,11.399999999999999,63.9,Quincy - North Quincy High,02430510, 3.8, 52.6, 3.8, 36.1, 0.3, 0.2, 3.2, 53.5, 46.4, 0.1 -1,1,a-cure-i1,2020-21,4.8,73.6,Quincy - Point Webster Middle,02430325, 12.0, 40.0, 14.9, 26.4, 0.5, 1.4, 4.8, 53.5, 46.5, 0.0 -2.656126482213439,2.66,a-cure-i1,2020-21,8.4,50.6,Quincy - Quincy High,02430505, 10.5, 23.0, 12.8, 49.4, 0.3, 0.3, 3.7, 50.2, 49.6, 0.1 -1,1,a-cure-i1,2020-21,0.0,67.3,Quincy - Snug Harbor Community School,02430090, 9.1, 35.5, 16.1, 32.7, 0.3, 0.0, 6.3, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,61.1,Quincy - South West Middle School,02430320, 13.8, 27.4, 13.8, 38.9, 0.3, 0.3, 5.6, 61.6, 38.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,45.4,Quincy - Squantum,02430095, 4.4, 33.0, 4.4, 54.6, 0.3, 0.0, 3.2, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,2.6,70.4,Quincy - Wollaston School,02430110, 2.7, 63.6, 1.8, 29.6, 0.0, 0.3, 2.1, 51.6, 48.4, 0.0 -6.5032258064516135,5,a-cure-i1,2020-21,6.300000000000001,15.5,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.6, 1.8, 7.9, 84.5, 0.2, 0.2, 3.9, 51.7, 48.1, 0.2 -1,1,a-cure-i1,2020-21,2.5,82.5,Randolph - Elizabeth G Lyons Elementary,02440020, 49.5, 11.8, 12.1, 17.5, 0.3, 0.0, 8.8, 53.9, 46.1, 0.0 -1.2027334851936218,1.2,a-cure-i1,2020-21,6.6,87.8,Randolph - J F Kennedy Elementary,02440018, 54.3, 13.6, 14.7, 12.2, 0.3, 0.0, 4.9, 53.3, 46.7, 0.0 -4.062639821029083,4.06,a-cure-i1,2020-21,22.7,89.4,Randolph - Margaret L Donovan,02440015, 47.7, 23.2, 14.3, 10.6, 0.7, 0.0, 3.5, 50.5, 49.3, 0.2 -1.773672055427252,1.77,a-cure-i1,2020-21,9.600000000000001,86.6,Randolph - Martin E Young Elementary,02440040, 41.9, 13.0, 24.1, 13.4, 1.2, 0.0, 6.3, 53.0, 47.0, 0.0 -6.2576966932725195,5,a-cure-i1,2020-21,34.3,87.7,Randolph - Randolph Community Middle,02440410, 46.3, 19.4, 17.4, 12.3, 0.1, 0.3, 4.2, 51.2, 48.8, 0.0 -4.157205240174673,4.16,a-cure-i1,2020-21,23.8,91.6,Randolph - Randolph High,02440505, 53.9, 18.7, 15.9, 8.4, 0.0, 0.0, 3.1, 58.3, 41.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.400000000000006,Reading - Alice M Barrows,02460002, 1.1, 4.5, 3.7, 87.6, 0.0, 0.0, 3.1, 50.8, 49.2, 0.0 -16.45714285714286,5,a-cure-i1,2020-21,7.2,7.0,Reading - Arthur W Coolidge Middle,02460305, 1.5, 2.5, 2.0, 93.0, 0.0, 0.0, 1.0, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.799999999999997,Reading - Birch Meadow,02460005, 2.9, 4.6, 2.9, 87.2, 0.0, 0.0, 2.3, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.700000000000003,Reading - J Warren Killam,02460017, 3.0, 6.3, 2.3, 87.3, 0.0, 0.0, 1.0, 54.7, 45.3, 0.0 -3.378486055776893,3.38,a-cure-i1,2020-21,5.3,25.099999999999994,Reading - Joshua Eaton,02460010, 2.0, 10.4, 7.1, 74.9, 0.3, 0.0, 5.3, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,1.9000000000000001,12.900000000000006,Reading - Reading Memorial High,02460505, 2.7, 5.5, 2.5, 87.1, 0.2, 0.1, 2.0, 50.9, 48.9, 0.2 -1,1,a-cure-i1,2020-21,0.0,18.599999999999994,Reading - RISE PreSchool,02460001, 4.1, 6.2, 4.1, 81.4, 0.0, 0.0, 4.1, 68.0, 32.0, 0.0 -1,1,a-cure-i1,2020-21,2.7,14.900000000000006,Reading - Walter S Parker Middle,02460310, 3.2, 4.6, 4.2, 85.1, 0.0, 0.0, 2.8, 47.5, 52.3, 0.2 -1,1,a-cure-i1,2020-21,0.0,12.0,Reading - Wood End Elementary School,02460020, 2.4, 2.8, 3.2, 88.0, 0.0, 0.0, 3.6, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,2.2,58.2,Revere - A. C. Whelan Elementary School,02480003, 2.6, 3.8, 49.9, 41.8, 0.1, 0.0, 1.9, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,60.9,Revere - Abraham Lincoln,02480025, 4.3, 3.0, 51.4, 39.1, 0.2, 0.0, 2.0, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,63.5,Revere - Beachmont Veterans Memorial School,02480013, 4.8, 2.6, 54.8, 36.5, 0.0, 0.0, 1.3, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2020-21,1.9,75.3,Revere - Garfield Elementary School,02480056, 2.6, 5.0, 65.8, 24.7, 0.2, 0.0, 1.8, 51.1, 48.7, 0.2 -3.443631039531479,3.44,a-cure-i1,2020-21,14.7,68.3,Revere - Garfield Middle School,02480057, 3.5, 4.8, 58.3, 31.7, 0.2, 0.0, 1.6, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,59.3,Revere - Paul Revere,02480050, 3.1, 5.8, 48.0, 40.7, 0.2, 0.0, 2.2, 48.0, 52.0, 0.0 -3.10413694721826,3.1,a-cure-i1,2020-21,13.6,70.1,Revere - Revere High,02480505, 4.0, 5.5, 58.0, 29.9, 0.7, 0.1, 1.7, 50.5, 49.5, 0.1 -1,1,a-cure-i1,2020-21,4.4,67.0,Revere - Rumney Marsh Academy,02480014, 3.3, 5.3, 55.3, 33.0, 0.2, 0.2, 2.7, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,70.4,Revere - Seacoast School,02480520, 3.7, 0.0, 60.5, 29.6, 0.0, 0.0, 6.2, 60.5, 38.3, 1.2 -1,1,a-cure-i1,2020-21,2.5,75.7,Revere - Staff Sargent James J. Hill Elementary School,02480035, 3.0, 3.9, 67.4, 24.3, 0.1, 0.0, 1.3, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,2.4,69.7,Revere - Susan B. Anthony Middle School,02480305, 4.0, 2.1, 62.6, 30.3, 0.0, 0.0, 1.0, 42.6, 57.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.5,Richmond - Richmond Consolidated,02490005, 1.3, 0.0, 7.2, 87.5, 0.0, 0.0, 3.9, 50.0, 50.0, 0.0 -11.428571428571429,5,a-cure-i1,2020-21,10.0,14.0,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.9, 1.4, 3.8, 86.0, 1.1, 0.0, 6.9, 50.6, 49.2, 0.2 -1,1,a-cure-i1,2020-21,0.0,11.799999999999997,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 1.4, 5.2, 88.2, 0.3, 0.0, 4.5, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2020-21,3.6,7.099999999999994,Rochester - Rochester Memorial,02500005, 0.2, 0.0, 2.5, 92.9, 0.0, 0.0, 4.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.299999999999997,Rockland - Jefferson Elementary School,02510060, 4.3, 1.7, 19.2, 69.7, 0.0, 0.0, 5.1, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.400000000000006,Rockland - John W Rogers Middle,02510305, 6.8, 1.4, 16.3, 71.6, 0.0, 0.0, 3.8, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.5,Rockland - Memorial Park,02510020, 3.5, 0.4, 19.9, 69.5, 0.0, 0.0, 6.6, 52.0, 48.0, 0.0 -4.136054421768707,4.14,a-cure-i1,2020-21,7.6,29.400000000000006,Rockland - R Stewart Esten,02510025, 7.9, 1.3, 14.9, 70.6, 0.0, 0.0, 5.4, 52.2, 47.8, 0.0 -3.7740863787375423,3.77,a-cure-i1,2020-21,7.1,30.099999999999994,Rockland - Rockland Senior High,02510505, 6.7, 1.3, 17.8, 69.9, 0.0, 0.0, 4.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.599999999999994,Rockport - Rockport Elementary,02520005, 0.3, 1.3, 3.0, 93.4, 0.0, 0.0, 2.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.400000000000006,Rockport - Rockport High,02520510, 1.6, 1.2, 4.7, 88.6, 0.0, 0.0, 3.9, 56.9, 43.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.900000000000006,Rockport - Rockport Middle,02520305, 0.0, 3.5, 3.5, 89.1, 0.0, 0.0, 4.0, 46.5, 53.5, 0.0 -10.105263157894736,5,a-cure-i1,2020-21,12.0,19.0,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 4.8, 81.0, 0.0, 0.0, 14.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,98.7,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 56.2, 0.6, 40.3, 1.3, 0.3, 0.1, 1.3, 53.1, 46.9, 0.1 -1,1,a-cure-i1,2020-21,0.0,82.3,Sabis International Charter (District) - Sabis International Charter School,04410505, 28.0, 3.7, 45.2, 17.7, 0.0, 0.0, 5.5, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,46.4,Salem - Bates,02580003, 7.2, 1.1, 33.7, 53.6, 0.0, 0.0, 4.4, 50.0, 50.0, 0.0 -1.0843989769820972,1.08,a-cure-i1,2020-21,5.3,78.2,Salem - Bentley Academy Innovation School,02580010, 11.2, 1.9, 62.3, 21.8, 0.0, 0.0, 2.8, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,46.1,Salem - Carlton,02580015, 3.5, 1.2, 35.5, 53.9, 0.0, 0.0, 5.9, 51.6, 48.4, 0.0 -4.869565217391305,4.87,a-cure-i1,2020-21,17.5,57.5,Salem - Collins Middle,02580305, 7.4, 3.2, 42.5, 42.5, 0.0, 0.0, 4.3, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2020-21,2.3000000000000003,63.3,Salem - Horace Mann Laboratory,02580030, 7.0, 4.1, 48.5, 36.7, 0.0, 0.0, 3.7, 48.9, 51.1, 0.0 -3.225806451612903,3.23,a-cure-i1,2020-21,12.5,62.0,Salem - New Liberty Innovation School,02580510, 2.0, 0.0, 48.0, 38.0, 0.0, 0.0, 12.0, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,54.1,Salem - Salem Early Childhood,02580001, 11.5, 1.6, 36.1, 45.9, 0.0, 0.0, 4.9, 73.8, 26.2, 0.0 -2.046511627906977,2.05,a-cure-i1,2020-21,7.7,60.2,Salem - Salem High,02580505, 5.0, 3.0, 47.6, 39.8, 0.1, 0.0, 4.5, 55.2, 44.7, 0.1 -7.954285714285714,5,a-cure-i1,2020-21,17.4,35.0,Salem - Salem Prep High School,02580515, 0.0, 5.0, 25.0, 65.0, 0.0, 0.0, 5.0, 70.0, 30.0, 0.0 -1,1,a-cure-i1,2020-21,1.8,52.7,Salem - Saltonstall School,02580050, 5.1, 2.0, 40.7, 47.3, 0.0, 0.0, 4.9, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,54.3,Salem - Witchcraft Heights,02580070, 8.1, 4.1, 37.6, 45.7, 0.0, 0.0, 4.5, 50.0, 50.0, 0.0 -3.7707006369426757,3.77,a-cure-i1,2020-21,14.8,62.8,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 11.1, 5.9, 44.0, 37.2, 0.0, 0.0, 1.8, 48.1, 51.5, 0.4 -1,1,a-cure-i1,2020-21,0.0,10.400000000000006,Sandwich - Forestdale School,02610002, 1.7, 3.0, 4.3, 89.6, 0.4, 0.2, 0.9, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.200000000000003,Sandwich - Oak Ridge,02610025, 1.5, 2.7, 4.9, 88.8, 0.4, 0.3, 1.4, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,2.9,5.599999999999994,Sandwich - Sandwich High,02610505, 0.0, 2.0, 1.7, 94.4, 1.1, 0.2, 0.6, 48.5, 51.3, 0.2 -11.157894736842113,5,a-cure-i1,2020-21,5.3,7.599999999999994,Sandwich - Sandwich STEM Academy,02610305, 1.8, 2.1, 1.8, 92.4, 0.7, 0.0, 1.2, 49.5, 50.2, 0.2 -1,1,a-cure-i1,2020-21,0.0,30.099999999999994,Saugus - Douglas Waybright,02620067, 1.2, 4.3, 19.6, 69.9, 1.2, 0.6, 3.1, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.900000000000006,Saugus - Lynnhurst,02620040, 4.6, 11.6, 14.4, 68.1, 1.4, 0.0, 0.0, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,43.8,Saugus - Oaklandvale,02620050, 6.5, 6.5, 25.4, 56.2, 0.5, 0.0, 5.0, 50.7, 49.3, 0.0 -3.4249201277955277,3.42,a-cure-i1,2020-21,6.7,31.299999999999997,Saugus - Saugus High,02620505, 5.7, 4.6, 18.8, 68.7, 0.6, 0.1, 1.5, 51.6, 48.2, 0.1 -1,1,a-cure-i1,2020-21,0.0,37.4,Saugus - Saugus Middle School,02620305, 5.8, 4.3, 22.8, 62.6, 1.1, 0.6, 2.7, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,35.7,Saugus - Veterans Memorial,02620065, 5.3, 4.1, 21.5, 64.3, 0.5, 0.0, 4.3, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,4.5,Savoy - Emma L Miller Elementary School,02630010, 2.3, 0.0, 2.3, 95.5, 0.0, 0.0, 0.0, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.299999999999997,Scituate - Cushing Elementary,02640007, 1.2, 0.9, 0.9, 92.7, 0.3, 0.3, 3.6, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2020-21,2.2,10.200000000000003,Scituate - Gates Middle School,02640305, 3.9, 0.6, 2.7, 89.8, 0.2, 0.0, 2.8, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,5.099999999999994,Scituate - Hatherly Elementary,02640010, 1.6, 0.0, 2.0, 94.9, 0.0, 0.0, 1.6, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.700000000000003,Scituate - Jenkins Elementary School,02640015, 4.1, 0.0, 3.1, 89.3, 0.0, 0.0, 3.4, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,3.0,6.200000000000003,Scituate - Scituate High School,02640505, 2.4, 1.2, 1.4, 93.8, 0.0, 0.0, 1.2, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.400000000000006,Scituate - Wampatuck Elementary,02640020, 1.8, 0.0, 3.6, 92.6, 0.0, 0.0, 2.1, 51.5, 48.5, 0.0 -5.780645161290322,5,a-cure-i1,2020-21,5.6,15.5,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 2.1, 4.0, 5.2, 84.5, 0.0, 0.0, 4.2, 53.1, 46.2, 0.6 -1,1,a-cure-i1,2020-21,0.0,17.799999999999997,Seekonk - George R Martin,02650007, 2.9, 3.1, 6.9, 82.2, 0.0, 0.0, 5.0, 44.9, 55.1, 0.0 -10.270270270270272,5,a-cure-i1,2020-21,9.5,14.799999999999997,Seekonk - Mildred Aitken School,02650015, 1.7, 2.6, 6.8, 85.2, 0.0, 0.0, 3.7, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2020-21,2.5,15.599999999999994,Seekonk - Seekonk High,02650505, 2.7, 3.9, 5.6, 84.4, 0.0, 0.2, 3.2, 48.6, 51.2, 0.2 -1,1,a-cure-i1,2020-21,0.0,49.9,Sharon - Cottage Street,02660005, 4.7, 29.2, 7.5, 50.1, 0.0, 0.0, 8.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,1.0,45.9,Sharon - East Elementary,02660010, 4.3, 27.8, 7.1, 54.1, 0.0, 0.0, 6.7, 51.8, 48.0, 0.2 -1,1,a-cure-i1,2020-21,0.0,49.9,Sharon - Heights Elementary,02660015, 5.7, 32.8, 5.0, 50.1, 0.2, 0.0, 6.3, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,48.4,Sharon - Sharon Early Childhood Center,02660001, 0.0, 38.7, 3.2, 51.6, 0.0, 0.0, 6.5, 54.8, 45.2, 0.0 -2.385321100917431,2.39,a-cure-i1,2020-21,6.5,43.6,Sharon - Sharon High,02660505, 5.3, 28.1, 5.6, 56.4, 0.1, 0.2, 4.3, 53.1, 46.8, 0.1 -1.9070707070707071,1.91,a-cure-i1,2020-21,5.9,49.5,Sharon - Sharon Middle,02660305, 4.6, 32.3, 5.4, 50.5, 0.1, 0.1, 7.0, 49.3, 50.6, 0.1 -1,1,a-cure-i1,2020-21,1.3,9.599999999999994,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.9, 0.8, 5.8, 90.4, 0.4, 0.0, 1.6, 60.6, 39.4, 0.0 -1,1,a-cure-i1,2020-21,3.3,22.0,Sherborn - Pine Hill,02690010, 3.1, 8.4, 4.6, 78.0, 0.0, 0.0, 5.9, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,1.0,66.5,Shrewsbury - Beal School,02710005, 1.6, 51.4, 10.0, 33.5, 0.4, 0.0, 3.2, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,58.8,Shrewsbury - Calvin Coolidge,02710015, 4.0, 34.9, 14.4, 41.2, 0.7, 0.0, 4.9, 53.0, 47.0, 0.0 -1.2941176470588236,1.29,a-cure-i1,2020-21,5.5,68.0,Shrewsbury - Floral Street School,02710020, 3.1, 50.7, 8.4, 32.0, 1.5, 0.0, 4.4, 52.7, 47.3, 0.0 -3.1111111111111116,3.11,a-cure-i1,2020-21,9.8,50.4,Shrewsbury - Oak Middle School,02710030, 3.0, 33.4, 9.2, 49.6, 0.3, 0.0, 4.4, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,57.3,Shrewsbury - Parker Road Preschool,02710040, 9.1, 29.1, 10.0, 42.7, 0.0, 0.0, 9.1, 69.1, 30.9, 0.0 -1,1,a-cure-i1,2020-21,2.7,53.1,Shrewsbury - Sherwood Middle School,02710305, 3.1, 35.7, 9.9, 46.9, 0.3, 0.0, 4.1, 49.0, 51.0, 0.0 -2.7397260273972606,2.74,a-cure-i1,2020-21,7.5,43.8,Shrewsbury - Shrewsbury Sr High,02710505, 3.6, 27.2, 8.8, 56.2, 0.4, 0.0, 3.7, 46.6, 53.3, 0.1 -1,1,a-cure-i1,2020-21,0.0,39.8,Shrewsbury - Spring Street,02710035, 2.4, 26.5, 5.4, 60.2, 0.3, 0.0, 5.1, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,34.0,Shrewsbury - Walter J Paton,02710025, 3.1, 19.4, 6.6, 66.0, 0.6, 0.0, 4.3, 48.6, 51.4, 0.0 -17.093167701863358,5,a-cure-i1,2020-21,17.2,16.099999999999994,Shutesbury - Shutesbury Elementary,02720005, 1.8, 0.9, 8.9, 83.9, 0.9, 0.0, 3.6, 42.9, 57.1, 0.0 -1,1,a-cure-i1,2020-21,3.5999999999999996,6.200000000000003,Silver Lake - Silver Lake Regional High,07600505, 1.4, 1.2, 2.4, 93.8, 0.3, 0.0, 0.9, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.099999999999994,Silver Lake - Silver Lake Regional Middle School,07600405, 1.0, 0.6, 3.4, 92.9, 0.6, 0.0, 1.5, 49.1, 50.7, 0.2 -4.065573770491803,4.07,a-cure-i1,2020-21,9.3,36.6,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 6.3, 1.4, 25.7, 63.4, 0.5, 0.0, 2.7, 55.7, 44.0, 0.3 -1,1,a-cure-i1,2020-21,0.0,8.299999999999997,Somerset - Chace Street,02730005, 0.3, 2.2, 4.0, 91.7, 0.0, 0.0, 1.8, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.200000000000003,Somerset - North Elementary,02730008, 0.2, 0.9, 4.5, 89.8, 0.0, 0.0, 4.5, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.900000000000006,Somerset - Somerset Middle School,02730305, 1.0, 2.0, 5.0, 89.1, 0.3, 0.0, 2.6, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.099999999999994,Somerset - South,02730015, 0.8, 2.0, 6.1, 86.9, 0.8, 0.0, 3.3, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,1.5,7.400000000000006,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 1.0, 0.5, 4.3, 92.6, 0.2, 0.1, 1.4, 49.7, 50.3, 0.0 -1.9504761904761905,1.95,a-cure-i1,2020-21,6.4,52.5,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 4.7, 8.1, 34.4, 47.5, 0.3, 0.0, 4.9, 51.2, 48.8, 0.0 -4.0,4.0,a-cure-i1,2020-21,18.1,72.4,Somerville - Arthur D Healey,02740075, 15.5, 4.5, 48.2, 27.6, 0.0, 0.0, 4.3, 49.6, 50.2, 0.2 -1,1,a-cure-i1,2020-21,0.0,36.0,Somerville - Benjamin G Brown,02740015, 4.9, 11.1, 7.6, 64.0, 0.0, 0.4, 12.0, 40.9, 58.7, 0.4 -1,1,a-cure-i1,2020-21,4.5,61.9,Somerville - Capuano Early Childhood Center,02740005, 8.9, 11.4, 33.2, 38.1, 0.0, 0.0, 8.4, 58.4, 41.6, 0.0 -3.994981179422836,3.99,a-cure-i1,2020-21,19.900000000000002,79.7,Somerville - E Somerville Community,02740111, 3.5, 3.8, 69.9, 20.3, 0.1, 0.0, 2.5, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2020-21,4.8,71.4,Somerville - Full Circle High School,02740510, 16.1, 1.8, 53.6, 28.6, 0.0, 0.0, 0.0, 69.6, 30.4, 0.0 -8.784313725490199,5,a-cure-i1,2020-21,16.8,30.599999999999994,Somerville - John F Kennedy,02740083, 4.9, 5.3, 14.2, 69.4, 0.0, 0.0, 6.2, 51.9, 47.9, 0.2 -2.837653478854025,2.84,a-cure-i1,2020-21,13.0,73.3,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 60.0, 26.7, 0.0, 0.0, 13.3, 86.7, 13.3, 0.0 -5.07197549770291,5,a-cure-i1,2020-21,20.7,65.3,Somerville - Somerville High,02740505, 10.9, 6.2, 45.9, 34.7, 0.1, 0.2, 2.1, 51.5, 48.2, 0.2 -5.971291866028709,5,a-cure-i1,2020-21,15.600000000000001,41.8,Somerville - West Somerville Neighborhood,02740115, 11.8, 5.8, 12.9, 58.2, 0.0, 0.3, 11.1, 53.2, 46.6, 0.3 -3.558073654390935,3.56,a-cure-i1,2020-21,15.7,70.6,Somerville - Winter Hill Community,02740120, 11.0, 5.6, 51.4, 29.4, 0.0, 0.5, 2.0, 54.2, 45.5, 0.3 -1,1,a-cure-i1,2020-21,0.0,21.0,South Hadley - Michael E. Smith Middle School,02780305, 1.3, 1.7, 16.8, 79.0, 0.2, 0.0, 1.0, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2020-21,3.8,23.400000000000006,South Hadley - Mosier,02780020, 1.4, 1.7, 16.5, 76.6, 0.0, 0.0, 3.8, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.5,South Hadley - Plains Elementary,02780015, 1.6, 2.7, 17.3, 72.5, 0.0, 0.0, 5.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,1.6,20.799999999999997,South Hadley - South Hadley High,02780505, 2.5, 2.1, 13.1, 79.2, 0.0, 0.0, 3.2, 49.6, 50.3, 0.2 -1.7676190476190476,1.77,a-cure-i1,2020-21,5.8,52.5,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 4.9, 1.3, 41.1, 47.5, 2.1, 0.0, 3.1, 57.5, 42.1, 0.4 -3.917137476459511,3.92,a-cure-i1,2020-21,13.000000000000002,53.1,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 35.1, 5.6, 5.9, 46.9, 0.4, 0.0, 6.0, 51.0, 48.6, 0.4 -1,1,a-cure-i1,2020-21,2.0,8.799999999999997,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 1.7, 1.1, 4.6, 91.2, 0.3, 0.0, 1.1, 67.6, 32.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.099999999999994,Southampton - William E Norris,02750005, 0.2, 1.6, 6.9, 87.9, 0.0, 0.0, 3.3, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.5,Southborough - Albert S. Woodward Memorial School,02760050, 0.4, 13.4, 4.3, 75.5, 0.0, 0.0, 6.3, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.599999999999994,Southborough - Margaret A Neary,02760020, 1.6, 18.3, 3.2, 69.4, 0.4, 0.0, 7.1, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,39.4,Southborough - Mary E Finn School,02760008, 3.3, 26.1, 7.0, 60.6, 0.3, 0.0, 2.7, 53.6, 46.4, 0.0 -2.56,2.56,a-cure-i1,2020-21,5.2,32.5,Southborough - P Brent Trottier,02760305, 1.3, 18.4, 7.3, 67.5, 0.0, 0.0, 5.5, 50.9, 49.1, 0.0 -1.4683544303797467,1.47,a-cure-i1,2020-21,5.8,63.2,Southbridge - Charlton Street,02770005, 1.5, 1.1, 58.7, 36.8, 0.4, 0.4, 1.1, 51.7, 48.3, 0.0 -1.1843575418994414,1.18,a-cure-i1,2020-21,5.3,71.6,Southbridge - Eastford Road,02770010, 1.4, 1.4, 67.0, 28.4, 0.0, 0.0, 1.7, 50.9, 49.1, 0.0 -3.856873822975518,3.86,a-cure-i1,2020-21,12.8,53.1,Southbridge - Southbridge Academy,02770525, 2.0, 0.0, 44.9, 46.9, 0.0, 0.0, 6.1, 67.3, 32.7, 0.0 -4.564841498559078,4.56,a-cure-i1,2020-21,19.8,69.4,Southbridge - Southbridge High School,02770515, 1.7, 1.5, 64.7, 30.6, 0.4, 0.0, 1.1, 56.5, 43.5, 0.0 -2.546546546546547,2.55,a-cure-i1,2020-21,10.6,66.6,Southbridge - Southbridge Middle School,02770315, 2.1, 1.7, 59.2, 33.4, 0.2, 0.0, 3.3, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,69.3,Southbridge - West Street,02770020, 0.3, 0.6, 66.5, 30.7, 0.0, 0.0, 1.9, 46.3, 53.7, 0.0 -2.67595818815331,2.68,a-cure-i1,2020-21,9.6,57.4,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 35.8, 1.7, 14.1, 42.6, 0.0, 0.0, 5.7, 47.6, 52.3, 0.1 -7.656441717791413,5,a-cure-i1,2020-21,7.800000000000001,16.299999999999997,Southern Berkshire - Mt Everett Regional,07650505, 2.2, 0.3, 7.7, 83.7, 0.6, 0.0, 5.5, 50.8, 49.2, 0.0 -24.408759124087588,5,a-cure-i1,2020-21,20.900000000000002,13.700000000000003,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 8.2, 86.3, 2.7, 0.0, 2.7, 49.3, 50.7, 0.0 -16.955223880597007,5,a-cure-i1,2020-21,7.1,6.700000000000003,Southern Berkshire - South Egremont,07650030, 6.7, 0.0, 0.0, 93.3, 0.0, 0.0, 0.0, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2020-21,3.4,15.900000000000006,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 11.6, 84.1, 0.0, 0.0, 4.3, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,2.7,14.900000000000006,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.9, 0.7, 11.4, 85.1, 0.1, 0.0, 1.8, 58.0, 42.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.599999999999994,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.6, 0.9, 5.2, 89.4, 0.5, 0.0, 2.4, 52.5, 47.5, 0.0 -14.8910891089109,5,a-cure-i1,2020-21,9.4,10.099999999999994,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 2.2, 1.2, 4.6, 89.9, 0.3, 0.0, 1.8, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.5,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 1.7, 0.7, 6.4, 87.5, 0.3, 0.0, 3.4, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.200000000000003,Spencer-E Brookfield - David Prouty High,07670505, 3.7, 2.3, 16.8, 73.8, 0.3, 0.0, 3.0, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.299999999999997,Spencer-E Brookfield - East Brookfield Elementary,07670008, 1.6, 0.0, 10.5, 81.7, 0.5, 0.0, 5.8, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.200000000000003,Spencer-E Brookfield - Knox Trail Middle School,07670415, 2.2, 2.0, 13.6, 77.8, 0.2, 0.0, 4.2, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.799999999999997,Spencer-E Brookfield - Wire Village School,07670040, 2.7, 0.7, 19.9, 73.2, 0.0, 0.0, 3.4, 55.1, 44.6, 0.2 -1.54,1.54,a-cure-i1,2020-21,7.7,80.0,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 21.7, 0.0, 53.9, 20.0, 0.2, 0.0, 4.2, 44.4, 55.6, 0.0 -1.0571108622620382,1.06,a-cure-i1,2020-21,5.9,89.3,Springfield - Alice B Beal Elementary,02810175, 16.9, 10.7, 58.1, 10.7, 0.0, 0.0, 3.7, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,89.8,Springfield - Arthur T Talmadge,02810165, 22.9, 0.4, 61.4, 10.2, 0.0, 0.0, 5.1, 52.5, 47.5, 0.0 -4.294736842105263,4.29,a-cure-i1,2020-21,25.5,95.0,Springfield - Balliet Middle School,02810360, 40.0, 0.0, 55.0, 5.0, 0.0, 0.0, 0.0, 75.0, 25.0, 0.0 -2.6035015447991765,2.6,a-cure-i1,2020-21,15.8,97.1,Springfield - Brightwood,02810025, 16.7, 0.0, 79.8, 2.9, 0.0, 0.0, 0.6, 51.2, 48.5, 0.3 -0.8661899897854953,1,a-cure-i1,2020-21,5.3,97.9,Springfield - Chestnut Academy,02810365, 9.5, 1.1, 87.4, 2.1, 0.0, 0.0, 0.0, 51.6, 48.4, 0.0 -11.313131313131313,5,a-cure-i1,2020-21,63.0,89.1,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 19.6, 4.0, 63.6, 10.9, 0.0, 0.0, 1.9, 51.4, 48.6, 0.0 -9.142857142857142,5,a-cure-i1,2020-21,50.4,88.2,Springfield - Conservatory of the Arts,02810475, 16.0, 0.3, 69.8, 11.8, 0.0, 0.3, 1.8, 29.9, 70.1, 0.0 -1.4716981132075473,1.47,a-cure-i1,2020-21,7.8,84.8,Springfield - Daniel B Brunton,02810035, 18.6, 1.2, 62.6, 15.2, 0.2, 0.0, 2.1, 50.2, 49.8, 0.0 -3.391206313416009,3.39,a-cure-i1,2020-21,18.8,88.7,Springfield - Early Childhood Education Center,02810001, 16.1, 3.2, 63.7, 11.3, 0.0, 0.0, 5.6, 56.5, 43.5, 0.0 -2.5317545748116252,2.53,a-cure-i1,2020-21,14.700000000000001,92.9,Springfield - Edward P. Boland School,02810010, 9.8, 1.0, 79.7, 7.1, 0.2, 0.0, 2.2, 57.9, 42.1, 0.0 -6.0211416490486265,5,a-cure-i1,2020-21,35.6,94.6,Springfield - Elias Brookings,02810030, 19.9, 0.7, 70.7, 5.4, 0.7, 0.0, 2.7, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,100.0,Springfield - Emergence Academy,02810318, 30.8, 0.0, 69.2, 0.0, 0.0, 0.0, 0.0, 61.5, 38.5, 0.0 -1.5605573419078242,1.56,a-cure-i1,2020-21,9.1,93.3,Springfield - Forest Park Middle,02810325, 20.1, 4.4, 66.0, 6.7, 0.0, 0.0, 2.8, 53.0, 47.0, 0.0 -4.5438596491228065,4.54,a-cure-i1,2020-21,25.9,91.2,Springfield - Frank H Freedman,02810075, 23.2, 2.2, 61.4, 8.8, 0.7, 0.0, 3.7, 51.1, 48.9, 0.0 -3.120496894409938,3.12,a-cure-i1,2020-21,15.7,80.5,Springfield - Frederick Harris,02810080, 19.8, 4.0, 51.0, 19.5, 0.6, 0.0, 5.0, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,93.9,Springfield - Gateway to College at Holyoke Community College,02810575, 9.1, 0.0, 84.8, 6.1, 0.0, 0.0, 0.0, 24.2, 75.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,56.0,Springfield - Gateway to College at Springfield Technical Community College,02810580, 16.0, 0.0, 40.0, 44.0, 0.0, 0.0, 0.0, 32.0, 68.0, 0.0 -3.7327677624602336,3.73,a-cure-i1,2020-21,22.0,94.3,Springfield - German Gerena Community School,02810195, 16.6, 0.6, 74.7, 5.7, 0.3, 0.0, 2.0, 51.2, 48.8, 0.0 -0.9931034482758622,1,a-cure-i1,2020-21,5.4,87.0,Springfield - Glenwood,02810065, 5.4, 2.5, 76.4, 13.0, 0.0, 0.0, 2.5, 51.8, 48.2, 0.0 -3.2288613303269442,3.23,a-cure-i1,2020-21,17.9,88.7,Springfield - Glickman Elementary,02810068, 17.1, 2.4, 64.4, 11.3, 0.3, 0.0, 4.5, 55.8, 44.2, 0.0 -6.68528464017186,5,a-cure-i1,2020-21,38.900000000000006,93.1,Springfield - High School Of Commerce,02810510, 18.7, 1.6, 71.1, 6.9, 0.3, 0.2, 1.2, 50.5, 49.5, 0.0 -2.8629671574178936,2.86,a-cure-i1,2020-21,15.8,88.3,Springfield - Hiram L Dorman,02810050, 17.5, 2.1, 65.0, 11.7, 0.0, 0.0, 3.8, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,4.0,95.9,Springfield - Homer Street,02810085, 22.1, 0.8, 71.0, 4.1, 0.0, 0.0, 2.0, 52.9, 47.1, 0.0 -11.291191709844558,5,a-cure-i1,2020-21,68.1,96.5,Springfield - Impact Prep at Chestnut,02810366, 14.0, 0.0, 81.2, 3.5, 0.0, 0.0, 1.3, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,2.8,88.4,Springfield - Indian Orchard Elementary,02810100, 17.4, 0.3, 67.7, 11.6, 0.3, 0.0, 2.6, 54.7, 45.3, 0.0 -7.153762268266084,5,a-cure-i1,2020-21,41.0,91.7,Springfield - John F Kennedy Middle,02810328, 19.5, 0.8, 69.9, 8.3, 0.0, 0.0, 1.5, 51.0, 49.0, 0.0 -7.027522935779816,5,a-cure-i1,2020-21,38.3,87.2,Springfield - John J Duggan Middle,02810320, 26.3, 2.4, 56.9, 12.8, 0.3, 0.0, 1.3, 52.7, 47.3, 0.0 -1.5472527472527473,1.55,a-cure-i1,2020-21,8.8,91.0,Springfield - Kensington International School,02810110, 12.0, 2.3, 72.9, 9.0, 0.8, 0.0, 3.0, 46.2, 53.8, 0.0 -4.924424972617744,4.92,a-cure-i1,2020-21,28.1,91.3,Springfield - Kiley Academy,02810316, 23.5, 0.0, 66.1, 8.7, 0.0, 0.0, 1.7, 56.5, 43.5, 0.0 -5.512459371614302,5,a-cure-i1,2020-21,31.8,92.3,Springfield - Kiley Prep,02810315, 24.0, 2.9, 62.5, 7.7, 0.0, 0.0, 2.9, 56.7, 43.3, 0.0 -0.9525909592061742,1,a-cure-i1,2020-21,5.4,90.7,Springfield - Liberty,02810115, 13.5, 1.4, 74.7, 9.3, 0.3, 0.0, 0.7, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.599999999999994,Springfield - Liberty Preparatory Academy,02810560, 14.3, 0.0, 14.3, 71.4, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0 -3.9958376690946933,4.0,a-cure-i1,2020-21,24.0,96.1,Springfield - Lincoln,02810120, 9.6, 0.2, 84.1, 3.9, 0.0, 0.0, 2.2, 47.5, 52.5, 0.0 -5.041540020263424,5,a-cure-i1,2020-21,31.099999999999998,98.7,Springfield - Lyceum Academy,02810317, 9.4, 0.0, 88.9, 1.3, 0.0, 0.0, 0.3, 55.5, 44.5, 0.0 -6.56953642384106,5,a-cure-i1,2020-21,37.2,90.6,Springfield - M Marcus Kiley Middle,02810330, 21.6, 1.7, 65.1, 9.4, 0.2, 0.0, 2.1, 54.9, 45.1, 0.0 -3.4820457018498367,3.48,a-cure-i1,2020-21,20.0,91.9,Springfield - Margaret C Ells,02810060, 17.8, 1.5, 67.4, 8.1, 0.7, 0.0, 4.4, 61.5, 38.5, 0.0 -1.990049751243781,1.99,a-cure-i1,2020-21,10.0,80.4,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 19.9, 8.7, 48.2, 19.6, 0.3, 0.0, 3.2, 51.4, 48.6, 0.0 -2.2857142857142856,2.29,a-cure-i1,2020-21,13.0,91.0,Springfield - Mary M Lynch,02810140, 21.5, 1.7, 65.7, 9.0, 0.0, 0.0, 2.1, 44.2, 55.8, 0.0 -5.630289532293987,5,a-cure-i1,2020-21,31.6,89.8,Springfield - Mary M Walsh,02810155, 18.6, 0.4, 69.1, 10.2, 0.4, 0.0, 1.4, 51.2, 48.8, 0.0 -3.5437430786268,3.54,a-cure-i1,2020-21,20.0,90.3,Springfield - Mary O Pottenger,02810145, 10.6, 2.4, 73.5, 9.7, 0.5, 0.0, 3.3, 51.8, 48.2, 0.0 -1.4196242171189979,1.42,a-cure-i1,2020-21,8.5,95.8,Springfield - Milton Bradley School,02810023, 17.9, 0.2, 76.2, 4.2, 0.0, 0.0, 1.5, 52.0, 48.0, 0.0 -4.368200836820083,4.37,a-cure-i1,2020-21,26.099999999999998,95.6,Springfield - Rebecca M Johnson,02810055, 25.5, 0.3, 67.4, 4.4, 0.3, 0.0, 2.1, 53.0, 47.0, 0.0 -4.064034151547492,4.06,a-cure-i1,2020-21,23.8,93.7,Springfield - Rise Academy at Van Sickle,02810480, 17.1, 0.7, 73.0, 6.3, 0.0, 0.0, 3.0, 56.9, 43.1, 0.0 -3.8782608695652168,3.88,a-cure-i1,2020-21,22.299999999999997,92.0,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 17.9, 2.1, 71.2, 8.0, 0.1, 0.0, 0.7, 45.7, 54.3, 0.0 -2.8896321070234117,2.89,a-cure-i1,2020-21,16.200000000000003,89.7,Springfield - Samuel Bowles,02810020, 17.4, 0.4, 71.1, 10.3, 0.0, 0.4, 0.4, 50.4, 49.6, 0.0 -3.5446153846153847,3.54,a-cure-i1,2020-21,21.6,97.5,Springfield - South End Middle School,02810355, 16.5, 0.0, 80.2, 2.5, 0.0, 0.0, 0.8, 56.4, 43.2, 0.4 -3.2569521690767513,3.26,a-cure-i1,2020-21,18.299999999999997,89.9,Springfield - Springfield Central High,02810500, 21.8, 4.3, 62.1, 10.1, 0.1, 0.0, 1.6, 53.6, 46.4, 0.0 -5.099099099099099,5,a-cure-i1,2020-21,28.3,88.8,Springfield - Springfield High School,02810570, 18.4, 0.0, 68.4, 11.2, 0.5, 0.0, 1.5, 62.1, 37.9, 0.0 -4.899022801302932,4.9,a-cure-i1,2020-21,28.2,92.1,Springfield - Springfield High School of Science and Technology,02810530, 19.0, 1.5, 70.8, 7.9, 0.1, 0.2, 0.6, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,93.7,Springfield - Springfield International Academy at Johnson,02810215, 37.5, 0.0, 56.3, 6.3, 0.0, 0.0, 0.0, 43.8, 56.3, 0.0 -6.08130081300813,5,a-cure-i1,2020-21,37.4,98.4,Springfield - Springfield International Academy at Sci-Tech,02810700, 6.3, 1.6, 90.6, 1.6, 0.0, 0.0, 0.0, 76.6, 23.4, 0.0 -5.753943217665616,5,a-cure-i1,2020-21,34.2,95.1,Springfield - Springfield Public Day Elementary School,02810005, 31.7, 0.0, 61.0, 4.9, 0.0, 0.0, 2.4, 82.9, 17.1, 0.0 -8.670391061452515,5,a-cure-i1,2020-21,48.5,89.5,Springfield - Springfield Public Day High School,02810550, 19.8, 0.0, 68.6, 10.5, 0.0, 0.0, 1.2, 79.1, 20.9, 0.0 -2.265642151481888,2.27,a-cure-i1,2020-21,12.9,91.1,Springfield - Springfield Public Day Middle School,02810345, 23.2, 0.0, 64.3, 8.9, 0.0, 0.0, 3.6, 87.5, 12.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,89.8,Springfield - Springfield Vocational Academy,02810675, 21.3, 3.9, 64.6, 10.2, 0.0, 0.0, 0.0, 67.7, 32.3, 0.0 -4.382838283828383,4.38,a-cure-i1,2020-21,24.9,90.9,Springfield - STEM Middle Academy,02810350, 22.6, 3.5, 62.4, 9.1, 0.0, 0.0, 2.4, 56.1, 43.9, 0.0 -2.8677595628415298,2.87,a-cure-i1,2020-21,16.4,91.5,Springfield - Sumner Avenue,02810160, 20.9, 4.3, 62.7, 8.5, 0.0, 0.0, 3.6, 51.9, 48.1, 0.0 -4.332541567695962,4.33,a-cure-i1,2020-21,22.8,84.2,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 21.0, 1.1, 60.5, 15.8, 0.0, 0.2, 1.4, 47.3, 52.4, 0.3 -1.0328425821064553,1.03,a-cure-i1,2020-21,5.7,88.3,Springfield - Thomas M Balliet,02810015, 21.4, 2.9, 57.3, 11.7, 0.3, 0.0, 6.5, 54.7, 45.3, 0.0 -4.051948051948052,4.05,a-cure-i1,2020-21,23.400000000000002,92.4,Springfield - Van Sickle Academy,02810485, 7.6, 1.8, 81.9, 7.6, 0.0, 0.0, 1.1, 50.4, 49.6, 0.0 -1.8834285714285715,1.88,a-cure-i1,2020-21,10.3,87.5,Springfield - Warner,02810180, 19.2, 0.8, 64.2, 12.5, 0.0, 0.0, 3.3, 59.2, 40.8, 0.0 -1.149270482603816,1.15,a-cure-i1,2020-21,6.4,89.1,Springfield - Washington,02810185, 15.9, 7.7, 60.6, 10.9, 0.0, 0.0, 4.8, 50.7, 49.3, 0.0 -1.2972972972972971,1.3,a-cure-i1,2020-21,7.8,96.2,Springfield - White Street,02810190, 22.0, 4.3, 66.6, 3.8, 0.2, 0.0, 3.1, 53.3, 46.7, 0.0 -3.6340694006309153,3.63,a-cure-i1,2020-21,21.6,95.1,Springfield - William N. DeBerry,02810045, 15.5, 0.4, 77.8, 4.9, 0.0, 0.0, 1.4, 50.4, 49.6, 0.0 -10.25054945054945,5,a-cure-i1,2020-21,58.3,91.0,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 16.9, 2.4, 69.8, 9.0, 0.0, 0.0, 1.9, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.299999999999997,Stoneham - Colonial Park,02840005, 0.8, 8.4, 12.0, 73.7, 0.4, 0.0, 4.8, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2020-21,4.6,20.700000000000003,Stoneham - Robin Hood,02840025, 2.2, 5.0, 7.8, 79.3, 0.0, 0.0, 5.6, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.599999999999994,Stoneham - South,02840030, 3.4, 7.0, 11.3, 74.4, 0.0, 0.0, 4.0, 47.6, 52.4, 0.0 -5.171717171717173,5,a-cure-i1,2020-21,6.4,19.799999999999997,Stoneham - Stoneham Central Middle School,02840405, 2.0, 4.8, 9.6, 80.2, 0.3, 0.0, 3.1, 51.3, 48.6, 0.1 -1,1,a-cure-i1,2020-21,1.7,21.599999999999994,Stoneham - Stoneham High,02840505, 2.5, 5.7, 8.9, 78.4, 0.7, 0.0, 3.9, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,58.5,Stoughton - Edwin A Jones Early Childhood Center,02850012, 30.8, 6.2, 12.3, 41.5, 0.0, 1.5, 7.7, 56.9, 43.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,45.6,Stoughton - Helen Hansen Elementary,02850010, 19.1, 4.1, 14.5, 54.4, 0.4, 0.0, 7.5, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,49.1,Stoughton - Joseph H Gibbons,02850025, 22.0, 3.7, 15.7, 50.9, 0.0, 0.0, 7.7, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,56.0,Stoughton - Joseph R Dawe Jr Elementary,02850014, 26.5, 5.5, 19.1, 44.0, 0.0, 0.0, 4.9, 56.0, 44.0, 0.0 -2.227450980392157,2.23,a-cure-i1,2020-21,7.1000000000000005,51.0,Stoughton - O'Donnell Middle School,02850405, 24.1, 5.2, 15.1, 49.0, 0.1, 0.7, 5.7, 49.9, 50.1, 0.0 -1.7207062600321028,1.72,a-cure-i1,2020-21,6.7,62.3,Stoughton - Richard L. Wilkins Elementary School,02850020, 27.8, 3.5, 23.9, 37.7, 0.4, 0.0, 6.7, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,51.1,Stoughton - South Elementary,02850015, 19.4, 12.7, 10.5, 48.9, 0.0, 0.4, 8.0, 51.5, 48.5, 0.0 -1.744855967078189,1.74,a-cure-i1,2020-21,5.299999999999999,48.6,Stoughton - Stoughton High,02850505, 26.8, 7.4, 10.1, 51.4, 0.2, 0.3, 3.8, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.0,Sturbridge - Burgess Elementary,02870005, 1.0, 1.5, 7.1, 85.0, 0.3, 0.0, 5.2, 53.3, 46.7, 0.0 -6.7175572519084,5,a-cure-i1,2020-21,5.5,13.099999999999994,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.5, 2.9, 4.5, 86.9, 0.5, 0.1, 2.7, 42.6, 57.3, 0.1 -4.347169811320755,4.35,a-cure-i1,2020-21,7.199999999999999,26.5,Sudbury - Ephraim Curtis Middle,02880305, 3.3, 10.8, 4.7, 73.5, 0.0, 0.3, 7.4, 50.7, 49.2, 0.1 -5.57085020242915,5,a-cure-i1,2020-21,8.600000000000001,24.700000000000003,Sudbury - General John Nixon Elementary,02880025, 5.7, 8.7, 4.0, 75.3, 0.0, 0.0, 6.4, 46.2, 53.8, 0.0 -8.171428571428573,5,a-cure-i1,2020-21,14.3,28.0,Sudbury - Israel Loring School,02880015, 2.6, 8.4, 9.8, 72.0, 0.2, 0.2, 6.8, 50.5, 49.3, 0.2 -5.178743961352656,5,a-cure-i1,2020-21,6.7,20.700000000000003,Sudbury - Josiah Haynes,02880010, 2.4, 8.6, 3.3, 79.3, 0.0, 0.0, 6.5, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,28.400000000000006,Sudbury - Peter Noyes,02880030, 2.2, 10.8, 5.3, 71.6, 0.0, 0.0, 10.1, 56.0, 44.0, 0.0 -2.5919003115264805,2.59,a-cure-i1,2020-21,5.2,32.099999999999994,Sunderland - Sunderland Elementary,02890005, 3.3, 9.2, 10.9, 67.9, 0.0, 0.0, 8.7, 51.6, 47.8, 0.5 -1,1,a-cure-i1,2020-21,0.0,9.5,Sutton - Sutton Early Learning,02900003, 1.3, 1.0, 4.6, 90.5, 0.0, 0.3, 2.3, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.400000000000006,Sutton - Sutton Elementary,02900005, 0.4, 1.1, 3.2, 92.6, 0.0, 0.0, 2.8, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.0,Sutton - Sutton High School,02900510, 1.9, 1.9, 4.1, 88.0, 0.0, 0.0, 4.1, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.099999999999994,Sutton - Sutton Middle School,02900305, 0.9, 1.9, 4.0, 87.9, 0.0, 0.0, 5.3, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.599999999999994,Swampscott - Clarke,02910005, 3.3, 1.9, 18.7, 73.4, 0.5, 0.0, 2.3, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.700000000000003,Swampscott - Hadley,02910010, 2.4, 4.4, 12.5, 76.3, 0.0, 0.0, 4.4, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.700000000000003,Swampscott - Stanley,02910020, 1.8, 2.3, 5.4, 88.3, 0.0, 0.0, 2.3, 55.0, 45.0, 0.0 -4.499999999999999,4.5,a-cure-i1,2020-21,6.3,22.400000000000006,Swampscott - Swampscott High,02910505, 5.6, 2.0, 12.6, 77.6, 0.0, 0.0, 2.3, 47.1, 52.7, 0.1 -1,1,a-cure-i1,2020-21,1.2,22.099999999999994,Swampscott - Swampscott Middle,02910305, 3.7, 2.9, 11.4, 77.9, 0.4, 0.0, 3.7, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,2.9000000000000057,Swansea - Elizabeth S Brown,02920006, 0.4, 0.7, 1.1, 97.1, 0.0, 0.0, 0.7, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.299999999999997,Swansea - Gardner,02920015, 0.4, 0.8, 3.1, 93.7, 0.4, 0.0, 1.6, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,2.2,6.700000000000003,Swansea - Joseph Case High,02920505, 1.1, 1.1, 3.6, 93.3, 0.0, 0.0, 0.9, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,3.3,7.0,Swansea - Joseph Case Jr High,02920305, 1.1, 1.3, 2.0, 93.0, 0.6, 0.0, 2.0, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.799999999999997,Swansea - Joseph G Luther,02920020, 1.0, 1.6, 2.1, 93.2, 0.0, 0.0, 2.1, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.799999999999997,Swansea - Mark G Hoyle Elementary,02920017, 1.0, 2.0, 2.4, 91.2, 0.0, 0.0, 3.4, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,2.7,12.299999999999997,Tantasqua - Tantasqua Regional Jr High,07700405, 1.7, 0.9, 6.0, 87.7, 0.3, 0.2, 3.2, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,2.2,14.799999999999997,Tantasqua - Tantasqua Regional Sr High,07700505, 1.9, 1.7, 6.6, 85.2, 0.1, 0.0, 4.5, 44.5, 55.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.599999999999994,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.2, 5.6, 91.4, 0.0, 0.2, 2.4, 60.1, 39.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.700000000000003,Taunton - Benjamin Friedman Middle,02930315, 13.2, 0.9, 10.2, 70.3, 0.4, 0.0, 4.9, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,4.5,31.200000000000003,Taunton - East Taunton Elementary,02930010, 16.2, 0.7, 8.6, 68.8, 0.2, 0.0, 5.5, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.299999999999997,Taunton - Edmund Hatch Bennett,02930007, 10.9, 1.0, 11.3, 72.7, 0.0, 0.0, 4.1, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,40.5,Taunton - Edward F. Leddy Preschool,02930005, 16.9, 0.7, 15.5, 59.5, 0.0, 0.0, 7.4, 58.8, 41.2, 0.0 -1.6339113680154143,1.63,a-cure-i1,2020-21,5.3,51.9,Taunton - Elizabeth Pole,02930027, 26.4, 2.0, 13.4, 48.1, 0.4, 0.0, 9.8, 50.3, 49.7, 0.0 -2.9306930693069306,2.93,a-cure-i1,2020-21,11.1,60.6,Taunton - H H Galligan,02930057, 30.7, 1.2, 18.3, 39.4, 0.4, 0.8, 9.2, 51.0, 49.0, 0.0 -2.2762886597938143,2.28,a-cure-i1,2020-21,6.9,48.5,Taunton - John F Parker Middle,02930305, 23.0, 0.2, 17.4, 51.5, 0.6, 0.4, 6.9, 50.2, 49.8, 0.0 -5.722627737226277,5,a-cure-i1,2020-21,9.8,27.400000000000006,Taunton - Joseph C Chamberlain,02930008, 11.4, 2.4, 8.6, 72.6, 0.0, 0.0, 5.0, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,37.7,Taunton - Joseph H Martin,02930042, 18.8, 1.7, 12.0, 62.3, 0.0, 0.0, 5.3, 49.4, 50.6, 0.0 -2.2619542619542616,2.26,a-cure-i1,2020-21,6.8,48.1,Taunton - Mulcahey Elementary School,02930015, 23.9, 0.3, 17.4, 51.9, 0.1, 0.3, 6.2, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,51.0,Taunton - Taunton Alternative High School,02930525, 25.0, 0.0, 21.0, 49.0, 0.0, 0.0, 5.0, 58.0, 42.0, 0.0 -2.8282828282828283,2.83,a-cure-i1,2020-21,7.0,39.6,Taunton - Taunton High,02930505, 19.1, 1.3, 14.1, 60.4, 0.4, 0.2, 4.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,36.0,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 8.0, 2.7, 17.9, 64.0, 0.2, 0.3, 6.8, 43.9, 56.0, 0.1 -1,1,a-cure-i1,2020-21,0.0,14.099999999999994,Tewksbury - Heath-Brook,02950010, 3.8, 1.9, 6.1, 85.9, 0.0, 0.0, 2.2, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.799999999999997,Tewksbury - John F. Ryan,02950023, 3.6, 2.7, 7.4, 84.2, 0.0, 0.0, 2.1, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2020-21,2.8,14.5,Tewksbury - John W. Wynn Middle,02950305, 3.9, 3.5, 5.7, 85.5, 0.2, 0.0, 1.2, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.799999999999997,Tewksbury - L F Dewing,02950001, 4.2, 6.9, 6.6, 79.2, 0.0, 0.2, 2.9, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.099999999999994,Tewksbury - Louise Davy Trahan,02950025, 1.6, 2.9, 5.3, 88.9, 0.0, 0.0, 1.2, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.5,Tewksbury - North Street,02950020, 5.6, 4.5, 8.2, 80.5, 0.0, 0.4, 0.7, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2020-21,1.5,15.599999999999994,Tewksbury - Tewksbury Memorial High,02950505, 3.8, 4.6, 5.7, 84.4, 0.1, 0.0, 1.5, 46.2, 53.6, 0.1 -1.9844961240310077,1.98,a-cure-i1,2020-21,6.4,51.6,Tisbury - Tisbury Elementary,02960005, 6.2, 0.7, 38.4, 48.4, 1.0, 0.0, 5.2, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.099999999999994,Topsfield - Proctor Elementary,02980005, 0.0, 1.6, 2.8, 92.9, 1.2, 0.0, 1.6, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,3.1,11.400000000000006,Topsfield - Steward Elementary,02980010, 0.3, 2.1, 4.8, 88.6, 0.6, 0.0, 3.6, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.4,14.599999999999994,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 1.0, 0.7, 7.9, 85.4, 0.1, 0.1, 4.7, 61.0, 38.6, 0.4 -1,1,a-cure-i1,2020-21,0.0,7.200000000000003,Triton - Newbury Elementary,07730020, 1.7, 1.4, 2.8, 92.8, 0.0, 0.3, 1.1, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,5.700000000000003,Triton - Pine Grove,07730025, 0.8, 1.8, 1.3, 94.3, 0.0, 0.0, 1.8, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,4.0,16.400000000000006,Triton - Salisbury Elementary,07730015, 3.3, 2.6, 6.6, 83.6, 0.5, 0.5, 3.1, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2020-21,4.2,9.400000000000006,Triton - Triton Regional High School,07730505, 1.5, 2.0, 4.0, 90.6, 0.2, 0.2, 1.5, 49.2, 50.6, 0.2 -1,1,a-cure-i1,2020-21,0.0,10.900000000000006,Triton - Triton Regional Middle School,07730405, 0.6, 4.2, 3.9, 89.1, 0.0, 0.3, 1.9, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.7,Truro - Truro Central,03000005, 8.0, 0.0, 7.1, 67.3, 0.0, 0.0, 17.7, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.200000000000003,Tyngsborough - Tyngsborough Elementary,03010020, 5.3, 9.7, 8.4, 72.8, 0.3, 0.0, 3.6, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,3.1,19.599999999999994,Tyngsborough - Tyngsborough High School,03010505, 2.5, 7.2, 5.8, 80.4, 0.4, 0.0, 3.6, 45.4, 54.6, 0.0 -1,1,a-cure-i1,2020-21,3.7,22.599999999999994,Tyngsborough - Tyngsborough Middle,03010305, 5.6, 8.4, 5.6, 77.4, 0.0, 0.0, 3.1, 55.2, 44.8, 0.0 -4.070030895983522,4.07,a-cure-i1,2020-21,24.7,97.1,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 44.7, 3.2, 47.9, 2.9, 0.3, 0.6, 0.6, 52.7, 47.3, 0.0 -5.165991902834008,5,a-cure-i1,2020-21,31.900000000000002,98.8,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 55.2, 0.3, 40.9, 1.2, 0.1, 0.6, 1.8, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.0,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 6.0, 0.0, 76.0, 6.0, 0.0, 12.0, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.099999999999994,Up-Island Regional - West Tisbury Elementary,07740020, 0.9, 0.0, 10.6, 77.9, 4.0, 0.0, 6.6, 53.2, 46.6, 0.3 -1,1,a-cure-i1,2020-21,1.9,16.799999999999997,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 3.2, 1.1, 4.2, 83.2, 1.0, 0.1, 7.2, 61.2, 38.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.400000000000006,Uxbridge - Gateway to College,03040515, 2.4, 2.4, 17.1, 75.6, 0.0, 0.0, 2.4, 41.5, 58.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.700000000000003,Uxbridge - Taft Early Learning Center,03040005, 0.6, 0.8, 7.7, 88.3, 0.8, 0.2, 1.6, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2020-21,2.6,12.299999999999997,Uxbridge - Uxbridge High,03040505, 1.7, 2.0, 5.7, 87.7, 0.7, 0.0, 2.3, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.200000000000003,Uxbridge - Whitin Intermediate,03040405, 1.0, 0.8, 5.5, 89.8, 0.2, 0.0, 2.6, 56.3, 43.7, 0.0 -7.807329842931936,5,a-cure-i1,2020-21,46.599999999999994,95.5,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 20.0, 1.7, 70.2, 4.5, 0.7, 0.2, 2.6, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.0,Wachusett - Central Tree Middle,07750310, 2.0, 2.9, 5.8, 86.0, 0.3, 0.0, 2.9, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.299999999999997,Wachusett - Chocksett Middle School,07750315, 1.0, 2.3, 7.3, 87.7, 0.0, 0.0, 1.7, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,3.3,15.299999999999997,Wachusett - Davis Hill Elementary,07750018, 3.5, 0.9, 7.1, 84.7, 0.7, 0.2, 2.8, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.700000000000003,Wachusett - Dawson,07750020, 3.4, 5.4, 7.0, 81.3, 0.0, 0.0, 2.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.700000000000003,Wachusett - Early Childhood Center,07750001, 2.2, 5.4, 14.0, 76.3, 0.0, 0.0, 2.2, 62.4, 37.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.799999999999997,Wachusett - Glenwood Elementary School,07750060, 2.1, 0.9, 8.5, 86.2, 0.3, 0.0, 2.1, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.900000000000006,Wachusett - Houghton Elementary,07750027, 4.9, 2.9, 8.5, 80.1, 0.0, 0.0, 3.6, 56.2, 43.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.5,Wachusett - Leroy E.Mayo,07750032, 4.2, 3.8, 6.3, 83.5, 0.0, 0.0, 2.3, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,2.4,18.799999999999997,Wachusett - Mountview Middle,07750305, 3.9, 4.3, 7.6, 81.2, 0.0, 0.0, 3.1, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.200000000000003,Wachusett - Naquag Elementary School,07750005, 0.7, 1.7, 5.8, 88.8, 0.0, 0.0, 3.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.5,Wachusett - Paxton Center,07750040, 1.1, 3.9, 7.3, 85.5, 0.0, 0.0, 2.3, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2020-21,4.6,8.599999999999994,Wachusett - Thomas Prince,07750045, 1.5, 1.8, 2.9, 91.4, 0.0, 0.0, 2.4, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2020-21,0.7,13.099999999999994,Wachusett - Wachusett Regional High,07750505, 2.0, 3.5, 5.3, 86.9, 0.1, 0.0, 2.0, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.400000000000006,Wakefield - Dolbeare,03050005, 2.0, 2.3, 7.0, 85.6, 0.2, 0.2, 2.7, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.5,Wakefield - Early Childhood Center at the Doyle School,03050001, 5.9, 7.4, 5.9, 76.5, 0.0, 0.0, 4.4, 66.2, 33.8, 0.0 -1,1,a-cure-i1,2020-21,1.1,16.400000000000006,Wakefield - Galvin Middle School,03050310, 1.9, 3.3, 7.8, 83.6, 0.2, 0.1, 3.1, 50.9, 49.0, 0.1 -1,1,a-cure-i1,2020-21,0.0,17.700000000000003,Wakefield - Greenwood,03050020, 1.4, 5.1, 4.7, 82.3, 0.0, 0.5, 6.0, 57.7, 42.3, 0.0 -1,1,a-cure-i1,2020-21,0.7,16.599999999999994,Wakefield - Wakefield Memorial High,03050505, 3.8, 3.2, 7.7, 83.4, 0.2, 0.0, 1.6, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.200000000000003,Wakefield - Walton,03050040, 3.6, 1.8, 6.7, 84.8, 0.0, 0.9, 2.2, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2020-21,4.4,25.700000000000003,Wakefield - Woodville School,03050015, 3.7, 6.1, 10.3, 74.3, 0.0, 0.2, 5.4, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,5.599999999999994,Wales - Wales Elementary,03060005, 1.6, 0.0, 0.8, 94.4, 0.8, 0.0, 2.4, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,3.3,17.400000000000006,Walpole - Bird Middle,03070305, 5.3, 2.8, 7.1, 82.6, 0.0, 0.0, 2.3, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.400000000000006,Walpole - Boyden,03070010, 6.3, 3.7, 6.3, 80.6, 0.6, 0.0, 2.6, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.700000000000003,Walpole - Daniel Feeney Preschool Center,03070002, 3.2, 3.2, 9.7, 82.3, 0.0, 0.0, 1.6, 58.1, 41.9, 0.0 -1,1,a-cure-i1,2020-21,3.9,26.0,Walpole - Eleanor N Johnson Middle,03070310, 3.3, 11.6, 6.4, 74.0, 0.7, 0.0, 4.0, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.5,Walpole - Elm Street School,03070005, 3.9, 6.2, 4.1, 82.5, 0.0, 0.0, 3.2, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.099999999999994,Walpole - Fisher,03070015, 1.5, 13.8, 6.6, 72.9, 0.4, 0.4, 4.4, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.900000000000006,Walpole - Old Post Road,03070018, 2.9, 2.6, 9.7, 79.1, 0.2, 0.0, 5.5, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,2.8,17.200000000000003,Walpole - Walpole High,03070505, 3.0, 6.0, 5.6, 82.8, 0.4, 0.0, 2.2, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,1.3,37.8,Waltham - Douglas MacArthur Elementary School,03080032, 9.6, 10.5, 12.9, 62.2, 0.2, 0.0, 4.6, 53.3, 46.7, 0.0 -0.9589345172031077,1,a-cure-i1,2020-21,5.4,90.1,Waltham - Henry Whittemore Elementary School,03080065, 7.5, 3.6, 77.5, 9.9, 0.0, 0.0, 1.5, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,46.2,Waltham - James Fitzgerald Elementary School,03080060, 4.0, 4.8, 31.7, 53.8, 0.0, 0.0, 5.6, 52.2, 47.8, 0.0 -4.829493087557604,4.83,a-cure-i1,2020-21,13.100000000000001,43.4,Waltham - John F Kennedy Middle,03080404, 8.8, 5.2, 26.5, 56.6, 0.0, 0.0, 2.8, 55.0, 45.0, 0.0 -1.348314606741573,1.35,a-cure-i1,2020-21,6.0,71.2,Waltham - John W. McDevitt Middle School,03080415, 7.8, 4.0, 58.3, 28.8, 0.0, 0.0, 1.0, 51.1, 48.9, 0.0 -1.808695652173913,1.81,a-cure-i1,2020-21,6.5,57.5,Waltham - Northeast Elementary School,03080040, 10.8, 8.1, 35.9, 42.5, 0.4, 0.0, 2.3, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2020-21,0.7,61.3,Waltham - Thomas R Plympton Elementary School,03080050, 12.7, 5.6, 38.7, 38.7, 0.0, 0.0, 4.2, 51.5, 48.5, 0.0 -10.309278350515465,5,a-cure-i1,2020-21,50.0,77.6,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.0, 0.0, 70.7, 22.4, 0.0, 0.0, 2.9, 52.9, 47.1, 0.0 -2.1843003412969284,2.18,a-cure-i1,2020-21,8.0,58.6,Waltham - Waltham Sr High,03080505, 10.3, 3.8, 43.0, 41.4, 0.0, 0.1, 1.5, 52.3, 47.6, 0.1 -1,1,a-cure-i1,2020-21,4.2,64.6,Waltham - William F. Stanley Elementary School,03080005, 10.3, 8.1, 44.0, 35.4, 0.0, 0.0, 2.2, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.700000000000003,Ware - Stanley M Koziol Elementary School,03090020, 1.7, 0.3, 5.0, 91.3, 0.0, 0.0, 1.7, 48.4, 51.6, 0.0 -6.289655172413793,5,a-cure-i1,2020-21,5.7,14.5,Ware - Ware Junior/Senior High School,03090505, 1.9, 0.4, 7.3, 85.5, 0.2, 0.6, 4.2, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.0,Ware - Ware Middle School,03090305, 0.4, 0.7, 12.4, 81.0, 0.4, 0.0, 5.1, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.900000000000006,Wareham - John William Decas,03100003, 4.9, 0.9, 9.1, 70.1, 0.9, 0.0, 14.0, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,34.2,Wareham - Minot Forest,03100017, 8.3, 1.0, 11.6, 65.8, 1.0, 0.0, 12.3, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,42.4,Wareham - Wareham Cooperative Alternative School,03100315, 18.2, 0.0, 12.1, 57.6, 0.0, 0.0, 12.1, 57.6, 42.4, 0.0 -3.519061583577713,3.52,a-cure-i1,2020-21,7.5,34.099999999999994,Wareham - Wareham Middle,03100305, 8.6, 0.9, 9.6, 65.9, 1.5, 0.2, 13.3, 50.8, 49.2, 0.0 -5.2198581560283674,5,a-cure-i1,2020-21,9.2,28.200000000000003,Wareham - Wareham Senior High,03100505, 7.7, 0.9, 6.8, 71.8, 1.7, 0.0, 11.1, 48.7, 51.1, 0.2 -8.53932584269663,5,a-cure-i1,2020-21,19.0,35.599999999999994,Watertown - Cunniff,03140015, 3.7, 6.4, 20.6, 64.4, 0.0, 0.0, 4.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,34.5,Watertown - Hosmer,03140020, 4.2, 8.1, 15.4, 65.5, 0.3, 0.2, 6.3, 51.6, 48.4, 0.0 -12.332378223495699,5,a-cure-i1,2020-21,26.9,34.900000000000006,Watertown - James Russell Lowell,03140025, 5.5, 3.7, 18.5, 65.1, 0.2, 0.0, 7.0, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2020-21,0.7,39.1,Watertown - Watertown High,03140505, 4.7, 7.9, 22.0, 60.9, 0.6, 0.0, 3.9, 52.8, 47.2, 0.0 -2.197802197802198,2.2,a-cure-i1,2020-21,5.0,36.4,Watertown - Watertown Middle,03140305, 3.3, 8.4, 19.1, 63.6, 0.3, 0.0, 5.2, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,3.4,27.400000000000006,Wayland - Claypit Hill School,03150005, 4.4, 11.3, 5.4, 72.6, 0.0, 0.2, 6.2, 48.6, 51.4, 0.0 -5.270588235294118,5,a-cure-i1,2020-21,8.4,25.5,Wayland - Happy Hollow School,03150015, 3.9, 10.2, 4.4, 74.5, 0.0, 0.0, 6.9, 53.7, 46.3, 0.0 -7.438596491228069,5,a-cure-i1,2020-21,15.9,34.2,Wayland - Loker School,03150020, 4.2, 16.5, 6.7, 65.8, 0.0, 0.0, 6.7, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2020-21,3.2,34.599999999999994,Wayland - Wayland High School,03150505, 4.8, 19.1, 4.2, 65.4, 0.0, 0.1, 6.3, 50.1, 49.9, 0.0 -6.693409742120344,5,a-cure-i1,2020-21,14.600000000000001,34.900000000000006,Wayland - Wayland Middle School,03150305, 7.0, 16.2, 5.0, 65.1, 0.0, 0.2, 6.5, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2020-21,3.0,48.5,Webster - Bartlett High School,03160505, 7.2, 2.3, 30.8, 51.5, 0.3, 0.3, 7.7, 47.9, 51.8, 0.3 -1,1,a-cure-i1,2020-21,0.0,47.2,Webster - Park Avenue Elementary,03160015, 6.2, 1.2, 33.1, 52.8, 0.0, 0.0, 6.5, 53.1, 46.7, 0.1 -1,1,a-cure-i1,2020-21,0.0,46.2,Webster - Webster Middle School,03160315, 5.1, 1.8, 33.3, 53.8, 0.2, 0.0, 6.0, 53.6, 46.4, 0.0 -7.696202531645571,5,a-cure-i1,2020-21,15.2,31.599999999999994,Wellesley - Ernest F Upham,03170050, 8.9, 14.6, 5.1, 68.4, 0.0, 0.0, 3.2, 51.3, 48.7, 0.0 -7.293023255813954,5,a-cure-i1,2020-21,9.8,21.5,Wellesley - Hunnewell,03170025, 3.5, 5.7, 7.0, 78.5, 0.0, 0.0, 5.3, 49.1, 50.9, 0.0 -1.9384615384615385,1.94,a-cure-i1,2020-21,6.3,52.0,Wellesley - John D Hardy,03170020, 1.3, 27.4, 10.3, 48.0, 0.0, 0.0, 13.0, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,36.0,Wellesley - Joseph E Fiske,03170015, 4.2, 18.6, 6.4, 64.0, 0.0, 0.0, 6.8, 50.4, 49.6, 0.0 -3.1877394636015333,3.19,a-cure-i1,2020-21,5.2,26.099999999999994,Wellesley - Katharine Lee Bates,03170005, 3.5, 10.6, 2.1, 73.9, 0.0, 0.0, 9.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,32.8,Wellesley - Preschool at Wellesley Schools,03170001, 1.6, 17.2, 6.3, 67.2, 0.0, 0.0, 7.8, 62.5, 37.5, 0.0 -4.439306358381503,4.44,a-cure-i1,2020-21,9.6,34.599999999999994,Wellesley - Schofield,03170045, 3.9, 18.8, 3.6, 65.4, 0.3, 0.3, 7.8, 46.0, 54.0, 0.0 -1.9484777517564402,1.95,a-cure-i1,2020-21,5.2,42.7,Wellesley - Sprague Elementary School,03170048, 2.8, 20.3, 5.4, 57.3, 0.0, 0.0, 14.2, 50.9, 49.1, 0.0 -4.184615384615385,4.18,a-cure-i1,2020-21,8.5,32.5,Wellesley - Wellesley Middle,03170305, 4.2, 16.4, 5.3, 67.5, 0.0, 0.0, 6.6, 45.8, 54.1, 0.1 -4.228571428571429,4.23,a-cure-i1,2020-21,7.4,28.0,Wellesley - Wellesley Sr High,03170505, 3.7, 13.1, 5.4, 72.0, 0.1, 0.0, 5.8, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.400000000000006,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.0, 3.9, 81.6, 0.0, 0.0, 13.6, 57.3, 42.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.799999999999997,West Boylston - Major Edwards Elementary,03220005, 4.4, 1.8, 11.4, 77.2, 0.0, 0.3, 4.9, 54.7, 45.3, 0.0 -5.971291866028707,5,a-cure-i1,2020-21,7.800000000000001,20.900000000000006,West Boylston - West Boylston Junior/Senior High,03220505, 3.2, 2.2, 11.6, 79.1, 0.2, 0.2, 3.6, 45.4, 54.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.099999999999994,West Bridgewater - Howard School,03230305, 6.5, 1.4, 4.8, 82.9, 0.3, 0.0, 4.1, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,18.400000000000006,West Bridgewater - Rose L Macdonald,03230003, 5.6, 0.7, 5.6, 81.6, 0.0, 0.0, 6.6, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.0,West Bridgewater - Spring Street School,03230005, 7.6, 0.6, 7.0, 79.0, 0.0, 0.0, 5.7, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2020-21,2.1,16.799999999999997,West Bridgewater - West Bridgewater Junior/Senior,03230505, 6.3, 1.1, 4.9, 83.2, 0.2, 0.2, 4.2, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,54.9,West Springfield - Cowing Early Childhood,03320001, 3.7, 9.8, 36.6, 45.1, 0.0, 0.0, 4.9, 74.4, 25.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,40.3,West Springfield - John Ashley,03320005, 4.0, 6.2, 25.2, 59.7, 0.0, 0.0, 4.9, 52.7, 47.3, 0.0 -2.924137931034483,2.92,a-cure-i1,2020-21,5.3,29.0,West Springfield - John R Fausey,03320010, 1.7, 5.5, 17.5, 71.0, 0.0, 0.0, 4.3, 46.3, 53.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,57.1,West Springfield - Memorial,03320025, 5.4, 10.3, 37.0, 42.9, 0.0, 0.0, 4.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,33.3,West Springfield - Mittineague,03320030, 2.5, 4.3, 23.5, 66.7, 0.0, 0.0, 3.1, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,49.9,West Springfield - Philip G Coburn,03320007, 4.7, 18.5, 23.4, 50.1, 0.2, 0.0, 3.2, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.900000000000006,West Springfield - Tatham,03320040, 0.8, 4.3, 11.8, 79.1, 0.0, 0.0, 3.9, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,4.7,34.7,West Springfield - West Springfield High,03320505, 3.8, 7.7, 20.9, 65.3, 0.2, 0.0, 2.1, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,2.7,36.1,West Springfield - West Springfield Middle,03320305, 4.1, 9.1, 18.9, 63.9, 0.0, 0.1, 3.9, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,50.0,Westborough - Annie E Fales,03210010, 1.9, 41.8, 3.1, 50.0, 0.0, 0.3, 2.8, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,63.1,Westborough - Elsie A Hastings Elementary,03210025, 2.4, 43.3, 14.3, 36.9, 0.0, 0.0, 3.1, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,54.2,Westborough - J Harding Armstrong,03210005, 1.9, 39.4, 9.9, 45.8, 0.0, 0.0, 2.9, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,50.4,Westborough - Mill Pond School,03210045, 2.4, 37.1, 8.0, 49.6, 0.2, 0.0, 2.7, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,4.6,46.6,Westborough - Sarah W Gibbons Middle,03210305, 2.7, 34.4, 6.8, 53.4, 0.0, 0.0, 2.7, 47.3, 52.7, 0.0 -2.5769230769230766,2.58,a-cure-i1,2020-21,6.699999999999999,41.6,Westborough - Westborough High,03210505, 1.6, 28.2, 7.8, 58.4, 0.0, 0.2, 3.9, 50.1, 49.7, 0.2 -1,1,a-cure-i1,2020-21,0.0,40.5,Westfield - Abner Gibbs,03250020, 3.0, 9.0, 24.0, 59.5, 0.0, 0.0, 4.5, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,37.3,Westfield - Fort Meadow Early Childhood Center,03250003, 4.2, 2.5, 24.6, 62.7, 0.0, 0.0, 5.9, 57.6, 42.4, 0.0 -2.3220675944333995,2.32,a-cure-i1,2020-21,7.3,50.3,Westfield - Franklin Ave,03250015, 3.1, 4.7, 36.1, 49.7, 0.0, 0.0, 6.3, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.900000000000006,Westfield - Highland,03250025, 0.0, 3.1, 11.3, 83.1, 0.0, 0.0, 2.5, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,24.0,Westfield - Munger Hill,03250033, 2.8, 4.0, 15.0, 76.0, 0.0, 0.0, 2.3, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,35.900000000000006,Westfield - Paper Mill,03250036, 3.8, 1.3, 22.5, 64.1, 0.0, 0.3, 7.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.299999999999997,Westfield - Southampton Road,03250040, 0.7, 3.5, 14.2, 74.7, 0.0, 0.0, 6.9, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,1.2,24.400000000000006,Westfield - Westfield High,03250505, 2.7, 3.2, 16.0, 75.6, 0.1, 0.0, 2.4, 46.6, 53.4, 0.0 -1,1,a-cure-i1,2020-21,1.9,27.400000000000006,Westfield - Westfield Intermediate School,03250075, 3.0, 3.3, 17.3, 72.6, 0.1, 0.0, 3.6, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,26.599999999999994,Westfield - Westfield Middle School,03250310, 1.8, 3.1, 18.8, 73.4, 0.1, 0.0, 2.7, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2020-21,4.300000000000001,16.099999999999994,Westfield - Westfield Technical Academy,03250605, 1.4, 1.0, 11.6, 83.9, 0.2, 0.2, 1.7, 64.9, 35.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.400000000000006,Westford - Abbot Elementary,03260004, 0.6, 26.1, 1.1, 68.6, 0.0, 0.0, 3.6, 52.1, 47.9, 0.0 -2.1333333333333333,2.13,a-cure-i1,2020-21,5.8,43.5,Westford - Blanchard Middle,03260310, 2.6, 33.0, 3.0, 56.5, 0.6, 0.0, 4.3, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,44.4,Westford - Col John Robinson,03260025, 2.9, 32.6, 1.4, 55.6, 0.0, 0.0, 7.5, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,49.7,Westford - Day Elementary,03260007, 1.8, 38.8, 3.0, 50.3, 0.0, 0.0, 6.1, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,38.2,Westford - John A. Crisafulli Elementary School,03260045, 0.9, 29.9, 3.7, 61.8, 0.0, 0.0, 3.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.099999999999994,Westford - Nabnasset,03260015, 0.3, 17.2, 0.6, 77.9, 0.0, 0.0, 3.9, 47.1, 52.9, 0.0 -1.7254901960784315,1.73,a-cure-i1,2020-21,5.5,51.0,Westford - Rita E. Miller Elementary School,03260055, 2.1, 36.9, 6.9, 49.0, 0.0, 0.0, 5.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2020-21,2.4,35.3,Westford - Stony Brook School,03260330, 0.7, 27.8, 3.0, 64.7, 0.2, 0.0, 3.7, 48.3, 51.4, 0.3 -3.313609467455622,3.31,a-cure-i1,2020-21,7.0,33.8,Westford - Westford Academy,03260505, 1.2, 27.4, 1.8, 66.2, 0.1, 0.1, 3.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,8.700000000000003,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 5.8, 91.3, 0.0, 0.0, 2.9, 59.6, 40.4, 0.0 -1,1,a-cure-i1,2020-21,3.9,34.5,Weston - Country,03300010, 7.9, 16.4, 5.5, 65.5, 0.0, 0.0, 4.8, 46.4, 53.6, 0.0 -2.1610389610389613,2.16,a-cure-i1,2020-21,5.2,38.5,Weston - Field Elementary School,03300012, 7.0, 19.2, 7.0, 61.5, 0.0, 0.3, 4.9, 50.3, 49.7, 0.0 -7.594029850746269,5,a-cure-i1,2020-21,15.9,33.5,Weston - Weston High,03300505, 5.6, 18.1, 4.0, 66.5, 0.3, 0.0, 5.6, 51.1, 48.9, 0.0 -3.458333333333334,3.46,a-cure-i1,2020-21,8.3,38.4,Weston - Weston Middle,03300305, 6.3, 17.5, 8.2, 61.6, 0.0, 0.0, 6.5, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,36.2,Weston - Woodland,03300015, 8.7, 13.8, 10.2, 63.8, 0.0, 0.0, 3.6, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.5,Westport - Alice A Macomber,03310015, 0.6, 0.0, 4.9, 92.5, 0.0, 0.0, 2.0, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.099999999999994,Westport - Westport Elementary,03310030, 0.7, 0.2, 4.1, 90.9, 0.2, 0.0, 3.9, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,9.599999999999994,Westport - Westport Junior/Senior High School,03310515, 0.4, 0.7, 3.5, 90.4, 0.2, 0.0, 4.9, 54.7, 45.1, 0.2 -7.194630872483223,5,a-cure-i1,2020-21,13.4,29.799999999999997,Westwood - Deerfield School,03350010, 4.2, 12.0, 5.2, 70.2, 0.0, 0.0, 8.4, 55.5, 44.5, 0.0 -5.19344262295082,5,a-cure-i1,2020-21,9.9,30.5,Westwood - Downey,03350012, 0.3, 19.7, 4.7, 69.5, 0.0, 0.3, 5.4, 57.3, 42.7, 0.0 -1,1,a-cure-i1,2020-21,1.9,23.700000000000003,Westwood - E W Thurston Middle,03350305, 2.0, 11.6, 6.1, 76.3, 0.1, 0.0, 3.8, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,20.299999999999997,Westwood - Martha Jones,03350017, 0.4, 6.6, 3.7, 79.7, 0.0, 0.0, 9.6, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.700000000000003,Westwood - Paul Hanlon,03350015, 1.6, 16.7, 6.8, 70.3, 0.0, 0.0, 4.7, 51.0, 49.0, 0.0 -6.583732057416266,5,a-cure-i1,2020-21,8.6,20.900000000000006,Westwood - Westwood High,03350505, 3.3, 11.0, 4.1, 79.1, 0.0, 0.0, 2.5, 47.0, 52.9, 0.1 -1,1,a-cure-i1,2020-21,0.0,15.799999999999997,Westwood - Westwood Integrated Preschool,03350050, 2.6, 5.3, 7.9, 84.2, 0.0, 0.0, 0.0, 65.8, 34.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,22.5,Westwood - William E Sheehan,03350025, 0.7, 9.7, 3.8, 77.5, 0.0, 0.0, 8.3, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,3.2,32.7,Weymouth - Abigail Adams Middle School,03360310, 7.4, 6.6, 14.0, 67.3, 0.2, 0.1, 4.4, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,30.200000000000003,Weymouth - Academy Avenue,03360005, 5.0, 9.1, 9.1, 69.8, 0.0, 0.6, 6.5, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,34.3,Weymouth - Frederick C Murphy,03360050, 5.2, 6.6, 18.5, 65.7, 0.0, 0.0, 4.1, 56.5, 43.5, 0.0 -3.6996996996997003,3.7,a-cure-i1,2020-21,7.7,33.3,Weymouth - Johnson Early Childhood Center,03360003, 5.0, 13.3, 4.2, 66.7, 0.0, 0.0, 10.8, 65.0, 35.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,25.099999999999994,Weymouth - Lawrence W Pingree,03360065, 6.8, 3.2, 9.1, 74.9, 0.0, 0.0, 5.9, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,29.299999999999997,Weymouth - Ralph Talbot,03360085, 6.8, 6.0, 12.0, 70.7, 0.0, 0.0, 4.5, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,21.0,Weymouth - Thomas V Nash,03360060, 4.4, 4.9, 6.3, 79.0, 0.0, 0.0, 5.4, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,38.9,Weymouth - Thomas W. Hamilton Primary School,03360105, 3.6, 18.5, 12.9, 61.1, 0.6, 0.0, 3.4, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.599999999999994,Weymouth - Wessagusset,03360110, 3.7, 4.3, 6.6, 80.4, 0.7, 0.0, 4.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2020-21,2.4,27.799999999999997,Weymouth - Weymouth High School,03360505, 7.5, 5.1, 11.2, 72.2, 0.2, 0.1, 3.8, 49.6, 50.3, 0.1 -1,1,a-cure-i1,2020-21,0.0,60.3,Weymouth - William Seach,03360080, 18.3, 10.1, 24.9, 39.7, 0.0, 0.0, 7.1, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,6.0,Whately - Whately Elementary,03370005, 0.9, 0.0, 3.4, 94.0, 0.0, 0.0, 1.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.099999999999994,Whitman-Hanson - Hanson Middle School,07800315, 0.7, 1.8, 4.8, 89.9, 0.4, 0.0, 2.4, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,1.2,10.900000000000006,Whitman-Hanson - Indian Head,07800035, 1.5, 1.5, 4.7, 89.1, 0.2, 0.0, 3.0, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2020-21,1.5,20.900000000000006,Whitman-Hanson - John H Duval,07800030, 4.3, 1.9, 9.8, 79.1, 0.2, 0.0, 4.6, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,1.2,14.700000000000003,Whitman-Hanson - Louise A Conley,07800010, 3.4, 1.8, 5.6, 85.3, 0.6, 0.0, 3.2, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.0,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.8, 3.8, 5.0, 85.0, 0.0, 0.0, 2.5, 68.8, 31.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,12.400000000000006,Whitman-Hanson - Whitman Hanson Regional,07800505, 3.6, 0.7, 5.0, 87.6, 0.5, 0.1, 2.4, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,3.8,18.0,Whitman-Hanson - Whitman Middle,07800310, 5.1, 1.5, 7.3, 82.0, 0.7, 0.2, 3.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2020-21,1.7,33.7,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 2.9, 1.5, 25.5, 66.3, 0.5, 0.0, 3.4, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.099999999999994,Williamsburg - Anne T. Dunphy School,03400020, 3.4, 0.0, 5.0, 89.9, 0.0, 0.0, 1.7, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.900000000000006,Wilmington - Boutwell,03420005, 1.8, 10.7, 1.8, 82.1, 0.0, 0.0, 3.6, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.799999999999997,Wilmington - North Intermediate,03420060, 1.2, 5.7, 2.8, 86.2, 0.0, 0.0, 4.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,19.599999999999994,Wilmington - Shawsheen Elementary,03420025, 1.9, 7.3, 5.0, 80.4, 0.0, 0.3, 5.0, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.400000000000006,Wilmington - West Intermediate,03420080, 0.9, 8.2, 4.5, 83.6, 0.5, 0.0, 2.3, 50.9, 49.1, 0.0 -8.847058823529412,5,a-cure-i1,2020-21,9.4,17.0,Wilmington - Wildwood,03420015, 0.0, 4.0, 4.0, 83.0, 1.0, 0.0, 8.0, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2020-21,4.6,15.400000000000006,Wilmington - Wilmington High,03420505, 1.5, 5.4, 4.2, 84.6, 0.1, 0.0, 4.1, 48.3, 51.4, 0.3 -1,1,a-cure-i1,2020-21,0.0,15.0,Wilmington - Wilmington Middle School,03420330, 1.5, 5.2, 5.5, 85.0, 0.0, 0.0, 2.8, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.0,Wilmington - Woburn Street,03420020, 1.9, 5.5, 4.4, 83.0, 0.0, 0.0, 5.2, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,10.5,Winchendon - Memorial,03430040, 1.6, 1.2, 4.3, 89.5, 0.0, 0.0, 3.5, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,11.400000000000006,Winchendon - Murdock Academy for Success,03430405, 5.7, 0.0, 0.0, 88.6, 0.0, 0.0, 5.7, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2020-21,3.2,15.299999999999997,Winchendon - Murdock High School,03430515, 1.5, 2.3, 7.3, 84.7, 0.4, 0.4, 3.4, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.400000000000006,Winchendon - Murdock Middle School,03430315, 3.6, 2.9, 7.3, 83.6, 0.0, 0.4, 2.2, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,14.700000000000003,Winchendon - Toy Town Elementary,03430050, 0.3, 1.0, 8.2, 85.3, 0.0, 0.3, 4.8, 58.7, 41.0, 0.3 -1,1,a-cure-i1,2020-21,0.0,8.900000000000006,Winchendon - Winchendon PreSchool Program,03430010, 1.8, 0.0, 3.6, 91.1, 0.0, 0.0, 3.6, 57.1, 42.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,15.099999999999994,Winchester - Ambrose Elementary,03440045, 0.0, 7.4, 0.9, 84.9, 0.0, 0.0, 6.8, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,23.400000000000006,Winchester - Lincoln Elementary,03440005, 0.0, 12.0, 3.3, 76.6, 0.0, 0.0, 8.1, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,0.3,45.4,Winchester - Lynch Elementary,03440020, 2.0, 31.4, 4.9, 54.6, 0.0, 0.0, 7.1, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2020-21,3.9,29.5,Winchester - McCall Middle,03440305, 1.4, 17.8, 3.6, 70.5, 0.1, 0.0, 6.6, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2020-21,0.6,34.599999999999994,Winchester - Muraco Elementary,03440040, 1.1, 21.8, 2.2, 65.4, 0.3, 0.0, 9.3, 48.0, 51.8, 0.3 -1,1,a-cure-i1,2020-21,2.9,35.2,Winchester - Vinson-Owen Elementary,03440025, 1.0, 22.3, 3.0, 64.8, 0.0, 0.0, 8.9, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,1.2,27.400000000000006,Winchester - Winchester High School,03440505, 1.6, 18.0, 3.6, 72.6, 0.4, 0.1, 3.7, 48.3, 51.6, 0.1 -1,1,a-cure-i1,2020-21,0.0,20.799999999999997,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.5, 0.5, 17.1, 79.2, 0.0, 0.0, 1.7, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.900000000000006,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.1, 0.5, 14.2, 83.1, 0.0, 0.0, 1.1, 44.4, 55.6, 0.0 -4.244897959183675,4.24,a-cure-i1,2020-21,5.2,19.599999999999994,Winthrop - Winthrop High School,03460505, 0.9, 1.1, 16.2, 80.4, 0.0, 0.0, 1.4, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2020-21,2.6,21.5,Winthrop - Winthrop Middle School,03460305, 2.0, 0.4, 17.1, 78.5, 0.2, 0.2, 1.5, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2020-21,4.0,26.599999999999994,Woburn - Clyde Reeves,03470040, 7.5, 8.3, 5.1, 73.4, 1.1, 0.0, 4.6, 50.5, 49.5, 0.0 -3.5555555555555562,3.56,a-cure-i1,2020-21,6.4,28.799999999999997,Woburn - Daniel L Joyce Middle School,03470410, 6.5, 3.2, 14.7, 71.2, 0.6, 0.0, 3.8, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,31.5,Woburn - Goodyear Elementary School,03470005, 5.4, 8.6, 12.5, 68.5, 0.4, 0.0, 4.7, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2020-21,0.0,17.200000000000003,Woburn - Hurld-Wyman Elementary School,03470020, 2.2, 5.7, 6.5, 82.8, 0.0, 0.0, 2.7, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2020-21,3.8,32.7,Woburn - John F Kennedy Middle School,03470405, 9.6, 7.3, 11.2, 67.3, 0.0, 0.4, 4.3, 45.7, 54.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,40.1,Woburn - Linscott-Rumford,03470025, 9.6, 18.8, 5.1, 59.9, 0.5, 0.5, 5.6, 45.7, 54.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,35.0,Woburn - Malcolm White,03470055, 4.6, 4.2, 18.4, 65.0, 2.5, 0.4, 4.9, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2020-21,3.5,49.0,Woburn - Mary D Altavesta,03470065, 10.9, 19.7, 13.8, 51.0, 0.4, 0.4, 3.8, 51.5, 48.5, 0.0 -2.237467018469657,2.24,a-cure-i1,2020-21,5.3,37.9,Woburn - Shamrock,03470043, 12.5, 5.5, 15.8, 62.1, 1.1, 0.0, 2.9, 52.6, 47.4, 0.0 -3.089655172413793,3.09,a-cure-i1,2020-21,5.6,29.0,Woburn - Woburn High,03470505, 6.5, 6.9, 12.8, 71.0, 0.4, 0.2, 2.3, 49.3, 50.6, 0.1 -1,1,a-cure-i1,2020-21,0.0,80.7,Worcester - Belmont Street Community,03480020, 19.1, 7.5, 50.5, 19.3, 0.0, 0.0, 3.6, 52.1, 47.9, 0.0 -2.9027576197387517,2.9,a-cure-i1,2020-21,12.5,68.9,Worcester - Burncoat Middle School,03480405, 15.7, 5.4, 42.0, 31.1, 0.0, 0.0, 5.8, 49.7, 50.3, 0.0 -2.716119828815977,2.72,a-cure-i1,2020-21,11.899999999999999,70.1,Worcester - Burncoat Senior High,03480503, 19.3, 3.4, 42.6, 29.9, 0.2, 0.0, 4.7, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,76.2,Worcester - Burncoat Street,03480035, 13.1, 3.5, 55.4, 23.8, 0.0, 0.0, 4.2, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,81.3,Worcester - Canterbury,03480045, 13.0, 14.0, 52.3, 18.7, 0.3, 0.0, 1.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,84.8,Worcester - Chandler Elementary Community,03480050, 14.1, 6.4, 60.5, 15.2, 0.4, 0.0, 3.3, 52.3, 47.7, 0.0 -7.54066985645933,5,a-cure-i1,2020-21,39.4,83.6,Worcester - Chandler Magnet,03480052, 3.8, 2.1, 76.2, 16.4, 0.0, 0.0, 1.5, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2020-21,4.0,75.8,Worcester - City View,03480053, 16.0, 2.8, 51.3, 24.2, 0.0, 0.0, 5.6, 50.4, 49.6, 0.0 -3.760683760683761,3.76,a-cure-i1,2020-21,22.0,93.6,Worcester - Claremont Academy,03480350, 12.1, 8.4, 71.4, 6.4, 0.2, 0.0, 1.5, 52.7, 47.3, 0.0 -2.5064782096584217,2.51,a-cure-i1,2020-21,13.3,84.9,Worcester - Clark St Community,03480055, 19.2, 5.9, 54.8, 15.1, 0.4, 0.0, 4.6, 46.0, 54.0, 0.0 -1.9225634178905207,1.92,a-cure-i1,2020-21,9.0,74.9,Worcester - Columbus Park,03480060, 12.8, 8.1, 50.1, 25.1, 1.3, 0.0, 2.6, 53.3, 46.7, 0.0 -2.1853658536585368,2.19,a-cure-i1,2020-21,8.4,61.5,Worcester - Doherty Memorial High,03480512, 14.2, 6.3, 36.1, 38.5, 0.3, 0.0, 4.6, 56.6, 43.4, 0.0 -1.9587628865979383,1.96,a-cure-i1,2020-21,9.5,77.6,Worcester - Elm Park Community,03480095, 13.5, 2.2, 58.9, 22.4, 0.0, 0.0, 3.0, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2020-21,0.0,27.200000000000003,Worcester - Flagg Street,03480090, 6.1, 3.5, 12.8, 72.8, 0.3, 0.0, 4.6, 48.1, 51.9, 0.0 -3.0321489001692044,3.03,a-cure-i1,2020-21,11.2,59.1,Worcester - Forest Grove Middle,03480415, 14.3, 5.2, 34.6, 40.9, 0.2, 0.0, 4.9, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2020-21,0.0,71.9,Worcester - Francis J McGrath Elementary,03480177, 20.5, 5.4, 37.1, 28.1, 0.0, 0.0, 8.9, 51.3, 48.7, 0.0 -1.4822888283378746,1.48,a-cure-i1,2020-21,6.8,73.4,Worcester - Gates Lane,03480110, 16.3, 13.2, 38.6, 26.6, 0.2, 0.0, 5.2, 56.6, 43.4, 0.0 -1.7233560090702946,1.72,a-cure-i1,2020-21,9.5,88.2,Worcester - Goddard School/Science Technical,03480100, 11.2, 9.8, 62.4, 11.8, 0.6, 0.0, 4.2, 49.7, 50.3, 0.0 -1.105606258148631,1.11,a-cure-i1,2020-21,5.3,76.7,Worcester - Grafton Street,03480115, 19.1, 4.0, 49.3, 23.3, 0.3, 0.0, 4.0, 53.1, 46.9, 0.0 -3.1439688715953307,3.14,a-cure-i1,2020-21,10.1,51.4,Worcester - Head Start,03480002, 33.2, 4.4, 6.9, 48.6, 2.8, 0.0, 4.1, 49.2, 50.8, 0.0 -4.086330935251798,4.09,a-cure-i1,2020-21,14.2,55.6,Worcester - Heard Street,03480136, 14.9, 7.7, 27.0, 44.4, 0.0, 0.0, 6.0, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,88.0,Worcester - Jacob Hiatt Magnet,03480140, 32.4, 3.1, 47.5, 12.0, 0.0, 0.0, 5.0, 47.8, 52.2, 0.0 -3.937608318890814,3.94,a-cure-i1,2020-21,14.2,57.7,Worcester - Lake View,03480145, 18.8, 7.8, 22.9, 42.3, 0.3, 0.0, 7.8, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2020-21,0.0,85.1,Worcester - Lincoln Street,03480160, 22.1, 4.8, 55.4, 14.9, 0.0, 0.0, 2.8, 54.2, 45.8, 0.0 -1.9485420240137221,1.95,a-cure-i1,2020-21,7.1,58.3,Worcester - May Street,03480175, 14.1, 9.5, 22.3, 41.7, 0.0, 0.4, 12.0, 50.9, 49.1, 0.0 -2.8744588744588744,2.87,a-cure-i1,2020-21,8.3,46.2,Worcester - Midland Street,03480185, 7.1, 9.0, 21.4, 53.8, 0.0, 0.0, 8.6, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2020-21,3.0,48.7,Worcester - Nelson Place,03480200, 14.8, 7.9, 19.0, 51.3, 0.0, 0.0, 7.0, 60.2, 39.8, 0.0 -4.431137724550898,4.43,a-cure-i1,2020-21,18.5,66.8,Worcester - Norrback Avenue,03480202, 26.6, 3.9, 30.7, 33.2, 0.2, 0.0, 5.4, 53.7, 46.3, 0.0 -4.952841596130592,4.95,a-cure-i1,2020-21,25.6,82.7,Worcester - North High,03480515, 20.6, 5.5, 53.2, 17.3, 0.1, 0.0, 3.3, 51.3, 48.7, 0.0 -1.8420348058902274,1.84,a-cure-i1,2020-21,8.6,74.7,Worcester - Quinsigamond,03480210, 18.0, 4.2, 47.4, 25.3, 0.4, 0.0, 4.7, 53.6, 46.4, 0.0 -4.601864181091878,4.6,a-cure-i1,2020-21,21.6,75.1,Worcester - Rice Square,03480215, 23.0, 6.7, 41.1, 24.9, 0.0, 0.0, 4.3, 49.2, 50.8, 0.0 -4.2683706070287535,4.27,a-cure-i1,2020-21,16.7,62.6,Worcester - Roosevelt,03480220, 23.8, 3.5, 29.6, 37.4, 0.3, 0.2, 5.3, 51.1, 48.9, 0.0 -3.0426908150064684,3.04,a-cure-i1,2020-21,14.7,77.3,Worcester - South High Community,03480520, 17.5, 11.4, 45.1, 22.7, 0.1, 0.0, 3.2, 50.7, 49.3, 0.0 -3.4802919708029196,3.48,a-cure-i1,2020-21,14.9,68.5,Worcester - Sullivan Middle,03480423, 15.3, 9.1, 38.9, 31.5, 0.2, 0.0, 5.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2020-21,0.0,57.4,Worcester - Tatnuck,03480230, 20.4, 6.0, 25.4, 42.6, 0.3, 0.3, 5.0, 53.1, 46.9, 0.0 -3.603361344537815,3.6,a-cure-i1,2020-21,13.4,59.5,Worcester - Thorndyke Road,03480235, 18.5, 6.6, 31.2, 40.5, 0.0, 0.0, 3.2, 50.0, 50.0, 0.0 -0.9661835748792271,1,a-cure-i1,2020-21,5.0,82.8,Worcester - Union Hill School,03480240, 13.6, 1.8, 64.0, 17.2, 0.0, 0.0, 3.3, 47.6, 52.4, 0.0 -1.2538631346578366,1.25,a-cure-i1,2020-21,7.1,90.6,Worcester - University Pk Campus School,03480285, 12.4, 17.6, 56.2, 9.4, 0.9, 0.0, 3.4, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2020-21,4.0,81.6,Worcester - Vernon Hill School,03480280, 25.7, 1.9, 51.0, 18.4, 0.2, 0.0, 2.8, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2020-21,0.0,70.9,Worcester - Wawecus Road School,03480026, 11.8, 9.4, 44.9, 29.1, 0.0, 0.0, 4.7, 52.0, 48.0, 0.0 -1.9322033898305084,1.93,a-cure-i1,2020-21,5.7,47.2,Worcester - West Tatnuck,03480260, 12.2, 5.9, 20.5, 52.8, 0.9, 0.0, 7.7, 53.4, 46.6, 0.0 -2.5245202558635396,2.52,a-cure-i1,2020-21,14.8,93.8,Worcester - Woodland Academy,03480030, 9.7, 7.7, 73.6, 6.2, 0.4, 0.0, 2.4, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,54.1,Worcester - Worcester Arts Magnet School,03480225, 20.1, 7.6, 20.9, 45.9, 0.3, 0.0, 5.2, 49.2, 50.8, 0.0 -4.758441558441558,4.76,a-cure-i1,2020-21,22.9,77.0,Worcester - Worcester East Middle,03480420, 19.2, 5.0, 48.2, 23.0, 0.0, 0.1, 4.5, 50.4, 49.6, 0.0 -1.6626506024096386,1.66,a-cure-i1,2020-21,6.9,66.4,Worcester - Worcester Technical High,03480605, 17.1, 7.8, 37.9, 33.6, 0.1, 0.1, 3.4, 44.8, 55.2, 0.0 -1,1,a-cure-i1,2020-21,0.0,7.900000000000006,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 4.8, 92.1, 1.6, 0.0, 1.6, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2020-21,0.0,16.099999999999994,Wrentham - Charles E Roderick,03500010, 1.6, 2.7, 6.7, 83.9, 0.8, 0.3, 4.0, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2020-21,0.0,13.700000000000003,Wrentham - Delaney,03500003, 1.6, 3.1, 3.9, 86.3, 0.0, 0.0, 5.1, 50.3, 49.7, 0.0 -1.3930348258706466,1.39,a-cure-i1,2019-20,7.0,80.4,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 52.4, 3.5, 20.8, 19.6, 0.4, 0.1, 3.2, 46.2, 53.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.700000000000003,Abington - Abington Early Education Program,00010001, 10.2, 4.5, 8.0, 77.3, 0.0, 0.0, 0.0, 48.9, 51.1, 0.0 -4.977777777777778,4.98,a-cure-i1,2019-20,5.6,18.0,Abington - Abington High,00010505, 4.7, 2.9, 9.1, 82.0, 0.0, 0.0, 1.3, 49.4, 50.6, 0.0 -8.19753086419753,5,a-cure-i1,2019-20,8.3,16.200000000000003,Abington - Abington Middle School,00010405, 2.9, 2.3, 9.0, 83.8, 0.4, 0.0, 1.6, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.299999999999997,Abington - Beaver Brook Elementary,00010020, 5.9, 2.5, 8.7, 80.7, 1.3, 0.0, 0.8, 48.8, 51.0, 0.2 -1,1,a-cure-i1,2019-20,0.0,18.599999999999994,Abington - Woodsdale Elementary School,00010015, 4.3, 2.3, 10.6, 81.4, 0.0, 0.3, 1.0, 47.2, 52.8, 0.0 -9.71864776444929,5,a-cure-i1,2019-20,55.699999999999996,91.7,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 60.3, 1.1, 28.7, 8.3, 0.0, 0.0, 1.5, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,3.8,45.1,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 2.6, 33.4, 4.4, 54.9, 0.2, 0.0, 4.5, 51.5, 48.5, 0.1 -1,1,a-cure-i1,2019-20,3.8,42.2,Acton-Boxborough - Blanchard Memorial School,06000005, 1.9, 30.5, 5.9, 57.8, 0.0, 0.0, 3.8, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,34.599999999999994,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 2.3, 19.3, 4.6, 65.4, 0.3, 0.3, 7.9, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,58.8,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 4.9, 32.4, 12.7, 41.2, 0.0, 0.0, 8.8, 53.9, 46.1, 0.0 -1.8016085790884722,1.8,a-cure-i1,2019-20,8.4,74.6,Acton-Boxborough - Luther Conant School,06000030, 3.2, 59.9, 8.1, 25.4, 0.0, 0.0, 3.4, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.599999999999994,Acton-Boxborough - McCarthy-Towne School,06000015, 3.5, 14.0, 8.7, 66.4, 0.6, 0.0, 6.8, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,34.3,Acton-Boxborough - Merriam School,06000010, 2.1, 20.6, 5.9, 65.7, 0.0, 0.2, 5.5, 52.4, 47.6, 0.0 -2.101010101010101,2.1,a-cure-i1,2019-20,9.1,69.3,Acton-Boxborough - Paul P Gates Elementary School,06000025, 2.7, 56.9, 5.1, 30.7, 0.0, 0.0, 4.6, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,3.2,49.2,Acton-Boxborough - Raymond J Grey Junior High,06000405, 2.8, 35.0, 6.6, 50.8, 0.5, 0.2, 4.1, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,3.2,10.900000000000006,Acushnet - Acushnet Elementary School,00030025, 1.4, 0.9, 4.2, 89.1, 0.2, 0.0, 4.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.599999999999994,Acushnet - Albert F Ford Middle School,00030305, 0.7, 0.9, 4.1, 91.4, 0.0, 0.0, 2.9, 51.9, 48.1, 0.0 -4.207951070336391,4.21,a-cure-i1,2019-20,8.600000000000001,32.7,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 2.2, 16.9, 6.7, 67.3, 0.2, 0.0, 6.6, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.700000000000003,Agawam - Agawam Early Childhood Center,00050003, 3.8, 9.4, 11.3, 71.3, 0.0, 0.0, 4.4, 58.1, 41.9, 0.0 -1,1,a-cure-i1,2019-20,1.1,14.0,Agawam - Agawam High,00050505, 1.6, 2.4, 7.3, 86.0, 0.1, 0.0, 2.6, 50.1, 49.8, 0.1 -1,1,a-cure-i1,2019-20,1.7,16.200000000000003,Agawam - Agawam Junior High,00050405, 3.8, 2.9, 6.8, 83.8, 0.0, 0.0, 2.7, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.099999999999994,Agawam - Benjamin J Phelps,00050020, 0.6, 2.9, 5.6, 88.9, 0.0, 0.0, 2.0, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.400000000000006,Agawam - Clifford M Granger,00050010, 2.3, 4.7, 14.5, 76.6, 0.0, 0.4, 1.6, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.599999999999994,Agawam - James Clark School,00050030, 1.7, 4.0, 8.6, 81.4, 0.0, 0.0, 4.3, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,2.2,21.099999999999994,Agawam - Roberta G. Doering School,00050303, 2.4, 3.6, 11.5, 78.9, 0.0, 0.0, 3.6, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.200000000000003,Agawam - Robinson Park,00050025, 2.6, 3.3, 10.2, 79.8, 0.0, 0.0, 4.1, 48.8, 51.2, 0.0 -3.0729833546734957,3.07,a-cure-i1,2019-20,15.0,78.1,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 13.9, 0.2, 60.2, 21.9, 0.8, 0.0, 3.1, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.0,Amesbury - Amesbury Elementary,00070005, 1.4, 0.3, 5.2, 89.0, 0.3, 0.0, 3.8, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,2.3,12.5,Amesbury - Amesbury High,00070505, 1.5, 1.3, 5.9, 87.5, 0.0, 0.0, 3.8, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.900000000000006,Amesbury - Amesbury Innovation High School,00070515, 3.8, 0.0, 7.5, 81.1, 0.0, 0.0, 7.5, 56.6, 41.5, 1.9 -1,1,a-cure-i1,2019-20,0.0,18.099999999999994,Amesbury - Amesbury Middle,00070013, 2.1, 1.6, 9.9, 81.9, 0.1, 0.3, 4.0, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.700000000000003,Amesbury - Charles C Cashman Elementary,00070010, 2.4, 1.2, 13.9, 79.3, 0.0, 0.2, 2.9, 53.6, 46.4, 0.0 -4.435643564356436,4.44,a-cure-i1,2019-20,14.0,50.5,Amherst - Crocker Farm Elementary,00080009, 8.0, 11.3, 23.3, 49.5, 0.5, 0.0, 7.5, 54.3, 45.0, 0.8 -6.193548387096773,5,a-cure-i1,2019-20,20.4,52.7,Amherst - Fort River Elementary,00080020, 7.7, 13.2, 25.1, 47.3, 0.0, 0.3, 6.4, 47.6, 52.4, 0.0 -12.604081632653061,5,a-cure-i1,2019-20,38.6,49.0,Amherst - Wildwood Elementary,00080050, 12.3, 13.1, 16.8, 51.0, 0.3, 0.0, 6.5, 50.3, 49.7, 0.0 -5.213483146067416,5,a-cure-i1,2019-20,14.5,44.5,Amherst-Pelham - Amherst Regional High,06050505, 8.2, 9.8, 16.8, 55.5, 0.1, 0.1, 9.5, 50.3, 49.3, 0.3 -7.898305084745762,5,a-cure-i1,2019-20,23.3,47.2,Amherst-Pelham - Amherst Regional Middle School,06050405, 8.5, 8.7, 20.2, 52.8, 0.2, 0.0, 9.6, 53.1, 46.9, 0.0 -5.261016949152542,5,a-cure-i1,2019-20,9.7,29.5,Andover - Andover High,00090505, 2.1, 18.7, 6.3, 70.5, 0.3, 0.0, 2.2, 47.2, 52.7, 0.1 -1,1,a-cure-i1,2019-20,2.7,31.400000000000006,Andover - Andover West Middle,00090310, 4.7, 17.9, 6.2, 68.6, 0.0, 0.0, 2.6, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,3.0,23.299999999999997,Andover - Bancroft Elementary,00090003, 1.8, 8.7, 6.7, 76.7, 0.0, 0.0, 6.2, 54.1, 45.9, 0.0 -5.522123893805311,5,a-cure-i1,2019-20,7.800000000000001,22.599999999999994,Andover - Doherty Middle,00090305, 1.7, 9.7, 7.7, 77.4, 0.2, 0.2, 3.1, 46.9, 53.1, 0.0 -2.934097421203438,2.93,a-cure-i1,2019-20,6.4,34.900000000000006,Andover - Henry C Sanborn Elementary,00090010, 2.5, 23.2, 6.1, 65.1, 0.0, 0.0, 3.1, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,1.5,48.6,Andover - High Plain Elementary,00090004, 4.6, 30.6, 7.8, 51.4, 0.0, 0.2, 5.5, 55.0, 45.0, 0.0 -4.3763676148796495,4.38,a-cure-i1,2019-20,12.5,45.7,Andover - Shawsheen School,00090005, 0.0, 24.7, 12.3, 54.3, 0.0, 0.0, 8.6, 72.8, 27.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.5,Andover - South Elementary,00090020, 1.0, 18.0, 4.4, 73.5, 0.2, 0.0, 2.9, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.099999999999994,Andover - West Elementary,00090025, 2.7, 15.8, 7.7, 70.9, 0.0, 0.0, 2.9, 51.3, 48.7, 0.0 -2.375257731958763,2.38,a-cure-i1,2019-20,7.2,48.5,Andover - Wood Hill Middle School,00090350, 2.5, 33.5, 8.9, 51.5, 0.2, 0.2, 3.2, 51.7, 48.3, 0.0 -9.180327868852459,5,a-cure-i1,2019-20,24.5,42.7,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 13.1, 2.1, 22.7, 57.3, 0.2, 0.2, 4.4, 53.3, 46.7, 0.0 -6.173228346456692,5,a-cure-i1,2019-20,9.8,25.400000000000006,Arlington - Arlington High,00100505, 4.0, 10.5, 6.0, 74.6, 0.0, 0.1, 4.8, 48.5, 51.2, 0.3 -8.861538461538462,5,a-cure-i1,2019-20,14.4,26.0,Arlington - Brackett,00100010, 1.3, 10.8, 4.5, 74.0, 0.0, 0.2, 9.2, 54.4, 45.6, 0.0 -4.535433070866141,4.54,a-cure-i1,2019-20,7.2,25.400000000000006,Arlington - Cyrus E Dallin,00100025, 1.5, 13.8, 3.8, 74.6, 0.0, 0.0, 6.4, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,4.2,26.700000000000003,Arlington - Gibbs School,00100305, 4.1, 8.2, 8.2, 73.3, 0.0, 0.0, 6.2, 52.5, 47.5, 0.0 -6.430868167202574,5,a-cure-i1,2019-20,12.5,31.099999999999994,Arlington - Hardy,00100030, 3.2, 15.5, 5.6, 68.9, 0.2, 0.0, 6.5, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.0,Arlington - John A Bishop,00100005, 3.0, 16.6, 3.4, 67.0, 0.0, 0.5, 9.5, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2019-20,4.0,37.3,Arlington - M Norcross Stratton,00100055, 3.3, 18.4, 6.4, 62.7, 0.0, 0.0, 9.1, 50.2, 49.8, 0.0 -5.3583138173302105,5,a-cure-i1,2019-20,14.3,42.7,Arlington - Menotomy Preschool,00100038, 4.5, 22.5, 3.4, 57.3, 0.0, 0.0, 12.4, 62.9, 37.1, 0.0 -4.086330935251799,4.09,a-cure-i1,2019-20,7.1,27.799999999999997,Arlington - Ottoson Middle,00100410, 3.0, 11.6, 7.1, 72.2, 0.1, 0.2, 5.8, 50.1, 49.7, 0.2 -6.863636363636363,5,a-cure-i1,2019-20,15.100000000000001,35.2,Arlington - Peirce,00100045, 5.5, 15.6, 6.8, 64.8, 0.3, 0.0, 6.8, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.8,Arlington - Thompson,00100050, 4.3, 15.4, 8.9, 63.2, 0.4, 0.0, 7.8, 48.8, 51.0, 0.2 -13.13207547169812,5,a-cure-i1,2019-20,8.7,10.599999999999994,Ashburnham-Westminster - Briggs Elementary,06100025, 0.8, 1.1, 4.9, 89.4, 0.2, 0.0, 3.6, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.099999999999994,Ashburnham-Westminster - Meetinghouse School,06100010, 1.0, 0.5, 6.5, 88.9, 0.0, 0.0, 3.0, 50.3, 49.7, 0.0 -16.551724137931043,5,a-cure-i1,2019-20,6.0,5.799999999999997,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.1, 1.5, 2.5, 94.2, 0.0, 0.0, 1.6, 49.5, 50.4, 0.1 -1,1,a-cure-i1,2019-20,0.0,11.5,Ashburnham-Westminster - Overlook Middle School,06100305, 1.2, 0.3, 6.9, 88.5, 0.2, 0.0, 2.9, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.599999999999994,Ashburnham-Westminster - Westminster Elementary,06100005, 0.8, 0.5, 6.6, 89.4, 0.0, 0.0, 2.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,1.9,31.299999999999997,Ashland - Ashland High,00140505, 3.0, 13.2, 12.1, 68.7, 0.5, 0.0, 2.4, 47.6, 52.2, 0.1 -1,1,a-cure-i1,2019-20,4.8,33.599999999999994,Ashland - Ashland Middle,00140405, 2.3, 13.5, 13.2, 66.4, 0.9, 0.0, 3.6, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,2.6,34.099999999999994,Ashland - David Mindess,00140015, 2.3, 14.6, 13.4, 65.9, 0.6, 0.0, 3.3, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,2.2,40.7,Ashland - Henry E Warren Elementary,00140010, 3.1, 22.0, 11.4, 59.3, 0.2, 0.0, 4.1, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,34.400000000000006,Ashland - William Pittaway Elementary,00140005, 5.4, 23.7, 5.4, 65.6, 0.0, 0.0, 0.0, 62.4, 37.6, 0.0 -1,1,a-cure-i1,2019-20,3.3000000000000003,23.799999999999997,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 1.8, 0.5, 18.8, 76.2, 0.3, 0.0, 2.4, 60.2, 39.3, 0.5 -1,1,a-cure-i1,2019-20,0.0,18.599999999999994,Athol-Royalston - Athol Community Elementary School,06150020, 2.3, 1.0, 11.0, 81.4, 0.0, 0.0, 4.3, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.200000000000003,Athol-Royalston - Athol High,06150505, 1.2, 0.3, 6.7, 87.8, 0.0, 0.0, 4.0, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.400000000000006,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.6, 1.8, 11.2, 82.6, 0.2, 0.0, 2.5, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.200000000000003,Athol-Royalston - Royalston Community School,06150050, 2.0, 0.0, 2.0, 89.8, 0.0, 0.0, 6.1, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,0.4,24.700000000000003,Atlantis Charter (District) - Atlantis Charter School,04910550, 5.5, 1.8, 13.1, 75.3, 0.2, 0.1, 4.1, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2019-20,4.2,29.799999999999997,Attleboro - A. Irvin Studley Elementary School,00160001, 6.9, 2.4, 14.8, 70.2, 0.5, 0.3, 5.0, 49.9, 50.1, 0.0 -10.807947019867548,5,a-cure-i1,2019-20,20.4,30.200000000000003,Attleboro - Attleboro Community Academy,00160515, 7.5, 1.9, 11.3, 69.8, 1.9, 0.0, 7.5, 66.0, 34.0, 0.0 -4.215873015873016,4.22,a-cure-i1,2019-20,8.3,31.5,Attleboro - Attleboro High,00160505, 6.2, 4.5, 16.2, 68.5, 0.2, 0.2, 4.2, 53.4, 46.6, 0.1 -1,1,a-cure-i1,2019-20,0.0,36.9,Attleboro - Cyril K. Brennan Middle School,00160315, 5.6, 5.0, 19.3, 63.1, 0.2, 0.0, 6.8, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.299999999999997,Attleboro - Early Learning Center,00160008, 4.3, 4.3, 16.8, 71.7, 0.0, 0.0, 2.7, 57.1, 42.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.8,Attleboro - Hill-Roberts Elementary School,00160045, 7.5, 5.9, 12.5, 66.2, 0.2, 0.0, 7.7, 51.8, 48.2, 0.0 -3.710144927536232,3.71,a-cure-i1,2019-20,8.0,34.5,Attleboro - Hyman Fine Elementary School,00160040, 4.3, 3.3, 19.3, 65.5, 0.0, 0.0, 7.6, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,3.5,40.4,Attleboro - Peter Thacher Elementary School,00160050, 11.1, 6.9, 12.7, 59.6, 0.2, 0.2, 9.3, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.799999999999997,Attleboro - Robert J. Coelho Middle School,00160305, 6.9, 5.2, 10.7, 70.2, 0.3, 0.0, 6.7, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,34.599999999999994,Attleboro - Thomas Willett Elementary School,00160035, 6.2, 3.1, 17.4, 65.4, 0.0, 0.0, 7.9, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,3.3,33.599999999999994,Attleboro - Wamsutta Middle School,00160320, 5.9, 4.6, 15.8, 66.4, 0.0, 0.0, 7.3, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,4.1,20.099999999999994,Auburn - Auburn Middle,00170305, 2.4, 4.1, 9.6, 79.9, 0.0, 0.0, 4.0, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,2.7,18.900000000000006,Auburn - Auburn Senior High,00170505, 2.1, 4.2, 8.9, 81.1, 0.3, 0.0, 3.4, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.299999999999997,Auburn - Bryn Mawr,00170010, 1.4, 3.5, 11.5, 79.7, 0.3, 0.0, 3.5, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.900000000000006,Auburn - Pakachoag School,00170025, 0.6, 3.6, 9.4, 83.1, 0.0, 0.0, 3.2, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.099999999999994,Auburn - Swanson Road Intermediate School,00170030, 3.1, 4.5, 9.5, 79.9, 0.0, 0.0, 3.1, 52.7, 47.3, 0.0 -4.273789649415693,4.27,a-cure-i1,2019-20,16.0,59.9,Avon - Avon Middle High School,00180510, 37.5, 5.5, 9.7, 40.1, 0.3, 0.0, 6.8, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,46.6,Avon - Ralph D Butler,00180010, 24.5, 4.8, 10.3, 53.4, 0.2, 0.0, 6.7, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,3.6,27.0,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 5.1, 1.6, 10.7, 73.0, 1.9, 0.3, 7.5, 46.8, 53.2, 0.0 -10.406504065040652,5,a-cure-i1,2019-20,16.0,24.599999999999994,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 3.4, 2.9, 13.8, 75.4, 0.7, 0.5, 3.2, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,4.6,16.599999999999994,Ayer Shirley School District - Lura A. White Elementary School,06160001, 1.5, 1.2, 7.9, 83.4, 0.3, 0.3, 5.5, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.599999999999994,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 4.7, 4.1, 10.4, 74.4, 0.4, 0.2, 5.9, 52.9, 47.1, 0.0 -1.556420233463035,1.56,a-cure-i1,2019-20,5.0,51.4,Barnstable - Barnstable Community Innovation School,00200012, 11.3, 4.1, 30.5, 48.6, 1.4, 0.0, 4.1, 53.1, 46.9, 0.0 -3.7,3.7,a-cure-i1,2019-20,7.4,32.0,Barnstable - Barnstable High,00200505, 8.5, 1.8, 16.7, 68.0, 0.4, 0.2, 4.4, 48.8, 51.2, 0.1 -1,1,a-cure-i1,2019-20,2.2,31.700000000000003,Barnstable - Barnstable Intermediate School,00200315, 6.9, 2.2, 17.3, 68.3, 0.5, 0.4, 4.4, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,4.4,33.599999999999994,Barnstable - Barnstable United Elementary School,00200050, 8.0, 1.4, 18.2, 66.4, 0.4, 0.0, 5.7, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.400000000000006,Barnstable - Centerville Elementary,00200010, 7.0, 1.2, 18.1, 64.6, 0.0, 0.0, 9.1, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,41.6,Barnstable - Enoch Cobb Early Learning Center,00200001, 5.6, 1.9, 18.0, 58.4, 0.0, 0.0, 16.1, 61.5, 38.5, 0.0 -2.014641288433382,2.01,a-cure-i1,2019-20,8.6,68.3,Barnstable - Hyannis West Elementary,00200025, 15.5, 1.9, 38.5, 31.7, 0.3, 0.3, 11.7, 43.4, 56.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.700000000000003,Barnstable - West Barnstable Elementary,00200005, 2.9, 2.0, 11.0, 74.3, 0.0, 0.0, 9.8, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.299999999999997,Barnstable - West Villages Elementary School,00200045, 0.9, 1.7, 9.0, 80.7, 0.0, 0.0, 7.8, 51.4, 48.3, 0.2 -5.522285714285715,5,a-cure-i1,2019-20,30.200000000000003,87.5,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 27.6, 0.6, 57.0, 12.5, 0.0, 0.4, 1.7, 52.3, 47.7, 0.0 -2.5474860335195535,2.55,a-cure-i1,2019-20,5.7,35.8,Bedford - Bedford High,00230505, 7.5, 14.1, 9.6, 64.2, 0.1, 0.1, 4.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.4,33.599999999999994,Bedford - John Glenn Middle,00230305, 6.1, 18.0, 5.6, 66.4, 0.2, 0.0, 3.7, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,4.3,42.0,Bedford - Lt Elezer Davis,00230010, 5.6, 23.8, 4.8, 58.0, 0.0, 0.0, 7.8, 54.1, 45.9, 0.0 -3.74468085106383,3.74,a-cure-i1,2019-20,8.8,37.6,Bedford - Lt Job Lane School,00230012, 6.4, 19.3, 5.7, 62.4, 0.0, 0.0, 6.2, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,2.1,9.299999999999997,Belchertown - Belchertown High,00240505, 2.0, 1.4, 2.9, 90.7, 0.1, 0.3, 2.6, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.599999999999994,Belchertown - Chestnut Hill Community School,00240006, 1.8, 1.0, 5.2, 87.4, 0.8, 0.0, 3.8, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.700000000000003,Belchertown - Cold Spring,00240005, 1.1, 1.6, 7.9, 87.3, 0.0, 0.0, 2.1, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.599999999999994,Belchertown - Jabish Middle School,00240025, 3.0, 1.6, 4.0, 88.4, 0.0, 0.5, 2.4, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.200000000000003,Belchertown - Swift River Elementary,00240018, 0.6, 1.0, 6.1, 86.8, 0.0, 0.0, 5.5, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.299999999999997,Bellingham - Bellingham Early Childhood Center,00250003, 3.1, 10.2, 3.1, 83.7, 0.0, 0.0, 0.0, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,3.6,14.599999999999994,Bellingham - Bellingham High School,00250505, 2.9, 3.4, 5.1, 85.4, 0.3, 0.0, 2.9, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.400000000000006,Bellingham - Bellingham Memorial School,00250315, 2.3, 2.6, 5.3, 87.6, 0.0, 0.0, 2.1, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.099999999999994,Bellingham - Joseph F DiPietro Elementary School,00250020, 1.5, 3.0, 6.3, 85.9, 0.0, 0.6, 2.7, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.0,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 21.9, 75.0, 0.0, 0.0, 3.1, 43.8, 50.0, 6.3 -1,1,a-cure-i1,2019-20,0.0,17.900000000000006,Bellingham - Stall Brook,00250025, 1.8, 0.7, 8.8, 82.1, 0.0, 2.2, 4.4, 51.8, 48.2, 0.0 -5.097791798107255,5,a-cure-i1,2019-20,10.1,31.700000000000003,Belmont - Belmont High,00260505, 3.3, 18.3, 4.2, 68.3, 0.0, 0.0, 5.8, 49.3, 50.7, 0.0 -3.0742358078602625,3.07,a-cure-i1,2019-20,8.8,45.8,Belmont - Daniel Butler,00260015, 1.6, 27.9, 3.6, 54.2, 0.5, 0.0, 12.1, 51.8, 48.2, 0.0 -3.425790754257908,3.43,a-cure-i1,2019-20,8.8,41.1,Belmont - Mary Lee Burbank,00260010, 5.7, 22.1, 2.3, 58.9, 0.0, 0.2, 10.8, 51.3, 48.7, 0.0 -3.276450511945393,3.28,a-cure-i1,2019-20,6.0,29.299999999999997,Belmont - Roger E Wellington,00260035, 3.0, 15.4, 1.8, 70.7, 0.0, 0.0, 9.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,43.2,Belmont - Winn Brook,00260005, 1.3, 29.0, 4.5, 56.8, 0.0, 0.0, 8.4, 51.4, 48.6, 0.0 -8.587570621468926,5,a-cure-i1,2019-20,19.0,35.400000000000006,Belmont - Winthrop L Chenery Middle,00260305, 3.1, 20.3, 4.8, 64.6, 0.1, 0.1, 6.9, 50.8, 49.2, 0.0 -6.901639344262295,5,a-cure-i1,2019-20,42.1,97.6,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 82.4, 0.9, 9.5, 2.4, 0.3, 0.6, 3.9, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.8,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 3.2, 20.5, 4.9, 66.2, 0.4, 0.0, 4.7, 49.3, 50.7, 0.0 -1.1897435897435897,1.19,a-cure-i1,2019-20,5.8,78.0,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 13.0, 2.4, 60.2, 22.0, 0.0, 0.0, 2.4, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.099999999999994,Berkley - Berkley Community School,00270010, 0.6, 0.6, 1.3, 92.9, 0.2, 0.2, 4.2, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.599999999999994,Berkley - Berkley Middle School,00270305, 0.5, 0.0, 2.8, 93.4, 0.0, 0.0, 3.3, 51.1, 48.9, 0.0 -3.827242524916944,3.83,a-cure-i1,2019-20,7.2,30.099999999999994,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 11.8, 2.7, 10.5, 69.9, 0.3, 0.0, 4.8, 54.8, 44.9, 0.3 -5.167701863354039,5,a-cure-i1,2019-20,5.2,16.099999999999994,Berkshire Hills - Monument Mt Regional High,06180505, 0.8, 2.2, 9.8, 83.9, 0.2, 0.6, 2.6, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,2.7,21.299999999999997,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.8, 3.7, 9.8, 78.7, 0.3, 0.0, 5.8, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.099999999999994,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.9, 3.4, 12.6, 73.9, 0.0, 0.0, 9.2, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.099999999999994,Berlin-Boylston - Berlin Memorial School,06200005, 0.5, 1.1, 6.0, 86.9, 0.0, 0.0, 5.5, 51.9, 48.1, 0.0 -5.842696629213484,5,a-cure-i1,2019-20,6.5,17.799999999999997,Berlin-Boylston - Boylston Elementary School,06200010, 1.3, 4.0, 7.7, 82.2, 0.3, 0.0, 4.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,1.9,14.900000000000006,Berlin-Boylston - Tahanto Regional High,06200505, 2.8, 4.2, 4.6, 85.1, 0.2, 0.4, 2.7, 51.5, 48.3, 0.2 -1,1,a-cure-i1,2019-20,0.0,19.5,Beverly - Ayers/Ryal Side School,00300055, 2.9, 2.1, 11.2, 80.5, 0.0, 0.0, 3.3, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,2.0,23.099999999999994,Beverly - Beverly High,00300505, 3.5, 2.4, 13.5, 76.9, 0.1, 0.1, 3.5, 52.4, 47.5, 0.2 -4.7673469387755105,4.77,a-cure-i1,2019-20,7.300000000000001,24.5,Beverly - Beverly Middle School,00300305, 2.8, 2.5, 16.0, 75.5, 0.1, 0.1, 3.1, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.700000000000003,Beverly - Centerville Elementary,00300010, 5.1, 1.3, 16.2, 72.3, 0.0, 0.0, 5.1, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.900000000000006,Beverly - Cove Elementary,00300015, 4.2, 1.9, 13.3, 75.1, 0.0, 0.0, 5.6, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.299999999999997,Beverly - Hannah Elementary,00300033, 4.2, 2.4, 12.3, 75.7, 0.0, 0.0, 5.4, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.200000000000003,Beverly - McKeown School,00300002, 7.4, 2.8, 8.3, 77.8, 0.9, 0.0, 2.8, 58.3, 41.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.700000000000003,Beverly - North Beverly Elementary,00300040, 2.0, 2.0, 16.1, 76.3, 0.0, 0.0, 3.5, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2019-20,1.0,21.900000000000006,Billerica - Billerica Memorial High School,00310505, 4.7, 8.5, 6.3, 78.1, 0.1, 0.1, 2.1, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.900000000000006,Billerica - Frederick J Dutile,00310007, 3.3, 10.3, 9.5, 74.1, 0.0, 0.0, 2.9, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.200000000000003,Billerica - Hajjar Elementary,00310026, 4.9, 11.2, 11.5, 69.8, 0.3, 0.0, 2.3, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.400000000000006,Billerica - John F Kennedy,00310012, 2.2, 5.0, 6.9, 81.6, 0.0, 0.0, 4.4, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.799999999999997,Billerica - Locke Middle,00310310, 2.8, 7.4, 5.4, 79.2, 0.0, 0.0, 5.2, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,2.1,26.599999999999994,Billerica - Marshall Middle School,00310305, 7.4, 6.7, 9.4, 73.4, 0.2, 0.0, 3.0, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.599999999999994,Billerica - Parker,00310015, 6.8, 13.2, 9.4, 66.4, 0.2, 0.0, 4.0, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.200000000000003,Billerica - Thomas Ditson,00310005, 5.3, 8.3, 7.7, 74.8, 0.0, 0.0, 3.9, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.900000000000006,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 1.0, 1.7, 6.1, 89.1, 0.0, 0.1, 2.0, 48.9, 50.9, 0.2 -1,1,a-cure-i1,2019-20,0.0,18.0,Blackstone-Millville - A F Maloney,06220015, 2.8, 0.3, 8.0, 82.0, 0.0, 0.0, 6.9, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2019-20,3.0,10.799999999999997,Blackstone-Millville - Blackstone Millville RHS,06220505, 1.6, 0.9, 5.9, 89.2, 0.0, 0.0, 2.3, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,3.7,13.900000000000006,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.2, 1.0, 7.6, 86.1, 0.0, 0.0, 4.2, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.799999999999997,Blackstone-Millville - John F Kennedy Elementary,06220008, 1.9, 0.0, 9.0, 84.2, 0.0, 0.0, 4.9, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.099999999999994,Blackstone-Millville - Millville Elementary,06220010, 0.4, 0.0, 7.1, 90.9, 0.0, 0.0, 1.6, 54.7, 45.3, 0.0 -3.272727272727273,3.27,a-cure-i1,2019-20,9.0,44.0,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 21.1, 1.8, 15.0, 56.0, 0.5, 0.1, 5.6, 55.3, 44.7, 0.0 -8.787746170678338,5,a-cure-i1,2019-20,50.2,91.4,Boston - Another Course To College,00350541, 49.1, 0.9, 39.7, 8.6, 0.4, 0.0, 1.3, 53.9, 46.1, 0.0 -13.70724191063174,5,a-cure-i1,2019-20,55.6,64.9,Boston - Baldwin Early Learning Center,00350003, 11.0, 23.4, 26.0, 35.1, 0.0, 0.0, 4.5, 59.1, 40.9, 0.0 -6.143790849673202,5,a-cure-i1,2019-20,23.5,61.2,Boston - Beethoven,00350021, 27.0, 3.0, 25.7, 38.8, 0.0, 0.0, 5.6, 47.4, 52.6, 0.0 -5.56887486855941,5,a-cure-i1,2019-20,33.099999999999994,95.1,Boston - Blackstone,00350390, 26.3, 2.9, 63.4, 4.9, 0.2, 0.2, 2.2, 55.8, 44.2, 0.0 -12.752,5,a-cure-i1,2019-20,79.7,100.0,Boston - Boston Adult Academy,00350548, 52.5, 4.4, 40.4, 0.0, 0.0, 0.0, 2.7, 54.6, 45.4, 0.0 -10.008810572687224,5,a-cure-i1,2019-20,56.8,90.8,Boston - Boston Arts Academy,00350546, 44.9, 2.5, 38.8, 9.2, 0.4, 0.2, 4.0, 33.3, 66.5, 0.2 -7.7272727272727275,5,a-cure-i1,2019-20,42.5,88.0,Boston - Boston Collaborative High School,00350755, 32.0, 1.7, 51.4, 12.0, 0.0, 0.0, 2.9, 53.1, 46.9, 0.0 -7.539267015706806,5,a-cure-i1,2019-20,45.0,95.5,Boston - Boston Community Leadership Academy,00350558, 33.0, 3.6, 57.1, 4.5, 0.2, 0.2, 1.4, 55.5, 44.5, 0.0 -6.715447154471544,5,a-cure-i1,2019-20,41.3,98.4,Boston - Boston International High School,00350507, 33.1, 7.7, 57.1, 1.6, 0.2, 0.2, 0.0, 53.6, 46.4, 0.0 -9.507246376811592,5,a-cure-i1,2019-20,32.8,55.2,Boston - Boston Latin,00350560, 7.6, 29.4, 13.3, 44.8, 0.1, 0.2, 4.6, 45.5, 54.4, 0.1 -9.198288159771757,5,a-cure-i1,2019-20,40.300000000000004,70.1,Boston - Boston Latin Academy,00350545, 21.0, 19.9, 25.5, 29.9, 0.2, 0.1, 3.4, 40.8, 59.1, 0.1 -10.009724473257696,5,a-cure-i1,2019-20,38.599999999999994,61.7,Boston - Boston Teachers Union School,00350012, 23.0, 2.2, 29.9, 38.3, 0.4, 0.0, 6.2, 50.4, 49.6, 0.0 -6.511041009463724,5,a-cure-i1,2019-20,38.7,95.1,Boston - Brighton High,00350505, 35.7, 4.1, 52.5, 4.9, 0.4, 0.6, 1.9, 57.6, 42.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,82.1,Boston - Carter School,00350036, 50.0, 7.1, 21.4, 17.9, 0.0, 3.6, 0.0, 57.1, 42.9, 0.0 -9.837398373983739,5,a-cure-i1,2019-20,60.5,98.4,Boston - Charles H Taylor,00350054, 74.8, 0.9, 19.2, 1.6, 0.9, 0.0, 2.6, 53.0, 47.0, 0.0 -7.366626065773447,5,a-cure-i1,2019-20,37.8,82.1,Boston - Charles Sumner,00350052, 18.8, 1.5, 57.0, 17.9, 0.0, 0.0, 4.9, 53.6, 46.4, 0.0 -5.716666666666668,5,a-cure-i1,2019-20,34.300000000000004,96.0,Boston - Charlestown High,00350515, 29.9, 8.2, 56.3, 4.0, 0.2, 0.0, 1.4, 59.8, 40.2, 0.0 -7.634782608695652,5,a-cure-i1,2019-20,43.9,92.0,Boston - Clarence R Edwards Middle,00350430, 15.8, 7.2, 67.0, 8.0, 0.0, 0.3, 1.6, 53.1, 46.9, 0.0 -13.034623217922606,5,a-cure-i1,2019-20,80.0,98.2,Boston - Community Academy,00350518, 50.9, 0.0, 43.9, 1.8, 1.8, 0.0, 1.8, 50.9, 49.1, 0.0 -8.303589743589743,5,a-cure-i1,2019-20,50.6,97.5,Boston - Community Academy of Science and Health,00350581, 60.3, 3.1, 29.4, 2.5, 0.6, 0.0, 4.2, 54.7, 45.3, 0.0 -7.088861076345433,5,a-cure-i1,2019-20,35.400000000000006,79.9,Boston - Condon K-8,00350146, 31.4, 6.9, 36.4, 20.1, 0.4, 0.4, 4.5, 51.7, 48.3, 0.0 -7.4119278779472975,5,a-cure-i1,2019-20,33.400000000000006,72.1,Boston - Curley K-8 School,00350020, 17.6, 2.5, 46.0, 27.9, 0.0, 0.0, 5.9, 53.8, 46.2, 0.0 -6.908235294117648,5,a-cure-i1,2019-20,36.7,85.0,Boston - Curtis Guild,00350062, 1.6, 1.2, 81.5, 15.0, 0.0, 0.0, 0.8, 51.6, 48.4, 0.0 -7.670329670329671,5,a-cure-i1,2019-20,34.9,72.8,Boston - Dante Alighieri Montessori School,00350066, 1.9, 2.9, 61.2, 27.2, 0.0, 0.0, 6.8, 46.6, 53.4, 0.0 -10.519877675840979,5,a-cure-i1,2019-20,64.5,98.1,Boston - David A Ellis,00350072, 40.9, 0.0, 54.7, 1.9, 0.5, 0.0, 1.9, 49.9, 49.9, 0.2 -9.782299084435401,5,a-cure-i1,2019-20,60.099999999999994,98.3,Boston - Dearborn,00350074, 61.6, 1.2, 30.5, 1.7, 0.2, 1.2, 3.7, 49.8, 50.2, 0.0 -5.620457604306865,5,a-cure-i1,2019-20,26.1,74.3,Boston - Dennis C Haley,00350077, 31.3, 0.8, 36.1, 25.7, 0.0, 0.3, 5.9, 52.7, 47.3, 0.0 -4.449291166848418,4.45,a-cure-i1,2019-20,25.5,91.7,Boston - Donald Mckay,00350080, 1.9, 0.6, 88.0, 8.3, 0.0, 0.0, 1.2, 47.9, 52.1, 0.0 -5.929018789144051,5,a-cure-i1,2019-20,35.5,95.8,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 55.0, 1.6, 36.1, 4.2, 0.5, 0.0, 2.6, 55.5, 44.5, 0.0 -7.0,5,a-cure-i1,2019-20,28.7,65.6,Boston - Dr. William Henderson Lower,00350266, 29.7, 11.3, 17.0, 34.4, 0.0, 0.9, 6.6, 46.7, 52.8, 0.5 -4.87218045112782,4.87,a-cure-i1,2019-20,24.3,79.8,Boston - Dr. William Henderson Upper,00350426, 42.3, 9.0, 24.3, 20.2, 0.7, 0.0, 3.5, 54.3, 45.7, 0.0 -15.864406779661016,5,a-cure-i1,2019-20,70.19999999999999,70.8,Boston - East Boston Early Childhood Center,00350009, 5.3, 1.9, 61.2, 29.2, 0.5, 0.5, 1.4, 48.3, 51.7, 0.0 -5.191583610188261,5,a-cure-i1,2019-20,29.3,90.3,Boston - East Boston High,00350530, 4.8, 2.0, 81.9, 9.7, 0.2, 0.0, 1.4, 58.6, 41.4, 0.0 -6.414918414918416,5,a-cure-i1,2019-20,34.400000000000006,85.8,Boston - Edison K-8,00350375, 15.7, 14.2, 51.8, 14.2, 0.7, 0.2, 3.2, 55.4, 44.6, 0.0 -5.405405405405405,5,a-cure-i1,2019-20,32.5,96.2,Boston - Edward Everett,00350088, 42.3, 18.4, 30.3, 3.8, 0.9, 0.4, 3.8, 48.7, 51.3, 0.0 -4.4689655172413785,4.47,a-cure-i1,2019-20,24.299999999999997,87.0,Boston - ELC - West Zone,00350006, 27.8, 11.1, 41.7, 13.0, 0.9, 0.0, 5.6, 50.9, 49.1, 0.0 -11.831265508684863,5,a-cure-i1,2019-20,29.799999999999997,40.3,Boston - Eliot Elementary,00350096, 5.5, 11.4, 16.1, 59.7, 0.0, 0.1, 7.2, 51.0, 49.0, 0.0 -13.609507640067912,5,a-cure-i1,2019-20,50.1,58.9,Boston - Ellis Mendell,00350100, 24.4, 1.5, 24.4, 41.1, 0.0, 0.0, 8.5, 50.0, 49.6, 0.4 -8.156521739130433,5,a-cure-i1,2019-20,46.89999999999999,92.0,Boston - Excel High School,00350522, 36.1, 18.2, 35.7, 8.0, 0.6, 0.2, 1.2, 62.5, 37.5, 0.0 -7.239289446185997,5,a-cure-i1,2019-20,43.3,95.7,Boston - Fenway High School,00350540, 30.6, 2.0, 60.6, 4.3, 0.3, 0.3, 2.0, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2019-20,2.9,86.9,Boston - Franklin D Roosevelt,00350116, 39.5, 2.5, 38.4, 13.1, 0.5, 0.2, 5.7, 50.8, 49.2, 0.0 -6.87816091954023,5,a-cure-i1,2019-20,37.4,87.0,Boston - Gardner Pilot Academy,00350326, 11.2, 5.1, 66.1, 13.0, 0.0, 0.0, 4.6, 52.3, 47.7, 0.0 -7.3502538071066,5,a-cure-i1,2019-20,36.2,78.8,Boston - George H Conley,00350122, 34.8, 2.2, 37.5, 21.2, 0.0, 0.5, 3.8, 56.5, 43.5, 0.0 -8.258585858585858,5,a-cure-i1,2019-20,51.1,99.0,Boston - Greater Egleston Community High School,00350543, 50.0, 1.0, 41.0, 1.0, 1.0, 0.0, 6.0, 51.0, 49.0, 0.0 -6.7452948557089085,5,a-cure-i1,2019-20,33.6,79.7,Boston - Harvard-Kent,00350200, 23.0, 21.9, 31.5, 20.3, 0.3, 0.0, 3.0, 53.4, 46.6, 0.0 -11.113871635610765,5,a-cure-i1,2019-20,67.1,96.6,Boston - Haynes Early Education Center,00350010, 44.9, 5.4, 41.5, 3.4, 2.0, 0.0, 2.9, 52.7, 47.3, 0.0 -7.366515837104071,5,a-cure-i1,2019-20,40.699999999999996,88.4,Boston - Henry Grew,00350135, 38.4, 0.0, 42.7, 11.6, 0.4, 0.0, 6.9, 50.9, 49.1, 0.0 -7.772819472616634,5,a-cure-i1,2019-20,47.900000000000006,98.6,Boston - Higginson,00350015, 44.0, 1.4, 50.4, 1.4, 0.7, 0.0, 2.1, 53.9, 46.1, 0.0 -10.563580874872839,5,a-cure-i1,2019-20,64.9,98.3,Boston - Higginson/Lewis K-8,00350377, 49.6, 0.9, 41.7, 1.7, 0.0, 0.0, 6.1, 57.0, 43.0, 0.0 -1.1977653631284917,1.2,a-cure-i1,2019-20,6.7,89.5,Boston - Horace Mann School for the Deaf,00350750, 34.2, 5.3, 50.0, 10.5, 0.0, 0.0, 0.0, 63.2, 36.8, 0.0 -2.7469342251950946,2.75,a-cure-i1,2019-20,15.4,89.7,Boston - Hugh Roe O'Donnell,00350141, 1.1, 2.7, 84.8, 10.3, 0.4, 0.0, 0.8, 48.3, 51.7, 0.0 -6.147091108671789,5,a-cure-i1,2019-20,35.0,91.1,Boston - Jackson Mann,00350013, 29.7, 12.9, 45.7, 8.9, 0.8, 0.0, 2.1, 58.6, 41.4, 0.0 -6.403343782654128,5,a-cure-i1,2019-20,38.300000000000004,95.7,Boston - James J Chittick,00350154, 63.9, 0.7, 26.4, 4.3, 0.0, 0.0, 4.6, 54.6, 45.4, 0.0 -3.9752781211372064,3.98,a-cure-i1,2019-20,20.1,80.9,Boston - James Otis,00350156, 5.0, 2.4, 72.0, 19.1, 0.3, 0.0, 1.3, 47.9, 52.1, 0.0 -9.848670756646218,5,a-cure-i1,2019-20,60.2,97.8,Boston - James P Timilty Middle,00350485, 35.6, 0.9, 58.8, 2.2, 0.0, 0.0, 2.5, 46.3, 53.8, 0.0 -7.3277310924369745,5,a-cure-i1,2019-20,43.6,95.2,Boston - James W Hennigan,00350153, 28.1, 3.5, 61.6, 4.8, 0.0, 0.0, 2.0, 49.8, 50.2, 0.0 -8.531120331950207,5,a-cure-i1,2019-20,51.4,96.4,Boston - Jeremiah E Burke High,00350525, 62.1, 1.2, 29.3, 3.6, 0.0, 1.0, 2.9, 56.6, 43.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,80.8,Boston - John D Philbrick,00350172, 45.9, 0.7, 32.2, 19.2, 0.7, 0.0, 1.4, 57.5, 42.5, 0.0 -4.392857142857143,4.39,a-cure-i1,2019-20,24.6,89.6,Boston - John F Kennedy,00350166, 17.9, 1.8, 67.5, 10.4, 0.3, 0.0, 2.1, 53.5, 46.5, 0.0 -7.297071129707113,5,a-cure-i1,2019-20,43.6,95.6,Boston - John W McCormack,00350179, 28.7, 4.7, 59.6, 4.4, 0.3, 0.0, 2.2, 51.1, 48.9, 0.0 -4.372569089048107,4.37,a-cure-i1,2019-20,26.700000000000003,97.7,Boston - John Winthrop,00350180, 53.1, 0.0, 38.8, 2.3, 0.4, 0.8, 4.7, 44.2, 55.8, 0.0 -13.11960542540074,5,a-cure-i1,2019-20,66.5,81.1,Boston - Joseph J Hurley,00350182, 4.5, 1.4, 72.7, 18.9, 0.3, 0.0, 2.2, 48.5, 51.5, 0.0 -4.593220338983051,4.59,a-cure-i1,2019-20,27.1,94.4,Boston - Joseph Lee,00350183, 53.6, 5.0, 29.4, 5.6, 0.3, 0.2, 5.9, 55.9, 44.1, 0.0 -1,1,a-cure-i1,2019-20,2.6,52.1,Boston - Joseph P Manning,00350184, 13.2, 4.2, 25.0, 47.9, 0.0, 0.7, 9.0, 48.6, 51.4, 0.0 -9.539622641509435,5,a-cure-i1,2019-20,47.400000000000006,79.5,Boston - Joseph P Tynan,00350181, 41.5, 6.8, 25.6, 20.5, 0.0, 0.0, 5.6, 58.5, 41.5, 0.0 -10.342342342342343,5,a-cure-i1,2019-20,57.4,88.8,Boston - Josiah Quincy,00350286, 12.1, 62.3, 10.2, 11.2, 0.0, 0.0, 4.3, 49.8, 50.2, 0.0 -7.950718685831623,5,a-cure-i1,2019-20,24.200000000000003,48.7,Boston - Joyce Kilmer,00350190, 14.1, 8.3, 21.2, 51.3, 0.0, 0.2, 4.9, 56.7, 43.3, 0.0 -9.344262295081968,5,a-cure-i1,2019-20,57.0,97.6,Boston - King K-8,00350376, 57.3, 0.9, 34.6, 2.4, 0.7, 0.0, 4.1, 50.1, 49.9, 0.0 -3.7812177502579973,3.78,a-cure-i1,2019-20,22.9,96.9,Boston - Lee Academy,00350001, 45.9, 7.7, 37.1, 3.1, 0.0, 0.0, 6.2, 51.5, 48.5, 0.0 -9.273469387755101,5,a-cure-i1,2019-20,56.8,98.0,Boston - Lilla G. Frederick Middle School,00350383, 41.0, 8.6, 44.7, 2.0, 0.0, 0.2, 3.5, 56.8, 43.2, 0.0 -7.775700934579438,5,a-cure-i1,2019-20,20.799999999999997,42.8,Boston - Lyndon,00350262, 8.9, 2.9, 25.2, 57.2, 0.2, 0.2, 5.4, 52.8, 47.2, 0.0 -8.98723404255319,5,a-cure-i1,2019-20,39.599999999999994,70.5,Boston - Lyon K-8,00350004, 25.8, 9.1, 27.3, 29.5, 0.0, 0.0, 8.3, 59.1, 40.9, 0.0 -5.860082304526748,5,a-cure-i1,2019-20,26.7,72.9,Boston - Lyon Upper 9-12,00350655, 23.3, 8.3, 36.1, 27.1, 0.0, 0.0, 5.3, 61.7, 38.3, 0.0 -7.8028747433264884,5,a-cure-i1,2019-20,47.5,97.4,Boston - Madison Park High,00350537, 38.6, 1.4, 54.9, 2.6, 0.4, 0.4, 1.7, 58.4, 41.6, 0.0 -1.4478527607361964,1.45,a-cure-i1,2019-20,5.9,65.2,Boston - Manassah E Bradley,00350215, 7.0, 7.7, 48.0, 34.8, 0.0, 0.4, 2.2, 54.2, 45.8, 0.0 -8.766902119071647,5,a-cure-i1,2019-20,54.300000000000004,99.1,Boston - Margarita Muniz Academy,00350549, 4.7, 0.0, 93.4, 0.9, 0.0, 0.0, 0.9, 48.3, 51.7, 0.0 -5.628997867803838,5,a-cure-i1,2019-20,33.0,93.8,Boston - Mario Umana Academy,00350656, 2.4, 1.9, 88.0, 6.2, 0.2, 0.0, 1.3, 52.2, 47.8, 0.0 -10.074074074074074,5,a-cure-i1,2019-20,59.5,94.5,Boston - Mather,00350227, 38.3, 32.5, 16.9, 5.5, 0.9, 0.0, 6.0, 50.8, 49.2, 0.0 -6.709677419354839,5,a-cure-i1,2019-20,40.3,96.1,Boston - Mattahunt Elementary School,00350016, 66.7, 1.2, 23.4, 3.9, 0.7, 0.2, 3.7, 57.9, 42.1, 0.0 -9.018789144050105,5,a-cure-i1,2019-20,54.0,95.8,Boston - Maurice J Tobin,00350229, 30.3, 2.6, 61.3, 4.2, 0.2, 0.0, 1.4, 49.5, 50.5, 0.0 -7.163337250293773,5,a-cure-i1,2019-20,38.1,85.1,Boston - Michael J Perkins,00350231, 40.4, 6.8, 32.9, 14.9, 0.0, 0.0, 5.0, 47.2, 52.8, 0.0 -8.736196319018404,5,a-cure-i1,2019-20,53.4,97.8,Boston - Mildred Avenue K-8,00350378, 65.8, 1.3, 26.8, 2.2, 0.7, 0.0, 3.1, 51.9, 48.1, 0.0 -11.273846153846154,5,a-cure-i1,2019-20,45.800000000000004,65.0,Boston - Mission Hill School,00350382, 23.3, 1.3, 32.7, 35.0, 0.0, 0.4, 7.2, 59.6, 39.9, 0.4 -11.160330578512397,5,a-cure-i1,2019-20,42.2,60.5,Boston - Mozart,00350237, 25.7, 3.6, 22.2, 39.5, 2.4, 0.0, 6.6, 59.9, 40.1, 0.0 -8.359255202628697,5,a-cure-i1,2019-20,47.7,91.3,Boston - Nathan Hale,00350243, 51.0, 7.4, 31.5, 8.7, 0.0, 0.0, 1.3, 47.0, 53.0, 0.0 -6.840816326530612,5,a-cure-i1,2019-20,41.9,98.0,Boston - New Mission High School,00350542, 51.2, 1.8, 43.4, 2.0, 0.2, 0.0, 1.3, 47.7, 52.3, 0.0 -6.2928870292887025,5,a-cure-i1,2019-20,37.599999999999994,95.6,Boston - O W Holmes,00350138, 56.1, 3.1, 32.3, 4.4, 0.0, 0.0, 4.1, 56.8, 43.2, 0.0 -9.936651583710406,5,a-cure-i1,2019-20,54.9,88.4,Boston - O'Bryant School Math/Science,00350575, 32.7, 20.4, 33.0, 11.6, 0.2, 0.2, 2.0, 43.5, 56.5, 0.0 -12.118993135011442,5,a-cure-i1,2019-20,33.1,43.7,Boston - Oliver Hazard Perry,00350255, 18.7, 2.8, 18.7, 56.3, 0.0, 0.0, 3.6, 49.6, 50.4, 0.0 -4.77079107505071,4.77,a-cure-i1,2019-20,29.4,98.6,Boston - Orchard Gardens,00350257, 53.4, 1.0, 40.8, 1.4, 0.9, 0.6, 1.9, 49.8, 50.2, 0.0 -5.575501583949314,5,a-cure-i1,2019-20,33.0,94.7,Boston - Patrick J Kennedy,00350264, 4.5, 2.3, 87.2, 5.3, 0.0, 0.0, 0.8, 56.0, 44.0, 0.0 -6.478214665249735,5,a-cure-i1,2019-20,38.1,94.1,Boston - Paul A Dever,00350268, 26.7, 4.2, 59.9, 5.9, 0.7, 0.2, 2.4, 53.5, 46.5, 0.0 -7.441860465116279,5,a-cure-i1,2019-20,46.0,98.9,Boston - Pauline Agassiz Shaw Elementary School,00350014, 68.4, 0.6, 25.4, 1.1, 2.3, 0.0, 2.3, 45.2, 54.8, 0.0 -9.0,5,a-cure-i1,2019-20,39.6,70.4,Boston - Phineas Bates,00350278, 29.2, 4.2, 32.1, 29.6, 0.4, 0.0, 4.6, 52.1, 47.9, 0.0 -9.922996878251821,5,a-cure-i1,2019-20,59.599999999999994,96.1,Boston - Quincy Upper School,00350565, 20.6, 49.2, 23.5, 3.9, 0.2, 0.0, 2.6, 53.1, 46.9, 0.0 -11.431034482758621,5,a-cure-i1,2019-20,66.3,92.8,Boston - Rafael Hernandez,00350691, 2.7, 0.2, 87.5, 7.2, 0.0, 0.0, 2.2, 46.9, 53.1, 0.0 -7.513513513513513,5,a-cure-i1,2019-20,41.699999999999996,88.8,Boston - Richard J Murphy,00350240, 16.8, 47.2, 21.0, 11.2, 0.3, 0.1, 3.4, 53.5, 46.5, 0.0 -6.061757719714964,5,a-cure-i1,2019-20,31.9,84.2,Boston - Roger Clap,00350298, 32.5, 8.8, 39.5, 15.8, 0.0, 0.0, 3.5, 49.1, 50.9, 0.0 -8.122786304604487,5,a-cure-i1,2019-20,43.0,84.7,Boston - Samuel Adams,00350302, 3.6, 0.9, 79.3, 15.3, 0.5, 0.0, 0.5, 49.5, 50.5, 0.0 -6.752916224814422,5,a-cure-i1,2019-20,39.8,94.3,Boston - Samuel W Mason,00350304, 52.6, 1.3, 31.7, 5.7, 0.9, 0.0, 7.8, 57.0, 42.6, 0.4 -8.987854251012147,5,a-cure-i1,2019-20,55.5,98.8,Boston - Sarah Greenwood,00350308, 18.4, 0.2, 78.4, 1.2, 0.0, 0.2, 1.5, 53.2, 46.8, 0.0 -6.976939203354297,5,a-cure-i1,2019-20,41.599999999999994,95.4,Boston - Snowden International School at Copley,00350690, 34.2, 6.1, 52.3, 4.6, 0.4, 0.0, 2.3, 52.7, 47.3, 0.0 -6.439425051334703,5,a-cure-i1,2019-20,39.2,97.4,Boston - TechBoston Academy,00350657, 62.5, 2.7, 29.1, 2.6, 0.3, 0.0, 2.8, 55.0, 45.0, 0.0 -7.488659793814433,5,a-cure-i1,2019-20,45.4,97.0,Boston - The English High,00350535, 36.4, 0.9, 58.1, 3.0, 0.2, 0.2, 1.2, 55.7, 44.2, 0.2 -6.505263157894737,5,a-cure-i1,2019-20,30.9,76.0,Boston - Thomas J Kenny,00350328, 34.1, 10.8, 25.0, 24.0, 0.7, 0.0, 5.4, 54.4, 45.6, 0.0 -5.425101214574899,5,a-cure-i1,2019-20,33.5,98.8,Boston - UP Academy Holland,00350167, 48.7, 3.4, 43.1, 1.2, 0.7, 0.4, 2.5, 48.4, 51.6, 0.0 -10.661190965092402,5,a-cure-i1,2019-20,64.9,97.4,Boston - Urban Science Academy,00350579, 51.3, 0.0, 46.2, 2.6, 0.0, 0.0, 0.0, 56.4, 43.6, 0.0 -8.236902050113894,5,a-cure-i1,2019-20,22.599999999999998,43.9,Boston - Warren-Prescott,00350346, 11.9, 4.0, 21.9, 56.1, 0.0, 0.0, 6.1, 50.7, 49.3, 0.0 -8.381760339342524,5,a-cure-i1,2019-20,49.4,94.3,Boston - Washington Irving Middle,00350445, 43.4, 0.8, 46.7, 5.7, 0.4, 0.0, 2.9, 50.4, 49.6, 0.0 -17.222820236813778,5,a-cure-i1,2019-20,100.0,92.9,Boston - West Roxbury Academy,00350658, 57.1, 0.0, 32.1, 7.1, 0.0, 0.0, 3.6, 50.0, 50.0, 0.0 -8.808988764044942,5,a-cure-i1,2019-20,53.9,97.9,Boston - William E Russell,00350366, 26.5, 11.5, 56.4, 2.1, 0.3, 0.5, 2.6, 52.2, 47.8, 0.0 -6.041349292709467,5,a-cure-i1,2019-20,34.7,91.9,Boston - William Ellery Channing,00350360, 42.6, 2.2, 43.9, 8.1, 0.0, 0.4, 2.7, 56.1, 43.9, 0.0 -4.367509986684421,4.37,a-cure-i1,2019-20,20.5,75.1,Boston - William H Ohrenberger,00350258, 29.5, 3.8, 37.7, 24.9, 0.0, 0.0, 4.0, 51.8, 48.2, 0.0 -5.587852494577007,5,a-cure-i1,2019-20,32.2,92.2,Boston - William McKinley,00350363, 44.2, 1.6, 42.6, 7.8, 0.6, 0.0, 3.1, 76.5, 23.5, 0.0 -8.589303733602422,5,a-cure-i1,2019-20,53.2,99.1,Boston - William Monroe Trotter,00350370, 56.3, 0.5, 37.0, 0.9, 0.5, 1.2, 3.7, 50.7, 49.3, 0.0 -7.596180081855389,5,a-cure-i1,2019-20,34.8,73.3,Boston - Winship Elementary,00350374, 15.0, 17.1, 33.3, 26.7, 0.0, 0.0, 7.9, 47.1, 52.9, 0.0 -11.208040201005026,5,a-cure-i1,2019-20,69.7,99.5,Boston - Young Achievers,00350380, 48.0, 0.2, 49.2, 0.5, 0.2, 0.0, 2.0, 52.3, 47.7, 0.0 -11.136690647482013,5,a-cure-i1,2019-20,38.699999999999996,55.6,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 32.6, 1.7, 18.2, 44.4, 0.3, 0.0, 2.7, 50.2, 49.8, 0.0 -7.94904458598726,5,a-cure-i1,2019-20,46.8,94.2,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 48.1, 1.0, 42.8, 5.8, 1.0, 0.0, 1.4, 50.7, 49.0, 0.2 -7.012987012987012,5,a-cure-i1,2019-20,40.5,92.4,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 43.0, 1.6, 44.4, 7.6, 0.2, 0.4, 2.8, 51.0, 49.0, 0.0 -5.197139938712973,5,a-cure-i1,2019-20,31.800000000000004,97.9,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 66.6, 0.5, 27.4, 2.1, 0.2, 0.2, 3.1, 50.6, 49.4, 0.0 -2.1604060913705583,2.16,a-cure-i1,2019-20,13.3,98.5,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 62.9, 0.2, 31.6, 1.5, 0.1, 0.0, 3.7, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2019-20,3.1,12.400000000000006,Bourne - Bourne High School,00360505, 1.1, 2.8, 4.8, 87.6, 0.7, 0.2, 2.8, 43.2, 56.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.099999999999994,Bourne - Bourne Intermediate School,00360030, 2.1, 0.8, 7.2, 85.9, 0.4, 0.4, 3.2, 47.7, 52.3, 0.0 -8.283687943262414,5,a-cure-i1,2019-20,7.3,14.099999999999994,Bourne - Bourne Middle School,00360325, 2.0, 1.6, 5.7, 85.9, 2.0, 0.0, 2.9, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.099999999999994,Bourne - Bournedale Elementary School,00360005, 1.7, 1.7, 5.9, 85.9, 0.4, 0.0, 4.3, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.700000000000003,Boxford - Harry Lee Cole,00380005, 0.0, 2.2, 3.7, 87.3, 0.0, 0.0, 6.8, 51.7, 48.3, 0.0 -8.912751677852347,5,a-cure-i1,2019-20,8.3,14.900000000000006,Boxford - Spofford Pond,00380013, 0.9, 5.2, 2.6, 85.1, 0.2, 0.0, 5.9, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.099999999999994,Braintree - Archie T Morrison,00400033, 8.9, 17.0, 5.4, 66.9, 0.2, 0.0, 1.5, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,4.5,30.5,Braintree - Braintree High,00400505, 4.7, 19.4, 4.5, 69.5, 0.0, 0.2, 1.7, 49.5, 50.5, 0.1 -1,1,a-cure-i1,2019-20,0.0,38.0,Braintree - Donald Ross,00400050, 6.2, 24.4, 5.4, 62.0, 0.0, 0.0, 1.9, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,2.0,36.2,Braintree - East Middle School,00400305, 7.7, 20.9, 6.5, 63.8, 0.0, 0.1, 0.9, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.5,Braintree - Highlands,00400015, 2.2, 21.3, 2.6, 72.5, 0.5, 0.0, 1.0, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.0,Braintree - Hollis,00400005, 1.1, 24.3, 4.8, 67.0, 0.2, 0.0, 2.5, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,39.2,Braintree - Liberty,00400025, 2.2, 28.7, 4.7, 60.8, 0.0, 0.5, 3.0, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,38.4,Braintree - Mary E Flaherty School,00400020, 3.2, 26.5, 5.5, 61.6, 0.0, 0.0, 3.2, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.1,Braintree - Monatiquot Kindergarten Center,00400009, 3.1, 26.3, 4.7, 63.9, 0.4, 0.0, 1.6, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.400000000000006,Braintree - South Middle School,00400310, 4.2, 20.1, 3.2, 71.6, 0.3, 0.0, 0.6, 47.5, 52.4, 0.1 -1,1,a-cure-i1,2019-20,0.0,16.299999999999997,Brewster - Eddy Elementary,00410010, 2.8, 0.8, 7.3, 83.7, 0.0, 0.0, 5.3, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.900000000000006,Brewster - Stony Brook Elementary,00410005, 0.9, 0.0, 10.3, 82.1, 0.0, 0.0, 6.7, 53.1, 46.9, 0.0 -5.392712550607287,5,a-cure-i1,2019-20,33.3,98.8,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 68.3, 0.9, 26.0, 1.2, 0.0, 0.3, 3.3, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.900000000000006,Bridgewater-Raynham - Bridgewater Middle School,06250320, 6.8, 1.1, 1.6, 83.1, 0.2, 0.2, 7.0, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,1.2,14.400000000000006,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 5.8, 2.2, 1.4, 85.6, 0.1, 0.1, 4.8, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.599999999999994,Bridgewater-Raynham - Laliberte Elementary School,06250050, 8.0, 2.3, 2.1, 84.4, 0.0, 0.0, 3.2, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.400000000000006,Bridgewater-Raynham - Merrill Elementary School,06250020, 4.8, 3.0, 3.6, 83.6, 0.0, 0.0, 4.8, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.0,Bridgewater-Raynham - Mitchell Elementary School,06250002, 5.5, 2.7, 4.7, 82.0, 0.2, 0.2, 4.8, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.799999999999997,Bridgewater-Raynham - Raynham Middle School,06250315, 7.3, 3.1, 0.9, 85.2, 0.1, 0.0, 3.3, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.099999999999994,Bridgewater-Raynham - Therapeutic Day School,06250415, 7.1, 0.0, 0.0, 92.9, 0.0, 0.0, 0.0, 64.3, 35.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.599999999999994,Bridgewater-Raynham - Williams Intermediate School,06250300, 7.0, 1.8, 2.0, 84.4, 0.0, 0.0, 4.8, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.700000000000003,Brimfield - Brimfield Elementary,00430005, 1.3, 1.0, 3.7, 93.3, 0.3, 0.0, 0.3, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,2.9,7.799999999999997,Bristol County Agricultural - Bristol County Agricultural High,09100705, 1.6, 0.4, 4.2, 92.2, 0.0, 0.2, 1.3, 28.4, 71.2, 0.4 -1,1,a-cure-i1,2019-20,1.8,14.299999999999997,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 2.9, 0.7, 6.3, 85.7, 0.6, 0.0, 3.8, 56.8, 43.1, 0.1 -1,1,a-cure-i1,2019-20,0.0,70.1,Brockton - Ashfield Middle School,00440421, 49.1, 3.9, 12.5, 29.9, 1.1, 0.4, 3.2, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,81.0,Brockton - Barrett Russell Early Childhood Center,00440008, 55.3, 0.8, 18.6, 19.0, 0.4, 0.4, 5.5, 56.1, 43.9, 0.0 -2.909090909090909,2.91,a-cure-i1,2019-20,13.6,74.8,Brockton - Brockton Champion High School,00440515, 43.7, 0.0, 24.3, 25.2, 0.0, 1.0, 5.8, 61.2, 38.8, 0.0 -3.5366430260047284,3.54,a-cure-i1,2019-20,18.7,84.6,Brockton - Brockton High,00440505, 63.3, 2.4, 14.5, 15.4, 0.4, 0.2, 3.8, 53.4, 46.6, 0.0 -2.204081632653061,2.2,a-cure-i1,2019-20,10.8,78.4,Brockton - Brookfield,00440010, 60.0, 1.3, 10.1, 21.6, 0.4, 0.2, 6.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,2.7,82.5,Brockton - Downey,00440110, 55.8, 1.2, 18.2, 17.5, 0.5, 0.5, 6.3, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2019-20,2.3,89.8,Brockton - Dr W Arnone Community School,00440001, 61.9, 0.4, 19.8, 10.2, 0.4, 0.0, 7.3, 57.5, 42.5, 0.0 -2.0861678004535147,2.09,a-cure-i1,2019-20,11.5,88.2,Brockton - East Middle School,00440405, 67.9, 1.2, 15.0, 11.8, 0.4, 0.0, 3.7, 52.2, 47.8, 0.0 -1.9658703071672354,1.97,a-cure-i1,2019-20,10.8,87.9,Brockton - Edgar B Davis,00440023, 66.1, 0.5, 14.8, 12.1, 0.4, 0.4, 5.8, 50.0, 50.0, 0.0 -10.31304347826087,5,a-cure-i1,2019-20,59.3,92.0,Brockton - Edison Academy,00440520, 69.9, 0.4, 18.5, 8.0, 0.0, 0.4, 2.8, 59.0, 41.0, 0.0 -3.4640943193997855,3.46,a-cure-i1,2019-20,20.2,93.3,Brockton - Frederick Douglass Academy,00440080, 53.3, 0.0, 33.3, 6.7, 0.0, 0.0, 6.7, 53.3, 46.7, 0.0 -1.9349593495934958,1.93,a-cure-i1,2019-20,11.9,98.4,Brockton - Gilmore Elementary School,00440055, 82.5, 0.5, 11.7, 1.6, 0.5, 0.0, 3.2, 49.2, 50.8, 0.0 -2.8751714677640603,2.88,a-cure-i1,2019-20,13.100000000000001,72.9,Brockton - Hancock,00440045, 49.6, 3.1, 12.8, 27.1, 0.2, 0.4, 6.8, 46.7, 53.3, 0.0 -1.1733333333333333,1.17,a-cure-i1,2019-20,5.5,75.0,Brockton - Huntington Therapeutic Day School,00440400, 46.9, 1.6, 20.3, 25.0, 1.6, 0.0, 4.7, 67.2, 32.8, 0.0 -2.294416243654822,2.29,a-cure-i1,2019-20,11.299999999999999,78.8,Brockton - John F Kennedy,00440017, 60.7, 3.0, 8.8, 21.2, 0.0, 0.3, 5.9, 49.7, 50.3, 0.0 -2.1026282853566958,2.1,a-cure-i1,2019-20,10.5,79.9,Brockton - Joseph F. Plouffe Academy,00440422, 41.3, 3.5, 30.1, 20.1, 0.4, 0.0, 4.6, 49.3, 50.7, 0.0 -1.3921815889029003,1.39,a-cure-i1,2019-20,6.8999999999999995,79.3,Brockton - Louis F Angelo Elementary,00440065, 56.1, 5.3, 13.7, 20.7, 0.3, 0.1, 3.7, 53.0, 47.0, 0.0 -3.633958103638368,3.63,a-cure-i1,2019-20,20.599999999999998,90.7,Brockton - Manthala George Jr. School,00440003, 42.5, 0.3, 44.7, 9.3, 0.3, 0.1, 2.8, 51.6, 48.4, 0.0 -2.2572614107883817,2.26,a-cure-i1,2019-20,10.2,72.3,Brockton - Mary E. Baker School,00440002, 48.8, 1.6, 16.2, 27.7, 0.1, 0.3, 5.2, 52.8, 47.2, 0.0 -3.6066298342541434,3.61,a-cure-i1,2019-20,20.4,90.5,Brockton - North Middle School,00440410, 66.7, 2.4, 17.3, 9.5, 0.6, 0.0, 3.6, 60.7, 39.3, 0.0 -1,1,a-cure-i1,2019-20,4.6,94.0,Brockton - Oscar F Raymond,00440078, 79.3, 0.9, 10.9, 6.0, 0.1, 0.1, 2.7, 53.2, 46.8, 0.0 -2.306805074971165,2.31,a-cure-i1,2019-20,12.5,86.7,Brockton - South Middle School,00440415, 64.8, 1.2, 16.1, 13.3, 0.0, 0.0, 4.7, 56.1, 43.9, 0.0 -1.3982521847690388,1.4,a-cure-i1,2019-20,7.0,80.1,Brockton - West Middle School,00440420, 60.1, 3.2, 12.4, 19.9, 0.6, 0.1, 3.7, 53.8, 46.2, 0.0 -5.695198329853863,5,a-cure-i1,2019-20,34.1,95.8,Brooke Charter School (District) - Brooke Charter School,04280305, 54.0, 1.8, 38.0, 4.2, 0.2, 0.0, 1.9, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.099999999999994,Brookfield - Brookfield Elementary,00450005, 0.3, 0.0, 5.2, 89.9, 0.0, 0.0, 4.6, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,52.1,Brookline - Brookline Early Education Program at Beacon,00460001, 2.1, 31.3, 4.2, 47.9, 0.0, 0.0, 14.6, 58.3, 41.7, 0.0 -10.071833648393195,5,a-cure-i1,2019-20,33.3,52.9,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.9, 29.4, 11.8, 47.1, 0.0, 0.0, 5.9, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,46.4,Brookline - Brookline Early Education Program at Putterham,00460002, 3.6, 26.8, 8.9, 53.6, 0.0, 0.0, 7.1, 51.8, 48.2, 0.0 -5.6491228070175445,5,a-cure-i1,2019-20,16.1,45.6,Brookline - Brookline High,00460505, 7.9, 16.4, 11.4, 54.4, 0.0, 0.1, 9.8, 50.9, 48.7, 0.4 -3.5764705882352943,3.58,a-cure-i1,2019-20,9.5,42.5,Brookline - Coolidge Corner School,00460015, 5.3, 14.9, 12.1, 57.5, 0.0, 0.0, 10.2, 50.6, 49.2, 0.2 -3.6432637571157493,3.64,a-cure-i1,2019-20,12.0,52.7,Brookline - Edith C Baker,00460005, 5.5, 30.7, 8.5, 47.3, 0.1, 0.0, 7.9, 50.5, 49.5, 0.0 -3.7832512315270934,3.78,a-cure-i1,2019-20,9.6,40.6,Brookline - Heath,00460025, 4.2, 17.2, 8.3, 59.4, 0.0, 0.0, 10.9, 50.2, 49.8, 0.0 -5.561904761904763,5,a-cure-i1,2019-20,14.600000000000001,42.0,Brookline - John D Runkle,00460045, 3.2, 15.4, 12.0, 58.0, 0.0, 0.0, 11.4, 52.5, 47.5, 0.0 -5.0695970695970685,5,a-cure-i1,2019-20,17.299999999999997,54.6,Brookline - Lawrence,00460030, 4.9, 31.1, 9.6, 45.4, 0.0, 0.3, 8.8, 52.1, 47.9, 0.0 -6.986425339366514,5,a-cure-i1,2019-20,19.299999999999997,44.2,Brookline - Michael Driscoll,00460020, 3.8, 19.2, 7.3, 55.8, 0.0, 0.0, 13.8, 52.7, 47.3, 0.0 -7.585657370517928,5,a-cure-i1,2019-20,23.8,50.2,Brookline - Pierce,00460040, 4.3, 25.8, 10.0, 49.8, 0.0, 0.0, 10.2, 49.0, 50.8, 0.1 -1,1,a-cure-i1,2019-20,0.0,61.4,Brookline - The Lynch Center,00460060, 15.8, 19.3, 8.8, 38.6, 0.0, 0.0, 17.5, 57.9, 42.1, 0.0 -4.625,4.63,a-cure-i1,2019-20,14.8,51.2,Brookline - William H Lincoln,00460035, 10.8, 22.6, 10.4, 48.8, 0.2, 0.0, 7.3, 47.6, 52.4, 0.0 -3.1522388059701494,3.15,a-cure-i1,2019-20,6.6000000000000005,33.5,Burlington - Burlington High,00480505, 6.7, 15.4, 7.2, 66.5, 0.5, 0.0, 3.7, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,38.1,Burlington - Fox Hill,00480007, 6.7, 22.0, 6.1, 61.9, 0.0, 0.0, 3.4, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,2.9,41.4,Burlington - Francis Wyman Elementary,00480035, 10.5, 18.0, 8.1, 58.6, 0.2, 0.0, 4.7, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.2,Burlington - Marshall Simonds Middle,00480303, 5.8, 17.1, 5.8, 67.8, 0.1, 0.0, 3.2, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2019-20,3.6,37.4,Burlington - Memorial,00480015, 3.6, 18.8, 9.2, 62.6, 0.3, 0.0, 5.6, 50.9, 49.1, 0.0 -4.390243902439025,4.39,a-cure-i1,2019-20,9.0,32.8,Burlington - Pine Glen Elementary,00480020, 3.4, 17.5, 5.6, 67.2, 0.0, 0.0, 6.3, 53.1, 46.9, 0.0 -16.077544426494345,5,a-cure-i1,2019-20,62.199999999999996,61.9,Cambridge - Amigos School,00490006, 4.7, 3.5, 45.3, 38.1, 0.0, 0.0, 8.4, 46.0, 54.0, 0.0 -6.6796116504854375,5,a-cure-i1,2019-20,25.8,61.8,Cambridge - Cambridge Rindge and Latin,00490506, 27.9, 10.6, 14.8, 38.2, 0.4, 0.4, 7.7, 49.8, 50.2, 0.0 -10.713286713286712,5,a-cure-i1,2019-20,38.3,57.2,Cambridge - Cambridge Street Upper School,00490305, 23.0, 6.4, 17.0, 42.8, 0.7, 0.0, 10.2, 58.0, 42.0, 0.0 -9.963636363636365,5,a-cure-i1,2019-20,27.400000000000002,44.0,Cambridge - Cambridgeport,00490007, 16.6, 7.1, 8.3, 56.0, 0.0, 0.0, 12.0, 52.3, 47.1, 0.6 -4.074418604651163,4.07,a-cure-i1,2019-20,21.9,86.0,Cambridge - Fletcher/Maynard Academy,00490090, 50.5, 9.8, 18.2, 14.0, 0.4, 0.0, 7.0, 54.7, 45.3, 0.0 -5.096774193548387,5,a-cure-i1,2019-20,15.8,49.6,Cambridge - Graham and Parks,00490080, 15.7, 16.8, 10.5, 50.4, 0.0, 0.0, 6.6, 52.8, 47.2, 0.0 -9.190082644628099,5,a-cure-i1,2019-20,27.799999999999997,48.4,Cambridge - Haggerty,00490020, 14.0, 18.6, 7.8, 51.6, 0.0, 0.0, 8.1, 47.3, 52.7, 0.0 -4.54249547920434,4.54,a-cure-i1,2019-20,15.7,55.3,Cambridge - John M Tobin,00490065, 19.6, 16.4, 10.0, 44.7, 0.6, 0.0, 8.7, 51.8, 48.2, 0.0 -4.263610315186247,4.26,a-cure-i1,2019-20,18.6,69.8,Cambridge - Kennedy-Longfellow,00490040, 20.9, 23.2, 17.0, 30.2, 0.0, 0.3, 8.4, 50.2, 49.8, 0.0 -10.512635379061372,5,a-cure-i1,2019-20,36.4,55.4,Cambridge - King Open,00490035, 18.8, 14.1, 10.7, 44.6, 0.3, 0.0, 11.5, 50.1, 49.9, 0.0 -11.294117647058824,5,a-cure-i1,2019-20,27.6,39.1,Cambridge - Maria L. Baldwin,00490005, 11.1, 8.0, 10.3, 60.9, 0.0, 0.0, 9.7, 52.6, 47.4, 0.0 -7.294117647058824,5,a-cure-i1,2019-20,34.1,74.8,Cambridge - Martin Luther King Jr.,00490030, 18.7, 28.2, 5.8, 25.2, 0.6, 0.0, 21.5, 51.2, 48.8, 0.0 -5.049742710120069,5,a-cure-i1,2019-20,18.4,58.3,Cambridge - Morse,00490045, 23.3, 14.1, 12.3, 41.7, 0.6, 0.0, 8.0, 54.9, 45.1, 0.0 -10.611909650924023,5,a-cure-i1,2019-20,32.3,48.7,Cambridge - Peabody,00490050, 20.3, 15.3, 5.9, 51.3, 0.0, 0.0, 7.2, 49.7, 50.3, 0.0 -12.858757062146895,5,a-cure-i1,2019-20,56.900000000000006,70.8,Cambridge - Putnam Avenue Upper School,00490310, 31.4, 15.2, 14.8, 29.2, 0.4, 0.4, 8.7, 47.3, 52.7, 0.0 -4.21792618629174,4.22,a-cure-i1,2019-20,15.0,56.9,Cambridge - Rindge Avenue Upper School,00490315, 27.0, 10.7, 9.6, 43.1, 0.4, 0.0, 9.3, 44.1, 55.9, 0.0 -8.94773519163763,5,a-cure-i1,2019-20,32.099999999999994,57.4,Cambridge - Vassal Lane Upper School,00490320, 25.9, 16.3, 7.4, 42.6, 0.0, 0.0, 7.8, 49.6, 50.0, 0.4 -4.178041543026707,4.18,a-cure-i1,2019-20,8.8,33.7,Canton - Canton High,00500505, 11.4, 11.5, 6.2, 66.3, 0.0, 0.0, 4.6, 46.7, 53.0, 0.3 -1,1,a-cure-i1,2019-20,0.0,33.8,Canton - Dean S Luce,00500020, 8.9, 12.3, 5.5, 66.2, 0.0, 0.0, 7.2, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.5,Canton - John F Kennedy,00500017, 7.1, 8.1, 5.3, 72.5, 0.0, 0.4, 6.5, 51.7, 48.3, 0.0 -2.7199999999999998,2.72,a-cure-i1,2019-20,6.8,40.0,Canton - Lt Peter M Hansen,00500012, 12.4, 11.6, 7.3, 60.0, 0.0, 0.2, 8.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,44.8,Canton - Rodman Early Childhood Center,00500010, 14.9, 14.9, 11.5, 55.2, 0.0, 0.0, 3.4, 62.1, 37.9, 0.0 -4.146341463414634,4.15,a-cure-i1,2019-20,8.5,32.8,Canton - Wm H Galvin Middle,00500305, 12.2, 9.5, 4.7, 67.2, 0.3, 0.3, 5.9, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,2.5,14.599999999999994,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 2.1, 2.5, 5.0, 85.4, 0.4, 0.0, 4.6, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.400000000000006,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 8.9, 0.5, 13.6, 70.6, 1.3, 0.2, 4.9, 64.6, 35.2, 0.2 -1,1,a-cure-i1,2019-20,1.4,26.5,Carlisle - Carlisle School,00510025, 0.5, 11.2, 5.0, 73.5, 0.0, 0.3, 9.4, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,4.6,5.900000000000006,Carver - Carver Elementary School,00520015, 2.3, 0.5, 1.7, 94.1, 0.1, 0.0, 1.2, 50.2, 49.8, 0.0 -20.52173913043481,5,a-cure-i1,2019-20,5.9,4.599999999999994,Carver - Carver Middle/High School,00520405, 1.2, 0.4, 1.3, 95.4, 0.5, 0.1, 1.0, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.099999999999994,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 2.7, 92.9, 0.0, 0.0, 4.4, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.299999999999997,Central Berkshire - Craneville,06350025, 0.2, 0.9, 8.7, 83.7, 0.2, 0.0, 6.1, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.700000000000003,Central Berkshire - Kittredge,06350035, 0.7, 0.0, 1.3, 95.3, 0.0, 0.0, 2.7, 44.0, 56.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.0,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 0.5, 3.7, 92.0, 0.3, 0.0, 3.2, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.5,6.799999999999997,Central Berkshire - Wahconah Regional High,06350505, 0.4, 0.8, 3.4, 93.2, 0.2, 0.0, 2.0, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.700000000000003,Chelmsford - Byam School,00560030, 1.4, 11.8, 8.4, 74.3, 0.2, 0.0, 3.9, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.900000000000006,Chelmsford - Center Elementary School,00560005, 2.7, 17.8, 6.8, 69.1, 0.0, 0.0, 3.7, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.0,Chelmsford - Charles D Harrington,00560025, 4.5, 18.2, 9.9, 64.0, 0.4, 0.0, 3.0, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,3.8,25.5,Chelmsford - Chelmsford High,00560505, 3.4, 15.6, 4.0, 74.5, 0.0, 0.2, 2.3, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.0,Chelmsford - Col Moses Parker School,00560305, 3.7, 14.7, 7.8, 70.0, 0.7, 0.0, 3.1, 57.2, 42.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,42.8,Chelmsford - Community Education Center,00560001, 4.8, 23.5, 9.0, 57.2, 0.6, 0.0, 4.8, 62.7, 37.3, 0.0 -1,1,a-cure-i1,2019-20,3.3,28.799999999999997,Chelmsford - McCarthy Middle School,00560310, 3.5, 14.3, 6.0, 71.2, 0.0, 0.3, 4.7, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.400000000000006,Chelmsford - South Row,00560015, 2.7, 15.3, 6.3, 71.6, 0.5, 0.0, 3.6, 50.1, 49.9, 0.0 -2.5801047120418845,2.58,a-cure-i1,2019-20,15.399999999999999,95.5,Chelsea - Chelsea High,00570505, 4.4, 0.3, 89.0, 4.5, 0.1, 0.1, 1.6, 55.7, 44.3, 0.0 -3.235591506572295,3.24,a-cure-i1,2019-20,20.0,98.9,Chelsea - Chelsea Opportunity Academy,00570515, 1.1, 0.0, 96.8, 1.1, 0.0, 0.0, 1.1, 62.1, 37.9, 0.0 -0.9925133689839571,1,a-cure-i1,2019-20,5.8,93.5,Chelsea - Clark Avenue School,00570050, 2.9, 0.6, 88.5, 6.5, 0.4, 0.1, 1.0, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,3.7,88.4,Chelsea - Edgar A Hooks Elementary,00570030, 5.0, 0.0, 81.7, 11.6, 0.4, 0.0, 1.5, 49.4, 50.6, 0.0 -1.2636072572038421,1.26,a-cure-i1,2019-20,7.4,93.7,Chelsea - Eugene Wright Science and Technology Academy,00570045, 5.9, 0.2, 85.8, 6.3, 0.0, 0.0, 1.9, 51.0, 49.0, 0.0 -1.9697624190064793,1.97,a-cure-i1,2019-20,11.399999999999999,92.6,Chelsea - Frank M Sokolowski Elementary,00570040, 3.0, 0.2, 88.3, 7.4, 0.0, 0.0, 1.1, 50.9, 49.1, 0.0 -2.345549738219895,2.35,a-cure-i1,2019-20,14.0,95.5,Chelsea - George F. Kelly Elementary,00570035, 4.3, 0.4, 90.5, 4.5, 0.0, 0.0, 0.2, 45.0, 55.0, 0.0 -2.7603833865814695,2.76,a-cure-i1,2019-20,16.2,93.9,Chelsea - Joseph A. Browne School,00570055, 4.0, 0.0, 88.2, 6.1, 0.0, 0.0, 1.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,2.4,93.1,Chelsea - Shurtleff Early Childhood,00570003, 4.4, 0.0, 87.7, 6.9, 0.1, 0.0, 0.9, 51.6, 48.4, 0.0 -1.978494623655914,1.98,a-cure-i1,2019-20,11.5,93.0,Chelsea - William A Berkowitz Elementary,00570025, 5.4, 0.0, 85.0, 7.0, 0.0, 0.0, 2.6, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.700000000000003,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.8, 0.0, 2.3, 95.3, 1.6, 0.0, 0.0, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,0.5,41.4,Chicopee - Barry,00610003, 3.6, 2.6, 32.1, 58.6, 0.0, 0.0, 3.1, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,56.3,Chicopee - Belcher,00610010, 9.4, 1.6, 42.5, 43.7, 0.0, 0.0, 2.8, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,1.5,52.1,Chicopee - Bellamy Middle,00610305, 2.8, 2.0, 42.6, 47.9, 0.0, 0.0, 4.7, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.5,68.2,Chicopee - Bowe,00610015, 6.3, 2.0, 54.0, 31.8, 0.0, 0.0, 5.9, 52.1, 47.9, 0.0 -2.8852459016393444,2.89,a-cure-i1,2019-20,5.5,30.5,Chicopee - Bowie,00610020, 3.2, 1.6, 23.8, 69.5, 0.3, 0.3, 1.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.7,76.3,Chicopee - Chicopee Academy,00610021, 3.4, 0.0, 66.1, 23.7, 0.0, 0.0, 6.8, 64.4, 35.6, 0.0 -1,1,a-cure-i1,2019-20,3.9000000000000004,34.400000000000006,Chicopee - Chicopee Comprehensive High School,00610510, 2.4, 2.4, 27.2, 65.6, 0.3, 0.0, 2.2, 55.9, 44.1, 0.0 -1.6703296703296704,1.67,a-cure-i1,2019-20,5.7,54.6,Chicopee - Chicopee High,00610505, 5.7, 2.5, 44.6, 45.4, 0.0, 0.0, 1.8, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,3.7,53.7,Chicopee - Dupont Middle,00610310, 4.3, 2.5, 43.5, 46.3, 0.1, 0.0, 3.3, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2019-20,4.3,61.3,Chicopee - Fairview Elementary,00610050, 5.0, 1.6, 51.7, 38.7, 0.0, 0.0, 3.0, 57.4, 42.6, 0.0 -1.093833780160858,1.09,a-cure-i1,2019-20,5.1,74.6,Chicopee - Gen John J Stefanik,00610090, 5.5, 0.9, 65.6, 25.4, 0.0, 0.0, 2.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.6,35.8,Chicopee - Lambert-Lavoie,00610040, 3.1, 1.4, 25.0, 64.2, 0.0, 0.0, 6.3, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,41.6,Chicopee - Litwin,00610022, 5.5, 0.8, 33.4, 58.4, 0.0, 0.0, 1.8, 51.8, 48.2, 0.0 -3.3809523809523814,3.38,a-cure-i1,2019-20,7.1,33.599999999999994,Chicopee - Streiber Memorial School,00610065, 6.1, 2.9, 18.4, 66.4, 0.0, 0.4, 5.7, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,43.4,Chicopee - Szetela Early Childhood Center,00610001, 3.2, 4.0, 30.5, 56.6, 0.0, 0.0, 5.6, 61.0, 39.0, 0.0 -4.984126984126984,4.98,a-cure-i1,2019-20,15.7,50.4,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 7.0, 8.2, 30.2, 49.6, 0.2, 0.0, 4.7, 50.9, 48.9, 0.2 -6.289766970618034,5,a-cure-i1,2019-20,38.8,98.7,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 65.8, 0.0, 32.0, 1.3, 0.0, 0.0, 0.9, 57.5, 42.5, 0.0 -4.853932584269662,4.85,a-cure-i1,2019-20,29.7,97.9,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 64.8, 0.5, 31.1, 2.1, 0.0, 0.0, 1.6, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,69.8,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 12.8, 2.0, 47.0, 30.2, 0.7, 0.0, 7.4, 55.0, 44.3, 0.7 -1,1,a-cure-i1,2019-20,0.0,6.099999999999994,Clarksburg - Clarksburg Elementary,00630010, 0.5, 0.0, 2.5, 93.9, 0.0, 0.0, 3.0, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,3.7,30.5,Clinton - Clinton Elementary,00640050, 1.7, 1.1, 25.2, 69.5, 0.0, 0.0, 2.5, 51.1, 48.9, 0.0 -3.7253731343283585,3.73,a-cure-i1,2019-20,7.800000000000001,33.5,Clinton - Clinton Middle School,00640305, 3.3, 1.0, 26.9, 66.5, 0.0, 0.2, 2.2, 54.1, 45.9, 0.0 -2.297872340425532,2.3,a-cure-i1,2019-20,5.4,37.6,Clinton - Clinton Senior High,00640505, 4.8, 2.0, 29.6, 62.4, 0.0, 0.0, 1.3, 54.6, 45.4, 0.0 -7.62753036437247,5,a-cure-i1,2019-20,47.1,98.8,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 76.1, 0.0, 21.2, 1.2, 0.3, 0.0, 1.2, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.799999999999997,Cohasset - Cohasset High School,00650505, 2.8, 4.1, 1.7, 90.2, 0.4, 0.0, 0.9, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2019-20,3.6,7.200000000000003,Cohasset - Cohasset Middle School,00650305, 2.9, 1.4, 1.2, 92.8, 0.0, 0.0, 1.7, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.900000000000006,Cohasset - Deer Hill,00650005, 2.9, 2.6, 0.6, 91.1, 0.0, 0.0, 2.9, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.099999999999994,Cohasset - Joseph Osgood,00650010, 3.6, 0.6, 1.8, 91.9, 0.0, 0.0, 2.1, 47.8, 52.2, 0.0 -2.802784222737819,2.8,a-cure-i1,2019-20,15.1,86.2,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 20.1, 27.3, 35.4, 13.8, 0.1, 0.0, 3.3, 48.7, 51.3, 0.0 -8.125391849529779,5,a-cure-i1,2019-20,48.599999999999994,95.7,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 70.2, 3.7, 16.9, 4.3, 0.6, 0.3, 4.0, 42.0, 58.0, 0.0 -2.112589559877175,2.11,a-cure-i1,2019-20,12.9,97.7,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.0, 0.8, 95.8, 2.3, 0.3, 0.0, 0.0, 51.3, 48.8, 0.0 -5.588594704684317,5,a-cure-i1,2019-20,34.3,98.2,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.5, 0.0, 97.8, 1.8, 0.0, 0.0, 0.0, 49.3, 50.8, 0.0 -2.166153846153846,2.17,a-cure-i1,2019-20,13.2,97.5,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 1.0, 1.0, 95.0, 2.5, 0.0, 0.0, 0.5, 49.6, 50.4, 0.0 -3.3467048710601714,3.35,a-cure-i1,2019-20,7.3,34.900000000000006,Concord - Alcott,00670005, 8.4, 8.0, 9.9, 65.1, 0.0, 0.0, 8.6, 51.1, 48.9, 0.0 -9.92481203007519,5,a-cure-i1,2019-20,16.5,26.599999999999994,Concord - Concord Middle,00670305, 5.3, 8.3, 7.0, 73.4, 0.3, 0.0, 5.8, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,4.1,24.400000000000006,Concord - Thoreau,00670020, 1.8, 7.2, 7.4, 75.6, 0.0, 0.0, 8.1, 50.8, 49.2, 0.0 -14.036809815950921,5,a-cure-i1,2019-20,14.299999999999999,16.299999999999997,Concord - Willard,00670030, 1.0, 6.0, 3.3, 83.7, 0.0, 0.0, 6.0, 51.0, 49.0, 0.0 -4.581818181818182,4.58,a-cure-i1,2019-20,6.300000000000001,22.0,Concord-Carlisle - Concord Carlisle High,06400505, 4.5, 8.1, 4.7, 78.0, 0.1, 0.0, 4.6, 47.9, 51.9, 0.2 -3.5146443514644354,3.51,a-cure-i1,2019-20,21.0,95.6,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 48.8, 2.0, 42.4, 4.4, 0.0, 0.0, 2.4, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.0,Conway - Conway Grammar,00680005, 1.5, 0.0, 6.0, 91.0, 0.0, 0.0, 1.5, 57.1, 42.9, 0.0 -1,1,a-cure-i1,2019-20,0.3,15.700000000000003,Danvers - Danvers High,00710505, 2.0, 2.9, 8.3, 84.3, 0.0, 0.0, 2.5, 50.5, 49.4, 0.1 -1,1,a-cure-i1,2019-20,0.0,17.599999999999994,Danvers - Great Oak,00710015, 2.0, 2.0, 9.8, 82.4, 0.0, 0.0, 3.9, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.299999999999997,Danvers - Highlands,00710010, 2.6, 2.6, 9.7, 81.7, 0.0, 0.0, 3.4, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2019-20,3.4,17.299999999999997,Danvers - Holten Richmond Middle School,00710305, 2.5, 2.5, 9.6, 82.7, 0.1, 0.0, 2.7, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.099999999999994,Danvers - Ivan G Smith,00710032, 1.3, 2.3, 9.4, 83.9, 0.0, 0.7, 2.3, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.599999999999994,Danvers - Riverside,00710030, 1.9, 2.2, 8.8, 85.4, 0.3, 0.3, 1.1, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,4.8,9.700000000000003,Danvers - Willis E Thorpe,00710045, 0.6, 2.3, 6.1, 90.3, 0.0, 0.0, 0.6, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.700000000000003,Dartmouth - Andrew B. Cushman School,00720005, 0.6, 0.6, 5.0, 86.3, 0.0, 0.0, 7.5, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2019-20,1.4,14.400000000000006,Dartmouth - Dartmouth High,00720505, 2.2, 0.2, 4.1, 85.6, 0.0, 0.0, 7.9, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,1.5,11.299999999999997,Dartmouth - Dartmouth Middle,00720050, 1.2, 0.4, 4.3, 88.7, 0.0, 0.1, 5.1, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.299999999999997,Dartmouth - George H Potter,00720030, 1.3, 0.8, 3.5, 90.7, 0.0, 0.0, 3.8, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.099999999999994,Dartmouth - James M. Quinn School,00720040, 1.2, 1.3, 5.3, 85.9, 0.0, 0.0, 6.3, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.299999999999997,Dartmouth - Joseph Demello,00720015, 1.2, 1.2, 4.2, 85.7, 0.0, 0.0, 7.6, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,49.8,Dedham - Avery,00730010, 11.1, 3.1, 30.1, 50.2, 0.3, 0.3, 4.8, 45.7, 54.3, 0.0 -2.749140893470791,2.75,a-cure-i1,2019-20,5.0,29.099999999999994,Dedham - Dedham High,00730505, 9.6, 2.4, 15.1, 70.9, 0.0, 0.0, 2.1, 49.0, 50.8, 0.1 -1,1,a-cure-i1,2019-20,1.7,29.400000000000006,Dedham - Dedham Middle School,00730305, 6.7, 2.5, 15.7, 70.6, 0.1, 0.0, 4.3, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.599999999999994,Dedham - Early Childhood Center,00730005, 5.6, 2.2, 13.1, 70.4, 0.0, 0.0, 8.7, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.599999999999994,Dedham - Greenlodge,00730025, 4.0, 0.8, 8.8, 82.4, 0.0, 0.0, 4.0, 57.2, 42.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.900000000000006,Dedham - Oakdale,00730030, 7.1, 2.0, 13.0, 70.1, 0.0, 0.0, 7.9, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.8,Dedham - Riverdale,00730045, 6.3, 5.3, 16.4, 67.2, 0.0, 0.0, 4.8, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.5,Deerfield - Deerfield Elementary,00740015, 0.3, 0.5, 7.0, 84.5, 0.0, 0.0, 7.8, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,3.1,34.0,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 10.4, 2.6, 14.2, 66.0, 1.8, 0.0, 5.1, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,3.8,35.7,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 11.0, 1.3, 14.0, 64.3, 1.6, 0.3, 7.5, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,37.4,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 11.2, 2.4, 16.3, 62.6, 2.4, 0.3, 4.8, 54.8, 45.2, 0.0 -4.317460317460318,4.32,a-cure-i1,2019-20,10.200000000000001,37.8,Dennis-Yarmouth - Mattacheese Middle School,06450305, 10.9, 2.1, 17.1, 62.2, 2.8, 0.2, 4.7, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,3.2,33.3,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 8.1, 2.2, 9.9, 66.7, 2.4, 0.0, 10.7, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.299999999999997,Dennis-Yarmouth - Station Avenue Elementary,06450025, 8.5, 4.4, 7.8, 72.7, 1.5, 0.5, 4.6, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.200000000000003,Dighton-Rehoboth - Dighton Elementary,06500005, 1.8, 1.8, 5.7, 84.8, 0.0, 0.0, 5.9, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,4.7,11.799999999999997,Dighton-Rehoboth - Dighton Middle School,06500305, 2.0, 1.0, 4.7, 88.2, 0.0, 0.0, 4.2, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2019-20,1.7,8.200000000000003,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.4, 0.9, 3.6, 91.8, 0.1, 0.0, 2.1, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,3.1,10.799999999999997,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 1.3, 1.5, 4.0, 89.2, 0.2, 0.0, 3.9, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.5,Dighton-Rehoboth - Palmer River,06500010, 0.8, 1.9, 4.2, 89.5, 0.2, 0.0, 3.5, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.0,Douglas - Douglas Elementary School,00770015, 0.3, 0.3, 6.0, 89.0, 0.0, 0.0, 4.4, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.400000000000006,Douglas - Douglas High School,00770505, 1.4, 1.9, 4.6, 89.6, 0.0, 0.8, 1.6, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.900000000000006,Douglas - Douglas Middle School,00770305, 0.3, 1.3, 3.9, 91.1, 0.0, 0.0, 3.3, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.099999999999994,Douglas - Douglas Primary School,00770005, 0.8, 0.8, 7.3, 89.9, 0.0, 0.0, 1.2, 51.2, 48.8, 0.0 -3.290780141843971,3.29,a-cure-i1,2019-20,5.8,28.200000000000003,Dover - Chickering,00780005, 3.5, 14.9, 4.5, 71.8, 0.0, 0.2, 5.1, 57.6, 42.4, 0.0 -7.004975124378112,5,a-cure-i1,2019-20,8.8,20.099999999999994,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.9, 7.9, 4.4, 79.9, 0.3, 0.0, 4.6, 49.3, 50.6, 0.1 -4.747252747252747,4.75,a-cure-i1,2019-20,8.1,27.299999999999997,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.4, 12.4, 5.5, 72.7, 0.2, 0.0, 5.7, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,31.400000000000006,Dracut - Brookside Elementary,00790035, 11.6, 7.2, 11.6, 68.6, 0.0, 0.0, 0.9, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,1.8,26.799999999999997,Dracut - Dracut Senior High,00790505, 8.9, 8.0, 6.6, 73.2, 0.9, 0.0, 2.4, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,31.200000000000003,Dracut - George H. Englesby Elementary School,00790045, 4.7, 8.0, 16.3, 68.8, 0.0, 0.0, 2.2, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.900000000000006,Dracut - Greenmont Avenue,00790030, 5.3, 4.6, 14.8, 73.1, 0.0, 0.0, 2.1, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.299999999999997,Dracut - Joseph A Campbell Elementary,00790020, 5.2, 5.2, 7.2, 79.7, 0.2, 0.0, 2.6, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2019-20,4.2,27.5,Dracut - Justus C. Richardson Middle School,00790410, 6.1, 7.4, 12.1, 72.5, 0.1, 0.0, 1.7, 49.4, 50.4, 0.2 -6.204756980351602,5,a-cure-i1,2019-20,37.5,96.7,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 59.8, 1.1, 33.2, 3.3, 0.4, 0.4, 1.8, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.299999999999997,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.8, 0.6, 9.3, 86.7, 0.0, 0.0, 2.5, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.400000000000006,Dudley-Charlton Reg - Charlton Middle School,06580310, 1.2, 1.0, 8.3, 86.6, 0.3, 0.1, 2.4, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,4.2,17.900000000000006,Dudley-Charlton Reg - Dudley Elementary,06580005, 3.0, 0.5, 11.0, 82.1, 0.0, 0.0, 3.3, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,2.6,14.700000000000003,Dudley-Charlton Reg - Dudley Middle School,06580305, 1.8, 0.7, 9.1, 85.3, 0.2, 0.0, 2.9, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.099999999999994,Dudley-Charlton Reg - Heritage School,06580030, 0.9, 0.7, 7.0, 87.9, 0.0, 0.0, 3.5, 54.9, 45.1, 0.0 -5.617021276595745,5,a-cure-i1,2019-20,6.6,18.799999999999997,Dudley-Charlton Reg - Mason Road School,06580010, 1.1, 0.4, 12.3, 81.2, 0.7, 0.0, 4.3, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.099999999999994,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 1.9, 1.6, 9.1, 84.9, 0.2, 0.1, 2.2, 48.8, 51.1, 0.1 -1,1,a-cure-i1,2019-20,0.0,8.900000000000006,Duxbury - Alden School,00820004, 0.5, 0.8, 2.8, 91.1, 0.0, 0.0, 4.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,3.2,9.299999999999997,Duxbury - Chandler Elementary,00820006, 0.8, 0.8, 3.0, 90.7, 0.0, 0.0, 4.7, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2019-20,2.9,6.900000000000006,Duxbury - Duxbury High,00820505, 0.3, 1.4, 2.1, 93.1, 0.1, 0.0, 3.0, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.799999999999997,Duxbury - Duxbury Middle,00820305, 0.4, 1.5, 2.4, 92.2, 0.1, 0.0, 3.4, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.700000000000003,East Bridgewater - Central,00830005, 3.5, 1.6, 4.4, 87.3, 0.2, 0.0, 3.0, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.700000000000003,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 2.8, 0.6, 1.9, 92.3, 0.4, 0.1, 2.0, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.900000000000006,East Bridgewater - Gordon W. Mitchell School,00830010, 3.8, 1.1, 2.5, 88.1, 0.6, 0.0, 3.9, 54.1, 45.9, 0.0 -4.941176470588235,4.94,a-cure-i1,2019-20,6.300000000000001,20.400000000000006,East Longmeadow - Birchland Park,00870305, 4.3, 6.1, 6.3, 79.6, 0.0, 0.0, 3.8, 47.9, 52.1, 0.0 -9.723756906077352,5,a-cure-i1,2019-20,11.0,18.099999999999994,East Longmeadow - East Longmeadow High,00870505, 3.0, 6.2, 7.6, 81.9, 0.2, 0.1, 1.0, 53.0, 46.9, 0.1 -1,1,a-cure-i1,2019-20,0.0,26.799999999999997,East Longmeadow - Mapleshade,00870010, 3.5, 6.3, 13.4, 73.2, 0.0, 0.0, 3.5, 56.7, 43.0, 0.4 -1,1,a-cure-i1,2019-20,3.1,23.0,East Longmeadow - Meadow Brook,00870013, 2.6, 3.7, 12.9, 77.0, 0.2, 0.0, 3.6, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.099999999999994,East Longmeadow - Mountain View,00870015, 2.2, 4.4, 9.1, 78.9, 0.4, 0.0, 5.1, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.0,Eastham - Eastham Elementary,00850005, 8.8, 2.1, 2.6, 82.0, 0.0, 0.0, 4.6, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.400000000000006,Easthampton - Center School,00860005, 0.0, 2.9, 15.1, 77.6, 0.5, 0.0, 3.9, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,2.6,21.5,Easthampton - Easthampton High,00860505, 2.0, 3.7, 12.7, 78.5, 0.0, 0.2, 2.9, 47.8, 51.5, 0.7 -1,1,a-cure-i1,2019-20,0.0,20.299999999999997,Easthampton - Maple,00860010, 0.4, 2.0, 12.1, 79.7, 0.4, 0.0, 5.5, 52.3, 47.7, 0.0 -4.043321299638989,4.04,a-cure-i1,2019-20,7.0,27.700000000000003,Easthampton - Neil A Pepin,00860020, 1.5, 2.1, 15.9, 72.3, 1.0, 0.0, 7.2, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.200000000000003,Easthampton - White Brook Middle School,00860305, 1.6, 5.3, 13.4, 77.8, 0.2, 0.0, 1.6, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.900000000000006,Easton - Center School,00880003, 10.2, 3.7, 8.2, 75.1, 0.0, 0.0, 2.9, 54.7, 45.3, 0.0 -1,1,a-cure-i1,2019-20,1.7,18.599999999999994,Easton - Easton Middle School,00880405, 6.3, 3.4, 5.9, 81.4, 0.0, 0.0, 3.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.700000000000003,Easton - Moreau Hall,00880020, 8.6, 5.4, 7.7, 74.3, 0.5, 0.5, 3.2, 52.3, 47.7, 0.0 -5.9476439790575935,5,a-cure-i1,2019-20,7.1,19.099999999999994,Easton - Oliver Ames High,00880505, 7.4, 3.4, 4.9, 80.9, 0.3, 0.1, 3.1, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,2.2,18.5,Easton - Parkview Elementary,00880015, 4.2, 2.2, 6.7, 81.5, 0.3, 0.0, 5.1, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,4.0,22.0,Easton - Richardson Olmsted School,00880025, 7.4, 2.6, 7.4, 78.0, 0.7, 0.2, 3.6, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,31.200000000000003,Edgartown - Edgartown Elementary,00890005, 3.6, 0.5, 20.2, 68.8, 2.6, 0.0, 4.3, 48.6, 51.4, 0.0 -7.9101123595505625,5,a-cure-i1,2019-20,48.400000000000006,97.9,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 38.7, 0.8, 57.0, 2.1, 0.3, 0.0, 1.3, 35.1, 64.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.299999999999997,Erving - Erving Elementary,00910030, 0.8, 0.0, 5.3, 82.7, 0.0, 0.0, 11.3, 57.9, 42.1, 0.0 -1,1,a-cure-i1,2019-20,2.2,19.900000000000006,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.2, 1.5, 13.1, 80.1, 0.3, 0.1, 3.8, 41.9, 58.0, 0.1 -1,1,a-cure-i1,2019-20,0.0,79.5,Everett - Adams School,00930003, 18.1, 7.9, 52.8, 20.5, 0.0, 0.0, 0.8, 51.2, 48.8, 0.0 -1.6371077762619373,1.64,a-cure-i1,2019-20,7.5,73.3,Everett - Devens School,00930030, 31.7, 0.0, 36.7, 26.7, 0.0, 0.0, 5.0, 78.3, 21.7, 0.0 -2.421185372005044,2.42,a-cure-i1,2019-20,12.0,79.3,Everett - Everett High,00930505, 19.6, 4.8, 52.7, 20.7, 0.5, 0.1, 1.6, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2019-20,4.2,82.5,Everett - George Keverian School,00930028, 14.1, 5.4, 60.2, 17.5, 0.3, 0.1, 2.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,3.6,77.4,Everett - Lafayette School,00930038, 17.4, 7.2, 50.3, 22.6, 0.3, 0.0, 2.2, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,72.9,Everett - Madeline English School,00930018, 12.2, 6.5, 51.6, 27.1, 0.4, 0.1, 2.1, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,88.8,Everett - Parlin School,00930058, 14.0, 2.7, 71.1, 11.2, 0.0, 0.0, 0.9, 46.0, 54.0, 0.0 -1.4744027303754264,1.47,a-cure-i1,2019-20,8.1,87.9,Everett - Sumner G. Whittier School,00930010, 10.0, 5.0, 70.6, 12.1, 0.8, 0.0, 1.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,81.0,Everett - Webster Extension,00930001, 17.5, 10.9, 51.2, 19.0, 0.0, 0.0, 1.4, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2019-20,3.3,70.2,Everett - Webster School,00930015, 12.6, 5.2, 51.4, 29.8, 0.0, 0.0, 1.1, 53.8, 46.2, 0.0 -5.418181818181818,5,a-cure-i1,2019-20,29.799999999999997,88.0,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 6.1, 1.0, 79.3, 12.0, 0.7, 0.4, 0.6, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.099999999999994,Fairhaven - East Fairhaven,00940010, 3.6, 1.5, 6.4, 82.9, 1.3, 0.0, 4.3, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.400000000000006,Fairhaven - Fairhaven High,00940505, 1.9, 2.4, 5.6, 87.6, 0.6, 0.0, 2.0, 46.2, 53.8, 0.0 -5.910828025477707,5,a-cure-i1,2019-20,5.800000000000001,15.700000000000003,Fairhaven - Hastings Middle,00940305, 2.0, 2.8, 6.3, 84.3, 0.7, 0.0, 3.9, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.200000000000003,Fairhaven - Leroy Wood,00940030, 3.9, 1.4, 3.9, 85.8, 0.4, 0.0, 4.7, 50.6, 49.4, 0.0 -2.3297644539614564,2.33,a-cure-i1,2019-20,6.800000000000001,46.7,Fall River - B M C Durfee High,00950505, 8.9, 5.3, 27.2, 53.3, 0.2, 0.0, 5.0, 49.8, 50.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,56.6,Fall River - Carlton M. Viveiros Elementary School,00950009, 8.4, 3.9, 34.7, 43.4, 0.0, 0.0, 9.5, 49.1, 50.9, 0.0 -3.409395973154362,3.41,a-cure-i1,2019-20,12.7,59.6,Fall River - Henry Lord Community School,00950017, 9.5, 3.7, 37.1, 40.4, 0.0, 0.0, 9.4, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.700000000000003,Fall River - James Tansey,00950140, 2.6, 2.0, 10.9, 75.3, 0.0, 0.0, 9.2, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,51.5,Fall River - John J Doran,00950045, 8.7, 1.6, 28.8, 48.5, 0.0, 0.0, 12.4, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,53.5,Fall River - Letourneau Elementary School,00950013, 6.6, 1.8, 36.4, 46.5, 0.0, 0.0, 8.6, 50.2, 49.8, 0.0 -2.4257274119448695,2.43,a-cure-i1,2019-20,9.899999999999999,65.3,Fall River - Mary Fonseca Elementary School,00950011, 9.6, 3.0, 41.2, 34.7, 0.3, 0.1, 11.1, 54.8, 45.2, 0.0 -2.7875894988066827,2.79,a-cure-i1,2019-20,7.3,41.9,Fall River - Matthew J Kuss Middle,00950320, 7.8, 5.0, 21.6, 58.1, 0.0, 0.0, 7.5, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2019-20,2.5,43.0,Fall River - Morton Middle,00950315, 8.2, 3.8, 23.0, 57.0, 0.3, 0.2, 7.5, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2019-20,2.8,44.3,Fall River - North End Elementary,00950005, 9.3, 1.4, 23.9, 55.7, 0.1, 0.0, 9.6, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.8,57.9,Fall River - Resiliency Preparatory Academy,00950525, 14.5, 0.5, 35.5, 42.1, 0.5, 0.0, 7.0, 55.1, 44.4, 0.5 -1,1,a-cure-i1,2019-20,0.0,53.3,Fall River - Samuel Watson,00950145, 10.2, 2.9, 23.7, 46.7, 0.7, 0.0, 15.7, 47.1, 52.9, 0.0 -2.026666666666667,2.03,a-cure-i1,2019-20,5.7,45.0,Fall River - Spencer Borden,00950130, 8.7, 3.4, 22.1, 55.0, 0.0, 0.0, 10.8, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,4.1,58.9,Fall River - Stone PK-12 School,00950340, 19.6, 0.0, 23.2, 41.1, 0.0, 0.0, 16.1, 76.8, 23.2, 0.0 -1.5914742451154529,1.59,a-cure-i1,2019-20,5.6,56.3,Fall River - Talbot Innovation School,00950305, 7.8, 3.7, 35.1, 43.7, 0.2, 0.0, 9.5, 53.5, 46.5, 0.0 -1.7707509881422923,1.77,a-cure-i1,2019-20,5.6,50.6,Fall River - William S Greene,00950065, 7.6, 6.2, 28.3, 49.4, 0.0, 0.0, 8.5, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,4.7,25.599999999999994,Falmouth - East Falmouth Elementary,00960005, 4.3, 2.6, 10.8, 74.4, 2.0, 0.0, 5.9, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,4.199999999999999,18.099999999999994,Falmouth - Falmouth High,00960505, 4.8, 2.0, 4.9, 81.9, 1.0, 0.0, 5.5, 49.4, 50.1, 0.5 -4.666666666666669,4.67,a-cure-i1,2019-20,6.300000000000001,21.599999999999994,Falmouth - Lawrence,00960405, 6.5, 2.9, 5.7, 78.4, 0.4, 0.0, 6.1, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,2.7,19.5,Falmouth - Morse Pond School,00960305, 4.0, 1.5, 5.1, 80.5, 2.2, 0.0, 6.7, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.200000000000003,Falmouth - Mullen-Hall,00960020, 2.9, 2.5, 9.2, 75.8, 0.7, 0.0, 9.0, 56.5, 43.5, 0.0 -9.375796178343947,5,a-cure-i1,2019-20,9.2,15.700000000000003,Falmouth - North Falmouth Elementary,00960030, 2.8, 1.3, 6.6, 84.3, 0.0, 0.3, 4.7, 47.8, 52.2, 0.0 -4.7119741100323616,4.71,a-cure-i1,2019-20,9.1,30.900000000000006,Falmouth - Teaticket,00960015, 10.8, 1.1, 10.4, 69.1, 0.7, 0.0, 7.8, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,1.0,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 57.1, 42.9, 0.0 -1.6919060052219321,1.69,a-cure-i1,2019-20,8.1,76.6,Fitchburg - Arthur M Longsjo Middle School,00970315, 6.5, 3.8, 58.8, 23.4, 0.0, 0.2, 7.3, 51.8, 48.2, 0.0 -1.145945945945946,1.15,a-cure-i1,2019-20,5.3,74.0,Fitchburg - Crocker Elementary,00970016, 4.8, 3.4, 57.8, 26.0, 0.2, 0.0, 7.9, 53.3, 46.7, 0.0 -4.079320113314448,4.08,a-cure-i1,2019-20,18.0,70.6,Fitchburg - Fitchburg High,00970505, 7.6, 5.7, 49.5, 29.4, 0.0, 0.0, 7.8, 52.4, 47.6, 0.0 -6.943942133815552,5,a-cure-i1,2019-20,24.0,55.3,Fitchburg - Goodrich Academy,00970510, 5.6, 1.0, 44.2, 44.7, 0.0, 0.0, 4.6, 59.4, 40.6, 0.0 -1.5845942228335623,1.58,a-cure-i1,2019-20,7.199999999999999,72.7,Fitchburg - McKay Arts Academy,00970340, 6.1, 5.8, 53.8, 27.3, 0.0, 0.0, 7.0, 50.5, 49.5, 0.0 -1.4191702432045776,1.42,a-cure-i1,2019-20,6.199999999999999,69.9,Fitchburg - Memorial Middle School,00970048, 5.3, 6.1, 50.9, 30.1, 0.0, 0.1, 7.5, 46.5, 53.5, 0.0 -1.6446402349486051,1.64,a-cure-i1,2019-20,7.0,68.1,Fitchburg - Reingold Elementary,00970043, 4.3, 4.3, 51.7, 31.9, 0.0, 0.0, 7.8, 55.7, 44.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,77.2,Fitchburg - South Street Elementary,00970060, 7.8, 3.2, 58.4, 22.8, 0.0, 0.0, 7.8, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,1.0999999999999943,Florida - Abbott Memorial,00980005, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 52.6, 47.4, 0.0 -20.770186335403732,5,a-cure-i1,2019-20,20.9,16.099999999999994,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.5, 2.3, 6.9, 83.9, 0.9, 0.0, 5.5, 44.7, 54.8, 0.5 -1,1,a-cure-i1,2019-20,0.0,22.0,Foxborough - Charles Taylor Elementary,00990050, 3.3, 4.1, 7.9, 78.0, 0.8, 0.8, 5.0, 58.1, 41.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.5,Foxborough - Foxborough High,00990505, 6.7, 2.9, 5.5, 82.5, 0.5, 0.0, 1.9, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,3.2,19.299999999999997,Foxborough - John J Ahern,00990405, 5.6, 4.0, 6.2, 80.7, 0.4, 0.1, 3.0, 51.9, 47.9, 0.1 -4.398104265402845,4.4,a-cure-i1,2019-20,5.8,21.099999999999994,Foxborough - Mabelle M Burrell,00990015, 4.7, 6.3, 6.6, 78.9, 0.6, 0.0, 2.8, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.5,Foxborough - Vincent M Igo Elementary,00990020, 5.3, 8.2, 6.8, 74.5, 0.0, 0.3, 5.0, 51.1, 48.9, 0.0 -3.059490084985836,3.06,a-cure-i1,2019-20,13.5,70.6,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 49.4, 10.1, 5.4, 29.4, 0.3, 0.2, 5.1, 48.2, 51.8, 0.0 -7.007299270072992,5,a-cure-i1,2019-20,36.0,82.2,Framingham - Barbieri Elementary,01000035, 3.0, 0.4, 74.8, 17.8, 0.0, 0.0, 3.9, 44.3, 55.5, 0.1 -3.373092926490985,3.37,a-cure-i1,2019-20,15.2,72.1,Framingham - Brophy,01000006, 6.2, 3.4, 58.9, 27.9, 0.2, 0.0, 3.4, 49.1, 50.9, 0.0 -3.7818181818181817,3.78,a-cure-i1,2019-20,7.8,33.0,Framingham - Cameron Middle School,01000302, 6.8, 2.7, 19.7, 67.0, 0.0, 0.0, 3.8, 50.3, 49.7, 0.0 -3.3072625698324027,3.31,a-cure-i1,2019-20,7.4,35.8,Framingham - Charlotte A Dunning,01000007, 7.6, 9.6, 15.1, 64.2, 0.0, 0.0, 3.4, 51.8, 48.2, 0.0 -4.208616780045351,4.21,a-cure-i1,2019-20,11.6,44.1,Framingham - Framingham High School,01000515, 7.0, 5.1, 28.0, 55.9, 0.1, 0.1, 3.9, 50.3, 49.6, 0.0 -5.15210355987055,5,a-cure-i1,2019-20,19.9,61.8,Framingham - Fuller Middle,01000305, 8.8, 2.1, 47.8, 38.2, 0.2, 0.2, 2.7, 54.6, 45.4, 0.0 -6.725848563968669,5,a-cure-i1,2019-20,16.1,38.3,Framingham - Hemenway,01000015, 7.0, 8.8, 15.0, 61.7, 0.2, 0.0, 7.3, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,4.9,43.0,Framingham - Juniper Hill School,01000001, 5.8, 9.7, 24.3, 57.0, 0.3, 0.3, 2.6, 63.8, 36.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.0,Framingham - King Elementary School,01000005, 4.8, 9.5, 14.8, 64.0, 0.0, 0.0, 6.9, 52.5, 47.5, 0.0 -3.1296703296703297,3.13,a-cure-i1,2019-20,8.9,45.5,Framingham - Mary E Stapleton Elementary,01000045, 8.8, 6.2, 24.3, 54.5, 0.0, 0.0, 6.2, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2019-20,2.6,60.9,Framingham - Miriam F McCarthy School,01000050, 14.3, 2.0, 36.0, 39.1, 0.0, 0.2, 8.4, 48.9, 51.1, 0.0 -8.070796460176991,5,a-cure-i1,2019-20,17.1,33.900000000000006,Framingham - Potter Road,01000039, 8.2, 3.8, 16.3, 66.1, 0.0, 0.2, 5.4, 49.2, 50.8, 0.0 -6.0136674259681095,5,a-cure-i1,2019-20,16.5,43.9,Framingham - Walsh Middle,01000310, 3.5, 4.2, 32.2, 56.1, 0.1, 0.0, 3.9, 49.0, 51.0, 0.0 -2.142857142857143,2.14,a-cure-i1,2019-20,6.0,44.8,Framingham - Woodrow Wilson,01000055, 9.8, 0.2, 32.2, 55.2, 0.4, 0.0, 2.2, 53.2, 46.8, 0.0 -12.357723577235776,5,a-cure-i1,2019-20,9.5,12.299999999999997,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 1.3, 2.0, 3.0, 87.7, 0.3, 0.0, 5.8, 46.1, 53.1, 0.8 -1,1,a-cure-i1,2019-20,0.0,14.700000000000003,Franklin - Annie Sullivan Middle School,01010040, 1.8, 3.9, 7.3, 85.3, 0.3, 0.3, 1.0, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.900000000000006,Franklin - Davis Thayer,01010035, 1.3, 1.8, 4.4, 88.1, 0.0, 2.2, 2.2, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.599999999999994,Franklin - Franklin Early Childhood Development Center,01010003, 1.8, 9.0, 0.9, 78.4, 0.0, 5.4, 4.5, 60.4, 39.6, 0.0 -1,1,a-cure-i1,2019-20,1.0,13.799999999999997,Franklin - Franklin High,01010505, 1.3, 6.5, 3.1, 86.2, 0.2, 0.3, 2.3, 50.0, 49.9, 0.1 -1,1,a-cure-i1,2019-20,0.0,11.0,Franklin - Helen Keller Elementary,01010012, 2.6, 3.8, 2.3, 89.0, 0.0, 0.6, 1.7, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.599999999999994,Franklin - Horace Mann,01010405, 1.8, 6.9, 4.2, 84.4, 0.0, 0.4, 2.2, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.400000000000006,Franklin - J F Kennedy Memorial,01010013, 0.6, 5.1, 4.0, 86.6, 0.3, 1.7, 1.7, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.5,Franklin - Jefferson Elementary,01010010, 1.2, 8.1, 4.9, 83.5, 0.0, 0.6, 1.7, 55.5, 44.5, 0.0 -6.375000000000001,5,a-cure-i1,2019-20,5.1,12.799999999999997,Franklin - Oak Street Elementary,01010030, 1.9, 3.9, 3.6, 87.2, 0.0, 0.0, 3.3, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.900000000000006,Franklin - Parmenter,01010032, 7.2, 5.2, 7.8, 77.1, 0.0, 1.4, 1.2, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.7,13.200000000000003,Franklin - Remington Middle,01010310, 3.0, 5.7, 3.0, 86.8, 0.2, 0.0, 1.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,1.8,7.5,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.8, 0.0, 4.8, 92.5, 0.0, 0.0, 2.0, 64.6, 35.4, 0.0 -1,1,a-cure-i1,2019-20,4.0,5.700000000000003,Freetown-Lakeville - Apponequet Regional High,06650505, 1.1, 1.0, 2.3, 94.3, 0.0, 0.3, 1.1, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.200000000000003,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.9, 0.4, 3.4, 88.8, 0.0, 0.0, 5.5, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.200000000000003,Freetown-Lakeville - Freetown Elementary School,06650001, 0.7, 0.9, 3.6, 92.8, 0.0, 0.0, 2.0, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2019-20,4.8,5.400000000000006,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 1.5, 0.8, 1.1, 94.6, 0.3, 0.0, 1.7, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.700000000000003,Freetown-Lakeville - George R Austin Intermediate School,06650015, 2.3, 0.7, 1.4, 93.3, 0.0, 0.0, 2.3, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,2.8,13.400000000000006,Frontier - Frontier Regional,06700505, 2.3, 3.1, 4.6, 86.6, 0.0, 0.2, 3.4, 53.9, 46.1, 0.0 -3.067357512953368,3.07,a-cure-i1,2019-20,7.4,38.6,Gardner - Elm Street School,01030001, 2.4, 2.8, 26.4, 61.4, 0.2, 0.0, 6.7, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.5,Gardner - Gardner Academy for Learning and Technology,01030515, 2.4, 0.8, 11.9, 82.5, 0.0, 0.0, 2.4, 50.0, 50.0, 0.0 -4.717325227963524,4.72,a-cure-i1,2019-20,9.7,32.900000000000006,Gardner - Gardner High,01030505, 3.3, 2.5, 21.2, 67.1, 0.3, 0.0, 5.7, 52.0, 48.0, 0.0 -2.56,2.56,a-cure-i1,2019-20,5.6,35.0,Gardner - Gardner Middle School,01030405, 1.5, 1.9, 21.2, 65.0, 0.2, 0.0, 10.2, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.3,Gardner - Waterford Street,01030020, 3.4, 1.5, 22.9, 64.7, 0.0, 0.0, 7.5, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.299999999999997,Gateway - Chester Elementary,06720059, 0.0, 2.5, 5.0, 91.7, 0.0, 0.0, 0.8, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2019-20,3.9,8.799999999999997,Gateway - Gateway Regional High,06720505, 0.0, 1.0, 3.4, 91.2, 0.5, 0.0, 3.9, 50.2, 49.8, 0.0 -8.212389380530976,5,a-cure-i1,2019-20,5.8,11.299999999999997,Gateway - Gateway Regional Middle School,06720405, 2.1, 0.0, 7.2, 88.7, 0.5, 0.5, 1.0, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.5,Gateway - Littleville Elementary School,06720143, 0.6, 0.0, 3.9, 93.5, 0.0, 0.0, 1.9, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,4.5,6.599999999999994,Georgetown - Georgetown High School,01050505, 1.1, 1.3, 2.6, 93.4, 0.0, 0.0, 1.6, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,2.2,4.900000000000006,Georgetown - Georgetown Middle School,01050305, 1.1, 1.1, 2.2, 95.1, 0.0, 0.5, 0.0, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.400000000000006,Georgetown - Penn Brook,01050010, 0.4, 0.8, 1.9, 94.6, 0.0, 0.1, 2.1, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.400000000000006,Georgetown - Perley Elementary,01050005, 0.0, 1.2, 0.0, 90.6, 0.0, 0.0, 8.2, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.0,Gill-Montague - Gill Elementary,06740005, 1.4, 0.0, 4.3, 90.0, 0.0, 0.0, 4.3, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,2.2,24.599999999999994,Gill-Montague - Great Falls Middle,06740310, 0.4, 0.0, 12.9, 75.4, 0.4, 0.4, 10.3, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.400000000000006,Gill-Montague - Hillcrest Elementary School,06740015, 2.0, 1.3, 19.6, 70.6, 0.0, 0.0, 6.5, 56.9, 43.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.299999999999997,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 13.4, 78.7, 0.0, 0.5, 7.4, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2019-20,2.8,19.200000000000003,Gill-Montague - Turners Fall High,06740505, 2.0, 0.5, 12.1, 80.8, 0.5, 0.0, 4.0, 41.9, 58.1, 0.0 -1.5466666666666666,1.55,a-cure-i1,2019-20,5.8,60.0,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 10.8, 1.0, 43.4, 40.0, 0.4, 0.0, 4.3, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.5,Gloucester - Beeman Memorial,01070010, 2.1, 0.9, 18.2, 74.5, 0.3, 0.0, 4.0, 52.9, 47.1, 0.0 -6.87116564417178,5,a-cure-i1,2019-20,7.0,16.299999999999997,Gloucester - East Gloucester Elementary,01070020, 0.0, 1.5, 10.4, 83.7, 0.0, 0.0, 4.5, 53.0, 47.0, 0.0 -4.301075268817206,4.3,a-cure-i1,2019-20,5.0,18.599999999999994,Gloucester - Gloucester High,01070505, 1.7, 0.8, 11.6, 81.4, 0.1, 0.8, 3.6, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.400000000000006,Gloucester - Gloucester PreSchool,01070025, 1.7, 4.3, 5.2, 83.6, 0.0, 0.0, 5.2, 61.2, 38.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.700000000000003,Gloucester - Plum Cove School,01070042, 2.4, 0.5, 3.4, 89.3, 0.0, 0.0, 4.4, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.0,Gloucester - Ralph B O'Maley Middle,01070305, 1.4, 1.2, 10.0, 84.0, 0.6, 0.2, 2.6, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,34.0,Gloucester - Veterans Memorial,01070045, 5.2, 2.4, 21.7, 66.0, 0.0, 1.4, 3.3, 46.2, 53.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.5,Gloucester - West Parish,01070050, 0.8, 1.1, 8.6, 84.5, 0.0, 0.0, 5.0, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,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 -1,1,a-cure-i1,2019-20,2.1,18.799999999999997,Grafton - Grafton High School,01100505, 1.9, 10.2, 3.9, 81.2, 0.0, 0.0, 2.8, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,3.1,21.700000000000003,Grafton - Grafton Middle,01100305, 1.5, 10.2, 6.2, 78.3, 0.4, 0.4, 3.0, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.099999999999994,Grafton - Millbury Street Elementary School,01100200, 1.0, 17.0, 5.7, 73.9, 0.0, 0.0, 2.3, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.700000000000003,Grafton - North Grafton Elementary,01100025, 1.2, 16.7, 3.9, 76.3, 0.0, 0.0, 1.9, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.700000000000003,Grafton - North Street Elementary School,01100030, 1.2, 8.7, 5.7, 79.3, 0.4, 0.2, 4.6, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.700000000000003,Grafton - South Grafton Elementary,01100005, 2.7, 16.7, 6.0, 72.3, 0.0, 0.0, 2.3, 57.7, 42.3, 0.0 -1,1,a-cure-i1,2019-20,0.9,18.900000000000006,Granby - East Meadow,01110004, 0.0, 1.2, 12.1, 81.1, 0.7, 0.0, 4.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,4.2,12.299999999999997,Granby - Granby Jr Sr High School,01110505, 0.3, 1.2, 7.6, 87.7, 0.0, 0.0, 3.2, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2019-20,2.8,23.799999999999997,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 3.1, 2.3, 12.3, 76.2, 0.6, 0.1, 5.4, 55.4, 44.6, 0.0 -2.0488940628637953,2.05,a-cure-i1,2019-20,11.000000000000002,85.9,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.0, 1.4, 83.3, 14.1, 0.2, 0.0, 0.1, 50.5, 49.5, 0.0 -1.5290102389078497,1.53,a-cure-i1,2019-20,5.6,58.6,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 4.2, 16.2, 35.2, 41.4, 0.2, 0.0, 2.7, 52.8, 46.9, 0.3 -2.7346938775510203,2.73,a-cure-i1,2019-20,6.7,39.2,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 8.5, 1.1, 24.0, 60.8, 0.2, 0.0, 5.4, 51.9, 48.1, 0.0 -6.423357664233575,5,a-cure-i1,2019-20,5.5,13.700000000000003,Greenfield - Discovery School at Four Corners,01140025, 0.4, 2.0, 9.8, 86.3, 0.0, 0.0, 1.6, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,31.599999999999994,Greenfield - Federal Street School,01140010, 2.5, 1.3, 23.2, 68.4, 0.0, 0.0, 4.6, 48.9, 51.1, 0.0 -3.459459459459459,3.46,a-cure-i1,2019-20,7.199999999999999,33.3,Greenfield - Greenfield High,01140505, 2.7, 2.5, 20.9, 66.7, 0.2, 0.0, 7.0, 53.9, 45.9, 0.2 -3.9136690647482024,3.91,a-cure-i1,2019-20,6.800000000000001,27.799999999999997,Greenfield - Greenfield Middle,01140305, 2.6, 1.0, 19.2, 72.2, 0.0, 0.0, 5.0, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,40.8,Greenfield - Newton School,01140035, 5.0, 0.8, 30.4, 59.2, 0.0, 0.0, 4.6, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.099999999999994,Greenfield - The Academy of Early Learning at North Parish,01140005, 1.7, 0.8, 16.5, 76.9, 0.0, 0.0, 4.1, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,41.2,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 8.6, 5.0, 18.7, 58.8, 0.2, 0.2, 8.6, 43.3, 56.1, 0.6 -1,1,a-cure-i1,2019-20,0.0,22.400000000000006,Groton-Dunstable - Boutwell School,06730001, 1.7, 13.8, 3.4, 77.6, 0.0, 0.0, 3.4, 56.9, 43.1, 0.0 -1,1,a-cure-i1,2019-20,3.4,15.700000000000003,Groton-Dunstable - Florence Roche School,06730010, 0.9, 5.5, 3.0, 84.3, 0.4, 0.0, 5.9, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,2.2,12.099999999999994,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.7, 8.0, 1.9, 87.9, 0.1, 0.3, 1.1, 50.8, 49.1, 0.1 -1,1,a-cure-i1,2019-20,2.2,12.599999999999994,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 1.6, 6.5, 2.0, 87.4, 0.1, 0.3, 2.1, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.799999999999997,Groton-Dunstable - Swallow/Union School,06730005, 1.0, 7.7, 5.9, 81.2, 0.3, 0.0, 3.8, 54.0, 46.0, 0.0 -3.347280334728033,3.35,a-cure-i1,2019-20,5.0,23.900000000000006,Hadley - Hadley Elementary,01170015, 3.2, 4.6, 10.4, 76.1, 0.4, 1.4, 3.9, 51.4, 48.6, 0.0 -5.140562248995983,5,a-cure-i1,2019-20,8.0,24.900000000000006,Hadley - Hopkins Academy,01170505, 2.4, 5.6, 10.0, 75.1, 0.4, 3.2, 3.2, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.900000000000006,Halifax - Halifax Elementary,01180005, 1.5, 0.0, 4.6, 90.1, 0.5, 0.0, 3.2, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.599999999999994,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.7, 8.6, 86.4, 0.0, 0.0, 2.3, 56.4, 43.6, 0.0 -8.712871287128717,5,a-cure-i1,2019-20,5.5,10.099999999999994,Hamilton-Wenham - Cutler School,06750010, 0.7, 2.5, 2.2, 89.9, 0.0, 1.1, 3.6, 45.3, 54.7, 0.0 -13.379310344827593,5,a-cure-i1,2019-20,9.7,11.599999999999994,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.7, 4.0, 4.5, 88.4, 0.0, 0.0, 2.4, 46.1, 53.9, 0.0 -13.963636363636367,5,a-cure-i1,2019-20,9.600000000000001,11.0,Hamilton-Wenham - Miles River Middle,06750310, 0.7, 4.1, 4.1, 89.0, 0.0, 0.2, 1.9, 45.2, 54.8, 0.0 -7.927927927927932,5,a-cure-i1,2019-20,5.5,11.099999999999994,Hamilton-Wenham - Winthrop School,06750015, 0.6, 4.2, 4.8, 88.9, 0.0, 0.0, 1.5, 47.6, 52.4, 0.0 -2.2164502164502164,2.22,a-cure-i1,2019-20,9.6,69.3,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 31.7, 1.9, 32.6, 30.7, 0.2, 0.0, 2.9, 49.4, 50.6, 0.0 -4.497131931166348,4.5,a-cure-i1,2019-20,14.7,52.3,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 15.3, 1.5, 33.6, 47.7, 0.0, 0.0, 1.9, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.5,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.8, 0.3, 10.9, 83.5, 0.0, 0.0, 2.5, 48.4, 51.6, 0.0 -4.324324324324325,4.32,a-cure-i1,2019-20,5.0,18.5,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.9, 2.5, 8.3, 81.5, 0.3, 0.6, 5.0, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,1.6,17.299999999999997,Hampden-Wilbraham - Minnechaug Regional High,06800505, 2.9, 4.2, 6.7, 82.7, 0.5, 0.0, 2.9, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.400000000000006,Hampden-Wilbraham - Soule Road,06800030, 1.6, 2.2, 9.7, 80.6, 0.3, 0.0, 5.6, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.5,Hampden-Wilbraham - Stony Hill School,06800050, 3.4, 2.8, 5.6, 85.5, 0.0, 0.0, 2.8, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.900000000000006,Hampden-Wilbraham - Wilbraham Middle,06800310, 2.7, 2.1, 7.7, 84.1, 0.0, 0.0, 3.4, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,3.2,8.400000000000006,Hampshire - Hampshire Regional High,06830505, 0.3, 1.0, 4.4, 91.6, 0.0, 0.0, 2.9, 45.4, 54.5, 0.1 -1,1,a-cure-i1,2019-20,0.0,4.299999999999997,Hancock - Hancock Elementary,01210005, 2.1, 2.1, 0.0, 95.7, 0.0, 0.0, 0.0, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.099999999999994,Hanover - Cedar Elementary,01220004, 0.8, 2.3, 2.1, 93.9, 0.0, 0.0, 0.8, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,3.7,6.299999999999997,Hanover - Center Elementary,01220005, 0.7, 1.8, 3.2, 93.7, 0.0, 0.0, 0.7, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,1.8,4.799999999999997,Hanover - Hanover High,01220505, 0.8, 2.9, 1.2, 95.2, 0.0, 0.0, 0.0, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,3.8,7.900000000000006,Hanover - Hanover Middle,01220305, 2.2, 2.2, 2.8, 92.1, 0.0, 0.0, 0.8, 52.1, 47.9, 0.0 -3.849056603773584,3.85,a-cure-i1,2019-20,5.1,21.200000000000003,Harvard - Bromfield,01250505, 2.1, 11.3, 4.7, 78.8, 0.0, 0.0, 3.1, 47.5, 52.3, 0.2 -5.132075471698112,5,a-cure-i1,2019-20,6.8,21.200000000000003,Harvard - Hildreth Elementary School,01250005, 2.1, 10.5, 4.4, 78.8, 0.0, 0.0, 4.2, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.400000000000006,Hatfield - Hatfield Elementary,01270005, 0.4, 0.8, 4.9, 92.6, 0.0, 0.0, 1.2, 49.4, 50.2, 0.4 -1,1,a-cure-i1,2019-20,0.0,7.400000000000006,Hatfield - Smith Academy,01270505, 0.5, 1.1, 2.7, 92.6, 0.0, 0.0, 3.2, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,49.6,Haverhill - Bradford Elementary,01280008, 3.3, 1.2, 42.1, 50.4, 0.0, 0.0, 3.1, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,0.9,32.599999999999994,Haverhill - Caleb Dustin Hunking School,01280030, 5.8, 1.9, 22.4, 67.4, 0.1, 0.1, 2.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,55.3,Haverhill - Consentino Middle School,01280100, 4.3, 2.9, 46.5, 44.7, 0.4, 0.0, 1.2, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,70.8,Haverhill - Crowell,01280515, 0.0, 0.0, 70.8, 29.2, 0.0, 0.0, 0.0, 66.7, 33.3, 0.0 -1,1,a-cure-i1,2019-20,2.6,58.1,Haverhill - Dr Paul Nettle,01280050, 5.0, 2.2, 47.8, 41.9, 0.2, 0.3, 2.6, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,53.2,Haverhill - Golden Hill,01280026, 3.6, 1.3, 45.8, 46.8, 0.2, 0.0, 2.3, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,58.1,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 54.8, 41.9, 0.0, 0.0, 3.2, 77.4, 22.6, 0.0 -3.5140186915887854,3.51,a-cure-i1,2019-20,9.4,42.8,Haverhill - Haverhill High,01280505, 5.0, 1.7, 34.7, 57.2, 0.1, 0.2, 1.2, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,4.3,41.5,Haverhill - John G Whittier,01280085, 4.3, 1.6, 33.9, 58.5, 0.4, 0.2, 1.2, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,44.9,Haverhill - Moody,01280045, 10.6, 2.4, 31.4, 55.1, 0.5, 0.0, 0.0, 61.8, 38.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,52.4,Haverhill - Pentucket Lake Elementary,01280054, 5.5, 0.7, 43.0, 47.6, 0.5, 0.0, 2.6, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,48.5,Haverhill - Silver Hill Elementary School,01280067, 4.6, 2.2, 37.6, 51.5, 0.3, 0.0, 3.7, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,58.6,Haverhill - TEACH,01280073, 3.4, 0.0, 41.4, 41.4, 3.4, 0.0, 10.3, 82.8, 17.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,64.3,Haverhill - Tilton,01280075, 4.6, 1.0, 56.7, 35.7, 0.0, 0.0, 2.0, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,4.5,66.1,Haverhill - Tilton Upper Middle School,01280105, 3.6, 1.8, 58.8, 33.9, 0.6, 0.0, 1.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,43.1,Haverhill - Walnut Square,01280080, 4.9, 0.7, 35.4, 56.9, 0.0, 0.0, 2.1, 45.1, 54.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.200000000000003,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 7.0, 88.8, 0.7, 0.0, 3.5, 43.4, 56.6, 0.0 -14.352701325178387,5,a-cure-i1,2019-20,87.99999999999999,98.1,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 79.7, 0.0, 18.4, 1.9, 0.0, 0.0, 0.0, 52.2, 47.8, 0.0 -5.5221238938053085,5,a-cure-i1,2019-20,11.7,33.900000000000006,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 5.9, 0.3, 25.1, 66.1, 0.0, 0.0, 2.6, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2019-20,3.6,20.599999999999994,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.9, 2.3, 5.0, 79.4, 0.0, 0.0, 12.4, 49.1, 50.5, 0.5 -1,1,a-cure-i1,2019-20,3.5,7.599999999999994,Hingham - East Elementary School,01310005, 1.9, 0.8, 2.9, 92.4, 0.0, 0.0, 2.1, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,1.0,10.400000000000006,Hingham - Hingham High,01310505, 1.2, 3.2, 3.5, 89.6, 0.0, 0.0, 2.6, 51.3, 48.7, 0.0 -8.904347826086957,5,a-cure-i1,2019-20,6.4,11.5,Hingham - Hingham Middle School,01310410, 1.5, 3.2, 3.2, 88.5, 0.0, 0.0, 3.6, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.900000000000006,Hingham - Plymouth River,01310019, 2.3, 2.3, 5.4, 87.1, 0.2, 0.0, 2.6, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,3.5,10.299999999999997,Hingham - South Elementary,01310020, 1.8, 3.3, 1.6, 89.7, 0.0, 0.0, 3.7, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.700000000000003,Hingham - Wm L Foster Elementary,01310010, 0.8, 1.4, 5.1, 87.3, 0.0, 0.0, 5.5, 55.6, 44.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,51.6,Holbrook - Holbrook Middle High School,01330505, 23.5, 6.0, 13.8, 48.4, 0.5, 0.0, 7.8, 49.4, 50.5, 0.2 -1,1,a-cure-i1,2019-20,0.0,47.0,Holbrook - John F Kennedy,01330018, 21.2, 4.1, 14.0, 53.0, 0.3, 0.0, 7.4, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.099999999999994,Holland - Holland Elementary,01350005, 1.3, 2.2, 6.9, 87.9, 0.0, 0.0, 1.7, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,1.8,15.799999999999997,Holliston - Holliston High,01360505, 1.1, 7.9, 4.4, 84.2, 0.6, 0.0, 1.8, 51.1, 48.9, 0.0 -5.35813953488372,5,a-cure-i1,2019-20,7.199999999999999,21.5,Holliston - Miller School,01360007, 1.3, 10.7, 5.1, 78.5, 0.4, 0.1, 3.8, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,2.1,18.5,Holliston - Placentino Elementary,01360010, 1.0, 9.6, 3.9, 81.5, 0.4, 0.1, 3.4, 54.1, 45.8, 0.1 -1,1,a-cure-i1,2019-20,2.4,17.200000000000003,Holliston - Robert H. Adams Middle School,01360305, 0.9, 6.5, 7.2, 82.8, 0.1, 0.1, 2.3, 50.7, 49.3, 0.0 -5.4472361809045236,5,a-cure-i1,2019-20,27.1,79.6,Holyoke - E N White Elementary,01370045, 2.3, 0.5, 74.8, 20.4, 0.0, 0.0, 2.1, 54.5, 45.5, 0.0 -1.056105610561056,1.06,a-cure-i1,2019-20,6.0,90.9,Holyoke - H.B. Lawrence School,01370070, 8.3, 0.8, 78.5, 9.1, 0.0, 0.0, 3.3, 47.9, 52.1, 0.0 -4.421052631578948,4.42,a-cure-i1,2019-20,23.1,83.6,Holyoke - Holyoke High,01370505, 2.2, 0.5, 79.6, 16.4, 0.1, 0.1, 1.1, 51.4, 48.5, 0.1 -1,1,a-cure-i1,2019-20,2.6,90.0,Holyoke - Holyoke STEM Academy,01370320, 5.9, 0.9, 81.9, 10.0, 0.0, 0.0, 1.4, 51.6, 48.4, 0.0 -10.689556509298999,5,a-cure-i1,2019-20,46.7,69.9,Holyoke - Joseph Metcalf School,01370003, 2.6, 0.0, 64.7, 30.1, 0.0, 0.0, 2.6, 44.5, 55.5, 0.0 -3.893660531697341,3.89,a-cure-i1,2019-20,23.799999999999997,97.8,Holyoke - Kelly Elementary,01370040, 2.0, 0.0, 94.8, 2.2, 0.0, 0.5, 0.5, 53.0, 47.0, 0.0 -2.914027149321267,2.91,a-cure-i1,2019-20,16.1,88.4,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.8, 1.2, 84.4, 11.6, 0.0, 0.0, 1.0, 52.8, 47.2, 0.0 -1.263157894736842,1.26,a-cure-i1,2019-20,5.4,68.4,Holyoke - Lt Elmer J McMahon Elementary,01370015, 3.4, 1.9, 61.1, 31.6, 0.0, 0.0, 1.9, 51.6, 48.4, 0.0 -2.8404494382022474,2.84,a-cure-i1,2019-20,15.8,89.0,Holyoke - Maurice A Donahue Elementary,01370060, 3.1, 0.4, 84.3, 11.0, 0.0, 0.2, 1.0, 55.4, 44.6, 0.0 -1.0543933054393306,1.05,a-cure-i1,2019-20,6.3,95.6,Holyoke - Morgan Full Service Community School,01370025, 4.1, 0.6, 88.1, 4.4, 0.0, 0.0, 2.8, 50.6, 49.4, 0.0 -10.346113989637306,5,a-cure-i1,2019-20,62.400000000000006,96.5,Holyoke - Veritas Prep Holyoke,01370075, 5.2, 0.9, 89.5, 3.5, 0.0, 0.0, 0.9, 59.0, 41.0, 0.0 -3.9701810436634717,3.97,a-cure-i1,2019-20,23.3,93.9,Holyoke - William R. Peck School,01370030, 3.8, 0.4, 89.3, 6.1, 0.0, 0.0, 0.4, 57.9, 42.1, 0.0 -3.119496855345912,3.12,a-cure-i1,2019-20,18.6,95.4,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.1, 0.7, 92.2, 4.6, 0.0, 0.0, 1.4, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.799999999999997,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 2.1, 1.3, 2.6, 91.2, 0.0, 0.0, 2.8, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.099999999999994,Hoosac Valley Regional - Hoosac Valley High School,06030505, 5.9, 1.5, 0.9, 90.9, 0.6, 0.0, 0.3, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.400000000000006,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 4.8, 1.1, 2.9, 89.6, 0.0, 0.0, 1.6, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.700000000000003,Hopedale - Hopedale Jr Sr High,01380505, 1.5, 2.6, 6.7, 87.3, 0.4, 0.2, 1.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.200000000000003,Hopedale - Memorial,01380010, 1.0, 1.2, 9.0, 83.8, 0.0, 0.2, 4.8, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.200000000000003,Hopedale - Park Street School,01380003, 0.0, 0.0, 6.4, 79.8, 0.0, 0.0, 13.8, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,3.1,35.0,Hopkinton - Elmwood,01390010, 0.5, 26.4, 3.9, 65.0, 0.2, 0.0, 3.9, 50.4, 49.6, 0.0 -3.230283911671924,3.23,a-cure-i1,2019-20,6.4,31.700000000000003,Hopkinton - Hopkins Elementary School,01390015, 0.3, 22.8, 3.1, 68.3, 0.5, 0.2, 4.7, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,3.6,19.799999999999997,Hopkinton - Hopkinton High,01390505, 1.1, 14.0, 2.3, 80.2, 0.4, 0.0, 2.0, 49.2, 50.8, 0.0 -3.2,3.2,a-cure-i1,2019-20,6.0,30.0,Hopkinton - Hopkinton Middle School,01390305, 1.0, 19.2, 5.1, 70.0, 0.2, 0.0, 4.3, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,37.5,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 26.3, 7.5, 62.5, 0.0, 0.0, 3.8, 62.5, 37.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,39.4,Hopkinton - Marathon Elementary School,01390005, 0.4, 28.1, 5.5, 60.6, 0.0, 0.0, 5.5, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.5,Hudson - C A Farley,01410030, 1.6, 2.6, 20.0, 73.5, 0.0, 0.0, 2.3, 50.7, 49.3, 0.0 -4.679245283018868,4.68,a-cure-i1,2019-20,6.2,21.200000000000003,Hudson - David J. Quinn Middle School,01410410, 2.7, 1.6, 13.9, 78.8, 0.0, 0.0, 2.9, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.599999999999994,Hudson - Forest Avenue Elementary,01410015, 1.4, 1.7, 13.9, 77.4, 0.6, 0.0, 5.0, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,3.9000000000000004,17.799999999999997,Hudson - Hudson High,01410505, 2.0, 1.4, 12.2, 82.2, 0.2, 0.1, 1.8, 45.5, 54.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.799999999999997,Hudson - Mulready Elementary,01410007, 2.3, 1.9, 13.9, 79.2, 0.0, 0.0, 2.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.599999999999994,Hull - Hull High,01420505, 1.8, 1.5, 1.8, 93.4, 0.0, 0.0, 1.5, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.700000000000003,Hull - Lillian M Jacobs,01420015, 2.0, 2.7, 3.7, 88.3, 0.2, 0.0, 3.0, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.5,Hull - Memorial Middle,01420305, 0.6, 0.6, 1.7, 95.5, 0.0, 0.0, 1.7, 50.8, 49.2, 0.0 -4.630225080385853,4.63,a-cure-i1,2019-20,9.0,31.099999999999994,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 6.6, 8.6, 10.0, 68.9, 0.1, 0.0, 5.6, 47.9, 52.0, 0.1 -1,1,a-cure-i1,2019-20,2.2,11.900000000000006,Ipswich - Ipswich High,01440505, 0.7, 1.5, 5.5, 88.1, 0.0, 0.0, 4.2, 47.3, 52.5, 0.2 -1,1,a-cure-i1,2019-20,3.0,13.299999999999997,Ipswich - Ipswich Middle School,01440305, 1.0, 2.0, 7.8, 86.7, 0.3, 0.0, 2.3, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.299999999999997,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 1.4, 6.0, 90.7, 0.0, 0.0, 1.9, 50.5, 49.5, 0.0 -5.446808510638299,5,a-cure-i1,2019-20,6.4,18.799999999999997,Ipswich - Winthrop,01440015, 1.4, 1.1, 10.6, 81.2, 0.0, 0.0, 5.7, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,4.5,11.799999999999997,King Philip - King Philip Middle School,06900510, 1.8, 3.5, 4.4, 88.2, 0.3, 0.0, 1.9, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,2.5,10.0,King Philip - King Philip Regional High,06900505, 2.1, 2.5, 2.6, 90.0, 0.1, 0.1, 2.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.599999999999994,Kingston - Kingston Elementary,01450005, 0.4, 0.9, 1.5, 95.4, 0.2, 0.0, 1.5, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.400000000000006,Kingston - Kingston Intermediate,01450020, 1.3, 0.5, 3.0, 94.6, 0.5, 0.0, 0.2, 51.7, 48.1, 0.2 -9.436308926780342,5,a-cure-i1,2019-20,58.800000000000004,99.7,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 67.0, 0.0, 31.2, 0.3, 0.3, 0.0, 1.2, 51.6, 48.4, 0.0 -5.305084745762712,5,a-cure-i1,2019-20,31.3,94.4,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 19.5, 3.1, 68.7, 5.6, 0.2, 0.1, 2.7, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,3.0,96.3,Lawrence - Alexander B Bruce,01490015, 1.0, 1.6, 93.5, 3.7, 0.0, 0.0, 0.2, 49.0, 50.8, 0.2 -0.924949290060852,1,a-cure-i1,2019-20,5.7,98.6,Lawrence - Arlington Middle School,01490017, 0.5, 0.0, 97.8, 1.4, 0.2, 0.0, 0.2, 50.8, 48.7, 0.5 -1,1,a-cure-i1,2019-20,0.0,97.5,Lawrence - Community Day Arlington,01490009, 0.8, 0.0, 96.5, 2.5, 0.0, 0.0, 0.2, 52.2, 46.6, 1.2 -1.3847758081334725,1.38,a-cure-i1,2019-20,8.3,95.9,Lawrence - Edward F. Parthum,01490053, 1.7, 0.3, 93.8, 4.1, 0.0, 0.0, 0.2, 53.6, 45.9, 0.5 -1,1,a-cure-i1,2019-20,2.4,95.7,Lawrence - Emily G Wetherbee,01490080, 0.8, 1.3, 93.2, 4.3, 0.0, 0.0, 0.5, 49.0, 50.9, 0.2 -1,1,a-cure-i1,2019-20,0.0,97.4,Lawrence - Francis M Leahy,01490040, 0.9, 0.0, 96.3, 2.6, 0.0, 0.0, 0.2, 51.1, 48.7, 0.2 -1.3859649122807018,1.39,a-cure-i1,2019-20,7.9,91.2,Lawrence - Frost Middle School,01490525, 1.9, 3.4, 84.5, 8.8, 0.0, 0.0, 1.5, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,3.4,98.1,Lawrence - Gerard A. Guilmette,01490022, 2.1, 0.8, 94.8, 1.9, 0.0, 0.0, 0.4, 52.8, 47.2, 0.0 -1.2622950819672132,1.26,a-cure-i1,2019-20,7.7,97.6,Lawrence - Guilmette Middle School,01490025, 1.8, 0.4, 95.0, 2.4, 0.0, 0.0, 0.4, 52.4, 47.6, 0.0 -1.2320162107396149,1.23,a-cure-i1,2019-20,7.6,98.7,Lawrence - High School Learning Center,01490536, 0.7, 0.7, 96.7, 1.3, 0.7, 0.0, 0.0, 56.7, 43.3, 0.0 -2.245614035087719,2.25,a-cure-i1,2019-20,13.6,96.9,Lawrence - James F Hennessey,01490020, 1.2, 0.9, 94.7, 3.1, 0.0, 0.0, 0.0, 53.6, 45.8, 0.6 -3.361344537815126,3.36,a-cure-i1,2019-20,20.0,95.2,Lawrence - John Breen School,01490003, 3.5, 2.9, 88.2, 4.8, 0.0, 0.0, 0.6, 50.0, 49.7, 0.3 -0.9662231320368475,1,a-cure-i1,2019-20,5.9,97.7,Lawrence - John K Tarbox,01490075, 0.3, 0.0, 97.0, 2.3, 0.0, 0.0, 0.3, 57.5, 42.2, 0.3 -4.069175991861648,4.07,a-cure-i1,2019-20,25.0,98.3,Lawrence - Lawlor Early Childhood Center,01490002, 0.6, 0.0, 97.7, 1.7, 0.0, 0.0, 0.0, 51.2, 48.8, 0.0 -1.1639344262295082,1.16,a-cure-i1,2019-20,7.1,97.6,Lawrence - Lawrence Family Public Academy,01490011, 0.6, 1.2, 95.8, 2.4, 0.0, 0.0, 0.0, 49.1, 50.3, 0.6 -3.588477366255144,3.59,a-cure-i1,2019-20,21.8,97.2,Lawrence - Lawrence High School,01490515, 1.1, 1.6, 94.3, 2.8, 0.0, 0.0, 0.2, 53.1, 46.2, 0.7 -1.31551901336074,1.32,a-cure-i1,2019-20,8.0,97.3,Lawrence - Oliver Partnership School,01490048, 0.4, 0.6, 96.3, 2.7, 0.0, 0.0, 0.0, 53.3, 46.5, 0.2 -1.1501057082452433,1.15,a-cure-i1,2019-20,6.8,94.6,Lawrence - Parthum Middle School,01490027, 0.5, 0.5, 93.1, 5.4, 0.0, 0.0, 0.5, 45.6, 54.0, 0.3 -1.796976241900648,1.8,a-cure-i1,2019-20,10.4,92.6,Lawrence - Robert Frost,01490018, 2.6, 3.1, 86.2, 7.4, 0.0, 0.0, 0.7, 49.9, 49.4, 0.7 -1,1,a-cure-i1,2019-20,0.0,94.7,Lawrence - Rollins Early Childhood Center,01490001, 1.0, 0.5, 93.3, 5.3, 0.0, 0.0, 0.0, 55.5, 44.5, 0.0 -3.8249158249158253,3.82,a-cure-i1,2019-20,21.3,89.1,Lawrence - School for Exceptional Studies,01490537, 1.6, 0.0, 86.7, 10.9, 0.0, 0.0, 0.8, 82.0, 18.0, 0.0 -2.055958549222798,2.06,a-cure-i1,2019-20,12.4,96.5,Lawrence - South Lawrence East Elementary School,01490004, 1.9, 2.0, 92.4, 3.5, 0.0, 0.0, 0.1, 53.6, 46.3, 0.1 -3.3979381443298973,3.4,a-cure-i1,2019-20,20.6,97.0,Lawrence - Spark Academy,01490085, 1.5, 1.7, 93.0, 3.0, 0.0, 0.0, 0.8, 53.4, 46.6, 0.0 -5.224489795918367,5,a-cure-i1,2019-20,32.0,98.0,Lawrence - UP Academy Leonard Middle School,01490090, 0.3, 0.3, 97.0, 2.0, 0.0, 0.0, 0.3, 51.5, 48.2, 0.3 -3.725128205128205,3.73,a-cure-i1,2019-20,22.7,97.5,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.3, 96.6, 2.5, 0.0, 0.0, 0.6, 51.2, 48.5, 0.3 -2.2626262626262625,2.26,a-cure-i1,2019-20,14.0,99.0,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.6, 0.1, 98.2, 1.0, 0.0, 0.0, 0.0, 44.5, 55.5, 0.0 -1,1,a-cure-i1,2019-20,2.9,15.299999999999997,Lee - Lee Elementary,01500025, 0.6, 3.3, 10.0, 84.7, 0.0, 0.0, 1.4, 53.3, 46.4, 0.3 -1,1,a-cure-i1,2019-20,2.8,16.099999999999994,Lee - Lee Middle/High School,01500505, 0.8, 2.5, 9.1, 83.9, 0.3, 0.0, 3.4, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.200000000000003,Leicester - Leicester Elementary,01510005, 6.5, 3.5, 10.0, 77.8, 0.0, 0.0, 2.2, 54.6, 45.4, 0.0 -4.923076923076924,4.92,a-cure-i1,2019-20,6.4,20.799999999999997,Leicester - Leicester High,01510505, 4.7, 2.5, 10.0, 79.2, 0.2, 0.2, 3.2, 50.1, 49.5, 0.4 -1,1,a-cure-i1,2019-20,0.0,15.0,Leicester - Leicester Integrated Preschool,01510001, 3.3, 1.7, 8.3, 85.0, 0.0, 0.0, 1.7, 45.0, 55.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.200000000000003,Leicester - Leicester Middle,01510015, 5.4, 3.0, 11.2, 76.8, 0.0, 0.0, 3.6, 56.0, 44.0, 0.0 -1,1,a-cure-i1,2019-20,2.3,17.200000000000003,Lenox - Lenox Memorial High,01520505, 0.7, 4.4, 8.9, 82.8, 0.0, 0.0, 3.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.099999999999994,Lenox - Morris,01520015, 0.3, 3.8, 8.8, 78.9, 0.0, 0.0, 8.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,50.4,Leominster - Bennett,01530003, 8.0, 1.8, 31.0, 49.6, 0.0, 0.0, 9.7, 52.2, 47.8, 0.0 -1.7777777777777777,1.78,a-cure-i1,2019-20,5.6,50.4,Leominster - Center For Technical Education Innovation,01530605, 8.4, 2.9, 35.2, 49.6, 0.0, 0.4, 3.5, 66.2, 33.8, 0.0 -2.0721868365180467,2.07,a-cure-i1,2019-20,6.1,47.1,Leominster - Fall Brook,01530007, 7.4, 2.2, 32.2, 52.9, 0.0, 0.0, 5.3, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,3.1,62.7,Leominster - Frances Drake School,01530010, 7.4, 4.1, 45.0, 37.3, 0.0, 0.0, 6.3, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2019-20,2.8,53.4,Leominster - Johnny Appleseed,01530025, 10.2, 3.4, 35.1, 46.6, 0.1, 0.0, 4.5, 49.8, 50.2, 0.0 -9.8159509202454,5,a-cure-i1,2019-20,20.0,32.599999999999994,Leominster - Leominster Center for Excellence,01530515, 2.3, 0.0, 27.9, 67.4, 0.0, 0.0, 2.3, 46.5, 51.2, 2.3 -1.8350100603621726,1.84,a-cure-i1,2019-20,5.699999999999999,49.7,Leominster - Leominster High School,01530505, 9.9, 3.5, 32.7, 50.3, 0.2, 0.0, 3.4, 42.0, 57.8, 0.2 -1,1,a-cure-i1,2019-20,0.0,40.5,Leominster - Lincoln School,01530005, 2.7, 5.4, 27.0, 59.5, 0.0, 0.0, 5.4, 64.9, 35.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,57.3,Leominster - Northwest,01530030, 5.4, 2.4, 43.2, 42.7, 0.0, 0.0, 6.3, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,63.5,Leominster - Priest Street,01530040, 8.7, 2.6, 46.1, 36.5, 0.0, 0.0, 6.1, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2019-20,2.6,51.8,Leominster - Samoset School,01530045, 6.4, 3.1, 39.8, 48.2, 0.4, 0.2, 1.9, 49.7, 49.9, 0.4 -1,1,a-cure-i1,2019-20,3.6,53.7,Leominster - Sky View Middle School,01530320, 9.8, 4.0, 36.0, 46.3, 0.1, 0.0, 3.7, 51.1, 48.9, 0.0 -9.552238805970145,5,a-cure-i1,2019-20,8.0,13.400000000000006,Leverett - Leverett Elementary,01540005, 0.0, 0.7, 4.2, 86.6, 0.0, 0.0, 8.5, 57.0, 43.0, 0.0 -8.045368620037808,5,a-cure-i1,2019-20,26.6,52.9,Lexington - Bowman,01550008, 4.5, 34.3, 4.9, 47.1, 0.0, 0.0, 9.2, 50.3, 49.7, 0.0 -1.8013245033112584,1.8,a-cure-i1,2019-20,6.8,60.4,Lexington - Bridge,01550006, 5.5, 42.3, 6.7, 39.6, 0.2, 0.0, 5.7, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,47.0,Lexington - Fiske,01550015, 2.9, 32.6, 4.0, 53.0, 0.0, 0.0, 7.5, 55.9, 44.1, 0.0 -3.3113553113553116,3.31,a-cure-i1,2019-20,11.3,54.6,Lexington - Harrington,01550030, 5.1, 38.0, 3.6, 45.4, 0.2, 0.0, 7.6, 50.7, 49.3, 0.0 -3.8550724637681157,3.86,a-cure-i1,2019-20,13.3,55.2,Lexington - Jonas Clarke Middle,01550305, 4.2, 41.4, 4.4, 44.8, 0.1, 0.1, 5.0, 51.1, 48.8, 0.1 -1,1,a-cure-i1,2019-20,0.2,63.6,Lexington - Joseph Estabrook,01550010, 3.3, 44.9, 5.4, 36.4, 0.0, 0.0, 9.9, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,54.4,Lexington - Lexington Children's Place,01550001, 1.5, 38.2, 8.8, 45.6, 1.5, 0.0, 4.4, 67.6, 32.4, 0.0 -3.1053604436229203,3.11,a-cure-i1,2019-20,10.5,54.1,Lexington - Lexington High,01550505, 3.4, 41.0, 3.9, 45.9, 0.1, 0.0, 5.7, 50.4, 49.5, 0.1 -5.844155844155844,5,a-cure-i1,2019-20,22.5,61.6,Lexington - Maria Hastings,01550035, 1.8, 46.9, 4.3, 38.4, 0.0, 0.0, 8.5, 52.6, 47.4, 0.0 -3.3084745762711862,3.31,a-cure-i1,2019-20,12.2,59.0,Lexington - Wm Diamond Middle,01550310, 3.9, 42.4, 3.7, 41.0, 0.0, 0.0, 9.1, 47.7, 52.3, 0.0 -3.995955510616785,4.0,a-cure-i1,2019-20,24.700000000000003,98.9,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 15.0, 0.7, 81.3, 1.1, 0.0, 0.4, 1.5, 51.3, 48.7, 0.0 -3.121076233183856,3.12,a-cure-i1,2019-20,8.7,44.6,Lincoln - Hanscom Middle,01570305, 8.1, 1.6, 23.3, 55.4, 0.0, 1.6, 10.1, 47.3, 52.7, 0.0 -2.238341968911917,2.24,a-cure-i1,2019-20,5.4,38.6,Lincoln - Hanscom Primary,01570006, 7.1, 1.0, 19.3, 61.4, 0.0, 1.0, 10.3, 48.2, 51.8, 0.0 -3.00507614213198,3.01,a-cure-i1,2019-20,7.4,39.4,Lincoln - Lincoln School,01570025, 10.8, 6.8, 9.9, 60.6, 0.2, 0.0, 11.7, 49.5, 50.5, 0.0 -5.308411214953271,5,a-cure-i1,2019-20,7.100000000000001,21.400000000000006,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 5.1, 5.2, 4.8, 78.6, 0.1, 0.0, 6.3, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,3.7,16.400000000000006,Littleton - Littleton High School,01580505, 0.2, 8.4, 3.2, 83.6, 0.5, 0.0, 4.1, 44.1, 55.7, 0.2 -1,1,a-cure-i1,2019-20,0.0,17.200000000000003,Littleton - Littleton Middle School,01580305, 2.3, 8.5, 3.3, 82.8, 0.0, 0.0, 3.1, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.299999999999997,Littleton - Russell St Elementary,01580015, 1.3, 12.1, 2.6, 81.7, 0.3, 0.3, 1.8, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,4.0,15.700000000000003,Littleton - Shaker Lane Elementary,01580005, 0.2, 12.8, 1.3, 84.3, 0.0, 0.4, 0.9, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.599999999999994,Longmeadow - Blueberry Hill,01590005, 1.5, 16.6, 3.8, 72.4, 0.0, 0.0, 5.8, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.5,Longmeadow - Center,01590010, 2.1, 3.5, 6.6, 83.5, 0.0, 0.0, 4.3, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.900000000000006,Longmeadow - Glenbrook Middle,01590017, 3.0, 14.5, 7.3, 72.1, 0.0, 0.3, 2.7, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,3.2,19.400000000000006,Longmeadow - Longmeadow High,01590505, 2.4, 10.1, 3.6, 80.6, 0.1, 0.1, 3.1, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,4.6,21.5,Longmeadow - Williams Middle,01590305, 0.6, 9.6, 5.4, 78.5, 0.0, 0.6, 5.4, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.700000000000003,Longmeadow - Wolf Swamp Road,01590025, 3.5, 9.5, 5.7, 74.3, 0.0, 0.0, 7.0, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,3.8,86.0,Lowell - Abraham Lincoln,01600020, 2.8, 46.7, 32.0, 14.0, 0.0, 0.0, 4.5, 53.5, 46.5, 0.0 -1.419867549668874,1.42,a-cure-i1,2019-20,6.699999999999999,75.5,Lowell - B.F. Butler Middle School,01600310, 7.0, 29.4, 33.1, 24.5, 0.0, 0.0, 6.0, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,4.6,84.6,Lowell - Bartlett Community Partnership,01600090, 8.6, 39.3, 34.0, 15.4, 0.0, 0.0, 2.7, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,72.5,Lowell - Cardinal O'Connell Early Learning Center,01600001, 4.6, 23.9, 39.4, 27.5, 0.0, 0.0, 4.6, 65.1, 34.9, 0.0 -1,1,a-cure-i1,2019-20,3.8,82.5,Lowell - Charles W Morey,01600030, 5.0, 61.8, 11.0, 17.5, 0.0, 0.0, 4.6, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,87.2,Lowell - Charlotte M Murkland Elementary,01600080, 6.3, 40.0, 38.3, 12.8, 0.0, 0.0, 2.5, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,71.2,Lowell - Dr An Wang School,01600345, 8.3, 17.2, 40.4, 28.8, 0.0, 0.0, 5.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,73.4,Lowell - Dr Gertrude Bailey,01600002, 5.3, 42.3, 21.7, 26.6, 0.0, 0.0, 4.1, 53.8, 46.2, 0.0 -2.1443298969072164,2.14,a-cure-i1,2019-20,9.1,67.9,Lowell - Dr. Janice Adie Day School,01600605, 17.0, 18.9, 28.3, 32.1, 0.0, 0.0, 3.8, 75.5, 24.5, 0.0 -1.540106951871658,1.54,a-cure-i1,2019-20,7.2,74.8,Lowell - Greenhalge,01600015, 11.6, 11.0, 48.2, 25.2, 0.0, 0.0, 4.0, 52.6, 47.4, 0.0 -4.178477690288713,4.18,a-cure-i1,2019-20,19.9,76.2,Lowell - Henry J Robinson Middle,01600330, 8.7, 15.1, 49.9, 23.8, 0.0, 0.0, 2.5, 49.3, 50.7, 0.0 -1.8655692729766802,1.87,a-cure-i1,2019-20,8.5,72.9,Lowell - James S Daley Middle School,01600315, 3.9, 45.8, 18.5, 27.1, 0.0, 0.0, 4.7, 54.5, 45.5, 0.0 -1.7699115044247788,1.77,a-cure-i1,2019-20,7.5,67.8,Lowell - James Sullivan Middle School,01600340, 6.5, 13.2, 42.8, 32.2, 0.0, 0.0, 5.3, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,76.9,Lowell - John J Shaughnessy,01600050, 5.2, 30.8, 38.3, 23.1, 0.0, 0.0, 2.7, 52.6, 47.4, 0.0 -1.514066496163683,1.51,a-cure-i1,2019-20,7.4,78.2,Lowell - Joseph McAvinnue,01600010, 7.6, 16.9, 49.8, 21.8, 0.0, 0.0, 3.8, 52.5, 47.5, 0.0 -1.9771167048054916,1.98,a-cure-i1,2019-20,10.799999999999999,87.4,Lowell - Kathryn P. Stoklosa Middle School,01600360, 4.5, 47.4, 31.7, 12.6, 0.0, 0.0, 3.8, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,66.7,Lowell - Laura Lee Therapeutic Day School,01600085, 9.5, 0.0, 47.6, 33.3, 0.0, 0.0, 9.5, 90.5, 9.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,69.7,Lowell - Leblanc Therapeutic Day School,01600320, 3.0, 6.1, 51.5, 30.3, 0.0, 0.0, 9.1, 66.7, 33.3, 0.0 -2.4884038199181444,2.49,a-cure-i1,2019-20,11.399999999999999,73.3,Lowell - Lowell High,01600505, 12.0, 30.6, 27.5, 26.7, 0.0, 0.0, 3.2, 49.7, 50.3, 0.0 -3.851851851851851,3.85,a-cure-i1,2019-20,16.9,70.2,Lowell - Moody Elementary,01600027, 7.6, 16.9, 44.4, 29.8, 0.0, 0.0, 1.3, 44.4, 55.6, 0.0 -1,1,a-cure-i1,2019-20,4.2,63.2,Lowell - Pawtucketville Memorial,01600036, 9.8, 22.9, 25.8, 36.8, 0.0, 0.0, 4.7, 50.9, 49.1, 0.0 -3.3893129770992365,3.39,a-cure-i1,2019-20,11.1,52.4,Lowell - Peter W Reilly,01600040, 1.5, 8.5, 38.1, 47.6, 0.0, 0.2, 4.2, 47.8, 52.2, 0.0 -1.6156351791530943,1.62,a-cure-i1,2019-20,6.199999999999999,61.4,Lowell - Pyne Arts,01600018, 6.7, 12.5, 38.2, 38.6, 0.0, 0.0, 4.0, 54.9, 45.1, 0.0 -1.2493702770780855,1.25,a-cure-i1,2019-20,6.199999999999999,79.4,Lowell - Rogers STEM Academy,01600005, 11.2, 22.5, 42.1, 20.6, 0.0, 0.0, 3.6, 52.4, 47.6, 0.0 -2.738095238095238,2.74,a-cure-i1,2019-20,11.5,67.2,Lowell - S Christa McAuliffe Elementary,01600075, 6.1, 9.0, 49.7, 32.8, 0.0, 0.0, 2.4, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,78.0,Lowell - The Career Academy,01600515, 7.7, 16.5, 50.5, 22.0, 0.0, 0.0, 3.3, 69.2, 30.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,81.0,Lowell - Washington,01600055, 6.8, 42.6, 24.1, 19.0, 0.0, 0.0, 7.6, 59.5, 40.5, 0.0 -3.0788643533123023,3.08,a-cure-i1,2019-20,18.299999999999997,95.1,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 25.6, 19.0, 46.4, 4.9, 0.0, 0.0, 4.1, 49.7, 50.2, 0.1 -7.343108504398827,5,a-cure-i1,2019-20,31.3,68.2,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 3.5, 17.6, 36.5, 31.8, 0.0, 0.0, 10.6, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.700000000000003,Ludlow - Chapin Street Elementary School,01610020, 1.5, 0.3, 14.1, 81.3, 0.0, 0.0, 2.8, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.5,Ludlow - East Street Elementary School,01610010, 1.8, 2.0, 14.1, 78.5, 0.0, 0.0, 3.5, 52.3, 47.7, 0.0 -7.164179104477609,5,a-cure-i1,2019-20,6.0,13.400000000000006,Ludlow - Ludlow Senior High,01610505, 2.2, 0.7, 7.1, 86.6, 0.2, 0.0, 3.1, 48.5, 51.3, 0.2 -1,1,a-cure-i1,2019-20,0.0,17.599999999999994,Ludlow - Paul R Baird Middle,01610305, 2.0, 0.2, 12.3, 82.4, 0.7, 0.0, 2.6, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,2.1,21.400000000000006,Ludlow - Veterans Park Elementary,01610023, 1.8, 1.2, 14.3, 78.6, 0.3, 0.0, 3.9, 44.9, 55.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,0.0,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 16.7, 83.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.299999999999997,Lunenburg - Lunenburg High,01620505, 2.2, 1.8, 6.4, 86.7, 0.9, 0.4, 1.5, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.0,Lunenburg - Lunenburg Middle School,01620305, 1.5, 1.2, 7.6, 86.0, 0.5, 0.5, 2.7, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.299999999999997,Lunenburg - Lunenburg Primary School,01620010, 2.9, 1.4, 9.8, 83.7, 0.0, 0.2, 1.9, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.5,Lunenburg - Turkey Hill Elementary School,01620025, 1.9, 3.1, 8.9, 82.5, 0.0, 0.3, 3.3, 49.4, 50.6, 0.0 -1.8669574700109048,1.87,a-cure-i1,2019-20,10.7,91.7,Lynn - A Drewicz Elementary,01630016, 5.1, 14.0, 69.6, 8.3, 0.4, 0.0, 2.6, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,0.8,72.2,Lynn - Aborn,01630011, 10.9, 11.3, 39.5, 27.8, 1.2, 0.0, 9.3, 49.6, 50.4, 0.0 -2.207505518763797,2.21,a-cure-i1,2019-20,12.5,90.6,Lynn - Breed Middle School,01630405, 8.9, 9.3, 69.2, 9.4, 0.1, 0.0, 3.1, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.5,86.9,Lynn - Brickett Elementary,01630020, 8.0, 10.1, 63.8, 13.1, 0.6, 0.0, 4.5, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,57.3,Lynn - Capt William G Shoemaker,01630090, 12.2, 6.6, 31.3, 42.7, 0.0, 0.0, 7.2, 63.0, 37.0, 0.0 -2.761321909424725,2.76,a-cure-i1,2019-20,14.100000000000001,81.7,Lynn - Classical High,01630505, 8.2, 9.4, 61.0, 18.3, 0.4, 0.0, 2.6, 52.6, 47.4, 0.0 -2.509803921568627,2.51,a-cure-i1,2019-20,15.2,96.9,Lynn - Cobbet Elementary,01630035, 6.9, 3.4, 85.1, 3.1, 0.0, 0.0, 1.5, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2019-20,0.2,89.2,Lynn - E J Harrington,01630045, 8.7, 6.8, 70.8, 10.8, 0.0, 0.0, 2.9, 52.4, 47.6, 0.0 -1.7650429799426934,1.77,a-cure-i1,2019-20,7.7,69.8,Lynn - Edward A Sisson,01630095, 6.2, 10.2, 45.8, 30.2, 1.8, 0.0, 5.8, 50.0, 50.0, 0.0 -2.547908232118759,2.55,a-cure-i1,2019-20,11.8,74.1,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 11.2, 5.2, 51.7, 25.9, 0.0, 0.0, 6.0, 64.7, 35.3, 0.0 -1.3080568720379147,1.31,a-cure-i1,2019-20,6.9,84.4,Lynn - Hood,01630055, 6.3, 9.3, 66.4, 15.6, 0.0, 0.0, 2.5, 52.0, 48.0, 0.0 -1.6824034334763946,1.68,a-cure-i1,2019-20,9.799999999999999,93.2,Lynn - Ingalls,01630060, 7.9, 6.6, 74.6, 6.8, 0.4, 0.1, 3.5, 51.0, 49.0, 0.0 -1.4316807738814994,1.43,a-cure-i1,2019-20,7.4,82.7,Lynn - Julia F Callahan,01630030, 12.7, 7.5, 56.9, 17.3, 0.0, 0.0, 5.6, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,80.0,Lynn - Lincoln-Thomson,01630070, 5.8, 9.8, 59.1, 20.0, 0.0, 0.0, 5.3, 52.9, 47.1, 0.0 -2.6486486486486487,2.65,a-cure-i1,2019-20,14.7,88.8,Lynn - Lynn English High,01630510, 9.5, 8.8, 67.8, 11.2, 0.4, 0.0, 2.3, 52.5, 47.5, 0.1 -2.0861466821885912,2.09,a-cure-i1,2019-20,11.2,85.9,Lynn - Lynn Vocational Technical Institute,01630605, 7.2, 5.2, 69.9, 14.1, 0.3, 0.0, 3.4, 56.9, 43.1, 0.1 -3.0039525691699605,3.0,a-cure-i1,2019-20,9.5,50.6,Lynn - Lynn Woods,01630075, 4.4, 5.0, 32.2, 49.4, 1.1, 0.0, 7.8, 45.6, 54.4, 0.0 -2.063768115942029,2.06,a-cure-i1,2019-20,8.9,69.0,Lynn - Pickering Middle,01630420, 6.9, 8.9, 47.3, 31.0, 0.8, 0.0, 5.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.3,94.2,Lynn - Robert L Ford,01630050, 8.2, 7.0, 76.1, 5.8, 0.2, 0.0, 2.6, 50.5, 49.5, 0.0 -1.1681877444589308,1.17,a-cure-i1,2019-20,5.6,76.7,Lynn - Sewell-Anderson,01630085, 9.1, 6.5, 57.0, 23.3, 0.3, 0.0, 3.9, 53.1, 46.9, 0.0 -1.6052344601962925,1.61,a-cure-i1,2019-20,9.200000000000001,91.7,Lynn - Thurgood Marshall Mid,01630305, 10.2, 6.3, 72.6, 8.3, 0.1, 0.0, 2.6, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,93.6,Lynn - Tracy,01630100, 9.7, 5.2, 74.8, 6.4, 0.2, 0.0, 3.6, 49.9, 50.1, 0.0 -1.2840549102428722,1.28,a-cure-i1,2019-20,7.6,94.7,Lynn - Washington Elementary School,01630005, 12.5, 6.0, 74.4, 5.3, 0.0, 0.0, 1.8, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,81.8,Lynn - William R Fallon,01630080, 12.1, 3.0, 63.6, 18.2, 0.0, 0.0, 3.0, 87.9, 12.1, 0.0 -1,1,a-cure-i1,2019-20,2.8,93.3,Lynn - Wm P Connery,01630040, 6.2, 10.0, 75.0, 6.7, 0.0, 0.0, 2.2, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.799999999999997,Lynnfield - Huckleberry Hill,01640010, 2.8, 8.9, 6.5, 76.2, 0.0, 0.0, 5.6, 45.0, 55.0, 0.0 -1,1,a-cure-i1,2019-20,2.2,13.700000000000003,Lynnfield - Lynnfield High,01640505, 2.6, 4.6, 4.6, 86.3, 0.0, 0.0, 1.8, 47.6, 52.2, 0.2 -1,1,a-cure-i1,2019-20,0.0,16.599999999999994,Lynnfield - Lynnfield Middle School,01640405, 1.3, 7.1, 6.0, 83.4, 0.0, 0.0, 2.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.0,Lynnfield - Lynnfield Preschool,01640005, 2.5, 7.5, 7.5, 75.0, 0.0, 0.0, 7.5, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.200000000000003,Lynnfield - Summer Street,01640020, 1.2, 5.4, 5.1, 85.8, 0.0, 0.0, 2.5, 52.7, 47.3, 0.0 -4.2683706070287535,4.27,a-cure-i1,2019-20,16.7,62.6,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 3.0, 53.5, 1.0, 37.4, 0.0, 0.0, 5.1, 49.5, 49.5, 1.0 -1,1,a-cure-i1,2019-20,2.4,69.7,Malden - Beebe,01650003, 14.1, 36.1, 14.8, 30.3, 0.0, 0.1, 4.5, 51.4, 48.6, 0.0 -1.25,1.25,a-cure-i1,2019-20,6.0,76.8,Malden - Ferryway,01650013, 18.6, 18.3, 34.3, 23.2, 0.1, 0.0, 5.5, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,3.6,58.9,Malden - Forestdale,01650027, 17.4, 10.9, 23.2, 41.1, 0.0, 0.2, 7.2, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,4.0,67.2,Malden - Linden,01650047, 20.0, 24.6, 17.3, 32.8, 0.2, 0.0, 5.0, 52.7, 47.2, 0.1 -1,1,a-cure-i1,2019-20,0.0,64.2,Malden - Malden Early Learning Center,01650049, 10.9, 38.8, 9.7, 35.8, 0.0, 0.0, 4.8, 59.1, 40.9, 0.0 -3.195795006570303,3.2,a-cure-i1,2019-20,15.200000000000001,76.1,Malden - Malden High,01650505, 21.9, 23.5, 27.9, 23.9, 0.3, 0.0, 2.6, 50.7, 49.2, 0.1 -4.000000000000001,4.0,a-cure-i1,2019-20,19.200000000000003,76.8,Malden - Salemwood,01650057, 20.3, 15.4, 38.4, 23.2, 0.0, 0.0, 2.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.599999999999994,Manchester Essex Regional - Essex Elementary,06980020, 0.5, 0.0, 4.1, 95.4, 0.0, 0.0, 0.0, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2019-20,2.7,3.5,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.4, 1.4, 96.5, 0.0, 0.0, 0.6, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,2.5,2.799999999999997,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.8, 0.8, 97.2, 0.0, 0.0, 1.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,3.9000000000000057,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 1.6, 0.3, 1.0, 96.1, 0.0, 0.0, 1.0, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.299999999999997,Mansfield - Everett W Robinson,01670007, 4.3, 7.2, 4.2, 78.7, 0.1, 0.0, 5.4, 52.2, 47.6, 0.1 -1,1,a-cure-i1,2019-20,1.5,19.599999999999994,Mansfield - Harold L Qualters Middle,01670035, 3.8, 7.0, 6.3, 80.4, 0.1, 0.0, 2.3, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,2.4,24.200000000000003,Mansfield - Jordan/Jackson Elementary,01670014, 5.0, 8.6, 5.5, 75.8, 0.0, 0.0, 5.1, 53.6, 46.4, 0.0 -5.680473372781063,5,a-cure-i1,2019-20,6.0,16.900000000000006,Mansfield - Mansfield High,01670505, 3.6, 5.6, 4.0, 83.1, 0.0, 0.0, 3.8, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.599999999999994,Mansfield - Roland Green School,01670003, 1.8, 8.1, 7.2, 78.4, 0.0, 0.0, 4.5, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.900000000000006,Map Academy Charter School (District) - Map Academy Charter School,35170505, 6.2, 0.6, 19.3, 67.1, 0.0, 0.6, 6.2, 63.4, 36.6, 0.0 -9.048275862068964,5,a-cure-i1,2019-20,8.2,14.5,Marblehead - Dr. Samuel C. Eveleth,01680025, 1.2, 0.0, 8.4, 85.5, 0.0, 0.0, 4.8, 45.8, 54.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.200000000000003,Marblehead - Glover,01680020, 2.1, 0.8, 3.6, 89.8, 0.0, 0.0, 3.6, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.5,14.599999999999994,Marblehead - L H Coffin,01680010, 2.2, 1.3, 7.1, 85.4, 0.0, 0.0, 4.0, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,4.8,12.599999999999994,Marblehead - Marblehead High,01680505, 2.9, 1.7, 5.7, 87.4, 0.0, 0.0, 2.3, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,2.5,13.700000000000003,Marblehead - Marblehead Veterans Middle School,01680300, 3.3, 0.8, 6.6, 86.3, 0.4, 0.0, 2.7, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,1.6,17.400000000000006,Marblehead - Village School,01680016, 3.1, 1.4, 8.3, 82.6, 0.0, 0.0, 4.6, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.599999999999994,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 5.9, 2.9, 6.3, 82.4, 0.0, 0.0, 2.4, 54.6, 44.9, 0.5 -1,1,a-cure-i1,2019-20,0.0,15.5,Marion - Sippican,01690005, 3.9, 0.7, 3.9, 84.5, 0.0, 0.0, 6.9, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,3.5,63.3,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 3.0, 2.2, 54.6, 36.7, 0.1, 0.0, 3.4, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,2.0,56.5,Marlborough - Charles Jaworek School,01700030, 3.5, 7.2, 43.5, 43.5, 0.2, 0.1, 2.0, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,55.4,Marlborough - Early Childhood Center,01700006, 8.6, 9.7, 34.3, 44.6, 0.0, 0.6, 2.3, 57.1, 42.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,54.9,Marlborough - Francis J Kane,01700008, 3.2, 2.8, 47.9, 45.1, 0.0, 0.0, 1.1, 52.8, 47.2, 0.0 -1.2820512820512822,1.28,a-cure-i1,2019-20,5.0,62.4,Marlborough - Marlborough High,01700505, 3.1, 1.9, 55.3, 37.6, 0.1, 0.0, 1.9, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,2.5,69.4,Marlborough - Richer,01700025, 3.5, 3.5, 58.9, 30.6, 0.0, 0.0, 3.4, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.700000000000003,Marshfield - Daniel Webster,01710015, 2.2, 2.4, 3.2, 90.3, 0.5, 0.8, 0.5, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,1.2999999999999972,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.4, 98.7, 0.0, 0.0, 0.9, 57.6, 42.4, 0.0 -1,1,a-cure-i1,2019-20,1.6,7.599999999999994,Marshfield - Furnace Brook Middle,01710310, 0.6, 1.2, 3.3, 92.4, 0.2, 0.1, 2.2, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.299999999999997,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.3, 3.2, 94.7, 0.0, 0.0, 1.9, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,1.0,6.099999999999994,Marshfield - Marshfield High,01710505, 0.4, 1.4, 3.2, 93.9, 0.0, 0.1, 1.1, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,3.8,9.200000000000003,Marshfield - Martinson Elementary,01710025, 0.2, 1.5, 4.1, 90.8, 0.0, 0.0, 3.4, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.799999999999997,Marshfield - South River,01710010, 0.3, 0.3, 3.6, 92.2, 0.0, 0.0, 3.6, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,3.3,32.099999999999994,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 4.5, 1.2, 19.4, 67.9, 1.9, 0.3, 4.8, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,4.5,22.700000000000003,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 1.7, 0.6, 9.9, 77.3, 1.7, 0.0, 8.7, 44.8, 55.2, 0.0 -3.0825688073394493,3.08,a-cure-i1,2019-20,18.9,98.1,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 30.3, 0.8, 64.4, 1.9, 0.0, 0.0, 2.5, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,1.4,9.400000000000006,Masconomet - Masconomet Regional High School,07050505, 0.3, 4.1, 2.6, 90.6, 0.1, 0.2, 2.1, 46.9, 53.1, 0.0 -23.76470588235295,5,a-cure-i1,2019-20,10.1,6.799999999999997,Masconomet - Masconomet Regional Middle School,07050405, 0.3, 2.9, 2.4, 93.2, 0.0, 0.0, 1.0, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.5,Mashpee - Kenneth Coombs School,01720005, 2.8, 1.5, 8.4, 71.5, 3.1, 0.3, 12.5, 57.3, 42.7, 0.0 -1,1,a-cure-i1,2019-20,2.7,24.0,Mashpee - Mashpee High,01720505, 5.5, 3.1, 4.2, 76.0, 5.7, 0.2, 5.3, 50.2, 49.8, 0.0 -4.672,4.67,a-cure-i1,2019-20,7.3,25.0,Mashpee - Mashpee Middle School,01720020, 3.9, 3.1, 3.5, 75.0, 5.5, 0.0, 9.0, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.0,Mashpee - Quashnet School,01720035, 4.6, 1.5, 6.1, 72.0, 7.2, 0.0, 8.7, 48.7, 51.3, 0.0 -5.105691056910569,5,a-cure-i1,2019-20,31.4,98.4,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 48.1, 0.5, 46.9, 1.6, 0.4, 0.2, 2.2, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.200000000000003,Mattapoisett - Center,01730005, 0.0, 0.8, 4.0, 88.8, 0.0, 0.0, 6.4, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.400000000000006,Mattapoisett - Old Hammondtown,01730010, 1.0, 1.6, 4.2, 89.6, 0.0, 0.0, 3.6, 54.2, 45.8, 0.0 -9.525581395348837,5,a-cure-i1,2019-20,12.8,21.5,Maynard - Fowler School,01740305, 2.4, 1.5, 12.4, 78.5, 0.2, 0.0, 4.9, 49.1, 50.6, 0.2 -12.16,5,a-cure-i1,2019-20,17.1,22.5,Maynard - Green Meadow,01740010, 1.5, 1.5, 14.5, 77.5, 0.0, 0.0, 5.0, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,4.2,19.900000000000006,Maynard - Maynard High,01740505, 2.4, 3.3, 11.3, 80.1, 0.3, 0.0, 2.7, 51.0, 48.7, 0.3 -1,1,a-cure-i1,2019-20,3.8,14.599999999999994,Medfield - Dale Street,01750005, 1.8, 4.8, 4.5, 85.4, 0.8, 0.0, 2.8, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2019-20,3.6,12.099999999999994,Medfield - Medfield Senior High,01750505, 1.0, 5.5, 2.4, 87.9, 0.1, 0.0, 3.1, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,1.4,10.299999999999997,Medfield - Memorial School,01750003, 1.8, 2.8, 2.3, 89.7, 0.2, 0.0, 3.2, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,1.4,12.599999999999994,Medfield - Ralph Wheelock School,01750007, 1.3, 2.8, 4.1, 87.4, 0.0, 0.0, 4.4, 50.0, 50.0, 0.0 -6.937062937062938,5,a-cure-i1,2019-20,6.2,14.299999999999997,Medfield - Thomas Blake Middle,01750305, 0.7, 3.7, 5.0, 85.7, 0.3, 0.0, 4.5, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.099999999999994,Medford - Brooks School,01760130, 6.8, 4.5, 9.0, 73.9, 0.6, 0.0, 5.3, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,46.2,Medford - Christopher Columbus,01760140, 12.7, 7.2, 20.2, 53.8, 0.5, 0.0, 5.6, 55.4, 44.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,42.9,Medford - Curtis-Tufts,01760510, 21.4, 0.0, 7.1, 57.1, 0.0, 0.0, 14.3, 71.4, 28.6, 0.0 -2.1474480151228734,2.15,a-cure-i1,2019-20,7.1,52.9,Medford - John J McGlynn Elementary School,01760068, 15.1, 15.1, 14.9, 47.1, 1.0, 0.2, 6.6, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2019-20,4.300000000000001,51.5,Medford - John J. McGlynn Middle School,01760320, 19.6, 10.1, 17.0, 48.5, 0.4, 0.2, 4.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,2.9,31.900000000000006,Medford - Madeleine Dugger Andrews,01760315, 7.9, 7.9, 9.2, 68.1, 0.4, 0.0, 6.4, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2019-20,3.4,41.4,Medford - Medford High,01760505, 14.0, 10.7, 12.7, 58.6, 0.1, 0.1, 3.9, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,37.8,Medford - Milton Fuller Roberts,01760150, 9.5, 10.8, 11.5, 62.2, 1.2, 0.0, 4.8, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.5,Medway - Burke/Memorial Elementary School,01770015, 2.5, 1.7, 3.8, 89.5, 0.2, 0.2, 2.1, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.900000000000006,Medway - John D Mc Govern Elementary,01770013, 1.5, 2.1, 7.2, 87.1, 0.3, 0.0, 1.8, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,4.1,10.700000000000003,Medway - Medway High,01770505, 1.0, 4.0, 4.1, 89.3, 0.3, 0.0, 1.3, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,4.4,13.599999999999994,Medway - Medway Middle,01770305, 1.8, 2.9, 6.0, 86.4, 0.1, 0.3, 2.5, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.700000000000003,Melrose - Early Childhood Center,01780003, 3.6, 7.4, 3.9, 79.3, 0.0, 0.0, 5.8, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.200000000000003,Melrose - Herbert Clark Hoover,01780017, 5.3, 8.2, 7.2, 75.8, 0.0, 0.0, 3.5, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.599999999999994,Melrose - Horace Mann,01780025, 1.4, 0.7, 2.5, 89.4, 0.0, 0.0, 6.0, 45.4, 54.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,39.6,Melrose - Lincoln,01780020, 7.7, 15.0, 8.5, 60.4, 0.0, 0.0, 8.5, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2019-20,4.2,19.900000000000006,Melrose - Melrose High,01780505, 6.1, 5.5, 4.2, 80.1, 0.0, 0.0, 4.2, 47.5, 52.5, 0.0 -4.343891402714934,4.34,a-cure-i1,2019-20,6.0,22.099999999999994,Melrose - Melrose Middle,01780305, 7.6, 5.0, 5.6, 77.9, 0.0, 0.0, 3.9, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.799999999999997,Melrose - Roosevelt,01780035, 6.0, 5.3, 4.6, 78.2, 0.0, 0.0, 5.8, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.599999999999994,Melrose - Winthrop,01780050, 1.9, 4.3, 3.6, 83.4, 0.0, 0.0, 6.7, 51.7, 48.3, 0.0 -55.17241379310334,5,a-cure-i1,2019-20,10.0,2.9000000000000057,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 2.1, 97.1, 0.0, 0.0, 0.8, 46.6, 53.4, 0.0 -21.565217391304355,5,a-cure-i1,2019-20,18.6,13.799999999999997,Mendon-Upton - Memorial School,07100001, 0.8, 4.2, 5.1, 86.2, 0.0, 0.0, 3.6, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,2.9,11.700000000000003,Mendon-Upton - Miscoe Hill School,07100015, 0.3, 2.5, 5.5, 88.3, 0.0, 0.0, 3.4, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2019-20,2.7,10.599999999999994,Mendon-Upton - Nipmuc Regional High,07100510, 1.2, 2.2, 4.4, 89.4, 0.3, 0.0, 2.5, 46.2, 53.8, 0.0 -1,1,a-cure-i1,2019-20,0.5,51.0,Methuen - Comprehensive Grammar School,01810050, 4.4, 4.2, 38.7, 49.0, 0.0, 0.0, 3.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,60.5,Methuen - Donald P Timony Grammar,01810060, 4.2, 3.6, 48.4, 39.5, 0.2, 0.1, 4.1, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2019-20,1.4,42.8,Methuen - Marsh Grammar School,01810030, 2.1, 3.2, 33.6, 57.2, 0.0, 0.1, 3.8, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2019-20,2.9,51.6,Methuen - Methuen High,01810505, 1.8, 4.5, 40.4, 48.4, 0.1, 0.1, 4.7, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.2,67.0,Methuen - Tenney Grammar School,01810055, 3.1, 2.9, 56.9, 33.0, 0.0, 0.1, 4.1, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.0,Middleborough - Henry B. Burkland Elementary School,01820008, 1.5, 1.1, 2.2, 87.0, 0.6, 0.0, 7.6, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.099999999999994,Middleborough - John T. Nichols Middle,01820305, 2.7, 0.9, 3.1, 87.9, 1.1, 0.0, 4.3, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,2.9,10.5,Middleborough - Mary K. Goode Elementary School,01820010, 2.1, 0.7, 1.9, 89.5, 0.5, 0.0, 5.4, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.200000000000003,Middleborough - Memorial Early Childhood Center,01820011, 5.0, 0.0, 2.8, 85.8, 0.7, 0.0, 5.7, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,1.7,11.799999999999997,Middleborough - Middleborough High,01820505, 2.8, 1.0, 3.6, 88.2, 1.2, 0.0, 3.1, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.0,Middleton - Fuller Meadow,01840003, 1.1, 4.4, 5.5, 84.0, 0.7, 0.0, 4.4, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.299999999999997,Middleton - Howe-Manning,01840005, 0.7, 3.9, 5.9, 84.7, 0.7, 0.2, 3.9, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,3.4,38.0,Milford - Brookside,01850065, 3.3, 1.1, 31.0, 62.0, 0.2, 0.0, 2.4, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,3.2,38.6,Milford - Memorial,01850010, 3.0, 0.6, 32.5, 61.4, 0.2, 0.0, 2.3, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,4.9,39.6,Milford - Milford High,01850505, 2.8, 2.1, 29.4, 60.4, 1.6, 0.0, 3.6, 51.1, 48.7, 0.2 -1,1,a-cure-i1,2019-20,0.0,34.599999999999994,Milford - Shining Star Early Childhood Center,01850075, 3.8, 2.2, 25.8, 65.4, 0.5, 0.0, 2.2, 62.1, 37.4, 0.5 -2.1945137157107233,2.19,a-cure-i1,2019-20,5.5,40.1,Milford - Stacy Middle,01850305, 2.6, 1.8, 29.9, 59.9, 2.6, 0.0, 3.2, 54.2, 45.8, 0.0 -1,1,a-cure-i1,2019-20,3.4,40.2,Milford - Woodland,01850090, 3.6, 1.6, 29.9, 59.8, 1.0, 0.2, 4.0, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.299999999999997,Millbury - Elmwood Street,01860017, 3.1, 3.3, 6.9, 80.7, 0.0, 0.0, 6.0, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,1.8,20.5,Millbury - Millbury Junior/Senior High,01860505, 4.0, 3.2, 9.7, 79.5, 0.1, 0.0, 3.5, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.0,Millbury - Raymond E. Shaw Elementary,01860025, 2.7, 4.0, 7.7, 80.0, 0.0, 0.2, 5.4, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.900000000000006,Millis - Clyde F Brown,01870005, 0.5, 1.4, 7.6, 86.1, 0.7, 0.2, 3.5, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,3.4,14.400000000000006,Millis - Millis High School,01870505, 1.8, 3.3, 7.8, 85.6, 0.0, 0.3, 1.2, 50.5, 49.5, 0.0 -5.978021978021978,5,a-cure-i1,2019-20,6.800000000000001,18.200000000000003,Millis - Millis Middle,01870020, 0.7, 2.6, 9.3, 81.8, 0.0, 0.0, 5.6, 51.3, 48.7, 0.0 -6.421404682274246,5,a-cure-i1,2019-20,12.0,29.900000000000006,Milton - Charles S Pierce Middle,01890410, 13.9, 6.3, 5.0, 70.1, 0.0, 0.1, 4.6, 51.5, 48.5, 0.0 -14.585635359116027,5,a-cure-i1,2019-20,16.5,18.099999999999994,Milton - Collicot,01890005, 2.7, 8.7, 3.0, 81.9, 0.0, 0.0, 3.7, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,3.8,25.200000000000003,Milton - Cunningham School,01890007, 5.8, 10.3, 4.5, 74.8, 0.3, 0.0, 4.2, 50.9, 49.1, 0.0 -7.963800904977377,5,a-cure-i1,2019-20,10.999999999999998,22.099999999999994,Milton - Glover,01890010, 6.5, 4.7, 3.7, 77.9, 0.2, 0.0, 7.0, 47.2, 52.8, 0.0 -4.3508771929824555,4.35,a-cure-i1,2019-20,9.299999999999999,34.2,Milton - Milton High,01890505, 19.2, 6.3, 5.4, 65.8, 0.2, 0.2, 3.0, 48.7, 51.2, 0.1 -4.658227848101266,4.66,a-cure-i1,2019-20,18.400000000000002,63.2,Milton - Tucker,01890020, 39.7, 7.0, 6.5, 36.8, 0.0, 0.0, 10.0, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2019-20,4.7,19.599999999999994,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 3.5, 4.5, 6.4, 80.4, 0.3, 0.0, 4.8, 62.4, 36.8, 0.8 -1,1,a-cure-i1,2019-20,0.0,10.200000000000003,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.4, 0.0, 6.1, 89.8, 0.0, 0.0, 3.7, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.5,Mohawk Trail - Colrain Central,07170010, 0.9, 0.0, 4.6, 94.5, 0.0, 0.0, 0.0, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,2.2,8.0,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.3, 0.9, 3.9, 92.0, 0.0, 0.0, 3.0, 47.6, 52.1, 0.3 -1,1,a-cure-i1,2019-20,0.0,6.5,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 3.9, 93.5, 0.0, 0.6, 1.9, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.0,Monomoy Regional School District - Chatham Elementary School,07120001, 6.4, 2.0, 12.3, 75.0, 0.0, 0.5, 3.9, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,2.8,24.099999999999994,Monomoy Regional School District - Harwich Elementary School,07120002, 5.6, 2.0, 8.0, 75.9, 0.5, 0.0, 8.0, 55.1, 44.9, 0.0 -4.054298642533938,4.05,a-cure-i1,2019-20,5.6000000000000005,22.099999999999994,Monomoy Regional School District - Monomoy Regional High School,07120515, 8.0, 1.6, 7.2, 77.9, 0.6, 0.3, 4.4, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.799999999999997,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 5.6, 0.8, 7.3, 80.2, 0.6, 0.2, 5.2, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,3.2,11.5,Monson - Granite Valley School,01910030, 1.4, 0.7, 6.4, 88.5, 0.0, 0.2, 2.8, 47.3, 52.5, 0.2 -1,1,a-cure-i1,2019-20,3.7,9.099999999999994,Monson - Monson High School,01910505, 1.1, 1.1, 3.6, 90.9, 0.0, 1.1, 2.2, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.799999999999997,Monson - Quarry Hill Community School,01910010, 0.0, 0.7, 2.9, 94.2, 0.7, 0.0, 1.5, 48.2, 51.8, 0.0 -3.4754098360655736,3.48,a-cure-i1,2019-20,5.300000000000001,24.400000000000006,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 1.9, 1.8, 17.1, 75.6, 0.0, 0.0, 3.6, 49.2, 50.3, 0.4 -1,1,a-cure-i1,2019-20,0.0,8.599999999999994,Mount Greylock - Lanesborough Elementary,07150005, 2.5, 1.5, 2.5, 91.4, 0.0, 0.0, 2.0, 47.0, 53.0, 0.0 -9.904761904761905,5,a-cure-i1,2019-20,6.5,10.5,Mount Greylock - Mt Greylock Regional High,07150505, 2.0, 1.8, 3.4, 89.5, 0.0, 0.0, 3.3, 47.4, 52.6, 0.0 -1,1,a-cure-i1,2019-20,3.2,13.400000000000006,Mount Greylock - Williamstown Elementary,07150010, 1.2, 0.5, 6.1, 86.6, 0.0, 0.0, 5.6, 52.6, 47.4, 0.0 -2.861313868613139,2.86,a-cure-i1,2019-20,9.8,54.8,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 17.7, 22.8, 9.4, 45.2, 0.3, 0.0, 4.6, 48.8, 51.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.700000000000003,Nahant - Johnson,01960010, 0.6, 0.6, 6.5, 88.3, 0.0, 0.0, 3.9, 49.4, 50.6, 0.0 -2.079664570230608,2.08,a-cure-i1,2019-20,6.2,47.7,Nantucket - Cyrus Peirce,01970010, 12.1, 2.5, 30.6, 52.3, 0.0, 0.0, 2.5, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,2.8,56.5,Nantucket - Nantucket Elementary,01970005, 7.0, 2.2, 42.8, 43.5, 0.0, 0.0, 4.5, 50.5, 49.5, 0.0 -3.4385964912280698,3.44,a-cure-i1,2019-20,9.799999999999999,45.6,Nantucket - Nantucket High,01970505, 12.2, 1.5, 26.5, 54.4, 0.6, 0.0, 4.9, 50.7, 48.8, 0.6 -1,1,a-cure-i1,2019-20,1.3,50.7,Nantucket - Nantucket Intermediate School,01970020, 6.9, 0.9, 39.5, 49.3, 0.0, 0.0, 3.5, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.0,Narragansett - Narragansett Middle,07200305, 1.1, 0.5, 5.4, 89.0, 0.3, 0.3, 3.5, 54.4, 45.6, 0.0 -10.352941176470583,5,a-cure-i1,2019-20,7.7,11.900000000000006,Narragansett - Narragansett Regional High,07200505, 0.9, 0.0, 8.6, 88.1, 0.0, 0.0, 2.4, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.599999999999994,Narragansett - Phillipston Memorial,07200003, 1.8, 0.9, 5.3, 89.4, 0.0, 0.0, 2.7, 65.5, 34.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.900000000000006,Narragansett - Templeton Elementary School,07200020, 1.1, 0.2, 6.3, 89.1, 0.0, 0.0, 3.4, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,2.0,14.700000000000003,Nashoba - Center School,07250020, 0.9, 4.3, 5.5, 85.3, 0.0, 0.0, 3.9, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.400000000000006,Nashoba - Florence Sawyer School,07250025, 0.4, 5.1, 3.7, 87.6, 0.0, 0.1, 3.1, 49.4, 50.6, 0.0 -7.5520000000000005,5,a-cure-i1,2019-20,5.9,12.5,Nashoba - Hale,07250310, 0.7, 5.0, 4.0, 87.5, 0.3, 0.0, 2.6, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,4.5,15.599999999999994,Nashoba - Luther Burbank Middle School,07250305, 0.8, 1.2, 10.3, 84.4, 0.0, 0.0, 3.3, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.400000000000006,Nashoba - Mary Rowlandson Elementary,07250010, 2.8, 1.1, 9.8, 83.6, 0.4, 0.0, 2.3, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,2.8,10.400000000000006,Nashoba - Nashoba Regional,07250505, 1.7, 3.3, 3.5, 89.6, 0.0, 0.2, 1.7, 50.1, 49.9, 0.0 -6.875000000000002,5,a-cure-i1,2019-20,5.5,12.799999999999997,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 2.1, 1.6, 6.5, 87.2, 0.4, 0.1, 2.1, 60.5, 38.8, 0.7 -4.462151394422312,4.46,a-cure-i1,2019-20,7.0,25.099999999999994,Natick - Bennett-Hemenway,01980005, 1.8, 11.6, 4.7, 74.9, 0.2, 0.0, 6.7, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,43.6,Natick - Brown,01980010, 1.0, 28.4, 8.6, 56.4, 0.2, 0.0, 5.3, 51.7, 48.3, 0.0 -3.947136563876651,3.95,a-cure-i1,2019-20,5.6,22.700000000000003,Natick - J F Kennedy Middle School,01980305, 1.3, 10.0, 6.8, 77.3, 0.0, 0.0, 4.5, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.099999999999994,Natick - Johnson,01980031, 1.3, 3.9, 8.6, 78.9, 0.0, 0.0, 7.3, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,4.0,30.400000000000006,Natick - Lilja Elementary,01980035, 3.9, 12.3, 7.7, 69.6, 0.0, 0.0, 6.5, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.400000000000006,Natick - Memorial,01980043, 1.5, 6.0, 4.0, 81.6, 0.0, 0.0, 6.9, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2019-20,4.5,23.099999999999994,Natick - Natick High,01980505, 3.4, 8.1, 6.5, 76.9, 0.1, 0.1, 4.9, 50.7, 49.1, 0.2 -1,1,a-cure-i1,2019-20,0.6,21.900000000000006,Natick - Wilson Middle,01980310, 4.0, 8.0, 4.3, 78.1, 0.2, 0.1, 5.3, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,3.9,16.400000000000006,Nauset - Nauset Regional High,06600505, 6.2, 2.8, 3.6, 83.6, 0.1, 0.1, 3.7, 45.1, 54.7, 0.2 -1,1,a-cure-i1,2019-20,1.9,15.700000000000003,Nauset - Nauset Regional Middle,06600305, 3.8, 2.1, 7.2, 84.3, 0.2, 0.0, 2.4, 48.8, 51.0, 0.2 -1,1,a-cure-i1,2019-20,4.0,26.5,Needham - Broadmeadow,01990005, 2.9, 9.7, 7.5, 73.5, 0.0, 0.0, 6.4, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,2.9,20.599999999999994,Needham - High Rock School,01990410, 2.8, 5.2, 8.6, 79.4, 0.0, 0.0, 4.0, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.7,Needham - John Eliot,01990020, 5.8, 17.2, 7.8, 63.3, 0.0, 0.0, 5.8, 52.9, 47.1, 0.0 -7.207920792079206,5,a-cure-i1,2019-20,9.1,20.200000000000003,Needham - Needham High,01990505, 2.1, 8.3, 5.0, 79.8, 0.1, 0.1, 4.6, 49.6, 50.3, 0.1 -3.275590551181102,3.28,a-cure-i1,2019-20,5.2,25.400000000000006,Needham - Newman Elementary,01990050, 4.2, 10.3, 4.3, 74.6, 0.0, 0.1, 6.5, 51.1, 48.9, 0.0 -4.779220779220781,4.78,a-cure-i1,2019-20,6.9,23.099999999999994,Needham - Pollard Middle,01990405, 2.2, 8.6, 7.0, 76.9, 0.0, 0.0, 5.3, 48.6, 51.3, 0.1 -1,1,a-cure-i1,2019-20,4.6,27.200000000000003,Needham - Sunita L. Williams Elementary,01990035, 3.5, 12.4, 4.6, 72.8, 0.2, 0.0, 6.6, 55.2, 44.8, 0.0 -7.586854460093898,5,a-cure-i1,2019-20,10.1,21.299999999999997,Needham - William Mitchell,01990040, 2.3, 8.3, 5.0, 78.7, 0.0, 0.0, 5.8, 50.2, 49.8, 0.0 -8.660377358490566,5,a-cure-i1,2019-20,45.9,84.8,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 53.5, 2.8, 22.8, 15.2, 0.6, 0.0, 5.1, 50.8, 48.9, 0.3 -1,1,a-cure-i1,2019-20,2.8,54.8,New Bedford - Abraham Lincoln,02010095, 11.0, 1.3, 36.6, 45.2, 0.1, 0.1, 5.6, 50.8, 49.2, 0.0 -2.9814814814814814,2.98,a-cure-i1,2019-20,16.1,86.4,New Bedford - Alfred J Gomes,02010063, 14.7, 0.6, 68.0, 13.6, 0.9, 0.0, 2.3, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,3.6,39.2,New Bedford - Betsey B Winslow,02010140, 8.8, 1.8, 20.5, 60.8, 0.4, 0.7, 7.0, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,74.2,New Bedford - Carlos Pacheco,02010105, 17.9, 0.6, 51.7, 25.8, 0.3, 0.0, 3.6, 51.1, 48.9, 0.0 -3.5852842809364542,3.59,a-cure-i1,2019-20,6.7,29.900000000000006,New Bedford - Casimir Pulaski,02010123, 6.5, 0.9, 16.8, 70.1, 0.1, 0.0, 5.6, 54.3, 45.7, 0.0 -4.384839650145773,4.38,a-cure-i1,2019-20,9.4,34.3,New Bedford - Charles S Ashley,02010010, 3.4, 1.9, 25.7, 65.7, 0.0, 0.0, 3.4, 47.5, 52.5, 0.0 -4.1374321880651,4.14,a-cure-i1,2019-20,14.3,55.3,New Bedford - Elizabeth Carter Brooks,02010015, 8.9, 0.7, 36.9, 44.7, 1.0, 0.0, 7.8, 50.2, 49.8, 0.0 -3.452282157676349,3.45,a-cure-i1,2019-20,15.600000000000001,72.3,New Bedford - Ellen R Hathaway,02010075, 14.3, 3.1, 50.5, 27.7, 0.3, 0.3, 3.7, 52.3, 47.7, 0.0 -1.5779092702169624,1.58,a-cure-i1,2019-20,5.0,50.7,New Bedford - Elwyn G Campbell,02010020, 9.0, 1.1, 33.8, 49.3, 0.0, 0.0, 6.8, 57.6, 42.4, 0.0 -2.700507614213198,2.7,a-cure-i1,2019-20,13.3,78.8,New Bedford - Hayden/McFadden,02010078, 14.0, 0.2, 60.4, 21.2, 0.8, 0.2, 3.3, 52.7, 47.3, 0.0 -1.7516688918558074,1.75,a-cure-i1,2019-20,8.2,74.9,New Bedford - Irwin M. Jacobs Elementary School,02010070, 11.5, 0.3, 59.7, 25.1, 0.0, 0.0, 3.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,60.1,New Bedford - James B Congdon,02010040, 14.8, 0.7, 36.8, 39.9, 0.0, 0.3, 7.6, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.7,New Bedford - Jireh Swift,02010130, 8.3, 0.6, 17.3, 67.3, 0.0, 0.0, 6.5, 47.6, 52.4, 0.0 -3.25686591276252,3.26,a-cure-i1,2019-20,12.6,61.9,New Bedford - John Avery Parker,02010115, 16.1, 1.3, 35.9, 38.1, 0.4, 0.0, 8.1, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2019-20,4.6,67.0,New Bedford - John B Devalles,02010050, 15.8, 0.3, 47.6, 33.0, 0.0, 0.0, 3.4, 46.2, 53.8, 0.0 -2.561014263074485,2.56,a-cure-i1,2019-20,10.1,63.1,New Bedford - Keith Middle School,02010405, 15.4, 1.4, 38.3, 36.9, 0.4, 0.0, 7.7, 54.7, 45.3, 0.0 -3.0760059612518633,3.08,a-cure-i1,2019-20,12.9,67.1,New Bedford - New Bedford High,02010505, 16.1, 1.0, 44.4, 32.9, 0.7, 0.2, 4.8, 51.6, 48.4, 0.0 -2.2325581395348837,2.23,a-cure-i1,2019-20,7.2,51.6,New Bedford - Normandin Middle School,02010410, 8.9, 0.9, 36.6, 48.4, 0.3, 0.0, 4.8, 53.5, 46.5, 0.0 -2.477299185098952,2.48,a-cure-i1,2019-20,13.3,85.9,New Bedford - Renaissance Community Innovation School,02010124, 20.1, 0.0, 62.0, 14.1, 0.0, 0.0, 3.8, 47.3, 52.7, 0.0 -3.5061728395061733,3.51,a-cure-i1,2019-20,14.200000000000001,64.8,New Bedford - Roosevelt Middle School,02010415, 15.6, 0.0, 43.8, 35.2, 0.2, 0.3, 4.8, 51.2, 48.8, 0.0 -1.749603803486529,1.75,a-cure-i1,2019-20,6.8999999999999995,63.1,New Bedford - Sgt Wm H Carney Academy,02010045, 18.2, 0.9, 35.4, 36.9, 0.1, 0.0, 8.4, 58.4, 41.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,48.7,New Bedford - Thomas R Rodman,02010125, 8.4, 1.6, 34.6, 51.3, 0.0, 0.0, 4.2, 56.0, 44.0, 0.0 -3.8832116788321174,3.88,a-cure-i1,2019-20,13.3,54.8,New Bedford - Trinity Day Academy,02010510, 12.9, 0.0, 32.3, 45.2, 0.0, 0.0, 9.7, 55.9, 44.1, 0.0 -1.5561643835616437,1.56,a-cure-i1,2019-20,7.1,73.0,New Bedford - Whaling City Junior/Senior High School,02010515, 23.8, 0.8, 41.3, 27.0, 0.8, 0.0, 6.3, 72.2, 27.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,34.099999999999994,New Bedford - William H Taylor,02010135, 7.8, 0.4, 16.7, 65.9, 0.0, 0.0, 9.3, 51.9, 48.1, 0.0 -3.6459816887080363,3.65,a-cure-i1,2019-20,22.4,98.3,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 88.7, 0.8, 7.5, 1.7, 0.2, 0.0, 1.2, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.5,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 5.5, 85.5, 0.0, 0.0, 9.0, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,1.5,8.799999999999997,Newburyport - Edward G. Molin Elementary School,02040030, 1.0, 1.0, 6.4, 91.2, 0.0, 0.0, 0.3, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.4,10.099999999999994,Newburyport - Francis T Bresnahan Elementary,02040005, 0.5, 1.7, 5.7, 89.9, 0.0, 0.0, 2.2, 48.7, 51.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.5,Newburyport - Newburyport High,02040505, 0.3, 2.3, 3.5, 91.5, 0.1, 0.0, 2.4, 47.1, 52.8, 0.1 -12.215053763440865,5,a-cure-i1,2019-20,7.1000000000000005,9.299999999999997,Newburyport - Rupert A Nock Middle,02040305, 1.7, 2.8, 2.4, 90.7, 0.0, 0.0, 2.4, 51.3, 48.7, 0.0 -5.770491803278689,5,a-cure-i1,2019-20,11.0,30.5,Newton - A E Angier,02070005, 2.6, 14.3, 5.4, 69.5, 0.0, 0.0, 8.2, 48.8, 51.2, 0.0 -4.151351351351352,4.15,a-cure-i1,2019-20,9.6,37.0,Newton - Bigelow Middle,02070305, 4.9, 16.0, 9.3, 63.0, 0.2, 0.0, 6.7, 44.9, 54.7, 0.4 -12.21505376344086,5,a-cure-i1,2019-20,35.5,46.5,Newton - Bowen,02070015, 5.4, 25.8, 7.8, 53.5, 0.0, 0.0, 7.5, 48.9, 51.1, 0.0 -12.387096774193546,5,a-cure-i1,2019-20,33.599999999999994,43.4,Newton - C C Burr,02070020, 5.2, 19.1, 10.4, 56.6, 0.3, 0.0, 8.5, 53.3, 46.7, 0.0 -3.9045092838196283,3.9,a-cure-i1,2019-20,9.2,37.7,Newton - Cabot,02070025, 5.3, 13.2, 6.4, 62.3, 0.0, 0.5, 12.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,4.0,34.400000000000006,Newton - Charles E Brown Middle,02070310, 2.8, 21.2, 5.3, 65.6, 0.3, 0.0, 4.9, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,4.4,46.7,Newton - Countryside,02070040, 5.3, 28.3, 5.3, 53.3, 0.0, 0.0, 7.7, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,4.9,36.8,Newton - F A Day Middle,02070315, 4.3, 16.9, 9.1, 63.2, 0.2, 0.0, 6.3, 50.7, 49.3, 0.0 -4.48,4.48,a-cure-i1,2019-20,8.4,30.0,Newton - Franklin,02070055, 2.7, 11.9, 8.0, 70.0, 0.0, 0.7, 6.8, 43.3, 56.7, 0.0 -8.73913043478261,5,a-cure-i1,2019-20,20.099999999999998,36.8,Newton - Horace Mann,02070075, 4.1, 14.6, 6.9, 63.2, 0.0, 0.0, 11.3, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,3.5,25.099999999999994,Newton - John Ward,02070120, 2.4, 12.5, 4.3, 74.9, 0.0, 0.0, 5.9, 51.0, 49.0, 0.0 -3.084745762711864,3.08,a-cure-i1,2019-20,9.1,47.2,Newton - Lincoln-Eliot,02070070, 7.2, 18.2, 12.4, 52.8, 0.0, 0.0, 9.4, 52.8, 47.0, 0.3 -1,1,a-cure-i1,2019-20,4.0,31.799999999999997,Newton - Mason-Rice,02070080, 0.7, 19.3, 4.3, 68.2, 0.0, 0.0, 7.6, 50.9, 49.1, 0.0 -3.0513447432762835,3.05,a-cure-i1,2019-20,7.8,40.9,Newton - Memorial Spaulding,02070105, 4.3, 23.2, 8.0, 59.1, 0.0, 0.0, 5.4, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,48.1,Newton - Newton Early Childhood Center,02070108, 2.8, 34.3, 3.9, 51.9, 0.0, 0.0, 7.2, 59.7, 40.3, 0.0 -6.772486772486772,5,a-cure-i1,2019-20,15.999999999999998,37.8,Newton - Newton North High,02070505, 6.4, 14.7, 9.6, 62.2, 0.1, 0.0, 7.0, 51.4, 48.4, 0.1 -6.945736434108525,5,a-cure-i1,2019-20,16.799999999999997,38.7,Newton - Newton South High,02070510, 4.9, 21.7, 6.3, 61.3, 0.0, 0.0, 5.8, 52.1, 47.7, 0.2 -5.583138173302108,5,a-cure-i1,2019-20,14.9,42.7,Newton - Oak Hill Middle,02070320, 5.5, 26.4, 4.9, 57.3, 0.2, 0.2, 5.5, 55.2, 44.8, 0.0 -4.947630922693267,4.95,a-cure-i1,2019-20,12.4,40.1,Newton - Peirce,02070100, 3.9, 21.1, 9.2, 59.9, 0.0, 0.0, 6.0, 47.9, 52.1, 0.0 -2.264501160092807,2.26,a-cure-i1,2019-20,6.1,43.1,Newton - Underwood,02070115, 3.3, 18.2, 13.4, 56.9, 0.0, 0.0, 8.2, 48.3, 51.7, 0.0 -5.1332082551594755,5,a-cure-i1,2019-20,17.1,53.3,Newton - Williams,02070125, 5.0, 34.1, 8.0, 46.7, 0.4, 0.0, 5.7, 54.0, 46.0, 0.0 -3.508771929824561,3.51,a-cure-i1,2019-20,10.0,45.6,Newton - Zervas,02070130, 5.5, 22.4, 6.9, 54.4, 0.5, 0.5, 9.9, 49.8, 50.0, 0.2 -1,1,a-cure-i1,2019-20,0.0,8.599999999999994,Norfolk - Freeman-Kennedy School,02080005, 0.2, 2.2, 3.6, 91.4, 0.0, 0.0, 2.6, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.0,Norfolk - H Olive Day,02080015, 0.4, 2.2, 1.8, 94.0, 0.0, 0.0, 1.6, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.599999999999994,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.3, 1.5, 2.0, 90.4, 0.2, 0.4, 4.4, 29.4, 70.6, 0.0 -7.836734693877553,5,a-cure-i1,2019-20,9.6,19.599999999999994,North Adams - Brayton,02090035, 4.3, 0.8, 7.8, 80.4, 0.0, 0.0, 6.7, 56.5, 43.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.599999999999994,North Adams - Colegrove Park Elementary,02090008, 2.6, 0.0, 7.4, 81.4, 0.6, 0.0, 8.0, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2019-20,2.2,15.099999999999994,North Adams - Drury High,02090505, 2.4, 0.6, 5.0, 84.9, 0.2, 0.4, 6.6, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.599999999999994,North Adams - Greylock,02090015, 0.8, 0.8, 7.2, 80.4, 0.0, 0.4, 10.4, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.099999999999994,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.9, 8.5, 15.7, 72.9, 0.2, 0.0, 1.8, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.900000000000006,North Andover - Annie L Sargent School,02110018, 1.9, 8.9, 5.5, 79.1, 0.2, 0.0, 4.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,41.9,North Andover - Atkinson,02110001, 5.8, 9.0, 23.8, 58.1, 0.3, 0.0, 2.9, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.900000000000006,North Andover - Franklin,02110010, 3.3, 12.8, 7.7, 72.1, 0.3, 0.0, 3.8, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.799999999999997,North Andover - Kittredge,02110015, 3.0, 3.4, 10.7, 78.2, 0.0, 0.4, 4.3, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2019-20,0.9,22.900000000000006,North Andover - North Andover High,02110505, 3.5, 7.2, 10.2, 77.1, 0.0, 0.1, 1.9, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.700000000000003,North Andover - North Andover Middle,02110305, 3.3, 8.2, 12.4, 72.3, 0.5, 0.0, 3.2, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.200000000000003,North Andover - Thomson,02110020, 1.9, 5.9, 15.0, 73.8, 0.0, 0.0, 3.4, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.099999999999994,North Attleborough - Amvet Boulevard,02120007, 5.5, 13.4, 3.4, 72.9, 0.5, 0.0, 4.2, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.5,North Attleborough - Community,02120030, 11.9, 6.5, 8.5, 64.5, 0.0, 0.3, 8.2, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.700000000000003,North Attleborough - Falls,02120010, 3.7, 6.6, 3.3, 79.3, 0.0, 0.0, 7.0, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.900000000000006,North Attleborough - Joseph W Martin Jr Elementary,02120013, 3.3, 4.8, 4.0, 85.1, 0.0, 0.0, 2.8, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,2.8,19.400000000000006,North Attleborough - North Attleboro High,02120505, 4.5, 6.9, 4.7, 80.6, 0.3, 0.2, 2.9, 51.7, 48.1, 0.2 -1,1,a-cure-i1,2019-20,0.0,28.900000000000006,North Attleborough - North Attleborough Early Learning Center,02120020, 3.1, 15.7, 5.7, 71.1, 0.0, 0.0, 4.4, 60.4, 39.6, 0.0 -1,1,a-cure-i1,2019-20,1.5,18.5,North Attleborough - North Attleborough Middle,02120305, 3.2, 5.4, 5.5, 81.5, 0.1, 0.2, 4.1, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2019-20,4.3,18.200000000000003,North Attleborough - Roosevelt Avenue,02120015, 1.9, 8.6, 4.8, 81.8, 0.0, 0.0, 3.0, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.099999999999994,North Brookfield - North Brookfield Elementary,02150015, 1.3, 0.3, 5.4, 89.9, 0.0, 0.0, 3.2, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.299999999999997,North Brookfield - North Brookfield High,02150505, 0.0, 1.3, 6.1, 87.7, 0.0, 0.0, 4.8, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.700000000000003,North Middlesex - Ashby Elementary,07350010, 1.2, 0.6, 7.9, 90.3, 0.0, 0.0, 0.0, 58.8, 41.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.299999999999997,North Middlesex - Hawthorne Brook,07350030, 1.4, 2.2, 3.4, 89.7, 0.0, 0.0, 3.4, 53.5, 46.5, 0.0 -7.504424778761064,5,a-cure-i1,2019-20,5.3,11.299999999999997,North Middlesex - Nissitissit Middle School,07350310, 1.9, 1.5, 4.6, 88.7, 0.0, 0.0, 3.3, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,1.8,11.299999999999997,North Middlesex - North Middlesex Regional,07350505, 1.0, 1.3, 4.9, 88.7, 0.2, 0.1, 3.7, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.299999999999997,North Middlesex - Spaulding Memorial,07350005, 1.6, 2.0, 6.1, 85.7, 0.2, 0.0, 4.3, 46.8, 53.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.599999999999994,North Middlesex - Squannacook Early Childhood Center,07350002, 7.4, 1.1, 1.1, 90.4, 0.0, 0.0, 0.0, 62.8, 37.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.099999999999994,North Middlesex - Varnum Brook,07350035, 2.4, 0.9, 6.1, 86.9, 0.2, 0.0, 3.5, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.400000000000006,North Reading - E Ethel Little School,02170003, 1.2, 4.4, 2.4, 87.6, 0.0, 0.0, 4.4, 55.8, 44.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.200000000000003,North Reading - J Turner Hood,02170010, 0.9, 5.6, 5.6, 85.8, 0.0, 0.3, 1.8, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.099999999999994,North Reading - L D Batchelder,02170005, 0.0, 4.1, 5.2, 86.9, 0.0, 0.0, 3.8, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2019-20,3.9,9.599999999999994,North Reading - North Reading High,02170505, 0.7, 3.8, 2.4, 90.4, 0.1, 0.1, 2.4, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.900000000000006,North Reading - North Reading Middle,02170305, 0.2, 5.2, 4.9, 87.1, 0.2, 0.0, 2.4, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,40.4,Northampton - Bridge Street,02100005, 3.2, 2.8, 25.5, 59.6, 0.4, 0.0, 8.5, 55.0, 45.0, 0.0 -2.397694524495677,2.4,a-cure-i1,2019-20,5.2,34.7,Northampton - Jackson Street,02100020, 4.8, 5.4, 15.0, 65.3, 0.0, 0.0, 9.6, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.5,Northampton - John F Kennedy Middle School,02100410, 3.2, 3.1, 17.5, 69.5, 0.0, 0.0, 6.8, 47.9, 51.8, 0.3 -1,1,a-cure-i1,2019-20,0.0,26.799999999999997,Northampton - Leeds,02100025, 1.5, 0.9, 16.6, 73.2, 0.0, 0.0, 7.7, 56.6, 43.4, 0.0 -4.131147540983606,4.13,a-cure-i1,2019-20,6.3,24.400000000000006,Northampton - Northampton High,02100505, 2.5, 3.1, 13.2, 75.6, 0.2, 0.0, 5.4, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.799999999999997,Northampton - R. K. Finn Ryan Road,02100029, 3.8, 2.5, 12.2, 77.2, 0.0, 0.0, 4.2, 53.2, 46.0, 0.8 -1,1,a-cure-i1,2019-20,0.0,16.5,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.4, 0.4, 13.1, 83.5, 0.0, 0.0, 1.6, 56.5, 43.5, 0.0 -1,1,a-cure-i1,2019-20,1.6,22.700000000000003,Northboro-Southboro - Algonquin Regional High,07300505, 1.2, 11.4, 5.7, 77.3, 0.4, 0.4, 3.6, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.2,Northborough - Fannie E Proctor,02130015, 2.3, 15.5, 14.3, 63.8, 0.0, 0.4, 3.8, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.900000000000006,Northborough - Lincoln Street,02130003, 0.4, 9.6, 1.2, 83.1, 0.8, 1.2, 3.8, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.900000000000006,Northborough - Marguerite E Peaslee,02130014, 1.1, 14.1, 9.3, 69.1, 0.7, 0.0, 5.6, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.5,Northborough - Marion E Zeh,02130020, 1.2, 16.3, 8.9, 71.5, 0.0, 0.0, 2.0, 58.5, 41.5, 0.0 -1,1,a-cure-i1,2019-20,2.8,27.200000000000003,Northborough - Robert E. Melican Middle School,02130305, 2.6, 11.9, 7.7, 72.8, 0.0, 1.1, 4.0, 47.3, 52.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.5,Northbridge - Northbridge Elementary,02140005, 0.3, 0.0, 6.9, 87.5, 0.0, 0.0, 5.3, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.299999999999997,Northbridge - Northbridge High,02140505, 0.9, 1.1, 6.3, 87.7, 0.0, 0.2, 3.7, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,2.3,15.5,Northbridge - Northbridge Middle,02140305, 1.3, 0.7, 7.8, 84.5, 0.0, 0.1, 5.5, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.5,Northbridge - W Edward Balmer,02140001, 0.0, 1.2, 9.1, 84.5, 0.2, 0.0, 4.9, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,4.199999999999999,40.3,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.6, 0.6, 34.9, 59.7, 0.1, 0.2, 1.9, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.900000000000006,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.6, 0.4, 1.4, 95.1, 0.0, 0.0, 2.6, 60.2, 39.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.5,Norton - Henri A. Yelle,02180060, 1.7, 1.1, 4.5, 86.5, 0.6, 0.3, 5.3, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.200000000000003,Norton - J C Solmonese,02180015, 1.0, 0.8, 3.6, 88.8, 0.2, 0.0, 5.6, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.200000000000003,Norton - L G Nourse Elementary,02180010, 3.7, 2.6, 7.4, 83.8, 0.0, 0.0, 2.6, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,4.5,9.5,Norton - Norton High,02180505, 1.6, 2.4, 3.6, 90.5, 0.0, 0.3, 1.7, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.0,Norton - Norton Middle,02180305, 1.8, 2.5, 3.8, 87.0, 0.2, 0.0, 4.7, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.200000000000003,Norwell - Grace Farrar Cole,02190005, 0.4, 2.2, 1.0, 91.8, 0.0, 0.0, 4.5, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.099999999999994,Norwell - Norwell High,02190505, 0.7, 2.4, 2.1, 92.9, 0.0, 0.3, 1.6, 44.2, 55.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.200000000000003,Norwell - Norwell Middle School,02190405, 0.0, 2.3, 1.2, 93.8, 0.2, 0.2, 2.3, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2019-20,3.7,6.700000000000003,Norwell - William G Vinal,02190020, 0.0, 1.7, 1.3, 93.3, 0.0, 0.2, 3.6, 53.4, 46.6, 0.0 -2.694736842105263,2.69,a-cure-i1,2019-20,9.6,57.0,Norwood - Balch,02200005, 12.3, 5.1, 36.4, 43.0, 0.0, 1.6, 1.6, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2019-20,3.4,51.3,Norwood - Charles J Prescott,02200025, 4.6, 31.8, 11.9, 48.7, 0.4, 1.1, 1.5, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,3.4,32.900000000000006,Norwood - Cornelius M Callahan,02200010, 13.8, 5.3, 8.4, 67.1, 0.0, 0.0, 5.3, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.3,Norwood - Dr. Philip O. Coakley Middle School,02200305, 12.1, 5.7, 14.4, 64.7, 0.0, 0.3, 2.8, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.599999999999994,Norwood - F A Cleveland,02200015, 5.4, 7.5, 9.9, 73.4, 0.0, 0.3, 3.6, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.599999999999994,Norwood - George F. Willett,02200075, 6.9, 13.3, 12.3, 64.4, 0.0, 1.5, 1.5, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.3,Norwood - John P Oldham,02200020, 16.3, 7.6, 10.8, 63.7, 0.0, 0.0, 1.6, 48.6, 51.4, 0.0 -2.612244897959184,2.61,a-cure-i1,2019-20,5.6,34.3,Norwood - Norwood High,02200505, 12.8, 5.0, 14.1, 65.7, 0.0, 0.1, 2.3, 49.9, 49.9, 0.1 -2.1590361445783133,2.16,a-cure-i1,2019-20,5.6,41.5,Oak Bluffs - Oak Bluffs Elementary,02210005, 3.5, 1.6, 28.9, 58.5, 1.2, 0.0, 6.3, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,2.2,7.0,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 1.1, 0.9, 2.3, 93.0, 0.2, 0.0, 2.5, 64.4, 35.4, 0.2 -1,1,a-cure-i1,2019-20,2.2,10.099999999999994,Old Rochester - Old Rochester Regional High,07400505, 2.5, 1.5, 2.1, 89.9, 0.1, 0.0, 3.9, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.0,Old Rochester - Old Rochester Regional Jr High,07400405, 2.1, 1.4, 4.0, 87.0, 0.0, 0.0, 5.6, 53.7, 46.3, 0.0 -12.982857142857142,5,a-cure-i1,2019-20,14.2,17.5,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 5.4, 1.3, 10.4, 82.5, 0.0, 0.0, 0.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.0,Orange - Dexter Park,02230010, 2.0, 0.7, 9.0, 85.0, 0.0, 0.0, 3.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.099999999999994,Orange - Fisher Hill,02230015, 0.9, 0.4, 7.7, 85.9, 0.4, 0.0, 4.7, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.799999999999997,Orleans - Orleans Elementary,02240005, 5.1, 1.0, 9.1, 81.2, 0.5, 0.0, 3.0, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.0,Oxford - ACE Program,02260305, 0.0, 0.0, 25.0, 75.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.5,Oxford - Alfred M Chaffee,02260010, 0.8, 0.8, 15.0, 78.5, 0.4, 0.0, 4.6, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.700000000000003,Oxford - Clara Barton,02260005, 2.4, 0.0, 11.3, 81.3, 0.0, 0.0, 5.0, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,2.4,20.799999999999997,Oxford - Oxford High,02260505, 2.0, 2.0, 11.7, 79.2, 0.2, 0.4, 4.5, 46.8, 53.0, 0.2 -1,1,a-cure-i1,2019-20,0.0,19.900000000000006,Oxford - Oxford Middle,02260405, 1.8, 0.8, 12.7, 80.1, 0.0, 0.0, 4.7, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.799999999999997,Palmer - Old Mill Pond,02270008, 3.0, 3.0, 14.0, 75.2, 0.0, 0.0, 4.8, 49.1, 50.9, 0.0 -4.266666666666667,4.27,a-cure-i1,2019-20,5.6,21.0,Palmer - Palmer High,02270505, 2.6, 2.4, 10.6, 79.0, 0.3, 0.0, 5.1, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.299999999999997,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 1.1, 0.3, 4.6, 90.7, 0.2, 0.0, 3.0, 60.5, 39.0, 0.5 -5.435793731041456,5,a-cure-i1,2019-20,33.6,98.9,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 6.5, 0.0, 92.1, 1.1, 0.0, 0.0, 0.4, 45.0, 55.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.099999999999994,Peabody - Captain Samuel Brown,02290005, 3.1, 1.4, 14.0, 78.9, 0.0, 0.3, 2.2, 55.3, 44.4, 0.3 -1,1,a-cure-i1,2019-20,0.0,30.299999999999997,Peabody - Center,02290015, 7.3, 3.1, 17.7, 69.7, 0.0, 0.0, 2.1, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.400000000000006,Peabody - J Henry Higgins Middle,02290305, 3.6, 1.8, 15.9, 76.6, 0.0, 0.1, 2.1, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.5,Peabody - John E Burke,02290007, 0.4, 1.2, 7.4, 89.5, 0.0, 0.0, 1.6, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.700000000000003,Peabody - John E. McCarthy,02290016, 3.4, 3.4, 8.6, 82.3, 0.0, 0.0, 2.3, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,2.6,26.299999999999997,Peabody - Peabody Veterans Memorial High,02290510, 3.7, 2.1, 18.7, 73.7, 0.0, 0.0, 1.7, 52.7, 47.2, 0.1 -1,1,a-cure-i1,2019-20,0.0,17.200000000000003,Peabody - South Memorial,02290035, 1.6, 2.7, 10.7, 82.8, 0.0, 0.0, 2.2, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.5,Peabody - Thomas Carroll,02290010, 4.8, 1.0, 22.5, 70.5, 0.0, 0.0, 1.2, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.700000000000003,Peabody - West Memorial,02290045, 1.1, 2.3, 3.4, 91.3, 0.4, 0.0, 1.5, 53.0, 47.0, 0.0 -2.024330900243309,2.02,a-cure-i1,2019-20,5.2,41.1,Peabody - William A Welch Sr,02290027, 4.1, 1.3, 33.4, 58.9, 0.0, 0.0, 2.3, 50.8, 49.0, 0.3 -7.222222222222223,5,a-cure-i1,2019-20,13.0,28.799999999999997,Pelham - Pelham Elementary,02300005, 3.2, 4.8, 13.6, 71.2, 0.0, 0.0, 7.2, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.0,Pembroke - Bryantville Elementary,02310003, 0.2, 0.2, 0.8, 94.0, 0.2, 0.0, 4.5, 51.3, 48.5, 0.2 -1,1,a-cure-i1,2019-20,0.0,4.200000000000003,Pembroke - Hobomock Elementary,02310010, 0.5, 1.2, 0.7, 95.8, 0.0, 0.0, 1.7, 56.7, 43.1, 0.2 -1,1,a-cure-i1,2019-20,0.0,5.5,Pembroke - North Pembroke Elementary,02310015, 0.5, 0.9, 1.4, 94.5, 0.2, 0.0, 2.5, 51.1, 48.8, 0.2 -1,1,a-cure-i1,2019-20,0.0,3.0999999999999943,Pembroke - Pembroke Community Middle School,02310305, 0.2, 0.9, 1.1, 96.9, 0.0, 0.2, 0.7, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.799999999999997,Pembroke - Pembroke High School,02310505, 0.7, 1.7, 1.3, 95.2, 0.0, 0.1, 0.9, 48.0, 51.8, 0.1 -1,1,a-cure-i1,2019-20,0.0,17.200000000000003,Pentucket - Dr Frederick N Sweetsir,07450020, 0.5, 0.0, 13.6, 82.8, 0.0, 0.0, 3.2, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2019-20,1.4,7.700000000000003,Pentucket - Dr John C Page School,07450015, 0.6, 2.2, 2.8, 92.3, 0.0, 0.0, 2.2, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,0.9,10.099999999999994,Pentucket - Elmer S Bagnall,07450005, 0.6, 0.0, 5.6, 89.9, 0.0, 0.0, 3.9, 54.1, 45.7, 0.2 -1,1,a-cure-i1,2019-20,1.9,11.400000000000006,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 7.0, 88.6, 0.4, 0.0, 3.9, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.400000000000006,Pentucket - Pentucket Regional Middle,07450405, 0.5, 1.0, 4.6, 92.6, 0.0, 0.0, 1.3, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2019-20,2.6,7.5,Pentucket - Pentucket Regional Sr High,07450505, 0.8, 2.3, 3.2, 92.5, 0.0, 0.0, 1.2, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.5,Petersham - Petersham Center,02340005, 0.0, 1.5, 5.3, 88.5, 0.0, 0.0, 4.6, 45.0, 55.0, 0.0 -6.3966942148760335,5,a-cure-i1,2019-20,38.7,96.8,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, 0.0, 96.8, 3.2, 0.0, 0.0, 0.0, 64.5, 35.5, 0.0 -9.58968850698174,5,a-cure-i1,2019-20,55.8,93.1,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 12.8, 0.5, 76.6, 6.9, 1.1, 0.0, 2.1, 45.7, 54.3, 0.0 -7.702479338842974,5,a-cure-i1,2019-20,46.599999999999994,96.8,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 10.6, 0.0, 84.7, 3.2, 1.4, 0.0, 0.0, 49.1, 50.9, 0.0 -3.0928462709284625,3.09,a-cure-i1,2019-20,12.7,65.7,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 24.8, 7.4, 30.0, 34.3, 1.8, 0.0, 1.6, 48.5, 51.5, 0.0 -7.137789904502047,5,a-cure-i1,2019-20,32.7,73.3,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 35.6, 11.9, 23.9, 26.7, 0.3, 0.0, 1.7, 46.4, 53.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,3.799999999999997,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 1.6, 96.2, 0.0, 0.5, 1.6, 43.5, 56.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.599999999999994,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.2, 95.4, 0.0, 0.0, 3.5, 54.3, 45.7, 0.0 -16.62337662337662,5,a-cure-i1,2019-20,8.0,7.700000000000003,Pioneer Valley - Pioneer Valley Regional,07500505, 1.3, 1.0, 2.0, 92.3, 0.0, 0.0, 3.4, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.900000000000006,Pioneer Valley - Warwick Community School,07500009, 0.0, 6.7, 2.2, 91.1, 0.0, 0.0, 0.0, 55.6, 44.4, 0.0 -15.443762781186095,5,a-cure-i1,2019-20,47.2,48.9,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 9.3, 19.3, 7.4, 51.1, 0.0, 0.2, 12.8, 48.1, 51.5, 0.4 -7.361702127659575,5,a-cure-i1,2019-20,17.3,37.6,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 9.1, 1.8, 18.9, 62.4, 0.0, 0.3, 7.6, 32.1, 67.4, 0.5 -1,1,a-cure-i1,2019-20,4.7,40.4,Pittsfield - Allendale,02360010, 9.8, 2.2, 16.7, 59.6, 0.3, 0.0, 11.4, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2019-20,3.1,52.2,Pittsfield - Crosby,02360065, 13.1, 0.3, 24.9, 47.8, 1.0, 0.0, 12.9, 57.6, 42.4, 0.0 -2.7675675675675677,2.77,a-cure-i1,2019-20,6.4,37.0,Pittsfield - Egremont,02360035, 7.8, 1.6, 17.7, 63.0, 0.0, 0.0, 9.9, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,3.7,35.8,Pittsfield - John T Reid Middle,02360305, 13.1, 0.8, 11.8, 64.2, 0.4, 0.0, 9.7, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,57.6,Pittsfield - Morningside Community School,02360055, 12.8, 0.0, 28.8, 42.4, 0.3, 0.0, 15.8, 48.9, 51.1, 0.0 -4.37299035369775,4.37,a-cure-i1,2019-20,8.5,31.099999999999994,Pittsfield - Pittsfield High,02360505, 10.9, 2.1, 13.4, 68.9, 0.1, 0.0, 4.6, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.799999999999997,Pittsfield - Robert T. Capeless Elementary School,02360045, 3.1, 1.0, 6.2, 78.2, 0.5, 0.0, 10.9, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,3.4,61.8,Pittsfield - Silvio O Conte Community,02360105, 19.7, 0.6, 25.9, 38.2, 0.3, 0.0, 15.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.400000000000006,Pittsfield - Stearns,02360090, 2.6, 0.9, 8.3, 79.6, 0.4, 0.0, 8.3, 57.0, 43.0, 0.0 -4.208219178082191,4.21,a-cure-i1,2019-20,9.6,36.5,Pittsfield - Taconic High,02360510, 14.0, 1.1, 12.4, 63.5, 0.1, 0.0, 8.9, 50.2, 49.6, 0.1 -3.790769230769231,3.79,a-cure-i1,2019-20,7.7,32.5,Pittsfield - Theodore Herberg Middle,02360310, 10.6, 1.5, 13.9, 67.5, 0.2, 0.0, 6.3, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.700000000000003,Pittsfield - Williams,02360100, 7.6, 4.3, 7.6, 74.3, 0.0, 0.7, 5.4, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.599999999999994,Plainville - Anna Ware Jackson,02380010, 4.8, 4.1, 6.4, 81.4, 0.0, 0.0, 3.3, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.0,Plainville - Beatrice H Wood Elementary,02380005, 3.8, 3.4, 10.0, 80.0, 0.3, 0.0, 2.4, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.5,Plymouth - Cold Spring,02390005, 2.4, 3.3, 12.4, 78.5, 0.0, 0.0, 3.3, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.799999999999997,Plymouth - Federal Furnace School,02390011, 6.4, 0.8, 6.7, 80.2, 0.0, 0.0, 5.8, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,37.9,Plymouth - Hedge,02390010, 2.9, 2.3, 25.3, 62.1, 0.0, 0.0, 7.5, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2019-20,3.1,9.099999999999994,Plymouth - Indian Brook,02390012, 1.1, 0.4, 3.3, 90.9, 0.0, 0.0, 4.4, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.0,Plymouth - Manomet Elementary,02390015, 1.1, 0.0, 2.6, 92.0, 0.0, 0.0, 4.4, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.400000000000006,Plymouth - Nathaniel Morton Elementary,02390030, 0.9, 0.9, 6.7, 85.6, 0.2, 0.0, 5.8, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,3.8,17.700000000000003,Plymouth - Plymouth Commun Intermediate,02390405, 2.7, 1.5, 8.9, 82.3, 0.1, 0.1, 4.4, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.799999999999997,Plymouth - Plymouth Early Childhood Center,02390003, 2.1, 1.6, 5.3, 86.2, 0.5, 0.0, 4.2, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2019-20,1.1,15.299999999999997,Plymouth - Plymouth North High,02390505, 2.6, 1.7, 6.7, 84.7, 0.2, 0.0, 4.2, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,2.5,9.200000000000003,Plymouth - Plymouth South High,02390515, 1.1, 1.0, 3.2, 90.8, 0.3, 0.0, 3.4, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,2.4,8.0,Plymouth - Plymouth South Middle,02390305, 1.0, 0.4, 3.3, 92.0, 0.3, 0.0, 3.0, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,2.6,13.599999999999994,Plymouth - South Elementary,02390046, 1.6, 0.5, 4.8, 86.4, 0.6, 0.2, 5.9, 55.1, 44.9, 0.0 -1,1,a-cure-i1,2019-20,3.6,17.0,Plymouth - West Elementary,02390047, 3.4, 1.1, 5.7, 83.0, 0.0, 0.0, 6.6, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,2.700000000000003,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.4, 97.3, 0.0, 0.5, 0.9, 53.2, 46.8, 0.0 -5.076746849942726,5,a-cure-i1,2019-20,27.7,87.3,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 55.5, 7.9, 20.1, 12.7, 0.3, 0.2, 3.3, 50.1, 49.9, 0.0 -2.0634920634920637,2.06,a-cure-i1,2019-20,6.5,50.4,Provincetown - Provincetown Schools,02420020, 26.0, 0.0, 16.0, 49.6, 0.0, 0.0, 8.4, 42.7, 57.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.299999999999997,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 11.3, 86.7, 1.0, 0.0, 1.0, 59.1, 40.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.099999999999994,Quabbin - Hubbardston Center,07530010, 0.3, 1.3, 4.5, 92.9, 0.0, 0.0, 1.0, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.900000000000006,Quabbin - New Braintree Grade,07530020, 2.2, 0.0, 6.5, 89.1, 0.0, 0.0, 2.2, 50.0, 50.0, 0.0 -22.970297029702984,5,a-cure-i1,2019-20,14.5,10.099999999999994,Quabbin - Oakham Center,07530025, 0.7, 0.0, 8.1, 89.9, 0.0, 0.0, 1.3, 42.3, 57.7, 0.0 -1,1,a-cure-i1,2019-20,4.5,8.200000000000003,Quabbin - Quabbin Regional High School,07530505, 1.0, 1.0, 3.9, 91.8, 0.0, 0.0, 2.4, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.799999999999997,Quabbin - Quabbin Regional Middle School,07530405, 1.4, 1.6, 5.2, 90.2, 0.3, 0.0, 1.4, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.099999999999994,Quabbin - Ruggles Lane,07530030, 1.3, 0.9, 5.1, 89.9, 0.0, 0.4, 2.4, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.099999999999994,Quaboag Regional - Quaboag Regional High,07780505, 0.6, 0.3, 7.1, 88.9, 0.0, 0.0, 3.1, 48.9, 50.9, 0.3 -1,1,a-cure-i1,2019-20,0.0,10.599999999999994,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 1.1, 0.0, 5.0, 89.4, 0.0, 0.0, 4.4, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.599999999999994,Quaboag Regional - Warren Elementary,07780005, 1.0, 0.2, 8.4, 84.4, 0.0, 0.0, 6.0, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.299999999999997,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.4, 6.8, 89.7, 0.0, 0.0, 3.2, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,66.1,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 8.7, 41.5, 9.8, 33.9, 0.5, 0.0, 5.5, 59.6, 40.4, 0.0 -1,1,a-cure-i1,2019-20,0.9,29.5,Quincy - Atherton Hough,02430040, 4.0, 16.2, 6.5, 70.5, 0.0, 0.0, 2.9, 56.1, 43.9, 0.0 -2.211180124223602,2.21,a-cure-i1,2019-20,8.9,64.4,Quincy - Atlantic Middle,02430305, 3.5, 54.1, 3.7, 35.6, 0.0, 0.5, 2.5, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,4.5,56.5,Quincy - Beechwood Knoll Elementary,02430020, 2.5, 50.3, 2.0, 43.5, 0.0, 0.3, 1.4, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,1.4,37.2,Quincy - Broad Meadows Middle,02430310, 9.9, 15.9, 8.5, 62.8, 0.6, 0.0, 2.3, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,52.2,Quincy - Central Middle,02430315, 2.6, 42.2, 3.7, 47.8, 0.0, 0.8, 3.0, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,44.9,Quincy - Charles A Bernazzani Elementary,02430025, 3.3, 30.1, 5.1, 55.1, 0.0, 0.3, 6.3, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,70.2,Quincy - Clifford H Marshall Elementary,02430055, 15.3, 42.6, 11.4, 29.8, 0.0, 0.0, 0.9, 46.5, 53.5, 0.0 -5.171503957783641,5,a-cure-i1,2019-20,24.5,75.8,Quincy - Francis W Parker,02430075, 5.6, 62.4, 5.6, 24.2, 0.0, 0.3, 1.9, 59.3, 40.7, 0.0 -1,1,a-cure-i1,2019-20,3.3,62.9,Quincy - Lincoln-Hancock Community School,02430035, 10.7, 36.2, 8.8, 37.1, 0.9, 0.4, 5.8, 49.9, 50.1, 0.0 -2.0594059405940595,2.06,a-cure-i1,2019-20,5.2,40.4,Quincy - Merrymount,02430060, 4.9, 26.1, 5.7, 59.6, 0.3, 0.9, 2.6, 51.9, 48.1, 0.0 -1.431578947368421,1.43,a-cure-i1,2019-20,6.8,76.0,Quincy - Montclair,02430065, 2.7, 64.2, 6.1, 24.0, 0.0, 0.0, 2.9, 48.3, 51.7, 0.0 -2.804878048780488,2.8,a-cure-i1,2019-20,11.5,65.6,Quincy - North Quincy High,02430510, 3.6, 55.6, 4.1, 34.4, 0.2, 0.1, 2.0, 52.1, 47.9, 0.1 -1,1,a-cure-i1,2019-20,3.2,71.3,Quincy - Point Webster Middle,02430325, 13.6, 39.7, 12.1, 28.7, 0.0, 1.2, 4.7, 52.3, 47.7, 0.0 -2.7061310782241015,2.71,a-cure-i1,2019-20,8.0,47.3,Quincy - Quincy High,02430505, 11.5, 23.3, 8.4, 52.7, 0.3, 0.3, 3.6, 50.6, 49.4, 0.1 -1,1,a-cure-i1,2019-20,0.6,67.1,Quincy - Snug Harbor Community School,02430090, 8.4, 37.6, 14.9, 32.9, 0.2, 0.0, 5.9, 57.4, 42.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,58.2,Quincy - South West Middle School,02430320, 12.0, 27.8, 12.2, 41.8, 0.3, 0.5, 5.4, 60.7, 39.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,40.5,Quincy - Squantum,02430095, 4.7, 30.0, 3.0, 59.5, 0.3, 0.0, 2.5, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,66.9,Quincy - Wollaston School,02430110, 1.5, 60.8, 1.7, 33.1, 0.0, 0.6, 2.3, 49.4, 50.6, 0.0 -5.211428571428571,5,a-cure-i1,2019-20,5.699999999999999,17.5,Ralph C Mahar - Ralph C Mahar Regional,07550505, 2.4, 1.6, 8.6, 82.5, 0.3, 0.2, 4.5, 52.5, 47.5, 0.0 -1.02291917973462,1.02,a-cure-i1,2019-20,5.3,82.9,Randolph - Elizabeth G Lyons Elementary,02440020, 50.7, 10.2, 12.8, 17.1, 0.3, 0.0, 8.9, 55.3, 44.7, 0.0 -1.1021814006888635,1.1,a-cure-i1,2019-20,6.0,87.1,Randolph - J F Kennedy Elementary,02440018, 51.2, 14.8, 14.3, 12.9, 0.2, 0.2, 6.4, 53.8, 46.2, 0.0 -3.152348224513173,3.15,a-cure-i1,2019-20,17.2,87.3,Randolph - Margaret L Donovan,02440015, 47.1, 23.8, 13.6, 12.7, 0.5, 0.0, 2.5, 50.9, 49.1, 0.0 -0.9799554565701559,1,a-cure-i1,2019-20,5.5,89.8,Randolph - Martin E Young Elementary,02440040, 40.9, 13.3, 28.4, 10.2, 1.1, 0.0, 6.1, 55.7, 44.3, 0.0 -4.716763005780347,4.72,a-cure-i1,2019-20,25.500000000000004,86.5,Randolph - Randolph Community Middle,02440410, 47.9, 16.9, 17.0, 13.5, 0.2, 0.2, 4.3, 53.4, 46.6, 0.0 -3.860262008733625,3.86,a-cure-i1,2019-20,22.1,91.6,Randolph - Randolph High,02440505, 55.1, 18.8, 13.7, 8.4, 0.0, 0.5, 3.5, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.599999999999994,Reading - Alice M Barrows,02460002, 1.3, 3.9, 2.6, 89.4, 0.0, 0.0, 2.9, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,3.5,9.0,Reading - Arthur W Coolidge Middle,02460305, 1.9, 2.6, 1.7, 91.0, 0.0, 0.2, 2.6, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.900000000000006,Reading - Birch Meadow,02460005, 2.1, 3.9, 3.1, 89.1, 0.0, 0.0, 1.8, 55.5, 44.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.0,Reading - J Warren Killam,02460017, 1.9, 7.0, 2.7, 87.0, 0.0, 0.0, 1.4, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2019-20,4.8,22.5,Reading - Joshua Eaton,02460010, 3.2, 8.2, 5.4, 77.5, 0.2, 0.0, 5.4, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,2.7,11.799999999999997,Reading - Reading Memorial High,02460505, 2.2, 5.4, 2.4, 88.2, 0.2, 0.0, 1.6, 50.1, 49.8, 0.2 -1,1,a-cure-i1,2019-20,0.0,13.299999999999997,Reading - RISE PreSchool,02460001, 1.0, 3.8, 3.8, 86.7, 0.0, 0.0, 4.8, 63.8, 36.2, 0.0 -1,1,a-cure-i1,2019-20,2.7,18.0,Reading - Walter S Parker Middle,02460310, 4.0, 7.0, 4.6, 82.0, 0.2, 0.0, 2.2, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.200000000000003,Reading - Wood End Elementary School,02460020, 2.6, 3.3, 2.6, 87.8, 0.0, 0.0, 3.6, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,57.4,Revere - A. C. Whelan Elementary School,02480003, 2.5, 4.3, 48.5, 42.6, 0.0, 0.1, 2.0, 53.7, 46.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,59.5,Revere - Abraham Lincoln,02480025, 4.0, 3.5, 50.5, 40.5, 0.2, 0.0, 1.3, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,60.0,Revere - Beachmont Veterans Memorial School,02480013, 3.4, 2.9, 52.3, 40.0, 0.3, 0.0, 1.1, 58.6, 41.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,76.8,Revere - Garfield Elementary School,02480056, 2.7, 5.2, 66.5, 23.2, 0.1, 0.0, 2.2, 51.4, 48.4, 0.1 -2.1872213967310548,2.19,a-cure-i1,2019-20,9.2,67.3,Revere - Garfield Middle School,02480057, 3.7, 4.5, 57.8, 32.7, 0.2, 0.0, 1.2, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,60.3,Revere - Paul Revere,02480050, 2.6, 5.6, 49.5, 39.7, 0.2, 0.0, 2.4, 47.9, 52.1, 0.0 -3.250720461095101,3.25,a-cure-i1,2019-20,14.100000000000001,69.4,Revere - Revere High,02480505, 3.6, 5.5, 57.6, 30.6, 0.7, 0.0, 2.0, 51.1, 48.7, 0.1 -1,1,a-cure-i1,2019-20,4.4,67.4,Revere - Rumney Marsh Academy,02480014, 4.0, 5.0, 54.7, 32.6, 0.3, 0.0, 3.4, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,66.2,Revere - Seacoast School,02480520, 3.1, 0.0, 61.5, 33.8, 0.0, 0.0, 1.5, 63.1, 36.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,75.1,Revere - Staff Sargent James J. Hill Elementary School,02480035, 2.4, 4.2, 66.5, 24.9, 0.1, 0.0, 1.9, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,70.0,Revere - Susan B. Anthony Middle School,02480305, 3.2, 2.3, 63.8, 30.0, 0.0, 0.0, 0.8, 45.2, 54.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.599999999999994,Richmond - Richmond Consolidated,02490005, 1.2, 0.0, 7.6, 85.4, 0.0, 0.0, 5.8, 51.5, 48.5, 0.0 -15.999999999999996,5,a-cure-i1,2019-20,13.7,13.700000000000003,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.9, 1.5, 3.7, 86.3, 1.1, 0.0, 6.5, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.5,River Valley Charter (District) - River Valley Charter School,04820050, 0.7, 2.8, 4.9, 87.5, 0.3, 0.0, 3.8, 44.1, 55.6, 0.3 -1,1,a-cure-i1,2019-20,3.3,7.900000000000006,Rochester - Rochester Memorial,02500005, 0.4, 0.0, 2.4, 92.1, 0.0, 0.2, 4.9, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.0,Rockland - Jefferson Elementary School,02510060, 6.2, 2.6, 16.1, 70.0, 0.0, 0.0, 5.1, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.5,Rockland - John W Rogers Middle,02510305, 6.8, 1.2, 16.9, 71.5, 0.0, 0.0, 3.5, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.299999999999997,Rockland - Memorial Park,02510020, 4.5, 0.3, 20.3, 69.7, 0.0, 0.0, 5.2, 47.9, 52.1, 0.0 -5.079365079365079,5,a-cure-i1,2019-20,8.0,25.200000000000003,Rockland - R Stewart Esten,02510025, 8.7, 0.9, 11.8, 74.8, 0.0, 0.0, 3.7, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2019-20,4.6,23.900000000000006,Rockland - Rockland Senior High,02510505, 4.6, 0.9, 14.0, 76.1, 0.0, 0.0, 4.4, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,3.5,Rockport - Rockport Elementary,02520005, 1.3, 1.9, 0.3, 96.5, 0.0, 0.0, 0.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.099999999999994,Rockport - Rockport High,02520510, 1.5, 1.5, 2.7, 93.9, 0.0, 0.0, 0.4, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.099999999999994,Rockport - Rockport Middle,02520305, 1.4, 1.9, 1.9, 94.9, 0.0, 0.0, 0.0, 53.7, 46.3, 0.0 -14.014598540145982,5,a-cure-i1,2019-20,12.0,13.700000000000003,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 4.1, 86.3, 0.0, 0.0, 9.6, 54.8, 45.2, 0.0 -6.905775075987841,5,a-cure-i1,2019-20,42.599999999999994,98.7,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 57.7, 0.7, 39.2, 1.3, 0.3, 0.4, 0.4, 52.7, 47.3, 0.0 -2.229346485819976,2.23,a-cure-i1,2019-20,11.3,81.1,Sabis International Charter (District) - Sabis International Charter School,04410505, 28.1, 4.1, 42.9, 18.9, 0.0, 0.0, 5.8, 49.7, 50.3, 0.0 -1.7627118644067794,1.76,a-cure-i1,2019-20,5.199999999999999,47.2,Salem - Bates,02580003, 7.9, 1.8, 32.9, 52.8, 0.0, 0.0, 4.6, 50.3, 49.7, 0.0 -8.36697247706422,5,a-cure-i1,2019-20,22.8,43.6,Salem - Carlton,02580015, 4.0, 0.4, 32.8, 56.4, 0.0, 0.0, 6.4, 49.6, 50.4, 0.0 -4.478920741989882,4.48,a-cure-i1,2019-20,16.6,59.3,Salem - Collins Middle,02580305, 7.8, 3.6, 43.8, 40.7, 0.0, 0.0, 4.2, 52.2, 47.8, 0.0 -1.4930015552099534,1.49,a-cure-i1,2019-20,6.0,64.3,Salem - Horace Mann Laboratory,02580030, 5.5, 4.5, 49.4, 35.7, 0.0, 0.0, 4.9, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,61.2,Salem - New Liberty Innovation School,02580510, 6.1, 0.0, 51.0, 38.8, 0.0, 0.0, 4.1, 44.9, 55.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,38.5,Salem - Salem Early Childhood,02580001, 6.3, 8.3, 20.8, 61.5, 0.0, 0.0, 3.1, 69.8, 30.2, 0.0 -1.9112627986348123,1.91,a-cure-i1,2019-20,7.0,58.6,Salem - Salem High,02580505, 5.1, 2.8, 46.2, 41.4, 0.1, 0.0, 4.4, 54.3, 45.7, 0.0 -7.594936708860761,5,a-cure-i1,2019-20,15.0,31.599999999999994,Salem - Salem Prep High School,02580515, 0.0, 5.3, 26.3, 68.4, 0.0, 0.0, 0.0, 73.7, 26.3, 0.0 -1,1,a-cure-i1,2019-20,2.9000000000000004,52.4,Salem - Saltonstall School,02580050, 5.1, 2.9, 39.5, 47.6, 0.0, 0.0, 4.9, 48.5, 51.5, 0.0 -1.9402460456942006,1.94,a-cure-i1,2019-20,6.9,56.9,Salem - Witchcraft Heights,02580070, 8.1, 4.4, 38.8, 43.1, 0.0, 0.0, 5.5, 49.5, 50.5, 0.0 -3.789473684210526,3.79,a-cure-i1,2019-20,14.399999999999999,60.8,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 10.1, 5.7, 43.0, 39.2, 0.0, 0.0, 2.0, 48.7, 51.1, 0.2 -1,1,a-cure-i1,2019-20,0.0,10.599999999999994,Sandwich - Forestdale School,02610002, 1.2, 2.9, 4.9, 89.4, 0.3, 0.2, 1.2, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.400000000000006,Sandwich - Oak Ridge,02610025, 1.2, 2.5, 3.0, 91.6, 0.4, 0.3, 1.0, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,3.7,5.799999999999997,Sandwich - Sandwich High,02610505, 0.6, 2.1, 1.7, 94.2, 1.1, 0.2, 0.2, 48.6, 51.4, 0.0 -23.510204081632626,5,a-cure-i1,2019-20,7.2,4.900000000000006,Sandwich - Sandwich STEM Academy,02610305, 1.1, 1.1, 1.3, 95.1, 0.2, 0.0, 1.1, 48.9, 50.9, 0.2 -1,1,a-cure-i1,2019-20,2.0,34.0,Saugus - Belmonte Saugus Middle,02620305, 5.5, 4.4, 20.9, 66.0, 0.5, 0.8, 2.0, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.200000000000003,Saugus - Douglas Waybright,02620067, 3.2, 4.8, 18.0, 69.8, 0.5, 0.0, 3.7, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,38.3,Saugus - Lynnhurst,02620040, 3.8, 10.0, 22.8, 61.7, 1.4, 0.3, 0.0, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,44.9,Saugus - Oaklandvale,02620050, 5.9, 6.3, 25.0, 55.1, 2.3, 0.0, 5.5, 50.0, 50.0, 0.0 -3.9075907590759082,3.91,a-cure-i1,2019-20,7.4,30.299999999999997,Saugus - Saugus High,02620505, 5.7, 4.5, 17.9, 69.7, 0.6, 0.1, 1.6, 51.7, 48.2, 0.1 -3.1999999999999997,3.2,a-cure-i1,2019-20,5.8,29.0,Saugus - Veterans Memorial,02620065, 4.8, 3.9, 16.8, 71.0, 0.6, 0.0, 3.0, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.900000000000006,Savoy - Emma L Miller Elementary School,02630010, 3.4, 0.0, 3.4, 93.1, 0.0, 0.0, 0.0, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.299999999999997,Scituate - Cushing Elementary,02640007, 2.1, 0.9, 1.5, 91.7, 0.6, 0.0, 3.2, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,2.2,6.599999999999994,Scituate - Gates Middle School,02640305, 2.7, 0.8, 2.0, 93.4, 0.0, 0.0, 1.2, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.599999999999994,Scituate - Hatherly Elementary,02640010, 1.1, 0.0, 1.9, 94.4, 0.0, 0.0, 2.6, 55.2, 44.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.0,Scituate - Jenkins Elementary School,02640015, 2.6, 0.0, 4.1, 90.0, 0.0, 0.0, 3.2, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,2.7,6.900000000000006,Scituate - Scituate High School,02640505, 2.8, 1.7, 1.0, 93.1, 0.0, 0.0, 1.4, 48.2, 51.7, 0.1 -1,1,a-cure-i1,2019-20,0.0,8.099999999999994,Scituate - Wampatuck Elementary,02640020, 2.3, 0.2, 3.0, 91.9, 0.0, 0.0, 2.5, 51.2, 48.8, 0.0 -5.3975903614457845,5,a-cure-i1,2019-20,5.6,16.599999999999994,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 2.3, 4.5, 5.3, 83.4, 0.0, 0.0, 4.5, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2019-20,3.7,15.799999999999997,Seekonk - George R Martin,02650007, 2.6, 3.0, 5.5, 84.2, 0.0, 0.0, 4.7, 46.0, 54.0, 0.0 -1,1,a-cure-i1,2019-20,4.3,13.299999999999997,Seekonk - Mildred Aitken School,02650015, 1.7, 2.6, 5.9, 86.7, 0.0, 0.0, 3.0, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,2.5,13.0,Seekonk - Seekonk High,02650505, 1.8, 3.5, 5.0, 87.0, 0.0, 0.2, 2.5, 50.0, 50.0, 0.0 -2.9989350372736956,3.0,a-cure-i1,2019-20,17.6,93.9,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 46.2, 0.1, 45.1, 6.1, 0.0, 0.0, 2.4, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,48.6,Sharon - Cottage Street,02660005, 5.2, 28.1, 6.4, 51.4, 0.2, 0.2, 8.5, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,47.2,Sharon - East Elementary,02660010, 5.3, 28.9, 5.6, 52.8, 0.0, 0.0, 7.3, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,3.2,48.6,Sharon - Heights Elementary,02660015, 3.6, 32.4, 5.6, 51.4, 0.0, 0.0, 7.0, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,53.2,Sharon - Sharon Early Childhood Center,02660001, 6.4, 40.4, 2.1, 46.8, 0.0, 0.0, 4.3, 59.6, 40.4, 0.0 -2.0091324200913245,2.01,a-cure-i1,2019-20,5.5,43.8,Sharon - Sharon High,02660505, 6.0, 27.8, 5.5, 56.2, 0.1, 0.2, 4.2, 52.5, 47.5, 0.1 -1.9285714285714288,1.93,a-cure-i1,2019-20,5.4,44.8,Sharon - Sharon Middle,02660305, 3.9, 30.5, 4.9, 55.2, 0.1, 0.0, 5.4, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,1.8,9.200000000000003,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.0, 0.9, 5.3, 90.8, 0.2, 0.0, 1.8, 59.7, 40.3, 0.0 -1,1,a-cure-i1,2019-20,3.0,18.400000000000006,Sherborn - Pine Hill,02690010, 2.7, 8.2, 3.1, 81.6, 0.0, 0.0, 4.4, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,2.5,67.4,Shrewsbury - Beal School,02710005, 3.8, 53.2, 6.0, 32.6, 0.9, 0.0, 3.5, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,59.3,Shrewsbury - Calvin Coolidge,02710015, 4.1, 33.9, 15.4, 40.7, 1.0, 0.0, 4.9, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,3.0,65.2,Shrewsbury - Floral Street School,02710020, 3.9, 48.2, 8.0, 34.8, 1.0, 0.0, 4.1, 53.4, 46.6, 0.0 -2.546236559139785,2.55,a-cure-i1,2019-20,7.4,46.5,Shrewsbury - Oak Middle School,02710030, 3.5, 29.9, 9.4, 53.5, 0.2, 0.0, 3.5, 52.2, 47.8, 0.0 -1.8394160583941606,1.84,a-cure-i1,2019-20,6.3,54.8,Shrewsbury - Parker Road Preschool,02710040, 3.9, 42.2, 4.8, 45.2, 0.9, 0.0, 3.0, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2019-20,3.5999999999999996,50.0,Shrewsbury - Sherwood Middle School,02710305, 2.3, 33.5, 9.5, 50.0, 0.4, 0.0, 4.4, 49.9, 50.1, 0.0 -2.357487922705314,2.36,a-cure-i1,2019-20,6.1,41.4,Shrewsbury - Shrewsbury Sr High,02710505, 3.0, 26.3, 8.5, 58.6, 0.4, 0.0, 3.3, 47.3, 52.6, 0.1 -1,1,a-cure-i1,2019-20,0.0,38.9,Shrewsbury - Spring Street,02710035, 2.0, 26.1, 4.5, 61.1, 0.3, 0.0, 6.0, 51.4, 48.6, 0.0 -2.706948640483384,2.71,a-cure-i1,2019-20,5.6,33.099999999999994,Shrewsbury - Walter J Paton,02710025, 2.3, 20.6, 6.8, 66.9, 0.3, 0.0, 3.1, 47.7, 52.3, 0.0 -12.521739130434788,5,a-cure-i1,2019-20,12.600000000000001,16.099999999999994,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.8, 8.1, 83.9, 0.8, 0.0, 6.5, 41.1, 58.9, 0.0 -1,1,a-cure-i1,2019-20,2.4,5.400000000000006,Silver Lake - Silver Lake Regional High,07600505, 1.7, 1.1, 1.8, 94.6, 0.2, 0.1, 0.6, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.099999999999994,Silver Lake - Silver Lake Regional Middle School,07600405, 1.4, 1.2, 3.2, 91.9, 0.4, 0.2, 1.8, 50.6, 49.4, 0.0 -5.08868501529052,5,a-cure-i1,2019-20,10.4,32.7,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 5.4, 1.4, 22.8, 67.3, 0.3, 0.3, 2.5, 55.2, 44.5, 0.3 -1,1,a-cure-i1,2019-20,0.0,9.200000000000003,Somerset - Chace Street,02730005, 0.3, 2.3, 4.3, 90.8, 0.0, 0.0, 2.3, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.5,Somerset - North Elementary,02730008, 0.4, 0.8, 3.7, 91.5, 0.0, 0.0, 3.5, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.700000000000003,Somerset - Somerset Middle School,02730305, 1.4, 0.5, 5.7, 90.3, 0.3, 0.0, 1.8, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.799999999999997,Somerset - South,02730015, 1.5, 2.7, 3.9, 89.2, 0.8, 0.0, 1.9, 47.5, 52.5, 0.0 -1,1,a-cure-i1,2019-20,1.3,8.299999999999997,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 1.3, 1.2, 4.3, 91.7, 0.2, 0.2, 1.2, 51.4, 48.6, 0.0 -2.0,2.0,a-cure-i1,2019-20,7.0,56.0,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 4.3, 8.6, 38.2, 44.0, 0.3, 0.0, 4.5, 50.1, 49.9, 0.0 -4.791208791208792,4.79,a-cure-i1,2019-20,21.8,72.8,Somerville - Arthur D Healey,02740075, 15.2, 6.3, 47.5, 27.2, 0.0, 0.0, 3.8, 49.8, 50.0, 0.2 -1,1,a-cure-i1,2019-20,0.0,33.3,Somerville - Benjamin G Brown,02740015, 4.8, 11.2, 6.8, 66.7, 0.0, 0.4, 10.0, 43.4, 56.6, 0.0 -1,1,a-cure-i1,2019-20,4.4,61.3,Somerville - Capuano Early Childhood Center,02740005, 8.5, 12.8, 33.3, 38.7, 0.0, 0.0, 6.7, 55.0, 45.0, 0.0 -5.796226415094339,5,a-cure-i1,2019-20,28.799999999999997,79.5,Somerville - E Somerville Community,02740111, 4.0, 3.7, 69.5, 20.5, 0.1, 0.1, 2.1, 53.7, 46.3, 0.0 -1.7045454545454544,1.7,a-cure-i1,2019-20,7.5,70.4,Somerville - Full Circle High School,02740510, 16.7, 1.9, 51.9, 29.6, 0.0, 0.0, 0.0, 70.4, 29.6, 0.0 -7.562700964630226,5,a-cure-i1,2019-20,14.7,31.099999999999994,Somerville - John F Kennedy,02740083, 6.3, 4.0, 15.7, 68.9, 0.0, 0.0, 5.1, 54.8, 45.2, 0.0 -1.972132904608789,1.97,a-cure-i1,2019-20,11.5,93.3,Somerville - Next Wave Junior High,02740410, 13.3, 6.7, 73.3, 6.7, 0.0, 0.0, 0.0, 86.7, 13.3, 0.0 -4.980910425844347,4.98,a-cure-i1,2019-20,21.2,68.1,Somerville - Somerville High,02740505, 12.7, 6.2, 47.2, 31.9, 0.0, 0.2, 1.8, 52.5, 47.2, 0.2 -4.116504854368932,4.12,a-cure-i1,2019-20,10.6,41.2,Somerville - West Somerville Neighborhood,02740115, 12.4, 4.3, 15.7, 58.8, 0.0, 0.3, 8.6, 51.5, 48.2, 0.3 -3.3799725651577504,3.38,a-cure-i1,2019-20,15.4,72.9,Somerville - Winter Hill Community,02740120, 12.5, 6.6, 51.9, 27.1, 0.0, 0.0, 1.8, 55.4, 44.4, 0.2 -1,1,a-cure-i1,2019-20,0.0,21.200000000000003,South Hadley - Michael E. Smith Middle School,02780305, 1.6, 2.5, 15.5, 78.8, 0.2, 0.0, 1.4, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,4.2,20.299999999999997,South Hadley - Mosier,02780020, 1.2, 1.2, 15.8, 79.7, 0.0, 0.0, 2.1, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.599999999999994,South Hadley - Plains Elementary,02780015, 3.1, 2.8, 16.2, 74.4, 0.0, 0.0, 3.4, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,2.1,19.0,South Hadley - South Hadley High,02780505, 2.1, 2.3, 11.8, 81.0, 0.0, 0.2, 2.6, 47.2, 52.5, 0.4 -1,1,a-cure-i1,2019-20,4.5,55.6,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 5.9, 0.9, 43.4, 44.4, 2.0, 0.0, 3.4, 59.6, 40.4, 0.0 -4.071005917159763,4.07,a-cure-i1,2019-20,12.9,50.7,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 32.2, 5.6, 4.1, 49.3, 0.3, 0.2, 8.4, 51.7, 48.0, 0.3 -1,1,a-cure-i1,2019-20,2.0,10.700000000000003,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 1.7, 1.1, 5.2, 89.3, 0.3, 0.0, 2.4, 68.8, 31.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.200000000000003,Southampton - William E Norris,02750005, 0.2, 1.6, 4.7, 89.8, 0.2, 0.0, 3.5, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.2,Southborough - Albert S. Woodward Memorial School,02760050, 0.4, 20.5, 3.5, 67.8, 0.4, 0.0, 7.4, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,31.299999999999997,Southborough - Margaret A Neary,02760020, 1.5, 18.3, 4.5, 68.7, 0.0, 0.0, 7.1, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.0,Southborough - Mary E Finn School,02760008, 2.4, 20.9, 5.0, 67.0, 0.9, 0.6, 3.2, 56.3, 43.7, 0.0 -2.983922829581994,2.98,a-cure-i1,2019-20,5.8,31.099999999999994,Southborough - P Brent Trottier,02760305, 0.7, 17.1, 7.7, 68.9, 0.0, 0.0, 5.5, 52.3, 47.7, 0.0 -2.5925925925925926,2.59,a-cure-i1,2019-20,10.5,64.8,Southbridge - Charlton Street,02770005, 2.9, 0.7, 59.3, 35.2, 0.4, 0.0, 1.5, 49.1, 50.9, 0.0 -3.2721804511278196,3.27,a-cure-i1,2019-20,13.6,66.5,Southbridge - Eastford Road,02770010, 0.8, 1.9, 62.1, 33.5, 0.3, 0.3, 1.1, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,61.3,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 51.6, 38.7, 0.0, 0.0, 9.7, 67.7, 32.3, 0.0 -1.7856093979441998,1.79,a-cure-i1,2019-20,7.6,68.1,Southbridge - Southbridge High School,02770515, 1.8, 1.3, 63.4, 31.9, 0.2, 0.2, 1.1, 53.7, 46.3, 0.0 -1.8199052132701423,1.82,a-cure-i1,2019-20,7.2,63.3,Southbridge - Southbridge Middle School,02770315, 2.8, 2.1, 55.5, 36.7, 0.2, 0.0, 2.8, 51.7, 48.3, 0.0 -2.2641509433962264,2.26,a-cure-i1,2019-20,9.0,63.6,Southbridge - West Street,02770020, 1.3, 0.6, 60.8, 36.4, 0.0, 0.0, 0.9, 50.3, 49.7, 0.0 -2.3315118397085612,2.33,a-cure-i1,2019-20,8.0,54.9,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 34.5, 1.5, 12.8, 45.1, 0.0, 0.0, 6.1, 48.8, 51.2, 0.1 -8.16551724137931,5,a-cure-i1,2019-20,7.4,14.5,Southern Berkshire - Mt Everett Regional,07650505, 1.7, 0.0, 6.7, 85.5, 0.9, 0.0, 5.2, 49.1, 50.6, 0.3 -17.84615384615384,5,a-cure-i1,2019-20,20.299999999999997,18.200000000000003,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 10.4, 81.8, 2.6, 0.0, 5.2, 51.9, 48.1, 0.0 -6.241758241758241,5,a-cure-i1,2019-20,7.1,18.200000000000003,Southern Berkshire - South Egremont,07650030, 0.0, 9.1, 9.1, 81.8, 0.0, 0.0, 0.0, 45.5, 54.5, 0.0 -1,1,a-cure-i1,2019-20,2.6,14.799999999999997,Southern Berkshire - Undermountain,07650035, 1.2, 0.0, 9.9, 85.2, 0.4, 0.0, 3.3, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2019-20,2.7,13.599999999999994,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 1.0, 0.6, 10.7, 86.4, 0.2, 0.0, 1.1, 58.3, 41.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.900000000000006,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 2.4, 0.6, 4.7, 89.1, 0.2, 0.0, 3.0, 50.4, 49.6, 0.0 -16.432432432432417,5,a-cure-i1,2019-20,7.6,7.400000000000006,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.5, 0.9, 3.4, 92.6, 0.3, 0.0, 1.3, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.099999999999994,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, 0.9, 5.3, 88.9, 0.9, 0.0, 2.0, 54.1, 45.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.099999999999994,Spencer-E Brookfield - David Prouty High,07670505, 3.4, 2.7, 12.6, 78.9, 0.8, 0.0, 1.5, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.200000000000003,Spencer-E Brookfield - East Brookfield Elementary,07670008, 1.7, 0.0, 7.9, 85.8, 0.0, 0.0, 4.6, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.799999999999997,Spencer-E Brookfield - Knox Trail Middle School,07670415, 2.7, 1.6, 12.6, 79.2, 0.2, 0.0, 3.7, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,24.0,Spencer-E Brookfield - Wire Village School,07670040, 2.5, 0.2, 17.0, 76.0, 0.0, 0.0, 4.3, 54.0, 45.8, 0.2 -2.98989898989899,2.99,a-cure-i1,2019-20,14.8,79.2,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 21.5, 0.0, 53.2, 20.8, 0.2, 0.0, 4.2, 44.0, 56.0, 0.0 -1.1262569832402234,1.13,a-cure-i1,2019-20,6.3,89.5,Springfield - Alice B Beal Elementary,02810175, 19.1, 11.7, 55.5, 10.5, 0.0, 0.0, 3.1, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,88.0,Springfield - Arthur T Talmadge,02810165, 25.8, 0.9, 57.9, 12.0, 0.0, 0.0, 3.4, 53.6, 46.4, 0.0 -4.046936114732724,4.05,a-cure-i1,2019-20,19.4,76.7,Springfield - Balliet Middle School,02810360, 26.7, 0.0, 50.0, 23.3, 0.0, 0.0, 0.0, 80.0, 20.0, 0.0 -1.9484004127966976,1.95,a-cure-i1,2019-20,11.8,96.9,Springfield - Brightwood,02810025, 16.5, 0.0, 79.6, 3.1, 0.0, 0.0, 0.8, 50.1, 49.9, 0.0 -2.269151138716356,2.27,a-cure-i1,2019-20,13.7,96.6,Springfield - Chestnut Academy,02810365, 9.4, 0.6, 86.6, 3.4, 0.0, 0.0, 0.0, 57.1, 42.9, 0.0 -10.248009101251421,5,a-cure-i1,2019-20,56.3,87.9,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 21.1, 3.8, 61.3, 12.1, 0.0, 0.0, 1.6, 48.9, 51.1, 0.0 -7.634703196347032,5,a-cure-i1,2019-20,41.8,87.6,Springfield - Conservatory of the Arts,02810475, 14.5, 0.0, 70.6, 12.4, 0.3, 0.0, 2.1, 30.3, 69.7, 0.0 -1,1,a-cure-i1,2019-20,4.2,85.4,Springfield - Daniel B Brunton,02810035, 20.9, 0.5, 59.8, 14.6, 0.5, 0.2, 3.5, 47.1, 52.9, 0.0 -4.139860139860141,4.14,a-cure-i1,2019-20,22.200000000000003,85.8,Springfield - Early Childhood Education Center,02810001, 17.2, 3.0, 62.7, 14.2, 0.6, 0.0, 2.4, 59.2, 40.8, 0.0 -2.103448275862069,2.1,a-cure-i1,2019-20,12.2,92.8,Springfield - Edward P. Boland School,02810010, 10.2, 1.7, 78.9, 7.2, 0.1, 0.1, 1.7, 60.0, 40.0, 0.0 -5.350052246603971,5,a-cure-i1,2019-20,32.0,95.7,Springfield - Elias Brookings,02810030, 20.9, 0.6, 71.1, 4.3, 0.6, 0.0, 2.5, 55.4, 44.6, 0.0 -1.867237687366167,1.87,a-cure-i1,2019-20,10.9,93.4,Springfield - Forest Park Middle,02810325, 21.4, 6.6, 63.7, 6.6, 0.0, 0.0, 1.7, 53.6, 46.4, 0.0 -5.146608315098468,5,a-cure-i1,2019-20,29.4,91.4,Springfield - Frank H Freedman,02810075, 21.7, 2.8, 62.8, 8.6, 1.0, 0.0, 3.1, 51.4, 48.6, 0.0 -2.7868453105968336,2.79,a-cure-i1,2019-20,14.3,82.1,Springfield - Frederick Harris,02810080, 17.3, 3.2, 56.3, 17.9, 0.3, 0.0, 5.0, 50.5, 49.5, 0.0 -18.285714285714285,5,a-cure-i1,2019-20,100.0,87.5,Springfield - Gateway to College at Holyoke Community College,02810575, 12.5, 3.1, 71.9, 12.5, 0.0, 0.0, 0.0, 25.0, 75.0, 0.0 -6.446376811594203,5,a-cure-i1,2019-20,27.8,69.0,Springfield - Gateway to College at Springfield Technical Community College,02810580, 23.8, 0.0, 42.9, 31.0, 0.0, 0.0, 2.4, 31.0, 69.0, 0.0 -3.0605738575982997,3.06,a-cure-i1,2019-20,18.0,94.1,Springfield - German Gerena Community School,02810195, 14.2, 0.9, 76.8, 5.9, 0.4, 0.0, 1.7, 50.5, 49.5, 0.0 -0.9625425652667424,1,a-cure-i1,2019-20,5.3,88.1,Springfield - Glenwood,02810065, 9.2, 2.3, 75.5, 11.9, 0.0, 0.0, 1.1, 54.4, 45.6, 0.0 -3.141884222474461,3.14,a-cure-i1,2019-20,17.3,88.1,Springfield - Glickman Elementary,02810068, 17.9, 2.5, 64.2, 11.9, 0.6, 0.0, 2.8, 57.9, 42.1, 0.0 -6.1287553648068664,5,a-cure-i1,2019-20,35.699999999999996,93.2,Springfield - High School Of Commerce,02810510, 19.3, 1.5, 70.8, 6.8, 0.3, 0.2, 1.2, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,88.5,Springfield - Hiram L Dorman,02810050, 17.6, 2.3, 64.9, 11.5, 0.0, 1.1, 2.7, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,4.1,94.8,Springfield - Homer Street,02810085, 25.1, 0.7, 66.1, 5.2, 0.0, 0.0, 2.9, 52.6, 47.4, 0.0 -8.64367816091954,5,a-cure-i1,2019-20,51.7,95.7,Springfield - Impact Prep at Chestnut,02810366, 12.1, 0.0, 82.8, 4.3, 0.3, 0.0, 0.5, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,2.9,88.8,Springfield - Indian Orchard Elementary,02810100, 20.5, 0.6, 64.4, 11.2, 0.2, 0.0, 3.1, 53.7, 46.3, 0.0 -7.857777777777779,5,a-cure-i1,2019-20,44.2,90.0,Springfield - John F Kennedy Middle,02810328, 20.6, 0.6, 67.6, 10.0, 0.0, 0.0, 1.2, 53.6, 46.4, 0.0 -5.947065592635212,5,a-cure-i1,2019-20,32.3,86.9,Springfield - John J Duggan Middle,02810320, 27.1, 1.9, 56.2, 13.1, 0.4, 0.0, 1.3, 52.8, 47.2, 0.0 -1.76017601760176,1.76,a-cure-i1,2019-20,10.0,90.9,Springfield - Kensington International School,02810110, 16.1, 1.4, 70.9, 9.1, 0.4, 0.0, 2.1, 48.1, 51.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,90.1,Springfield - Liberty,02810115, 12.1, 2.2, 75.1, 9.9, 0.0, 0.0, 0.7, 48.4, 51.6, 0.0 -12.823970037453181,5,a-cure-i1,2019-20,21.4,26.700000000000003,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 20.0, 73.3, 0.0, 0.0, 6.7, 93.3, 6.7, 0.0 -2.7025906735751293,2.7,a-cure-i1,2019-20,16.299999999999997,96.5,Springfield - Lincoln,02810120, 9.3, 0.3, 85.0, 3.5, 0.3, 0.0, 1.8, 47.3, 52.8, 0.0 -6.16061606160616,5,a-cure-i1,2019-20,35.0,90.9,Springfield - M Marcus Kiley Middle,02810330, 20.9, 1.9, 65.8, 9.1, 0.1, 0.0, 2.2, 55.9, 44.1, 0.0 -1.275626423690205,1.28,a-cure-i1,2019-20,7.0,87.8,Springfield - Margaret C Ells,02810060, 19.7, 1.6, 62.2, 12.2, 0.5, 0.0, 3.7, 52.7, 47.3, 0.0 -1.064087061668682,1.06,a-cure-i1,2019-20,5.5,82.7,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 17.6, 6.8, 54.2, 17.3, 0.3, 0.0, 3.9, 50.0, 50.0, 0.0 -2.3848720800889875,2.38,a-cure-i1,2019-20,13.4,89.9,Springfield - Mary M Lynch,02810140, 19.4, 1.2, 67.6, 10.1, 0.0, 0.0, 1.6, 46.2, 53.8, 0.0 -4.345454545454545,4.35,a-cure-i1,2019-20,23.9,88.0,Springfield - Mary M Walsh,02810155, 18.5, 0.0, 67.4, 12.0, 0.4, 0.0, 1.8, 50.0, 50.0, 0.0 -2.6905829596412554,2.69,a-cure-i1,2019-20,15.0,89.2,Springfield - Mary O Pottenger,02810145, 10.6, 2.1, 74.2, 10.8, 0.4, 0.0, 1.9, 51.2, 48.8, 0.0 -2.5560165975103732,2.56,a-cure-i1,2019-20,15.4,96.4,Springfield - Milton Bradley School,02810023, 16.3, 0.2, 78.2, 3.6, 0.0, 0.0, 1.7, 53.3, 46.7, 0.0 -4.622222222222223,4.62,a-cure-i1,2019-20,27.3,94.5,Springfield - Rebecca M Johnson,02810055, 26.0, 0.0, 66.3, 5.5, 0.3, 0.0, 2.0, 51.6, 48.4, 0.0 -2.55863539445629,2.56,a-cure-i1,2019-20,15.0,93.8,Springfield - Rise Academy at Van Sickle,02810480, 16.0, 0.3, 73.9, 6.2, 0.0, 0.0, 3.6, 55.0, 45.0, 0.0 -3.929824561403509,3.93,a-cure-i1,2019-20,22.400000000000002,91.2,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 19.0, 1.7, 70.0, 8.8, 0.0, 0.0, 0.6, 45.4, 54.6, 0.0 -1.9034792368125701,1.9,a-cure-i1,2019-20,10.6,89.1,Springfield - Samuel Bowles,02810020, 13.0, 0.3, 75.2, 10.9, 0.0, 0.0, 0.6, 51.9, 48.1, 0.0 -4.59244126659857,4.59,a-cure-i1,2019-20,28.1,97.9,Springfield - South End Middle School,02810355, 13.8, 0.0, 83.3, 2.1, 0.0, 0.0, 0.8, 49.8, 50.2, 0.0 -3.2325056433408577,3.23,a-cure-i1,2019-20,17.9,88.6,Springfield - Springfield Central High,02810500, 23.5, 4.7, 58.9, 11.4, 0.1, 0.0, 1.4, 53.5, 46.5, 0.0 -4.013745704467354,4.01,a-cure-i1,2019-20,21.9,87.3,Springfield - Springfield High School,02810570, 21.5, 0.0, 63.9, 12.7, 0.0, 0.0, 2.0, 55.6, 44.4, 0.0 -4.424043715846994,4.42,a-cure-i1,2019-20,25.3,91.5,Springfield - Springfield High School of Science and Technology,02810530, 17.6, 1.7, 70.8, 8.5, 0.1, 0.2, 1.1, 55.7, 44.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,88.0,Springfield - Springfield International Academy at Johnson,02810215, 40.0, 0.0, 48.0, 12.0, 0.0, 0.0, 0.0, 44.0, 56.0, 0.0 -4.669387755102041,4.67,a-cure-i1,2019-20,28.6,98.0,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.9, 3.9, 88.2, 2.0, 0.0, 0.0, 0.0, 80.4, 19.6, 0.0 -6.442477876106194,5,a-cure-i1,2019-20,36.4,90.4,Springfield - Springfield Public Day Elementary School,02810005, 19.2, 0.0, 71.2, 9.6, 0.0, 0.0, 0.0, 86.5, 13.5, 0.0 -7.1912087912087905,5,a-cure-i1,2019-20,40.9,91.0,Springfield - Springfield Public Day High School,02810550, 20.5, 0.0, 70.5, 9.0, 0.0, 0.0, 0.0, 80.8, 19.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,93.6,Springfield - Springfield Public Day Middle School,02810345, 23.4, 0.0, 66.0, 6.4, 0.0, 0.0, 4.3, 85.1, 14.9, 0.0 -1,1,a-cure-i1,2019-20,3.5,90.7,Springfield - Springfield Vocational Academy,02810675, 20.6, 3.7, 65.4, 9.3, 0.0, 0.0, 0.9, 60.7, 39.3, 0.0 -2.9454545454545453,2.95,a-cure-i1,2019-20,16.2,88.0,Springfield - STEM Middle Academy,02810350, 17.5, 2.6, 65.7, 12.0, 0.0, 0.0, 2.2, 56.9, 43.1, 0.0 -2.734739178690344,2.73,a-cure-i1,2019-20,15.4,90.1,Springfield - Sumner Avenue,02810160, 20.6, 4.6, 61.3, 9.9, 0.2, 0.0, 3.5, 52.9, 47.1, 0.0 -4.571428571428572,4.57,a-cure-i1,2019-20,23.6,82.6,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 24.5, 1.7, 54.6, 17.4, 0.0, 0.2, 1.7, 51.1, 48.9, 0.0 -2.068027210884354,2.07,a-cure-i1,2019-20,11.4,88.2,Springfield - Thomas M Balliet,02810015, 22.3, 2.5, 57.3, 11.8, 0.3, 0.0, 5.9, 51.4, 48.6, 0.0 -4.3620873269435565,4.36,a-cure-i1,2019-20,25.599999999999998,93.9,Springfield - Van Sickle Academy,02810485, 8.1, 1.6, 83.8, 6.1, 0.0, 0.0, 0.4, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2019-20,4.8,85.8,Springfield - Warner,02810180, 22.1, 0.8, 58.8, 14.2, 0.0, 0.0, 4.2, 54.2, 45.8, 0.0 -1.2,1.2,a-cure-i1,2019-20,6.6,88.0,Springfield - Washington,02810185, 18.4, 6.1, 59.9, 12.0, 0.0, 0.0, 3.6, 51.5, 48.5, 0.0 -1.945031712473573,1.95,a-cure-i1,2019-20,11.5,94.6,Springfield - White Street,02810190, 20.3, 3.4, 68.5, 5.4, 0.2, 0.0, 2.3, 51.8, 48.2, 0.0 -3.149473684210526,3.15,a-cure-i1,2019-20,18.7,95.0,Springfield - William N. DeBerry,02810045, 19.9, 0.4, 72.4, 5.0, 0.0, 0.0, 2.3, 52.5, 47.5, 0.0 -5.739130434782608,5,a-cure-i1,2019-20,33.0,92.0,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 17.9, 2.2, 69.8, 8.0, 0.0, 0.0, 2.2, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.700000000000003,Stoneham - Colonial Park,02840005, 1.5, 6.1, 11.0, 77.3, 0.0, 0.0, 4.2, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2019-20,2.3,22.099999999999994,Stoneham - Robin Hood,02840025, 2.3, 5.1, 8.4, 77.9, 0.0, 0.0, 6.3, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,2.3,22.799999999999997,Stoneham - South,02840030, 2.3, 6.2, 8.7, 77.2, 0.3, 0.0, 5.4, 47.6, 52.4, 0.0 -6.019801980198019,5,a-cure-i1,2019-20,7.6,20.200000000000003,Stoneham - Stoneham Central Middle School,02840405, 2.7, 4.9, 9.4, 79.8, 0.3, 0.0, 2.9, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,1.7,19.200000000000003,Stoneham - Stoneham High,02840505, 2.0, 5.1, 8.4, 80.8, 0.3, 0.0, 3.4, 52.6, 47.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,54.4,Stoughton - Edwin A Jones Early Childhood Center,02850012, 32.9, 3.8, 11.4, 45.6, 0.0, 1.3, 5.1, 58.2, 41.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,40.6,Stoughton - Helen Hansen Elementary,02850010, 14.9, 3.6, 14.1, 59.4, 0.0, 0.0, 8.0, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,43.5,Stoughton - Joseph H Gibbons,02850025, 19.5, 2.7, 14.9, 56.5, 0.0, 0.0, 6.5, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,56.3,Stoughton - Joseph R Dawe Jr Elementary,02850014, 27.4, 6.7, 17.8, 43.7, 0.0, 0.0, 4.4, 53.6, 46.4, 0.0 -2.3053763440860218,2.31,a-cure-i1,2019-20,6.7,46.5,Stoughton - O'Donnell Middle School,02850405, 21.9, 6.0, 12.4, 53.5, 0.1, 0.8, 5.3, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,4.2,61.1,Stoughton - Richard L. Wilkins Elementary School,02850020, 29.2, 4.6, 20.1, 38.9, 0.6, 0.3, 6.4, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,50.4,Stoughton - South Elementary,02850015, 21.4, 10.3, 11.5, 49.6, 0.4, 0.0, 6.8, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,4.3,46.6,Stoughton - Stoughton High,02850505, 26.6, 6.9, 9.5, 53.4, 0.2, 0.2, 3.1, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.299999999999997,Sturbridge - Burgess Elementary,02870005, 1.1, 1.6, 6.9, 85.7, 0.3, 0.0, 4.4, 54.0, 46.0, 0.0 -6.309859154929576,5,a-cure-i1,2019-20,5.6,14.200000000000003,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.3, 3.7, 5.5, 85.8, 0.4, 0.0, 2.3, 45.0, 54.7, 0.4 -3.768595041322313,3.77,a-cure-i1,2019-20,5.699999999999999,24.200000000000003,Sudbury - Ephraim Curtis Middle,02880305, 4.3, 9.1, 3.8, 75.8, 0.0, 0.2, 6.8, 48.1, 51.9, 0.0 -3.126436781609196,3.13,a-cure-i1,2019-20,5.1,26.099999999999994,Sudbury - General John Nixon Elementary,02880025, 6.0, 8.7, 4.8, 73.9, 0.0, 0.0, 6.6, 50.5, 49.5, 0.0 -3.9024390243902434,3.9,a-cure-i1,2019-20,7.0,28.700000000000003,Sudbury - Israel Loring School,02880015, 3.8, 8.7, 8.7, 71.3, 0.2, 0.4, 6.9, 51.9, 48.1, 0.0 -4.748858447488583,4.75,a-cure-i1,2019-20,6.5,21.900000000000006,Sudbury - Josiah Haynes,02880010, 2.4, 8.8, 4.0, 78.1, 0.0, 0.0, 6.7, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.400000000000006,Sudbury - Peter Noyes,02880030, 2.1, 10.8, 3.5, 73.6, 0.0, 0.0, 9.9, 54.5, 45.5, 0.0 -2.692063492063492,2.69,a-cure-i1,2019-20,5.3,31.5,Sunderland - Sunderland Elementary,02890005, 2.7, 9.0, 10.4, 68.5, 0.0, 0.0, 9.5, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.099999999999994,Sutton - Sutton Early Learning,02900003, 1.2, 2.1, 4.5, 89.9, 0.3, 0.3, 1.8, 56.7, 43.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.900000000000006,Sutton - Sutton Elementary,02900005, 1.0, 2.0, 1.7, 92.1, 0.0, 0.0, 3.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.700000000000003,Sutton - Sutton High School,02900510, 1.6, 1.1, 3.5, 89.3, 0.0, 0.0, 4.5, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.200000000000003,Sutton - Sutton Middle School,02900305, 1.2, 1.7, 3.8, 87.8, 0.0, 0.0, 5.5, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.400000000000006,Swampscott - Clarke,02910005, 3.8, 2.3, 16.4, 74.6, 0.9, 0.0, 1.9, 54.0, 46.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.5,Swampscott - Hadley,02910010, 2.2, 3.7, 11.7, 77.5, 0.3, 0.0, 4.6, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.5,Swampscott - Stanley,02910020, 1.2, 1.7, 5.0, 90.5, 0.0, 0.0, 1.7, 56.8, 43.2, 0.0 -5.030567685589519,5,a-cure-i1,2019-20,7.2,22.900000000000006,Swampscott - Swampscott High,02910505, 5.3, 2.0, 13.9, 77.1, 0.0, 0.0, 1.7, 46.5, 53.5, 0.0 -1,1,a-cure-i1,2019-20,1.2,21.200000000000003,Swampscott - Swampscott Middle,02910305, 3.8, 2.4, 11.5, 78.8, 0.3, 0.0, 3.1, 51.8, 48.0, 0.1 -1,1,a-cure-i1,2019-20,0.0,4.299999999999997,Swansea - Elizabeth S Brown,02920006, 0.7, 0.7, 1.4, 95.7, 0.4, 0.0, 1.1, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.400000000000006,Swansea - Gardner,02920015, 0.7, 0.7, 1.8, 94.6, 0.4, 0.0, 1.8, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,2.2,6.5,Swansea - Joseph Case High,02920505, 0.9, 1.3, 3.0, 93.5, 0.0, 0.0, 1.1, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,2.8,4.799999999999997,Swansea - Joseph Case Jr High,02920305, 0.7, 0.9, 2.3, 95.2, 0.2, 0.0, 0.7, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.299999999999997,Swansea - Joseph G Luther,02920020, 1.0, 1.0, 2.9, 90.7, 0.5, 0.0, 3.9, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.099999999999994,Swansea - Mark G Hoyle Elementary,02920017, 0.8, 2.4, 1.6, 90.9, 0.0, 0.0, 4.4, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.900000000000006,Tantasqua - Tantasqua Regional Jr High,07700405, 1.2, 0.3, 6.1, 89.1, 0.2, 0.2, 2.9, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2019-20,3.0,13.299999999999997,Tantasqua - Tantasqua Regional Sr High,07700505, 1.4, 1.7, 5.6, 86.7, 0.1, 0.0, 4.5, 42.5, 57.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.400000000000006,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.2, 5.5, 90.6, 0.2, 0.2, 3.1, 57.8, 42.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.099999999999994,Taunton - Benjamin Friedman Middle,02930315, 12.1, 0.9, 11.3, 70.9, 0.5, 0.0, 4.3, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.400000000000006,Taunton - East Taunton Elementary,02930010, 15.9, 0.7, 10.2, 67.6, 0.0, 0.0, 5.6, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.700000000000003,Taunton - Edmund Hatch Bennett,02930007, 10.0, 1.3, 11.3, 72.3, 0.0, 0.0, 5.1, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,31.700000000000003,Taunton - Edward F. Leddy Preschool,02930005, 13.3, 2.2, 11.2, 68.3, 0.0, 0.0, 5.0, 57.9, 42.1, 0.0 -1,1,a-cure-i1,2019-20,3.3,47.6,Taunton - Elizabeth Pole,02930027, 24.1, 1.2, 13.5, 52.4, 0.2, 0.0, 8.6, 52.3, 47.7, 0.0 -2.010471204188482,2.01,a-cure-i1,2019-20,7.2,57.3,Taunton - H H Galligan,02930057, 28.2, 1.5, 18.7, 42.7, 0.8, 0.8, 7.3, 48.9, 51.1, 0.0 -2.1241970021413277,2.12,a-cure-i1,2019-20,6.2,46.7,Taunton - Hopewell,02930035, 21.2, 0.0, 14.6, 53.3, 0.0, 0.0, 10.9, 43.4, 56.6, 0.0 -1,1,a-cure-i1,2019-20,3.7,45.1,Taunton - John F Parker Middle,02930305, 20.8, 0.6, 17.4, 54.9, 0.6, 0.6, 5.1, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,3.7,22.299999999999997,Taunton - Joseph C Chamberlain,02930008, 10.3, 1.8, 6.5, 77.7, 0.0, 0.0, 3.7, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,4.1,34.2,Taunton - Joseph H Martin,02930042, 17.8, 1.4, 10.2, 65.8, 0.1, 0.1, 4.5, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,3.9,44.0,Taunton - Mulcahey Elementary School,02930015, 21.6, 0.8, 16.0, 56.0, 0.0, 0.0, 5.5, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,43.0,Taunton - Taunton Alternative High School,02930525, 16.3, 0.0, 23.3, 57.0, 0.0, 0.0, 3.5, 61.6, 38.4, 0.0 -2.554973821989529,2.55,a-cure-i1,2019-20,6.1000000000000005,38.2,Taunton - Taunton High,02930505, 18.9, 1.6, 13.1, 61.8, 0.2, 0.2, 4.2, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.3,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 7.7, 2.7, 17.4, 64.7, 0.2, 0.4, 7.0, 41.6, 58.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.0,Tewksbury - Heath-Brook,02950010, 3.9, 1.2, 4.2, 89.0, 0.0, 0.0, 1.8, 46.1, 53.9, 0.0 -1,1,a-cure-i1,2019-20,0.7,12.900000000000006,Tewksbury - John F. Ryan,02950023, 3.7, 2.0, 5.7, 87.1, 0.2, 0.0, 1.4, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,2.6,14.099999999999994,Tewksbury - John W. Wynn Middle,02950305, 4.8, 4.6, 4.1, 85.9, 0.0, 0.0, 0.6, 53.3, 46.7, 0.0 -1,1,a-cure-i1,2019-20,3.2,20.200000000000003,Tewksbury - L F Dewing,02950001, 5.6, 7.4, 5.3, 79.8, 0.0, 0.2, 1.8, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.299999999999997,Tewksbury - Louise Davy Trahan,02950025, 1.3, 3.8, 4.7, 87.7, 0.0, 0.0, 2.5, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.299999999999997,Tewksbury - North Street,02950020, 5.0, 3.0, 8.7, 81.7, 0.0, 0.3, 1.3, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,1.7,12.400000000000006,Tewksbury - Tewksbury Memorial High,02950505, 3.2, 3.9, 4.4, 87.6, 0.1, 0.0, 0.8, 46.9, 53.0, 0.1 -2.3053763440860218,2.31,a-cure-i1,2019-20,6.7,46.5,Tisbury - Tisbury Elementary,02960005, 4.7, 0.7, 31.8, 53.5, 1.7, 0.0, 7.7, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,7.0,Topsfield - Proctor Elementary,02980005, 0.4, 1.5, 1.8, 93.0, 0.7, 0.0, 2.6, 49.4, 50.6, 0.0 -1,1,a-cure-i1,2019-20,3.1,9.299999999999997,Topsfield - Steward Elementary,02980010, 0.3, 1.3, 4.0, 90.7, 0.8, 0.0, 2.9, 48.3, 51.7, 0.0 -1,1,a-cure-i1,2019-20,1.4,13.299999999999997,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 1.0, 0.9, 6.6, 86.7, 0.3, 0.1, 4.3, 59.5, 40.2, 0.2 -1,1,a-cure-i1,2019-20,0.0,6.400000000000006,Triton - Newbury Elementary,07730020, 1.0, 1.5, 1.8, 93.6, 0.0, 0.5, 1.5, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.700000000000003,Triton - Pine Grove,07730025, 0.9, 1.8, 0.9, 94.3, 0.0, 0.0, 2.1, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.299999999999997,Triton - Salisbury Elementary,07730015, 2.9, 2.3, 6.8, 84.7, 0.2, 0.0, 3.1, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,4.6,8.700000000000003,Triton - Triton Regional High School,07730505, 1.3, 1.9, 3.7, 91.3, 0.3, 0.1, 1.3, 50.1, 49.7, 0.1 -1,1,a-cure-i1,2019-20,0.0,9.099999999999994,Triton - Triton Regional Middle School,07730405, 0.6, 2.8, 3.3, 90.9, 0.0, 0.0, 2.5, 54.3, 45.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.200000000000003,Truro - Truro Central,03000005, 6.2, 0.0, 6.2, 70.8, 0.0, 0.0, 16.8, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.900000000000006,Tyngsborough - Tyngsborough Elementary,03010020, 5.4, 8.6, 5.9, 76.1, 0.3, 0.0, 3.8, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,3.0,17.299999999999997,Tyngsborough - Tyngsborough High School,03010505, 1.8, 7.1, 4.7, 82.7, 0.2, 0.0, 3.6, 46.2, 53.8, 0.0 -1,1,a-cure-i1,2019-20,3.1,20.700000000000003,Tyngsborough - Tyngsborough Middle,03010305, 5.4, 7.0, 6.0, 79.3, 0.0, 0.0, 2.3, 54.1, 45.9, 0.0 -4.151174668028601,4.15,a-cure-i1,2019-20,25.4,97.9,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 43.5, 5.2, 48.0, 2.1, 0.0, 0.2, 1.0, 51.8, 48.2, 0.0 -6.206060606060606,5,a-cure-i1,2019-20,38.4,99.0,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 55.3, 0.6, 40.8, 1.0, 0.3, 0.7, 1.4, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.5,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 1.9, 81.5, 3.7, 0.0, 13.0, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,3.1,19.0,Up-Island Regional - West Tisbury Elementary,07740020, 0.3, 0.3, 7.8, 81.0, 4.5, 0.0, 6.1, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2019-20,1.8,16.0,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 4.4, 1.7, 2.8, 84.0, 0.8, 0.1, 6.1, 63.2, 36.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,25.0,Uxbridge - Gateway to College,03040515, 0.0, 5.6, 8.3, 75.0, 2.8, 2.8, 5.6, 41.7, 58.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.299999999999997,Uxbridge - Taft Early Learning Center,03040005, 0.7, 0.9, 7.3, 89.7, 0.3, 0.2, 0.9, 52.5, 47.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.5,Uxbridge - Uxbridge High,03040505, 1.5, 1.7, 5.1, 88.5, 0.5, 0.0, 2.7, 54.9, 45.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.299999999999997,Uxbridge - Whitin Intermediate,03040405, 1.4, 1.2, 4.8, 89.7, 1.0, 0.0, 1.9, 53.6, 46.4, 0.0 -4.868835257082896,4.87,a-cure-i1,2019-20,29.0,95.3,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 17.0, 1.4, 74.2, 4.7, 0.5, 0.0, 2.2, 46.3, 53.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.200000000000003,Wachusett - Central Tree Middle,07750310, 2.2, 3.0, 3.9, 87.8, 0.0, 0.0, 3.0, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.5,Wachusett - Chocksett Middle School,07750315, 0.9, 1.5, 6.0, 89.5, 0.0, 0.0, 2.1, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,3.8,16.700000000000003,Wachusett - Davis Hill Elementary,07750018, 3.4, 1.5, 7.8, 83.3, 0.6, 0.2, 3.2, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.799999999999997,Wachusett - Dawson,07750020, 4.3, 4.9, 6.1, 82.2, 0.0, 0.0, 2.5, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.700000000000003,Wachusett - Early Childhood Center,07750001, 1.3, 4.4, 7.5, 84.3, 0.0, 0.0, 2.5, 59.7, 40.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,12.5,Wachusett - Glenwood Elementary School,07750060, 2.5, 1.1, 6.1, 87.5, 0.8, 0.0, 1.9, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.299999999999997,Wachusett - Houghton Elementary,07750027, 3.7, 2.5, 6.8, 84.7, 0.0, 0.0, 2.3, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.599999999999994,Wachusett - Leroy E.Mayo,07750032, 3.5, 4.6, 5.0, 84.4, 0.0, 0.2, 2.3, 51.5, 48.5, 0.0 -1,1,a-cure-i1,2019-20,2.2,15.599999999999994,Wachusett - Mountview Middle,07750305, 3.0, 3.8, 6.2, 84.4, 0.1, 0.0, 2.4, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.099999999999994,Wachusett - Naquag Elementary School,07750005, 1.0, 1.0, 6.1, 89.9, 0.0, 0.0, 2.0, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.700000000000003,Wachusett - Paxton Center,07750040, 1.6, 3.8, 7.3, 85.3, 0.0, 0.0, 2.0, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,8.700000000000003,Wachusett - Thomas Prince,07750045, 0.5, 1.6, 4.4, 91.3, 0.0, 0.0, 2.2, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,0.7,12.799999999999997,Wachusett - Wachusett Regional High,07750505, 2.1, 3.4, 5.0, 87.2, 0.1, 0.0, 2.2, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.0,Wakefield - Dolbeare,03050005, 1.7, 1.9, 7.3, 86.0, 0.4, 0.4, 2.2, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.900000000000006,Wakefield - Early Childhood Center at the Doyle School,03050001, 1.4, 2.9, 7.1, 82.1, 0.0, 0.0, 6.4, 62.9, 37.1, 0.0 -1,1,a-cure-i1,2019-20,1.1,16.599999999999994,Wakefield - Galvin Middle School,03050310, 2.6, 3.0, 8.0, 83.4, 0.3, 0.0, 2.8, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.299999999999997,Wakefield - Greenwood,03050020, 0.4, 5.4, 5.8, 81.7, 0.0, 0.4, 6.3, 58.0, 42.0, 0.0 -1,1,a-cure-i1,2019-20,2.8,15.299999999999997,Wakefield - Wakefield Memorial High,03050505, 3.8, 3.2, 6.4, 84.7, 0.1, 0.1, 1.7, 47.8, 52.1, 0.1 -1,1,a-cure-i1,2019-20,0.0,15.799999999999997,Wakefield - Walton,03050040, 3.5, 1.8, 6.6, 84.2, 0.0, 0.9, 3.1, 54.8, 45.2, 0.0 -1,1,a-cure-i1,2019-20,4.6,25.700000000000003,Wakefield - Woodville School,03050015, 2.8, 5.5, 10.3, 74.3, 0.3, 0.3, 6.5, 48.4, 51.4, 0.3 -1,1,a-cure-i1,2019-20,0.0,6.200000000000003,Wales - Wales Elementary,03060005, 2.1, 0.7, 0.7, 93.8, 0.7, 0.0, 2.1, 52.4, 47.6, 0.0 -5.727272727272729,5,a-cure-i1,2019-20,6.3,17.599999999999994,Walpole - Bird Middle,03070305, 5.2, 3.6, 7.0, 82.4, 0.2, 0.0, 1.6, 50.5, 49.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.400000000000006,Walpole - Boyden,03070010, 6.7, 4.7, 5.2, 79.6, 0.6, 0.0, 3.2, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.5,Walpole - Daniel Feeney Preschool Center,03070002, 2.6, 9.2, 2.6, 85.5, 0.0, 0.0, 0.0, 59.2, 40.8, 0.0 -1,1,a-cure-i1,2019-20,3.6,23.400000000000006,Walpole - Eleanor N Johnson Middle,03070310, 2.1, 11.6, 5.8, 76.6, 0.5, 0.0, 3.5, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.200000000000003,Walpole - Elm Street School,03070005, 4.3, 6.2, 3.6, 82.8, 0.2, 0.0, 2.9, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.400000000000006,Walpole - Fisher,03070015, 1.6, 14.0, 7.7, 72.6, 0.0, 0.0, 4.1, 52.0, 48.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.900000000000006,Walpole - Old Post Road,03070018, 3.1, 2.0, 8.3, 82.1, 0.2, 0.0, 4.3, 49.9, 50.1, 0.0 -1,1,a-cure-i1,2019-20,2.8,16.799999999999997,Walpole - Walpole High,03070505, 3.1, 5.3, 5.7, 83.2, 0.5, 0.0, 2.3, 50.7, 49.3, 0.0 -1,1,a-cure-i1,2019-20,1.5,36.0,Waltham - Douglas MacArthur Elementary School,03080032, 9.5, 8.8, 13.1, 64.0, 0.2, 0.0, 4.3, 55.0, 45.0, 0.0 -1,1,a-cure-i1,2019-20,4.7,88.7,Waltham - Henry Whittemore Elementary School,03080065, 7.3, 3.5, 76.2, 11.3, 0.0, 0.2, 1.4, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,0.3,43.8,Waltham - James Fitzgerald Elementary School,03080060, 5.0, 4.2, 29.9, 56.2, 0.0, 0.0, 4.7, 55.0, 45.0, 0.0 -4.689038031319911,4.69,a-cure-i1,2019-20,13.100000000000001,44.7,Waltham - John F Kennedy Middle,03080404, 10.1, 5.2, 27.4, 55.3, 0.0, 0.0, 2.0, 54.6, 45.4, 0.0 -1.7537537537537538,1.75,a-cure-i1,2019-20,7.3,66.6,Waltham - John W. McDevitt Middle School,03080415, 7.9, 4.1, 53.2, 33.4, 0.0, 0.0, 1.5, 49.8, 50.2, 0.0 -1.6991150442477876,1.7,a-cure-i1,2019-20,6.0,56.5,Waltham - Northeast Elementary School,03080040, 11.9, 8.3, 33.8, 43.5, 0.2, 0.0, 2.3, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.7,62.4,Waltham - Thomas R Plympton Elementary School,03080050, 12.8, 5.3, 40.6, 37.6, 0.0, 0.3, 3.5, 50.4, 49.6, 0.0 -8.568527918781728,5,a-cure-i1,2019-20,42.2,78.8,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.1, 0.7, 70.5, 21.2, 0.0, 0.0, 3.4, 56.2, 43.8, 0.0 -2.1052631578947367,2.11,a-cure-i1,2019-20,8.0,60.8,Waltham - Waltham Sr High,03080505, 10.1, 3.7, 45.0, 39.2, 0.1, 0.0, 1.9, 54.8, 45.2, 0.1 -1,1,a-cure-i1,2019-20,3.1,64.0,Waltham - William F. Stanley Elementary School,03080005, 8.1, 7.4, 46.0, 36.0, 0.0, 0.0, 2.5, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,4.5,Ware - Stanley M Koziol Elementary School,03090020, 0.5, 0.5, 2.1, 95.5, 0.0, 0.0, 1.3, 51.9, 48.1, 0.0 -6.769230769230769,5,a-cure-i1,2019-20,5.5,13.0,Ware - Ware Junior/Senior High School,03090505, 2.1, 0.9, 4.9, 87.0, 0.2, 0.4, 4.5, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.299999999999997,Ware - Ware Middle School,03090305, 0.7, 0.3, 10.1, 83.7, 0.3, 0.0, 4.9, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.0,Wareham - John William Decas,03100003, 6.3, 1.0, 8.9, 70.0, 1.1, 0.0, 12.7, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.400000000000006,Wareham - Minot Forest,03100017, 7.1, 0.9, 12.1, 66.6, 1.9, 0.0, 11.5, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.4,Wareham - Wareham Cooperative Alternative School,03100315, 11.4, 0.0, 11.4, 63.6, 0.0, 0.0, 13.6, 61.4, 38.6, 0.0 -3.68,3.68,a-cure-i1,2019-20,6.9,30.0,Wareham - Wareham Middle,03100305, 8.8, 0.8, 6.7, 70.0, 1.1, 0.2, 12.4, 50.9, 49.1, 0.0 -3.622641509433963,3.62,a-cure-i1,2019-20,7.2,31.799999999999997,Wareham - Wareham Senior High,03100505, 9.6, 1.3, 7.5, 68.2, 1.6, 0.0, 11.7, 50.1, 49.8, 0.2 -4.611764705882353,4.61,a-cure-i1,2019-20,9.8,34.0,Watertown - Cunniff,03140015, 3.6, 6.8, 18.1, 66.0, 0.0, 0.0, 5.5, 49.5, 50.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.1,Watertown - Hosmer,03140020, 4.0, 7.3, 15.9, 63.9, 0.3, 0.1, 8.4, 51.3, 48.7, 0.0 -6.324483775811209,5,a-cure-i1,2019-20,13.4,33.900000000000006,Watertown - James Russell Lowell,03140025, 3.2, 5.8, 16.7, 66.1, 0.2, 0.0, 7.9, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.4,37.1,Watertown - Watertown High,03140505, 4.6, 7.5, 20.1, 62.9, 1.0, 0.0, 3.8, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2019-20,1.9,35.2,Watertown - Watertown Middle,03140305, 3.8, 8.5, 18.7, 64.8, 0.3, 0.0, 4.0, 53.9, 46.1, 0.0 -1,1,a-cure-i1,2019-20,3.3,25.299999999999997,Wayland - Claypit Hill School,03150005, 5.1, 10.1, 4.3, 74.7, 0.0, 0.4, 5.3, 48.8, 51.2, 0.0 -5.333333333333334,5,a-cure-i1,2019-20,8.6,25.799999999999997,Wayland - Happy Hollow School,03150015, 5.5, 9.9, 4.4, 74.2, 0.0, 0.0, 6.0, 52.5, 47.5, 0.0 -5.093093093093094,5,a-cure-i1,2019-20,10.6,33.3,Wayland - Loker School,03150020, 3.1, 17.9, 6.5, 66.7, 0.0, 0.0, 5.9, 49.7, 50.3, 0.0 -1,1,a-cure-i1,2019-20,4.7,34.0,Wayland - Wayland High School,03150505, 4.4, 17.9, 4.8, 66.0, 0.0, 0.1, 6.7, 50.2, 49.8, 0.0 -7.268436578171089,5,a-cure-i1,2019-20,15.399999999999999,33.900000000000006,Wayland - Wayland Middle School,03150305, 6.2, 16.9, 4.6, 66.1, 0.2, 0.2, 5.9, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2019-20,2.9,45.4,Webster - Bartlett High School,03160505, 7.6, 2.5, 28.0, 54.6, 0.2, 0.2, 6.7, 47.5, 52.3, 0.2 -1,1,a-cure-i1,2019-20,0.0,44.9,Webster - Park Avenue Elementary,03160015, 5.6, 1.5, 31.1, 55.1, 0.1, 0.0, 6.6, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,44.8,Webster - Webster Middle School,03160315, 5.1, 2.2, 30.3, 55.2, 0.2, 0.2, 6.9, 50.8, 49.2, 0.0 -10.666666666666666,5,a-cure-i1,2019-20,14.8,22.200000000000003,Wellesley - Ernest F Upham,03170050, 4.9, 12.0, 2.7, 77.8, 0.0, 0.0, 2.7, 51.6, 48.4, 0.0 -8.533333333333333,5,a-cure-i1,2019-20,12.8,24.0,Wellesley - Hunnewell,03170025, 3.5, 4.7, 7.1, 76.0, 0.0, 0.0, 8.7, 50.4, 49.6, 0.0 -1.9281183932346724,1.93,a-cure-i1,2019-20,5.7,47.3,Wellesley - John D Hardy,03170020, 1.6, 25.8, 7.4, 52.7, 0.0, 0.0, 12.5, 46.9, 53.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.599999999999994,Wellesley - Joseph E Fiske,03170015, 3.7, 17.3, 7.8, 64.4, 0.0, 0.0, 6.8, 49.5, 50.5, 0.0 -9.182608695652174,5,a-cure-i1,2019-20,13.200000000000001,23.0,Wellesley - Katharine Lee Bates,03170005, 3.9, 9.9, 2.4, 77.0, 0.0, 0.0, 6.9, 49.6, 50.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.4,Wellesley - Preschool at Wellesley Schools,03170001, 2.0, 19.2, 10.1, 63.6, 0.0, 0.0, 5.1, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,4.1,34.5,Wellesley - Schofield,03170045, 3.5, 18.4, 5.1, 65.5, 0.3, 0.0, 7.2, 47.1, 52.9, 0.0 -1,1,a-cure-i1,2019-20,4.5,38.9,Wellesley - Sprague Elementary School,03170048, 3.1, 18.0, 4.5, 61.1, 0.0, 0.0, 13.2, 49.6, 50.4, 0.0 -2.999999999999999,3.0,a-cure-i1,2019-20,5.699999999999999,30.400000000000006,Wellesley - Wellesley Middle,03170305, 4.2, 14.8, 5.4, 69.6, 0.1, 0.0, 5.8, 46.4, 53.6, 0.1 -5.333333333333334,5,a-cure-i1,2019-20,8.7,26.099999999999994,Wellesley - Wellesley Sr High,03170505, 3.9, 12.5, 4.4, 73.9, 0.0, 0.0, 5.3, 50.8, 49.1, 0.1 -1,1,a-cure-i1,2019-20,0.0,17.900000000000006,Wellfleet - Wellfleet Elementary,03180005, 1.9, 0.9, 2.8, 82.1, 0.0, 0.0, 12.3, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,22.799999999999997,West Boylston - Major Edwards Elementary,03220005, 3.4, 2.5, 11.8, 77.2, 0.0, 0.0, 5.1, 52.7, 47.3, 0.0 -9.224489795918371,5,a-cure-i1,2019-20,11.3,19.599999999999994,West Boylston - West Boylston Junior/Senior High,03220505, 2.6, 1.6, 12.2, 80.4, 0.2, 0.0, 3.0, 45.7, 54.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.400000000000006,West Bridgewater - Howard School,03230305, 5.6, 1.4, 2.8, 83.6, 0.3, 0.3, 5.9, 48.4, 51.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.5,West Bridgewater - Rose L Macdonald,03230003, 4.0, 0.7, 5.7, 84.5, 0.3, 0.0, 4.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.700000000000003,West Bridgewater - Spring Street School,03230005, 3.8, 0.6, 3.8, 82.3, 0.0, 0.0, 9.5, 53.2, 46.8, 0.0 -1,1,a-cure-i1,2019-20,2.1,14.900000000000006,West Bridgewater - West Bridgewater Junior/Senior,03230505, 5.9, 1.3, 4.4, 85.1, 0.3, 0.0, 3.0, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,52.4,West Springfield - Cowing Early Childhood,03320001, 7.3, 10.5, 32.3, 47.6, 0.0, 0.0, 2.4, 57.3, 42.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,42.5,West Springfield - John Ashley,03320005, 3.9, 7.3, 24.9, 57.5, 0.0, 0.0, 6.4, 48.5, 51.5, 0.0 -3.393939393939393,3.39,a-cure-i1,2019-20,5.6,26.400000000000006,West Springfield - John R Fausey,03320010, 1.7, 4.3, 16.8, 73.6, 0.0, 0.0, 3.6, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,50.2,West Springfield - Memorial,03320025, 3.3, 8.9, 33.3, 49.8, 0.0, 0.0, 4.7, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,31.900000000000006,West Springfield - Mittineague,03320030, 3.3, 3.3, 22.0, 68.1, 0.0, 0.0, 3.3, 46.7, 53.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,44.5,West Springfield - Philip G Coburn,03320007, 4.0, 17.3, 21.6, 55.5, 0.2, 0.0, 1.3, 47.0, 53.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.099999999999994,West Springfield - Tatham,03320040, 0.4, 3.8, 11.1, 80.9, 0.0, 0.0, 3.8, 53.8, 46.2, 0.0 -1,1,a-cure-i1,2019-20,3.9,33.8,West Springfield - West Springfield High,03320505, 4.2, 7.3, 20.0, 66.2, 0.2, 0.0, 2.2, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,2.8,35.099999999999994,West Springfield - West Springfield Middle,03320305, 3.5, 8.1, 19.6, 64.9, 0.0, 0.1, 3.7, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,49.3,Westborough - Annie E Fales,03210010, 0.9, 42.0, 2.9, 50.7, 0.3, 0.3, 2.9, 49.3, 50.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,64.2,Westborough - Elsie A Hastings Elementary,03210025, 2.0, 44.3, 14.7, 35.8, 0.8, 0.0, 2.4, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,52.7,Westborough - J Harding Armstrong,03210005, 1.7, 37.7, 9.3, 47.3, 0.0, 0.0, 4.1, 54.4, 45.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,46.6,Westborough - Mill Pond School,03210045, 3.4, 35.3, 5.7, 53.4, 0.1, 0.0, 2.2, 51.7, 48.3, 0.0 -1,1,a-cure-i1,2019-20,4.4,44.7,Westborough - Sarah W Gibbons Middle,03210305, 0.9, 32.5, 7.9, 55.3, 0.0, 0.2, 3.3, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,4.6,39.2,Westborough - Westborough High,03210505, 1.6, 27.0, 7.0, 60.8, 0.1, 0.1, 3.5, 50.8, 49.1, 0.1 -1,1,a-cure-i1,2019-20,0.0,44.2,Westfield - Abner Gibbs,03250020, 4.3, 8.7, 27.4, 55.8, 0.0, 0.0, 3.8, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,29.200000000000003,Westfield - Fort Meadow Early Childhood Center,03250003, 1.8, 1.8, 21.6, 70.8, 0.0, 0.0, 4.1, 52.6, 47.4, 0.0 -2.8932461873638347,2.89,a-cure-i1,2019-20,8.3,45.9,Westfield - Franklin Ave,03250015, 3.4, 5.3, 33.3, 54.1, 0.0, 0.0, 3.9, 45.9, 54.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.299999999999997,Westfield - Highland,03250025, 0.3, 2.2, 10.1, 84.7, 0.0, 0.0, 2.7, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.900000000000006,Westfield - Munger Hill,03250033, 2.1, 3.8, 12.3, 79.1, 0.0, 0.0, 2.7, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.2,Westfield - Paper Mill,03250036, 3.2, 2.5, 21.5, 67.8, 0.0, 0.3, 4.7, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.900000000000006,Westfield - Southampton Road,03250040, 0.6, 3.0, 13.1, 78.1, 0.0, 0.0, 5.2, 53.5, 46.5, 0.0 -1,1,a-cure-i1,2019-20,1.0,23.099999999999994,Westfield - Westfield High,03250505, 2.3, 3.2, 15.0, 76.9, 0.2, 0.0, 2.4, 47.0, 52.8, 0.2 -1,1,a-cure-i1,2019-20,1.6,26.5,Westfield - Westfield Intermediate School,03250075, 2.7, 3.6, 16.9, 73.5, 0.3, 0.0, 3.0, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,23.200000000000003,Westfield - Westfield Middle School,03250310, 1.8, 2.4, 16.5, 76.8, 0.0, 0.0, 2.5, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,1.3,15.799999999999997,Westfield - Westfield Technical Academy,03250605, 1.4, 1.4, 10.7, 84.2, 0.2, 0.2, 1.9, 64.8, 35.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.900000000000006,Westford - Abbot Elementary,03260004, 0.3, 23.8, 1.1, 71.1, 0.0, 0.0, 3.8, 47.6, 52.4, 0.0 -1,1,a-cure-i1,2019-20,2.6,39.9,Westford - Blanchard Middle,03260310, 1.7, 30.2, 3.5, 60.1, 0.6, 0.0, 3.9, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,40.1,Westford - Col John Robinson,03260025, 0.7, 31.4, 1.5, 59.9, 0.0, 0.0, 6.6, 52.2, 47.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,52.2,Westford - Day Elementary,03260007, 1.2, 41.2, 3.5, 47.8, 0.0, 0.0, 6.4, 47.8, 52.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.2,Westford - John A. Crisafulli Elementary School,03260045, 0.8, 28.5, 2.8, 63.8, 0.0, 0.0, 4.0, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,48.6,Westford - Millennium Elementary,03260013, 2.9, 34.3, 1.4, 51.4, 0.0, 0.0, 10.0, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.0,Westford - Nabnasset,03260015, 0.6, 17.0, 0.6, 79.0, 0.0, 0.0, 2.7, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,4.9,46.1,Westford - Rita E. Miller Elementary School,03260055, 2.0, 37.1, 2.0, 53.9, 0.3, 0.0, 4.8, 51.1, 48.9, 0.0 -1,1,a-cure-i1,2019-20,1.9,32.400000000000006,Westford - Stony Brook School,03260330, 1.0, 25.9, 2.3, 67.6, 0.2, 0.0, 3.0, 47.8, 52.2, 0.0 -3.909967845659165,3.91,a-cure-i1,2019-20,7.6000000000000005,31.099999999999994,Westford - Westford Academy,03260505, 1.0, 25.0, 1.5, 68.9, 0.1, 0.1, 3.5, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.700000000000003,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 5.0, 93.3, 0.0, 0.0, 1.7, 54.2, 45.8, 0.0 -2.5777777777777775,2.58,a-cure-i1,2019-20,5.8,36.0,Weston - Country,03300010, 7.1, 16.5, 7.1, 64.0, 0.0, 0.0, 5.4, 48.5, 51.5, 0.0 -5.278350515463918,5,a-cure-i1,2019-20,12.8,38.8,Weston - Field Elementary School,03300012, 6.5, 17.6, 7.5, 61.2, 0.0, 0.0, 7.2, 47.6, 52.4, 0.0 -8.312312312312313,5,a-cure-i1,2019-20,17.3,33.3,Weston - Weston High,03300505, 6.3, 18.7, 3.5, 66.7, 0.5, 0.0, 4.4, 51.9, 48.1, 0.0 -5.647058823529411,5,a-cure-i1,2019-20,13.2,37.4,Weston - Weston Middle,03300305, 6.6, 17.5, 6.8, 62.6, 0.0, 0.0, 6.6, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2019-20,0.6,35.8,Weston - Woodland,03300015, 7.7, 16.1, 8.4, 64.2, 0.0, 0.4, 3.2, 51.9, 48.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.200000000000003,Westport - Alice A Macomber,03310015, 0.8, 0.0, 3.2, 93.8, 0.0, 0.0, 2.2, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.5,Westport - Westport Elementary,03310030, 0.2, 0.2, 3.9, 90.5, 0.2, 0.0, 5.0, 56.1, 43.9, 0.0 -1,1,a-cure-i1,2019-20,2.2,8.900000000000006,Westport - Westport Junior/Senior High School,03310515, 0.5, 0.9, 3.5, 91.1, 0.5, 0.0, 3.4, 55.5, 44.5, 0.0 -5.408450704225351,5,a-cure-i1,2019-20,9.6,28.400000000000006,Westwood - Deerfield School,03350010, 2.1, 12.9, 5.2, 71.6, 0.0, 0.0, 8.2, 54.1, 45.9, 0.0 -5.572413793103449,5,a-cure-i1,2019-20,10.100000000000001,29.0,Westwood - Downey,03350012, 0.3, 17.5, 4.5, 71.0, 0.0, 0.3, 6.3, 57.0, 43.0, 0.0 -1,1,a-cure-i1,2019-20,1.7,23.5,Westwood - E W Thurston Middle,03350305, 2.3, 12.3, 5.3, 76.5, 0.1, 0.0, 3.4, 53.6, 46.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.299999999999997,Westwood - Martha Jones,03350017, 0.4, 6.3, 4.5, 80.7, 0.0, 0.0, 8.2, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.200000000000003,Westwood - Paul Hanlon,03350015, 0.5, 17.2, 5.7, 71.8, 0.0, 0.0, 4.8, 53.6, 46.4, 0.0 -6.963730569948188,5,a-cure-i1,2019-20,8.4,19.299999999999997,Westwood - Westwood High,03350505, 3.7, 10.1, 3.4, 80.7, 0.0, 0.0, 2.1, 45.0, 55.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.5,Westwood - Westwood Integrated Preschool,03350050, 2.5, 12.5, 5.0, 72.5, 0.0, 0.0, 7.5, 57.5, 42.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.0,Westwood - William E Sheehan,03350025, 0.6, 8.4, 3.5, 80.0, 0.0, 0.0, 7.4, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,30.599999999999994,Weymouth - Abigail Adams Middle School,03360310, 7.0, 6.5, 12.0, 69.4, 0.2, 0.1, 4.7, 48.6, 51.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,32.900000000000006,Weymouth - Academy Avenue,03360005, 3.5, 9.0, 11.9, 67.1, 0.0, 0.6, 7.7, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.200000000000003,Weymouth - Frederick C Murphy,03360050, 5.4, 3.5, 13.9, 73.8, 0.0, 0.0, 3.5, 56.4, 43.6, 0.0 -3.0537634408602146,3.05,a-cure-i1,2019-20,7.1,37.2,Weymouth - Johnson Early Childhood Center,03360003, 5.0, 19.1, 5.0, 62.8, 0.0, 0.0, 8.0, 60.3, 39.2, 0.5 -1,1,a-cure-i1,2019-20,0.0,21.099999999999994,Weymouth - Lawrence W Pingree,03360065, 5.5, 2.5, 8.0, 78.9, 0.0, 0.0, 5.0, 45.7, 54.3, 0.0 -2.747474747474747,2.75,a-cure-i1,2019-20,5.1,29.700000000000003,Weymouth - Maria Weston Chapman Middle School,03360020, 8.6, 5.1, 11.8, 70.3, 0.3, 0.1, 3.8, 48.5, 51.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,28.599999999999994,Weymouth - Ralph Talbot,03360085, 4.5, 7.8, 12.7, 71.4, 0.0, 0.0, 3.7, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.900000000000006,Weymouth - Thomas V Nash,03360060, 3.2, 2.6, 5.2, 85.1, 0.0, 0.0, 3.9, 43.5, 56.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.3,Weymouth - Thomas W. Hamilton Primary School,03360105, 4.6, 13.3, 10.2, 66.7, 0.7, 0.0, 4.6, 53.0, 47.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,19.0,Weymouth - Wessagusset,03360110, 2.8, 4.7, 7.1, 81.0, 0.0, 0.0, 4.3, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,2.9000000000000004,23.799999999999997,Weymouth - Weymouth High School,03360505, 5.8, 5.0, 9.0, 76.2, 0.2, 0.1, 3.8, 50.9, 48.9, 0.2 -1,1,a-cure-i1,2019-20,0.0,58.5,Weymouth - William Seach,03360080, 17.0, 11.8, 22.5, 41.5, 0.0, 0.0, 7.2, 47.7, 52.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,6.299999999999997,Whately - Whately Elementary,03370005, 0.8, 0.0, 3.9, 93.7, 0.0, 0.0, 1.6, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.900000000000006,Whitman-Hanson - Hanson Middle School,07800315, 1.1, 1.7, 4.9, 90.1, 0.2, 0.0, 1.9, 49.8, 50.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,9.599999999999994,Whitman-Hanson - Indian Head,07800035, 1.2, 1.6, 4.4, 90.4, 0.2, 0.0, 2.2, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,4.4,18.799999999999997,Whitman-Hanson - John H Duval,07800030, 3.6, 1.8, 7.8, 81.2, 0.4, 0.2, 4.9, 53.1, 46.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.5,Whitman-Hanson - Louise A Conley,07800010, 2.2, 1.0, 6.4, 86.5, 0.6, 0.0, 3.4, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.5,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 2.8, 2.8, 4.6, 83.5, 0.0, 0.0, 6.4, 61.5, 38.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.599999999999994,Whitman-Hanson - Whitman Hanson Regional,07800505, 3.2, 1.1, 4.1, 88.4, 0.6, 0.3, 2.2, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,3.4,18.0,Whitman-Hanson - Whitman Middle,07800310, 5.9, 1.0, 6.7, 82.0, 0.7, 0.0, 3.6, 49.2, 50.8, 0.0 -1,1,a-cure-i1,2019-20,1.7,30.900000000000006,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 2.5, 1.3, 23.8, 69.1, 0.5, 0.0, 2.8, 53.8, 46.0, 0.2 -1,1,a-cure-i1,2019-20,0.0,6.599999999999994,Williamsburg - Anne T. Dunphy School,03400020, 2.2, 2.2, 2.2, 93.4, 0.0, 0.0, 0.0, 48.2, 51.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,20.099999999999994,Wilmington - Boutwell,03420005, 0.7, 7.9, 5.0, 79.9, 0.0, 0.0, 6.5, 56.8, 43.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.200000000000003,Wilmington - North Intermediate,03420060, 0.4, 6.1, 3.7, 85.8, 0.0, 0.0, 4.1, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,17.900000000000006,Wilmington - Shawsheen Elementary,03420025, 0.9, 7.2, 5.2, 82.1, 0.3, 0.3, 4.0, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,16.599999999999994,Wilmington - West Intermediate,03420080, 1.7, 5.1, 7.7, 83.4, 0.0, 0.0, 2.1, 51.9, 48.1, 0.0 -7.9999999999999964,5,a-cure-i1,2019-20,8.2,16.400000000000006,Wilmington - Wildwood,03420015, 1.6, 4.4, 4.4, 83.6, 0.0, 0.0, 6.0, 60.1, 39.9, 0.0 -1,1,a-cure-i1,2019-20,4.8,14.200000000000003,Wilmington - Wilmington High,03420505, 1.5, 5.4, 4.3, 85.8, 0.0, 0.0, 3.0, 48.3, 51.5, 0.2 -1,1,a-cure-i1,2019-20,0.2,13.700000000000003,Wilmington - Wilmington Middle School,03420330, 1.6, 4.2, 4.6, 86.3, 0.1, 0.1, 3.1, 51.3, 48.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.099999999999994,Wilmington - Woburn Street,03420020, 1.8, 4.1, 4.1, 84.9, 0.5, 0.0, 4.6, 52.4, 47.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.599999999999994,Winchendon - Memorial,03430040, 0.7, 1.7, 5.9, 88.4, 0.0, 0.0, 3.3, 51.2, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,11.799999999999997,Winchendon - Murdock Academy for Success,03430405, 5.9, 0.0, 0.0, 88.2, 0.0, 0.0, 5.9, 50.0, 50.0, 0.0 -1,1,a-cure-i1,2019-20,4.8,16.900000000000006,Winchendon - Murdock High School,03430515, 1.1, 5.0, 7.7, 83.1, 0.4, 0.0, 2.7, 52.1, 47.9, 0.0 -6.675496688741724,5,a-cure-i1,2019-20,6.3,15.099999999999994,Winchendon - Murdock Middle School,03430315, 1.5, 2.3, 7.5, 84.9, 0.0, 0.4, 3.4, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.099999999999994,Winchendon - Toy Town Elementary,03430050, 1.1, 1.4, 8.0, 85.9, 0.0, 0.0, 3.6, 60.5, 39.5, 0.0 -1,1,a-cure-i1,2019-20,0.0,5.900000000000006,Winchendon - Winchendon PreSchool Program,03430010, 2.4, 0.0, 0.0, 94.1, 0.0, 0.0, 3.5, 51.8, 48.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,13.299999999999997,Winchester - Ambrose Elementary,03440045, 0.0, 6.0, 1.3, 86.7, 0.0, 0.0, 6.0, 52.1, 47.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,21.900000000000006,Winchester - Lincoln Elementary,03440005, 0.0, 10.7, 4.0, 78.1, 0.0, 0.0, 7.1, 49.0, 51.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,41.4,Winchester - Lynch Elementary,03440020, 1.7, 28.8, 4.4, 58.6, 0.0, 0.0, 6.5, 55.3, 44.7, 0.0 -1,1,a-cure-i1,2019-20,3.6,29.0,Winchester - McCall Middle,03440305, 1.1, 17.7, 3.1, 71.0, 0.3, 0.0, 6.9, 50.1, 49.8, 0.1 -1,1,a-cure-i1,2019-20,0.0,32.2,Winchester - Muraco Elementary,03440040, 1.0, 19.9, 2.6, 67.8, 0.3, 0.0, 8.4, 49.4, 50.6, 0.0 -4.550898203592814,4.55,a-cure-i1,2019-20,9.5,33.400000000000006,Winchester - Vinson-Owen Elementary,03440025, 0.7, 20.4, 3.1, 66.6, 0.0, 0.0, 9.2, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,1.3,28.299999999999997,Winchester - Winchester High School,03440505, 1.5, 18.9, 3.9, 71.7, 0.3, 0.1, 3.7, 48.6, 51.3, 0.1 -1,1,a-cure-i1,2019-20,0.0,18.900000000000006,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.2, 0.0, 15.7, 81.1, 0.0, 0.0, 1.9, 52.3, 47.7, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.299999999999997,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.2, 1.2, 15.0, 81.7, 0.0, 0.0, 0.8, 44.4, 55.6, 0.0 -1,1,a-cure-i1,2019-20,2.6,18.099999999999994,Winthrop - Winthrop High School,03460505, 1.2, 1.0, 15.4, 81.9, 0.0, 0.0, 0.5, 50.3, 49.7, 0.0 -1,1,a-cure-i1,2019-20,2.6,23.099999999999994,Winthrop - Winthrop Middle School,03460305, 1.7, 1.0, 18.8, 76.9, 0.2, 0.0, 1.5, 50.2, 49.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,26.400000000000006,Woburn - Clyde Reeves,03470040, 8.0, 8.0, 4.1, 73.6, 1.3, 0.0, 4.9, 49.5, 50.5, 0.0 -3.3239436619718306,3.32,a-cure-i1,2019-20,5.9,28.400000000000006,Woburn - Daniel L Joyce Middle School,03470410, 7.6, 4.1, 13.4, 71.6, 0.2, 0.0, 3.2, 52.9, 47.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,33.400000000000006,Woburn - Goodyear Elementary School,03470005, 7.4, 6.8, 14.5, 66.6, 1.0, 0.0, 3.9, 51.4, 48.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,18.400000000000006,Woburn - Hurld-Wyman Elementary School,03470020, 1.8, 6.8, 7.3, 81.6, 0.0, 0.0, 2.4, 50.4, 49.6, 0.0 -1,1,a-cure-i1,2019-20,3.6,29.0,Woburn - John F Kennedy Middle School,03470405, 8.0, 7.8, 9.1, 71.0, 0.2, 0.4, 3.4, 48.0, 52.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,39.6,Woburn - Linscott-Rumford,03470025, 9.9, 14.3, 8.2, 60.4, 0.5, 0.5, 6.0, 42.9, 57.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,36.2,Woburn - Malcolm White,03470055, 4.5, 4.5, 20.5, 63.8, 0.6, 0.3, 5.8, 46.8, 53.2, 0.0 -2.281124497991968,2.28,a-cure-i1,2019-20,7.1,49.8,Woburn - Mary D Altavesta,03470065, 7.1, 19.2, 17.6, 50.2, 0.4, 0.4, 5.0, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,35.0,Woburn - Shamrock,03470043, 10.3, 6.6, 14.8, 65.0, 0.3, 0.0, 3.1, 51.6, 48.4, 0.0 -1,1,a-cure-i1,2019-20,4.0,28.299999999999997,Woburn - Woburn High,03470505, 6.7, 6.3, 13.1, 71.7, 0.5, 0.1, 1.5, 48.3, 51.6, 0.1 -1,1,a-cure-i1,2019-20,0.0,80.0,Worcester - Belmont Street Community,03480020, 19.2, 6.6, 50.2, 20.0, 0.0, 0.0, 4.0, 53.3, 46.7, 0.0 -2.820809248554913,2.82,a-cure-i1,2019-20,12.2,69.2,Worcester - Burncoat Middle School,03480405, 18.3, 4.4, 42.1, 30.8, 0.1, 0.0, 4.2, 52.4, 47.6, 0.0 -2.9090909090909096,2.91,a-cure-i1,2019-20,12.600000000000001,69.3,Worcester - Burncoat Senior High,03480503, 18.6, 3.6, 42.4, 30.7, 0.1, 0.0, 4.6, 52.4, 47.6, 0.0 -1.309090909090909,1.31,a-cure-i1,2019-20,6.3,77.0,Worcester - Burncoat Street,03480035, 15.6, 2.1, 55.0, 23.0, 0.0, 0.4, 3.9, 47.9, 52.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,86.1,Worcester - Canterbury,03480045, 12.8, 11.7, 57.7, 13.9, 0.3, 0.0, 3.6, 54.6, 45.4, 0.0 -1,1,a-cure-i1,2019-20,4.1,83.4,Worcester - Chandler Elementary Community,03480050, 12.2, 7.1, 61.1, 16.6, 0.2, 0.0, 2.8, 53.3, 46.7, 0.0 -6.042352941176471,5,a-cure-i1,2019-20,32.1,85.0,Worcester - Chandler Magnet,03480052, 2.9, 1.8, 79.3, 15.0, 0.0, 0.0, 1.0, 47.2, 52.8, 0.0 -1,1,a-cure-i1,2019-20,4.3,75.5,Worcester - City View,03480053, 16.4, 2.3, 50.7, 24.5, 0.0, 0.0, 6.1, 51.2, 48.8, 0.0 -3.479744136460554,3.48,a-cure-i1,2019-20,20.4,93.8,Worcester - Claremont Academy,03480350, 10.7, 8.3, 73.1, 6.2, 0.2, 0.0, 1.5, 51.1, 48.9, 0.0 -2.4821002386634845,2.48,a-cure-i1,2019-20,13.0,83.8,Worcester - Clark St Community,03480055, 20.4, 4.2, 55.1, 16.2, 0.4, 0.0, 3.8, 49.1, 50.9, 0.0 -1,1,a-cure-i1,2019-20,4.3,77.3,Worcester - Columbus Park,03480060, 13.3, 8.2, 52.2, 22.7, 0.9, 0.0, 2.6, 51.5, 48.5, 0.0 -2.226537216828479,2.23,a-cure-i1,2019-20,8.6,61.8,Worcester - Doherty Memorial High,03480512, 16.7, 5.9, 34.4, 38.2, 0.2, 0.1, 4.5, 54.9, 45.1, 0.0 -3.8507078507078503,3.85,a-cure-i1,2019-20,18.7,77.7,Worcester - Elm Park Community,03480095, 16.2, 2.1, 56.6, 22.3, 0.0, 0.0, 2.8, 50.9, 49.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,27.799999999999997,Worcester - Flagg Street,03480090, 6.2, 3.6, 13.8, 72.2, 0.5, 0.0, 3.6, 48.8, 51.2, 0.0 -2.953451043338684,2.95,a-cure-i1,2019-20,11.5,62.3,Worcester - Forest Grove Middle,03480415, 14.4, 6.3, 36.7, 37.7, 0.3, 0.0, 4.6, 52.7, 47.3, 0.0 -1,1,a-cure-i1,2019-20,0.0,67.5,Worcester - Francis J McGrath Elementary,03480177, 17.7, 3.8, 37.6, 32.5, 0.0, 0.0, 8.4, 48.1, 51.9, 0.0 -1.5069252077562325,1.51,a-cure-i1,2019-20,6.8,72.2,Worcester - Gates Lane,03480110, 15.7, 12.8, 38.3, 27.8, 0.2, 0.0, 5.2, 54.5, 45.5, 0.0 -2.341034103410341,2.34,a-cure-i1,2019-20,13.3,90.9,Worcester - Goddard School/Science Technical,03480100, 11.5, 11.5, 63.6, 9.1, 1.3, 0.0, 2.9, 52.1, 47.9, 0.0 -1.5287958115183247,1.53,a-cure-i1,2019-20,7.300000000000001,76.4,Worcester - Grafton Street,03480115, 19.2, 5.1, 47.7, 23.6, 0.0, 0.0, 4.3, 51.5, 48.5, 0.0 -7.865168539325844,5,a-cure-i1,2019-20,17.5,35.599999999999994,Worcester - Head Start,03480002, 21.9, 3.3, 5.9, 64.4, 0.8, 0.0, 3.8, 48.6, 51.4, 0.0 -4.035523978685613,4.04,a-cure-i1,2019-20,14.2,56.3,Worcester - Heard Street,03480136, 13.3, 8.0, 26.6, 43.7, 0.0, 0.0, 8.4, 51.0, 49.0, 0.0 -1,1,a-cure-i1,2019-20,2.6,87.4,Worcester - Jacob Hiatt Magnet,03480140, 32.8, 1.9, 47.8, 12.6, 0.0, 0.0, 4.9, 49.3, 50.7, 0.0 -4.093693693693694,4.09,a-cure-i1,2019-20,14.2,55.5,Worcester - Lake View,03480145, 18.1, 8.0, 22.4, 44.5, 0.3, 0.0, 6.7, 52.8, 47.2, 0.0 -1,1,a-cure-i1,2019-20,0.0,85.6,Worcester - Lincoln Street,03480160, 21.4, 6.6, 54.6, 14.4, 0.0, 0.0, 3.1, 53.7, 46.3, 0.0 -2.0213523131672595,2.02,a-cure-i1,2019-20,7.1,56.2,Worcester - May Street,03480175, 12.8, 8.6, 23.3, 43.8, 0.0, 0.3, 11.2, 49.5, 50.5, 0.0 -4.484304932735426,4.48,a-cure-i1,2019-20,12.5,44.6,Worcester - Midland Street,03480185, 7.7, 8.1, 19.4, 55.4, 0.0, 0.0, 9.5, 54.5, 45.5, 0.0 -1,1,a-cure-i1,2019-20,3.1,45.0,Worcester - Nelson Place,03480200, 13.0, 5.8, 19.3, 55.0, 0.0, 0.0, 7.0, 61.3, 38.7, 0.0 -3.060240963855421,3.06,a-cure-i1,2019-20,12.7,66.4,Worcester - Norrback Avenue,03480202, 26.3, 4.6, 31.3, 33.6, 0.0, 0.0, 4.3, 52.9, 47.1, 0.0 -5.053658536585366,5,a-cure-i1,2019-20,25.900000000000002,82.0,Worcester - North High,03480515, 22.2, 5.7, 50.8, 18.0, 0.1, 0.0, 3.1, 52.3, 47.7, 0.0 -2.139154160982265,2.14,a-cure-i1,2019-20,9.8,73.3,Worcester - Quinsigamond,03480210, 17.3, 5.1, 46.6, 26.7, 0.1, 0.0, 4.0, 53.8, 46.2, 0.0 -4.894117647058823,4.89,a-cure-i1,2019-20,23.4,76.5,Worcester - Rice Square,03480215, 21.2, 6.1, 44.4, 23.5, 0.0, 0.0, 4.8, 50.7, 49.3, 0.0 -4.929159802306424,4.93,a-cure-i1,2019-20,18.7,60.7,Worcester - Roosevelt,03480220, 20.7, 4.7, 29.6, 39.3, 0.3, 0.1, 5.3, 50.8, 49.2, 0.0 -3.240506329113924,3.24,a-cure-i1,2019-20,16.0,79.0,Worcester - South High Community,03480520, 18.1, 11.0, 46.7, 21.0, 0.1, 0.0, 3.0, 51.6, 48.4, 0.0 -2.7570621468926553,2.76,a-cure-i1,2019-20,12.2,70.8,Worcester - Sullivan Middle,03480423, 15.4, 9.5, 41.4, 29.2, 0.2, 0.0, 4.3, 50.1, 49.9, 0.0 -1,1,a-cure-i1,2019-20,0.0,59.5,Worcester - Tatnuck,03480230, 21.9, 6.4, 26.1, 40.5, 0.2, 0.2, 4.7, 50.8, 49.2, 0.0 -1.7464788732394367,1.75,a-cure-i1,2019-20,6.2,56.8,Worcester - Thorndyke Road,03480235, 16.7, 7.1, 29.1, 43.2, 0.0, 0.0, 4.0, 50.8, 49.2, 0.0 -1,1,a-cure-i1,2019-20,4.8,81.0,Worcester - Union Hill School,03480240, 12.5, 1.6, 64.4, 19.0, 0.0, 0.0, 2.6, 50.4, 49.6, 0.0 -1.4529540481400438,1.45,a-cure-i1,2019-20,8.3,91.4,Worcester - University Pk Campus School,03480285, 13.5, 18.8, 53.9, 8.6, 0.4, 0.0, 4.9, 48.6, 51.4, 0.0 -1.8673218673218672,1.87,a-cure-i1,2019-20,9.5,81.4,Worcester - Vernon Hill School,03480280, 25.4, 1.9, 50.0, 18.6, 0.2, 0.0, 3.9, 53.4, 46.6, 0.0 -1,1,a-cure-i1,2019-20,0.0,66.2,Worcester - Wawecus Road School,03480026, 11.7, 9.1, 40.3, 33.8, 0.0, 0.0, 5.2, 50.6, 49.4, 0.0 -2.1032863849765255,2.1,a-cure-i1,2019-20,5.6,42.6,Worcester - West Tatnuck,03480260, 9.1, 5.7, 19.9, 57.4, 0.3, 0.0, 7.7, 50.3, 49.7, 0.0 -1.2427184466019416,1.24,a-cure-i1,2019-20,7.2,92.7,Worcester - Woodland Academy,03480030, 10.3, 8.0, 71.9, 7.3, 0.5, 0.0, 2.0, 50.6, 49.4, 0.0 -1,1,a-cure-i1,2019-20,0.0,51.7,Worcester - Worcester Arts Magnet School,03480225, 19.8, 5.9, 21.5, 48.3, 0.2, 0.0, 4.4, 49.5, 50.5, 0.0 -4.58809234507898,4.59,a-cure-i1,2019-20,23.6,82.3,Worcester - Worcester East Middle,03480420, 19.5, 7.6, 50.8, 17.7, 0.1, 0.1, 4.1, 48.9, 51.1, 0.0 -1.4545454545454546,1.45,a-cure-i1,2019-20,5.9,64.9,Worcester - Worcester Technical High,03480605, 16.6, 8.0, 36.7, 35.1, 0.1, 0.1, 3.3, 44.0, 56.0, 0.0 -1,1,a-cure-i1,2019-20,0.0,10.200000000000003,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 4.5, 89.8, 2.3, 0.0, 3.4, 48.9, 51.1, 0.0 -1,1,a-cure-i1,2019-20,0.0,15.0,Wrentham - Charles E Roderick,03500010, 1.0, 2.8, 5.0, 85.0, 1.0, 0.3, 5.0, 51.3, 48.8, 0.0 -1,1,a-cure-i1,2019-20,0.0,14.5,Wrentham - Delaney,03500003, 1.6, 2.7, 5.1, 85.5, 0.0, 0.0, 5.1, 51.3, 48.7, 0.0 -1.1556662515566627,1.16,a-cure-i1,2018-19,5.800000000000001,80.3,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 51.3, 3.4, 22.7, 19.7, 0.2, 0.1, 2.5, 47.5, 52.5 -1,1,a-cure-i1,2018-19,0.0,21.099999999999994,Abington - Abington Early Education Program,00010001, 10.0, 1.1, 10.0, 78.9, 0.0, 0.0, 0.0, 50.0, 50.0 -1,1,a-cure-i1,2018-19,3.9,15.0,Abington - Abington High,00010505, 3.9, 2.4, 7.9, 85.0, 0.0, 0.2, 0.7, 49.0, 51.0 -12.698412698412705,5,a-cure-i1,2018-19,10.0,12.599999999999994,Abington - Abington Middle School,00010405, 2.1, 1.8, 7.1, 87.4, 0.4, 0.0, 1.2, 52.4, 47.6 -1,1,a-cure-i1,2018-19,0.0,16.0,Abington - Beaver Brook Elementary,00010020, 4.8, 2.4, 7.3, 84.0, 1.1, 0.0, 0.4, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,14.599999999999994,Abington - Woodsdale Elementary School,00010015, 2.7, 3.1, 7.1, 85.4, 0.0, 0.3, 1.4, 50.3, 49.7 -9.43139407244786,5,a-cure-i1,2018-19,53.7,91.1,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 60.5, 1.1, 27.0, 8.9, 0.0, 0.2, 2.3, 50.8, 49.2 -1,1,a-cure-i1,2018-19,3.0,43.2,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 2.0, 32.5, 3.8, 56.8, 0.2, 0.0, 4.7, 51.5, 48.5 -1,1,a-cure-i1,2018-19,3.8,41.4,Acton-Boxborough - Blanchard Memorial School,06000005, 1.3, 31.5, 5.0, 58.6, 0.4, 0.0, 3.2, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,32.599999999999994,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 1.5, 20.5, 2.2, 67.4, 0.2, 0.5, 7.7, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.0,57.1,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 5.7, 34.3, 7.6, 42.9, 0.0, 0.0, 9.5, 54.3, 45.7 -1.4913448735019974,1.49,a-cure-i1,2018-19,7.0,75.1,Acton-Boxborough - Luther Conant School,06000030, 2.7, 61.5, 7.1, 24.9, 0.0, 0.2, 3.6, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,32.900000000000006,Acton-Boxborough - McCarthy-Towne School,06000015, 3.5, 12.3, 10.0, 67.1, 0.4, 0.0, 6.7, 50.6, 49.4 -1,1,a-cure-i1,2018-19,3.9,33.5,Acton-Boxborough - Merriam School,06000010, 2.0, 20.9, 6.5, 66.5, 0.0, 0.2, 3.9, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,67.0,Acton-Boxborough - Paul P Gates Elementary School,06000025, 2.9, 55.6, 5.1, 33.0, 0.5, 0.0, 2.9, 54.8, 45.2 -1,1,a-cure-i1,2018-19,3.4,46.3,Acton-Boxborough - Raymond J Grey Junior High,06000405, 2.9, 35.0, 4.7, 53.7, 0.3, 0.0, 3.4, 54.3, 45.7 -1,1,a-cure-i1,2018-19,3.1,8.700000000000003,Acushnet - Acushnet Elementary School,00030025, 0.7, 0.4, 4.1, 91.3, 0.2, 0.0, 3.4, 49.9, 50.1 -1,1,a-cure-i1,2018-19,3.4,5.200000000000003,Acushnet - Albert F Ford Middle School,00030305, 0.9, 0.5, 2.3, 94.8, 0.0, 0.0, 1.6, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.0,9.599999999999994,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 2.1, 0.8, 2.4, 90.4, 0.0, 0.0, 4.3, 51.2, 48.8 -9.230769230769226,5,a-cure-i1,2018-19,6.0,10.400000000000006,Adams-Cheshire - Hoosac Valley High School,06030505, 4.9, 1.8, 2.6, 89.6, 0.3, 0.0, 0.8, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.9,10.700000000000003,Adams-Cheshire - Hoosac Valley Middle School,06030315, 4.2, 0.2, 3.7, 89.3, 0.2, 0.2, 2.0, 51.0, 49.0 -4.160990712074304,4.16,a-cure-i1,2018-19,8.4,32.3,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 1.8, 17.4, 5.7, 67.7, 0.3, 0.0, 7.1, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,19.099999999999994,Agawam - Agawam Early Childhood Center,00050003, 1.9, 8.0, 7.4, 80.9, 0.0, 0.0, 1.9, 48.8, 51.2 -1,1,a-cure-i1,2018-19,1.1,12.299999999999997,Agawam - Agawam High,00050505, 1.6, 2.0, 6.4, 87.7, 0.1, 0.0, 2.2, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,16.799999999999997,Agawam - Agawam Junior High,00050405, 2.4, 4.4, 7.3, 83.2, 0.0, 0.0, 2.7, 53.8, 46.2 -1,1,a-cure-i1,2018-19,0.0,11.5,Agawam - Benjamin J Phelps,00050020, 1.7, 2.3, 4.6, 88.5, 0.0, 0.0, 2.9, 58.0, 42.0 -1,1,a-cure-i1,2018-19,0.0,21.299999999999997,Agawam - Clifford M Granger,00050010, 1.9, 2.7, 14.7, 78.7, 0.0, 0.4, 1.6, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,19.299999999999997,Agawam - James Clark School,00050030, 3.2, 3.8, 9.5, 80.7, 0.0, 0.0, 2.8, 53.5, 46.5 -1,1,a-cure-i1,2018-19,2.0,17.700000000000003,Agawam - Roberta G. Doering School,00050303, 2.5, 2.9, 8.6, 82.3, 0.0, 0.0, 3.7, 48.5, 51.5 -1,1,a-cure-i1,2018-19,0.0,21.400000000000006,Agawam - Robinson Park,00050025, 3.3, 4.1, 10.1, 78.6, 0.0, 0.0, 3.8, 50.1, 49.9 -3.9524438573315717,3.95,a-cure-i1,2018-19,18.7,75.7,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 15.9, 0.0, 59.0, 24.3, 0.7, 0.0, 0.2, 44.4, 55.6 -1,1,a-cure-i1,2018-19,0.0,15.0,Amesbury - Amesbury Elementary,00070005, 1.3, 0.8, 6.7, 85.0, 0.3, 0.3, 5.6, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,13.599999999999994,Amesbury - Amesbury High,00070505, 1.6, 1.6, 6.4, 86.4, 0.0, 0.0, 4.1, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,19.599999999999994,Amesbury - Amesbury Innovation High School,00070515, 3.9, 0.0, 9.8, 80.4, 0.0, 0.0, 5.9, 62.7, 37.3 -1,1,a-cure-i1,2018-19,1.8,15.5,Amesbury - Amesbury Middle,00070013, 2.0, 0.8, 8.7, 84.5, 0.0, 0.3, 3.7, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,15.599999999999994,Amesbury - Charles C Cashman Elementary,00070010, 2.1, 1.7, 9.2, 84.4, 0.2, 0.0, 2.4, 54.7, 45.3 -2.053475935828877,2.05,a-cure-i1,2018-19,7.2,56.1,Amherst - Crocker Farm Elementary,00080009, 9.4, 12.9, 24.9, 43.9, 0.5, 0.0, 8.4, 54.6, 45.2 -5.727626459143969,5,a-cure-i1,2018-19,18.4,51.4,Amherst - Fort River Elementary,00080020, 7.3, 15.2, 21.6, 48.6, 0.0, 0.0, 7.3, 50.2, 49.8 -12.0625,5,a-cure-i1,2018-19,38.6,51.2,Amherst - Wildwood Elementary,00080050, 9.0, 15.2, 18.0, 48.8, 0.2, 0.0, 8.8, 52.6, 47.4 -5.966101694915254,5,a-cure-i1,2018-19,15.399999999999999,41.3,Amherst-Pelham - Amherst Regional High,06050505, 6.8, 9.5, 16.0, 58.7, 0.1, 0.1, 8.8, 49.8, 50.0 -8.897025171624714,5,a-cure-i1,2018-19,24.3,43.7,Amherst-Pelham - Amherst Regional Middle School,06050405, 8.9, 8.2, 18.3, 56.3, 0.2, 0.0, 8.2, 52.6, 47.4 -6.865454545454546,5,a-cure-i1,2018-19,11.8,27.5,Andover - Andover High,00090505, 2.2, 17.5, 5.6, 72.5, 0.1, 0.0, 2.1, 47.3, 52.6 -1,1,a-cure-i1,2018-19,2.7,26.099999999999994,Andover - Andover West Middle,00090310, 2.7, 15.1, 4.8, 73.9, 0.2, 0.0, 3.3, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,23.900000000000006,Andover - Bancroft Elementary,00090003, 2.2, 9.0, 6.8, 76.1, 0.0, 0.0, 5.9, 52.3, 47.7 -8.0,5,a-cure-i1,2018-19,11.100000000000001,22.200000000000003,Andover - Doherty Middle,00090305, 1.6, 11.9, 5.4, 77.8, 0.5, 0.2, 2.6, 48.0, 52.0 -2.429799426934097,2.43,a-cure-i1,2018-19,5.3,34.900000000000006,Andover - Henry C Sanborn Elementary,00090010, 2.9, 22.9, 6.3, 65.1, 0.0, 0.0, 2.9, 52.6, 47.4 -1,1,a-cure-i1,2018-19,0.0,45.4,Andover - High Plain Elementary,00090004, 3.3, 28.4, 7.7, 54.6, 0.2, 0.2, 5.5, 52.8, 47.0 -4.395604395604396,4.4,a-cure-i1,2018-19,12.5,45.5,Andover - Shawsheen School,00090005, 1.5, 34.8, 4.5, 54.5, 0.0, 0.0, 4.5, 72.7, 27.3 -1,1,a-cure-i1,2018-19,0.0,23.099999999999994,Andover - South Elementary,00090020, 0.8, 16.6, 3.5, 76.9, 0.4, 0.0, 1.7, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,29.0,Andover - West Elementary,00090025, 2.7, 17.3, 6.8, 71.0, 0.0, 0.0, 2.2, 47.3, 52.7 -1,1,a-cure-i1,2018-19,3.6,47.2,Andover - Wood Hill Middle School,00090350, 2.2, 32.1, 10.5, 52.8, 0.2, 0.0, 2.2, 50.9, 49.1 -11.533875338753388,5,a-cure-i1,2018-19,26.6,36.9,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 10.7, 1.7, 18.7, 63.1, 0.2, 0.0, 5.6, 53.2, 46.8 -5.992277992277991,5,a-cure-i1,2018-19,9.7,25.900000000000006,Arlington - Arlington High,00100505, 3.7, 11.3, 6.3, 74.1, 0.0, 0.1, 4.6, 48.8, 51.0 -9.967213114754095,5,a-cure-i1,2018-19,15.2,24.400000000000006,Arlington - Brackett,00100010, 1.2, 9.7, 4.4, 75.6, 0.0, 0.2, 8.9, 53.0, 47.0 -1,1,a-cure-i1,2018-19,3.7,24.200000000000003,Arlington - Cyrus E Dallin,00100025, 1.9, 12.4, 4.5, 75.8, 0.0, 0.0, 5.4, 51.4, 48.6 -2.657980456026058,2.66,a-cure-i1,2018-19,5.1,30.700000000000003,Arlington - Gibbs School,00100305, 3.2, 13.2, 7.3, 69.3, 0.2, 0.2, 6.5, 54.0, 46.0 -6.287539936102236,5,a-cure-i1,2018-19,12.299999999999999,31.299999999999997,Arlington - Hardy,00100030, 5.1, 14.9, 5.8, 68.7, 0.2, 0.2, 5.1, 54.8, 45.2 -1,1,a-cure-i1,2018-19,0.0,30.799999999999997,Arlington - John A Bishop,00100005, 3.8, 16.6, 2.9, 69.2, 0.0, 0.4, 7.1, 54.9, 45.1 -1,1,a-cure-i1,2018-19,4.3,33.3,Arlington - M Norcross Stratton,00100055, 3.3, 16.4, 5.4, 66.7, 0.0, 0.0, 8.2, 50.9, 49.1 -4.995633187772927,5.0,a-cure-i1,2018-19,14.3,45.8,Arlington - Menotomy Preschool,00100038, 5.2, 24.0, 8.3, 54.2, 0.0, 0.0, 8.3, 67.7, 32.3 -3.0418250950570345,3.04,a-cure-i1,2018-19,5.0,26.299999999999997,Arlington - Ottoson Middle,00100410, 3.3, 11.0, 5.8, 73.7, 0.0, 0.2, 6.0, 45.5, 54.5 -6.440251572327045,5,a-cure-i1,2018-19,12.8,31.799999999999997,Arlington - Peirce,00100045, 4.5, 13.3, 8.4, 68.2, 0.0, 0.0, 5.5, 50.6, 49.4 -1,1,a-cure-i1,2018-19,2.2,37.5,Arlington - Thompson,00100050, 4.7, 14.2, 11.0, 62.5, 0.4, 0.0, 7.1, 49.7, 50.3 -13.692307692307685,5,a-cure-i1,2018-19,8.9,10.400000000000006,Ashburnham-Westminster - Briggs Elementary,06100025, 0.4, 0.9, 5.3, 89.6, 0.0, 0.0, 3.8, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,8.200000000000003,Ashburnham-Westminster - Meetinghouse School,06100010, 0.5, 1.1, 4.9, 91.8, 0.0, 0.0, 1.6, 49.2, 50.8 -17.03225806451612,5,a-cure-i1,2018-19,6.6000000000000005,6.200000000000003,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.3, 1.6, 2.7, 93.8, 0.0, 0.0, 1.6, 49.8, 50.1 -1,1,a-cure-i1,2018-19,0.0,7.700000000000003,Ashburnham-Westminster - Overlook Middle School,06100305, 0.5, 0.5, 4.5, 92.3, 0.2, 0.0, 1.9, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,14.099999999999994,Ashburnham-Westminster - Westminster Elementary,06100005, 1.5, 0.3, 8.2, 85.9, 0.0, 0.0, 4.1, 54.0, 46.0 -1,1,a-cure-i1,2018-19,1.8,28.200000000000003,Ashland - Ashland High,00140505, 2.6, 11.4, 11.4, 71.8, 0.2, 0.0, 2.5, 46.5, 53.5 -3.017964071856287,3.02,a-cure-i1,2018-19,6.3,33.400000000000006,Ashland - Ashland Middle,00140405, 2.1, 14.6, 13.5, 66.6, 0.5, 0.0, 2.6, 49.5, 50.5 -1,1,a-cure-i1,2018-19,0.0,32.3,Ashland - David Mindess,00140015, 1.8, 13.9, 11.9, 67.7, 1.6, 0.0, 3.2, 49.5, 50.5 -1,1,a-cure-i1,2018-19,0.0,38.4,Ashland - Henry E Warren Elementary,00140010, 2.6, 18.2, 12.4, 61.6, 0.3, 0.0, 5.0, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,36.2,Ashland - William Pittaway Elementary,00140005, 7.8, 25.9, 0.0, 63.8, 0.9, 0.0, 1.7, 58.6, 41.4 -1,1,a-cure-i1,2018-19,4.300000000000001,20.900000000000006,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 1.0, 0.5, 16.5, 79.1, 0.3, 0.0, 2.6, 59.9, 40.0 -1,1,a-cure-i1,2018-19,0.0,17.599999999999994,Athol-Royalston - Athol Community Elementary School,06150020, 1.6, 2.1, 10.2, 82.4, 0.0, 0.0, 3.7, 53.1, 46.9 -1,1,a-cure-i1,2018-19,3.9,12.700000000000003,Athol-Royalston - Athol High,06150505, 1.8, 0.9, 7.1, 87.3, 0.0, 0.0, 2.9, 53.1, 46.9 -1,1,a-cure-i1,2018-19,4.2,17.099999999999994,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.2, 1.0, 12.0, 82.9, 0.0, 0.0, 2.9, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,8.0,Athol-Royalston - Royalston Community School,06150050, 0.7, 0.7, 2.2, 92.0, 0.0, 0.0, 4.3, 50.7, 49.3 -1,1,a-cure-i1,2018-19,1.4,22.099999999999994,Atlantis Charter (District) - Atlantis Charter School,04910550, 5.6, 1.8, 10.7, 77.9, 0.2, 0.1, 3.8, 47.8, 52.2 -1,1,a-cure-i1,2018-19,4.4,31.799999999999997,Attleboro - A. Irvin Studley Elementary School,00160001, 5.1, 3.5, 17.2, 68.2, 0.0, 0.3, 5.8, 51.0, 49.0 -5.171270718232043,5,a-cure-i1,2018-19,11.7,36.2,Attleboro - Attleboro Community Academy,00160515, 13.8, 0.0, 20.7, 63.8, 0.0, 0.0, 1.7, 60.3, 39.7 -4.180645161290323,4.18,a-cure-i1,2018-19,8.1,31.0,Attleboro - Attleboro High,00160505, 6.6, 4.6, 14.7, 69.0, 0.3, 0.2, 4.6, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,36.2,Attleboro - Cyril K. Brennan Middle School,00160315, 5.4, 4.9, 19.5, 63.8, 0.3, 0.0, 6.1, 51.2, 48.5 -1,1,a-cure-i1,2018-19,0.0,25.700000000000003,Attleboro - Early Learning Center,00160008, 5.0, 3.9, 10.6, 74.3, 0.0, 0.0, 6.1, 59.8, 40.2 -1,1,a-cure-i1,2018-19,0.0,31.900000000000006,Attleboro - Hill-Roberts Elementary School,00160045, 6.6, 5.7, 12.6, 68.1, 0.2, 0.0, 6.8, 53.1, 46.9 -6.22754491017964,5,a-cure-i1,2018-19,13.0,33.400000000000006,Attleboro - Hyman Fine Elementary School,00160040, 4.8, 4.3, 16.1, 66.6, 0.0, 0.0, 8.2, 49.2, 50.8 -1,1,a-cure-i1,2018-19,3.4,37.9,Attleboro - Peter Thacher Elementary School,00160050, 10.1, 6.4, 10.8, 62.1, 0.5, 0.0, 10.1, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,28.700000000000003,Attleboro - Robert J. Coelho Middle School,00160305, 5.8, 4.8, 10.8, 71.3, 0.3, 0.0, 7.1, 53.3, 46.7 -1,1,a-cure-i1,2018-19,0.0,34.400000000000006,Attleboro - Thomas Willett Elementary School,00160035, 6.9, 2.7, 16.8, 65.6, 0.0, 0.0, 7.9, 52.5, 47.5 -1,1,a-cure-i1,2018-19,3.1,32.2,Attleboro - Wamsutta Middle School,00160320, 5.4, 5.9, 16.4, 67.8, 0.0, 0.0, 4.5, 53.6, 46.4 -1,1,a-cure-i1,2018-19,4.8,18.599999999999994,Auburn - Auburn Middle,00170305, 1.4, 3.7, 10.3, 81.4, 0.0, 0.0, 3.2, 53.3, 46.7 -1,1,a-cure-i1,2018-19,2.8000000000000003,17.299999999999997,Auburn - Auburn Senior High,00170505, 2.0, 4.3, 6.7, 82.7, 0.3, 0.0, 4.0, 46.5, 53.5 -1,1,a-cure-i1,2018-19,0.0,17.099999999999994,Auburn - Bryn Mawr,00170010, 0.7, 3.7, 9.0, 82.9, 0.0, 0.0, 3.7, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,18.299999999999997,Auburn - Pakachoag School,00170025, 2.0, 2.9, 9.2, 81.7, 0.3, 0.0, 3.9, 54.6, 45.4 -1,1,a-cure-i1,2018-19,0.0,18.900000000000006,Auburn - Swanson Road Intermediate School,00170030, 2.3, 3.8, 10.0, 81.1, 0.0, 0.0, 2.8, 49.3, 50.7 -4.115107913669065,4.12,a-cure-i1,2018-19,14.3,55.6,Avon - Avon Middle High School,00180510, 38.2, 4.7, 7.1, 44.4, 0.3, 0.0, 5.3, 53.4, 46.6 -1,1,a-cure-i1,2018-19,0.0,46.1,Avon - Ralph D Butler,00180010, 24.4, 4.9, 10.3, 53.9, 0.2, 0.0, 6.2, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,29.299999999999997,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 5.7, 2.3, 9.8, 70.7, 1.8, 0.3, 9.5, 47.3, 52.7 -8.57142857142857,5,a-cure-i1,2018-19,12.0,22.400000000000006,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 3.4, 2.2, 12.0, 77.6, 1.2, 0.7, 2.9, 51.4, 48.6 -1,1,a-cure-i1,2018-19,4.3,15.900000000000006,Ayer Shirley School District - Lura A. White Elementary School,06160001, 1.9, 1.1, 8.8, 84.1, 0.0, 0.3, 4.0, 56.0, 44.0 -1,1,a-cure-i1,2018-19,0.0,27.400000000000006,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 4.9, 5.1, 11.1, 72.6, 0.4, 0.2, 5.7, 52.3, 47.7 -4.450704225352111,4.45,a-cure-i1,2018-19,7.8999999999999995,28.400000000000006,Barnstable - Barnstable High,00200505, 8.4, 2.0, 12.9, 71.6, 0.4, 0.4, 4.1, 48.2, 51.8 -1,1,a-cure-i1,2018-19,4.6,29.299999999999997,Barnstable - Barnstable Intermediate School,00200315, 7.4, 2.3, 15.5, 70.7, 0.0, 0.3, 3.8, 52.2, 47.8 -1,1,a-cure-i1,2018-19,4.4,30.0,Barnstable - Barnstable United Elementary School,00200050, 6.9, 1.9, 15.7, 70.0, 0.7, 0.1, 4.7, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,27.099999999999994,Barnstable - Centerville Elementary,00200010, 7.6, 1.2, 12.7, 72.9, 0.0, 0.0, 5.6, 55.0, 45.0 -1,1,a-cure-i1,2018-19,0.0,46.6,Barnstable - Enoch Cobb Early Learning Center,00200001, 10.3, 0.7, 20.5, 53.4, 0.7, 0.0, 14.4, 60.3, 39.7 -1.9141104294478526,1.91,a-cure-i1,2018-19,7.8,65.2,Barnstable - Hyannis West Elementary,00200025, 14.6, 2.2, 37.9, 34.8, 0.6, 0.3, 9.6, 47.8, 52.2 -1,1,a-cure-i1,2018-19,0.0,24.0,Barnstable - West Barnstable Elementary,00200005, 5.0, 2.7, 8.1, 76.0, 0.0, 0.0, 8.1, 58.1, 41.9 -1,1,a-cure-i1,2018-19,0.0,17.599999999999994,Barnstable - West Villages Elementary School,00200045, 2.9, 1.2, 7.4, 82.4, 0.0, 0.0, 6.2, 51.8, 48.0 -1.4678899082568808,1.47,a-cure-i1,2018-19,5.0,54.5,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 17.9, 3.4, 28.6, 45.5, 0.3, 0.0, 4.1, 50.0, 50.0 -3.873684210526316,3.87,a-cure-i1,2018-19,23.0,95.0,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 24.6, 0.6, 68.4, 5.0, 0.0, 0.2, 1.2, 49.8, 50.2 -2.935779816513761,2.94,a-cure-i1,2018-19,6.0,32.7,Bedford - Bedford High,00230505, 6.6, 12.7, 8.1, 67.3, 0.0, 0.2, 5.0, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.4,32.5,Bedford - John Glenn Middle,00230305, 6.4, 16.8, 5.3, 67.5, 0.2, 0.0, 3.9, 54.1, 45.9 -2.5304136253041363,2.53,a-cure-i1,2018-19,6.5,41.1,Bedford - Lt Elezer Davis,00230010, 6.3, 21.9, 4.7, 58.9, 0.0, 0.0, 8.2, 50.4, 49.6 -4.455089820359281,4.46,a-cure-i1,2018-19,9.3,33.400000000000006,Bedford - Lt Job Lane School,00230012, 5.3, 18.9, 4.0, 66.6, 0.0, 0.0, 5.2, 49.3, 50.7 -1,1,a-cure-i1,2018-19,4.2,8.900000000000006,Belchertown - Belchertown High,00240505, 2.2, 1.5, 2.9, 91.1, 0.1, 0.1, 2.0, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,13.299999999999997,Belchertown - Chestnut Hill Community School,00240006, 2.4, 2.0, 5.2, 86.7, 0.4, 0.2, 3.1, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,15.099999999999994,Belchertown - Cold Spring,00240005, 1.7, 1.1, 6.7, 84.9, 0.0, 0.0, 5.6, 47.5, 52.5 -1,1,a-cure-i1,2018-19,0.0,11.200000000000003,Belchertown - Jabish Middle School,00240025, 2.1, 1.6, 4.4, 88.8, 0.0, 0.5, 2.6, 48.3, 51.7 -1,1,a-cure-i1,2018-19,0.0,12.599999999999994,Belchertown - Swift River Elementary,00240018, 1.3, 1.5, 5.0, 87.4, 0.4, 0.0, 4.4, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,10.200000000000003,Bellingham - Bellingham Early Childhood Center,00250003, 2.0, 3.1, 3.1, 89.8, 0.0, 0.0, 2.0, 55.1, 44.9 -1,1,a-cure-i1,2018-19,3.6,11.0,Bellingham - Bellingham High School,00250505, 2.4, 2.8, 3.6, 89.0, 0.1, 0.0, 2.0, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,13.400000000000006,Bellingham - Bellingham Memorial School,00250315, 2.0, 3.7, 5.2, 86.6, 0.1, 0.0, 2.4, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,9.0,Bellingham - Joseph F DiPietro Elementary School,00250020, 1.4, 1.7, 4.6, 91.0, 0.0, 0.6, 0.6, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,11.400000000000006,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 8.6, 88.6, 0.0, 0.0, 2.9, 42.9, 48.6 -1,1,a-cure-i1,2018-19,0.0,14.099999999999994,Bellingham - Stall Brook,00250025, 1.4, 1.7, 5.2, 85.9, 0.0, 2.4, 3.4, 53.1, 46.9 -3.92258064516129,3.92,a-cure-i1,2018-19,7.6,31.0,Belmont - Belmont High,00260505, 3.7, 18.0, 4.2, 69.0, 0.1, 0.0, 5.0, 49.1, 50.9 -2.8256070640176603,2.83,a-cure-i1,2018-19,8.0,45.3,Belmont - Daniel Butler,00260015, 2.3, 27.3, 4.9, 54.7, 0.5, 0.0, 10.2, 54.4, 45.6 -3.966197183098592,3.97,a-cure-i1,2018-19,8.8,35.5,Belmont - Mary Lee Burbank,00260010, 5.0, 18.9, 2.6, 64.5, 0.0, 0.2, 8.6, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,28.400000000000006,Belmont - Roger E Wellington,00260035, 2.4, 14.3, 2.5, 71.6, 0.0, 0.0, 9.2, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,41.4,Belmont - Winn Brook,00260005, 1.3, 29.5, 3.0, 58.6, 0.0, 0.0, 7.6, 53.8, 46.2 -6.725274725274726,5,a-cure-i1,2018-19,15.3,36.4,Belmont - Winthrop L Chenery Middle,00260305, 3.9, 19.9, 5.5, 63.6, 0.1, 0.1, 6.8, 50.2, 49.8 -6.416326530612245,5,a-cure-i1,2018-19,39.3,98.0,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 83.3, 0.8, 11.0, 2.0, 0.3, 0.6, 2.0, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,32.900000000000006,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 2.4, 22.7, 3.5, 67.1, 0.0, 0.0, 4.4, 47.1, 52.9 -1.2654155495978554,1.27,a-cure-i1,2018-19,5.9,74.6,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 11.8, 2.4, 57.5, 25.4, 0.0, 0.0, 2.9, 46.6, 53.4 -1,1,a-cure-i1,2018-19,0.0,5.799999999999997,Berkley - Berkley Community School,00270010, 0.4, 0.2, 1.4, 94.2, 0.2, 0.2, 3.4, 48.5, 51.5 -1,1,a-cure-i1,2018-19,0.0,6.599999999999994,Berkley - Berkley Middle School,00270305, 0.3, 0.0, 2.0, 93.4, 0.0, 0.0, 4.3, 49.4, 50.6 -3.814569536423841,3.81,a-cure-i1,2018-19,7.2,30.200000000000003,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 11.9, 2.9, 9.3, 69.8, 0.3, 0.0, 5.8, 52.6, 47.4 -1,1,a-cure-i1,2018-19,3.8,14.900000000000006,Berkshire Hills - Monument Mt Regional High,06180505, 2.1, 1.9, 7.2, 85.1, 0.2, 0.4, 3.2, 50.6, 49.4 -4.525252525252526,4.53,a-cure-i1,2018-19,5.6,19.799999999999997,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.5, 3.8, 9.3, 80.2, 0.3, 0.0, 4.9, 53.2, 46.8 -1,1,a-cure-i1,2018-19,0.4,23.700000000000003,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.2, 3.0, 10.6, 76.3, 0.0, 0.0, 8.8, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,11.5,Berlin - Berlin Memorial,00280005, 0.5, 2.2, 4.4, 88.5, 0.0, 0.0, 4.4, 55.7, 44.3 -1,1,a-cure-i1,2018-19,1.9,12.200000000000003,Berlin-Boylston - Tahanto Regional High,06200505, 2.4, 3.6, 3.4, 87.8, 0.0, 0.2, 2.6, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,22.799999999999997,Beverly - Ayers/Ryal Side School,00300055, 4.7, 4.5, 10.8, 77.2, 0.0, 0.0, 2.8, 50.7, 49.3 -1,1,a-cure-i1,2018-19,2.0,22.299999999999997,Beverly - Beverly High,00300505, 3.8, 2.5, 13.0, 77.7, 0.0, 0.2, 2.8, 51.6, 48.4 -1,1,a-cure-i1,2018-19,3.7,22.200000000000003,Beverly - Beverly Middle School,00300305, 2.7, 2.5, 13.7, 77.8, 0.0, 0.0, 3.2, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,27.0,Beverly - Centerville Elementary,00300010, 4.4, 0.7, 16.6, 73.0, 0.0, 0.0, 5.4, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,22.0,Beverly - Cove Elementary,00300015, 2.8, 1.4, 12.8, 78.0, 0.0, 0.0, 5.0, 50.6, 49.4 -1,1,a-cure-i1,2018-19,0.0,24.299999999999997,Beverly - Hannah Elementary,00300033, 2.4, 1.8, 13.7, 75.7, 0.0, 0.0, 6.4, 54.1, 45.9 -1,1,a-cure-i1,2018-19,0.0,22.0,Beverly - McKeown School,00300002, 7.3, 4.1, 8.1, 78.0, 0.8, 0.0, 1.6, 63.4, 36.6 -1,1,a-cure-i1,2018-19,0.0,23.599999999999994,Beverly - North Beverly Elementary,00300040, 2.6, 1.3, 16.3, 76.4, 0.3, 0.0, 3.2, 51.8, 48.2 -1,1,a-cure-i1,2018-19,1.3,19.900000000000006,Billerica - Billerica Memorial High School,00310505, 4.8, 7.6, 4.7, 80.1, 0.2, 0.1, 2.5, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,26.099999999999994,Billerica - Eugene C Vining,00310030, 3.3, 6.1, 10.0, 73.9, 0.0, 0.0, 6.7, 57.8, 42.2 -1,1,a-cure-i1,2018-19,0.0,22.299999999999997,Billerica - Frederick J Dutile,00310007, 4.3, 9.0, 6.5, 77.7, 0.0, 0.0, 2.5, 46.8, 53.2 -1,1,a-cure-i1,2018-19,0.0,29.099999999999994,Billerica - Hajjar Elementary,00310026, 6.5, 9.4, 10.3, 70.9, 0.2, 0.0, 2.7, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,15.099999999999994,Billerica - John F Kennedy,00310012, 1.3, 4.4, 5.4, 84.9, 0.0, 0.0, 4.1, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,19.5,Billerica - Locke Middle,00310310, 3.1, 6.2, 6.6, 80.5, 0.0, 0.6, 3.1, 50.9, 49.1 -1,1,a-cure-i1,2018-19,2.0,18.900000000000006,Billerica - Marshall Middle School,00310305, 4.3, 6.7, 6.0, 81.1, 0.3, 0.2, 1.4, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,29.900000000000006,Billerica - Parker,00310015, 5.6, 11.8, 8.6, 70.1, 0.2, 0.0, 3.8, 55.6, 44.4 -1,1,a-cure-i1,2018-19,0.0,25.0,Billerica - Thomas Ditson,00310005, 4.7, 9.0, 6.7, 75.0, 0.0, 0.0, 4.5, 49.9, 50.1 -1,1,a-cure-i1,2018-19,1.0,8.599999999999994,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.9, 2.0, 4.4, 91.4, 0.0, 0.0, 1.4, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,15.599999999999994,Blackstone-Millville - A F Maloney,06220015, 1.6, 1.0, 7.6, 84.4, 0.0, 0.0, 5.4, 54.8, 45.2 -7.926605504587152,5,a-cure-i1,2018-19,5.4,10.900000000000006,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.7, 1.8, 6.8, 89.1, 0.0, 0.0, 1.6, 51.3, 48.7 -1,1,a-cure-i1,2018-19,3.7,11.400000000000006,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.7, 0.5, 5.3, 88.6, 0.0, 0.0, 3.9, 50.4, 49.4 -1,1,a-cure-i1,2018-19,0.0,17.599999999999994,Blackstone-Millville - John F Kennedy Elementary,06220008, 1.1, 0.0, 10.3, 82.4, 0.0, 0.0, 6.1, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,11.099999999999994,Blackstone-Millville - Millville Elementary,06220010, 0.4, 0.7, 5.2, 88.9, 0.0, 0.0, 4.8, 54.6, 45.4 -3.5513126491646783,3.55,a-cure-i1,2018-19,9.3,41.9,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 22.7, 1.4, 12.7, 58.1, 0.6, 0.1, 4.4, 56.1, 43.9 -7.851366120218579,5,a-cure-i1,2018-19,44.9,91.5,Boston - Another Course To College,00350541, 46.0, 1.8, 42.0, 8.5, 0.0, 0.0, 1.8, 50.9, 49.1 -18.745428973277075,5,a-cure-i1,2018-19,83.3,71.1,Boston - Baldwin Early Learning Center,00350003, 10.1, 25.2, 29.6, 28.9, 0.6, 0.0, 5.7, 58.5, 41.5 -5.782178217821782,5,a-cure-i1,2018-19,21.9,60.6,Boston - Beethoven,00350021, 26.7, 3.6, 26.4, 39.4, 0.0, 0.0, 3.9, 45.6, 54.4 -3.8983050847457625,3.9,a-cure-i1,2018-19,23.0,94.4,Boston - Blackstone,00350390, 24.9, 2.2, 64.4, 5.6, 0.4, 0.0, 2.5, 53.0, 47.0 -12.36511156186613,5,a-cure-i1,2018-19,76.20000000000002,98.6,Boston - Boston Adult Academy,00350548, 44.4, 4.2, 47.9, 1.4, 0.0, 0.0, 2.1, 50.7, 49.3 -10.150731158605174,5,a-cure-i1,2018-19,56.4,88.9,Boston - Boston Arts Academy,00350546, 42.0, 3.6, 38.4, 11.1, 0.4, 0.2, 4.3, 32.8, 67.2 -10.715096481271285,5,a-cure-i1,2018-19,59.00000000000001,88.1,Boston - Boston Collaborative High School,00350755, 40.0, 3.1, 42.5, 11.9, 0.6, 0.0, 1.9, 46.3, 53.8 -9.22372528616025,5,a-cure-i1,2018-19,55.4,96.1,Boston - Boston Community Leadership Academy,00350558, 36.1, 3.7, 54.6, 3.9, 0.0, 0.0, 1.6, 53.0, 47.0 -7.034764826175869,5,a-cure-i1,2018-19,43.0,97.8,Boston - Boston International High School,00350507, 37.4, 5.7, 53.9, 2.2, 0.0, 0.3, 0.5, 51.8, 48.2 -10.13533834586466,5,a-cure-i1,2018-19,33.699999999999996,53.2,Boston - Boston Latin,00350560, 7.5, 28.6, 12.5, 46.8, 0.1, 0.2, 4.3, 45.7, 54.3 -9.794076163610718,5,a-cure-i1,2018-19,43.4,70.9,Boston - Boston Latin Academy,00350545, 20.9, 21.0, 25.5, 29.1, 0.2, 0.1, 3.2, 40.8, 59.1 -10.085889570552148,5,a-cure-i1,2018-19,41.1,65.2,Boston - Boston Teachers Union School,00350012, 25.9, 0.7, 33.7, 34.8, 0.0, 0.0, 4.8, 51.5, 48.5 -7.144654088050315,5,a-cure-i1,2018-19,42.6,95.4,Boston - Brighton High,00350505, 40.4, 4.9, 47.8, 4.6, 0.3, 0.2, 1.7, 63.5, 36.5 -1,1,a-cure-i1,2018-19,0.0,86.2,Boston - Carter School,00350036, 58.6, 6.9, 17.2, 13.8, 0.0, 3.4, 0.0, 58.6, 41.4 -10.758064516129032,5,a-cure-i1,2018-19,66.7,99.2,Boston - Charles H Taylor,00350054, 77.6, 1.7, 16.8, 0.8, 0.6, 0.0, 2.5, 51.5, 48.5 -7.277842907385697,5,a-cure-i1,2018-19,38.8,85.3,Boston - Charles Sumner,00350052, 18.7, 0.7, 60.4, 14.7, 0.0, 0.2, 5.3, 54.6, 45.4 -6.768586387434555,5,a-cure-i1,2018-19,40.4,95.5,Boston - Charlestown High,00350515, 29.6, 10.8, 53.7, 4.5, 0.1, 0.0, 1.2, 58.1, 41.8 -8.0,5,a-cure-i1,2018-19,44.9,89.8,Boston - Clarence R Edwards Middle,00350430, 14.4, 8.3, 65.7, 10.2, 0.0, 0.0, 1.4, 56.9, 43.1 -12.72454448017149,5,a-cure-i1,2018-19,74.2,93.3,Boston - Community Academy,00350518, 62.2, 0.0, 26.7, 6.7, 0.0, 0.0, 4.4, 60.0, 40.0 -8.481141692150867,5,a-cure-i1,2018-19,52.0,98.1,Boston - Community Academy of Science and Health,00350581, 66.0, 1.9, 27.7, 1.9, 0.3, 0.0, 2.2, 53.5, 46.5 -7.2799013563501855,5,a-cure-i1,2018-19,36.9,81.1,Boston - Condon K-8,00350146, 34.0, 7.4, 35.5, 18.9, 0.2, 0.4, 3.6, 52.3, 47.7 -8.936170212765957,5,a-cure-i1,2018-19,42.0,75.2,Boston - Curley K-8 School,00350020, 18.6, 2.7, 48.0, 24.8, 0.1, 0.1, 5.7, 52.3, 47.7 -7.113300492610837,5,a-cure-i1,2018-19,36.1,81.2,Boston - Curtis Guild,00350062, 1.9, 0.8, 78.1, 18.8, 0.0, 0.0, 0.4, 51.9, 48.1 -6.4941176470588236,5,a-cure-i1,2018-19,27.6,68.0,Boston - Dante Alighieri Montessori School,00350066, 2.1, 2.1, 59.8, 32.0, 0.0, 0.0, 4.1, 43.3, 56.7 -11.346351490236383,5,a-cure-i1,2018-19,69.0,97.3,Boston - David A Ellis,00350072, 40.0, 0.5, 54.2, 2.7, 0.7, 0.0, 1.9, 49.4, 50.6 -8.371717171717172,5,a-cure-i1,2018-19,51.800000000000004,99.0,Boston - Dearborn,00350074, 65.9, 1.2, 27.7, 1.0, 0.0, 1.2, 3.1, 50.8, 49.2 -10.07891156462585,5,a-cure-i1,2018-19,46.3,73.5,Boston - Dennis C Haley,00350077, 28.9, 0.7, 37.9, 26.5, 0.2, 0.2, 5.5, 53.1, 46.9 -4.064864864864865,4.06,a-cure-i1,2018-19,23.5,92.5,Boston - Donald Mckay,00350080, 1.6, 0.7, 89.1, 7.5, 0.0, 0.0, 1.0, 50.2, 49.8 -9.201225740551584,5,a-cure-i1,2018-19,56.300000000000004,97.9,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 55.0, 1.0, 38.7, 2.1, 0.5, 0.0, 2.6, 54.5, 45.5 -8.166934189406101,5,a-cure-i1,2018-19,31.8,62.3,Boston - Dr. William Henderson Lower,00350266, 26.0, 14.9, 15.3, 37.7, 0.0, 0.5, 5.6, 47.0, 53.0 -2.6262626262626263,2.63,a-cure-i1,2018-19,13.0,79.2,Boston - Dr. William Henderson Upper,00350426, 40.0, 8.3, 26.2, 20.8, 0.5, 0.0, 4.3, 54.9, 45.1 -17.136231884057974,5,a-cure-i1,2018-19,73.9,69.0,Boston - East Boston Early Childhood Center,00350009, 6.0, 1.6, 59.8, 31.0, 0.5, 0.5, 0.5, 47.3, 52.7 -5.633295838020247,5,a-cure-i1,2018-19,31.3,88.9,Boston - East Boston High,00350530, 5.8, 1.9, 79.3, 11.1, 0.3, 0.0, 1.6, 56.1, 43.9 -6.688221709006929,5,a-cure-i1,2018-19,36.2,86.6,Boston - Edison K-8,00350375, 19.2, 15.3, 48.4, 13.4, 0.8, 0.2, 2.7, 55.9, 44.1 -5.837837837837838,5,a-cure-i1,2018-19,35.1,96.2,Boston - Edward Everett,00350088, 45.8, 17.8, 26.9, 3.8, 0.8, 0.0, 4.9, 51.9, 48.1 -2.2688039457459928,2.27,a-cure-i1,2018-19,11.5,81.1,Boston - ELC - West Zone,00350006, 29.7, 8.1, 41.4, 18.9, 0.0, 0.0, 1.8, 55.0, 45.0 -14.511627906976742,5,a-cure-i1,2018-19,35.099999999999994,38.7,Boston - Eliot Elementary,00350096, 5.2, 9.5, 17.5, 61.3, 0.0, 0.1, 6.4, 52.6, 47.4 -6.7253414264036415,5,a-cure-i1,2018-19,27.7,65.9,Boston - Ellis Mendell,00350100, 25.3, 1.5, 30.4, 34.1, 0.0, 0.0, 8.8, 49.8, 50.2 -9.716171617161715,5,a-cure-i1,2018-19,55.199999999999996,90.9,Boston - Excel High School,00350522, 38.0, 17.8, 33.4, 9.1, 0.4, 0.0, 1.4, 59.8, 40.2 -8.950000000000001,5,a-cure-i1,2018-19,53.7,96.0,Boston - Fenway High School,00350540, 28.6, 3.4, 62.3, 4.0, 0.3, 0.3, 1.1, 47.7, 52.3 -3.9755201958384334,3.98,a-cure-i1,2018-19,20.3,81.7,Boston - Franklin D Roosevelt,00350116, 39.0, 1.6, 37.4, 18.3, 0.5, 0.2, 3.0, 51.8, 48.2 -6.928987194412107,5,a-cure-i1,2018-19,37.2,85.9,Boston - Gardner Pilot Academy,00350326, 11.7, 4.2, 65.5, 14.1, 0.0, 0.0, 4.4, 52.0, 48.0 -7.336585365853659,5,a-cure-i1,2018-19,37.6,82.0,Boston - George H Conley,00350122, 37.5, 3.0, 37.0, 18.0, 0.0, 0.5, 4.0, 55.0, 45.0 -11.701736465781408,5,a-cure-i1,2018-19,71.6,97.9,Boston - Greater Egleston Community High School,00350543, 36.8, 1.1, 52.6, 2.1, 2.1, 0.0, 5.3, 47.4, 52.6 -5.688888888888889,5,a-cure-i1,2018-19,30.400000000000002,85.5,Boston - Harvard-Kent,00350200, 22.8, 25.7, 33.7, 14.5, 0.2, 0.2, 2.9, 54.0, 46.0 -10.148760330578513,5,a-cure-i1,2018-19,61.4,96.8,Boston - Haynes Early Education Center,00350010, 52.1, 4.3, 38.3, 3.2, 1.1, 0.0, 1.1, 55.3, 44.7 -7.946902654867257,5,a-cure-i1,2018-19,44.900000000000006,90.4,Boston - Henry Grew,00350135, 39.7, 1.7, 42.3, 9.6, 0.4, 0.0, 6.3, 49.4, 50.6 -8.0,5,a-cure-i1,2018-19,49.1,98.2,Boston - Higginson,00350015, 37.5, 0.6, 56.0, 1.8, 0.6, 0.0, 3.6, 55.4, 44.6 -7.02123356926188,5,a-cure-i1,2018-19,43.4,98.9,Boston - Higginson/Lewis K-8,00350377, 50.6, 0.4, 42.9, 1.1, 0.4, 0.0, 4.6, 57.5, 42.5 -1.5725714285714285,1.57,a-cure-i1,2018-19,8.6,87.5,Boston - Horace Mann School for the Deaf,00350750, 30.7, 5.7, 50.0, 12.5, 0.0, 0.0, 1.1, 63.6, 36.4 -1.3029315960912053,1.3,a-cure-i1,2018-19,7.5,92.1,Boston - Hugh Roe O'Donnell,00350141, 1.5, 2.3, 87.2, 7.9, 0.0, 0.0, 1.1, 49.1, 50.9 -4.80709534368071,4.81,a-cure-i1,2018-19,27.1,90.2,Boston - Jackson Mann,00350013, 32.3, 13.3, 41.6, 9.8, 0.7, 0.0, 2.3, 57.4, 42.6 -5.095435684647302,5,a-cure-i1,2018-19,30.699999999999996,96.4,Boston - James J Chittick,00350154, 62.2, 1.4, 27.0, 3.6, 0.0, 0.0, 5.8, 57.6, 42.4 -4.352644836272041,4.35,a-cure-i1,2018-19,21.6,79.4,Boston - James Otis,00350156, 5.3, 2.5, 70.0, 20.6, 0.0, 0.0, 1.5, 49.1, 50.9 -10.341463414634147,5,a-cure-i1,2018-19,63.6,98.4,Boston - James P Timilty Middle,00350485, 37.3, 0.6, 59.4, 1.6, 0.0, 0.3, 0.6, 45.5, 54.5 -7.455497382198953,5,a-cure-i1,2018-19,44.5,95.5,Boston - James W Hennigan,00350153, 30.1, 2.9, 60.9, 4.5, 0.0, 0.2, 1.4, 46.8, 53.2 -9.619631901840492,5,a-cure-i1,2018-19,58.800000000000004,97.8,Boston - Jeremiah E Burke High,00350525, 71.2, 0.5, 24.3, 2.2, 0.0, 0.5, 1.2, 54.3, 45.7 -9.985111662531018,5,a-cure-i1,2018-19,50.3,80.6,Boston - John D Philbrick,00350172, 48.8, 0.6, 28.8, 19.4, 0.0, 0.0, 2.5, 53.1, 46.9 -7.387308533916849,5,a-cure-i1,2018-19,42.2,91.4,Boston - John F Kennedy,00350166, 15.6, 1.6, 70.6, 8.6, 0.0, 0.0, 3.5, 49.9, 50.1 -6.749213011542497,5,a-cure-i1,2018-19,40.199999999999996,95.3,Boston - John W McCormack,00350179, 28.5, 3.8, 58.9, 4.7, 0.5, 0.3, 3.3, 49.6, 50.4 -4.449021627188466,4.45,a-cure-i1,2018-19,27.0,97.1,Boston - John Winthrop,00350180, 57.8, 1.0, 33.8, 2.9, 0.6, 0.6, 3.2, 43.5, 56.5 -13.395807644882863,5,a-cure-i1,2018-19,67.9,81.1,Boston - Joseph J Hurley,00350182, 5.7, 0.9, 72.0, 18.9, 0.3, 0.0, 2.3, 50.0, 50.0 -5.556270096463022,5,a-cure-i1,2018-19,32.4,93.3,Boston - Joseph Lee,00350183, 54.1, 5.4, 27.7, 6.7, 0.3, 0.3, 5.5, 55.0, 45.0 -1,1,a-cure-i1,2018-19,3.0,55.8,Boston - Joseph P Manning,00350184, 15.0, 5.4, 26.5, 44.2, 0.0, 0.7, 8.2, 50.3, 49.7 -7.722007722007722,5,a-cure-i1,2018-19,37.5,77.7,Boston - Joseph P Tynan,00350181, 36.2, 9.6, 26.2, 22.3, 0.4, 0.0, 5.2, 58.5, 41.5 -9.668161434977577,5,a-cure-i1,2018-19,53.9,89.2,Boston - Josiah Quincy,00350286, 13.9, 59.9, 11.2, 10.8, 0.1, 0.0, 4.0, 49.4, 50.6 -4.008281573498965,4.01,a-cure-i1,2018-19,12.1,48.3,Boston - Joyce Kilmer,00350190, 16.4, 8.0, 17.3, 51.7, 0.0, 0.2, 6.4, 53.5, 46.5 -8.03265306122449,5,a-cure-i1,2018-19,49.2,98.0,Boston - King K-8,00350376, 57.1, 0.6, 36.0, 2.0, 0.6, 0.2, 3.5, 50.5, 49.5 -4.814891416752844,4.81,a-cure-i1,2018-19,29.1,96.7,Boston - Lee Academy,00350001, 50.7, 9.9, 31.5, 3.3, 0.5, 0.0, 4.2, 51.6, 48.4 -8.170212765957448,5,a-cure-i1,2018-19,50.400000000000006,98.7,Boston - Lilla G. Frederick Middle School,00350383, 45.0, 7.1, 43.3, 1.3, 0.0, 0.2, 3.1, 55.4, 44.6 -6.97716894977169,5,a-cure-i1,2018-19,19.1,43.8,Boston - Lyndon,00350262, 9.4, 2.7, 27.3, 56.2, 0.0, 0.0, 4.4, 52.8, 47.2 -7.174690508940853,5,a-cure-i1,2018-19,32.6,72.7,Boston - Lyon K-8,00350004, 24.2, 11.4, 28.0, 27.3, 0.0, 0.0, 9.1, 52.3, 47.7 -5.146198830409356,5,a-cure-i1,2018-19,22.0,68.4,Boston - Lyon Upper 9-12,00350655, 18.0, 8.3, 36.8, 31.6, 0.8, 0.0, 4.5, 56.4, 43.6 -8.724313326551375,5,a-cure-i1,2018-19,53.60000000000001,98.3,Boston - Madison Park High,00350537, 36.8, 1.2, 57.7, 1.7, 0.5, 0.2, 1.9, 58.7, 41.3 -2.945397815912637,2.95,a-cure-i1,2018-19,11.8,64.1,Boston - Manassah E Bradley,00350215, 5.8, 6.9, 48.6, 35.9, 0.0, 0.0, 2.9, 52.9, 47.1 -8.797583081570998,5,a-cure-i1,2018-19,54.6,99.3,Boston - Margarita Muniz Academy,00350549, 3.1, 0.0, 95.6, 0.7, 0.0, 0.0, 0.7, 45.4, 54.6 -5.40724946695096,5,a-cure-i1,2018-19,31.7,93.8,Boston - Mario Umana Academy,00350656, 2.8, 1.7, 88.3, 6.2, 0.1, 0.1, 0.7, 52.3, 47.7 -11.033898305084746,5,a-cure-i1,2018-19,65.10000000000001,94.4,Boston - Mather,00350227, 38.7, 33.3, 15.9, 5.6, 0.5, 0.0, 6.1, 48.4, 51.6 -8.672268907563025,5,a-cure-i1,2018-19,51.599999999999994,95.2,Boston - Mattahunt Elementary School,00350016, 66.5, 0.8, 25.7, 4.8, 0.3, 0.3, 1.6, 59.5, 40.5 -8.582564102564103,5,a-cure-i1,2018-19,52.300000000000004,97.5,Boston - Maurice J Tobin,00350229, 30.4, 1.8, 64.1, 2.5, 0.2, 0.0, 0.9, 45.8, 54.2 -9.119453924914675,5,a-cure-i1,2018-19,50.1,87.9,Boston - Michael J Perkins,00350231, 42.9, 4.4, 35.2, 12.1, 0.5, 0.0, 4.9, 50.5, 49.5 -10.228160328879753,5,a-cure-i1,2018-19,62.199999999999996,97.3,Boston - Mildred Avenue K-8,00350378, 64.5, 0.5, 28.9, 2.7, 1.0, 0.0, 2.4, 51.1, 48.9 -12.313146233382568,5,a-cure-i1,2018-19,52.099999999999994,67.7,Boston - Mission Hill School,00350382, 21.8, 0.9, 37.3, 32.3, 0.5, 0.5, 6.8, 58.6, 41.4 -11.544303797468354,5,a-cure-i1,2018-19,45.6,63.2,Boston - Mozart,00350237, 25.7, 4.7, 25.1, 36.8, 1.2, 0.0, 6.4, 59.1, 40.9 -11.308016877637131,5,a-cure-i1,2018-19,67.0,94.8,Boston - Nathan Hale,00350243, 52.3, 7.1, 32.9, 5.2, 0.0, 0.0, 2.6, 42.6, 57.4 -8.672131147540982,5,a-cure-i1,2018-19,52.89999999999999,97.6,Boston - New Mission High School,00350542, 55.6, 1.1, 39.8, 2.4, 0.2, 0.0, 0.9, 46.8, 53.2 -6.478931140801644,5,a-cure-i1,2018-19,39.4,97.3,Boston - O W Holmes,00350138, 57.6, 2.4, 31.0, 2.7, 0.0, 0.0, 6.3, 51.9, 48.1 -9.227323628219485,5,a-cure-i1,2018-19,51.5,89.3,Boston - O'Bryant School Math/Science,00350575, 33.6, 20.4, 32.5, 10.7, 0.3, 0.2, 2.3, 43.4, 56.6 -9.8252427184466,5,a-cure-i1,2018-19,25.299999999999997,41.2,Boston - Oliver Hazard Perry,00350255, 22.9, 1.6, 13.5, 58.8, 0.4, 0.0, 2.9, 53.5, 46.5 -5.037037037037036,5,a-cure-i1,2018-19,30.599999999999998,97.2,Boston - Orchard Gardens,00350257, 50.0, 1.4, 42.0, 2.8, 0.8, 0.6, 2.4, 52.1, 47.9 -4.839190628328009,4.84,a-cure-i1,2018-19,28.400000000000002,93.9,Boston - Patrick J Kennedy,00350264, 4.1, 3.1, 86.3, 6.1, 0.0, 0.0, 0.3, 53.6, 46.4 -6.828240252897786,5,a-cure-i1,2018-19,40.5,94.9,Boston - Paul A Dever,00350268, 25.6, 4.4, 62.9, 5.1, 0.5, 0.0, 1.5, 51.7, 48.3 -6.49746192893401,5,a-cure-i1,2018-19,40.0,98.5,Boston - Pauline Agassiz Shaw Elementary School,00350014, 71.2, 1.5, 22.7, 1.5, 0.0, 0.0, 3.0, 48.5, 51.5 -8.137384412153237,5,a-cure-i1,2018-19,38.5,75.7,Boston - Phineas Bates,00350278, 30.3, 4.8, 36.3, 24.3, 0.4, 0.0, 4.0, 48.2, 51.8 -10.267650158061118,5,a-cure-i1,2018-19,60.900000000000006,94.9,Boston - Quincy Upper School,00350565, 19.5, 49.9, 22.2, 5.1, 0.2, 0.0, 3.1, 55.0, 45.0 -13.197837837837838,5,a-cure-i1,2018-19,76.3,92.5,Boston - Rafael Hernandez,00350691, 2.8, 0.3, 87.0, 7.5, 0.0, 0.0, 2.5, 48.1, 51.9 -6.2727272727272725,5,a-cure-i1,2018-19,34.5,88.0,Boston - Richard J Murphy,00350240, 17.1, 45.2, 21.3, 12.0, 0.4, 0.2, 3.7, 54.5, 45.5 -5.740166865315852,5,a-cure-i1,2018-19,30.1,83.9,Boston - Roger Clap,00350298, 38.7, 10.9, 32.1, 16.1, 0.0, 0.0, 2.2, 45.3, 54.7 -8.628992628992629,5,a-cure-i1,2018-19,43.900000000000006,81.4,Boston - Samuel Adams,00350302, 3.5, 2.7, 73.6, 18.6, 0.4, 0.0, 1.2, 52.7, 47.3 -7.880085653104924,5,a-cure-i1,2018-19,46.0,93.4,Boston - Samuel W Mason,00350304, 46.5, 1.7, 36.1, 6.6, 1.2, 0.4, 7.5, 55.2, 44.8 -10.052525252525252,5,a-cure-i1,2018-19,62.199999999999996,99.0,Boston - Sarah Greenwood,00350308, 21.3, 0.3, 75.3, 1.0, 0.0, 0.0, 2.1, 51.7, 48.3 -6.538542766631468,5,a-cure-i1,2018-19,38.7,94.7,Boston - Snowden International School at Copley,00350690, 35.6, 6.5, 49.7, 5.3, 0.2, 0.4, 2.2, 47.9, 52.1 -6.847736625514402,5,a-cure-i1,2018-19,41.599999999999994,97.2,Boston - TechBoston Academy,00350657, 63.8, 3.1, 26.8, 2.8, 0.2, 0.1, 3.2, 55.0, 45.0 -7.617497456765006,5,a-cure-i1,2018-19,46.800000000000004,98.3,Boston - The English High,00350535, 37.4, 1.0, 58.5, 1.7, 0.4, 0.2, 0.8, 59.5, 40.5 -6.630630630630631,5,a-cure-i1,2018-19,32.2,77.7,Boston - Thomas J Kenny,00350328, 35.8, 14.9, 21.3, 22.3, 0.0, 0.0, 5.7, 53.7, 46.3 -7.080366225839268,5,a-cure-i1,2018-19,43.5,98.3,Boston - UP Academy Holland,00350167, 46.3, 4.8, 43.6, 1.7, 0.4, 0.4, 2.9, 48.4, 51.6 -7.655913978494624,5,a-cure-i1,2018-19,44.5,93.0,Boston - Urban Science Academy,00350579, 51.2, 1.2, 36.9, 7.0, 0.3, 0.0, 3.4, 57.3, 42.4 -4.5571725571725565,4.56,a-cure-i1,2018-19,13.7,48.1,Boston - Warren-Prescott,00350346, 11.9, 5.3, 25.0, 51.9, 0.2, 0.0, 5.7, 52.2, 47.8 -8.108672936259143,5,a-cure-i1,2018-19,48.5,95.7,Boston - Washington Irving Middle,00350445, 43.8, 1.3, 47.8, 4.3, 1.0, 0.0, 1.7, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,93.1,Boston - West Roxbury Academy,00350658, 48.0, 1.2, 41.4, 6.9, 0.5, 0.5, 1.5, 59.6, 40.4 -7.0288065843621395,5,a-cure-i1,2018-19,42.699999999999996,97.2,Boston - William E Russell,00350366, 28.5, 11.1, 54.7, 2.8, 0.5, 0.3, 2.3, 49.4, 50.6 -9.323110624315444,5,a-cure-i1,2018-19,53.199999999999996,91.3,Boston - William Ellery Channing,00350360, 44.7, 1.9, 41.8, 8.7, 0.0, 0.5, 2.4, 51.9, 48.1 -5.587301587301587,5,a-cure-i1,2018-19,26.4,75.6,Boston - William H Ohrenberger,00350258, 30.4, 3.8, 38.1, 24.4, 0.0, 0.0, 3.3, 53.2, 46.8 -4.969696969696969,4.97,a-cure-i1,2018-19,28.7,92.4,Boston - William McKinley,00350363, 46.8, 1.8, 40.1, 7.6, 0.6, 0.0, 3.1, 75.2, 24.8 -8.881632653061224,5,a-cure-i1,2018-19,54.4,98.0,Boston - William Monroe Trotter,00350370, 56.7, 0.6, 35.6, 2.0, 0.4, 1.0, 3.8, 50.3, 49.7 -6.60631001371742,5,a-cure-i1,2018-19,30.099999999999998,72.9,Boston - Winship Elementary,00350374, 17.6, 16.1, 31.7, 27.1, 0.5, 0.0, 7.0, 50.3, 49.7 -11.583417593528816,5,a-cure-i1,2018-19,71.6,98.9,Boston - Young Achievers,00350380, 50.4, 0.0, 45.9, 1.1, 0.4, 0.0, 2.3, 54.3, 45.7 -9.945155393053016,5,a-cure-i1,2018-19,34.0,54.7,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 31.7, 2.3, 18.3, 45.3, 0.1, 0.0, 2.2, 49.9, 50.1 -6.294803817603394,5,a-cure-i1,2018-19,37.1,94.3,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 47.3, 1.0, 43.0, 5.7, 0.5, 0.0, 2.6, 48.9, 50.8 -7.648351648351649,5,a-cure-i1,2018-19,43.5,91.0,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 45.0, 2.7, 40.1, 9.0, 0.2, 0.4, 2.5, 50.8, 49.2 -4.448938321536906,4.45,a-cure-i1,2018-19,27.5,98.9,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 65.0, 1.7, 28.9, 1.1, 0.2, 0.2, 2.9, 49.2, 50.8 -2.5306122448979593,2.53,a-cure-i1,2018-19,15.5,98.0,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 62.6, 0.3, 31.3, 2.0, 0.0, 0.0, 3.8, 48.5, 51.5 -1,1,a-cure-i1,2018-19,0.0,13.200000000000003,Bourne - Bourne High School,00360505, 2.1, 2.3, 5.7, 86.8, 0.6, 0.2, 2.3, 45.6, 54.4 -1,1,a-cure-i1,2018-19,4.2,12.400000000000006,Bourne - Bourne Middle School,00360325, 0.9, 1.7, 4.5, 87.6, 1.3, 0.0, 3.9, 49.4, 50.6 -1,1,a-cure-i1,2018-19,0.0,12.700000000000003,Bourne - Bournedale Elementary School,00360005, 1.4, 0.7, 6.2, 87.3, 1.2, 0.2, 3.0, 54.5, 45.5 -1,1,a-cure-i1,2018-19,0.0,15.400000000000006,Bourne - Peebles Elementary School,00360010, 2.1, 1.5, 8.6, 84.6, 0.0, 0.3, 3.0, 45.6, 54.4 -1,1,a-cure-i1,2018-19,0.0,15.099999999999994,Boxford - Harry Lee Cole,00380005, 0.0, 3.6, 3.0, 84.9, 0.0, 0.0, 8.5, 54.4, 45.6 -1,1,a-cure-i1,2018-19,0.0,11.400000000000006,Boxford - Spofford Pond,00380013, 1.0, 5.1, 1.7, 88.6, 0.2, 0.0, 3.4, 52.3, 47.7 -6.000000000000001,5,a-cure-i1,2018-19,6.3,16.799999999999997,Boylston - Boylston Elementary,00390005, 1.3, 5.4, 6.0, 83.2, 0.3, 0.0, 3.7, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,30.799999999999997,Braintree - Archie T Morrison,00400033, 8.9, 14.6, 5.4, 69.2, 0.2, 0.2, 1.4, 50.7, 49.3 -1,1,a-cure-i1,2018-19,4.6,29.200000000000003,Braintree - Braintree High,00400505, 5.2, 17.8, 4.6, 70.8, 0.1, 0.1, 1.3, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,34.099999999999994,Braintree - Donald Ross,00400050, 5.9, 21.5, 5.9, 65.9, 0.0, 0.0, 0.7, 51.5, 48.5 -1,1,a-cure-i1,2018-19,2.0,34.5,Braintree - East Middle School,00400305, 8.2, 18.7, 6.2, 65.5, 0.1, 0.1, 1.1, 50.9, 49.0 -1,1,a-cure-i1,2018-19,0.0,24.200000000000003,Braintree - Highlands,00400015, 2.2, 17.7, 3.0, 75.8, 0.5, 0.0, 0.7, 49.1, 50.9 -1,1,a-cure-i1,2018-19,0.0,32.7,Braintree - Hollis,00400005, 2.1, 22.0, 5.5, 67.3, 0.2, 0.0, 3.0, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,40.0,Braintree - Liberty,00400025, 2.8, 30.1, 4.2, 60.0, 0.0, 0.5, 2.5, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,36.4,Braintree - Mary E Flaherty School,00400020, 3.2, 24.5, 5.3, 63.6, 0.3, 0.0, 3.2, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,32.7,Braintree - Monatiquot Kindergarten Center,00400009, 1.8, 25.0, 4.4, 67.3, 0.0, 0.0, 1.5, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,26.099999999999994,Braintree - South Middle School,00400310, 3.8, 17.5, 4.1, 73.9, 0.1, 0.0, 0.6, 47.6, 52.4 -1,1,a-cure-i1,2018-19,0.0,13.900000000000006,Brewster - Eddy Elementary,00410010, 1.6, 1.2, 6.1, 86.1, 0.0, 0.0, 4.9, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,14.5,Brewster - Stony Brook Elementary,00410005, 2.1, 0.0, 6.8, 85.5, 0.0, 0.0, 5.6, 52.6, 47.4 -4.391523713420788,4.39,a-cure-i1,2018-19,27.2,99.1,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 65.2, 1.2, 29.2, 0.9, 0.0, 0.3, 3.2, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,12.099999999999994,Bridgewater-Raynham - Bridgewater Middle School,06250320, 5.5, 1.4, 0.6, 87.9, 0.2, 0.0, 4.4, 54.5, 45.5 -1,1,a-cure-i1,2018-19,1.0,12.0,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 4.4, 2.0, 0.5, 88.0, 0.0, 0.2, 5.0, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,14.700000000000003,Bridgewater-Raynham - Laliberte Elementary School,06250050, 7.1, 2.7, 1.5, 85.3, 0.2, 0.0, 3.1, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,11.599999999999994,Bridgewater-Raynham - Merrill Elementary School,06250020, 4.5, 1.8, 2.4, 88.4, 0.0, 0.0, 3.0, 54.3, 45.7 -1,1,a-cure-i1,2018-19,1.8,12.700000000000003,Bridgewater-Raynham - Mitchell Elementary School,06250002, 4.4, 2.3, 2.0, 87.3, 0.0, 0.1, 3.9, 53.4, 46.6 -1,1,a-cure-i1,2018-19,0.0,13.599999999999994,Bridgewater-Raynham - Raynham Middle School,06250315, 5.7, 2.4, 0.7, 86.4, 0.0, 0.1, 4.6, 54.8, 45.2 -1,1,a-cure-i1,2018-19,0.0,11.099999999999994,Bridgewater-Raynham - Therapeutic Day School,06250415, 5.6, 0.0, 0.0, 88.9, 0.0, 0.0, 5.6, 50.0, 50.0 -1,1,a-cure-i1,2018-19,2.2,14.599999999999994,Bridgewater-Raynham - Williams Intermediate School,06250300, 6.0, 1.7, 1.0, 85.4, 0.1, 0.3, 5.6, 48.6, 51.4 -1,1,a-cure-i1,2018-19,0.0,6.099999999999994,Brimfield - Brimfield Elementary,00430005, 1.7, 1.4, 2.0, 93.9, 1.0, 0.0, 0.0, 48.5, 51.5 -15.29411764705883,5,a-cure-i1,2018-19,6.5,6.799999999999997,Bristol County Agricultural - Bristol County Agricultural High,09100705, 1.3, 0.0, 4.0, 93.2, 0.0, 0.2, 1.3, 27.5, 72.0 -1,1,a-cure-i1,2018-19,1.6,14.599999999999994,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 3.2, 0.6, 6.7, 85.4, 0.7, 0.0, 3.4, 58.2, 41.6 -1,1,a-cure-i1,2018-19,3.3,70.8,Brockton - Ashfield Middle School,00440421, 51.8, 3.0, 12.1, 29.2, 0.5, 0.2, 3.2, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,72.5,Brockton - Barrett Russell Early Childhood Center,00440008, 51.7, 0.5, 15.9, 27.5, 0.0, 0.5, 3.9, 52.7, 47.3 -2.655509065550906,2.66,a-cure-i1,2018-19,11.899999999999999,71.7,Brockton - Brockton Champion High School,00440515, 33.3, 0.7, 31.2, 28.3, 0.7, 0.0, 5.8, 57.2, 42.8 -3.8048780487804876,3.8,a-cure-i1,2018-19,19.5,82.0,Brockton - Brockton High,00440505, 62.6, 2.3, 12.7, 18.0, 0.3, 0.2, 3.8, 51.6, 48.4 -2.25531914893617,2.26,a-cure-i1,2018-19,10.6,75.2,Brockton - Brookfield,00440010, 58.6, 1.2, 9.6, 24.8, 0.0, 0.2, 5.6, 53.7, 46.3 -1,1,a-cure-i1,2018-19,2.9,80.8,Brockton - Downey,00440110, 55.1, 1.1, 17.6, 19.2, 1.0, 0.3, 5.7, 56.6, 43.4 -1,1,a-cure-i1,2018-19,2.5,90.2,Brockton - Dr W Arnone Community School,00440001, 65.1, 0.0, 17.6, 9.8, 0.5, 0.0, 7.0, 56.2, 43.8 -3.398568019093079,3.4,a-cure-i1,2018-19,17.8,83.8,Brockton - East Middle School,00440405, 68.7, 0.8, 10.7, 16.2, 0.3, 0.0, 3.4, 50.7, 49.3 -1.5614236509758899,1.56,a-cure-i1,2018-19,8.5,87.1,Brockton - Edgar B Davis,00440023, 64.3, 0.6, 14.7, 12.9, 0.3, 0.5, 6.8, 49.1, 50.9 -9.696969696969697,5,a-cure-i1,2018-19,56.0,92.4,Brockton - Edison Academy,00440520, 75.6, 0.8, 11.3, 7.6, 0.4, 0.8, 3.4, 54.2, 45.8 -1,1,a-cure-i1,2018-19,0.0,100.0,Brockton - Frederick Douglass Academy,00440080, 44.4, 0.0, 44.4, 0.0, 5.6, 0.0, 5.6, 77.8, 22.2 -2.3329886246122027,2.33,a-cure-i1,2018-19,14.100000000000001,96.7,Brockton - Gilmore Elementary School,00440055, 80.3, 0.4, 11.3, 3.3, 0.4, 0.0, 4.3, 52.8, 47.2 -4.28696925329429,4.29,a-cure-i1,2018-19,18.299999999999997,68.3,Brockton - Hancock,00440045, 50.6, 2.7, 8.1, 31.7, 0.4, 0.5, 6.0, 46.0, 54.0 -1.7726618705035972,1.77,a-cure-i1,2018-19,7.7,69.5,Brockton - Huntington Therapeutic Day School,00440400, 40.7, 0.0, 20.3, 30.5, 0.0, 0.0, 8.5, 72.9, 27.1 -2.4791666666666665,2.48,a-cure-i1,2018-19,11.899999999999999,76.8,Brockton - John F Kennedy,00440017, 56.6, 3.4, 10.3, 23.2, 0.2, 0.0, 6.4, 50.1, 49.9 -2.144329896907217,2.14,a-cure-i1,2018-19,10.4,77.6,Brockton - Joseph F. Plouffe Academy,00440422, 41.2, 3.2, 28.3, 22.4, 0.3, 0.0, 4.7, 48.2, 51.8 -1.3299748110831235,1.33,a-cure-i1,2018-19,6.6000000000000005,79.4,Brockton - Louis F Angelo Elementary,00440065, 56.4, 6.4, 12.1, 20.6, 0.9, 0.1, 3.4, 51.7, 48.3 -1.7009966777408638,1.7,a-cure-i1,2018-19,9.6,90.3,Brockton - Manthala George Jr. School,00440003, 40.9, 0.5, 44.8, 9.7, 0.7, 0.1, 3.4, 51.8, 48.2 -2.717808219178082,2.72,a-cure-i1,2018-19,12.4,73.0,Brockton - Mary E. Baker School,00440002, 50.3, 1.7, 14.7, 27.0, 0.1, 0.1, 6.0, 52.9, 47.1 -1.6951351351351354,1.7,a-cure-i1,2018-19,9.8,92.5,Brockton - North Middle School,00440410, 65.9, 2.6, 17.9, 7.5, 0.3, 0.3, 5.5, 57.8, 42.2 -1,1,a-cure-i1,2018-19,4.8,91.4,Brockton - Oscar F Raymond,00440078, 76.7, 1.0, 10.0, 8.6, 0.1, 0.0, 3.5, 52.3, 47.7 -1.4311926605504586,1.43,a-cure-i1,2018-19,7.8,87.2,Brockton - South Middle School,00440415, 65.8, 1.4, 15.8, 12.8, 0.0, 0.0, 4.2, 54.1, 45.9 -1.5614702154626106,1.56,a-cure-i1,2018-19,7.699999999999999,78.9,Brockton - West Middle School,00440420, 58.0, 3.1, 13.9, 21.1, 0.6, 0.3, 3.0, 52.3, 47.7 -5.796858638743456,5,a-cure-i1,2018-19,34.6,95.5,Brooke Charter School (District) - Brooke Charter School,04280305, 53.4, 1.8, 38.5, 4.5, 0.1, 0.0, 1.6, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,9.799999999999997,Brookfield - Brookfield Elementary,00450005, 0.3, 0.0, 6.0, 90.2, 0.0, 0.0, 3.5, 50.6, 49.4 -1,1,a-cure-i1,2018-19,0.0,52.6,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 28.1, 8.8, 47.4, 0.0, 0.0, 15.8, 49.1, 50.9 -7.677543186180422,5,a-cure-i1,2018-19,25.0,52.1,Brookline - Brookline Early Education Program at Putterham,00460002, 6.3, 25.0, 12.5, 47.9, 2.1, 0.0, 6.3, 60.4, 39.6 -6.050113895216402,5,a-cure-i1,2018-19,16.6,43.9,Brookline - Brookline High,00460505, 6.8, 16.4, 11.9, 56.1, 0.0, 0.1, 8.7, 51.1, 48.5 -3.568075117370892,3.57,a-cure-i1,2018-19,9.5,42.6,Brookline - Coolidge Corner School,00460015, 5.4, 13.9, 12.9, 57.4, 0.0, 0.0, 10.4, 50.4, 49.4 -4.8152380952380955,4.82,a-cure-i1,2018-19,15.8,52.5,Brookline - Edith C Baker,00460005, 6.2, 29.7, 8.3, 47.5, 0.0, 0.0, 8.4, 52.2, 47.8 -7.37844611528822,5,a-cure-i1,2018-19,18.4,39.9,Brookline - Heath,00460025, 4.2, 16.9, 8.9, 60.1, 0.0, 0.0, 10.0, 50.3, 49.7 -5.167958656330749,5,a-cure-i1,2018-19,12.5,38.7,Brookline - John D Runkle,00460045, 3.7, 13.9, 10.6, 61.3, 0.0, 0.0, 10.6, 52.9, 47.1 -5.186813186813186,5,a-cure-i1,2018-19,17.7,54.6,Brookline - Lawrence,00460030, 5.5, 30.9, 10.1, 45.4, 0.0, 0.1, 7.9, 51.1, 48.9 -7.177570093457944,5,a-cure-i1,2018-19,19.2,42.8,Brookline - Michael Driscoll,00460020, 4.8, 16.2, 8.1, 57.2, 0.0, 0.0, 13.8, 53.1, 46.9 -7.144032921810699,5,a-cure-i1,2018-19,21.7,48.6,Brookline - Pierce,00460040, 4.3, 24.6, 10.8, 51.4, 0.0, 0.0, 8.9, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,61.8,Brookline - The Lynch Center,00460060, 10.9, 23.6, 10.9, 38.2, 0.0, 0.0, 16.4, 43.6, 56.4 -3.862068965517241,3.86,a-cure-i1,2018-19,12.6,52.2,Brookline - William H Lincoln,00460035, 9.8, 22.7, 11.5, 47.8, 0.2, 0.0, 7.9, 46.8, 53.2 -3.0451612903225804,3.05,a-cure-i1,2018-19,5.8999999999999995,31.0,Burlington - Burlington High,00480505, 6.3, 14.6, 5.9, 69.0, 0.6, 0.0, 3.6, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,37.3,Burlington - Fox Hill,00480007, 5.6, 22.5, 5.6, 62.7, 0.0, 0.0, 3.5, 49.3, 50.7 -1,1,a-cure-i1,2018-19,2.7,40.8,Burlington - Francis Wyman Elementary,00480035, 11.5, 18.2, 6.8, 59.2, 0.2, 0.0, 4.1, 52.6, 47.4 -1,1,a-cure-i1,2018-19,3.7,31.5,Burlington - Marshall Simonds Middle,00480303, 5.5, 15.9, 6.2, 68.5, 0.1, 0.0, 3.8, 49.8, 50.2 -1,1,a-cure-i1,2018-19,3.2,34.7,Burlington - Memorial,00480015, 3.0, 18.8, 7.3, 65.3, 0.3, 0.0, 5.3, 49.2, 50.8 -1,1,a-cure-i1,2018-19,4.2,29.200000000000003,Burlington - Pine Glen Elementary,00480020, 2.5, 16.0, 5.3, 70.8, 0.0, 0.0, 5.3, 52.4, 47.6 -13.033112582781456,5,a-cure-i1,2018-19,49.199999999999996,60.4,Cambridge - Amigos School,00490006, 4.5, 2.6, 43.4, 39.6, 0.0, 0.0, 9.8, 45.8, 54.2 -6.683870967741936,5,a-cure-i1,2018-19,25.900000000000002,62.0,Cambridge - Cambridge Rindge and Latin,00490506, 29.1, 11.0, 14.2, 38.0, 0.5, 0.3, 6.9, 51.2, 48.8 -8.825622775800712,5,a-cure-i1,2018-19,31.0,56.2,Cambridge - Cambridge Street Upper School,00490305, 22.3, 6.6, 18.0, 43.8, 0.4, 0.4, 8.6, 52.0, 48.0 -8.7437641723356,5,a-cure-i1,2018-19,24.1,44.1,Cambridge - Cambridgeport,00490007, 16.9, 8.3, 7.1, 55.9, 0.0, 0.0, 11.8, 53.6, 46.4 -3.6790419161676646,3.68,a-cure-i1,2018-19,19.2,83.5,Cambridge - Fletcher/Maynard Academy,00490090, 50.5, 10.4, 16.5, 16.5, 0.3, 0.0, 5.7, 52.9, 47.1 -5.680297397769517,5,a-cure-i1,2018-19,19.1,53.8,Cambridge - Graham and Parks,00490080, 18.7, 20.8, 8.7, 46.2, 0.0, 0.0, 5.5, 49.1, 50.9 -7.184313725490195,5,a-cure-i1,2018-19,22.9,51.0,Cambridge - Haggerty,00490020, 16.1, 17.2, 7.3, 49.0, 0.0, 0.0, 10.3, 48.7, 51.3 -5.407279029462738,5,a-cure-i1,2018-19,19.5,57.7,Cambridge - John M Tobin,00490065, 21.8, 17.3, 9.1, 42.3, 0.7, 0.0, 8.8, 55.0, 45.0 -3.2237037037037037,3.22,a-cure-i1,2018-19,13.6,67.5,Cambridge - Kennedy-Longfellow,00490040, 17.0, 23.7, 19.4, 32.5, 0.0, 0.4, 7.1, 52.3, 47.7 -9.861456483126112,5,a-cure-i1,2018-19,34.7,56.3,Cambridge - King Open,00490035, 19.5, 12.0, 13.9, 43.7, 0.6, 0.0, 10.3, 52.1, 47.9 -6.813397129186604,5,a-cure-i1,2018-19,17.8,41.8,Cambridge - Maria L. Baldwin,00490005, 13.0, 7.8, 11.1, 58.2, 0.3, 0.0, 9.7, 49.9, 50.1 -7.573187414500685,5,a-cure-i1,2018-19,34.6,73.1,Cambridge - Martin Luther King Jr.,00490030, 22.3, 25.4, 5.2, 26.9, 0.3, 0.0, 19.9, 50.5, 49.5 -4.013201320132013,4.01,a-cure-i1,2018-19,15.2,60.6,Cambridge - Morse,00490045, 24.6, 15.5, 10.1, 39.4, 0.7, 0.0, 9.8, 53.9, 46.1 -7.627118644067796,5,a-cure-i1,2018-19,22.5,47.2,Cambridge - Peabody,00490050, 19.9, 12.6, 7.7, 52.8, 0.0, 0.0, 7.1, 48.2, 51.8 -11.493261455525605,5,a-cure-i1,2018-19,53.3,74.2,Cambridge - Putnam Avenue Upper School,00490310, 36.2, 14.0, 14.0, 25.8, 0.0, 0.4, 9.6, 48.3, 51.7 -6.00359066427289,5,a-cure-i1,2018-19,20.9,55.7,Cambridge - Rindge Avenue Upper School,00490315, 30.1, 8.7, 8.7, 44.3, 0.0, 0.3, 8.0, 44.6, 55.4 -6.872665534804754,5,a-cure-i1,2018-19,25.3,58.9,Cambridge - Vassal Lane Upper School,00490320, 25.4, 17.1, 8.4, 41.1, 0.0, 0.3, 7.7, 47.2, 52.8 -3.949367088607596,3.95,a-cure-i1,2018-19,7.800000000000001,31.599999999999994,Canton - Canton High,00500505, 10.8, 11.5, 5.0, 68.4, 0.0, 0.0, 4.3, 47.3, 52.4 -1,1,a-cure-i1,2018-19,0.0,32.900000000000006,Canton - Dean S Luce,00500020, 9.0, 12.5, 4.7, 67.1, 0.0, 0.8, 5.7, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,26.900000000000006,Canton - John F Kennedy,00500017, 6.7, 8.8, 4.4, 73.1, 0.0, 0.0, 6.9, 52.8, 47.2 -2.8481675392670156,2.85,a-cure-i1,2018-19,6.8,38.2,Canton - Lt Peter M Hansen,00500012, 13.0, 11.0, 6.6, 61.8, 0.2, 0.2, 7.2, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,37.9,Canton - Rodman Early Childhood Center,00500010, 11.5, 12.6, 10.3, 62.1, 0.0, 0.0, 3.4, 67.8, 32.2 -3.2911392405063298,3.29,a-cure-i1,2018-19,6.5,31.599999999999994,Canton - Wm H Galvin Middle,00500305, 12.1, 9.8, 4.3, 68.4, 0.0, 0.1, 5.2, 47.6, 52.4 -1,1,a-cure-i1,2018-19,0.0,14.5,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 2.5, 2.1, 4.5, 85.5, 0.4, 0.0, 5.0, 45.5, 54.5 -1,1,a-cure-i1,2018-19,0.0,27.5,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 7.9, 0.7, 12.1, 72.5, 1.9, 0.5, 4.4, 65.3, 34.7 -1,1,a-cure-i1,2018-19,1.8,26.299999999999997,Carlisle - Carlisle School,00510025, 0.7, 11.2, 4.5, 73.7, 0.0, 0.0, 10.0, 53.2, 46.8 -1,1,a-cure-i1,2018-19,4.8,5.5,Carver - Carver Elementary School,00520015, 1.6, 0.5, 1.5, 94.5, 0.3, 0.0, 1.6, 48.7, 51.3 -27.80952380952379,5,a-cure-i1,2018-19,7.3,4.200000000000003,Carver - Carver Middle/High School,00520405, 0.9, 0.4, 1.6, 95.8, 0.1, 0.3, 0.9, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,6.400000000000006,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 3.2, 93.6, 0.0, 0.0, 3.2, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,12.200000000000003,Central Berkshire - Craneville,06350025, 0.3, 1.0, 6.0, 87.8, 0.5, 0.0, 4.5, 54.0, 46.0 -1,1,a-cure-i1,2018-19,0.0,8.700000000000003,Central Berkshire - Kittredge,06350035, 0.7, 0.7, 4.7, 91.3, 0.0, 0.0, 2.7, 42.3, 57.7 -1,1,a-cure-i1,2018-19,0.0,8.0,Central Berkshire - Nessacus Regional Middle School,06350305, 1.1, 0.5, 2.9, 92.0, 0.0, 0.0, 3.5, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.5,7.5,Central Berkshire - Wahconah Regional High,06350505, 0.8, 1.1, 3.0, 92.5, 0.2, 0.0, 2.4, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,24.900000000000006,Chelmsford - Byam School,00560030, 1.7, 11.7, 6.9, 75.1, 0.4, 0.0, 4.2, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,30.599999999999994,Chelmsford - Center Elementary School,00560005, 3.6, 17.3, 6.1, 69.4, 0.0, 0.2, 3.4, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,35.599999999999994,Chelmsford - Charles D Harrington,00560025, 4.9, 17.6, 9.9, 64.4, 0.0, 0.0, 3.2, 51.2, 48.8 -1,1,a-cure-i1,2018-19,2.8,23.700000000000003,Chelmsford - Chelmsford High,00560505, 3.5, 14.1, 3.8, 76.3, 0.0, 0.1, 2.1, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,25.5,Chelmsford - Col Moses Parker School,00560305, 2.6, 14.8, 5.7, 74.5, 0.4, 0.0, 2.0, 55.4, 44.6 -1,1,a-cure-i1,2018-19,0.0,38.4,Chelmsford - Community Education Center,00560001, 1.3, 25.8, 6.0, 61.6, 0.7, 0.0, 4.6, 60.9, 39.1 -1,1,a-cure-i1,2018-19,3.1,26.5,Chelmsford - McCarthy Middle School,00560310, 3.2, 14.4, 5.1, 73.5, 0.1, 0.1, 3.6, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,28.400000000000006,Chelmsford - South Row,00560015, 1.9, 15.1, 6.5, 71.6, 0.5, 0.0, 4.3, 54.6, 45.4 -2.448637316561845,2.45,a-cure-i1,2018-19,14.600000000000001,95.4,Chelsea - Chelsea High,00570505, 5.8, 1.6, 87.4, 4.6, 0.1, 0.1, 0.4, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,98.1,Chelsea - Chelsea Opportunity Academy,00570515, 1.9, 0.0, 96.2, 1.9, 0.0, 0.0, 0.0, 67.3, 32.7 -1.0519618239660657,1.05,a-cure-i1,2018-19,6.2,94.3,Chelsea - Clark Avenue School,00570050, 3.6, 0.6, 88.4, 5.7, 0.6, 0.2, 0.9, 52.1, 47.9 -1.9977502812148482,2.0,a-cure-i1,2018-19,11.100000000000001,88.9,Chelsea - Edgar A Hooks Elementary,00570030, 6.5, 0.6, 80.1, 11.1, 0.2, 0.0, 1.7, 53.7, 46.3 -1,1,a-cure-i1,2018-19,3.8,93.3,Chelsea - Eugene Wright Science and Technology Academy,00570045, 6.3, 1.2, 84.2, 6.7, 0.0, 0.0, 1.6, 52.2, 47.8 -1.9570815450643775,1.96,a-cure-i1,2018-19,11.399999999999999,93.2,Chelsea - Frank M Sokolowski Elementary,00570040, 5.7, 0.8, 85.5, 6.8, 0.0, 0.0, 1.3, 50.9, 49.1 -2.0934579439252334,2.09,a-cure-i1,2018-19,12.6,96.3,Chelsea - George F. Kelly Elementary,00570035, 3.3, 0.4, 92.1, 3.7, 0.0, 0.0, 0.6, 47.9, 52.1 -2.416050686378036,2.42,a-cure-i1,2018-19,14.3,94.7,Chelsea - Joseph A. Browne School,00570055, 4.1, 1.4, 89.0, 5.3, 0.0, 0.0, 0.2, 51.5, 48.5 -1,1,a-cure-i1,2018-19,4.7,91.0,Chelsea - Shurtleff Early Childhood,00570003, 4.5, 0.7, 85.3, 9.0, 0.0, 0.0, 0.6, 49.1, 50.9 -1.9848975188781013,1.98,a-cure-i1,2018-19,11.5,92.7,Chelsea - William A Berkowitz Elementary,00570025, 5.4, 1.7, 85.0, 7.3, 0.2, 0.0, 0.4, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,4.700000000000003,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.6, 0.0, 1.6, 95.3, 1.6, 0.0, 0.0, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,41.3,Chicopee - Barry,00610003, 3.2, 2.6, 32.9, 58.7, 0.0, 0.2, 2.3, 56.8, 43.2 -1,1,a-cure-i1,2018-19,0.0,49.6,Chicopee - Belcher,00610010, 8.3, 1.5, 37.9, 50.4, 0.0, 0.0, 1.9, 50.4, 49.6 -1,1,a-cure-i1,2018-19,1.9,49.8,Chicopee - Bellamy Middle,00610305, 3.0, 1.9, 40.7, 50.2, 0.0, 0.0, 4.2, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,68.6,Chicopee - Bowe,00610015, 6.4, 1.8, 54.8, 31.4, 0.0, 0.0, 5.6, 50.6, 49.4 -2.778135048231512,2.78,a-cure-i1,2018-19,5.4,31.099999999999994,Chicopee - Bowie,00610020, 4.7, 1.2, 22.0, 68.9, 0.3, 0.3, 2.5, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,77.8,Chicopee - Chicopee Academy,00610021, 3.3, 0.0, 71.1, 22.2, 0.0, 0.0, 3.3, 62.2, 37.8 -1,1,a-cure-i1,2018-19,4.2,33.400000000000006,Chicopee - Chicopee Comprehensive High School,00610510, 2.2, 2.8, 25.9, 66.6, 0.2, 0.0, 2.2, 54.1, 45.9 -1.9137254901960785,1.91,a-cure-i1,2018-19,6.1000000000000005,51.0,Chicopee - Chicopee High,00610505, 5.2, 2.8, 41.7, 49.0, 0.0, 0.0, 1.3, 50.4, 49.5 -1,1,a-cure-i1,2018-19,3.2,51.7,Chicopee - Dupont Middle,00610310, 4.5, 2.7, 40.8, 48.3, 0.1, 0.0, 3.6, 55.2, 44.8 -1,1,a-cure-i1,2018-19,4.0,58.0,Chicopee - Fairview Elementary,00610050, 2.9, 1.8, 50.0, 42.0, 0.2, 0.0, 3.1, 55.6, 44.4 -1,1,a-cure-i1,2018-19,4.3,77.5,Chicopee - Gen John J Stefanik,00610090, 5.7, 1.0, 67.1, 22.5, 0.0, 0.0, 3.7, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,33.599999999999994,Chicopee - Lambert-Lavoie,00610040, 3.1, 2.4, 24.7, 66.4, 0.0, 0.0, 3.4, 55.8, 44.2 -1,1,a-cure-i1,2018-19,0.0,39.2,Chicopee - Litwin,00610022, 5.5, 0.3, 32.0, 60.8, 0.0, 0.0, 1.5, 54.0, 46.0 -1,1,a-cure-i1,2018-19,1.2,39.0,Chicopee - Streiber Memorial School,00610065, 5.3, 4.1, 23.6, 61.0, 0.0, 0.4, 5.7, 52.4, 47.6 -1,1,a-cure-i1,2018-19,0.0,40.2,Chicopee - Szetela Early Childhood Center,00610001, 4.4, 0.9, 28.8, 59.8, 0.0, 0.0, 6.1, 64.2, 35.8 -10.601626016260163,5,a-cure-i1,2018-19,16.299999999999997,24.599999999999994,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 2.5, 4.0, 12.8, 75.4, 0.3, 0.0, 5.0, 51.0, 49.0 -4.904276985743381,4.9,a-cure-i1,2018-19,30.1,98.2,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 67.9, 0.0, 29.9, 1.8, 0.0, 0.0, 0.4, 52.4, 47.6 -1.9349593495934958,1.93,a-cure-i1,2018-19,11.9,98.4,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 67.8, 2.4, 26.9, 1.6, 0.0, 0.0, 1.2, 48.2, 51.8 -3.6981132075471694,3.7,a-cure-i1,2018-19,14.7,63.6,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 11.1, 0.9, 45.6, 36.4, 0.9, 0.0, 5.1, 52.1, 47.5 -1,1,a-cure-i1,2018-19,0.0,3.799999999999997,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.5, 96.2, 0.0, 0.0, 3.2, 49.2, 50.8 -1,1,a-cure-i1,2018-19,1.9,31.099999999999994,Clinton - Clinton Elementary,00640050, 2.5, 1.0, 25.0, 68.9, 0.0, 0.0, 2.5, 50.6, 49.4 -1,1,a-cure-i1,2018-19,4.8,30.099999999999994,Clinton - Clinton Middle School,00640305, 3.8, 1.2, 23.4, 69.9, 0.0, 0.2, 1.6, 55.5, 44.5 -2.4000000000000004,2.4,a-cure-i1,2018-19,5.4,36.0,Clinton - Clinton Senior High,00640505, 4.6, 2.6, 27.0, 64.0, 0.0, 0.0, 1.8, 50.0, 50.0 -8.611670020120725,5,a-cure-i1,2018-19,53.50000000000001,99.4,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 75.7, 0.0, 21.9, 0.6, 0.3, 0.6, 0.9, 48.8, 51.2 -1,1,a-cure-i1,2018-19,1.4,8.900000000000006,Cohasset - Cohasset Middle/High School,00650505, 3.0, 3.1, 1.4, 91.1, 0.2, 0.0, 1.1, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,7.700000000000003,Cohasset - Deer Hill,00650005, 3.7, 1.9, 0.5, 92.3, 0.0, 0.0, 1.6, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,6.900000000000006,Cohasset - Joseph Osgood,00650010, 2.3, 1.1, 2.0, 93.1, 0.0, 0.0, 1.4, 49.0, 51.0 -3.7257683215130024,3.73,a-cure-i1,2018-19,19.7,84.6,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 18.8, 25.1, 36.1, 15.4, 0.1, 0.0, 4.6, 49.1, 50.9 -8.083507306889354,5,a-cure-i1,2018-19,48.400000000000006,95.8,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 65.1, 4.8, 20.8, 4.2, 0.6, 0.3, 4.2, 44.6, 55.4 -1.6902564102564104,1.69,a-cure-i1,2018-19,10.3,97.5,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.1, 0.6, 95.6, 2.5, 0.3, 0.0, 0.0, 51.9, 48.1 -4.522448979591837,4.52,a-cure-i1,2018-19,27.700000000000003,98.0,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.5, 0.3, 97.2, 2.0, 0.0, 0.0, 0.0, 49.1, 50.9 -2.1908713692946056,2.19,a-cure-i1,2018-19,13.2,96.4,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 1.1, 1.1, 93.6, 3.6, 0.0, 0.0, 0.6, 48.1, 51.9 -3.1807228915662646,3.18,a-cure-i1,2018-19,6.6,33.2,Concord - Alcott,00670005, 8.8, 8.4, 10.0, 66.8, 0.0, 0.0, 6.1, 52.6, 47.4 -8.949152542372882,5,a-cure-i1,2018-19,13.2,23.599999999999994,Concord - Concord Middle,00670305, 4.9, 7.6, 5.0, 76.4, 0.4, 0.0, 5.6, 50.3, 49.5 -4.413793103448276,4.41,a-cure-i1,2018-19,6.4,23.200000000000003,Concord - Thoreau,00670020, 1.3, 6.9, 6.5, 76.8, 0.0, 0.0, 8.6, 51.8, 48.2 -13.493975903614462,5,a-cure-i1,2018-19,14.0,16.599999999999994,Concord - Willard,00670030, 1.2, 5.7, 4.3, 83.4, 0.0, 0.0, 5.5, 53.0, 47.0 -4.857142857142856,4.86,a-cure-i1,2018-19,6.8,22.400000000000006,Concord-Carlisle - Concord Carlisle High,06400505, 4.2, 8.7, 4.6, 77.6, 0.1, 0.0, 4.8, 47.3, 52.5 -5.042016806722689,5,a-cure-i1,2018-19,30.0,95.2,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 48.8, 3.2, 40.8, 4.8, 0.0, 0.0, 2.5, 44.7, 55.3 -1,1,a-cure-i1,2018-19,0.0,7.400000000000006,Conway - Conway Grammar,00680005, 1.5, 0.0, 5.2, 92.6, 0.0, 0.0, 0.7, 52.6, 47.4 -1,1,a-cure-i1,2018-19,1.6,14.299999999999997,Danvers - Danvers High,00710505, 2.3, 2.9, 7.1, 85.7, 0.1, 0.0, 1.9, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,18.099999999999994,Danvers - Great Oak,00710015, 2.4, 2.2, 8.4, 81.9, 0.3, 0.0, 4.9, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,20.299999999999997,Danvers - Highlands,00710010, 3.1, 2.6, 10.4, 79.7, 0.5, 0.0, 3.6, 52.3, 47.7 -1,1,a-cure-i1,2018-19,4.5,16.400000000000006,Danvers - Holten Richmond Middle School,00710305, 2.5, 2.4, 8.3, 83.6, 0.1, 0.0, 3.1, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,15.799999999999997,Danvers - Ivan G Smith,00710032, 1.7, 2.4, 8.2, 84.2, 0.0, 0.7, 2.7, 44.9, 55.1 -1,1,a-cure-i1,2018-19,0.0,15.099999999999994,Danvers - Riverside,00710030, 2.6, 2.3, 8.0, 84.9, 0.3, 0.0, 2.0, 56.8, 43.2 -1,1,a-cure-i1,2018-19,4.5,9.099999999999994,Danvers - Willis E Thorpe,00710045, 0.9, 2.8, 4.7, 90.9, 0.3, 0.0, 0.3, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,13.700000000000003,Dartmouth - Andrew B. Cushman School,00720005, 1.4, 0.7, 5.0, 86.3, 0.0, 0.0, 6.5, 51.1, 48.9 -1,1,a-cure-i1,2018-19,1.4,12.400000000000006,Dartmouth - Dartmouth High,00720505, 1.6, 0.4, 3.5, 87.6, 0.0, 0.0, 7.0, 49.8, 50.1 -1,1,a-cure-i1,2018-19,1.4,12.0,Dartmouth - Dartmouth Middle,00720050, 1.6, 0.3, 3.8, 88.0, 0.0, 0.1, 6.2, 56.4, 43.6 -1,1,a-cure-i1,2018-19,4.4,10.400000000000006,Dartmouth - George H Potter,00720030, 1.5, 0.5, 4.2, 89.6, 0.0, 0.0, 4.2, 54.3, 45.7 -1,1,a-cure-i1,2018-19,0.0,13.400000000000006,Dartmouth - James M. Quinn School,00720040, 1.2, 1.2, 5.0, 86.6, 0.0, 0.0, 5.9, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,12.599999999999994,Dartmouth - Joseph Demello,00720015, 0.7, 0.9, 4.7, 87.4, 0.0, 0.0, 6.2, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,48.9,Dedham - Avery,00730010, 9.8, 2.3, 29.5, 51.1, 1.0, 0.0, 6.2, 47.9, 52.1 -4.185430463576159,4.19,a-cure-i1,2018-19,7.9,30.200000000000003,Dedham - Dedham High,00730505, 9.6, 2.8, 15.6, 69.8, 0.0, 0.0, 2.1, 50.4, 49.6 -1,1,a-cure-i1,2018-19,2.0,29.200000000000003,Dedham - Dedham Middle School,00730305, 6.5, 3.4, 15.5, 70.8, 0.3, 0.0, 3.6, 52.4, 47.6 -1,1,a-cure-i1,2018-19,0.0,29.099999999999994,Dedham - Early Childhood Center,00730005, 3.7, 3.3, 14.7, 70.9, 0.0, 0.0, 7.4, 53.8, 46.2 -1,1,a-cure-i1,2018-19,0.0,15.799999999999997,Dedham - Greenlodge,00730025, 4.5, 1.6, 6.9, 84.2, 0.0, 0.0, 2.8, 57.5, 42.5 -1,1,a-cure-i1,2018-19,0.0,27.099999999999994,Dedham - Oakdale,00730030, 5.9, 1.1, 13.0, 72.9, 0.0, 0.0, 7.1, 50.6, 49.4 -1,1,a-cure-i1,2018-19,0.0,32.0,Dedham - Riverdale,00730045, 8.1, 2.3, 15.7, 68.0, 0.0, 0.0, 5.8, 54.7, 45.3 -1,1,a-cure-i1,2018-19,0.0,14.299999999999997,Deerfield - Deerfield Elementary,00740015, 0.3, 0.8, 6.1, 85.7, 0.0, 0.0, 7.1, 49.2, 50.8 -1,1,a-cure-i1,2018-19,2.9000000000000004,32.599999999999994,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 10.3, 2.7, 12.5, 67.4, 1.8, 0.1, 5.3, 48.9, 51.1 -1,1,a-cure-i1,2018-19,3.8,33.400000000000006,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 10.2, 1.0, 12.1, 66.6, 1.3, 0.3, 8.6, 53.2, 46.8 -1,1,a-cure-i1,2018-19,0.0,37.9,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 12.3, 2.0, 14.6, 62.1, 3.3, 0.3, 5.3, 57.5, 42.5 -5.017751479289941,5,a-cure-i1,2018-19,10.6,33.8,Dennis-Yarmouth - Mattacheese Middle School,06450305, 8.0, 2.4, 14.9, 66.2, 2.4, 0.0, 6.0, 48.9, 51.1 -1,1,a-cure-i1,2018-19,3.6,35.2,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 9.2, 1.2, 13.1, 64.8, 2.9, 0.0, 8.8, 50.6, 49.4 -1,1,a-cure-i1,2018-19,0.0,26.099999999999994,Dennis-Yarmouth - Station Avenue Elementary,06450025, 6.4, 3.2, 8.0, 73.9, 1.6, 0.5, 6.4, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,14.299999999999997,Dighton-Rehoboth - Dighton Elementary,06500005, 2.0, 2.0, 5.2, 85.7, 0.0, 0.0, 5.0, 52.4, 47.6 -8.648648648648653,5,a-cure-i1,2018-19,6.0,11.099999999999994,Dighton-Rehoboth - Dighton Middle School,06500305, 1.4, 1.0, 4.6, 88.9, 0.0, 0.0, 4.1, 54.5, 45.5 -1,1,a-cure-i1,2018-19,2.1,7.900000000000006,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.1, 0.8, 3.9, 92.1, 0.1, 0.0, 1.9, 53.4, 46.6 -1,1,a-cure-i1,2018-19,3.8,9.700000000000003,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.3, 1.0, 4.3, 90.3, 0.2, 0.0, 3.8, 48.7, 51.3 -1,1,a-cure-i1,2018-19,0.0,11.099999999999994,Dighton-Rehoboth - Palmer River,06500010, 0.9, 1.9, 4.8, 88.9, 0.2, 0.0, 3.4, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,9.299999999999997,Douglas - Douglas Elementary School,00770015, 0.3, 0.6, 4.2, 90.7, 0.0, 0.0, 4.2, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,8.099999999999994,Douglas - Douglas High School,00770505, 0.8, 1.8, 2.8, 91.9, 0.0, 0.8, 2.0, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,7.799999999999997,Douglas - Douglas Middle School,00770305, 0.6, 1.2, 3.4, 92.2, 0.0, 0.0, 2.5, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,9.5,Douglas - Douglas Primary School,00770005, 0.0, 0.5, 5.4, 90.5, 0.0, 0.0, 3.6, 53.6, 46.4 -3.3163636363636364,3.32,a-cure-i1,2018-19,5.7,27.5,Dover - Chickering,00780005, 3.4, 14.8, 4.2, 72.5, 0.0, 0.2, 4.8, 56.1, 43.9 -5.875706214689265,5,a-cure-i1,2018-19,6.5,17.700000000000003,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.5, 7.1, 4.0, 82.3, 0.1, 0.0, 3.9, 51.5, 48.4 -4.210526315789474,4.21,a-cure-i1,2018-19,6.0,22.799999999999997,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.4, 10.7, 4.0, 77.2, 0.2, 0.0, 4.4, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.0,27.799999999999997,Dracut - Brookside Elementary,00790035, 11.4, 5.9, 9.8, 72.2, 0.0, 0.0, 0.7, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,25.599999999999994,Dracut - Dracut Senior High,00790505, 8.0, 8.1, 6.7, 74.4, 0.5, 0.0, 2.3, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,27.799999999999997,Dracut - George H. Englesby Elementary School,00790045, 4.8, 7.4, 14.4, 72.2, 0.0, 0.0, 1.3, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,23.400000000000006,Dracut - Greenmont Avenue,00790030, 6.0, 3.0, 12.5, 76.6, 0.0, 0.0, 1.9, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,17.700000000000003,Dracut - Joseph A Campbell Elementary,00790020, 3.8, 5.0, 5.2, 82.3, 0.0, 0.2, 3.6, 54.9, 45.1 -1,1,a-cure-i1,2018-19,2.1,25.200000000000003,Dracut - Justus C. Richardson Middle School,00790410, 5.8, 7.2, 10.8, 74.8, 0.2, 0.0, 1.2, 50.6, 49.4 -8.179591836734692,5,a-cure-i1,2018-19,50.099999999999994,98.0,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 62.5, 0.0, 34.8, 2.0, 0.4, 0.0, 0.4, 47.7, 52.3 -1,1,a-cure-i1,2018-19,0.0,14.700000000000003,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.9, 0.3, 9.2, 85.3, 0.3, 0.0, 4.0, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,11.5,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.6, 1.5, 7.2, 88.5, 0.3, 0.3, 1.6, 50.7, 49.3 -8.7,5,a-cure-i1,2018-19,8.7,16.0,Dudley-Charlton Reg - Dudley Elementary,06580005, 2.4, 0.3, 10.0, 84.0, 0.0, 0.0, 3.3, 54.5, 45.5 -1,1,a-cure-i1,2018-19,2.4,14.099999999999994,Dudley-Charlton Reg - Dudley Middle School,06580305, 2.0, 1.1, 7.8, 85.9, 0.0, 0.0, 3.2, 46.0, 54.0 -1,1,a-cure-i1,2018-19,0.0,12.900000000000006,Dudley-Charlton Reg - Heritage School,06580030, 1.6, 0.7, 7.1, 87.1, 0.2, 0.0, 3.3, 55.2, 44.8 -6.3276836158192085,5,a-cure-i1,2018-19,7.0,17.700000000000003,Dudley-Charlton Reg - Mason Road School,06580010, 1.1, 0.7, 11.3, 82.3, 0.4, 0.0, 4.2, 55.1, 44.9 -1,1,a-cure-i1,2018-19,1.4,15.099999999999994,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 2.0, 2.1, 8.3, 84.9, 0.2, 0.0, 2.5, 48.8, 51.1 -1,1,a-cure-i1,2018-19,0.0,8.700000000000003,Duxbury - Alden School,00820004, 0.3, 0.8, 3.0, 91.3, 0.0, 0.0, 4.6, 52.1, 47.9 -1,1,a-cure-i1,2018-19,3.5,6.799999999999997,Duxbury - Chandler Elementary,00820006, 0.5, 0.6, 2.1, 93.2, 0.0, 0.0, 3.7, 50.6, 49.4 -1,1,a-cure-i1,2018-19,2.8,6.599999999999994,Duxbury - Duxbury High,00820505, 0.3, 1.8, 2.2, 93.4, 0.1, 0.0, 2.2, 50.1, 49.9 -1,1,a-cure-i1,2018-19,2.1,7.299999999999997,Duxbury - Duxbury Middle,00820305, 0.1, 1.5, 2.0, 92.7, 0.1, 0.0, 3.6, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,10.599999999999994,East Bridgewater - Central,00830005, 2.4, 0.9, 3.4, 89.4, 0.3, 0.0, 3.6, 47.4, 52.6 -1,1,a-cure-i1,2018-19,1.5,6.5,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 2.4, 0.7, 1.6, 93.5, 0.3, 0.0, 1.6, 49.3, 50.7 -1,1,a-cure-i1,2018-19,0.0,10.799999999999997,East Bridgewater - Gordon W. Mitchell School,00830010, 3.8, 0.8, 1.8, 89.2, 0.6, 0.2, 3.7, 56.3, 43.7 -6.271356783919597,5,a-cure-i1,2018-19,7.800000000000001,19.900000000000006,East Longmeadow - Birchland Park,00870305, 4.8, 4.3, 7.8, 80.1, 0.0, 0.0, 3.0, 51.9, 48.1 -10.482758620689651,5,a-cure-i1,2018-19,11.399999999999999,17.400000000000006,East Longmeadow - East Longmeadow High,00870505, 3.4, 6.3, 6.3, 82.6, 0.4, 0.2, 0.8, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,25.799999999999997,East Longmeadow - Mapleshade,00870010, 4.0, 8.4, 10.7, 74.2, 0.0, 0.0, 2.7, 50.3, 49.7 -1,1,a-cure-i1,2018-19,3.2,22.5,East Longmeadow - Meadow Brook,00870013, 2.1, 3.9, 11.7, 77.5, 0.2, 0.0, 4.6, 52.1, 47.9 -1,1,a-cure-i1,2018-19,0.0,20.900000000000006,East Longmeadow - Mountain View,00870015, 2.9, 4.0, 8.8, 79.1, 0.4, 0.0, 4.8, 55.3, 44.7 -1,1,a-cure-i1,2018-19,0.0,16.400000000000006,Eastham - Eastham Elementary,00850005, 8.2, 3.5, 1.8, 83.6, 0.0, 0.0, 2.9, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,21.599999999999994,Easthampton - Center School,00860005, 0.5, 2.5, 13.7, 78.4, 1.0, 0.0, 3.9, 52.5, 47.5 -1,1,a-cure-i1,2018-19,3.1,19.799999999999997,Easthampton - Easthampton High,00860505, 1.7, 3.2, 12.4, 80.2, 0.0, 0.2, 2.3, 46.6, 53.2 -1,1,a-cure-i1,2018-19,0.0,18.0,Easthampton - Maple,00860010, 0.8, 3.2, 10.0, 82.0, 0.4, 0.0, 3.6, 53.6, 46.4 -4.081632653061224,4.08,a-cure-i1,2018-19,7.5,29.400000000000006,Easthampton - Neil A Pepin,00860020, 1.0, 3.9, 17.2, 70.6, 0.5, 0.0, 6.9, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,20.299999999999997,Easthampton - White Brook Middle School,00860305, 1.0, 4.6, 13.6, 79.7, 0.2, 0.0, 1.0, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,23.5,Easton - Center School,00880003, 8.6, 2.0, 8.6, 76.5, 0.4, 0.4, 3.5, 56.1, 43.9 -1,1,a-cure-i1,2018-19,3.2,15.099999999999994,Easton - Easton Middle School,00880405, 5.3, 2.9, 4.6, 84.9, 0.0, 0.0, 2.3, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,24.400000000000006,Easton - Moreau Hall,00880020, 8.9, 4.0, 6.7, 75.6, 1.8, 0.4, 2.7, 52.9, 47.1 -6.054054054054054,5,a-cure-i1,2018-19,7.0,18.5,Easton - Oliver Ames High,00880505, 6.6, 3.6, 4.9, 81.5, 0.4, 0.0, 3.1, 47.1, 52.9 -1,1,a-cure-i1,2018-19,2.1,17.200000000000003,Easton - Parkview Elementary,00880015, 3.2, 2.6, 6.8, 82.8, 0.6, 0.0, 3.9, 46.8, 53.2 -1,1,a-cure-i1,2018-19,3.9,19.099999999999994,Easton - Richardson Olmsted School,00880025, 6.4, 3.3, 5.3, 80.9, 0.2, 0.1, 3.7, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,32.2,Edgartown - Edgartown Elementary,00890005, 3.5, 0.3, 19.7, 67.8, 2.4, 0.0, 6.2, 48.4, 51.6 -8.556593977154725,5,a-cure-i1,2018-19,51.5,96.3,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 40.7, 0.8, 51.4, 3.7, 0.5, 0.0, 2.9, 37.3, 62.7 -1,1,a-cure-i1,2018-19,0.0,15.599999999999994,Erving - Erving Elementary,00910030, 0.8, 0.0, 3.1, 84.4, 0.0, 0.0, 11.7, 53.9, 46.1 -1,1,a-cure-i1,2018-19,1.1,18.200000000000003,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.1, 1.6, 12.0, 81.8, 0.4, 0.0, 3.0, 42.0, 57.8 -1,1,a-cure-i1,2018-19,0.0,77.3,Everett - Adams School,00930003, 18.6, 6.7, 50.0, 22.7, 0.0, 0.0, 2.1, 58.8, 41.2 -3.52,3.52,a-cure-i1,2018-19,15.4,70.0,Everett - Devens School,00930030, 28.6, 1.4, 35.7, 30.0, 0.0, 0.0, 4.3, 84.3, 15.7 -2.600262123197903,2.6,a-cure-i1,2018-19,12.399999999999999,76.3,Everett - Everett High,00930505, 19.8, 4.9, 49.6, 23.7, 0.4, 0.2, 1.5, 51.4, 48.6 -1.510204081632653,1.51,a-cure-i1,2018-19,7.4,78.4,Everett - George Keverian School,00930028, 15.7, 5.1, 55.2, 21.6, 0.2, 0.1, 2.1, 50.5, 49.5 -1,1,a-cure-i1,2018-19,2.2,76.5,Everett - Lafayette School,00930038, 18.5, 5.9, 48.9, 23.5, 0.5, 0.0, 2.7, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,71.8,Everett - Madeline English School,00930018, 12.2, 5.9, 51.5, 28.2, 0.3, 0.1, 1.8, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,87.6,Everett - Parlin School,00930058, 14.7, 2.6, 69.3, 12.4, 0.0, 0.0, 1.0, 48.6, 51.4 -1.6410256410256412,1.64,a-cure-i1,2018-19,8.8,85.8,Everett - Sumner G. Whittier School,00930010, 10.7, 5.2, 66.8, 14.2, 1.3, 0.0, 1.9, 51.2, 48.8 -1.278236914600551,1.28,a-cure-i1,2018-19,5.8,72.6,Everett - Webster School,00930015, 15.7, 6.7, 49.4, 27.4, 0.1, 0.1, 0.6, 51.9, 48.1 -2.961625282167043,2.96,a-cure-i1,2018-19,16.4,88.6,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 6.4, 1.2, 79.3, 11.4, 0.8, 0.3, 0.5, 49.0, 51.0 -1,1,a-cure-i1,2018-19,0.0,15.799999999999997,Fairhaven - East Fairhaven,00940010, 2.2, 1.0, 7.0, 84.2, 1.0, 0.0, 4.6, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,10.700000000000003,Fairhaven - Fairhaven High,00940505, 1.2, 1.8, 5.4, 89.3, 0.3, 0.0, 2.0, 46.7, 53.3 -7.880597014925369,5,a-cure-i1,2018-19,6.6,13.400000000000006,Fairhaven - Hastings Middle,00940305, 1.9, 2.5, 4.8, 86.6, 0.8, 0.0, 3.4, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,16.200000000000003,Fairhaven - Leroy Wood,00940030, 4.0, 1.9, 4.8, 83.8, 0.6, 0.0, 4.8, 49.8, 50.2 -2.2806236080178177,2.28,a-cure-i1,2018-19,6.4,44.9,Fall River - B M C Durfee High,00950505, 8.3, 5.3, 26.0, 55.1, 0.2, 0.1, 4.9, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,54.8,Fall River - Carlton M. Viveiros Elementary School,00950009, 8.7, 4.3, 31.7, 45.2, 0.3, 0.0, 9.9, 50.7, 49.3 -3.172881355932203,3.17,a-cure-i1,2018-19,11.7,59.0,Fall River - Henry Lord Community School,00950017, 10.2, 3.7, 34.4, 41.0, 0.1, 0.1, 10.4, 53.6, 46.4 -1,1,a-cure-i1,2018-19,0.0,22.799999999999997,Fall River - James Tansey,00950140, 3.5, 0.6, 9.6, 77.2, 0.0, 0.0, 9.0, 49.4, 50.6 -1,1,a-cure-i1,2018-19,3.3,52.6,Fall River - John J Doran,00950045, 9.2, 1.2, 31.9, 47.4, 0.2, 0.0, 10.2, 52.1, 47.9 -1.5969289827255277,1.6,a-cure-i1,2018-19,5.2,52.1,Fall River - Letourneau Elementary School,00950013, 6.3, 2.6, 35.0, 47.9, 0.0, 0.0, 8.2, 50.3, 49.7 -2.1219512195121952,2.12,a-cure-i1,2018-19,8.7,65.6,Fall River - Mary Fonseca Elementary School,00950011, 10.2, 4.4, 38.9, 34.4, 0.3, 0.1, 11.7, 51.5, 48.5 -3.504761904761905,3.5,a-cure-i1,2018-19,9.200000000000001,42.0,Fall River - Matthew J Kuss Middle,00950320, 9.5, 4.2, 21.1, 58.0, 0.0, 0.0, 7.2, 46.1, 53.9 -2.55125284738041,2.55,a-cure-i1,2018-19,7.0,43.9,Fall River - Morton Middle,00950315, 7.6, 4.7, 22.2, 56.1, 0.3, 0.2, 8.9, 52.1, 47.9 -1.908256880733945,1.91,a-cure-i1,2018-19,5.2,43.6,Fall River - North End Elementary,00950005, 8.4, 2.4, 22.3, 56.4, 0.0, 0.0, 10.5, 52.7, 47.3 -1,1,a-cure-i1,2018-19,1.3,48.7,Fall River - Resiliency Preparatory Academy,00950525, 13.6, 0.0, 28.3, 51.3, 1.0, 0.0, 5.8, 48.2, 51.8 -1,1,a-cure-i1,2018-19,0.0,51.2,Fall River - Samuel Watson,00950145, 8.7, 1.7, 24.1, 48.8, 1.3, 0.0, 15.4, 48.5, 51.5 -2.269503546099291,2.27,a-cure-i1,2018-19,6.0,42.3,Fall River - Spencer Borden,00950130, 7.5, 4.8, 19.4, 57.7, 0.0, 0.0, 10.7, 54.8, 45.2 -1,1,a-cure-i1,2018-19,0.0,58.0,Fall River - Stone PK-12 School,00950340, 18.0, 0.0, 26.0, 42.0, 0.0, 0.0, 14.0, 78.0, 22.0 -1,1,a-cure-i1,2018-19,0.0,54.6,Fall River - Talbot Innovation School,00950305, 7.0, 4.9, 34.7, 45.4, 0.0, 0.0, 8.0, 56.0, 44.0 -1,1,a-cure-i1,2018-19,2.5,48.9,Fall River - William S Greene,00950065, 7.0, 4.9, 27.9, 51.1, 0.0, 0.0, 9.1, 49.3, 50.7 -3.1760299625468162,3.18,a-cure-i1,2018-19,5.3,26.700000000000003,Falmouth - East Falmouth Elementary,00960005, 5.0, 2.1, 8.8, 73.3, 2.1, 0.0, 8.8, 48.8, 51.3 -1,1,a-cure-i1,2018-19,4.8,18.299999999999997,Falmouth - Falmouth High,00960505, 4.5, 3.1, 4.2, 81.7, 1.4, 0.0, 5.1, 47.6, 52.1 -5.478260869565216,5,a-cure-i1,2018-19,6.300000000000001,18.400000000000006,Falmouth - Lawrence,00960405, 5.9, 1.4, 5.2, 81.6, 0.5, 0.2, 5.1, 48.8, 51.2 -1,1,a-cure-i1,2018-19,2.6,21.599999999999994,Falmouth - Morse Pond School,00960305, 4.3, 2.7, 5.2, 78.4, 2.5, 0.0, 6.8, 52.1, 47.9 -1,1,a-cure-i1,2018-19,0.0,21.599999999999994,Falmouth - Mullen-Hall,00960020, 3.2, 2.1, 8.7, 78.4, 0.5, 0.0, 7.1, 53.4, 46.6 -8.855345911949684,5,a-cure-i1,2018-19,8.8,15.900000000000006,Falmouth - North Falmouth Elementary,00960030, 3.2, 1.4, 6.4, 84.1, 0.0, 0.3, 4.6, 47.1, 52.9 -5.292307692307692,5,a-cure-i1,2018-19,8.6,26.0,Falmouth - Teaticket,00960015, 8.0, 1.7, 8.9, 74.0, 0.8, 0.0, 6.6, 55.4, 44.6 -1,1,a-cure-i1,2018-19,0.0,0.9000000000000057,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 60.9, 39.1 -2.810810810810811,2.81,a-cure-i1,2018-19,13.0,74.0,Fitchburg - Arthur M Longsjo Middle School,00970315, 8.0, 4.2, 54.3, 26.0, 0.0, 0.2, 7.4, 53.3, 46.7 -1.3714285714285714,1.37,a-cure-i1,2018-19,6.0,70.0,Fitchburg - Crocker Elementary,00970016, 4.5, 3.1, 54.1, 30.0, 0.2, 0.2, 7.9, 54.0, 46.0 -3.869132290184922,3.87,a-cure-i1,2018-19,17.0,70.3,Fitchburg - Fitchburg High,00970505, 7.8, 5.6, 48.9, 29.7, 0.0, 0.0, 8.0, 52.4, 47.6 -9.582577132486389,5,a-cure-i1,2018-19,33.0,55.1,Fitchburg - Goodrich Academy,00970510, 5.8, 1.0, 42.0, 44.9, 0.0, 0.0, 6.3, 54.6, 45.4 -1.649717514124294,1.65,a-cure-i1,2018-19,7.3,70.8,Fitchburg - McKay Arts Academy,00970340, 6.1, 7.1, 50.6, 29.2, 0.0, 0.0, 7.0, 48.5, 51.5 -1,1,a-cure-i1,2018-19,4.3,69.8,Fitchburg - Memorial Middle School,00970048, 5.2, 6.4, 52.3, 30.2, 0.0, 0.1, 5.7, 48.9, 51.1 -2.0530973451327434,2.05,a-cure-i1,2018-19,8.7,67.8,Fitchburg - Reingold Elementary,00970043, 5.7, 2.9, 51.4, 32.2, 0.0, 0.0, 7.7, 54.3, 45.7 -1,1,a-cure-i1,2018-19,0.0,75.2,Fitchburg - South Street Elementary,00970060, 7.2, 4.5, 56.3, 24.8, 0.2, 0.0, 7.0, 50.7, 49.3 -1,1,a-cure-i1,2018-19,0.0,1.0999999999999943,Florida - Abbott Memorial,00980005, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 49.4, 50.6 -10.146341463414629,5,a-cure-i1,2018-19,10.399999999999999,16.400000000000006,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 2.3, 1.8, 7.3, 83.6, 0.5, 0.0, 4.6, 48.4, 51.6 -1,1,a-cure-i1,2018-19,3.9,22.299999999999997,Foxborough - Charles Taylor Elementary,00990050, 4.0, 4.9, 8.5, 77.7, 0.9, 0.4, 3.6, 53.6, 46.4 -1,1,a-cure-i1,2018-19,0.0,15.0,Foxborough - Foxborough High,00990505, 5.4, 3.2, 4.4, 85.0, 0.2, 0.0, 1.7, 52.3, 47.7 -1,1,a-cure-i1,2018-19,3.1,17.299999999999997,Foxborough - John J Ahern,00990405, 5.2, 3.6, 5.3, 82.7, 0.5, 0.1, 2.6, 50.6, 49.3 -4.936170212765958,4.94,a-cure-i1,2018-19,5.8,18.799999999999997,Foxborough - Mabelle M Burrell,00990015, 4.5, 5.8, 4.9, 81.2, 0.3, 0.0, 3.2, 53.2, 46.8 -1,1,a-cure-i1,2018-19,1.3,21.900000000000006,Foxborough - Vincent M Igo Elementary,00990020, 3.3, 7.1, 6.6, 78.1, 0.5, 0.3, 4.1, 51.4, 48.6 -3.099850968703428,3.1,a-cure-i1,2018-19,13.0,67.1,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 46.7, 9.8, 4.8, 32.9, 0.3, 0.2, 5.3, 48.2, 51.8 -6.375939849624061,5,a-cure-i1,2018-19,31.8,79.8,Framingham - Barbieri Elementary,01000035, 3.7, 0.6, 72.0, 20.2, 0.1, 0.0, 3.3, 44.8, 55.2 -3.8438438438438443,3.84,a-cure-i1,2018-19,16.0,66.6,Framingham - Brophy,01000006, 7.5, 5.0, 51.9, 33.4, 0.0, 0.0, 2.2, 50.4, 49.6 -3.9000000000000004,3.9,a-cure-i1,2018-19,7.800000000000001,32.0,Framingham - Cameron Middle School,01000302, 7.4, 3.3, 17.7, 68.0, 0.0, 0.0, 3.6, 50.1, 49.9 -3.152238805970149,3.15,a-cure-i1,2018-19,6.6,33.5,Framingham - Charlotte A Dunning,01000007, 8.3, 12.0, 10.7, 66.5, 0.0, 0.0, 2.4, 53.2, 46.8 -4.401913875598086,4.4,a-cure-i1,2018-19,11.5,41.8,Framingham - Framingham High School,01000515, 8.0, 5.8, 23.8, 58.2, 0.1, 0.1, 4.1, 50.7, 49.3 -3.1941923774954626,3.19,a-cure-i1,2018-19,11.0,55.1,Framingham - Fuller Middle,01000305, 10.8, 2.0, 38.1, 44.9, 0.0, 0.4, 3.8, 54.0, 46.0 -5.866666666666666,5,a-cure-i1,2018-19,12.1,33.0,Framingham - Hemenway,01000015, 5.3, 9.2, 11.4, 67.0, 0.2, 0.2, 6.7, 50.4, 49.6 -1.6842105263157894,1.68,a-cure-i1,2018-19,5.0,47.5,Framingham - Juniper Hill School,01000001, 6.2, 11.6, 25.0, 52.5, 0.0, 0.4, 4.3, 57.6, 42.4 -1,1,a-cure-i1,2018-19,2.6,33.400000000000006,Framingham - King Elementary School,01000005, 4.0, 9.6, 11.1, 66.6, 0.0, 0.0, 8.7, 53.6, 46.4 -1,1,a-cure-i1,2018-19,2.6,37.2,Framingham - Mary E Stapleton Elementary,01000045, 7.7, 3.6, 20.2, 62.8, 0.0, 0.0, 5.7, 56.3, 43.8 -2.6424682395644283,2.64,a-cure-i1,2018-19,9.1,55.1,Framingham - Miriam F McCarthy School,01000050, 13.1, 1.7, 33.3, 44.9, 0.0, 0.4, 6.6, 50.9, 49.1 -12.075471698113208,5,a-cure-i1,2018-19,20.0,26.5,Framingham - Potter Road,01000039, 8.8, 3.9, 8.3, 73.5, 0.0, 0.2, 5.3, 51.8, 48.2 -7.214953271028038,5,a-cure-i1,2018-19,19.3,42.8,Framingham - Walsh Middle,01000310, 4.1, 4.4, 31.0, 57.2, 0.0, 0.0, 3.4, 51.3, 48.6 -1,1,a-cure-i1,2018-19,2.8,32.5,Framingham - Woodrow Wilson,01000055, 10.0, 0.2, 19.7, 67.5, 0.2, 0.0, 2.4, 49.4, 50.6 -24.712871287128728,5,a-cure-i1,2018-19,15.6,10.099999999999994,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 1.0, 1.8, 2.3, 89.9, 0.0, 0.0, 5.0, 46.6, 52.4 -1,1,a-cure-i1,2018-19,0.0,10.299999999999997,Franklin - Annie Sullivan Middle School,01010040, 1.2, 3.9, 3.2, 89.7, 0.2, 0.5, 1.2, 55.0, 44.7 -1,1,a-cure-i1,2018-19,0.0,11.099999999999994,Franklin - Davis Thayer,01010035, 2.0, 2.5, 4.1, 88.9, 0.0, 0.8, 1.6, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,22.400000000000006,Franklin - Franklin Early Childhood Development Center,01010003, 0.9, 1.9, 3.7, 77.6, 0.9, 10.3, 4.7, 57.0, 43.0 -1,1,a-cure-i1,2018-19,1.6,13.700000000000003,Franklin - Franklin High,01010505, 1.8, 6.4, 2.7, 86.3, 0.2, 0.4, 2.2, 49.9, 50.0 -1,1,a-cure-i1,2018-19,0.0,9.299999999999997,Franklin - Helen Keller Elementary,01010012, 2.1, 3.1, 2.3, 90.7, 0.0, 0.5, 1.3, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,13.700000000000003,Franklin - Horace Mann,01010405, 0.9, 6.8, 3.6, 86.3, 0.0, 0.0, 2.4, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,12.900000000000006,Franklin - J F Kennedy Memorial,01010013, 0.5, 4.9, 3.6, 87.1, 0.3, 1.9, 1.6, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,16.599999999999994,Franklin - Jefferson Elementary,01010010, 0.9, 8.6, 4.3, 83.4, 0.0, 1.1, 1.7, 54.7, 45.3 -1,1,a-cure-i1,2018-19,0.0,14.400000000000006,Franklin - Oak Street Elementary,01010030, 1.4, 6.0, 3.8, 85.6, 0.0, 0.3, 3.0, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,21.200000000000003,Franklin - Parmenter,01010032, 6.2, 5.3, 7.1, 78.8, 0.3, 1.2, 1.2, 50.7, 49.3 -1,1,a-cure-i1,2018-19,2.7,13.799999999999997,Franklin - Remington Middle,01010310, 2.9, 5.8, 3.1, 86.2, 0.0, 0.2, 1.7, 50.2, 49.8 -1,1,a-cure-i1,2018-19,1.9,7.700000000000003,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.6, 0.0, 3.6, 92.3, 0.0, 0.0, 2.4, 65.6, 34.4 -1,1,a-cure-i1,2018-19,4.3,7.599999999999994,Freetown-Lakeville - Apponequet Regional High,06650505, 1.1, 1.1, 2.9, 92.4, 0.3, 0.3, 1.9, 49.8, 50.2 -1,1,a-cure-i1,2018-19,0.0,9.700000000000003,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.9, 0.6, 1.3, 90.3, 0.0, 0.0, 5.8, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,4.700000000000003,Freetown-Lakeville - Freetown Elementary School,06650001, 0.7, 0.7, 2.3, 95.3, 0.0, 0.0, 0.9, 53.5, 46.5 -1,1,a-cure-i1,2018-19,2.4,5.299999999999997,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 1.6, 0.8, 1.3, 94.7, 0.3, 0.0, 1.3, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,3.5,Freetown-Lakeville - George R Austin Intermediate School,06650015, 1.6, 0.7, 0.0, 96.5, 0.0, 0.0, 1.2, 54.3, 45.7 -1,1,a-cure-i1,2018-19,2.3000000000000003,11.599999999999994,Frontier - Frontier Regional,06700505, 1.4, 2.8, 4.2, 88.4, 0.0, 0.2, 3.1, 54.3, 45.7 -3.402298850574713,3.4,a-cure-i1,2018-19,7.4,34.8,Gardner - Elm Street School,01030001, 2.3, 1.6, 21.1, 65.2, 0.2, 0.0, 9.6, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,28.299999999999997,Gardner - Gardner Academy for Learning and Technology,01030515, 5.0, 0.0, 11.7, 71.7, 1.7, 1.7, 8.3, 63.3, 33.3 -6.501587301587302,5,a-cure-i1,2018-19,12.8,31.5,Gardner - Gardner High,01030505, 2.6, 3.3, 19.8, 68.5, 0.3, 0.0, 5.5, 51.5, 48.3 -1,1,a-cure-i1,2018-19,2.2,33.2,Gardner - Gardner Middle School,01030405, 2.2, 1.7, 20.6, 66.8, 0.0, 0.0, 8.7, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,33.8,Gardner - Waterford Street,01030020, 3.4, 1.6, 21.9, 66.2, 0.0, 0.0, 6.8, 54.8, 45.2 -1,1,a-cure-i1,2018-19,0.0,7.599999999999994,Gateway - Chester Elementary,06720059, 0.8, 0.0, 5.1, 92.4, 0.8, 0.0, 0.8, 57.6, 42.4 -21.89473684210528,5,a-cure-i1,2018-19,10.4,7.599999999999994,Gateway - Gateway Regional High,06720505, 0.0, 1.5, 3.5, 92.4, 0.0, 0.0, 2.5, 47.5, 52.5 -12.289855072463757,5,a-cure-i1,2018-19,5.3,6.900000000000006,Gateway - Gateway Regional Middle School,06720405, 1.5, 0.0, 3.5, 93.1, 1.0, 0.0, 1.0, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,9.799999999999997,Gateway - Littleville Elementary School,06720143, 1.0, 0.0, 4.9, 90.2, 0.0, 0.3, 3.6, 48.2, 51.8 -12.553846153846154,5,a-cure-i1,2018-19,5.1,6.5,Georgetown - Georgetown High School,01050505, 0.3, 1.5, 3.3, 93.5, 0.0, 0.0, 1.5, 48.2, 51.8 -26.046511627906995,5,a-cure-i1,2018-19,7.0,4.299999999999997,Georgetown - Georgetown Middle School,01050305, 1.9, 0.5, 1.4, 95.7, 0.0, 0.0, 0.5, 54.3, 45.7 -1,1,a-cure-i1,2018-19,0.0,5.599999999999994,Georgetown - Penn Brook,01050010, 0.6, 1.1, 1.7, 94.4, 0.0, 0.3, 2.0, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,9.0,Georgetown - Perley Elementary,01050005, 0.0, 2.2, 1.1, 91.0, 0.0, 0.0, 5.6, 53.9, 46.1 -1,1,a-cure-i1,2018-19,0.0,13.299999999999997,Gill-Montague - Gill Elementary,06740005, 2.3, 0.0, 3.9, 86.7, 0.0, 0.0, 7.0, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,22.200000000000003,Gill-Montague - Great Falls Middle,06740310, 2.1, 0.0, 10.5, 77.8, 0.4, 0.0, 9.2, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,25.200000000000003,Gill-Montague - Hillcrest Elementary School,06740015, 1.3, 1.3, 16.8, 74.8, 0.0, 0.0, 5.8, 60.6, 39.4 -1,1,a-cure-i1,2018-19,0.0,23.700000000000003,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 14.7, 76.3, 0.0, 0.9, 8.1, 55.0, 45.0 -1,1,a-cure-i1,2018-19,0.0,15.299999999999997,Gill-Montague - Turners Fall High,06740505, 1.0, 1.0, 9.9, 84.7, 0.5, 0.0, 3.0, 43.1, 56.9 -1.7122807017543862,1.71,a-cure-i1,2018-19,6.1000000000000005,57.0,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 10.3, 1.0, 40.8, 43.0, 0.6, 0.0, 4.4, 49.1, 50.9 -1,1,a-cure-i1,2018-19,0.0,22.700000000000003,Gloucester - Beeman Memorial,01070010, 1.5, 1.5, 16.0, 77.3, 0.6, 0.0, 3.0, 54.7, 45.3 -1,1,a-cure-i1,2018-19,0.0,13.900000000000006,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.5, 9.1, 86.1, 0.0, 0.0, 4.3, 50.7, 49.3 -1,1,a-cure-i1,2018-19,2.0,16.299999999999997,Gloucester - Gloucester High,01070505, 1.7, 0.9, 11.4, 83.7, 0.2, 0.4, 1.7, 54.3, 45.7 -1,1,a-cure-i1,2018-19,0.0,16.299999999999997,Gloucester - Gloucester PreSchool,01070025, 4.1, 1.6, 4.9, 83.7, 0.0, 0.0, 5.7, 57.7, 42.3 -1,1,a-cure-i1,2018-19,0.0,8.200000000000003,Gloucester - Plum Cove School,01070042, 1.9, 0.5, 4.3, 91.8, 0.0, 0.0, 1.4, 52.4, 47.6 -1,1,a-cure-i1,2018-19,0.0,15.599999999999994,Gloucester - Ralph B O'Maley Middle,01070305, 1.9, 1.6, 7.3, 84.4, 0.6, 0.3, 3.9, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,29.5,Gloucester - Veterans Memorial,01070045, 2.8, 1.4, 20.3, 70.5, 0.0, 0.5, 4.6, 44.2, 55.8 -1,1,a-cure-i1,2018-19,0.0,15.5,Gloucester - West Parish,01070050, 1.4, 1.4, 6.6, 84.5, 0.0, 0.3, 5.7, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,0.0,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 100.0 -1,1,a-cure-i1,2018-19,2.5,19.099999999999994,Grafton - Grafton High School,01100505, 2.2, 10.4, 3.4, 80.9, 0.0, 0.1, 3.0, 49.5, 50.5 -1,1,a-cure-i1,2018-19,0.0,21.599999999999994,Grafton - Grafton Middle,01100305, 2.1, 11.7, 4.7, 78.4, 0.4, 0.4, 2.3, 49.2, 50.8 -1,1,a-cure-i1,2018-19,3.1,24.799999999999997,Grafton - Millbury Street Elementary School,01100200, 1.3, 15.2, 5.8, 75.2, 0.0, 0.0, 2.5, 53.6, 46.4 -1,1,a-cure-i1,2018-19,0.0,21.099999999999994,Grafton - North Grafton Elementary,01100025, 1.3, 14.8, 3.0, 78.9, 0.0, 0.0, 2.1, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,20.299999999999997,Grafton - North Street Elementary School,01100030, 0.7, 8.9, 5.6, 79.7, 0.3, 0.2, 4.5, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,24.900000000000006,Grafton - South Grafton Elementary,01100005, 2.0, 14.6, 5.0, 75.1, 0.0, 0.0, 3.3, 57.1, 42.9 -1,1,a-cure-i1,2018-19,2.8,16.200000000000003,Granby - East Meadow,01110004, 0.0, 1.3, 11.0, 83.8, 0.5, 0.0, 3.3, 49.2, 50.8 -1,1,a-cure-i1,2018-19,4.5,11.599999999999994,Granby - Granby Jr Sr High School,01110505, 0.3, 1.8, 7.7, 88.4, 0.3, 0.0, 1.5, 55.8, 44.2 -1,1,a-cure-i1,2018-19,4.3,22.299999999999997,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 2.6, 1.8, 11.5, 77.7, 0.4, 0.1, 5.8, 54.4, 45.6 -2.0754716981132075,2.08,a-cure-i1,2018-19,11.0,84.8,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.1, 1.3, 82.3, 15.2, 0.1, 0.0, 0.0, 49.8, 50.2 -1.6928327645051195,1.69,a-cure-i1,2018-19,6.2,58.6,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 4.3, 15.8, 34.4, 41.4, 0.3, 0.0, 3.8, 53.9, 46.0 -2.8773841961852855,2.88,a-cure-i1,2018-19,6.6,36.7,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 8.3, 0.9, 22.6, 63.3, 0.4, 0.0, 4.3, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,12.200000000000003,Greenfield - Discovery School at Four Corners,01140025, 0.4, 0.8, 9.7, 87.8, 0.0, 0.0, 1.3, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,34.599999999999994,Greenfield - Federal Street School,01140010, 3.3, 1.6, 24.4, 65.4, 0.0, 0.0, 5.3, 52.4, 47.6 -1,1,a-cure-i1,2018-19,4.6,31.799999999999997,Greenfield - Greenfield High,01140505, 2.1, 2.5, 20.9, 68.2, 0.2, 0.0, 6.2, 55.2, 44.6 -1,1,a-cure-i1,2018-19,0.0,26.400000000000006,Greenfield - Greenfield Middle,01140305, 2.3, 0.8, 16.7, 73.6, 0.0, 0.0, 6.7, 51.0, 49.0 -2.0970873786407767,2.1,a-cure-i1,2018-19,5.4,41.2,Greenfield - Newton School,01140035, 5.6, 1.2, 28.4, 58.8, 0.0, 0.0, 6.0, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,14.0,Greenfield - The Academy of Early Learning at North Parish,01140005, 1.7, 0.8, 9.1, 86.0, 0.0, 0.0, 2.5, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,40.0,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 11.0, 4.2, 17.8, 60.0, 0.3, 0.7, 5.9, 46.1, 53.9 -1,1,a-cure-i1,2018-19,0.0,17.200000000000003,Groton-Dunstable - Boutwell School,06730001, 0.0, 12.1, 3.4, 82.8, 0.0, 0.0, 1.7, 48.3, 51.7 -1,1,a-cure-i1,2018-19,4.0,14.900000000000006,Groton-Dunstable - Florence Roche School,06730010, 0.9, 6.3, 2.6, 85.1, 0.6, 0.2, 4.4, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,11.900000000000006,Groton-Dunstable - Groton Dunstable Regional,06730505, 1.0, 7.7, 1.7, 88.1, 0.0, 0.1, 1.3, 48.6, 51.4 -1,1,a-cure-i1,2018-19,4.4,11.099999999999994,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 1.4, 5.0, 2.0, 88.9, 0.3, 0.3, 2.0, 52.1, 47.9 -1,1,a-cure-i1,2018-19,0.0,15.099999999999994,Groton-Dunstable - Swallow/Union School,06730005, 1.0, 6.3, 4.6, 84.9, 0.3, 0.0, 3.0, 50.3, 49.7 -3.6529680365296793,3.65,a-cure-i1,2018-19,5.0,21.900000000000006,Hadley - Hadley Elementary,01170015, 3.5, 3.9, 10.2, 78.1, 0.4, 1.1, 2.8, 52.7, 47.3 -1,1,a-cure-i1,2018-19,4.0,22.099999999999994,Hadley - Hopkins Academy,01170505, 0.8, 5.5, 8.7, 77.9, 0.4, 3.6, 3.2, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,8.700000000000003,Halifax - Halifax Elementary,01180005, 1.3, 0.2, 4.3, 91.3, 0.3, 0.0, 2.6, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,13.099999999999994,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.0, 9.0, 86.9, 0.0, 0.0, 2.0, 55.5, 44.5 -10.469135802469143,5,a-cure-i1,2018-19,5.3,8.099999999999994,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.2, 1.4, 91.9, 0.0, 1.1, 2.5, 49.1, 50.9 -13.166666666666675,5,a-cure-i1,2018-19,7.9,9.599999999999994,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.4, 3.7, 3.6, 90.4, 0.0, 0.0, 2.0, 49.0, 51.0 -18.306306306306315,5,a-cure-i1,2018-19,12.7,11.099999999999994,Hamilton-Wenham - Miles River Middle,06750310, 0.5, 3.5, 4.6, 88.9, 0.0, 0.5, 2.0, 43.8, 56.2 -7.500000000000002,5,a-cure-i1,2018-19,6.0,12.799999999999997,Hamilton-Wenham - Winthrop School,06750015, 1.4, 5.7, 3.9, 87.2, 0.4, 0.0, 1.4, 48.8, 51.2 -2.0995475113122177,2.1,a-cure-i1,2018-19,8.700000000000001,66.3,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 29.5, 2.0, 32.5, 33.7, 0.2, 0.0, 2.2, 47.8, 52.2 -5.902222222222223,5,a-cure-i1,2018-19,16.6,45.0,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 12.4, 1.4, 28.2, 55.0, 0.5, 0.0, 2.4, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,17.0,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.6, 0.6, 11.2, 83.0, 0.0, 0.0, 2.6, 50.0, 50.0 -5.298701298701296,5,a-cure-i1,2018-19,5.1,15.400000000000006,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.9, 2.5, 7.4, 84.6, 0.0, 0.6, 3.0, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,15.799999999999997,Hampden-Wilbraham - Minnechaug Regional High,06800505, 2.5, 3.9, 6.1, 84.2, 0.3, 0.0, 3.1, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,16.799999999999997,Hampden-Wilbraham - Soule Road,06800030, 2.9, 1.5, 8.2, 83.2, 0.0, 0.0, 4.1, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,16.200000000000003,Hampden-Wilbraham - Stony Hill School,06800050, 2.2, 2.5, 6.9, 83.8, 0.3, 0.0, 4.4, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,14.5,Hampden-Wilbraham - Wilbraham Middle,06800310, 2.6, 2.6, 6.4, 85.5, 0.3, 0.0, 2.6, 50.3, 49.7 -1,1,a-cure-i1,2018-19,1.5,6.700000000000003,Hampshire - Hampshire Regional High,06830505, 0.6, 0.8, 2.8, 93.3, 0.0, 0.0, 2.5, 47.0, 52.9 -67.86206896551711,5,a-cure-i1,2018-19,12.3,2.9000000000000057,Hancock - Hancock Elementary,01210005, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,4.799999999999997,Hanover - Cedar Elementary,01220004, 1.1, 1.5, 2.2, 95.2, 0.0, 0.0, 0.0, 54.9, 45.1 -1,1,a-cure-i1,2018-19,0.0,7.900000000000006,Hanover - Center Elementary,01220005, 0.6, 0.6, 4.7, 92.1, 0.0, 0.0, 2.1, 53.7, 46.3 -1,1,a-cure-i1,2018-19,1.8,5.099999999999994,Hanover - Hanover High,01220505, 0.6, 3.0, 1.2, 94.9, 0.0, 0.1, 0.1, 52.6, 47.3 -1,1,a-cure-i1,2018-19,1.9,7.099999999999994,Hanover - Hanover Middle,01220305, 1.5, 2.5, 2.6, 92.9, 0.0, 0.0, 0.5, 51.8, 48.2 -17.753424657534254,5,a-cure-i1,2018-19,8.1,7.299999999999997,Hanover - Sylvester,01220015, 0.4, 2.8, 2.0, 92.7, 0.0, 0.0, 2.0, 47.2, 52.8 -1,1,a-cure-i1,2018-19,3.8,21.400000000000006,Harvard - Bromfield,01250505, 2.1, 12.8, 4.6, 78.6, 0.0, 0.0, 1.9, 49.6, 50.2 -6.264550264550263,5,a-cure-i1,2018-19,7.4,18.900000000000006,Harvard - Hildreth Elementary School,01250005, 2.1, 8.9, 3.2, 81.1, 0.0, 0.0, 4.8, 48.6, 51.4 -1,1,a-cure-i1,2018-19,0.0,8.5,Hatfield - Hatfield Elementary,01270005, 0.4, 0.4, 5.3, 91.5, 0.0, 0.0, 2.4, 53.4, 46.2 -1,1,a-cure-i1,2018-19,0.0,10.099999999999994,Hatfield - Smith Academy,01270505, 0.5, 2.6, 4.2, 89.9, 0.0, 0.0, 2.6, 48.7, 50.8 -1,1,a-cure-i1,2018-19,0.0,35.2,Haverhill - Bradford Elementary,01280008, 3.7, 1.1, 28.1, 64.8, 0.0, 0.0, 2.3, 52.6, 47.4 -1,1,a-cure-i1,2018-19,0.0,31.0,Haverhill - Caleb Dustin Hunking School,01280030, 4.9, 1.7, 21.8, 69.0, 0.1, 0.1, 2.4, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,65.0,Haverhill - Consentino Annex at Bartlett School,01280005, 4.9, 0.8, 53.7, 35.0, 0.0, 0.0, 5.7, 45.5, 54.5 -1,1,a-cure-i1,2018-19,0.0,56.3,Haverhill - Consentino Middle School,01280100, 3.7, 2.5, 48.2, 43.7, 0.3, 0.1, 1.5, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,58.9,Haverhill - Crowell,01280020, 4.2, 5.3, 48.4, 41.1, 0.0, 0.0, 1.1, 53.7, 46.3 -1,1,a-cure-i1,2018-19,3.7,52.6,Haverhill - Dr Paul Nettle,01280050, 4.3, 2.4, 43.1, 47.4, 0.2, 0.4, 2.2, 52.4, 47.6 -1,1,a-cure-i1,2018-19,0.0,57.9,Haverhill - Golden Hill,01280026, 3.4, 1.6, 49.7, 42.1, 0.2, 0.0, 3.0, 49.3, 50.7 -1,1,a-cure-i1,2018-19,0.0,69.6,Haverhill - Greenleaf Kindergarten Center,01280027, 5.1, 0.0, 62.0, 30.4, 0.0, 0.0, 2.5, 59.5, 40.5 -1,1,a-cure-i1,2018-19,0.0,72.2,Haverhill - Haverhill Alternative School,01280033, 8.3, 0.0, 61.1, 27.8, 0.0, 0.0, 2.8, 83.3, 16.7 -2.713216957605985,2.71,a-cure-i1,2018-19,6.8,40.1,Haverhill - Haverhill High,01280505, 4.9, 1.8, 31.9, 59.9, 0.1, 0.1, 1.4, 50.1, 49.9 -1,1,a-cure-i1,2018-19,2.2,38.1,Haverhill - John G Whittier,01280085, 4.2, 2.1, 30.1, 61.9, 0.2, 0.4, 1.1, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,47.0,Haverhill - Moody,01280045, 10.5, 2.0, 32.0, 53.0, 1.5, 1.0, 0.0, 63.0, 37.0 -1,1,a-cure-i1,2018-19,0.4,48.9,Haverhill - Pentucket Lake Elementary,01280054, 4.8, 0.8, 39.8, 51.1, 0.8, 0.0, 2.7, 53.4, 46.6 -1,1,a-cure-i1,2018-19,0.0,39.8,Haverhill - Silver Hill Elementary School,01280067, 3.2, 1.2, 31.5, 60.2, 0.0, 0.0, 3.9, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,61.7,Haverhill - TEACH,01280073, 2.1, 0.0, 48.9, 38.3, 2.1, 0.0, 8.5, 89.4, 10.6 -1,1,a-cure-i1,2018-19,0.0,64.6,Haverhill - Tilton,01280075, 3.7, 1.1, 58.0, 35.4, 0.2, 0.0, 1.5, 49.3, 50.7 -1,1,a-cure-i1,2018-19,0.0,31.099999999999994,Haverhill - Walnut Square,01280080, 3.0, 1.5, 22.2, 68.9, 0.0, 0.0, 4.4, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,15.200000000000003,Hawlemont - Hawlemont Regional,06850005, 0.7, 0.0, 9.3, 84.8, 0.7, 0.0, 4.6, 41.7, 58.3 -12.365829145728645,5,a-cure-i1,2018-19,76.9,99.5,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 71.7, 0.5, 26.2, 0.5, 0.5, 0.5, 0.0, 51.8, 48.2 -2.8717948717948714,2.87,a-cure-i1,2018-19,5.6,31.200000000000003,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 5.3, 0.3, 23.4, 68.8, 0.0, 0.0, 2.3, 46.1, 53.9 -1,1,a-cure-i1,2018-19,3.5,18.400000000000006,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.9, 0.9, 4.1, 81.6, 0.0, 0.0, 12.4, 52.1, 47.5 -15.360000000000001,5,a-cure-i1,2018-19,7.2,7.5,Hingham - East Elementary School,01310005, 1.3, 1.7, 2.5, 92.5, 0.0, 0.0, 1.9, 52.5, 47.5 -1,1,a-cure-i1,2018-19,1.0,8.700000000000003,Hingham - Hingham High,01310505, 1.2, 2.2, 3.0, 91.3, 0.0, 0.0, 2.3, 50.1, 49.9 -1,1,a-cure-i1,2018-19,4.800000000000001,10.5,Hingham - Hingham Middle School,01310410, 1.1, 3.3, 2.6, 89.5, 0.0, 0.0, 3.4, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,12.400000000000006,Hingham - Plymouth River,01310019, 1.8, 2.4, 5.1, 87.6, 0.2, 0.0, 2.9, 50.4, 49.6 -1,1,a-cure-i1,2018-19,3.6,10.200000000000003,Hingham - South Elementary,01310020, 1.5, 3.9, 1.2, 89.8, 0.0, 0.0, 3.7, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,12.099999999999994,Hingham - Wm L Foster Elementary,01310010, 0.4, 2.1, 5.6, 87.9, 0.0, 0.0, 4.0, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,49.8,Holbrook - Holbrook Middle High School,01330505, 23.4, 5.7, 13.5, 50.2, 0.2, 0.0, 7.1, 48.7, 51.2 -1,1,a-cure-i1,2018-19,0.0,45.4,Holbrook - John F Kennedy,01330018, 18.8, 4.2, 13.4, 54.6, 0.3, 0.0, 8.7, 55.2, 44.8 -1,1,a-cure-i1,2018-19,0.0,10.599999999999994,Holland - Holland Elementary,01350005, 1.3, 1.3, 7.1, 89.4, 0.0, 0.0, 0.9, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,13.599999999999994,Holliston - Holliston High,01360505, 0.8, 7.5, 3.0, 86.4, 0.2, 0.0, 1.9, 49.7, 50.3 -1,1,a-cure-i1,2018-19,4.699999999999999,20.799999999999997,Holliston - Miller School,01360007, 1.3, 10.0, 5.6, 79.2, 0.1, 0.0, 3.7, 51.1, 48.9 -1,1,a-cure-i1,2018-19,1.0,19.0,Holliston - Placentino Elementary,01360010, 1.0, 8.5, 5.0, 81.0, 0.0, 0.1, 4.4, 54.8, 45.1 -1,1,a-cure-i1,2018-19,2.4,17.599999999999994,Holliston - Robert H. Adams Middle School,01360305, 0.9, 7.3, 7.0, 82.4, 0.4, 0.0, 2.0, 52.0, 48.0 -3.6730769230769234,3.67,a-cure-i1,2018-19,19.1,83.2,Holyoke - E N White Elementary,01370045, 3.7, 0.7, 77.0, 16.8, 0.0, 0.0, 1.7, 54.1, 45.9 -2.139130434782609,2.14,a-cure-i1,2018-19,12.3,92.0,Holyoke - H.B. Lawrence School,01370070, 5.2, 0.4, 85.7, 8.0, 0.0, 0.0, 0.8, 53.0, 47.0 -3.7725118483412317,3.77,a-cure-i1,2018-19,19.9,84.4,Holyoke - Holyoke High,01370505, 2.5, 0.6, 79.8, 15.6, 0.2, 0.1, 1.2, 51.5, 48.4 -1.282107574094402,1.28,a-cure-i1,2018-19,7.3,91.1,Holyoke - Holyoke STEM Academy,01370320, 5.4, 0.4, 83.7, 8.9, 0.0, 0.0, 1.6, 50.0, 50.0 -8.16024653312789,5,a-cure-i1,2018-19,33.1,64.9,Holyoke - Joseph Metcalf School,01370003, 3.1, 0.4, 58.8, 35.1, 0.0, 0.0, 2.7, 43.9, 56.1 -5.366666666666667,5,a-cure-i1,2018-19,32.2,96.0,Holyoke - Kelly Elementary,01370040, 1.3, 0.0, 93.9, 4.0, 0.0, 0.0, 0.8, 54.8, 45.2 -2.3113101903695408,2.31,a-cure-i1,2018-19,12.899999999999999,89.3,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.5, 2.1, 83.9, 10.7, 0.0, 0.0, 0.8, 50.6, 49.4 -1,1,a-cure-i1,2018-19,4.3,69.1,Holyoke - Lt Elmer J McMahon Elementary,01370015, 2.4, 1.8, 62.8, 30.9, 0.0, 0.0, 2.1, 54.1, 45.9 -1,1,a-cure-i1,2018-19,4.5,87.8,Holyoke - Maurice A Donahue Elementary,01370060, 2.8, 1.1, 82.9, 12.2, 0.0, 0.2, 0.9, 56.7, 43.3 -1,1,a-cure-i1,2018-19,0.0,96.7,Holyoke - Morgan Full Service Community School,01370025, 4.9, 0.7, 89.5, 3.3, 0.0, 0.0, 1.6, 51.0, 49.0 -10.224948875255624,5,a-cure-i1,2018-19,62.5,97.8,Holyoke - Veritas Prep Holyoke,01370075, 5.8, 0.0, 91.4, 2.2, 0.0, 0.0, 0.7, 56.8, 43.2 -5.134720700985761,5,a-cure-i1,2018-19,29.299999999999997,91.3,Holyoke - William R. Peck School,01370030, 2.9, 0.4, 87.7, 8.7, 0.0, 0.0, 0.4, 59.9, 40.1 -3.615062761506276,3.62,a-cure-i1,2018-19,21.599999999999998,95.6,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.4, 0.6, 92.0, 4.4, 0.0, 0.0, 1.6, 46.2, 53.8 -1,1,a-cure-i1,2018-19,1.2,11.900000000000006,Hopedale - Hopedale Jr Sr High,01380505, 1.0, 2.7, 4.6, 88.1, 1.3, 0.2, 2.1, 50.6, 49.4 -1,1,a-cure-i1,2018-19,0.0,13.799999999999997,Hopedale - Memorial,01380010, 1.0, 0.6, 7.3, 86.2, 0.0, 0.2, 4.8, 53.6, 46.4 -1,1,a-cure-i1,2018-19,0.0,16.099999999999994,Hopedale - Park Street School,01380003, 0.0, 1.1, 2.3, 83.9, 1.1, 0.0, 11.5, 47.1, 52.9 -1,1,a-cure-i1,2018-19,3.1,29.5,Hopkinton - Elmwood,01390010, 0.4, 22.2, 3.6, 70.5, 0.4, 0.0, 2.9, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,28.099999999999994,Hopkinton - Hopkins Elementary School,01390015, 0.5, 18.0, 4.0, 71.9, 0.4, 0.2, 5.1, 52.8, 47.2 -1,1,a-cure-i1,2018-19,3.3,17.5,Hopkinton - Hopkinton High,01390505, 0.8, 11.7, 2.9, 82.5, 0.3, 0.0, 1.9, 49.4, 50.6 -4.571428571428571,4.57,a-cure-i1,2018-19,7.0,24.5,Hopkinton - Hopkinton Middle School,01390305, 1.2, 16.3, 3.7, 75.5, 0.1, 0.0, 3.3, 49.4, 50.6 -1,1,a-cure-i1,2018-19,0.0,29.0,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 21.7, 2.9, 71.0, 0.0, 0.0, 4.3, 69.6, 30.4 -1,1,a-cure-i1,2018-19,0.0,34.400000000000006,Hopkinton - Marathon Elementary School,01390005, 0.4, 24.3, 4.1, 65.6, 0.0, 0.0, 5.6, 48.6, 51.4 -1,1,a-cure-i1,2018-19,0.0,21.700000000000003,Hudson - C A Farley,01410030, 1.2, 2.9, 15.6, 78.3, 0.0, 0.0, 1.9, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,17.700000000000003,Hudson - David J. Quinn Middle School,01410410, 1.3, 1.9, 11.8, 82.3, 0.0, 0.0, 2.8, 47.7, 52.3 -1,1,a-cure-i1,2018-19,0.0,20.799999999999997,Hudson - Forest Avenue Elementary,01410015, 1.4, 1.7, 12.7, 79.2, 0.3, 0.0, 4.8, 53.8, 46.2 -1,1,a-cure-i1,2018-19,2.5,15.200000000000003,Hudson - Hudson High,01410505, 2.3, 1.3, 9.5, 84.8, 0.1, 0.1, 1.8, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,21.5,Hudson - Mulready Elementary,01410007, 2.4, 2.8, 13.0, 78.5, 0.0, 0.0, 3.2, 49.4, 50.6 -1,1,a-cure-i1,2018-19,0.0,7.299999999999997,Hull - Hull High,01420505, 1.4, 1.4, 2.4, 92.7, 0.0, 0.0, 2.1, 52.6, 47.4 -1,1,a-cure-i1,2018-19,0.0,7.700000000000003,Hull - Lillian M Jacobs,01420015, 1.7, 2.2, 1.7, 92.3, 0.0, 0.0, 2.2, 54.2, 45.8 -1,1,a-cure-i1,2018-19,0.0,4.299999999999997,Hull - Memorial Middle,01420305, 0.5, 0.5, 1.6, 95.7, 0.0, 0.0, 1.6, 53.0, 47.0 -6.559386973180078,5,a-cure-i1,2018-19,10.7,26.099999999999994,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 5.8, 7.7, 7.5, 73.9, 0.1, 0.0, 5.0, 46.9, 53.1 -1,1,a-cure-i1,2018-19,0.0,11.099999999999994,Ipswich - Ipswich High,01440505, 0.7, 2.0, 4.4, 88.9, 0.2, 0.0, 3.7, 47.5, 52.3 -1,1,a-cure-i1,2018-19,3.0,12.0,Ipswich - Ipswich Middle School,01440305, 1.0, 1.7, 5.4, 88.0, 0.2, 0.0, 3.7, 49.4, 50.6 -1,1,a-cure-i1,2018-19,0.0,8.900000000000006,Ipswich - Paul F Doyon Memorial,01440007, 0.5, 1.5, 4.6, 91.1, 0.0, 0.0, 2.3, 50.9, 49.1 -1,1,a-cure-i1,2018-19,3.5,19.700000000000003,Ipswich - Winthrop,01440015, 2.7, 1.6, 8.2, 80.3, 0.0, 0.0, 7.1, 50.1, 49.9 -10.352941176470587,5,a-cure-i1,2018-19,6.6000000000000005,10.200000000000003,King Philip - King Philip Middle School,06900510, 1.6, 2.3, 4.1, 89.8, 0.1, 0.0, 1.9, 51.3, 48.7 -1,1,a-cure-i1,2018-19,2.4,8.599999999999994,King Philip - King Philip Regional High,06900505, 2.1, 2.2, 2.3, 91.4, 0.0, 0.1, 1.9, 52.3, 47.6 -1,1,a-cure-i1,2018-19,0.0,3.4000000000000057,Kingston - Kingston Elementary,01450005, 0.2, 0.5, 1.6, 96.6, 0.2, 0.0, 0.9, 50.7, 49.3 -1,1,a-cure-i1,2018-19,0.0,5.700000000000003,Kingston - Kingston Intermediate,01450020, 1.0, 0.3, 3.2, 94.3, 0.7, 0.0, 0.5, 51.0, 48.8 -9.051153460381142,5,a-cure-i1,2018-19,56.39999999999999,99.7,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 67.7, 0.5, 30.0, 0.3, 0.2, 0.0, 1.3, 52.5, 47.5 -5.81509032943677,5,a-cure-i1,2018-19,34.2,94.1,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 20.3, 3.2, 67.4, 5.9, 0.1, 0.1, 3.0, 49.0, 51.0 -1,1,a-cure-i1,2018-19,4.8,95.7,Lawrence - Alexander B Bruce,01490015, 0.9, 2.1, 92.4, 4.3, 0.0, 0.0, 0.2, 46.7, 53.3 -0.8644240570846076,1,a-cure-i1,2018-19,5.3,98.1,Lawrence - Arlington Middle School,01490017, 0.3, 0.0, 97.2, 1.9, 0.2, 0.0, 0.3, 51.5, 48.0 -0.883435582822086,1,a-cure-i1,2018-19,5.4,97.8,Lawrence - Community Day Arlington,01490009, 1.0, 0.0, 96.5, 2.2, 0.0, 0.0, 0.3, 53.5, 46.5 -1.4438614900314795,1.44,a-cure-i1,2018-19,8.6,95.3,Lawrence - Edward F. Parthum,01490053, 1.2, 0.5, 93.5, 4.7, 0.0, 0.0, 0.2, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,95.7,Lawrence - Emily G Wetherbee,01490080, 0.3, 1.5, 93.1, 4.3, 0.0, 0.0, 0.8, 47.2, 52.8 -1,1,a-cure-i1,2018-19,4.3,97.2,Lawrence - Francis M Leahy,01490040, 0.6, 0.0, 96.6, 2.8, 0.0, 0.0, 0.0, 50.1, 49.9 -1.9241603466955584,1.92,a-cure-i1,2018-19,11.100000000000001,92.3,Lawrence - Frost Middle School,01490525, 3.3, 3.5, 84.1, 7.7, 0.0, 0.0, 1.4, 54.0, 46.0 -1,1,a-cure-i1,2018-19,3.8,96.3,Lawrence - Gerard A. Guilmette,01490022, 2.3, 0.8, 92.8, 3.7, 0.0, 0.0, 0.4, 53.0, 47.0 -1.685071574642127,1.69,a-cure-i1,2018-19,10.3,97.8,Lawrence - Guilmette Middle School,01490025, 1.6, 0.4, 95.3, 2.2, 0.0, 0.0, 0.4, 49.7, 50.3 -1.2845528455284552,1.28,a-cure-i1,2018-19,7.9,98.4,Lawrence - High School Learning Center,01490536, 1.1, 0.5, 96.8, 1.6, 0.0, 0.0, 0.0, 57.8, 42.2 -2.7755102040816326,2.78,a-cure-i1,2018-19,17.0,98.0,Lawrence - James F Hennessey,01490020, 1.4, 0.6, 95.7, 2.0, 0.0, 0.0, 0.3, 57.4, 42.3 -2.261603375527426,2.26,a-cure-i1,2018-19,13.4,94.8,Lawrence - John Breen School,01490003, 2.4, 3.7, 88.4, 5.2, 0.0, 0.0, 0.3, 56.0, 43.4 -0.8626653102746694,1,a-cure-i1,2018-19,5.3,98.3,Lawrence - John K Tarbox,01490075, 0.3, 0.0, 97.6, 1.7, 0.0, 0.0, 0.3, 56.4, 43.6 -3.646817248459959,3.65,a-cure-i1,2018-19,22.2,97.4,Lawrence - Lawlor Early Childhood Center,01490002, 1.6, 0.0, 95.8, 2.6, 0.0, 0.0, 0.0, 55.3, 43.7 -1.2648870636550307,1.26,a-cure-i1,2018-19,7.7,97.4,Lawrence - Lawrence Family Public Academy,01490011, 2.1, 0.5, 94.3, 2.6, 0.0, 0.0, 0.5, 56.3, 43.2 -3.4144329896907215,3.41,a-cure-i1,2018-19,20.7,97.0,Lawrence - Lawrence High School,01490515, 1.2, 1.7, 93.8, 3.0, 0.1, 0.0, 0.2, 53.0, 46.6 -1.3690721649484536,1.37,a-cure-i1,2018-19,8.3,97.0,Lawrence - Oliver Partnership School,01490048, 0.4, 0.6, 96.0, 3.0, 0.0, 0.0, 0.0, 50.1, 49.7 -1,1,a-cure-i1,2018-19,3.3,95.0,Lawrence - Parthum Middle School,01490027, 1.0, 0.5, 93.0, 5.0, 0.0, 0.0, 0.5, 49.1, 50.7 -1.7259978425026967,1.73,a-cure-i1,2018-19,10.0,92.7,Lawrence - Robert Frost,01490018, 2.6, 3.0, 86.5, 7.3, 0.0, 0.0, 0.7, 48.8, 50.8 -1.393494228751312,1.39,a-cure-i1,2018-19,8.3,95.3,Lawrence - Rollins Early Childhood Center,01490001, 1.7, 0.6, 93.0, 4.7, 0.0, 0.0, 0.0, 58.1, 41.3 -4.026966292134831,4.03,a-cure-i1,2018-19,22.4,89.0,Lawrence - School for Exceptional Studies,01490537, 2.1, 0.0, 86.2, 11.0, 0.0, 0.0, 0.7, 82.8, 17.2 -1.4621848739495797,1.46,a-cure-i1,2018-19,8.7,95.2,Lawrence - South Lawrence East Elementary School,01490004, 0.8, 1.7, 92.3, 4.8, 0.0, 0.0, 0.4, 52.7, 47.3 -3.588477366255144,3.59,a-cure-i1,2018-19,21.8,97.2,Lawrence - Spark Academy,01490085, 1.3, 2.0, 93.2, 2.8, 0.0, 0.0, 0.7, 51.1, 48.7 -4.202839756592292,4.2,a-cure-i1,2018-19,25.9,98.6,Lawrence - UP Academy Leonard Middle School,01490090, 0.7, 0.7, 96.9, 1.4, 0.0, 0.0, 0.3, 54.5, 45.5 -4.503092783505154,4.5,a-cure-i1,2018-19,27.299999999999997,97.0,Lawrence - UP Academy Oliver Middle School,01490049, 0.3, 0.0, 96.7, 3.0, 0.0, 0.0, 0.0, 53.3, 46.7 -2.7017189079878663,2.7,a-cure-i1,2018-19,16.7,98.9,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.7, 0.0, 98.3, 1.1, 0.0, 0.0, 0.0, 44.7, 55.3 -1,1,a-cure-i1,2018-19,2.9,17.5,Lee - Lee Elementary,01500025, 0.3, 3.8, 11.1, 82.5, 0.0, 0.0, 2.3, 50.4, 49.6 -1,1,a-cure-i1,2018-19,2.8,13.099999999999994,Lee - Lee Middle/High School,01500505, 0.8, 3.1, 6.1, 86.9, 0.3, 0.0, 2.8, 50.0, 50.0 -5.36312849162011,5,a-cure-i1,2018-19,6.0,17.900000000000006,Leicester - Leicester High,01510505, 4.0, 2.6, 7.9, 82.1, 0.2, 0.4, 2.8, 51.5, 48.1 -1,1,a-cure-i1,2018-19,0.0,21.0,Leicester - Leicester Memorial Elementary,01510005, 7.0, 2.7, 8.8, 79.0, 0.6, 0.0, 1.8, 57.8, 42.2 -1,1,a-cure-i1,2018-19,0.0,22.700000000000003,Leicester - Leicester Middle,01510015, 5.1, 3.2, 10.0, 77.3, 0.0, 0.0, 4.3, 55.1, 44.9 -1,1,a-cure-i1,2018-19,0.0,18.799999999999997,Leicester - Leicester Primary School,01510010, 6.0, 1.9, 9.3, 81.2, 0.0, 0.0, 1.6, 53.1, 46.9 -1,1,a-cure-i1,2018-19,2.1,16.5,Lenox - Lenox Memorial High,01520505, 0.5, 4.2, 9.3, 83.5, 0.0, 0.0, 2.6, 48.7, 51.3 -1,1,a-cure-i1,2018-19,0.0,17.799999999999997,Lenox - Morris,01520015, 0.3, 4.6, 7.4, 82.2, 0.0, 0.0, 5.5, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,49.5,Leominster - Bennett,01530003, 10.9, 3.0, 29.7, 50.5, 0.0, 0.0, 5.9, 62.4, 37.6 -1,1,a-cure-i1,2018-19,4.9,48.5,Leominster - Center For Technical Education Innovation,01530605, 7.2, 2.6, 34.8, 51.5, 0.0, 0.4, 3.5, 68.5, 31.5 -2.1688888888888886,2.17,a-cure-i1,2018-19,6.1,45.0,Leominster - Fall Brook,01530007, 6.0, 1.9, 32.0, 55.0, 0.2, 0.0, 4.9, 54.4, 45.5 -1,1,a-cure-i1,2018-19,0.0,62.4,Leominster - Frances Drake School,01530010, 9.0, 4.1, 42.7, 37.6, 0.0, 0.0, 6.6, 51.1, 48.9 -1,1,a-cure-i1,2018-19,2.7,53.3,Leominster - Johnny Appleseed,01530025, 11.0, 3.9, 33.6, 46.7, 0.3, 0.0, 4.5, 49.3, 50.7 -7.038696537678208,5,a-cure-i1,2018-19,21.6,49.1,Leominster - Leominster Center for Excellence,01530515, 5.3, 1.8, 35.1, 50.9, 0.0, 0.0, 7.0, 43.9, 56.1 -1,1,a-cure-i1,2018-19,4.5,46.7,Leominster - Leominster High School,01530505, 10.7, 3.6, 29.6, 53.3, 0.3, 0.0, 2.5, 42.7, 57.3 -1,1,a-cure-i1,2018-19,0.0,46.2,Leominster - Lincoln School,01530005, 2.6, 12.8, 28.2, 53.8, 0.0, 0.0, 2.6, 59.0, 41.0 -1,1,a-cure-i1,2018-19,0.0,51.2,Leominster - Northwest,01530030, 4.6, 2.1, 38.4, 48.8, 0.0, 0.0, 6.1, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,59.4,Leominster - Priest Street,01530040, 8.4, 3.5, 44.1, 40.6, 0.0, 0.0, 3.5, 53.8, 46.2 -1,1,a-cure-i1,2018-19,2.8,44.5,Leominster - Samoset School,01530045, 5.8, 2.6, 32.8, 55.5, 0.2, 0.2, 2.8, 51.3, 48.5 -1.5139146567717996,1.51,a-cure-i1,2018-19,5.1,53.9,Leominster - Sky View Middle School,01530320, 9.2, 4.0, 37.2, 46.1, 0.0, 0.0, 3.5, 51.2, 48.8 -8.512820512820516,5,a-cure-i1,2018-19,8.3,15.599999999999994,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 5.9, 84.4, 0.0, 0.0, 9.6, 58.5, 41.5 -7.65079365079365,5,a-cure-i1,2018-19,24.099999999999998,50.4,Lexington - Bowman,01550008, 5.7, 32.2, 2.9, 49.6, 0.0, 0.0, 9.5, 52.9, 47.1 -1.9756521739130435,1.98,a-cure-i1,2018-19,7.1,57.5,Lexington - Bridge,01550006, 5.4, 43.1, 5.2, 42.5, 0.2, 0.0, 3.7, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.6,45.6,Lexington - Fiske,01550015, 2.9, 30.6, 3.3, 54.4, 0.0, 0.0, 8.8, 52.7, 47.3 -2.3225806451612905,2.32,a-cure-i1,2018-19,8.1,55.8,Lexington - Harrington,01550030, 4.3, 40.4, 4.1, 44.2, 0.4, 0.0, 6.7, 52.1, 47.9 -3.7122302158273377,3.71,a-cure-i1,2018-19,12.899999999999999,55.6,Lexington - Jonas Clarke Middle,01550305, 4.0, 42.2, 4.4, 44.4, 0.0, 0.0, 4.9, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.5,61.4,Lexington - Joseph Estabrook,01550010, 5.2, 41.9, 4.7, 38.6, 0.0, 0.0, 9.7, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,68.1,Lexington - Lexington Children's Place,01550001, 2.9, 49.3, 7.2, 31.9, 1.4, 0.0, 7.2, 63.8, 36.2 -2.7401574803149606,2.74,a-cure-i1,2018-19,8.7,50.8,Lexington - Lexington High,01550505, 3.7, 38.0, 3.7, 49.2, 0.1, 0.0, 5.3, 50.2, 49.8 -4.797319932998325,4.8,a-cure-i1,2018-19,17.9,59.7,Lexington - Maria Hastings,01550035, 1.8, 44.5, 4.4, 40.3, 0.0, 0.0, 9.0, 53.3, 46.7 -3.6221033868092696,3.62,a-cure-i1,2018-19,12.700000000000001,56.1,Lexington - Wm Diamond Middle,01550310, 3.4, 40.4, 3.8, 43.9, 0.0, 0.0, 8.6, 47.7, 52.3 -5.550356052899288,5,a-cure-i1,2018-19,34.1,98.3,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 12.4, 0.0, 84.8, 1.7, 0.0, 0.0, 1.1, 55.6, 44.4 -3.5732009925558317,3.57,a-cure-i1,2018-19,9.0,40.3,Lincoln - Hanscom Middle,01570305, 8.5, 1.4, 20.0, 59.7, 0.7, 0.7, 9.2, 48.8, 51.2 -2.031180400890869,2.03,a-cure-i1,2018-19,5.7,44.9,Lincoln - Hanscom Primary,01570006, 6.6, 2.0, 23.9, 55.1, 0.0, 0.7, 11.8, 48.5, 51.5 -4.0,4.0,a-cure-i1,2018-19,9.0,36.0,Lincoln - Lincoln School,01570025, 10.3, 5.6, 9.8, 64.0, 0.2, 0.0, 10.1, 50.8, 49.2 -5.465346534653466,5,a-cure-i1,2018-19,6.900000000000001,20.200000000000003,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 4.8, 6.2, 4.6, 79.8, 0.1, 0.1, 4.4, 52.8, 47.2 -5.859154929577463,5,a-cure-i1,2018-19,5.199999999999999,14.200000000000003,Littleton - Littleton High School,01580505, 0.2, 7.6, 2.2, 85.8, 0.4, 0.2, 3.6, 43.1, 56.7 -1,1,a-cure-i1,2018-19,0.0,14.599999999999994,Littleton - Littleton Middle School,01580305, 1.6, 6.0, 2.2, 85.4, 0.3, 0.0, 4.4, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,17.799999999999997,Littleton - Russell St Elementary,01580015, 1.8, 11.5, 1.8, 82.2, 0.3, 0.5, 2.0, 50.1, 49.9 -1,1,a-cure-i1,2018-19,4.1,14.299999999999997,Littleton - Shaker Lane Elementary,01580005, 0.2, 11.6, 0.9, 85.7, 0.0, 0.2, 1.4, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,29.200000000000003,Longmeadow - Blueberry Hill,01590005, 0.9, 18.5, 4.6, 70.8, 0.0, 0.5, 4.8, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,16.5,Longmeadow - Center,01590010, 2.6, 3.3, 5.7, 83.5, 0.0, 0.0, 4.8, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,27.099999999999994,Longmeadow - Glenbrook Middle,01590017, 3.8, 13.5, 6.2, 72.9, 0.0, 0.3, 3.2, 49.7, 50.3 -1,1,a-cure-i1,2018-19,3.1,18.099999999999994,Longmeadow - Longmeadow High,01590505, 2.5, 8.5, 4.1, 81.9, 0.1, 0.0, 2.9, 49.6, 50.4 -1,1,a-cure-i1,2018-19,4.7,16.599999999999994,Longmeadow - Williams Middle,01590305, 1.0, 7.6, 4.8, 83.4, 0.0, 0.0, 3.2, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,24.700000000000003,Longmeadow - Wolf Swamp Road,01590025, 3.9, 9.5, 6.4, 75.3, 0.0, 0.0, 4.9, 54.0, 46.0 -1.3454545454545455,1.35,a-cure-i1,2018-19,7.4,88.0,Lowell - Abraham Lincoln,01600020, 3.1, 49.9, 30.8, 12.0, 0.2, 0.0, 3.9, 54.0, 46.0 -1.358904109589041,1.36,a-cure-i1,2018-19,6.2,73.0,Lowell - B.F. Butler Middle School,01600310, 7.2, 26.3, 33.5, 27.0, 0.0, 0.0, 6.0, 48.9, 51.1 -1.7906137184115527,1.79,a-cure-i1,2018-19,9.3,83.1,Lowell - Bartlett Community Partnership,01600090, 8.2, 40.9, 31.0, 16.9, 0.2, 0.0, 2.7, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,80.8,Lowell - Cardinal O'Connell Early Learning Center,01600001, 6.7, 25.0, 45.2, 19.2, 0.0, 0.0, 3.8, 67.3, 32.7 -1,1,a-cure-i1,2018-19,3.6,82.8,Lowell - Charles W Morey,01600030, 4.9, 62.4, 10.8, 17.2, 0.4, 0.0, 4.3, 48.7, 51.3 -1,1,a-cure-i1,2018-19,0.0,85.7,Lowell - Charlotte M Murkland Elementary,01600080, 4.7, 42.8, 33.8, 14.3, 0.0, 0.0, 4.3, 55.0, 45.0 -1,1,a-cure-i1,2018-19,0.0,70.2,Lowell - Dr An Wang School,01600345, 7.6, 15.8, 42.0, 29.8, 0.0, 0.0, 4.8, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,68.7,Lowell - Dr Gertrude Bailey,01600002, 4.3, 38.0, 21.5, 31.3, 0.2, 0.0, 4.7, 53.3, 46.7 -2.2315202231520224,2.23,a-cure-i1,2018-19,10.0,71.7,Lowell - Dr. Janice Adie Day School,01600605, 17.4, 17.4, 32.6, 28.3, 0.0, 0.0, 4.3, 78.3, 21.7 -2.363885088919289,2.36,a-cure-i1,2018-19,10.8,73.1,Lowell - Greenhalge,01600015, 12.4, 13.5, 43.8, 26.9, 0.0, 0.2, 3.2, 52.8, 47.2 -1,1,a-cure-i1,2018-19,4.8,76.0,Lowell - Henry J Robinson Middle,01600330, 10.0, 16.8, 45.8, 24.0, 0.0, 0.0, 3.4, 50.0, 50.0 -1.2540540540540541,1.25,a-cure-i1,2018-19,5.8,74.0,Lowell - James S Daley Middle School,01600315, 4.2, 45.8, 19.0, 26.0, 0.0, 0.0, 5.0, 55.4, 44.6 -1,1,a-cure-i1,2018-19,3.5,70.0,Lowell - James Sullivan Middle School,01600340, 8.3, 15.6, 41.5, 30.0, 0.0, 0.0, 4.7, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,72.2,Lowell - John J Shaughnessy,01600050, 6.7, 27.6, 34.9, 27.8, 0.4, 0.0, 2.6, 49.5, 50.5 -1.5599472990777339,1.56,a-cure-i1,2018-19,7.4,75.9,Lowell - Joseph McAvinnue,01600010, 5.5, 17.7, 49.9, 24.1, 0.0, 0.0, 2.8, 51.2, 48.8 -2.1454545454545455,2.15,a-cure-i1,2018-19,11.8,88.0,Lowell - Kathryn P. Stoklosa Middle School,01600360, 5.0, 48.4, 30.7, 12.0, 0.0, 0.0, 3.9, 50.8, 49.2 -2.0,2.0,a-cure-i1,2018-19,7.5,60.0,Lowell - Laura Lee Therapeutic Day School,01600085, 15.0, 0.0, 45.0, 40.0, 0.0, 0.0, 0.0, 95.0, 5.0 -1,1,a-cure-i1,2018-19,0.0,74.3,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 8.6, 54.3, 25.7, 0.0, 0.0, 11.4, 65.7, 34.3 -2.418862690707351,2.42,a-cure-i1,2018-19,10.9,72.1,Lowell - Lowell High,01600505, 12.3, 30.6, 26.3, 27.9, 0.0, 0.0, 2.9, 49.2, 50.8 -3.437037037037037,3.44,a-cure-i1,2018-19,14.5,67.5,Lowell - Moody Elementary,01600027, 6.9, 17.7, 40.8, 32.5, 0.0, 0.0, 2.2, 46.6, 53.4 -1,1,a-cure-i1,2018-19,3.8,63.5,Lowell - Pawtucketville Memorial,01600036, 9.5, 23.2, 26.2, 36.5, 0.0, 0.0, 4.6, 53.0, 47.0 -2.786355475763016,2.79,a-cure-i1,2018-19,9.7,55.7,Lowell - Peter W Reilly,01600040, 2.1, 9.4, 39.8, 44.3, 0.0, 0.0, 4.3, 51.1, 48.9 -1.6842105263157896,1.68,a-cure-i1,2018-19,6.4,60.8,Lowell - Pyne Arts,01600018, 5.7, 12.1, 39.2, 39.2, 0.0, 0.0, 3.7, 52.6, 47.4 -1,1,a-cure-i1,2018-19,4.9,76.8,Lowell - Rogers STEM Academy,01600005, 9.3, 23.3, 39.4, 23.2, 0.0, 0.0, 4.7, 53.0, 47.0 -2.878048780487805,2.88,a-cure-i1,2018-19,11.8,65.6,Lowell - S Christa McAuliffe Elementary,01600075, 6.5, 8.3, 48.0, 34.4, 0.0, 0.0, 2.8, 48.2, 51.8 -1.1323722149410225,1.13,a-cure-i1,2018-19,5.4,76.3,Lowell - The Career Academy,01600515, 10.2, 15.3, 46.6, 23.7, 0.0, 0.0, 4.2, 66.9, 33.1 -1,1,a-cure-i1,2018-19,0.0,80.4,Lowell - Washington,01600055, 4.2, 46.3, 22.1, 19.6, 0.0, 0.0, 7.9, 57.1, 42.9 -2.8196037539103234,2.82,a-cure-i1,2018-19,16.900000000000002,95.9,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 25.2, 19.1, 47.7, 4.1, 0.0, 0.0, 3.8, 49.9, 50.0 -6.29137199434229,5,a-cure-i1,2018-19,27.799999999999997,70.7,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 3.7, 28.0, 34.1, 29.3, 0.0, 0.0, 4.9, 56.1, 43.9 -1,1,a-cure-i1,2018-19,0.0,19.400000000000006,Ludlow - Chapin Street Elementary School,01610020, 2.1, 0.3, 14.5, 80.6, 0.3, 0.0, 2.1, 51.5, 48.5 -1,1,a-cure-i1,2018-19,0.0,17.900000000000006,Ludlow - East Street Elementary School,01610010, 1.0, 1.0, 12.5, 82.1, 0.3, 0.0, 3.1, 51.3, 48.7 -1,1,a-cure-i1,2018-19,4.5,14.599999999999994,Ludlow - Ludlow Senior High,01610505, 2.6, 0.8, 8.1, 85.4, 0.2, 0.0, 2.9, 50.3, 49.5 -1,1,a-cure-i1,2018-19,1.3,14.799999999999997,Ludlow - Paul R Baird Middle,01610305, 2.3, 0.5, 9.3, 85.2, 0.7, 0.0, 2.0, 51.0, 49.0 -1,1,a-cure-i1,2018-19,1.7,19.900000000000006,Ludlow - Veterans Park Elementary,01610023, 1.3, 0.5, 14.3, 80.1, 0.8, 0.0, 3.0, 48.2, 51.8 -1,1,a-cure-i1,2018-19,0.0,12.5,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 87.5, 0.0, 0.0, 12.5, 50.0, 50.0 -1,1,a-cure-i1,2018-19,2.7,12.200000000000003,Lunenburg - Lunenburg High,01620505, 2.0, 3.1, 4.6, 87.8, 1.1, 0.7, 0.9, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.6,14.5,Lunenburg - Lunenburg Middle School,01620305, 1.5, 0.8, 9.4, 85.5, 0.5, 0.0, 2.3, 53.9, 46.1 -1,1,a-cure-i1,2018-19,0.0,15.099999999999994,Lunenburg - Lunenburg Primary School,01620010, 3.3, 1.9, 7.9, 84.9, 0.0, 0.0, 1.9, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,14.200000000000003,Lunenburg - Turkey Hill Elementary School,01620025, 1.3, 2.2, 6.7, 85.8, 0.0, 0.5, 3.5, 52.2, 47.8 -1.8793103448275863,1.88,a-cure-i1,2018-19,10.9,92.8,Lynn - A Drewicz Elementary,01630016, 7.0, 15.2, 67.5, 7.2, 0.4, 0.0, 2.6, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.7,71.5,Lynn - Aborn,01630011, 11.3, 9.4, 39.1, 28.5, 1.6, 0.0, 10.2, 48.4, 51.6 -2.3825887743413516,2.38,a-cure-i1,2018-19,13.0,87.3,Lynn - Breed Middle School,01630405, 9.0, 9.4, 65.4, 12.7, 0.1, 0.0, 3.3, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.6,85.5,Lynn - Brickett Elementary,01630020, 8.9, 11.0, 59.9, 14.5, 0.6, 0.0, 5.0, 54.3, 45.7 -1,1,a-cure-i1,2018-19,0.0,56.3,Lynn - Capt William G Shoemaker,01630090, 13.5, 6.3, 29.9, 43.7, 0.0, 0.0, 6.6, 59.4, 40.6 -2.391752577319588,2.39,a-cure-i1,2018-19,11.600000000000001,77.6,Lynn - Classical High,01630505, 9.3, 9.9, 55.5, 22.4, 0.4, 0.1, 2.5, 52.2, 47.8 -1.3388429752066118,1.34,a-cure-i1,2018-19,8.100000000000001,96.8,Lynn - Cobbet Elementary,01630035, 8.1, 5.1, 81.4, 3.2, 0.0, 0.0, 2.2, 54.1, 45.9 -1,1,a-cure-i1,2018-19,2.8,91.3,Lynn - E J Harrington,01630045, 8.7, 6.5, 72.9, 8.7, 0.0, 0.0, 3.2, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,89.4,Lynn - Early Childhood Center,01630004, 13.0, 8.6, 64.4, 10.6, 0.7, 0.0, 2.7, 59.9, 40.1 -1,1,a-cure-i1,2018-19,4.1,66.9,Lynn - Edward A Sisson,01630095, 6.3, 10.8, 43.2, 33.1, 1.4, 0.0, 5.2, 52.0, 48.0 -1.565217391304348,1.57,a-cure-i1,2018-19,7.2,73.6,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 9.9, 4.4, 50.5, 26.4, 1.1, 0.0, 7.7, 61.5, 38.5 -1,1,a-cure-i1,2018-19,4.4,84.8,Lynn - Hood,01630055, 8.0, 9.3, 64.8, 15.2, 0.2, 0.0, 2.5, 48.9, 51.1 -1.0980392156862746,1.1,a-cure-i1,2018-19,6.3,91.8,Lynn - Ingalls,01630060, 10.4, 8.2, 70.0, 8.2, 0.5, 0.2, 2.5, 51.7, 48.3 -1.4265060240963856,1.43,a-cure-i1,2018-19,7.4,83.0,Lynn - Julia F Callahan,01630030, 15.9, 7.3, 53.9, 17.0, 0.0, 0.0, 5.9, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,78.5,Lynn - Lincoln-Thomson,01630070, 5.9, 8.0, 57.4, 21.5, 0.0, 0.0, 7.2, 54.0, 45.6 -2.383371824480369,2.38,a-cure-i1,2018-19,12.899999999999999,86.6,Lynn - Lynn English High,01630510, 10.0, 8.7, 65.1, 13.4, 0.4, 0.0, 2.4, 53.8, 46.2 -3.20372526193248,3.2,a-cure-i1,2018-19,17.200000000000003,85.9,Lynn - Lynn Vocational Technical Institute,01630605, 7.2, 6.1, 68.8, 14.1, 0.4, 0.0, 3.4, 56.7, 43.2 -4.773892773892774,4.77,a-cure-i1,2018-19,12.8,42.9,Lynn - Lynn Woods,01630075, 2.3, 4.5, 25.4, 57.1, 1.1, 0.0, 9.6, 46.3, 53.7 -2.2358078602620086,2.24,a-cure-i1,2018-19,9.6,68.7,Lynn - Pickering Middle,01630420, 7.7, 9.7, 45.0, 31.3, 0.6, 0.0, 5.7, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.4,93.6,Lynn - Robert L Ford,01630050, 7.6, 8.0, 74.5, 6.4, 0.2, 0.0, 3.3, 49.4, 50.6 -1,1,a-cure-i1,2018-19,4.5,69.4,Lynn - Sewell-Anderson,01630085, 9.6, 5.7, 49.5, 30.6, 0.7, 0.0, 3.9, 54.1, 45.9 -1.4945054945054945,1.49,a-cure-i1,2018-19,8.5,91.0,Lynn - Thurgood Marshall Mid,01630305, 10.6, 7.0, 70.8, 9.0, 0.1, 0.0, 2.6, 50.2, 49.8 -1,1,a-cure-i1,2018-19,2.5,91.8,Lynn - Tracy,01630100, 10.3, 6.8, 70.5, 8.2, 0.0, 0.0, 4.2, 48.5, 51.5 -1,1,a-cure-i1,2018-19,4.0,95.8,Lynn - Washington Elementary School,01630005, 13.3, 6.0, 73.3, 4.2, 0.0, 0.0, 3.1, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,78.7,Lynn - William R Fallon,01630080, 6.4, 4.3, 66.0, 21.3, 0.0, 0.0, 2.1, 87.2, 12.8 -1.7435897435897436,1.74,a-cure-i1,2018-19,10.2,93.6,Lynn - Wm P Connery,01630040, 5.7, 12.2, 73.5, 6.4, 0.2, 0.0, 2.1, 48.7, 51.3 -1,1,a-cure-i1,2018-19,0.0,22.799999999999997,Lynnfield - Huckleberry Hill,01640010, 2.1, 8.8, 6.5, 77.2, 0.0, 0.0, 5.5, 44.0, 56.0 -1,1,a-cure-i1,2018-19,2.3,10.799999999999997,Lynnfield - Lynnfield High,01640505, 1.7, 4.0, 3.5, 89.2, 0.0, 0.0, 1.6, 47.4, 52.6 -1,1,a-cure-i1,2018-19,0.0,17.0,Lynnfield - Lynnfield Middle School,01640405, 1.7, 7.2, 6.2, 83.0, 0.0, 0.0, 2.0, 53.9, 46.1 -1,1,a-cure-i1,2018-19,0.0,19.0,Lynnfield - Lynnfield Preschool,01640005, 2.4, 2.4, 2.4, 81.0, 0.0, 0.0, 11.9, 57.1, 42.9 -1,1,a-cure-i1,2018-19,0.0,13.700000000000003,Lynnfield - Summer Street,01640020, 1.4, 4.9, 5.6, 86.3, 0.0, 0.0, 1.9, 52.8, 47.2 -4.155520995334371,4.16,a-cure-i1,2018-19,16.7,64.3,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 2.0, 50.0, 4.1, 35.7, 0.0, 0.0, 8.2, 53.1, 46.9 -1.4439592430858803,1.44,a-cure-i1,2018-19,6.199999999999999,68.7,Malden - Beebe,01650003, 13.6, 37.0, 13.7, 31.3, 0.0, 0.1, 4.2, 50.9, 49.1 -1,1,a-cure-i1,2018-19,2.3,76.7,Malden - Ferryway,01650013, 19.0, 19.0, 33.0, 23.3, 0.1, 0.0, 5.7, 50.7, 49.3 -1,1,a-cure-i1,2018-19,3.7,59.4,Malden - Forestdale,01650027, 17.5, 10.0, 25.8, 40.6, 0.0, 0.2, 5.9, 53.5, 46.5 -1,1,a-cure-i1,2018-19,2.3,66.0,Malden - Linden,01650047, 20.2, 24.2, 16.1, 34.0, 0.4, 0.0, 5.3, 51.2, 48.7 -1,1,a-cure-i1,2018-19,0.0,64.9,Malden - Malden Early Learning Center,01650049, 15.7, 36.1, 7.8, 35.1, 0.0, 0.0, 5.3, 60.8, 39.2 -3.0067114093959733,3.01,a-cure-i1,2018-19,14.0,74.5,Malden - Malden High,01650505, 21.9, 23.0, 26.3, 25.5, 0.2, 0.1, 3.0, 51.4, 48.6 -2.069857697283312,2.07,a-cure-i1,2018-19,10.0,77.3,Malden - Salemwood,01650057, 20.9, 18.6, 34.7, 22.7, 0.0, 0.0, 3.2, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,4.5,Manchester Essex Regional - Essex Elementary,06980020, 0.9, 0.0, 1.8, 95.5, 0.0, 0.0, 1.8, 51.8, 48.2 -1,1,a-cure-i1,2018-19,2.3,3.799999999999997,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.5, 1.7, 96.2, 0.0, 0.0, 0.6, 44.6, 55.4 -21.46341463414637,5,a-cure-i1,2018-19,5.5,4.099999999999994,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.6, 0.8, 95.9, 0.0, 0.0, 1.6, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,3.4000000000000057,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 1.8, 0.0, 0.9, 96.6, 0.0, 0.0, 0.6, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,22.599999999999994,Mansfield - Everett W Robinson,01670007, 4.0, 7.5, 5.1, 77.4, 0.1, 0.0, 5.8, 52.9, 47.1 -1,1,a-cure-i1,2018-19,2.6,17.700000000000003,Mansfield - Harold L Qualters Middle,01670035, 3.2, 6.2, 5.1, 82.3, 0.1, 0.0, 3.1, 52.4, 47.6 -1,1,a-cure-i1,2018-19,3.8,21.400000000000006,Mansfield - Jordan/Jackson Elementary,01670014, 3.5, 7.9, 5.5, 78.6, 0.0, 0.0, 4.4, 54.1, 45.9 -7.263157894736841,5,a-cure-i1,2018-19,6.9,15.200000000000003,Mansfield - Mansfield High,01670505, 3.8, 5.1, 3.3, 84.8, 0.0, 0.1, 2.9, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,23.700000000000003,Mansfield - Roland Green School,01670003, 2.6, 9.6, 7.9, 76.3, 0.0, 0.0, 3.5, 60.5, 39.5 -9.812154696132595,5,a-cure-i1,2018-19,22.2,36.2,Map Academy Charter School (District) - Map Academy Charter School,35170505, 7.7, 0.0, 20.0, 63.8, 0.8, 1.5, 6.2, 63.1, 36.9 -1,1,a-cure-i1,2018-19,0.0,11.599999999999994,Marblehead - Glover,01680020, 1.9, 0.8, 4.1, 88.4, 0.0, 0.0, 4.9, 53.5, 46.5 -1,1,a-cure-i1,2018-19,4.4,16.700000000000003,Marblehead - L H Coffin,01680010, 0.9, 1.4, 9.3, 83.3, 0.0, 0.5, 4.6, 53.2, 46.8 -1,1,a-cure-i1,2018-19,1.1,17.799999999999997,Marblehead - Malcolm L Bell,01680005, 2.0, 1.7, 9.6, 82.2, 0.0, 0.0, 4.6, 52.1, 47.9 -7.458646616541356,5,a-cure-i1,2018-19,6.2,13.299999999999997,Marblehead - Marblehead High,01680505, 2.6, 1.9, 6.5, 86.7, 0.1, 0.0, 2.2, 47.7, 52.3 -1,1,a-cure-i1,2018-19,2.4,15.0,Marblehead - Marblehead Veterans Middle School,01680300, 4.5, 1.3, 6.9, 85.0, 0.4, 0.0, 1.9, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,15.900000000000006,Marblehead - Village School,01680016, 3.3, 1.7, 7.2, 84.1, 0.0, 0.0, 3.7, 53.4, 46.6 -1,1,a-cure-i1,2018-19,0.0,15.0,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 6.2, 2.7, 3.1, 85.0, 0.9, 0.0, 2.2, 55.3, 44.7 -1,1,a-cure-i1,2018-19,0.0,13.0,Marion - Sippican,01690005, 3.1, 1.3, 2.9, 87.0, 0.4, 0.0, 5.1, 53.9, 46.1 -1.3661740558292284,1.37,a-cure-i1,2018-19,5.2,60.9,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 3.3, 2.4, 52.2, 39.1, 0.1, 0.0, 2.9, 52.1, 47.9 -1,1,a-cure-i1,2018-19,2.0,53.4,Marlborough - Charles Jaworek School,01700030, 3.3, 7.6, 40.4, 46.6, 0.3, 0.0, 1.8, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,48.0,Marlborough - Early Childhood Center,01700006, 6.9, 11.4, 24.0, 52.0, 0.0, 1.7, 4.0, 54.3, 45.7 -1,1,a-cure-i1,2018-19,0.0,55.4,Marlborough - Francis J Kane,01700008, 4.4, 2.9, 46.1, 44.6, 0.0, 0.0, 2.0, 49.8, 50.2 -1.5836177474402733,1.58,a-cure-i1,2018-19,5.800000000000001,58.6,Marlborough - Marlborough High,01700505, 3.6, 1.8, 50.8, 41.4, 0.1, 0.0, 2.3, 52.7, 47.3 -1,1,a-cure-i1,2018-19,2.5,68.1,Marlborough - Richer,01700025, 2.8, 2.4, 59.1, 31.9, 0.0, 0.0, 3.8, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,9.299999999999997,Marshfield - Daniel Webster,01710015, 0.5, 1.9, 3.8, 90.7, 0.5, 1.1, 1.4, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,2.5,Marshfield - Eames Way School,01710005, 0.0, 0.0, 1.2, 97.5, 0.0, 0.0, 1.2, 61.2, 38.8 -1,1,a-cure-i1,2018-19,1.6,5.799999999999997,Marshfield - Furnace Brook Middle,01710310, 0.5, 1.0, 2.1, 94.2, 0.2, 0.1, 1.9, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,5.099999999999994,Marshfield - Gov Edward Winslow,01710020, 0.2, 0.5, 3.4, 94.9, 0.0, 0.0, 1.0, 49.6, 50.4 -1,1,a-cure-i1,2018-19,2.1,5.799999999999997,Marshfield - Marshfield High,01710505, 0.5, 1.3, 2.9, 94.2, 0.1, 0.1, 1.0, 50.3, 49.7 -1,1,a-cure-i1,2018-19,4.1,10.900000000000006,Marshfield - Martinson Elementary,01710025, 0.7, 2.4, 4.7, 89.1, 0.0, 0.0, 3.1, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,7.400000000000006,Marshfield - South River,01710010, 0.0, 0.3, 3.1, 92.6, 0.0, 0.0, 4.0, 50.6, 49.4 -1,1,a-cure-i1,2018-19,3.5,28.200000000000003,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 4.8, 1.1, 15.7, 71.8, 2.5, 0.6, 3.4, 55.1, 44.7 -1,1,a-cure-i1,2018-19,4.5,26.400000000000006,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.7, 0.5, 12.1, 73.6, 2.2, 0.0, 8.8, 45.1, 54.9 -5.480122324159021,5,a-cure-i1,2018-19,33.599999999999994,98.1,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 34.7, 1.1, 58.3, 1.9, 0.0, 0.0, 4.0, 49.2, 50.8 -1,1,a-cure-i1,2018-19,1.4,9.5,Masconomet - Masconomet Regional High School,07050505, 0.4, 3.9, 2.5, 90.5, 0.3, 0.2, 2.1, 47.2, 52.8 -10.341463414634145,5,a-cure-i1,2018-19,5.300000000000001,8.200000000000003,Masconomet - Masconomet Regional Middle School,07050405, 0.3, 3.4, 2.3, 91.8, 0.0, 0.0, 2.2, 49.0, 51.0 -1,1,a-cure-i1,2018-19,0.0,31.599999999999994,Mashpee - Kenneth Coombs School,01720005, 3.7, 2.2, 7.4, 68.4, 4.7, 0.5, 13.2, 54.2, 45.8 -1,1,a-cure-i1,2018-19,0.9,24.400000000000006,Mashpee - Mashpee High,01720505, 5.3, 2.6, 4.8, 75.6, 5.9, 0.2, 5.5, 53.1, 46.9 -1,1,a-cure-i1,2018-19,3.2,22.700000000000003,Mashpee - Mashpee Middle School,01720020, 5.6, 2.8, 1.6, 77.3, 7.6, 0.0, 5.2, 49.8, 50.2 -1,1,a-cure-i1,2018-19,0.0,24.900000000000006,Mashpee - Quashnet School,01720035, 3.4, 1.6, 5.0, 75.1, 6.8, 0.0, 8.2, 48.3, 51.7 -5.257142857142856,5,a-cure-i1,2018-19,32.199999999999996,98.0,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 46.3, 0.6, 48.4, 2.0, 0.5, 0.2, 2.1, 47.2, 52.8 -1,1,a-cure-i1,2018-19,0.0,13.299999999999997,Mattapoisett - Center,01730005, 0.4, 1.2, 5.6, 86.7, 0.0, 0.0, 6.0, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,8.900000000000006,Mattapoisett - Old Hammondtown,01730010, 1.0, 2.1, 2.6, 91.1, 0.0, 0.0, 3.1, 53.6, 46.4 -9.464788732394368,5,a-cure-i1,2018-19,12.6,21.299999999999997,Maynard - Fowler School,01740305, 2.9, 1.7, 11.4, 78.7, 0.0, 0.0, 5.4, 50.2, 49.8 -9.98165137614679,5,a-cure-i1,2018-19,13.6,21.799999999999997,Maynard - Green Meadow,01740010, 2.2, 1.2, 13.2, 78.2, 0.0, 0.0, 5.1, 53.6, 46.4 -1,1,a-cure-i1,2018-19,0.0,20.799999999999997,Maynard - Maynard High,01740505, 2.7, 3.5, 10.9, 79.2, 0.3, 0.0, 3.5, 48.0, 52.0 -1,1,a-cure-i1,2018-19,2.6,14.599999999999994,Medfield - Dale Street,01750005, 0.8, 3.2, 7.2, 85.4, 0.8, 0.0, 2.7, 55.2, 44.8 -1,1,a-cure-i1,2018-19,3.2,11.5,Medfield - Medfield Senior High,01750505, 0.9, 5.5, 2.3, 88.5, 0.0, 0.0, 2.9, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,10.400000000000006,Medfield - Memorial School,01750003, 1.2, 2.6, 3.1, 89.6, 0.5, 0.0, 3.1, 48.5, 51.5 -1,1,a-cure-i1,2018-19,1.7,13.900000000000006,Medfield - Ralph Wheelock School,01750007, 1.2, 4.2, 5.0, 86.1, 0.0, 0.0, 3.5, 53.1, 46.9 -1,1,a-cure-i1,2018-19,4.6,13.900000000000006,Medfield - Thomas Blake Middle,01750305, 1.0, 4.3, 3.8, 86.1, 0.5, 0.0, 4.2, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,27.5,Medford - Brooks School,01760130, 7.4, 4.6, 9.1, 72.5, 0.4, 0.0, 6.0, 51.8, 48.2 -1,1,a-cure-i1,2018-19,4.9,46.9,Medford - Christopher Columbus,01760140, 15.8, 5.4, 19.3, 53.1, 0.7, 0.0, 5.7, 55.8, 44.2 -1,1,a-cure-i1,2018-19,0.0,21.400000000000006,Medford - Curtis-Tufts,01760510, 7.1, 0.0, 14.3, 78.6, 0.0, 0.0, 0.0, 57.1, 42.9 -1,1,a-cure-i1,2018-19,3.8,51.2,Medford - John J McGlynn Elementary School,01760068, 13.3, 15.9, 14.4, 48.8, 1.1, 0.2, 6.3, 46.1, 53.9 -1.7313432835820897,1.73,a-cure-i1,2018-19,5.800000000000001,53.6,Medford - John J. McGlynn Middle School,01760320, 19.4, 12.7, 17.6, 46.4, 0.0, 0.2, 3.6, 51.3, 48.7 -1,1,a-cure-i1,2018-19,2.8,26.299999999999997,Medford - Madeleine Dugger Andrews,01760315, 7.6, 5.5, 7.2, 73.7, 0.2, 0.0, 5.7, 54.7, 45.3 -1,1,a-cure-i1,2018-19,4.4,41.2,Medford - Medford High,01760505, 14.5, 10.5, 12.2, 58.8, 0.1, 0.1, 3.7, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,38.4,Medford - Milton Fuller Roberts,01760150, 10.3, 10.7, 11.9, 61.6, 1.1, 0.0, 4.4, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,8.900000000000006,Medway - Burke/Memorial Elementary School,01770015, 2.0, 1.6, 3.0, 91.1, 0.0, 0.0, 2.2, 49.4, 50.6 -1,1,a-cure-i1,2018-19,0.0,8.5,Medway - John D Mc Govern Elementary,01770013, 0.3, 2.1, 3.7, 91.5, 0.0, 0.3, 2.1, 54.6, 45.4 -10.621848739495794,5,a-cure-i1,2018-19,7.9,11.900000000000006,Medway - Medway High,01770505, 1.7, 4.1, 4.1, 88.1, 0.1, 0.1, 1.7, 50.7, 49.3 -1,1,a-cure-i1,2018-19,0.0,11.799999999999997,Medway - Medway Middle,01770305, 1.6, 2.7, 4.5, 88.2, 0.1, 0.0, 2.9, 46.4, 53.6 -1,1,a-cure-i1,2018-19,0.0,19.099999999999994,Melrose - Early Childhood Center,01780003, 2.2, 5.0, 5.0, 80.9, 0.0, 0.0, 6.9, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,24.099999999999994,Melrose - Herbert Clark Hoover,01780017, 4.5, 9.3, 6.2, 75.9, 0.0, 0.0, 4.1, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,11.200000000000003,Melrose - Horace Mann,01780025, 2.2, 1.1, 2.5, 88.8, 0.0, 0.0, 5.4, 45.1, 54.9 -1,1,a-cure-i1,2018-19,0.0,38.2,Melrose - Lincoln,01780020, 6.3, 13.3, 9.8, 61.8, 0.0, 0.0, 8.9, 47.3, 52.7 -1,1,a-cure-i1,2018-19,4.2,18.5,Melrose - Melrose High,01780505, 6.4, 4.6, 3.9, 81.5, 0.0, 0.0, 3.6, 46.4, 53.6 -1,1,a-cure-i1,2018-19,4.2,20.599999999999994,Melrose - Melrose Middle,01780305, 7.3, 4.7, 4.8, 79.4, 0.0, 0.0, 3.8, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,20.299999999999997,Melrose - Roosevelt,01780035, 4.5, 6.2, 4.1, 79.7, 0.0, 0.0, 5.5, 51.1, 48.9 -1,1,a-cure-i1,2018-19,4.5,16.5,Melrose - Winthrop,01780050, 4.1, 3.9, 3.4, 83.5, 0.0, 0.0, 5.1, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,3.0,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.3, 2.2, 97.0, 0.0, 0.0, 0.5, 48.1, 51.9 -20.771929824561393,5,a-cure-i1,2018-19,14.8,11.400000000000006,Mendon-Upton - Memorial School,07100001, 0.2, 3.9, 4.3, 88.6, 0.0, 0.0, 2.9, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.0,11.200000000000003,Mendon-Upton - Miscoe Hill School,07100015, 0.1, 2.6, 5.2, 88.8, 0.0, 0.0, 3.3, 52.2, 47.8 -1,1,a-cure-i1,2018-19,2.5,9.700000000000003,Mendon-Upton - Nipmuc Regional High,07100510, 1.5, 1.5, 4.3, 90.3, 0.3, 0.0, 2.1, 46.4, 53.6 -1,1,a-cure-i1,2018-19,0.0,47.2,Methuen - Comprehensive Grammar School,01810050, 2.8, 5.1, 35.5, 52.8, 0.1, 0.0, 3.6, 49.1, 50.9 -1,1,a-cure-i1,2018-19,1.5,60.7,Methuen - Donald P Timony Grammar,01810060, 2.7, 3.6, 49.3, 39.3, 0.1, 0.1, 4.9, 54.1, 45.9 -1,1,a-cure-i1,2018-19,1.5,40.2,Methuen - Marsh Grammar School,01810030, 1.3, 3.4, 31.0, 59.8, 0.0, 0.2, 4.2, 51.7, 48.3 -1,1,a-cure-i1,2018-19,2.3,48.0,Methuen - Methuen High,01810505, 1.3, 4.0, 37.3, 52.0, 0.2, 0.2, 5.1, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,63.7,Methuen - Tenney Grammar School,01810055, 2.2, 3.4, 52.6, 36.3, 0.0, 0.0, 5.4, 53.9, 46.1 -1,1,a-cure-i1,2018-19,0.0,11.5,Middleborough - Henry B. Burkland Elementary School,01820008, 1.5, 1.1, 2.4, 88.5, 0.4, 0.2, 6.0, 54.7, 45.3 -1,1,a-cure-i1,2018-19,0.0,13.599999999999994,Middleborough - John T. Nichols Middle,01820305, 2.9, 1.7, 3.4, 86.4, 1.7, 0.0, 3.9, 49.9, 50.1 -1,1,a-cure-i1,2018-19,3.0,9.299999999999997,Middleborough - Mary K. Goode Elementary School,01820010, 2.9, 0.3, 2.6, 90.7, 0.3, 0.0, 3.1, 48.8, 51.2 -1,1,a-cure-i1,2018-19,0.0,8.900000000000006,Middleborough - Memorial Early Childhood Center,01820011, 1.2, 1.9, 2.3, 91.1, 0.4, 0.0, 3.1, 55.6, 44.4 -1,1,a-cure-i1,2018-19,1.8,11.599999999999994,Middleborough - Middleborough High,01820505, 2.7, 0.9, 3.9, 88.4, 1.2, 0.0, 2.9, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,15.700000000000003,Middleton - Fuller Meadow,01840003, 1.1, 5.2, 4.9, 84.3, 0.7, 0.0, 3.7, 47.8, 52.2 -1,1,a-cure-i1,2018-19,0.0,12.5,Middleton - Howe-Manning,01840005, 0.5, 4.4, 2.5, 87.5, 1.2, 0.2, 3.7, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,39.1,Milford - Brookside,01850065, 4.5, 0.9, 30.4, 60.9, 0.2, 0.2, 3.0, 52.3, 47.7 -1,1,a-cure-i1,2018-19,3.2,40.7,Milford - Memorial,01850010, 2.0, 1.6, 32.7, 59.3, 0.4, 0.0, 4.0, 50.9, 49.1 -3.235457063711911,3.24,a-cure-i1,2018-19,7.3,36.1,Milford - Milford High,01850505, 2.6, 2.3, 26.2, 63.9, 1.8, 0.0, 3.1, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,24.799999999999997,Milford - Shining Star Early Childhood Center,01850075, 1.2, 2.5, 20.5, 75.2, 0.0, 0.0, 0.6, 54.0, 45.3 -1,1,a-cure-i1,2018-19,3.0,39.6,Milford - Stacy Middle,01850305, 2.5, 2.3, 29.2, 60.4, 2.2, 0.0, 3.4, 53.4, 46.6 -1.9662650602409637,1.97,a-cure-i1,2018-19,5.1,41.5,Milford - Woodland,01850090, 3.7, 2.4, 28.7, 58.5, 1.9, 0.1, 4.6, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.0,17.0,Millbury - Elmwood Street,01860017, 2.2, 3.8, 5.5, 83.0, 0.0, 0.0, 5.5, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.9,17.900000000000006,Millbury - Millbury Junior/Senior High,01860505, 3.4, 2.1, 9.1, 82.1, 0.0, 0.0, 3.3, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,22.299999999999997,Millbury - Raymond E. Shaw Elementary,01860025, 2.7, 5.0, 7.2, 77.7, 0.0, 0.2, 7.2, 49.0, 51.0 -1,1,a-cure-i1,2018-19,0.0,15.299999999999997,Millis - Clyde F Brown,01870005, 0.8, 1.2, 7.7, 84.7, 0.4, 0.0, 5.1, 48.3, 51.7 -1,1,a-cure-i1,2018-19,3.6,12.599999999999994,Millis - Millis High School,01870505, 1.4, 3.4, 6.2, 87.4, 0.3, 0.3, 1.1, 50.3, 49.7 -4.950276243093924,4.95,a-cure-i1,2018-19,5.6,18.099999999999994,Millis - Millis Middle,01870020, 1.1, 2.4, 9.8, 81.9, 0.0, 0.0, 4.8, 51.3, 48.7 -6.07457627118644,5,a-cure-i1,2018-19,11.2,29.5,Milton - Charles S Pierce Middle,01890410, 15.5, 6.3, 4.8, 70.5, 0.0, 0.1, 2.8, 48.9, 51.1 -12.851063829787236,5,a-cure-i1,2018-19,15.1,18.799999999999997,Milton - Collicot,01890005, 3.0, 8.7, 3.0, 81.2, 0.0, 0.2, 4.0, 54.0, 46.0 -1,1,a-cure-i1,2018-19,2.6,23.0,Milton - Cunningham School,01890007, 5.5, 10.0, 3.7, 77.0, 0.3, 0.0, 3.5, 47.8, 52.2 -11.106796116504857,5,a-cure-i1,2018-19,14.299999999999999,20.599999999999994,Milton - Glover,01890010, 6.7, 4.0, 3.2, 79.4, 0.2, 0.0, 6.5, 49.8, 50.2 -4.971751412429378,4.97,a-cure-i1,2018-19,11.0,35.400000000000006,Milton - Milton High,01890505, 18.5, 6.6, 5.8, 64.6, 0.2, 0.3, 4.1, 50.0, 49.9 -5.961783439490445,5,a-cure-i1,2018-19,23.4,62.8,Milton - Tucker,01890020, 40.2, 8.4, 4.8, 37.2, 0.0, 0.0, 9.4, 50.9, 49.1 -1,1,a-cure-i1,2018-19,2.4000000000000004,20.799999999999997,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 3.3, 5.4, 7.2, 79.2, 0.2, 0.0, 4.7, 63.5, 36.1 -1,1,a-cure-i1,2018-19,0.0,9.099999999999994,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.3, 0.3, 5.2, 90.9, 0.0, 0.0, 3.1, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,7.5,Mohawk Trail - Colrain Central,07170010, 1.9, 0.0, 5.7, 92.5, 0.0, 0.0, 0.0, 49.1, 50.9 -1,1,a-cure-i1,2018-19,1.9,9.099999999999994,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.3, 0.9, 4.0, 90.9, 0.0, 0.0, 4.0, 45.7, 54.0 -1,1,a-cure-i1,2018-19,0.0,6.900000000000006,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 3.8, 93.1, 0.6, 0.6, 1.9, 54.1, 45.9 -1,1,a-cure-i1,2018-19,0.0,21.0,Monomoy Regional School District - Chatham Elementary School,07120001, 6.6, 1.7, 8.7, 79.0, 0.0, 0.4, 3.5, 45.9, 54.1 -1,1,a-cure-i1,2018-19,0.0,22.700000000000003,Monomoy Regional School District - Harwich Elementary School,07120002, 4.7, 1.3, 7.7, 77.3, 0.7, 0.0, 8.3, 53.8, 46.2 -4.979591836734696,4.98,a-cure-i1,2018-19,6.1000000000000005,19.599999999999994,Monomoy Regional School District - Monomoy Regional High School,07120515, 7.3, 1.7, 5.5, 80.4, 0.6, 0.2, 4.4, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,23.299999999999997,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 7.8, 1.1, 8.4, 76.7, 0.6, 0.4, 5.0, 50.6, 49.4 -1,1,a-cure-i1,2018-19,4.6,11.200000000000003,Monson - Granite Valley Middle,01910310, 0.8, 2.4, 4.8, 88.8, 0.4, 0.8, 2.0, 49.0, 51.0 -1,1,a-cure-i1,2018-19,0.0,6.400000000000006,Monson - Monson High School,01910505, 1.1, 0.4, 1.5, 93.6, 0.0, 0.8, 2.7, 49.6, 50.4 -1,1,a-cure-i1,2018-19,3.7,8.200000000000003,Monson - Quarry Hill Community School,01910025, 0.7, 0.7, 4.5, 91.8, 0.0, 0.2, 2.0, 49.3, 50.7 -1,1,a-cure-i1,2018-19,4.5,23.599999999999994,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 2.0, 1.5, 16.2, 76.4, 0.1, 0.0, 3.8, 50.4, 49.1 -1,1,a-cure-i1,2018-19,0.0,6.200000000000003,Mount Greylock - Lanesborough Elementary,07150005, 2.4, 0.5, 1.9, 93.8, 0.0, 0.0, 1.4, 46.6, 53.4 -1,1,a-cure-i1,2018-19,4.5,10.099999999999994,Mount Greylock - Mt Greylock Regional High,07150505, 1.6, 2.2, 2.7, 89.9, 0.0, 0.0, 3.6, 46.2, 53.8 -1,1,a-cure-i1,2018-19,3.2,12.200000000000003,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 5.5, 87.8, 0.0, 0.0, 6.7, 54.4, 45.6 -2.5199240986717264,2.52,a-cure-i1,2018-19,8.299999999999999,52.7,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 17.8, 21.1, 9.3, 47.3, 0.3, 0.0, 4.3, 49.4, 50.6 -1,1,a-cure-i1,2018-19,0.0,7.299999999999997,Nahant - Johnson,01960010, 0.0, 0.7, 4.6, 92.7, 0.0, 0.0, 2.0, 48.3, 51.7 -3.0125523012552304,3.01,a-cure-i1,2018-19,9.0,47.8,Nantucket - Cyrus Peirce,01970010, 10.8, 1.8, 31.5, 52.2, 0.0, 0.0, 3.7, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,54.0,Nantucket - Nantucket Elementary,01970005, 6.3, 2.1, 41.0, 46.0, 0.0, 0.0, 4.5, 49.5, 50.3 -4.3999999999999995,4.4,a-cure-i1,2018-19,12.099999999999998,44.0,Nantucket - Nantucket High,01970505, 13.7, 1.9, 23.5, 56.0, 0.2, 0.0, 4.7, 52.8, 47.0 -1,1,a-cure-i1,2018-19,1.2,47.8,Nantucket - Nantucket Intermediate School,01970020, 9.5, 1.6, 34.0, 52.2, 0.0, 0.0, 2.6, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,11.099999999999994,Narragansett - Baldwinville Elementary,07200005, 1.8, 0.4, 5.0, 88.9, 0.0, 0.4, 3.6, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,10.299999999999997,Narragansett - Narragansett Middle,07200305, 1.0, 0.4, 5.2, 89.7, 0.2, 0.2, 3.1, 54.6, 45.4 -1,1,a-cure-i1,2018-19,3.8,11.400000000000006,Narragansett - Narragansett Regional High,07200505, 0.9, 0.3, 8.0, 88.6, 0.0, 0.0, 2.2, 51.5, 48.1 -1,1,a-cure-i1,2018-19,0.0,12.299999999999997,Narragansett - Phillipston Memorial,07200003, 2.5, 0.0, 5.6, 87.7, 0.0, 0.0, 4.3, 58.6, 41.4 -1,1,a-cure-i1,2018-19,0.0,10.400000000000006,Narragansett - Templeton Center,07200020, 0.5, 0.0, 6.6, 89.6, 0.0, 0.0, 3.3, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,13.299999999999997,Nashoba - Center School,07250020, 0.7, 3.6, 4.9, 86.7, 0.0, 0.0, 4.0, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,11.400000000000006,Nashoba - Florence Sawyer School,07250025, 0.3, 4.6, 2.9, 88.6, 0.0, 0.1, 3.5, 50.9, 49.1 -11.308270676691732,5,a-cure-i1,2018-19,9.4,13.299999999999997,Nashoba - Hale,07250310, 1.1, 5.4, 4.3, 86.7, 0.0, 0.0, 2.5, 50.2, 49.8 -6.111111111111109,5,a-cure-i1,2018-19,5.5,14.400000000000006,Nashoba - Luther Burbank Middle School,07250305, 1.6, 2.9, 7.8, 85.6, 0.0, 0.0, 2.1, 54.7, 45.3 -1,1,a-cure-i1,2018-19,0.0,15.799999999999997,Nashoba - Mary Rowlandson Elementary,07250010, 1.9, 0.9, 9.9, 84.2, 0.4, 0.0, 2.6, 51.4, 48.6 -1,1,a-cure-i1,2018-19,2.7,10.299999999999997,Nashoba - Nashoba Regional,07250505, 1.9, 2.6, 3.0, 89.7, 0.0, 0.2, 2.7, 47.8, 52.2 -8.072072072072075,5,a-cure-i1,2018-19,5.6,11.099999999999994,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.6, 1.8, 4.8, 88.9, 0.4, 0.0, 2.5, 61.4, 38.3 -4.462151394422312,4.46,a-cure-i1,2018-19,7.0,25.099999999999994,Natick - Bennett-Hemenway,01980005, 2.3, 12.2, 3.5, 74.9, 0.4, 0.2, 6.5, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,42.2,Natick - Brown,01980010, 0.8, 26.5, 8.9, 57.8, 0.4, 0.0, 5.5, 50.7, 49.3 -3.6239316239316235,3.62,a-cure-i1,2018-19,5.300000000000001,23.400000000000006,Natick - J F Kennedy Middle School,01980305, 1.4, 12.0, 6.4, 76.6, 0.0, 0.0, 3.6, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,21.599999999999994,Natick - Johnson,01980031, 0.8, 4.2, 8.5, 78.4, 0.0, 0.0, 8.1, 56.8, 43.2 -1,1,a-cure-i1,2018-19,3.7,27.799999999999997,Natick - Lilja Elementary,01980035, 2.8, 11.7, 7.6, 72.2, 0.0, 0.0, 5.7, 49.5, 50.5 -1,1,a-cure-i1,2018-19,0.0,17.5,Natick - Memorial,01980043, 1.2, 5.4, 4.5, 82.5, 0.0, 0.0, 6.4, 54.7, 45.3 -3.8371040723981915,3.84,a-cure-i1,2018-19,5.300000000000001,22.099999999999994,Natick - Natick High,01980505, 3.5, 7.7, 6.3, 77.9, 0.1, 0.1, 4.4, 50.1, 49.8 -1,1,a-cure-i1,2018-19,0.6,21.5,Natick - Wilson Middle,01980310, 4.4, 6.9, 4.5, 78.5, 0.1, 0.0, 5.6, 51.7, 48.3 -1,1,a-cure-i1,2018-19,4.0,15.5,Nauset - Nauset Regional High,06600505, 5.2, 2.7, 3.5, 84.5, 0.2, 0.1, 3.7, 45.4, 54.4 -1,1,a-cure-i1,2018-19,2.3,16.099999999999994,Nauset - Nauset Regional Middle,06600305, 4.7, 2.1, 6.1, 83.9, 0.2, 0.0, 3.0, 48.0, 51.8 -1,1,a-cure-i1,2018-19,4.0,21.900000000000006,Needham - Broadmeadow,01990005, 2.1, 7.8, 6.9, 78.1, 0.0, 0.0, 5.1, 48.4, 51.6 -1,1,a-cure-i1,2018-19,3.4,20.200000000000003,Needham - High Rock School,01990410, 2.0, 6.7, 6.2, 79.8, 0.0, 0.0, 5.3, 49.8, 50.2 -1,1,a-cure-i1,2018-19,4.4,27.5,Needham - Hillside Elementary,01990035, 3.4, 11.8, 5.6, 72.5, 0.2, 0.0, 6.6, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,32.099999999999994,Needham - John Eliot,01990020, 6.7, 12.9, 7.2, 67.9, 0.0, 0.0, 5.2, 54.7, 45.3 -7.093596059113302,5,a-cure-i1,2018-19,9.0,20.299999999999997,Needham - Needham High,01990505, 2.6, 8.7, 4.5, 79.7, 0.1, 0.0, 4.3, 49.8, 50.2 -3.288537549407115,3.29,a-cure-i1,2018-19,5.2,25.299999999999997,Needham - Newman Elementary,01990050, 4.5, 8.3, 5.8, 74.7, 0.0, 0.1, 6.5, 49.7, 50.3 -3.6428571428571415,3.64,a-cure-i1,2018-19,5.1,22.400000000000006,Needham - Pollard Middle,01990405, 1.9, 8.1, 7.5, 77.6, 0.0, 0.0, 4.9, 47.7, 52.3 -10.34254143646409,5,a-cure-i1,2018-19,11.7,18.099999999999994,Needham - William Mitchell,01990040, 1.6, 7.7, 4.2, 81.9, 0.0, 0.0, 4.6, 51.0, 49.0 -5.525872442839952,5,a-cure-i1,2018-19,28.7,83.1,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 53.4, 2.9, 21.5, 16.9, 0.5, 0.0, 4.8, 50.0, 50.0 -1,1,a-cure-i1,2018-19,2.8,49.6,New Bedford - Abraham Lincoln,02010095, 10.3, 0.9, 32.7, 50.4, 0.3, 0.1, 5.2, 52.6, 47.4 -1.8375870069605564,1.84,a-cure-i1,2018-19,9.899999999999999,86.2,New Bedford - Alfred J Gomes,02010063, 15.5, 0.4, 67.6, 13.8, 0.5, 0.0, 2.2, 51.7, 48.3 -1,1,a-cure-i1,2018-19,3.0,38.7,New Bedford - Betsey B Winslow,02010140, 8.9, 2.1, 18.8, 61.3, 0.4, 0.7, 7.8, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,76.3,New Bedford - Carlos Pacheco,02010105, 19.2, 0.9, 53.2, 23.7, 0.3, 0.0, 2.7, 55.3, 44.7 -3.846153846153846,3.85,a-cure-i1,2018-19,7.5,31.200000000000003,New Bedford - Casimir Pulaski,02010123, 7.3, 1.0, 17.8, 68.8, 0.1, 0.0, 5.0, 55.3, 44.7 -4.436578171091445,4.44,a-cure-i1,2018-19,9.4,33.900000000000006,New Bedford - Charles S Ashley,02010010, 5.5, 1.4, 22.8, 66.1, 0.0, 0.0, 4.2, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,54.6,New Bedford - Elizabeth Carter Brooks,02010015, 9.6, 1.0, 35.8, 45.4, 1.0, 0.0, 7.2, 53.9, 46.1 -3.318822023047376,3.32,a-cure-i1,2018-19,16.200000000000003,78.1,New Bedford - Ellen R Hathaway,02010075, 14.3, 2.2, 56.2, 21.9, 0.3, 0.3, 4.8, 49.8, 50.2 -1.7815845824411134,1.78,a-cure-i1,2018-19,5.2,46.7,New Bedford - Elwyn G Campbell,02010020, 7.8, 1.9, 30.7, 53.3, 0.4, 0.0, 5.9, 56.3, 43.7 -3.378238341968912,3.38,a-cure-i1,2018-19,16.3,77.2,New Bedford - Hayden/McFadden,02010078, 12.1, 0.3, 60.6, 22.8, 0.7, 0.0, 3.4, 51.1, 48.9 -1,1,a-cure-i1,2018-19,4.1,75.5,New Bedford - Irwin M. Jacobs Elementary School,02010070, 11.4, 0.0, 61.0, 24.5, 0.0, 0.0, 3.1, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,61.0,New Bedford - James B Congdon,02010040, 15.2, 0.6, 36.2, 39.0, 0.3, 0.3, 8.4, 47.4, 52.6 -1,1,a-cure-i1,2018-19,0.0,30.5,New Bedford - Jireh Swift,02010130, 6.1, 0.0, 16.8, 69.5, 0.0, 0.0, 7.6, 48.2, 51.8 -1.539967373572594,1.54,a-cure-i1,2018-19,5.9,61.3,New Bedford - John Avery Parker,02010115, 16.5, 0.4, 35.1, 38.7, 0.4, 0.4, 8.5, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,61.7,New Bedford - John B Devalles,02010050, 14.1, 0.8, 44.2, 38.3, 0.0, 0.0, 2.5, 46.2, 53.8 -1.9900497512437811,1.99,a-cure-i1,2018-19,7.5,60.3,New Bedford - Keith Middle School,02010405, 15.3, 1.4, 37.5, 39.7, 0.3, 0.2, 5.7, 51.7, 48.3 -3.0364963503649633,3.04,a-cure-i1,2018-19,13.0,68.5,New Bedford - New Bedford High,02010505, 17.3, 1.3, 44.4, 31.5, 0.6, 0.3, 4.6, 52.7, 47.3 -2.502970297029703,2.5,a-cure-i1,2018-19,7.8999999999999995,50.5,New Bedford - Normandin Middle School,02010410, 7.9, 1.2, 35.4, 49.5, 0.5, 0.0, 5.5, 52.5, 47.5 -2.644628099173554,2.64,a-cure-i1,2018-19,14.0,84.7,New Bedford - Renaissance Community Innovation School,02010124, 18.9, 0.0, 61.7, 15.3, 0.0, 0.0, 4.1, 43.9, 56.1 -3.664516129032258,3.66,a-cure-i1,2018-19,14.2,62.0,New Bedford - Roosevelt Middle School,02010415, 15.6, 0.0, 40.7, 38.0, 0.2, 0.1, 5.5, 50.8, 49.2 -2.3446054750402574,2.34,a-cure-i1,2018-19,9.1,62.1,New Bedford - Sgt Wm H Carney Academy,02010045, 17.8, 0.8, 34.3, 37.9, 0.0, 0.0, 9.2, 56.9, 43.1 -1,1,a-cure-i1,2018-19,0.0,50.0,New Bedford - Thomas R Rodman,02010125, 7.5, 1.0, 38.0, 50.0, 0.0, 0.0, 3.5, 56.5, 43.5 -4.653992395437262,4.65,a-cure-i1,2018-19,15.3,52.6,New Bedford - Trinity Day Academy,02010510, 8.4, 0.0, 35.8, 47.4, 0.0, 0.0, 8.4, 57.9, 42.1 -1.5937090432503276,1.59,a-cure-i1,2018-19,7.6,76.3,New Bedford - Whaling City Junior/Senior High School,02010515, 20.2, 0.9, 46.5, 23.7, 0.0, 0.0, 8.8, 77.2, 22.8 -1,1,a-cure-i1,2018-19,0.0,40.1,New Bedford - William H Taylor,02010135, 10.1, 0.0, 20.6, 59.9, 0.0, 0.0, 9.4, 50.9, 49.1 -3.1705822267620016,3.17,a-cure-i1,2018-19,19.4,97.9,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 89.5, 0.9, 7.0, 2.1, 0.2, 0.0, 0.4, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,14.099999999999994,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 6.0, 85.9, 0.0, 0.0, 8.1, 48.3, 51.7 -1,1,a-cure-i1,2018-19,0.0,5.5,Newburyport - Edward G. Molin Elementary School,02040030, 1.3, 1.9, 1.6, 94.5, 0.0, 0.0, 0.6, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,9.099999999999994,Newburyport - Francis T Bresnahan Elementary,02040005, 1.0, 1.5, 4.7, 90.9, 0.0, 0.0, 1.9, 49.5, 50.5 -1,1,a-cure-i1,2018-19,0.0,8.599999999999994,Newburyport - Newburyport High,02040505, 0.8, 2.2, 3.3, 91.4, 0.1, 0.0, 2.1, 47.4, 52.4 -12.387096774193552,5,a-cure-i1,2018-19,7.199999999999999,9.299999999999997,Newburyport - Rupert A Nock Middle,02040305, 1.1, 2.0, 3.7, 90.7, 0.0, 0.0, 2.6, 51.0, 49.0 -4.248275862068966,4.25,a-cure-i1,2018-19,7.7,29.0,Newton - A E Angier,02070005, 3.0, 14.7, 5.0, 71.0, 0.0, 0.0, 6.4, 47.9, 52.1 -3.4550128534704374,3.46,a-cure-i1,2018-19,8.4,38.9,Newton - Bigelow Middle,02070305, 5.0, 14.8, 12.0, 61.1, 0.2, 0.0, 7.0, 46.7, 53.3 -13.117782909930717,5,a-cure-i1,2018-19,35.5,43.3,Newton - Bowen,02070015, 6.3, 26.2, 5.0, 56.7, 0.0, 0.0, 5.8, 51.9, 48.1 -11.088036117381492,5,a-cure-i1,2018-19,30.700000000000003,44.3,Newton - C C Burr,02070020, 6.8, 19.3, 9.9, 55.7, 0.3, 0.0, 8.1, 52.6, 47.4 -4.59880239520958,4.6,a-cure-i1,2018-19,9.6,33.400000000000006,Newton - Cabot,02070025, 4.1, 15.3, 3.9, 66.6, 0.0, 0.0, 10.1, 49.0, 51.0 -1,1,a-cure-i1,2018-19,4.0,35.3,Newton - Charles E Brown Middle,02070310, 2.6, 20.2, 6.3, 64.7, 0.1, 0.0, 6.2, 49.5, 50.5 -1,1,a-cure-i1,2018-19,4.4,44.3,Newton - Countryside,02070040, 4.6, 24.9, 7.3, 55.7, 0.2, 0.0, 7.3, 49.9, 50.1 -2.823529411764706,2.82,a-cure-i1,2018-19,6.0,34.0,Newton - F A Day Middle,02070315, 4.2, 14.7, 8.9, 66.0, 0.2, 0.0, 6.0, 53.7, 46.3 -2.683544303797469,2.68,a-cure-i1,2018-19,5.3,31.599999999999994,Newton - Franklin,02070055, 2.8, 13.3, 7.7, 68.4, 0.2, 0.7, 6.8, 42.4, 57.6 -8.288659793814432,5,a-cure-i1,2018-19,20.099999999999998,38.8,Newton - Horace Mann,02070075, 4.3, 17.0, 7.5, 61.2, 0.0, 0.0, 10.0, 55.9, 44.1 -1,1,a-cure-i1,2018-19,3.2,25.0,Newton - John Ward,02070120, 2.4, 12.8, 3.0, 75.0, 0.0, 0.0, 6.8, 52.0, 48.0 -3.2653061224489797,3.27,a-cure-i1,2018-19,9.0,44.1,Newton - Lincoln-Eliot,02070070, 8.2, 17.5, 11.8, 55.9, 0.0, 0.0, 6.6, 50.4, 49.3 -4.421818181818182,4.42,a-cure-i1,2018-19,7.6,27.5,Newton - Mason-Rice,02070080, 0.6, 15.8, 3.7, 72.5, 0.0, 0.0, 7.4, 51.5, 48.5 -3.0384615384615383,3.04,a-cure-i1,2018-19,7.9,41.6,Newton - Memorial Spaulding,02070105, 3.9, 23.5, 8.4, 58.4, 0.0, 0.0, 5.8, 49.1, 50.9 -1,1,a-cure-i1,2018-19,0.0,43.4,Newton - Newton Early Childhood Center,02070108, 4.2, 25.9, 5.7, 56.6, 0.0, 0.0, 7.5, 59.4, 40.6 -6.739130434782609,5,a-cure-i1,2018-19,15.5,36.8,Newton - Newton North High,02070505, 6.0, 15.3, 9.4, 63.2, 0.4, 0.0, 5.7, 50.6, 49.2 -6.875,5,a-cure-i1,2018-19,16.5,38.4,Newton - Newton South High,02070510, 6.0, 21.5, 6.0, 61.6, 0.1, 0.0, 4.9, 52.0, 47.8 -5.381818181818182,5,a-cure-i1,2018-19,14.799999999999999,44.0,Newton - Oak Hill Middle,02070320, 4.3, 26.0, 6.5, 56.0, 0.2, 0.2, 6.8, 53.0, 47.0 -2.600985221674877,2.6,a-cure-i1,2018-19,6.6,40.6,Newton - Peirce,02070100, 4.4, 22.5, 8.1, 59.4, 0.0, 0.0, 5.5, 50.2, 49.8 -2.2273781902552203,2.23,a-cure-i1,2018-19,6.0,43.1,Newton - Underwood,02070115, 3.4, 20.7, 12.1, 56.9, 0.0, 0.0, 6.9, 44.8, 55.2 -3.5976331360946743,3.6,a-cure-i1,2018-19,11.4,50.7,Newton - Williams,02070125, 3.6, 32.7, 8.6, 49.3, 0.4, 0.0, 5.4, 54.7, 45.3 -3.3607305936073057,3.36,a-cure-i1,2018-19,9.2,43.8,Newton - Zervas,02070130, 5.6, 21.8, 7.5, 56.2, 0.2, 0.0, 8.7, 50.4, 49.4 -1,1,a-cure-i1,2018-19,0.0,10.400000000000006,Norfolk - Freeman-Kennedy School,02080005, 0.6, 2.5, 4.6, 89.6, 0.0, 0.0, 2.7, 53.9, 46.1 -1,1,a-cure-i1,2018-19,0.0,7.700000000000003,Norfolk - H Olive Day,02080015, 1.1, 2.9, 1.1, 92.3, 0.0, 0.0, 2.5, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,9.5,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.3, 1.3, 2.7, 90.5, 0.4, 0.2, 3.8, 27.5, 72.5 -1,1,a-cure-i1,2018-19,0.0,16.400000000000006,North Adams - Brayton,02090035, 3.1, 0.0, 7.8, 83.6, 0.0, 0.0, 5.5, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.0,18.200000000000003,North Adams - Colegrove Park Elementary,02090008, 2.7, 0.3, 6.1, 81.8, 0.6, 0.0, 8.5, 49.2, 50.8 -1,1,a-cure-i1,2018-19,2.5,16.0,North Adams - Drury High,02090505, 2.9, 0.6, 5.2, 84.0, 0.2, 0.0, 7.3, 47.5, 52.5 -1,1,a-cure-i1,2018-19,0.0,19.900000000000006,North Adams - Greylock,02090015, 1.2, 0.8, 7.8, 80.1, 0.0, 0.8, 9.4, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,30.599999999999994,North Andover - Anne Bradstreet Early Childhood Center,02110005, 2.5, 10.6, 13.2, 69.4, 0.0, 0.0, 4.2, 50.7, 49.3 -1,1,a-cure-i1,2018-19,0.0,21.400000000000006,North Andover - Annie L Sargent School,02110018, 1.5, 9.3, 6.4, 78.6, 0.2, 0.0, 4.0, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,41.5,North Andover - Atkinson,02110001, 6.1, 8.6, 22.6, 58.5, 0.6, 0.0, 3.6, 48.7, 51.3 -1,1,a-cure-i1,2018-19,0.0,27.599999999999994,North Andover - Franklin,02110010, 2.1, 13.3, 7.8, 72.4, 0.5, 0.0, 3.9, 57.8, 42.2 -1,1,a-cure-i1,2018-19,0.0,23.0,North Andover - Kittredge,02110015, 3.4, 4.7, 8.5, 77.0, 0.0, 0.4, 6.0, 56.6, 43.4 -1,1,a-cure-i1,2018-19,2.6,21.900000000000006,North Andover - North Andover High,02110505, 3.6, 7.0, 9.5, 78.1, 0.1, 0.3, 1.4, 48.6, 51.3 -1,1,a-cure-i1,2018-19,0.0,24.200000000000003,North Andover - North Andover Middle,02110305, 3.4, 7.0, 10.6, 75.8, 0.5, 0.1, 2.7, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,29.200000000000003,North Andover - Thomson,02110020, 2.4, 5.6, 16.7, 70.8, 0.0, 0.0, 4.5, 49.0, 51.0 -1,1,a-cure-i1,2018-19,1.4,26.5,North Attleborough - Amvet Boulevard,02120007, 5.0, 12.2, 4.2, 73.5, 0.8, 0.0, 4.2, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,32.7,North Attleborough - Community,02120030, 12.4, 4.4, 8.9, 67.3, 0.0, 0.3, 6.7, 55.2, 44.8 -1,1,a-cure-i1,2018-19,0.0,20.200000000000003,North Attleborough - Falls,02120010, 3.2, 6.1, 4.5, 79.8, 0.0, 0.0, 6.5, 57.1, 42.9 -1,1,a-cure-i1,2018-19,0.0,15.0,North Attleborough - Joseph W Martin Jr Elementary,02120013, 3.4, 4.6, 3.4, 85.0, 0.0, 0.0, 3.6, 50.7, 49.3 -1,1,a-cure-i1,2018-19,4.0,18.400000000000006,North Attleborough - North Attleboro High,02120505, 3.3, 6.9, 4.9, 81.6, 0.3, 0.1, 3.0, 52.0, 47.7 -1,1,a-cure-i1,2018-19,0.0,28.400000000000006,North Attleborough - North Attleborough Early Learning Center,02120020, 3.7, 14.2, 6.0, 71.6, 0.0, 0.0, 4.5, 65.7, 34.3 -1,1,a-cure-i1,2018-19,4.5,17.0,North Attleborough - North Attleborough Middle,02120305, 2.7, 5.4, 4.7, 83.0, 0.2, 0.3, 3.6, 47.3, 52.7 -1,1,a-cure-i1,2018-19,4.0,15.5,North Attleborough - Roosevelt Avenue,02120015, 1.2, 8.9, 2.7, 84.5, 0.4, 0.0, 2.3, 44.6, 55.4 -1,1,a-cure-i1,2018-19,0.0,7.900000000000006,North Brookfield - North Brookfield Elementary,02150015, 0.9, 0.0, 4.4, 92.1, 0.0, 0.0, 2.5, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,11.799999999999997,North Brookfield - North Brookfield High,02150505, 0.4, 0.4, 5.9, 88.2, 0.0, 0.0, 5.1, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,6.400000000000006,North Middlesex - Ashby Elementary,07350010, 0.6, 0.6, 4.6, 93.6, 0.0, 0.0, 0.6, 60.1, 39.9 -1,1,a-cure-i1,2018-19,0.0,9.200000000000003,North Middlesex - Hawthorne Brook,07350030, 1.0, 2.7, 2.4, 90.8, 0.0, 0.0, 3.1, 51.8, 48.2 -1,1,a-cure-i1,2018-19,2.6,10.299999999999997,North Middlesex - Nissitissit Middle School,07350310, 1.5, 2.1, 3.8, 89.7, 0.0, 0.0, 2.9, 53.2, 46.8 -1,1,a-cure-i1,2018-19,1.8,10.700000000000003,North Middlesex - North Middlesex Regional,07350505, 1.2, 1.1, 4.5, 89.3, 0.2, 0.1, 3.6, 46.0, 54.0 -1,1,a-cure-i1,2018-19,0.0,15.0,North Middlesex - Spaulding Memorial,07350005, 2.1, 1.4, 6.3, 85.0, 0.0, 0.0, 5.2, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,10.099999999999994,North Middlesex - Squannacook Early Childhood Center,07350002, 4.5, 0.0, 3.4, 89.9, 1.1, 1.1, 0.0, 60.7, 39.3 -1,1,a-cure-i1,2018-19,0.0,12.099999999999994,North Middlesex - Varnum Brook,07350035, 2.2, 1.3, 4.9, 87.9, 0.2, 0.0, 3.5, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,13.900000000000006,North Reading - E Ethel Little School,02170003, 1.2, 4.6, 3.7, 86.1, 0.0, 0.0, 4.3, 53.3, 46.7 -1,1,a-cure-i1,2018-19,0.0,12.0,North Reading - J Turner Hood,02170010, 0.9, 6.3, 2.9, 88.0, 0.0, 0.3, 1.7, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,13.900000000000006,North Reading - L D Batchelder,02170005, 0.2, 3.7, 5.5, 86.1, 0.0, 0.0, 4.4, 52.0, 48.0 -1,1,a-cure-i1,2018-19,4.2,7.700000000000003,North Reading - North Reading High,02170505, 0.5, 3.2, 1.9, 92.3, 0.0, 0.1, 2.0, 49.5, 50.5 -1,1,a-cure-i1,2018-19,0.0,11.299999999999997,North Reading - North Reading Middle,02170305, 0.4, 3.9, 4.1, 88.7, 0.4, 0.0, 2.6, 48.3, 51.7 -2.1714285714285717,2.17,a-cure-i1,2018-19,5.7,42.0,Northampton - Bridge Street,02100005, 1.2, 3.9, 27.6, 58.0, 0.4, 0.0, 8.9, 58.0, 42.0 -6.60387811634349,5,a-cure-i1,2018-19,14.9,36.1,Northampton - Jackson Street,02100020, 5.4, 6.8, 14.8, 63.9, 0.0, 0.0, 9.1, 49.7, 50.3 -1,1,a-cure-i1,2018-19,2.8,32.7,Northampton - John F Kennedy Middle School,02100410, 2.9, 3.6, 19.5, 67.3, 0.3, 0.0, 6.4, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,26.5,Northampton - Leeds,02100025, 1.2, 1.5, 16.3, 73.5, 0.0, 0.0, 7.5, 53.3, 46.7 -3.7760000000000002,3.78,a-cure-i1,2018-19,5.9,25.0,Northampton - Northampton High,02100505, 2.6, 4.0, 13.3, 75.0, 0.1, 0.0, 4.9, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,26.099999999999994,Northampton - R. K. Finn Ryan Road,02100029, 3.6, 3.6, 13.1, 73.9, 0.0, 0.0, 5.9, 53.6, 45.9 -1,1,a-cure-i1,2018-19,0.0,18.200000000000003,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.2, 0.4, 14.5, 81.8, 0.0, 0.0, 2.0, 54.7, 45.3 -1,1,a-cure-i1,2018-19,2.6,21.400000000000006,Northboro-Southboro - Algonquin Regional High,07300505, 1.2, 11.1, 5.1, 78.6, 0.4, 0.2, 3.3, 48.6, 51.4 -1,1,a-cure-i1,2018-19,0.0,32.8,Northborough - Fannie E Proctor,02130015, 2.5, 9.7, 16.4, 67.2, 0.0, 0.4, 3.8, 55.9, 44.1 -1,1,a-cure-i1,2018-19,0.0,19.299999999999997,Northborough - Lincoln Street,02130003, 1.2, 12.0, 0.4, 80.7, 0.8, 1.2, 3.6, 47.0, 53.0 -1,1,a-cure-i1,2018-19,0.0,32.099999999999994,Northborough - Marguerite E Peaslee,02130014, 0.7, 14.4, 11.9, 67.9, 0.0, 0.0, 5.1, 56.0, 44.0 -1,1,a-cure-i1,2018-19,0.0,28.700000000000003,Northborough - Marion E Zeh,02130020, 1.2, 17.6, 6.6, 71.3, 0.0, 0.0, 3.3, 57.8, 42.2 -1,1,a-cure-i1,2018-19,1.3,26.099999999999994,Northborough - Robert E. Melican Middle School,02130305, 2.6, 10.7, 7.1, 73.9, 0.2, 0.9, 4.7, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,19.599999999999994,Northbridge - Northbridge Elementary,02140005, 0.6, 0.0, 12.2, 80.4, 0.0, 0.0, 6.9, 58.0, 42.0 -1,1,a-cure-i1,2018-19,0.0,10.799999999999997,Northbridge - Northbridge High,02140505, 0.9, 1.1, 5.7, 89.2, 0.0, 0.2, 2.9, 52.1, 47.9 -1,1,a-cure-i1,2018-19,2.3,14.599999999999994,Northbridge - Northbridge Middle,02140305, 1.4, 0.6, 8.2, 85.4, 0.0, 0.1, 4.3, 50.6, 49.2 -1,1,a-cure-i1,2018-19,0.0,16.099999999999994,Northbridge - W Edward Balmer,02140001, 0.6, 1.1, 8.5, 83.9, 0.2, 0.0, 5.7, 46.7, 53.3 -1,1,a-cure-i1,2018-19,3.6,39.6,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.9, 1.2, 33.2, 60.4, 0.1, 0.2, 2.1, 54.1, 45.9 -1,1,a-cure-i1,2018-19,0.0,5.200000000000003,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.6, 0.2, 1.8, 94.8, 0.0, 0.0, 2.6, 61.9, 38.1 -1,1,a-cure-i1,2018-19,0.0,13.599999999999994,Norton - Henri A. Yelle,02180060, 2.6, 2.4, 3.4, 86.4, 0.8, 0.0, 4.5, 49.5, 50.5 -1,1,a-cure-i1,2018-19,0.0,12.900000000000006,Norton - J C Solmonese,02180015, 0.8, 1.2, 4.5, 87.1, 0.0, 0.0, 6.4, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,15.5,Norton - L G Nourse Elementary,02180010, 4.2, 1.5, 6.4, 84.5, 0.0, 0.4, 3.0, 50.6, 49.4 -1,1,a-cure-i1,2018-19,4.8,8.799999999999997,Norton - Norton High,02180505, 2.1, 2.0, 2.5, 91.2, 0.0, 0.3, 2.0, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,12.400000000000006,Norton - Norton Middle,02180305, 1.5, 1.9, 4.1, 87.6, 0.2, 0.0, 4.8, 47.4, 52.6 -1,1,a-cure-i1,2018-19,0.0,8.799999999999997,Norwell - Grace Farrar Cole,02190005, 1.3, 2.1, 1.3, 91.2, 0.2, 0.0, 4.0, 56.5, 43.5 -1,1,a-cure-i1,2018-19,0.0,7.299999999999997,Norwell - Norwell High,02190505, 0.7, 2.2, 2.5, 92.7, 0.0, 0.3, 1.6, 45.3, 54.7 -1,1,a-cure-i1,2018-19,0.0,6.5,Norwell - Norwell Middle School,02190405, 0.0, 2.7, 1.2, 93.5, 0.2, 0.2, 2.2, 54.7, 45.3 -1,1,a-cure-i1,2018-19,3.6,6.0,Norwell - William G Vinal,02190020, 0.0, 1.7, 1.2, 94.0, 0.0, 0.2, 2.9, 53.1, 46.9 -3.076923076923077,3.08,a-cure-i1,2018-19,10.0,52.0,Norwood - Balch,02200005, 11.5, 4.3, 32.9, 48.0, 0.0, 0.7, 2.6, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,44.0,Norwood - Charles J Prescott,02200025, 5.3, 27.2, 7.0, 56.0, 0.0, 1.2, 3.3, 49.8, 50.2 -1,1,a-cure-i1,2018-19,0.0,32.5,Norwood - Cornelius M Callahan,02200010, 11.7, 6.8, 7.8, 67.5, 0.0, 0.0, 6.3, 51.5, 48.5 -1,1,a-cure-i1,2018-19,1.8,33.2,Norwood - Dr. Philip O. Coakley Middle School,02200305, 12.3, 5.3, 13.1, 66.8, 0.0, 0.3, 2.3, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,27.799999999999997,Norwood - F A Cleveland,02200015, 8.6, 7.0, 8.0, 72.2, 0.0, 0.6, 3.7, 54.1, 45.9 -1,1,a-cure-i1,2018-19,0.0,35.0,Norwood - George F. Willett,02200075, 9.5, 14.6, 7.6, 65.0, 0.3, 1.9, 1.1, 56.6, 43.4 -1,1,a-cure-i1,2018-19,0.0,31.099999999999994,Norwood - John P Oldham,02200020, 13.4, 8.0, 8.0, 68.9, 0.0, 0.0, 1.7, 50.8, 49.2 -1,1,a-cure-i1,2018-19,4.5,32.599999999999994,Norwood - Norwood High,02200505, 12.4, 4.5, 13.1, 67.4, 0.0, 0.1, 2.5, 50.1, 49.9 -1,1,a-cure-i1,2018-19,2.7,38.4,Oak Bluffs - Oak Bluffs Elementary,02210005, 3.7, 1.4, 24.6, 61.6, 1.6, 0.0, 7.1, 49.0, 51.0 -1,1,a-cure-i1,2018-19,2.3,7.799999999999997,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 2.0, 0.7, 2.5, 92.2, 0.2, 0.0, 2.4, 62.7, 37.3 -1,1,a-cure-i1,2018-19,2.2,9.200000000000003,Old Rochester - Old Rochester Regional High,07400505, 2.5, 1.9, 1.5, 90.8, 0.1, 0.0, 3.1, 49.3, 50.7 -1,1,a-cure-i1,2018-19,0.0,9.799999999999997,Old Rochester - Old Rochester Regional Jr High,07400405, 0.9, 1.4, 3.2, 90.2, 0.0, 0.0, 4.3, 54.7, 45.3 -8.0,5,a-cure-i1,2018-19,9.5,19.0,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 5.5, 1.5, 11.5, 81.0, 0.0, 0.0, 0.5, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,15.0,Orange - Dexter Park,02230010, 1.2, 0.9, 8.3, 85.0, 0.0, 0.0, 4.6, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,13.700000000000003,Orange - Fisher Hill,02230015, 2.3, 0.0, 7.6, 86.3, 0.4, 0.0, 3.4, 53.4, 46.6 -1,1,a-cure-i1,2018-19,2.7,13.799999999999997,Orleans - Orleans Elementary,02240005, 1.8, 1.4, 7.3, 86.2, 0.5, 0.0, 2.8, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,18.400000000000006,Oxford - Alfred M Chaffee,02260010, 1.2, 0.4, 12.9, 81.6, 0.4, 0.0, 3.5, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,21.0,Oxford - Clara Barton,02260005, 2.7, 1.0, 11.4, 79.0, 0.0, 0.0, 5.9, 53.2, 46.8 -1,1,a-cure-i1,2018-19,3.0,21.400000000000006,Oxford - Oxford High,02260505, 3.2, 3.0, 11.3, 78.6, 0.0, 0.4, 3.6, 47.9, 51.9 -1,1,a-cure-i1,2018-19,0.0,20.299999999999997,Oxford - Oxford Middle,02260405, 1.2, 1.6, 11.7, 79.7, 0.0, 0.2, 5.6, 54.0, 46.0 -1,1,a-cure-i1,2018-19,0.0,26.299999999999997,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 26.3, 73.7, 0.0, 0.0, 0.0, 94.7, 5.3 -1,1,a-cure-i1,2018-19,2.2,23.299999999999997,Palmer - Old Mill Pond,02270008, 2.9, 2.4, 12.5, 76.7, 0.0, 0.0, 5.5, 51.1, 48.9 -1,1,a-cure-i1,2018-19,1.9,18.900000000000006,Palmer - Palmer High,02270505, 3.2, 2.2, 9.3, 81.1, 0.0, 0.0, 4.1, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,10.599999999999994,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 1.1, 0.3, 5.7, 89.4, 0.5, 0.0, 3.1, 63.1, 36.4 -7.029288702928871,5,a-cure-i1,2018-19,42.0,95.6,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 3.6, 0.4, 91.6, 4.4, 0.0, 0.0, 0.0, 42.5, 57.5 -1,1,a-cure-i1,2018-19,0.0,19.599999999999994,Peabody - Captain Samuel Brown,02290005, 3.1, 2.0, 12.8, 80.4, 0.0, 0.6, 1.1, 55.9, 44.1 -1,1,a-cure-i1,2018-19,0.0,23.700000000000003,Peabody - Center,02290015, 7.3, 2.1, 12.8, 76.3, 0.0, 0.0, 1.6, 47.4, 52.6 -1,1,a-cure-i1,2018-19,0.0,22.5,Peabody - J Henry Higgins Middle,02290305, 4.0, 1.6, 15.1, 77.5, 0.0, 0.0, 1.8, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,11.0,Peabody - John E Burke,02290007, 0.4, 1.5, 6.8, 89.0, 0.0, 0.0, 2.3, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,16.0,Peabody - John E. McCarthy,02290016, 2.2, 1.7, 9.1, 84.0, 0.0, 0.0, 3.0, 56.6, 43.4 -1,1,a-cure-i1,2018-19,1.6,24.900000000000006,Peabody - Peabody Veterans Memorial High,02290510, 3.6, 2.3, 17.1, 75.1, 0.0, 0.0, 1.9, 52.8, 47.0 -1,1,a-cure-i1,2018-19,0.0,14.900000000000006,Peabody - South Memorial,02290035, 2.3, 3.0, 7.4, 85.1, 0.0, 0.0, 2.1, 41.2, 58.8 -1,1,a-cure-i1,2018-19,0.0,25.299999999999997,Peabody - Thomas Carroll,02290010, 4.2, 1.0, 19.0, 74.7, 0.0, 0.0, 1.1, 47.6, 52.4 -1,1,a-cure-i1,2018-19,0.0,9.200000000000003,Peabody - West Memorial,02290045, 1.5, 0.8, 5.7, 90.8, 0.0, 0.0, 1.1, 54.0, 46.0 -1,1,a-cure-i1,2018-19,4.7,31.700000000000003,Peabody - William A Welch Sr,02290027, 3.4, 1.3, 24.9, 68.3, 0.0, 0.0, 2.1, 49.7, 50.3 -7.5826086956521745,5,a-cure-i1,2018-19,10.9,23.0,Pelham - Pelham Elementary,02300005, 4.4, 2.2, 11.1, 77.0, 0.0, 0.0, 5.2, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,5.0,Pembroke - Bryantville Elementary,02310003, 0.2, 0.6, 0.0, 95.0, 0.2, 0.0, 4.0, 52.6, 47.4 -1,1,a-cure-i1,2018-19,0.0,2.5999999999999943,Pembroke - Hobomock Elementary,02310010, 0.7, 0.7, 0.2, 97.4, 0.0, 0.0, 0.9, 54.4, 45.6 -1,1,a-cure-i1,2018-19,0.0,4.799999999999997,Pembroke - North Pembroke Elementary,02310015, 0.4, 1.1, 0.5, 95.2, 0.2, 0.0, 2.7, 53.7, 46.3 -1,1,a-cure-i1,2018-19,0.0,2.5999999999999943,Pembroke - Pembroke Community Middle School,02310305, 0.9, 1.1, 0.2, 97.4, 0.0, 0.2, 0.2, 55.0, 45.0 -1,1,a-cure-i1,2018-19,0.0,3.799999999999997,Pembroke - Pembroke High School,02310505, 0.8, 1.5, 0.6, 96.2, 0.0, 0.1, 0.7, 47.1, 52.8 -1,1,a-cure-i1,2018-19,0.0,14.299999999999997,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.4, 9.6, 85.7, 0.0, 0.0, 4.3, 58.7, 41.3 -1,1,a-cure-i1,2018-19,1.4,8.799999999999997,Pentucket - Dr John C Page School,07450015, 0.6, 2.3, 3.8, 91.2, 0.0, 0.0, 2.1, 51.0, 49.0 -1,1,a-cure-i1,2018-19,1.1,8.299999999999997,Pentucket - Elmer S Bagnall,07450005, 0.6, 0.2, 4.5, 91.7, 0.0, 0.0, 3.0, 54.8, 45.2 -1,1,a-cure-i1,2018-19,2.1,10.599999999999994,Pentucket - Helen R Donaghue School,07450010, 0.4, 0.4, 6.8, 89.4, 0.0, 0.0, 3.0, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,5.5,Pentucket - Pentucket Regional Middle,07450405, 0.3, 1.3, 3.3, 94.5, 0.0, 0.0, 0.8, 53.5, 46.5 -1,1,a-cure-i1,2018-19,2.5,7.599999999999994,Pentucket - Pentucket Regional Sr High,07450505, 0.7, 2.2, 3.5, 92.4, 0.0, 0.0, 1.2, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,10.400000000000006,Petersham - Petersham Center,02340005, 0.0, 0.9, 6.1, 89.6, 0.0, 0.0, 3.5, 48.7, 51.3 -3.961742826780021,3.96,a-cure-i1,2018-19,23.299999999999997,94.1,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, 0.0, 93.3, 5.9, 0.8, 0.0, 0.0, 65.5, 34.5 -11.676148796498905,5,a-cure-i1,2018-19,66.7,91.4,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 17.7, 0.5, 70.2, 8.6, 0.0, 0.0, 3.0, 49.5, 50.5 -7.370212765957446,5,a-cure-i1,2018-19,43.3,94.0,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 13.9, 0.0, 79.1, 6.0, 1.0, 0.0, 0.0, 51.7, 48.3 -2.1927710843373496,2.19,a-cure-i1,2018-19,9.100000000000001,66.4,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 26.2, 7.7, 29.3, 33.6, 2.0, 0.0, 1.1, 48.7, 51.3 -6.41782729805014,5,a-cure-i1,2018-19,28.8,71.8,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 32.6, 13.5, 24.0, 28.2, 0.0, 0.0, 1.7, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,5.700000000000003,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 1.3, 94.3, 0.0, 0.0, 4.4, 45.3, 54.7 -1,1,a-cure-i1,2018-19,0.0,4.900000000000006,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.1, 95.1, 0.0, 0.0, 3.8, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,9.400000000000006,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 9.4, 90.6, 0.0, 0.0, 0.0, 46.9, 53.1 -1,1,a-cure-i1,2018-19,4.2,7.099999999999994,Pioneer Valley - Pioneer Valley Regional,07500505, 1.0, 1.0, 1.6, 92.9, 0.3, 0.0, 3.2, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,8.799999999999997,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 3.5, 91.2, 0.0, 0.0, 5.3, 59.6, 40.4 -17.7,5,a-cure-i1,2018-19,53.1,48.0,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 8.3, 17.8, 7.2, 52.0, 0.0, 0.0, 14.7, 47.3, 52.6 -8.213649851632047,5,a-cure-i1,2018-19,17.3,33.7,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8.3, 1.8, 15.8, 66.3, 0.3, 0.0, 7.8, 30.8, 69.3 -1,1,a-cure-i1,2018-19,4.3,41.2,Pittsfield - Allendale,02360010, 10.5, 2.2, 15.7, 58.8, 0.3, 0.0, 12.5, 47.3, 52.7 -2.089795918367347,2.09,a-cure-i1,2018-19,6.4,49.0,Pittsfield - Crosby,02360065, 13.4, 0.7, 21.8, 51.0, 1.2, 0.0, 11.9, 61.4, 38.6 -1,1,a-cure-i1,2018-19,3.5,28.900000000000006,Pittsfield - Egremont,02360035, 6.7, 1.2, 12.3, 71.1, 0.0, 0.0, 8.8, 50.9, 49.1 -2.5722070844686646,2.57,a-cure-i1,2018-19,5.9,36.7,Pittsfield - John T Reid Middle,02360305, 14.2, 0.9, 11.4, 63.3, 0.4, 0.2, 9.6, 48.6, 51.2 -1,1,a-cure-i1,2018-19,0.0,51.5,Pittsfield - Morningside Community School,02360055, 11.3, 0.8, 25.9, 48.5, 0.6, 0.0, 13.0, 49.3, 50.7 -4.5,4.5,a-cure-i1,2018-19,8.1,28.799999999999997,Pittsfield - Pittsfield High,02360505, 9.8, 1.9, 12.2, 71.2, 0.1, 0.0, 4.7, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,21.299999999999997,Pittsfield - Robert T. Capeless Elementary School,02360045, 3.3, 0.5, 6.2, 78.7, 0.0, 0.0, 11.4, 48.3, 51.7 -1,1,a-cure-i1,2018-19,0.0,63.0,Pittsfield - Silvio O Conte Community,02360105, 17.0, 1.1, 28.9, 37.0, 0.8, 0.0, 15.1, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,20.200000000000003,Pittsfield - Stearns,02360090, 2.1, 0.9, 8.6, 79.8, 0.4, 0.0, 8.2, 57.9, 42.1 -2.6976744186046506,2.7,a-cure-i1,2018-19,5.8,34.400000000000006,Pittsfield - Taconic High,02360510, 14.0, 0.9, 11.7, 65.6, 0.1, 0.0, 7.7, 50.2, 49.8 -1,1,a-cure-i1,2018-19,1.3,33.2,Pittsfield - Theodore Herberg Middle,02360310, 11.9, 1.2, 13.3, 66.8, 0.0, 0.0, 6.7, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,25.599999999999994,Pittsfield - Williams,02360100, 7.7, 4.4, 7.1, 74.4, 0.0, 0.7, 5.7, 53.5, 46.5 -1,1,a-cure-i1,2018-19,2.4,18.900000000000006,Plainville - Anna Ware Jackson,02380010, 4.2, 4.5, 7.3, 81.1, 0.0, 0.0, 2.8, 50.7, 49.3 -1,1,a-cure-i1,2018-19,2.5,19.200000000000003,Plainville - Beatrice H Wood Elementary,02380005, 3.5, 3.8, 8.7, 80.8, 0.7, 0.0, 2.4, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,21.299999999999997,Plymouth - Cold Spring,02390005, 1.4, 3.6, 11.3, 78.7, 0.0, 0.0, 5.0, 46.6, 53.4 -1,1,a-cure-i1,2018-19,0.0,18.799999999999997,Plymouth - Federal Furnace School,02390011, 6.4, 0.8, 7.2, 81.2, 0.0, 0.0, 4.4, 50.6, 49.4 -1,1,a-cure-i1,2018-19,0.0,35.400000000000006,Plymouth - Hedge,02390010, 1.7, 2.2, 23.2, 64.6, 0.0, 0.0, 8.3, 56.4, 43.6 -11.428571428571429,5,a-cure-i1,2018-19,5.0,7.0,Plymouth - Indian Brook,02390012, 1.2, 0.2, 2.5, 93.0, 0.0, 0.0, 3.2, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,7.5,Plymouth - Manomet Elementary,02390015, 0.8, 0.0, 3.4, 92.5, 0.0, 0.0, 3.4, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,13.099999999999994,Plymouth - Nathaniel Morton Elementary,02390030, 0.9, 1.4, 4.8, 86.9, 0.2, 0.0, 5.7, 53.9, 46.1 -5.333333333333333,5,a-cure-i1,2018-19,5.0,15.0,Plymouth - Plymouth Commun Intermediate,02390405, 2.4, 1.8, 6.5, 85.0, 0.4, 0.1, 3.8, 52.6, 47.2 -1,1,a-cure-i1,2018-19,0.0,12.900000000000006,Plymouth - Plymouth Early Childhood Center,02390003, 1.3, 0.6, 3.9, 87.1, 0.0, 0.0, 7.1, 60.6, 39.4 -1,1,a-cure-i1,2018-19,2.0,14.0,Plymouth - Plymouth North High,02390505, 2.4, 1.8, 5.2, 86.0, 0.2, 0.0, 4.5, 50.8, 49.2 -1,1,a-cure-i1,2018-19,2.5,9.0,Plymouth - Plymouth South High,02390515, 1.4, 1.1, 2.4, 91.0, 0.3, 0.1, 3.7, 52.6, 47.4 -1,1,a-cure-i1,2018-19,2.6,8.400000000000006,Plymouth - Plymouth South Middle,02390305, 0.6, 0.7, 3.3, 91.6, 0.6, 0.0, 3.3, 52.8, 47.2 -1,1,a-cure-i1,2018-19,2.8,13.099999999999994,Plymouth - South Elementary,02390046, 1.7, 0.3, 4.7, 86.9, 0.3, 0.2, 5.9, 54.6, 45.4 -1,1,a-cure-i1,2018-19,4.3,15.299999999999997,Plymouth - West Elementary,02390047, 2.6, 1.1, 6.3, 84.7, 0.0, 0.0, 5.4, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,2.5,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 2.0, 97.5, 0.0, 0.0, 0.5, 53.3, 46.7 -4.94712643678161,4.95,a-cure-i1,2018-19,26.900000000000002,87.0,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 53.8, 8.3, 21.0, 13.0, 0.3, 0.1, 3.6, 50.8, 49.2 -2.1311475409836067,2.13,a-cure-i1,2018-19,6.5,48.8,Provincetown - Provincetown Schools,02420020, 27.2, 0.0, 14.4, 51.2, 0.0, 0.0, 7.2, 44.8, 55.2 -1,1,a-cure-i1,2018-19,0.0,12.099999999999994,Quabbin - Hardwick Elementary,07530005, 0.6, 0.0, 10.3, 87.9, 1.1, 0.0, 0.0, 60.9, 39.1 -1,1,a-cure-i1,2018-19,0.0,7.099999999999994,Quabbin - Hubbardston Center,07530010, 1.0, 1.3, 3.9, 92.9, 0.0, 0.0, 1.0, 48.2, 51.8 -1,1,a-cure-i1,2018-19,0.0,13.099999999999994,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 9.8, 86.9, 0.0, 0.0, 3.3, 52.5, 47.5 -29.164556962025298,5,a-cure-i1,2018-19,14.4,7.900000000000006,Quabbin - Oakham Center,07530025, 2.4, 0.0, 4.7, 92.1, 0.0, 0.0, 0.8, 36.2, 63.8 -1,1,a-cure-i1,2018-19,4.3,8.900000000000006,Quabbin - Quabbin Regional High School,07530505, 0.6, 0.8, 4.2, 91.1, 0.0, 0.2, 3.2, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.8,7.0,Quabbin - Quabbin Regional Middle School,07530405, 0.3, 1.1, 3.6, 93.0, 0.0, 0.0, 1.9, 45.4, 54.6 -1,1,a-cure-i1,2018-19,0.0,8.400000000000006,Quabbin - Ruggles Lane,07530030, 0.9, 0.9, 4.5, 91.6, 0.0, 0.4, 1.7, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,11.099999999999994,Quaboag Regional - Quaboag Regional High,07780505, 1.4, 0.3, 7.1, 88.9, 0.0, 0.0, 2.3, 50.0, 49.4 -1,1,a-cure-i1,2018-19,0.0,10.400000000000006,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.5, 0.0, 6.3, 89.6, 0.0, 0.0, 3.6, 53.2, 46.8 -1,1,a-cure-i1,2018-19,0.0,12.900000000000006,Quaboag Regional - Warren Elementary,07780005, 0.9, 0.0, 7.1, 87.1, 0.0, 0.0, 4.8, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,10.799999999999997,Quaboag Regional - West Brookfield Elementary,07780010, 0.3, 0.3, 6.1, 89.2, 0.0, 0.0, 4.1, 50.7, 49.3 -1,1,a-cure-i1,2018-19,0.0,71.2,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 8.5, 49.7, 6.2, 28.8, 1.7, 0.6, 4.5, 60.5, 39.5 -1,1,a-cure-i1,2018-19,0.0,28.799999999999997,Quincy - Atherton Hough,02430040, 4.1, 14.8, 7.4, 71.2, 0.0, 0.0, 2.6, 55.0, 45.0 -2.373205741626794,2.37,a-cure-i1,2018-19,9.3,62.7,Quincy - Atlantic Middle,02430305, 4.1, 50.6, 4.3, 37.3, 0.0, 0.6, 3.2, 51.1, 48.9 -1,1,a-cure-i1,2018-19,4.4,51.1,Quincy - Beechwood Knoll Elementary,02430020, 1.5, 46.4, 1.2, 48.9, 0.0, 0.3, 1.5, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,36.1,Quincy - Broad Meadows Middle,02430310, 8.9, 14.8, 8.6, 63.9, 0.8, 0.3, 2.7, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,49.6,Quincy - Central Middle,02430315, 2.8, 40.0, 3.1, 50.4, 0.0, 0.5, 3.2, 48.0, 52.0 -1,1,a-cure-i1,2018-19,4.5,44.4,Quincy - Charles A Bernazzani Elementary,02430025, 3.7, 28.5, 5.8, 55.6, 0.0, 0.0, 6.3, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,71.3,Quincy - Clifford H Marshall Elementary,02430055, 13.5, 44.8, 10.6, 28.7, 0.0, 1.1, 1.3, 46.1, 53.9 -4.147368421052631,4.15,a-cure-i1,2018-19,19.7,76.0,Quincy - Francis W Parker,02430075, 4.3, 63.7, 5.5, 24.0, 0.0, 0.3, 2.2, 59.7, 40.3 -1,1,a-cure-i1,2018-19,3.4,62.4,Quincy - Lincoln-Hancock Community School,02430035, 10.1, 36.2, 9.3, 37.6, 1.2, 0.6, 5.0, 54.3, 45.7 -1,1,a-cure-i1,2018-19,4.4,41.6,Quincy - Merrymount,02430060, 8.4, 26.4, 4.3, 58.4, 0.3, 0.8, 1.4, 52.7, 47.3 -1,1,a-cure-i1,2018-19,2.9,75.7,Quincy - Montclair,02430065, 2.6, 64.8, 5.5, 24.3, 0.0, 0.2, 2.6, 47.9, 52.1 -2.44822256568779,2.45,a-cure-i1,2018-19,9.9,64.7,Quincy - North Quincy High,02430510, 3.3, 56.8, 2.6, 35.3, 0.2, 0.1, 1.7, 53.9, 46.1 -1,1,a-cure-i1,2018-19,3.6,66.0,Quincy - Point Webster Middle,02430325, 11.6, 41.6, 8.6, 34.0, 0.0, 0.3, 4.0, 52.6, 47.4 -3.0630630630630633,3.06,a-cure-i1,2018-19,8.5,44.4,Quincy - Quincy High,02430505, 10.2, 22.3, 8.0, 55.6, 0.2, 0.4, 3.3, 51.2, 48.7 -1,1,a-cure-i1,2018-19,0.0,64.3,Quincy - Snug Harbor Community School,02430090, 11.4, 36.4, 9.8, 35.7, 0.2, 0.0, 6.4, 55.4, 44.6 -1,1,a-cure-i1,2018-19,3.7,58.2,Quincy - South West Middle School,02430320, 14.2, 25.1, 12.3, 41.8, 0.3, 0.6, 5.8, 58.2, 41.8 -1,1,a-cure-i1,2018-19,2.4,39.9,Quincy - Squantum,02430095, 4.0, 30.1, 3.2, 60.1, 0.3, 0.0, 2.3, 48.3, 51.7 -1,1,a-cure-i1,2018-19,1.9,65.9,Quincy - Wollaston School,02430110, 0.9, 62.0, 1.2, 34.1, 0.0, 0.3, 1.5, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,11.400000000000006,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 5.7, 5.7, 88.6, 0.0, 0.0, 0.0, 42.9, 57.1 -6.559006211180126,5,a-cure-i1,2018-19,6.6,16.099999999999994,Ralph C Mahar - Ralph C Mahar Regional,07550505, 2.4, 1.6, 8.2, 83.9, 0.0, 0.0, 3.9, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,31.5,Ralph C Mahar - The Gateway to College,07550525, 2.7, 2.7, 20.5, 68.5, 0.0, 0.0, 5.5, 37.0, 63.0 -1.0124069478908189,1.01,a-cure-i1,2018-19,5.1,80.6,Randolph - Elizabeth G Lyons Elementary,02440020, 46.4, 12.5, 12.8, 19.4, 0.7, 0.0, 8.2, 51.6, 48.4 -1.1298405466970387,1.13,a-cure-i1,2018-19,6.2,87.8,Randolph - J F Kennedy Elementary,02440018, 53.3, 13.8, 13.6, 12.2, 0.2, 0.5, 6.3, 55.8, 44.2 -4.439511653718092,4.44,a-cure-i1,2018-19,25.0,90.1,Randolph - Margaret L Donovan,02440015, 49.4, 23.0, 12.6, 9.9, 0.2, 0.4, 4.4, 52.1, 47.9 -1,1,a-cure-i1,2018-19,2.8,89.3,Randolph - Martin E Young Elementary,02440040, 44.3, 16.4, 23.2, 10.7, 1.1, 0.0, 4.3, 56.4, 43.6 -5.376294591484464,5,a-cure-i1,2018-19,29.199999999999996,86.9,Randolph - Randolph Community Middle,02440410, 47.5, 16.6, 17.1, 13.1, 0.3, 0.0, 5.4, 54.2, 45.8 -4.273615635179153,4.27,a-cure-i1,2018-19,24.599999999999998,92.1,Randolph - Randolph High,02440505, 54.3, 19.7, 13.0, 7.9, 0.3, 0.6, 4.2, 56.5, 43.5 -1,1,a-cure-i1,2018-19,2.9,10.700000000000003,Reading - Alice M Barrows,02460002, 1.6, 4.3, 1.9, 89.3, 0.0, 0.0, 2.9, 52.4, 47.6 -1,1,a-cure-i1,2018-19,3.4,10.799999999999997,Reading - Arthur W Coolidge Middle,02460305, 1.6, 3.4, 2.7, 89.2, 0.2, 0.2, 2.7, 54.0, 46.0 -1,1,a-cure-i1,2018-19,0.0,10.299999999999997,Reading - Birch Meadow,02460005, 1.3, 4.5, 2.4, 89.7, 0.0, 0.0, 2.1, 56.0, 44.0 -1,1,a-cure-i1,2018-19,0.0,15.799999999999997,Reading - J Warren Killam,02460017, 3.2, 8.0, 2.4, 84.2, 0.0, 0.0, 2.2, 55.1, 44.9 -4.491228070175438,4.49,a-cure-i1,2018-19,6.3999999999999995,22.799999999999997,Reading - Joshua Eaton,02460010, 4.1, 6.0, 6.7, 77.2, 0.3, 0.0, 5.7, 48.2, 51.8 -1,1,a-cure-i1,2018-19,3.6,11.200000000000003,Reading - Reading Memorial High,02460505, 2.7, 5.3, 1.9, 88.8, 0.2, 0.0, 1.1, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,14.799999999999997,Reading - RISE PreSchool,02460001, 1.7, 7.8, 2.6, 85.2, 0.9, 0.0, 1.7, 61.7, 38.3 -1,1,a-cure-i1,2018-19,2.8,15.400000000000006,Reading - Walter S Parker Middle,02460310, 3.1, 6.2, 3.8, 84.6, 0.2, 0.0, 2.0, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,10.799999999999997,Reading - Wood End Elementary School,02460020, 2.3, 3.3, 2.3, 89.2, 0.0, 0.0, 3.0, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,54.2,Revere - A. C. Whelan Elementary School,02480003, 2.2, 4.2, 46.2, 45.8, 0.0, 0.1, 1.5, 53.2, 46.7 -1,1,a-cure-i1,2018-19,0.0,59.6,Revere - Abraham Lincoln,02480025, 4.0, 3.1, 51.3, 40.4, 0.0, 0.0, 1.2, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,57.7,Revere - Beachmont Veterans Memorial School,02480013, 3.1, 1.8, 51.2, 42.3, 0.0, 0.0, 1.5, 56.4, 43.6 -1,1,a-cure-i1,2018-19,2.5,73.2,Revere - Garfield Elementary School,02480056, 2.9, 5.5, 63.1, 26.8, 0.1, 0.0, 1.6, 51.9, 48.1 -2.3748125937031483,2.37,a-cure-i1,2018-19,9.9,66.7,Revere - Garfield Middle School,02480057, 3.2, 5.2, 56.7, 33.3, 0.2, 0.0, 1.4, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,56.9,Revere - Paul Revere,02480050, 3.8, 6.5, 43.5, 43.1, 0.2, 0.0, 2.9, 50.0, 50.0 -2.60844250363901,2.61,a-cure-i1,2018-19,11.200000000000001,68.7,Revere - Revere High,02480505, 3.8, 6.1, 55.9, 31.3, 0.8, 0.0, 2.1, 50.8, 49.2 -2.1829457364341085,2.18,a-cure-i1,2018-19,8.8,64.5,Revere - Rumney Marsh Academy,02480014, 3.9, 4.9, 52.4, 35.5, 0.5, 0.2, 2.6, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,67.8,Revere - Seacoast School,02480520, 6.7, 0.0, 56.7, 32.2, 0.0, 0.0, 4.4, 66.7, 33.3 -1,1,a-cure-i1,2018-19,0.0,73.7,Revere - Staff Sargent James J. Hill Elementary School,02480035, 3.3, 3.3, 64.7, 26.3, 0.3, 0.0, 2.1, 49.6, 50.4 -1,1,a-cure-i1,2018-19,2.4,69.6,Revere - Susan B. Anthony Middle School,02480305, 3.2, 3.2, 61.9, 30.4, 0.2, 0.0, 1.2, 47.4, 52.6 -11.317073170731708,5,a-cure-i1,2018-19,8.7,12.299999999999997,Richmond - Richmond Consolidated,02490005, 1.1, 0.0, 7.3, 87.7, 0.0, 0.0, 3.9, 48.6, 51.4 -14.591999999999999,5,a-cure-i1,2018-19,11.399999999999999,12.5,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.1, 2.4, 3.4, 87.5, 0.5, 0.0, 5.2, 48.3, 51.7 -1,1,a-cure-i1,2018-19,0.0,11.799999999999997,River Valley Charter (District) - River Valley Charter School,04820050, 0.7, 3.1, 3.8, 88.2, 0.3, 0.0, 3.8, 45.1, 54.9 -1,1,a-cure-i1,2018-19,3.2,9.0,Rochester - Rochester Memorial,02500005, 1.0, 0.0, 2.3, 91.0, 0.0, 0.0, 5.7, 51.5, 48.5 -1,1,a-cure-i1,2018-19,0.0,22.799999999999997,Rockland - Jefferson Elementary School,02510060, 4.1, 2.2, 10.9, 77.2, 0.0, 0.0, 5.6, 46.4, 53.6 -1,1,a-cure-i1,2018-19,0.0,24.599999999999994,Rockland - John W Rogers Middle,02510305, 5.7, 1.3, 14.6, 75.4, 0.0, 0.0, 3.0, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,26.599999999999994,Rockland - Memorial Park,02510020, 3.8, 0.7, 17.3, 73.4, 0.0, 0.0, 4.8, 48.1, 51.9 -5.554716981132075,5,a-cure-i1,2018-19,9.2,26.5,Rockland - R Stewart Esten,02510025, 8.1, 0.9, 13.9, 73.5, 0.0, 0.0, 3.6, 55.1, 44.9 -3.780590717299577,3.78,a-cure-i1,2018-19,5.6,23.700000000000003,Rockland - Rockland Senior High,02510505, 4.6, 0.6, 14.3, 76.3, 0.0, 0.0, 4.2, 48.0, 52.0 -1,1,a-cure-i1,2018-19,0.0,3.299999999999997,Rockport - Rockport Elementary,02520005, 0.5, 2.0, 0.8, 96.7, 0.0, 0.0, 0.0, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,6.099999999999994,Rockport - Rockport High,02520510, 1.1, 1.8, 2.5, 93.9, 0.0, 0.0, 0.7, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,5.099999999999994,Rockport - Rockport Middle,02520305, 1.9, 0.9, 2.3, 94.9, 0.0, 0.0, 0.0, 49.8, 50.2 -15.86776859504133,5,a-cure-i1,2018-19,12.0,12.099999999999994,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 4.5, 87.9, 0.0, 0.0, 7.6, 51.5, 48.5 -6.681496461071789,5,a-cure-i1,2018-19,41.3,98.9,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 57.4, 0.6, 39.9, 1.1, 0.3, 0.3, 0.5, 50.6, 49.4 -2.32,2.32,a-cure-i1,2018-19,11.6,80.0,Sabis International Charter (District) - Sabis International Charter School,04410505, 29.4, 4.1, 41.0, 20.0, 0.0, 0.0, 5.5, 50.5, 49.5 -1.7548387096774192,1.75,a-cure-i1,2018-19,5.1,46.5,Salem - Bates,02580003, 8.7, 2.1, 30.3, 53.5, 0.0, 0.0, 5.4, 50.4, 49.6 -8.807692307692308,5,a-cure-i1,2018-19,22.900000000000002,41.6,Salem - Carlton,02580015, 4.3, 0.4, 30.8, 58.4, 0.0, 0.0, 6.1, 47.3, 52.7 -3.5555555555555554,3.56,a-cure-i1,2018-19,12.2,54.9,Salem - Collins Middle,02580305, 7.6, 3.1, 40.1, 45.1, 0.1, 0.0, 3.8, 52.6, 47.4 -2.0473933649289098,2.05,a-cure-i1,2018-19,8.1,63.3,Salem - Horace Mann Laboratory,02580030, 5.0, 4.3, 48.3, 36.7, 0.0, 0.0, 5.7, 48.3, 51.7 -12.536912751677853,5,a-cure-i1,2018-19,46.7,59.6,Salem - New Liberty Innovation School,02580510, 5.8, 0.0, 48.1, 40.4, 0.0, 0.0, 5.8, 44.2, 55.8 -1,1,a-cure-i1,2018-19,0.0,46.2,Salem - Salem Early Childhood,02580001, 6.6, 5.5, 30.8, 53.8, 0.0, 0.0, 3.3, 68.1, 31.9 -1,1,a-cure-i1,2018-19,4.9,59.6,Salem - Salem High,02580505, 6.8, 3.1, 45.1, 40.4, 0.1, 0.0, 4.6, 54.7, 45.3 -6.593406593406594,5,a-cure-i1,2018-19,15.0,36.4,Salem - Salem Prep High School,02580515, 0.0, 4.5, 31.8, 63.6, 0.0, 0.0, 0.0, 63.6, 36.4 -1,1,a-cure-i1,2018-19,3.0,52.0,Salem - Saltonstall School,02580050, 5.6, 2.9, 38.8, 48.0, 0.0, 0.0, 4.6, 49.3, 50.7 -2.4868913857677906,2.49,a-cure-i1,2018-19,8.3,53.4,Salem - Witchcraft Heights,02580070, 7.3, 4.5, 36.1, 46.6, 0.0, 0.0, 5.5, 51.1, 48.9 -3.552447552447552,3.55,a-cure-i1,2018-19,12.7,57.2,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 9.6, 6.1, 39.7, 42.8, 0.0, 0.0, 1.8, 46.6, 53.4 -1,1,a-cure-i1,2018-19,0.0,11.5,Sandwich - Forestdale School,02610002, 1.5, 3.1, 5.4, 88.5, 0.3, 0.0, 1.1, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,7.700000000000003,Sandwich - Oak Ridge,02610025, 1.8, 2.3, 2.0, 92.3, 0.4, 0.2, 1.0, 50.8, 49.2 -1,1,a-cure-i1,2018-19,2.2,5.0,Sandwich - Sandwich High,02610505, 0.8, 2.0, 0.8, 95.0, 0.9, 0.2, 0.3, 50.8, 49.2 -1,1,a-cure-i1,2018-19,2.2,4.5,Sandwich - Sandwich STEM Academy,02610305, 0.4, 1.8, 0.9, 95.5, 0.7, 0.0, 0.7, 48.0, 51.8 -1,1,a-cure-i1,2018-19,4.1,33.900000000000006,Saugus - Belmonte Saugus Middle,02620305, 5.0, 4.6, 21.5, 66.1, 0.5, 0.3, 2.1, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,29.299999999999997,Saugus - Douglas Waybright,02620067, 5.2, 5.2, 14.4, 70.7, 0.4, 0.0, 3.9, 55.5, 44.5 -1,1,a-cure-i1,2018-19,0.0,34.8,Saugus - Lynnhurst,02620040, 3.5, 12.1, 18.1, 65.2, 0.4, 0.4, 0.4, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,39.4,Saugus - Oaklandvale,02620050, 5.0, 4.6, 21.2, 60.6, 1.7, 0.0, 7.1, 47.3, 52.7 -4.347826086956522,4.35,a-cure-i1,2018-19,7.5,27.599999999999994,Saugus - Saugus High,02620505, 4.7, 4.3, 17.5, 72.4, 0.4, 0.0, 0.7, 51.2, 48.6 -2.844444444444444,2.84,a-cure-i1,2018-19,5.6,31.5,Saugus - Veterans Memorial,02620065, 5.3, 3.4, 18.3, 68.5, 0.6, 0.0, 3.8, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,7.900000000000006,Savoy - Emma L Miller Elementary School,02630010, 4.8, 0.0, 3.2, 92.1, 0.0, 0.0, 0.0, 52.4, 47.6 -1,1,a-cure-i1,2018-19,0.0,5.5,Scituate - Cushing Elementary,02640007, 1.8, 0.9, 0.6, 94.5, 0.3, 0.0, 1.8, 54.0, 46.0 -1,1,a-cure-i1,2018-19,2.3,6.5,Scituate - Gates Middle School,02640305, 2.6, 0.9, 1.9, 93.5, 0.0, 0.0, 1.0, 48.7, 51.3 -1,1,a-cure-i1,2018-19,0.0,6.5,Scituate - Hatherly Elementary,02640010, 1.9, 0.4, 2.3, 93.5, 0.0, 0.0, 1.9, 53.3, 46.7 -1,1,a-cure-i1,2018-19,0.0,7.700000000000003,Scituate - Jenkins Elementary School,02640015, 2.6, 0.0, 2.0, 92.3, 0.0, 0.0, 3.1, 53.1, 46.9 -1,1,a-cure-i1,2018-19,3.7,6.900000000000006,Scituate - Scituate High School,02640505, 3.2, 1.7, 0.7, 93.1, 0.0, 0.0, 1.3, 48.5, 51.4 -1,1,a-cure-i1,2018-19,0.0,7.299999999999997,Scituate - Wampatuck Elementary,02640020, 2.2, 1.0, 2.4, 92.7, 0.0, 0.0, 1.7, 51.3, 48.7 -6.686567164179102,5,a-cure-i1,2018-19,5.6,13.400000000000006,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.4, 3.1, 4.3, 86.6, 0.2, 0.2, 4.1, 52.5, 47.5 -1,1,a-cure-i1,2018-19,3.8,15.799999999999997,Seekonk - George R Martin,02650007, 2.4, 4.0, 5.8, 84.2, 0.0, 0.0, 3.6, 46.5, 53.5 -1,1,a-cure-i1,2018-19,4.3,14.299999999999997,Seekonk - Mildred Aitken School,02650015, 1.8, 2.9, 5.9, 85.7, 0.0, 0.0, 3.7, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,11.799999999999997,Seekonk - Seekonk High,02650505, 2.2, 2.9, 4.2, 88.2, 0.0, 0.0, 2.6, 48.0, 52.0 -2.5263157894736845,2.53,a-cure-i1,2018-19,14.700000000000001,93.1,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 45.7, 0.0, 44.6, 6.9, 0.0, 0.0, 2.8, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,45.3,Sharon - Cottage Street,02660005, 3.9, 29.3, 4.2, 54.7, 0.2, 0.2, 7.5, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,45.7,Sharon - East Elementary,02660010, 4.5, 29.8, 6.9, 54.3, 0.0, 0.0, 4.5, 48.6, 51.4 -1,1,a-cure-i1,2018-19,3.7,51.0,Sharon - Heights Elementary,02660015, 3.4, 35.2, 4.8, 49.0, 0.0, 0.2, 7.4, 52.1, 47.9 -1,1,a-cure-i1,2018-19,0.0,53.1,Sharon - Sharon Early Childhood Center,02660001, 6.1, 24.5, 12.2, 46.9, 0.0, 0.0, 10.2, 69.4, 30.6 -2.470588235294118,2.47,a-cure-i1,2018-19,6.300000000000001,40.8,Sharon - Sharon High,02660505, 6.3, 25.7, 5.3, 59.2, 0.2, 0.1, 3.2, 53.3, 46.7 -1,1,a-cure-i1,2018-19,3.0,42.5,Sharon - Sharon Middle,02660305, 4.2, 28.9, 4.7, 57.5, 0.1, 0.1, 4.5, 49.9, 50.1 -1,1,a-cure-i1,2018-19,2.0,9.400000000000006,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.1, 1.2, 4.9, 90.6, 0.2, 0.0, 2.0, 58.2, 41.8 -1,1,a-cure-i1,2018-19,2.8,20.099999999999994,Sherborn - Pine Hill,02690010, 2.4, 7.5, 3.6, 79.9, 0.0, 0.0, 6.5, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,60.5,Shrewsbury - Beal School,02710005, 4.4, 41.8, 8.2, 39.5, 1.7, 0.0, 4.4, 57.1, 42.9 -1,1,a-cure-i1,2018-19,0.0,57.0,Shrewsbury - Calvin Coolidge,02710015, 2.9, 32.3, 16.1, 43.0, 0.2, 0.0, 5.4, 50.4, 49.6 -1,1,a-cure-i1,2018-19,2.8,66.4,Shrewsbury - Floral Street School,02710020, 3.3, 51.9, 6.7, 33.6, 1.0, 0.0, 3.5, 51.9, 48.1 -3.5555555555555554,3.56,a-cure-i1,2018-19,9.2,41.4,Shrewsbury - Oak Middle School,02710030, 3.8, 27.1, 7.6, 58.6, 0.2, 0.0, 2.8, 50.9, 49.1 -2.3854545454545453,2.39,a-cure-i1,2018-19,8.2,55.0,Shrewsbury - Parker Road Preschool,02710040, 3.7, 43.8, 4.5, 45.0, 0.4, 0.0, 2.5, 52.1, 47.9 -1,1,a-cure-i1,2018-19,1.7999999999999998,48.9,Shrewsbury - Sherwood Middle School,02710305, 2.6, 32.7, 9.4, 51.1, 0.2, 0.0, 4.0, 51.6, 48.4 -2.081632653061224,2.08,a-cure-i1,2018-19,5.1,39.2,Shrewsbury - Shrewsbury Sr High,02710505, 2.5, 25.4, 8.0, 60.8, 0.3, 0.1, 3.0, 46.9, 52.9 -1,1,a-cure-i1,2018-19,0.0,40.1,Shrewsbury - Spring Street,02710035, 2.2, 25.3, 6.3, 59.9, 0.3, 0.0, 6.0, 52.5, 47.5 -2.4327485380116958,2.43,a-cure-i1,2018-19,5.2,34.2,Shrewsbury - Walter J Paton,02710025, 2.4, 20.8, 6.8, 65.8, 0.5, 0.0, 3.7, 49.7, 50.3 -15.069767441860462,5,a-cure-i1,2018-19,16.2,17.200000000000003,Shutesbury - Shutesbury Elementary,02720005, 1.6, 0.8, 8.6, 82.8, 0.8, 0.0, 5.5, 46.1, 53.9 -1,1,a-cure-i1,2018-19,0.0,4.900000000000006,Silver Lake - Silver Lake Regional High,07600505, 1.6, 0.9, 1.7, 95.1, 0.1, 0.1, 0.6, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,6.200000000000003,Silver Lake - Silver Lake Regional Middle School,07600405, 1.2, 1.6, 2.1, 93.8, 0.4, 0.2, 0.8, 52.3, 47.7 -4.882175226586104,4.88,a-cure-i1,2018-19,10.1,33.099999999999994,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 6.0, 1.1, 23.6, 66.9, 0.3, 0.0, 2.2, 53.4, 46.1 -1,1,a-cure-i1,2018-19,0.0,9.599999999999994,Somerset - Chace Street,02730005, 1.2, 2.6, 4.0, 90.4, 0.0, 0.0, 1.9, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,7.599999999999994,Somerset - North Elementary,02730008, 0.6, 0.4, 2.6, 92.4, 0.0, 0.0, 3.9, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,8.900000000000006,Somerset - Somerset Middle School,02730305, 1.3, 0.5, 5.0, 91.1, 0.2, 0.0, 1.9, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,10.200000000000003,Somerset - South,02730015, 1.5, 1.5, 4.2, 89.8, 1.1, 0.0, 1.9, 48.3, 51.7 -1,1,a-cure-i1,2018-19,1.3,7.5,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 1.1, 1.4, 3.7, 92.5, 0.1, 0.3, 1.1, 49.8, 50.2 -3.1127272727272723,3.11,a-cure-i1,2018-19,10.7,55.0,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.4, 8.6, 37.0, 45.0, 0.3, 0.0, 3.7, 52.8, 47.2 -3.169188445667125,3.17,a-cure-i1,2018-19,14.4,72.7,Somerville - Arthur D Healey,02740075, 16.4, 7.6, 44.0, 27.3, 0.0, 0.2, 4.4, 49.8, 50.2 -1,1,a-cure-i1,2018-19,0.0,33.599999999999994,Somerville - Benjamin G Brown,02740015, 3.5, 10.9, 8.7, 66.4, 0.4, 0.4, 9.6, 42.4, 57.6 -1,1,a-cure-i1,2018-19,4.5,60.8,Somerville - Capuano Early Childhood Center,02740005, 6.6, 8.1, 37.0, 39.2, 0.0, 0.0, 9.0, 56.3, 43.7 -6.525798525798526,5,a-cure-i1,2018-19,33.2,81.4,Somerville - E Somerville Community,02740111, 3.5, 3.9, 71.9, 18.6, 0.0, 0.0, 2.1, 51.5, 48.5 -1,1,a-cure-i1,2018-19,1.7,72.9,Somerville - Full Circle High School,02740510, 20.8, 2.1, 50.0, 27.1, 0.0, 0.0, 0.0, 64.6, 35.4 -5.095238095238096,5,a-cure-i1,2018-19,10.7,33.599999999999994,Somerville - John F Kennedy,02740083, 8.6, 4.1, 15.0, 66.4, 0.0, 0.2, 5.7, 54.0, 46.0 -1,1,a-cure-i1,2018-19,0.0,78.6,Somerville - Next Wave Junior High,02740410, 21.4, 0.0, 57.1, 21.4, 0.0, 0.0, 0.0, 78.6, 21.4 -4.201780415430267,4.2,a-cure-i1,2018-19,17.700000000000003,67.4,Somerville - Somerville High,02740505, 12.6, 7.2, 45.6, 32.6, 0.1, 0.1, 1.8, 54.3, 45.6 -3.6538461538461537,3.65,a-cure-i1,2018-19,9.5,41.6,Somerville - West Somerville Neighborhood,02740115, 13.0, 4.6, 16.8, 58.4, 0.0, 0.0, 7.3, 52.4, 47.3 -3.1471801925722147,3.15,a-cure-i1,2018-19,14.3,72.7,Somerville - Winter Hill Community,02740120, 15.3, 5.7, 49.7, 27.3, 0.0, 0.0, 2.1, 56.3, 43.5 -1,1,a-cure-i1,2018-19,0.0,20.099999999999994,South Hadley - Michael E. Smith Middle School,02780305, 2.3, 1.9, 13.7, 79.9, 0.0, 0.0, 2.3, 49.4, 50.6 -1,1,a-cure-i1,2018-19,4.1,22.099999999999994,South Hadley - Mosier,02780020, 1.4, 1.4, 17.1, 77.9, 0.2, 0.0, 2.1, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,24.700000000000003,South Hadley - Plains Elementary,02780015, 1.4, 2.8, 17.3, 75.3, 0.0, 0.0, 3.1, 48.3, 51.7 -1,1,a-cure-i1,2018-19,2.2,15.799999999999997,South Hadley - South Hadley High,02780505, 2.0, 2.9, 9.0, 84.2, 0.0, 0.2, 1.8, 49.0, 50.8 -1,1,a-cure-i1,2018-19,4.4,53.9,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 5.2, 0.4, 42.8, 46.1, 1.9, 0.0, 3.6, 60.0, 40.0 -2.707692307692308,2.71,a-cure-i1,2018-19,7.7,45.5,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 29.3, 5.1, 3.8, 54.5, 0.4, 0.1, 6.8, 50.0, 49.8 -1,1,a-cure-i1,2018-19,1.8,12.599999999999994,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 2.0, 1.4, 5.6, 87.4, 0.0, 0.0, 3.6, 67.3, 32.7 -1,1,a-cure-i1,2018-19,0.0,9.799999999999997,Southampton - William E Norris,02750005, 0.2, 1.4, 5.8, 90.2, 0.2, 0.0, 2.2, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,30.200000000000003,Southborough - Albert S. Woodward Memorial School,02760050, 1.6, 17.8, 3.5, 69.8, 0.4, 0.4, 6.6, 52.3, 47.7 -1,1,a-cure-i1,2018-19,0.0,32.900000000000006,Southborough - Margaret A Neary,02760020, 1.2, 18.6, 6.6, 67.1, 0.0, 0.0, 6.6, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,31.599999999999994,Southborough - Mary E Finn School,02760008, 0.9, 21.5, 3.7, 68.4, 0.6, 0.0, 4.9, 50.9, 49.1 -3.165467625899281,3.17,a-cure-i1,2018-19,5.5,27.799999999999997,Southborough - P Brent Trottier,02760305, 0.2, 17.6, 5.3, 72.2, 0.0, 0.0, 4.6, 52.0, 48.0 -5.349845201238391,5,a-cure-i1,2018-19,21.6,64.6,Southbridge - Charlton Street,02770005, 3.1, 1.0, 56.7, 35.4, 0.3, 0.0, 3.4, 47.1, 52.9 -1.5225806451612904,1.52,a-cure-i1,2018-19,5.9,62.0,Southbridge - Eastford Road,02770010, 1.9, 0.8, 57.3, 38.0, 0.3, 0.3, 1.4, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,46.9,Southbridge - Southbridge Academy,02770525, 3.1, 0.0, 37.5, 53.1, 0.0, 0.0, 6.3, 75.0, 25.0 -2.948717948717949,2.95,a-cure-i1,2018-19,11.5,62.4,Southbridge - Southbridge High School,02770515, 1.0, 1.0, 58.5, 37.6, 0.4, 0.2, 1.2, 51.9, 48.1 -1.8520900321543408,1.85,a-cure-i1,2018-19,7.2,62.2,Southbridge - Southbridge Middle School,02770315, 2.8, 2.8, 55.1, 37.8, 0.2, 0.0, 1.2, 53.5, 46.5 -1.6074188562596599,1.61,a-cure-i1,2018-19,6.5,64.7,Southbridge - West Street,02770020, 1.2, 0.9, 61.1, 35.3, 0.0, 0.0, 1.5, 50.0, 50.0 -2.3867403314917133,2.39,a-cure-i1,2018-19,8.100000000000001,54.3,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 34.5, 1.7, 12.4, 45.7, 0.1, 0.0, 5.6, 50.2, 49.7 -9.802816901408448,5,a-cure-i1,2018-19,8.7,14.200000000000003,Southern Berkshire - Mt Everett Regional,07650505, 1.6, 0.0, 6.5, 85.8, 0.6, 0.0, 5.5, 45.6, 54.4 -27.412587412587417,5,a-cure-i1,2018-19,24.5,14.299999999999997,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 6.5, 85.7, 2.6, 0.0, 5.2, 48.1, 51.9 -7.376623376623374,5,a-cure-i1,2018-19,7.1,15.400000000000006,Southern Berkshire - South Egremont,07650030, 0.0, 7.7, 7.7, 84.6, 0.0, 0.0, 0.0, 30.8, 69.2 -1,1,a-cure-i1,2018-19,2.4,13.099999999999994,Southern Berkshire - Undermountain,07650035, 0.3, 0.0, 8.0, 86.9, 0.3, 0.0, 4.5, 56.4, 43.6 -1,1,a-cure-i1,2018-19,0.9,13.0,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 1.1, 0.6, 9.5, 87.0, 0.3, 0.0, 1.4, 58.3, 41.7 -1,1,a-cure-i1,2018-19,0.0,9.0,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 2.0, 0.7, 3.7, 91.0, 0.2, 0.0, 2.4, 49.6, 50.4 -14.476190476190466,5,a-cure-i1,2018-19,7.6,8.400000000000006,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.8, 0.8, 3.8, 91.6, 0.3, 0.0, 1.7, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,12.0,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 1.5, 1.2, 6.5, 88.0, 0.6, 0.0, 2.3, 54.5, 45.5 -1,1,a-cure-i1,2018-19,0.0,17.900000000000006,Spencer-E Brookfield - David Prouty High,07670505, 1.8, 1.8, 10.9, 82.1, 0.7, 0.0, 2.6, 55.5, 44.5 -1,1,a-cure-i1,2018-19,0.0,16.900000000000006,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.5, 0.0, 10.7, 83.1, 0.4, 0.0, 3.3, 53.9, 46.1 -1,1,a-cure-i1,2018-19,0.0,20.799999999999997,Spencer-E Brookfield - Knox Trail Middle School,07670415, 1.8, 1.8, 13.7, 79.2, 0.2, 0.0, 3.2, 55.9, 44.1 -1,1,a-cure-i1,2018-19,0.0,20.0,Spencer-E Brookfield - Wire Village School,07670040, 2.1, 0.2, 15.8, 80.0, 0.0, 0.0, 1.9, 52.6, 47.2 -4.666666666666667,4.67,a-cure-i1,2018-19,23.1,79.2,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 24.2, 0.0, 50.7, 20.8, 0.0, 0.0, 4.3, 46.3, 53.7 -2.2211764705882353,2.22,a-cure-i1,2018-19,11.8,85.0,Springfield - Alice B Beal Elementary,02810175, 15.8, 11.9, 54.5, 15.0, 0.0, 0.0, 2.8, 49.0, 51.0 -1.153664302600473,1.15,a-cure-i1,2018-19,6.1,84.6,Springfield - Arthur T Talmadge,02810165, 25.8, 0.8, 55.0, 15.4, 0.0, 0.0, 2.9, 53.3, 46.7 -2.7986798679867984,2.8,a-cure-i1,2018-19,15.9,90.9,Springfield - Balliet Middle School,02810360, 18.2, 0.0, 66.7, 9.1, 0.0, 0.0, 6.1, 60.6, 39.4 -1.842323651452282,1.84,a-cure-i1,2018-19,11.1,96.4,Springfield - Brightwood,02810025, 13.6, 0.0, 82.2, 3.6, 0.0, 0.0, 0.6, 50.7, 49.3 -2.734902763561924,2.73,a-cure-i1,2018-19,16.7,97.7,Springfield - Chestnut Academy,02810365, 9.9, 0.3, 86.5, 2.3, 0.3, 0.0, 0.7, 52.6, 47.4 -6.998851894374283,5,a-cure-i1,2018-19,38.1,87.1,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 21.8, 3.7, 58.6, 12.9, 0.6, 0.3, 2.1, 44.8, 55.2 -7.3027522935779805,5,a-cure-i1,2018-19,39.8,87.2,Springfield - Conservatory of the Arts,02810475, 19.5, 0.0, 66.0, 12.8, 0.3, 0.0, 1.5, 29.9, 70.1 -1.4611872146118723,1.46,a-cure-i1,2018-19,8.0,87.6,Springfield - Daniel B Brunton,02810035, 22.7, 0.4, 61.3, 12.4, 0.0, 0.2, 2.9, 46.3, 53.7 -1.8604651162790697,1.86,a-cure-i1,2018-19,10.5,90.3,Springfield - Early Childhood Education Center,02810001, 16.8, 2.6, 66.5, 9.7, 1.3, 0.0, 3.2, 67.7, 32.3 -1.9164835164835166,1.92,a-cure-i1,2018-19,10.9,91.0,Springfield - Edward P. Boland School,02810010, 9.7, 1.6, 77.6, 9.0, 0.3, 0.0, 1.8, 59.0, 41.0 -5.012875536480687,5,a-cure-i1,2018-19,29.2,93.2,Springfield - Elias Brookings,02810030, 21.1, 0.3, 67.3, 6.8, 1.2, 0.0, 3.3, 53.9, 46.1 -1.91044776119403,1.91,a-cure-i1,2018-19,11.200000000000001,93.8,Springfield - Forest Park Middle,02810325, 17.7, 7.4, 66.8, 6.2, 0.1, 0.0, 1.8, 51.7, 48.3 -5.55826859045505,5,a-cure-i1,2018-19,31.3,90.1,Springfield - Frank H Freedman,02810075, 22.5, 1.5, 62.0, 9.9, 0.6, 0.0, 3.4, 52.8, 47.2 -1.8766626360338572,1.88,a-cure-i1,2018-19,9.7,82.7,Springfield - Frederick Harris,02810080, 17.8, 3.7, 55.7, 17.3, 0.3, 0.0, 5.3, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,72.7,Springfield - Gateway to College at Holyoke Community College,02810575, 18.2, 0.0, 54.5, 27.3, 0.0, 0.0, 0.0, 13.6, 86.4 -1,1,a-cure-i1,2018-19,0.0,84.4,Springfield - Gateway to College at Springfield Technical Community College,02810580, 31.3, 0.0, 53.1, 15.6, 0.0, 0.0, 0.0, 37.5, 62.5 -2.403361344537815,2.4,a-cure-i1,2018-19,14.3,95.2,Springfield - German Gerena Community School,02810195, 13.5, 0.8, 79.8, 4.8, 0.1, 0.0, 1.0, 49.6, 50.4 -0.997772828507795,1,a-cure-i1,2018-19,5.6,89.8,Springfield - Glenwood,02810065, 10.9, 1.8, 75.1, 10.2, 0.0, 0.0, 2.1, 52.6, 47.4 -2.7241770715096485,2.72,a-cure-i1,2018-19,15.0,88.1,Springfield - Glickman Elementary,02810068, 24.0, 2.4, 57.8, 11.9, 0.9, 0.0, 3.0, 56.8, 43.2 -5.147826086956522,5,a-cure-i1,2018-19,29.6,92.0,Springfield - High School Of Commerce,02810510, 18.7, 1.9, 69.9, 8.0, 0.1, 0.1, 1.4, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,90.1,Springfield - Hiram L Dorman,02810050, 24.0, 1.1, 63.6, 9.9, 0.0, 0.0, 1.4, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,93.7,Springfield - Homer Street,02810085, 27.3, 1.5, 62.3, 6.3, 0.0, 0.0, 2.5, 51.1, 48.9 -6.988505747126436,5,a-cure-i1,2018-19,41.8,95.7,Springfield - Impact Prep at Chestnut,02810366, 13.6, 0.0, 81.9, 4.3, 0.0, 0.0, 0.3, 49.2, 50.8 -1,1,a-cure-i1,2018-19,2.8,87.7,Springfield - Indian Orchard Elementary,02810100, 18.1, 1.8, 64.9, 12.3, 0.5, 0.0, 2.3, 52.6, 47.4 -7.521064301552106,5,a-cure-i1,2018-19,42.4,90.2,Springfield - John F Kennedy Middle,02810328, 20.6, 0.6, 66.8, 9.8, 0.2, 0.0, 2.0, 55.0, 45.0 -4.046620046620046,4.05,a-cure-i1,2018-19,21.7,85.8,Springfield - John J Duggan Middle,02810320, 27.1, 2.4, 54.5, 14.2, 0.4, 0.0, 1.3, 52.2, 47.8 -1.0689289501590669,1.07,a-cure-i1,2018-19,6.3,94.3,Springfield - Kensington International School,02810110, 16.6, 2.9, 71.3, 5.7, 0.3, 0.0, 3.2, 47.8, 52.2 -1,1,a-cure-i1,2018-19,0.0,90.4,Springfield - Liberty,02810115, 11.0, 2.1, 75.5, 9.6, 0.0, 0.0, 1.8, 48.6, 51.4 -9.122302158273381,5,a-cure-i1,2018-19,31.7,55.6,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 44.4, 44.4, 11.1, 0.0, 0.0, 77.8, 22.2 -4.062176165803109,4.06,a-cure-i1,2018-19,24.5,96.5,Springfield - Lincoln,02810120, 9.0, 0.3, 85.0, 3.5, 0.0, 0.0, 2.3, 50.6, 49.4 -5.719376391982183,5,a-cure-i1,2018-19,32.1,89.8,Springfield - M Marcus Kiley Middle,02810330, 21.8, 2.3, 65.2, 10.2, 0.0, 0.0, 0.4, 55.6, 44.4 -2.3121387283236996,2.31,a-cure-i1,2018-19,12.5,86.5,Springfield - Margaret C Ells,02810060, 22.3, 1.7, 59.4, 13.5, 1.3, 0.0, 1.7, 59.0, 41.0 -1.0012515644555693,1.0,a-cure-i1,2018-19,5.0,79.9,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 15.4, 5.9, 55.0, 20.1, 0.0, 0.0, 3.6, 48.5, 51.5 -2.2550335570469797,2.26,a-cure-i1,2018-19,12.6,89.4,Springfield - Mary M Lynch,02810140, 18.9, 1.1, 67.9, 10.6, 0.0, 0.0, 1.5, 44.5, 55.5 -2.7536557930258714,2.75,a-cure-i1,2018-19,15.299999999999999,88.9,Springfield - Mary M Walsh,02810155, 18.2, 0.0, 67.9, 11.1, 0.3, 0.0, 2.4, 50.3, 49.7 -2.8340807174887894,2.83,a-cure-i1,2018-19,15.8,89.2,Springfield - Mary O Pottenger,02810145, 10.5, 3.0, 73.7, 10.8, 0.2, 0.0, 1.8, 49.4, 50.6 -0.9189743589743589,1,a-cure-i1,2018-19,5.6,97.5,Springfield - Milton Bradley School,02810023, 16.5, 0.4, 79.3, 2.5, 0.0, 0.0, 1.4, 49.9, 50.1 -5.503184713375796,5,a-cure-i1,2018-19,32.4,94.2,Springfield - Rebecca M Johnson,02810055, 24.9, 0.0, 66.7, 5.8, 0.0, 0.0, 2.6, 51.8, 48.2 -5.309967141292443,5,a-cure-i1,2018-19,30.3,91.3,Springfield - Rise Academy at Van Sickle,02810480, 14.0, 0.3, 74.8, 8.7, 0.0, 0.0, 2.2, 54.2, 45.8 -3.1539313399778512,3.15,a-cure-i1,2018-19,17.799999999999997,90.3,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 18.0, 1.3, 70.3, 9.7, 0.0, 0.0, 0.6, 45.7, 54.3 -2.966292134831461,2.97,a-cure-i1,2018-19,16.5,89.0,Springfield - Samuel Bowles,02810020, 16.5, 0.6, 71.3, 11.0, 0.0, 0.0, 0.6, 50.2, 49.8 -3.161094224924012,3.16,a-cure-i1,2018-19,19.5,98.7,Springfield - South End Middle School,02810355, 9.6, 0.0, 88.2, 1.3, 0.0, 0.0, 0.9, 47.2, 52.8 -3.1779563719862223,3.18,a-cure-i1,2018-19,17.299999999999997,87.1,Springfield - Springfield Central High,02810500, 23.9, 5.4, 56.7, 12.9, 0.0, 0.1, 1.0, 53.8, 46.2 -4.107351225204201,4.11,a-cure-i1,2018-19,22.0,85.7,Springfield - Springfield High School,02810570, 26.4, 0.0, 58.9, 14.3, 0.0, 0.0, 0.4, 55.8, 44.2 -4.485651214128035,4.49,a-cure-i1,2018-19,25.4,90.6,Springfield - Springfield High School of Science and Technology,02810530, 17.7, 1.8, 70.0, 9.4, 0.1, 0.1, 0.9, 58.5, 41.5 -1,1,a-cure-i1,2018-19,0.0,76.0,Springfield - Springfield International Academy at Johnson,02810215, 40.0, 4.0, 32.0, 24.0, 0.0, 0.0, 0.0, 44.0, 56.0 -4.901072705601907,4.9,a-cure-i1,2018-19,25.7,83.9,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 9.7, 74.2, 16.1, 0.0, 0.0, 0.0, 77.4, 22.6 -6.580790960451977,5,a-cure-i1,2018-19,36.4,88.5,Springfield - Springfield Public Day Elementary School,02810005, 21.3, 0.0, 67.2, 11.5, 0.0, 0.0, 0.0, 90.2, 9.8 -8.026696329254726,5,a-cure-i1,2018-19,45.099999999999994,89.9,Springfield - Springfield Public Day High School,02810550, 18.2, 0.0, 70.7, 10.1, 0.0, 0.0, 1.0, 74.7, 25.3 -1,1,a-cure-i1,2018-19,0.0,95.9,Springfield - Springfield Public Day Middle School,02810345, 24.5, 0.0, 69.4, 4.1, 0.0, 0.0, 2.0, 83.7, 16.3 -1,1,a-cure-i1,2018-19,0.0,90.7,Springfield - Springfield Vocational Academy,02810675, 18.6, 4.1, 67.0, 9.3, 0.0, 0.0, 1.0, 57.7, 42.3 -4.202764976958525,4.2,a-cure-i1,2018-19,22.799999999999997,86.8,Springfield - STEM Middle Academy,02810350, 16.2, 2.4, 67.2, 13.2, 0.0, 0.0, 1.0, 59.1, 40.9 -2.751369112814896,2.75,a-cure-i1,2018-19,15.7,91.3,Springfield - Sumner Avenue,02810160, 18.9, 5.1, 64.7, 8.7, 0.0, 0.0, 2.6, 54.5, 45.5 -3.279012345679013,3.28,a-cure-i1,2018-19,16.6,81.0,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 24.9, 1.6, 53.1, 19.0, 0.0, 0.1, 1.3, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,89.2,Springfield - Thomas M Balliet,02810015, 23.8, 1.5, 60.2, 10.8, 0.0, 0.0, 3.7, 53.7, 46.3 -4.161044613710555,4.16,a-cure-i1,2018-19,23.9,91.9,Springfield - Van Sickle Academy,02810485, 11.2, 1.5, 78.5, 8.1, 0.0, 0.0, 0.8, 56.2, 43.8 -1.8007033997655335,1.8,a-cure-i1,2018-19,9.6,85.3,Springfield - Warner,02810180, 18.8, 2.3, 59.4, 14.7, 0.4, 0.0, 4.5, 53.4, 46.6 -1.2972972972972974,1.3,a-cure-i1,2018-19,7.2,88.8,Springfield - Washington,02810185, 12.6, 7.4, 66.2, 11.2, 0.0, 0.0, 2.6, 53.6, 46.4 -1.6427807486631016,1.64,a-cure-i1,2018-19,9.6,93.5,Springfield - White Street,02810190, 20.0, 3.1, 67.9, 6.5, 0.2, 0.0, 2.2, 50.8, 49.2 -2.8305084745762707,2.83,a-cure-i1,2018-19,16.7,94.4,Springfield - William N. DeBerry,02810045, 20.1, 0.4, 72.6, 5.6, 0.4, 0.0, 0.9, 57.3, 42.7 -3.9598662207357855,3.96,a-cure-i1,2018-19,22.2,89.7,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 21.4, 2.2, 63.8, 10.3, 0.0, 0.0, 2.2, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,21.099999999999994,Stoneham - Colonial Park,02840005, 1.5, 6.5, 9.5, 78.9, 0.0, 0.0, 3.6, 56.4, 43.6 -1,1,a-cure-i1,2018-19,0.0,23.599999999999994,Stoneham - Robin Hood,02840025, 2.8, 6.6, 8.6, 76.4, 0.0, 0.0, 5.6, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,20.799999999999997,Stoneham - South,02840030, 3.0, 4.5, 8.4, 79.2, 0.6, 0.0, 4.2, 49.1, 50.9 -5.619512195121952,5,a-cure-i1,2018-19,7.2,20.5,Stoneham - Stoneham Central Middle School,02840405, 2.3, 5.1, 9.4, 79.5, 0.4, 0.0, 3.3, 50.1, 49.9 -1,1,a-cure-i1,2018-19,3.8,16.599999999999994,Stoneham - Stoneham High,02840505, 2.7, 4.2, 7.0, 83.4, 0.0, 0.0, 2.7, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,48.4,Stoughton - Edwin A Jones Early Childhood Center,02850012, 23.1, 4.4, 14.3, 51.6, 0.0, 1.1, 5.5, 47.3, 52.7 -1,1,a-cure-i1,2018-19,0.0,42.3,Stoughton - Helen Hansen Elementary,02850010, 18.0, 4.1, 12.2, 57.7, 0.0, 0.0, 8.1, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,38.1,Stoughton - Joseph H Gibbons,02850025, 17.1, 3.6, 12.0, 61.9, 0.0, 0.0, 5.3, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,57.1,Stoughton - Joseph R Dawe Jr Elementary,02850014, 28.5, 8.6, 13.8, 42.9, 0.0, 0.3, 5.8, 53.0, 47.0 -2.735930735930736,2.74,a-cure-i1,2018-19,7.9,46.2,Stoughton - O'Donnell Middle School,02850405, 22.2, 6.4, 11.1, 53.8, 0.2, 0.7, 5.7, 51.5, 48.5 -1,1,a-cure-i1,2018-19,4.4,57.3,Stoughton - Richard L. Wilkins Elementary School,02850020, 24.4, 4.6, 21.5, 42.7, 0.3, 0.0, 6.6, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,51.0,Stoughton - South Elementary,02850015, 20.2, 11.7, 11.7, 49.0, 0.4, 0.8, 6.1, 51.8, 48.2 -1,1,a-cure-i1,2018-19,2.7,42.5,Stoughton - Stoughton High,02850505, 25.7, 6.1, 7.8, 57.5, 0.0, 0.2, 2.8, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,14.0,Sturbridge - Burgess Elementary,02870005, 1.2, 1.6, 5.9, 86.0, 0.5, 0.1, 4.7, 55.6, 44.4 -1,1,a-cure-i1,2018-19,4.6,14.700000000000003,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.5, 3.5, 5.5, 85.3, 0.5, 0.1, 2.6, 44.4, 55.6 -1,1,a-cure-i1,2018-19,3.4,22.799999999999997,Sudbury - Ephraim Curtis Middle,02880305, 3.7, 8.4, 3.8, 77.2, 0.0, 0.1, 6.8, 47.1, 52.9 -1,1,a-cure-i1,2018-19,4.8,25.299999999999997,Sudbury - General John Nixon Elementary,02880025, 5.4, 10.7, 3.6, 74.7, 0.0, 0.3, 5.4, 54.5, 45.5 -5.090909090909092,5,a-cure-i1,2018-19,9.1,28.599999999999994,Sudbury - Israel Loring School,02880015, 3.6, 11.6, 6.3, 71.4, 0.2, 0.4, 6.5, 52.2, 47.8 -1,1,a-cure-i1,2018-19,2.2,20.900000000000006,Sudbury - Josiah Haynes,02880010, 2.2, 9.2, 2.8, 79.1, 0.0, 0.0, 6.7, 55.0, 45.0 -1,1,a-cure-i1,2018-19,0.0,25.700000000000003,Sudbury - Peter Noyes,02880030, 3.0, 11.1, 3.5, 74.3, 0.0, 0.0, 8.1, 52.7, 47.3 -2.476780185758514,2.48,a-cure-i1,2018-19,5.0,32.3,Sunderland - Sunderland Elementary,02890005, 3.4, 8.2, 10.8, 67.7, 0.0, 0.0, 9.9, 54.7, 45.3 -1,1,a-cure-i1,2018-19,0.0,5.799999999999997,Sutton - Sutton Early Learning,02900003, 1.0, 0.7, 1.7, 94.2, 0.3, 0.0, 2.0, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,10.200000000000003,Sutton - Sutton Elementary,02900005, 0.6, 2.2, 1.6, 89.8, 0.0, 0.0, 5.7, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,8.299999999999997,Sutton - Sutton High School,02900510, 0.5, 0.3, 3.1, 91.7, 0.0, 0.0, 4.4, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,9.700000000000003,Sutton - Sutton Middle School,02900305, 1.7, 2.2, 2.2, 90.3, 0.0, 0.0, 3.6, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.7,25.799999999999997,Swampscott - Clarke,02910005, 1.9, 3.8, 17.4, 74.2, 0.5, 0.0, 2.3, 52.6, 47.4 -1,1,a-cure-i1,2018-19,4.2,19.599999999999994,Swampscott - Hadley,02910010, 2.5, 3.1, 10.0, 80.4, 0.0, 0.0, 4.0, 54.5, 45.5 -11.000000000000005,5,a-cure-i1,2018-19,6.6,9.599999999999994,Swampscott - Stanley,02910020, 0.4, 2.1, 5.9, 90.4, 0.0, 0.0, 1.3, 56.5, 43.5 -6.5753424657534225,5,a-cure-i1,2018-19,9.0,21.900000000000006,Swampscott - Swampscott High,02910505, 4.8, 2.7, 12.4, 78.1, 0.0, 0.1, 1.8, 46.4, 53.6 -1,1,a-cure-i1,2018-19,1.9,19.299999999999997,Swampscott - Swampscott Middle,02910305, 3.6, 2.2, 10.2, 80.7, 0.5, 0.0, 2.7, 52.2, 47.8 -1,1,a-cure-i1,2018-19,0.0,3.299999999999997,Swansea - Elizabeth S Brown,02920006, 0.7, 1.1, 0.7, 96.7, 0.4, 0.0, 0.4, 45.8, 54.2 -1,1,a-cure-i1,2018-19,0.0,5.299999999999997,Swansea - Gardner,02920015, 0.4, 1.1, 2.3, 94.7, 0.0, 0.0, 1.5, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,6.700000000000003,Swansea - Joseph Case High,02920505, 1.1, 1.7, 2.8, 93.3, 0.2, 0.0, 0.9, 52.1, 47.9 -1,1,a-cure-i1,2018-19,2.7,4.0,Swansea - Joseph Case Jr High,02920305, 0.9, 0.2, 2.0, 96.0, 0.0, 0.0, 0.9, 52.7, 47.3 -1,1,a-cure-i1,2018-19,0.0,9.900000000000006,Swansea - Joseph G Luther,02920020, 0.5, 1.0, 4.0, 90.1, 1.0, 0.0, 3.5, 46.5, 53.5 -1,1,a-cure-i1,2018-19,0.0,6.5,Swansea - Mark G Hoyle Elementary,02920017, 0.8, 1.9, 1.9, 93.5, 0.0, 0.0, 1.9, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,9.799999999999997,Tantasqua - Tantasqua Regional Jr High,07700405, 0.7, 0.8, 4.9, 90.2, 0.2, 0.0, 3.2, 52.5, 47.5 -1,1,a-cure-i1,2018-19,2.3,10.799999999999997,Tantasqua - Tantasqua Regional Sr High,07700505, 1.1, 1.5, 5.3, 89.2, 0.1, 0.0, 2.7, 43.6, 56.3 -1,1,a-cure-i1,2018-19,0.0,8.400000000000006,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.4, 5.3, 91.6, 0.2, 0.0, 2.3, 58.4, 41.6 -1,1,a-cure-i1,2018-19,2.4,24.700000000000003,Taunton - Benjamin Friedman Middle,02930315, 9.7, 0.8, 9.1, 75.3, 0.0, 0.1, 5.0, 51.7, 48.3 -1,1,a-cure-i1,2018-19,0.0,29.299999999999997,Taunton - East Taunton Elementary,02930010, 14.2, 0.8, 8.6, 70.7, 0.0, 0.0, 5.6, 47.7, 52.3 -1,1,a-cure-i1,2018-19,0.0,24.099999999999994,Taunton - Edmund Hatch Bennett,02930007, 10.0, 1.0, 9.0, 75.9, 0.3, 0.0, 3.9, 50.2, 49.8 -1,1,a-cure-i1,2018-19,0.0,33.0,Taunton - Edward F. Leddy Preschool,02930005, 12.4, 2.8, 14.5, 67.0, 0.0, 0.0, 3.2, 60.6, 39.4 -1,1,a-cure-i1,2018-19,3.3,48.0,Taunton - Elizabeth Pole,02930027, 21.3, 1.6, 16.2, 52.0, 0.0, 0.0, 9.0, 53.6, 46.4 -1.91044776119403,1.91,a-cure-i1,2018-19,7.2,60.3,Taunton - H H Galligan,02930057, 31.8, 0.8, 18.2, 39.7, 0.4, 0.8, 8.3, 52.9, 47.1 -2.3496503496503496,2.35,a-cure-i1,2018-19,6.3,42.9,Taunton - Hopewell,02930035, 20.2, 0.7, 12.4, 57.1, 0.4, 0.0, 9.2, 44.7, 55.3 -1,1,a-cure-i1,2018-19,2.0,47.3,Taunton - John F Parker Middle,02930305, 23.0, 1.0, 16.0, 52.7, 0.8, 0.2, 6.2, 45.9, 54.1 -1,1,a-cure-i1,2018-19,3.7,22.599999999999994,Taunton - Joseph C Chamberlain,02930008, 10.8, 2.2, 5.6, 77.4, 0.2, 0.0, 3.8, 52.8, 47.2 -1,1,a-cure-i1,2018-19,4.1,31.900000000000006,Taunton - Joseph H Martin,02930042, 15.4, 0.9, 10.2, 68.1, 0.3, 0.1, 5.0, 54.1, 45.9 -1,1,a-cure-i1,2018-19,4.0,43.7,Taunton - Mulcahey Elementary School,02930015, 19.5, 1.3, 17.4, 56.3, 0.2, 0.0, 5.3, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,35.599999999999994,Taunton - Taunton Alternative High School,02930525, 10.9, 0.0, 14.9, 64.4, 1.0, 0.0, 8.9, 66.3, 33.7 -2.4021447721179623,2.4,a-cure-i1,2018-19,5.6,37.3,Taunton - Taunton High,02930505, 17.5, 1.9, 13.6, 62.7, 0.2, 0.2, 3.9, 49.8, 50.2 -1,1,a-cure-i1,2018-19,0.0,34.099999999999994,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 8.2, 2.8, 15.0, 65.9, 0.4, 0.2, 7.5, 42.5, 57.5 -1,1,a-cure-i1,2018-19,0.0,10.099999999999994,Tewksbury - Heath-Brook,02950010, 2.3, 2.9, 3.8, 89.9, 0.0, 0.0, 1.2, 48.0, 52.0 -1,1,a-cure-i1,2018-19,1.4,11.5,Tewksbury - John F. Ryan,02950023, 4.1, 2.9, 3.7, 88.5, 0.2, 0.0, 0.6, 49.7, 50.3 -1,1,a-cure-i1,2018-19,2.4,11.299999999999997,Tewksbury - John W. Wynn Middle,02950305, 3.3, 3.5, 3.3, 88.7, 0.2, 0.0, 1.1, 53.7, 46.3 -1,1,a-cure-i1,2018-19,3.1,18.700000000000003,Tewksbury - L F Dewing,02950001, 4.7, 5.4, 6.9, 81.3, 0.0, 0.2, 1.5, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,9.900000000000006,Tewksbury - Louise Davy Trahan,02950025, 1.5, 1.0, 3.9, 90.1, 0.0, 0.0, 3.4, 45.3, 54.7 -1,1,a-cure-i1,2018-19,0.0,16.599999999999994,Tewksbury - North Street,02950020, 4.9, 3.5, 7.1, 83.4, 0.0, 0.0, 1.1, 52.3, 47.7 -1,1,a-cure-i1,2018-19,1.6,11.5,Tewksbury - Tewksbury Memorial High,02950505, 2.7, 3.7, 3.9, 88.5, 0.0, 0.0, 1.1, 49.6, 50.4 -4.385786802030458,4.39,a-cure-i1,2018-19,10.8,39.4,Tisbury - Tisbury Elementary,02960005, 5.1, 0.3, 25.9, 60.6, 1.3, 0.0, 6.7, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,6.700000000000003,Topsfield - Proctor Elementary,02980005, 0.7, 1.5, 1.1, 93.3, 0.4, 0.0, 3.0, 46.3, 53.7 -1,1,a-cure-i1,2018-19,3.0,8.099999999999994,Topsfield - Steward Elementary,02980010, 0.3, 0.8, 3.2, 91.9, 1.1, 0.0, 2.7, 51.8, 48.2 -1,1,a-cure-i1,2018-19,1.3,12.099999999999994,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.7, 1.0, 5.7, 87.9, 0.3, 0.3, 4.2, 58.3, 41.5 -1,1,a-cure-i1,2018-19,0.0,6.099999999999994,Triton - Newbury Elementary,07730020, 0.5, 1.5, 1.9, 93.9, 0.0, 0.7, 1.5, 53.8, 46.2 -1,1,a-cure-i1,2018-19,0.0,5.299999999999997,Triton - Pine Grove,07730025, 0.5, 1.2, 1.2, 94.7, 0.0, 0.0, 2.6, 51.5, 48.5 -1,1,a-cure-i1,2018-19,0.0,13.599999999999994,Triton - Salisbury Elementary,07730015, 2.3, 2.7, 5.2, 86.4, 0.0, 0.0, 3.3, 51.3, 48.7 -12.421052631578958,5,a-cure-i1,2018-19,5.9,7.599999999999994,Triton - Triton Regional High School,07730505, 0.9, 1.5, 3.8, 92.4, 0.3, 0.1, 1.0, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,5.200000000000003,Triton - Triton Regional Middle School,07730405, 0.8, 1.0, 2.1, 94.8, 0.0, 0.0, 1.3, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,35.8,Truro - Truro Central,03000005, 7.5, 0.0, 10.4, 64.2, 0.0, 0.0, 17.9, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,20.400000000000006,Tyngsborough - Tyngsborough Elementary,03010020, 5.0, 7.1, 4.6, 79.6, 0.1, 0.0, 3.5, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,15.700000000000003,Tyngsborough - Tyngsborough High School,03010505, 1.9, 5.6, 4.2, 84.3, 0.4, 0.0, 3.6, 47.5, 52.5 -1,1,a-cure-i1,2018-19,3.4,17.900000000000006,Tyngsborough - Tyngsborough Middle,03010305, 3.3, 7.4, 4.9, 82.1, 0.3, 0.0, 1.9, 52.5, 47.5 -3.3805128205128208,3.38,a-cure-i1,2018-19,20.6,97.5,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 44.1, 6.0, 44.7, 2.5, 0.0, 0.2, 2.5, 52.4, 47.6 -5.096056622851365,5,a-cure-i1,2018-19,31.500000000000004,98.9,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 54.8, 0.8, 40.5, 1.1, 0.4, 0.7, 1.7, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,15.0,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 1.7, 85.0, 3.3, 0.0, 10.0, 51.7, 48.3 -1,1,a-cure-i1,2018-19,3.1,19.900000000000006,Up-Island Regional - West Tisbury Elementary,07740020, 1.1, 0.8, 6.5, 80.1, 4.8, 0.0, 6.7, 53.9, 46.1 -1,1,a-cure-i1,2018-19,1.8,15.200000000000003,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 4.7, 1.7, 2.7, 84.8, 0.7, 0.0, 5.4, 64.2, 35.8 -1,1,a-cure-i1,2018-19,0.0,36.4,Uxbridge - Gateway to College,03040515, 2.3, 6.8, 20.5, 63.6, 4.5, 2.3, 0.0, 43.2, 56.8 -1,1,a-cure-i1,2018-19,0.0,8.400000000000006,Uxbridge - Taft Early Learning Center,03040005, 1.2, 1.1, 4.1, 91.6, 0.2, 0.0, 1.8, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,11.0,Uxbridge - Uxbridge High,03040505, 2.2, 1.2, 4.6, 89.0, 0.3, 0.0, 2.7, 55.7, 44.3 -1,1,a-cure-i1,2018-19,0.0,8.5,Uxbridge - Whitin Intermediate,03040405, 0.8, 1.5, 3.8, 91.5, 0.8, 0.0, 1.7, 54.0, 46.0 -5.215562565720295,5,a-cure-i1,2018-19,31.0,95.1,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 17.0, 1.4, 74.1, 4.9, 0.3, 0.0, 2.3, 46.4, 53.6 -1,1,a-cure-i1,2018-19,0.0,11.200000000000003,Wachusett - Central Tree Middle,07750310, 1.3, 3.1, 3.1, 88.8, 0.0, 0.0, 3.7, 48.6, 51.4 -1,1,a-cure-i1,2018-19,3.3,11.599999999999994,Wachusett - Chocksett Middle School,07750315, 1.1, 1.7, 6.6, 88.4, 0.0, 0.0, 2.2, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,17.400000000000006,Wachusett - Davis Hill Elementary,07750018, 3.3, 0.9, 8.6, 82.6, 0.7, 0.0, 4.0, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,15.900000000000006,Wachusett - Dawson,07750020, 4.2, 4.6, 4.8, 84.1, 0.0, 0.0, 2.3, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,16.900000000000006,Wachusett - Early Childhood Center,07750001, 3.2, 2.6, 8.4, 83.1, 0.0, 0.0, 2.6, 61.0, 39.0 -1,1,a-cure-i1,2018-19,0.0,13.200000000000003,Wachusett - Glenwood Elementary School,07750060, 2.5, 2.0, 4.8, 86.8, 0.8, 0.0, 3.1, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,12.700000000000003,Wachusett - Houghton Elementary,07750027, 2.5, 1.9, 6.1, 87.3, 0.0, 0.0, 2.2, 53.5, 46.5 -1,1,a-cure-i1,2018-19,0.0,14.799999999999997,Wachusett - Leroy E.Mayo,07750032, 3.8, 4.0, 5.2, 85.2, 0.0, 0.2, 1.7, 52.4, 47.6 -1,1,a-cure-i1,2018-19,2.2,13.900000000000006,Wachusett - Mountview Middle,07750305, 2.3, 4.3, 5.0, 86.1, 0.1, 0.0, 2.2, 49.8, 50.2 -1,1,a-cure-i1,2018-19,0.0,8.0,Wachusett - Naquag Elementary School,07750005, 1.0, 1.6, 3.8, 92.0, 0.0, 0.0, 1.6, 49.0, 51.0 -1,1,a-cure-i1,2018-19,0.0,13.799999999999997,Wachusett - Paxton Center,07750040, 1.8, 2.6, 7.7, 86.2, 0.0, 0.0, 1.8, 53.4, 46.6 -1,1,a-cure-i1,2018-19,0.0,9.099999999999994,Wachusett - Thomas Prince,07750045, 1.0, 1.3, 4.7, 90.9, 0.0, 0.0, 2.1, 49.3, 50.7 -1,1,a-cure-i1,2018-19,0.7,11.5,Wachusett - Wachusett Regional High,07750505, 1.8, 3.1, 4.8, 88.5, 0.1, 0.0, 1.8, 48.3, 51.6 -1,1,a-cure-i1,2018-19,0.0,12.299999999999997,Wakefield - Dolbeare,03050005, 1.3, 2.2, 6.1, 87.7, 0.4, 0.0, 2.2, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,23.200000000000003,Wakefield - Early Childhood Center at the Doyle School,03050001, 2.1, 5.6, 10.6, 76.8, 0.0, 1.4, 3.5, 59.9, 40.1 -1,1,a-cure-i1,2018-19,1.2,16.900000000000006,Wakefield - Galvin Middle School,03050310, 3.5, 2.8, 7.4, 83.1, 0.2, 0.2, 2.9, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,20.0,Wakefield - Greenwood,03050020, 0.9, 6.4, 6.4, 80.0, 0.0, 0.0, 6.4, 52.3, 47.7 -1,1,a-cure-i1,2018-19,2.9000000000000004,14.200000000000003,Wakefield - Wakefield Memorial High,03050505, 3.7, 3.3, 5.0, 85.8, 0.2, 0.1, 1.8, 47.0, 53.0 -1,1,a-cure-i1,2018-19,0.0,14.299999999999997,Wakefield - Walton,03050040, 2.2, 3.0, 5.6, 85.7, 0.0, 1.3, 2.2, 55.8, 44.2 -1,1,a-cure-i1,2018-19,4.4,25.200000000000003,Wakefield - Woodville School,03050015, 3.2, 5.7, 9.7, 74.8, 0.0, 0.2, 6.4, 51.0, 48.8 -1,1,a-cure-i1,2018-19,0.0,7.5,Wales - Wales Elementary,03060005, 2.0, 0.7, 1.4, 92.5, 0.7, 0.0, 2.7, 54.4, 45.6 -6.4,5,a-cure-i1,2018-19,6.4,16.0,Walpole - Bird Middle,03070305, 3.1, 3.6, 7.3, 84.0, 0.4, 0.0, 1.6, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,20.200000000000003,Walpole - Boyden,03070010, 7.3, 4.7, 5.3, 79.8, 0.6, 0.0, 2.3, 48.0, 52.0 -1,1,a-cure-i1,2018-19,0.0,20.299999999999997,Walpole - Daniel Feeney Preschool Center,03070002, 3.1, 7.8, 3.1, 79.7, 0.0, 0.0, 6.3, 51.6, 48.4 -1,1,a-cure-i1,2018-19,0.0,19.0,Walpole - Eleanor N Johnson Middle,03070310, 2.1, 8.9, 4.1, 81.0, 0.9, 0.0, 3.0, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,18.299999999999997,Walpole - Elm Street School,03070005, 4.2, 7.5, 3.3, 81.7, 0.2, 0.0, 3.1, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,26.700000000000003,Walpole - Fisher,03070015, 2.0, 14.5, 6.5, 73.3, 0.0, 0.0, 3.7, 54.9, 45.1 -1,1,a-cure-i1,2018-19,0.0,13.900000000000006,Walpole - Old Post Road,03070018, 2.5, 1.6, 6.7, 86.1, 0.0, 0.0, 3.1, 48.4, 51.6 -1,1,a-cure-i1,2018-19,3.8,15.900000000000006,Walpole - Walpole High,03070505, 3.6, 5.1, 5.1, 84.1, 0.3, 0.0, 1.9, 48.7, 51.2 -1,1,a-cure-i1,2018-19,0.0,34.900000000000006,Waltham - Douglas MacArthur Elementary School,03080032, 9.5, 8.4, 12.5, 65.1, 0.2, 0.0, 4.3, 55.4, 44.6 -1,1,a-cure-i1,2018-19,4.1000000000000005,87.7,Waltham - Henry Whittemore Elementary School,03080065, 6.0, 3.1, 77.1, 12.3, 0.0, 0.0, 1.4, 53.4, 46.6 -1,1,a-cure-i1,2018-19,0.3,44.6,Waltham - James Fitzgerald Elementary School,03080060, 4.8, 4.8, 30.6, 55.4, 0.0, 0.0, 4.3, 51.6, 48.4 -3.8046709129511678,3.8,a-cure-i1,2018-19,11.200000000000001,47.1,Waltham - John F Kennedy Middle,03080404, 11.0, 4.3, 30.4, 52.9, 0.0, 0.0, 1.3, 55.0, 45.0 -1,1,a-cure-i1,2018-19,3.0,63.2,Waltham - John W. McDevitt Middle School,03080415, 9.6, 4.1, 47.7, 36.8, 0.0, 0.0, 1.8, 47.4, 52.6 -2.2567811934900543,2.26,a-cure-i1,2018-19,7.8,55.3,Waltham - Northeast Elementary School,03080040, 13.6, 10.0, 29.5, 44.7, 0.2, 0.0, 2.0, 51.1, 48.9 -1,1,a-cure-i1,2018-19,1.5,62.9,Waltham - Thomas R Plympton Elementary School,03080050, 11.9, 5.6, 42.5, 37.1, 0.0, 0.0, 2.8, 50.9, 49.1 -10.211055276381911,5,a-cure-i1,2018-19,50.800000000000004,79.6,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.4, 1.8, 70.8, 20.4, 0.0, 0.0, 2.7, 60.2, 39.8 -2.2319327731092433,2.23,a-cure-i1,2018-19,8.299999999999999,59.5,Waltham - Waltham Sr High,03080505, 11.1, 4.2, 41.9, 40.5, 0.1, 0.1, 2.1, 53.4, 46.5 -1,1,a-cure-i1,2018-19,3.1,60.9,Waltham - William F. Stanley Elementary School,03080005, 6.5, 5.8, 47.0, 39.1, 0.0, 0.0, 1.6, 54.6, 45.4 -1,1,a-cure-i1,2018-19,0.0,6.099999999999994,Ware - Stanley M Koziol Elementary School,03090020, 0.8, 0.5, 3.0, 93.9, 0.0, 0.0, 1.8, 49.9, 50.1 -6.296774193548386,5,a-cure-i1,2018-19,6.1,15.5,Ware - Ware Junior/Senior High School,03090505, 2.5, 1.1, 6.9, 84.5, 0.0, 0.4, 4.6, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,14.5,Ware - Ware Middle School,03090305, 1.6, 0.3, 7.2, 85.5, 0.3, 0.0, 5.0, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,30.299999999999997,Wareham - John William Decas,03100003, 8.1, 1.0, 9.3, 69.7, 1.0, 0.0, 10.9, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,33.8,Wareham - Minot Forest,03100017, 9.2, 0.6, 9.5, 66.2, 2.0, 0.3, 12.3, 55.3, 44.7 -1,1,a-cure-i1,2018-19,0.0,37.9,Wareham - Wareham Cooperative Alternative School,03100315, 12.1, 0.0, 12.1, 62.1, 0.0, 0.0, 13.8, 51.7, 48.3 -3.420689655172414,3.42,a-cure-i1,2018-19,6.2,29.0,Wareham - Wareham Middle,03100305, 7.4, 1.2, 7.7, 71.0, 1.0, 0.2, 11.6, 51.1, 48.9 -5.275362318840581,5,a-cure-i1,2018-19,9.1,27.599999999999994,Wareham - Wareham Senior High,03100505, 9.5, 1.7, 5.6, 72.4, 1.4, 0.2, 9.3, 50.5, 49.3 -1,1,a-cure-i1,2018-19,0.0,33.599999999999994,Watertown - Cunniff,03140015, 2.7, 7.3, 18.5, 66.4, 0.3, 0.0, 4.8, 52.4, 47.6 -1,1,a-cure-i1,2018-19,0.0,40.3,Watertown - Hosmer,03140020, 3.5, 8.7, 18.9, 59.7, 0.3, 0.2, 8.7, 51.3, 48.7 -1,1,a-cure-i1,2018-19,0.0,33.900000000000006,Watertown - James Russell Lowell,03140025, 2.0, 7.7, 17.1, 66.1, 0.2, 0.0, 6.9, 50.7, 49.3 -1,1,a-cure-i1,2018-19,0.0,35.8,Watertown - Watertown High,03140505, 4.9, 7.6, 19.0, 64.2, 0.8, 0.0, 3.6, 51.4, 48.6 -1,1,a-cure-i1,2018-19,0.0,30.0,Watertown - Watertown Middle,03140305, 4.8, 7.7, 12.3, 70.0, 0.7, 0.2, 4.3, 51.8, 48.2 -3.7433962264150944,3.74,a-cure-i1,2018-19,6.2,26.5,Wayland - Claypit Hill School,03150005, 5.6, 10.3, 5.6, 73.5, 0.0, 0.4, 4.7, 49.2, 50.8 -4.918727915194347,4.92,a-cure-i1,2018-19,8.7,28.299999999999997,Wayland - Happy Hollow School,03150015, 5.6, 12.5, 3.5, 71.7, 0.0, 0.3, 6.4, 50.9, 49.1 -2.8957055214723932,2.9,a-cure-i1,2018-19,5.9,32.599999999999994,Wayland - Loker School,03150020, 3.0, 19.6, 5.2, 67.4, 0.0, 0.4, 4.4, 52.2, 47.8 -2.567901234567901,2.57,a-cure-i1,2018-19,5.2,32.400000000000006,Wayland - Wayland High School,03150505, 4.4, 17.6, 4.6, 67.6, 0.0, 0.1, 5.7, 51.9, 48.1 -6.017910447761195,5,a-cure-i1,2018-19,12.600000000000001,33.5,Wayland - Wayland Middle School,03150305, 6.3, 17.0, 3.9, 66.5, 0.1, 0.1, 6.0, 48.1, 51.9 -2.4427480916030535,2.44,a-cure-i1,2018-19,6.0,39.3,Webster - Bartlett High School,03160505, 5.2, 2.8, 23.6, 60.7, 0.0, 0.2, 7.4, 50.2, 49.6 -1,1,a-cure-i1,2018-19,0.0,42.0,Webster - Park Avenue Elementary,03160015, 5.4, 1.7, 28.0, 58.0, 0.2, 0.0, 6.6, 50.9, 49.1 -1,1,a-cure-i1,2018-19,2.6,43.7,Webster - Webster Middle School,03160315, 5.6, 2.1, 28.9, 56.3, 0.0, 0.2, 6.8, 47.0, 53.0 -10.666666666666666,5,a-cure-i1,2018-19,13.8,20.700000000000003,Wellesley - Ernest F Upham,03170050, 2.6, 11.6, 3.4, 79.3, 0.0, 0.0, 3.0, 53.0, 47.0 -12.46753246753247,5,a-cure-i1,2018-19,18.0,23.099999999999994,Wellesley - Hunnewell,03170025, 4.2, 4.2, 5.8, 76.9, 0.0, 0.0, 8.8, 49.2, 50.8 -2.0928270042194095,2.09,a-cure-i1,2018-19,6.2,47.4,Wellesley - John D Hardy,03170020, 1.4, 25.8, 8.0, 52.6, 0.0, 0.0, 12.2, 49.8, 50.2 -1,1,a-cure-i1,2018-19,0.0,37.1,Wellesley - Joseph E Fiske,03170015, 3.4, 19.6, 7.6, 62.9, 0.3, 0.0, 6.2, 47.8, 52.2 -6.428571428571427,5,a-cure-i1,2018-19,9.0,22.400000000000006,Wellesley - Katharine Lee Bates,03170005, 3.9, 9.2, 2.2, 77.6, 0.0, 0.0, 7.0, 46.2, 53.8 -1,1,a-cure-i1,2018-19,0.0,45.0,Wellesley - Preschool at Wellesley Schools,03170001, 2.0, 25.0, 11.0, 55.0, 0.0, 0.0, 7.0, 56.0, 44.0 -1,1,a-cure-i1,2018-19,4.7,33.2,Wellesley - Schofield,03170045, 4.5, 16.2, 5.0, 66.8, 0.3, 0.0, 7.3, 47.1, 52.9 -1,1,a-cure-i1,2018-19,0.0,37.4,Wellesley - Sprague Elementary School,03170048, 3.0, 18.9, 3.8, 62.6, 0.0, 0.0, 11.7, 48.9, 51.1 -3.167235494880546,3.17,a-cure-i1,2018-19,5.8,29.299999999999997,Wellesley - Wellesley Middle,03170305, 3.6, 14.0, 5.5, 70.7, 0.1, 0.0, 6.1, 49.4, 50.6 -5.517241379310346,5,a-cure-i1,2018-19,9.0,26.099999999999994,Wellesley - Wellesley Sr High,03170505, 4.3, 12.2, 4.6, 73.9, 0.0, 0.1, 4.9, 48.8, 51.2 -1,1,a-cure-i1,2018-19,0.0,17.099999999999994,Wellfleet - Wellfleet Elementary,03180005, 2.9, 1.0, 2.9, 82.9, 0.0, 0.0, 10.5, 55.2, 44.8 -1,1,a-cure-i1,2018-19,0.0,22.0,West Boylston - Major Edwards Elementary,03220005, 3.5, 2.5, 10.9, 78.0, 0.0, 0.0, 5.2, 52.2, 47.8 -9.00546448087432,5,a-cure-i1,2018-19,10.3,18.299999999999997,West Boylston - West Boylston Junior/Senior High,03220505, 2.7, 1.2, 10.7, 81.7, 0.2, 0.0, 3.5, 45.5, 54.5 -1,1,a-cure-i1,2018-19,0.0,14.5,West Bridgewater - Howard School,03230305, 5.7, 0.7, 2.1, 85.5, 0.4, 0.4, 5.3, 46.6, 53.4 -1,1,a-cure-i1,2018-19,0.0,13.700000000000003,West Bridgewater - Rose L Macdonald,03230003, 3.8, 1.1, 3.1, 86.3, 0.4, 0.0, 5.3, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,16.0,West Bridgewater - Spring Street School,03230005, 3.3, 0.6, 5.5, 84.0, 0.0, 0.0, 6.6, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,12.599999999999994,West Bridgewater - West Bridgewater Junior/Senior,03230505, 5.0, 1.1, 3.4, 87.4, 0.5, 0.0, 2.7, 48.4, 51.6 -1,1,a-cure-i1,2018-19,0.0,50.0,West Springfield - Cowing Early Childhood,03320001, 7.8, 15.5, 24.1, 50.0, 0.0, 0.0, 2.6, 63.8, 36.2 -1,1,a-cure-i1,2018-19,0.0,33.7,West Springfield - John Ashley,03320005, 1.6, 5.2, 22.9, 66.3, 0.0, 0.0, 4.0, 47.4, 52.6 -1,1,a-cure-i1,2018-19,0.0,25.700000000000003,West Springfield - John R Fausey,03320010, 2.6, 4.1, 15.5, 74.3, 0.0, 0.0, 3.5, 50.8, 49.2 -1,1,a-cure-i1,2018-19,0.0,47.7,West Springfield - Memorial,03320025, 2.3, 10.3, 31.8, 52.3, 0.0, 0.0, 3.3, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,28.799999999999997,West Springfield - Mittineague,03320030, 3.5, 1.8, 17.6, 71.2, 0.0, 0.0, 5.9, 44.1, 55.9 -1,1,a-cure-i1,2018-19,0.0,44.0,West Springfield - Philip G Coburn,03320007, 5.4, 17.4, 18.8, 56.0, 0.2, 0.0, 2.1, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,20.400000000000006,West Springfield - Tatham,03320040, 1.2, 3.5, 11.0, 79.6, 0.0, 0.0, 4.7, 49.8, 50.2 -2.557993730407523,2.56,a-cure-i1,2018-19,5.1,31.900000000000006,West Springfield - West Springfield High,03320505, 3.5, 7.5, 18.8, 68.1, 0.1, 0.0, 2.0, 51.7, 48.3 -1,1,a-cure-i1,2018-19,2.5,33.7,West Springfield - West Springfield Middle,03320305, 3.7, 7.8, 19.8, 66.3, 0.1, 0.1, 2.2, 53.8, 46.2 -1,1,a-cure-i1,2018-19,0.0,49.2,Westborough - Annie E Fales,03210010, 0.6, 43.2, 2.8, 50.8, 0.0, 0.3, 2.3, 46.3, 53.7 -1,1,a-cure-i1,2018-19,0.0,62.5,Westborough - Elsie A Hastings Elementary,03210025, 2.4, 44.6, 12.2, 37.5, 0.6, 0.0, 2.8, 51.2, 48.8 -1,1,a-cure-i1,2018-19,0.0,47.7,Westborough - J Harding Armstrong,03210005, 1.9, 38.1, 5.8, 52.3, 0.0, 0.0, 1.9, 54.5, 45.5 -1,1,a-cure-i1,2018-19,0.0,48.0,Westborough - Mill Pond School,03210045, 2.5, 37.6, 5.4, 52.0, 0.2, 0.0, 2.3, 49.0, 51.0 -1,1,a-cure-i1,2018-19,2.8,41.7,Westborough - Sarah W Gibbons Middle,03210305, 1.0, 29.3, 7.3, 58.3, 0.0, 0.2, 3.9, 50.8, 49.2 -1,1,a-cure-i1,2018-19,4.1,36.5,Westborough - Westborough High,03210505, 2.0, 25.2, 6.0, 63.5, 0.0, 0.1, 3.3, 50.4, 49.5 -1,1,a-cure-i1,2018-19,0.0,43.1,Westfield - Abner Gibbs,03250020, 3.7, 11.5, 24.3, 56.9, 0.0, 0.0, 3.7, 50.9, 49.1 -1,1,a-cure-i1,2018-19,0.0,28.400000000000006,Westfield - Fort Meadow Early Childhood Center,03250003, 1.6, 5.5, 19.7, 71.6, 0.0, 0.0, 1.6, 50.3, 49.7 -3.056179775280899,3.06,a-cure-i1,2018-19,8.5,44.5,Westfield - Franklin Ave,03250015, 2.8, 4.7, 32.7, 55.5, 0.5, 0.0, 3.8, 47.4, 52.6 -1,1,a-cure-i1,2018-19,0.0,17.400000000000006,Westfield - Highland,03250025, 2.1, 2.9, 11.5, 82.6, 0.0, 0.0, 0.9, 48.8, 51.2 -1,1,a-cure-i1,2018-19,0.0,19.400000000000006,Westfield - Munger Hill,03250033, 2.5, 2.8, 11.9, 80.6, 0.0, 0.0, 2.2, 50.7, 49.3 -2.909090909090909,2.91,a-cure-i1,2018-19,5.6,30.799999999999997,Westfield - Paper Mill,03250036, 3.0, 1.5, 22.6, 69.2, 0.0, 0.3, 3.4, 55.2, 44.8 -1,1,a-cure-i1,2018-19,0.0,17.599999999999994,Westfield - Southampton Road,03250040, 0.9, 2.5, 9.3, 82.4, 0.0, 0.0, 4.9, 53.4, 46.6 -1,1,a-cure-i1,2018-19,1.1,21.900000000000006,Westfield - Westfield High,03250505, 2.4, 3.7, 13.5, 78.1, 0.2, 0.0, 2.0, 47.1, 52.8 -1,1,a-cure-i1,2018-19,2.0,25.599999999999994,Westfield - Westfield Intermediate School,03250075, 2.4, 3.5, 17.0, 74.4, 0.2, 0.0, 2.5, 50.3, 49.7 -1,1,a-cure-i1,2018-19,0.0,22.299999999999997,Westfield - Westfield Middle School,03250310, 2.5, 2.4, 14.7, 77.7, 0.0, 0.0, 2.7, 49.9, 50.1 -1,1,a-cure-i1,2018-19,0.0,14.599999999999994,Westfield - Westfield Technical Academy,03250605, 1.3, 1.3, 10.2, 85.4, 0.2, 0.2, 1.3, 63.8, 36.2 -1,1,a-cure-i1,2018-19,0.0,28.599999999999994,Westford - Abbot Elementary,03260004, 0.3, 23.6, 1.0, 71.4, 0.3, 0.0, 3.4, 45.4, 54.6 -2.127659574468085,2.13,a-cure-i1,2018-19,5.0,37.6,Westford - Blanchard Middle,03260310, 1.1, 31.3, 2.0, 62.4, 0.4, 0.0, 2.9, 52.6, 47.4 -1,1,a-cure-i1,2018-19,0.0,37.0,Westford - Col John Robinson,03260025, 0.7, 29.0, 1.7, 63.0, 0.0, 0.0, 5.6, 51.5, 48.5 -1,1,a-cure-i1,2018-19,0.0,49.6,Westford - Day Elementary,03260007, 0.6, 40.1, 3.2, 50.4, 0.0, 0.0, 5.7, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,37.4,Westford - John A. Crisafulli Elementary School,03260045, 2.0, 28.7, 2.9, 62.6, 0.3, 0.0, 3.4, 48.3, 51.7 -1,1,a-cure-i1,2018-19,0.0,49.1,Westford - Millennium Elementary,03260013, 1.7, 36.2, 2.6, 50.9, 0.9, 0.0, 7.8, 57.8, 42.2 -1,1,a-cure-i1,2018-19,0.0,23.700000000000003,Westford - Nabnasset,03260015, 0.3, 18.7, 1.9, 76.3, 0.0, 0.0, 2.8, 52.2, 47.8 -2.1782178217821784,2.18,a-cure-i1,2018-19,5.5,40.4,Westford - Rita E. Miller Elementary School,03260055, 1.3, 33.6, 2.0, 59.6, 0.0, 0.0, 3.6, 53.7, 46.3 -1,1,a-cure-i1,2018-19,2.2,30.299999999999997,Westford - Stony Brook School,03260330, 0.6, 25.8, 1.1, 69.7, 0.0, 0.0, 2.9, 52.9, 47.1 -3.835616438356164,3.84,a-cure-i1,2018-19,7.0,29.200000000000003,Westford - Westford Academy,03260505, 0.9, 22.7, 1.7, 70.8, 0.1, 0.1, 3.8, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,5.799999999999997,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.8, 4.1, 94.2, 0.0, 0.0, 0.8, 52.9, 47.1 -1,1,a-cure-i1,2018-19,0.0,39.5,Weston - Country,03300010, 6.4, 16.4, 8.7, 60.5, 0.0, 0.0, 8.0, 45.7, 54.3 -4.446866485013623,4.45,a-cure-i1,2018-19,10.2,36.7,Weston - Field Elementary School,03300012, 6.0, 17.3, 8.0, 63.3, 0.0, 0.0, 5.3, 49.0, 51.0 -8.374269005847953,5,a-cure-i1,2018-19,17.900000000000002,34.2,Weston - Weston High,03300505, 5.8, 18.8, 4.7, 65.8, 0.6, 0.0, 4.4, 49.9, 50.1 -7.116279069767441,5,a-cure-i1,2018-19,15.3,34.400000000000006,Weston - Weston Middle,03300305, 6.8, 15.9, 5.0, 65.6, 0.0, 0.0, 6.6, 55.7, 44.3 -3.4179566563467496,3.42,a-cure-i1,2018-19,6.9,32.3,Weston - Woodland,03300015, 6.9, 16.0, 6.9, 67.7, 0.0, 0.3, 2.1, 52.1, 47.9 -1,1,a-cure-i1,2018-19,0.0,8.200000000000003,Westport - Alice A Macomber,03310015, 0.5, 0.0, 4.1, 91.8, 0.0, 0.0, 3.6, 52.1, 47.9 -1,1,a-cure-i1,2018-19,0.0,10.099999999999994,Westport - Westport Elementary,03310030, 0.0, 0.4, 3.4, 89.9, 0.2, 0.0, 6.1, 56.9, 43.1 -1,1,a-cure-i1,2018-19,0.0,8.200000000000003,Westport - Westport Junior/Senior High School,03310515, 0.3, 1.2, 3.2, 91.8, 0.5, 0.0, 3.0, 54.3, 45.7 -6.386831275720166,5,a-cure-i1,2018-19,9.700000000000001,24.299999999999997,Westwood - Deerfield School,03350010, 1.1, 9.4, 5.5, 75.7, 0.0, 0.0, 8.3, 55.2, 44.8 -6.007017543859649,5,a-cure-i1,2018-19,10.7,28.5,Westwood - Downey,03350012, 0.7, 17.8, 4.3, 71.5, 0.0, 0.0, 5.7, 57.7, 42.3 -1,1,a-cure-i1,2018-19,1.6,21.400000000000006,Westwood - E W Thurston Middle,03350305, 2.8, 11.1, 4.2, 78.6, 0.0, 0.0, 3.4, 52.1, 47.9 -1,1,a-cure-i1,2018-19,0.0,20.5,Westwood - Martha Jones,03350017, 0.0, 9.2, 3.9, 79.5, 0.0, 0.0, 7.4, 48.1, 51.9 -1,1,a-cure-i1,2018-19,0.0,26.099999999999994,Westwood - Paul Hanlon,03350015, 1.3, 16.8, 4.9, 73.9, 0.0, 0.0, 3.1, 51.8, 48.2 -6.243902439024388,5,a-cure-i1,2018-19,6.3999999999999995,16.400000000000006,Westwood - Westwood High,03350505, 3.4, 9.0, 2.6, 83.6, 0.0, 0.0, 1.4, 46.2, 53.7 -1,1,a-cure-i1,2018-19,0.0,29.299999999999997,Westwood - Westwood Integrated Preschool,03350050, 2.4, 17.1, 2.4, 70.7, 0.0, 0.0, 7.3, 68.3, 31.7 -1,1,a-cure-i1,2018-19,0.0,17.400000000000006,Westwood - William E Sheehan,03350025, 1.3, 6.6, 3.8, 82.6, 0.0, 0.0, 5.7, 51.1, 48.9 -1,1,a-cure-i1,2018-19,1.8,27.900000000000006,Weymouth - Abigail Adams Middle School,03360310, 7.0, 5.6, 10.8, 72.1, 0.2, 0.0, 4.2, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,28.299999999999997,Weymouth - Academy Avenue,03360005, 4.4, 8.9, 10.2, 71.7, 0.0, 0.0, 4.8, 52.2, 47.8 -4.731517509727626,4.73,a-cure-i1,2018-19,7.6,25.700000000000003,Weymouth - Frederick C Murphy,03360050, 7.0, 2.8, 12.1, 74.3, 0.0, 0.0, 3.7, 53.3, 46.7 -4.655518394648828,4.66,a-cure-i1,2018-19,8.7,29.900000000000006,Weymouth - Johnson Early Childhood Center,03360003, 5.2, 11.9, 6.2, 70.1, 0.0, 0.0, 6.7, 54.1, 45.9 -1,1,a-cure-i1,2018-19,0.0,21.200000000000003,Weymouth - Lawrence W Pingree,03360065, 6.7, 4.1, 5.7, 78.8, 0.0, 0.0, 4.7, 43.0, 57.0 -1,1,a-cure-i1,2018-19,3.4,25.700000000000003,Weymouth - Maria Weston Chapman Middle School,03360020, 7.4, 5.0, 9.6, 74.3, 0.3, 0.2, 3.2, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,30.599999999999994,Weymouth - Ralph Talbot,03360085, 9.0, 7.8, 10.2, 69.4, 0.0, 0.4, 3.3, 50.6, 49.4 -1,1,a-cure-i1,2018-19,0.0,20.599999999999994,Weymouth - Thomas V Nash,03360060, 3.4, 6.3, 7.4, 79.4, 0.0, 0.0, 3.4, 42.9, 57.1 -1,1,a-cure-i1,2018-19,0.0,30.900000000000006,Weymouth - Thomas W. Hamilton Primary School,03360105, 3.2, 11.5, 9.9, 69.1, 0.6, 0.3, 5.4, 51.9, 48.1 -1,1,a-cure-i1,2018-19,0.0,20.0,Weymouth - Wessagusset,03360110, 3.3, 4.7, 6.5, 80.0, 0.0, 0.0, 5.5, 54.9, 45.1 -1,1,a-cure-i1,2018-19,3.0999999999999996,21.799999999999997,Weymouth - Weymouth High School,03360505, 5.2, 5.1, 7.9, 78.2, 0.1, 0.1, 3.5, 51.3, 48.6 -1,1,a-cure-i1,2018-19,0.0,54.8,Weymouth - William Seach,03360080, 21.4, 11.1, 16.4, 45.2, 0.9, 0.0, 5.0, 49.2, 50.8 -1,1,a-cure-i1,2018-19,0.0,8.599999999999994,Whately - Whately Elementary,03370005, 0.7, 0.7, 5.0, 91.4, 0.0, 0.0, 2.2, 50.4, 49.6 -1,1,a-cure-i1,2018-19,3.5,6.900000000000006,Whitman-Hanson - Hanson Middle School,07800315, 0.8, 1.0, 3.5, 93.1, 0.0, 0.0, 1.5, 54.7, 45.3 -1,1,a-cure-i1,2018-19,0.0,9.099999999999994,Whitman-Hanson - Indian Head,07800035, 0.8, 1.4, 3.9, 90.9, 0.2, 0.0, 2.9, 52.6, 47.4 -1,1,a-cure-i1,2018-19,0.0,14.700000000000003,Whitman-Hanson - John H Duval,07800030, 1.8, 1.4, 6.5, 85.3, 0.9, 0.2, 3.8, 52.8, 47.2 -1,1,a-cure-i1,2018-19,0.0,13.299999999999997,Whitman-Hanson - Louise A Conley,07800010, 2.7, 0.8, 6.8, 86.7, 0.4, 0.0, 2.7, 52.5, 47.5 -1,1,a-cure-i1,2018-19,0.0,10.599999999999994,Whitman-Hanson - Whitman Hanson Regional,07800505, 2.8, 1.2, 3.3, 89.4, 0.4, 0.2, 2.7, 49.0, 51.0 -5.783132530120484,5,a-cure-i1,2018-19,6.0,16.599999999999994,Whitman-Hanson - Whitman Middle,07800310, 4.7, 1.4, 6.2, 83.4, 0.9, 0.2, 3.3, 52.1, 47.9 -1,1,a-cure-i1,2018-19,1.1,28.099999999999994,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 2.3, 1.0, 20.9, 71.9, 0.3, 0.0, 3.5, 54.0, 46.0 -1,1,a-cure-i1,2018-19,0.0,8.200000000000003,Williamsburg - Anne T. Dunphy School,03400020, 2.0, 1.4, 4.8, 91.8, 0.0, 0.0, 0.0, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,13.299999999999997,Wilmington - Boutwell,03420005, 0.7, 6.7, 1.5, 86.7, 0.0, 0.0, 4.4, 54.1, 45.9 -1,1,a-cure-i1,2018-19,0.0,10.900000000000006,Wilmington - North Intermediate,03420060, 0.8, 3.4, 3.0, 89.1, 0.0, 0.0, 3.8, 54.0, 46.0 -1,1,a-cure-i1,2018-19,0.0,16.099999999999994,Wilmington - Shawsheen Elementary,03420025, 1.1, 6.6, 5.5, 83.9, 0.0, 0.0, 2.8, 49.6, 50.4 -1,1,a-cure-i1,2018-19,0.0,19.099999999999994,Wilmington - West Intermediate,03420080, 1.3, 5.5, 8.9, 80.9, 0.0, 0.0, 3.4, 50.8, 49.2 -9.012658227848103,5,a-cure-i1,2018-19,8.9,15.799999999999997,Wilmington - Wildwood,03420015, 1.2, 5.8, 3.5, 84.2, 0.0, 0.0, 5.3, 61.4, 38.6 -1,1,a-cure-i1,2018-19,4.6,13.599999999999994,Wilmington - Wilmington High,03420505, 1.7, 5.4, 3.9, 86.4, 0.1, 0.0, 2.5, 48.7, 51.1 -1,1,a-cure-i1,2018-19,0.0,13.799999999999997,Wilmington - Wilmington Middle School,03420330, 1.3, 4.1, 4.6, 86.2, 0.3, 0.0, 3.6, 50.1, 49.9 -1,1,a-cure-i1,2018-19,0.0,14.099999999999994,Wilmington - Woburn Street,03420020, 1.7, 5.3, 2.6, 85.9, 0.2, 0.0, 4.3, 48.7, 51.3 -1,1,a-cure-i1,2018-19,0.0,11.900000000000006,Winchendon - Memorial,03430040, 0.7, 1.7, 5.0, 88.1, 0.0, 0.0, 4.6, 55.8, 44.2 -1,1,a-cure-i1,2018-19,0.0,7.700000000000003,Winchendon - Murdock Academy for Success,03430405, 2.6, 0.0, 0.0, 92.3, 0.0, 0.0, 5.1, 59.0, 41.0 -7.0508474576271185,5,a-cure-i1,2018-19,7.800000000000001,17.700000000000003,Winchendon - Murdock High School,03430515, 2.0, 3.3, 9.7, 82.3, 0.3, 0.0, 2.3, 53.7, 46.3 -1,1,a-cure-i1,2018-19,0.0,17.400000000000006,Winchendon - Murdock Middle School,03430315, 2.1, 3.5, 6.7, 82.6, 0.0, 0.4, 4.6, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,15.200000000000003,Winchendon - Toy Town Elementary,03430050, 1.1, 1.5, 9.5, 84.8, 0.0, 0.0, 3.0, 56.3, 43.7 -1,1,a-cure-i1,2018-19,0.0,11.5,Winchendon - Winchendon PreSchool Program,03430010, 1.3, 0.0, 5.1, 88.5, 0.0, 0.0, 5.1, 50.0, 50.0 -1,1,a-cure-i1,2018-19,0.0,11.900000000000006,Winchester - Ambrose Elementary,03440045, 0.3, 5.8, 1.3, 88.1, 0.0, 0.0, 4.6, 54.3, 45.7 -1,1,a-cure-i1,2018-19,0.0,20.400000000000006,Winchester - Lincoln Elementary,03440005, 0.5, 9.5, 2.3, 79.6, 0.0, 0.0, 8.1, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,41.3,Winchester - Lynch Elementary,03440020, 1.7, 27.5, 4.5, 58.7, 0.0, 0.0, 7.7, 56.3, 43.7 -2.9672727272727273,2.97,a-cure-i1,2018-19,5.1,27.5,Winchester - McCall Middle,03440305, 1.0, 17.5, 3.3, 72.5, 0.4, 0.0, 5.4, 49.1, 50.7 -1,1,a-cure-i1,2018-19,0.0,33.8,Winchester - Muraco Elementary,03440040, 1.3, 22.9, 1.9, 66.2, 0.0, 0.0, 7.7, 49.7, 50.3 -1,1,a-cure-i1,2018-19,0.0,31.400000000000006,Winchester - Vinson-Owen Elementary,03440025, 0.5, 18.2, 3.0, 68.6, 0.0, 0.0, 9.8, 50.0, 50.0 -1,1,a-cure-i1,2018-19,1.4,27.400000000000006,Winchester - Winchester High School,03440505, 1.2, 17.4, 4.6, 72.6, 0.2, 0.1, 3.8, 48.5, 51.5 -1,1,a-cure-i1,2018-19,0.0,21.5,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.8, 0.2, 17.0, 78.5, 0.2, 0.0, 2.2, 54.0, 46.0 -1,1,a-cure-i1,2018-19,0.0,19.200000000000003,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.5, 0.8, 15.2, 80.8, 0.0, 0.0, 1.7, 45.8, 54.2 -1,1,a-cure-i1,2018-19,0.0,18.200000000000003,Winthrop - Winthrop High School,03460505, 1.7, 1.0, 14.5, 81.8, 0.0, 0.0, 1.0, 51.8, 48.2 -5.1692307692307695,5,a-cure-i1,2018-19,6.3,19.5,Winthrop - Winthrop Middle School,03460305, 0.6, 1.1, 16.2, 80.5, 0.0, 0.0, 1.5, 51.1, 48.9 -1,1,a-cure-i1,2018-19,0.0,23.299999999999997,Woburn - Clyde Reeves,03470040, 6.6, 6.9, 4.2, 76.7, 0.7, 0.0, 4.9, 49.1, 50.9 -3.555555555555555,3.56,a-cure-i1,2018-19,5.6,25.200000000000003,Woburn - Daniel L Joyce Middle School,03470410, 7.4, 4.4, 10.3, 74.8, 0.2, 0.4, 2.5, 49.4, 50.6 -1,1,a-cure-i1,2018-19,0.0,27.0,Woburn - Goodyear Elementary School,03470005, 7.2, 5.9, 7.9, 73.0, 1.0, 0.3, 4.6, 53.9, 46.1 -1,1,a-cure-i1,2018-19,0.0,17.799999999999997,Woburn - Hurld-Wyman Elementary School,03470020, 3.3, 8.7, 4.8, 82.2, 0.0, 0.0, 1.0, 50.4, 49.6 -3.529411764705882,3.53,a-cure-i1,2018-19,6.0,27.200000000000003,Woburn - John F Kennedy Middle School,03470405, 6.2, 7.0, 10.4, 72.8, 0.8, 0.0, 2.8, 47.6, 52.4 -1,1,a-cure-i1,2018-19,0.0,45.3,Woburn - Linscott-Rumford,03470025, 13.3, 15.8, 10.8, 54.7, 0.5, 0.0, 4.9, 41.9, 58.1 -1,1,a-cure-i1,2018-19,0.0,29.200000000000003,Woburn - Malcolm White,03470055, 5.9, 4.3, 12.1, 70.8, 0.9, 0.3, 5.6, 45.0, 55.0 -1.8294010889292196,1.83,a-cure-i1,2018-19,6.3,55.1,Woburn - Mary D Altavesta,03470065, 11.7, 21.5, 12.5, 44.9, 3.1, 0.8, 5.5, 55.1, 44.9 -1,1,a-cure-i1,2018-19,0.0,35.900000000000006,Woburn - Shamrock,03470043, 11.4, 6.1, 15.2, 64.1, 0.3, 0.0, 2.9, 55.1, 44.9 -2.9520295202952034,2.95,a-cure-i1,2018-19,5.0,27.099999999999994,Woburn - Woburn High,03470505, 6.9, 6.1, 12.0, 72.9, 0.2, 0.2, 1.8, 47.7, 52.3 -1,1,a-cure-i1,2018-19,0.0,80.8,Worcester - Belmont Street Community,03480020, 18.9, 7.7, 48.8, 19.2, 0.2, 0.2, 5.1, 53.9, 46.1 -2.974512743628186,2.97,a-cure-i1,2018-19,12.4,66.7,Worcester - Burncoat Middle School,03480405, 18.5, 3.4, 41.6, 33.3, 0.1, 0.0, 3.1, 48.3, 51.7 -2.489391796322489,2.49,a-cure-i1,2018-19,11.0,70.7,Worcester - Burncoat Senior High,03480503, 19.1, 4.9, 41.4, 29.3, 0.3, 0.0, 5.0, 54.5, 45.5 -1,1,a-cure-i1,2018-19,0.9,76.4,Worcester - Burncoat Street,03480035, 15.2, 2.9, 54.4, 23.6, 0.0, 0.0, 3.9, 48.9, 51.1 -1,1,a-cure-i1,2018-19,0.0,90.4,Worcester - Canterbury,03480045, 14.8, 15.6, 55.9, 9.6, 0.5, 0.0, 3.6, 51.8, 48.2 -1.2037037037037037,1.2,a-cure-i1,2018-19,6.5,86.4,Worcester - Chandler Elementary Community,03480050, 14.4, 6.1, 63.7, 13.6, 0.0, 0.0, 2.2, 54.0, 46.0 -5.780885780885781,5,a-cure-i1,2018-19,31.0,85.8,Worcester - Chandler Magnet,03480052, 2.8, 2.5, 79.2, 14.2, 0.0, 0.0, 1.3, 48.2, 51.8 -1.1890482398956974,1.19,a-cure-i1,2018-19,5.7,76.7,Worcester - City View,03480053, 14.2, 1.7, 56.2, 23.3, 0.2, 0.0, 4.4, 49.7, 50.3 -3.5063829787234044,3.51,a-cure-i1,2018-19,20.6,94.0,Worcester - Claremont Academy,03480350, 9.2, 8.4, 74.9, 6.0, 0.0, 0.0, 1.5, 50.5, 49.5 -1,1,a-cure-i1,2018-19,0.0,84.3,Worcester - Clark St Community,03480055, 23.7, 3.6, 52.9, 15.7, 0.4, 0.0, 3.6, 52.2, 47.8 -1.1231788079470197,1.12,a-cure-i1,2018-19,5.3,75.5,Worcester - Columbus Park,03480060, 11.8, 8.4, 51.8, 24.5, 0.6, 0.0, 2.8, 51.6, 48.4 -2.870431893687708,2.87,a-cure-i1,2018-19,10.8,60.2,Worcester - Doherty Memorial High,03480512, 17.1, 6.5, 32.1, 39.8, 0.1, 0.0, 4.3, 53.6, 46.4 -3.386565272496831,3.39,a-cure-i1,2018-19,16.7,78.9,Worcester - Elm Park Community,03480095, 12.9, 3.1, 60.1, 21.1, 0.0, 0.0, 2.9, 53.1, 46.9 -1,1,a-cure-i1,2018-19,0.0,28.900000000000006,Worcester - Flagg Street,03480090, 5.9, 4.6, 14.2, 71.1, 0.3, 0.0, 3.9, 47.2, 52.8 -5.066666666666666,5,a-cure-i1,2018-19,19.0,60.0,Worcester - Forest Grove Middle,03480415, 14.9, 5.8, 34.5, 40.0, 0.2, 0.0, 4.6, 50.1, 49.9 -3.4085850556438793,3.41,a-cure-i1,2018-19,13.4,62.9,Worcester - Francis J McGrath Elementary,03480177, 17.6, 4.5, 33.1, 37.1, 0.0, 0.0, 7.8, 49.0, 51.0 -1,1,a-cure-i1,2018-19,1.7,72.2,Worcester - Gates Lane,03480110, 15.7, 12.7, 37.3, 27.8, 1.1, 0.0, 5.4, 58.6, 41.4 -3.477456647398844,3.48,a-cure-i1,2018-19,18.8,86.5,Worcester - Goddard School/Science Technical,03480100, 10.1, 11.8, 60.2, 13.5, 1.0, 0.0, 3.4, 52.6, 47.4 -1.0376134889753568,1.04,a-cure-i1,2018-19,5.0,77.1,Worcester - Grafton Street,03480115, 14.2, 4.7, 52.5, 22.9, 0.2, 0.0, 5.5, 53.0, 47.0 -6.862385321100917,5,a-cure-i1,2018-19,18.7,43.6,Worcester - Head Start,03480002, 19.4, 1.6, 18.0, 56.4, 0.7, 0.0, 3.8, 47.4, 52.6 -5.6895306859205785,5,a-cure-i1,2018-19,19.700000000000003,55.4,Worcester - Heard Street,03480136, 12.6, 9.1, 28.1, 44.6, 0.0, 0.0, 5.6, 49.8, 50.2 -1,1,a-cure-i1,2018-19,1.0,87.3,Worcester - Jacob Hiatt Magnet,03480140, 30.0, 3.4, 49.3, 12.7, 0.0, 0.0, 4.6, 49.0, 51.0 -6.282398452611218,5,a-cure-i1,2018-19,20.3,51.7,Worcester - Lake View,03480145, 16.7, 7.3, 20.4, 48.3, 0.3, 0.0, 7.0, 52.0, 48.0 -1,1,a-cure-i1,2018-19,0.0,85.9,Worcester - Lincoln Street,03480160, 23.9, 5.1, 54.5, 14.1, 0.4, 0.0, 2.0, 50.2, 49.8 -1.5746924428822495,1.57,a-cure-i1,2018-19,5.6,56.9,Worcester - May Street,03480175, 13.9, 9.6, 23.5, 43.1, 0.3, 0.3, 9.3, 47.0, 53.0 -1,1,a-cure-i1,2018-19,3.4000000000000004,39.6,Worcester - Midland Street,03480185, 5.7, 10.0, 15.2, 60.4, 0.0, 0.0, 8.7, 49.6, 50.4 -1,1,a-cure-i1,2018-19,3.4,43.5,Worcester - Nelson Place,03480200, 11.8, 6.0, 19.5, 56.5, 0.0, 0.0, 6.2, 58.8, 41.2 -2.6582278481012658,2.66,a-cure-i1,2018-19,10.5,63.2,Worcester - Norrback Avenue,03480202, 24.0, 4.3, 29.7, 36.8, 0.0, 0.0, 5.2, 53.0, 47.0 -4.607228915662651,4.61,a-cure-i1,2018-19,23.9,83.0,Worcester - North High,03480515, 21.7, 6.7, 50.7, 17.0, 0.2, 0.0, 3.5, 53.6, 46.4 -1.9538670284938942,1.95,a-cure-i1,2018-19,9.0,73.7,Worcester - Quinsigamond,03480210, 18.9, 7.0, 43.6, 26.3, 0.0, 0.0, 4.2, 51.9, 48.1 -6.647444298820446,5,a-cure-i1,2018-19,31.7,76.3,Worcester - Rice Square,03480215, 18.3, 5.7, 46.8, 23.7, 0.0, 0.0, 5.5, 51.1, 48.9 -4.638078902229846,4.64,a-cure-i1,2018-19,16.9,58.3,Worcester - Roosevelt,03480220, 19.3, 5.1, 28.8, 41.7, 0.0, 0.1, 4.9, 48.7, 51.3 -3.9593908629441628,3.96,a-cure-i1,2018-19,19.5,78.8,Worcester - South High Community,03480520, 16.9, 12.2, 46.2, 21.2, 0.1, 0.0, 3.4, 50.3, 49.7 -3.094039735099338,3.09,a-cure-i1,2018-19,14.6,75.5,Worcester - Sullivan Middle,03480423, 15.1, 9.2, 46.7, 24.5, 0.2, 0.0, 4.3, 50.3, 49.7 -2.957983193277311,2.96,a-cure-i1,2018-19,11.0,59.5,Worcester - Tatnuck,03480230, 22.9, 6.1, 25.9, 40.5, 0.0, 0.2, 4.4, 49.0, 51.0 -1,1,a-cure-i1,2018-19,0.9,55.6,Worcester - Thorndyke Road,03480235, 18.8, 5.6, 28.0, 44.4, 0.0, 0.0, 3.2, 53.8, 46.2 -1.1571072319201994,1.16,a-cure-i1,2018-19,5.8,80.2,Worcester - Union Hill School,03480240, 10.8, 1.7, 64.8, 19.8, 0.0, 0.0, 2.9, 49.6, 50.4 -1.3039647577092512,1.3,a-cure-i1,2018-19,7.4,90.8,Worcester - University Pk Campus School,03480285, 12.1, 20.8, 53.3, 9.2, 0.4, 0.0, 4.2, 50.0, 50.0 -1,1,a-cure-i1,2018-19,4.699999999999999,78.5,Worcester - Vernon Hill School,03480280, 23.2, 2.7, 48.0, 21.5, 0.0, 0.0, 4.6, 51.8, 48.2 -1,1,a-cure-i1,2018-19,0.0,62.5,Worcester - Wawecus Road School,03480026, 9.7, 6.9, 41.0, 37.5, 0.0, 0.0, 4.9, 50.7, 49.3 -2.515970515970516,2.52,a-cure-i1,2018-19,6.4,40.7,Worcester - West Tatnuck,03480260, 8.6, 5.7, 18.3, 59.3, 0.3, 0.0, 7.8, 50.4, 49.6 -1,1,a-cure-i1,2018-19,0.0,91.8,Worcester - Woodland Academy,03480030, 8.8, 7.0, 73.5, 8.2, 0.3, 0.0, 2.2, 51.0, 49.0 -1,1,a-cure-i1,2018-19,0.0,50.7,Worcester - Worcester Arts Magnet School,03480225, 17.2, 5.9, 21.2, 49.3, 0.2, 0.0, 6.2, 50.7, 49.3 -3.882352941176471,3.88,a-cure-i1,2018-19,19.8,81.6,Worcester - Worcester East Middle,03480420, 19.1, 7.3, 50.4, 18.4, 0.1, 0.0, 4.7, 49.5, 50.5 -2.2025316455696204,2.2,a-cure-i1,2018-19,8.700000000000001,63.2,Worcester - Worcester Technical High,03480605, 16.3, 7.1, 36.0, 36.8, 0.1, 0.1, 3.5, 45.4, 54.6 -1,1,a-cure-i1,2018-19,0.0,10.799999999999997,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 4.1, 89.2, 2.7, 0.0, 4.1, 47.3, 52.7 -1,1,a-cure-i1,2018-19,0.0,12.0,Wrentham - Charles E Roderick,03500010, 1.4, 2.0, 3.6, 88.0, 0.7, 0.0, 4.3, 54.8, 45.2 -1,1,a-cure-i1,2018-19,0.0,13.900000000000006,Wrentham - Delaney,03500003, 1.6, 3.0, 4.4, 86.1, 0.0, 0.2, 4.8, 50.8, 49.2 -1.393939393939394,1.39,a-cure-i1,2017-18,6.9,79.2,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 49.8, 4.1, 22.3, 20.8, 0.1, 0.1, 2.8, 46.5, 53.5 -1,1,a-cure-i1,2017-18,0.0,16.700000000000003,Abington - Abington Early Education Program,00010001, 10.7, 4.8, 1.2, 83.3, 0.0, 0.0, 0.0, 53.6, 46.4 -5.236363636363636,5,a-cure-i1,2017-18,5.4,16.5,Abington - Abington High,00010505, 3.3, 1.9, 9.8, 83.5, 0.4, 0.2, 1.0, 47.9, 52.1 -14.857142857142854,5,a-cure-i1,2017-18,10.4,11.200000000000003,Abington - Abington Middle School,00010405, 2.2, 1.9, 6.1, 88.8, 0.1, 0.0, 0.9, 51.7, 48.3 -1,1,a-cure-i1,2017-18,0.0,15.599999999999994,Abington - Beaver Brook Elementary,00010020, 3.5, 2.1, 9.0, 84.4, 0.5, 0.2, 0.2, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.0,13.799999999999997,Abington - Woodsdale Elementary School,00010015, 2.5, 1.6, 8.8, 86.2, 0.3, 0.0, 0.6, 53.6, 46.4 -6.859649122807018,5,a-cure-i1,2017-18,39.1,91.2,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 59.7, 1.3, 27.9, 8.8, 0.0, 0.2, 2.1, 49.2, 50.8 -1,1,a-cure-i1,2017-18,3.8,40.4,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 2.0, 30.6, 3.2, 59.6, 0.2, 0.0, 4.4, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,41.6,Acton-Boxborough - Blanchard Memorial School,06000005, 1.6, 32.7, 3.4, 58.4, 0.4, 0.0, 3.6, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,33.0,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.5, 21.8, 3.0, 67.0, 0.2, 0.5, 7.0, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,60.4,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.2, 43.2, 5.4, 39.6, 0.0, 0.0, 4.5, 57.7, 42.3 -1,1,a-cure-i1,2017-18,4.1,75.6,Acton-Boxborough - Luther Conant School,06000030, 2.9, 62.7, 6.1, 24.4, 0.0, 0.2, 3.6, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,29.400000000000006,Acton-Boxborough - McCarthy-Towne School,06000015, 3.5, 10.5, 9.7, 70.6, 0.6, 0.0, 5.1, 52.0, 48.0 -1,1,a-cure-i1,2017-18,3.9,31.5,Acton-Boxborough - Merriam School,06000010, 2.2, 19.7, 6.2, 68.5, 0.0, 0.2, 3.2, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,66.7,Acton-Boxborough - Paul P Gates Elementary School,06000025, 3.0, 55.0, 5.2, 33.3, 0.5, 0.0, 3.0, 52.7, 47.3 -1,1,a-cure-i1,2017-18,1.8,44.1,Acton-Boxborough - Raymond J Grey Junior High,06000405, 2.3, 34.4, 3.5, 55.9, 0.0, 0.0, 3.8, 51.8, 48.2 -1,1,a-cure-i1,2017-18,3.4,8.0,Acushnet - Acushnet Elementary School,00030025, 0.7, 0.2, 4.4, 92.0, 0.2, 0.0, 2.5, 52.0, 48.0 -1,1,a-cure-i1,2017-18,3.5,3.5999999999999943,Acushnet - Albert F Ford Middle School,00030305, 1.0, 0.0, 1.9, 96.4, 0.0, 0.0, 0.7, 53.5, 46.5 -1,1,a-cure-i1,2017-18,0.0,10.200000000000003,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 3.5, 0.5, 2.5, 89.8, 0.0, 0.2, 3.5, 50.4, 49.6 -1,1,a-cure-i1,2017-18,3.3,10.599999999999994,Adams-Cheshire - Hoosac Valley High School,06030505, 5.8, 2.2, 2.2, 89.4, 0.2, 0.0, 0.2, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,8.200000000000003,Adams-Cheshire - Hoosac Valley Middle School,06030315, 4.0, 0.0, 3.0, 91.8, 0.2, 0.0, 1.0, 51.4, 48.6 -4.830188679245284,4.83,a-cure-i1,2017-18,9.600000000000001,31.799999999999997,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 1.9, 17.4, 5.4, 68.2, 0.2, 0.0, 6.8, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,25.799999999999997,Agawam - Agawam Early Childhood Center,00050003, 1.8, 8.6, 13.5, 74.2, 0.0, 0.0, 1.8, 54.0, 46.0 -1,1,a-cure-i1,2017-18,1.0,10.700000000000003,Agawam - Agawam High,00050505, 1.5, 1.8, 5.4, 89.3, 0.0, 0.1, 2.0, 51.7, 48.3 -1,1,a-cure-i1,2017-18,0.0,17.5,Agawam - Agawam Junior High,00050405, 2.3, 3.5, 8.7, 82.5, 0.0, 0.0, 3.0, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,13.099999999999994,Agawam - Benjamin J Phelps,00050020, 1.5, 3.6, 5.4, 86.9, 0.0, 0.0, 2.6, 56.7, 43.3 -1,1,a-cure-i1,2017-18,0.0,18.200000000000003,Agawam - Clifford M Granger,00050010, 1.1, 0.7, 12.5, 81.8, 0.0, 0.4, 3.6, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,20.299999999999997,Agawam - James Clark School,00050030, 3.5, 3.5, 10.9, 79.7, 0.0, 0.0, 2.4, 53.2, 46.8 -1,1,a-cure-i1,2017-18,2.1,14.900000000000006,Agawam - Roberta G. Doering School,00050303, 3.3, 3.3, 5.6, 85.1, 0.0, 0.0, 2.6, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,22.0,Agawam - Robinson Park,00050025, 4.0, 3.5, 10.7, 78.0, 0.0, 0.0, 3.8, 49.3, 50.7 -2.263083451202263,2.26,a-cure-i1,2017-18,10.0,70.7,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 12.8, 0.5, 50.8, 29.3, 0.7, 0.0, 5.8, 45.5, 54.5 -1,1,a-cure-i1,2017-18,0.0,15.700000000000003,Amesbury - Amesbury Elementary,00070005, 2.0, 0.8, 7.3, 84.3, 0.3, 0.3, 5.1, 55.9, 44.1 -1,1,a-cure-i1,2017-18,2.4,12.799999999999997,Amesbury - Amesbury High,00070505, 1.5, 1.4, 6.3, 87.2, 0.2, 0.0, 3.5, 54.2, 45.8 -1,1,a-cure-i1,2017-18,0.0,15.0,Amesbury - Amesbury Innovation High School,00070515, 2.5, 0.0, 2.5, 85.0, 0.0, 0.0, 10.0, 60.0, 40.0 -1,1,a-cure-i1,2017-18,1.9,13.099999999999994,Amesbury - Amesbury Middle,00070013, 1.2, 0.7, 7.4, 86.9, 0.1, 0.3, 3.4, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,14.200000000000003,Amesbury - Charles C Cashman Elementary,00070010, 1.8, 1.8, 8.6, 85.8, 0.2, 0.0, 1.8, 55.5, 44.5 -2.0204778156996586,2.02,a-cure-i1,2017-18,7.4,58.6,Amherst - Crocker Farm Elementary,00080009, 7.6, 16.9, 24.0, 41.4, 0.5, 0.0, 9.6, 52.2, 47.5 -5.333333333333334,5,a-cure-i1,2017-18,17.6,52.8,Amherst - Fort River Elementary,00080020, 10.1, 14.6, 22.4, 47.2, 0.0, 0.0, 5.7, 47.8, 52.2 -12.806262230919767,5,a-cure-i1,2017-18,40.900000000000006,51.1,Amherst - Wildwood Elementary,00080050, 11.9, 11.7, 19.1, 48.9, 0.2, 0.0, 8.2, 52.9, 47.1 -5.920374707259953,5,a-cure-i1,2017-18,15.8,42.7,Amherst-Pelham - Amherst Regional High,06050505, 7.0, 9.1, 16.6, 57.3, 0.1, 0.2, 9.6, 50.9, 49.0 -8.603015075376884,5,a-cure-i1,2017-18,21.4,39.8,Amherst-Pelham - Amherst Regional Middle School,06050405, 7.3, 9.5, 15.1, 60.2, 0.0, 0.2, 7.6, 52.2, 47.8 -5.858267716535432,5,a-cure-i1,2017-18,9.3,25.400000000000006,Andover - Andover High,00090505, 2.2, 16.4, 4.7, 74.6, 0.1, 0.0, 2.1, 47.1, 52.8 -1,1,a-cure-i1,2017-18,2.7,25.700000000000003,Andover - Andover West Middle,00090310, 2.3, 15.4, 5.0, 74.3, 0.4, 0.0, 2.7, 47.4, 52.6 -1,1,a-cure-i1,2017-18,3.2,23.400000000000006,Andover - Bancroft Elementary,00090003, 3.1, 9.0, 5.9, 76.6, 0.3, 0.0, 5.0, 52.4, 47.6 -6.4587155963302765,5,a-cure-i1,2017-18,8.8,21.799999999999997,Andover - Doherty Middle,00090305, 1.1, 12.4, 5.0, 78.2, 0.5, 0.0, 2.7, 50.0, 50.0 -1,1,a-cure-i1,2017-18,4.4,37.4,Andover - Henry C Sanborn Elementary,00090010, 1.5, 27.1, 6.2, 62.6, 0.3, 0.0, 2.3, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,42.4,Andover - High Plain Elementary,00090004, 2.6, 29.4, 6.8, 57.6, 0.0, 0.0, 3.6, 54.0, 46.0 -5.118568232662192,5,a-cure-i1,2017-18,14.3,44.7,Andover - Shawsheen School,00090005, 2.4, 31.8, 8.2, 55.3, 0.0, 0.0, 2.4, 71.8, 28.2 -1,1,a-cure-i1,2017-18,0.0,22.400000000000006,Andover - South Elementary,00090020, 0.6, 17.5, 2.9, 77.6, 0.2, 0.2, 1.0, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,28.5,Andover - West Elementary,00090025, 2.5, 17.1, 6.3, 71.5, 0.3, 0.0, 2.3, 50.5, 49.5 -1,1,a-cure-i1,2017-18,4.0,42.8,Andover - Wood Hill Middle School,00090350, 2.2, 29.4, 8.5, 57.2, 0.2, 0.0, 2.4, 50.1, 49.9 -3.883905013192612,3.88,a-cure-i1,2017-18,9.2,37.9,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 10.6, 2.0, 18.8, 62.1, 0.5, 0.5, 5.5, 53.0, 47.0 -5.16535433070866,5,a-cure-i1,2017-18,8.2,25.400000000000006,Arlington - Arlington High,00100505, 4.4, 10.6, 6.4, 74.6, 0.0, 0.2, 3.8, 49.1, 50.6 -5.423728813559324,5,a-cure-i1,2017-18,8.0,23.599999999999994,Arlington - Brackett,00100010, 1.2, 10.5, 4.9, 76.4, 0.0, 0.2, 6.8, 52.9, 47.1 -1,1,a-cure-i1,2017-18,4.0,23.5,Arlington - Cyrus E Dallin,00100025, 1.5, 13.5, 4.4, 76.5, 0.0, 0.2, 4.0, 51.8, 48.2 -4.095238095238096,4.1,a-cure-i1,2017-18,8.6,33.599999999999994,Arlington - Hardy,00100030, 4.8, 14.4, 8.7, 66.4, 0.2, 0.2, 5.2, 54.1, 45.6 -1,1,a-cure-i1,2017-18,0.0,29.0,Arlington - John A Bishop,00100005, 3.8, 15.7, 3.3, 71.0, 0.0, 0.7, 5.5, 53.8, 46.2 -1,1,a-cure-i1,2017-18,4.4,29.599999999999994,Arlington - M Norcross Stratton,00100055, 2.7, 15.2, 5.0, 70.4, 0.0, 0.0, 6.7, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,43.5,Arlington - Menotomy Preschool,00100038, 4.7, 21.2, 9.4, 56.5, 0.0, 0.0, 8.2, 68.2, 31.8 -5.31297709923664,5,a-cure-i1,2017-18,8.7,26.200000000000003,Arlington - Ottoson Middle,00100410, 3.9, 10.7, 5.7, 73.8, 0.0, 0.1, 5.9, 46.1, 53.9 -3.4539682539682537,3.45,a-cure-i1,2017-18,6.8,31.5,Arlington - Peirce,00100045, 3.9, 13.1, 9.5, 68.5, 0.0, 0.0, 4.9, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,36.4,Arlington - Thompson,00100050, 5.1, 14.9, 10.4, 63.6, 0.6, 0.2, 5.1, 51.5, 48.5 -15.101123595505605,5,a-cure-i1,2017-18,8.399999999999999,8.900000000000006,Ashburnham-Westminster - Briggs Elementary,06100025, 0.2, 1.1, 4.9, 91.1, 0.0, 0.0, 2.7, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.0,8.0,Ashburnham-Westminster - Meetinghouse School,06100010, 0.6, 0.6, 6.2, 92.0, 0.0, 0.0, 0.6, 50.0, 50.0 -1,1,a-cure-i1,2017-18,4.4,6.0,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.6, 1.4, 2.6, 94.0, 0.0, 0.0, 1.4, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,6.599999999999994,Ashburnham-Westminster - Overlook Middle School,06100305, 0.5, 0.5, 4.2, 93.4, 0.2, 0.0, 1.2, 49.4, 50.6 -1,1,a-cure-i1,2017-18,0.0,9.0,Ashburnham-Westminster - Westminster Elementary,06100005, 1.6, 0.0, 5.0, 91.0, 0.0, 0.0, 2.4, 54.6, 45.4 -1,1,a-cure-i1,2017-18,0.0,26.099999999999994,Ashland - Ashland High,00140505, 2.3, 9.9, 10.9, 73.9, 0.3, 0.0, 2.7, 48.2, 51.6 -1,1,a-cure-i1,2017-18,2.5,31.599999999999994,Ashland - Ashland Middle,00140405, 2.2, 14.1, 12.0, 68.4, 0.5, 0.0, 2.8, 49.4, 50.6 -1,1,a-cure-i1,2017-18,0.0,31.200000000000003,Ashland - David Mindess,00140015, 2.2, 13.9, 9.9, 68.8, 1.5, 0.0, 3.7, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,36.1,Ashland - Henry E Warren Elementary,00140010, 2.1, 16.8, 12.4, 63.9, 0.0, 0.2, 4.6, 49.3, 50.7 -7.936507936507936,5,a-cure-i1,2017-18,12.5,25.200000000000003,Ashland - William Pittaway Elementary,00140005, 2.4, 22.0, 0.0, 74.8, 0.8, 0.0, 0.0, 56.7, 43.3 -1,1,a-cure-i1,2017-18,3.2,17.799999999999997,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.6, 0.4, 14.1, 82.2, 0.4, 0.0, 2.3, 59.5, 40.4 -1,1,a-cure-i1,2017-18,0.0,16.400000000000006,Athol-Royalston - Athol Community Elementary School,06150020, 1.0, 1.5, 9.5, 83.6, 0.0, 0.0, 4.5, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,13.0,Athol-Royalston - Athol High,06150505, 2.2, 0.8, 8.2, 87.0, 0.0, 0.0, 1.9, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,17.400000000000006,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.8, 0.8, 10.2, 82.6, 0.0, 0.0, 4.6, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,7.200000000000003,Athol-Royalston - Royalston Community School,06150050, 1.4, 0.7, 2.2, 92.8, 0.0, 0.0, 2.9, 50.4, 49.6 -1,1,a-cure-i1,2017-18,4.0,21.599999999999994,Atlantis Charter (District) - Atlantis Charter School,04910550, 5.0, 1.7, 10.8, 78.4, 0.1, 0.0, 4.0, 46.9, 53.1 -1,1,a-cure-i1,2017-18,4.2,33.3,Attleboro - A. Irvin Studley Elementary School,00160001, 4.4, 3.9, 17.2, 66.7, 0.3, 0.3, 7.3, 52.3, 47.7 -4.94308943089431,4.94,a-cure-i1,2017-18,7.6,24.599999999999994,Attleboro - Attleboro Community Academy,00160515, 4.9, 1.6, 14.8, 75.4, 0.0, 0.0, 3.3, 57.4, 42.6 -4.067796610169491,4.07,a-cure-i1,2017-18,7.5,29.5,Attleboro - Attleboro High,00160505, 5.8, 4.4, 13.6, 70.5, 0.4, 0.3, 5.0, 53.0, 47.0 -1,1,a-cure-i1,2017-18,0.0,36.3,Attleboro - Cyril K. Brennan Middle School,00160315, 6.0, 4.5, 19.6, 63.7, 0.3, 0.0, 5.8, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.0,27.200000000000003,Attleboro - Early Learning Center,00160008, 5.4, 3.8, 10.9, 72.8, 0.0, 0.0, 7.1, 59.8, 40.2 -1,1,a-cure-i1,2017-18,0.0,32.099999999999994,Attleboro - Hill-Roberts Elementary School,00160045, 5.9, 6.1, 11.1, 67.9, 0.9, 0.0, 8.1, 52.2, 47.8 -6.4797507788162,5,a-cure-i1,2017-18,13.0,32.099999999999994,Attleboro - Hyman Fine Elementary School,00160040, 4.1, 5.4, 14.5, 67.9, 0.0, 0.0, 8.1, 50.1, 49.9 -1,1,a-cure-i1,2017-18,3.8,33.599999999999994,Attleboro - Peter Thacher Elementary School,00160050, 5.7, 6.7, 11.7, 66.4, 0.5, 0.0, 9.0, 51.2, 48.8 -1,1,a-cure-i1,2017-18,0.0,24.5,Attleboro - Robert J. Coelho Middle School,00160305, 3.6, 3.3, 11.3, 75.5, 0.0, 0.0, 6.3, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,35.599999999999994,Attleboro - Thomas Willett Elementary School,00160035, 7.6, 3.9, 14.1, 64.4, 0.0, 0.0, 9.9, 51.0, 49.0 -1,1,a-cure-i1,2017-18,2.3,33.0,Attleboro - Wamsutta Middle School,00160320, 6.3, 6.1, 17.0, 67.0, 0.2, 0.2, 3.3, 53.3, 46.7 -1,1,a-cure-i1,2017-18,4.6,16.0,Auburn - Auburn Middle,00170305, 1.4, 3.5, 7.9, 84.0, 0.0, 0.0, 3.2, 53.6, 46.4 -1,1,a-cure-i1,2017-18,1.9000000000000001,16.700000000000003,Auburn - Auburn Senior High,00170505, 2.0, 5.0, 6.2, 83.3, 0.2, 0.0, 3.2, 46.6, 53.4 -1,1,a-cure-i1,2017-18,0.0,17.099999999999994,Auburn - Bryn Mawr,00170010, 1.0, 2.0, 10.7, 82.9, 0.0, 0.0, 3.3, 51.2, 48.8 -1,1,a-cure-i1,2017-18,0.0,18.900000000000006,Auburn - Pakachoag School,00170025, 2.3, 4.3, 8.0, 81.1, 0.0, 0.0, 4.3, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,19.599999999999994,Auburn - Swanson Road Intermediate School,00170030, 1.9, 4.5, 9.9, 80.4, 0.0, 0.0, 3.3, 48.0, 52.0 -6.292490118577074,5,a-cure-i1,2017-18,19.9,50.6,Avon - Avon Middle High School,00180510, 35.3, 4.5, 6.7, 49.4, 0.0, 0.0, 4.2, 52.2, 47.1 -1,1,a-cure-i1,2017-18,0.0,42.3,Avon - Ralph D Butler,00180010, 23.4, 4.3, 8.9, 57.7, 1.0, 0.0, 4.6, 54.3, 45.7 -1,1,a-cure-i1,2017-18,3.4,28.400000000000006,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 7.3, 2.2, 9.5, 71.6, 1.0, 0.0, 8.3, 48.9, 51.1 -11.689497716894975,5,a-cure-i1,2017-18,16.0,21.900000000000006,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 3.8, 2.4, 10.0, 78.1, 1.1, 1.1, 3.5, 51.9, 48.1 -1,1,a-cure-i1,2017-18,4.3,16.5,Ayer Shirley School District - Lura A. White Elementary School,06160001, 1.8, 1.8, 9.0, 83.5, 0.0, 0.3, 3.8, 53.3, 46.8 -1,1,a-cure-i1,2017-18,0.0,26.599999999999994,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 4.9, 3.6, 12.1, 73.4, 0.2, 0.2, 5.5, 52.9, 47.1 -4.851985559566787,4.85,a-cure-i1,2017-18,8.4,27.700000000000003,Barnstable - Barnstable High,00200505, 8.8, 2.3, 11.8, 72.3, 0.6, 0.4, 3.7, 49.9, 50.1 -1,1,a-cure-i1,2017-18,2.3,28.799999999999997,Barnstable - Barnstable Intermediate School,00200315, 7.7, 1.9, 13.0, 71.2, 0.3, 0.0, 5.8, 49.7, 50.3 -1,1,a-cure-i1,2017-18,4.4,25.900000000000006,Barnstable - Barnstable United Elementary School,00200050, 6.0, 2.2, 13.5, 74.1, 0.4, 0.5, 3.4, 51.7, 48.3 -1,1,a-cure-i1,2017-18,0.0,20.799999999999997,Barnstable - Centerville Elementary,00200010, 5.4, 1.5, 8.1, 79.2, 0.0, 0.0, 5.8, 52.9, 47.1 -1,1,a-cure-i1,2017-18,0.0,37.0,Barnstable - Enoch Cobb Early Learning Center,00200001, 8.1, 0.7, 19.3, 63.0, 1.5, 0.0, 7.4, 55.6, 44.4 -1.8734177215189873,1.87,a-cure-i1,2017-18,7.4,63.2,Barnstable - Hyannis West Elementary,00200025, 16.5, 3.3, 32.6, 36.8, 0.3, 0.0, 10.5, 53.9, 46.1 -1,1,a-cure-i1,2017-18,0.0,17.700000000000003,Barnstable - West Barnstable Elementary,00200005, 5.0, 0.8, 7.3, 82.3, 0.0, 0.0, 4.6, 55.4, 44.6 -1,1,a-cure-i1,2017-18,0.0,13.0,Barnstable - West Villages Elementary School,00200045, 2.8, 0.2, 5.3, 87.0, 0.2, 0.0, 4.4, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,50.2,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 17.3, 3.3, 24.1, 49.8, 0.7, 0.0, 4.9, 50.8, 48.9 -3.6962025316455693,3.7,a-cure-i1,2017-18,21.9,94.8,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 25.8, 0.9, 66.7, 5.2, 0.0, 0.2, 1.1, 50.8, 49.2 -4.0,4.0,a-cure-i1,2017-18,8.2,32.8,Bedford - Bedford High,00230505, 7.1, 12.0, 7.8, 67.2, 0.0, 0.2, 5.6, 50.3, 49.4 -1,1,a-cure-i1,2017-18,0.4,32.2,Bedford - John Glenn Middle,00230305, 6.0, 16.6, 5.3, 67.8, 0.0, 0.0, 4.3, 51.5, 48.5 -2.75,2.75,a-cure-i1,2017-18,6.6,38.4,Bedford - Lt Elezer Davis,00230010, 5.5, 18.9, 5.5, 61.6, 0.0, 0.0, 8.4, 48.2, 51.8 -1,1,a-cure-i1,2017-18,3.1,29.900000000000006,Bedford - Lt Job Lane School,00230012, 5.3, 17.7, 3.9, 70.1, 0.0, 0.0, 3.0, 52.5, 47.5 -1,1,a-cure-i1,2017-18,2.2,9.400000000000006,Belchertown - Belchertown High,00240505, 2.1, 1.7, 3.5, 90.6, 0.3, 0.1, 1.7, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,10.799999999999997,Belchertown - Chestnut Hill Community School,00240006, 2.2, 2.2, 4.3, 89.2, 0.2, 0.4, 1.6, 48.2, 51.8 -1,1,a-cure-i1,2017-18,0.0,14.5,Belchertown - Cold Spring,00240005, 0.5, 2.1, 8.3, 85.5, 0.0, 0.0, 3.6, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,8.0,Belchertown - Jabish Middle School,00240025, 1.0, 2.0, 1.8, 92.0, 0.0, 0.5, 2.8, 52.5, 47.5 -1,1,a-cure-i1,2017-18,0.0,13.700000000000003,Belchertown - Swift River Elementary,00240018, 2.4, 1.1, 4.9, 86.3, 0.6, 0.0, 4.7, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,10.900000000000006,Bellingham - Bellingham Early Childhood Center,00250003, 2.7, 2.7, 1.8, 89.1, 0.0, 0.9, 2.7, 53.6, 46.4 -1,1,a-cure-i1,2017-18,3.9,12.599999999999994,Bellingham - Bellingham High School,00250505, 2.4, 3.0, 4.7, 87.4, 0.3, 0.0, 2.2, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,12.200000000000003,Bellingham - Bellingham Memorial School,00250315, 1.9, 3.9, 4.2, 87.8, 0.3, 0.0, 1.9, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.0,11.799999999999997,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 11.8, 88.2, 0.0, 0.0, 0.0, 55.9, 41.2 -1,1,a-cure-i1,2017-18,0.0,8.700000000000003,Bellingham - South Elementary,00250020, 1.2, 1.2, 4.5, 91.3, 0.0, 0.6, 1.2, 51.3, 48.7 -1,1,a-cure-i1,2017-18,0.0,13.400000000000006,Bellingham - Stall Brook,00250025, 3.1, 1.6, 3.7, 86.6, 0.0, 2.2, 2.8, 51.2, 48.8 -5.3156146179402,5,a-cure-i1,2017-18,10.0,30.099999999999994,Belmont - Belmont High,00260505, 4.2, 17.5, 3.7, 69.9, 0.1, 0.1, 4.6, 48.5, 51.5 -4.986547085201793,4.99,a-cure-i1,2017-18,13.899999999999999,44.6,Belmont - Daniel Butler,00260015, 3.1, 26.0, 7.2, 55.4, 0.5, 0.0, 7.7, 54.4, 45.6 -1,1,a-cure-i1,2017-18,4.6,36.6,Belmont - Mary Lee Burbank,00260010, 3.2, 19.5, 4.0, 63.4, 0.0, 0.5, 9.4, 50.8, 49.2 -1,1,a-cure-i1,2017-18,2.7,30.099999999999994,Belmont - Roger E Wellington,00260035, 1.9, 15.5, 3.2, 69.9, 0.0, 0.0, 9.4, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.9,39.4,Belmont - Winn Brook,00260005, 2.0, 25.9, 3.7, 60.6, 0.2, 0.0, 7.6, 53.5, 46.5 -7.207207207207208,5,a-cure-i1,2017-18,15.0,33.3,Belmont - Winthrop L Chenery Middle,00260305, 3.9, 17.8, 4.9, 66.7, 0.1, 0.1, 6.5, 49.1, 50.9 -5.4367346938775505,5,a-cure-i1,2017-18,33.3,98.0,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 84.7, 0.8, 11.0, 2.0, 0.0, 0.0, 1.4, 49.4, 50.6 -1,1,a-cure-i1,2017-18,0.0,32.5,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 2.3, 22.6, 3.6, 67.5, 0.0, 0.0, 4.1, 48.5, 51.5 -1.3236574746008707,1.32,a-cure-i1,2017-18,5.7,68.9,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 14.5, 3.7, 48.6, 31.1, 0.0, 0.0, 2.0, 50.7, 49.3 -1,1,a-cure-i1,2017-18,3.6,4.900000000000006,Berkley - Berkley Community School,00270010, 0.4, 0.2, 0.9, 95.1, 0.2, 0.0, 3.2, 48.6, 51.4 -1,1,a-cure-i1,2017-18,0.0,5.900000000000006,Berkley - Berkley Middle School,00270305, 0.5, 0.5, 2.0, 94.1, 0.0, 0.0, 2.8, 50.1, 49.9 -3.7006802721088428,3.7,a-cure-i1,2017-18,6.8,29.400000000000006,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 12.4, 3.4, 8.8, 70.6, 0.3, 0.3, 4.2, 50.0, 50.0 -5.6598639455782305,5,a-cure-i1,2017-18,5.2,14.700000000000003,Berkshire Hills - Monument Mt Regional High,06180505, 2.1, 1.9, 6.5, 85.3, 0.0, 0.4, 3.8, 53.2, 46.8 -4.558659217877093,4.56,a-cure-i1,2017-18,5.1,17.900000000000006,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.9, 3.7, 7.8, 82.1, 0.3, 0.0, 4.3, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.2,23.299999999999997,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.9, 2.6, 11.2, 76.7, 0.0, 0.0, 8.6, 52.9, 47.1 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,Berlin - Berlin Memorial,00280005, 0.0, 1.6, 4.9, 90.7, 0.0, 0.0, 2.7, 56.3, 43.7 -1,1,a-cure-i1,2017-18,2.0,10.900000000000006,Berlin-Boylston - Tahanto Regional High,06200505, 1.9, 3.0, 3.5, 89.1, 0.0, 0.0, 2.5, 54.2, 45.8 -1,1,a-cure-i1,2017-18,0.0,23.400000000000006,Beverly - Ayers/Ryal Side School,00300055, 3.0, 4.2, 13.0, 76.6, 0.0, 0.0, 3.2, 53.5, 46.5 -1,1,a-cure-i1,2017-18,2.1,21.400000000000006,Beverly - Beverly High,00300505, 3.2, 2.9, 12.1, 78.6, 0.0, 0.2, 3.0, 49.4, 50.5 -1,1,a-cure-i1,2017-18,3.4,20.200000000000003,Beverly - Briscoe Middle,00300305, 3.4, 2.4, 11.2, 79.8, 0.0, 0.0, 3.1, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.0,25.099999999999994,Beverly - Centerville Elementary,00300010, 3.6, 0.8, 16.3, 74.9, 0.0, 0.0, 4.4, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,22.400000000000006,Beverly - Cove Elementary,00300015, 2.4, 1.4, 12.8, 77.6, 0.0, 0.2, 5.5, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,21.5,Beverly - Hannah Elementary,00300033, 2.0, 1.5, 13.6, 78.5, 0.0, 0.0, 4.3, 54.0, 46.0 -1,1,a-cure-i1,2017-18,0.0,28.099999999999994,Beverly - McKeown School,00300002, 3.5, 5.3, 13.2, 71.9, 0.0, 0.0, 6.1, 61.4, 38.6 -1,1,a-cure-i1,2017-18,0.0,23.099999999999994,Beverly - North Beverly Elementary,00300040, 2.5, 2.3, 15.0, 76.9, 0.3, 0.0, 3.0, 50.1, 49.9 -1,1,a-cure-i1,2017-18,2.0,18.099999999999994,Billerica - Billerica Memorial High School,00310505, 3.4, 7.2, 5.1, 81.9, 0.1, 0.2, 2.0, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,27.700000000000003,Billerica - Eugene C Vining,00310030, 2.6, 5.6, 12.3, 72.3, 0.0, 0.0, 7.2, 56.9, 43.1 -1,1,a-cure-i1,2017-18,0.0,15.799999999999997,Billerica - Frederick J Dutile,00310007, 4.8, 4.0, 5.1, 84.2, 0.0, 0.0, 1.8, 49.5, 50.5 -1,1,a-cure-i1,2017-18,3.6,26.799999999999997,Billerica - Hajjar Elementary,00310026, 6.1, 9.3, 9.1, 73.2, 0.2, 0.0, 2.2, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,11.200000000000003,Billerica - John F Kennedy,00310012, 1.3, 3.5, 4.2, 88.8, 0.0, 0.0, 2.2, 47.6, 52.4 -1,1,a-cure-i1,2017-18,0.0,17.599999999999994,Billerica - Locke Middle,00310310, 3.0, 6.3, 4.7, 82.4, 0.0, 0.6, 3.0, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,16.299999999999997,Billerica - Marshall Middle School,00310305, 3.5, 6.3, 4.9, 83.7, 0.3, 0.2, 1.1, 50.3, 49.7 -1,1,a-cure-i1,2017-18,0.0,26.900000000000006,Billerica - Parker,00310015, 5.4, 10.8, 7.4, 73.1, 0.2, 0.0, 3.2, 54.0, 46.0 -1,1,a-cure-i1,2017-18,0.0,27.400000000000006,Billerica - Thomas Ditson,00310005, 5.8, 10.3, 6.2, 72.6, 0.0, 0.0, 5.2, 49.4, 50.6 -1,1,a-cure-i1,2017-18,2.1,7.0,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.4, 1.4, 3.4, 93.0, 0.0, 0.0, 1.8, 50.1, 49.9 -1,1,a-cure-i1,2017-18,0.0,15.400000000000006,Blackstone-Millville - A F Maloney,06220015, 1.7, 1.7, 6.7, 84.6, 0.0, 0.0, 5.4, 49.2, 50.8 -14.451612903225811,5,a-cure-i1,2017-18,8.4,9.299999999999997,Blackstone-Millville - Blackstone Millville RHS,06220505, 1.0, 1.7, 5.9, 90.7, 0.0, 0.0, 0.7, 51.1, 48.9 -9.821782178217827,5,a-cure-i1,2017-18,6.2,10.099999999999994,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.9, 0.5, 3.8, 89.9, 0.2, 0.0, 3.8, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,16.900000000000006,Blackstone-Millville - John F Kennedy Elementary,06220008, 1.7, 0.3, 9.1, 83.1, 0.0, 0.0, 5.7, 56.4, 43.6 -1,1,a-cure-i1,2017-18,0.0,10.5,Blackstone-Millville - Millville Elementary,06220010, 0.0, 1.4, 6.0, 89.5, 0.0, 0.0, 3.2, 49.5, 50.5 -3.3103448275862064,3.31,a-cure-i1,2017-18,8.399999999999999,40.6,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 22.0, 0.9, 12.4, 59.4, 0.7, 0.1, 4.4, 55.4, 44.6 -7.078260869565218,5,a-cure-i1,2017-18,40.7,92.0,Boston - Another Course To College,00350541, 45.1, 4.0, 40.2, 8.0, 0.0, 0.4, 2.2, 54.9, 45.1 -12.697050938337803,5,a-cure-i1,2017-18,59.2,74.6,Boston - Baldwin Early Learning Center,00350003, 9.2, 28.9, 31.2, 25.4, 0.0, 0.0, 5.2, 60.1, 39.9 -6.442953020134228,5,a-cure-i1,2017-18,24.0,59.6,Boston - Beethoven,00350021, 27.8, 2.5, 25.9, 40.4, 0.0, 0.0, 3.4, 48.5, 51.5 -4.741968911917098,4.74,a-cure-i1,2017-18,28.6,96.5,Boston - Blackstone,00350390, 25.4, 1.7, 66.8, 3.5, 0.2, 0.2, 2.3, 53.2, 46.8 -12.3302752293578,5,a-cure-i1,2017-18,75.60000000000001,98.1,Boston - Boston Adult Academy,00350548, 51.3, 5.2, 40.3, 1.9, 0.0, 0.6, 0.6, 51.3, 48.7 -9.603686635944701,5,a-cure-i1,2017-18,52.1,86.8,Boston - Boston Arts Academy,00350546, 40.3, 4.1, 37.5, 13.2, 0.4, 0.2, 4.3, 33.7, 66.3 -9.583068783068782,5,a-cure-i1,2017-18,56.599999999999994,94.5,Boston - Boston Collaborative High School,00350755, 44.0, 3.8, 45.1, 5.5, 0.5, 0.0, 1.1, 54.9, 45.1 -8.345626975763961,5,a-cure-i1,2017-18,49.5,94.9,Boston - Boston Community Leadership Academy,00350558, 34.8, 5.3, 52.7, 5.1, 0.4, 0.0, 1.7, 51.9, 48.1 -7.909743589743591,5,a-cure-i1,2017-18,48.2,97.5,Boston - Boston International High School,00350507, 43.4, 4.1, 48.4, 2.5, 0.0, 0.8, 0.8, 55.5, 44.5 -8.902033271719036,5,a-cure-i1,2017-18,30.099999999999994,54.1,Boston - Boston Latin,00350560, 7.9, 29.1, 12.7, 45.9, 0.1, 0.2, 4.0, 44.6, 55.4 -9.065155807365441,5,a-cure-i1,2017-18,40.00000000000001,70.6,Boston - Boston Latin Academy,00350545, 21.8, 21.8, 23.5, 29.4, 0.3, 0.2, 3.1, 42.2, 57.7 -9.632653061224492,5,a-cure-i1,2017-18,41.300000000000004,68.6,Boston - Boston Teachers Union School,00350012, 25.4, 1.7, 37.6, 31.4, 0.0, 0.0, 3.8, 55.1, 44.9 -5.623430962343097,5,a-cure-i1,2017-18,33.6,95.6,Boston - Brighton High,00350505, 42.2, 4.0, 47.7, 4.4, 0.7, 0.1, 0.9, 61.4, 38.6 -1,1,a-cure-i1,2017-18,0.0,86.2,Boston - Carter Developmental Center,00350036, 51.7, 10.3, 20.7, 13.8, 0.0, 3.4, 0.0, 62.1, 37.9 -11.782696177062373,5,a-cure-i1,2017-18,73.2,99.4,Boston - Charles H Taylor,00350054, 76.5, 0.8, 18.8, 0.6, 0.9, 0.0, 2.5, 51.6, 48.4 -8.75261324041812,5,a-cure-i1,2017-18,47.1,86.1,Boston - Charles Sumner,00350052, 19.4, 1.7, 59.9, 13.9, 0.0, 0.2, 4.8, 53.7, 46.3 -7.353620146904512,5,a-cure-i1,2017-18,43.8,95.3,Boston - Charlestown High,00350515, 32.6, 13.2, 48.4, 4.7, 0.1, 0.0, 1.1, 58.3, 41.6 -7.303974221267455,5,a-cure-i1,2017-18,42.5,93.1,Boston - Clarence R Edwards Middle,00350430, 13.1, 7.5, 70.3, 6.9, 0.0, 0.0, 2.3, 56.2, 43.8 -15.182662538699693,5,a-cure-i1,2017-18,61.300000000000004,64.6,Boston - Community Academy,00350518, 41.8, 0.0, 21.5, 35.4, 0.0, 0.0, 1.3, 53.2, 46.8 -8.580183861082737,5,a-cure-i1,2017-18,52.5,97.9,Boston - Community Academy of Science and Health,00350581, 66.8, 3.1, 25.4, 2.1, 0.3, 0.0, 2.3, 53.7, 46.3 -9.250317662007623,5,a-cure-i1,2017-18,45.5,78.7,Boston - Curley K-8 School,00350020, 19.3, 2.4, 51.4, 21.3, 0.1, 0.1, 5.4, 51.5, 48.5 -5.795121951219513,5,a-cure-i1,2017-18,29.700000000000003,82.0,Boston - Curtis Guild,00350062, 1.0, 0.7, 80.0, 18.0, 0.0, 0.0, 0.3, 50.5, 49.5 -2.5709828393135727,2.57,a-cure-i1,2017-18,10.3,64.1,Boston - Dante Alighieri Montessori School,00350066, 2.2, 1.1, 56.5, 35.9, 0.0, 0.0, 4.3, 41.3, 58.7 -10.546201232032853,5,a-cure-i1,2017-18,64.2,97.4,Boston - David A Ellis,00350072, 39.6, 0.0, 54.9, 2.6, 0.7, 0.0, 2.2, 50.3, 49.7 -9.480283114256824,5,a-cure-i1,2017-18,58.599999999999994,98.9,Boston - Dearborn,00350074, 66.7, 0.3, 28.0, 1.1, 0.3, 0.6, 3.1, 51.1, 48.9 -3.3315649867374004,3.33,a-cure-i1,2017-18,15.700000000000001,75.4,Boston - Dennis C Haley,00350077, 30.6, 1.1, 37.6, 24.6, 0.2, 0.2, 5.6, 51.2, 48.8 -3.7016216216216216,3.7,a-cure-i1,2017-18,21.4,92.5,Boston - Donald Mckay,00350080, 2.1, 0.5, 88.9, 7.5, 0.1, 0.0, 0.9, 49.4, 50.6 -14.143646408839778,5,a-cure-i1,2017-18,80.0,90.5,Boston - Dorchester Academy,00350651, 69.0, 2.4, 19.0, 9.5, 0.0, 0.0, 0.0, 47.6, 52.4 -8.629213483146067,5,a-cure-i1,2017-18,52.8,97.9,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 51.9, 1.1, 42.9, 2.1, 0.5, 0.0, 1.6, 52.4, 47.6 -8.565413533834585,5,a-cure-i1,2017-18,35.599999999999994,66.5,Boston - Dr. William Henderson Lower,00350266, 31.6, 14.6, 16.0, 33.5, 0.0, 0.5, 3.8, 48.6, 51.4 -7.419689119170985,5,a-cure-i1,2017-18,35.800000000000004,77.2,Boston - Dr. William Henderson Upper,00350426, 41.4, 7.1, 25.4, 22.8, 0.3, 0.0, 3.0, 53.8, 46.2 -16.922252010723863,5,a-cure-i1,2017-18,78.9,74.6,Boston - East Boston Early Childhood Center,00350009, 9.6, 2.5, 59.9, 25.4, 0.0, 0.5, 2.0, 49.7, 50.3 -5.5613048368953875,5,a-cure-i1,2017-18,30.9,88.9,Boston - East Boston High,00350530, 7.0, 1.6, 78.8, 11.1, 0.4, 0.0, 1.2, 57.2, 42.8 -5.916279069767441,5,a-cure-i1,2017-18,31.799999999999997,86.0,Boston - Edison K-8,00350375, 19.8, 16.5, 45.5, 14.0, 1.4, 0.2, 2.5, 54.0, 46.0 -4.236760124610592,4.24,a-cure-i1,2017-18,25.5,96.3,Boston - Edward Everett,00350088, 41.5, 18.4, 30.5, 3.7, 0.4, 0.0, 5.5, 49.3, 50.7 -7.213282247765006,5,a-cure-i1,2017-18,35.3,78.3,Boston - ELC - West Zone,00350006, 28.7, 7.0, 38.3, 21.7, 0.9, 0.0, 3.5, 57.4, 42.6 -13.399014778325123,5,a-cure-i1,2017-18,34.0,40.6,Boston - Eliot Elementary,00350096, 7.4, 9.3, 17.2, 59.4, 0.2, 0.2, 6.5, 50.4, 49.6 -7.9750000000000005,5,a-cure-i1,2017-18,31.900000000000002,64.0,Boston - Ellis Mendell,00350100, 22.8, 0.7, 31.8, 36.0, 0.4, 0.0, 8.2, 50.9, 49.1 -8.785329018338727,5,a-cure-i1,2017-18,50.9,92.7,Boston - Excel High School,00350522, 37.3, 23.0, 30.5, 7.3, 0.0, 0.0, 1.8, 61.3, 38.7 -8.80917622523462,5,a-cure-i1,2017-18,52.800000000000004,95.9,Boston - Fenway High School,00350540, 31.0, 3.3, 59.9, 4.1, 0.0, 0.3, 1.4, 49.2, 50.8 -6.976857490864799,5,a-cure-i1,2017-18,35.8,82.1,Boston - Franklin D Roosevelt,00350116, 37.1, 1.5, 39.7, 17.9, 0.4, 0.2, 3.1, 52.8, 47.2 -7.262672811059909,5,a-cure-i1,2017-18,39.400000000000006,86.8,Boston - Gardner Pilot Academy,00350326, 11.7, 4.5, 65.6, 13.2, 0.0, 0.2, 4.7, 52.6, 47.4 -5.997604790419162,5,a-cure-i1,2017-18,31.3,83.5,Boston - George H Conley,00350122, 36.8, 3.3, 40.1, 16.5, 0.0, 0.0, 3.3, 52.8, 47.2 -12.476767676767677,5,a-cure-i1,2017-18,77.2,99.0,Boston - Greater Egleston Community High School,00350543, 36.2, 0.0, 60.0, 1.0, 1.0, 0.0, 1.9, 48.6, 51.4 -6.158075601374571,5,a-cure-i1,2017-18,33.6,87.3,Boston - Harvard-Kent,00350200, 23.5, 27.1, 33.4, 12.7, 0.2, 0.2, 3.0, 57.9, 42.1 -10.48559670781893,5,a-cure-i1,2017-18,63.7,97.2,Boston - Haynes Early Education Center,00350010, 49.5, 4.2, 38.7, 2.8, 0.0, 0.0, 4.7, 53.3, 46.7 -7.447661469933186,5,a-cure-i1,2017-18,41.800000000000004,89.8,Boston - Henry Grew,00350135, 40.9, 2.0, 41.3, 10.2, 0.0, 0.4, 5.1, 44.5, 55.5 -9.441295546558704,5,a-cure-i1,2017-18,58.3,98.8,Boston - Higginson,00350015, 37.4, 0.6, 57.9, 1.2, 0.6, 0.0, 2.3, 52.6, 47.4 -11.024390243902438,5,a-cure-i1,2017-18,67.8,98.4,Boston - Higginson/Lewis K-8,00350377, 49.7, 0.3, 42.5, 1.6, 0.3, 0.0, 5.5, 53.9, 46.1 -1.0033594624860023,1.0,a-cure-i1,2017-18,5.6,89.3,Boston - Horace Mann School for the Deaf,00350750, 33.3, 4.8, 47.6, 10.7, 0.0, 0.0, 3.6, 59.5, 40.5 -1.5543822597676873,1.55,a-cure-i1,2017-18,9.2,94.7,Boston - Hugh Roe O'Donnell,00350141, 1.6, 2.0, 89.9, 5.3, 0.0, 0.0, 1.2, 51.0, 49.0 -5.466811751904243,5,a-cure-i1,2017-18,31.399999999999995,91.9,Boston - Jackson Mann,00350013, 37.5, 11.6, 39.9, 8.1, 0.3, 0.0, 2.6, 56.7, 43.3 -6.624843161856964,5,a-cure-i1,2017-18,33.0,79.7,Boston - James Condon Elementary,00350146, 35.0, 7.4, 32.9, 20.3, 0.1, 0.3, 3.9, 51.5, 48.5 -6.343975283213183,5,a-cure-i1,2017-18,38.5,97.1,Boston - James J Chittick,00350154, 64.4, 1.3, 26.8, 2.9, 0.0, 0.0, 4.6, 54.9, 45.1 -5.0625,5,a-cure-i1,2017-18,24.3,76.8,Boston - James Otis,00350156, 4.4, 2.0, 68.9, 23.2, 0.0, 0.0, 1.5, 52.1, 47.9 -10.103553299492384,5,a-cure-i1,2017-18,62.199999999999996,98.5,Boston - James P Timilty Middle,00350485, 30.8, 0.6, 64.4, 1.5, 0.0, 0.6, 2.1, 47.4, 52.6 -7.174139728884253,5,a-cure-i1,2017-18,42.99999999999999,95.9,Boston - James W Hennigan,00350153, 28.5, 2.6, 63.1, 4.1, 0.0, 0.0, 1.7, 46.7, 53.3 -9.63914373088685,5,a-cure-i1,2017-18,59.1,98.1,Boston - Jeremiah E Burke High,00350525, 71.0, 0.6, 24.4, 1.9, 0.2, 0.2, 1.7, 55.1, 44.9 -12.251207729468598,5,a-cure-i1,2017-18,63.4,82.8,Boston - John D Philbrick,00350172, 47.2, 1.2, 32.5, 17.2, 0.0, 0.0, 1.8, 52.1, 47.9 -6.3589743589743595,5,a-cure-i1,2017-18,37.2,93.6,Boston - John F Kennedy,00350166, 18.1, 1.8, 71.7, 6.4, 0.0, 0.0, 2.0, 49.0, 51.0 -7.369085173501578,5,a-cure-i1,2017-18,43.8,95.1,Boston - John W McCormack,00350179, 29.1, 4.9, 58.8, 4.9, 0.0, 0.0, 2.4, 53.9, 46.1 -5.5234215885947044,5,a-cure-i1,2017-18,33.9,98.2,Boston - John Winthrop,00350180, 59.3, 1.8, 33.3, 1.8, 0.3, 1.2, 2.1, 48.6, 51.4 -12.587202007528232,5,a-cure-i1,2017-18,62.7,79.7,Boston - Joseph J Hurley,00350182, 6.9, 1.1, 68.9, 20.3, 0.3, 0.0, 2.5, 51.1, 48.9 -4.6849894291754755,4.68,a-cure-i1,2017-18,27.7,94.6,Boston - Joseph Lee,00350183, 54.8, 5.7, 27.7, 5.4, 0.2, 0.3, 5.9, 54.2, 45.8 -4.407345575959933,4.41,a-cure-i1,2017-18,16.5,59.9,Boston - Joseph P Manning,00350184, 20.4, 3.9, 27.0, 40.1, 0.0, 0.7, 7.9, 47.4, 52.6 -6.676691729323308,5,a-cure-i1,2017-18,33.3,79.8,Boston - Joseph P Tynan,00350181, 39.1, 9.4, 27.0, 20.2, 0.0, 0.0, 4.3, 59.7, 40.3 -10.260089686098654,5,a-cure-i1,2017-18,57.199999999999996,89.2,Boston - Josiah Quincy,00350286, 14.7, 58.5, 12.1, 10.8, 0.1, 0.0, 3.7, 49.6, 50.4 -4.993839835728952,4.99,a-cure-i1,2017-18,15.2,48.7,Boston - Joyce Kilmer,00350190, 15.2, 8.6, 19.5, 51.3, 0.0, 0.2, 5.2, 50.4, 49.6 -8.601441812564367,5,a-cure-i1,2017-18,52.199999999999996,97.1,Boston - King K-8,00350376, 61.2, 0.6, 31.2, 2.9, 0.2, 0.2, 3.7, 49.1, 50.9 -5.771611526147278,5,a-cure-i1,2017-18,33.8,93.7,Boston - Lee Academy,00350001, 52.5, 7.6, 27.8, 6.3, 0.9, 0.4, 4.5, 53.8, 46.2 -7.3373737373737375,5,a-cure-i1,2017-18,45.4,99.0,Boston - Lilla G. Frederick Middle School,00350383, 44.1, 7.9, 43.9, 1.0, 0.0, 0.0, 3.0, 55.9, 44.1 -8.665168539325842,5,a-cure-i1,2017-18,24.099999999999998,44.5,Boston - Lyndon,00350262, 8.9, 2.2, 29.6, 55.5, 0.0, 0.0, 3.8, 52.1, 47.9 -6.061971830985916,5,a-cure-i1,2017-18,26.900000000000002,71.0,Boston - Lyon K-8,00350004, 20.6, 9.9, 32.8, 29.0, 0.0, 0.0, 7.6, 55.7, 44.3 -6.086455331412104,5,a-cure-i1,2017-18,26.400000000000002,69.4,Boston - Lyon Upper 9-12,00350655, 20.2, 6.5, 35.5, 30.6, 0.8, 0.0, 6.5, 55.6, 44.4 -8.048979591836735,5,a-cure-i1,2017-18,49.300000000000004,98.0,Boston - Madison Park High,00350537, 36.7, 1.3, 57.5, 2.0, 0.2, 0.2, 2.1, 58.0, 42.0 -4.281345565749235,4.28,a-cure-i1,2017-18,17.5,65.4,Boston - Manassah E Bradley,00350215, 4.1, 6.4, 52.2, 34.6, 0.0, 0.0, 2.7, 53.2, 46.8 -9.777777777777779,5,a-cure-i1,2017-18,60.5,99.0,Boston - Margarita Muniz Academy,00350549, 2.3, 0.0, 96.3, 1.0, 0.0, 0.0, 0.3, 42.3, 57.7 -6.029978586723768,5,a-cure-i1,2017-18,35.199999999999996,93.4,Boston - Mario Umana Academy,00350656, 3.2, 2.3, 87.3, 6.6, 0.0, 0.1, 0.6, 52.6, 47.4 -10.729011689691818,5,a-cure-i1,2017-18,63.1,94.1,Boston - Mather,00350227, 38.7, 32.6, 16.3, 5.9, 0.5, 0.0, 6.1, 49.8, 50.2 -7.260361317747079,5,a-cure-i1,2017-18,42.7,94.1,Boston - Mattapan Early Elementary School,00350016, 65.2, 0.3, 26.2, 5.9, 0.7, 0.0, 1.7, 61.7, 38.3 -5.911975435005118,5,a-cure-i1,2017-18,36.1,97.7,Boston - Maurice J Tobin,00350229, 32.4, 1.2, 61.1, 2.3, 0.2, 0.2, 2.6, 47.8, 52.2 -8.300884955752212,5,a-cure-i1,2017-18,46.9,90.4,Boston - Michael J Perkins,00350231, 42.7, 2.8, 39.9, 9.6, 0.9, 0.0, 4.1, 44.0, 56.0 -9.224489795918368,5,a-cure-i1,2017-18,56.5,98.0,Boston - Mildred Avenue K-8,00350378, 67.5, 0.9, 25.8, 2.0, 1.5, 0.0, 2.4, 50.7, 49.3 -1,1,a-cure-i1,2017-18,4.3,66.0,Boston - Mission Hill School,00350382, 23.2, 0.8, 35.7, 34.0, 0.4, 0.4, 5.4, 58.5, 41.5 -10.958540630182423,5,a-cure-i1,2017-18,41.300000000000004,60.3,Boston - Mozart,00350237, 24.0, 3.9, 24.0, 39.7, 1.1, 0.0, 7.3, 59.2, 40.8 -10.057630736392742,5,a-cure-i1,2017-18,58.9,93.7,Boston - Nathan Hale,00350243, 49.4, 6.3, 31.6, 6.3, 0.0, 0.0, 6.3, 46.2, 53.8 -9.007164790174002,5,a-cure-i1,2017-18,55.0,97.7,Boston - New Mission High School,00350542, 59.9, 1.0, 35.2, 2.3, 0.0, 0.0, 1.5, 52.3, 47.7 -7.826982492276005,5,a-cure-i1,2017-18,47.5,97.1,Boston - O W Holmes,00350138, 58.8, 3.2, 28.8, 2.9, 0.0, 0.6, 5.8, 51.0, 49.0 -10.185061315496096,5,a-cure-i1,2017-18,57.099999999999994,89.7,Boston - O'Bryant School Math/Science,00350575, 33.2, 21.2, 32.5, 10.3, 0.3, 0.2, 2.3, 43.7, 56.3 -11.017721518987342,5,a-cure-i1,2017-18,27.2,39.5,Boston - Oliver Hazard Perry,00350255, 21.4, 0.9, 14.5, 60.5, 0.0, 0.0, 2.7, 56.8, 43.2 -5.773700305810397,5,a-cure-i1,2017-18,35.4,98.1,Boston - Orchard Gardens,00350257, 50.9, 1.3, 42.3, 1.9, 0.8, 0.4, 2.3, 51.0, 49.0 -6.002125398512221,5,a-cure-i1,2017-18,35.3,94.1,Boston - Patrick J Kennedy,00350264, 2.6, 2.6, 88.5, 5.9, 0.0, 0.0, 0.3, 54.4, 45.6 -9.171759747102213,5,a-cure-i1,2017-18,54.4,94.9,Boston - Paul A Dever,00350268, 25.3, 6.2, 61.0, 5.1, 0.6, 0.3, 1.7, 52.8, 47.2 -6.051387461459403,5,a-cure-i1,2017-18,36.8,97.3,Boston - Pauline Agassiz Shaw Elementary School,00350014, 64.5, 2.3, 24.6, 2.7, 0.0, 0.0, 5.9, 50.4, 49.6 -3.580562659846547,3.58,a-cure-i1,2017-18,17.5,78.2,Boston - Phineas Bates,00350278, 31.7, 5.7, 37.4, 21.8, 0.0, 0.0, 3.4, 50.8, 49.2 -8.96740273396425,5,a-cure-i1,2017-18,53.300000000000004,95.1,Boston - Quincy Upper School,00350565, 21.3, 48.1, 22.9, 4.9, 0.2, 0.0, 2.6, 52.1, 47.9 -10.166311300639657,5,a-cure-i1,2017-18,59.599999999999994,93.8,Boston - Rafael Hernandez,00350691, 3.1, 0.3, 88.4, 6.2, 0.0, 0.0, 2.1, 47.6, 52.4 -5.507584597432905,5,a-cure-i1,2017-18,29.5,85.7,Boston - Richard J Murphy,00350240, 18.4, 41.9, 21.6, 14.3, 0.5, 0.3, 3.0, 53.2, 46.8 -5.644617380025941,5,a-cure-i1,2017-18,27.2,77.1,Boston - Roger Clap,00350298, 38.2, 5.1, 31.2, 22.9, 0.0, 0.0, 2.5, 47.1, 52.9 -7.522533495736907,5,a-cure-i1,2017-18,38.6,82.1,Boston - Samuel Adams,00350302, 4.1, 1.4, 75.6, 17.9, 0.3, 0.0, 0.7, 49.5, 50.5 -8.392324093816631,5,a-cure-i1,2017-18,49.2,93.8,Boston - Samuel W Mason,00350304, 48.3, 2.1, 34.7, 6.2, 2.1, 0.8, 5.8, 56.2, 43.8 -9.651560926485397,5,a-cure-i1,2017-18,59.89999999999999,99.3,Boston - Sarah Greenwood,00350308, 23.6, 0.2, 72.9, 0.7, 0.0, 0.2, 2.2, 54.0, 46.0 -5.720384204909284,5,a-cure-i1,2017-18,33.5,93.7,Boston - Snowden International School at Copley,00350690, 34.0, 6.5, 49.5, 6.3, 0.5, 0.7, 2.5, 48.6, 51.4 -6.49795918367347,5,a-cure-i1,2017-18,39.800000000000004,98.0,Boston - TechBoston Academy,00350657, 64.9, 3.3, 26.3, 2.0, 0.3, 0.2, 3.1, 55.9, 44.1 -7.943262411347518,5,a-cure-i1,2017-18,49.0,98.7,Boston - The English High,00350535, 41.7, 1.5, 54.9, 1.3, 0.0, 0.0, 0.6, 57.3, 42.7 -5.7,5,a-cure-i1,2017-18,28.5,80.0,Boston - Thomas J Kenny,00350328, 36.9, 15.4, 22.5, 20.0, 0.3, 0.0, 4.9, 52.3, 47.7 -6.917599186164802,5,a-cure-i1,2017-18,42.5,98.3,Boston - UP Academy Holland,00350167, 44.5, 6.7, 43.4, 1.7, 0.3, 0.0, 3.4, 49.6, 50.4 -9.863247863247864,5,a-cure-i1,2017-18,57.699999999999996,93.6,Boston - Urban Science Academy,00350579, 51.3, 0.0, 39.3, 6.4, 0.5, 0.0, 2.6, 61.2, 38.5 -4.73469387755102,4.73,a-cure-i1,2017-18,14.5,49.0,Boston - Warren-Prescott,00350346, 12.1, 5.3, 26.9, 51.0, 0.0, 0.2, 4.5, 53.7, 46.3 -7.617428267800213,5,a-cure-i1,2017-18,44.800000000000004,94.1,Boston - Washington Irving Middle,00350445, 42.4, 1.6, 47.0, 5.9, 0.9, 0.0, 2.2, 48.9, 51.1 -6.396570203644158,5,a-cure-i1,2017-18,37.3,93.3,Boston - West Roxbury Academy,00350658, 49.9, 2.7, 37.9, 6.7, 0.4, 0.4, 1.9, 54.3, 45.7 -7.269743589743589,5,a-cure-i1,2017-18,44.3,97.5,Boston - William E Russell,00350366, 31.9, 13.2, 49.5, 2.5, 0.7, 0.2, 2.0, 50.2, 49.8 -9.889361702127662,5,a-cure-i1,2017-18,58.10000000000001,94.0,Boston - William Ellery Channing,00350360, 49.1, 2.3, 39.4, 6.0, 0.0, 0.5, 2.8, 47.2, 52.8 -5.035110533159948,5,a-cure-i1,2017-18,24.2,76.9,Boston - William H Ohrenberger,00350258, 28.2, 4.0, 41.4, 23.1, 0.0, 0.0, 3.2, 52.9, 47.1 -4.466310160427808,4.47,a-cure-i1,2017-18,26.1,93.5,Boston - William McKinley,00350363, 53.8, 1.7, 34.9, 6.5, 0.6, 0.0, 2.5, 75.5, 24.5 -8.451282051282051,5,a-cure-i1,2017-18,51.5,97.5,Boston - William Monroe Trotter,00350370, 57.5, 0.8, 34.3, 2.5, 0.0, 0.8, 4.2, 52.2, 47.8 -9.67760342368046,5,a-cure-i1,2017-18,42.400000000000006,70.1,Boston - Winship Elementary,00350374, 17.2, 14.5, 32.6, 29.9, 0.0, 0.0, 5.9, 54.8, 45.2 -9.133603238866398,5,a-cure-i1,2017-18,56.400000000000006,98.8,Boston - Young Achievers,00350380, 50.6, 0.0, 45.8, 1.2, 0.2, 0.0, 2.1, 54.5, 45.5 -10.190114068441064,5,a-cure-i1,2017-18,33.5,52.6,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 29.4, 2.0, 18.3, 47.4, 0.6, 0.0, 2.3, 48.7, 51.3 -4.904862579281184,4.9,a-cure-i1,2017-18,29.0,94.6,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 45.0, 1.2, 43.6, 5.4, 0.5, 0.0, 4.2, 46.5, 53.5 -6.120689655172414,5,a-cure-i1,2017-18,35.5,92.8,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 50.3, 2.3, 37.6, 7.2, 0.4, 0.0, 2.1, 52.9, 47.1 -5.4638124362895,5,a-cure-i1,2017-18,33.5,98.1,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 67.0, 0.9, 28.1, 1.9, 0.0, 0.2, 1.9, 51.8, 48.2 -4.499492385786802,4.5,a-cure-i1,2017-18,27.7,98.5,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 62.3, 0.3, 32.2, 1.5, 0.1, 0.0, 3.6, 47.9, 52.1 -1,1,a-cure-i1,2017-18,0.0,12.099999999999994,Bourne - Bourne High School,00360505, 2.5, 1.7, 5.0, 87.9, 0.2, 0.2, 2.5, 47.1, 52.9 -1,1,a-cure-i1,2017-18,0.0,10.099999999999994,Bourne - Bourne Middle School,00360325, 1.3, 2.0, 3.1, 89.9, 1.2, 0.0, 2.5, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,10.900000000000006,Bourne - Bournedale Elementary School,00360005, 2.0, 0.2, 4.0, 89.1, 1.3, 0.2, 3.1, 53.0, 47.0 -1,1,a-cure-i1,2017-18,0.0,17.700000000000003,Bourne - Peebles Elementary School,00360010, 2.4, 2.4, 7.4, 82.3, 1.2, 0.3, 4.1, 47.5, 52.5 -1,1,a-cure-i1,2017-18,0.0,12.099999999999994,Boxford - Harry Lee Cole,00380005, 0.0, 3.3, 2.4, 87.9, 0.3, 0.0, 6.0, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,Boxford - Spofford Pond,00380013, 0.8, 4.6, 1.5, 90.7, 0.0, 0.0, 2.3, 49.5, 50.5 -5.517241379310343,5,a-cure-i1,2017-18,6.0,17.400000000000006,Boylston - Boylston Elementary,00390005, 2.0, 5.0, 5.4, 82.6, 0.3, 0.0, 4.7, 47.2, 52.8 -1,1,a-cure-i1,2017-18,0.0,31.799999999999997,Braintree - Archie T Morrison,00400033, 9.8, 15.3, 4.5, 68.2, 0.2, 0.2, 1.7, 51.0, 49.0 -1,1,a-cure-i1,2017-18,3.6999999999999997,26.099999999999994,Braintree - Braintree High,00400505, 5.6, 15.2, 4.3, 73.9, 0.1, 0.0, 0.9, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,37.5,Braintree - Donald Ross,00400050, 7.0, 19.3, 9.1, 62.5, 0.7, 0.0, 1.4, 51.9, 48.1 -1,1,a-cure-i1,2017-18,2.0,27.799999999999997,Braintree - East Middle School,00400305, 5.7, 14.8, 5.0, 72.2, 0.6, 0.0, 1.7, 50.8, 49.1 -1,1,a-cure-i1,2017-18,0.0,21.0,Braintree - Highlands,00400015, 2.4, 15.8, 2.1, 79.0, 0.5, 0.0, 0.2, 47.6, 52.4 -1,1,a-cure-i1,2017-18,0.0,31.200000000000003,Braintree - Hollis,00400005, 3.5, 19.9, 5.3, 68.8, 0.2, 0.0, 2.3, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,33.900000000000006,Braintree - Liberty,00400025, 2.2, 25.7, 3.9, 66.1, 0.0, 0.2, 2.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,34.2,Braintree - Mary E Flaherty School,00400020, 3.7, 23.3, 4.0, 65.8, 0.5, 0.0, 2.7, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,30.0,Braintree - Monatiquot Kindergarten Center,00400009, 4.4, 18.4, 5.2, 70.0, 0.0, 0.4, 1.6, 59.6, 40.4 -1,1,a-cure-i1,2017-18,0.0,24.200000000000003,Braintree - South Middle School,00400310, 2.9, 16.1, 4.5, 75.8, 0.2, 0.0, 0.6, 48.8, 51.2 -1,1,a-cure-i1,2017-18,0.0,14.0,Brewster - Eddy Elementary,00410010, 2.1, 2.1, 6.2, 86.0, 0.0, 0.0, 3.7, 48.8, 51.2 -1,1,a-cure-i1,2017-18,0.0,13.200000000000003,Brewster - Stony Brook Elementary,00410005, 3.0, 0.0, 5.1, 86.8, 0.0, 0.0, 5.1, 51.3, 48.7 -2.961770623742455,2.96,a-cure-i1,2017-18,18.400000000000002,99.4,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 64.9, 1.3, 29.9, 0.6, 0.0, 0.3, 2.9, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,8.200000000000003,Bridgewater-Raynham - Bridgewater Middle School,06250320, 2.7, 1.4, 0.0, 91.8, 0.2, 0.2, 3.7, 55.9, 44.1 -1,1,a-cure-i1,2017-18,3.5,11.0,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 4.4, 2.2, 0.1, 89.0, 0.0, 0.2, 4.2, 48.1, 51.9 -1,1,a-cure-i1,2017-18,4.0,12.0,Bridgewater-Raynham - Laliberte Elementary School,06250050, 6.3, 2.4, 0.0, 88.0, 0.2, 0.0, 3.1, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,9.0,Bridgewater-Raynham - Merrill Elementary School,06250020, 4.5, 1.9, 0.0, 91.0, 0.0, 0.0, 2.6, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,9.700000000000003,Bridgewater-Raynham - Mitchell Elementary School,06250002, 5.0, 1.4, 0.0, 90.3, 0.0, 0.1, 3.1, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,11.299999999999997,Bridgewater-Raynham - Raynham Middle School,06250315, 3.3, 2.0, 2.1, 88.7, 0.0, 0.2, 3.8, 53.5, 46.5 -1,1,a-cure-i1,2017-18,0.0,12.5,Bridgewater-Raynham - Therapeutic Day School,06250415, 6.3, 0.0, 0.0, 87.5, 0.0, 0.0, 6.3, 56.3, 43.8 -1,1,a-cure-i1,2017-18,0.0,13.0,Bridgewater-Raynham - Williams Intermediate School,06250300, 5.6, 1.1, 0.0, 87.0, 0.1, 0.2, 5.9, 52.9, 47.1 -1,1,a-cure-i1,2017-18,0.0,5.599999999999994,Brimfield - Brimfield Elementary,00430005, 2.4, 1.4, 1.4, 94.4, 0.3, 0.0, 0.0, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,7.900000000000006,Bristol County Agricultural - Bristol County Agricultural High,09100705, 1.1, 0.0, 4.2, 92.1, 0.0, 0.0, 2.6, 28.7, 70.8 -1,1,a-cure-i1,2017-18,1.7,14.5,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 3.4, 0.7, 7.0, 85.5, 0.5, 0.0, 2.9, 56.6, 43.2 -1,1,a-cure-i1,2017-18,3.4,64.3,Brockton - Ashfield Middle School,00440421, 45.6, 2.2, 12.3, 35.7, 0.4, 0.2, 3.6, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,72.2,Brockton - Barrett Russell Early Childhood Center,00440008, 55.3, 0.8, 9.7, 27.8, 0.0, 0.0, 6.3, 60.3, 39.7 -2.8167388167388165,2.82,a-cure-i1,2017-18,12.2,69.3,Brockton - Brockton Champion High School,00440515, 41.5, 0.6, 22.7, 30.7, 0.6, 0.0, 4.0, 56.3, 43.8 -3.5403422982885084,3.54,a-cure-i1,2017-18,18.099999999999998,81.8,Brockton - Brockton High,00440505, 62.4, 2.6, 12.5, 18.2, 0.4, 0.2, 3.7, 51.9, 48.1 -1,1,a-cure-i1,2017-18,3.4,74.2,Brockton - Brookfield,00440010, 58.4, 1.7, 9.4, 25.8, 0.2, 0.3, 4.2, 53.6, 46.4 -1,1,a-cure-i1,2017-18,2.9,79.7,Brockton - Downey,00440110, 52.8, 1.3, 18.3, 20.3, 0.6, 0.3, 6.4, 56.4, 43.6 -1,1,a-cure-i1,2017-18,3.7,88.9,Brockton - Dr W Arnone Community School,00440001, 64.0, 0.1, 16.7, 11.1, 0.8, 0.0, 7.2, 56.0, 44.0 -3.753554502369668,3.75,a-cure-i1,2017-18,19.8,84.4,Brockton - East Middle School,00440405, 69.9, 1.2, 9.6, 15.6, 0.0, 0.2, 3.5, 54.1, 45.9 -2.056603773584906,2.06,a-cure-i1,2017-18,10.9,84.8,Brockton - Edgar B Davis,00440023, 62.6, 0.3, 15.2, 15.2, 0.5, 0.4, 5.9, 49.6, 50.4 -10.004357298474947,5,a-cure-i1,2017-18,57.400000000000006,91.8,Brockton - Edison Academy,00440520, 79.6, 0.5, 10.2, 8.2, 0.0, 0.0, 1.5, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,94.1,Brockton - Frederick Douglass Academy,00440080, 76.5, 0.0, 14.7, 5.9, 0.0, 0.0, 2.9, 70.6, 29.4 -2.097251585623679,2.1,a-cure-i1,2017-18,12.4,94.6,Brockton - Gilmore Elementary School,00440055, 76.7, 0.2, 12.7, 5.4, 0.5, 0.0, 4.5, 52.0, 48.0 -3.895223420647149,3.9,a-cure-i1,2017-18,15.8,64.9,Brockton - Hancock,00440045, 48.6, 3.3, 7.3, 35.1, 0.5, 0.3, 5.0, 48.4, 51.6 -1.855072463768116,1.86,a-cure-i1,2017-18,8.0,69.0,Brockton - Huntington Therapeutic Day School,00440400, 43.1, 0.0, 19.0, 31.0, 0.0, 0.0, 6.9, 72.4, 27.6 -2.0056338028169014,2.01,a-cure-i1,2017-18,8.9,71.0,Brockton - John F Kennedy,00440017, 48.7, 3.9, 10.6, 29.0, 0.0, 0.0, 7.8, 50.1, 49.9 -2.8136482939632543,2.81,a-cure-i1,2017-18,13.399999999999999,76.2,Brockton - Joseph F. Plouffe Academy,00440422, 38.9, 2.8, 28.6, 23.8, 0.1, 0.1, 5.7, 45.6, 54.4 -1.3886792452830188,1.39,a-cure-i1,2017-18,6.8999999999999995,79.5,Brockton - Louis F Angelo Elementary,00440065, 55.2, 7.0, 12.3, 20.5, 0.8, 0.1, 4.0, 51.7, 48.3 -2.8031854379977243,2.8,a-cure-i1,2017-18,15.4,87.9,Brockton - Manthala George Jr. School,00440003, 36.6, 0.7, 45.2, 12.1, 1.0, 0.1, 4.3, 50.5, 49.5 -2.239130434782609,2.24,a-cure-i1,2017-18,10.3,73.6,Brockton - Mary E. Baker School,00440002, 53.5, 1.5, 14.5, 26.4, 0.1, 0.0, 4.0, 52.3, 47.7 -1.9367502726281354,1.94,a-cure-i1,2017-18,11.100000000000001,91.7,Brockton - North Middle School,00440410, 72.2, 2.2, 13.7, 8.3, 0.3, 0.3, 3.0, 55.0, 45.0 -1,1,a-cure-i1,2017-18,2.8,90.7,Brockton - Oscar F Raymond,00440078, 76.1, 0.9, 9.1, 9.3, 0.4, 0.0, 4.2, 50.2, 49.8 -1.644110275689223,1.64,a-cure-i1,2017-18,8.2,79.8,Brockton - South Middle School,00440415, 51.7, 2.2, 18.6, 20.2, 0.0, 0.2, 7.0, 51.5, 48.5 -1.6615384615384619,1.66,a-cure-i1,2017-18,8.100000000000001,78.0,Brockton - West Middle School,00440420, 54.8, 3.5, 15.1, 22.0, 0.2, 0.3, 4.2, 51.5, 48.5 -4.432318992654774,4.43,a-cure-i1,2017-18,26.4,95.3,Brooke Charter School (District) - Brooke Charter School,04280305, 54.3, 1.8, 37.4, 4.7, 0.2, 0.0, 1.6, 48.6, 51.4 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,Brookfield - Brookfield Elementary,00450005, 0.3, 0.0, 4.5, 90.7, 0.3, 0.0, 4.2, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,50.0,Brookline - Brookline Early Education Program at Beacon,00460001, 3.3, 26.7, 5.0, 50.0, 0.0, 0.0, 15.0, 45.0, 55.0 -1,1,a-cure-i1,2017-18,0.0,58.3,Brookline - Brookline Early Education Program at Putterham,00460002, 8.3, 26.7, 11.7, 41.7, 0.0, 0.0, 11.7, 56.7, 43.3 -4.648648648648649,4.65,a-cure-i1,2017-18,12.9,44.4,Brookline - Brookline High,00460505, 7.0, 17.1, 11.6, 55.6, 0.0, 0.1, 8.7, 50.2, 49.7 -4.062015503875969,4.06,a-cure-i1,2017-18,13.1,51.6,Brookline - Edith C Baker,00460005, 5.9, 27.4, 9.4, 48.4, 0.0, 0.1, 8.7, 51.4, 48.6 -2.802919708029197,2.8,a-cure-i1,2017-18,7.2,41.1,Brookline - Edward Devotion,00460015, 5.2, 12.7, 13.0, 58.9, 0.0, 0.0, 10.1, 52.8, 47.2 -7.419689119170983,5,a-cure-i1,2017-18,17.9,38.6,Brookline - Heath,00460025, 3.9, 16.1, 9.2, 61.4, 0.0, 0.0, 9.4, 49.2, 50.8 -3.714285714285714,3.71,a-cure-i1,2017-18,9.1,39.2,Brookline - John D Runkle,00460045, 2.7, 15.5, 10.2, 60.8, 0.0, 0.0, 10.8, 53.1, 46.9 -3.4821763602251408,3.48,a-cure-i1,2017-18,11.6,53.3,Brookline - Lawrence,00460030, 6.1, 30.2, 8.9, 46.7, 0.0, 0.1, 8.0, 52.6, 47.4 -6.222222222222222,5,a-cure-i1,2017-18,16.8,43.2,Brookline - Michael Driscoll,00460020, 5.2, 16.2, 8.1, 56.8, 0.0, 0.0, 13.7, 53.4, 46.6 -8.242424242424244,5,a-cure-i1,2017-18,23.800000000000004,46.2,Brookline - Pierce,00460040, 4.1, 23.2, 10.1, 53.8, 0.0, 0.0, 8.8, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.0,72.4,Brookline - The Lynch Center,00460060, 12.1, 19.0, 19.0, 27.6, 0.0, 0.0, 22.4, 53.4, 46.6 -3.6827852998065764,3.68,a-cure-i1,2017-18,11.9,51.7,Brookline - William H Lincoln,00460035, 10.2, 22.5, 11.9, 48.3, 0.2, 0.0, 6.9, 48.6, 51.4 -3.466666666666667,3.47,a-cure-i1,2017-18,6.5,30.0,Burlington - Burlington High,00480505, 5.5, 14.9, 5.6, 70.0, 0.6, 0.1, 3.2, 49.7, 50.3 -1,1,a-cure-i1,2017-18,0.0,40.4,Burlington - Fox Hill,00480007, 5.8, 24.8, 5.5, 59.6, 0.0, 0.0, 4.3, 51.6, 48.4 -1,1,a-cure-i1,2017-18,2.8,41.7,Burlington - Francis Wyman Elementary,00480035, 10.2, 20.0, 7.6, 58.3, 0.2, 0.0, 3.7, 51.0, 49.0 -1,1,a-cure-i1,2017-18,4.3,29.0,Burlington - Marshall Simonds Middle,00480303, 6.0, 13.4, 5.7, 71.0, 0.4, 0.0, 3.5, 51.1, 48.9 -1,1,a-cure-i1,2017-18,4.1,35.400000000000006,Burlington - Memorial,00480015, 4.2, 18.2, 6.4, 64.6, 0.2, 0.0, 6.4, 49.4, 50.6 -1,1,a-cure-i1,2017-18,3.9,27.400000000000006,Burlington - Pine Glen Elementary,00480020, 2.6, 15.2, 4.8, 72.6, 0.0, 0.0, 4.8, 48.1, 51.9 -10.224390243902441,5,a-cure-i1,2017-18,39.300000000000004,61.5,Cambridge - Amigos School,00490006, 4.8, 3.5, 43.8, 38.5, 0.0, 0.0, 9.3, 44.8, 55.2 -6.29126213592233,5,a-cure-i1,2017-18,24.299999999999997,61.8,Cambridge - Cambridge Rindge and Latin,00490506, 30.2, 11.5, 13.7, 38.2, 0.5, 0.2, 5.8, 52.1, 47.9 -6.2556390977443606,5,a-cure-i1,2017-18,26.0,66.5,Cambridge - Cambridge Street Upper School,00490305, 28.2, 6.5, 21.8, 33.5, 0.4, 0.8, 8.9, 50.0, 50.0 -4.846473029045643,4.85,a-cure-i1,2017-18,14.6,48.2,Cambridge - Cambridgeport,00490007, 19.6, 9.4, 8.2, 51.8, 0.3, 0.0, 10.8, 53.5, 46.5 -3.3830845771144276,3.38,a-cure-i1,2017-18,17.0,80.4,Cambridge - Fletcher/Maynard Academy,00490090, 49.3, 8.4, 15.5, 19.6, 0.3, 0.0, 6.8, 53.7, 46.3 -5.723849372384938,5,a-cure-i1,2017-18,17.1,47.8,Cambridge - Graham and Parks,00490080, 19.1, 19.6, 4.4, 52.2, 0.0, 0.0, 4.7, 48.6, 51.4 -6.877959927140256,5,a-cure-i1,2017-18,23.6,54.9,Cambridge - Haggerty,00490020, 20.6, 16.0, 7.0, 45.1, 0.0, 0.0, 11.3, 51.4, 48.6 -3.0526315789473686,3.05,a-cure-i1,2017-18,11.6,60.8,Cambridge - John M Tobin,00490065, 26.3, 15.0, 9.2, 39.2, 0.7, 0.0, 9.6, 53.2, 46.8 -5.166429587482219,5,a-cure-i1,2017-18,22.7,70.3,Cambridge - Kennedy-Longfellow,00490040, 20.1, 24.2, 17.4, 29.7, 0.0, 0.3, 8.2, 53.9, 46.1 -10.043165467625899,5,a-cure-i1,2017-18,34.9,55.6,Cambridge - King Open,00490035, 19.8, 10.6, 15.8, 44.4, 0.6, 0.0, 8.8, 52.3, 47.7 -6.837894736842104,5,a-cure-i1,2017-18,20.299999999999997,47.5,Cambridge - Maria L. Baldwin,00490005, 14.8, 9.6, 11.8, 52.5, 0.3, 0.0, 11.0, 50.8, 49.2 -7.659090909090909,5,a-cure-i1,2017-18,33.7,70.4,Cambridge - Martin Luther King Jr.,00490030, 24.4, 22.0, 5.8, 29.6, 0.0, 0.0, 18.3, 49.7, 50.3 -3.993162393162393,3.99,a-cure-i1,2017-18,14.6,58.5,Cambridge - Morse,00490045, 22.5, 12.4, 12.1, 41.5, 0.7, 0.3, 10.5, 53.6, 46.4 -5.544554455445544,5,a-cure-i1,2017-18,17.5,50.5,Cambridge - Peabody,00490050, 23.5, 13.0, 6.8, 49.5, 0.0, 0.0, 7.1, 48.3, 51.7 -10.170040485829961,5,a-cure-i1,2017-18,47.10000000000001,74.1,Cambridge - Putnam Avenue Upper School,00490310, 35.0, 10.6, 17.9, 25.9, 0.4, 0.4, 9.9, 51.0, 49.0 -6.272232304900181,5,a-cure-i1,2017-18,21.6,55.1,Cambridge - Rindge Avenue Upper School,00490315, 29.2, 9.7, 7.5, 44.9, 0.4, 0.4, 7.9, 47.9, 52.1 -5.0820244328097735,5,a-cure-i1,2017-18,18.2,57.3,Cambridge - Vassal Lane Upper School,00490320, 25.6, 15.7, 8.5, 42.7, 0.0, 0.4, 7.1, 41.3, 58.7 -5.553264604810998,5,a-cure-i1,2017-18,10.100000000000001,29.099999999999994,Canton - Canton High,00500505, 10.1, 10.5, 4.4, 70.9, 0.0, 0.1, 4.1, 49.0, 50.7 -1,1,a-cure-i1,2017-18,3.4,32.900000000000006,Canton - Dean S Luce,00500020, 9.0, 12.0, 5.2, 67.1, 0.0, 0.8, 5.8, 49.7, 50.3 -1,1,a-cure-i1,2017-18,0.0,26.799999999999997,Canton - John F Kennedy,00500017, 6.0, 11.9, 4.2, 73.2, 0.0, 0.0, 4.7, 53.0, 47.0 -2.8463611859838274,2.85,a-cure-i1,2017-18,6.6,37.1,Canton - Lt Peter M Hansen,00500012, 13.5, 11.6, 5.7, 62.9, 0.0, 0.2, 6.1, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,36.4,Canton - Rodman Early Childhood Center,00500010, 10.2, 9.1, 10.2, 63.6, 0.0, 0.0, 6.8, 63.6, 36.4 -4.8108108108108105,4.81,a-cure-i1,2017-18,8.899999999999999,29.599999999999994,Canton - Wm H Galvin Middle,00500305, 11.5, 8.6, 5.3, 70.4, 0.0, 0.1, 4.1, 48.6, 51.4 -1,1,a-cure-i1,2017-18,0.0,13.599999999999994,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 2.9, 0.8, 4.1, 86.4, 0.0, 0.0, 5.8, 45.5, 54.5 -1,1,a-cure-i1,2017-18,0.0,23.700000000000003,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 6.3, 0.7, 9.7, 76.3, 1.9, 0.2, 5.1, 64.1, 35.9 -1,1,a-cure-i1,2017-18,1.7,24.400000000000006,Carlisle - Carlisle School,00510025, 0.5, 11.4, 3.6, 75.6, 0.0, 0.0, 8.9, 54.6, 45.4 -1,1,a-cure-i1,2017-18,2.4,4.0,Carver - Carver Elementary School,00520015, 1.1, 0.5, 1.4, 96.0, 0.3, 0.0, 0.6, 48.9, 51.1 -25.09090909090906,5,a-cure-i1,2017-18,6.9,4.400000000000006,Carver - Carver Middle/High School,00520405, 1.1, 0.3, 1.3, 95.6, 0.1, 0.1, 1.5, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,4.799999999999997,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 1.6, 95.2, 0.0, 0.0, 3.2, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.0,11.700000000000003,Central Berkshire - Craneville,06350025, 0.2, 2.4, 4.1, 88.3, 0.5, 0.0, 4.4, 54.9, 45.1 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,Central Berkshire - Kittredge,06350035, 1.3, 1.3, 3.3, 90.7, 0.0, 0.0, 3.3, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,6.799999999999997,Central Berkshire - Nessacus Regional Middle School,06350305, 0.5, 0.5, 1.8, 93.2, 0.0, 0.0, 3.9, 52.5, 47.5 -1,1,a-cure-i1,2017-18,0.5,8.599999999999994,Central Berkshire - Wahconah Regional High,06350505, 1.1, 1.1, 3.9, 91.4, 0.2, 0.0, 2.2, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,23.900000000000006,Chelmsford - Byam School,00560030, 1.8, 11.1, 5.9, 76.1, 0.6, 0.0, 4.5, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,27.299999999999997,Chelmsford - Center Elementary School,00560005, 2.9, 15.1, 5.1, 72.7, 0.2, 0.2, 3.8, 47.7, 52.3 -1,1,a-cure-i1,2017-18,0.0,36.6,Chelmsford - Charles D Harrington,00560025, 4.5, 18.6, 9.9, 63.4, 0.0, 0.0, 3.6, 54.7, 45.3 -1,1,a-cure-i1,2017-18,1.8,21.0,Chelmsford - Chelmsford High,00560505, 2.9, 12.6, 3.4, 79.0, 0.0, 0.1, 2.0, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.0,25.0,Chelmsford - Col Moses Parker School,00560305, 1.8, 15.9, 5.6, 75.0, 0.1, 0.0, 1.5, 52.3, 47.7 -1,1,a-cure-i1,2017-18,0.0,36.4,Chelmsford - Community Education Center,00560001, 3.0, 23.5, 6.8, 63.6, 0.8, 0.0, 2.3, 60.6, 39.4 -1,1,a-cure-i1,2017-18,4.4,25.5,Chelmsford - McCarthy Middle School,00560310, 3.6, 13.5, 5.1, 74.5, 0.0, 0.2, 3.1, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,29.700000000000003,Chelmsford - South Row,00560015, 2.7, 17.0, 6.2, 70.3, 0.0, 0.0, 3.7, 53.6, 46.4 -2.5660377358490565,2.57,a-cure-i1,2017-18,15.299999999999999,95.4,Chelsea - Chelsea High,00570505, 6.0, 2.1, 86.7, 4.6, 0.0, 0.1, 0.4, 53.4, 46.6 -1,1,a-cure-i1,2017-18,3.8,95.5,Chelsea - Clark Avenue School,00570050, 3.1, 0.9, 90.1, 4.5, 0.5, 0.0, 0.9, 54.2, 45.8 -1,1,a-cure-i1,2017-18,4.2,89.8,Chelsea - Edgar A Hooks Elementary,00570030, 6.9, 0.7, 80.5, 10.2, 0.3, 0.0, 1.4, 54.1, 45.9 -1.373913043478261,1.37,a-cure-i1,2017-18,7.9,92.0,Chelsea - Eugene Wright Science and Technology Academy,00570045, 5.4, 0.9, 83.7, 8.0, 0.2, 0.0, 1.7, 53.1, 46.9 -1,1,a-cure-i1,2017-18,4.5,93.0,Chelsea - Frank M Sokolowski Elementary,00570040, 6.2, 0.9, 84.3, 7.0, 0.0, 0.0, 1.6, 53.2, 46.8 -2.8790072388831436,2.88,a-cure-i1,2017-18,17.4,96.7,Chelsea - George F. Kelly Elementary,00570035, 2.7, 0.5, 92.5, 3.3, 0.0, 0.0, 0.9, 50.1, 49.9 -1.8396624472573841,1.84,a-cure-i1,2017-18,10.9,94.8,Chelsea - Joseph A. Browne School,00570055, 3.9, 1.8, 88.8, 5.2, 0.0, 0.0, 0.3, 50.1, 49.9 -1.6648411829134722,1.66,a-cure-i1,2017-18,9.5,91.3,Chelsea - Shurtleff Early Childhood,00570003, 4.8, 1.0, 84.7, 8.7, 0.0, 0.0, 0.7, 49.7, 50.3 -2.265795206971678,2.27,a-cure-i1,2017-18,13.0,91.8,Chelsea - William A Berkowitz Elementary,00570025, 5.3, 1.0, 84.9, 8.2, 0.0, 0.2, 0.4, 55.5, 44.5 -1,1,a-cure-i1,2017-18,0.0,4.400000000000006,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.7, 0.0, 2.2, 95.6, 1.5, 0.0, 0.0, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,35.3,Chicopee - Barry,00610003, 3.0, 2.8, 26.8, 64.7, 0.0, 0.3, 2.5, 57.9, 42.1 -1,1,a-cure-i1,2017-18,0.0,48.0,Chicopee - Belcher,00610010, 8.1, 0.7, 36.5, 52.0, 0.0, 0.0, 2.6, 52.4, 47.6 -1,1,a-cure-i1,2017-18,1.7,45.3,Chicopee - Bellamy Middle,00610305, 2.8, 1.5, 37.8, 54.7, 0.0, 0.0, 3.3, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,68.0,Chicopee - Bowe,00610015, 5.6, 1.0, 55.6, 32.0, 0.2, 0.0, 5.4, 51.5, 48.5 -3.383512544802867,3.38,a-cure-i1,2017-18,5.9,27.900000000000006,Chicopee - Bowie,00610020, 4.2, 1.2, 19.2, 72.1, 0.3, 0.3, 2.7, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,68.3,Chicopee - Chicopee Academy,00610021, 4.9, 0.0, 61.0, 31.7, 0.0, 0.0, 2.4, 73.2, 26.8 -1,1,a-cure-i1,2017-18,4.5,34.5,Chicopee - Chicopee Comprehensive High School,00610510, 2.5, 2.7, 27.0, 65.5, 0.1, 0.0, 2.1, 53.7, 46.3 -1,1,a-cure-i1,2017-18,4.1,46.8,Chicopee - Chicopee High,00610505, 3.9, 1.7, 39.1, 53.2, 0.1, 0.1, 2.0, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.0,49.1,Chicopee - Dupont Middle,00610310, 4.5, 0.8, 40.4, 50.9, 0.1, 0.0, 3.2, 55.7, 44.3 -1,1,a-cure-i1,2017-18,4.9,56.8,Chicopee - Fairview Elementary,00610050, 3.3, 1.7, 47.7, 43.2, 0.0, 0.0, 4.1, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,78.4,Chicopee - Gen John J Stefanik,00610090, 7.2, 0.7, 68.0, 21.6, 0.0, 0.0, 2.5, 52.9, 47.1 -1,1,a-cure-i1,2017-18,0.0,34.099999999999994,Chicopee - Lambert-Lavoie,00610040, 3.5, 1.3, 25.6, 65.9, 0.0, 0.0, 3.8, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,40.7,Chicopee - Litwin,00610022, 4.3, 0.5, 33.7, 59.3, 0.2, 0.0, 1.9, 51.9, 48.1 -1,1,a-cure-i1,2017-18,1.4,39.1,Chicopee - Streiber Memorial School,00610065, 2.2, 3.2, 29.0, 60.9, 0.0, 0.4, 4.3, 52.7, 47.3 -1,1,a-cure-i1,2017-18,0.0,36.5,Chicopee - Szetela Early Childhood Center,00610001, 4.6, 1.7, 24.1, 63.5, 0.0, 0.0, 6.2, 59.8, 40.2 -5.24,5,a-cure-i1,2017-18,13.1,40.0,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 4.6, 5.6, 21.3, 60.0, 0.8, 0.3, 7.6, 52.9, 47.1 -4.954732510288066,4.95,a-cure-i1,2017-18,30.1,97.2,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 68.9, 0.0, 27.2, 2.8, 0.0, 0.0, 1.1, 47.7, 51.6 -3.630522088353414,3.63,a-cure-i1,2017-18,22.6,99.6,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 69.9, 2.6, 25.0, 0.4, 0.0, 0.4, 1.8, 45.6, 54.4 -2.8249619482496198,2.82,a-cure-i1,2017-18,11.600000000000001,65.7,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 13.6, 1.3, 46.2, 34.3, 0.0, 0.0, 4.7, 46.2, 53.4 -1,1,a-cure-i1,2017-18,0.0,6.200000000000003,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 1.0, 93.8, 0.0, 0.0, 4.7, 49.2, 50.8 -1,1,a-cure-i1,2017-18,1.6,30.700000000000003,Clinton - Clinton Elementary,00640050, 2.9, 1.0, 24.3, 69.3, 0.0, 0.0, 2.5, 51.9, 48.1 -1,1,a-cure-i1,2017-18,2.0,28.700000000000003,Clinton - Clinton Middle School,00640305, 4.0, 1.2, 21.7, 71.3, 0.0, 0.1, 1.6, 56.8, 43.2 -1,1,a-cure-i1,2017-18,2.4,37.6,Clinton - Clinton Senior High,00640505, 5.7, 2.2, 28.4, 62.4, 0.2, 0.0, 1.1, 49.9, 50.1 -6.7402206619859575,5,a-cure-i1,2017-18,42.0,99.7,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 76.8, 0.0, 21.2, 0.3, 0.3, 0.6, 0.9, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,8.900000000000006,Cohasset - Cohasset Middle/High School,00650505, 3.2, 3.0, 1.7, 91.1, 0.4, 0.0, 0.7, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,7.400000000000006,Cohasset - Deer Hill,00650005, 3.1, 1.8, 0.5, 92.6, 0.0, 0.0, 2.1, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,6.599999999999994,Cohasset - Joseph Osgood,00650010, 2.6, 1.7, 0.9, 93.4, 0.0, 0.0, 1.4, 50.6, 49.4 -4.544378698224852,4.54,a-cure-i1,2017-18,24.0,84.5,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 18.8, 22.9, 37.2, 15.5, 0.1, 0.0, 5.4, 49.7, 50.3 -9.215189873417723,5,a-cure-i1,2017-18,54.6,94.8,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 63.3, 4.1, 22.5, 5.2, 0.8, 0.0, 4.1, 49.3, 50.7 -3.790769230769231,3.79,a-cure-i1,2017-18,23.1,97.5,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.3, 0.6, 95.6, 2.5, 0.0, 0.0, 0.0, 51.3, 48.8 -6.584362139917696,5,a-cure-i1,2017-18,40.0,97.2,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.5, 0.5, 96.3, 2.8, 0.0, 0.0, 0.0, 49.5, 50.5 -5.672575599582898,5,a-cure-i1,2017-18,34.0,95.9,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 1.6, 1.3, 93.1, 4.1, 0.0, 0.0, 0.0, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.0,32.2,Concord - Alcott,00670005, 8.6, 7.5, 9.8, 67.8, 0.0, 0.0, 6.3, 53.0, 47.0 -7.629629629629632,5,a-cure-i1,2017-18,10.3,21.599999999999994,Concord - Concord Middle,00670305, 4.7, 5.5, 5.2, 78.4, 0.3, 0.0, 5.9, 46.1, 53.9 -4.350877192982457,4.35,a-cure-i1,2017-18,6.2,22.799999999999997,Concord - Thoreau,00670020, 0.9, 7.9, 5.3, 77.2, 0.0, 0.0, 8.8, 54.0, 46.0 -6.104046242774567,5,a-cure-i1,2017-18,6.6,17.299999999999997,Concord - Willard,00670030, 1.1, 6.4, 4.1, 82.7, 0.2, 0.0, 5.5, 51.9, 48.1 -4.281690140845071,4.28,a-cure-i1,2017-18,5.7,21.299999999999997,Concord-Carlisle - Concord Carlisle High,06400505, 4.1, 8.9, 4.5, 78.7, 0.0, 0.0, 3.8, 47.9, 52.0 -4.533627342888645,4.53,a-cure-i1,2017-18,25.700000000000003,90.7,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 49.1, 2.9, 35.6, 9.3, 0.0, 0.0, 3.1, 45.3, 54.7 -1,1,a-cure-i1,2017-18,0.0,5.799999999999997,Conway - Conway Grammar,00680005, 0.0, 0.0, 4.3, 94.2, 0.0, 0.0, 1.4, 55.8, 44.2 -1,1,a-cure-i1,2017-18,0.4,11.900000000000006,Danvers - Danvers High,00710505, 1.9, 2.4, 5.7, 88.1, 0.0, 0.0, 1.8, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,20.099999999999994,Danvers - Great Oak,00710015, 2.9, 2.1, 9.5, 79.9, 0.3, 0.0, 5.3, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,18.5,Danvers - Highlands,00710010, 2.7, 2.9, 8.3, 81.5, 0.0, 0.0, 4.6, 51.5, 48.5 -5.405405405405406,5,a-cure-i1,2017-18,5.0,14.799999999999997,Danvers - Holten Richmond Middle School,00710305, 1.7, 2.9, 7.2, 85.2, 0.2, 0.0, 2.8, 50.2, 49.8 -1,1,a-cure-i1,2017-18,0.0,15.200000000000003,Danvers - Ivan G Smith,00710032, 2.1, 2.8, 7.8, 84.8, 0.0, 0.7, 1.8, 44.5, 55.5 -1,1,a-cure-i1,2017-18,0.0,18.099999999999994,Danvers - Riverside,00710030, 2.3, 3.4, 9.6, 81.9, 0.6, 0.0, 2.3, 58.2, 41.8 -1,1,a-cure-i1,2017-18,4.6,8.700000000000003,Danvers - Willis E Thorpe,00710045, 1.0, 2.6, 4.5, 91.3, 0.3, 0.0, 0.3, 53.2, 46.8 -1,1,a-cure-i1,2017-18,0.0,10.700000000000003,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 1.4, 2.1, 89.3, 0.0, 0.0, 7.1, 51.4, 48.6 -1,1,a-cure-i1,2017-18,1.6,10.299999999999997,Dartmouth - Dartmouth High,00720505, 1.5, 0.4, 2.6, 89.7, 0.0, 0.0, 5.8, 50.9, 49.1 -1,1,a-cure-i1,2017-18,1.0,11.200000000000003,Dartmouth - Dartmouth Middle,00720050, 1.4, 0.1, 3.6, 88.8, 0.0, 0.0, 6.0, 54.3, 45.7 -1,1,a-cure-i1,2017-18,0.0,10.200000000000003,Dartmouth - George H Potter,00720030, 1.6, 0.2, 3.7, 89.8, 0.0, 0.0, 4.7, 56.5, 43.5 -1,1,a-cure-i1,2017-18,0.0,12.799999999999997,Dartmouth - James M. Quinn School,00720040, 1.4, 1.6, 3.3, 87.2, 0.0, 0.2, 6.3, 53.2, 46.8 -1,1,a-cure-i1,2017-18,0.0,10.599999999999994,Dartmouth - Joseph Demello,00720015, 0.9, 0.5, 3.7, 89.4, 0.0, 0.0, 5.6, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,47.0,Dedham - Avery,00730010, 9.7, 2.8, 26.2, 53.0, 0.9, 0.0, 7.5, 48.3, 51.7 -4.2593856655290105,4.26,a-cure-i1,2017-18,7.8,29.299999999999997,Dedham - Dedham High,00730505, 9.9, 4.0, 13.4, 70.7, 0.0, 0.0, 2.0, 50.7, 49.3 -1,1,a-cure-i1,2017-18,4.800000000000001,26.700000000000003,Dedham - Dedham Middle School,00730305, 6.0, 2.7, 14.9, 73.3, 0.2, 0.0, 3.0, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,25.900000000000006,Dedham - Early Childhood Center,00730005, 4.1, 1.9, 14.1, 74.1, 0.4, 0.0, 5.6, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,16.200000000000003,Dedham - Greenlodge,00730025, 3.8, 1.9, 7.1, 83.8, 0.0, 0.0, 3.4, 55.6, 44.4 -1,1,a-cure-i1,2017-18,0.0,26.700000000000003,Dedham - Oakdale,00730030, 6.7, 2.1, 10.9, 73.3, 0.0, 0.0, 7.0, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,26.799999999999997,Dedham - Riverdale,00730045, 5.6, 1.1, 15.6, 73.2, 0.0, 0.0, 4.5, 54.2, 45.8 -1,1,a-cure-i1,2017-18,0.0,14.700000000000003,Deerfield - Deerfield Elementary,00740015, 0.5, 1.2, 6.5, 85.3, 0.0, 0.0, 6.5, 48.6, 51.4 -1,1,a-cure-i1,2017-18,3.3,31.400000000000006,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 10.0, 2.9, 11.5, 68.6, 1.8, 0.1, 5.1, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,29.799999999999997,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 8.6, 1.7, 8.3, 70.2, 1.1, 0.3, 9.7, 55.3, 44.7 -1,1,a-cure-i1,2017-18,0.0,37.9,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 9.2, 1.8, 15.4, 62.1, 4.0, 0.4, 7.0, 56.6, 43.4 -3.032679738562092,3.03,a-cure-i1,2017-18,5.8,30.599999999999994,Dennis-Yarmouth - Mattacheese Middle School,06450305, 9.2, 2.0, 11.6, 69.4, 2.2, 0.0, 5.6, 50.6, 49.4 -1,1,a-cure-i1,2017-18,3.1,32.7,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 9.2, 1.8, 13.5, 67.3, 2.4, 0.0, 5.7, 50.3, 49.7 -1,1,a-cure-i1,2017-18,0.0,26.400000000000006,Dennis-Yarmouth - Station Avenue Elementary,06450025, 7.9, 2.2, 6.2, 73.6, 1.9, 0.5, 7.7, 51.3, 48.7 -1,1,a-cure-i1,2017-18,0.0,14.5,Dighton-Rehoboth - Dighton Elementary,06500005, 1.7, 1.5, 6.0, 85.5, 0.0, 0.0, 5.2, 53.6, 46.4 -1,1,a-cure-i1,2017-18,4.8,11.700000000000003,Dighton-Rehoboth - Dighton Middle School,06500305, 1.5, 1.3, 4.8, 88.3, 0.0, 0.0, 4.1, 52.6, 47.4 -1,1,a-cure-i1,2017-18,3.4,8.5,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.1, 0.9, 4.1, 91.5, 0.0, 0.0, 2.4, 55.0, 45.0 -1,1,a-cure-i1,2017-18,0.0,7.5,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.0, 3.3, 92.5, 0.2, 0.0, 2.9, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.0,11.0,Dighton-Rehoboth - Palmer River,06500010, 1.3, 1.8, 4.5, 89.0, 0.4, 0.0, 3.1, 48.3, 51.7 -1,1,a-cure-i1,2017-18,0.0,7.5,Douglas - Douglas Elementary School,00770015, 0.0, 1.3, 3.2, 92.5, 0.0, 0.0, 2.9, 48.3, 51.7 -1,1,a-cure-i1,2017-18,2.9,5.799999999999997,Douglas - Douglas High School,00770505, 0.5, 1.3, 2.4, 94.2, 0.0, 0.5, 1.0, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,7.5,Douglas - Douglas Middle School,00770305, 0.3, 1.4, 3.7, 92.5, 0.0, 0.3, 1.7, 56.0, 44.0 -1,1,a-cure-i1,2017-18,0.0,10.299999999999997,Douglas - Douglas Primary School,00770005, 0.0, 0.4, 4.9, 89.7, 0.4, 0.0, 4.5, 52.7, 47.3 -1,1,a-cure-i1,2017-18,2.9,27.400000000000006,Dover - Chickering,00780005, 3.7, 15.4, 3.9, 72.6, 0.0, 0.2, 4.3, 55.5, 44.5 -6.339622641509432,5,a-cure-i1,2017-18,6.3,15.900000000000006,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.0, 7.2, 2.7, 84.1, 0.2, 0.0, 3.9, 50.4, 49.6 -4.296296296296298,4.3,a-cure-i1,2017-18,5.8,21.599999999999994,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 2.8, 10.8, 3.2, 78.4, 0.2, 0.0, 4.6, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,26.0,Dracut - Brookside Elementary,00790035, 9.2, 6.3, 9.6, 74.0, 0.0, 0.0, 0.9, 52.7, 47.3 -1,1,a-cure-i1,2017-18,0.0,21.5,Dracut - Dracut Senior High,00790505, 6.1, 7.1, 5.9, 78.5, 0.4, 0.1, 2.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,24.700000000000003,Dracut - George H. Englesby Elementary School,00790045, 5.0, 6.0, 11.7, 75.3, 0.0, 0.0, 1.9, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.0,27.200000000000003,Dracut - Greenmont Avenue,00790030, 4.4, 5.4, 16.7, 72.8, 0.0, 0.0, 0.7, 53.1, 46.9 -1,1,a-cure-i1,2017-18,0.0,14.700000000000003,Dracut - Joseph A Campbell Elementary,00790020, 4.4, 3.0, 4.2, 85.3, 0.0, 0.2, 3.0, 54.9, 45.1 -1,1,a-cure-i1,2017-18,2.1,23.099999999999994,Dracut - Justus C. Richardson Middle School,00790410, 6.0, 7.4, 7.9, 76.9, 0.2, 0.0, 1.6, 48.3, 51.7 -8.07250755287009,5,a-cure-i1,2017-18,50.099999999999994,99.3,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 62.3, 0.0, 35.9, 0.7, 0.0, 0.0, 1.1, 47.5, 52.5 -1,1,a-cure-i1,2017-18,0.0,13.0,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.9, 0.6, 6.4, 87.0, 0.0, 0.0, 5.2, 53.0, 47.0 -1,1,a-cure-i1,2017-18,0.0,10.400000000000006,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.6, 1.2, 6.8, 89.6, 0.1, 0.3, 1.4, 52.7, 47.3 -8.520710059171595,5,a-cure-i1,2017-18,9.0,16.900000000000006,Dudley-Charlton Reg - Dudley Elementary,06580005, 3.1, 0.3, 10.2, 83.1, 0.0, 0.0, 3.3, 51.9, 48.1 -1,1,a-cure-i1,2017-18,2.4,12.5,Dudley-Charlton Reg - Dudley Middle School,06580305, 1.7, 1.4, 7.3, 87.5, 0.0, 0.0, 2.1, 47.4, 52.6 -1,1,a-cure-i1,2017-18,0.0,13.5,Dudley-Charlton Reg - Heritage School,06580030, 1.5, 1.5, 7.9, 86.5, 0.4, 0.0, 2.3, 55.4, 44.6 -5.977011494252872,5,a-cure-i1,2017-18,6.5,17.400000000000006,Dudley-Charlton Reg - Mason Road School,06580010, 2.2, 0.7, 12.0, 82.6, 0.4, 0.0, 2.2, 55.1, 44.9 -1,1,a-cure-i1,2017-18,1.4,15.299999999999997,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 2.1, 2.0, 7.9, 84.7, 0.4, 0.1, 2.9, 47.6, 52.3 -1,1,a-cure-i1,2017-18,0.0,8.599999999999994,Duxbury - Alden School,00820004, 0.1, 1.3, 2.5, 91.4, 0.1, 0.0, 4.4, 49.3, 50.7 -1,1,a-cure-i1,2017-18,2.8,7.0,Duxbury - Chandler Elementary,00820006, 0.8, 0.8, 2.4, 93.0, 0.0, 0.0, 3.0, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.5,5.599999999999994,Duxbury - Duxbury High,00820505, 0.3, 1.6, 2.3, 94.4, 0.0, 0.0, 1.4, 50.0, 50.0 -1,1,a-cure-i1,2017-18,1.7,7.700000000000003,Duxbury - Duxbury Middle,00820305, 0.1, 1.5, 1.9, 92.3, 0.1, 0.0, 4.0, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.9,11.799999999999997,East Bridgewater - Central,00830005, 2.3, 1.0, 3.3, 88.2, 0.3, 0.0, 4.8, 48.1, 51.9 -1,1,a-cure-i1,2017-18,0.0,7.0,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 3.0, 0.7, 1.6, 93.0, 0.3, 0.1, 1.4, 47.8, 52.2 -1,1,a-cure-i1,2017-18,0.0,10.299999999999997,East Bridgewater - Gordon W Mitchell,00830010, 3.5, 0.3, 2.3, 89.7, 0.6, 0.2, 3.5, 56.9, 43.1 -1,1,a-cure-i1,2017-18,4.4,17.0,East Longmeadow - Birchland Park,00870305, 2.9, 5.3, 7.5, 83.0, 0.0, 0.0, 1.4, 53.4, 46.6 -8.101265822784812,5,a-cure-i1,2017-18,8.0,15.799999999999997,East Longmeadow - East Longmeadow High,00870505, 3.7, 5.7, 4.8, 84.2, 0.4, 0.2, 1.0, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,24.5,East Longmeadow - Mapleshade,00870010, 5.0, 7.8, 8.2, 75.5, 0.0, 0.0, 3.5, 50.7, 49.3 -1,1,a-cure-i1,2017-18,3.2,19.0,East Longmeadow - Meadow Brook,00870013, 1.2, 4.3, 9.2, 81.0, 0.0, 0.0, 4.3, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,18.799999999999997,East Longmeadow - Mountain View,00870015, 2.4, 4.1, 7.8, 81.2, 0.3, 0.0, 4.1, 51.2, 48.8 -1,1,a-cure-i1,2017-18,0.0,12.799999999999997,Eastham - Eastham Elementary,00850005, 5.8, 2.3, 1.7, 87.2, 0.6, 0.0, 2.3, 49.4, 50.6 -1,1,a-cure-i1,2017-18,0.0,19.799999999999997,Easthampton - Center School,00860005, 0.0, 1.5, 12.7, 80.2, 1.0, 0.0, 4.6, 55.8, 44.2 -1,1,a-cure-i1,2017-18,3.2,19.5,Easthampton - Easthampton High,00860505, 2.4, 3.9, 11.2, 80.5, 0.0, 0.2, 1.9, 47.0, 53.0 -1,1,a-cure-i1,2017-18,0.0,21.799999999999997,Easthampton - Maple,00860010, 2.0, 4.0, 11.7, 78.2, 0.4, 0.0, 3.6, 54.4, 45.6 -4.659003831417626,4.66,a-cure-i1,2017-18,7.6,26.099999999999994,Easthampton - Neil A Pepin,00860020, 1.1, 4.4, 15.0, 73.9, 0.6, 0.0, 5.0, 57.2, 42.8 -1,1,a-cure-i1,2017-18,0.0,18.700000000000003,Easthampton - White Brook Middle School,00860305, 0.9, 4.2, 12.2, 81.3, 0.0, 0.0, 1.3, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,17.599999999999994,Easton - Center School,00880003, 8.2, 2.2, 3.7, 82.4, 0.4, 0.0, 3.0, 57.7, 42.3 -5.621621621621623,5,a-cure-i1,2017-18,5.2,14.799999999999997,Easton - Easton Middle School,00880405, 5.1, 3.3, 3.7, 85.2, 0.1, 0.0, 2.6, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,21.099999999999994,Easton - Moreau Hall,00880020, 6.2, 3.1, 8.4, 78.9, 1.8, 0.4, 1.3, 54.6, 45.4 -5.517241379310343,5,a-cure-i1,2017-18,6.0,17.400000000000006,Easton - Oliver Ames High,00880505, 5.6, 3.6, 4.9, 82.6, 0.3, 0.0, 3.1, 46.1, 53.9 -1,1,a-cure-i1,2017-18,2.1,18.200000000000003,Easton - Parkview Elementary,00880015, 3.8, 1.6, 6.9, 81.8, 0.6, 0.0, 5.3, 51.1, 48.9 -1,1,a-cure-i1,2017-18,4.0,16.400000000000006,Easton - Richardson Olmsted School,00880025, 6.6, 3.0, 3.8, 83.6, 0.0, 0.1, 2.9, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,30.200000000000003,Edgartown - Edgartown Elementary,00890005, 3.2, 0.3, 19.6, 69.8, 2.6, 0.0, 4.4, 47.5, 52.5 -9.873048907388137,5,a-cure-i1,2017-18,59.3,96.1,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 42.4, 1.8, 48.7, 3.9, 0.3, 0.0, 2.9, 38.4, 61.6 -1,1,a-cure-i1,2017-18,0.0,14.099999999999994,Erving - Erving Elementary,00910030, 0.0, 0.0, 3.5, 85.9, 0.0, 0.0, 10.6, 50.7, 49.3 -1,1,a-cure-i1,2017-18,1.3,17.700000000000003,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 1.2, 1.4, 11.6, 82.3, 0.3, 0.1, 3.0, 41.6, 58.2 -1,1,a-cure-i1,2017-18,0.0,67.7,Everett - Adams School,00930003, 19.9, 5.5, 38.8, 32.3, 0.0, 0.0, 3.5, 59.7, 40.3 -2.3808000000000002,2.38,a-cure-i1,2017-18,9.3,62.5,Everett - Devens School,00930030, 23.2, 0.0, 35.7, 37.5, 0.0, 0.0, 3.6, 69.6, 30.4 -2.503401360544218,2.5,a-cure-i1,2017-18,11.5,73.5,Everett - Everett High,00930505, 19.5, 5.1, 47.3, 26.5, 0.3, 0.2, 1.3, 51.2, 48.8 -1.321100917431193,1.32,a-cure-i1,2017-18,6.300000000000001,76.3,Everett - George Keverian School,00930028, 15.1, 5.1, 53.4, 23.7, 0.5, 0.1, 2.2, 51.9, 48.1 -1,1,a-cure-i1,2017-18,3.8,73.8,Everett - Lafayette School,00930038, 18.3, 5.3, 47.0, 26.2, 0.5, 0.0, 2.6, 49.2, 50.8 -1,1,a-cure-i1,2017-18,1.9,70.8,Everett - Madeline English School,00930018, 12.4, 5.0, 51.3, 29.2, 0.4, 0.1, 1.6, 49.9, 50.1 -1.5501730103806228,1.55,a-cure-i1,2017-18,8.4,86.7,Everett - Parlin School,00930058, 15.3, 3.0, 67.1, 13.3, 0.2, 0.0, 1.1, 49.2, 50.8 -0.9512485136741975,1,a-cure-i1,2017-18,5.0,84.1,Everett - Sumner G. Whittier School,00930010, 12.2, 5.5, 63.9, 15.9, 1.0, 0.0, 1.6, 49.8, 50.2 -1.1157601115760112,1.12,a-cure-i1,2017-18,5.0,71.7,Everett - Webster School,00930015, 15.6, 5.6, 49.3, 28.3, 0.1, 0.0, 1.1, 55.7, 44.3 -2.7413213885778274,2.74,a-cure-i1,2017-18,15.299999999999999,89.3,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 6.9, 1.4, 79.1, 10.7, 1.0, 0.4, 0.5, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,14.799999999999997,Fairhaven - East Fairhaven,00940010, 1.9, 1.2, 6.9, 85.2, 1.0, 0.0, 3.8, 53.7, 46.3 -7.737704918032786,5,a-cure-i1,2017-18,5.9,12.200000000000003,Fairhaven - Fairhaven High,00940505, 0.5, 1.7, 6.3, 87.8, 0.6, 0.0, 3.2, 47.7, 52.3 -1,1,a-cure-i1,2017-18,2.9,12.599999999999994,Fairhaven - Hastings Middle,00940305, 1.5, 2.6, 5.3, 87.4, 0.2, 0.0, 3.0, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,13.900000000000006,Fairhaven - Leroy Wood,00940030, 2.5, 1.8, 4.9, 86.1, 0.4, 0.0, 4.3, 47.9, 52.1 -2.6285714285714286,2.63,a-cure-i1,2017-18,6.9,42.0,Fall River - B M C Durfee High,00950505, 8.1, 5.4, 23.7, 58.0, 0.2, 0.2, 4.4, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,54.0,Fall River - Carlton M. Viveiros Elementary School,00950009, 7.7, 4.2, 31.8, 46.0, 0.1, 0.0, 10.1, 53.2, 46.8 -1,1,a-cure-i1,2017-18,0.0,0.0,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 100.0 -1,1,a-cure-i1,2017-18,4.3,58.8,Fall River - Henry Lord Community School,00950017, 10.6, 4.6, 32.9, 41.2, 0.3, 0.0, 10.4, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,19.0,Fall River - James Tansey,00950140, 2.5, 0.6, 7.0, 81.0, 0.0, 0.0, 8.9, 48.3, 51.7 -1,1,a-cure-i1,2017-18,3.5,49.5,Fall River - John J Doran,00950045, 9.0, 1.1, 29.5, 50.5, 0.4, 0.0, 9.5, 52.2, 47.8 -2.88,2.88,a-cure-i1,2017-18,9.0,50.0,Fall River - Letourneau Elementary School,00950013, 5.8, 2.1, 34.1, 50.0, 0.0, 0.0, 7.9, 48.9, 51.1 -1.692068429237947,1.69,a-cure-i1,2017-18,6.8,64.3,Fall River - Mary Fonseca Elementary School,00950011, 9.3, 4.9, 37.5, 35.7, 0.4, 0.1, 12.0, 50.8, 49.2 -1,1,a-cure-i1,2017-18,4.8,40.9,Fall River - Matthew J Kuss Middle,00950320, 8.9, 4.7, 20.5, 59.1, 0.1, 0.0, 6.7, 47.7, 52.3 -2.797202797202797,2.8,a-cure-i1,2017-18,7.5,42.9,Fall River - Morton Middle,00950315, 8.5, 5.1, 23.0, 57.1, 0.5, 0.2, 5.6, 55.9, 44.1 -1,1,a-cure-i1,2017-18,2.6,39.9,Fall River - North End Elementary,00950005, 6.4, 3.1, 19.6, 60.1, 0.1, 0.1, 10.5, 51.6, 48.4 -6.32808988764045,5,a-cure-i1,2017-18,17.6,44.5,Fall River - Resiliency Preparatory Academy,00950525, 10.4, 1.6, 25.3, 55.5, 0.5, 1.1, 5.5, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,50.5,Fall River - Samuel Watson,00950145, 13.1, 2.1, 21.6, 49.5, 1.4, 0.0, 12.4, 50.2, 49.8 -2.645994832041344,2.65,a-cure-i1,2017-18,6.4,38.7,Fall River - Spencer Borden,00950130, 5.3, 4.8, 19.0, 61.3, 0.0, 0.0, 9.6, 55.1, 44.9 -3.646817248459959,3.65,a-cure-i1,2017-18,11.1,48.7,Fall River - Stone PK-12 School,00950340, 12.8, 0.0, 23.1, 51.3, 0.0, 0.0, 12.8, 84.6, 15.4 -1,1,a-cure-i1,2017-18,0.0,54.7,Fall River - Talbot Innovation School,00950305, 8.1, 4.7, 33.4, 45.3, 0.0, 0.0, 8.5, 56.3, 43.7 -1,1,a-cure-i1,2017-18,2.4,45.3,Fall River - William S Greene,00950065, 4.8, 5.1, 25.6, 54.7, 0.1, 0.0, 9.6, 48.2, 51.8 -3.925925925925927,3.93,a-cure-i1,2017-18,5.3,21.599999999999994,Falmouth - East Falmouth Elementary,00960005, 4.5, 1.1, 5.3, 78.4, 2.7, 0.0, 8.0, 51.5, 48.5 -5.221052631578947,5,a-cure-i1,2017-18,6.199999999999999,19.0,Falmouth - Falmouth High,00960505, 4.2, 3.7, 4.2, 81.0, 1.0, 0.0, 6.1, 47.6, 52.3 -7.280423280423278,5,a-cure-i1,2017-18,8.6,18.900000000000006,Falmouth - Lawrence,00960405, 5.5, 1.8, 5.0, 81.1, 0.7, 0.2, 5.7, 51.9, 48.1 -4.356435643564356,4.36,a-cure-i1,2017-18,5.5,20.200000000000003,Falmouth - Morse Pond School,00960305, 5.9, 2.2, 5.6, 79.8, 0.7, 0.2, 5.6, 50.3, 49.7 -1,1,a-cure-i1,2017-18,0.0,21.200000000000003,Falmouth - Mullen-Hall,00960020, 2.3, 2.8, 7.1, 78.8, 1.4, 0.0, 7.6, 57.4, 42.6 -10.448979591836732,5,a-cure-i1,2017-18,9.6,14.700000000000003,Falmouth - North Falmouth Elementary,00960030, 3.1, 1.3, 5.9, 85.3, 0.0, 0.0, 4.4, 47.8, 52.2 -1,1,a-cure-i1,2017-18,0.0,26.799999999999997,Falmouth - Teaticket,00960015, 8.5, 0.8, 8.2, 73.2, 2.7, 0.0, 6.6, 54.5, 45.5 -1,1,a-cure-i1,2017-18,0.0,3.299999999999997,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.8, 1.7, 96.7, 0.0, 0.0, 0.8, 60.3, 39.7 -3.2797783933518008,3.28,a-cure-i1,2017-18,14.8,72.2,Fitchburg - Arthur M Longsjo Middle School,00970315, 6.1, 4.2, 54.6, 27.8, 0.0, 0.2, 7.1, 54.6, 45.4 -1,1,a-cure-i1,2017-18,3.2,66.0,Fitchburg - Crocker Elementary,00970016, 3.3, 2.9, 51.1, 34.0, 0.2, 0.2, 8.4, 53.8, 46.2 -3.12992700729927,3.13,a-cure-i1,2017-18,13.4,68.5,Fitchburg - Fitchburg High,00970505, 8.4, 5.4, 47.4, 31.5, 0.0, 0.1, 7.3, 51.5, 48.5 -10.134357005758156,5,a-cure-i1,2017-18,33.0,52.1,Fitchburg - Goodrich Academy,00970510, 5.9, 1.2, 40.2, 47.9, 0.0, 0.0, 4.7, 50.3, 49.7 -1.8892128279883382,1.89,a-cure-i1,2017-18,8.1,68.6,Fitchburg - McKay Arts Academy,00970340, 4.6, 7.6, 49.9, 31.4, 0.0, 0.0, 6.5, 46.3, 53.7 -1.518413597733711,1.52,a-cure-i1,2017-18,6.699999999999999,70.6,Fitchburg - Memorial Intermediate,00970048, 4.5, 6.6, 53.0, 29.4, 0.0, 0.0, 6.5, 50.0, 50.0 -1.498489425981873,1.5,a-cure-i1,2017-18,6.2,66.2,Fitchburg - Reingold Elementary,00970043, 5.6, 2.9, 49.6, 33.8, 0.0, 0.2, 8.0, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,72.7,Fitchburg - South Street Elementary,00970060, 6.9, 5.3, 53.6, 27.3, 0.2, 0.0, 6.8, 51.2, 48.8 -1,1,a-cure-i1,2017-18,0.0,1.2000000000000028,Florida - Abbott Memorial,00980005, 1.3, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,3.0,14.400000000000006,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.5, 1.4, 7.7, 85.6, 0.0, 0.0, 5.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,17.700000000000003,Foxborough - Charles Taylor Elementary,00990050, 3.4, 4.6, 4.6, 82.3, 1.3, 0.4, 3.4, 54.4, 45.6 -1,1,a-cure-i1,2017-18,1.6,12.799999999999997,Foxborough - Foxborough High,00990505, 5.1, 3.0, 3.2, 87.2, 0.0, 0.1, 1.4, 52.2, 47.8 -1,1,a-cure-i1,2017-18,3.0,14.900000000000006,Foxborough - John J Ahern,00990405, 4.9, 2.4, 5.2, 85.1, 0.6, 0.0, 1.9, 52.3, 47.7 -4.833333333333332,4.83,a-cure-i1,2017-18,5.8,19.200000000000003,Foxborough - Mabelle M Burrell,00990015, 3.5, 6.3, 6.3, 80.8, 0.3, 0.3, 2.5, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,20.900000000000006,Foxborough - Vincent M Igo Elementary,00990020, 3.1, 7.1, 6.1, 79.1, 0.5, 0.0, 4.1, 50.6, 49.4 -3.388535031847134,3.39,a-cure-i1,2017-18,13.3,62.8,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 42.1, 10.2, 4.9, 37.2, 0.3, 0.1, 5.2, 47.1, 52.9 -6.998709677419354,5,a-cure-i1,2017-18,33.9,77.5,Framingham - Barbieri Elementary,01000035, 3.7, 0.6, 69.9, 22.5, 0.1, 0.0, 3.2, 45.2, 54.8 -2.480243161094225,2.48,a-cure-i1,2017-18,10.2,65.8,Framingham - Brophy,01000006, 6.1, 3.8, 54.0, 34.2, 0.0, 0.0, 1.9, 47.9, 52.1 -3.9745222929936297,3.97,a-cure-i1,2017-18,7.8,31.400000000000006,Framingham - Cameron Middle School,01000302, 6.5, 2.8, 17.8, 68.6, 0.2, 0.0, 4.1, 50.8, 49.2 -1,1,a-cure-i1,2017-18,4.6,34.8,Framingham - Charlotte A Dunning,01000007, 6.8, 12.7, 11.9, 65.2, 0.0, 0.0, 3.4, 53.7, 46.3 -6.424870466321243,5,a-cure-i1,2017-18,15.5,38.6,Framingham - Framingham High School,01000515, 7.3, 5.8, 22.2, 61.4, 0.0, 0.0, 3.2, 50.3, 49.7 -5.294332723948812,5,a-cure-i1,2017-18,18.1,54.7,Framingham - Fuller Middle,01000305, 9.4, 2.4, 38.9, 45.3, 0.0, 0.6, 3.4, 51.1, 48.9 -3.0067114093959733,3.01,a-cure-i1,2017-18,5.6,29.799999999999997,Framingham - Hemenway,01000015, 5.3, 8.1, 10.9, 70.2, 0.2, 0.0, 5.3, 50.0, 50.0 -1.8167330677290836,1.82,a-cure-i1,2017-18,5.7,50.2,Framingham - Juniper Hill School,01000001, 7.0, 11.0, 25.6, 49.8, 0.0, 0.4, 6.2, 52.4, 47.6 -2.5142857142857142,2.51,a-cure-i1,2017-18,5.5,35.0,Framingham - King Elementary School,01000005, 5.7, 9.9, 11.7, 65.0, 0.0, 0.0, 7.8, 54.8, 45.2 -1,1,a-cure-i1,2017-18,0.0,33.099999999999994,Framingham - Mary E Stapleton Elementary,01000045, 7.9, 4.3, 16.8, 66.9, 0.0, 0.0, 4.1, 52.8, 47.2 -4.153846153846154,4.15,a-cure-i1,2017-18,13.5,52.0,Framingham - Miriam F McCarthy School,01000050, 12.6, 2.7, 30.1, 48.0, 0.0, 0.5, 6.0, 49.3, 50.7 -4.015936254980081,4.02,a-cure-i1,2017-18,6.300000000000001,25.099999999999994,Framingham - Potter Road,01000039, 7.0, 5.5, 7.2, 74.9, 0.0, 0.0, 5.5, 51.1, 48.9 -4.299559471365638,4.3,a-cure-i1,2017-18,12.2,45.4,Framingham - Walsh Middle,01000310, 4.5, 5.8, 32.7, 54.6, 0.0, 0.0, 2.5, 53.4, 46.6 -8.231213872832372,5,a-cure-i1,2017-18,17.8,34.599999999999994,Framingham - Woodrow Wilson,01000055, 9.5, 0.7, 22.1, 65.4, 0.2, 0.0, 2.1, 51.4, 48.6 -15.346938775510207,5,a-cure-i1,2017-18,9.399999999999999,9.799999999999997,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.5, 1.8, 2.8, 90.2, 0.0, 0.0, 4.8, 46.0, 53.8 -1,1,a-cure-i1,2017-18,0.0,9.0,Franklin - Annie Sullivan Middle School,01010040, 0.2, 3.8, 3.1, 91.0, 0.0, 0.7, 1.1, 52.9, 47.1 -1,1,a-cure-i1,2017-18,0.0,10.400000000000006,Franklin - Davis Thayer,01010035, 2.2, 1.7, 5.2, 89.6, 0.4, 0.0, 0.9, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,19.200000000000003,Franklin - Franklin Early Childhood Development Center,01010003, 2.9, 1.0, 7.7, 80.8, 1.0, 2.9, 3.8, 60.6, 39.4 -1,1,a-cure-i1,2017-18,1.8,11.799999999999997,Franklin - Franklin High,01010505, 1.7, 5.6, 2.0, 88.2, 0.2, 0.2, 2.0, 50.1, 49.9 -1,1,a-cure-i1,2017-18,0.0,8.200000000000003,Franklin - Helen Keller Elementary,01010012, 1.5, 3.5, 1.2, 91.8, 0.0, 0.5, 1.5, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,13.400000000000006,Franklin - Horace Mann,01010405, 1.1, 6.9, 3.0, 86.6, 0.0, 0.0, 2.4, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.0,13.599999999999994,Franklin - J F Kennedy Memorial,01010013, 0.3, 6.3, 3.5, 86.4, 0.3, 1.6, 1.6, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,14.900000000000006,Franklin - Jefferson Elementary,01010010, 1.5, 8.3, 3.0, 85.1, 0.0, 1.2, 0.9, 55.1, 44.9 -1,1,a-cure-i1,2017-18,0.0,12.599999999999994,Franklin - Oak Street Elementary,01010030, 1.5, 4.1, 4.4, 87.4, 0.0, 0.3, 2.3, 54.4, 45.6 -1,1,a-cure-i1,2017-18,0.0,17.0,Franklin - Parmenter,01010032, 4.6, 5.6, 3.4, 83.0, 0.3, 1.2, 1.9, 52.3, 47.7 -1,1,a-cure-i1,2017-18,2.8,11.799999999999997,Franklin - Remington Middle,01010310, 1.6, 5.2, 2.7, 88.2, 0.0, 0.0, 2.3, 50.1, 49.9 -1,1,a-cure-i1,2017-18,2.1,4.299999999999997,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.2, 0.2, 2.7, 95.7, 0.0, 0.0, 0.2, 69.4, 30.6 -1,1,a-cure-i1,2017-18,4.1,6.700000000000003,Freetown-Lakeville - Apponequet Regional High,06650505, 1.2, 1.7, 1.9, 93.3, 0.1, 0.1, 1.7, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,7.099999999999994,Freetown-Lakeville - Assawompset Elementary School,06650002, 2.5, 0.7, 0.9, 92.9, 0.0, 0.0, 3.0, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,3.5999999999999943,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 0.2, 1.5, 96.4, 0.0, 0.0, 1.0, 50.7, 49.3 -1,1,a-cure-i1,2017-18,2.4,5.900000000000006,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.8, 0.5, 2.5, 94.1, 0.3, 0.1, 1.6, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,5.5,Freetown-Lakeville - George R Austin Intermediate School,06650015, 1.8, 1.1, 0.5, 94.5, 0.2, 0.0, 1.8, 49.1, 50.9 -1,1,a-cure-i1,2017-18,4.2,12.200000000000003,Frontier - Frontier Regional,06700505, 1.6, 2.7, 5.0, 87.8, 0.0, 0.2, 2.7, 53.8, 46.2 -3.6363636363636362,3.64,a-cure-i1,2017-18,7.5,33.0,Gardner - Elm Street School,01030001, 2.5, 1.4, 18.3, 67.0, 0.2, 0.0, 10.5, 52.5, 47.5 -1,1,a-cure-i1,2017-18,0.0,23.299999999999997,Gardner - Gardner Academy for Learning and Technology,01030515, 2.7, 1.4, 8.2, 76.7, 1.4, 0.0, 9.6, 49.3, 49.3 -7.143911439114394,5,a-cure-i1,2017-18,12.100000000000001,27.099999999999994,Gardner - Gardner High,01030505, 3.3, 2.3, 15.7, 72.9, 0.3, 0.0, 5.5, 53.5, 46.5 -1,1,a-cure-i1,2017-18,2.5,31.900000000000006,Gardner - Gardner Middle School,01030405, 2.2, 1.8, 19.0, 68.1, 0.0, 0.0, 8.8, 50.5, 49.5 -1,1,a-cure-i1,2017-18,4.0,29.5,Gardner - Waterford Street,01030020, 2.6, 1.1, 19.4, 70.5, 0.0, 0.0, 6.4, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,8.400000000000006,Gateway - Chester Elementary,06720059, 0.8, 0.0, 3.4, 91.6, 1.7, 0.0, 2.5, 61.3, 38.7 -1,1,a-cure-i1,2017-18,4.5,7.400000000000006,Gateway - Gateway Regional High,06720505, 0.5, 0.9, 4.2, 92.6, 0.0, 0.0, 1.9, 47.4, 52.6 -1,1,a-cure-i1,2017-18,0.0,7.099999999999994,Gateway - Gateway Regional Middle School,06720405, 1.0, 0.0, 4.5, 92.9, 0.5, 0.0, 1.0, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.0,7.700000000000003,Gateway - Littleville Elementary School,06720143, 1.0, 0.0, 3.3, 92.3, 0.0, 0.3, 3.0, 51.2, 48.8 -11.428571428571429,5,a-cure-i1,2017-18,5.0,7.0,Georgetown - Georgetown High School,01050505, 0.7, 1.2, 3.0, 93.0, 0.0, 0.0, 2.0, 48.1, 51.9 -1,1,a-cure-i1,2017-18,0.2,4.799999999999997,Georgetown - Georgetown Middle School,01050305, 1.3, 1.3, 1.3, 95.2, 0.0, 0.0, 0.9, 55.2, 44.8 -1,1,a-cure-i1,2017-18,0.0,5.5,Georgetown - Penn Brook,01050010, 1.0, 1.2, 1.9, 94.5, 0.0, 0.3, 1.2, 51.2, 48.8 -1,1,a-cure-i1,2017-18,0.0,2.5,Georgetown - Perley Elementary,01050005, 0.0, 0.8, 0.0, 97.5, 0.8, 0.0, 0.8, 47.9, 52.1 -1,1,a-cure-i1,2017-18,0.0,11.200000000000003,Gill-Montague - Gill Elementary,06740005, 1.5, 0.0, 2.2, 88.8, 0.0, 0.0, 7.5, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,17.599999999999994,Gill-Montague - Great Falls Middle,06740310, 2.0, 0.4, 9.4, 82.4, 0.4, 0.0, 5.3, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,25.900000000000006,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.6, 16.7, 74.1, 0.0, 0.6, 8.0, 59.3, 40.7 -1,1,a-cure-i1,2017-18,0.0,26.900000000000006,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 17.1, 73.1, 0.5, 0.5, 8.8, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,14.200000000000003,Gill-Montague - Turners Fall High,06740505, 1.4, 0.5, 7.8, 85.8, 0.0, 0.0, 4.6, 41.1, 58.9 -1.8181818181818183,1.82,a-cure-i1,2017-18,6.0,52.8,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 10.2, 0.8, 36.0, 47.2, 0.8, 0.0, 5.1, 50.3, 49.7 -1,1,a-cure-i1,2017-18,0.0,21.200000000000003,Gloucester - Beeman Memorial,01070010, 0.9, 1.8, 15.6, 78.8, 0.6, 0.0, 2.4, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,13.5,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 9.3, 86.5, 0.0, 0.0, 4.2, 52.6, 47.4 -1,1,a-cure-i1,2017-18,1.9,17.200000000000003,Gloucester - Gloucester High,01070505, 2.1, 1.4, 10.9, 82.8, 0.4, 0.6, 1.8, 53.5, 46.5 -1,1,a-cure-i1,2017-18,0.0,19.599999999999994,Gloucester - Gloucester PreSchool,01070025, 3.7, 1.9, 7.5, 80.4, 0.0, 0.0, 6.5, 57.9, 42.1 -1,1,a-cure-i1,2017-18,0.0,10.400000000000006,Gloucester - Plum Cove School,01070042, 3.3, 0.5, 4.7, 89.6, 0.0, 0.0, 1.9, 50.5, 49.5 -1,1,a-cure-i1,2017-18,2.4,15.799999999999997,Gloucester - Ralph B O'Maley Middle,01070305, 2.1, 1.5, 7.2, 84.2, 0.1, 0.4, 4.5, 53.4, 46.6 -1,1,a-cure-i1,2017-18,0.0,25.099999999999994,Gloucester - Veterans Memorial,01070045, 1.4, 1.9, 19.3, 74.9, 0.0, 0.0, 2.4, 45.9, 54.1 -1,1,a-cure-i1,2017-18,0.0,14.599999999999994,Gloucester - West Parish,01070050, 1.4, 2.0, 5.9, 85.4, 0.8, 0.3, 4.2, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,0.0,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,3.1999999999999997,16.900000000000006,Grafton - Grafton High School,01100505, 1.4, 9.2, 3.5, 83.1, 0.0, 0.1, 2.6, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,17.900000000000006,Grafton - Grafton Middle,01100305, 1.7, 10.5, 3.1, 82.1, 0.0, 0.0, 2.7, 48.1, 51.9 -1,1,a-cure-i1,2017-18,3.1,25.5,Grafton - Millbury Street Elementary School,01100200, 1.8, 16.0, 5.8, 74.5, 0.0, 0.0, 1.8, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,20.900000000000006,Grafton - North Grafton Elementary,01100025, 1.2, 11.8, 3.5, 79.1, 0.4, 0.0, 3.9, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.0,20.900000000000006,Grafton - North Street Elementary School,01100030, 0.7, 8.0, 6.3, 79.1, 0.5, 0.5, 4.8, 54.3, 45.7 -1,1,a-cure-i1,2017-18,0.0,24.799999999999997,Grafton - South Grafton Elementary,01100005, 0.0, 16.6, 4.6, 75.2, 0.0, 0.0, 3.6, 58.9, 41.1 -10.814814814814817,5,a-cure-i1,2017-18,7.3,10.799999999999997,Granby - East Meadow,01110004, 0.0, 1.4, 6.8, 89.2, 0.0, 0.0, 2.7, 56.8, 43.2 -1,1,a-cure-i1,2017-18,4.2,13.200000000000003,Granby - Granby Jr Sr High School,01110505, 0.3, 2.6, 8.8, 86.8, 0.3, 0.0, 1.2, 55.4, 44.6 -1,1,a-cure-i1,2017-18,0.0,17.5,Granby - West Street,01110010, 0.0, 1.4, 9.0, 82.5, 0.9, 0.0, 6.1, 47.2, 52.8 -1,1,a-cure-i1,2017-18,4.3,20.5,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 2.3, 1.7, 9.8, 79.5, 0.5, 0.1, 6.1, 55.8, 44.2 -1.9002375296912113,1.9,a-cure-i1,2017-18,10.0,84.2,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.9, 1.2, 82.0, 15.8, 0.1, 0.0, 0.0, 49.9, 50.1 -1.6344086021505375,1.63,a-cure-i1,2017-18,5.699999999999999,55.8,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 3.7, 16.3, 32.2, 44.2, 0.3, 0.0, 3.3, 55.4, 44.6 -3.4383954154727783,3.44,a-cure-i1,2017-18,7.499999999999999,34.900000000000006,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 8.1, 0.8, 21.6, 65.1, 0.5, 0.0, 3.9, 50.3, 49.7 -8.543689320388351,5,a-cure-i1,2017-18,5.5,10.299999999999997,Greenfield - Discovery School at Four Corners,01140025, 0.8, 0.0, 9.1, 89.7, 0.0, 0.0, 0.4, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,29.599999999999994,Greenfield - Federal Street School,01140010, 4.5, 0.8, 17.0, 70.4, 0.0, 0.0, 7.3, 49.8, 50.2 -1,1,a-cure-i1,2017-18,4.6,31.200000000000003,Greenfield - Greenfield High,01140505, 2.8, 2.8, 18.8, 68.8, 0.0, 0.0, 6.7, 54.1, 45.7 -1,1,a-cure-i1,2017-18,3.1,26.900000000000006,Greenfield - Greenfield Middle,01140305, 1.1, 1.6, 17.7, 73.1, 0.0, 0.0, 6.6, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,41.7,Greenfield - Newton School,01140035, 2.5, 0.8, 31.0, 58.3, 0.0, 0.0, 7.4, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,17.900000000000006,Greenfield - The Academy of Early Learning at North Parish,01140005, 1.7, 1.7, 12.0, 82.1, 0.0, 0.0, 2.6, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,20.599999999999994,Groton-Dunstable - Boutwell School,06730001, 0.0, 4.8, 9.5, 79.4, 1.6, 0.0, 4.8, 47.6, 52.4 -1,1,a-cure-i1,2017-18,4.0,11.700000000000003,Groton-Dunstable - Florence Roche School,06730010, 0.4, 5.8, 1.4, 88.3, 0.2, 0.2, 3.7, 50.7, 49.3 -1,1,a-cure-i1,2017-18,2.1,9.200000000000003,Groton-Dunstable - Groton Dunstable Regional,06730505, 1.0, 6.4, 1.0, 90.8, 0.1, 0.0, 0.6, 49.6, 50.4 -1,1,a-cure-i1,2017-18,4.2,11.200000000000003,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 1.0, 6.0, 1.8, 88.8, 0.3, 0.3, 1.8, 51.1, 48.9 -7.157894736842101,5,a-cure-i1,2017-18,5.1,11.400000000000006,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 6.6, 2.8, 88.6, 0.0, 0.0, 2.1, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,20.599999999999994,Hadley - Hadley Elementary,01170015, 3.1, 1.0, 9.4, 79.4, 0.3, 2.4, 4.2, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,19.0,Hadley - Hopkins Academy,01170505, 1.7, 2.5, 8.3, 81.0, 0.4, 2.9, 3.3, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,7.200000000000003,Halifax - Halifax Elementary,01180005, 1.5, 0.5, 2.2, 92.8, 0.3, 0.2, 2.5, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,12.099999999999994,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 3.1, 6.6, 87.9, 0.0, 0.0, 2.3, 54.1, 45.9 -9.237113402061853,5,a-cure-i1,2017-18,5.6,9.700000000000003,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.5, 2.4, 90.3, 0.0, 1.0, 2.8, 50.2, 49.8 -12.8,5,a-cure-i1,2017-18,8.0,10.0,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.4, 3.6, 3.6, 90.0, 0.0, 0.0, 2.5, 49.3, 50.7 -9.846153846153852,5,a-cure-i1,2017-18,5.6,9.099999999999994,Hamilton-Wenham - Miles River Middle,06750310, 0.8, 2.9, 3.7, 90.9, 0.0, 0.5, 1.3, 44.9, 55.1 -5.999999999999998,5,a-cure-i1,2017-18,5.4,14.400000000000006,Hamilton-Wenham - Winthrop School,06750015, 2.7, 4.8, 4.5, 85.6, 1.0, 0.0, 1.4, 47.4, 52.6 -3.488151658767773,3.49,a-cure-i1,2017-18,13.8,63.3,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 27.5, 2.4, 31.8, 36.7, 0.0, 0.0, 1.6, 48.1, 51.9 -1,1,a-cure-i1,2017-18,0.0,12.0,Hampden-Wilbraham - Green Meadows Elementary,06800005, 1.2, 1.2, 6.0, 88.0, 0.0, 0.0, 3.6, 48.8, 51.2 -6.803149606299211,5,a-cure-i1,2017-18,5.4,12.700000000000003,Hampden-Wilbraham - Mile Tree Elementary,06800025, 2.0, 2.3, 4.6, 87.3, 0.0, 0.6, 3.2, 48.4, 51.6 -1,1,a-cure-i1,2017-18,0.0,14.299999999999997,Hampden-Wilbraham - Minnechaug Regional High,06800505, 2.4, 3.4, 5.2, 85.7, 0.2, 0.2, 2.9, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,15.700000000000003,Hampden-Wilbraham - Soule Road,06800030, 4.4, 1.5, 7.0, 84.3, 0.0, 0.0, 2.9, 49.4, 50.6 -1,1,a-cure-i1,2017-18,0.0,17.200000000000003,Hampden-Wilbraham - Stony Hill School,06800050, 1.7, 1.7, 8.8, 82.8, 0.0, 0.0, 5.1, 54.9, 45.1 -1,1,a-cure-i1,2017-18,0.0,19.0,Hampden-Wilbraham - Thornton Burgess,06800305, 3.8, 1.9, 8.6, 81.0, 1.9, 0.0, 2.9, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,13.200000000000003,Hampden-Wilbraham - Wilbraham Middle,06800310, 2.5, 2.8, 5.3, 86.8, 0.3, 0.0, 2.3, 49.0, 51.0 -1,1,a-cure-i1,2017-18,1.4,6.799999999999997,Hampshire - Hampshire Regional High,06830505, 0.6, 0.7, 3.3, 93.2, 0.0, 0.0, 2.3, 45.5, 54.5 -97.99999999999976,5,a-cure-i1,2017-18,14.7,2.4000000000000057,Hancock - Hancock Elementary,01210005, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 61.9, 38.1 -1,1,a-cure-i1,2017-18,0.0,4.299999999999997,Hanover - Cedar Elementary,01220004, 1.0, 1.9, 1.4, 95.7, 0.0, 0.0, 0.0, 54.3, 45.7 -1,1,a-cure-i1,2017-18,0.0,5.099999999999994,Hanover - Center Elementary,01220005, 0.3, 0.9, 2.7, 94.9, 0.0, 0.0, 1.2, 52.2, 47.8 -1,1,a-cure-i1,2017-18,1.7,4.200000000000003,Hanover - Hanover High,01220505, 0.6, 2.4, 1.1, 95.8, 0.0, 0.0, 0.1, 53.4, 46.1 -1,1,a-cure-i1,2017-18,1.6,6.5,Hanover - Hanover Middle,01220305, 1.1, 2.8, 2.2, 93.5, 0.0, 0.0, 0.5, 51.9, 48.1 -24.92307692307691,5,a-cure-i1,2017-18,8.1,5.200000000000003,Hanover - Sylvester,01220015, 0.4, 1.7, 1.7, 94.8, 0.0, 0.0, 1.3, 50.7, 49.3 -1,1,a-cure-i1,2017-18,3.6,20.799999999999997,Harvard - Bromfield,01250505, 2.0, 12.8, 4.3, 79.2, 0.0, 0.0, 1.7, 51.0, 48.9 -5.619512195121952,5,a-cure-i1,2017-18,7.2,20.5,Harvard - Hildreth Elementary School,01250005, 3.0, 8.6, 5.0, 79.5, 0.0, 0.0, 3.9, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,6.099999999999994,Hatfield - Hatfield Elementary,01270005, 0.8, 0.4, 4.0, 93.9, 0.0, 0.0, 0.8, 52.6, 47.0 -1,1,a-cure-i1,2017-18,0.0,10.599999999999994,Hatfield - Smith Academy,01270505, 1.1, 2.6, 3.2, 89.4, 0.0, 0.0, 3.7, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,27.799999999999997,Haverhill - Bradford Elementary,01280008, 4.1, 1.6, 19.9, 72.2, 0.3, 0.0, 1.9, 53.5, 46.5 -1,1,a-cure-i1,2017-18,0.0,28.0,Haverhill - Caleb Dustin Hunking School,01280030, 3.9, 1.6, 20.4, 72.0, 0.1, 0.1, 2.0, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,52.3,Haverhill - Consentino Annex at Bartlett School,01280005, 4.7, 0.0, 43.9, 47.7, 0.0, 0.0, 3.7, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,55.3,Haverhill - Consentino Middle School,01280100, 4.4, 1.8, 47.5, 44.7, 0.1, 0.1, 1.3, 49.7, 50.3 -5.442176870748299,5,a-cure-i1,2017-18,20.0,58.8,Haverhill - Crowell,01280020, 3.1, 2.1, 51.5, 41.2, 1.0, 0.0, 1.0, 51.5, 48.5 -1,1,a-cure-i1,2017-18,3.6,46.6,Haverhill - Dr Paul Nettle,01280050, 5.0, 3.2, 36.6, 53.4, 0.2, 0.2, 1.4, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,52.3,Haverhill - Golden Hill,01280026, 2.6, 1.8, 44.3, 47.7, 0.0, 0.0, 3.6, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,68.5,Haverhill - Greenleaf Kindergarten Center,01280027, 3.7, 3.7, 57.4, 31.5, 0.0, 0.0, 3.7, 48.1, 51.9 -1,1,a-cure-i1,2017-18,0.0,54.3,Haverhill - Haverhill Alternative School,01280033, 10.9, 0.0, 43.5, 45.7, 0.0, 0.0, 0.0, 76.1, 23.9 -2.5806451612903225,2.58,a-cure-i1,2017-18,6.0,37.2,Haverhill - Haverhill High,01280505, 4.2, 1.7, 29.8, 62.8, 0.1, 0.1, 1.3, 51.0, 49.0 -1,1,a-cure-i1,2017-18,2.2,31.5,Haverhill - John G Whittier,01280085, 3.9, 1.8, 24.4, 68.5, 0.4, 0.4, 0.7, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,37.6,Haverhill - Moody,01280045, 6.3, 1.8, 28.5, 62.4, 0.0, 0.5, 0.5, 63.8, 36.2 -1,1,a-cure-i1,2017-18,0.0,53.0,Haverhill - Pentucket Lake Elementary,01280054, 5.6, 2.2, 42.3, 47.0, 0.8, 0.2, 2.0, 54.8, 45.2 -1,1,a-cure-i1,2017-18,0.0,54.0,Haverhill - TEACH,01280073, 4.0, 2.0, 44.0, 46.0, 0.0, 0.0, 4.0, 80.0, 20.0 -1,1,a-cure-i1,2017-18,2.8,61.6,Haverhill - Tilton,01280075, 2.2, 0.9, 56.1, 38.4, 0.4, 0.0, 2.0, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,27.900000000000006,Haverhill - Walnut Square,01280080, 2.1, 0.7, 20.0, 72.1, 0.0, 0.0, 5.0, 45.0, 55.0 -1,1,a-cure-i1,2017-18,0.0,16.0,Hawlemont - Hawlemont Regional,06850005, 0.6, 0.0, 9.2, 84.0, 0.6, 0.0, 5.5, 41.7, 58.3 -13.80423814328961,5,a-cure-i1,2017-18,85.50000000000001,99.1,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 76.6, 0.5, 21.0, 0.9, 0.5, 0.5, 0.0, 54.7, 45.3 -1,1,a-cure-i1,2017-18,4.5,30.700000000000003,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 5.6, 0.7, 21.5, 69.3, 0.0, 0.0, 3.0, 42.6, 57.4 -1,1,a-cure-i1,2017-18,3.7,19.299999999999997,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.5, 1.4, 6.0, 80.7, 0.0, 0.0, 11.5, 53.7, 46.3 -16.0,5,a-cure-i1,2017-18,7.0,7.0,Hingham - East Elementary School,01310005, 0.8, 1.9, 2.1, 93.0, 0.0, 0.0, 2.3, 56.5, 43.5 -1,1,a-cure-i1,2017-18,1.0,8.599999999999994,Hingham - Hingham High,01310505, 1.3, 2.5, 2.7, 91.4, 0.0, 0.0, 2.1, 49.5, 50.5 -1,1,a-cure-i1,2017-18,4.800000000000001,9.5,Hingham - Hingham Middle School,01310410, 1.3, 2.6, 2.4, 90.5, 0.0, 0.1, 3.1, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,11.099999999999994,Hingham - Plymouth River,01310019, 1.7, 2.8, 4.5, 88.9, 0.0, 0.0, 2.1, 48.7, 51.3 -1,1,a-cure-i1,2017-18,3.6,12.0,Hingham - South Elementary,01310020, 1.9, 3.8, 1.5, 88.0, 0.0, 0.0, 4.7, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,11.0,Hingham - Wm L Foster Elementary,01310010, 0.7, 2.0, 4.5, 89.0, 0.0, 0.0, 3.8, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.0,47.2,Holbrook - Holbrook Middle High School,01330505, 23.8, 4.6, 11.9, 52.8, 0.0, 0.0, 7.0, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,43.1,Holbrook - John F Kennedy,01330018, 16.1, 4.5, 12.8, 56.9, 0.2, 0.0, 9.6, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,9.900000000000006,Holland - Holland Elementary,01350005, 2.1, 1.7, 5.2, 90.1, 0.4, 0.0, 0.4, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,12.0,Holliston - Holliston High,01360505, 0.9, 6.1, 2.4, 88.0, 0.3, 0.0, 2.4, 51.4, 48.4 -4.4347826086956506,4.43,a-cure-i1,2017-18,5.1,18.400000000000006,Holliston - Miller School,01360007, 0.9, 8.0, 6.0, 81.6, 0.1, 0.0, 3.4, 51.5, 48.5 -1,1,a-cure-i1,2017-18,3.1999999999999997,19.599999999999994,Holliston - Placentino Elementary,01360010, 1.1, 8.7, 4.8, 80.4, 0.1, 0.0, 4.8, 53.1, 46.9 -1,1,a-cure-i1,2017-18,2.3,16.400000000000006,Holliston - Robert H. Adams Middle School,01360305, 1.2, 8.0, 4.7, 83.6, 0.6, 0.0, 1.9, 49.2, 50.8 -1.3008130081300815,1.3,a-cure-i1,2017-18,7.0,86.1,Holyoke - E N White Elementary,01370045, 3.4, 0.4, 80.7, 13.9, 0.0, 0.0, 1.6, 49.8, 50.2 -2.649350649350649,2.65,a-cure-i1,2017-18,15.299999999999999,92.4,Holyoke - H.B. Lawrence School,01370070, 3.6, 0.7, 86.3, 7.6, 0.0, 0.0, 1.8, 52.5, 47.5 -2.4242424242424243,2.42,a-cure-i1,2017-18,12.0,79.2,Holyoke - Holyoke High,01370505, 2.4, 0.8, 74.5, 20.8, 0.1, 0.1, 1.3, 51.5, 48.4 -7.279620853080569,5,a-cure-i1,2017-18,28.8,63.3,Holyoke - Joseph Metcalf School,01370003, 5.8, 0.4, 54.1, 36.7, 0.0, 0.0, 3.1, 46.7, 53.3 -3.5298969072164947,3.53,a-cure-i1,2017-18,21.4,97.0,Holyoke - Kelly Elementary,01370040, 1.1, 0.2, 95.2, 3.0, 0.0, 0.0, 0.5, 53.4, 46.6 -2.622950819672131,2.62,a-cure-i1,2017-18,14.0,85.4,Holyoke - Lt Clayre Sullivan Elementary,01370055, 3.5, 1.7, 79.1, 14.6, 0.0, 0.0, 1.1, 50.3, 49.7 -2.1238938053097347,2.12,a-cure-i1,2017-18,9.0,67.8,Holyoke - Lt Elmer J McMahon Elementary,01370015, 1.9, 1.4, 61.6, 32.2, 0.0, 0.2, 2.6, 56.8, 43.2 -1.2137931034482758,1.21,a-cure-i1,2017-18,6.6,87.0,Holyoke - Maurice A Donahue Elementary,01370060, 4.3, 0.6, 81.4, 13.0, 0.0, 0.2, 0.4, 56.3, 43.7 -1.9082568807339448,1.91,a-cure-i1,2017-18,11.7,98.1,Holyoke - Morgan Full Service Community School,01370025, 4.3, 1.4, 91.1, 1.9, 0.0, 0.0, 1.2, 50.5, 49.5 -3.7747077577045705,3.77,a-cure-i1,2017-18,22.200000000000003,94.1,Holyoke - William R. Peck School,01370030, 4.4, 0.0, 88.2, 5.9, 0.0, 0.6, 0.9, 55.8, 44.2 -3.2803347280334734,3.28,a-cure-i1,2017-18,19.6,95.6,Holyoke - Wm J Dean Vocational Technical High,01370605, 2.2, 0.5, 92.3, 4.4, 0.0, 0.0, 0.5, 53.0, 47.0 -4.446315789473684,4.45,a-cure-i1,2017-18,26.4,95.0,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.7, 0.4, 91.2, 5.0, 0.0, 0.0, 1.7, 42.5, 57.5 -1,1,a-cure-i1,2017-18,0.0,9.099999999999994,Hopedale - Hopedale Jr Sr High,01380505, 0.8, 2.4, 3.2, 90.9, 1.0, 0.2, 1.6, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,11.400000000000006,Hopedale - Memorial,01380010, 1.1, 0.6, 6.4, 88.6, 0.2, 0.2, 2.9, 54.5, 45.5 -1,1,a-cure-i1,2017-18,0.0,19.299999999999997,Hopedale - Park Street School,01380003, 0.0, 2.4, 1.2, 80.7, 1.2, 0.0, 14.5, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,24.700000000000003,Hopkinton - Center,01390005, 0.4, 19.2, 2.2, 75.3, 0.2, 0.0, 2.6, 50.2, 49.8 -1,1,a-cure-i1,2017-18,3.4,25.900000000000006,Hopkinton - Elmwood,01390010, 0.8, 17.4, 2.6, 74.1, 0.4, 0.2, 4.6, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,24.400000000000006,Hopkinton - Hopkins Elementary School,01390015, 0.7, 15.9, 3.3, 75.6, 0.2, 0.0, 4.3, 51.7, 48.3 -1,1,a-cure-i1,2017-18,3.4,15.0,Hopkinton - Hopkinton High,01390505, 0.8, 10.6, 2.2, 85.0, 0.3, 0.0, 1.2, 50.2, 49.8 -4.851063829787235,4.85,a-cure-i1,2017-18,5.7,18.799999999999997,Hopkinton - Hopkinton Middle School,01390305, 1.1, 11.9, 2.4, 81.2, 0.2, 0.0, 3.1, 48.6, 51.4 -1,1,a-cure-i1,2017-18,0.0,16.900000000000006,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 10.2, 6.8, 83.1, 0.0, 0.0, 0.0, 59.3, 40.7 -1,1,a-cure-i1,2017-18,0.0,21.0,Hudson - C A Farley,01410030, 1.5, 2.6, 15.4, 79.0, 0.0, 0.0, 1.5, 48.6, 51.4 -1,1,a-cure-i1,2017-18,0.0,17.700000000000003,Hudson - David J. Quinn Middle School,01410410, 1.5, 2.2, 10.5, 82.3, 0.0, 0.0, 3.5, 47.5, 52.5 -1,1,a-cure-i1,2017-18,0.0,20.299999999999997,Hudson - Forest Avenue Elementary,01410015, 2.0, 2.3, 11.3, 79.7, 0.3, 0.0, 4.5, 51.7, 48.3 -1,1,a-cure-i1,2017-18,2.6,13.599999999999994,Hudson - Hudson High,01410505, 1.9, 1.4, 8.4, 86.4, 0.2, 0.1, 1.6, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,16.900000000000006,Hudson - Mulready Elementary,01410007, 1.7, 2.5, 8.9, 83.1, 0.0, 0.0, 3.8, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,5.799999999999997,Hull - Hull High,01420505, 1.4, 0.7, 1.7, 94.2, 0.0, 0.0, 2.0, 52.7, 47.3 -1,1,a-cure-i1,2017-18,0.0,6.099999999999994,Hull - Lillian M Jacobs,01420015, 2.4, 1.0, 1.0, 93.9, 0.0, 0.0, 1.7, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,1.5999999999999943,Hull - Memorial Middle,01420305, 0.5, 0.5, 0.5, 98.4, 0.0, 0.0, 0.0, 55.9, 44.1 -6.025974025974027,5,a-cure-i1,2017-18,8.7,23.099999999999994,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 4.1, 7.4, 7.2, 76.9, 0.0, 0.0, 4.4, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,10.5,Ipswich - Ipswich High,01440505, 0.6, 2.3, 4.7, 89.5, 0.0, 0.0, 2.9, 50.0, 49.8 -1,1,a-cure-i1,2017-18,0.0,11.799999999999997,Ipswich - Ipswich Middle School,01440305, 0.9, 0.9, 5.0, 88.2, 0.0, 0.0, 5.0, 48.4, 51.6 -1,1,a-cure-i1,2017-18,0.0,7.700000000000003,Ipswich - Paul F Doyon Memorial,01440007, 0.7, 2.0, 3.0, 92.3, 0.0, 0.0, 2.0, 51.4, 48.6 -1,1,a-cure-i1,2017-18,3.4,16.700000000000003,Ipswich - Winthrop,01440015, 2.9, 0.8, 7.7, 83.3, 0.0, 0.0, 5.3, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,King Philip - King Philip Middle School,06900510, 2.0, 1.8, 3.1, 90.7, 0.0, 0.0, 2.4, 52.7, 47.2 -1,1,a-cure-i1,2017-18,0.0,7.200000000000003,King Philip - King Philip Regional High,06900505, 1.8, 1.8, 1.5, 92.8, 0.0, 0.1, 2.0, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,4.400000000000006,Kingston - Kingston Elementary,01450005, 0.7, 0.4, 2.9, 95.6, 0.4, 0.0, 0.0, 53.2, 46.8 -1,1,a-cure-i1,2017-18,0.0,6.099999999999994,Kingston - Kingston Intermediate,01450020, 1.0, 0.5, 3.3, 93.9, 0.5, 0.0, 0.7, 50.8, 49.0 -7.630522088353414,5,a-cure-i1,2017-18,47.5,99.6,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 69.2, 0.4, 28.9, 0.4, 0.0, 0.0, 1.3, 53.4, 46.6 -6.940170940170941,5,a-cure-i1,2017-18,40.6,93.6,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 20.5, 3.2, 66.6, 6.4, 0.2, 0.0, 3.1, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,5.700000000000003,Lanesborough - Lanesborough Elementary,01480005, 2.4, 0.0, 1.9, 94.3, 0.0, 0.0, 1.4, 45.2, 54.8 -0.9056603773584906,1,a-cure-i1,2017-18,5.4,95.4,Lawrence - Alexander B Bruce,01490015, 0.8, 1.7, 92.8, 4.6, 0.0, 0.0, 0.0, 46.6, 53.4 -1.2695829094608342,1.27,a-cure-i1,2017-18,7.8,98.3,Lawrence - Arlington Middle School,01490017, 0.7, 0.0, 97.4, 1.7, 0.0, 0.0, 0.2, 50.5, 49.5 -2.1322482197355037,2.13,a-cure-i1,2017-18,13.1,98.3,Lawrence - Community Day Arlington,01490009, 0.9, 0.0, 96.9, 1.7, 0.0, 0.0, 0.5, 51.1, 48.9 -2.037894736842105,2.04,a-cure-i1,2017-18,12.1,95.0,Lawrence - Edward F. Parthum,01490053, 1.0, 0.5, 93.0, 5.0, 0.2, 0.0, 0.5, 51.4, 48.6 -1,1,a-cure-i1,2017-18,2.6,95.7,Lawrence - Emily G Wetherbee,01490080, 0.6, 2.7, 91.6, 4.3, 0.0, 0.0, 0.9, 47.4, 52.6 -1,1,a-cure-i1,2017-18,4.2,97.3,Lawrence - Francis M Leahy,01490040, 0.4, 0.0, 96.7, 2.7, 0.0, 0.0, 0.2, 51.2, 48.8 -1,1,a-cure-i1,2017-18,3.8,91.1,Lawrence - Frost Middle School,01490525, 2.2, 4.1, 83.8, 8.9, 0.0, 0.0, 1.0, 53.5, 46.5 -1,1,a-cure-i1,2017-18,4.8,97.1,Lawrence - Gerard A. Guilmette,01490022, 2.7, 0.6, 93.6, 2.9, 0.0, 0.0, 0.2, 52.9, 47.1 -1.3648509763617678,1.36,a-cure-i1,2017-18,8.3,97.3,Lawrence - Guilmette Middle School,01490025, 1.9, 0.6, 94.7, 2.7, 0.0, 0.0, 0.2, 47.3, 52.7 -2.022988505747126,2.02,a-cure-i1,2017-18,12.1,95.7,Lawrence - High School Learning Center,01490536, 0.0, 0.5, 95.2, 4.3, 0.0, 0.0, 0.0, 62.6, 37.4 -1.8455200823892894,1.85,a-cure-i1,2017-18,11.2,97.1,Lawrence - James F Hennessey,01490020, 1.4, 0.9, 94.2, 2.9, 0.0, 0.0, 0.6, 51.6, 48.4 -1.1296101159114857,1.13,a-cure-i1,2017-18,6.7,94.9,Lawrence - John Breen School,01490003, 2.4, 3.6, 88.7, 5.1, 0.0, 0.0, 0.3, 52.8, 47.2 -1.852459016393443,1.85,a-cure-i1,2017-18,11.3,97.6,Lawrence - John K Tarbox,01490075, 0.3, 0.0, 96.3, 2.4, 0.0, 0.0, 0.9, 53.2, 46.8 -2.0242914979757085,2.02,a-cure-i1,2017-18,12.5,98.8,Lawrence - Lawlor Early Childhood Center,01490002, 1.2, 0.0, 96.9, 1.2, 0.0, 0.0, 0.6, 53.4, 46.6 -1.118997912317328,1.12,a-cure-i1,2017-18,6.7,95.8,Lawrence - Lawrence Family Public Academy,01490011, 1.4, 0.9, 93.4, 4.2, 0.0, 0.0, 0.0, 58.0, 42.0 -3.9504132231404956,3.95,a-cure-i1,2017-18,23.9,96.8,Lawrence - Lawrence High School,01490515, 1.5, 1.8, 93.3, 3.2, 0.1, 0.0, 0.2, 51.8, 48.2 -1.5103734439834022,1.51,a-cure-i1,2017-18,9.1,96.4,Lawrence - Oliver Partnership School,01490048, 0.9, 0.7, 94.6, 3.6, 0.0, 0.0, 0.2, 51.9, 48.1 -1,1,a-cure-i1,2017-18,3.4,93.8,Lawrence - Parthum Middle School,01490027, 1.5, 0.3, 91.2, 6.2, 0.0, 0.0, 0.7, 50.3, 49.7 -2.1176470588235294,2.12,a-cure-i1,2017-18,12.6,95.2,Lawrence - Phoenix Academy Lawrence,01490540, 1.6, 0.8, 92.8, 4.8, 0.0, 0.0, 0.0, 61.6, 38.4 -1.1553610503282274,1.16,a-cure-i1,2017-18,6.6,91.4,Lawrence - Robert Frost,01490018, 2.5, 2.5, 85.1, 8.6, 0.0, 0.0, 1.2, 50.7, 49.3 -1.1920251836306401,1.19,a-cure-i1,2017-18,7.1,95.3,Lawrence - Rollins Early Childhood Center,01490001, 1.6, 0.5, 93.2, 4.7, 0.0, 0.0, 0.0, 59.5, 40.5 -2.8224513172966783,2.82,a-cure-i1,2017-18,15.4,87.3,Lawrence - School for Exceptional Studies,01490537, 1.3, 0.7, 84.7, 12.7, 0.0, 0.0, 0.7, 81.3, 18.7 -4.811777076761304,4.81,a-cure-i1,2017-18,28.599999999999998,95.1,Lawrence - South Lawrence East Elementary School,01490004, 1.2, 1.9, 91.3, 4.9, 0.0, 0.0, 0.7, 54.7, 45.3 -4.583162217659137,4.58,a-cure-i1,2017-18,27.9,97.4,Lawrence - Spark Academy,01490085, 1.5, 2.2, 93.5, 2.6, 0.0, 0.0, 0.2, 47.6, 52.4 -5.453061224489796,5,a-cure-i1,2017-18,33.4,98.0,Lawrence - UP Academy Leonard Middle School,01490090, 1.0, 0.3, 96.6, 2.0, 0.0, 0.0, 0.0, 55.2, 44.8 -2.7689119170984453,2.77,a-cure-i1,2017-18,16.7,96.5,Lawrence - UP Academy Oliver Middle School,01490049, 0.6, 0.0, 95.9, 3.5, 0.0, 0.0, 0.0, 53.9, 46.1 -3.3387096774193545,3.34,a-cure-i1,2017-18,20.7,99.2,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.8, 0.0, 98.4, 0.8, 0.0, 0.0, 0.0, 45.7, 54.3 -1,1,a-cure-i1,2017-18,2.9,15.700000000000003,Lee - Lee Elementary,01500025, 0.6, 2.6, 9.6, 84.3, 0.0, 0.0, 2.9, 51.3, 48.7 -1,1,a-cure-i1,2017-18,2.8,12.900000000000006,Lee - Lee Middle/High School,01500505, 0.6, 2.0, 6.6, 87.1, 0.3, 0.0, 3.4, 49.9, 50.1 -8.233918128654974,5,a-cure-i1,2017-18,8.8,17.099999999999994,Leicester - Leicester High,01510505, 3.9, 2.6, 7.2, 82.9, 0.7, 0.4, 2.4, 53.1, 46.9 -1,1,a-cure-i1,2017-18,0.0,20.400000000000006,Leicester - Leicester Memorial Elementary,01510005, 5.7, 2.1, 9.0, 79.6, 0.6, 0.0, 3.0, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,19.400000000000006,Leicester - Leicester Middle,01510015, 4.1, 2.9, 8.7, 80.6, 0.0, 0.0, 3.6, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,19.299999999999997,Leicester - Leicester Primary School,01510010, 5.5, 3.0, 9.4, 80.7, 0.0, 0.0, 1.4, 58.7, 41.3 -1,1,a-cure-i1,2017-18,0.0,15.299999999999997,Lenox - Lenox Memorial High,01520505, 0.5, 5.2, 7.4, 84.7, 0.0, 0.0, 2.3, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,17.700000000000003,Lenox - Morris,01520015, 0.6, 5.5, 7.4, 82.3, 0.0, 0.0, 4.2, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,45.3,Leominster - Bennett,01530003, 9.3, 4.7, 30.2, 54.7, 0.0, 0.0, 1.2, 67.4, 32.6 -1,1,a-cure-i1,2017-18,0.0,47.4,Leominster - Center For Technical Education Innovation,01530605, 7.0, 3.9, 33.1, 52.6, 0.0, 0.4, 3.1, 64.0, 36.0 -1,1,a-cure-i1,2017-18,3.1,45.2,Leominster - Fall Brook,01530007, 5.6, 1.7, 32.4, 54.8, 0.3, 0.0, 5.2, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,57.9,Leominster - Frances Drake School,01530010, 6.8, 3.9, 41.0, 42.1, 0.0, 0.0, 6.3, 52.6, 47.4 -1,1,a-cure-i1,2017-18,2.9,50.1,Leominster - Johnny Appleseed,01530025, 10.8, 4.1, 30.6, 49.9, 0.3, 0.0, 4.3, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,40.0,Leominster - Leominster Center for Excellence,01530515, 4.0, 0.0, 32.0, 60.0, 0.0, 0.0, 4.0, 38.0, 62.0 -2.102189781021898,2.1,a-cure-i1,2017-18,5.4,41.1,Leominster - Leominster High School,01530505, 9.7, 3.0, 25.9, 58.9, 0.2, 0.0, 2.3, 46.0, 54.0 -1,1,a-cure-i1,2017-18,0.0,37.5,Leominster - Lincoln School,01530005, 4.2, 4.2, 27.1, 62.5, 0.0, 0.0, 2.1, 70.8, 29.2 -1,1,a-cure-i1,2017-18,0.0,50.5,Leominster - Northwest,01530030, 6.3, 1.9, 36.9, 49.5, 0.0, 0.0, 5.4, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,62.4,Leominster - Priest Street,01530040, 6.4, 2.4, 45.6, 37.6, 0.0, 0.0, 8.0, 56.0, 44.0 -1,1,a-cure-i1,2017-18,2.9,42.6,Leominster - Samoset School,01530045, 6.1, 2.0, 32.0, 57.4, 0.0, 0.0, 2.4, 51.9, 47.9 -1,1,a-cure-i1,2017-18,3.7,50.9,Leominster - Sky View Middle School,01530320, 8.6, 5.6, 33.0, 49.1, 0.2, 0.0, 3.6, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.0,17.599999999999994,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 6.4, 82.4, 0.0, 0.0, 11.2, 58.4, 41.6 -8.578313253012048,5,a-cure-i1,2017-18,26.7,49.8,Lexington - Bowman,01550008, 5.5, 32.0, 2.7, 50.2, 0.0, 0.0, 9.6, 51.1, 48.9 -2.098859315589354,2.1,a-cure-i1,2017-18,6.9,52.6,Lexington - Bridge,01550006, 4.9, 41.4, 4.0, 47.4, 0.2, 0.2, 1.9, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.4,43.8,Lexington - Fiske,01550015, 2.6, 29.5, 2.8, 56.2, 0.0, 0.0, 9.0, 54.4, 45.6 -2.273534635879219,2.27,a-cure-i1,2017-18,8.0,56.3,Lexington - Harrington,01550030, 3.3, 43.3, 2.9, 43.7, 0.4, 0.0, 6.3, 51.5, 48.5 -3.36231884057971,3.36,a-cure-i1,2017-18,11.6,55.2,Lexington - Jonas Clarke Middle,01550305, 5.1, 41.6, 3.9, 44.8, 0.0, 0.0, 4.6, 52.7, 47.3 -1,1,a-cure-i1,2017-18,0.3,60.1,Lexington - Joseph Estabrook,01550010, 4.9, 42.1, 3.5, 39.9, 0.0, 0.0, 9.6, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,62.0,Lexington - Lexington Children's Place,01550001, 5.6, 42.3, 7.0, 38.0, 0.0, 0.0, 7.0, 57.7, 42.3 -2.4793388429752063,2.48,a-cure-i1,2017-18,7.499999999999999,48.4,Lexington - Lexington High,01550505, 3.4, 36.3, 3.6, 51.6, 0.1, 0.0, 5.0, 50.7, 49.3 -6.508474576271187,5,a-cure-i1,2017-18,24.0,59.0,Lexington - Maria Hastings,01550035, 2.6, 43.8, 3.9, 41.0, 0.0, 0.0, 8.8, 52.1, 47.9 -2.786692759295499,2.79,a-cure-i1,2017-18,8.9,51.1,Lexington - Wm Diamond Middle,01550310, 3.8, 37.0, 2.7, 48.9, 0.0, 0.0, 7.6, 48.5, 51.5 -12.057259713701432,5,a-cure-i1,2017-18,73.7,97.8,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 12.2, 0.0, 84.4, 2.2, 0.0, 0.0, 1.1, 54.4, 45.6 -2.944309927360775,2.94,a-cure-i1,2017-18,7.6,41.3,Lincoln - Hanscom Middle,01570305, 9.6, 1.8, 20.3, 58.7, 0.0, 0.0, 9.6, 52.4, 47.6 -3.813267813267813,3.81,a-cure-i1,2017-18,9.7,40.7,Lincoln - Hanscom Primary,01570006, 5.1, 1.5, 24.4, 59.3, 0.3, 0.6, 8.7, 52.4, 47.6 -2.141732283464567,2.14,a-cure-i1,2017-18,5.1000000000000005,38.1,Lincoln - Lincoln School,01570025, 12.3, 5.6, 10.8, 61.9, 0.2, 0.0, 9.2, 50.5, 49.5 -4.640000000000001,4.64,a-cure-i1,2017-18,5.800000000000001,20.0,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 4.6, 6.2, 4.6, 80.0, 0.1, 0.1, 4.4, 51.4, 48.5 -1,1,a-cure-i1,2017-18,0.0,12.099999999999994,Littleton - Littleton High School,01580505, 0.4, 5.6, 1.9, 87.9, 0.4, 0.4, 3.2, 44.9, 55.1 -1,1,a-cure-i1,2017-18,0.0,13.799999999999997,Littleton - Littleton Middle School,01580305, 2.2, 5.8, 1.7, 86.2, 0.3, 0.0, 3.9, 45.6, 54.4 -1,1,a-cure-i1,2017-18,0.0,16.799999999999997,Littleton - Russell St Elementary,01580015, 1.6, 10.6, 2.3, 83.2, 0.3, 0.0, 2.1, 52.6, 47.4 -10.495999999999999,5,a-cure-i1,2017-18,8.2,12.5,Littleton - Shaker Lane Elementary,01580005, 0.4, 8.9, 1.3, 87.5, 0.0, 0.2, 1.6, 48.1, 51.9 -1,1,a-cure-i1,2017-18,0.0,26.900000000000006,Longmeadow - Blueberry Hill,01590005, 0.7, 17.3, 3.2, 73.1, 0.2, 0.7, 4.8, 51.7, 48.3 -1,1,a-cure-i1,2017-18,0.0,16.299999999999997,Longmeadow - Center,01590010, 2.5, 3.7, 4.5, 83.7, 0.0, 0.0, 5.7, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,23.400000000000006,Longmeadow - Glenbrook Middle,01590017, 3.5, 10.8, 5.6, 76.6, 0.3, 0.0, 3.2, 50.0, 50.0 -1,1,a-cure-i1,2017-18,3.0,18.200000000000003,Longmeadow - Longmeadow High,01590505, 2.7, 9.1, 3.9, 81.8, 0.1, 0.1, 2.3, 50.1, 49.9 -1,1,a-cure-i1,2017-18,4.4,15.5,Longmeadow - Williams Middle,01590305, 1.5, 6.7, 4.5, 84.5, 0.0, 0.0, 2.7, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,24.299999999999997,Longmeadow - Wolf Swamp Road,01590025, 3.5, 9.2, 6.2, 75.7, 0.0, 0.0, 5.4, 52.7, 47.3 -1.4069898534385568,1.41,a-cure-i1,2017-18,7.8,88.7,Lowell - Abraham Lincoln,01600020, 5.1, 50.5, 29.2, 11.3, 0.2, 0.0, 3.7, 56.5, 43.5 -1.32398316970547,1.32,a-cure-i1,2017-18,5.9,71.3,Lowell - B.F. Butler Middle School,01600310, 8.1, 27.3, 30.3, 28.7, 0.0, 0.0, 5.6, 50.4, 49.6 -1.6941176470588235,1.69,a-cure-i1,2017-18,9.0,85.0,Lowell - Bartlett Community Partnership,01600090, 9.4, 39.7, 32.8, 15.0, 0.2, 0.0, 2.9, 51.1, 48.9 -1,1,a-cure-i1,2017-18,3.7,80.8,Lowell - Charles W Morey,01600030, 4.9, 61.6, 9.7, 19.2, 0.4, 0.0, 4.3, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,87.4,Lowell - Charlotte M Murkland Elementary,01600080, 5.0, 45.1, 31.7, 12.6, 0.0, 0.0, 5.6, 54.1, 45.9 -1,1,a-cure-i1,2017-18,2.4,68.9,Lowell - Dr An Wang School,01600345, 8.1, 17.9, 39.6, 31.1, 0.0, 0.0, 3.3, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,66.2,Lowell - Dr Gertrude Bailey,01600002, 4.3, 34.8, 21.1, 33.8, 0.2, 0.0, 5.7, 52.3, 47.7 -1.5796897038081803,1.58,a-cure-i1,2017-18,7.0,70.9,Lowell - Greenhalge,01600015, 10.4, 13.3, 42.6, 29.1, 0.0, 0.2, 4.4, 50.6, 49.4 -2.916776750330251,2.92,a-cure-i1,2017-18,13.799999999999999,75.7,Lowell - Henry J Robinson Middle,01600330, 11.3, 17.3, 42.6, 24.3, 0.0, 0.0, 4.5, 51.8, 48.2 -1.5759233926128593,1.58,a-cure-i1,2017-18,7.2,73.1,Lowell - James S Daley Middle School,01600315, 3.7, 44.7, 19.9, 26.9, 0.0, 0.0, 4.9, 53.3, 46.7 -2.493192133131619,2.49,a-cure-i1,2017-18,10.3,66.1,Lowell - James Sullivan Middle School,01600340, 9.0, 14.0, 39.0, 33.9, 0.0, 0.0, 4.0, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,71.4,Lowell - John J Shaughnessy,01600050, 5.4, 29.0, 33.3, 28.6, 0.2, 0.0, 3.5, 49.6, 50.4 -1.632214765100671,1.63,a-cure-i1,2017-18,7.6,74.5,Lowell - Joseph McAvinnue,01600010, 6.0, 15.2, 50.3, 25.5, 0.0, 0.0, 3.1, 53.6, 46.4 -1.8537682789651293,1.85,a-cure-i1,2017-18,10.3,88.9,Lowell - Kathryn P. Stoklosa Middle School,01600360, 6.4, 49.6, 29.7, 11.1, 0.0, 0.0, 3.2, 51.2, 48.8 -1.6551724137931034,1.66,a-cure-i1,2017-18,9.0,87.0,Lowell - Laura Lee Therapeutic Day School,01600085, 13.0, 4.3, 60.9, 13.0, 0.0, 0.0, 8.7, 95.7, 4.3 -1,1,a-cure-i1,2017-18,0.0,80.6,Lowell - Leblanc Therapeutic Day School,01600320, 5.6, 5.6, 63.9, 19.4, 0.0, 0.0, 5.6, 80.6, 19.4 -2.6215864759427827,2.62,a-cure-i1,2017-18,12.6,76.9,Lowell - Lowell Day School on Broadway,01600605, 26.9, 26.9, 23.1, 23.1, 0.0, 0.0, 0.0, 73.1, 26.9 -2.6104078762306613,2.61,a-cure-i1,2017-18,11.6,71.1,Lowell - Lowell High,01600505, 11.4, 31.7, 25.3, 28.9, 0.1, 0.0, 2.6, 49.7, 50.3 -3.219076005961252,3.22,a-cure-i1,2017-18,13.5,67.1,Lowell - Moody Elementary,01600027, 4.5, 18.5, 40.3, 32.9, 0.0, 0.0, 3.7, 49.4, 50.2 -1,1,a-cure-i1,2017-18,0.0,64.2,Lowell - Pawtucketville Memorial,01600036, 8.0, 22.3, 28.2, 35.8, 0.0, 0.0, 5.7, 50.9, 49.1 -3.00187617260788,3.0,a-cure-i1,2017-18,10.0,53.3,Lowell - Peter W Reilly,01600040, 3.9, 8.3, 36.9, 46.7, 0.0, 0.0, 4.2, 50.7, 49.3 -2.6941580756013748,2.69,a-cure-i1,2017-18,9.8,58.2,Lowell - Pyne Arts,01600018, 4.5, 12.9, 36.3, 41.8, 0.0, 0.0, 4.5, 54.7, 45.3 -1,1,a-cure-i1,2017-18,2.4,75.9,Lowell - Rogers STEM Academy,01600005, 8.8, 24.4, 39.3, 24.1, 0.0, 0.0, 3.5, 52.4, 47.6 -4.032520325203252,4.03,a-cure-i1,2017-18,15.5,61.5,Lowell - S Christa McAuliffe Elementary,01600075, 6.6, 8.1, 44.3, 38.5, 0.0, 0.0, 2.5, 48.7, 51.3 -1,1,a-cure-i1,2017-18,1.3,76.1,Lowell - The Career Academy,01600515, 9.7, 15.0, 46.9, 23.9, 0.0, 0.0, 4.4, 71.7, 28.3 -1.1712158808933004,1.17,a-cure-i1,2017-18,5.9,80.6,Lowell - Washington,01600055, 4.8, 45.2, 22.6, 19.4, 0.0, 0.0, 8.1, 56.9, 43.1 -1.7997936016511864,1.8,a-cure-i1,2017-18,10.899999999999999,96.9,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 26.8, 19.9, 46.8, 3.1, 0.0, 0.0, 3.4, 49.0, 51.0 -5.591776798825258,5,a-cure-i1,2017-18,23.8,68.1,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 2.2, 23.1, 37.4, 31.9, 0.0, 0.0, 5.5, 54.9, 45.1 -1,1,a-cure-i1,2017-18,0.0,18.599999999999994,Ludlow - Chapin Street Elementary School,01610020, 0.9, 0.6, 12.4, 81.4, 0.6, 0.0, 4.0, 45.3, 54.7 -1,1,a-cure-i1,2017-18,0.0,13.700000000000003,Ludlow - East Street Elementary School,01610010, 1.5, 0.2, 9.5, 86.3, 0.2, 0.0, 2.2, 55.1, 44.9 -8.231884057971016,5,a-cure-i1,2017-18,7.1,13.799999999999997,Ludlow - Ludlow Senior High,01610505, 1.8, 0.3, 8.6, 86.2, 0.3, 0.0, 2.7, 49.4, 50.6 -1,1,a-cure-i1,2017-18,2.1,13.599999999999994,Ludlow - Paul R Baird Middle,01610305, 2.2, 0.5, 8.3, 86.4, 0.3, 0.0, 2.4, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,17.0,Ludlow - Veterans Park Elementary,01610023, 2.3, 0.0, 10.9, 83.0, 1.0, 0.0, 2.8, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,11.099999999999994,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 88.9, 0.0, 0.0, 11.1, 33.3, 66.7 -8.000000000000004,5,a-cure-i1,2017-18,5.3,10.599999999999994,Lunenburg - Lunenburg High,01620505, 2.3, 3.6, 2.9, 89.4, 0.7, 0.2, 0.9, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.6,14.200000000000003,Lunenburg - Lunenburg Middle School,01620305, 1.9, 1.2, 8.0, 85.8, 0.9, 0.7, 1.4, 54.8, 45.2 -1,1,a-cure-i1,2017-18,0.0,14.700000000000003,Lunenburg - Lunenburg Primary School,01620010, 3.0, 3.3, 6.6, 85.3, 0.0, 0.0, 1.8, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,14.5,Lunenburg - Turkey Hill Elementary School,01620025, 0.8, 0.8, 7.5, 85.5, 0.3, 0.5, 4.6, 49.3, 50.7 -1,1,a-cure-i1,2017-18,4.3,94.3,Lynn - A Drewicz Elementary,01630016, 9.6, 15.9, 64.8, 5.7, 0.4, 0.0, 3.7, 47.6, 52.4 -1,1,a-cure-i1,2017-18,0.9,70.8,Lynn - Aborn,01630011, 13.8, 7.5, 39.5, 29.2, 1.6, 0.0, 8.3, 48.2, 51.8 -2.1666666666666665,2.17,a-cure-i1,2017-18,11.700000000000001,86.4,Lynn - Breed Middle School,01630405, 9.2, 10.7, 62.7, 13.6, 0.4, 0.0, 3.5, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.8,83.7,Lynn - Brickett Elementary,01630020, 10.3, 13.3, 54.5, 16.3, 0.3, 0.0, 5.3, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,54.4,Lynn - Capt William G Shoemaker,01630090, 14.6, 6.4, 25.2, 45.6, 0.0, 0.0, 8.2, 59.9, 40.1 -2.5241730279898222,2.52,a-cure-i1,2017-18,12.4,78.6,Lynn - Classical High,01630505, 9.9, 10.6, 55.4, 21.4, 0.4, 0.1, 2.3, 54.2, 45.8 -1,1,a-cure-i1,2017-18,3.3,96.2,Lynn - Cobbet Elementary,01630035, 8.8, 5.5, 79.3, 3.8, 0.2, 0.0, 2.5, 52.0, 48.0 -1,1,a-cure-i1,2017-18,3.5,90.0,Lynn - E J Harrington,01630045, 8.4, 7.4, 70.7, 10.0, 0.0, 0.0, 3.5, 50.4, 49.6 -1,1,a-cure-i1,2017-18,1.2,89.6,Lynn - Early Childhood Center,01630004, 10.4, 11.4, 65.9, 10.4, 0.0, 0.0, 2.0, 55.9, 44.1 -1,1,a-cure-i1,2017-18,4.8,67.3,Lynn - Edward A Sisson,01630095, 7.1, 11.1, 42.9, 32.7, 1.4, 0.0, 4.8, 51.2, 48.8 -1.6908850726552178,1.69,a-cure-i1,2017-18,8.0,75.7,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 12.1, 2.8, 55.1, 24.3, 0.9, 0.0, 4.7, 58.9, 41.1 -1,1,a-cure-i1,2017-18,4.7,83.0,Lynn - Hood,01630055, 9.0, 7.8, 63.4, 17.0, 0.0, 0.0, 2.7, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.4,91.4,Lynn - Ingalls,01630060, 9.5, 9.2, 69.1, 8.6, 0.2, 0.2, 3.4, 52.4, 47.6 -1.450980392156863,1.45,a-cure-i1,2017-18,7.4,81.6,Lynn - Julia F Callahan,01630030, 16.8, 8.5, 49.7, 18.4, 0.0, 0.0, 6.6, 52.3, 47.7 -1,1,a-cure-i1,2017-18,0.0,76.2,Lynn - Lincoln-Thomson,01630070, 7.5, 7.5, 55.8, 23.8, 0.0, 0.0, 5.4, 52.5, 47.5 -2.7238095238095235,2.72,a-cure-i1,2017-18,14.299999999999999,84.0,Lynn - Lynn English High,01630510, 9.6, 8.2, 63.3, 16.0, 0.1, 0.0, 2.8, 55.2, 44.8 -3.4635294117647057,3.46,a-cure-i1,2017-18,18.4,85.0,Lynn - Lynn Vocational Technical Institute,01630605, 7.6, 6.1, 68.4, 15.0, 0.1, 0.0, 2.9, 57.7, 42.3 -4.589473684210526,4.59,a-cure-i1,2017-18,10.9,38.0,Lynn - Lynn Woods,01630075, 1.2, 4.3, 22.1, 62.0, 1.2, 0.0, 9.2, 47.9, 52.1 -2.3730886850152904,2.37,a-cure-i1,2017-18,9.7,65.4,Lynn - Pickering Middle,01630420, 6.7, 8.9, 42.6, 34.6, 0.8, 0.0, 6.3, 51.4, 48.6 -1,1,a-cure-i1,2017-18,4.8,92.7,Lynn - Robert L Ford,01630050, 7.9, 8.3, 73.8, 7.3, 0.4, 0.0, 2.2, 48.2, 51.8 -1,1,a-cure-i1,2017-18,0.0,67.4,Lynn - Sewell-Anderson,01630085, 9.0, 5.2, 48.7, 32.6, 0.3, 0.0, 4.2, 56.1, 43.9 -1.937219730941704,1.94,a-cure-i1,2017-18,10.8,89.2,Lynn - Thurgood Marshall Mid,01630305, 9.7, 8.0, 67.8, 10.8, 0.5, 0.0, 3.3, 50.4, 49.6 -1,1,a-cure-i1,2017-18,3.5,92.6,Lynn - Tracy,01630100, 10.4, 5.8, 72.8, 7.4, 0.0, 0.0, 3.7, 48.6, 51.4 -1,1,a-cure-i1,2017-18,4.5,95.5,Lynn - Washington Elementary School,01630005, 13.4, 6.4, 71.7, 4.5, 0.2, 0.0, 3.8, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,80.0,Lynn - William R Fallon,01630080, 4.0, 2.0, 68.0, 20.0, 0.0, 0.0, 6.0, 88.0, 12.0 -1,1,a-cure-i1,2017-18,3.5,95.3,Lynn - Wm P Connery,01630040, 6.3, 15.0, 72.0, 4.7, 0.2, 0.0, 1.9, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,21.799999999999997,Lynnfield - Huckleberry Hill,01640010, 1.6, 8.4, 7.5, 78.2, 0.0, 0.0, 4.2, 45.7, 54.3 -1,1,a-cure-i1,2017-18,2.2,11.700000000000003,Lynnfield - Lynnfield High,01640505, 1.7, 3.7, 4.6, 88.3, 0.0, 0.0, 1.7, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,13.099999999999994,Lynnfield - Lynnfield Middle School,01640405, 1.5, 5.0, 4.6, 86.9, 0.0, 0.0, 2.1, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,15.799999999999997,Lynnfield - Lynnfield Preschool,01640005, 0.0, 7.9, 2.6, 84.2, 0.0, 0.0, 5.3, 47.4, 52.6 -1,1,a-cure-i1,2017-18,0.0,13.5,Lynnfield - Summer Street,01640020, 1.9, 4.6, 5.3, 86.5, 0.0, 0.0, 1.6, 56.8, 43.2 -4.498316498316498,4.5,a-cure-i1,2017-18,16.7,59.4,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 1.0, 45.8, 3.1, 40.6, 0.0, 0.0, 9.4, 50.0, 50.0 -1.3391053391053391,1.34,a-cure-i1,2017-18,5.8,69.3,Malden - Beebe,01650003, 13.3, 39.1, 12.5, 30.7, 0.0, 0.1, 4.3, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,75.1,Malden - Ferryway,01650013, 20.5, 19.2, 30.2, 24.9, 0.2, 0.0, 5.0, 47.7, 52.3 -1.6223776223776223,1.62,a-cure-i1,2017-18,5.8,57.2,Malden - Forestdale,01650027, 17.7, 8.8, 25.6, 42.8, 0.0, 0.2, 4.9, 51.4, 48.6 -1,1,a-cure-i1,2017-18,3.3000000000000003,65.6,Malden - Linden,01650047, 21.5, 22.7, 16.5, 34.4, 0.3, 0.0, 4.5, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,65.0,Malden - Malden Early Learning Center,01650049, 15.0, 37.9, 6.7, 35.0, 0.0, 0.0, 5.4, 59.6, 40.4 -3.027624309392265,3.03,a-cure-i1,2017-18,13.7,72.4,Malden - Malden High,01650505, 20.0, 23.7, 24.9, 27.6, 0.3, 0.0, 3.5, 52.0, 47.9 -2.085161290322581,2.09,a-cure-i1,2017-18,10.100000000000001,77.5,Malden - Salemwood,01650057, 23.2, 19.4, 31.5, 22.5, 0.1, 0.0, 3.4, 52.3, 47.7 -1,1,a-cure-i1,2017-18,0.0,3.9000000000000057,Manchester Essex Regional - Essex Elementary,06980020, 0.9, 0.0, 0.9, 96.1, 0.0, 0.0, 2.2, 49.6, 50.4 -1,1,a-cure-i1,2017-18,4.8,2.5,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.1, 1.1, 97.5, 0.0, 0.0, 0.2, 42.9, 57.1 -22.325581395348852,5,a-cure-i1,2017-18,6.0,4.299999999999997,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.6, 1.3, 95.7, 0.0, 0.0, 1.3, 53.5, 46.5 -1,1,a-cure-i1,2017-18,0.0,2.5999999999999943,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 1.2, 0.3, 0.9, 97.4, 0.0, 0.0, 0.3, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,23.900000000000006,Mansfield - Everett W Robinson,01670007, 2.5, 9.5, 5.7, 76.1, 0.1, 0.0, 6.0, 54.1, 45.9 -1,1,a-cure-i1,2017-18,2.6,16.700000000000003,Mansfield - Harold L Qualters Middle,01670035, 2.8, 5.8, 4.1, 83.3, 0.1, 0.0, 3.8, 52.5, 47.5 -1,1,a-cure-i1,2017-18,3.6,17.0,Mansfield - Jordan/Jackson Elementary,01670014, 3.6, 6.0, 4.8, 83.0, 0.1, 0.0, 2.5, 52.9, 47.1 -6.22222222222222,5,a-cure-i1,2017-18,5.6,14.400000000000006,Mansfield - Mansfield High,01670505, 3.6, 4.4, 3.5, 85.6, 0.2, 0.1, 2.7, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.0,20.599999999999994,Mansfield - Roland Green School,01670003, 3.1, 7.2, 6.2, 79.4, 0.0, 0.0, 4.1, 54.6, 45.4 -4.790419161676646,4.79,a-cure-i1,2017-18,5.0,16.700000000000003,Marblehead - Elbridge Gerry,01680015, 0.7, 1.4, 11.6, 83.3, 0.0, 0.0, 2.9, 55.8, 44.2 -1,1,a-cure-i1,2017-18,0.0,10.5,Marblehead - Glover,01680020, 1.9, 1.1, 4.6, 89.5, 0.0, 0.0, 3.0, 53.8, 46.2 -1,1,a-cure-i1,2017-18,4.3,19.599999999999994,Marblehead - L H Coffin,01680010, 1.3, 3.3, 8.5, 80.4, 0.0, 0.7, 5.9, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.0,18.700000000000003,Marblehead - Malcolm L Bell,01680005, 2.6, 2.2, 11.0, 81.3, 0.0, 0.0, 2.9, 56.0, 44.0 -1,1,a-cure-i1,2017-18,2.5,13.400000000000006,Marblehead - Marblehead High,01680505, 3.5, 2.3, 5.7, 86.6, 0.1, 0.0, 1.8, 47.1, 52.9 -1,1,a-cure-i1,2017-18,2.8,11.0,Marblehead - Marblehead Veterans Middle School,01680300, 3.5, 1.0, 4.7, 89.0, 0.0, 0.0, 1.8, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,14.599999999999994,Marblehead - Village School,01680016, 3.0, 1.3, 6.9, 85.4, 0.3, 0.0, 3.1, 53.1, 46.9 -1,1,a-cure-i1,2017-18,0.0,13.5,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 4.4, 4.4, 1.3, 86.5, 0.9, 0.0, 2.6, 60.7, 39.3 -1,1,a-cure-i1,2017-18,0.0,12.099999999999994,Marion - Sippican,01690005, 2.2, 1.3, 3.5, 87.9, 0.4, 0.0, 4.6, 54.0, 46.0 -1,1,a-cure-i1,2017-18,4.2,57.9,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 3.1, 2.0, 49.5, 42.1, 0.0, 0.0, 3.3, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,54.7,Marlborough - Charles Jaworek School,01700030, 3.0, 6.8, 42.8, 45.3, 0.1, 0.0, 1.8, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,40.2,Marlborough - Early Childhood Center,01700006, 3.4, 17.2, 14.9, 59.8, 0.0, 1.1, 3.4, 62.1, 37.9 -1,1,a-cure-i1,2017-18,0.0,53.9,Marlborough - Francis J Kane,01700008, 4.5, 3.2, 43.2, 46.1, 0.0, 0.0, 2.9, 50.2, 49.8 -1,1,a-cure-i1,2017-18,3.9,54.1,Marlborough - Marlborough High,01700505, 3.2, 2.6, 46.8, 45.9, 0.1, 0.0, 1.4, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,68.2,Marlborough - Richer,01700025, 3.8, 2.2, 58.9, 31.8, 0.2, 0.0, 3.1, 50.3, 49.7 -1,1,a-cure-i1,2017-18,0.0,8.700000000000003,Marshfield - Daniel Webster,01710015, 0.5, 2.0, 4.0, 91.3, 0.5, 0.7, 1.0, 48.6, 51.4 -1,1,a-cure-i1,2017-18,0.0,3.299999999999997,Marshfield - Eames Way School,01710005, 0.4, 0.0, 0.8, 96.7, 0.0, 0.0, 2.1, 62.6, 37.4 -1,1,a-cure-i1,2017-18,1.5,5.299999999999997,Marshfield - Furnace Brook Middle,01710310, 0.1, 0.9, 2.6, 94.7, 0.0, 0.1, 1.5, 53.3, 46.6 -1,1,a-cure-i1,2017-18,4.3,5.099999999999994,Marshfield - Gov Edward Winslow,01710020, 0.5, 0.5, 2.2, 94.9, 0.0, 0.0, 1.9, 50.6, 49.4 -1,1,a-cure-i1,2017-18,2.0,5.700000000000003,Marshfield - Marshfield High,01710505, 0.7, 1.2, 2.8, 94.3, 0.2, 0.1, 0.7, 49.0, 51.0 -1,1,a-cure-i1,2017-18,3.9,10.900000000000006,Marshfield - Martinson Elementary,01710025, 0.0, 2.8, 4.7, 89.1, 0.7, 0.0, 2.8, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,7.5,Marshfield - South River,01710010, 0.5, 0.3, 3.2, 92.5, 0.0, 0.0, 3.5, 49.6, 50.4 -1,1,a-cure-i1,2017-18,1.9,25.099999999999994,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 3.6, 1.4, 13.1, 74.9, 2.1, 0.3, 4.6, 50.9, 48.9 -1,1,a-cure-i1,2017-18,4.5,26.099999999999994,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 3.3, 1.1, 10.3, 73.9, 2.2, 0.0, 9.2, 45.7, 54.3 -4.545641025641026,4.55,a-cure-i1,2017-18,27.700000000000003,97.5,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 37.1, 1.7, 53.7, 2.5, 0.0, 0.0, 5.0, 47.9, 52.1 -1,1,a-cure-i1,2017-18,1.4,8.900000000000006,Masconomet - Masconomet Regional High School,07050505, 0.4, 3.9, 2.3, 91.1, 0.3, 0.1, 1.9, 48.2, 51.8 -10.329113924050624,5,a-cure-i1,2017-18,5.1,7.900000000000006,Masconomet - Masconomet Regional Middle School,07050405, 0.5, 2.7, 2.3, 92.1, 0.0, 0.0, 2.4, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,30.799999999999997,Mashpee - Kenneth Coombs School,01720005, 3.6, 1.4, 7.0, 69.2, 6.5, 0.2, 12.0, 54.3, 45.7 -1,1,a-cure-i1,2017-18,1.3,22.599999999999994,Mashpee - Mashpee High,01720505, 5.5, 1.6, 4.2, 77.4, 5.5, 0.0, 5.8, 51.2, 48.8 -1,1,a-cure-i1,2017-18,2.5,22.599999999999994,Mashpee - Mashpee Middle School,01720020, 5.2, 2.6, 2.2, 77.4, 7.0, 0.4, 5.2, 47.8, 52.2 -1,1,a-cure-i1,2017-18,0.0,22.900000000000006,Mashpee - Quashnet School,01720035, 2.9, 1.6, 3.5, 77.1, 6.8, 0.0, 8.0, 50.1, 49.9 -1,1,a-cure-i1,2017-18,0.0,39.7,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 9.9, 1.2, 20.0, 60.3, 0.2, 0.7, 7.7, 47.2, 52.8 -5.868852459016394,5,a-cure-i1,2017-18,35.800000000000004,97.6,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 47.0, 0.9, 46.9, 2.4, 0.6, 0.1, 2.1, 47.8, 52.2 -1,1,a-cure-i1,2017-18,0.0,10.5,Mattapoisett - Center,01730005, 0.4, 1.7, 3.8, 89.5, 0.0, 0.0, 4.6, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,11.200000000000003,Mattapoisett - Old Hammondtown,01730010, 2.4, 2.0, 2.4, 88.8, 0.0, 0.0, 4.4, 54.1, 45.9 -5.065326633165828,5,a-cure-i1,2017-18,6.3,19.900000000000006,Maynard - Fowler School,01740305, 3.1, 1.1, 11.5, 80.1, 0.2, 0.0, 4.0, 50.6, 49.4 -7.626168224299063,5,a-cure-i1,2017-18,10.2,21.400000000000006,Maynard - Green Meadow,01740010, 1.2, 1.2, 12.6, 78.6, 0.0, 0.0, 6.4, 53.9, 46.1 -1,1,a-cure-i1,2017-18,0.0,24.400000000000006,Maynard - Maynard High,01740505, 3.6, 4.1, 12.3, 75.6, 0.3, 0.0, 4.1, 46.9, 53.1 -1,1,a-cure-i1,2017-18,2.8,14.799999999999997,Medfield - Dale Street,01750005, 0.5, 2.7, 7.4, 85.2, 0.0, 0.0, 4.1, 52.1, 47.9 -1,1,a-cure-i1,2017-18,3.4,12.299999999999997,Medfield - Medfield Senior High,01750505, 1.3, 5.9, 2.2, 87.7, 0.0, 0.2, 2.7, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,12.799999999999997,Medfield - Memorial School,01750003, 1.1, 2.3, 5.3, 87.2, 0.2, 0.0, 3.9, 49.5, 50.5 -1,1,a-cure-i1,2017-18,2.2,13.799999999999997,Medfield - Ralph Wheelock School,01750007, 1.9, 3.7, 5.0, 86.2, 0.8, 0.0, 2.4, 54.0, 46.0 -1,1,a-cure-i1,2017-18,4.4,11.700000000000003,Medfield - Thomas Blake Middle,01750305, 0.8, 4.5, 2.4, 88.3, 0.5, 0.0, 3.5, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,26.5,Medford - Brooks School,01760130, 7.4, 6.2, 6.8, 73.5, 0.2, 0.0, 6.0, 52.4, 47.6 -1.8802660753880265,1.88,a-cure-i1,2017-18,5.3,45.1,Medford - Christopher Columbus,01760140, 18.3, 4.5, 15.6, 54.9, 0.0, 0.0, 6.6, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,46.2,Medford - Curtis-Tufts,01760510, 30.8, 0.0, 15.4, 53.8, 0.0, 0.0, 0.0, 61.5, 38.5 -1,1,a-cure-i1,2017-18,0.0,48.7,Medford - John J McGlynn Elementary School,01760068, 14.3, 13.7, 11.6, 51.3, 1.0, 0.2, 7.8, 48.1, 51.9 -2.096774193548387,2.1,a-cure-i1,2017-18,6.5,49.6,Medford - John J. McGlynn Middle School,01760320, 16.3, 15.0, 14.3, 50.4, 0.2, 0.0, 3.7, 53.5, 46.5 -1,1,a-cure-i1,2017-18,2.8,28.0,Medford - Madeleine Dugger Andrews,01760315, 10.2, 4.8, 7.6, 72.0, 0.0, 0.0, 5.4, 52.6, 47.4 -2.3778337531486144,2.38,a-cure-i1,2017-18,5.9,39.7,Medford - Medford High,01760505, 15.3, 9.6, 11.7, 60.3, 0.1, 0.1, 2.9, 49.9, 50.1 -2.255874673629243,2.26,a-cure-i1,2017-18,5.4,38.3,Medford - Milton Fuller Roberts,01760150, 9.8, 12.2, 10.7, 61.7, 0.7, 0.0, 4.8, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,8.299999999999997,Medway - Burke/Memorial Elementary School,01770015, 2.0, 1.4, 2.2, 91.7, 0.0, 0.0, 2.8, 47.1, 52.9 -1,1,a-cure-i1,2017-18,0.0,7.799999999999997,Medway - John D Mc Govern Elementary,01770013, 0.9, 1.8, 3.6, 92.2, 0.0, 0.3, 1.2, 50.1, 49.9 -1,1,a-cure-i1,2017-18,2.3,10.299999999999997,Medway - Medway High,01770505, 1.6, 3.3, 3.6, 89.7, 0.1, 0.1, 1.5, 52.2, 47.8 -1,1,a-cure-i1,2017-18,2.0,11.0,Medway - Medway Middle,01770305, 1.1, 3.1, 3.8, 89.0, 0.3, 0.0, 2.6, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,17.900000000000006,Melrose - Early Childhood Center,01780003, 1.9, 4.4, 4.1, 82.1, 0.0, 0.0, 7.5, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,19.700000000000003,Melrose - Herbert Clark Hoover,01780017, 3.0, 4.5, 7.1, 80.3, 0.0, 0.0, 5.2, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,9.599999999999994,Melrose - Horace Mann,01780025, 2.1, 1.1, 1.8, 90.4, 0.0, 0.0, 4.6, 45.9, 54.1 -1,1,a-cure-i1,2017-18,0.0,36.3,Melrose - Lincoln,01780020, 7.1, 11.4, 10.0, 63.7, 0.2, 0.0, 7.6, 47.3, 52.7 -1,1,a-cure-i1,2017-18,4.3,19.799999999999997,Melrose - Melrose High,01780505, 8.5, 4.0, 4.5, 80.2, 0.0, 0.0, 2.8, 47.0, 53.0 -1,1,a-cure-i1,2017-18,4.0,20.599999999999994,Melrose - Melrose Middle,01780305, 8.0, 4.2, 4.1, 79.4, 0.3, 0.0, 4.0, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,22.700000000000003,Melrose - Roosevelt,01780035, 6.9, 5.3, 5.5, 77.3, 0.0, 0.0, 5.0, 52.8, 47.2 -1,1,a-cure-i1,2017-18,4.5,16.799999999999997,Melrose - Winthrop,01780050, 4.4, 3.5, 2.5, 83.2, 0.5, 0.0, 5.9, 51.1, 48.9 -1,1,a-cure-i1,2017-18,4.5,5.099999999999994,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.5, 3.5, 94.9, 0.0, 0.0, 1.1, 49.6, 50.4 -11.302752293577976,5,a-cure-i1,2017-18,7.7,10.900000000000006,Mendon-Upton - Memorial School,07100001, 0.0, 3.6, 4.2, 89.1, 0.0, 0.0, 3.1, 54.3, 45.7 -1,1,a-cure-i1,2017-18,1.4,10.700000000000003,Mendon-Upton - Miscoe Hill School,07100015, 0.4, 2.7, 4.8, 89.3, 0.0, 0.0, 2.8, 50.6, 49.4 -1,1,a-cure-i1,2017-18,2.4,9.099999999999994,Mendon-Upton - Nipmuc Regional High,07100510, 1.3, 1.6, 3.2, 90.9, 0.0, 0.0, 3.2, 45.4, 54.6 -1,1,a-cure-i1,2017-18,0.0,45.3,Methuen - Comprehensive Grammar School,01810050, 2.3, 5.6, 33.4, 54.7, 0.0, 0.1, 4.0, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.3,58.3,Methuen - Donald P Timony Grammar,01810060, 1.6, 3.5, 48.2, 41.7, 0.1, 0.0, 5.0, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,36.1,Methuen - Marsh Grammar School,01810030, 0.9, 2.8, 28.1, 63.9, 0.0, 0.2, 4.1, 52.5, 47.5 -1,1,a-cure-i1,2017-18,3.0,46.0,Methuen - Methuen High,01810505, 0.7, 4.2, 35.6, 54.0, 0.2, 0.1, 5.2, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.3,60.8,Methuen - Tenney Grammar School,01810055, 1.1, 3.1, 50.9, 39.2, 0.0, 0.0, 5.7, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,13.200000000000003,Middleborough - Henry B. Burkland Elementary School,01820008, 2.1, 0.9, 3.4, 86.8, 0.2, 0.2, 6.4, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,13.0,Middleborough - John T. Nichols Middle,01820305, 2.4, 1.9, 4.2, 87.0, 1.1, 0.0, 3.3, 50.2, 49.8 -1,1,a-cure-i1,2017-18,2.9,9.299999999999997,Middleborough - Mary K. Goode Elementary School,01820010, 3.4, 0.3, 2.4, 90.7, 0.5, 0.0, 2.7, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,11.700000000000003,Middleborough - Memorial Early Childhood Center,01820011, 2.4, 0.3, 4.8, 88.3, 0.7, 0.0, 3.4, 50.2, 49.8 -1,1,a-cure-i1,2017-18,1.7,10.700000000000003,Middleborough - Middleborough High,01820505, 2.6, 0.7, 3.5, 89.3, 0.7, 0.0, 3.2, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,11.799999999999997,Middleton - Fuller Meadow,01840003, 0.9, 3.9, 2.6, 88.2, 0.4, 0.0, 3.9, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,11.799999999999997,Middleton - Howe-Manning,01840005, 0.4, 4.8, 2.8, 88.2, 0.2, 0.0, 3.5, 51.6, 48.4 -1,1,a-cure-i1,2017-18,3.5,38.0,Milford - Brookside,01850065, 4.2, 1.7, 28.2, 62.0, 0.2, 0.2, 3.6, 51.7, 48.3 -1,1,a-cure-i1,2017-18,3.1,39.9,Milford - Memorial,01850010, 2.8, 2.3, 30.9, 60.1, 0.4, 0.0, 3.4, 51.8, 48.2 -4.434285714285714,4.43,a-cure-i1,2017-18,9.7,35.0,Milford - Milford High,01850505, 3.0, 2.6, 25.0, 65.0, 2.2, 0.1, 2.2, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,25.700000000000003,Milford - Shining Star Early Childhood Center,01850075, 0.7, 4.9, 18.8, 74.3, 0.7, 0.0, 0.7, 54.9, 45.1 -1,1,a-cure-i1,2017-18,1.9000000000000001,35.599999999999994,Milford - Stacy Middle,01850305, 2.7, 2.7, 26.1, 64.4, 1.3, 0.0, 2.9, 53.1, 46.9 -2.407766990291262,2.41,a-cure-i1,2017-18,6.2,41.2,Milford - Woodland,01850090, 3.0, 2.0, 28.7, 58.8, 3.0, 0.1, 4.5, 53.0, 47.0 -1,1,a-cure-i1,2017-18,0.0,15.0,Millbury - Elmwood Street,01860017, 2.6, 3.1, 4.1, 85.0, 0.0, 0.0, 5.2, 52.6, 47.4 -1,1,a-cure-i1,2017-18,1.7,15.0,Millbury - Millbury Junior/Senior High,01860505, 2.5, 1.7, 7.9, 85.0, 0.3, 0.0, 2.6, 48.3, 51.7 -1,1,a-cure-i1,2017-18,0.0,22.200000000000003,Millbury - Raymond E. Shaw Elementary,01860025, 1.6, 3.7, 10.3, 77.8, 0.0, 0.0, 6.7, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.0,15.700000000000003,Millis - Clyde F Brown,01870005, 1.0, 1.6, 9.0, 84.3, 0.2, 0.0, 4.0, 48.4, 51.6 -1,1,a-cure-i1,2017-18,3.8,11.700000000000003,Millis - Millis High School,01870505, 1.8, 3.1, 4.8, 88.3, 0.5, 0.3, 1.3, 50.4, 49.6 -1,1,a-cure-i1,2017-18,4.6,17.0,Millis - Millis Middle,01870020, 2.0, 2.0, 8.8, 83.0, 0.2, 0.0, 3.9, 53.3, 46.7 -4.75085324232082,4.75,a-cure-i1,2017-18,8.7,29.299999999999997,Milton - Charles S Pierce Middle,01890410, 14.8, 5.9, 4.9, 70.7, 0.2, 0.2, 3.3, 50.1, 49.9 -8.98876404494382,5,a-cure-i1,2017-18,10.0,17.799999999999997,Milton - Collicot,01890005, 3.1, 8.4, 2.9, 82.2, 0.0, 0.1, 3.2, 54.6, 45.4 -1,1,a-cure-i1,2017-18,3.7,23.799999999999997,Milton - Cunningham School,01890007, 7.9, 8.1, 4.3, 76.2, 0.2, 0.0, 3.2, 50.9, 49.1 -4.528301886792452,4.53,a-cure-i1,2017-18,6.0,21.200000000000003,Milton - Glover,01890010, 7.2, 4.4, 3.2, 78.8, 0.0, 0.0, 6.3, 50.3, 49.7 -4.527472527472527,4.53,a-cure-i1,2017-18,10.299999999999999,36.4,Milton - Milton High,01890505, 20.0, 7.0, 5.1, 63.6, 0.0, 0.4, 3.9, 49.5, 50.4 -5.281803542673107,5,a-cure-i1,2017-18,20.5,62.1,Milton - Tucker,01890020, 41.7, 6.3, 5.9, 37.9, 0.0, 0.0, 8.2, 51.0, 49.0 -1,1,a-cure-i1,2017-18,1.2,20.599999999999994,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 4.1, 4.3, 9.1, 79.4, 0.2, 0.0, 3.0, 63.0, 36.6 -1,1,a-cure-i1,2017-18,0.0,10.599999999999994,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.7, 6.2, 89.4, 0.0, 0.0, 3.7, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,7.5,Mohawk Trail - Colrain Central,07170010, 1.9, 0.0, 4.7, 92.5, 0.0, 0.0, 0.9, 47.2, 52.8 -1,1,a-cure-i1,2017-18,2.9,9.0,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.3, 1.0, 3.9, 91.0, 0.0, 0.0, 3.9, 47.5, 52.5 -1,1,a-cure-i1,2017-18,0.0,8.200000000000003,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 3.8, 91.8, 1.3, 0.6, 2.5, 59.1, 40.9 -1,1,a-cure-i1,2017-18,0.0,19.400000000000006,Monomoy Regional School District - Chatham Elementary School,07120001, 5.8, 0.4, 8.7, 80.6, 0.0, 0.4, 4.1, 43.4, 56.6 -1,1,a-cure-i1,2017-18,0.0,21.5,Monomoy Regional School District - Harwich Elementary School,07120002, 4.9, 0.7, 6.9, 78.5, 0.9, 0.0, 8.0, 53.3, 46.7 -5.2486772486772475,5,a-cure-i1,2017-18,6.2,18.900000000000006,Monomoy Regional School District - Monomoy Regional High School,07120515, 6.8, 1.9, 4.8, 81.1, 0.8, 0.2, 4.4, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,18.099999999999994,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 7.9, 0.7, 6.6, 81.9, 0.2, 0.4, 2.2, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,9.400000000000006,Monson - Granite Valley Middle,01910310, 0.7, 1.4, 3.2, 90.6, 0.4, 1.4, 2.2, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,5.400000000000006,Monson - Monson High School,01910505, 1.2, 0.4, 1.6, 94.6, 0.0, 0.4, 1.9, 49.2, 50.8 -1,1,a-cure-i1,2017-18,3.8,7.400000000000006,Monson - Quarry Hill Community School,01910025, 0.8, 0.8, 3.1, 92.6, 0.3, 0.3, 2.3, 51.7, 48.3 -4.076923076923078,4.08,a-cure-i1,2017-18,5.300000000000001,20.799999999999997,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 1.7, 1.1, 14.3, 79.2, 0.1, 0.0, 3.6, 52.5, 47.1 -14.383838383838377,5,a-cure-i1,2017-18,8.9,9.900000000000006,Mount Greylock - Mt Greylock Regional High,07150505, 1.1, 1.9, 2.6, 90.1, 0.0, 0.0, 4.3, 48.1, 51.9 -2.272189349112426,2.27,a-cure-i1,2017-18,7.2,50.7,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 17.3, 19.6, 9.3, 49.3, 0.3, 0.0, 4.3, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,6.099999999999994,Nahant - Johnson,01960010, 0.0, 0.7, 4.8, 93.9, 0.0, 0.0, 0.7, 49.0, 51.0 -1,1,a-cure-i1,2017-18,4.0,44.0,Nantucket - Cyrus Peirce,01970010, 10.9, 1.1, 27.0, 56.0, 0.0, 0.0, 4.9, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,51.0,Nantucket - Nantucket Elementary,01970005, 7.4, 1.4, 38.3, 49.0, 0.0, 0.0, 3.9, 51.8, 48.2 -3.1079136690647484,3.11,a-cure-i1,2017-18,8.100000000000001,41.7,Nantucket - Nantucket High,01970505, 13.7, 1.5, 22.9, 58.3, 0.4, 0.2, 3.0, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,50.7,Nantucket - Nantucket Intermediate School,01970020, 9.1, 1.9, 37.1, 49.3, 0.0, 0.0, 2.7, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,11.799999999999997,Narragansett - Baldwinville Elementary,07200005, 1.0, 0.3, 6.2, 88.2, 0.3, 0.0, 3.8, 56.1, 43.9 -1,1,a-cure-i1,2017-18,0.0,10.5,Narragansett - Narragansett Middle,07200305, 0.9, 0.0, 6.6, 89.5, 0.0, 0.2, 2.8, 51.4, 48.6 -7.932773109243694,5,a-cure-i1,2017-18,5.9,11.900000000000006,Narragansett - Narragansett Regional High,07200505, 1.2, 0.3, 7.8, 88.1, 0.0, 0.0, 2.6, 48.4, 51.6 -1,1,a-cure-i1,2017-18,0.0,9.5,Narragansett - Phillipston Memorial,07200003, 2.4, 0.0, 3.6, 90.5, 0.0, 0.0, 3.6, 60.4, 39.6 -1,1,a-cure-i1,2017-18,0.0,12.400000000000006,Narragansett - Templeton Center,07200020, 0.0, 0.6, 8.2, 87.6, 0.0, 0.0, 3.5, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,12.700000000000003,Nashoba - Center School,07250020, 0.5, 5.5, 4.1, 87.3, 0.4, 0.0, 2.3, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.0,11.5,Nashoba - Florence Sawyer School,07250025, 0.3, 4.3, 3.5, 88.5, 0.0, 0.1, 3.3, 48.8, 51.2 -10.526315789473692,5,a-cure-i1,2017-18,5.0,7.599999999999994,Nashoba - Hale,07250310, 1.0, 2.0, 3.0, 92.4, 0.0, 0.0, 1.7, 45.5, 54.5 -1,1,a-cure-i1,2017-18,4.4,15.700000000000003,Nashoba - Luther Burbank Middle School,07250305, 2.4, 2.4, 6.0, 84.3, 0.0, 0.8, 4.0, 53.4, 46.6 -1,1,a-cure-i1,2017-18,0.0,14.400000000000006,Nashoba - Mary Rowlandson Elementary,07250010, 1.3, 0.6, 9.6, 85.6, 0.4, 0.0, 2.5, 50.7, 49.3 -1,1,a-cure-i1,2017-18,2.7,10.900000000000006,Nashoba - Nashoba Regional,07250505, 1.4, 2.8, 3.7, 89.1, 0.0, 0.0, 2.9, 50.1, 49.9 -1,1,a-cure-i1,2017-18,2.5,10.599999999999994,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.1, 1.6, 5.0, 89.4, 0.6, 0.0, 2.3, 58.3, 41.7 -4.743362831858408,4.74,a-cure-i1,2017-18,6.7,22.599999999999994,Natick - Bennett-Hemenway,01980005, 2.5, 11.6, 2.5, 77.4, 0.0, 0.2, 5.7, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,41.6,Natick - Brown,01980010, 0.8, 26.3, 8.4, 58.4, 0.4, 0.0, 5.7, 51.7, 48.3 -4.256880733944954,4.26,a-cure-i1,2017-18,5.8,21.799999999999997,Natick - J F Kennedy Middle School,01980305, 2.2, 10.6, 5.0, 78.2, 0.2, 0.0, 3.9, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,20.099999999999994,Natick - Johnson,01980031, 1.3, 4.4, 7.4, 79.9, 0.0, 0.0, 7.0, 58.1, 41.9 -1,1,a-cure-i1,2017-18,4.2,26.200000000000003,Natick - Lilja Elementary,01980035, 2.1, 10.2, 8.8, 73.8, 0.0, 0.0, 5.1, 47.1, 52.9 -1,1,a-cure-i1,2017-18,0.0,16.900000000000006,Natick - Memorial,01980043, 1.0, 5.6, 5.6, 83.1, 0.0, 0.0, 4.8, 53.0, 47.0 -4.413793103448277,4.41,a-cure-i1,2017-18,5.6000000000000005,20.299999999999997,Natick - Natick High,01980505, 3.2, 7.2, 5.7, 79.7, 0.0, 0.2, 4.0, 49.7, 50.3 -1,1,a-cure-i1,2017-18,0.6,22.5,Natick - Wilson Middle,01980310, 3.7, 5.8, 5.6, 77.5, 0.1, 0.1, 7.2, 51.1, 48.9 -1,1,a-cure-i1,2017-18,1.4,15.0,Nauset - Nauset Regional High,06600505, 5.2, 2.7, 3.5, 85.0, 0.2, 0.1, 3.3, 45.4, 54.6 -1,1,a-cure-i1,2017-18,2.7,14.299999999999997,Nauset - Nauset Regional Middle,06600305, 3.8, 2.5, 4.3, 85.7, 0.0, 0.2, 3.4, 51.3, 48.7 -1,1,a-cure-i1,2017-18,3.9,20.299999999999997,Needham - Broadmeadow,01990005, 1.3, 6.6, 6.4, 79.7, 0.0, 0.0, 5.9, 47.0, 53.0 -1,1,a-cure-i1,2017-18,3.4,24.700000000000003,Needham - High Rock School,01990410, 2.4, 10.0, 6.7, 75.3, 0.0, 0.0, 5.6, 49.1, 50.9 -1,1,a-cure-i1,2017-18,4.1,26.5,Needham - Hillside Elementary,01990035, 3.3, 10.7, 5.7, 73.5, 0.2, 0.0, 6.6, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,31.299999999999997,Needham - John Eliot,01990020, 6.9, 12.7, 7.9, 68.7, 0.0, 0.0, 3.8, 51.4, 48.6 -6.020618556701029,5,a-cure-i1,2017-18,7.3,19.400000000000006,Needham - Needham High,01990505, 2.9, 8.2, 4.9, 80.6, 0.0, 0.1, 3.3, 50.5, 49.4 -3.065134099616859,3.07,a-cure-i1,2017-18,5.0,26.099999999999994,Needham - Newman Elementary,01990050, 4.4, 9.3, 5.7, 73.9, 0.0, 0.1, 6.6, 51.3, 48.7 -1,1,a-cure-i1,2017-18,2.6,21.5,Needham - Pollard Middle,01990405, 1.9, 8.5, 5.5, 78.5, 0.2, 0.0, 5.4, 47.1, 52.9 -6.832432432432433,5,a-cure-i1,2017-18,7.9,18.5,Needham - William Mitchell,01990040, 1.4, 8.0, 4.4, 81.5, 0.0, 0.0, 4.6, 48.8, 51.2 -6.964467005076143,5,a-cure-i1,2017-18,34.300000000000004,78.8,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 52.9, 2.4, 17.1, 21.2, 0.8, 0.0, 5.6, 50.3, 49.7 -1,1,a-cure-i1,2017-18,2.7,50.1,New Bedford - Abraham Lincoln,02010095, 10.5, 0.4, 33.2, 49.9, 0.1, 0.1, 5.7, 51.6, 48.4 -1.2941176470588236,1.29,a-cure-i1,2017-18,6.6,81.6,New Bedford - Alfred J Gomes,02010063, 12.5, 0.4, 64.6, 18.4, 0.4, 0.0, 3.8, 52.1, 47.9 -2.0671834625322996,2.07,a-cure-i1,2017-18,5.0,38.7,New Bedford - Betsey B Winslow,02010140, 7.7, 3.2, 18.1, 61.3, 0.3, 0.3, 9.0, 49.7, 50.3 -1,1,a-cure-i1,2017-18,0.0,72.3,New Bedford - Carlos Pacheco,02010105, 18.4, 0.6, 50.3, 27.7, 0.3, 0.0, 2.8, 55.6, 44.4 -4.0,4.0,a-cure-i1,2017-18,7.5,30.0,New Bedford - Casimir Pulaski,02010123, 6.0, 1.1, 17.7, 70.0, 0.1, 0.0, 5.1, 57.4, 42.6 -1,1,a-cure-i1,2017-18,3.0,34.0,New Bedford - Charles S Ashley,02010010, 6.4, 0.7, 21.6, 66.0, 0.0, 0.0, 5.3, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,49.3,New Bedford - Elizabeth Carter Brooks,02010015, 9.7, 1.7, 31.5, 50.7, 1.3, 0.3, 4.7, 51.3, 48.7 -3.6047430830039526,3.6,a-cure-i1,2017-18,17.1,75.9,New Bedford - Ellen R Hathaway,02010075, 10.9, 1.3, 58.1, 24.1, 0.3, 0.0, 5.3, 51.5, 48.5 -2.0286298568507157,2.03,a-cure-i1,2017-18,6.2,48.9,New Bedford - Elwyn G Campbell,02010020, 6.2, 1.5, 34.3, 51.1, 0.4, 0.0, 6.6, 48.5, 51.5 -3.983849259757739,3.98,a-cure-i1,2017-18,18.5,74.3,New Bedford - Hayden/McFadden,02010078, 12.9, 0.1, 56.6, 25.7, 0.7, 0.0, 4.0, 52.3, 47.7 -2.5863013698630137,2.59,a-cure-i1,2017-18,11.8,73.0,New Bedford - Irwin M. Jacobs Elementary School,02010070, 12.2, 0.0, 56.5, 27.0, 0.6, 0.0, 3.8, 47.5, 52.5 -1,1,a-cure-i1,2017-18,0.0,63.1,New Bedford - James B Congdon,02010040, 13.7, 0.6, 40.2, 36.9, 0.6, 0.3, 7.7, 47.6, 52.4 -1,1,a-cure-i1,2017-18,0.0,27.0,New Bedford - Jireh Swift,02010130, 2.8, 1.9, 18.1, 73.0, 0.0, 0.0, 4.2, 47.9, 52.1 -1,1,a-cure-i1,2017-18,0.0,60.7,New Bedford - John Avery Parker,02010115, 15.8, 0.7, 35.1, 39.3, 0.4, 0.4, 8.4, 54.0, 46.0 -2.1903171953255423,2.19,a-cure-i1,2017-18,8.2,59.9,New Bedford - John B Devalles,02010050, 11.6, 0.8, 44.7, 40.1, 0.0, 0.0, 2.8, 50.4, 49.6 -4.1421319796954315,4.14,a-cure-i1,2017-18,15.3,59.1,New Bedford - Keith Middle School,02010405, 15.7, 1.1, 35.7, 40.9, 0.7, 0.2, 5.7, 51.2, 48.8 -2.928257686676427,2.93,a-cure-i1,2017-18,12.499999999999998,68.3,New Bedford - New Bedford High,02010505, 15.1, 1.3, 46.7, 31.7, 0.7, 0.3, 4.2, 54.1, 45.9 -1.9793814432989691,1.98,a-cure-i1,2017-18,6.0,48.5,New Bedford - Normandin Middle School,02010410, 6.7, 1.8, 34.4, 51.5, 0.3, 0.0, 5.3, 51.5, 48.5 -2.727056019070322,2.73,a-cure-i1,2017-18,14.3,83.9,New Bedford - Renaissance Community School for the Arts,02010124, 17.9, 0.0, 62.3, 16.1, 0.0, 0.0, 3.6, 44.8, 55.2 -3.117552334943639,3.12,a-cure-i1,2017-18,12.1,62.1,New Bedford - Roosevelt Middle School,02010415, 17.0, 0.4, 39.1, 37.9, 0.4, 0.2, 5.0, 52.0, 48.0 -2.350710900473934,2.35,a-cure-i1,2017-18,9.3,63.3,New Bedford - Sgt Wm H Carney Academy,02010045, 20.1, 0.8, 31.7, 36.7, 0.1, 0.0, 10.6, 56.6, 43.4 -1,1,a-cure-i1,2017-18,0.0,51.3,New Bedford - Thomas R Rodman,02010125, 5.6, 2.6, 40.5, 48.7, 0.0, 0.0, 2.6, 56.4, 43.6 -8.356275303643725,5,a-cure-i1,2017-18,25.8,49.4,New Bedford - Trinity Day Academy,02010510, 5.1, 0.0, 35.4, 50.6, 1.3, 1.3, 6.3, 60.8, 39.2 -5.457534246575342,5,a-cure-i1,2017-18,24.9,73.0,New Bedford - Whaling City Junior/Senior High School,02010515, 20.0, 0.0, 43.0, 27.0, 0.0, 0.0, 10.0, 68.0, 32.0 -1,1,a-cure-i1,2017-18,0.0,34.7,New Bedford - William H Taylor,02010135, 9.2, 0.0, 19.1, 65.3, 0.4, 0.0, 6.1, 50.0, 50.0 -4.3947100712105795,4.39,a-cure-i1,2017-18,27.0,98.3,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 88.4, 1.2, 8.1, 1.7, 0.2, 0.0, 0.5, 49.8, 50.2 -1,1,a-cure-i1,2017-18,4.2,12.5,New Salem-Wendell - Swift River,07280015, 0.0, 2.0, 5.3, 87.5, 0.0, 0.0, 5.3, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,6.200000000000003,Newburyport - Edward G. Molin Elementary School,02040030, 2.5, 1.2, 1.2, 93.8, 0.0, 0.0, 1.2, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,Newburyport - Francis T Bresnahan Elementary,02040005, 1.1, 2.0, 4.4, 90.7, 0.0, 0.0, 1.8, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,8.900000000000006,Newburyport - Newburyport High,02040505, 0.8, 1.8, 4.0, 91.1, 0.0, 0.0, 2.3, 46.5, 53.5 -16.457142857142856,5,a-cure-i1,2017-18,7.199999999999999,7.0,Newburyport - Rupert A Nock Middle,02040305, 0.7, 1.6, 2.9, 93.0, 0.0, 0.0, 1.8, 53.7, 46.3 -4.522968197879859,4.52,a-cure-i1,2017-18,8.0,28.299999999999997,Newton - A E Angier,02070005, 3.2, 14.3, 5.1, 71.7, 0.0, 0.0, 5.6, 47.3, 52.7 -4.272479564032698,4.27,a-cure-i1,2017-18,9.8,36.7,Newton - Bigelow Middle,02070305, 5.6, 15.2, 9.2, 63.3, 0.4, 0.0, 6.3, 47.2, 52.8 -13.730232558139534,5,a-cure-i1,2017-18,36.9,43.0,Newton - Bowen,02070015, 7.6, 25.4, 4.8, 57.0, 0.0, 0.0, 5.2, 52.5, 47.5 -7.6489607390300245,5,a-cure-i1,2017-18,20.700000000000003,43.3,Newton - C C Burr,02070020, 5.7, 20.2, 9.8, 56.7, 0.3, 0.0, 7.3, 49.5, 50.5 -7.057239057239056,5,a-cure-i1,2017-18,13.1,29.700000000000003,Newton - Cabot,02070025, 3.6, 12.8, 4.1, 70.3, 0.0, 0.0, 9.2, 47.3, 52.7 -2.860103626943005,2.86,a-cure-i1,2017-18,6.9,38.6,Newton - Charles E Brown Middle,02070310, 3.6, 22.0, 6.6, 61.4, 0.0, 0.0, 6.4, 52.9, 47.1 -1,1,a-cure-i1,2017-18,3.8,43.2,Newton - Countryside,02070040, 4.4, 21.7, 7.8, 56.8, 0.2, 0.0, 9.0, 48.3, 51.7 -3.9344262295081966,3.93,a-cure-i1,2017-18,9.0,36.6,Newton - F A Day Middle,02070315, 5.8, 14.8, 9.0, 63.4, 0.2, 0.0, 6.7, 55.1, 44.9 -2.928104575163399,2.93,a-cure-i1,2017-18,5.6,30.599999999999994,Newton - Franklin,02070055, 3.5, 12.2, 9.0, 69.4, 0.2, 0.2, 5.5, 44.5, 55.5 -7.94044665012407,5,a-cure-i1,2017-18,20.0,40.3,Newton - Horace Mann,02070075, 4.0, 19.1, 8.2, 59.7, 0.0, 0.0, 9.2, 55.9, 44.1 -1,1,a-cure-i1,2017-18,3.2,26.900000000000006,Newton - John Ward,02070120, 2.6, 12.3, 3.9, 73.1, 0.0, 0.0, 8.1, 49.5, 50.5 -2.6828282828282832,2.68,a-cure-i1,2017-18,8.3,49.5,Newton - Lincoln-Eliot,02070070, 9.4, 17.1, 16.3, 50.5, 0.0, 0.0, 6.7, 48.1, 51.6 -4.6412213740458,4.64,a-cure-i1,2017-18,7.6,26.200000000000003,Newton - Mason-Rice,02070080, 1.6, 13.7, 3.7, 73.8, 0.0, 0.0, 7.2, 52.5, 47.5 -5.821428571428572,5,a-cure-i1,2017-18,16.3,44.8,Newton - Memorial Spaulding,02070105, 4.0, 26.5, 8.6, 55.2, 0.0, 0.0, 5.7, 52.5, 47.5 -1.979035639412998,1.98,a-cure-i1,2017-18,5.9,47.7,Newton - Newton Early Childhood Center,02070108, 5.6, 21.8, 9.1, 52.3, 0.0, 0.0, 11.2, 64.5, 35.5 -7.542857142857143,5,a-cure-i1,2017-18,16.5,35.0,Newton - Newton North High,02070505, 5.9, 14.8, 8.9, 65.0, 0.3, 0.1, 4.9, 50.2, 49.6 -9.187675070028012,5,a-cure-i1,2017-18,20.500000000000004,35.7,Newton - Newton South High,02070510, 5.2, 19.9, 6.0, 64.3, 0.1, 0.0, 4.4, 51.3, 48.5 -7.2544080604534,5,a-cure-i1,2017-18,18.0,39.7,Newton - Oak Hill Middle,02070320, 4.4, 22.1, 5.2, 60.3, 0.2, 0.2, 7.7, 49.5, 50.5 -2.365914786967419,2.37,a-cure-i1,2017-18,5.9,39.9,Newton - Peirce,02070100, 4.3, 21.4, 7.2, 60.1, 0.0, 1.1, 5.8, 50.4, 49.6 -4.497297297297297,4.5,a-cure-i1,2017-18,10.399999999999999,37.0,Newton - Underwood,02070115, 3.2, 18.0, 11.3, 63.0, 0.4, 0.0, 4.2, 46.1, 53.9 -1.9914163090128754,1.99,a-cure-i1,2017-18,5.8,46.6,Newton - Williams,02070125, 4.1, 28.4, 8.8, 53.4, 0.3, 0.0, 5.1, 54.7, 45.3 -3.674641148325359,3.67,a-cure-i1,2017-18,9.6,41.8,Newton - Zervas,02070130, 4.9, 22.4, 6.4, 58.2, 0.2, 0.0, 7.9, 49.6, 50.1 -1,1,a-cure-i1,2017-18,0.0,10.400000000000006,Norfolk - Freeman-Kennedy School,02080005, 0.8, 2.0, 4.1, 89.6, 0.0, 0.0, 3.5, 55.0, 45.0 -1,1,a-cure-i1,2017-18,0.0,8.900000000000006,Norfolk - H Olive Day,02080015, 0.9, 3.0, 2.2, 91.1, 0.0, 0.0, 2.8, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,9.799999999999997,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.3, 1.5, 3.3, 90.2, 0.7, 0.0, 3.1, 30.7, 69.3 -1,1,a-cure-i1,2017-18,0.0,15.799999999999997,North Adams - Brayton,02090035, 3.5, 0.0, 6.2, 84.2, 0.0, 0.0, 6.2, 48.8, 51.2 -1,1,a-cure-i1,2017-18,0.0,16.900000000000006,North Adams - Colegrove Park Elementary,02090008, 3.9, 0.3, 6.4, 83.1, 0.6, 0.0, 5.8, 51.0, 49.0 -1,1,a-cure-i1,2017-18,2.5,15.700000000000003,North Adams - Drury High,02090505, 3.4, 0.0, 5.0, 84.3, 0.2, 0.0, 7.1, 46.2, 53.8 -1,1,a-cure-i1,2017-18,0.0,19.599999999999994,North Adams - Greylock,02090015, 1.7, 1.4, 8.4, 80.4, 0.0, 0.7, 7.4, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,21.099999999999994,North Andover - Annie L Sargent School,02110018, 2.1, 8.8, 5.2, 78.9, 0.5, 0.0, 4.5, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,40.7,North Andover - Atkinson,02110001, 4.8, 11.4, 20.1, 59.3, 0.5, 0.0, 3.9, 51.1, 48.9 -1,1,a-cure-i1,2017-18,0.0,27.0,North Andover - Franklin,02110010, 1.5, 14.6, 7.1, 73.0, 0.4, 0.0, 3.3, 56.2, 43.8 -1,1,a-cure-i1,2017-18,0.0,20.799999999999997,North Andover - Kittredge,02110015, 3.8, 5.2, 6.6, 79.2, 0.0, 0.3, 4.9, 56.6, 43.4 -1,1,a-cure-i1,2017-18,2.6,20.599999999999994,North Andover - North Andover High,02110505, 3.1, 6.8, 8.9, 79.4, 0.2, 0.4, 1.3, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,22.299999999999997,North Andover - North Andover Middle,02110305, 3.4, 7.2, 9.5, 77.7, 0.2, 0.1, 1.8, 51.2, 48.8 -1,1,a-cure-i1,2017-18,0.0,29.0,North Andover - Thomson,02110020, 2.3, 4.9, 17.1, 71.0, 0.0, 0.0, 4.6, 47.5, 52.5 -1,1,a-cure-i1,2017-18,0.0,25.599999999999994,North Attleborough - Amvet Boulevard,02120007, 3.3, 11.6, 5.8, 74.4, 0.5, 0.0, 4.5, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,27.200000000000003,North Attleborough - Community,02120030, 6.3, 3.8, 9.4, 72.8, 0.0, 0.0, 7.8, 57.2, 42.8 -1,1,a-cure-i1,2017-18,0.0,17.5,North Attleborough - Falls,02120010, 2.9, 5.1, 6.2, 82.5, 0.0, 0.4, 2.9, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,15.400000000000006,North Attleborough - Joseph W Martin Jr Elementary,02120013, 3.3, 4.4, 2.2, 84.6, 0.2, 0.2, 5.2, 50.5, 49.5 -1,1,a-cure-i1,2017-18,2.4,17.700000000000003,North Attleborough - North Attleboro High,02120505, 3.1, 6.1, 5.5, 82.3, 0.3, 0.1, 2.5, 49.5, 50.4 -1,1,a-cure-i1,2017-18,0.0,24.599999999999994,North Attleborough - North Attleborough Early Learning Center,02120020, 2.4, 11.9, 5.6, 75.4, 0.8, 0.8, 3.2, 62.7, 37.3 -1,1,a-cure-i1,2017-18,4.1,16.700000000000003,North Attleborough - North Attleborough Middle,02120305, 2.2, 6.3, 4.5, 83.3, 0.2, 0.1, 3.4, 51.3, 48.7 -5.7379310344827585,5,a-cure-i1,2017-18,5.2,14.5,North Attleborough - Roosevelt Avenue,02120015, 1.1, 6.4, 2.8, 85.5, 0.0, 0.0, 4.2, 44.9, 55.1 -1,1,a-cure-i1,2017-18,0.0,7.900000000000006,North Brookfield - North Brookfield Elementary,02150015, 0.9, 0.0, 3.9, 92.1, 0.0, 0.0, 3.0, 53.0, 47.0 -1,1,a-cure-i1,2017-18,0.0,10.099999999999994,North Brookfield - North Brookfield High,02150505, 0.9, 0.9, 5.3, 89.9, 0.0, 0.0, 3.1, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,3.299999999999997,North Middlesex - Ashby Elementary,07350010, 0.5, 0.0, 2.7, 96.7, 0.0, 0.0, 0.0, 57.6, 42.4 -1,1,a-cure-i1,2017-18,0.0,8.400000000000006,North Middlesex - Hawthorne Brook,07350030, 1.0, 1.2, 3.2, 91.6, 0.0, 0.2, 2.8, 49.4, 50.6 -1,1,a-cure-i1,2017-18,2.8,9.5,North Middlesex - Nissitissit Middle School,07350310, 1.5, 2.1, 3.6, 90.5, 0.0, 0.0, 2.3, 52.2, 47.8 -1,1,a-cure-i1,2017-18,1.8,8.799999999999997,North Middlesex - North Middlesex Regional,07350505, 1.3, 0.8, 3.0, 91.2, 0.3, 0.0, 3.5, 46.5, 53.5 -1,1,a-cure-i1,2017-18,0.0,5.599999999999994,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 94.4, 0.0, 0.0, 5.6, 61.1, 38.9 -1,1,a-cure-i1,2017-18,0.0,13.700000000000003,North Middlesex - Spaulding Memorial,07350005, 1.7, 1.9, 5.7, 86.3, 0.0, 0.0, 4.5, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,7.799999999999997,North Middlesex - Squannacook Early Childhood Center,07350002, 2.2, 1.1, 3.3, 92.2, 1.1, 0.0, 0.0, 60.0, 40.0 -1,1,a-cure-i1,2017-18,3.1,12.299999999999997,North Middlesex - Varnum Brook,07350035, 2.4, 0.4, 4.3, 87.7, 0.2, 0.0, 5.0, 53.4, 46.6 -1,1,a-cure-i1,2017-18,0.0,13.599999999999994,North Reading - E Ethel Little School,02170003, 1.2, 4.2, 3.6, 86.4, 0.0, 0.0, 4.5, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,11.299999999999997,North Reading - J Turner Hood,02170010, 0.6, 5.4, 2.4, 88.7, 0.0, 0.3, 2.7, 52.7, 47.3 -1,1,a-cure-i1,2017-18,0.0,12.900000000000006,North Reading - L D Batchelder,02170005, 0.2, 3.4, 5.6, 87.1, 0.0, 0.0, 3.7, 50.4, 49.6 -1,1,a-cure-i1,2017-18,4.0,7.400000000000006,North Reading - North Reading High,02170505, 0.6, 3.1, 2.1, 92.6, 0.0, 0.2, 1.4, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,10.900000000000006,North Reading - North Reading Middle,02170305, 0.5, 3.6, 2.9, 89.1, 0.0, 0.2, 3.6, 48.9, 51.1 -3.6170212765957444,3.62,a-cure-i1,2017-18,8.5,37.6,Northampton - Bridge Street,02100005, 2.6, 5.1, 21.9, 62.4, 0.4, 0.0, 7.7, 54.0, 46.0 -5.9749373433583965,5,a-cure-i1,2017-18,14.9,39.9,Northampton - Jackson Street,02100020, 5.6, 8.1, 17.6, 60.1, 0.0, 0.0, 8.7, 43.3, 56.7 -1,1,a-cure-i1,2017-18,2.0,29.400000000000006,Northampton - John F Kennedy Middle School,02100410, 1.8, 2.9, 17.7, 70.6, 0.5, 0.0, 6.5, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,25.5,Northampton - Leeds,02100025, 0.9, 2.2, 14.3, 74.5, 0.0, 0.0, 8.1, 53.3, 46.7 -1,1,a-cure-i1,2017-18,3.9,24.400000000000006,Northampton - Northampton High,02100505, 3.0, 4.3, 12.9, 75.6, 0.1, 0.0, 4.1, 48.6, 51.4 -1,1,a-cure-i1,2017-18,0.0,24.900000000000006,Northampton - R. K. Finn Ryan Road,02100029, 1.4, 3.6, 15.4, 75.1, 0.0, 0.0, 4.5, 53.4, 46.6 -1,1,a-cure-i1,2017-18,0.0,19.299999999999997,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.2, 0.8, 15.5, 80.7, 0.0, 0.0, 1.8, 58.0, 42.0 -1,1,a-cure-i1,2017-18,2.4,20.900000000000006,Northboro-Southboro - Algonquin Regional High,07300505, 1.2, 10.7, 5.6, 79.1, 0.3, 0.2, 2.9, 48.3, 51.7 -1,1,a-cure-i1,2017-18,0.0,32.900000000000006,Northborough - Fannie E Proctor,02130015, 3.6, 11.2, 14.5, 67.1, 0.0, 0.4, 3.2, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,22.400000000000006,Northborough - Lincoln Street,02130003, 1.6, 14.1, 0.8, 77.6, 1.2, 0.8, 3.9, 46.7, 53.3 -1,1,a-cure-i1,2017-18,0.0,28.400000000000006,Northborough - Marguerite E Peaslee,02130014, 0.4, 13.5, 10.2, 71.6, 0.0, 0.4, 4.0, 55.6, 44.4 -1,1,a-cure-i1,2017-18,0.0,28.0,Northborough - Marion E Zeh,02130020, 1.2, 16.5, 7.0, 72.0, 0.0, 0.0, 3.3, 54.7, 45.3 -1,1,a-cure-i1,2017-18,1.3,23.200000000000003,Northborough - Robert E. Melican Middle School,02130305, 2.2, 9.3, 5.6, 76.8, 0.5, 1.1, 4.5, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,17.400000000000006,Northbridge - Northbridge Elementary,02140005, 0.0, 1.1, 11.1, 82.6, 0.5, 0.0, 4.7, 56.8, 43.2 -1,1,a-cure-i1,2017-18,0.0,11.099999999999994,Northbridge - Northbridge High,02140505, 0.5, 0.9, 7.1, 88.9, 0.0, 0.2, 2.5, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,13.099999999999994,Northbridge - Northbridge Middle,02140305, 1.0, 1.0, 6.5, 86.9, 0.0, 0.1, 4.6, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,13.5,Northbridge - W Edward Balmer,02140001, 0.4, 0.4, 8.5, 86.5, 0.0, 0.0, 4.2, 48.7, 51.3 -2.323287671232877,2.32,a-cure-i1,2017-18,5.300000000000001,36.5,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.7, 1.4, 30.3, 63.5, 0.0, 0.2, 1.9, 53.5, 46.5 -1,1,a-cure-i1,2017-18,0.0,5.900000000000006,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.8, 0.0, 1.6, 94.1, 0.2, 0.0, 3.3, 62.9, 37.1 -1,1,a-cure-i1,2017-18,0.0,13.200000000000003,Norton - Henri A. Yelle,02180060, 2.0, 2.8, 3.3, 86.8, 0.0, 0.0, 5.1, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,11.700000000000003,Norton - J C Solmonese,02180015, 0.9, 1.1, 3.2, 88.3, 0.6, 0.0, 5.8, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,15.099999999999994,Norton - L G Nourse Elementary,02180010, 3.2, 2.1, 6.3, 84.9, 0.0, 0.0, 3.5, 51.9, 48.1 -1,1,a-cure-i1,2017-18,4.6,7.900000000000006,Norton - Norton High,02180505, 1.9, 2.2, 2.3, 92.1, 0.0, 0.3, 1.3, 53.0, 47.0 -1,1,a-cure-i1,2017-18,0.0,11.599999999999994,Norton - Norton Middle,02180305, 2.0, 1.9, 3.7, 88.4, 0.2, 0.0, 3.7, 47.2, 52.8 -1,1,a-cure-i1,2017-18,0.0,6.900000000000006,Norwell - Grace Farrar Cole,02190005, 0.6, 1.7, 1.5, 93.1, 0.2, 0.0, 2.9, 58.2, 41.8 -1,1,a-cure-i1,2017-18,0.0,6.299999999999997,Norwell - Norwell High,02190505, 0.4, 1.7, 2.2, 93.7, 0.0, 0.3, 1.7, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,7.5,Norwell - Norwell Middle School,02190405, 0.6, 3.0, 1.8, 92.5, 0.0, 0.2, 2.0, 48.3, 51.7 -1,1,a-cure-i1,2017-18,3.9,6.200000000000003,Norwell - William G Vinal,02190020, 0.2, 1.7, 1.2, 93.8, 0.0, 0.2, 2.9, 53.4, 46.6 -3.533333333333333,3.53,a-cure-i1,2017-18,10.6,48.0,Norwood - Balch,02200005, 11.1, 3.7, 30.4, 52.0, 0.0, 0.0, 2.7, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,39.4,Norwood - Charles J Prescott,02200025, 6.0, 25.7, 4.0, 60.6, 0.0, 0.0, 3.6, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,29.200000000000003,Norwood - Cornelius M Callahan,02200010, 9.6, 5.5, 8.7, 70.8, 0.0, 0.0, 5.5, 52.5, 47.5 -1,1,a-cure-i1,2017-18,1.9,31.5,Norwood - Dr. Philip O. Coakley Middle School,02200305, 11.9, 5.2, 12.2, 68.5, 0.0, 0.1, 2.0, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,25.299999999999997,Norwood - F A Cleveland,02200015, 6.7, 9.8, 6.1, 74.7, 0.0, 0.6, 2.1, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,37.5,Norwood - George F. Willett,02200075, 8.5, 14.4, 11.3, 62.5, 0.0, 1.5, 1.8, 51.7, 48.3 -1,1,a-cure-i1,2017-18,0.0,27.299999999999997,Norwood - John P Oldham,02200020, 12.8, 5.7, 8.4, 72.7, 0.0, 0.0, 0.4, 47.1, 52.9 -1,1,a-cure-i1,2017-18,3.0,29.900000000000006,Norwood - Norwood High,02200505, 12.0, 4.3, 11.0, 70.1, 0.0, 0.0, 2.6, 51.0, 49.0 -1,1,a-cure-i1,2017-18,2.7,39.2,Oak Bluffs - Oak Bluffs Elementary,02210005, 4.9, 1.6, 23.7, 60.8, 1.6, 0.5, 6.8, 49.3, 50.7 -1,1,a-cure-i1,2017-18,1.9,5.900000000000006,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 1.9, 0.7, 1.9, 94.1, 0.2, 0.0, 1.3, 63.4, 36.6 -1,1,a-cure-i1,2017-18,2.2,8.5,Old Rochester - Old Rochester Regional High,07400505, 2.2, 2.4, 1.2, 91.5, 0.1, 0.0, 2.6, 47.6, 52.4 -1,1,a-cure-i1,2017-18,0.0,8.599999999999994,Old Rochester - Old Rochester Regional Jr High,07400405, 1.5, 1.5, 1.9, 91.4, 0.0, 0.0, 3.8, 53.9, 46.1 -9.281767955801108,5,a-cure-i1,2017-18,10.5,18.099999999999994,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 6.9, 0.6, 10.6, 81.9, 0.0, 0.0, 0.0, 53.8, 46.3 -1,1,a-cure-i1,2017-18,0.0,11.799999999999997,Orange - Dexter Park,02230010, 1.0, 0.6, 6.7, 88.2, 0.0, 0.0, 3.5, 57.8, 42.2 -1,1,a-cure-i1,2017-18,0.0,14.0,Orange - Fisher Hill,02230015, 1.8, 0.4, 8.6, 86.0, 0.7, 0.0, 2.5, 51.3, 48.7 -1,1,a-cure-i1,2017-18,0.0,12.599999999999994,Orleans - Orleans Elementary,02240005, 3.1, 2.2, 5.8, 87.4, 0.0, 0.0, 1.3, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.0,18.0,Oxford - Alfred M Chaffee,02260010, 1.7, 0.7, 10.7, 82.0, 0.3, 0.0, 4.5, 55.0, 45.0 -1,1,a-cure-i1,2017-18,0.0,17.799999999999997,Oxford - Clara Barton,02260005, 2.6, 0.5, 9.4, 82.2, 0.0, 0.0, 5.2, 53.5, 46.5 -1,1,a-cure-i1,2017-18,0.0,21.0,Oxford - Oxford High,02260505, 3.1, 2.2, 10.1, 79.0, 0.6, 0.4, 4.6, 46.8, 53.2 -1,1,a-cure-i1,2017-18,3.9,19.900000000000006,Oxford - Oxford Middle,02260405, 1.8, 1.6, 11.7, 80.1, 0.0, 0.0, 4.7, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,22.200000000000003,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 18.5, 77.8, 0.0, 0.0, 3.7, 88.9, 11.1 -1,1,a-cure-i1,2017-18,3.7,24.5,Palmer - Old Mill Pond,02270008, 3.3, 2.6, 13.5, 75.5, 0.0, 0.0, 4.9, 48.5, 51.5 -1,1,a-cure-i1,2017-18,0.0,17.400000000000006,Palmer - Palmer High,02270505, 2.7, 2.2, 8.7, 82.6, 0.0, 0.1, 3.6, 51.5, 48.5 -1,1,a-cure-i1,2017-18,1.6,10.099999999999994,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.5, 0.7, 5.5, 89.9, 0.2, 0.0, 3.3, 62.4, 37.6 -9.494130202774814,5,a-cure-i1,2017-18,55.6,93.7,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 3.7, 0.0, 89.6, 6.3, 0.0, 0.4, 0.0, 45.2, 54.8 -1,1,a-cure-i1,2017-18,0.0,19.799999999999997,Peabody - Captain Samuel Brown,02290005, 2.0, 1.4, 14.5, 80.2, 0.0, 0.0, 2.0, 55.6, 44.4 -1,1,a-cure-i1,2017-18,0.0,23.599999999999994,Peabody - Center,02290015, 8.1, 2.3, 11.7, 76.4, 0.0, 0.0, 1.5, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,22.700000000000003,Peabody - J Henry Higgins Middle,02290305, 3.9, 1.8, 15.4, 77.3, 0.0, 0.0, 1.7, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,11.099999999999994,Peabody - John E Burke,02290007, 1.1, 1.1, 5.7, 88.9, 0.0, 0.0, 3.1, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,16.900000000000006,Peabody - John E. McCarthy,02290016, 2.0, 2.0, 9.9, 83.1, 0.0, 0.0, 3.1, 57.6, 42.4 -1,1,a-cure-i1,2017-18,1.6,23.5,Peabody - Peabody Veterans Memorial High,02290510, 3.4, 2.2, 15.9, 76.5, 0.0, 0.0, 2.0, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,13.299999999999997,Peabody - South Memorial,02290035, 2.8, 2.1, 6.0, 86.7, 0.0, 0.0, 2.4, 44.1, 55.9 -1,1,a-cure-i1,2017-18,0.0,23.799999999999997,Peabody - Thomas Carroll,02290010, 5.1, 0.8, 16.5, 76.2, 0.0, 0.0, 1.3, 47.4, 52.6 -1,1,a-cure-i1,2017-18,0.0,6.900000000000006,Peabody - West Memorial,02290045, 1.2, 0.8, 4.0, 93.1, 0.0, 0.0, 0.8, 55.6, 44.4 -1,1,a-cure-i1,2017-18,0.0,35.0,Peabody - William A Welch Sr,02290027, 4.2, 1.4, 27.2, 65.0, 0.0, 0.0, 2.2, 51.1, 48.9 -10.519337016574589,5,a-cure-i1,2017-18,11.9,18.099999999999994,Pelham - Pelham Elementary,02300005, 0.8, 3.9, 9.4, 81.9, 0.0, 0.0, 3.9, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.0,4.799999999999997,Pembroke - Bryantville Elementary,02310003, 0.4, 0.6, 0.0, 95.2, 0.2, 0.2, 3.4, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,1.9000000000000057,Pembroke - Hobomock Elementary,02310010, 0.7, 0.5, 0.2, 98.1, 0.0, 0.0, 0.5, 56.5, 43.5 -1,1,a-cure-i1,2017-18,0.0,5.099999999999994,Pembroke - North Pembroke Elementary,02310015, 0.7, 0.9, 0.5, 94.9, 0.2, 0.0, 2.7, 53.2, 46.6 -1,1,a-cure-i1,2017-18,0.0,3.4000000000000057,Pembroke - Pembroke Community Middle School,02310305, 0.6, 1.4, 0.8, 96.6, 0.0, 0.0, 0.6, 49.4, 50.6 -1,1,a-cure-i1,2017-18,0.0,3.4000000000000057,Pembroke - Pembroke High School,02310505, 1.0, 1.1, 0.4, 96.6, 0.0, 0.3, 0.5, 49.6, 50.1 -1,1,a-cure-i1,2017-18,0.0,12.799999999999997,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 10.1, 87.2, 0.0, 0.0, 2.8, 53.7, 46.3 -1,1,a-cure-i1,2017-18,1.5,7.0,Pentucket - Dr John C Page School,07450015, 0.3, 2.9, 1.8, 93.0, 0.0, 0.0, 2.1, 50.7, 49.3 -1,1,a-cure-i1,2017-18,1.1,7.700000000000003,Pentucket - Elmer S Bagnall,07450005, 0.6, 0.4, 4.6, 92.3, 0.0, 0.0, 2.2, 55.8, 44.2 -1,1,a-cure-i1,2017-18,2.1,9.5,Pentucket - Helen R Donaghue School,07450010, 0.4, 0.8, 6.2, 90.5, 0.0, 0.0, 2.1, 50.2, 49.8 -1,1,a-cure-i1,2017-18,0.0,6.400000000000006,Pentucket - Pentucket Regional Middle,07450405, 0.2, 2.1, 2.8, 93.6, 0.0, 0.0, 1.2, 56.6, 43.4 -1,1,a-cure-i1,2017-18,0.6,5.900000000000006,Pentucket - Pentucket Regional Sr High,07450505, 0.7, 2.0, 2.6, 94.1, 0.0, 0.0, 0.7, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,9.5,Petersham - Petersham Center,02340005, 0.0, 0.9, 4.3, 90.5, 0.0, 0.0, 4.3, 51.7, 48.3 -10.343096234309623,5,a-cure-i1,2017-18,61.8,95.6,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 24.1, 1.5, 64.0, 4.4, 0.5, 0.0, 5.4, 52.2, 47.8 -6.440894568690095,5,a-cure-i1,2017-18,37.8,93.9,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 13.7, 1.0, 78.7, 6.1, 0.5, 0.0, 0.0, 54.3, 45.7 -3.0420899854862116,3.04,a-cure-i1,2017-18,13.1,68.9,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 28.0, 8.8, 29.6, 31.1, 1.6, 0.1, 0.6, 47.8, 52.2 -8.130790190735693,5,a-cure-i1,2017-18,37.3,73.4,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 33.3, 14.3, 23.5, 26.6, 0.3, 0.0, 2.0, 46.8, 53.2 -1,1,a-cure-i1,2017-18,0.0,5.099999999999994,Pioneer Valley - Bernardston Elementary,07500006, 0.6, 0.0, 0.0, 94.9, 0.0, 0.0, 4.5, 47.1, 52.9 -1,1,a-cure-i1,2017-18,0.0,5.900000000000006,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 2.2, 94.1, 0.0, 0.0, 3.8, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,12.099999999999994,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 12.1, 87.9, 0.0, 0.0, 0.0, 42.4, 57.6 -1,1,a-cure-i1,2017-18,0.0,6.700000000000003,Pioneer Valley - Pioneer Valley Regional,07500505, 1.1, 0.8, 1.4, 93.3, 0.3, 0.0, 3.1, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,13.599999999999994,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 5.1, 86.4, 0.0, 0.0, 8.5, 55.9, 44.1 -14.145454545454545,5,a-cure-i1,2017-18,38.9,44.0,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 7.3, 18.1, 5.5, 56.0, 0.0, 0.0, 13.2, 46.7, 53.1 -9.932721712538227,5,a-cure-i1,2017-18,20.3,32.7,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 9.5, 2.2, 14.2, 67.3, 0.2, 0.0, 6.5, 30.9, 68.8 -1,1,a-cure-i1,2017-18,4.7,35.099999999999994,Pittsfield - Allendale,02360010, 8.3, 2.1, 12.2, 64.9, 0.7, 0.0, 11.8, 50.3, 49.7 -1,1,a-cure-i1,2017-18,3.0,46.2,Pittsfield - Crosby,02360065, 13.2, 0.9, 19.5, 53.8, 0.9, 0.0, 11.7, 59.6, 40.4 -1,1,a-cure-i1,2017-18,3.4,24.799999999999997,Pittsfield - Egremont,02360035, 7.3, 0.9, 10.4, 75.2, 0.0, 0.0, 6.1, 49.9, 50.1 -3.023255813953488,3.02,a-cure-i1,2017-18,6.5,34.400000000000006,Pittsfield - John T Reid Middle,02360305, 11.3, 0.9, 12.0, 65.6, 0.4, 0.2, 9.6, 49.5, 50.5 -1,1,a-cure-i1,2017-18,0.0,48.1,Pittsfield - Morningside Community School,02360055, 13.7, 0.5, 21.4, 51.9, 0.3, 0.0, 12.1, 50.1, 49.9 -3.0501672240802664,3.05,a-cure-i1,2017-18,5.699999999999999,29.900000000000006,Pittsfield - Pittsfield High,02360505, 10.7, 2.0, 12.6, 70.1, 0.1, 0.0, 4.6, 51.1, 48.8 -1,1,a-cure-i1,2017-18,0.0,21.799999999999997,Pittsfield - Robert T. Capeless Elementary School,02360045, 3.7, 0.0, 7.9, 78.2, 0.0, 0.0, 10.2, 45.4, 54.6 -1,1,a-cure-i1,2017-18,0.0,59.9,Pittsfield - Silvio O Conte Community,02360105, 18.5, 1.1, 24.3, 40.1, 0.8, 0.0, 15.2, 49.7, 50.3 -1,1,a-cure-i1,2017-18,0.0,19.599999999999994,Pittsfield - Stearns,02360090, 2.4, 1.6, 8.6, 80.4, 0.0, 0.0, 6.9, 54.7, 45.3 -2.56,2.56,a-cure-i1,2017-18,5.2,32.5,Pittsfield - Taconic High,02360510, 13.2, 1.1, 10.2, 67.5, 0.1, 0.0, 7.8, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.8,30.900000000000006,Pittsfield - Theodore Herberg Middle,02360310, 10.7, 1.2, 11.5, 69.1, 0.0, 0.0, 7.5, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,22.599999999999994,Pittsfield - Williams,02360100, 5.0, 4.4, 5.3, 77.4, 0.0, 0.6, 7.2, 51.7, 48.3 -1,1,a-cure-i1,2017-18,2.5,14.599999999999994,Plainville - Anna Ware Jackson,02380010, 3.2, 4.7, 5.0, 85.4, 0.0, 0.0, 1.7, 53.8, 46.2 -1,1,a-cure-i1,2017-18,2.3,17.200000000000003,Plainville - Beatrice H Wood Elementary,02380005, 2.0, 4.6, 8.3, 82.8, 1.0, 0.0, 1.3, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,21.599999999999994,Plymouth - Cold Spring,02390005, 1.2, 2.7, 12.5, 78.4, 0.0, 0.0, 5.1, 46.7, 53.3 -1,1,a-cure-i1,2017-18,0.0,17.900000000000006,Plymouth - Federal Furnace School,02390011, 6.5, 0.5, 6.7, 82.1, 0.0, 0.0, 4.1, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,24.700000000000003,Plymouth - Hedge,02390010, 3.2, 3.2, 7.8, 75.3, 0.0, 0.0, 10.4, 58.4, 41.6 -13.373134328358203,5,a-cure-i1,2017-18,5.6,6.700000000000003,Plymouth - Indian Brook,02390012, 1.4, 0.0, 2.6, 93.3, 0.0, 0.0, 2.6, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,8.400000000000006,Plymouth - Manomet Elementary,02390015, 0.7, 0.0, 3.5, 91.6, 0.0, 0.0, 4.2, 48.4, 51.6 -1,1,a-cure-i1,2017-18,3.5,11.700000000000003,Plymouth - Nathaniel Morton Elementary,02390030, 0.9, 1.1, 4.2, 88.3, 0.2, 0.0, 5.3, 51.7, 48.3 -1,1,a-cure-i1,2017-18,3.3,13.299999999999997,Plymouth - Plymouth Commun Intermediate,02390405, 2.3, 2.1, 5.0, 86.7, 0.2, 0.0, 3.8, 55.4, 44.5 -1,1,a-cure-i1,2017-18,0.0,13.599999999999994,Plymouth - Plymouth Early Childhood Center,02390003, 2.9, 1.4, 2.1, 86.4, 0.0, 0.0, 7.1, 50.0, 50.0 -1,1,a-cure-i1,2017-18,2.0,14.400000000000006,Plymouth - Plymouth North High,02390505, 2.7, 1.7, 6.1, 85.6, 0.2, 0.1, 3.7, 49.5, 50.5 -1,1,a-cure-i1,2017-18,2.4,9.700000000000003,Plymouth - Plymouth South High,02390515, 1.6, 1.5, 2.6, 90.3, 0.4, 0.1, 3.6, 53.0, 47.0 -1,1,a-cure-i1,2017-18,2.0,7.700000000000003,Plymouth - Plymouth South Middle,02390305, 0.6, 0.8, 2.3, 92.3, 0.4, 0.0, 3.6, 52.3, 47.7 -1,1,a-cure-i1,2017-18,2.9,12.299999999999997,Plymouth - South Elementary,02390046, 1.2, 0.3, 4.7, 87.7, 0.5, 0.2, 5.4, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,16.799999999999997,Plymouth - West Elementary,02390047, 2.5, 1.3, 8.6, 83.2, 0.0, 0.0, 4.3, 52.3, 47.7 -1,1,a-cure-i1,2017-18,0.0,4.799999999999997,Plympton - Dennett Elementary,02400010, 0.0, 0.5, 1.9, 95.2, 0.5, 0.0, 1.9, 50.2, 49.8 -5.875288683602772,5,a-cure-i1,2017-18,31.8,86.6,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 54.7, 7.8, 20.7, 13.4, 0.4, 0.2, 2.8, 51.2, 48.8 -2.186335403726708,2.19,a-cure-i1,2017-18,6.6,48.3,Provincetown - Provincetown Schools,02420020, 25.8, 0.0, 15.0, 51.7, 0.0, 0.0, 7.5, 49.2, 50.8 -11.038759689922475,5,a-cure-i1,2017-18,8.9,12.900000000000006,Quabbin - Hardwick Elementary,07530005, 0.5, 0.0, 9.8, 87.1, 1.5, 0.0, 1.0, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.0,5.599999999999994,Quabbin - Hubbardston Center,07530010, 0.9, 0.9, 3.4, 94.4, 0.0, 0.0, 0.3, 49.2, 50.8 -19.42857142857142,5,a-cure-i1,2017-18,18.7,15.400000000000006,Quabbin - IB School of Quabbin,07530515, 7.7, 0.0, 7.7, 84.6, 0.0, 0.0, 0.0, 23.1, 76.9 -1,1,a-cure-i1,2017-18,0.0,11.099999999999994,Quabbin - New Braintree Grade,07530020, 1.9, 0.0, 7.4, 88.9, 0.0, 0.0, 1.9, 59.3, 40.7 -1,1,a-cure-i1,2017-18,0.0,6.200000000000003,Quabbin - Oakham Center,07530025, 1.6, 0.0, 3.9, 93.8, 0.0, 0.0, 0.8, 41.1, 58.9 -11.744680851063823,5,a-cure-i1,2017-18,6.9,9.400000000000006,Quabbin - Quabbin Regional High School,07530505, 0.6, 0.9, 4.0, 90.6, 0.0, 0.0, 4.0, 46.6, 53.4 -1,1,a-cure-i1,2017-18,0.0,7.799999999999997,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.5, 4.8, 92.2, 0.0, 0.0, 2.5, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,8.0,Quabbin - Ruggles Lane,07530030, 0.0, 0.9, 5.0, 92.0, 0.0, 0.4, 1.7, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,9.5,Quaboag Regional - Quaboag Regional High,07780505, 1.4, 0.0, 6.5, 90.5, 0.0, 0.0, 1.6, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,13.099999999999994,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.4, 9.7, 86.9, 0.0, 0.0, 3.0, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,10.599999999999994,Quaboag Regional - Warren Elementary,07780005, 1.1, 0.0, 6.7, 89.4, 0.0, 0.0, 2.7, 50.1, 49.9 -1,1,a-cure-i1,2017-18,0.0,9.5,Quaboag Regional - West Brookfield Elementary,07780010, 0.3, 0.3, 4.9, 90.5, 0.0, 0.0, 3.9, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,64.2,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 7.8, 44.6, 8.3, 35.8, 0.0, 0.0, 3.6, 55.4, 44.6 -1,1,a-cure-i1,2017-18,4.4,24.299999999999997,Quincy - Atherton Hough,02430040, 3.6, 12.0, 6.0, 75.7, 0.0, 0.0, 2.8, 56.2, 43.8 -2.369426751592357,2.37,a-cure-i1,2017-18,9.3,62.8,Quincy - Atlantic Middle,02430305, 4.0, 50.7, 3.0, 37.2, 0.0, 0.4, 4.6, 51.1, 48.9 -1,1,a-cure-i1,2017-18,4.1,48.7,Quincy - Beechwood Knoll Elementary,02430020, 1.1, 44.2, 1.4, 51.3, 0.0, 0.0, 2.0, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,34.599999999999994,Quincy - Broad Meadows Middle,02430310, 7.1, 16.5, 7.1, 65.4, 0.8, 0.3, 2.9, 54.2, 45.8 -1,1,a-cure-i1,2017-18,0.0,48.1,Quincy - Central Middle,02430315, 2.4, 39.7, 3.0, 51.9, 0.0, 0.3, 2.7, 50.0, 50.0 -1,1,a-cure-i1,2017-18,3.8,42.4,Quincy - Charles A Bernazzani Elementary,02430025, 3.0, 28.8, 5.2, 57.6, 0.0, 0.0, 5.5, 48.2, 51.8 -1,1,a-cure-i1,2017-18,0.0,69.2,Quincy - Clifford H Marshall Elementary,02430055, 12.2, 45.1, 8.1, 30.8, 0.0, 1.8, 1.9, 50.6, 49.4 -4.082474226804124,4.08,a-cure-i1,2017-18,19.8,77.6,Quincy - Francis W Parker,02430075, 2.9, 68.7, 4.5, 22.4, 0.0, 0.3, 1.3, 59.4, 40.6 -1,1,a-cure-i1,2017-18,0.0,62.1,Quincy - Lincoln-Hancock Community School,02430035, 12.8, 33.7, 8.9, 37.9, 0.4, 0.6, 5.8, 52.6, 47.4 -1,1,a-cure-i1,2017-18,4.6,36.9,Quincy - Merrymount,02430060, 5.8, 24.2, 4.3, 63.1, 0.3, 0.9, 1.4, 51.9, 48.1 -1,1,a-cure-i1,2017-18,3.2,73.1,Quincy - Montclair,02430065, 3.9, 61.4, 4.4, 26.9, 0.0, 0.5, 2.9, 48.1, 51.9 -2.5224111282843893,2.52,a-cure-i1,2017-18,10.2,64.7,Quincy - North Quincy High,02430510, 2.8, 57.2, 3.3, 35.3, 0.4, 0.0, 1.0, 51.2, 48.8 -1,1,a-cure-i1,2017-18,3.7,61.8,Quincy - Point Webster Middle,02430325, 11.8, 36.5, 9.3, 38.2, 0.3, 0.3, 3.7, 51.7, 48.3 -3.1925754060324825,3.19,a-cure-i1,2017-18,8.6,43.1,Quincy - Quincy High,02430505, 10.1, 21.9, 7.1, 56.9, 0.3, 0.5, 3.2, 52.5, 47.4 -1,1,a-cure-i1,2017-18,3.8,57.5,Quincy - Reay E Sterling Middle,02430320, 13.0, 26.5, 12.4, 42.5, 0.3, 0.6, 4.7, 54.7, 45.3 -1,1,a-cure-i1,2017-18,0.0,61.4,Quincy - Snug Harbor Community School,02430090, 10.6, 38.1, 8.8, 38.6, 0.0, 0.0, 3.9, 56.0, 44.0 -1,1,a-cure-i1,2017-18,2.4,43.5,Quincy - Squantum,02430095, 3.5, 31.0, 5.2, 56.5, 0.0, 0.0, 3.8, 49.9, 50.1 -1,1,a-cure-i1,2017-18,1.7,66.7,Quincy - Wollaston School,02430110, 0.9, 62.5, 1.8, 33.3, 0.0, 0.3, 1.2, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,16.700000000000003,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 5.6, 5.6, 83.3, 0.0, 0.0, 5.6, 27.8, 72.2 -7.146666666666666,5,a-cure-i1,2017-18,6.699999999999999,15.0,Ralph C Mahar - Ralph C Mahar Regional,07550505, 2.2, 1.6, 7.5, 85.0, 0.0, 0.0, 3.7, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,24.099999999999994,Ralph C Mahar - The Gateway to College,07550525, 1.2, 1.2, 18.1, 75.9, 0.0, 0.0, 3.6, 38.6, 61.4 -1,1,a-cure-i1,2017-18,0.0,79.9,Randolph - Elizabeth G Lyons Elementary,02440020, 43.3, 12.8, 15.1, 20.1, 0.7, 0.0, 8.1, 56.0, 44.0 -1,1,a-cure-i1,2017-18,2.9,88.8,Randolph - J F Kennedy Elementary,02440018, 52.3, 13.1, 15.7, 11.2, 0.6, 0.9, 6.2, 53.3, 46.7 -3.9862227324913895,3.99,a-cure-i1,2017-18,21.7,87.1,Randolph - Margaret L Donovan,02440015, 45.7, 24.2, 11.5, 12.9, 0.2, 0.0, 5.4, 52.3, 47.7 -1.5357142857142858,1.54,a-cure-i1,2017-18,8.6,89.6,Randolph - Martin E Young Elementary,02440040, 47.1, 16.9, 20.8, 10.4, 0.0, 0.0, 4.9, 55.2, 44.8 -6.616113744075829,5,a-cure-i1,2017-18,34.9,84.4,Randolph - Randolph Community Middle,02440410, 51.3, 14.8, 12.8, 15.6, 0.2, 0.2, 5.1, 53.0, 47.0 -5.006564551422319,5,a-cure-i1,2017-18,28.6,91.4,Randolph - Randolph High,02440505, 54.8, 18.8, 12.7, 8.6, 0.6, 0.4, 4.1, 56.5, 43.5 -1,1,a-cure-i1,2017-18,3.0,10.599999999999994,Reading - Alice M Barrows,02460002, 1.6, 4.2, 1.6, 89.4, 0.0, 0.0, 3.2, 50.1, 49.9 -1,1,a-cure-i1,2017-18,3.6,11.299999999999997,Reading - Arthur W Coolidge Middle,02460305, 1.9, 4.6, 2.5, 88.7, 0.0, 0.2, 2.1, 54.0, 46.0 -1,1,a-cure-i1,2017-18,0.0,8.400000000000006,Reading - Birch Meadow,02460005, 1.1, 3.8, 0.8, 91.6, 0.0, 0.0, 2.7, 56.2, 43.8 -1,1,a-cure-i1,2017-18,0.0,13.099999999999994,Reading - J Warren Killam,02460017, 3.3, 6.9, 1.2, 86.9, 0.0, 0.0, 1.7, 55.7, 44.3 -4.666666666666668,4.67,a-cure-i1,2017-18,6.3,21.599999999999994,Reading - Joshua Eaton,02460010, 4.9, 6.2, 5.2, 78.4, 0.3, 0.0, 5.2, 50.5, 49.5 -1,1,a-cure-i1,2017-18,1.5,10.299999999999997,Reading - Reading Memorial High,02460505, 2.6, 4.7, 1.8, 89.7, 0.2, 0.0, 1.0, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,19.099999999999994,Reading - RISE PreSchool,02460001, 2.1, 7.4, 7.4, 80.9, 0.0, 0.0, 2.1, 62.8, 37.2 -1,1,a-cure-i1,2017-18,2.8,14.400000000000006,Reading - Walter S Parker Middle,02460310, 3.0, 6.6, 2.7, 85.6, 0.2, 0.0, 2.0, 50.3, 49.7 -1,1,a-cure-i1,2017-18,0.0,10.700000000000003,Reading - Wood End Elementary School,02460020, 2.4, 3.4, 2.8, 89.3, 0.0, 0.0, 2.1, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,54.2,Revere - A. C. Whelan Elementary School,02480003, 3.5, 5.2, 43.6, 45.8, 0.1, 0.1, 1.7, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,58.0,Revere - Abraham Lincoln,02480025, 4.0, 4.3, 48.2, 42.0, 0.0, 0.0, 1.4, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,55.3,Revere - Beachmont Veterans Memorial School,02480013, 3.7, 1.9, 48.4, 44.7, 0.0, 0.0, 1.3, 54.8, 45.2 -1,1,a-cure-i1,2017-18,2.6,73.7,Revere - Garfield Elementary School,02480056, 2.7, 6.6, 62.9, 26.3, 0.0, 0.0, 1.4, 51.0, 49.0 -1.3153961136023915,1.32,a-cure-i1,2017-18,5.5,66.9,Revere - Garfield Middle School,02480057, 2.8, 5.9, 56.1, 33.1, 0.2, 0.0, 1.9, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,56.8,Revere - Paul Revere,02480050, 3.4, 5.7, 43.2, 43.2, 0.0, 0.0, 4.4, 49.4, 50.6 -2.318840579710145,2.32,a-cure-i1,2017-18,10.0,69.0,Revere - Revere High,02480505, 4.0, 6.2, 56.3, 31.0, 0.6, 0.0, 1.9, 50.7, 49.3 -1,1,a-cure-i1,2017-18,4.3,58.1,Revere - Rumney Marsh Academy,02480014, 4.0, 4.2, 46.4, 41.9, 0.7, 0.2, 2.7, 53.3, 46.7 -1,1,a-cure-i1,2017-18,1.0,73.2,Revere - Seacoast School,02480520, 8.5, 1.2, 58.5, 26.8, 0.0, 0.0, 4.9, 67.1, 32.9 -1,1,a-cure-i1,2017-18,0.0,72.9,Revere - Staff Sargent James J. Hill Elementary School,02480035, 4.9, 2.7, 61.9, 27.1, 0.4, 0.0, 2.9, 47.1, 52.9 -1,1,a-cure-i1,2017-18,2.5,66.7,Revere - Susan B. Anthony Middle School,02480305, 3.3, 4.7, 57.0, 33.3, 0.2, 0.0, 1.4, 47.4, 52.6 -1,1,a-cure-i1,2017-18,0.0,10.099999999999994,Richmond - Richmond Consolidated,02490005, 1.1, 0.0, 6.1, 89.9, 0.0, 0.0, 2.8, 46.9, 53.1 -13.217391304347826,5,a-cure-i1,2017-18,9.5,11.5,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.4, 2.6, 2.4, 88.5, 0.3, 0.0, 4.8, 50.0, 49.8 -1,1,a-cure-i1,2017-18,0.0,10.400000000000006,River Valley Charter (District) - River Valley Charter School,04820050, 0.7, 2.8, 2.4, 89.6, 0.3, 0.0, 4.2, 41.3, 58.7 -1,1,a-cure-i1,2017-18,3.2,9.400000000000006,Rochester - Rochester Memorial,02500005, 1.6, 0.0, 1.4, 90.6, 0.0, 0.0, 6.4, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,22.299999999999997,Rockland - Jefferson Elementary School,02510060, 4.9, 1.6, 11.1, 77.7, 0.0, 0.0, 4.6, 47.9, 52.1 -1,1,a-cure-i1,2017-18,2.0,23.099999999999994,Rockland - John W Rogers Middle,02510305, 4.8, 1.5, 13.1, 76.9, 0.0, 0.0, 3.7, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,22.299999999999997,Rockland - Memorial Park,02510020, 3.9, 0.7, 15.2, 77.7, 0.0, 0.0, 2.5, 48.4, 51.6 -2.9304029304029307,2.93,a-cure-i1,2017-18,5.0,27.299999999999997,Rockland - R Stewart Esten,02510025, 8.4, 1.3, 15.4, 72.7, 0.0, 0.0, 2.3, 55.6, 44.4 -1,1,a-cure-i1,2017-18,3.8,20.0,Rockland - Rockland Senior High,02510505, 4.2, 0.5, 11.6, 80.0, 0.0, 0.0, 3.7, 50.1, 49.9 -1,1,a-cure-i1,2017-18,0.0,2.299999999999997,Rockport - Rockport Elementary,02520005, 0.0, 2.0, 0.3, 97.7, 0.0, 0.0, 0.0, 52.2, 47.8 -1,1,a-cure-i1,2017-18,3.9,4.200000000000003,Rockport - Rockport High,02520510, 1.0, 1.0, 1.7, 95.8, 0.0, 0.0, 0.3, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,3.0999999999999943,Rockport - Rockport Middle,02520305, 0.0, 0.9, 2.2, 96.9, 0.0, 0.0, 0.0, 54.2, 45.8 -17.699115044247794,5,a-cure-i1,2017-18,12.5,11.299999999999997,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 5.6, 88.7, 0.0, 0.0, 5.6, 47.9, 52.1 -6.924165824064712,5,a-cure-i1,2017-18,42.800000000000004,98.9,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 57.2, 0.8, 39.5, 1.1, 0.2, 0.1, 0.9, 50.9, 49.1 -3.5578144853875475,3.56,a-cure-i1,2017-18,17.5,78.7,Sabis International Charter (District) - Sabis International Charter School,04410505, 30.0, 4.1, 39.4, 21.3, 0.0, 0.0, 5.2, 50.7, 49.3 -1.958429561200924,1.96,a-cure-i1,2017-18,5.3,43.3,Salem - Bates,02580003, 7.0, 2.0, 27.2, 56.7, 0.3, 0.0, 6.7, 51.5, 48.5 -10.864721485411138,5,a-cure-i1,2017-18,25.599999999999998,37.7,Salem - Carlton,02580015, 3.6, 0.4, 28.2, 62.3, 0.0, 0.0, 5.6, 46.8, 53.2 -2.78118609406953,2.78,a-cure-i1,2017-18,8.5,48.9,Salem - Collins Middle,02580305, 7.3, 3.4, 33.8, 51.1, 0.0, 0.0, 4.5, 53.2, 46.8 -2.3823529411764706,2.38,a-cure-i1,2017-18,8.1,54.4,Salem - Horace Mann Laboratory,02580030, 6.3, 1.5, 40.4, 45.6, 0.0, 0.0, 6.3, 50.0, 50.0 -3.616038882138518,3.62,a-cure-i1,2017-18,18.6,82.3,Salem - Nathaniel Bowditch,02580025, 6.9, 2.4, 69.6, 17.7, 0.3, 0.0, 3.2, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,55.6,Salem - New Liberty Innovation School,02580510, 6.7, 0.0, 46.7, 44.4, 0.0, 0.0, 2.2, 46.7, 51.1 -1,1,a-cure-i1,2017-18,0.0,47.3,Salem - Salem Early Childhood,02580001, 14.0, 3.2, 22.6, 52.7, 0.0, 0.0, 7.5, 57.0, 43.0 -1,1,a-cure-i1,2017-18,3.7,58.5,Salem - Salem High,02580505, 7.5, 2.9, 43.9, 41.5, 0.0, 0.0, 4.1, 52.7, 47.2 -1,1,a-cure-i1,2017-18,0.0,38.5,Salem - Salem Prep High School,02580515, 3.8, 3.8, 26.9, 61.5, 0.0, 0.0, 3.8, 65.4, 34.6 -1,1,a-cure-i1,2017-18,3.0,48.1,Salem - Saltonstall School,02580050, 5.4, 3.0, 33.6, 51.9, 0.0, 0.0, 6.2, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.8,43.4,Salem - Witchcraft Heights,02580070, 6.6, 5.5, 27.1, 56.6, 0.0, 0.0, 4.4, 55.0, 45.0 -5.464098073555166,5,a-cure-i1,2017-18,19.5,57.1,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 8.6, 5.1, 40.8, 42.9, 0.0, 0.0, 2.5, 45.9, 54.1 -1,1,a-cure-i1,2017-18,2.7,11.599999999999994,Sandwich - Forestdale School,02610002, 1.3, 2.8, 5.9, 88.4, 0.3, 0.2, 1.1, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,6.700000000000003,Sandwich - Oak Ridge,02610025, 1.3, 1.7, 2.3, 93.3, 0.4, 0.0, 1.0, 49.5, 50.5 -1,1,a-cure-i1,2017-18,1.9,5.700000000000003,Sandwich - Sandwich High,02610505, 1.0, 2.4, 1.3, 94.3, 0.6, 0.1, 0.1, 49.2, 50.8 -1,1,a-cure-i1,2017-18,4.0,5.0,Sandwich - Sandwich STEM Academy,02610305, 0.7, 2.2, 0.4, 95.0, 1.3, 0.2, 0.2, 51.7, 48.3 -1,1,a-cure-i1,2017-18,3.5,27.099999999999994,Saugus - Belmonte Saugus Middle,02620305, 4.8, 3.5, 16.6, 72.9, 0.5, 0.3, 1.4, 51.2, 48.8 -1,1,a-cure-i1,2017-18,0.0,22.5,Saugus - Douglas Waybright,02620067, 3.5, 6.1, 9.1, 77.5, 0.4, 0.0, 3.5, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,30.0,Saugus - Lynnhurst,02620040, 2.2, 10.0, 16.7, 70.0, 0.0, 0.4, 0.7, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,36.7,Saugus - Oaklandvale,02620050, 3.8, 6.7, 18.3, 63.3, 1.3, 0.0, 6.7, 52.5, 47.5 -3.5968992248062017,3.6,a-cure-i1,2017-18,5.8,25.799999999999997,Saugus - Saugus High,02620505, 4.3, 4.9, 15.1, 74.2, 0.6, 0.0, 0.9, 50.3, 49.7 -2.734177215189874,2.73,a-cure-i1,2017-18,5.4,31.599999999999994,Saugus - Veterans Memorial,02620065, 5.0, 3.3, 19.4, 68.4, 0.6, 0.0, 3.3, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,6.700000000000003,Savoy - Emma L Miller Elementary School,02630010, 3.3, 0.0, 3.3, 93.3, 0.0, 0.0, 0.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,4.799999999999997,Scituate - Cushing Elementary,02640007, 1.9, 1.0, 0.3, 95.2, 0.3, 0.0, 1.3, 55.8, 44.2 -1,1,a-cure-i1,2017-18,2.3,6.5,Scituate - Gates Middle School,02640305, 2.8, 1.7, 1.0, 93.5, 0.0, 0.0, 1.1, 47.2, 52.8 -1,1,a-cure-i1,2017-18,0.0,7.400000000000006,Scituate - Hatherly Elementary,02640010, 2.6, 0.4, 3.0, 92.6, 0.0, 0.0, 1.5, 55.2, 44.8 -1,1,a-cure-i1,2017-18,0.0,6.900000000000006,Scituate - Jenkins Elementary School,02640015, 2.8, 0.0, 1.9, 93.1, 0.0, 0.0, 2.2, 55.3, 44.7 -1,1,a-cure-i1,2017-18,3.5,6.0,Scituate - Scituate High School,02640505, 2.7, 1.1, 0.7, 94.0, 0.0, 0.0, 1.5, 47.7, 52.3 -1,1,a-cure-i1,2017-18,0.0,8.700000000000003,Scituate - Wampatuck Elementary,02640020, 3.3, 1.5, 2.0, 91.3, 0.0, 0.0, 2.0, 51.8, 48.3 -6.500000000000002,5,a-cure-i1,2017-18,5.2,12.799999999999997,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.8, 3.6, 4.4, 87.2, 0.2, 0.0, 2.8, 50.1, 49.9 -1,1,a-cure-i1,2017-18,4.0,14.400000000000006,Seekonk - George R Martin,02650007, 2.3, 2.3, 5.2, 85.6, 0.0, 0.0, 4.6, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,11.400000000000006,Seekonk - Mildred Aitken School,02650015, 1.9, 3.0, 4.2, 88.6, 0.0, 0.0, 2.3, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,9.400000000000006,Seekonk - Seekonk High,02650505, 1.3, 2.5, 3.4, 90.6, 0.0, 0.0, 2.2, 47.6, 52.2 -2.813376483279396,2.81,a-cure-i1,2017-18,16.3,92.7,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 46.5, 0.0, 43.2, 7.3, 0.0, 0.0, 3.0, 52.5, 47.5 -1,1,a-cure-i1,2017-18,0.0,43.8,Sharon - Cottage Street,02660005, 3.1, 29.4, 3.7, 56.2, 0.2, 0.2, 7.3, 52.3, 47.7 -1,1,a-cure-i1,2017-18,0.0,45.0,Sharon - East Elementary,02660010, 5.1, 28.9, 5.5, 55.0, 0.0, 0.0, 5.5, 49.9, 50.1 -1,1,a-cure-i1,2017-18,3.5,50.7,Sharon - Heights Elementary,02660015, 2.9, 35.4, 4.6, 49.3, 0.0, 0.0, 7.8, 50.1, 49.9 -1,1,a-cure-i1,2017-18,0.0,42.0,Sharon - Sharon Early Childhood Center,02660001, 6.0, 18.0, 10.0, 58.0, 0.0, 0.0, 8.0, 58.0, 42.0 -1,1,a-cure-i1,2017-18,4.300000000000001,40.0,Sharon - Sharon High,02660505, 7.3, 25.1, 4.5, 60.0, 0.0, 0.1, 3.0, 52.5, 47.5 -1,1,a-cure-i1,2017-18,4.6,41.6,Sharon - Sharon Middle,02660305, 4.0, 28.1, 4.7, 58.4, 0.2, 0.1, 4.5, 51.0, 49.0 -1,1,a-cure-i1,2017-18,2.3,8.900000000000006,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.4, 0.8, 4.7, 91.1, 0.2, 0.0, 1.8, 58.1, 41.9 -1,1,a-cure-i1,2017-18,2.8,20.0,Sherborn - Pine Hill,02690010, 2.9, 7.6, 3.3, 80.0, 0.0, 0.0, 6.2, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.8,61.8,Shrewsbury - Beal School,02710005, 3.9, 43.0, 7.8, 38.2, 1.6, 0.0, 5.5, 51.5, 48.5 -1,1,a-cure-i1,2017-18,4.0,56.7,Shrewsbury - Calvin Coolidge,02710015, 2.4, 34.4, 14.5, 43.3, 0.2, 0.0, 5.1, 48.7, 51.3 -1,1,a-cure-i1,2017-18,3.0,61.1,Shrewsbury - Floral Street School,02710020, 2.4, 47.7, 6.8, 38.9, 0.7, 0.0, 3.5, 52.1, 47.9 -2.9273182957393487,2.93,a-cure-i1,2017-18,7.300000000000001,39.9,Shrewsbury - Oak Middle School,02710030, 2.2, 25.9, 8.6, 60.1, 0.2, 0.0, 3.1, 49.8, 50.2 -3.1157894736842104,3.12,a-cure-i1,2017-18,11.1,57.0,Shrewsbury - Parker Road Preschool,02710040, 3.4, 40.4, 8.1, 43.0, 0.9, 0.0, 4.3, 50.2, 49.8 -1,1,a-cure-i1,2017-18,4.6,45.1,Shrewsbury - Sherwood Middle School,02710305, 2.8, 29.8, 8.8, 54.9, 0.1, 0.0, 3.6, 52.6, 47.4 -2.8523676880222837,2.85,a-cure-i1,2017-18,6.4,35.900000000000006,Shrewsbury - Shrewsbury Sr High,02710505, 2.3, 22.8, 7.9, 64.1, 0.2, 0.1, 2.7, 46.5, 53.4 -1,1,a-cure-i1,2017-18,0.0,37.4,Shrewsbury - Spring Street,02710035, 1.7, 23.7, 5.9, 62.6, 0.3, 0.0, 5.9, 50.8, 49.2 -2.9419354838709677,2.94,a-cure-i1,2017-18,5.7,31.0,Shrewsbury - Walter J Paton,02710025, 0.3, 19.3, 7.3, 69.0, 0.3, 0.0, 3.8, 55.3, 44.7 -11.534883720930232,5,a-cure-i1,2017-18,12.4,17.200000000000003,Shutesbury - Shutesbury Elementary,02720005, 1.6, 0.8, 7.4, 82.8, 0.8, 0.0, 6.6, 44.3, 55.7 -1,1,a-cure-i1,2017-18,0.0,31.099999999999994,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 3.9, 2.0, 23.2, 68.9, 0.0, 0.0, 2.0, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,4.0,Silver Lake - Silver Lake Regional High,07600505, 1.4, 1.0, 0.9, 96.0, 0.0, 0.2, 0.5, 52.0, 48.0 -1,1,a-cure-i1,2017-18,0.0,4.099999999999994,Silver Lake - Silver Lake Regional Middle School,07600405, 1.3, 0.9, 1.3, 95.9, 0.0, 0.0, 0.6, 53.1, 46.9 -3.5555555555555562,3.56,a-cure-i1,2017-18,6.8,30.599999999999994,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 5.3, 1.4, 20.9, 69.4, 0.0, 0.0, 3.1, 53.2, 46.8 -1,1,a-cure-i1,2017-18,0.0,9.799999999999997,Somerset - Chace Street,02730005, 1.2, 0.0, 5.0, 90.2, 0.0, 0.0, 3.6, 54.2, 45.8 -1,1,a-cure-i1,2017-18,0.0,8.0,Somerset - North Elementary,02730008, 1.4, 1.4, 3.3, 92.0, 0.0, 0.0, 1.8, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,6.900000000000006,Somerset - Somerset Middle School,02730305, 0.8, 0.2, 4.1, 93.1, 0.0, 0.0, 1.8, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,11.299999999999997,Somerset - South,02730015, 1.5, 0.4, 5.8, 88.7, 0.0, 0.0, 3.6, 47.1, 52.9 -1,1,a-cure-i1,2017-18,4.7,7.200000000000003,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 1.3, 0.1, 3.0, 92.8, 0.1, 0.0, 2.7, 49.2, 50.8 -2.5454545454545454,2.55,a-cure-i1,2017-18,9.1,57.2,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.8, 9.1, 38.4, 42.8, 0.3, 0.0, 3.6, 52.4, 47.6 -3.8492753623188407,3.85,a-cure-i1,2017-18,16.6,69.0,Somerville - Arthur D Healey,02740075, 14.0, 7.3, 44.3, 31.0, 0.0, 0.0, 3.3, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,28.099999999999994,Somerville - Benjamin G Brown,02740015, 1.3, 9.5, 7.8, 71.9, 0.4, 0.0, 9.1, 47.2, 52.8 -1,1,a-cure-i1,2017-18,4.8,66.9,Somerville - Capuano Early Childhood Center,02740005, 5.1, 10.2, 42.7, 33.1, 0.0, 0.0, 8.9, 53.8, 46.2 -5.878345498783455,5,a-cure-i1,2017-18,30.2,82.2,Somerville - E Somerville Community,02740111, 4.3, 3.6, 71.8, 17.8, 0.0, 0.1, 2.4, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,67.3,Somerville - Full Circle High School,02740510, 21.2, 1.9, 44.2, 32.7, 0.0, 0.0, 0.0, 61.5, 38.5 -3.9261213720316626,3.93,a-cure-i1,2017-18,9.3,37.9,Somerville - John F Kennedy,02740083, 9.6, 5.0, 16.0, 62.1, 0.0, 0.0, 7.2, 55.0, 45.0 -1,1,a-cure-i1,2017-18,0.0,60.0,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 60.0, 40.0, 0.0, 0.0, 0.0, 86.7, 13.3 -4.321167883211679,4.32,a-cure-i1,2017-18,18.5,68.5,Somerville - Somerville High,02740505, 13.6, 8.2, 45.2, 31.5, 0.0, 0.0, 1.5, 54.7, 45.3 -2.337078651685393,2.34,a-cure-i1,2017-18,6.5,44.5,Somerville - West Somerville Neighborhood,02740115, 14.6, 4.6, 19.1, 55.5, 0.0, 0.0, 6.2, 52.0, 47.4 -2.9762532981530345,2.98,a-cure-i1,2017-18,14.100000000000001,75.8,Somerville - Winter Hill Community,02740120, 14.4, 8.3, 50.3, 24.2, 0.0, 0.0, 2.8, 57.3, 42.5 -1,1,a-cure-i1,2017-18,0.0,20.5,South Hadley - Michael E. Smith Middle School,02780305, 1.4, 2.1, 14.3, 79.5, 0.0, 0.0, 2.6, 47.4, 52.6 -1,1,a-cure-i1,2017-18,0.0,20.5,South Hadley - Mosier,02780020, 1.2, 1.9, 15.7, 79.5, 0.2, 0.0, 1.4, 53.1, 46.9 -1,1,a-cure-i1,2017-18,0.0,22.900000000000006,South Hadley - Plains Elementary,02780015, 1.2, 2.9, 15.6, 77.1, 0.0, 0.0, 3.2, 46.5, 53.5 -1,1,a-cure-i1,2017-18,2.2,14.200000000000003,South Hadley - South Hadley High,02780505, 2.7, 2.7, 7.6, 85.8, 0.0, 0.4, 0.9, 49.9, 50.1 -1,1,a-cure-i1,2017-18,2.8,53.8,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 6.0, 0.1, 43.4, 46.2, 1.1, 0.0, 3.1, 59.6, 40.4 -2.8304668304668303,2.83,a-cure-i1,2017-18,7.2,40.7,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 26.4, 4.6, 2.7, 59.3, 0.4, 0.1, 6.4, 49.2, 50.8 -1,1,a-cure-i1,2017-18,1.7,10.299999999999997,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 1.8, 1.1, 4.6, 89.7, 0.0, 0.0, 2.8, 66.5, 33.5 -1,1,a-cure-i1,2017-18,0.0,9.200000000000003,Southampton - William E Norris,02750005, 0.2, 1.0, 5.3, 90.8, 0.2, 0.2, 2.3, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,32.3,Southborough - Albert S. Woodward Memorial School,02760050, 1.5, 19.2, 5.3, 67.7, 0.0, 0.4, 6.0, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,29.5,Southborough - Margaret A Neary,02760020, 1.2, 15.5, 7.4, 70.5, 0.0, 0.0, 5.4, 47.3, 52.7 -1,1,a-cure-i1,2017-18,0.0,30.700000000000003,Southborough - Mary E Finn School,02760008, 0.3, 19.9, 3.6, 69.3, 0.6, 0.0, 6.3, 50.3, 49.7 -1,1,a-cure-i1,2017-18,2.9,27.0,Southborough - P Brent Trottier,02760305, 0.4, 17.0, 5.4, 73.0, 0.0, 0.2, 3.9, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,59.0,Southbridge - Charlton Street,02770005, 4.2, 1.6, 48.7, 41.0, 0.3, 0.0, 4.2, 52.6, 47.4 -1,1,a-cure-i1,2017-18,4.2,60.8,Southbridge - Eastford Road,02770010, 2.5, 1.0, 56.2, 39.2, 0.3, 0.0, 0.8, 43.0, 57.0 -3.353951890034364,3.35,a-cure-i1,2017-18,12.2,58.2,Southbridge - Southbridge High School,02770515, 1.6, 1.4, 53.6, 41.8, 0.4, 0.2, 1.0, 53.0, 47.0 -1,1,a-cure-i1,2017-18,4.4,62.5,Southbridge - Southbridge Middle School,02770315, 1.0, 1.4, 58.2, 37.5, 0.4, 0.0, 1.4, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,60.3,Southbridge - West Street,02770020, 0.3, 2.8, 54.9, 39.7, 0.0, 0.0, 2.2, 49.5, 50.5 -2.950570342205323,2.95,a-cure-i1,2017-18,9.7,52.6,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 34.1, 1.5, 11.8, 47.4, 0.0, 0.0, 5.1, 51.3, 48.6 -8.463768115942031,5,a-cure-i1,2017-18,7.300000000000001,13.799999999999997,Southern Berkshire - Mt Everett Regional,07650505, 2.0, 0.0, 5.9, 86.2, 0.7, 0.0, 5.3, 48.7, 51.3 -48.599999999999994,5,a-cure-i1,2017-18,24.299999999999997,8.0,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 2.3, 92.0, 2.3, 0.0, 3.4, 52.9, 47.1 -1,1,a-cure-i1,2017-18,0.9,13.099999999999994,Southern Berkshire - Undermountain,07650035, 0.7, 0.0, 7.6, 86.9, 0.3, 0.0, 4.5, 54.5, 45.5 -1,1,a-cure-i1,2017-18,0.9,11.799999999999997,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.7, 0.6, 9.2, 88.2, 0.1, 0.0, 1.2, 58.9, 41.1 -1,1,a-cure-i1,2017-18,0.0,11.099999999999994,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.8, 0.5, 5.2, 88.9, 0.2, 0.0, 3.4, 50.2, 49.8 -15.146666666666667,5,a-cure-i1,2017-18,7.1,7.5,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.8, 1.0, 3.6, 92.5, 0.0, 0.0, 1.1, 50.1, 49.9 -1,1,a-cure-i1,2017-18,0.0,11.200000000000003,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, 0.8, 5.9, 88.8, 0.3, 0.0, 2.2, 55.2, 44.8 -1,1,a-cure-i1,2017-18,0.0,17.400000000000006,Spencer-E Brookfield - David Prouty High,07670505, 1.7, 1.7, 9.2, 82.6, 0.7, 0.0, 4.1, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,12.599999999999994,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.2, 0.0, 6.5, 87.4, 0.4, 0.0, 3.5, 55.0, 45.0 -1,1,a-cure-i1,2017-18,0.0,17.299999999999997,Spencer-E Brookfield - Knox Trail Middle School,07670415, 1.2, 1.4, 10.6, 82.7, 0.0, 0.0, 4.1, 55.9, 44.1 -1,1,a-cure-i1,2017-18,0.0,14.099999999999994,Spencer-E Brookfield - Wire Village School,07670040, 1.6, 0.7, 9.9, 85.9, 0.0, 0.0, 1.9, 49.6, 50.1 -3.3493064312736447,3.35,a-cure-i1,2017-18,16.6,79.3,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 24.9, 0.0, 50.9, 20.7, 0.0, 0.0, 3.5, 46.8, 53.2 -2.35705368289638,2.36,a-cure-i1,2017-18,11.8,80.1,Springfield - Alice B Beal Elementary,02810175, 16.5, 8.4, 51.7, 19.9, 0.0, 0.0, 3.4, 47.5, 52.5 -1.1294117647058823,1.13,a-cure-i1,2017-18,6.0,85.0,Springfield - Arthur T Talmadge,02810165, 26.0, 1.6, 53.5, 15.0, 0.0, 0.0, 3.9, 53.5, 46.5 -3.1346938775510202,3.13,a-cure-i1,2017-18,19.2,98.0,Springfield - Balliet Middle School,02810360, 19.6, 0.0, 76.5, 2.0, 0.0, 0.0, 2.0, 60.8, 39.2 -2.224948875255624,2.22,a-cure-i1,2017-18,13.6,97.8,Springfield - Brightwood,02810025, 16.7, 0.0, 80.8, 2.2, 0.0, 0.0, 0.3, 50.8, 49.2 -2.928645294725957,2.93,a-cure-i1,2017-18,17.700000000000003,96.7,Springfield - Chestnut Academy,02810365, 10.7, 0.2, 84.2, 3.3, 0.2, 0.0, 1.2, 49.9, 50.1 -6.9074074074074066,5,a-cure-i1,2017-18,37.3,86.4,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 23.1, 2.2, 59.2, 13.6, 0.0, 0.3, 1.6, 46.2, 53.8 -5.3090909090909095,5,a-cure-i1,2017-18,29.200000000000003,88.0,Springfield - Conservatory of the Arts,02810475, 23.4, 0.0, 63.0, 12.0, 0.3, 0.0, 1.4, 30.2, 69.8 -1.4988290398126463,1.5,a-cure-i1,2017-18,8.0,85.4,Springfield - Daniel B Brunton,02810035, 19.5, 0.9, 62.4, 14.6, 0.0, 0.2, 2.4, 48.1, 51.9 -1.7543859649122806,1.75,a-cure-i1,2017-18,10.0,91.2,Springfield - Early Childhood Education Center,02810001, 20.0, 0.0, 68.8, 8.8, 0.6, 0.0, 1.8, 64.7, 35.3 -1.170731707317073,1.17,a-cure-i1,2017-18,6.6,90.2,Springfield - Edward P. Boland School,02810010, 10.2, 1.8, 76.3, 9.8, 0.1, 0.0, 1.8, 56.9, 43.1 -5.23010752688172,5,a-cure-i1,2017-18,30.4,93.0,Springfield - Elias Brookings,02810030, 23.0, 0.3, 67.1, 7.0, 0.9, 0.0, 1.7, 52.2, 47.8 -1.9687174139728885,1.97,a-cure-i1,2017-18,11.8,95.9,Springfield - Forest Park Middle,02810325, 18.1, 9.1, 67.6, 4.1, 0.1, 0.1, 0.8, 50.8, 49.2 -6.828603859250852,5,a-cure-i1,2017-18,37.6,88.1,Springfield - Frank H Freedman,02810075, 25.0, 0.9, 58.5, 11.9, 0.3, 0.0, 3.4, 56.8, 43.2 -2.1202453987730063,2.12,a-cure-i1,2017-18,10.8,81.5,Springfield - Frederick Harris,02810080, 19.7, 4.4, 53.0, 18.5, 0.2, 0.0, 4.3, 50.9, 49.1 -20.806241872561767,5,a-cure-i1,2017-18,100.0,76.9,Springfield - Gateway to College at Holyoke Community College,02810575, 30.8, 0.0, 46.2, 23.1, 0.0, 0.0, 0.0, 38.5, 61.5 -17.99775028121485,5,a-cure-i1,2017-18,100.0,88.9,Springfield - Gateway to College at Springfield Technical Community College,02810580, 31.1, 0.0, 57.8, 11.1, 0.0, 0.0, 0.0, 28.9, 71.1 -2.942528735632184,2.94,a-cure-i1,2017-18,17.6,95.7,Springfield - German Gerena Community School,02810195, 14.3, 0.7, 79.4, 4.3, 0.0, 0.0, 1.3, 47.9, 52.1 -1,1,a-cure-i1,2017-18,0.0,86.6,Springfield - Glenwood,02810065, 10.7, 2.3, 71.1, 13.4, 0.0, 0.0, 2.3, 54.0, 46.0 -4.158083832335329,4.16,a-cure-i1,2017-18,21.7,83.5,Springfield - Glickman Elementary,02810068, 21.0, 2.7, 56.2, 16.5, 0.3, 0.0, 3.3, 50.8, 49.2 -5.744493392070484,5,a-cure-i1,2017-18,32.599999999999994,90.8,Springfield - High School Of Commerce,02810510, 19.0, 1.7, 68.8, 9.2, 0.0, 0.1, 1.3, 52.6, 47.4 -1.0,1.0,a-cure-i1,2017-18,5.6,89.6,Springfield - Hiram L Dorman,02810050, 25.7, 1.0, 61.9, 10.4, 0.0, 0.0, 1.0, 50.2, 49.8 -1,1,a-cure-i1,2017-18,4.8,92.3,Springfield - Homer Street,02810085, 26.8, 1.4, 62.6, 7.7, 0.0, 0.0, 1.6, 52.9, 47.1 -6.598963730569948,5,a-cure-i1,2017-18,39.8,96.5,Springfield - Impact Prep at Chestnut,02810366, 15.3, 0.0, 80.8, 3.5, 0.0, 0.0, 0.4, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,86.4,Springfield - Indian Orchard Elementary,02810100, 17.4, 1.7, 64.6, 13.6, 0.2, 0.0, 2.5, 53.0, 47.0 -6.87750556792873,5,a-cure-i1,2017-18,38.599999999999994,89.8,Springfield - John F Kennedy Middle,02810328, 21.1, 1.1, 65.6, 10.2, 0.2, 0.0, 1.8, 56.4, 43.6 -3.7788018433179724,3.78,a-cure-i1,2017-18,20.5,86.8,Springfield - John J Duggan Middle,02810320, 28.3, 2.0, 55.0, 13.2, 0.3, 0.0, 1.3, 56.3, 43.7 -2.228272251308901,2.23,a-cure-i1,2017-18,13.3,95.5,Springfield - Kensington International School,02810110, 19.4, 3.2, 70.6, 4.5, 0.0, 0.0, 2.3, 48.4, 51.6 -1,1,a-cure-i1,2017-18,0.0,86.9,Springfield - Liberty,02810115, 9.5, 1.1, 75.6, 13.1, 0.0, 0.0, 0.7, 49.8, 50.2 -12.086330935251798,5,a-cure-i1,2017-18,31.5,41.7,Springfield - Liberty Preparatory Academy,02810560, 8.3, 8.3, 8.3, 58.3, 0.0, 0.0, 16.7, 83.3, 16.7 -2.644628099173554,2.64,a-cure-i1,2017-18,16.0,96.8,Springfield - Lincoln,02810120, 9.4, 0.5, 85.6, 3.2, 0.2, 0.0, 1.0, 56.2, 43.8 -6.119235095613048,5,a-cure-i1,2017-18,34.0,88.9,Springfield - M Marcus Kiley Middle,02810330, 22.2, 2.4, 63.4, 11.1, 0.2, 0.2, 0.6, 55.7, 44.3 -1.1911111111111112,1.19,a-cure-i1,2017-18,6.7,90.0,Springfield - Margaret C Ells,02810060, 23.3, 1.7, 62.5, 10.0, 0.4, 0.0, 2.1, 62.1, 37.9 -1,1,a-cure-i1,2017-18,0.0,76.8,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 13.5, 7.0, 52.8, 23.2, 0.0, 0.3, 3.2, 49.6, 50.4 -2.4062850729517398,2.41,a-cure-i1,2017-18,13.4,89.1,Springfield - Mary M Lynch,02810140, 20.3, 1.5, 65.4, 10.9, 0.0, 0.0, 1.9, 46.2, 53.8 -2.7968217934165724,2.8,a-cure-i1,2017-18,15.4,88.1,Springfield - Mary M Walsh,02810155, 15.9, 0.3, 69.8, 11.9, 0.3, 0.0, 1.7, 54.2, 45.8 -3.0354285714285716,3.04,a-cure-i1,2017-18,16.6,87.5,Springfield - Mary O Pottenger,02810145, 12.9, 2.4, 70.4, 12.5, 0.2, 0.0, 1.6, 52.5, 47.5 -1.8688524590163935,1.87,a-cure-i1,2017-18,11.4,97.6,Springfield - Milton Bradley School,02810023, 18.2, 0.6, 77.8, 2.4, 0.0, 0.0, 1.1, 50.8, 49.2 -6.174553101997898,5,a-cure-i1,2017-18,36.7,95.1,Springfield - Rebecca M Johnson,02810055, 26.4, 0.3, 66.1, 4.9, 0.0, 0.0, 2.3, 51.5, 48.5 -3.6036036036036037,3.6,a-cure-i1,2017-18,20.0,88.8,Springfield - Rise Academy at Van Sickle,02810480, 16.3, 0.9, 69.8, 11.2, 0.0, 0.0, 1.9, 55.3, 44.7 -3.751972942502818,3.75,a-cure-i1,2017-18,20.799999999999997,88.7,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 19.7, 1.4, 66.9, 11.3, 0.1, 0.0, 0.7, 45.9, 54.1 -3.2218430034129697,3.22,a-cure-i1,2017-18,17.700000000000003,87.9,Springfield - Samuel Bowles,02810020, 16.3, 0.3, 69.2, 12.1, 0.0, 0.0, 2.1, 49.4, 50.6 -3.7752808988764044,3.78,a-cure-i1,2017-18,23.1,97.9,Springfield - South End Middle School,02810355, 13.3, 0.0, 82.5, 2.1, 0.0, 0.0, 2.1, 51.7, 48.3 -3.5995288574793873,3.6,a-cure-i1,2017-18,19.1,84.9,Springfield - Springfield Central High,02810500, 23.8, 6.2, 53.5, 15.1, 0.0, 0.1, 1.2, 53.3, 46.7 -4.50521436848204,4.51,a-cure-i1,2017-18,24.3,86.3,Springfield - Springfield High School,02810570, 25.6, 0.0, 59.2, 13.7, 0.0, 0.0, 1.4, 55.5, 44.5 -5.130726256983241,5,a-cure-i1,2017-18,28.700000000000003,89.5,Springfield - Springfield High School of Science and Technology,02810530, 17.3, 1.8, 69.3, 10.5, 0.1, 0.1, 0.9, 57.7, 42.3 -8.191387559808613,5,a-cure-i1,2017-18,42.8,83.6,Springfield - Springfield Public Day Elementary School,02810005, 20.5, 0.0, 63.0, 16.4, 0.0, 0.0, 0.0, 84.9, 15.1 -9.747343565525382,5,a-cure-i1,2017-18,51.599999999999994,84.7,Springfield - Springfield Public Day High School,02810550, 22.4, 0.0, 60.2, 15.3, 0.0, 0.0, 2.0, 71.4, 28.6 -4.034042553191489,4.03,a-cure-i1,2017-18,23.7,94.0,Springfield - Springfield Public Day Middle School,02810345, 20.0, 0.0, 74.0, 6.0, 0.0, 0.0, 0.0, 88.0, 12.0 -1,1,a-cure-i1,2017-18,0.0,87.0,Springfield - Springfield Vocational Academy,02810675, 16.3, 2.2, 68.5, 13.0, 0.0, 0.0, 0.0, 60.9, 39.1 -6.418390804597701,5,a-cure-i1,2017-18,34.9,87.0,Springfield - STEM Middle Academy,02810350, 19.8, 3.1, 63.5, 13.0, 0.0, 0.0, 0.7, 61.8, 38.2 -2.892857142857143,2.89,a-cure-i1,2017-18,16.2,89.6,Springfield - Sumner Avenue,02810160, 19.5, 5.9, 60.6, 10.4, 0.2, 0.0, 3.4, 54.8, 45.2 -2.5426356589147283,2.54,a-cure-i1,2017-18,12.299999999999999,77.4,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 24.6, 1.7, 49.3, 22.6, 0.0, 0.1, 1.6, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,88.7,Springfield - Thomas M Balliet,02810015, 24.5, 1.3, 59.7, 11.3, 0.0, 0.0, 3.1, 50.6, 49.4 -4.486486486486486,4.49,a-cure-i1,2017-18,24.9,88.8,Springfield - Van Sickle Academy,02810485, 11.7, 1.7, 74.2, 11.2, 0.0, 0.0, 1.2, 55.3, 44.7 -1,1,a-cure-i1,2017-18,4.9,84.8,Springfield - Warner,02810180, 22.1, 2.1, 56.6, 15.2, 0.3, 0.3, 3.4, 51.4, 48.6 -2.3502824858757063,2.35,a-cure-i1,2017-18,13.0,88.5,Springfield - Washington,02810185, 17.3, 7.2, 60.4, 11.5, 0.0, 0.2, 3.4, 55.2, 44.8 -1.6750272628135223,1.68,a-cure-i1,2017-18,9.6,91.7,Springfield - White Street,02810190, 20.4, 3.7, 65.4, 8.3, 0.0, 0.0, 2.2, 49.1, 50.9 -4.701902748414376,4.7,a-cure-i1,2017-18,27.799999999999997,94.6,Springfield - William N. DeBerry,02810045, 20.3, 0.0, 73.9, 5.4, 0.0, 0.0, 0.4, 53.6, 46.4 -4.141176470588235,4.14,a-cure-i1,2017-18,24.2,93.5,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 23.7, 2.3, 65.6, 6.5, 0.0, 0.0, 1.9, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,18.0,Stoneham - Colonial Park,02840005, 3.2, 4.0, 7.2, 82.0, 0.0, 0.0, 3.6, 56.8, 43.2 -1,1,a-cure-i1,2017-18,0.0,20.900000000000006,Stoneham - Robin Hood,02840025, 1.6, 6.8, 8.9, 79.1, 0.3, 0.0, 3.4, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,20.900000000000006,Stoneham - South,02840030, 2.8, 4.1, 8.1, 79.1, 0.6, 0.0, 5.3, 49.7, 50.3 -1,1,a-cure-i1,2017-18,3.4,17.599999999999994,Stoneham - Stoneham Central Middle School,02840405, 1.6, 4.7, 7.9, 82.4, 0.1, 0.1, 3.2, 48.9, 51.1 -1,1,a-cure-i1,2017-18,2.0,16.599999999999994,Stoneham - Stoneham High,02840505, 2.5, 4.4, 6.5, 83.4, 0.1, 0.0, 3.0, 46.3, 53.7 -1,1,a-cure-i1,2017-18,0.0,40.8,Stoughton - Edwin A Jones Early Childhood Center,02850012, 17.5, 3.9, 10.7, 59.2, 0.0, 0.0, 8.7, 54.4, 45.6 -1,1,a-cure-i1,2017-18,0.0,42.0,Stoughton - Helen Hansen Elementary,02850010, 17.3, 3.5, 12.6, 58.0, 0.0, 0.9, 7.8, 48.1, 51.9 -1,1,a-cure-i1,2017-18,0.0,33.099999999999994,Stoughton - Joseph H Gibbons,02850025, 12.6, 3.6, 9.5, 66.9, 0.0, 0.0, 7.3, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,52.7,Stoughton - Joseph R Dawe Jr Elementary,02850014, 26.3, 8.1, 12.9, 47.3, 0.0, 0.3, 5.0, 52.7, 47.3 -1,1,a-cure-i1,2017-18,3.2,45.2,Stoughton - O'Donnell Middle School,02850405, 21.8, 7.5, 10.1, 54.8, 0.2, 0.4, 5.2, 54.8, 45.2 -1,1,a-cure-i1,2017-18,0.0,46.0,Stoughton - South Elementary,02850015, 19.8, 9.7, 9.3, 54.0, 0.4, 2.0, 4.8, 50.0, 50.0 -1,1,a-cure-i1,2017-18,4.4,39.5,Stoughton - Stoughton High,02850505, 24.0, 6.4, 7.0, 60.5, 0.1, 0.1, 1.9, 51.6, 48.4 -1,1,a-cure-i1,2017-18,4.3,56.3,Stoughton - West Elementary,02850020, 22.5, 4.3, 23.1, 43.7, 0.5, 0.0, 5.9, 48.8, 51.2 -1,1,a-cure-i1,2017-18,0.0,11.0,Sturbridge - Burgess Elementary,02870005, 0.9, 1.3, 4.8, 89.0, 0.4, 0.1, 3.4, 55.6, 44.4 -6.145695364238413,5,a-cure-i1,2017-18,5.8,15.099999999999994,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.3, 3.6, 4.7, 84.9, 0.5, 0.0, 4.0, 42.4, 57.6 -1,1,a-cure-i1,2017-18,3.4,19.299999999999997,Sudbury - Ephraim Curtis Middle,02880305, 2.7, 7.4, 3.2, 80.7, 0.0, 0.0, 6.1, 51.0, 49.0 -1,1,a-cure-i1,2017-18,4.6,24.400000000000006,Sudbury - General John Nixon Elementary,02880025, 5.3, 9.7, 2.6, 75.6, 0.0, 0.3, 6.5, 51.8, 48.2 -3.7410071942446046,3.74,a-cure-i1,2017-18,6.5,27.799999999999997,Sudbury - Israel Loring School,02880015, 4.1, 10.9, 6.0, 72.2, 0.2, 0.9, 5.8, 53.6, 46.4 -1,1,a-cure-i1,2017-18,1.3,18.400000000000006,Sudbury - Josiah Haynes,02880010, 2.4, 8.4, 1.3, 81.6, 0.0, 0.0, 6.3, 53.9, 46.1 -1,1,a-cure-i1,2017-18,0.0,25.900000000000006,Sudbury - Peter Noyes,02880030, 2.5, 10.8, 3.9, 74.1, 0.0, 0.0, 8.8, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,33.599999999999994,Sunderland - Sunderland Elementary,02890005, 5.0, 9.2, 9.2, 66.4, 0.0, 0.0, 10.1, 57.6, 42.4 -1,1,a-cure-i1,2017-18,0.0,6.400000000000006,Sutton - Sutton Early Learning,02900003, 0.6, 0.6, 2.4, 93.6, 0.3, 0.0, 2.4, 49.4, 50.6 -1,1,a-cure-i1,2017-18,0.0,10.599999999999994,Sutton - Sutton Elementary,02900005, 0.6, 1.8, 1.8, 89.4, 0.0, 0.0, 6.4, 50.2, 49.8 -1,1,a-cure-i1,2017-18,0.0,8.5,Sutton - Sutton High School,02900510, 0.8, 0.8, 2.3, 91.5, 0.3, 0.0, 4.5, 48.4, 51.6 -1,1,a-cure-i1,2017-18,0.0,7.400000000000006,Sutton - Sutton Middle School,02900305, 0.8, 1.9, 1.6, 92.6, 0.0, 0.0, 3.0, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,17.299999999999997,Swampscott - Clarke,02910005, 1.0, 4.6, 10.7, 82.7, 0.5, 0.0, 0.5, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,23.099999999999994,Swampscott - Hadley,02910010, 3.5, 4.2, 10.8, 76.9, 0.0, 0.0, 4.5, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,11.5,Swampscott - Stanley,02910020, 0.7, 2.0, 6.4, 88.5, 0.0, 0.0, 2.4, 52.7, 47.3 -6.0,5,a-cure-i1,2017-18,7.5,20.0,Swampscott - Swampscott High,02910505, 4.9, 2.2, 10.8, 80.0, 0.0, 0.3, 1.8, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,19.900000000000006,Swampscott - Swampscott Middle,02910305, 3.5, 3.2, 10.5, 80.1, 0.5, 0.0, 2.3, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,2.200000000000003,Swansea - Elizabeth S Brown,02920006, 0.4, 1.1, 0.0, 97.8, 0.4, 0.0, 0.4, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,3.0999999999999943,Swansea - Gardner,02920015, 0.4, 0.4, 1.1, 96.9, 0.0, 0.0, 1.1, 52.5, 47.5 -1,1,a-cure-i1,2017-18,2.1,6.700000000000003,Swansea - Joseph Case High,02920505, 1.5, 1.7, 1.9, 93.3, 0.2, 0.0, 1.5, 52.5, 47.5 -1,1,a-cure-i1,2017-18,2.8,3.799999999999997,Swansea - Joseph Case Jr High,02920305, 0.6, 0.4, 2.3, 96.2, 0.0, 0.0, 0.6, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,10.099999999999994,Swansea - Joseph G Luther,02920020, 0.9, 0.9, 3.5, 89.9, 0.9, 0.0, 3.9, 48.7, 51.3 -1,1,a-cure-i1,2017-18,0.0,7.5,Swansea - Mark G Hoyle Elementary,02920017, 1.2, 1.6, 2.0, 92.5, 0.0, 0.0, 2.7, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,11.0,Tantasqua - Tantasqua Regional Jr High,07700405, 0.8, 1.4, 4.6, 89.0, 0.2, 0.0, 4.1, 49.7, 50.3 -1,1,a-cure-i1,2017-18,2.0999999999999996,8.799999999999997,Tantasqua - Tantasqua Regional Sr High,07700505, 1.0, 1.0, 4.9, 91.2, 0.3, 0.0, 1.6, 46.0, 54.0 -1,1,a-cure-i1,2017-18,0.0,8.5,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.2, 6.0, 91.5, 0.2, 0.0, 1.9, 58.5, 41.5 -1,1,a-cure-i1,2017-18,0.0,26.0,Taunton - Benjamin Friedman Middle,02930315, 9.7, 0.8, 10.0, 74.0, 0.3, 0.3, 5.0, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,26.200000000000003,Taunton - East Taunton Elementary,02930010, 12.0, 0.3, 8.4, 73.8, 0.3, 0.0, 5.2, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,20.200000000000003,Taunton - Edmund Hatch Bennett,02930007, 7.8, 0.9, 8.4, 79.8, 0.3, 0.0, 2.7, 52.1, 47.9 -1,1,a-cure-i1,2017-18,0.0,33.400000000000006,Taunton - Edward F. Leddy Preschool,02930005, 11.8, 3.0, 13.6, 66.6, 0.0, 0.0, 5.0, 57.1, 42.9 -1,1,a-cure-i1,2017-18,0.0,45.7,Taunton - Elizabeth Pole,02930027, 20.3, 1.6, 15.0, 54.3, 0.0, 0.0, 8.8, 52.7, 47.3 -3.8081180811808117,3.81,a-cure-i1,2017-18,12.9,54.2,Taunton - H H Galligan,02930057, 24.6, 0.4, 20.4, 45.8, 0.4, 1.3, 7.1, 50.4, 49.6 -4.50761421319797,4.51,a-cure-i1,2017-18,11.1,39.4,Taunton - Hopewell,02930035, 18.2, 0.7, 11.3, 60.6, 0.0, 0.0, 9.1, 46.7, 53.3 -1,1,a-cure-i1,2017-18,2.8,47.9,Taunton - John F Parker Middle,02930305, 24.7, 1.0, 15.1, 52.1, 0.4, 0.0, 6.6, 49.7, 50.3 -7.30964467005076,5,a-cure-i1,2017-18,9.0,19.700000000000003,Taunton - Joseph C Chamberlain,02930008, 9.1, 1.5, 4.8, 80.3, 0.2, 0.2, 3.9, 50.5, 49.5 -1,1,a-cure-i1,2017-18,3.5,31.400000000000006,Taunton - Joseph H Martin,02930042, 14.6, 1.3, 10.9, 68.6, 0.4, 0.1, 3.8, 53.4, 46.6 -2.773869346733669,2.77,a-cure-i1,2017-18,6.9,39.8,Taunton - Mulcahey Elementary School,02930015, 18.7, 0.6, 14.2, 60.2, 0.2, 0.0, 6.2, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,29.5,Taunton - Taunton Alternative High School,02930525, 10.5, 0.0, 9.5, 70.5, 0.0, 0.0, 9.5, 61.1, 38.9 -1,1,a-cure-i1,2017-18,4.8999999999999995,34.5,Taunton - Taunton High,02930505, 15.7, 2.0, 12.6, 65.5, 0.0, 0.2, 3.9, 49.7, 50.3 -1,1,a-cure-i1,2017-18,0.0,30.0,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 5.6, 2.9, 13.9, 70.0, 0.5, 0.3, 6.8, 41.5, 58.4 -1,1,a-cure-i1,2017-18,0.0,7.400000000000006,Tewksbury - Heath-Brook,02950010, 0.9, 2.6, 2.3, 92.6, 0.0, 0.0, 1.7, 49.6, 50.4 -1,1,a-cure-i1,2017-18,2.7,12.099999999999994,Tewksbury - John F. Ryan,02950023, 3.5, 4.5, 2.9, 87.9, 0.0, 0.2, 1.0, 52.3, 47.7 -1,1,a-cure-i1,2017-18,2.3,8.400000000000006,Tewksbury - John W. Wynn Middle,02950305, 2.2, 2.9, 2.4, 91.6, 0.2, 0.0, 0.7, 47.2, 52.8 -6.965986394557822,5,a-cure-i1,2017-18,6.4,14.700000000000003,Tewksbury - L F Dewing,02950001, 4.0, 4.1, 5.8, 85.3, 0.0, 0.2, 0.7, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,6.400000000000006,Tewksbury - Louise Davy Trahan,02950025, 0.9, 1.3, 2.6, 93.6, 0.0, 0.0, 1.7, 45.3, 54.7 -1,1,a-cure-i1,2017-18,0.0,15.200000000000003,Tewksbury - North Street,02950020, 5.4, 3.2, 5.8, 84.8, 0.0, 0.0, 0.7, 54.2, 45.8 -1,1,a-cure-i1,2017-18,1.3,10.599999999999994,Tewksbury - Tewksbury Memorial High,02950505, 2.5, 3.3, 3.6, 89.4, 0.0, 0.2, 1.0, 51.9, 48.1 -4.338308457711443,4.34,a-cure-i1,2017-18,10.9,40.2,Tisbury - Tisbury Elementary,02960005, 3.3, 0.7, 25.5, 59.8, 2.3, 0.0, 8.5, 52.9, 47.1 -1,1,a-cure-i1,2017-18,0.0,7.900000000000006,Topsfield - Proctor Elementary,02980005, 1.2, 2.0, 1.6, 92.1, 0.0, 0.0, 3.1, 47.2, 52.8 -1,1,a-cure-i1,2017-18,3.0,6.0,Topsfield - Steward Elementary,02980010, 0.3, 1.3, 1.6, 94.0, 1.0, 0.0, 1.8, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,11.099999999999994,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.5, 0.7, 5.3, 88.9, 0.2, 0.1, 4.3, 56.9, 42.9 -1,1,a-cure-i1,2017-18,0.0,5.799999999999997,Triton - Newbury Elementary,07730020, 0.9, 1.3, 2.0, 94.2, 0.0, 0.7, 0.9, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,5.099999999999994,Triton - Pine Grove,07730025, 0.0, 0.9, 1.3, 94.9, 0.0, 0.0, 2.9, 51.9, 48.1 -1,1,a-cure-i1,2017-18,0.0,13.299999999999997,Triton - Salisbury Elementary,07730015, 2.3, 3.2, 4.5, 86.7, 0.2, 0.4, 2.7, 51.5, 48.5 -14.117647058823536,5,a-cure-i1,2017-18,6.0,6.799999999999997,Triton - Triton Regional High School,07730505, 1.0, 1.7, 3.1, 93.2, 0.3, 0.0, 0.8, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,7.900000000000006,Triton - Triton Regional Middle School,07730405, 1.4, 1.2, 3.1, 92.1, 0.2, 0.2, 1.7, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,31.099999999999994,Truro - Truro Central,03000005, 3.9, 0.0, 12.6, 68.9, 0.0, 0.0, 14.6, 43.7, 56.3 -1,1,a-cure-i1,2017-18,0.0,19.299999999999997,Tyngsborough - Tyngsborough Elementary,03010020, 4.5, 6.4, 5.1, 80.7, 0.0, 0.0, 3.3, 54.9, 45.1 -1,1,a-cure-i1,2017-18,0.0,13.700000000000003,Tyngsborough - Tyngsborough High School,03010505, 1.5, 5.3, 3.4, 86.3, 0.4, 0.0, 3.2, 49.4, 50.6 -1,1,a-cure-i1,2017-18,2.0,16.900000000000006,Tyngsborough - Tyngsborough Middle,03010305, 2.9, 6.6, 4.4, 83.1, 0.2, 0.0, 2.7, 50.4, 49.6 -3.559251559251559,3.56,a-cure-i1,2017-18,21.4,96.2,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 45.4, 6.6, 41.2, 3.8, 0.2, 0.6, 2.2, 52.0, 48.0 -3.174089068825911,3.17,a-cure-i1,2017-18,19.6,98.8,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 54.0, 2.0, 40.3, 1.2, 0.4, 0.0, 2.0, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,19.200000000000003,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 3.8, 80.8, 3.8, 0.0, 11.5, 53.8, 46.2 -1,1,a-cure-i1,2017-18,3.1,19.0,Up-Island Regional - West Tisbury Elementary,07740020, 1.1, 0.9, 7.1, 81.0, 3.4, 0.0, 6.5, 54.5, 45.5 -1,1,a-cure-i1,2017-18,1.9,14.400000000000006,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 4.5, 2.1, 2.1, 85.6, 0.6, 0.0, 5.2, 62.1, 37.9 -1,1,a-cure-i1,2017-18,0.0,32.599999999999994,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 26.1, 67.4, 0.0, 2.2, 4.3, 32.6, 67.4 -1,1,a-cure-i1,2017-18,0.0,10.900000000000006,Uxbridge - McCloskey Middle School,03040015, 1.0, 2.5, 4.7, 89.1, 0.2, 0.0, 2.5, 54.8, 45.2 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,Uxbridge - Taft Early Learning Center,03040005, 1.8, 0.9, 4.4, 90.7, 0.0, 0.0, 2.2, 52.5, 47.5 -1,1,a-cure-i1,2017-18,0.0,8.5,Uxbridge - Uxbridge High,03040505, 2.1, 1.2, 2.7, 91.5, 0.4, 0.2, 1.9, 54.1, 45.9 -1,1,a-cure-i1,2017-18,0.0,7.0,Uxbridge - Whitin Elementary School,03040020, 0.8, 0.8, 3.1, 93.0, 0.8, 0.0, 1.6, 52.7, 47.0 -3.8453500522466038,3.85,a-cure-i1,2017-18,23.0,95.7,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 16.8, 0.6, 76.7, 4.3, 0.0, 0.0, 1.6, 46.6, 53.4 -1,1,a-cure-i1,2017-18,0.0,11.799999999999997,Wachusett - Central Tree Middle,07750310, 1.1, 2.2, 3.2, 88.2, 0.0, 0.8, 4.6, 50.8, 49.2 -1,1,a-cure-i1,2017-18,1.0,11.799999999999997,Wachusett - Chocksett Middle School,07750315, 1.4, 2.5, 6.0, 88.2, 0.0, 0.0, 1.9, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,15.5,Wachusett - Davis Hill Elementary,07750018, 2.9, 1.1, 7.1, 84.5, 0.4, 0.0, 4.0, 52.5, 47.5 -1,1,a-cure-i1,2017-18,0.0,14.299999999999997,Wachusett - Dawson,07750020, 2.4, 3.9, 5.0, 85.7, 0.0, 0.0, 3.0, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,17.299999999999997,Wachusett - Early Childhood Center,07750001, 1.9, 4.9, 7.4, 82.7, 0.0, 0.6, 2.5, 58.0, 42.0 -1,1,a-cure-i1,2017-18,0.0,14.0,Wachusett - Glenwood Elementary School,07750060, 2.0, 2.9, 5.0, 86.0, 0.6, 0.0, 3.5, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,12.299999999999997,Wachusett - Houghton Elementary,07750027, 1.9, 1.9, 5.9, 87.7, 0.0, 0.0, 2.7, 53.6, 46.4 -1,1,a-cure-i1,2017-18,0.0,14.5,Wachusett - Leroy E.Mayo,07750032, 2.7, 4.8, 5.2, 85.5, 0.0, 0.0, 1.7, 52.6, 47.4 -1,1,a-cure-i1,2017-18,2.3,13.200000000000003,Wachusett - Mountview Middle,07750305, 2.0, 3.7, 5.1, 86.8, 0.2, 0.0, 2.1, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,10.799999999999997,Wachusett - Naquag Elementary School,07750005, 1.2, 1.2, 6.4, 89.2, 0.3, 0.0, 1.8, 46.8, 53.2 -1,1,a-cure-i1,2017-18,0.0,13.5,Wachusett - Paxton Center,07750040, 2.1, 2.6, 7.3, 86.5, 0.0, 0.0, 1.5, 53.2, 46.8 -1,1,a-cure-i1,2017-18,3.3,8.0,Wachusett - Thomas Prince,07750045, 0.7, 1.2, 4.0, 92.0, 0.0, 0.0, 2.0, 48.4, 51.6 -1,1,a-cure-i1,2017-18,0.7,11.799999999999997,Wachusett - Wachusett Regional High,07750505, 2.2, 3.6, 4.2, 88.2, 0.0, 0.1, 1.7, 46.9, 53.1 -1,1,a-cure-i1,2017-18,0.0,10.900000000000006,Wakefield - Dolbeare,03050005, 0.9, 2.2, 5.6, 89.1, 0.2, 0.0, 2.0, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,20.599999999999994,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 6.3, 9.5, 79.4, 0.0, 0.8, 4.0, 53.2, 46.8 -1,1,a-cure-i1,2017-18,1.1,15.599999999999994,Wakefield - Galvin Middle School,03050310, 2.8, 3.1, 6.9, 84.4, 0.1, 0.1, 2.7, 51.3, 48.7 -1,1,a-cure-i1,2017-18,0.0,18.599999999999994,Wakefield - Greenwood,03050020, 1.4, 5.0, 5.4, 81.4, 0.0, 0.0, 6.8, 51.1, 48.9 -1,1,a-cure-i1,2017-18,4.2,12.299999999999997,Wakefield - Wakefield Memorial High,03050505, 3.3, 3.2, 3.5, 87.7, 0.2, 0.2, 1.8, 47.8, 52.2 -1,1,a-cure-i1,2017-18,0.0,11.200000000000003,Wakefield - Walton,03050040, 2.0, 2.4, 4.4, 88.8, 0.0, 0.5, 2.0, 54.1, 45.9 -1,1,a-cure-i1,2017-18,4.1,23.599999999999994,Wakefield - Woodville School,03050015, 3.5, 4.8, 8.8, 76.4, 0.5, 0.5, 5.5, 52.0, 47.8 -1,1,a-cure-i1,2017-18,0.0,8.700000000000003,Wales - Wales Elementary,03060005, 1.2, 0.6, 3.1, 91.3, 0.6, 0.0, 3.1, 57.1, 42.9 -1,1,a-cure-i1,2017-18,0.0,15.900000000000006,Walpole - Bird Middle,03070305, 2.9, 3.5, 6.7, 84.1, 1.0, 0.0, 1.8, 49.9, 50.1 -1,1,a-cure-i1,2017-18,0.0,19.900000000000006,Walpole - Boyden,03070010, 6.5, 5.1, 5.9, 80.1, 0.6, 0.0, 2.0, 46.1, 53.9 -1,1,a-cure-i1,2017-18,0.0,28.799999999999997,Walpole - Daniel Feeney Preschool Center,03070002, 2.7, 13.7, 5.5, 71.2, 0.0, 0.0, 6.8, 57.5, 42.5 -1,1,a-cure-i1,2017-18,0.0,18.099999999999994,Walpole - Eleanor N Johnson Middle,03070310, 1.8, 9.6, 3.1, 81.9, 0.0, 0.0, 3.6, 50.9, 49.1 -1,1,a-cure-i1,2017-18,0.0,18.599999999999994,Walpole - Elm Street School,03070005, 2.8, 7.7, 4.9, 81.4, 0.0, 0.0, 3.2, 51.3, 48.7 -1,1,a-cure-i1,2017-18,0.0,24.0,Walpole - Fisher,03070015, 2.4, 13.0, 4.8, 76.0, 0.0, 0.0, 3.7, 53.7, 46.3 -1,1,a-cure-i1,2017-18,0.0,14.099999999999994,Walpole - Old Post Road,03070018, 2.6, 2.1, 6.0, 85.9, 0.5, 0.0, 2.9, 49.4, 50.6 -1,1,a-cure-i1,2017-18,2.2,14.799999999999997,Walpole - Walpole High,03070505, 4.3, 4.1, 5.1, 85.2, 0.1, 0.0, 1.1, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,35.7,Waltham - Douglas MacArthur Elementary School,03080032, 9.5, 6.4, 15.0, 64.3, 0.2, 0.0, 4.5, 55.7, 44.3 -1,1,a-cure-i1,2017-18,3.3,84.8,Waltham - Henry Whittemore Elementary School,03080065, 4.2, 3.5, 75.5, 15.2, 0.0, 0.0, 1.6, 53.1, 46.9 -1,1,a-cure-i1,2017-18,3.1,45.7,Waltham - James Fitzgerald Elementary School,03080060, 6.6, 5.0, 30.1, 54.3, 0.0, 0.0, 3.9, 50.2, 49.8 -3.8177874186550973,3.82,a-cure-i1,2017-18,11.0,46.1,Waltham - John F Kennedy Middle,03080404, 10.7, 5.3, 28.7, 53.9, 0.0, 0.0, 1.4, 51.4, 48.6 -1,1,a-cure-i1,2017-18,3.4,60.4,Waltham - John W. McDevitt Middle School,03080415, 8.9, 3.6, 45.6, 39.6, 0.0, 0.2, 2.1, 49.4, 50.6 -1.9439252336448598,1.94,a-cure-i1,2017-18,6.5,53.5,Waltham - Northeast Elementary School,03080040, 12.0, 11.1, 27.8, 46.5, 0.3, 0.0, 2.2, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.5,60.7,Waltham - Thomas R Plympton Elementary School,03080050, 11.6, 4.5, 42.2, 39.3, 0.0, 0.0, 2.4, 52.1, 47.9 -13.386880856760374,5,a-cure-i1,2017-18,62.5,74.7,Waltham - Waltham Public Schools Dual Language Program,03080001, 2.5, 2.5, 68.4, 25.3, 0.0, 0.0, 1.3, 60.8, 39.2 -1.9028475711892798,1.9,a-cure-i1,2017-18,7.1000000000000005,59.7,Waltham - Waltham Sr High,03080505, 11.3, 4.7, 41.0, 40.3, 0.2, 0.2, 2.3, 54.2, 45.8 -1.3980582524271845,1.4,a-cure-i1,2017-18,5.4,61.8,Waltham - William F. Stanley Elementary School,03080005, 6.9, 8.1, 45.4, 38.2, 0.0, 0.0, 1.4, 54.4, 45.6 -1,1,a-cure-i1,2017-18,0.0,11.400000000000006,Ware - Stanley M Koziol Elementary School,03090020, 0.7, 0.5, 5.8, 88.6, 0.0, 0.0, 4.4, 50.2, 49.8 -6.4,5,a-cure-i1,2017-18,6.2,15.5,Ware - Ware Junior/Senior High School,03090505, 2.6, 0.9, 7.7, 84.5, 0.2, 0.6, 3.4, 50.2, 49.8 -1,1,a-cure-i1,2017-18,0.0,13.400000000000006,Ware - Ware Middle School,03090305, 2.4, 0.0, 6.3, 86.6, 0.0, 0.3, 4.5, 49.3, 50.7 -1,1,a-cure-i1,2017-18,1.4,28.099999999999994,Wareham - John William Decas,03100003, 6.2, 0.7, 7.8, 71.9, 1.6, 0.0, 11.8, 50.8, 49.2 -1,1,a-cure-i1,2017-18,3.2,28.400000000000006,Wareham - Minot Forest,03100017, 8.8, 1.4, 6.5, 71.6, 0.6, 0.0, 11.0, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,22.200000000000003,Wareham - Wareham Cooperative Alternative School,03100315, 7.9, 0.0, 9.5, 77.8, 0.0, 0.0, 4.8, 60.3, 39.7 -1,1,a-cure-i1,2017-18,4.6,23.799999999999997,Wareham - Wareham Middle,03100305, 7.6, 0.6, 6.2, 76.2, 1.0, 0.1, 8.4, 52.2, 47.8 -3.607843137254903,3.61,a-cure-i1,2017-18,6.9,30.599999999999994,Wareham - Wareham Senior High,03100505, 8.7, 2.2, 7.6, 69.4, 1.5, 0.2, 10.3, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,32.599999999999994,Watertown - Cunniff,03140015, 3.6, 8.8, 16.9, 67.4, 0.3, 0.0, 2.9, 53.4, 46.6 -1,1,a-cure-i1,2017-18,2.1,35.900000000000006,Watertown - Hosmer,03140020, 3.4, 9.2, 14.6, 64.1, 0.4, 0.1, 8.1, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,32.900000000000006,Watertown - James Russell Lowell,03140025, 2.4, 8.9, 13.9, 67.1, 0.2, 0.0, 7.4, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,29.700000000000003,Watertown - Watertown High,03140505, 3.9, 6.7, 15.4, 70.3, 1.0, 0.0, 2.7, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,33.599999999999994,Watertown - Watertown Middle,03140305, 4.9, 8.7, 14.4, 66.4, 0.4, 0.2, 4.9, 50.7, 49.3 -1,1,a-cure-i1,2017-18,3.1,26.599999999999994,Wayland - Claypit Hill School,03150005, 5.4, 10.9, 4.4, 73.4, 0.0, 0.6, 5.4, 49.3, 50.7 -4.630225080385853,4.63,a-cure-i1,2017-18,9.0,31.099999999999994,Wayland - Happy Hollow School,03150015, 5.7, 14.5, 4.7, 68.9, 0.0, 0.3, 6.0, 53.9, 46.1 -2.6035502958579886,2.6,a-cure-i1,2017-18,5.5,33.8,Wayland - Loker School,03150020, 4.3, 20.3, 4.6, 66.2, 0.0, 0.4, 4.3, 54.8, 45.2 -2.814332247557003,2.81,a-cure-i1,2017-18,5.4,30.700000000000003,Wayland - Wayland High School,03150505, 4.7, 16.0, 4.4, 69.3, 0.0, 0.1, 5.5, 52.0, 48.0 -5.775147928994083,5,a-cure-i1,2017-18,12.2,33.8,Wayland - Wayland Middle School,03150305, 6.1, 17.7, 3.8, 66.2, 0.0, 0.2, 6.0, 49.9, 50.1 -1,1,a-cure-i1,2017-18,2.8,35.3,Webster - Bartlett High School,03160505, 3.9, 2.7, 21.2, 64.7, 0.0, 0.0, 7.5, 54.7, 45.3 -1,1,a-cure-i1,2017-18,0.0,38.8,Webster - Park Avenue Elementary,03160015, 4.2, 1.3, 27.1, 61.2, 0.4, 0.1, 5.7, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,42.4,Webster - Webster Middle School,03160315, 6.1, 2.5, 26.3, 57.6, 0.0, 0.5, 7.0, 45.3, 54.7 -10.42051282051282,5,a-cure-i1,2017-18,12.7,19.5,Wellesley - Ernest F Upham,03170050, 3.4, 10.2, 1.7, 80.5, 0.0, 0.0, 4.2, 53.0, 47.0 -13.109243697478993,5,a-cure-i1,2017-18,19.5,23.799999999999997,Wellesley - Hunnewell,03170025, 3.6, 5.2, 4.8, 76.2, 0.0, 0.0, 10.1, 48.8, 51.2 -2.473067915690866,2.47,a-cure-i1,2017-18,6.6,42.7,Wellesley - John D Hardy,03170020, 2.4, 24.4, 6.1, 57.3, 0.0, 0.0, 9.8, 50.2, 49.5 -1,1,a-cure-i1,2017-18,0.0,39.2,Wellesley - Joseph E Fiske,03170015, 3.0, 21.6, 7.8, 60.8, 0.3, 0.0, 6.5, 48.2, 51.8 -1,1,a-cure-i1,2017-18,4.8,21.5,Wellesley - Katharine Lee Bates,03170005, 4.0, 8.1, 2.7, 78.5, 0.0, 0.0, 6.7, 44.9, 55.1 -1,1,a-cure-i1,2017-18,0.0,34.5,Wellesley - Schofield,03170045, 5.6, 16.2, 4.5, 65.5, 0.3, 0.0, 8.0, 46.2, 53.8 -1,1,a-cure-i1,2017-18,4.7,37.6,Wellesley - Sprague Elementary School,03170048, 3.9, 17.0, 5.5, 62.4, 0.0, 0.0, 11.2, 52.0, 48.0 -3.9277978339350175,3.93,a-cure-i1,2017-18,6.8,27.700000000000003,Wellesley - Wellesley Middle,03170305, 3.5, 12.1, 6.0, 72.3, 0.0, 0.0, 6.1, 50.9, 49.1 -5.033707865168539,5,a-cure-i1,2017-18,8.4,26.700000000000003,Wellesley - Wellesley Sr High,03170505, 5.1, 12.2, 4.5, 73.3, 0.0, 0.1, 4.8, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,16.099999999999994,Wellfleet - Wellfleet Elementary,03180005, 0.9, 1.8, 5.4, 83.9, 0.0, 0.0, 8.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,23.0,West Boylston - Major Edwards Elementary,03220005, 2.4, 2.6, 12.1, 77.0, 0.0, 0.0, 5.9, 49.9, 50.1 -14.027397260273979,5,a-cure-i1,2017-18,12.8,14.599999999999994,West Boylston - West Boylston Junior/Senior High,03220505, 2.1, 1.0, 8.4, 85.4, 0.2, 0.0, 2.9, 47.5, 52.5 -1,1,a-cure-i1,2017-18,0.0,17.0,West Bridgewater - Howard School,03230305, 5.9, 0.7, 2.4, 83.0, 0.7, 0.3, 6.9, 46.5, 53.5 -1,1,a-cure-i1,2017-18,0.0,12.099999999999994,West Bridgewater - Rose L Macdonald,03230003, 4.9, 1.2, 2.4, 87.9, 0.0, 0.0, 3.6, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,15.599999999999994,West Bridgewater - Spring Street School,03230005, 1.4, 1.4, 5.7, 84.4, 0.0, 0.0, 7.1, 54.6, 45.4 -1,1,a-cure-i1,2017-18,0.0,10.5,West Bridgewater - West Bridgewater Junior/Senior,03230505, 4.2, 1.1, 2.9, 89.5, 0.2, 0.2, 2.1, 47.4, 52.6 -1,1,a-cure-i1,2017-18,0.0,25.0,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 25.0, 75.0, 0.0, 0.0, 0.0, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,41.8,West Springfield - Cowing Early Childhood,03320001, 7.4, 10.7, 19.7, 58.2, 0.0, 0.0, 4.1, 60.7, 39.3 -1,1,a-cure-i1,2017-18,0.0,29.099999999999994,West Springfield - John Ashley,03320005, 1.7, 6.4, 17.9, 70.9, 0.0, 0.0, 3.0, 46.2, 53.8 -1,1,a-cure-i1,2017-18,0.0,29.099999999999994,West Springfield - John R Fausey,03320010, 3.5, 5.0, 16.3, 70.9, 0.2, 0.2, 3.9, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,46.0,West Springfield - Memorial,03320025, 4.6, 9.6, 27.6, 54.0, 0.0, 0.0, 4.2, 55.6, 44.4 -1,1,a-cure-i1,2017-18,0.0,28.599999999999994,West Springfield - Mittineague,03320030, 4.3, 1.2, 18.6, 71.4, 0.0, 0.0, 4.3, 44.7, 55.3 -1,1,a-cure-i1,2017-18,0.0,40.0,West Springfield - Philip G Coburn,03320007, 5.4, 15.8, 16.0, 60.0, 0.0, 0.0, 2.7, 48.3, 51.7 -1,1,a-cure-i1,2017-18,0.0,16.700000000000003,West Springfield - Tatham,03320040, 0.8, 2.9, 8.4, 83.3, 0.0, 0.0, 4.6, 48.5, 51.5 -1,1,a-cure-i1,2017-18,4.6,29.299999999999997,West Springfield - West Springfield High,03320505, 3.7, 7.3, 16.5, 70.7, 0.0, 0.0, 1.8, 51.5, 48.5 -1,1,a-cure-i1,2017-18,1.4,31.599999999999994,West Springfield - West Springfield Middle,03320305, 3.3, 7.2, 18.7, 68.4, 0.2, 0.0, 2.1, 54.3, 45.7 -1,1,a-cure-i1,2017-18,0.0,46.2,Westborough - Annie E Fales,03210010, 0.6, 38.5, 3.0, 53.8, 0.6, 0.0, 3.6, 48.5, 51.5 -1,1,a-cure-i1,2017-18,0.0,59.8,Westborough - Elsie A Hastings Elementary,03210025, 1.6, 45.6, 10.2, 40.2, 0.2, 0.0, 2.2, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,50.5,Westborough - J Harding Armstrong,03210005, 2.4, 41.0, 5.2, 49.5, 0.0, 0.0, 1.9, 54.0, 46.0 -1,1,a-cure-i1,2017-18,0.0,45.1,Westborough - Mill Pond School,03210045, 2.0, 34.5, 5.7, 54.9, 0.0, 0.1, 2.8, 48.2, 51.8 -1,1,a-cure-i1,2017-18,2.6,41.8,Westborough - Sarah W Gibbons Middle,03210305, 1.2, 29.2, 6.7, 58.2, 0.0, 0.0, 4.8, 51.7, 48.3 -2.85,2.85,a-cure-i1,2017-18,5.7,32.0,Westborough - Westborough High,03210505, 2.4, 22.3, 4.6, 68.0, 0.0, 0.1, 2.7, 50.8, 49.2 -1,1,a-cure-i1,2017-18,0.0,33.599999999999994,Westfield - Abner Gibbs,03250020, 4.0, 8.1, 18.4, 66.4, 0.0, 0.0, 3.1, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,33.7,Westfield - Fort Meadow Early Childhood Center,03250003, 0.5, 8.7, 23.0, 66.3, 0.0, 0.0, 1.5, 60.7, 39.3 -2.766917293233083,2.77,a-cure-i1,2017-18,6.9,39.9,Westfield - Franklin Ave,03250015, 4.4, 3.2, 30.2, 60.1, 0.4, 0.0, 1.6, 48.0, 52.0 -1,1,a-cure-i1,2017-18,0.0,26.799999999999997,Westfield - Highland,03250025, 2.4, 8.6, 14.5, 73.2, 0.0, 0.0, 1.3, 53.9, 46.1 -1,1,a-cure-i1,2017-18,0.0,17.700000000000003,Westfield - Munger Hill,03250033, 2.9, 1.8, 10.8, 82.3, 0.3, 0.0, 1.8, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,18.0,Westfield - North Middle School,03250305, 1.6, 1.9, 11.4, 82.0, 0.0, 0.1, 3.0, 50.4, 49.6 -1,1,a-cure-i1,2017-18,3.7,30.799999999999997,Westfield - Paper Mill,03250036, 3.2, 0.5, 23.1, 69.2, 0.2, 0.2, 3.6, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,10.599999999999994,Westfield - Russell Elementary School,03250055, 2.5, 0.6, 6.8, 89.4, 0.0, 0.0, 0.6, 52.8, 47.2 -1,1,a-cure-i1,2017-18,0.0,23.599999999999994,Westfield - South Middle School,03250310, 2.2, 3.4, 17.5, 76.4, 0.0, 0.0, 0.5, 52.9, 47.1 -1,1,a-cure-i1,2017-18,3.7,17.599999999999994,Westfield - Southampton Road,03250040, 0.9, 2.1, 11.3, 82.4, 0.0, 0.0, 3.3, 49.6, 50.4 -1,1,a-cure-i1,2017-18,2.4,20.799999999999997,Westfield - Westfield High,03250505, 2.6, 3.8, 12.5, 79.2, 0.2, 0.0, 1.7, 46.0, 53.9 -1,1,a-cure-i1,2017-18,0.0,12.599999999999994,Westfield - Westfield Technical Academy,03250605, 1.8, 1.1, 7.6, 87.4, 0.2, 0.2, 1.7, 62.8, 37.2 -1,1,a-cure-i1,2017-18,0.0,23.700000000000003,Westford - Abbot Elementary,03260004, 0.3, 19.1, 1.4, 76.3, 0.0, 0.0, 3.0, 49.6, 50.4 -1,1,a-cure-i1,2017-18,4.6,33.900000000000006,Westford - Blanchard Middle,03260310, 0.8, 30.0, 1.4, 66.1, 0.2, 0.2, 1.4, 52.7, 47.3 -1,1,a-cure-i1,2017-18,0.0,30.900000000000006,Westford - Col John Robinson,03260025, 1.0, 26.8, 0.7, 69.1, 0.0, 0.0, 2.4, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,46.3,Westford - Day Elementary,03260007, 1.1, 38.8, 1.7, 53.7, 0.0, 0.0, 4.8, 50.3, 49.7 -1,1,a-cure-i1,2017-18,0.0,37.9,Westford - John A. Crisafulli Elementary School,03260045, 2.3, 27.7, 2.6, 62.1, 0.0, 0.0, 5.2, 47.2, 52.8 -1,1,a-cure-i1,2017-18,0.0,47.3,Westford - Millennium Elementary,03260013, 2.7, 34.5, 2.7, 52.7, 0.0, 0.0, 7.3, 59.1, 40.9 -1,1,a-cure-i1,2017-18,0.0,28.900000000000006,Westford - Nabnasset,03260015, 0.3, 21.9, 2.4, 71.1, 0.0, 0.0, 4.3, 52.0, 48.0 -2.004728132387707,2.0,a-cure-i1,2017-18,5.3,42.3,Westford - Rita E. Miller Elementary School,03260055, 0.9, 31.0, 3.7, 57.7, 0.0, 0.0, 6.7, 49.4, 50.6 -1,1,a-cure-i1,2017-18,2.2,31.099999999999994,Westford - Stony Brook School,03260330, 1.1, 26.6, 0.6, 68.9, 0.0, 0.0, 2.8, 52.4, 47.6 -3.750915750915751,3.75,a-cure-i1,2017-18,6.3999999999999995,27.299999999999997,Westford - Westford Academy,03260505, 0.8, 21.3, 1.5, 72.7, 0.0, 0.0, 3.7, 50.7, 49.3 -1,1,a-cure-i1,2017-18,0.0,6.599999999999994,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.8, 4.1, 93.4, 0.0, 0.0, 1.6, 53.3, 46.7 -1,1,a-cure-i1,2017-18,0.0,40.7,Weston - Country,03300010, 6.3, 15.9, 11.3, 59.3, 0.0, 0.0, 7.3, 45.0, 55.0 -3.035230352303523,3.04,a-cure-i1,2017-18,7.0,36.9,Weston - Field Elementary School,03300012, 7.7, 15.4, 7.4, 63.1, 0.0, 0.0, 6.5, 52.9, 47.1 -8.169184290030213,5,a-cure-i1,2017-18,16.9,33.099999999999994,Weston - Weston High,03300505, 6.1, 16.9, 5.0, 66.9, 0.4, 0.0, 4.8, 52.4, 47.6 -6.419753086419752,5,a-cure-i1,2017-18,13.0,32.400000000000006,Weston - Weston Middle,03300305, 6.4, 16.5, 4.1, 67.6, 0.4, 0.0, 5.0, 49.8, 50.2 -1,1,a-cure-i1,2017-18,0.0,29.200000000000003,Weston - Woodland,03300015, 5.7, 14.4, 6.4, 70.8, 0.0, 0.3, 2.3, 52.7, 47.3 -1,1,a-cure-i1,2017-18,0.0,7.5,Westport - Alice A Macomber,03310015, 0.8, 0.0, 2.7, 92.5, 0.0, 0.0, 4.0, 54.7, 45.3 -1,1,a-cure-i1,2017-18,0.0,10.799999999999997,Westport - Westport Elementary,03310030, 0.0, 0.4, 3.9, 89.2, 0.2, 0.0, 6.3, 53.8, 46.2 -1,1,a-cure-i1,2017-18,0.0,8.900000000000006,Westport - Westport Junior/Senior High School,03310515, 0.7, 1.5, 2.7, 91.1, 0.5, 0.0, 3.5, 54.9, 45.1 -5.309090909090909,5,a-cure-i1,2017-18,7.3,22.0,Westwood - Deerfield School,03350010, 1.0, 9.0, 5.0, 78.0, 0.0, 0.0, 7.0, 60.0, 40.0 -1,1,a-cure-i1,2017-18,0.0,25.599999999999994,Westwood - Downey,03350012, 0.4, 17.2, 3.2, 74.4, 0.4, 0.0, 4.4, 57.6, 42.4 -1,1,a-cure-i1,2017-18,3.4,22.200000000000003,Westwood - E W Thurston Middle,03350305, 4.0, 11.1, 3.9, 77.8, 0.0, 0.0, 3.2, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,19.099999999999994,Westwood - Martha Jones,03350017, 0.7, 10.2, 3.4, 80.9, 0.0, 0.0, 4.8, 50.5, 49.5 -1,1,a-cure-i1,2017-18,0.0,21.400000000000006,Westwood - Paul Hanlon,03350015, 0.9, 13.6, 3.6, 78.6, 0.0, 0.0, 3.2, 52.3, 47.7 -6.028985507246378,5,a-cure-i1,2017-18,5.2,13.799999999999997,Westwood - Westwood High,03350505, 3.3, 6.5, 2.4, 86.2, 0.0, 0.0, 1.6, 46.4, 53.5 -1,1,a-cure-i1,2017-18,0.0,28.299999999999997,Westwood - Westwood Integrated Preschool,03350050, 0.0, 15.2, 6.5, 71.7, 0.0, 0.0, 6.5, 71.7, 28.3 -1,1,a-cure-i1,2017-18,0.0,16.700000000000003,Westwood - William E Sheehan,03350025, 0.6, 6.3, 4.7, 83.3, 0.0, 0.0, 5.0, 52.2, 47.8 -1,1,a-cure-i1,2017-18,1.7,25.299999999999997,Weymouth - Abigail Adams Middle School,03360310, 7.2, 4.3, 10.0, 74.7, 0.3, 0.1, 3.3, 48.9, 51.1 -1,1,a-cure-i1,2017-18,0.0,25.099999999999994,Weymouth - Academy Avenue,03360005, 3.6, 7.2, 10.1, 74.9, 0.0, 0.0, 4.2, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,24.0,Weymouth - Frederick C Murphy,03360050, 6.5, 1.2, 8.9, 76.0, 0.0, 0.0, 7.3, 52.4, 47.6 -4.305647840531562,4.31,a-cure-i1,2017-18,8.1,30.099999999999994,Weymouth - Johnson Early Childhood Center,03360003, 4.7, 13.5, 6.7, 69.9, 0.5, 0.0, 4.7, 56.5, 43.5 -1,1,a-cure-i1,2017-18,0.0,20.200000000000003,Weymouth - Lawrence W Pingree,03360065, 5.7, 4.7, 5.2, 79.8, 0.5, 0.0, 4.1, 46.6, 53.4 -1,1,a-cure-i1,2017-18,2.6,22.599999999999994,Weymouth - Maria Weston Chapman Middle School,03360020, 6.1, 4.9, 7.3, 77.4, 0.2, 0.2, 3.9, 52.8, 47.1 -1,1,a-cure-i1,2017-18,0.0,29.0,Weymouth - Ralph Talbot,03360085, 7.3, 8.9, 10.5, 71.0, 0.0, 0.4, 2.0, 55.2, 44.8 -1,1,a-cure-i1,2017-18,0.0,19.700000000000003,Weymouth - Thomas V Nash,03360060, 4.4, 4.9, 5.9, 80.3, 0.0, 0.0, 4.4, 43.3, 56.7 -1,1,a-cure-i1,2017-18,0.0,33.3,Weymouth - Thomas W. Hamilton Primary School,03360105, 3.4, 12.3, 11.4, 66.7, 1.1, 0.0, 5.1, 50.4, 49.6 -1,1,a-cure-i1,2017-18,0.0,19.700000000000003,Weymouth - Wessagusset,03360110, 1.8, 5.7, 7.2, 80.3, 0.4, 0.0, 4.7, 53.8, 46.2 -1,1,a-cure-i1,2017-18,2.5,20.799999999999997,Weymouth - Weymouth High School,03360505, 5.2, 4.9, 7.9, 79.2, 0.1, 0.0, 2.7, 51.5, 48.5 -1,1,a-cure-i1,2017-18,0.0,51.6,Weymouth - William Seach,03360080, 20.1, 9.4, 16.4, 48.4, 0.3, 0.0, 5.3, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,10.0,Whately - Whately Elementary,03370005, 0.0, 0.7, 5.7, 90.0, 0.0, 0.0, 3.6, 48.6, 51.4 -1,1,a-cure-i1,2017-18,4.5,5.299999999999997,Whitman-Hanson - Hanson Middle School,07800315, 1.0, 0.8, 2.5, 94.7, 0.0, 0.0, 1.0, 56.0, 44.0 -1,1,a-cure-i1,2017-18,0.0,7.700000000000003,Whitman-Hanson - Indian Head,07800035, 0.3, 1.2, 4.3, 92.3, 0.3, 0.0, 1.5, 50.9, 49.1 -1,1,a-cure-i1,2017-18,4.4,14.0,Whitman-Hanson - John H Duval,07800030, 1.4, 1.6, 7.0, 86.0, 0.2, 0.2, 3.6, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,13.0,Whitman-Hanson - Louise A Conley,07800010, 3.2, 0.9, 5.7, 87.0, 0.9, 0.0, 2.3, 49.6, 50.4 -1,1,a-cure-i1,2017-18,0.0,10.099999999999994,Whitman-Hanson - Maquan Elementary,07800025, 1.1, 0.7, 3.9, 89.9, 0.2, 0.0, 4.1, 55.5, 44.5 -1,1,a-cure-i1,2017-18,0.0,9.299999999999997,Whitman-Hanson - Whitman Hanson Regional,07800505, 2.2, 1.4, 2.8, 90.7, 0.3, 0.2, 2.4, 47.8, 52.2 -1,1,a-cure-i1,2017-18,0.0,14.799999999999997,Whitman-Hanson - Whitman Middle,07800310, 4.2, 1.0, 5.6, 85.2, 0.9, 0.2, 3.0, 56.9, 43.1 -1,1,a-cure-i1,2017-18,1.2,24.700000000000003,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 1.4, 1.0, 18.9, 75.3, 0.2, 0.0, 3.1, 54.5, 45.5 -1,1,a-cure-i1,2017-18,0.0,6.700000000000003,Williamsburg - Anne T. Dunphy School,03400020, 1.8, 1.2, 3.7, 93.3, 0.0, 0.0, 0.0, 49.7, 50.3 -4.758974358974359,4.76,a-cure-i1,2017-18,5.8,19.5,Williamstown - Williamstown Elementary,03410010, 1.8, 3.3, 6.3, 80.5, 0.0, 0.0, 8.1, 52.3, 47.7 -1,1,a-cure-i1,2017-18,0.0,15.599999999999994,Wilmington - Boutwell,03420005, 0.6, 8.1, 3.8, 84.4, 0.0, 0.0, 3.1, 47.5, 52.5 -1,1,a-cure-i1,2017-18,4.9,9.200000000000003,Wilmington - North Intermediate,03420060, 1.0, 3.0, 1.7, 90.8, 0.0, 0.0, 3.6, 51.8, 48.2 -1,1,a-cure-i1,2017-18,4.2,17.099999999999994,Wilmington - Shawsheen Elementary,03420025, 1.7, 5.8, 6.1, 82.9, 0.0, 0.0, 3.5, 51.0, 49.0 -1,1,a-cure-i1,2017-18,0.0,18.599999999999994,Wilmington - West Intermediate,03420080, 0.8, 6.1, 9.3, 81.4, 0.0, 0.0, 2.4, 50.2, 49.8 -11.940298507462682,5,a-cure-i1,2017-18,10.0,13.400000000000006,Wilmington - Wildwood,03420015, 3.1, 4.1, 2.6, 86.6, 0.0, 0.5, 3.1, 53.6, 46.4 -1,1,a-cure-i1,2017-18,4.6,14.0,Wilmington - Wilmington High,03420505, 2.3, 5.9, 3.2, 86.0, 0.1, 0.1, 2.3, 49.0, 51.0 -1,1,a-cure-i1,2017-18,0.0,12.599999999999994,Wilmington - Wilmington Middle School,03420330, 1.7, 3.1, 4.2, 87.4, 0.2, 0.0, 3.3, 52.5, 47.5 -1,1,a-cure-i1,2017-18,0.0,14.599999999999994,Wilmington - Woburn Street,03420020, 2.1, 5.0, 3.7, 85.4, 0.3, 0.0, 3.7, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.0,12.400000000000006,Winchendon - Memorial,03430040, 0.7, 2.0, 4.2, 87.6, 0.0, 0.0, 5.5, 55.4, 44.6 -1,1,a-cure-i1,2017-18,0.0,13.799999999999997,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 6.9, 86.2, 0.0, 0.0, 6.9, 58.6, 41.4 -5.763975155279505,5,a-cure-i1,2017-18,5.8,16.099999999999994,Winchendon - Murdock High School,03430515, 1.6, 3.0, 8.2, 83.9, 0.7, 0.0, 2.6, 52.6, 47.4 -1,1,a-cure-i1,2017-18,0.0,16.799999999999997,Winchendon - Murdock Middle School,03430315, 1.8, 2.6, 7.7, 83.2, 0.4, 0.0, 4.4, 52.4, 47.6 -1,1,a-cure-i1,2017-18,0.0,16.700000000000003,Winchendon - Toy Town Elementary,03430050, 2.0, 4.1, 7.1, 83.3, 0.0, 0.3, 3.1, 53.4, 46.6 -1,1,a-cure-i1,2017-18,0.0,5.099999999999994,Winchendon - Winchendon PreSchool Program,03430010, 1.3, 0.0, 1.3, 94.9, 0.0, 0.0, 2.5, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,10.0,Winchester - Ambrose Elementary,03440045, 0.2, 5.0, 1.7, 90.0, 0.0, 0.0, 3.1, 54.2, 45.8 -1,1,a-cure-i1,2017-18,0.0,21.799999999999997,Winchester - Lincoln Elementary,03440005, 1.0, 9.7, 3.0, 78.2, 0.0, 0.0, 8.2, 49.1, 50.9 -1,1,a-cure-i1,2017-18,0.0,39.4,Winchester - Lynch Elementary,03440020, 2.0, 26.5, 5.2, 60.6, 0.0, 0.0, 5.7, 53.7, 46.3 -5.007633587786259,5,a-cure-i1,2017-18,8.2,26.200000000000003,Winchester - McCall Middle,03440305, 0.9, 17.1, 3.7, 73.8, 0.4, 0.1, 4.1, 49.3, 50.7 -1,1,a-cure-i1,2017-18,0.0,33.3,Winchester - Muraco Elementary,03440040, 0.8, 23.9, 0.8, 66.7, 0.3, 0.0, 7.6, 50.9, 49.1 -2.7532467532467533,2.75,a-cure-i1,2017-18,5.3,30.799999999999997,Winchester - Vinson-Owen Elementary,03440025, 0.2, 19.3, 3.1, 69.2, 0.0, 0.0, 8.1, 50.5, 49.5 -1,1,a-cure-i1,2017-18,2.2,26.099999999999994,Winchester - Winchester High School,03440505, 1.6, 16.8, 4.1, 73.9, 0.1, 0.0, 3.5, 50.0, 50.0 -1,1,a-cure-i1,2017-18,0.0,21.099999999999994,Winthrop - Arthur T. Cummings Elementary School,03460020, 2.0, 0.4, 16.7, 78.9, 0.2, 0.0, 1.8, 53.1, 46.9 -1,1,a-cure-i1,2017-18,0.0,18.299999999999997,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.6, 0.6, 14.9, 81.7, 0.0, 0.0, 2.1, 48.2, 51.8 -1,1,a-cure-i1,2017-18,0.0,19.200000000000003,Winthrop - Winthrop High School,03460505, 1.6, 1.8, 12.8, 80.8, 0.5, 0.0, 2.4, 50.6, 49.4 -1,1,a-cure-i1,2017-18,0.0,20.299999999999997,Winthrop - Winthrop Middle School,03460305, 0.4, 1.0, 17.2, 79.7, 0.0, 0.0, 1.7, 54.4, 45.6 -1,1,a-cure-i1,2017-18,0.0,22.099999999999994,Woburn - Clyde Reeves,03470040, 7.2, 5.6, 4.7, 77.9, 0.2, 0.0, 4.4, 49.0, 51.0 -3.8787878787878793,3.88,a-cure-i1,2017-18,5.6,23.099999999999994,Woburn - Daniel L Joyce Middle School,03470410, 6.1, 4.8, 8.8, 76.9, 0.6, 0.2, 2.7, 50.2, 49.8 -1,1,a-cure-i1,2017-18,0.0,10.700000000000003,Woburn - Daniel P Hurld,03470020, 2.3, 5.1, 1.9, 89.3, 0.0, 0.0, 1.4, 48.8, 51.2 -1,1,a-cure-i1,2017-18,0.0,23.799999999999997,Woburn - Goodyear Elementary School,03470005, 8.8, 3.9, 5.5, 76.2, 1.0, 0.3, 4.2, 56.0, 44.0 -1,1,a-cure-i1,2017-18,3.5,25.900000000000006,Woburn - John F Kennedy Middle School,03470405, 6.4, 7.5, 9.1, 74.1, 0.8, 0.0, 2.1, 46.6, 53.4 -1,1,a-cure-i1,2017-18,0.0,37.2,Woburn - Linscott-Rumford,03470025, 9.2, 18.8, 4.3, 62.8, 0.5, 0.0, 4.3, 44.9, 55.1 -1,1,a-cure-i1,2017-18,0.0,27.799999999999997,Woburn - Malcolm White,03470055, 6.8, 4.3, 10.5, 72.2, 0.9, 0.3, 4.9, 44.8, 55.2 -2.088235294117647,2.09,a-cure-i1,2017-18,7.1,54.4,Woburn - Mary D Altavesta,03470065, 11.7, 21.0, 14.5, 45.6, 2.4, 0.8, 4.0, 54.0, 46.0 -1,1,a-cure-i1,2017-18,0.0,35.099999999999994,Woburn - Shamrock,03470043, 10.8, 5.5, 14.6, 64.9, 0.3, 0.0, 3.9, 51.9, 48.1 -2.941176470588235,2.94,a-cure-i1,2017-18,5.0,27.200000000000003,Woburn - Woburn High,03470505, 7.2, 6.0, 12.5, 72.8, 0.1, 0.1, 1.4, 49.2, 50.8 -1,1,a-cure-i1,2017-18,0.0,22.0,Woburn - Wyman,03470060, 1.1, 9.3, 9.3, 78.0, 0.0, 0.0, 2.2, 47.8, 52.2 -2.640586797066015,2.64,a-cure-i1,2017-18,13.5,81.8,Worcester - Belmont Street Community,03480020, 21.3, 7.2, 49.2, 18.2, 0.2, 0.0, 3.8, 52.8, 47.2 -2.932935916542474,2.93,a-cure-i1,2017-18,12.299999999999999,67.1,Worcester - Burncoat Middle School,03480405, 15.6, 3.7, 42.2, 32.9, 0.0, 0.0, 5.6, 49.9, 50.1 -2.3873744619799138,2.39,a-cure-i1,2017-18,10.4,69.7,Worcester - Burncoat Senior High,03480503, 19.1, 5.4, 40.5, 30.3, 0.1, 0.0, 4.5, 51.3, 48.7 -1.533954727030626,1.53,a-cure-i1,2017-18,7.2,75.1,Worcester - Burncoat Street,03480035, 16.7, 3.4, 50.9, 24.9, 0.0, 0.0, 4.1, 52.9, 47.1 -1.1346153846153846,1.13,a-cure-i1,2017-18,5.9,83.2,Worcester - Canterbury,03480045, 12.2, 15.2, 52.9, 16.8, 0.5, 0.0, 2.4, 54.3, 45.7 -0.9324009324009325,1,a-cure-i1,2017-18,5.0,85.8,Worcester - Chandler Elementary Community,03480050, 14.0, 7.6, 61.8, 14.2, 0.0, 0.0, 2.4, 54.4, 45.6 -5.851851851851852,5,a-cure-i1,2017-18,31.6,86.4,Worcester - Chandler Magnet,03480052, 3.2, 4.1, 77.4, 13.6, 0.0, 0.0, 1.6, 47.2, 52.8 -2.1091877496671105,2.11,a-cure-i1,2017-18,9.9,75.1,Worcester - City View,03480053, 15.2, 3.8, 51.5, 24.9, 0.0, 0.0, 4.6, 52.1, 47.9 -3.4737967914438497,3.47,a-cure-i1,2017-18,20.299999999999997,93.5,Worcester - Claremont Academy,03480350, 8.7, 8.5, 75.2, 6.5, 0.0, 0.0, 1.1, 50.5, 49.5 -1.7691373025516404,1.77,a-cure-i1,2017-18,9.1,82.3,Worcester - Clark St Community,03480055, 21.2, 3.8, 52.7, 17.7, 0.4, 0.0, 4.2, 51.5, 48.5 -1,1,a-cure-i1,2017-18,4.9,76.1,Worcester - Columbus Park,03480060, 13.6, 9.3, 49.1, 23.9, 0.6, 0.0, 3.6, 54.8, 45.2 -3.1292517006802725,3.13,a-cure-i1,2017-18,11.5,58.8,Worcester - Doherty Memorial High,03480512, 16.2, 7.5, 30.6, 41.2, 0.3, 0.0, 4.2, 54.1, 45.9 -4.363636363636364,4.36,a-cure-i1,2017-18,21.6,79.2,Worcester - Elm Park Community,03480095, 15.3, 2.1, 58.9, 20.8, 0.0, 0.0, 2.9, 56.2, 43.8 -1,1,a-cure-i1,2017-18,0.0,28.900000000000006,Worcester - Flagg Street,03480090, 5.9, 5.6, 12.5, 71.1, 0.0, 0.0, 4.9, 51.8, 48.2 -3.785837651122625,3.79,a-cure-i1,2017-18,13.7,57.9,Worcester - Forest Grove Middle,03480415, 12.5, 5.1, 35.4, 42.1, 0.1, 0.0, 4.8, 50.8, 49.2 -5.036565977742448,5,a-cure-i1,2017-18,19.8,62.9,Worcester - Francis J McGrath Elementary,03480177, 18.6, 4.2, 32.5, 37.1, 0.4, 0.0, 7.2, 50.6, 49.4 -1.4986225895316805,1.5,a-cure-i1,2017-18,6.8,72.6,Worcester - Gates Lane,03480110, 17.2, 12.3, 37.6, 27.4, 0.4, 0.0, 5.1, 59.2, 40.8 -4.837209302325581,4.84,a-cure-i1,2017-18,26.0,86.0,Worcester - Goddard School/Science Technical,03480100, 9.0, 11.0, 61.9, 14.0, 0.9, 0.0, 3.2, 51.8, 48.2 -1,1,a-cure-i1,2017-18,0.0,74.7,Worcester - Grafton Street,03480115, 15.5, 7.2, 47.3, 25.3, 0.3, 0.0, 4.4, 51.4, 48.6 -2.550435865504359,2.55,a-cure-i1,2017-18,12.8,80.3,Worcester - Head Start,03480002, 20.2, 2.3, 54.8, 19.7, 0.0, 0.0, 3.0, 48.0, 52.0 -2.4411764705882355,2.44,a-cure-i1,2017-18,8.3,54.4,Worcester - Heard Street,03480136, 11.8, 11.1, 26.7, 45.6, 0.3, 0.0, 4.4, 51.4, 48.6 -1,1,a-cure-i1,2017-18,0.3,87.6,Worcester - Jacob Hiatt Magnet,03480140, 28.8, 3.0, 51.4, 12.4, 0.0, 0.0, 4.5, 50.1, 49.9 -5.397590361445784,5,a-cure-i1,2017-18,16.8,49.8,Worcester - Lake View,03480145, 15.4, 9.5, 19.6, 50.2, 0.4, 0.0, 4.9, 51.6, 48.4 -1,1,a-cure-i1,2017-18,0.0,85.6,Worcester - Lincoln Street,03480160, 20.7, 3.7, 57.0, 14.4, 0.7, 0.0, 3.3, 51.1, 48.9 -2.5009416195856877,2.5,a-cure-i1,2017-18,8.3,53.1,Worcester - May Street,03480175, 11.8, 8.6, 22.4, 46.9, 0.0, 0.3, 10.0, 49.3, 50.7 -3.682864450127877,3.68,a-cure-i1,2017-18,9.0,39.1,Worcester - Midland Street,03480185, 7.8, 10.4, 11.7, 60.9, 0.0, 0.0, 9.1, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,39.8,Worcester - Nelson Place,03480200, 10.3, 7.1, 17.2, 60.2, 0.0, 0.0, 5.2, 56.9, 43.1 -2.9834983498349836,2.98,a-cure-i1,2017-18,11.3,60.6,Worcester - Norrback Avenue,03480202, 24.6, 3.4, 28.0, 39.4, 0.0, 0.0, 4.6, 53.2, 46.8 -5.0,5.0,a-cure-i1,2017-18,25.5,81.6,Worcester - North High,03480515, 22.4, 7.1, 48.1, 18.4, 0.3, 0.0, 3.6, 51.4, 48.6 -2.4598337950138505,2.46,a-cure-i1,2017-18,11.100000000000001,72.2,Worcester - Quinsigamond,03480210, 20.8, 7.7, 39.3, 27.8, 0.1, 0.0, 4.3, 50.1, 49.9 -2.417582417582418,2.42,a-cure-i1,2017-18,11.0,72.8,Worcester - Rice Square,03480215, 16.9, 7.0, 43.3, 27.2, 0.0, 0.0, 5.6, 55.3, 44.7 -4.865671641791045,4.87,a-cure-i1,2017-18,16.3,53.6,Worcester - Roosevelt,03480220, 15.9, 4.9, 28.1, 46.4, 0.0, 0.1, 4.6, 48.7, 51.3 -3.8292367399741267,3.83,a-cure-i1,2017-18,18.5,77.3,Worcester - South High Community,03480520, 16.0, 13.3, 45.1, 22.7, 0.1, 0.0, 2.8, 52.0, 48.0 -3.35935397039031,3.36,a-cure-i1,2017-18,15.600000000000001,74.3,Worcester - Sullivan Middle,03480423, 14.6, 10.8, 44.4, 25.7, 0.2, 0.0, 4.4, 51.7, 48.3 -1.826887661141805,1.83,a-cure-i1,2017-18,6.2,54.3,Worcester - Tatnuck,03480230, 19.4, 6.6, 23.0, 45.7, 0.0, 0.5, 4.8, 47.4, 52.6 -1.9566074950690335,1.96,a-cure-i1,2017-18,6.2,50.7,Worcester - Thorndyke Road,03480235, 16.0, 5.5, 25.2, 49.3, 0.0, 0.0, 3.9, 51.7, 48.3 -1.3403141361256545,1.34,a-cure-i1,2017-18,6.4,76.4,Worcester - Union Hill School,03480240, 11.9, 2.2, 58.4, 23.6, 0.2, 0.0, 3.7, 55.1, 44.9 -1,1,a-cure-i1,2017-18,3.7,90.0,Worcester - University Pk Campus School,03480285, 11.7, 23.0, 51.9, 10.0, 0.4, 0.0, 2.9, 53.6, 46.4 -2.8430609597924774,2.84,a-cure-i1,2017-18,13.7,77.1,Worcester - Vernon Hill School,03480280, 21.3, 3.4, 46.6, 22.9, 0.0, 0.0, 5.8, 52.2, 47.8 -1,1,a-cure-i1,2017-18,0.0,63.8,Worcester - Wawecus Road School,03480026, 9.9, 5.9, 43.4, 36.2, 0.0, 0.0, 4.6, 48.0, 52.0 -2.724324324324324,2.72,a-cure-i1,2017-18,6.3,37.0,Worcester - West Tatnuck,03480260, 8.4, 5.7, 15.7, 63.0, 0.0, 0.0, 7.3, 49.5, 50.5 -1,1,a-cure-i1,2017-18,4.6,90.9,Worcester - Woodland Academy,03480030, 8.1, 8.4, 72.1, 9.1, 0.3, 0.0, 2.0, 50.2, 49.8 -1,1,a-cure-i1,2017-18,0.0,50.0,Worcester - Worcester Arts Magnet School,03480225, 17.1, 6.4, 19.6, 50.0, 0.0, 0.0, 6.9, 49.8, 50.2 -4.121212121212121,4.12,a-cure-i1,2017-18,20.4,79.2,Worcester - Worcester East Middle,03480420, 17.9, 6.2, 51.2, 20.8, 0.1, 0.0, 3.8, 50.2, 49.8 -1,1,a-cure-i1,2017-18,4.300000000000001,63.1,Worcester - Worcester Technical High,03480605, 16.3, 6.1, 37.1, 36.9, 0.1, 0.0, 3.6, 45.4, 54.6 -1,1,a-cure-i1,2017-18,0.0,6.5,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 1.6, 93.5, 1.6, 0.0, 3.2, 38.7, 61.3 -1,1,a-cure-i1,2017-18,0.0,11.599999999999994,Wrentham - Charles E Roderick,03500010, 1.5, 2.4, 3.9, 88.4, 0.0, 0.0, 3.9, 55.6, 44.4 -1,1,a-cure-i1,2017-18,0.0,14.799999999999997,Wrentham - Delaney,03500003, 1.2, 3.3, 4.7, 85.2, 0.5, 0.2, 5.0, 48.8, 51.2 -1.8677042801556423,1.87,a-cure-i1,2016-17,9.0,77.1,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 48.5, 4.0, 22.0, 22.9, 0.1, 0.1, 2.3, 47.3, 52.7 -1,1,a-cure-i1,2016-17,4.199999999999999,14.200000000000003,Abington - Abington High,00010505, 2.2, 1.5, 9.1, 85.8, 0.2, 0.2, 0.9, 45.6, 54.4 -1,1,a-cure-i1,2016-17,0.0,11.599999999999994,Abington - Beaver Brook Elementary School,00010003, 1.9, 1.9, 6.7, 88.4, 0.5, 0.2, 0.3, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,15.299999999999997,Abington - Center Elementary School,00010002, 3.9, 3.0, 8.4, 84.7, 0.0, 0.0, 0.0, 54.2, 45.8 -17.644859813084107,5,a-cure-i1,2016-17,11.799999999999999,10.700000000000003,Abington - Frolio Middle School,00010405, 2.4, 1.8, 6.1, 89.3, 0.0, 0.0, 0.3, 53.4, 46.6 -14.177215189873408,5,a-cure-i1,2016-17,7.0,7.900000000000006,Abington - Woodsdale Elementary School,00010015, 2.0, 1.4, 4.2, 92.1, 0.0, 0.0, 0.3, 50.7, 49.3 -4.375,4.38,a-cure-i1,2016-17,24.499999999999996,89.6,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 58.1, 0.9, 27.3, 10.4, 0.0, 0.2, 3.0, 47.4, 52.6 -1,1,a-cure-i1,2016-17,3.8,37.0,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 1.5, 28.2, 3.4, 63.0, 0.2, 0.0, 3.7, 50.6, 49.4 -1,1,a-cure-i1,2016-17,4.4,41.4,Acton-Boxborough - Blanchard Memorial School,06000005, 1.7, 33.2, 3.1, 58.6, 0.5, 0.0, 2.9, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,34.2,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.2, 24.3, 3.3, 65.8, 0.2, 0.0, 6.1, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,53.6,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 5.2, 40.2, 3.1, 46.4, 3.1, 0.0, 2.1, 59.8, 40.2 -1,1,a-cure-i1,2016-17,4.3,70.5,Acton-Boxborough - Luther Conant School,06000030, 2.9, 60.8, 4.2, 29.5, 0.0, 0.0, 2.7, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,29.900000000000006,Acton-Boxborough - McCarthy-Towne School,06000015, 3.4, 11.4, 9.1, 70.1, 0.6, 0.0, 5.5, 51.2, 48.8 -1,1,a-cure-i1,2016-17,3.8,31.900000000000006,Acton-Boxborough - Merriam School,06000010, 2.5, 20.5, 5.4, 68.1, 0.0, 0.2, 3.3, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,60.1,Acton-Boxborough - Paul P Gates Elementary School,06000025, 1.7, 51.0, 3.5, 39.9, 1.0, 0.2, 2.7, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,43.2,Acton-Boxborough - Raymond J Grey Junior High,06000405, 2.0, 31.8, 3.7, 56.8, 0.1, 0.0, 5.6, 52.3, 47.7 -1,1,a-cure-i1,2016-17,2.9,7.200000000000003,Acushnet - Acushnet Elementary School,00030025, 0.7, 0.2, 3.3, 92.8, 0.2, 0.0, 2.8, 53.2, 46.8 -1,1,a-cure-i1,2016-17,3.2,2.5999999999999943,Acushnet - Albert F Ford Middle School,00030305, 0.7, 0.2, 1.0, 97.4, 0.0, 0.0, 0.7, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,6.599999999999994,Adams-Cheshire - Cheshire Elementary,06030004, 4.1, 0.4, 1.2, 93.4, 0.0, 0.0, 0.8, 47.1, 52.9 -1,1,a-cure-i1,2016-17,0.0,8.200000000000003,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 5.1, 1.3, 1.4, 91.8, 0.2, 0.0, 0.2, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,10.200000000000003,Adams-Cheshire - Plunkett Elementary,06030020, 4.0, 0.2, 2.2, 89.8, 0.2, 0.2, 3.3, 52.3, 47.7 -6.477341389728097,5,a-cure-i1,2016-17,13.399999999999999,33.099999999999994,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 2.4, 19.2, 5.8, 66.9, 0.3, 0.0, 5.4, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,28.5,Agawam - Agawam Early Childhood Center,00050003, 4.6, 8.6, 12.6, 71.5, 0.0, 0.0, 2.6, 57.6, 42.4 -1,1,a-cure-i1,2016-17,1.0,11.200000000000003,Agawam - Agawam High,00050505, 1.2, 2.2, 5.8, 88.8, 0.0, 0.1, 1.9, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,13.0,Agawam - Agawam Junior High,00050405, 1.4, 1.4, 7.1, 87.0, 0.0, 0.0, 3.0, 47.9, 52.1 -1,1,a-cure-i1,2016-17,0.0,11.900000000000006,Agawam - Benjamin J Phelps,00050020, 2.1, 2.9, 4.9, 88.1, 0.0, 0.0, 2.1, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,15.0,Agawam - Clifford M Granger,00050010, 1.4, 1.0, 9.6, 85.0, 0.0, 0.3, 2.7, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,17.599999999999994,Agawam - James Clark School,00050030, 3.0, 3.3, 9.4, 82.4, 0.0, 0.0, 1.8, 53.2, 46.8 -1,1,a-cure-i1,2016-17,2.2,16.700000000000003,Agawam - Roberta G. Doering School,00050303, 2.5, 4.2, 7.0, 83.3, 0.0, 0.0, 3.0, 53.4, 46.6 -1,1,a-cure-i1,2016-17,0.0,17.0,Agawam - Robinson Park,00050025, 2.7, 2.9, 8.0, 83.0, 0.0, 0.0, 3.4, 51.7, 48.3 -3.096774193548387,3.1,a-cure-i1,2016-17,13.2,68.2,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 14.2, 0.6, 47.2, 31.8, 0.3, 0.0, 5.9, 46.3, 53.7 -1,1,a-cure-i1,2016-17,0.0,15.700000000000003,Amesbury - Amesbury Elementary,00070005, 4.1, 0.5, 6.2, 84.3, 0.5, 0.0, 4.4, 52.3, 47.7 -1,1,a-cure-i1,2016-17,2.6,9.299999999999997,Amesbury - Amesbury High,00070505, 1.3, 1.2, 4.2, 90.7, 0.0, 0.0, 2.5, 53.5, 46.5 -1,1,a-cure-i1,2016-17,0.0,12.900000000000006,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 6.5, 87.1, 0.0, 0.0, 6.5, 64.5, 35.5 -1,1,a-cure-i1,2016-17,2.1,13.099999999999994,Amesbury - Amesbury Middle,00070013, 1.2, 1.0, 6.6, 86.9, 0.3, 0.1, 3.8, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,15.900000000000006,Amesbury - Charles C Cashman Elementary,00070010, 2.2, 2.0, 8.7, 84.1, 0.4, 0.2, 2.4, 53.5, 46.5 -2.937062937062937,2.94,a-cure-i1,2016-17,10.5,57.2,Amherst - Crocker Farm Elementary,00080009, 7.2, 15.8, 25.7, 42.8, 0.0, 0.0, 8.4, 50.5, 49.5 -5.545454545454545,5,a-cure-i1,2016-17,18.299999999999997,52.8,Amherst - Fort River Elementary,00080020, 11.3, 14.0, 22.1, 47.2, 0.0, 0.0, 5.4, 49.6, 50.4 -10.309751434034418,5,a-cure-i1,2016-17,33.7,52.3,Amherst - Wildwood Elementary,00080050, 10.3, 13.7, 20.5, 47.7, 0.2, 0.0, 7.6, 52.6, 47.4 -5.785536159600998,5,a-cure-i1,2016-17,14.500000000000002,40.1,Amherst-Pelham - Amherst Regional High,06050505, 7.0, 9.5, 14.3, 59.9, 0.1, 0.0, 9.2, 52.1, 47.9 -6.9875930521091805,5,a-cure-i1,2016-17,17.599999999999998,40.3,Amherst-Pelham - Amherst Regional Middle School,06050405, 6.9, 7.9, 16.7, 59.7, 0.0, 0.5, 8.3, 47.7, 52.3 -5.4683544303797476,5,a-cure-i1,2016-17,8.100000000000001,23.700000000000003,Andover - Andover High,00090505, 1.9, 14.5, 5.0, 76.3, 0.1, 0.0, 2.2, 48.9, 51.1 -1,1,a-cure-i1,2016-17,2.8,22.700000000000003,Andover - Andover West Middle,00090310, 1.1, 15.6, 3.6, 77.3, 0.0, 0.0, 2.4, 46.2, 53.8 -1,1,a-cure-i1,2016-17,3.0,21.599999999999994,Andover - Bancroft Elementary,00090003, 3.2, 6.6, 5.9, 78.4, 0.3, 0.0, 5.6, 51.8, 48.2 -6.552380952380952,5,a-cure-i1,2016-17,8.6,21.0,Andover - Doherty Middle,00090305, 0.5, 13.5, 3.7, 79.0, 0.5, 0.0, 2.7, 50.8, 49.2 -2.1621621621621623,2.16,a-cure-i1,2016-17,5.0,37.0,Andover - Henry C Sanborn Elementary,00090010, 1.6, 28.1, 4.5, 63.0, 0.8, 0.0, 2.1, 54.9, 45.1 -1,1,a-cure-i1,2016-17,0.0,41.7,Andover - High Plain Elementary,00090004, 2.7, 29.1, 6.6, 58.3, 0.0, 0.0, 3.3, 53.6, 46.4 -7.8128654970760225,5,a-cure-i1,2016-17,16.7,34.2,Andover - Shawsheen School,00090005, 2.7, 27.4, 2.7, 65.8, 1.4, 0.0, 0.0, 53.4, 46.6 -1,1,a-cure-i1,2016-17,0.0,24.299999999999997,Andover - South Elementary,00090020, 0.0, 18.5, 4.9, 75.7, 0.2, 0.2, 0.6, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,27.5,Andover - West Elementary,00090025, 3.0, 14.6, 6.8, 72.5, 0.2, 0.0, 3.0, 51.7, 48.3 -1,1,a-cure-i1,2016-17,3.7,38.2,Andover - Wood Hill Middle School,00090350, 3.1, 26.5, 6.2, 61.8, 0.0, 0.0, 2.4, 45.8, 54.2 -8.259927797833935,5,a-cure-i1,2016-17,14.3,27.700000000000003,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 9.4, 2.0, 11.1, 72.3, 0.3, 0.7, 4.2, 54.1, 45.9 -5.901639344262294,5,a-cure-i1,2016-17,9.0,24.400000000000006,Arlington - Arlington High,00100505, 4.1, 10.7, 5.7, 75.6, 0.0, 0.2, 3.7, 49.1, 50.9 -15.790393013100434,5,a-cure-i1,2016-17,22.6,22.900000000000006,Arlington - Brackett,00100010, 1.5, 10.3, 4.6, 77.1, 0.0, 0.2, 6.3, 52.1, 47.9 -1,1,a-cure-i1,2016-17,3.8,22.099999999999994,Arlington - Cyrus E Dallin,00100025, 1.7, 12.4, 4.5, 77.9, 0.0, 0.2, 3.2, 51.9, 48.1 -4.5642633228840115,4.56,a-cure-i1,2016-17,9.1,31.900000000000006,Arlington - Hardy,00100030, 4.9, 15.7, 7.3, 68.1, 0.2, 0.4, 3.3, 54.3, 45.7 -5.8450184501845035,5,a-cure-i1,2016-17,9.9,27.099999999999994,Arlington - John A Bishop,00100005, 4.2, 14.6, 3.1, 72.9, 0.0, 0.7, 4.5, 49.4, 50.6 -6.734177215189875,5,a-cure-i1,2016-17,13.3,31.599999999999994,Arlington - M Norcross Stratton,00100055, 2.5, 18.2, 6.3, 68.4, 0.0, 0.0, 4.5, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.0,21.400000000000006,Arlington - Menotomy Preschool,00100038, 0.0, 12.9, 5.7, 78.6, 0.0, 0.0, 2.9, 62.9, 37.1 -8.226720647773279,5,a-cure-i1,2016-17,12.7,24.700000000000003,Arlington - Ottoson Middle,00100410, 4.2, 10.0, 5.5, 75.3, 0.0, 0.0, 5.0, 47.0, 53.0 -4.294117647058823,4.29,a-cure-i1,2016-17,7.3,27.200000000000003,Arlington - Peirce,00100045, 4.0, 12.3, 8.3, 72.8, 0.0, 0.0, 2.5, 49.6, 50.4 -5.3052631578947365,5,a-cure-i1,2016-17,12.6,38.0,Arlington - Thompson,00100050, 5.4, 16.1, 10.7, 62.0, 0.6, 0.2, 4.9, 51.9, 48.1 -16.842105263157908,5,a-cure-i1,2016-17,8.0,7.599999999999994,Ashburnham-Westminster - Briggs Elementary,06100025, 0.2, 0.4, 5.8, 92.4, 0.0, 0.0, 1.3, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Ashburnham-Westminster - Meetinghouse School,06100010, 1.3, 0.0, 4.4, 93.8, 0.0, 0.0, 0.6, 54.4, 45.6 -1,1,a-cure-i1,2016-17,2.5,5.599999999999994,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.6, 1.0, 2.3, 94.4, 0.0, 0.0, 1.7, 49.9, 50.1 -1,1,a-cure-i1,2016-17,3.0,5.400000000000006,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.9, 3.3, 94.6, 0.0, 0.0, 1.2, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,11.599999999999994,Ashburnham-Westminster - Westminster Elementary,06100005, 1.6, 0.3, 7.0, 88.4, 0.3, 0.0, 2.4, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,22.799999999999997,Ashland - Ashland High,00140505, 2.0, 9.0, 9.4, 77.2, 0.3, 0.0, 2.2, 48.8, 51.2 -1,1,a-cure-i1,2016-17,2.4,29.0,Ashland - Ashland Middle,00140405, 2.4, 12.1, 11.2, 71.0, 0.3, 0.0, 2.9, 48.7, 51.3 -1,1,a-cure-i1,2016-17,2.6,29.5,Ashland - David Mindess,00140015, 2.1, 13.5, 9.5, 70.5, 1.0, 0.0, 3.4, 50.6, 49.4 -1,1,a-cure-i1,2016-17,2.6,30.900000000000006,Ashland - Henry E Warren Elementary,00140010, 1.8, 14.1, 10.7, 69.1, 0.6, 0.2, 3.6, 49.8, 50.2 -7.49063670411985,5,a-cure-i1,2016-17,12.5,26.700000000000003,Ashland - William Pittaway Elementary,00140005, 1.5, 17.6, 3.8, 73.3, 0.0, 0.0, 3.8, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,18.900000000000006,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.9, 0.7, 14.6, 81.1, 0.5, 0.0, 2.3, 57.6, 42.4 -1,1,a-cure-i1,2016-17,0.0,15.299999999999997,Athol-Royalston - Athol Community Elementary School,06150020, 0.7, 1.2, 9.9, 84.7, 0.2, 0.2, 3.1, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,10.299999999999997,Athol-Royalston - Athol High,06150505, 2.8, 0.8, 5.6, 89.7, 0.0, 0.0, 1.1, 54.2, 45.8 -1,1,a-cure-i1,2016-17,4.6,14.700000000000003,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.8, 0.0, 9.3, 85.3, 0.3, 0.0, 3.4, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Athol-Royalston - Royalston Community School,06150050, 2.1, 0.7, 2.8, 93.8, 0.0, 0.0, 0.7, 49.3, 50.7 -5.6,5,a-cure-i1,2016-17,7.0,20.0,Atlantis Charter (District) - Atlantis Charter School,04910550, 4.7, 1.9, 9.9, 80.0, 0.1, 0.0, 3.4, 46.7, 53.3 -1,1,a-cure-i1,2016-17,0.0,40.8,Attleboro - A. Irvin Studley Elementary School,00160001, 3.9, 1.8, 27.9, 59.2, 0.2, 0.2, 6.8, 52.6, 47.4 -7.798319327731093,5,a-cure-i1,2016-17,11.6,23.799999999999997,Attleboro - Attleboro Community Academy,00160515, 1.6, 1.6, 11.1, 76.2, 1.6, 0.0, 7.9, 54.0, 46.0 -1,1,a-cure-i1,2016-17,4.2,26.400000000000006,Attleboro - Attleboro High,00160505, 5.5, 4.1, 12.5, 73.6, 0.3, 0.2, 3.8, 54.2, 45.8 -1,1,a-cure-i1,2016-17,0.0,35.099999999999994,Attleboro - Cyril K. Brennan Middle School,00160315, 4.2, 4.9, 18.1, 64.9, 0.4, 0.4, 7.2, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,24.099999999999994,Attleboro - Early Learning Center,00160008, 3.7, 3.7, 10.7, 75.9, 0.0, 0.0, 5.9, 61.5, 38.5 -1,1,a-cure-i1,2016-17,0.0,31.700000000000003,Attleboro - Hill-Roberts Elementary School,00160045, 6.0, 3.9, 12.8, 68.3, 0.9, 0.0, 8.1, 55.0, 45.0 -1,1,a-cure-i1,2016-17,0.0,29.299999999999997,Attleboro - Hyman Fine Elementary School,00160040, 4.3, 6.3, 12.6, 70.7, 0.0, 0.0, 6.1, 47.2, 52.8 -1,1,a-cure-i1,2016-17,4.5,31.200000000000003,Attleboro - Peter Thacher Elementary School,00160050, 3.8, 6.1, 11.7, 68.8, 0.0, 0.0, 9.6, 53.8, 46.2 -1,1,a-cure-i1,2016-17,3.3,23.200000000000003,Attleboro - Robert J. Coelho Middle School,00160305, 3.6, 3.6, 10.6, 76.8, 0.0, 0.0, 5.4, 51.0, 49.0 -1,1,a-cure-i1,2016-17,0.0,35.0,Attleboro - Thomas Willett Elementary School,00160035, 6.2, 9.4, 9.8, 65.0, 0.0, 0.0, 9.6, 52.3, 47.7 -1,1,a-cure-i1,2016-17,2.5,35.099999999999994,Attleboro - Wamsutta Middle School,00160320, 6.0, 5.9, 18.7, 64.9, 0.0, 0.2, 4.3, 53.7, 46.3 -1,1,a-cure-i1,2016-17,3.9,14.400000000000006,Auburn - Auburn Middle,00170305, 1.8, 4.2, 5.4, 85.6, 0.3, 0.0, 2.7, 50.6, 49.4 -1,1,a-cure-i1,2016-17,2.0,16.0,Auburn - Auburn Senior High,00170505, 2.1, 4.3, 6.4, 84.0, 0.4, 0.0, 2.8, 48.1, 51.9 -1,1,a-cure-i1,2016-17,0.0,18.900000000000006,Auburn - Bryn Mawr,00170010, 1.4, 3.1, 10.1, 81.1, 0.7, 0.0, 3.5, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,18.900000000000006,Auburn - Pakachoag School,00170025, 2.8, 3.9, 8.2, 81.1, 0.0, 0.0, 3.9, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,16.0,Auburn - Swanson Road Intermediate School,00170030, 1.5, 3.4, 7.6, 84.0, 0.0, 0.0, 3.5, 49.3, 50.7 -2.8781431334622827,2.88,a-cure-i1,2016-17,9.3,51.7,Avon - Avon Middle High School,00180510, 37.3, 5.6, 4.7, 48.3, 0.6, 0.0, 3.4, 48.3, 51.4 -1,1,a-cure-i1,2016-17,0.0,41.0,Avon - Ralph D Butler,00180010, 23.3, 3.8, 6.8, 59.0, 1.3, 0.0, 5.8, 52.2, 47.8 -1,1,a-cure-i1,2016-17,4.0,27.099999999999994,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 7.8, 2.4, 10.5, 72.9, 0.2, 0.2, 5.9, 50.4, 49.6 -9.548387096774196,5,a-cure-i1,2016-17,14.8,24.799999999999997,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 4.8, 2.0, 10.6, 75.2, 0.8, 0.8, 5.8, 47.1, 52.9 -1,1,a-cure-i1,2016-17,0.0,18.799999999999997,Ayer Shirley School District - Lura A. White Elementary School,06160001, 2.1, 2.6, 9.8, 81.2, 0.0, 0.3, 4.1, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,23.5,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 3.2, 3.8, 11.7, 76.5, 0.2, 0.4, 4.2, 54.0, 46.0 -4.316546762589929,4.32,a-cure-i1,2016-17,7.5,27.799999999999997,Barnstable - Barnstable High,00200505, 8.4, 2.8, 11.5, 72.2, 0.9, 0.4, 3.7, 48.7, 51.3 -1,1,a-cure-i1,2016-17,2.1,25.299999999999997,Barnstable - Barnstable Intermediate School,00200315, 8.0, 1.7, 9.9, 74.7, 0.5, 0.0, 5.2, 48.7, 51.3 -1,1,a-cure-i1,2016-17,1.6,24.400000000000006,Barnstable - Barnstable United Elementary School,00200050, 6.7, 2.1, 11.7, 75.6, 0.0, 0.4, 3.5, 52.0, 48.0 -1,1,a-cure-i1,2016-17,2.7,17.700000000000003,Barnstable - Centerville Elementary,00200010, 4.8, 1.4, 8.5, 82.3, 0.3, 0.0, 2.7, 53.9, 46.1 -1,1,a-cure-i1,2016-17,0.0,27.0,Barnstable - Enoch Cobb Early Learning Center,00200001, 5.6, 2.4, 11.1, 73.0, 0.0, 0.0, 7.9, 54.8, 45.2 -2.2338568935427574,2.23,a-cure-i1,2016-17,8.0,57.3,Barnstable - Hyannis West Elementary,00200025, 17.1, 2.5, 27.5, 42.7, 0.3, 0.3, 9.6, 54.8, 45.2 -1,1,a-cure-i1,2016-17,0.0,16.5,Barnstable - West Barnstable Elementary,00200005, 4.6, 1.9, 6.5, 83.5, 0.0, 0.0, 3.5, 56.5, 43.5 -1,1,a-cure-i1,2016-17,0.0,12.0,Barnstable - West Villages Elementary School,00200045, 2.0, 0.7, 5.2, 88.0, 0.5, 0.0, 3.6, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,48.3,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 17.9, 3.1, 20.7, 51.7, 1.0, 0.3, 5.2, 51.7, 48.3 -4.335812964930925,4.34,a-cure-i1,2016-17,25.500000000000004,94.1,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 27.6, 0.8, 65.3, 5.9, 0.0, 0.0, 0.5, 50.5, 49.5 -4.447284345047923,4.45,a-cure-i1,2016-17,8.7,31.299999999999997,Bedford - Bedford High,00230505, 7.8, 11.4, 6.4, 68.7, 0.0, 0.6, 5.2, 50.6, 49.4 -1,1,a-cure-i1,2016-17,1.8,30.799999999999997,Bedford - John Glenn Middle,00230305, 5.8, 15.5, 5.9, 69.2, 0.0, 0.0, 3.6, 50.2, 49.8 -3.03448275862069,3.03,a-cure-i1,2016-17,6.6,34.8,Bedford - Lt Elezer Davis,00230010, 5.0, 16.7, 6.2, 65.2, 0.0, 0.0, 6.9, 50.2, 49.8 -1,1,a-cure-i1,2016-17,3.2,29.700000000000003,Bedford - Lt Job Lane School,00230012, 5.7, 15.7, 4.4, 70.3, 0.0, 0.0, 3.9, 53.4, 46.6 -1,1,a-cure-i1,2016-17,2.1,9.700000000000003,Belchertown - Belchertown High,00240505, 2.0, 2.0, 4.1, 90.3, 0.1, 0.1, 1.4, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,11.599999999999994,Belchertown - Chestnut Hill Community School,00240006, 2.6, 2.4, 4.0, 88.4, 0.0, 0.3, 2.2, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,13.5,Belchertown - Cold Spring,00240005, 1.2, 1.8, 5.3, 86.5, 0.0, 0.0, 5.3, 44.7, 55.3 -1,1,a-cure-i1,2016-17,0.0,7.799999999999997,Belchertown - Jabish Middle School,00240025, 2.3, 1.5, 1.5, 92.2, 0.0, 0.3, 2.3, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,11.400000000000006,Belchertown - Swift River Elementary,00240018, 2.0, 1.2, 5.0, 88.6, 0.6, 0.0, 2.6, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,8.299999999999997,Bellingham - Bellingham Early Childhood Center,00250003, 2.1, 3.1, 0.0, 91.7, 0.0, 2.1, 1.0, 57.3, 42.7 -1,1,a-cure-i1,2016-17,4.4,11.599999999999994,Bellingham - Bellingham High School,00250505, 1.8, 3.1, 5.3, 88.4, 0.3, 0.0, 1.2, 54.5, 45.5 -1,1,a-cure-i1,2016-17,0.0,11.099999999999994,Bellingham - Bellingham Memorial School,00250315, 1.7, 4.2, 3.5, 88.9, 0.3, 0.0, 1.4, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 11.8, 85.3, 0.0, 0.0, 2.9, 64.7, 32.4 -1,1,a-cure-i1,2016-17,0.0,8.099999999999994,Bellingham - South Elementary,00250020, 1.8, 1.2, 2.1, 91.9, 0.0, 2.4, 0.6, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,12.599999999999994,Bellingham - Stall Brook,00250025, 1.8, 2.0, 3.5, 87.4, 0.0, 1.5, 3.8, 46.8, 53.2 -4.943521594684387,4.94,a-cure-i1,2016-17,9.3,30.099999999999994,Belmont - Belmont High,00260505, 4.6, 16.8, 3.5, 69.9, 0.0, 0.1, 5.2, 46.9, 53.1 -4.988452655889146,4.99,a-cure-i1,2016-17,13.5,43.3,Belmont - Daniel Butler,00260015, 4.4, 23.7, 8.8, 56.7, 0.6, 0.0, 5.8, 52.6, 47.4 -6.601719197707736,5,a-cure-i1,2016-17,14.4,34.900000000000006,Belmont - Mary Lee Burbank,00260010, 2.1, 20.6, 4.3, 65.1, 0.0, 0.3, 7.5, 49.6, 50.4 -1,1,a-cure-i1,2016-17,3.1,31.0,Belmont - Roger E Wellington,00260035, 3.1, 15.3, 2.2, 69.0, 0.0, 0.0, 10.5, 55.1, 44.9 -1,1,a-cure-i1,2016-17,0.0,37.0,Belmont - Winn Brook,00260005, 1.7, 24.8, 3.4, 63.0, 0.2, 0.0, 6.8, 51.3, 48.7 -7.713355048859935,5,a-cure-i1,2016-17,14.8,30.700000000000003,Belmont - Winthrop L Chenery Middle,00260305, 3.5, 16.1, 4.9, 69.3, 0.1, 0.1, 6.0, 49.7, 50.3 -3.2854209445585214,3.29,a-cure-i1,2016-17,20.0,97.4,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 79.5, 2.6, 13.3, 2.6, 0.9, 0.0, 1.2, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,30.599999999999994,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 1.6, 23.0, 2.7, 69.4, 0.2, 0.0, 3.1, 51.7, 48.3 -1.8068350668647846,1.81,a-cure-i1,2016-17,7.6,67.3,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 12.5, 3.1, 48.6, 32.7, 0.0, 0.0, 3.1, 51.4, 48.6 -1,1,a-cure-i1,2016-17,3.3,3.9000000000000057,Berkley - Berkley Community School,00270010, 0.0, 0.2, 0.9, 96.1, 0.0, 0.0, 2.8, 49.5, 50.5 -1,1,a-cure-i1,2016-17,4.3,5.900000000000006,Berkley - Berkley Middle School,00270305, 1.0, 0.8, 1.5, 94.1, 0.0, 0.0, 2.6, 48.0, 52.0 -1,1,a-cure-i1,2016-17,3.4,28.099999999999994,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 14.6, 2.5, 6.7, 71.9, 0.0, 0.3, 3.9, 48.0, 51.7 -1,1,a-cure-i1,2016-17,0.0,11.5,Berkshire Hills - Monument Mt Regional High,06180505, 2.2, 1.8, 4.8, 88.5, 0.2, 0.2, 2.4, 51.4, 48.6 -1,1,a-cure-i1,2016-17,3.5,16.0,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.6, 3.1, 7.2, 84.0, 0.3, 0.5, 3.4, 46.3, 53.7 -1,1,a-cure-i1,2016-17,0.0,22.700000000000003,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.7, 3.1, 11.1, 77.3, 0.0, 0.0, 6.8, 56.3, 43.8 -1,1,a-cure-i1,2016-17,0.0,11.099999999999994,Berlin - Berlin Memorial,00280005, 0.5, 2.1, 3.7, 88.9, 0.5, 0.0, 4.2, 57.4, 42.6 -1,1,a-cure-i1,2016-17,2.5,8.700000000000003,Berlin-Boylston - Tahanto Regional High,06200505, 1.0, 3.1, 2.6, 91.3, 0.0, 0.0, 2.1, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,26.900000000000006,Beverly - Ayers/Ryal Side School,00300055, 3.4, 4.4, 17.0, 73.1, 0.0, 0.0, 2.1, 52.0, 48.0 -1,1,a-cure-i1,2016-17,4.4,18.799999999999997,Beverly - Beverly High,00300505, 3.0, 2.7, 10.8, 81.2, 0.0, 0.2, 2.2, 49.8, 50.2 -1,1,a-cure-i1,2016-17,4.9,17.799999999999997,Beverly - Briscoe Middle,00300305, 3.0, 2.4, 9.5, 82.2, 0.0, 0.0, 3.0, 53.9, 46.1 -1,1,a-cure-i1,2016-17,0.0,23.700000000000003,Beverly - Centerville Elementary,00300010, 3.9, 0.6, 15.4, 76.3, 0.0, 0.0, 3.9, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,22.599999999999994,Beverly - Cove Elementary,00300015, 3.0, 1.3, 11.4, 77.4, 0.0, 0.2, 6.7, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,19.200000000000003,Beverly - Hannah Elementary,00300033, 1.3, 1.3, 11.8, 80.8, 0.0, 0.0, 4.7, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,25.900000000000006,Beverly - McKeown School,00300002, 5.4, 0.9, 11.6, 74.1, 0.0, 0.0, 8.0, 63.4, 36.6 -1,1,a-cure-i1,2016-17,0.0,17.400000000000006,Beverly - North Beverly Elementary,00300040, 2.0, 2.0, 10.5, 82.6, 0.3, 0.0, 2.6, 51.9, 48.1 -1,1,a-cure-i1,2016-17,2.2,15.700000000000003,Billerica - Billerica Memorial High School,00310505, 2.3, 6.4, 4.6, 84.3, 0.1, 0.3, 2.0, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,23.400000000000006,Billerica - Eugene C Vining,00310030, 2.0, 4.6, 10.2, 76.6, 0.0, 0.5, 6.1, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,15.5,Billerica - Frederick J Dutile,00310007, 4.3, 3.3, 5.6, 84.5, 0.0, 0.0, 2.3, 50.2, 49.8 -1,1,a-cure-i1,2016-17,3.4,23.099999999999994,Billerica - Hajjar Elementary,00310026, 4.6, 8.6, 8.4, 76.9, 0.4, 0.0, 1.0, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,9.299999999999997,Billerica - John F Kennedy,00310012, 1.6, 2.8, 2.8, 90.7, 0.0, 0.0, 2.2, 50.5, 49.5 -1,1,a-cure-i1,2016-17,2.5,14.599999999999994,Billerica - Locke Middle,00310310, 2.2, 6.2, 3.4, 85.4, 0.0, 0.2, 2.6, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,14.099999999999994,Billerica - Marshall Middle School,00310305, 3.2, 5.5, 3.9, 85.9, 0.2, 0.2, 1.3, 49.6, 50.4 -1,1,a-cure-i1,2016-17,3.5,26.799999999999997,Billerica - Parker,00310015, 5.9, 10.5, 6.9, 73.2, 0.4, 0.0, 3.2, 55.8, 44.2 -1,1,a-cure-i1,2016-17,0.0,24.5,Billerica - Thomas Ditson,00310005, 5.0, 9.0, 6.1, 75.5, 0.0, 0.0, 4.4, 48.9, 51.1 -1,1,a-cure-i1,2016-17,1.5,5.900000000000006,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.6, 0.8, 2.9, 94.1, 0.0, 0.0, 1.6, 48.2, 51.8 -1,1,a-cure-i1,2016-17,0.0,13.700000000000003,Blackstone-Millville - A F Maloney,06220015, 2.4, 1.4, 5.5, 86.3, 0.3, 0.0, 4.1, 47.3, 52.7 -12.108108108108098,5,a-cure-i1,2016-17,5.6,7.400000000000006,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.9, 1.8, 3.6, 92.6, 0.0, 0.0, 1.1, 48.7, 51.3 -1,1,a-cure-i1,2016-17,3.2,10.0,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.2, 1.2, 5.1, 90.0, 0.0, 0.0, 2.5, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,Blackstone-Millville - John F Kennedy Elementary,06220008, 1.7, 0.7, 7.5, 85.3, 0.0, 0.0, 4.8, 56.8, 43.2 -1,1,a-cure-i1,2016-17,0.0,10.599999999999994,Blackstone-Millville - Millville Elementary,06220010, 0.4, 1.4, 6.7, 89.4, 0.0, 0.0, 2.1, 55.1, 44.9 -3.1056511056511056,3.11,a-cure-i1,2016-17,7.9,40.7,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 22.7, 0.7, 11.9, 59.3, 0.8, 0.1, 4.5, 55.5, 44.5 -6.517241379310344,5,a-cure-i1,2016-17,37.8,92.8,Boston - Another Course To College,00350541, 43.0, 5.8, 39.9, 7.2, 0.4, 0.4, 3.1, 49.3, 50.7 -11.286821705426355,5,a-cure-i1,2016-17,54.6,77.4,Boston - Baldwin Early Learning Center,00350003, 15.1, 25.8, 32.1, 22.6, 0.0, 0.0, 4.4, 59.7, 40.3 -7.322033898305085,5,a-cure-i1,2016-17,27.0,59.0,Boston - Beethoven,00350021, 23.4, 3.6, 29.2, 41.0, 0.0, 0.0, 2.7, 49.5, 50.5 -4.979253112033195,4.98,a-cure-i1,2016-17,30.0,96.4,Boston - Blackstone,00350390, 24.1, 1.5, 69.4, 3.6, 0.0, 0.2, 1.2, 52.6, 47.4 -13.268703898840883,5,a-cure-i1,2016-17,78.69999999999999,94.9,Boston - Boston Adult Academy,00350548, 53.8, 2.0, 37.1, 5.1, 0.0, 1.0, 1.0, 48.7, 51.3 -10.642285714285714,5,a-cure-i1,2016-17,58.2,87.5,Boston - Boston Arts Academy,00350546, 40.5, 4.5, 39.4, 12.5, 0.0, 0.0, 3.1, 36.2, 63.8 -18.71345029239766,5,a-cure-i1,2016-17,100.0,85.5,Boston - Boston Collaborative High School,00350755, 43.0, 1.0, 39.4, 14.5, 1.0, 0.0, 1.0, 51.8, 48.2 -7.745222929936305,5,a-cure-i1,2016-17,45.599999999999994,94.2,Boston - Boston Community Leadership Academy,00350558, 36.0, 4.8, 51.2, 5.8, 0.4, 0.0, 1.8, 51.2, 48.8 -6.850152905198777,5,a-cure-i1,2016-17,42.0,98.1,Boston - Boston International High School,00350507, 47.4, 3.4, 45.5, 1.9, 0.0, 0.8, 1.1, 51.9, 48.1 -9.069679849340865,5,a-cure-i1,2016-17,30.099999999999998,53.1,Boston - Boston Latin,00350560, 8.0, 29.0, 12.1, 46.9, 0.1, 0.0, 3.8, 45.1, 54.9 -9.98019801980198,5,a-cure-i1,2016-17,44.1,70.7,Boston - Boston Latin Academy,00350545, 22.7, 21.9, 22.6, 29.3, 0.4, 0.2, 2.9, 41.9, 58.1 -10.264150943396226,5,a-cure-i1,2016-17,44.2,68.9,Boston - Boston Teachers Union School,00350012, 23.0, 2.7, 39.5, 31.1, 0.3, 0.0, 3.4, 51.4, 48.6 -5.970401691331925,5,a-cure-i1,2016-17,35.300000000000004,94.6,Boston - Brighton High,00350505, 44.3, 3.1, 45.7, 5.4, 0.4, 0.1, 1.0, 60.3, 39.7 -1,1,a-cure-i1,2016-17,0.0,86.2,Boston - Carter Developmental Center,00350036, 51.7, 13.8, 17.2, 13.8, 0.0, 3.4, 0.0, 62.1, 37.9 -10.910569105691055,5,a-cure-i1,2016-17,67.1,98.4,Boston - Charles H Taylor,00350054, 75.1, 1.2, 18.1, 1.6, 1.0, 0.2, 2.8, 51.1, 48.9 -8.037296037296038,5,a-cure-i1,2016-17,43.1,85.8,Boston - Charles Sumner,00350052, 19.2, 1.4, 60.8, 14.2, 0.0, 0.2, 4.3, 53.2, 46.8 -7.578059071729958,5,a-cure-i1,2016-17,44.9,94.8,Boston - Charlestown High,00350515, 33.1, 17.0, 43.5, 5.2, 0.1, 0.0, 1.1, 60.1, 39.9 -8.194690265486726,5,a-cure-i1,2016-17,46.300000000000004,90.4,Boston - Clarence R Edwards Middle,00350430, 13.1, 7.5, 68.1, 9.6, 0.0, 0.0, 1.8, 54.3, 45.7 -11.51279426816786,5,a-cure-i1,2016-17,70.3,97.7,Boston - Community Academy,00350518, 68.2, 0.0, 25.0, 2.3, 0.0, 0.0, 4.5, 88.6, 11.4 -8.441717791411044,5,a-cure-i1,2016-17,51.60000000000001,97.8,Boston - Community Academy of Science and Health,00350581, 69.6, 3.3, 23.3, 2.2, 0.0, 0.0, 1.6, 54.0, 46.0 -8.430538172715895,5,a-cure-i1,2016-17,42.1,79.9,Boston - Curley K-8 School,00350020, 18.7, 2.5, 53.8, 20.1, 0.0, 0.1, 4.7, 49.6, 50.4 -4.2155688622754495,4.22,a-cure-i1,2016-17,22.0,83.5,Boston - Curtis Guild,00350062, 1.0, 0.6, 81.2, 16.5, 0.0, 0.0, 0.6, 52.4, 47.6 -1.2378223495702008,1.24,a-cure-i1,2016-17,5.4,69.8,Boston - Dante Alighieri Montessori School,00350066, 1.0, 0.0, 62.5, 30.2, 0.0, 0.0, 6.3, 49.0, 51.0 -12.980512820512821,5,a-cure-i1,2016-17,79.10000000000001,97.5,Boston - David A Ellis,00350072, 35.8, 0.2, 59.6, 2.5, 0.2, 0.0, 1.6, 49.8, 50.2 -9.382113821138212,5,a-cure-i1,2016-17,57.7,98.4,Boston - Dearborn,00350074, 67.3, 0.3, 26.5, 1.6, 0.6, 0.0, 3.6, 55.0, 45.0 -5.957446808510639,5,a-cure-i1,2016-17,28.000000000000004,75.2,Boston - Dennis C Haley,00350077, 30.8, 1.1, 36.9, 24.8, 0.2, 0.4, 5.8, 48.5, 51.5 -4.051724137931036,4.05,a-cure-i1,2016-17,23.500000000000004,92.8,Boston - Donald Mckay,00350080, 2.2, 0.5, 89.2, 7.2, 0.0, 0.0, 0.8, 51.2, 48.8 -7.816666666666666,5,a-cure-i1,2016-17,46.9,96.0,Boston - Dorchester Academy,00350651, 61.6, 1.0, 32.3, 4.0, 0.0, 0.0, 1.0, 45.5, 54.5 -11.454545454545455,5,a-cure-i1,2016-17,69.3,96.8,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 50.3, 1.1, 42.9, 3.2, 1.1, 0.0, 1.6, 55.6, 44.4 -8.974958263772956,5,a-cure-i1,2016-17,33.6,59.9,Boston - Dr. William Henderson Lower,00350266, 25.8, 13.8, 17.5, 40.1, 0.0, 0.5, 2.3, 47.9, 52.1 -7.7346938775510194,5,a-cure-i1,2016-17,37.9,78.4,Boston - Dr. William Henderson Upper,00350426, 43.2, 6.7, 25.7, 21.6, 0.2, 0.2, 2.4, 54.7, 45.3 -16.779944289693592,5,a-cure-i1,2016-17,75.3,71.8,Boston - East Boston Early Childhood Center,00350009, 5.9, 1.2, 62.4, 28.2, 0.0, 0.0, 2.4, 55.3, 44.7 -4.807339449541284,4.81,a-cure-i1,2016-17,26.2,87.2,Boston - East Boston High,00350530, 6.9, 1.3, 77.7, 12.8, 0.6, 0.0, 0.8, 56.7, 43.3 -6.58600237247924,5,a-cure-i1,2016-17,34.699999999999996,84.3,Boston - Edison K-8,00350375, 19.9, 15.7, 45.3, 15.7, 0.6, 0.1, 2.6, 54.4, 45.6 -4.166666666666667,4.17,a-cure-i1,2016-17,25.0,96.0,Boston - Edward Everett,00350088, 42.8, 19.1, 30.6, 4.0, 0.4, 0.0, 3.2, 52.9, 47.1 -9.30232558139535,5,a-cure-i1,2016-17,50.0,86.0,Boston - ELC - West Zone,00350006, 22.8, 7.9, 49.1, 14.0, 0.9, 0.0, 5.3, 54.4, 45.6 -12.639618138424822,5,a-cure-i1,2016-17,33.1,41.9,Boston - Eliot Elementary,00350096, 9.5, 6.8, 19.7, 58.1, 0.2, 0.2, 5.6, 50.7, 49.3 -5.809076682316119,5,a-cure-i1,2016-17,23.2,63.9,Boston - Ellis Mendell,00350100, 22.5, 0.4, 33.6, 36.1, 0.0, 0.0, 7.4, 52.5, 47.5 -9.125138427464007,5,a-cure-i1,2016-17,51.49999999999999,90.3,Boston - Excel High School,00350522, 37.7, 21.9, 28.8, 9.7, 0.4, 0.4, 1.1, 61.9, 38.1 -9.461457233368533,5,a-cure-i1,2016-17,56.0,94.7,Boston - Fenway High School,00350540, 33.9, 3.6, 55.3, 5.3, 0.0, 0.3, 1.7, 47.2, 52.8 -6.4080100125156445,5,a-cure-i1,2016-17,32.0,79.9,Boston - Franklin D Roosevelt,00350116, 33.1, 2.2, 43.0, 20.1, 0.0, 0.2, 1.3, 49.0, 51.0 -8.61965317919075,5,a-cure-i1,2016-17,46.599999999999994,86.5,Boston - Gardner Pilot Academy,00350326, 12.0, 5.2, 64.8, 13.5, 0.0, 0.5, 4.0, 53.1, 46.9 -6.293464858199753,5,a-cure-i1,2016-17,31.9,81.1,Boston - George H Conley,00350122, 36.5, 2.7, 39.2, 18.9, 0.0, 0.0, 2.7, 56.3, 43.7 -15.125131440588856,5,a-cure-i1,2016-17,89.9,95.1,Boston - Greater Egleston Community High School,00350543, 30.7, 0.0, 61.8, 4.9, 0.9, 0.0, 1.8, 53.8, 46.2 -4.591768631813125,4.59,a-cure-i1,2016-17,25.799999999999997,89.9,Boston - Harvard-Kent,00350200, 23.0, 29.1, 34.5, 10.1, 0.2, 0.2, 2.8, 55.8, 44.2 -8.661899897854953,5,a-cure-i1,2016-17,53.0,97.9,Boston - Haynes Early Education Center,00350010, 52.4, 2.1, 38.5, 2.1, 1.1, 0.0, 3.7, 52.9, 47.1 -7.47470398277718,5,a-cure-i1,2016-17,43.400000000000006,92.9,Boston - Henry Grew,00350135, 42.7, 2.1, 42.7, 7.1, 0.0, 0.4, 5.0, 49.8, 50.2 -7.400809716599191,5,a-cure-i1,2016-17,45.7,98.8,Boston - Higginson,00350015, 41.0, 0.6, 53.8, 1.2, 0.0, 0.6, 2.9, 54.3, 45.7 -11.393692777212614,5,a-cure-i1,2016-17,70.0,98.3,Boston - Higginson/Lewis K-8,00350377, 51.5, 0.8, 40.3, 1.7, 0.6, 0.0, 5.1, 55.2, 44.8 -1.043869516310461,1.04,a-cure-i1,2016-17,5.8,88.9,Boston - Horace Mann School for the Deaf,00350750, 37.8, 6.7, 41.1, 11.1, 0.0, 0.0, 3.3, 61.1, 38.9 -2.6666666666666665,2.67,a-cure-i1,2016-17,16.0,96.0,Boston - Hugh Roe O'Donnell,00350141, 0.7, 2.6, 91.2, 4.0, 0.0, 0.0, 1.5, 51.5, 48.5 -5.362350380848748,5,a-cure-i1,2016-17,30.8,91.9,Boston - Jackson Mann,00350013, 38.4, 11.0, 39.1, 8.1, 0.3, 0.0, 3.1, 57.5, 42.5 -7.432258064516129,5,a-cure-i1,2016-17,36.0,77.5,Boston - James Condon Elementary,00350146, 34.9, 7.4, 31.6, 22.5, 0.1, 0.5, 3.1, 50.5, 49.5 -6.446521287642784,5,a-cure-i1,2016-17,38.800000000000004,96.3,Boston - James J Chittick,00350154, 64.2, 1.7, 26.7, 3.7, 0.0, 0.0, 3.7, 55.1, 44.9 -4.680412371134022,4.68,a-cure-i1,2016-17,22.700000000000003,77.6,Boston - James Otis,00350156, 5.0, 2.0, 69.1, 22.4, 0.0, 0.0, 1.5, 48.5, 51.5 -10.323618090452262,5,a-cure-i1,2016-17,64.2,99.5,Boston - James P Timilty Middle,00350485, 29.4, 1.6, 65.8, 0.5, 0.0, 0.3, 2.4, 53.1, 46.9 -6.151224707135249,5,a-cure-i1,2016-17,36.099999999999994,93.9,Boston - James W Hennigan,00350153, 27.7, 2.2, 62.1, 6.1, 0.0, 0.2, 1.7, 50.3, 49.7 -8.918304033092037,5,a-cure-i1,2016-17,53.9,96.7,Boston - Jeremiah E Burke High,00350525, 72.8, 0.6, 22.5, 3.3, 0.0, 0.0, 0.8, 51.9, 48.1 -10.474967907573811,5,a-cure-i1,2016-17,51.0,77.9,Boston - John D Philbrick,00350172, 40.7, 1.2, 32.6, 22.1, 0.0, 0.6, 2.9, 52.9, 47.1 -6.1112277019937045,5,a-cure-i1,2016-17,36.4,95.3,Boston - John F Kennedy,00350166, 20.4, 1.0, 71.5, 4.7, 0.0, 0.0, 2.4, 50.0, 50.0 -8.286315789473685,5,a-cure-i1,2016-17,49.2,95.0,Boston - John W McCormack,00350179, 32.0, 7.2, 55.0, 5.0, 0.0, 0.0, 0.9, 51.4, 48.6 -4.779011099899092,4.78,a-cure-i1,2016-17,29.6,99.1,Boston - John Winthrop,00350180, 58.4, 2.7, 31.9, 0.9, 0.6, 1.5, 4.0, 46.5, 53.5 -12.757020757020756,5,a-cure-i1,2016-17,65.3,81.9,Boston - Joseph J Hurley,00350182, 6.2, 0.6, 72.5, 18.1, 0.0, 0.0, 2.5, 49.3, 50.7 -3.9786552828175026,3.98,a-cure-i1,2016-17,23.3,93.7,Boston - Joseph Lee,00350183, 53.4, 6.3, 28.8, 6.3, 0.0, 0.3, 5.0, 56.0, 44.0 -4.292020373514432,4.29,a-cure-i1,2016-17,15.8,58.9,Boston - Joseph P Manning,00350184, 19.0, 3.8, 27.8, 41.1, 0.0, 0.6, 7.6, 53.2, 46.8 -6.888068880688807,5,a-cure-i1,2016-17,35.0,81.3,Boston - Joseph P Tynan,00350181, 39.2, 8.2, 27.6, 18.7, 0.0, 0.0, 6.3, 58.2, 41.8 -10.046511627906977,5,a-cure-i1,2016-17,56.699999999999996,90.3,Boston - Josiah Quincy,00350286, 15.7, 57.1, 13.5, 9.7, 0.1, 0.0, 3.9, 50.2, 49.8 -6.882483370288248,5,a-cure-i1,2016-17,19.4,45.1,Boston - Joyce Kilmer,00350190, 13.6, 8.7, 17.5, 54.9, 0.0, 0.2, 5.1, 54.3, 45.7 -7.919028340080971,5,a-cure-i1,2016-17,48.9,98.8,Boston - King K-8,00350376, 63.3, 0.8, 30.0, 1.2, 0.2, 0.4, 4.1, 51.4, 48.6 -2.7863247863247866,2.79,a-cure-i1,2016-17,16.3,93.6,Boston - Lee Academy,00350001, 56.1, 7.0, 24.6, 6.4, 2.1, 0.5, 3.2, 52.9, 47.1 -7.829787234042553,5,a-cure-i1,2016-17,48.3,98.7,Boston - Lilla G. Frederick Middle School,00350383, 45.9, 9.2, 40.7, 1.3, 0.0, 0.2, 2.7, 53.0, 47.0 -9.064377682403432,5,a-cure-i1,2016-17,26.4,46.6,Boston - Lyndon,00350262, 8.8, 2.1, 33.0, 53.4, 0.0, 0.0, 2.7, 51.7, 48.3 -8.05,5,a-cure-i1,2016-17,32.2,64.0,Boston - Lyon K-8,00350004, 15.8, 10.1, 30.9, 36.0, 0.0, 0.0, 7.2, 55.4, 44.6 -5.936962750716332,5,a-cure-i1,2016-17,25.9,69.8,Boston - Lyon Upper 9-12,00350655, 24.6, 6.3, 34.1, 30.2, 0.0, 0.0, 4.8, 50.0, 50.0 -7.8933333333333335,5,a-cure-i1,2016-17,48.1,97.5,Boston - Madison Park High,00350537, 39.2, 0.8, 53.9, 2.5, 0.5, 0.1, 3.0, 56.5, 43.5 -4.344827586206897,4.34,a-cure-i1,2016-17,18.9,69.6,Boston - Manassah E Bradley,00350215, 4.9, 6.3, 54.9, 30.4, 0.0, 0.0, 3.5, 50.0, 50.0 -10.969574036511156,5,a-cure-i1,2016-17,67.6,98.6,Boston - Margarita Muniz Academy,00350549, 4.2, 0.0, 93.3, 1.4, 0.0, 0.0, 1.1, 40.1, 59.9 -6.19522776572668,5,a-cure-i1,2016-17,35.699999999999996,92.2,Boston - Mario Umana Academy,00350656, 3.6, 1.8, 85.8, 7.8, 0.0, 0.1, 0.9, 52.5, 47.5 -11.066381156316915,5,a-cure-i1,2016-17,64.6,93.4,Boston - Mather,00350227, 37.8, 31.3, 18.0, 6.6, 0.5, 0.0, 5.8, 49.1, 50.9 -7.8691206543967285,5,a-cure-i1,2016-17,48.1,97.8,Boston - Mattahunt,00350226, 71.5, 0.2, 23.7, 2.2, 0.2, 0.0, 2.4, 50.2, 49.8 -9.11722731906218,5,a-cure-i1,2016-17,55.9,98.1,Boston - Maurice J Tobin,00350229, 31.8, 0.2, 63.7, 1.9, 0.2, 0.2, 1.9, 50.5, 49.5 -8.369785794813978,5,a-cure-i1,2016-17,46.4,88.7,Boston - Michael J Perkins,00350231, 42.9, 2.1, 38.7, 11.3, 1.3, 0.0, 3.8, 46.2, 53.8 -8.83435582822086,5,a-cure-i1,2016-17,54.0,97.8,Boston - Mildred Avenue K-8,00350378, 66.3, 1.2, 26.5, 2.2, 1.8, 0.0, 2.0, 50.5, 49.5 -9.642228739002933,5,a-cure-i1,2016-17,41.1,68.2,Boston - Mission Hill School,00350382, 20.7, 0.5, 39.2, 31.8, 0.5, 0.5, 6.9, 58.5, 41.5 -10.40381558028617,5,a-cure-i1,2016-17,40.9,62.9,Boston - Mozart,00350237, 26.9, 5.7, 21.1, 37.1, 0.6, 0.0, 8.6, 57.7, 42.3 -8.253164556962025,5,a-cure-i1,2016-17,48.9,94.8,Boston - Nathan Hale,00350243, 50.6, 2.9, 36.8, 5.2, 0.0, 0.0, 4.6, 46.0, 54.0 -9.710233029381966,5,a-cure-i1,2016-17,59.900000000000006,98.7,Boston - New Mission High School,00350542, 65.0, 0.3, 31.6, 1.3, 0.6, 0.0, 1.3, 50.9, 49.1 -6.873586844809866,5,a-cure-i1,2016-17,41.8,97.3,Boston - O W Holmes,00350138, 60.3, 2.7, 27.7, 2.7, 0.3, 0.5, 5.7, 53.3, 46.7 -9.754780652418448,5,a-cure-i1,2016-17,54.2,88.9,Boston - O'Bryant School Math/Science,00350575, 32.8, 22.5, 30.8, 11.1, 0.4, 0.1, 2.2, 44.3, 55.7 -8.03864734299517,5,a-cure-i1,2016-17,20.8,41.4,Boston - Oliver Hazard Perry,00350255, 17.1, 3.2, 17.1, 58.6, 0.0, 0.5, 3.6, 57.2, 42.8 -5.453061224489796,5,a-cure-i1,2016-17,33.4,98.0,Boston - Orchard Gardens,00350257, 46.8, 1.5, 46.7, 2.0, 0.5, 0.3, 2.1, 51.2, 48.8 -5.418803418803419,5,a-cure-i1,2016-17,31.7,93.6,Boston - Patrick J Kennedy,00350264, 2.4, 2.0, 88.6, 6.4, 0.0, 0.0, 0.7, 53.2, 46.8 -7.506792058516197,5,a-cure-i1,2016-17,44.900000000000006,95.7,Boston - Paul A Dever,00350268, 22.9, 5.5, 64.3, 4.3, 0.2, 0.2, 2.4, 53.5, 46.5 -7.7690721649484535,5,a-cure-i1,2016-17,47.1,97.0,Boston - Pauline Agassiz Shaw Elementary School,00350014, 65.5, 3.0, 25.1, 3.0, 0.0, 0.0, 3.4, 53.7, 46.3 -4.4152431011826545,4.42,a-cure-i1,2016-17,21.0,76.1,Boston - Phineas Bates,00350278, 27.5, 5.7, 37.1, 23.9, 0.4, 0.0, 5.4, 51.1, 48.9 -8.560083594566354,5,a-cure-i1,2016-17,51.2,95.7,Boston - Quincy Upper School,00350565, 21.3, 51.0, 20.4, 4.3, 0.2, 0.2, 2.6, 55.1, 44.9 -10.604651162790699,5,a-cure-i1,2016-17,62.7,94.6,Boston - Rafael Hernandez,00350691, 2.2, 0.0, 90.4, 5.4, 0.0, 0.0, 2.0, 45.5, 54.5 -5.659730722154222,5,a-cure-i1,2016-17,28.9,81.7,Boston - Richard J Murphy,00350240, 18.7, 38.9, 20.0, 18.3, 0.3, 0.4, 3.4, 53.5, 46.5 -8.56760374832664,5,a-cure-i1,2016-17,40.0,74.7,Boston - Roger Clap,00350298, 37.6, 5.9, 28.8, 25.3, 0.6, 0.0, 1.8, 47.1, 52.9 -9.326829268292682,5,a-cure-i1,2016-17,47.8,82.0,Boston - Samuel Adams,00350302, 4.1, 0.3, 75.5, 18.0, 0.7, 0.0, 1.4, 53.1, 46.9 -9.013844515441958,5,a-cure-i1,2016-17,52.9,93.9,Boston - Samuel W Mason,00350304, 49.4, 1.7, 37.2, 6.1, 0.4, 0.9, 4.3, 56.7, 43.3 -5.931313131313132,5,a-cure-i1,2016-17,36.7,99.0,Boston - Sarah Greenwood,00350308, 23.6, 0.0, 73.7, 1.0, 0.0, 0.3, 1.5, 51.6, 48.4 -7.341772151898734,5,a-cure-i1,2016-17,43.5,94.8,Boston - Snowden International School at Copley,00350690, 35.3, 6.6, 49.7, 5.2, 0.5, 0.7, 2.1, 47.4, 52.6 -6.113285272914523,5,a-cure-i1,2016-17,37.10000000000001,97.1,Boston - TechBoston Academy,00350657, 65.9, 3.8, 24.2, 2.9, 0.4, 0.2, 2.6, 55.5, 44.5 -8.048979591836735,5,a-cure-i1,2016-17,49.300000000000004,98.0,Boston - The English High,00350535, 41.6, 1.6, 53.9, 2.0, 0.4, 0.0, 0.5, 55.7, 44.3 -3.510791366906474,3.51,a-cure-i1,2016-17,18.299999999999997,83.4,Boston - Thomas J Kenny,00350328, 41.3, 17.2, 20.5, 16.6, 0.3, 0.0, 4.2, 53.9, 46.1 -6.5062240663900415,5,a-cure-i1,2016-17,39.2,96.4,Boston - UP Academy Holland,00350167, 43.5, 4.6, 41.8, 3.6, 0.0, 0.1, 6.5, 50.9, 49.1 -8.985823336968375,5,a-cure-i1,2016-17,51.5,91.7,Boston - Urban Science Academy,00350579, 50.9, 1.4, 36.3, 8.3, 0.2, 0.0, 2.8, 60.0, 40.0 -4.510288065843621,4.51,a-cure-i1,2016-17,13.7,48.6,Boston - Warren-Prescott,00350346, 13.7, 5.3, 24.4, 51.4, 0.3, 0.2, 4.6, 53.6, 46.4 -7.594390507011866,5,a-cure-i1,2016-17,44.0,92.7,Boston - Washington Irving Middle,00350445, 41.3, 1.2, 47.4, 7.3, 0.6, 0.0, 2.3, 51.7, 48.3 -6.346368715083799,5,a-cure-i1,2016-17,35.5,89.5,Boston - West Roxbury Academy,00350658, 47.4, 2.0, 37.7, 10.5, 0.6, 0.2, 1.6, 53.4, 46.6 -5.932584269662921,5,a-cure-i1,2016-17,36.3,97.9,Boston - William E Russell,00350366, 29.9, 11.9, 51.7, 2.1, 0.8, 0.3, 3.4, 50.9, 49.1 -12.702819956616052,5,a-cure-i1,2016-17,73.2,92.2,Boston - William Ellery Channing,00350360, 48.8, 1.6, 38.9, 7.8, 0.0, 0.4, 2.5, 45.9, 54.1 -4.732984293193717,4.73,a-cure-i1,2016-17,22.6,76.4,Boston - William H Ohrenberger,00350258, 23.4, 4.7, 44.0, 23.6, 0.2, 0.3, 3.8, 56.0, 44.0 -3.928571428571429,3.93,a-cure-i1,2016-17,22.0,89.6,Boston - William McKinley,00350363, 47.8, 0.9, 37.4, 10.4, 0.3, 0.0, 3.3, 72.4, 27.6 -8.11522633744856,5,a-cure-i1,2016-17,49.3,97.2,Boston - William Monroe Trotter,00350370, 59.9, 0.6, 32.5, 2.8, 0.0, 0.7, 3.5, 52.1, 47.9 -8.31111111111111,5,a-cure-i1,2016-17,37.4,72.0,Boston - Winship Elementary,00350374, 18.5, 12.3, 36.2, 28.0, 0.0, 0.4, 4.5, 54.7, 45.3 -9.226395939086295,5,a-cure-i1,2016-17,56.800000000000004,98.5,Boston - Young Achievers,00350380, 52.6, 0.0, 44.2, 1.5, 0.2, 0.0, 1.5, 51.4, 48.6 -10.91047619047619,5,a-cure-i1,2016-17,35.8,52.5,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 27.5, 2.2, 19.7, 47.5, 0.7, 0.0, 2.4, 48.1, 51.9 -3.611814345991561,3.61,a-cure-i1,2016-17,21.4,94.8,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 48.3, 2.0, 40.1, 5.2, 1.0, 0.2, 3.2, 42.3, 57.7 -6.842332613390929,5,a-cure-i1,2016-17,39.6,92.6,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 54.8, 0.8, 32.6, 7.4, 0.0, 0.0, 4.4, 51.5, 48.5 -5.491803278688525,5,a-cure-i1,2016-17,33.5,97.6,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 69.2, 1.0, 24.8, 2.4, 0.5, 0.2, 1.9, 51.8, 48.2 -4.824365482233502,4.82,a-cure-i1,2016-17,29.7,98.5,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 64.1, 0.3, 31.0, 1.5, 0.1, 0.0, 3.0, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,12.400000000000006,Bourne - Bourne High School,00360505, 1.6, 2.1, 4.4, 87.6, 0.0, 0.2, 4.1, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,10.5,Bourne - Bourne Middle School,00360325, 1.4, 2.4, 3.0, 89.5, 0.8, 0.0, 3.0, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,10.400000000000006,Bourne - Bournedale Elementary School,00360005, 1.6, 0.7, 3.7, 89.6, 0.9, 0.2, 3.2, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,13.5,Bourne - Peebles Elementary School,00360010, 2.3, 1.4, 3.7, 86.5, 2.0, 0.3, 3.9, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,12.799999999999997,Boxford - Harry Lee Cole,00380005, 0.0, 4.6, 3.1, 87.2, 0.3, 0.0, 4.9, 55.4, 44.6 -1,1,a-cure-i1,2016-17,0.0,8.599999999999994,Boxford - Spofford Pond,00380013, 0.2, 3.3, 2.6, 91.4, 0.0, 0.2, 2.3, 50.9, 49.1 -6.857142857142857,5,a-cure-i1,2016-17,6.0,14.0,Boylston - Boylston Elementary,00390005, 1.4, 4.8, 3.4, 86.0, 0.7, 0.0, 3.8, 48.1, 51.9 -1,1,a-cure-i1,2016-17,0.0,29.200000000000003,Braintree - Archie T Morrison,00400033, 8.6, 13.3, 5.2, 70.8, 0.0, 0.2, 1.9, 49.4, 50.6 -1,1,a-cure-i1,2016-17,3.6999999999999997,23.700000000000003,Braintree - Braintree High,00400505, 5.9, 13.1, 3.7, 76.3, 0.1, 0.1, 0.8, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,35.5,Braintree - Donald Ross,00400050, 7.1, 17.7, 7.8, 64.5, 1.4, 0.0, 1.4, 55.0, 45.0 -1,1,a-cure-i1,2016-17,3.8,26.5,Braintree - East Middle School,00400305, 6.8, 13.5, 3.8, 73.5, 0.4, 0.0, 1.9, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,19.5,Braintree - Highlands,00400015, 2.6, 13.6, 2.6, 80.5, 0.5, 0.0, 0.2, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,26.700000000000003,Braintree - Hollis,00400005, 2.8, 17.2, 4.8, 73.3, 0.5, 0.0, 1.4, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,32.599999999999994,Braintree - Liberty,00400025, 1.6, 24.3, 5.1, 67.4, 0.0, 0.2, 1.3, 47.8, 52.2 -1,1,a-cure-i1,2016-17,0.0,31.799999999999997,Braintree - Mary E Flaherty School,00400020, 2.2, 22.4, 5.1, 68.2, 0.3, 0.0, 1.9, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,29.400000000000006,Braintree - Monatiquot Kindergarten Center,00400009, 5.0, 16.8, 4.6, 70.6, 0.4, 0.0, 2.7, 51.1, 48.9 -1,1,a-cure-i1,2016-17,2.6,23.299999999999997,Braintree - South Middle School,00400310, 2.2, 16.1, 3.8, 76.7, 0.1, 0.0, 1.0, 48.7, 51.3 -1,1,a-cure-i1,2016-17,0.0,11.599999999999994,Brewster - Eddy Elementary,00410010, 2.6, 1.3, 4.7, 88.4, 0.0, 0.0, 3.0, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,17.400000000000006,Brewster - Stony Brook Elementary,00410005, 2.7, 0.8, 8.1, 82.6, 0.0, 0.0, 5.8, 48.3, 51.7 -1.5582329317269077,1.56,a-cure-i1,2016-17,9.7,99.6,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 60.7, 1.5, 33.0, 0.4, 0.7, 0.0, 3.7, 46.4, 53.6 -1,1,a-cure-i1,2016-17,0.0,10.299999999999997,Bridgewater-Raynham - Bridgewater Middle School,06250320, 3.6, 0.8, 2.0, 89.7, 0.0, 0.2, 3.8, 54.2, 45.8 -1,1,a-cure-i1,2016-17,3.3000000000000003,12.599999999999994,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 3.9, 2.3, 2.7, 87.4, 0.2, 0.1, 3.4, 50.0, 50.0 -1,1,a-cure-i1,2016-17,4.1,11.0,Bridgewater-Raynham - Laliberte Elementary School,06250050, 4.6, 1.8, 2.0, 89.0, 0.4, 0.0, 2.2, 54.2, 45.8 -1,1,a-cure-i1,2016-17,0.0,10.799999999999997,Bridgewater-Raynham - Merrill Elementary School,06250020, 5.9, 2.8, 0.3, 89.2, 0.0, 0.0, 1.9, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,13.900000000000006,Bridgewater-Raynham - Mitchell Elementary School,06250002, 6.0, 1.6, 2.7, 86.1, 0.0, 0.1, 3.5, 52.9, 47.1 -1,1,a-cure-i1,2016-17,0.0,11.400000000000006,Bridgewater-Raynham - Raynham Middle School,06250315, 2.7, 2.3, 2.7, 88.6, 0.0, 0.1, 3.5, 49.5, 50.5 -1,1,a-cure-i1,2016-17,0.0,9.099999999999994,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 90.9, 0.0, 0.0, 9.1, 54.5, 45.5 -1,1,a-cure-i1,2016-17,0.0,13.400000000000006,Bridgewater-Raynham - Williams Intermediate School,06250300, 3.5, 1.1, 3.0, 86.6, 0.4, 0.3, 5.1, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,5.599999999999994,Brimfield - Brimfield Elementary,00430005, 3.5, 1.8, 0.4, 94.4, 0.0, 0.0, 0.0, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,4.5,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.2, 0.2, 2.6, 95.5, 0.2, 0.0, 1.3, 28.2, 71.4 -1,1,a-cure-i1,2016-17,1.9,13.599999999999994,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 2.9, 0.7, 6.4, 86.4, 0.5, 0.0, 3.1, 57.7, 42.1 -1,1,a-cure-i1,2016-17,3.4,58.3,Brockton - Ashfield Middle School,00440421, 42.7, 1.6, 9.2, 41.7, 0.2, 0.4, 4.1, 50.7, 49.3 -1.2404494382022473,1.24,a-cure-i1,2016-17,6.9,89.0,Brockton - Barrett Russell School,00440007, 58.9, 1.8, 19.2, 11.0, 0.5, 0.0, 8.7, 53.4, 46.6 -3.3707865168539324,3.37,a-cure-i1,2016-17,15.0,71.2,Brockton - Brockton Champion High School,00440515, 38.4, 0.6, 24.9, 28.8, 0.6, 0.6, 6.2, 61.0, 39.0 -3.270935960591133,3.27,a-cure-i1,2016-17,16.6,81.2,Brockton - Brockton High,00440505, 62.2, 2.6, 12.5, 18.8, 0.4, 0.2, 3.4, 50.5, 49.5 -1.5620641562064155,1.56,a-cure-i1,2016-17,7.0,71.7,Brockton - Brookfield,00440010, 55.4, 1.7, 10.4, 28.3, 0.2, 0.3, 3.6, 52.5, 47.5 -1.1034482758620692,1.1,a-cure-i1,2016-17,5.4,78.3,Brockton - Downey,00440110, 51.5, 2.1, 16.8, 21.7, 0.9, 0.5, 6.6, 56.6, 43.4 -1.186516853932584,1.19,a-cure-i1,2016-17,6.6,89.0,Brockton - Dr W Arnone Community School,00440001, 62.0, 0.2, 18.2, 11.0, 1.0, 0.0, 7.5, 54.2, 45.8 -3.440462427745665,3.44,a-cure-i1,2016-17,18.6,86.5,Brockton - East Middle School,00440405, 69.8, 0.7, 11.3, 13.5, 0.0, 0.6, 4.1, 55.2, 44.8 -1.9098660170523751,1.91,a-cure-i1,2016-17,9.799999999999999,82.1,Brockton - Edgar B Davis,00440023, 60.9, 0.3, 14.7, 17.9, 0.2, 0.5, 5.5, 49.6, 50.4 -9.307068366164543,5,a-cure-i1,2016-17,50.2,86.3,Brockton - Edison Academy,00440520, 71.9, 1.3, 11.8, 13.7, 0.0, 0.0, 1.3, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,94.3,Brockton - Frederick Douglass Academy,00440080, 77.1, 0.0, 14.3, 5.7, 0.0, 0.0, 2.9, 80.0, 20.0 -1,1,a-cure-i1,2016-17,0.0,72.9,Brockton - Gilmore School Early Childhood Center,00440050, 57.3, 1.7, 9.4, 27.1, 0.3, 0.0, 4.2, 63.5, 36.5 -1.536878216123499,1.54,a-cure-i1,2016-17,5.6,58.3,Brockton - Goddard Alternative School,00440400, 41.7, 0.0, 14.6, 41.7, 0.0, 0.0, 2.1, 66.7, 33.3 -4.081377151799686,4.08,a-cure-i1,2016-17,16.299999999999997,63.9,Brockton - Hancock,00440045, 46.0, 3.6, 8.7, 36.1, 0.4, 0.3, 4.8, 50.4, 49.6 -1.8612593383137674,1.86,a-cure-i1,2016-17,10.9,93.7,Brockton - Huntington,00440055, 76.4, 0.2, 12.9, 6.3, 0.4, 0.0, 3.8, 51.6, 48.4 -1.772594752186589,1.77,a-cure-i1,2016-17,7.6,68.6,Brockton - John F Kennedy,00440017, 44.6, 5.1, 11.1, 31.4, 0.0, 0.0, 7.8, 50.1, 49.9 -3.4773333333333327,3.48,a-cure-i1,2016-17,16.299999999999997,75.0,Brockton - Joseph F. Plouffe Academy,00440422, 39.2, 2.6, 26.7, 25.0, 0.4, 0.1, 5.9, 48.2, 51.8 -2.1566110397946083,2.16,a-cure-i1,2016-17,10.5,77.9,Brockton - Louis F Angelo Elementary,00440065, 53.2, 6.3, 13.1, 22.1, 0.8, 0.1, 4.3, 51.8, 48.2 -2.6878547105561865,2.69,a-cure-i1,2016-17,14.8,88.1,Brockton - Manthala George Jr. School,00440003, 36.4, 0.4, 46.5, 11.9, 0.8, 0.0, 4.0, 50.5, 49.5 -2.991304347826087,2.99,a-cure-i1,2016-17,12.9,69.0,Brockton - Mary E. Baker School,00440002, 50.2, 1.7, 12.9, 31.0, 0.1, 0.0, 4.0, 51.8, 48.2 -2.265642151481888,2.27,a-cure-i1,2016-17,12.9,91.1,Brockton - North Middle School,00440410, 70.9, 2.1, 14.5, 8.9, 0.2, 0.4, 3.0, 53.0, 47.0 -1.3333333333333333,1.33,a-cure-i1,2016-17,7.5,90.0,Brockton - Oscar F Raymond,00440078, 76.5, 0.7, 8.9, 10.0, 0.5, 0.0, 3.5, 53.1, 46.9 -1.3056994818652852,1.31,a-cure-i1,2016-17,6.300000000000001,77.2,Brockton - South Middle School,00440415, 51.3, 3.1, 16.0, 22.8, 0.0, 0.4, 6.4, 52.8, 47.2 -1.574468085106383,1.57,a-cure-i1,2016-17,7.4,75.2,Brockton - West Middle School,00440420, 50.6, 3.5, 14.9, 24.8, 0.3, 0.5, 5.4, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,94.6,Brooke Charter School (District) - Brooke Charter School,04280305, 54.5, 1.9, 35.8, 5.4, 0.4, 0.0, 2.0, 48.8, 51.2 -1,1,a-cure-i1,2016-17,0.0,9.400000000000006,Brookfield - Brookfield Elementary,00450005, 0.3, 0.0, 4.1, 90.6, 0.3, 0.0, 4.7, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,41.7,Brookline - Brookline Early Education Program at Beacon,00460001, 3.3, 15.0, 8.3, 58.3, 0.0, 0.0, 15.0, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,57.8,Brookline - Brookline Early Education Program at Putterham,00460002, 4.7, 29.7, 7.8, 42.2, 0.0, 0.0, 15.6, 60.9, 39.1 -4.785046728971962,4.79,a-cure-i1,2016-17,12.799999999999999,42.8,Brookline - Brookline High,00460505, 7.6, 16.7, 10.4, 57.2, 0.0, 0.0, 8.0, 50.2, 49.8 -4.336755646817248,4.34,a-cure-i1,2016-17,13.2,48.7,Brookline - Edith C Baker,00460005, 5.1, 25.4, 10.1, 51.3, 0.0, 0.3, 7.9, 50.8, 49.2 -2.6019417475728153,2.6,a-cure-i1,2016-17,6.699999999999999,41.2,Brookline - Edward Devotion,00460015, 4.9, 12.9, 13.4, 58.8, 0.0, 0.0, 10.0, 51.9, 48.1 -6.915601023017902,5,a-cure-i1,2016-17,16.9,39.1,Brookline - Heath,00460025, 3.8, 17.6, 9.0, 60.9, 0.0, 0.0, 8.7, 49.1, 50.7 -2.9387755102040813,2.94,a-cure-i1,2016-17,7.199999999999999,39.2,Brookline - John D Runkle,00460045, 3.1, 15.2, 10.1, 60.8, 0.0, 0.0, 10.8, 51.9, 48.1 -3.7699443413729132,3.77,a-cure-i1,2016-17,12.700000000000001,53.9,Brookline - Lawrence,00460030, 5.8, 31.5, 8.4, 46.1, 0.0, 0.1, 8.0, 51.8, 48.2 -5.00473933649289,5,a-cure-i1,2016-17,13.2,42.2,Brookline - Michael Driscoll,00460020, 5.3, 14.7, 7.5, 57.8, 0.2, 0.0, 14.5, 51.2, 48.8 -8.37752808988764,5,a-cure-i1,2016-17,23.3,44.5,Brookline - Pierce,00460040, 5.2, 20.7, 10.3, 55.5, 0.0, 0.0, 8.3, 48.8, 51.2 -1,1,a-cure-i1,2016-17,0.0,51.5,Brookline - The Lynch Center,00460060, 8.8, 17.6, 13.2, 48.5, 0.0, 0.0, 11.8, 60.3, 39.7 -4.217054263565891,4.22,a-cure-i1,2016-17,13.6,51.6,Brookline - William H Lincoln,00460035, 9.9, 22.2, 12.0, 48.4, 0.0, 0.0, 7.5, 49.5, 50.5 -3.210702341137123,3.21,a-cure-i1,2016-17,6.0,29.900000000000006,Burlington - Burlington High,00480505, 4.4, 16.4, 5.7, 70.1, 0.5, 0.1, 2.8, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,35.599999999999994,Burlington - Fox Hill,00480007, 5.7, 21.1, 4.9, 64.4, 0.0, 0.0, 3.9, 53.6, 46.4 -1,1,a-cure-i1,2016-17,1.9,39.9,Burlington - Francis Wyman Elementary,00480035, 9.8, 19.8, 7.2, 60.1, 0.2, 0.0, 2.8, 49.1, 50.9 -1,1,a-cure-i1,2016-17,3.9,26.099999999999994,Burlington - Marshall Simonds Middle,00480303, 5.6, 11.3, 4.6, 73.9, 0.4, 0.0, 4.1, 53.0, 46.9 -3.2094395280235983,3.21,a-cure-i1,2016-17,6.8,33.900000000000006,Burlington - Memorial,00480015, 5.2, 18.1, 4.4, 66.1, 0.5, 0.0, 5.7, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,29.299999999999997,Burlington - Pine Glen Elementary,00480020, 3.1, 16.0, 6.5, 70.7, 0.0, 0.0, 3.7, 45.6, 54.4 -12.164203612479474,5,a-cure-i1,2016-17,46.3,60.9,Cambridge - Amigos School,00490006, 5.0, 3.4, 43.3, 39.1, 0.0, 0.0, 9.2, 44.3, 55.7 -5.970540098199673,5,a-cure-i1,2016-17,22.8,61.1,Cambridge - Cambridge Rindge and Latin,00490506, 30.3, 11.9, 13.5, 38.9, 0.6, 0.2, 4.7, 51.8, 48.2 -5.506172839506173,5,a-cure-i1,2016-17,22.3,64.8,Cambridge - Cambridge Street Upper School,00490305, 30.3, 9.6, 17.6, 35.2, 1.1, 0.4, 5.7, 49.8, 50.2 -5.843478260869565,5,a-cure-i1,2016-17,16.8,46.0,Cambridge - Cambridgeport,00490007, 19.9, 8.0, 10.0, 54.0, 0.0, 0.0, 8.0, 55.0, 45.0 -2.5728643216080407,2.57,a-cure-i1,2016-17,12.8,79.6,Cambridge - Fletcher/Maynard Academy,00490090, 49.6, 8.8, 15.4, 20.4, 0.4, 0.0, 5.4, 51.5, 48.5 -3.7480314960629926,3.75,a-cure-i1,2016-17,11.9,50.8,Cambridge - Graham and Parks,00490080, 18.9, 20.9, 5.9, 49.2, 0.0, 0.0, 5.1, 51.0, 49.0 -6.929368029739778,5,a-cure-i1,2016-17,23.3,53.8,Cambridge - Haggerty,00490020, 22.5, 13.4, 6.3, 46.2, 0.0, 0.0, 11.5, 49.8, 50.2 -3.0178861788617883,3.02,a-cure-i1,2016-17,11.6,61.5,Cambridge - John M Tobin,00490065, 25.1, 15.1, 11.0, 38.5, 0.7, 0.0, 9.6, 50.9, 49.1 -4.254777070063694,4.25,a-cure-i1,2016-17,16.7,62.8,Cambridge - Kennedy-Longfellow,00490040, 18.4, 19.9, 17.7, 37.2, 0.0, 0.0, 6.8, 52.3, 47.7 -9.653136531365314,5,a-cure-i1,2016-17,32.7,54.2,Cambridge - King Open,00490035, 18.2, 8.9, 16.6, 45.8, 0.3, 0.0, 10.2, 52.6, 47.4 -5.1050583657587545,5,a-cure-i1,2016-17,16.4,51.4,Cambridge - Maria L. Baldwin,00490005, 17.4, 9.6, 12.9, 48.6, 0.3, 0.0, 11.2, 48.9, 51.1 -8.74931129476584,5,a-cure-i1,2016-17,39.699999999999996,72.6,Cambridge - Martin Luther King Jr.,00490030, 26.2, 22.4, 6.6, 27.4, 0.0, 0.0, 17.4, 50.5, 49.5 -3.282051282051282,3.28,a-cure-i1,2016-17,12.0,58.5,Cambridge - Morse,00490045, 23.2, 13.1, 10.8, 41.5, 0.7, 0.3, 10.5, 52.9, 47.1 -4.903732809430256,4.9,a-cure-i1,2016-17,15.600000000000001,50.9,Cambridge - Peabody,00490050, 24.4, 12.3, 6.6, 49.1, 0.0, 0.0, 7.6, 47.8, 52.2 -8.043010752688172,5,a-cure-i1,2016-17,37.400000000000006,74.4,Cambridge - Putnam Avenue Upper School,00490310, 35.9, 10.7, 17.6, 25.6, 0.4, 1.1, 8.8, 47.7, 52.3 -4.96,4.96,a-cure-i1,2016-17,18.6,60.0,Cambridge - Rindge Avenue Upper School,00490315, 30.9, 9.8, 10.5, 40.0, 0.7, 0.4, 7.6, 52.7, 47.3 -2.9142857142857146,2.91,a-cure-i1,2016-17,10.200000000000001,56.0,Cambridge - Vassal Lane Upper School,00490320, 26.1, 14.2, 6.7, 44.0, 0.7, 0.4, 7.8, 48.5, 51.5 -4.99290780141844,4.99,a-cure-i1,2016-17,8.8,28.200000000000003,Canton - Canton High,00500505, 10.8, 9.1, 4.2, 71.8, 0.0, 0.1, 3.9, 48.8, 51.0 -1,1,a-cure-i1,2016-17,3.7,34.599999999999994,Canton - Dean S Luce,00500020, 10.0, 12.6, 4.7, 65.4, 0.2, 0.8, 6.3, 48.0, 52.0 -1,1,a-cure-i1,2016-17,0.0,24.400000000000006,Canton - John F Kennedy,00500017, 5.4, 11.5, 3.4, 75.6, 0.0, 0.0, 4.2, 53.6, 46.4 -3.261707988980717,3.26,a-cure-i1,2016-17,7.4,36.3,Canton - Lt Peter M Hansen,00500012, 13.7, 10.8, 5.8, 63.7, 0.0, 0.0, 6.0, 48.4, 51.6 -1,1,a-cure-i1,2016-17,0.0,41.1,Canton - Rodman Early Childhood Center,00500010, 21.1, 7.8, 6.7, 58.9, 0.0, 0.0, 5.6, 56.7, 43.3 -5.403973509933775,5,a-cure-i1,2016-17,10.200000000000001,30.200000000000003,Canton - Wm H Galvin Middle,00500305, 11.3, 10.1, 4.7, 69.8, 0.0, 0.1, 3.9, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,12.299999999999997,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 1.2, 1.2, 4.5, 87.7, 0.0, 0.0, 5.3, 42.8, 57.2 -1,1,a-cure-i1,2016-17,0.0,23.799999999999997,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 5.1, 1.0, 10.4, 76.2, 2.1, 0.2, 5.0, 62.4, 37.6 -1,1,a-cure-i1,2016-17,1.4,23.900000000000006,Carlisle - Carlisle School,00510025, 0.5, 11.5, 3.2, 76.1, 0.0, 0.0, 8.6, 54.9, 45.1 -1,1,a-cure-i1,2016-17,2.1,3.700000000000003,Carver - Carver Elementary School,00520015, 1.3, 0.3, 1.0, 96.3, 0.0, 0.1, 1.0, 50.4, 49.6 -23.272727272727245,5,a-cure-i1,2016-17,6.4,4.400000000000006,Carver - Carver Middle/High School,00520405, 1.3, 0.2, 1.1, 95.6, 0.1, 0.1, 1.6, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,3.200000000000003,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 56.0, 44.0 -1,1,a-cure-i1,2016-17,4.1,10.200000000000003,Central Berkshire - Craneville,06350025, 0.2, 2.1, 3.8, 89.8, 0.0, 0.0, 4.0, 53.6, 46.4 -1,1,a-cure-i1,2016-17,0.0,8.200000000000003,Central Berkshire - Kittredge,06350035, 1.5, 0.7, 3.0, 91.8, 0.0, 0.0, 3.0, 53.0, 47.0 -1,1,a-cure-i1,2016-17,0.0,8.799999999999997,Central Berkshire - Nessacus Regional Middle School,06350305, 1.0, 1.0, 2.8, 91.2, 0.3, 0.0, 3.8, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.5,7.700000000000003,Central Berkshire - Wahconah Regional High,06350505, 1.1, 0.7, 4.1, 92.3, 0.0, 0.0, 1.8, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,21.0,Chelmsford - Byam School,00560030, 2.0, 9.7, 5.5, 79.0, 0.8, 0.0, 3.0, 56.8, 43.2 -1,1,a-cure-i1,2016-17,0.0,24.900000000000006,Chelmsford - Center Elementary School,00560005, 2.5, 14.3, 4.4, 75.1, 0.0, 0.2, 3.5, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,32.5,Chelmsford - Charles D Harrington,00560025, 4.2, 16.1, 7.9, 67.5, 0.0, 0.0, 4.2, 55.2, 44.8 -1,1,a-cure-i1,2016-17,2.7,20.099999999999994,Chelmsford - Chelmsford High,00560505, 2.6, 11.9, 3.8, 79.9, 0.0, 0.1, 1.8, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,23.599999999999994,Chelmsford - Col Moses Parker School,00560305, 2.2, 14.6, 4.8, 76.4, 0.0, 0.0, 1.9, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,38.2,Chelmsford - Community Education Center,00560001, 3.7, 19.9, 8.8, 61.8, 1.5, 0.0, 4.4, 57.4, 42.6 -1,1,a-cure-i1,2016-17,2.7,22.700000000000003,Chelmsford - McCarthy Middle School,00560310, 3.1, 13.2, 4.0, 77.3, 0.0, 0.4, 2.1, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,28.5,Chelmsford - South Row,00560015, 1.1, 17.4, 6.3, 71.5, 0.0, 0.0, 3.7, 56.2, 43.8 -2.6779661016949152,2.68,a-cure-i1,2016-17,15.8,94.4,Chelsea - Chelsea High,00570505, 6.6, 2.3, 85.0, 5.6, 0.0, 0.1, 0.5, 52.0, 48.0 -1,1,a-cure-i1,2016-17,3.9,95.2,Chelsea - Clark Avenue School,00570050, 3.3, 1.3, 89.4, 4.8, 0.4, 0.0, 0.9, 55.4, 44.6 -1,1,a-cure-i1,2016-17,4.5,91.0,Chelsea - Edgar A Hooks Elementary,00570030, 7.1, 1.0, 80.7, 9.0, 0.5, 0.0, 1.7, 54.8, 45.2 -1,1,a-cure-i1,2016-17,4.0,92.7,Chelsea - Eugene Wright Science and Technology Academy,00570045, 6.2, 1.5, 83.0, 7.3, 0.6, 0.0, 1.3, 56.8, 43.2 -1.4887700534759356,1.49,a-cure-i1,2016-17,8.7,93.5,Chelsea - Frank M Sokolowski Elementary,00570040, 5.5, 1.2, 84.7, 6.5, 0.0, 0.0, 2.2, 51.4, 48.6 -2.906054279749478,2.91,a-cure-i1,2016-17,17.4,95.8,Chelsea - George F. Kelly Elementary,00570035, 2.1, 0.7, 91.6, 4.2, 0.0, 0.0, 1.4, 50.4, 49.6 -4.135021097046414,4.14,a-cure-i1,2016-17,24.5,94.8,Chelsea - Joseph A. Browne School,00570055, 5.9, 2.1, 86.6, 5.2, 0.0, 0.0, 0.2, 48.8, 51.2 -1,1,a-cure-i1,2016-17,4.8,93.4,Chelsea - Shurtleff Early Childhood,00570003, 6.6, 0.5, 85.5, 6.6, 0.1, 0.0, 0.7, 51.7, 48.3 -1.4625550660792954,1.46,a-cure-i1,2016-17,8.3,90.8,Chelsea - William A Berkowitz Elementary,00570025, 5.9, 1.1, 82.8, 9.2, 0.0, 0.2, 0.7, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,5.0,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.7, 0.0, 2.9, 95.0, 1.4, 0.0, 0.0, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,37.4,Chicopee - Barry,00610003, 1.9, 3.5, 29.2, 62.6, 0.0, 0.2, 2.6, 57.2, 42.8 -1,1,a-cure-i1,2016-17,4.7,44.6,Chicopee - Belcher,00610010, 7.4, 0.0, 34.9, 55.4, 0.0, 0.0, 2.2, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.5,41.6,Chicopee - Bellamy Middle,00610305, 2.7, 2.0, 33.8, 58.4, 0.4, 0.0, 2.8, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,62.8,Chicopee - Bowe,00610015, 4.9, 0.7, 52.2, 37.2, 0.2, 0.0, 4.9, 48.5, 51.5 -3.9083969465648853,3.91,a-cure-i1,2016-17,6.4,26.200000000000003,Chicopee - Bowie,00610020, 4.1, 0.8, 18.0, 73.8, 0.0, 0.3, 3.0, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,72.6,Chicopee - Chicopee Academy,00610021, 4.7, 0.0, 63.2, 27.4, 0.0, 0.0, 4.7, 75.5, 24.5 -2.948640483383686,2.95,a-cure-i1,2016-17,6.1,33.099999999999994,Chicopee - Chicopee Comprehensive High School,00610510, 2.3, 2.5, 26.2, 66.9, 0.1, 0.2, 1.8, 53.5, 46.5 -1,1,a-cure-i1,2016-17,4.199999999999999,45.5,Chicopee - Chicopee High,00610505, 4.6, 2.0, 37.4, 54.5, 0.0, 0.1, 1.4, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,45.5,Chicopee - Dupont Middle,00610310, 4.3, 1.6, 36.2, 54.5, 0.1, 0.1, 3.3, 55.3, 44.7 -3.426497277676951,3.43,a-cure-i1,2016-17,11.8,55.1,Chicopee - Fairview Elementary,00610050, 2.7, 2.0, 46.4, 44.9, 0.0, 0.0, 4.0, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.7,79.5,Chicopee - Gen John J Stefanik,00610090, 5.9, 0.3, 70.8, 20.5, 0.0, 0.0, 2.6, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,31.5,Chicopee - Lambert-Lavoie,00610040, 3.0, 2.0, 23.3, 68.5, 0.0, 0.0, 3.3, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,40.3,Chicopee - Litwin,00610022, 4.5, 0.5, 32.7, 59.7, 0.0, 0.0, 2.6, 52.4, 47.6 -1,1,a-cure-i1,2016-17,4.1,35.2,Chicopee - Streiber Memorial School,00610065, 3.5, 2.5, 24.3, 64.8, 0.0, 0.4, 4.6, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,37.7,Chicopee - Szetela Early Childhood Center,00610001, 4.6, 4.6, 24.6, 62.3, 0.0, 0.0, 3.9, 60.1, 39.9 -5.954430379746836,5,a-cure-i1,2016-17,14.700000000000001,39.5,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 5.6, 6.1, 21.0, 60.5, 1.0, 0.3, 5.6, 52.4, 47.6 -4.383110195674563,4.38,a-cure-i1,2016-17,26.6,97.1,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 65.2, 0.0, 29.7, 2.9, 0.4, 0.4, 1.4, 45.2, 54.8 -6.479338842975207,5,a-cure-i1,2016-17,39.2,96.8,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 71.2, 1.8, 22.8, 3.2, 0.0, 0.0, 1.1, 42.3, 57.7 -1,1,a-cure-i1,2016-17,4.8,65.5,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 10.7, 0.6, 49.2, 34.5, 0.0, 0.0, 5.1, 46.9, 53.1 -1,1,a-cure-i1,2016-17,0.0,4.0,Clarksburg - Clarksburg Elementary,00630010, 0.6, 0.6, 1.2, 96.0, 0.0, 0.0, 1.7, 46.2, 53.8 -1,1,a-cure-i1,2016-17,1.1,28.0,Clinton - Clinton Elementary,00640050, 3.0, 1.1, 22.0, 72.0, 0.0, 0.0, 2.0, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,29.099999999999994,Clinton - Clinton Middle School,00640305, 4.7, 1.1, 22.0, 70.9, 0.0, 0.0, 1.3, 55.4, 44.6 -1,1,a-cure-i1,2016-17,2.6,36.5,Clinton - Clinton Senior High,00640505, 4.1, 2.6, 28.8, 63.5, 0.2, 0.0, 0.9, 54.1, 45.9 -7.436619718309859,5,a-cure-i1,2016-17,46.2,99.4,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 80.5, 0.0, 17.5, 0.6, 0.3, 0.6, 0.6, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,7.900000000000006,Cohasset - Cohasset Middle/High School,00650505, 3.2, 2.6, 1.2, 92.1, 0.4, 0.0, 0.5, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,5.0,Cohasset - Deer Hill,00650005, 2.4, 1.3, 0.5, 95.0, 0.0, 0.0, 0.8, 55.0, 45.0 -1,1,a-cure-i1,2016-17,0.0,9.299999999999997,Cohasset - Joseph Osgood,00650010, 2.7, 2.7, 1.1, 90.7, 0.0, 0.0, 2.7, 51.6, 48.4 -2.419512195121951,2.42,a-cure-i1,2016-17,12.4,82.0,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 19.8, 20.3, 37.2, 18.0, 0.2, 0.0, 4.6, 48.9, 51.1 -8.109589041095889,5,a-cure-i1,2016-17,48.099999999999994,94.9,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 62.0, 3.5, 24.3, 5.1, 1.6, 0.3, 3.2, 47.3, 52.7 -1.6343207354443308,1.63,a-cure-i1,2016-17,10.0,97.9,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.7, 0.7, 96.4, 2.1, 0.0, 0.0, 0.0, 51.4, 48.6 -6.1054808686659765,5,a-cure-i1,2016-17,36.9,96.7,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.5, 0.5, 95.8, 3.3, 0.0, 0.0, 0.0, 50.5, 49.5 -6.269592476489028,5,a-cure-i1,2016-17,37.5,95.7,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 1.1, 1.1, 93.6, 4.3, 0.0, 0.0, 0.0, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,32.099999999999994,Concord - Alcott,00670005, 7.8, 7.4, 9.9, 67.9, 0.2, 0.0, 6.8, 49.9, 50.1 -9.072164948453606,5,a-cure-i1,2016-17,11.0,19.400000000000006,Concord - Concord Middle,00670305, 4.8, 5.9, 4.2, 80.6, 0.1, 0.0, 4.5, 47.7, 52.3 -5.170305676855894,5,a-cure-i1,2016-17,7.4,22.900000000000006,Concord - Thoreau,00670020, 1.5, 7.3, 5.1, 77.1, 0.0, 0.0, 9.0, 53.7, 46.3 -1,1,a-cure-i1,2016-17,3.4,17.200000000000003,Concord - Willard,00670030, 1.5, 5.5, 5.1, 82.8, 0.2, 0.0, 4.9, 54.3, 45.7 -4.241860465116279,4.24,a-cure-i1,2016-17,5.7,21.5,Concord-Carlisle - Concord Carlisle High,06400505, 4.3, 9.5, 4.0, 78.5, 0.0, 0.0, 3.7, 47.8, 52.1 -8.035714285714286,5,a-cure-i1,2016-17,45.0,89.6,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 50.9, 2.9, 32.0, 10.4, 0.0, 0.0, 3.8, 44.9, 55.1 -1,1,a-cure-i1,2016-17,0.0,5.0,Conway - Conway Grammar,00680005, 0.0, 0.0, 3.5, 95.0, 0.0, 0.0, 1.4, 56.0, 44.0 -1,1,a-cure-i1,2016-17,2.0,10.799999999999997,Danvers - Danvers High,00710505, 1.7, 2.7, 4.8, 89.2, 0.2, 0.0, 1.3, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,17.5,Danvers - Great Oak,00710015, 2.3, 0.0, 9.6, 82.5, 0.0, 0.0, 5.6, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,19.799999999999997,Danvers - Highlands,00710010, 3.7, 3.7, 6.7, 80.2, 0.3, 0.5, 4.8, 49.7, 50.3 -5.746478873239435,5,a-cure-i1,2016-17,5.1,14.200000000000003,Danvers - Holten Richmond Middle School,00710305, 1.6, 2.1, 7.4, 85.8, 0.1, 0.0, 3.0, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,16.099999999999994,Danvers - Ivan G Smith,00710032, 1.7, 4.2, 8.7, 83.9, 0.0, 0.0, 1.4, 47.2, 52.8 -1,1,a-cure-i1,2016-17,0.0,15.799999999999997,Danvers - Riverside,00710030, 2.5, 3.2, 7.6, 84.2, 0.4, 0.0, 2.2, 55.8, 44.2 -1,1,a-cure-i1,2016-17,4.6,11.0,Danvers - Willis E Thorpe,00710045, 1.8, 2.1, 5.8, 89.0, 0.9, 0.0, 0.3, 53.5, 46.5 -1,1,a-cure-i1,2016-17,0.0,13.700000000000003,Dartmouth - Andrew B. Cushman School,00720005, 1.2, 1.9, 3.1, 86.3, 0.0, 0.0, 7.5, 57.8, 42.2 -1,1,a-cure-i1,2016-17,1.6,9.400000000000006,Dartmouth - Dartmouth High,00720505, 1.1, 0.4, 2.4, 90.6, 0.0, 0.2, 5.3, 50.5, 49.5 -1,1,a-cure-i1,2016-17,3.3,9.900000000000006,Dartmouth - Dartmouth Middle,00720050, 1.7, 0.4, 2.6, 90.1, 0.0, 0.0, 5.3, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,11.200000000000003,Dartmouth - George H Potter,00720030, 1.9, 0.2, 4.4, 88.8, 0.0, 0.0, 4.7, 54.1, 45.9 -1,1,a-cure-i1,2016-17,0.0,12.599999999999994,Dartmouth - James M. Quinn School,00720040, 1.0, 1.6, 3.1, 87.4, 0.0, 0.0, 7.0, 54.6, 45.4 -1,1,a-cure-i1,2016-17,0.0,9.799999999999997,Dartmouth - Joseph Demello,00720015, 0.7, 0.5, 3.8, 90.2, 0.0, 0.0, 4.8, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,43.5,Dedham - Avery,00730010, 9.4, 3.6, 24.0, 56.5, 0.6, 0.0, 5.8, 52.3, 47.7 -4.37785016286645,4.38,a-cure-i1,2016-17,8.4,30.700000000000003,Dedham - Dedham High,00730505, 11.6, 3.8, 13.9, 69.3, 0.0, 0.0, 1.4, 49.9, 50.1 -1,1,a-cure-i1,2016-17,3.4,26.900000000000006,Dedham - Dedham Middle School,00730305, 6.8, 2.4, 14.3, 73.1, 0.3, 0.0, 3.2, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,30.900000000000006,Dedham - Early Childhood Center,00730005, 5.0, 1.4, 14.9, 69.1, 0.7, 0.0, 8.9, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,15.099999999999994,Dedham - Greenlodge,00730025, 3.2, 1.8, 6.1, 84.9, 0.0, 0.0, 4.0, 54.3, 45.7 -1,1,a-cure-i1,2016-17,0.0,26.099999999999994,Dedham - Oakdale,00730030, 7.0, 1.8, 9.6, 73.9, 0.0, 0.0, 7.7, 46.7, 53.3 -1,1,a-cure-i1,2016-17,0.0,25.700000000000003,Dedham - Riverdale,00730045, 6.6, 2.2, 14.2, 74.3, 0.0, 0.0, 2.7, 57.4, 42.6 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,Deerfield - Deerfield Elementary,00740015, 0.2, 1.7, 6.7, 85.3, 0.0, 0.0, 6.0, 50.4, 49.6 -1,1,a-cure-i1,2016-17,3.1,29.799999999999997,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 10.0, 2.9, 10.3, 70.2, 1.6, 0.1, 5.0, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,30.599999999999994,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 9.9, 1.4, 9.6, 69.4, 0.8, 0.0, 8.8, 54.1, 45.9 -1,1,a-cure-i1,2016-17,0.0,40.8,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 7.5, 1.6, 17.6, 59.2, 4.9, 0.3, 8.8, 59.5, 40.5 -1,1,a-cure-i1,2016-17,3.5,26.5,Dennis-Yarmouth - Mattacheese Middle School,06450305, 10.2, 1.9, 8.5, 73.5, 2.1, 0.0, 3.8, 51.5, 48.5 -1,1,a-cure-i1,2016-17,3.1,29.400000000000006,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 7.4, 2.9, 11.5, 70.6, 2.3, 0.0, 5.3, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,25.200000000000003,Dennis-Yarmouth - Station Avenue Elementary,06450025, 6.6, 1.6, 5.9, 74.8, 2.8, 0.2, 8.0, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,12.400000000000006,Dighton-Rehoboth - Dighton Elementary,06500005, 0.2, 1.4, 6.2, 87.6, 0.0, 0.0, 4.5, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,8.599999999999994,Dighton-Rehoboth - Dighton Middle School,06500305, 1.0, 0.8, 3.8, 91.4, 0.0, 0.0, 3.0, 54.8, 45.2 -1,1,a-cure-i1,2016-17,1.9,8.400000000000006,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.0, 1.1, 4.3, 91.6, 0.0, 0.0, 2.0, 55.6, 44.4 -1,1,a-cure-i1,2016-17,0.0,8.200000000000003,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.5, 0.9, 4.0, 91.8, 0.2, 0.0, 2.6, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,10.099999999999994,Dighton-Rehoboth - Palmer River,06500010, 1.2, 1.8, 3.9, 89.9, 0.4, 0.0, 2.8, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,6.400000000000006,Douglas - Douglas Elementary School,00770015, 0.5, 1.5, 1.5, 93.6, 0.0, 0.0, 3.0, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,5.599999999999994,Douglas - Douglas High School,00770505, 0.5, 1.0, 2.5, 94.4, 0.0, 0.3, 1.3, 47.2, 52.8 -1,1,a-cure-i1,2016-17,0.0,8.900000000000006,Douglas - Douglas Middle School,00770305, 0.6, 1.9, 4.2, 91.1, 0.0, 0.6, 1.7, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,7.799999999999997,Douglas - Douglas Primary School,00770005, 0.0, 0.9, 4.3, 92.2, 0.0, 0.0, 2.6, 53.9, 46.1 -1,1,a-cure-i1,2016-17,4.9,25.299999999999997,Dover - Chickering,00780005, 2.9, 12.8, 4.6, 74.7, 0.0, 0.2, 4.8, 54.9, 45.1 -7.384615384615386,5,a-cure-i1,2016-17,6.6,14.299999999999997,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.3, 6.1, 2.6, 85.7, 0.0, 0.0, 3.2, 48.6, 51.4 -6.930481283422458,5,a-cure-i1,2016-17,8.1,18.700000000000003,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.1, 8.6, 2.7, 81.3, 0.4, 0.0, 4.0, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,25.299999999999997,Dracut - Brookside Elementary,00790035, 10.2, 6.5, 8.0, 74.7, 0.2, 0.0, 0.4, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,19.700000000000003,Dracut - Dracut Senior High,00790505, 5.7, 5.5, 6.1, 80.3, 0.0, 0.2, 2.1, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,24.0,Dracut - George H. Englesby Elementary School,00790045, 4.5, 6.1, 11.0, 76.0, 0.0, 0.0, 2.4, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,21.400000000000006,Dracut - Greenmont Avenue,00790030, 3.9, 4.6, 11.8, 78.6, 0.0, 0.0, 1.1, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,12.5,Dracut - Joseph A Campbell Elementary,00790020, 3.1, 2.9, 4.8, 87.5, 0.0, 0.0, 1.6, 54.4, 45.6 -1,1,a-cure-i1,2016-17,2.1,21.400000000000006,Dracut - Justus C. Richardson Middle School,00790410, 5.8, 6.2, 7.5, 78.6, 0.2, 0.0, 1.7, 50.8, 49.2 -9.574036511156187,5,a-cure-i1,2016-17,59.0,98.6,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 61.0, 0.0, 36.6, 1.4, 0.7, 0.0, 0.3, 45.2, 54.8 -1,1,a-cure-i1,2016-17,0.0,13.799999999999997,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.6, 1.1, 8.3, 86.2, 0.0, 0.0, 3.7, 57.2, 42.8 -1,1,a-cure-i1,2016-17,1.9,9.5,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.6, 1.0, 6.0, 90.5, 0.0, 0.1, 1.8, 51.0, 49.0 -8.517985611510788,5,a-cure-i1,2016-17,7.4,13.900000000000006,Dudley-Charlton Reg - Dudley Elementary,06580005, 2.7, 0.3, 8.3, 86.1, 0.0, 0.0, 2.7, 52.3, 47.7 -1,1,a-cure-i1,2016-17,2.6,14.700000000000003,Dudley-Charlton Reg - Dudley Middle School,06580305, 1.8, 1.9, 8.8, 85.3, 0.0, 0.0, 2.3, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,13.5,Dudley-Charlton Reg - Heritage School,06580030, 1.0, 1.0, 8.7, 86.5, 0.0, 0.2, 2.6, 54.2, 45.8 -5.303370786516855,5,a-cure-i1,2016-17,5.9,17.799999999999997,Dudley-Charlton Reg - Mason Road School,06580010, 2.7, 0.0, 13.1, 82.2, 0.4, 0.0, 1.5, 49.4, 50.6 -1,1,a-cure-i1,2016-17,1.5,13.0,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 1.7, 2.2, 6.7, 87.0, 0.3, 0.2, 1.8, 48.2, 51.8 -1,1,a-cure-i1,2016-17,0.0,7.200000000000003,Duxbury - Alden School,00820004, 0.1, 1.4, 2.4, 92.8, 0.1, 0.0, 3.1, 49.2, 50.8 -1,1,a-cure-i1,2016-17,2.9,8.400000000000006,Duxbury - Chandler Elementary,00820006, 0.7, 1.2, 2.1, 91.6, 0.0, 0.0, 4.4, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.3,4.099999999999994,Duxbury - Duxbury High,00820505, 0.3, 1.2, 1.3, 95.9, 0.0, 0.0, 1.2, 51.2, 48.8 -1,1,a-cure-i1,2016-17,1.8,7.099999999999994,Duxbury - Duxbury Middle,00820305, 0.1, 1.5, 2.3, 92.9, 0.1, 0.0, 3.1, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,10.299999999999997,East Bridgewater - Central,00830005, 2.1, 0.7, 1.8, 89.7, 0.4, 0.2, 5.2, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,6.799999999999997,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 2.8, 0.3, 1.9, 93.2, 0.2, 0.2, 1.4, 48.6, 51.2 -1,1,a-cure-i1,2016-17,0.0,9.599999999999994,East Bridgewater - Gordon W Mitchell,00830010, 3.2, 0.7, 2.0, 90.4, 0.3, 0.0, 3.3, 54.9, 44.9 -1,1,a-cure-i1,2016-17,2.2,14.5,East Longmeadow - Birchland Park,00870305, 2.2, 5.9, 5.4, 85.5, 0.0, 0.2, 0.8, 52.4, 47.6 -6.781456953642387,5,a-cure-i1,2016-17,6.4,15.099999999999994,East Longmeadow - East Longmeadow High,00870505, 3.6, 6.0, 4.6, 84.9, 0.2, 0.1, 0.6, 48.7, 51.3 -1,1,a-cure-i1,2016-17,0.0,17.5,East Longmeadow - Mapleshade,00870010, 3.3, 5.9, 5.6, 82.5, 0.0, 0.0, 2.6, 44.6, 55.4 -1,1,a-cure-i1,2016-17,3.6,17.799999999999997,East Longmeadow - Meadow Brook,00870013, 1.1, 4.8, 8.7, 82.2, 0.0, 0.0, 3.2, 55.2, 44.8 -1,1,a-cure-i1,2016-17,0.0,13.700000000000003,East Longmeadow - Mountain View,00870015, 1.7, 3.0, 5.3, 86.3, 0.0, 0.0, 3.7, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,14.299999999999997,Eastham - Eastham Elementary,00850005, 5.5, 1.6, 3.8, 85.7, 1.1, 0.0, 2.2, 48.4, 51.6 -1,1,a-cure-i1,2016-17,0.0,20.599999999999994,Easthampton - Center School,00860005, 1.0, 2.1, 13.4, 79.4, 0.5, 0.0, 3.6, 58.8, 41.2 -4.656084656084655,4.66,a-cure-i1,2016-17,5.5,18.900000000000006,Easthampton - Easthampton High,00860505, 2.3, 4.0, 11.7, 81.1, 0.0, 0.2, 0.6, 47.1, 52.9 -1,1,a-cure-i1,2016-17,0.0,18.400000000000006,Easthampton - Maple,00860010, 1.6, 3.5, 9.8, 81.6, 0.8, 0.0, 2.7, 53.9, 46.1 -1,1,a-cure-i1,2016-17,0.0,25.0,Easthampton - Neil A Pepin,00860020, 1.0, 5.7, 13.0, 75.0, 0.5, 0.0, 4.7, 55.2, 44.8 -1,1,a-cure-i1,2016-17,0.0,17.599999999999994,Easthampton - White Brook Middle School,00860305, 1.8, 3.6, 10.5, 82.4, 0.0, 0.0, 1.8, 48.3, 51.7 -1,1,a-cure-i1,2016-17,0.0,13.0,Easton - Center School,00880003, 8.3, 2.8, 0.4, 87.0, 0.4, 0.4, 0.8, 56.9, 43.1 -1,1,a-cure-i1,2016-17,3.6,14.900000000000006,Easton - Easton Middle School,00880405, 5.4, 3.4, 3.5, 85.1, 0.1, 0.0, 2.5, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,15.900000000000006,Easton - Moreau Hall,00880020, 5.6, 2.1, 5.6, 84.1, 1.3, 0.0, 1.3, 50.6, 49.4 -5.641618497109827,5,a-cure-i1,2016-17,6.1,17.299999999999997,Easton - Oliver Ames High,00880505, 4.8, 4.1, 5.0, 82.7, 0.2, 0.1, 3.3, 47.2, 52.8 -1,1,a-cure-i1,2016-17,2.4,15.700000000000003,Easton - Parkview Elementary,00880015, 3.8, 1.7, 4.4, 84.3, 0.3, 0.0, 5.5, 52.8, 47.2 -1,1,a-cure-i1,2016-17,4.2,13.799999999999997,Easton - Richardson Olmsted School,00880025, 4.0, 3.2, 4.0, 86.2, 0.0, 0.0, 2.6, 51.0, 49.0 -1,1,a-cure-i1,2016-17,0.0,29.0,Edgartown - Edgartown Elementary,00890005, 3.2, 0.3, 18.1, 71.0, 2.3, 0.0, 5.2, 45.7, 54.3 -8.645026178010472,5,a-cure-i1,2016-17,51.6,95.5,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 44.6, 1.9, 46.8, 4.5, 0.0, 0.0, 2.2, 34.3, 65.7 -1,1,a-cure-i1,2016-17,0.0,13.200000000000003,Erving - Erving Elementary,00910030, 0.0, 0.0, 3.7, 86.8, 0.0, 0.0, 9.6, 52.9, 47.1 -5.217391304347824,5,a-cure-i1,2016-17,6.0,18.400000000000006,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 1.3, 1.5, 12.3, 81.6, 0.1, 0.1, 3.1, 43.0, 57.0 -1,1,a-cure-i1,2016-17,0.0,70.3,Everett - Adams School,00930003, 16.3, 8.1, 44.0, 29.7, 0.0, 0.0, 1.9, 57.4, 42.6 -3.1695721077654517,3.17,a-cure-i1,2016-17,12.5,63.1,Everett - Devens School,00930030, 20.0, 0.0, 38.5, 36.9, 0.0, 0.0, 4.6, 76.9, 23.1 -3.140401146131805,3.14,a-cure-i1,2016-17,13.7,69.8,Everett - Everett High,00930505, 19.9, 4.4, 43.9, 30.2, 0.3, 0.1, 1.1, 52.0, 48.0 -1,1,a-cure-i1,2016-17,4.2,73.1,Everett - George Keverian School,00930028, 16.5, 5.6, 48.0, 26.9, 0.5, 0.1, 2.4, 52.8, 47.2 -1,1,a-cure-i1,2016-17,4.0,71.3,Everett - Lafayette School,00930038, 19.2, 4.6, 44.1, 28.7, 0.5, 0.0, 2.8, 47.8, 52.2 -1,1,a-cure-i1,2016-17,0.0,67.3,Everett - Madeline English School,00930018, 13.1, 5.0, 46.8, 32.7, 0.6, 0.2, 1.6, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.0,83.8,Everett - Parlin School,00930058, 18.8, 3.0, 60.2, 16.2, 0.2, 0.0, 1.6, 49.0, 51.0 -1.3796407185628743,1.38,a-cure-i1,2016-17,7.2,83.5,Everett - Sumner G. Whittier School,00930010, 13.4, 6.4, 61.0, 16.5, 1.0, 0.0, 1.7, 47.6, 52.4 -1,1,a-cure-i1,2016-17,3.3,65.6,Everett - Webster School,00930015, 15.8, 6.9, 41.0, 34.4, 0.0, 0.0, 2.0, 56.7, 43.3 -2.9365962180200222,2.94,a-cure-i1,2016-17,16.5,89.9,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 7.3, 1.5, 79.2, 10.1, 1.3, 0.3, 0.3, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,14.0,Fairhaven - East Fairhaven,00940010, 1.6, 1.6, 6.2, 86.0, 0.5, 0.0, 4.1, 52.3, 47.7 -1,1,a-cure-i1,2016-17,2.0,10.900000000000006,Fairhaven - Fairhaven High,00940505, 0.8, 1.6, 5.8, 89.1, 0.2, 0.0, 2.4, 47.9, 52.1 -1,1,a-cure-i1,2016-17,2.9,10.5,Fairhaven - Hastings Middle,00940305, 1.1, 2.6, 4.1, 89.5, 0.7, 0.0, 2.0, 52.6, 47.4 -1,1,a-cure-i1,2016-17,0.0,14.599999999999994,Fairhaven - Leroy Wood,00940030, 1.6, 2.1, 5.6, 85.4, 0.2, 0.0, 5.1, 49.8, 50.2 -1,1,a-cure-i1,2016-17,4.9,41.8,Fall River - B M C Durfee High,00950505, 8.3, 5.5, 23.4, 58.2, 0.2, 0.2, 4.3, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,50.9,Fall River - Carlton M. Viveiros Elementary School,00950009, 7.4, 3.9, 29.4, 49.1, 0.3, 0.0, 9.9, 53.5, 46.5 -1,1,a-cure-i1,2016-17,0.0,20.0,Fall River - Fall River Gateway to College @ BCC,00950515, 8.0, 4.0, 8.0, 80.0, 0.0, 0.0, 0.0, 36.0, 64.0 -1.7112299465240641,1.71,a-cure-i1,2016-17,6.0,56.1,Fall River - Henry Lord Community School,00950017, 9.9, 5.3, 30.3, 43.9, 0.2, 0.6, 9.8, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,19.099999999999994,Fall River - James Tansey,00950140, 1.4, 1.0, 8.9, 80.9, 0.0, 0.0, 7.8, 47.8, 52.2 -1,1,a-cure-i1,2016-17,0.0,46.7,Fall River - John J Doran,00950045, 7.7, 1.8, 28.0, 53.3, 0.4, 0.0, 8.8, 51.6, 48.4 -3.704280155642023,3.7,a-cure-i1,2016-17,11.899999999999999,51.4,Fall River - Letourneau Elementary School,00950013, 7.5, 2.0, 36.0, 48.6, 0.0, 0.0, 5.9, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,59.5,Fall River - Mary Fonseca Elementary School,00950011, 8.7, 5.6, 33.5, 40.5, 0.6, 0.0, 11.1, 50.5, 49.5 -2.6524064171122994,2.65,a-cure-i1,2016-17,6.199999999999999,37.4,Fall River - Matthew J Kuss Middle,00950320, 6.5, 3.8, 21.0, 62.6, 0.3, 0.0, 5.8, 49.0, 51.0 -1,1,a-cure-i1,2016-17,4.7,40.8,Fall River - Morton Middle,00950315, 7.7, 4.7, 21.7, 59.2, 0.2, 0.3, 6.3, 56.1, 43.9 -2.2541436464088394,2.25,a-cure-i1,2016-17,5.1,36.2,Fall River - North End Elementary,00950005, 5.6, 3.8, 18.0, 63.8, 0.0, 0.1, 8.7, 54.1, 45.9 -1,1,a-cure-i1,2016-17,0.0,59.3,Fall River - Resiliency Middle School,00950335, 11.1, 0.0, 37.0, 40.7, 3.7, 0.0, 7.4, 55.6, 44.4 -4.176842105263158,4.18,a-cure-i1,2016-17,12.4,47.5,Fall River - Resiliency Preparatory School,00950325, 13.6, 1.2, 27.2, 52.5, 0.0, 1.2, 4.3, 58.0, 42.0 -1,1,a-cure-i1,2016-17,0.0,50.7,Fall River - Samuel Watson,00950145, 11.8, 2.0, 23.4, 49.3, 1.3, 0.0, 12.2, 46.7, 53.3 -2.961194029850746,2.96,a-cure-i1,2016-17,6.2,33.5,Fall River - Spencer Borden,00950130, 5.4, 4.4, 15.5, 66.5, 0.0, 0.0, 8.2, 55.6, 44.4 -1,1,a-cure-i1,2016-17,0.9,53.1,Fall River - Stone Day School,00950340, 12.5, 0.0, 25.0, 46.9, 0.0, 0.0, 15.6, 90.6, 9.4 -1,1,a-cure-i1,2016-17,0.0,49.6,Fall River - Talbot Innovation School,00950305, 7.1, 5.1, 31.7, 50.4, 0.2, 0.0, 5.5, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,42.4,Fall River - William S Greene,00950065, 4.9, 5.3, 23.2, 57.6, 0.1, 0.0, 8.9, 50.0, 50.0 -1,1,a-cure-i1,2016-17,4.3,21.099999999999994,Falmouth - East Falmouth Elementary,00960005, 5.1, 0.9, 6.0, 78.9, 2.3, 0.0, 6.8, 54.1, 45.9 -1,1,a-cure-i1,2016-17,4.6,17.900000000000006,Falmouth - Falmouth High,00960505, 4.9, 3.5, 4.0, 82.1, 0.7, 0.1, 4.8, 51.0, 49.0 -7.302564102564103,5,a-cure-i1,2016-17,8.9,19.5,Falmouth - Lawrence,00960405, 4.6, 3.0, 3.9, 80.5, 1.4, 0.0, 6.7, 51.2, 48.8 -5.219251336898394,5,a-cure-i1,2016-17,6.1,18.700000000000003,Falmouth - Morse Pond School,00960305, 6.5, 1.4, 5.1, 81.3, 0.5, 0.3, 4.9, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,21.299999999999997,Falmouth - Mullen-Hall,00960020, 3.0, 3.4, 6.0, 78.7, 1.5, 0.0, 7.3, 53.9, 46.1 -11.130434782608697,5,a-cure-i1,2016-17,9.6,13.799999999999997,Falmouth - North Falmouth Elementary,00960030, 2.2, 1.9, 5.4, 86.2, 0.0, 0.0, 4.2, 49.0, 51.0 -4.928,4.93,a-cure-i1,2016-17,7.699999999999999,25.0,Falmouth - Teaticket,00960015, 8.3, 2.0, 5.3, 75.0, 2.7, 0.0, 6.7, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,1.7999999999999972,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.9, 98.2, 0.0, 0.0, 0.9, 52.6, 47.4 -2.2298850574712645,2.23,a-cure-i1,2016-17,9.7,69.6,Fitchburg - Arthur M Longsjo Middle School,00970315, 5.9, 4.7, 51.3, 30.4, 0.2, 0.0, 7.5, 55.1, 44.9 -1,1,a-cure-i1,2016-17,3.2,65.9,Fitchburg - Crocker Elementary,00970016, 4.5, 2.5, 51.4, 34.1, 0.3, 0.2, 7.0, 52.5, 47.5 -3.152941176470588,3.15,a-cure-i1,2016-17,13.4,68.0,Fitchburg - Fitchburg High,00970505, 7.3, 6.1, 48.3, 32.0, 0.0, 0.1, 6.1, 52.1, 47.9 -12.291390728476822,5,a-cure-i1,2016-17,34.8,45.3,Fitchburg - Goodrich Academy,00970510, 7.0, 1.2, 34.9, 54.7, 0.0, 0.0, 2.3, 55.2, 44.8 -1,1,a-cure-i1,2016-17,4.8,67.5,Fitchburg - McKay Arts Academy,00970340, 4.6, 6.7, 48.1, 32.5, 0.0, 0.0, 8.0, 47.1, 52.9 -2.0998573466476462,2.1,a-cure-i1,2016-17,9.2,70.1,Fitchburg - Memorial Intermediate,00970048, 5.6, 5.4, 52.2, 29.9, 0.0, 0.0, 6.8, 50.3, 49.7 -1,1,a-cure-i1,2016-17,2.9,61.9,Fitchburg - Reingold Elementary,00970043, 5.8, 3.1, 44.9, 38.1, 0.0, 0.2, 8.0, 51.9, 48.1 -1,1,a-cure-i1,2016-17,2.5,72.7,Fitchburg - South Street Elementary,00970060, 6.1, 5.6, 53.3, 27.3, 0.1, 0.1, 7.4, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,3.700000000000003,Florida - Abbott Memorial,00980005, 1.2, 0.0, 0.0, 96.3, 0.0, 1.2, 1.2, 44.4, 55.6 -1,1,a-cure-i1,2016-17,0.0,15.0,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.5, 2.7, 7.3, 85.0, 0.0, 0.0, 4.5, 47.3, 52.7 -1,1,a-cure-i1,2016-17,0.0,15.599999999999994,Foxborough - Charles Taylor Elementary,00990050, 4.1, 4.1, 4.1, 84.4, 0.8, 0.4, 2.1, 57.2, 42.8 -1,1,a-cure-i1,2016-17,0.0,12.099999999999994,Foxborough - Foxborough High,00990505, 5.3, 2.7, 3.0, 87.9, 0.1, 0.1, 0.8, 53.2, 46.8 -1,1,a-cure-i1,2016-17,3.2,13.200000000000003,Foxborough - John J Ahern,00990405, 4.5, 2.3, 4.2, 86.8, 0.5, 0.0, 1.7, 51.0, 49.0 -5.1736526946107775,5,a-cure-i1,2016-17,5.4,16.700000000000003,Foxborough - Mabelle M Burrell,00990015, 2.6, 6.1, 3.5, 83.3, 0.3, 0.3, 3.9, 55.6, 44.4 -1,1,a-cure-i1,2016-17,0.0,16.5,Foxborough - Vincent M Igo Elementary,00990020, 3.6, 5.3, 4.1, 83.5, 0.5, 0.0, 3.0, 50.8, 49.2 -3.670753064798599,3.67,a-cure-i1,2016-17,13.1,57.1,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 36.6, 10.0, 4.4, 42.9, 0.1, 0.1, 5.9, 47.4, 52.6 -7.078534031413612,5,a-cure-i1,2016-17,33.8,76.4,Framingham - Barbieri Elementary,01000035, 3.3, 0.6, 69.4, 23.6, 0.1, 0.0, 3.0, 46.2, 53.8 -3.2189349112426036,3.22,a-cure-i1,2016-17,13.6,67.6,Framingham - Brophy,01000006, 7.6, 4.5, 53.4, 32.4, 0.0, 0.0, 2.1, 48.9, 51.1 -1,1,a-cure-i1,2016-17,4.1,30.799999999999997,Framingham - Cameron Middle School,01000302, 7.1, 2.0, 18.3, 69.2, 0.2, 0.0, 3.1, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,33.400000000000006,Framingham - Charlotte A Dunning,01000007, 5.0, 13.4, 11.3, 66.6, 0.0, 0.0, 3.8, 54.5, 45.5 -4.168421052631579,4.17,a-cure-i1,2016-17,9.899999999999999,38.0,Framingham - Framingham High School,01000515, 6.9, 6.1, 22.0, 62.0, 0.1, 0.0, 2.7, 51.4, 48.6 -3.962476547842402,3.96,a-cure-i1,2016-17,13.200000000000001,53.3,Framingham - Fuller Middle,01000305, 9.0, 2.4, 38.3, 46.7, 0.0, 0.4, 3.2, 52.0, 48.0 -2.9520295202952034,2.95,a-cure-i1,2016-17,5.0,27.099999999999994,Framingham - Hemenway,01000015, 3.8, 7.5, 11.5, 72.9, 0.0, 0.0, 4.2, 51.1, 48.9 -2.135831381733021,2.14,a-cure-i1,2016-17,5.7,42.7,Framingham - Juniper Hill School,01000001, 7.3, 6.0, 23.9, 57.3, 0.0, 0.0, 5.6, 53.0, 47.0 -1,1,a-cure-i1,2016-17,4.9,38.8,Framingham - King Elementary School,01000005, 6.4, 11.2, 13.6, 61.2, 0.0, 0.0, 7.6, 56.8, 43.2 -1,1,a-cure-i1,2016-17,0.0,35.400000000000006,Framingham - Mary E Stapleton Elementary,01000045, 6.6, 4.3, 19.1, 64.6, 0.3, 0.0, 5.1, 52.2, 47.8 -3.3138075313807533,3.31,a-cure-i1,2016-17,9.9,47.8,Framingham - Miriam F McCarthy School,01000050, 11.5, 2.3, 28.0, 52.2, 0.0, 0.4, 5.6, 49.7, 50.3 -4.35680751173709,4.36,a-cure-i1,2016-17,5.8,21.299999999999997,Framingham - Potter Road,01000039, 5.2, 4.4, 7.2, 78.7, 0.0, 0.0, 4.6, 52.3, 47.7 -4.95067264573991,4.95,a-cure-i1,2016-17,13.8,44.6,Framingham - Walsh Middle,01000310, 4.7, 7.9, 29.3, 55.4, 0.0, 0.0, 2.8, 51.0, 49.0 -6.625766871165645,5,a-cure-i1,2016-17,13.5,32.599999999999994,Framingham - Woodrow Wilson,01000055, 8.5, 0.3, 21.5, 67.4, 0.2, 0.0, 2.1, 49.7, 50.3 -19.047619047619033,5,a-cure-i1,2016-17,10.0,8.400000000000006,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.5, 1.5, 2.8, 91.6, 0.0, 0.0, 3.5, 45.6, 54.2 -1,1,a-cure-i1,2016-17,0.0,7.099999999999994,Franklin - Annie Sullivan Middle School,01010040, 0.6, 3.7, 1.7, 92.9, 0.0, 0.4, 0.6, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,9.599999999999994,Franklin - Davis Thayer,01010035, 1.5, 1.5, 4.8, 90.4, 0.4, 0.4, 1.1, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,19.099999999999994,Franklin - Franklin Early Childhood Development Center,01010003, 1.5, 4.6, 5.3, 80.9, 0.0, 6.1, 1.5, 62.6, 37.4 -1,1,a-cure-i1,2016-17,3.0,10.599999999999994,Franklin - Franklin High,01010505, 1.7, 4.5, 2.1, 89.4, 0.2, 0.2, 2.0, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,8.200000000000003,Franklin - Helen Keller Elementary,01010012, 1.5, 3.9, 0.7, 91.8, 0.0, 0.5, 1.7, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,13.099999999999994,Franklin - Horace Mann,01010405, 1.3, 7.7, 2.1, 86.9, 0.2, 0.0, 1.7, 47.2, 52.8 -1,1,a-cure-i1,2016-17,0.0,13.900000000000006,Franklin - J F Kennedy Memorial,01010013, 0.8, 7.8, 2.8, 86.1, 0.0, 0.6, 1.9, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,13.400000000000006,Franklin - Jefferson Elementary,01010010, 2.4, 7.9, 1.2, 86.6, 0.0, 0.6, 1.2, 54.7, 45.3 -1,1,a-cure-i1,2016-17,4.6,13.299999999999997,Franklin - Oak Street Elementary,01010030, 1.0, 4.4, 4.8, 86.7, 0.2, 0.2, 2.7, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,15.599999999999994,Franklin - Parmenter,01010032, 3.8, 6.6, 2.7, 84.4, 0.3, 0.8, 1.4, 52.3, 47.7 -1,1,a-cure-i1,2016-17,2.9,12.599999999999994,Franklin - Remington Middle,01010310, 1.5, 5.0, 3.7, 87.4, 0.2, 0.0, 2.2, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,4.099999999999994,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.0, 0.2, 2.5, 95.9, 0.0, 0.0, 0.4, 67.8, 32.2 -1,1,a-cure-i1,2016-17,0.0,6.299999999999997,Freetown-Lakeville - Apponequet Regional High,06650505, 1.4, 1.5, 1.8, 93.7, 0.3, 0.1, 1.2, 49.5, 50.5 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Freetown-Lakeville - Assawompset Elementary School,06650002, 2.2, 1.0, 0.2, 93.8, 0.2, 0.0, 2.6, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,3.5,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 0.3, 1.5, 96.5, 0.0, 0.0, 0.8, 51.0, 49.0 -1,1,a-cure-i1,2016-17,2.4,5.299999999999997,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.7, 0.9, 1.8, 94.7, 0.3, 0.1, 1.5, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,5.099999999999994,Freetown-Lakeville - George R Austin Intermediate School,06650015, 1.7, 0.6, 0.8, 94.9, 0.4, 0.0, 1.5, 47.8, 52.2 -1,1,a-cure-i1,2016-17,2.1,11.599999999999994,Frontier - Frontier Regional,06700505, 1.3, 3.1, 4.4, 88.4, 0.0, 0.3, 2.5, 54.0, 46.0 -1,1,a-cure-i1,2016-17,3.5,31.400000000000006,Gardner - Elm Street School,01030001, 2.4, 1.0, 17.3, 68.6, 0.2, 0.0, 10.5, 55.8, 44.2 -1,1,a-cure-i1,2016-17,0.0,26.900000000000006,Gardner - Gardner Academy for Learning and Technology,01030515, 5.4, 1.1, 12.9, 73.1, 1.1, 0.0, 6.5, 58.1, 41.9 -7.367441860465116,5,a-cure-i1,2016-17,9.9,21.5,Gardner - Gardner High,01030505, 2.7, 2.1, 12.5, 78.5, 0.4, 0.0, 3.8, 53.6, 46.4 -1,1,a-cure-i1,2016-17,3.0,30.0,Gardner - Gardner Middle School,01030405, 2.6, 1.8, 15.2, 70.0, 0.2, 0.0, 10.2, 49.4, 50.6 -4.677740863787377,4.68,a-cure-i1,2016-17,8.8,30.099999999999994,Gardner - Waterford Street,01030020, 2.2, 1.1, 18.5, 69.9, 0.2, 0.0, 8.1, 46.4, 53.6 -1,1,a-cure-i1,2016-17,0.0,8.599999999999994,Gateway - Chester Elementary,06720059, 1.7, 0.0, 3.4, 91.4, 1.7, 0.0, 1.7, 53.4, 46.6 -1,1,a-cure-i1,2016-17,4.6,5.900000000000006,Gateway - Gateway Regional High,06720505, 0.5, 0.9, 2.7, 94.1, 0.0, 0.0, 1.8, 44.1, 55.9 -1,1,a-cure-i1,2016-17,0.0,8.200000000000003,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.5, 5.8, 91.8, 0.5, 0.0, 1.4, 57.2, 42.8 -1,1,a-cure-i1,2016-17,0.0,8.099999999999994,Gateway - Littleville Elementary School,06720143, 1.3, 0.0, 3.7, 91.9, 0.0, 0.3, 2.7, 53.2, 46.8 -1,1,a-cure-i1,2016-17,4.9,6.799999999999997,Georgetown - Georgetown High School,01050505, 0.7, 1.0, 2.7, 93.2, 0.0, 0.0, 2.4, 47.7, 52.3 -1,1,a-cure-i1,2016-17,2.9,3.0,Georgetown - Georgetown Middle School,01050305, 0.4, 1.3, 0.4, 97.0, 0.0, 0.0, 0.9, 54.1, 45.9 -1,1,a-cure-i1,2016-17,0.0,5.299999999999997,Georgetown - Penn Brook,01050010, 1.1, 1.1, 1.7, 94.7, 0.0, 0.3, 1.0, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,1.9000000000000057,Georgetown - Perley Elementary,01050005, 0.0, 0.9, 0.9, 98.1, 0.0, 0.0, 0.0, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,12.0,Gill-Montague - Gill Elementary,06740005, 3.4, 0.0, 1.7, 88.0, 0.0, 0.0, 6.8, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,16.0,Gill-Montague - Great Falls Middle,06740310, 2.1, 0.4, 8.0, 84.0, 0.4, 0.0, 5.0, 48.7, 51.3 -1,1,a-cure-i1,2016-17,0.0,26.400000000000006,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.7, 16.9, 73.6, 0.0, 0.7, 8.1, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,29.0,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 17.1, 71.0, 0.5, 0.5, 11.1, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,13.900000000000006,Gill-Montague - Turners Fall High,06740505, 1.7, 0.4, 7.4, 86.1, 0.0, 0.0, 4.3, 49.8, 50.2 -2.247379454926625,2.25,a-cure-i1,2016-17,6.7,47.7,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 10.7, 1.0, 29.8, 52.3, 1.0, 0.0, 5.3, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,20.299999999999997,Gloucester - Beeman Memorial,01070010, 1.1, 2.5, 14.4, 79.7, 0.6, 0.0, 1.7, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,11.900000000000006,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 6.8, 88.1, 0.0, 0.0, 5.1, 55.3, 44.7 -1,1,a-cure-i1,2016-17,1.4,14.299999999999997,Gloucester - Gloucester High,01070505, 2.2, 1.7, 7.5, 85.7, 0.2, 0.7, 2.0, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,14.599999999999994,Gloucester - Gloucester PreSchool,01070025, 3.1, 3.1, 2.1, 85.4, 0.0, 0.0, 6.3, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,8.0,Gloucester - Plum Cove School,01070042, 2.8, 0.9, 2.8, 92.0, 0.0, 0.0, 1.4, 51.2, 48.8 -1,1,a-cure-i1,2016-17,2.4,16.299999999999997,Gloucester - Ralph B O'Maley Middle,01070305, 1.6, 0.9, 8.6, 83.7, 0.5, 0.3, 4.4, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,15.0,Gloucester - Veterans Memorial,01070045, 0.9, 0.9, 12.3, 85.0, 0.0, 0.0, 0.9, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,11.200000000000003,Gloucester - West Parish,01070050, 1.7, 1.7, 5.1, 88.8, 0.8, 0.0, 2.0, 48.0, 52.0 -1,1,a-cure-i1,2016-17,0.0,0.0,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.0, 50.0 -1,1,a-cure-i1,2016-17,2.4,15.900000000000006,Grafton - Grafton High School,01100505, 1.2, 8.9, 3.5, 84.1, 0.0, 0.1, 2.3, 48.4, 51.6 -1,1,a-cure-i1,2016-17,0.0,18.799999999999997,Grafton - Grafton Middle,01100305, 1.4, 10.1, 3.9, 81.2, 0.0, 0.0, 3.3, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.5,25.900000000000006,Grafton - Millbury Street Elementary School,01100200, 1.9, 15.6, 6.3, 74.1, 0.0, 0.0, 2.1, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,26.0,Grafton - North Grafton Elementary,01100025, 0.4, 13.3, 4.9, 74.0, 0.4, 0.4, 6.7, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,17.400000000000006,Grafton - North Street Elementary School,01100030, 0.8, 7.2, 5.4, 82.6, 0.5, 0.3, 3.2, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,26.0,Grafton - South Grafton Elementary,01100005, 1.3, 18.2, 3.2, 74.0, 0.0, 0.0, 3.2, 55.8, 44.2 -1,1,a-cure-i1,2016-17,0.0,10.700000000000003,Granby - East Meadow,01110004, 0.0, 0.6, 7.7, 89.3, 0.0, 0.0, 2.4, 58.0, 42.0 -1,1,a-cure-i1,2016-17,3.6,11.5,Granby - Granby Jr Sr High School,01110505, 1.0, 3.1, 6.0, 88.5, 0.0, 0.0, 1.3, 54.3, 45.7 -1,1,a-cure-i1,2016-17,0.0,16.0,Granby - West Street,01110010, 0.0, 2.9, 7.8, 84.0, 1.5, 0.0, 3.9, 50.0, 50.0 -1,1,a-cure-i1,2016-17,4.3,16.599999999999994,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 1.6, 1.4, 8.4, 83.4, 0.4, 0.1, 4.7, 55.8, 44.2 -1.7820823244552062,1.78,a-cure-i1,2016-17,9.200000000000001,82.6,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.8, 1.0, 80.6, 17.4, 0.1, 0.0, 0.1, 49.2, 50.8 -1,1,a-cure-i1,2016-17,4.4,55.7,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 3.4, 16.4, 31.8, 44.3, 0.5, 0.0, 3.6, 55.2, 44.8 -3.315315315315315,3.32,a-cure-i1,2016-17,6.8999999999999995,33.3,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 8.7, 0.7, 19.9, 66.7, 0.4, 0.0, 3.6, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,9.900000000000006,Greenfield - Discovery School at Four Corners,01140025, 1.2, 0.0, 8.6, 90.1, 0.0, 0.0, 0.0, 49.0, 51.0 -1,1,a-cure-i1,2016-17,0.0,24.400000000000006,Greenfield - Federal Street School,01140010, 2.6, 1.3, 13.7, 75.6, 0.0, 0.0, 6.8, 48.3, 51.7 -Infinity,5,a-cure-i1,2016-17,20.0,0.0,Greenfield - Green River,01140030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 33.3, 66.7 -3.088803088803088,3.09,a-cure-i1,2016-17,5.0,25.900000000000006,Greenfield - Greenfield High,01140505, 3.1, 3.1, 14.7, 74.1, 0.0, 0.0, 4.9, 54.0, 46.0 -3.4545454545454533,3.45,a-cure-i1,2016-17,5.699999999999999,26.400000000000006,Greenfield - Greenfield Middle,01140305, 1.5, 2.3, 16.5, 73.6, 0.0, 0.0, 6.1, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,39.5,Greenfield - Newton School,01140035, 2.8, 1.4, 26.0, 60.5, 0.0, 0.0, 9.3, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,13.900000000000006,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.8, 1.6, 10.7, 86.1, 0.0, 0.0, 0.8, 54.9, 45.1 -1,1,a-cure-i1,2016-17,0.0,20.299999999999997,Groton-Dunstable - Boutwell School,06730001, 0.0, 3.1, 12.5, 79.7, 1.6, 0.0, 3.1, 60.9, 39.1 -1,1,a-cure-i1,2016-17,0.0,13.200000000000003,Groton-Dunstable - Florence Roche School,06730010, 0.8, 6.3, 1.7, 86.8, 0.2, 0.0, 4.2, 48.1, 51.9 -1,1,a-cure-i1,2016-17,2.0,8.299999999999997,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.7, 5.9, 0.9, 91.7, 0.1, 0.1, 0.5, 50.2, 49.8 -1,1,a-cure-i1,2016-17,4.2,11.5,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.9, 7.1, 1.6, 88.5, 0.3, 0.3, 1.4, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,8.599999999999994,Groton-Dunstable - Swallow/Union School,06730005, 0.4, 5.0, 1.8, 91.4, 0.0, 0.0, 1.4, 55.4, 44.6 -1,1,a-cure-i1,2016-17,4.8,17.799999999999997,Hadley - Hadley Elementary,01170015, 2.0, 1.0, 6.9, 82.2, 0.3, 4.3, 3.3, 51.6, 48.4 -1,1,a-cure-i1,2016-17,4.5,19.400000000000006,Hadley - Hopkins Academy,01170505, 3.9, 2.3, 8.1, 80.6, 0.4, 1.2, 3.5, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,5.599999999999994,Halifax - Halifax Elementary,01180005, 1.0, 0.7, 1.9, 94.4, 0.3, 0.0, 1.7, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,10.200000000000003,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.4, 2.7, 5.9, 89.8, 0.0, 0.0, 1.2, 51.4, 48.6 -12.68965517241379,5,a-cure-i1,2016-17,6.9,8.700000000000003,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.1, 1.2, 91.3, 0.0, 1.6, 2.8, 47.6, 52.4 -9.528089887640443,5,a-cure-i1,2016-17,5.3,8.900000000000006,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.2, 4.0, 2.3, 91.1, 0.0, 0.2, 2.3, 46.9, 53.1 -13.953488372093032,5,a-cure-i1,2016-17,7.5,8.599999999999994,Hamilton-Wenham - Miles River Middle,06750310, 0.7, 2.9, 2.7, 91.4, 0.0, 0.2, 2.0, 51.1, 48.9 -6.686567164179102,5,a-cure-i1,2016-17,5.6,13.400000000000006,Hamilton-Wenham - Winthrop School,06750015, 3.1, 6.2, 1.4, 86.6, 1.0, 0.0, 1.7, 46.6, 53.4 -4.623973727422004,4.62,a-cure-i1,2016-17,17.6,60.9,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 24.9, 2.7, 30.5, 39.1, 0.0, 0.0, 2.7, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,13.400000000000006,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.0, 1.2, 6.9, 86.6, 0.0, 0.0, 3.2, 50.2, 49.8 -7.0136986301369895,5,a-cure-i1,2016-17,6.4,14.599999999999994,Hampden-Wilbraham - Mile Tree Elementary,06800025, 2.5, 1.9, 5.7, 85.4, 0.0, 0.0, 4.4, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,13.299999999999997,Hampden-Wilbraham - Minnechaug Regional High,06800505, 2.7, 3.0, 5.2, 86.7, 0.1, 0.2, 2.2, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,15.599999999999994,Hampden-Wilbraham - Soule Road,06800030, 3.2, 3.2, 5.6, 84.4, 0.3, 0.0, 3.2, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,18.200000000000003,Hampden-Wilbraham - Stony Hill School,06800050, 3.6, 2.6, 7.6, 81.8, 0.0, 0.0, 4.3, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,13.099999999999994,Hampden-Wilbraham - Thornton Burgess,06800305, 3.6, 1.4, 5.0, 86.9, 0.9, 0.0, 2.3, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,14.400000000000006,Hampden-Wilbraham - Wilbraham Middle,06800310, 2.1, 3.7, 5.8, 85.6, 0.4, 0.0, 2.4, 48.9, 51.1 -1,1,a-cure-i1,2016-17,1.6,6.5,Hampshire - Hampshire Regional High,06830505, 0.7, 0.5, 2.8, 93.5, 0.1, 0.0, 2.3, 44.9, 55.1 -1,1,a-cure-i1,2016-17,0.0,0.0,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,4.700000000000003,Hanover - Cedar Elementary,01220004, 1.4, 1.4, 1.9, 95.3, 0.0, 0.0, 0.0, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,4.299999999999997,Hanover - Center Elementary,01220005, 0.3, 1.1, 1.7, 95.7, 0.0, 0.0, 1.1, 49.9, 50.1 -1,1,a-cure-i1,2016-17,2.0,3.9000000000000057,Hanover - Hanover High,01220505, 0.6, 2.0, 0.9, 96.1, 0.0, 0.0, 0.4, 52.9, 46.8 -1,1,a-cure-i1,2016-17,2.0,4.599999999999994,Hanover - Hanover Middle,01220305, 0.6, 2.3, 1.6, 95.4, 0.0, 0.0, 0.1, 53.1, 46.9 -24.421052631578934,5,a-cure-i1,2016-17,8.7,5.700000000000003,Hanover - Sylvester,01220015, 0.0, 0.9, 3.5, 94.3, 0.0, 0.0, 1.3, 48.7, 51.3 -1,1,a-cure-i1,2016-17,3.6,19.0,Harvard - Bromfield,01250505, 1.9, 12.1, 3.2, 81.0, 0.0, 0.0, 1.8, 50.7, 49.3 -5.978021978021977,5,a-cure-i1,2016-17,6.8,18.200000000000003,Harvard - Hildreth Elementary School,01250005, 2.5, 9.7, 3.9, 81.8, 0.0, 0.0, 2.1, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,7.400000000000006,Hatfield - Hatfield Elementary,01270005, 0.4, 0.4, 5.7, 92.6, 0.0, 0.0, 0.8, 52.9, 47.1 -1,1,a-cure-i1,2016-17,0.0,11.099999999999994,Hatfield - Smith Academy,01270505, 1.5, 2.5, 3.5, 88.9, 0.0, 0.0, 3.5, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,63.6,Haverhill - Bartlett Kindergarten Center,01280005, 4.6, 0.7, 57.6, 36.4, 0.0, 0.0, 0.7, 58.3, 41.7 -1,1,a-cure-i1,2016-17,0.0,22.900000000000006,Haverhill - Bradford Elementary,01280008, 3.9, 1.8, 16.2, 77.1, 0.2, 0.0, 0.8, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,24.799999999999997,Haverhill - Caleb Dustin Hunking,01280035, 4.1, 1.7, 17.8, 75.2, 0.0, 0.0, 1.2, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,51.1,Haverhill - Consentino Middle School,01280100, 2.8, 1.7, 45.5, 48.9, 0.0, 0.1, 1.1, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,64.7,Haverhill - Crowell,01280020, 4.0, 0.7, 56.7, 35.3, 0.7, 0.0, 2.7, 53.3, 46.7 -1,1,a-cure-i1,2016-17,3.6,44.7,Haverhill - Dr Paul Nettle,01280050, 3.8, 2.2, 38.0, 55.3, 0.0, 0.2, 0.4, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,46.4,Haverhill - Golden Hill,01280026, 3.1, 2.1, 38.0, 53.6, 0.2, 0.0, 3.1, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,33.5,Haverhill - Greenleaf,01280027, 0.8, 1.2, 27.8, 66.5, 0.0, 0.0, 3.6, 53.2, 46.8 -4.786610878661088,4.79,a-cure-i1,2016-17,14.3,47.8,Haverhill - Haverhill Alternative School,01280033, 6.5, 0.0, 41.3, 52.2, 0.0, 0.0, 0.0, 76.1, 23.9 -1,1,a-cure-i1,2016-17,4.9,37.6,Haverhill - Haverhill High,01280505, 3.5, 2.2, 30.9, 62.4, 0.1, 0.0, 0.9, 52.8, 47.2 -2.5838509316770186,2.58,a-cure-i1,2016-17,5.2,32.2,Haverhill - John G Whittier,01280085, 3.3, 1.4, 26.7, 67.8, 0.2, 0.2, 0.4, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,34.0,Haverhill - Moody,01280045, 7.9, 1.0, 24.1, 66.0, 0.0, 0.0, 1.0, 62.1, 37.9 -1,1,a-cure-i1,2016-17,0.2,42.9,Haverhill - Pentucket Lake Elementary,01280054, 3.9, 2.5, 34.1, 57.1, 0.6, 0.2, 1.6, 56.5, 43.5 -1,1,a-cure-i1,2016-17,0.0,45.1,Haverhill - TEACH,01280073, 2.0, 2.0, 39.2, 54.9, 0.0, 0.0, 2.0, 76.5, 23.5 -1,1,a-cure-i1,2016-17,0.0,55.0,Haverhill - Tilton,01280075, 2.8, 1.1, 48.9, 45.0, 0.6, 0.0, 1.7, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,21.200000000000003,Haverhill - Walnut Square,01280080, 0.0, 1.3, 14.6, 78.8, 0.0, 0.0, 5.3, 53.0, 47.0 -1,1,a-cure-i1,2016-17,0.0,14.299999999999997,Hawlemont - Hawlemont Regional,06850005, 0.0, 1.0, 7.6, 85.7, 1.9, 0.0, 3.8, 44.8, 55.2 -13.583999999999998,5,a-cure-i1,2016-17,84.89999999999999,100.0,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 79.7, 0.5, 17.5, 0.0, 0.5, 1.8, 0.0, 58.1, 41.9 -1,1,a-cure-i1,2016-17,0.0,27.5,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 5.2, 0.7, 18.3, 72.5, 0.3, 0.0, 2.9, 42.5, 57.5 -1,1,a-cure-i1,2016-17,0.0,18.299999999999997,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.5, 1.4, 7.3, 81.7, 0.0, 0.0, 9.2, 53.2, 46.8 -15.999999999999995,5,a-cure-i1,2016-17,7.2,7.200000000000003,Hingham - East Elementary School,01310005, 0.7, 2.2, 2.0, 92.8, 0.0, 0.0, 2.2, 57.5, 42.5 -1,1,a-cure-i1,2016-17,0.0,8.599999999999994,Hingham - Hingham High,01310505, 0.9, 2.1, 2.8, 91.4, 0.0, 0.0, 2.8, 50.9, 49.1 -1,1,a-cure-i1,2016-17,4.800000000000001,9.0,Hingham - Hingham Middle School,01310410, 1.0, 3.0, 2.4, 91.0, 0.0, 0.1, 2.6, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,9.799999999999997,Hingham - Plymouth River,01310019, 1.5, 1.9, 3.4, 90.2, 0.0, 0.0, 3.0, 47.4, 52.6 -1,1,a-cure-i1,2016-17,3.5,10.5,Hingham - South Elementary,01310020, 2.1, 2.7, 1.8, 89.5, 0.0, 0.0, 3.9, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,9.799999999999997,Hingham - Wm L Foster Elementary,01310010, 1.3, 1.9, 3.6, 90.2, 0.0, 0.0, 3.0, 54.0, 46.0 -1,1,a-cure-i1,2016-17,2.9,45.2,Holbrook - Holbrook Jr Sr High,01330505, 23.2, 4.9, 11.0, 54.8, 0.0, 0.0, 6.0, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,38.6,Holbrook - John F Kennedy,01330018, 13.8, 3.0, 12.4, 61.4, 0.0, 0.0, 9.4, 53.6, 46.4 -1,1,a-cure-i1,2016-17,0.0,43.5,Holbrook - South,01330025, 17.6, 4.3, 12.6, 56.5, 0.0, 0.0, 9.0, 47.8, 52.2 -1,1,a-cure-i1,2016-17,0.0,8.400000000000006,Holland - Holland Elementary,01350005, 2.1, 2.1, 3.4, 91.6, 0.4, 0.0, 0.4, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,10.400000000000006,Holliston - Holliston High,01360505, 0.6, 5.2, 2.1, 89.6, 0.0, 0.0, 2.5, 51.5, 48.5 -5.721854304635764,5,a-cure-i1,2016-17,5.4,15.099999999999994,Holliston - Miller School,01360007, 0.7, 5.9, 5.9, 84.9, 0.3, 0.0, 2.3, 51.3, 48.7 -1,1,a-cure-i1,2016-17,3.6,18.400000000000006,Holliston - Placentino Elementary,01360010, 1.0, 8.2, 4.6, 81.6, 0.1, 0.0, 4.5, 52.9, 47.1 -1,1,a-cure-i1,2016-17,2.5,15.099999999999994,Holliston - Robert H. Adams Middle School,01360305, 0.5, 7.7, 3.9, 84.9, 0.8, 0.0, 2.3, 49.0, 51.0 -1.8113207547169812,1.81,a-cure-i1,2016-17,9.6,84.8,Holyoke - E N White Elementary,01370045, 3.0, 0.0, 80.0, 15.2, 0.0, 0.0, 1.8, 52.5, 47.5 -2.756815703380589,2.76,a-cure-i1,2016-17,15.8,91.7,Holyoke - H.B. Lawrence School,01370070, 1.0, 0.3, 89.3, 8.3, 0.0, 0.3, 0.7, 54.7, 45.3 -2.939197930142303,2.94,a-cure-i1,2016-17,14.2,77.3,Holyoke - Holyoke High,01370505, 2.6, 1.0, 72.1, 22.7, 0.0, 0.1, 1.4, 51.9, 48.1 -5.053857350800582,5,a-cure-i1,2016-17,21.7,68.7,Holyoke - Joseph Metcalf School,01370003, 5.7, 1.1, 59.9, 31.3, 0.0, 0.4, 1.5, 52.7, 47.3 -3.110651499482937,3.11,a-cure-i1,2016-17,18.8,96.7,Holyoke - Kelly Elementary,01370040, 0.9, 0.7, 94.5, 3.3, 0.0, 0.0, 0.6, 51.7, 48.3 -3.1320754716981134,3.13,a-cure-i1,2016-17,16.6,84.8,Holyoke - Lt Clayre Sullivan Elementary,01370055, 3.2, 1.8, 78.0, 15.2, 0.0, 0.2, 1.6, 50.1, 49.9 -1,1,a-cure-i1,2016-17,4.4,66.4,Holyoke - Lt Elmer J McMahon Elementary,01370015, 1.7, 1.9, 60.6, 33.6, 0.2, 0.0, 1.9, 56.8, 43.2 -1.199063231850117,1.2,a-cure-i1,2016-17,6.4,85.4,Holyoke - Maurice A Donahue Elementary,01370060, 3.9, 1.3, 79.1, 14.6, 0.0, 0.0, 1.1, 57.3, 42.7 -1.5457348406988696,1.55,a-cure-i1,2016-17,9.4,97.3,Holyoke - Morgan Full Service Community School,01370025, 3.9, 1.5, 91.3, 2.7, 0.0, 0.0, 0.7, 51.3, 48.7 -3.7737459978655283,3.77,a-cure-i1,2016-17,22.1,93.7,Holyoke - William R. Peck School,01370030, 1.9, 0.0, 91.0, 6.3, 0.0, 0.3, 0.5, 54.4, 45.6 -4.372990353697749,4.37,a-cure-i1,2016-17,25.5,93.3,Holyoke - Wm J Dean Vocational Technical High,01370605, 2.0, 0.4, 90.9, 6.7, 0.0, 0.0, 0.0, 58.3, 41.7 -4.021208907741252,4.02,a-cure-i1,2016-17,23.700000000000003,94.3,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.9, 0.4, 89.7, 5.7, 0.0, 0.0, 2.3, 43.3, 56.7 -1,1,a-cure-i1,2016-17,2.9,7.599999999999994,Hopedale - Hopedale Jr Sr High,01380505, 1.1, 1.9, 2.9, 92.4, 1.0, 0.0, 0.8, 48.3, 51.7 -1,1,a-cure-i1,2016-17,0.0,11.799999999999997,Hopedale - Memorial,01380010, 0.7, 1.6, 5.1, 88.2, 0.2, 0.5, 3.6, 55.9, 44.1 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Hopedale - Park Street School,01380003, 1.6, 0.0, 0.0, 93.8, 0.0, 0.0, 4.7, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,21.799999999999997,Hopkinton - Center,01390005, 0.2, 16.0, 2.2, 78.2, 0.4, 0.0, 2.9, 48.7, 51.3 -1,1,a-cure-i1,2016-17,4.9,22.299999999999997,Hopkinton - Elmwood,01390010, 0.6, 13.1, 3.3, 77.7, 0.4, 0.2, 4.7, 53.9, 46.1 -1,1,a-cure-i1,2016-17,1.7,20.5,Hopkinton - Hopkins Elementary School,01390015, 0.8, 13.7, 2.4, 79.5, 0.2, 0.0, 3.4, 50.9, 49.1 -1,1,a-cure-i1,2016-17,3.0999999999999996,10.900000000000006,Hopkinton - Hopkinton High,01390505, 0.5, 7.6, 1.4, 89.1, 0.3, 0.0, 1.2, 48.5, 51.5 -1,1,a-cure-i1,2016-17,4.3,16.0,Hopkinton - Hopkinton Middle School,01390305, 0.9, 11.5, 1.4, 84.0, 0.2, 0.0, 2.0, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Hopkinton - Hopkinton Pre-School,01390003, 1.5, 4.6, 0.0, 93.8, 0.0, 0.0, 0.0, 60.0, 40.0 -1,1,a-cure-i1,2016-17,0.0,18.5,Hudson - C A Farley,01410030, 1.0, 2.9, 12.5, 81.5, 0.0, 0.0, 2.1, 47.0, 53.0 -1,1,a-cure-i1,2016-17,0.0,13.599999999999994,Hudson - David J. Quinn Middle School,01410410, 1.3, 1.4, 7.8, 86.4, 0.0, 0.2, 3.0, 47.6, 52.4 -1,1,a-cure-i1,2016-17,0.0,18.200000000000003,Hudson - Forest Avenue Elementary,01410015, 1.2, 2.5, 9.2, 81.8, 0.0, 0.0, 5.2, 53.2, 46.8 -1,1,a-cure-i1,2016-17,2.6,11.5,Hudson - Hudson High,01410505, 1.7, 2.1, 5.8, 88.5, 0.3, 0.0, 1.5, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,17.599999999999994,Hudson - Mulready Elementary,01410007, 1.2, 2.0, 8.4, 82.4, 0.0, 0.0, 6.0, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,8.0,Hull - Hull High,01420505, 1.0, 1.0, 3.2, 92.0, 0.0, 0.3, 2.6, 56.6, 43.4 -1,1,a-cure-i1,2016-17,0.0,5.5,Hull - Lillian M Jacobs,01420015, 2.9, 0.7, 1.0, 94.5, 0.0, 0.0, 1.0, 54.9, 45.1 -1,1,a-cure-i1,2016-17,0.0,3.4000000000000057,Hull - Memorial Middle,01420305, 1.0, 0.5, 0.5, 96.6, 0.0, 0.0, 1.5, 53.9, 46.1 -4.972972972972973,4.97,a-cure-i1,2016-17,6.9,22.200000000000003,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 3.5, 7.4, 6.6, 77.8, 0.0, 0.0, 4.7, 48.4, 51.6 -1,1,a-cure-i1,2016-17,0.0,9.200000000000003,Ipswich - Ipswich High,01440505, 0.7, 2.0, 3.5, 90.8, 0.0, 0.0, 2.9, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.0,10.700000000000003,Ipswich - Ipswich Middle School,01440305, 0.7, 1.3, 3.9, 89.3, 0.0, 0.0, 4.8, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,10.400000000000006,Ipswich - Paul F Doyon Memorial,01440007, 1.0, 2.3, 5.3, 89.6, 0.0, 0.0, 1.8, 50.3, 49.7 -1,1,a-cure-i1,2016-17,3.7,17.0,Ipswich - Winthrop,01440015, 3.4, 0.8, 6.8, 83.0, 0.3, 0.0, 5.7, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,8.099999999999994,King Philip - King Philip Middle School,06900510, 1.9, 1.8, 2.7, 91.9, 0.0, 0.0, 1.7, 52.4, 47.4 -1,1,a-cure-i1,2016-17,1.2,6.5,King Philip - King Philip Regional High,06900505, 1.3, 1.7, 1.5, 93.5, 0.0, 0.1, 1.9, 53.0, 47.0 -1,1,a-cure-i1,2016-17,0.0,3.4000000000000057,Kingston - Kingston Elementary,01450005, 1.4, 0.0, 1.6, 96.6, 0.2, 0.0, 0.2, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,6.700000000000003,Kingston - Kingston Intermediate,01450020, 1.2, 0.7, 3.6, 93.3, 0.3, 0.0, 0.9, 51.9, 48.1 -8.642570281124499,5,a-cure-i1,2016-17,53.800000000000004,99.6,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 68.1, 0.4, 29.7, 0.4, 0.0, 0.0, 1.4, 54.5, 45.5 -5.799573560767591,5,a-cure-i1,2016-17,34.0,93.8,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 22.9, 2.3, 65.6, 6.2, 0.2, 0.0, 2.9, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,3.9000000000000057,Lanesborough - Lanesborough Elementary,01480005, 2.4, 0.0, 1.5, 96.1, 0.0, 0.0, 0.0, 45.6, 54.4 -1.2900523560209423,1.29,a-cure-i1,2016-17,7.699999999999999,95.5,Lawrence - Alexander B Bruce,01490015, 1.4, 1.9, 92.2, 4.5, 0.0, 0.0, 0.0, 50.0, 50.0 -1.2545824847250509,1.25,a-cure-i1,2016-17,7.7,98.2,Lawrence - Arlington Middle School,01490017, 0.7, 0.0, 97.4, 1.8, 0.0, 0.0, 0.2, 49.6, 50.4 -1.9591836734693877,1.96,a-cure-i1,2016-17,12.0,98.0,Lawrence - Community Day Arlington,01490009, 0.5, 0.0, 97.3, 2.0, 0.0, 0.0, 0.2, 48.7, 51.3 -1.6241900647948166,1.62,a-cure-i1,2016-17,9.4,92.6,Lawrence - Edward F. Parthum,01490053, 0.8, 0.5, 90.5, 7.4, 0.2, 0.0, 0.8, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,95.3,Lawrence - Emily G Wetherbee,01490080, 0.7, 3.1, 90.8, 4.7, 0.0, 0.0, 0.8, 50.2, 49.8 -1,1,a-cure-i1,2016-17,4.1,97.5,Lawrence - Francis M Leahy,01490040, 1.4, 0.0, 95.9, 2.5, 0.0, 0.0, 0.2, 52.3, 47.7 -2.0650953984287317,2.07,a-cure-i1,2016-17,11.5,89.1,Lawrence - Frost Middle School,01490525, 1.9, 4.2, 82.1, 10.9, 0.0, 0.0, 0.8, 52.9, 47.1 -2.1300309597523217,2.13,a-cure-i1,2016-17,12.9,96.9,Lawrence - Gerard A. Guilmette,01490022, 1.5, 1.0, 93.7, 3.1, 0.2, 0.0, 0.6, 50.8, 49.2 -1,1,a-cure-i1,2016-17,2.8,98.2,Lawrence - Guilmette Middle School,01490025, 2.2, 1.4, 94.0, 1.8, 0.0, 0.0, 0.6, 48.6, 51.4 -3.242798353909465,3.24,a-cure-i1,2016-17,19.7,97.2,Lawrence - High School Learning Center,01490536, 1.1, 0.6, 95.5, 2.8, 0.0, 0.0, 0.0, 64.8, 35.2 -0.9451476793248945,1,a-cure-i1,2016-17,5.6,94.8,Lawrence - James F Hennessey,01490020, 1.3, 1.6, 91.4, 5.2, 0.0, 0.0, 0.5, 53.9, 46.1 -1.087378640776699,1.09,a-cure-i1,2016-17,6.3,92.7,Lawrence - John Breen School,01490003, 0.9, 4.6, 86.2, 7.3, 0.0, 0.0, 0.9, 56.0, 44.0 -2.539165818921669,2.54,a-cure-i1,2016-17,15.600000000000001,98.3,Lawrence - John K Tarbox,01490075, 0.3, 0.0, 97.0, 1.7, 0.0, 0.3, 0.8, 52.6, 47.4 -2.028397565922921,2.03,a-cure-i1,2016-17,12.5,98.6,Lawrence - Lawlor Early Childhood Center,01490002, 0.7, 0.7, 96.4, 1.4, 0.0, 0.0, 0.7, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,94.8,Lawrence - Lawrence Family Public Academy,01490011, 1.7, 0.6, 91.9, 5.2, 0.0, 0.0, 0.6, 58.1, 41.9 -4.929460580912862,4.93,a-cure-i1,2016-17,29.7,96.4,Lawrence - Lawrence High School,01490515, 1.6, 1.4, 93.1, 3.6, 0.1, 0.0, 0.2, 52.3, 47.7 -1,1,a-cure-i1,2016-17,4.5,95.0,Lawrence - Oliver Partnership School,01490048, 1.2, 0.4, 92.8, 5.0, 0.0, 0.0, 0.6, 51.6, 48.4 -1.095187165775401,1.1,a-cure-i1,2016-17,6.4,93.5,Lawrence - Parthum Middle School,01490027, 0.9, 0.2, 91.7, 6.5, 0.0, 0.0, 0.8, 52.2, 47.8 -5.6680851063829785,5,a-cure-i1,2016-17,33.3,94.0,Lawrence - Phoenix Academy Lawrence,01490540, 2.6, 0.7, 90.7, 6.0, 0.0, 0.0, 0.0, 58.3, 41.7 -1.902222222222222,1.9,a-cure-i1,2016-17,10.7,90.0,Lawrence - Robert Frost,01490018, 2.2, 3.0, 83.1, 10.0, 0.0, 0.0, 1.7, 52.1, 47.9 -1.221505376344086,1.22,a-cure-i1,2016-17,7.1,93.0,Lawrence - Rollins Early Childhood Center,01490001, 4.7, 1.2, 87.2, 7.0, 0.0, 0.0, 0.0, 62.8, 37.2 -3.9409761634506246,3.94,a-cure-i1,2016-17,21.7,88.1,Lawrence - School for Exceptional Studies,01490537, 2.3, 0.6, 84.7, 11.9, 0.0, 0.0, 0.6, 79.0, 21.0 -2.292887029288703,2.29,a-cure-i1,2016-17,13.7,95.6,Lawrence - South Lawrence East Elementary School,01490004, 1.7, 2.4, 91.0, 4.4, 0.0, 0.0, 0.6, 53.4, 46.6 -3.1900311526479754,3.19,a-cure-i1,2016-17,19.200000000000003,96.3,Lawrence - Spark Academy,01490085, 1.3, 2.4, 92.1, 3.7, 0.0, 0.0, 0.4, 46.7, 53.3 -5.069143446852426,5,a-cure-i1,2016-17,30.700000000000003,96.9,Lawrence - UP Academy Leonard Middle School,01490090, 0.9, 0.0, 96.0, 3.1, 0.0, 0.0, 0.0, 52.5, 47.5 -3.9064089521871823,3.91,a-cure-i1,2016-17,24.0,98.3,Lawrence - UP Academy Oliver Middle School,01490049, 1.2, 0.3, 96.8, 1.7, 0.0, 0.0, 0.0, 53.0, 47.0 -3.365015166835187,3.37,a-cure-i1,2016-17,20.8,98.9,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.8, 0.0, 98.0, 1.1, 0.0, 0.0, 0.0, 46.7, 53.3 -1,1,a-cure-i1,2016-17,0.0,17.900000000000006,Lee - Lee Elementary,01500025, 0.6, 2.4, 10.7, 82.1, 0.0, 0.0, 4.2, 47.9, 52.1 -1,1,a-cure-i1,2016-17,2.9,12.900000000000006,Lee - Lee Middle/High School,01500505, 0.0, 2.0, 8.9, 87.1, 0.0, 0.0, 2.0, 49.9, 50.1 -6.526315789473683,5,a-cure-i1,2016-17,6.2,15.200000000000003,Leicester - Leicester High,01510505, 4.6, 3.1, 4.8, 84.8, 0.7, 0.4, 1.5, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,19.200000000000003,Leicester - Leicester Memorial Elementary,01510005, 5.3, 2.8, 8.1, 80.8, 0.0, 0.0, 3.1, 55.7, 44.3 -1,1,a-cure-i1,2016-17,0.0,18.900000000000006,Leicester - Leicester Middle,01510015, 4.0, 2.0, 10.2, 81.1, 0.0, 0.0, 2.7, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,18.700000000000003,Leicester - Leicester Primary School,01510010, 6.1, 3.1, 7.8, 81.3, 0.6, 0.0, 1.1, 58.1, 41.9 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,Lenox - Lenox Memorial High,01520505, 0.7, 5.3, 6.4, 85.3, 0.2, 0.0, 2.2, 45.5, 54.5 -1,1,a-cure-i1,2016-17,0.0,14.5,Lenox - Morris,01520015, 0.6, 5.2, 6.5, 85.5, 0.0, 0.0, 2.3, 54.8, 45.2 -1,1,a-cure-i1,2016-17,0.0,41.9,Leominster - Bennett,01530003, 4.8, 1.9, 33.3, 58.1, 0.0, 0.0, 1.9, 58.1, 41.9 -1,1,a-cure-i1,2016-17,3.1,46.4,Leominster - Center For Technical Education Innovation,01530605, 7.8, 3.6, 31.5, 53.6, 0.0, 0.4, 3.2, 62.8, 37.2 -1,1,a-cure-i1,2016-17,2.9,48.2,Leominster - Fall Brook,01530007, 5.5, 1.2, 37.3, 51.8, 0.3, 0.0, 3.9, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,57.5,Leominster - Frances Drake School,01530010, 7.4, 4.9, 40.4, 42.5, 0.0, 0.0, 4.8, 51.5, 48.5 -1,1,a-cure-i1,2016-17,2.8,47.3,Leominster - Johnny Appleseed,01530025, 11.3, 4.4, 27.3, 52.7, 0.6, 0.0, 3.7, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,48.7,Leominster - Leominster Center for Excellence,01530515, 7.7, 0.0, 30.8, 51.3, 0.0, 0.0, 10.3, 43.6, 56.4 -1,1,a-cure-i1,2016-17,4.6000000000000005,40.6,Leominster - Leominster High School,01530505, 9.1, 3.3, 26.0, 59.4, 0.4, 0.0, 1.8, 46.9, 53.1 -1,1,a-cure-i1,2016-17,0.0,44.9,Leominster - Lincoln School,01530005, 12.2, 0.0, 28.6, 55.1, 0.0, 0.0, 4.1, 71.4, 28.6 -1,1,a-cure-i1,2016-17,0.0,48.0,Leominster - Northwest,01530030, 5.3, 1.6, 36.4, 52.0, 0.0, 0.0, 4.6, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,53.1,Leominster - Priest Street,01530040, 3.1, 4.6, 39.2, 46.9, 0.0, 0.0, 6.2, 50.8, 49.2 -1,1,a-cure-i1,2016-17,2.8,40.7,Leominster - Samoset School,01530045, 7.5, 1.9, 29.0, 59.3, 0.0, 0.0, 2.3, 53.1, 46.9 -1,1,a-cure-i1,2016-17,2.3,46.6,Leominster - Sky View Middle School,01530320, 7.9, 5.0, 30.0, 53.4, 0.2, 0.0, 3.5, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,18.400000000000006,Leverett - Leverett Elementary,01540005, 1.5, 3.7, 5.9, 81.6, 0.0, 0.0, 7.4, 58.1, 41.9 -7.6000000000000005,5,a-cure-i1,2016-17,22.8,48.0,Lexington - Bowman,01550008, 4.6, 32.1, 2.5, 52.0, 0.0, 0.0, 8.8, 51.3, 48.7 -2.1538461538461537,2.15,a-cure-i1,2016-17,7.0,52.0,Lexington - Bridge,01550006, 5.3, 40.9, 3.0, 48.0, 0.2, 0.2, 2.5, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.4,42.2,Lexington - Fiske,01550015, 2.7, 29.4, 2.3, 57.8, 0.0, 0.0, 7.7, 53.7, 46.3 -2.5174825174825175,2.52,a-cure-i1,2016-17,9.0,57.2,Lexington - Harrington,01550030, 3.9, 43.9, 3.2, 42.8, 0.2, 0.0, 6.0, 50.1, 49.9 -3.071017274472169,3.07,a-cure-i1,2016-17,10.0,52.1,Lexington - Jonas Clarke Middle,01550305, 5.5, 38.9, 3.6, 47.9, 0.1, 0.0, 3.9, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.3,59.4,Lexington - Joseph Estabrook,01550010, 6.4, 41.5, 3.4, 40.6, 0.0, 0.0, 8.2, 47.1, 52.9 -1,1,a-cure-i1,2016-17,0.0,59.0,Lexington - Lexington Children's Place,01550001, 1.3, 41.0, 7.7, 41.0, 0.0, 0.0, 9.0, 66.7, 33.3 -2.6218487394957983,2.62,a-cure-i1,2016-17,7.8,47.6,Lexington - Lexington High,01550505, 3.5, 36.2, 3.6, 52.4, 0.0, 0.0, 4.2, 50.2, 49.8 -3.92831541218638,3.93,a-cure-i1,2016-17,13.7,55.8,Lexington - Maria Hastings,01550035, 3.1, 40.2, 4.0, 44.2, 0.0, 0.0, 8.6, 52.3, 47.7 -2.2174840085287846,2.22,a-cure-i1,2016-17,6.5,46.9,Lexington - Wm Diamond Middle,01550310, 3.2, 34.9, 2.5, 53.1, 0.1, 0.0, 6.3, 49.1, 50.9 -2.8193832599118944,2.82,a-cure-i1,2016-17,8.0,45.4,Lincoln - Hanscom Middle,01570305, 12.4, 2.4, 19.7, 54.6, 0.0, 0.4, 10.4, 51.0, 48.6 -4.8275862068965525,4.83,a-cure-i1,2016-17,10.5,34.8,Lincoln - Hanscom Primary,01570006, 7.5, 4.0, 18.6, 65.2, 0.0, 0.3, 4.3, 50.6, 49.4 -3.1038251366120218,3.1,a-cure-i1,2016-17,7.1000000000000005,36.6,Lincoln - Lincoln School,01570025, 12.6, 6.0, 9.1, 63.4, 0.2, 0.0, 8.7, 48.5, 51.5 -7.422680412371132,5,a-cure-i1,2016-17,9.0,19.400000000000006,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 4.3, 6.1, 4.2, 80.6, 0.1, 0.1, 4.7, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.7,10.299999999999997,Littleton - Littleton High School,01580505, 0.4, 4.9, 1.5, 89.7, 0.0, 0.6, 2.8, 49.0, 51.0 -1,1,a-cure-i1,2016-17,0.0,12.799999999999997,Littleton - Littleton Middle School,01580305, 0.6, 7.1, 1.7, 87.2, 0.6, 0.0, 2.8, 46.7, 53.3 -1,1,a-cure-i1,2016-17,0.0,16.799999999999997,Littleton - Russell St Elementary,01580015, 2.1, 8.8, 2.8, 83.2, 0.0, 0.3, 2.8, 48.1, 51.9 -11.338582677165352,5,a-cure-i1,2016-17,9.0,12.700000000000003,Littleton - Shaker Lane Elementary,01580005, 1.4, 7.5, 2.0, 87.3, 0.2, 0.2, 1.4, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,27.900000000000006,Longmeadow - Blueberry Hill,01590005, 1.2, 18.5, 3.3, 72.1, 0.0, 0.7, 4.2, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,16.299999999999997,Longmeadow - Center,01590010, 1.7, 5.2, 5.2, 83.7, 0.0, 0.0, 4.2, 51.7, 48.3 -1,1,a-cure-i1,2016-17,2.3,22.799999999999997,Longmeadow - Glenbrook Middle,01590017, 4.2, 9.9, 5.1, 77.2, 0.3, 0.0, 3.3, 52.7, 47.3 -1,1,a-cure-i1,2016-17,1.5,17.099999999999994,Longmeadow - Longmeadow High,01590505, 2.4, 8.7, 3.8, 82.9, 0.0, 0.1, 2.1, 49.8, 50.2 -6.890510948905108,5,a-cure-i1,2016-17,5.9,13.700000000000003,Longmeadow - Williams Middle,01590305, 0.6, 5.8, 4.1, 86.3, 0.3, 0.0, 2.9, 55.2, 44.8 -1,1,a-cure-i1,2016-17,0.0,27.700000000000003,Longmeadow - Wolf Swamp Road,01590025, 2.8, 11.4, 7.5, 72.3, 0.0, 0.0, 6.0, 52.6, 47.4 -1,1,a-cure-i1,2016-17,3.7,87.8,Lowell - Abraham Lincoln,01600020, 4.8, 48.2, 29.9, 12.2, 0.2, 0.0, 4.8, 54.8, 45.2 -1,1,a-cure-i1,2016-17,2.3,66.8,Lowell - B.F. Butler Middle School,01600310, 7.7, 26.2, 28.4, 33.2, 0.0, 0.0, 4.4, 48.6, 51.4 -1.6094674556213018,1.61,a-cure-i1,2016-17,8.5,84.5,Lowell - Bartlett Community Partnership,01600090, 9.4, 36.8, 33.8, 15.5, 0.2, 0.0, 4.3, 50.9, 49.1 -1,1,a-cure-i1,2016-17,3.7,80.3,Lowell - Charles W Morey,01600030, 3.6, 59.7, 12.3, 19.7, 0.4, 0.0, 4.4, 53.0, 47.0 -1,1,a-cure-i1,2016-17,4.0,90.3,Lowell - Charlotte M Murkland Elementary,01600080, 4.2, 48.0, 32.3, 9.7, 0.2, 0.0, 5.6, 54.0, 46.0 -1,1,a-cure-i1,2016-17,1.3,68.9,Lowell - Dr An Wang School,01600345, 7.5, 16.4, 42.0, 31.1, 0.0, 0.0, 3.0, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,65.5,Lowell - Dr Gertrude Bailey,01600002, 4.4, 34.3, 21.6, 34.5, 0.2, 0.0, 5.1, 57.4, 42.6 -1,1,a-cure-i1,2016-17,3.7,68.7,Lowell - Greenhalge,01600015, 10.2, 14.2, 40.1, 31.3, 0.0, 0.2, 4.0, 51.3, 48.7 -2.772486772486773,2.77,a-cure-i1,2016-17,13.100000000000001,75.6,Lowell - Henry J Robinson Middle,01600330, 11.7, 19.4, 41.3, 24.4, 0.0, 0.0, 3.2, 52.9, 47.1 -2.519148936170213,2.52,a-cure-i1,2016-17,11.1,70.5,Lowell - James S Daley Middle School,01600315, 3.9, 43.2, 18.2, 29.5, 0.0, 0.0, 5.2, 51.4, 48.6 -2.401263823064771,2.4,a-cure-i1,2016-17,9.5,63.3,Lowell - James Sullivan Middle School,01600340, 9.1, 12.7, 38.7, 36.7, 0.0, 0.0, 2.8, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,74.2,Lowell - John J Shaughnessy,01600050, 4.3, 29.5, 36.0, 25.8, 0.2, 0.0, 4.1, 51.4, 48.6 -1,1,a-cure-i1,2016-17,4.0,77.8,Lowell - Joseph McAvinnue,01600010, 5.6, 14.1, 54.4, 22.2, 0.0, 0.0, 3.6, 52.8, 47.2 -1.6355555555555554,1.64,a-cure-i1,2016-17,9.2,90.0,Lowell - Kathryn P. Stoklosa Middle School,01600360, 4.3, 53.8, 29.1, 10.0, 0.0, 0.0, 2.8, 52.5, 47.5 -1.8710644677661168,1.87,a-cure-i1,2016-17,7.8,66.7,Lowell - Laura Lee Therapeutic Day School,01600085, 16.7, 0.0, 38.9, 33.3, 0.0, 0.0, 11.1, 100.0, 0.0 -1,1,a-cure-i1,2016-17,0.0,81.8,Lowell - Leblanc Therapeutic Day School,01600320, 12.1, 6.1, 60.6, 18.2, 0.0, 0.0, 3.0, 72.7, 27.3 -2.312138728323699,2.31,a-cure-i1,2016-17,10.0,69.2,Lowell - Lowell High,01600505, 11.3, 32.0, 23.8, 30.8, 0.1, 0.0, 1.9, 50.0, 50.0 -3.170506912442397,3.17,a-cure-i1,2016-17,12.9,65.1,Lowell - Moody Elementary,01600027, 3.6, 16.5, 38.2, 34.9, 0.0, 0.0, 6.8, 49.0, 51.0 -1,1,a-cure-i1,2016-17,0.0,59.4,Lowell - Pawtucketville Memorial,01600036, 6.5, 21.6, 26.9, 40.6, 0.0, 0.0, 4.4, 55.0, 45.0 -2.955223880597015,2.96,a-cure-i1,2016-17,9.9,53.6,Lowell - Peter W Reilly,01600040, 4.4, 7.8, 37.7, 46.4, 0.0, 0.0, 3.6, 48.5, 51.5 -2.6956521739130435,2.7,a-cure-i1,2016-17,9.3,55.2,Lowell - Pyne Arts,01600018, 6.0, 13.1, 32.3, 44.8, 0.0, 0.0, 3.8, 53.6, 46.4 -1,1,a-cure-i1,2016-17,3.0,75.3,Lowell - Rogers STEM Academy,01600005, 9.4, 23.9, 37.9, 24.7, 0.0, 0.0, 4.1, 53.0, 47.0 -2.8571428571428568,2.86,a-cure-i1,2016-17,11.5,64.4,Lowell - S Christa McAuliffe Elementary,01600075, 5.3, 11.6, 44.3, 35.6, 0.0, 0.0, 3.3, 48.4, 51.6 -1,1,a-cure-i1,2016-17,1.6,75.6,Lowell - The Career Academy,01600515, 9.2, 14.3, 48.7, 24.4, 0.0, 0.0, 3.4, 65.5, 34.5 -1,1,a-cure-i1,2016-17,0.0,81.4,Lowell - Washington,01600055, 5.0, 47.7, 21.7, 18.6, 0.0, 0.0, 7.0, 55.8, 44.2 -1.140495867768595,1.14,a-cure-i1,2016-17,6.8999999999999995,96.8,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 27.5, 20.1, 45.9, 3.2, 0.0, 0.0, 3.3, 48.8, 51.2 -5.418439716312057,5,a-cure-i1,2016-17,19.1,56.4,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 1.1, 14.9, 34.0, 43.6, 0.0, 0.0, 6.4, 43.6, 55.3 -1,1,a-cure-i1,2016-17,2.0,16.799999999999997,Ludlow - Chapin Street Elementary School,01610020, 0.9, 0.3, 12.1, 83.2, 0.9, 0.0, 2.6, 46.0, 54.0 -1,1,a-cure-i1,2016-17,0.0,15.900000000000006,Ludlow - East Street Elementary School,01610010, 1.4, 0.3, 11.4, 84.1, 0.5, 0.0, 2.4, 52.4, 47.6 -7.295999999999999,5,a-cure-i1,2016-17,5.699999999999999,12.5,Ludlow - Ludlow Senior High,01610505, 2.0, 0.6, 7.8, 87.5, 0.2, 0.0, 1.9, 49.5, 50.5 -1,1,a-cure-i1,2016-17,1.9,11.5,Ludlow - Paul R Baird Middle,01610305, 1.9, 0.6, 6.4, 88.5, 0.3, 0.0, 2.3, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,14.5,Ludlow - Veterans Park Elementary,01610023, 3.0, 0.0, 7.9, 85.5, 0.5, 0.0, 3.0, 56.3, 43.7 -1,1,a-cure-i1,2016-17,4.8,12.299999999999997,Lunenburg - Lunenburg High,01620505, 3.2, 4.3, 2.7, 87.7, 0.5, 0.2, 1.4, 48.3, 51.7 -1,1,a-cure-i1,2016-17,1.3,12.599999999999994,Lunenburg - Lunenburg Middle School,01620305, 1.5, 1.0, 7.7, 87.4, 0.8, 0.8, 0.8, 56.4, 43.6 -1,1,a-cure-i1,2016-17,0.0,14.200000000000003,Lunenburg - Lunenburg Primary School,01620010, 1.0, 2.1, 7.3, 85.8, 0.0, 0.3, 3.6, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,13.5,Lunenburg - Turkey Hill Elementary School,01620025, 1.0, 1.3, 7.3, 86.5, 0.8, 0.8, 2.5, 50.8, 49.3 -1,1,a-cure-i1,2016-17,4.3,94.2,Lynn - A Drewicz Elementary,01630016, 8.1, 16.5, 65.1, 5.8, 0.4, 0.0, 4.1, 49.4, 50.6 -2.084772370486656,2.08,a-cure-i1,2016-17,8.3,63.7,Lynn - Aborn,01630011, 15.8, 5.4, 33.6, 36.3, 0.8, 0.0, 8.1, 47.9, 52.1 -2.3717647058823528,2.37,a-cure-i1,2016-17,12.6,85.0,Lynn - Breed Middle School,01630405, 9.9, 11.0, 60.1, 15.0, 0.5, 0.0, 3.4, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.7,83.7,Lynn - Brickett Elementary,01630020, 10.6, 12.1, 55.0, 16.3, 0.4, 0.0, 5.7, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,54.5,Lynn - Capt William G Shoemaker,01630090, 14.1, 6.4, 24.4, 45.5, 0.0, 0.0, 9.6, 61.5, 38.5 -2.528497409326425,2.53,a-cure-i1,2016-17,12.200000000000001,77.2,Lynn - Classical High,01630505, 11.9, 11.7, 50.9, 22.8, 0.2, 0.1, 2.4, 52.9, 47.1 -1,1,a-cure-i1,2016-17,3.4,95.8,Lynn - Cobbet Elementary,01630035, 10.0, 6.9, 76.9, 4.2, 0.0, 0.0, 2.1, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.4,91.0,Lynn - E J Harrington,01630045, 9.3, 6.9, 72.6, 9.0, 0.0, 0.0, 2.2, 52.6, 47.4 -1,1,a-cure-i1,2016-17,0.0,86.6,Lynn - Early Childhood Center,01630004, 10.7, 9.7, 61.7, 13.4, 0.7, 0.0, 3.7, 53.7, 46.3 -1,1,a-cure-i1,2016-17,0.0,63.6,Lynn - Edward A Sisson,01630095, 6.6, 10.5, 40.5, 36.4, 0.9, 0.0, 5.0, 53.5, 46.5 -2.6546275395033865,2.65,a-cure-i1,2016-17,14.700000000000001,88.6,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 5.2, 1.6, 79.5, 11.4, 0.3, 0.0, 1.9, 62.0, 38.0 -1,1,a-cure-i1,2016-17,4.5,82.7,Lynn - Hood,01630055, 8.8, 7.8, 63.6, 17.3, 0.0, 0.0, 2.5, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.4,91.5,Lynn - Ingalls,01630060, 10.6, 10.3, 67.0, 8.5, 0.1, 0.1, 3.3, 49.9, 50.1 -1,1,a-cure-i1,2016-17,3.9,78.3,Lynn - Julia F Callahan,01630030, 16.9, 8.4, 46.0, 21.7, 0.0, 0.0, 7.0, 54.4, 45.6 -1,1,a-cure-i1,2016-17,0.0,79.4,Lynn - Lincoln-Thomson,01630070, 6.5, 10.1, 55.2, 20.6, 0.0, 0.0, 7.7, 50.0, 50.0 -2.916256157635468,2.92,a-cure-i1,2016-17,14.8,81.2,Lynn - Lynn English High,01630510, 9.7, 8.1, 60.3, 18.8, 0.1, 0.0, 2.9, 52.4, 47.6 -3.272294887039239,3.27,a-cure-i1,2016-17,17.2,84.1,Lynn - Lynn Vocational Technical Institute,01630605, 8.6, 6.0, 66.9, 15.9, 0.2, 0.0, 2.5, 57.9, 42.1 -1,1,a-cure-i1,2016-17,0.0,34.400000000000006,Lynn - Lynn Woods,01630075, 1.2, 2.5, 17.8, 65.6, 1.8, 0.0, 11.0, 49.1, 50.9 -2.3466666666666667,2.35,a-cure-i1,2016-17,8.8,60.0,Lynn - Pickering Middle,01630420, 7.0, 9.7, 37.5, 40.0, 0.8, 0.0, 5.0, 52.4, 47.6 -1,1,a-cure-i1,2016-17,4.5,94.3,Lynn - Robert L Ford,01630050, 6.9, 7.5, 77.4, 5.7, 0.2, 0.0, 2.4, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,66.1,Lynn - Sewell-Anderson,01630085, 8.7, 4.9, 49.0, 33.9, 0.0, 0.0, 3.5, 57.3, 42.7 -1.5711060948081264,1.57,a-cure-i1,2016-17,8.7,88.6,Lynn - Thurgood Marshall Mid,01630305, 9.5, 8.6, 66.9, 11.4, 0.5, 0.0, 3.1, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,92.9,Lynn - Tracy,01630100, 9.9, 6.1, 72.2, 7.1, 0.0, 0.0, 4.7, 49.3, 50.7 -1,1,a-cure-i1,2016-17,4.7,96.2,Lynn - Washington Elementary School,01630005, 12.0, 6.2, 74.4, 3.8, 0.2, 0.0, 3.4, 49.8, 50.2 -1,1,a-cure-i1,2016-17,1.4,75.0,Lynn - William R Fallon,01630080, 10.4, 2.1, 60.4, 25.0, 0.0, 0.0, 2.1, 89.6, 10.4 -1,1,a-cure-i1,2016-17,3.8,95.4,Lynn - Wm P Connery,01630040, 6.0, 13.3, 73.2, 4.6, 0.0, 0.0, 2.9, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,20.799999999999997,Lynnfield - Huckleberry Hill,01640010, 1.7, 9.7, 6.5, 79.2, 0.0, 0.0, 2.9, 46.0, 54.0 -1,1,a-cure-i1,2016-17,0.0,9.900000000000006,Lynnfield - Lynnfield High,01640505, 2.1, 3.0, 3.5, 90.1, 0.0, 0.0, 1.3, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,11.5,Lynnfield - Lynnfield Middle School,01640405, 1.3, 3.7, 4.0, 88.5, 0.0, 0.0, 2.4, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,19.099999999999994,Lynnfield - Lynnfield Preschool,01640005, 0.0, 4.3, 6.4, 80.9, 0.0, 0.0, 8.5, 55.3, 44.7 -1,1,a-cure-i1,2016-17,0.0,11.599999999999994,Lynnfield - Summer Street,01640020, 2.4, 4.3, 4.3, 88.4, 0.0, 0.0, 0.7, 58.7, 41.3 -4.894514767932489,4.89,a-cure-i1,2016-17,14.5,47.4,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 1.0, 42.3, 0.0, 52.6, 0.0, 0.0, 4.1, 54.6, 45.4 -1.552941176470588,1.55,a-cure-i1,2016-17,6.6,68.0,Malden - Beebe,01650003, 14.5, 37.5, 11.6, 32.0, 0.1, 0.2, 4.1, 48.9, 51.1 -1.4035087719298247,1.4,a-cure-i1,2016-17,6.5,74.1,Malden - Ferryway,01650013, 20.8, 19.0, 29.4, 25.9, 0.3, 0.0, 4.6, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,58.8,Malden - Forestdale,01650027, 19.4, 9.6, 24.4, 41.2, 0.0, 0.3, 5.0, 50.7, 49.3 -2.25,2.25,a-cure-i1,2016-17,9.0,64.0,Malden - Linden,01650047, 20.7, 21.9, 17.2, 36.0, 0.3, 0.0, 3.9, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,64.2,Malden - Malden Early Learning Center,01650049, 14.0, 37.5, 7.4, 35.8, 0.0, 0.0, 5.4, 55.5, 44.5 -3.047619047619048,3.05,a-cure-i1,2016-17,13.600000000000001,71.4,Malden - Malden High,01650505, 21.2, 23.4, 22.9, 28.6, 0.4, 0.1, 3.4, 50.6, 49.4 -1.6292428198433422,1.63,a-cure-i1,2016-17,7.8,76.6,Malden - Salemwood,01650057, 22.8, 19.3, 31.0, 23.4, 0.2, 0.0, 3.2, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,4.400000000000006,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.4, 1.3, 95.6, 0.0, 0.0, 2.7, 50.2, 49.8 -1,1,a-cure-i1,2016-17,4.2,2.0999999999999943,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.2, 0.7, 0.7, 97.9, 0.0, 0.0, 0.5, 43.9, 56.1 -29.777777777777825,5,a-cure-i1,2016-17,6.7,3.5999999999999943,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 2.1, 0.8, 96.4, 0.0, 0.0, 0.8, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,1.9000000000000057,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.3, 0.0, 1.1, 98.1, 0.0, 0.0, 0.6, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,21.0,Mansfield - Everett W Robinson,01670007, 3.0, 7.7, 5.4, 79.0, 0.1, 0.0, 4.8, 53.2, 46.8 -1,1,a-cure-i1,2016-17,2.4,15.5,Mansfield - Harold L Qualters Middle,01670035, 2.9, 4.9, 3.8, 84.5, 0.0, 0.0, 4.0, 51.8, 48.2 -1,1,a-cure-i1,2016-17,3.6,16.799999999999997,Mansfield - Jordan/Jackson Elementary,01670014, 3.4, 5.9, 5.4, 83.2, 0.1, 0.0, 2.0, 53.2, 46.8 -7.404958677685953,5,a-cure-i1,2016-17,5.6,12.099999999999994,Mansfield - Mansfield High,01670505, 2.5, 3.6, 3.3, 87.9, 0.3, 0.2, 2.2, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,24.400000000000006,Mansfield - Roland Green School,01670003, 4.7, 9.3, 5.8, 75.6, 0.0, 0.0, 4.7, 54.7, 45.3 -1,1,a-cure-i1,2016-17,4.2,15.599999999999994,Marblehead - Elbridge Gerry,01680015, 0.7, 2.0, 9.5, 84.4, 0.0, 0.7, 2.7, 54.4, 45.6 -1,1,a-cure-i1,2016-17,0.0,11.400000000000006,Marblehead - Glover,01680020, 1.2, 1.5, 5.9, 88.6, 0.0, 0.0, 2.9, 56.6, 43.4 -1,1,a-cure-i1,2016-17,4.2,19.200000000000003,Marblehead - L H Coffin,01680010, 1.2, 3.0, 9.6, 80.8, 0.0, 0.0, 5.4, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,19.5,Marblehead - Malcolm L Bell,01680005, 2.6, 2.2, 10.9, 80.5, 0.0, 0.0, 3.7, 55.4, 44.6 -8.715447154471546,5,a-cure-i1,2016-17,6.699999999999999,12.299999999999997,Marblehead - Marblehead High,01680505, 3.7, 1.6, 5.4, 87.7, 0.1, 0.0, 1.4, 46.1, 53.9 -1,1,a-cure-i1,2016-17,2.9,12.099999999999994,Marblehead - Marblehead Veterans Middle School,01680300, 2.6, 1.2, 5.6, 87.9, 0.0, 0.0, 2.8, 47.5, 52.5 -1,1,a-cure-i1,2016-17,3.7,13.900000000000006,Marblehead - Village School,01680016, 4.0, 1.3, 5.7, 86.1, 0.3, 0.0, 2.5, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,10.0,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 2.6, 2.6, 2.2, 90.0, 0.9, 0.0, 1.7, 57.4, 42.6 -1,1,a-cure-i1,2016-17,0.0,12.400000000000006,Marion - Sippican,01690005, 2.4, 1.7, 2.0, 87.6, 0.2, 0.0, 6.1, 51.5, 48.5 -1,1,a-cure-i1,2016-17,4.5,55.5,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 2.9, 2.8, 46.1, 44.5, 0.0, 0.0, 3.7, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,54.1,Marlborough - Charles Jaworek School,01700030, 2.3, 7.4, 42.1, 45.9, 0.5, 0.0, 1.8, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,45.7,Marlborough - Early Childhood Center,01700006, 6.1, 15.9, 18.9, 54.3, 0.0, 0.0, 4.9, 57.9, 42.1 -1,1,a-cure-i1,2016-17,0.0,50.7,Marlborough - Francis J Kane,01700008, 5.0, 2.3, 40.4, 49.3, 0.0, 0.0, 3.1, 52.7, 47.3 -1.7211155378486056,1.72,a-cure-i1,2016-17,5.4,50.2,Marlborough - Marlborough High,01700505, 3.3, 3.8, 41.8, 49.8, 0.1, 0.0, 1.3, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,64.8,Marlborough - Richer,01700025, 4.2, 2.5, 54.0, 35.2, 0.2, 0.0, 4.0, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,7.900000000000006,Marshfield - Daniel Webster,01710015, 0.5, 1.8, 3.2, 92.1, 0.3, 0.8, 1.3, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,2.4000000000000057,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.4, 97.6, 0.0, 0.0, 2.0, 61.8, 38.2 -1,1,a-cure-i1,2016-17,1.5,5.099999999999994,Marshfield - Furnace Brook Middle,01710310, 0.1, 1.0, 2.7, 94.9, 0.1, 0.1, 1.2, 52.7, 47.3 -1,1,a-cure-i1,2016-17,4.1,6.400000000000006,Marshfield - Gov Edward Winslow,01710020, 0.5, 0.2, 2.6, 93.6, 0.0, 0.0, 3.1, 49.6, 50.4 -1,1,a-cure-i1,2016-17,1.0,4.900000000000006,Marshfield - Marshfield High,01710505, 0.9, 0.8, 2.2, 95.1, 0.2, 0.1, 0.7, 49.8, 50.2 -1,1,a-cure-i1,2016-17,3.9,10.400000000000006,Marshfield - Martinson Elementary,01710025, 0.5, 2.9, 4.5, 89.6, 0.9, 0.0, 1.6, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,7.5,Marshfield - South River,01710010, 0.6, 0.3, 3.0, 92.5, 0.0, 0.0, 3.6, 50.7, 49.3 -1,1,a-cure-i1,2016-17,1.9,21.299999999999997,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 3.3, 1.2, 10.3, 78.7, 1.8, 0.2, 4.5, 52.2, 47.8 -3.8545454545454545,3.85,a-cure-i1,2016-17,5.3,22.0,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 4.6, 1.7, 4.6, 78.0, 0.0, 0.0, 11.0, 43.4, 56.6 -7.714576962283385,5,a-cure-i1,2016-17,47.3,98.1,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 41.8, 1.9, 48.9, 1.9, 0.0, 0.0, 5.5, 51.1, 48.9 -1,1,a-cure-i1,2016-17,1.4,7.299999999999997,Masconomet - Masconomet Regional High School,07050505, 0.3, 3.1, 2.4, 92.7, 0.3, 0.0, 1.2, 49.8, 50.2 -1,1,a-cure-i1,2016-17,4.9,8.799999999999997,Masconomet - Masconomet Regional Middle School,07050405, 0.5, 3.7, 1.8, 91.2, 0.2, 0.2, 2.5, 47.1, 52.9 -1,1,a-cure-i1,2016-17,3.6,29.599999999999994,Mashpee - Kenneth Coombs School,01720005, 4.1, 2.2, 7.3, 70.4, 8.0, 0.3, 7.6, 51.6, 48.4 -1,1,a-cure-i1,2016-17,1.9,19.5,Mashpee - Mashpee High,01720505, 3.6, 1.7, 3.4, 80.5, 5.1, 0.0, 5.8, 54.5, 45.5 -1,1,a-cure-i1,2016-17,2.0,18.799999999999997,Mashpee - Mashpee Middle School,01720020, 4.0, 2.2, 3.6, 81.2, 5.8, 0.4, 2.9, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,20.599999999999994,Mashpee - Quashnet School,01720035, 3.2, 2.4, 2.2, 79.4, 7.1, 0.0, 5.7, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,35.7,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 11.1, 2.2, 16.8, 64.3, 0.3, 0.3, 4.9, 44.8, 55.2 -4.642487046632124,4.64,a-cure-i1,2016-17,28.0,96.5,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 45.9, 1.3, 46.7, 3.5, 0.5, 0.1, 1.9, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,8.900000000000006,Mattapoisett - Center,01730005, 0.9, 1.7, 3.0, 91.1, 0.0, 0.0, 3.4, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,10.799999999999997,Mattapoisett - Old Hammondtown,01730010, 1.9, 1.9, 3.3, 89.2, 0.0, 0.0, 3.8, 55.7, 44.3 -4.227979274611399,4.23,a-cure-i1,2016-17,5.1,19.299999999999997,Maynard - Fowler School,01740305, 2.5, 1.8, 12.0, 80.7, 0.2, 0.0, 2.8, 52.2, 47.8 -10.470046082949306,5,a-cure-i1,2016-17,14.2,21.700000000000003,Maynard - Green Meadow,01740010, 1.6, 1.2, 12.7, 78.3, 0.0, 0.0, 6.2, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,23.099999999999994,Maynard - Maynard High,01740505, 4.8, 3.8, 11.2, 76.9, 0.2, 0.0, 3.2, 49.2, 50.8 -1,1,a-cure-i1,2016-17,2.8,13.599999999999994,Medfield - Dale Street,01750005, 0.8, 3.5, 4.6, 86.4, 0.5, 0.0, 4.1, 52.0, 48.0 -1,1,a-cure-i1,2016-17,4.5,11.200000000000003,Medfield - Medfield Senior High,01750505, 1.1, 5.5, 2.1, 88.8, 0.0, 0.2, 2.3, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,12.599999999999994,Medfield - Memorial School,01750003, 1.9, 3.6, 4.1, 87.4, 0.2, 0.0, 2.9, 52.0, 48.0 -6.74829931972789,5,a-cure-i1,2016-17,6.2,14.700000000000003,Medfield - Ralph Wheelock School,01750007, 0.9, 2.6, 8.0, 85.3, 0.9, 0.0, 2.3, 54.9, 45.1 -1,1,a-cure-i1,2016-17,4.6,10.200000000000003,Medfield - Thomas Blake Middle,01750305, 0.6, 4.3, 1.9, 89.8, 0.2, 0.0, 3.2, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,23.099999999999994,Medford - Brooks School,01760130, 8.7, 4.4, 4.0, 76.9, 0.0, 0.0, 6.0, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,43.4,Medford - Christopher Columbus,01760140, 20.4, 5.4, 12.9, 56.6, 0.0, 0.0, 4.7, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,54.5,Medford - Curtis-Tufts,01760510, 22.7, 4.5, 22.7, 45.5, 0.0, 0.0, 4.5, 72.7, 27.3 -1,1,a-cure-i1,2016-17,0.0,46.5,Medford - John J McGlynn Elementary School,01760068, 13.8, 13.8, 11.0, 53.5, 1.1, 0.0, 6.8, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,45.4,Medford - John J. McGlynn Middle School,01760320, 15.3, 12.6, 14.3, 54.6, 0.4, 0.0, 2.7, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,25.700000000000003,Medford - Madeleine Dugger Andrews,01760315, 8.9, 5.1, 6.9, 74.3, 0.0, 0.2, 4.5, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,39.7,Medford - Medford High,01760505, 17.1, 10.2, 8.9, 60.3, 0.2, 0.0, 3.3, 48.0, 52.0 -1,1,a-cure-i1,2016-17,0.0,27.599999999999994,Medford - Medford Vocational Technical High,01760605, 14.8, 1.6, 8.9, 72.4, 0.0, 0.0, 2.3, 65.0, 35.0 -1,1,a-cure-i1,2016-17,0.0,37.4,Medford - Milton Fuller Roberts,01760150, 8.5, 13.0, 10.3, 62.6, 0.5, 0.0, 5.1, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,11.200000000000003,Medway - Burke/Memorial Elementary School,01770015, 1.4, 2.4, 3.6, 88.8, 0.0, 0.0, 3.8, 46.9, 53.1 -1,1,a-cure-i1,2016-17,0.0,8.5,Medway - John D Mc Govern Elementary,01770013, 1.2, 2.9, 2.6, 91.5, 0.0, 0.0, 1.7, 50.7, 49.3 -10.47619047619047,5,a-cure-i1,2016-17,5.5,8.400000000000006,Medway - Medway High,01770505, 1.3, 1.8, 3.0, 91.6, 0.4, 0.1, 1.7, 50.9, 49.1 -1,1,a-cure-i1,2016-17,1.9,11.0,Medway - Medway Middle,01770305, 1.8, 3.9, 3.2, 89.0, 0.4, 0.0, 1.5, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.0,15.900000000000006,Melrose - Early Childhood Center,01780003, 2.1, 3.8, 1.4, 84.1, 0.0, 0.0, 8.6, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,18.299999999999997,Melrose - Herbert Clark Hoover,01780017, 2.4, 4.8, 5.6, 81.7, 0.0, 0.0, 5.6, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,10.900000000000006,Melrose - Horace Mann,01780025, 3.4, 1.9, 2.3, 89.1, 0.0, 0.0, 3.4, 44.9, 55.1 -1,1,a-cure-i1,2016-17,0.0,33.0,Melrose - Lincoln,01780020, 8.1, 9.1, 10.0, 67.0, 0.0, 0.0, 5.8, 49.8, 50.2 -1,1,a-cure-i1,2016-17,2.9,19.5,Melrose - Melrose High,01780505, 7.8, 4.0, 4.6, 80.5, 0.0, 0.0, 3.1, 47.0, 53.0 -1,1,a-cure-i1,2016-17,2.0,17.099999999999994,Melrose - Melrose Middle,01780305, 6.1, 4.4, 2.3, 82.9, 0.0, 0.0, 4.3, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,22.099999999999994,Melrose - Roosevelt,01780035, 6.1, 5.1, 6.1, 77.9, 0.0, 0.0, 4.9, 51.7, 48.3 -5.746478873239435,5,a-cure-i1,2016-17,5.1,14.200000000000003,Melrose - Winthrop,01780050, 5.6, 2.7, 2.1, 85.8, 0.0, 0.0, 3.8, 52.0, 48.0 -28.799999999999997,5,a-cure-i1,2016-17,11.7,6.5,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.2, 4.7, 93.5, 0.0, 0.0, 1.6, 51.6, 48.4 -1,1,a-cure-i1,2016-17,4.0,13.0,Mendon-Upton - Memorial School,07100001, 0.5, 5.5, 3.9, 87.0, 0.0, 0.0, 3.2, 55.1, 44.9 -1,1,a-cure-i1,2016-17,1.3,10.599999999999994,Mendon-Upton - Miscoe Hill School,07100015, 0.6, 2.3, 4.7, 89.4, 0.0, 0.0, 2.9, 48.7, 51.3 -1,1,a-cure-i1,2016-17,2.4,8.099999999999994,Mendon-Upton - Nipmuc Regional High,07100510, 1.0, 2.0, 2.9, 91.9, 0.0, 0.0, 2.2, 46.0, 54.0 -1,1,a-cure-i1,2016-17,0.0,44.8,Methuen - Comprehensive Grammar School,01810050, 1.0, 6.0, 33.6, 55.2, 0.0, 0.1, 4.0, 49.5, 50.5 -1,1,a-cure-i1,2016-17,0.0,56.4,Methuen - Donald P Timony Grammar,01810060, 0.7, 3.9, 46.0, 43.6, 0.1, 0.1, 5.6, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,33.7,Methuen - Marsh Grammar School,01810030, 0.5, 2.7, 25.9, 66.3, 0.0, 0.0, 4.5, 52.7, 47.3 -1,1,a-cure-i1,2016-17,2.2,43.4,Methuen - Methuen High,01810505, 0.2, 4.0, 33.7, 56.6, 0.2, 0.1, 5.1, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,56.8,Methuen - Tenney Grammar School,01810055, 0.1, 3.1, 47.8, 43.2, 0.0, 0.0, 5.9, 54.0, 46.0 -1,1,a-cure-i1,2016-17,0.0,14.5,Middleborough - Henry B. Burkland Elementary School,01820008, 1.7, 1.0, 4.2, 85.5, 0.5, 0.2, 6.9, 53.6, 46.4 -1,1,a-cure-i1,2016-17,2.2,10.900000000000006,Middleborough - John T. Nichols Middle,01820305, 1.8, 1.3, 4.1, 89.1, 0.9, 0.0, 2.7, 49.0, 51.0 -1,1,a-cure-i1,2016-17,2.8,9.900000000000006,Middleborough - Mary K. Goode Elementary School,01820010, 2.9, 0.7, 2.0, 90.1, 0.9, 0.0, 3.4, 51.0, 49.0 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Middleborough - Memorial Early Childhood Center,01820011, 2.3, 0.8, 1.5, 93.8, 0.0, 0.0, 1.5, 49.2, 50.8 -1,1,a-cure-i1,2016-17,1.3,9.700000000000003,Middleborough - Middleborough High,01820505, 2.2, 0.7, 3.2, 90.3, 0.6, 0.0, 3.0, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,11.799999999999997,Middleton - Fuller Meadow,01840003, 0.5, 4.5, 2.7, 88.2, 0.5, 0.0, 3.6, 48.0, 52.0 -1,1,a-cure-i1,2016-17,0.0,14.400000000000006,Middleton - Howe-Manning,01840005, 0.8, 4.8, 4.6, 85.6, 0.0, 0.0, 4.2, 53.8, 46.2 -1,1,a-cure-i1,2016-17,1.6,38.1,Milford - Brookside,01850065, 3.6, 1.4, 28.7, 61.9, 0.6, 0.2, 3.6, 50.9, 49.1 -1,1,a-cure-i1,2016-17,1.8,40.3,Milford - Memorial,01850010, 2.1, 2.8, 28.5, 59.7, 1.5, 0.2, 5.2, 55.2, 44.8 -3.157894736842105,3.16,a-cure-i1,2016-17,6.0,30.400000000000006,Milford - Milford High,01850505, 3.0, 2.5, 22.0, 69.6, 1.4, 0.1, 1.4, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,21.299999999999997,Milford - Shining Star Early Childhood Center,01850075, 0.0, 2.2, 17.6, 78.7, 0.0, 0.0, 1.5, 64.0, 36.0 -1,1,a-cure-i1,2016-17,1.6,34.2,Milford - Stacy Middle,01850305, 2.8, 2.4, 24.6, 65.8, 1.1, 0.0, 3.3, 52.4, 47.6 -1,1,a-cure-i1,2016-17,2.1,38.8,Milford - Woodland,01850090, 2.5, 2.1, 27.4, 61.2, 3.0, 0.0, 3.8, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,17.799999999999997,Millbury - Elmwood Street,01860017, 2.0, 2.8, 6.6, 82.2, 0.0, 0.0, 6.4, 54.5, 45.5 -1,1,a-cure-i1,2016-17,1.7,15.099999999999994,Millbury - Millbury Junior/Senior High,01860505, 2.5, 1.9, 7.4, 84.9, 0.3, 0.1, 2.9, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,18.099999999999994,Millbury - Raymond E. Shaw Elementary,01860025, 1.6, 3.0, 8.2, 81.9, 0.0, 0.0, 5.3, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,11.299999999999997,Millis - Clyde F Brown,01870005, 0.6, 0.6, 5.0, 88.7, 0.4, 0.0, 4.8, 49.0, 51.0 -1,1,a-cure-i1,2016-17,3.8,10.5,Millis - Millis High School,01870505, 2.6, 1.8, 3.6, 89.5, 1.0, 0.3, 1.3, 49.5, 50.5 -1,1,a-cure-i1,2016-17,3.6,14.900000000000006,Millis - Millis Middle,01870020, 1.9, 3.3, 6.5, 85.1, 0.0, 0.2, 3.0, 57.1, 42.9 -4.6962457337883965,4.7,a-cure-i1,2016-17,8.6,29.299999999999997,Milton - Charles S Pierce Middle,01890410, 16.0, 4.8, 4.7, 70.7, 0.3, 0.3, 3.2, 50.5, 49.5 -5.748502994011975,5,a-cure-i1,2016-17,6.0,16.700000000000003,Milton - Collicot,01890005, 3.3, 7.4, 3.0, 83.3, 0.0, 0.1, 3.0, 54.3, 45.7 -3.9669421487603302,3.97,a-cure-i1,2016-17,6.0,24.200000000000003,Milton - Cunningham School,01890007, 7.9, 8.3, 3.8, 75.8, 0.2, 0.0, 4.0, 52.1, 47.9 -6.724637681159419,5,a-cure-i1,2016-17,8.7,20.700000000000003,Milton - Glover,01890010, 8.0, 4.4, 3.7, 79.3, 0.0, 0.0, 4.6, 52.3, 47.7 -2.828496042216359,2.83,a-cure-i1,2016-17,6.7,37.9,Milton - Milton High,01890505, 21.1, 7.1, 5.1, 62.1, 0.0, 0.4, 4.2, 49.1, 50.9 -4.427184466019418,4.43,a-cure-i1,2016-17,17.1,61.8,Milton - Tucker,01890020, 40.7, 6.0, 7.6, 38.2, 0.0, 0.0, 7.6, 49.4, 50.6 -1,1,a-cure-i1,2016-17,1.7,23.200000000000003,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 6.2, 3.3, 10.1, 76.8, 0.3, 0.0, 3.3, 66.5, 33.3 -1,1,a-cure-i1,2016-17,0.0,9.299999999999997,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.4, 0.0, 4.6, 90.7, 0.8, 0.0, 3.5, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,5.400000000000006,Mohawk Trail - Colrain Central,07170010, 1.8, 0.0, 2.7, 94.6, 0.0, 0.0, 0.9, 42.0, 58.0 -1,1,a-cure-i1,2016-17,0.0,0.0,Mohawk Trail - Heath Elementary,07170015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 44.8, 55.2 -1,1,a-cure-i1,2016-17,2.9,8.5,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.5, 1.2, 2.8, 91.5, 0.2, 0.0, 3.8, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,7.0,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.7, 2.8, 93.0, 0.7, 0.7, 2.1, 56.6, 43.4 -1,1,a-cure-i1,2016-17,0.0,16.099999999999994,Monomoy Regional School District - Chatham Elementary School,07120001, 5.1, 0.4, 6.2, 83.9, 0.0, 0.7, 3.7, 48.0, 52.0 -1,1,a-cure-i1,2016-17,0.0,18.200000000000003,Monomoy Regional School District - Harwich Elementary School,07120002, 4.4, 0.5, 7.1, 81.8, 0.7, 0.2, 5.3, 51.4, 48.6 -8.564705882352941,5,a-cure-i1,2016-17,9.1,17.0,Monomoy Regional School District - Monomoy Regional High School,07120515, 6.5, 2.2, 3.5, 83.0, 0.7, 0.0, 4.2, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,19.700000000000003,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 4.5, 0.9, 8.5, 80.3, 0.7, 0.5, 4.7, 47.9, 52.1 -1,1,a-cure-i1,2016-17,0.0,6.400000000000006,Monson - Granite Valley Middle,01910310, 1.0, 0.6, 1.6, 93.6, 0.3, 1.3, 1.6, 49.2, 50.8 -1,1,a-cure-i1,2016-17,4.3,5.900000000000006,Monson - Monson High School,01910505, 0.7, 0.7, 1.7, 94.1, 0.0, 0.3, 2.4, 49.8, 50.2 -1,1,a-cure-i1,2016-17,4.2,6.599999999999994,Monson - Quarry Hill Community School,01910025, 1.1, 1.1, 2.4, 93.4, 0.3, 0.3, 1.6, 53.3, 46.7 -4.100502512562813,4.1,a-cure-i1,2016-17,5.1000000000000005,19.900000000000006,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.9, 1.0, 13.9, 80.1, 0.1, 0.0, 4.1, 54.6, 45.2 -10.72,5,a-cure-i1,2016-17,6.7,10.0,Mount Greylock - Mt Greylock Regional High,07150505, 1.4, 1.1, 2.5, 90.0, 0.2, 0.0, 4.8, 49.3, 50.7 -2.88412017167382,2.88,a-cure-i1,2016-17,8.4,46.6,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 17.0, 17.2, 7.8, 53.4, 0.3, 0.0, 4.4, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,0.0,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.7, 49.3 -3.9524940617577196,3.95,a-cure-i1,2016-17,10.4,42.1,Nantucket - Cyrus Peirce,01970010, 11.9, 1.2, 23.2, 57.9, 0.0, 0.3, 5.5, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,48.1,Nantucket - Nantucket Elementary,01970005, 9.6, 2.0, 33.6, 51.9, 0.0, 0.1, 2.8, 51.6, 48.4 -3.4201474201474196,3.42,a-cure-i1,2016-17,8.7,40.7,Nantucket - Nantucket High,01970505, 12.5, 1.5, 23.4, 59.3, 0.4, 0.0, 3.0, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,10.799999999999997,Narragansett - Baldwinville Elementary,07200005, 0.7, 0.4, 5.1, 89.2, 0.4, 0.4, 4.0, 55.6, 44.4 -1,1,a-cure-i1,2016-17,0.0,9.5,Narragansett - Narragansett Middle,07200305, 1.0, 0.2, 5.2, 90.5, 0.0, 0.2, 2.9, 52.0, 48.0 -1,1,a-cure-i1,2016-17,3.7,9.900000000000006,Narragansett - Narragansett Regional High,07200505, 0.8, 0.8, 5.1, 90.1, 0.0, 0.0, 3.2, 48.7, 51.3 -1,1,a-cure-i1,2016-17,0.0,11.700000000000003,Narragansett - Phillipston Memorial,07200003, 1.2, 0.0, 4.9, 88.3, 0.6, 0.0, 4.9, 53.4, 46.6 -1,1,a-cure-i1,2016-17,0.0,7.599999999999994,Narragansett - Templeton Center,07200020, 0.0, 0.6, 5.7, 92.4, 0.0, 0.0, 1.3, 58.9, 41.1 -1,1,a-cure-i1,2016-17,0.0,10.5,Nashoba - Center School,07250020, 0.7, 4.4, 3.4, 89.5, 0.3, 0.0, 1.6, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,10.200000000000003,Nashoba - Florence Sawyer School,07250025, 0.4, 4.1, 3.0, 89.8, 0.0, 0.0, 2.7, 49.4, 50.6 -1,1,a-cure-i1,2016-17,4.4,8.400000000000006,Nashoba - Hale,07250310, 1.4, 4.2, 2.4, 91.6, 0.0, 0.0, 0.3, 52.3, 47.7 -6.730158730158733,5,a-cure-i1,2016-17,5.3,12.599999999999994,Nashoba - Luther Burbank Middle School,07250305, 3.2, 2.4, 4.0, 87.4, 0.0, 0.8, 2.0, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,11.5,Nashoba - Mary Rowlandson Elementary,07250010, 0.8, 1.2, 6.6, 88.5, 0.2, 0.0, 2.7, 52.4, 47.6 -1,1,a-cure-i1,2016-17,1.4,12.900000000000006,Nashoba - Nashoba Regional,07250505, 1.6, 2.3, 4.9, 87.1, 0.2, 0.0, 3.9, 48.8, 51.2 -1,1,a-cure-i1,2016-17,2.5,11.299999999999997,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.7, 0.8, 6.3, 88.7, 0.8, 0.0, 2.7, 58.9, 41.0 -3.9658119658119646,3.97,a-cure-i1,2016-17,5.8,23.400000000000006,Natick - Bennett-Hemenway,01980005, 2.4, 10.9, 2.6, 76.6, 0.0, 0.2, 7.4, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,38.6,Natick - Brown,01980010, 1.2, 23.7, 9.3, 61.4, 0.2, 0.0, 4.3, 54.2, 45.8 -5.9689119170984455,5,a-cure-i1,2016-17,7.199999999999999,19.299999999999997,Natick - J F Kennedy Middle School,01980305, 1.8, 9.7, 3.2, 80.7, 0.2, 0.0, 4.3, 48.2, 51.8 -1,1,a-cure-i1,2016-17,0.0,18.900000000000006,Natick - Johnson,01980031, 2.3, 3.6, 4.5, 81.1, 0.0, 0.0, 8.6, 56.3, 43.7 -1,1,a-cure-i1,2016-17,4.5,23.700000000000003,Natick - Lilja Elementary,01980035, 3.1, 9.4, 6.7, 76.3, 0.0, 0.0, 4.6, 48.4, 51.6 -1,1,a-cure-i1,2016-17,0.0,14.5,Natick - Memorial,01980043, 1.2, 4.8, 3.5, 85.5, 0.0, 0.0, 5.1, 54.8, 45.2 -6.537634408602152,5,a-cure-i1,2016-17,7.6,18.599999999999994,Natick - Natick High,01980505, 3.5, 7.7, 4.1, 81.4, 0.1, 0.1, 3.0, 50.3, 49.7 -1,1,a-cure-i1,2016-17,1.9000000000000001,21.799999999999997,Natick - Wilson Middle,01980310, 3.3, 5.6, 6.1, 78.2, 0.1, 0.1, 6.5, 49.9, 50.1 -1,1,a-cure-i1,2016-17,2.1,13.299999999999997,Nauset - Nauset Regional High,06600505, 4.5, 2.7, 3.0, 86.7, 0.5, 0.1, 2.5, 47.5, 52.5 -1,1,a-cure-i1,2016-17,0.7,12.0,Nauset - Nauset Regional Middle,06600305, 3.6, 1.9, 3.7, 88.0, 0.4, 0.2, 2.2, 50.5, 49.5 -1,1,a-cure-i1,2016-17,3.6,20.099999999999994,Needham - Broadmeadow,01990005, 1.1, 7.4, 6.0, 79.9, 0.0, 0.0, 5.6, 47.7, 52.3 -1,1,a-cure-i1,2016-17,3.4,21.400000000000006,Needham - High Rock School,01990410, 1.9, 7.1, 6.7, 78.6, 0.0, 0.0, 5.7, 47.5, 52.5 -1,1,a-cure-i1,2016-17,4.0,27.099999999999994,Needham - Hillside Elementary,01990035, 3.8, 10.0, 7.0, 72.9, 0.0, 0.0, 6.4, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,29.799999999999997,Needham - John Eliot,01990020, 5.4, 13.0, 7.4, 70.2, 0.0, 0.0, 4.1, 48.7, 51.3 -6.666666666666666,5,a-cure-i1,2016-17,8.0,19.200000000000003,Needham - Needham High,01990505, 3.4, 7.7, 5.0, 80.8, 0.1, 0.1, 3.0, 49.7, 50.3 -3.983935742971887,3.98,a-cure-i1,2016-17,6.2,24.900000000000006,Needham - Newman Elementary,01990050, 4.0, 8.8, 6.0, 75.1, 0.0, 0.1, 6.0, 51.3, 48.8 -1,1,a-cure-i1,2016-17,4.4,19.5,Needham - Pollard Middle,01990405, 1.9, 8.7, 3.9, 80.5, 0.2, 0.0, 4.8, 48.7, 51.3 -7.5454545454545485,5,a-cure-i1,2016-17,8.3,17.599999999999994,Needham - William Mitchell,01990040, 1.2, 7.5, 4.2, 82.4, 0.0, 0.0, 4.6, 48.9, 51.1 -6.744303797468354,5,a-cure-i1,2016-17,33.3,79.0,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 51.0, 4.4, 16.2, 21.0, 0.9, 0.0, 6.6, 50.5, 49.5 -1,1,a-cure-i1,2016-17,2.7,48.7,New Bedford - Abraham Lincoln,02010095, 8.9, 0.5, 32.7, 51.3, 0.3, 0.0, 6.3, 51.7, 48.3 -1.2807881773399015,1.28,a-cure-i1,2016-17,6.5,81.2,New Bedford - Alfred J Gomes,02010063, 11.9, 0.4, 65.3, 18.8, 0.4, 0.2, 3.1, 53.8, 46.2 -1,1,a-cure-i1,2016-17,4.3,35.0,New Bedford - Betsey B Winslow,02010140, 6.4, 2.7, 15.2, 65.0, 0.3, 0.3, 10.1, 45.8, 54.2 -1,1,a-cure-i1,2016-17,4.5,73.0,New Bedford - Carlos Pacheco,02010105, 16.0, 1.0, 50.9, 27.0, 0.5, 0.0, 4.5, 54.3, 45.7 -8.786440677966104,5,a-cure-i1,2016-17,16.200000000000003,29.5,New Bedford - Casimir Pulaski,02010123, 6.4, 1.4, 16.1, 70.5, 0.1, 0.0, 5.5, 56.4, 43.6 -1,1,a-cure-i1,2016-17,2.2,31.700000000000003,New Bedford - Charles S Ashley,02010010, 4.2, 0.9, 22.7, 68.3, 0.3, 0.0, 3.6, 53.5, 46.5 -1,1,a-cure-i1,2016-17,0.0,49.5,New Bedford - Elizabeth Carter Brooks,02010015, 9.3, 1.7, 31.8, 50.5, 1.4, 0.3, 4.8, 46.4, 53.6 -2.448767833981842,2.45,a-cure-i1,2016-17,11.8,77.1,New Bedford - Ellen R Hathaway,02010075, 10.1, 1.4, 59.0, 22.9, 0.7, 0.3, 5.6, 49.3, 50.7 -1.7739872068230278,1.77,a-cure-i1,2016-17,5.2,46.9,New Bedford - Elwyn G Campbell,02010020, 5.5, 1.5, 33.1, 53.1, 0.4, 0.0, 6.5, 48.4, 51.6 -2.6555090655509064,2.66,a-cure-i1,2016-17,11.9,71.7,New Bedford - Hayden/McFadden,02010078, 10.9, 0.3, 54.7, 28.3, 1.0, 0.0, 4.8, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,62.1,New Bedford - James B Congdon,02010040, 11.8, 0.3, 42.6, 37.9, 0.5, 0.3, 6.6, 43.1, 56.9 -1,1,a-cure-i1,2016-17,0.0,24.900000000000006,New Bedford - Jireh Swift,02010130, 3.0, 1.7, 18.0, 75.1, 0.0, 0.0, 2.1, 49.4, 50.6 -1.5655058043117747,1.57,a-cure-i1,2016-17,5.9,60.3,New Bedford - John Avery Parker,02010115, 15.2, 0.0, 37.4, 39.7, 0.3, 0.3, 7.1, 55.2, 44.8 -2.469982847341338,2.47,a-cure-i1,2016-17,9.0,58.3,New Bedford - John B Devalles,02010050, 13.0, 0.9, 41.4, 41.7, 0.0, 0.0, 3.0, 52.1, 47.9 -1.9282639885222381,1.93,a-cure-i1,2016-17,8.4,69.7,New Bedford - John Hannigan,02010070, 13.9, 0.0, 52.0, 30.3, 0.5, 0.0, 3.2, 48.5, 51.5 -1.9531772575250836,1.95,a-cure-i1,2016-17,7.3,59.8,New Bedford - Keith Middle School,02010405, 14.9, 1.1, 36.9, 40.2, 0.6, 0.3, 5.9, 51.3, 48.7 -3.7791411042944785,3.78,a-cure-i1,2016-17,15.4,65.2,New Bedford - New Bedford High,02010505, 13.0, 1.1, 46.1, 34.8, 0.8, 0.4, 3.9, 53.5, 46.5 -1.8763326226012793,1.88,a-cure-i1,2016-17,5.5,46.9,New Bedford - Normandin Middle School,02010410, 7.3, 1.1, 33.0, 53.1, 0.6, 0.2, 4.8, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,81.4,New Bedford - Renaissance Community School for the Arts,02010124, 17.8, 0.0, 59.9, 18.6, 0.0, 0.4, 3.2, 41.3, 58.7 -3.2414910858995136,3.24,a-cure-i1,2016-17,12.5,61.7,New Bedford - Roosevelt Middle School,02010415, 15.0, 0.5, 39.9, 38.3, 0.4, 0.1, 5.8, 51.8, 48.2 -1,1,a-cure-i1,2016-17,4.7,61.8,New Bedford - Sgt Wm H Carney Academy,02010045, 20.1, 0.9, 30.8, 38.2, 0.1, 0.0, 9.9, 57.8, 42.2 -1,1,a-cure-i1,2016-17,0.0,50.7,New Bedford - Thomas R Rodman,02010125, 6.0, 3.2, 36.9, 49.3, 0.0, 0.0, 4.6, 57.6, 42.4 -8.651851851851852,5,a-cure-i1,2016-17,29.200000000000003,54.0,New Bedford - Trinity Day Academy,02010510, 7.9, 0.0, 41.3, 46.0, 1.6, 0.0, 3.2, 68.3, 31.7 -5.869565217391305,5,a-cure-i1,2016-17,27.0,73.6,New Bedford - Whaling City Junior/Senior High School,02010515, 22.7, 0.9, 41.8, 26.4, 0.0, 0.0, 8.2, 73.6, 26.4 -1,1,a-cure-i1,2016-17,3.4,32.5,New Bedford - William H Taylor,02010135, 7.4, 0.0, 17.7, 67.5, 0.0, 0.0, 7.4, 48.9, 51.1 -7.263803680981595,5,a-cure-i1,2016-17,44.4,97.8,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 86.9, 1.3, 8.3, 2.2, 0.0, 0.0, 1.3, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,11.799999999999997,New Salem-Wendell - Swift River,07280015, 0.0, 1.2, 4.7, 88.2, 0.0, 0.0, 5.9, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,9.400000000000006,Newburyport - Edward G. Molin Elementary School,02040030, 2.1, 2.7, 2.7, 90.6, 0.0, 0.0, 1.8, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,5.900000000000006,Newburyport - Francis T Bresnahan Elementary,02040005, 1.1, 1.2, 2.8, 94.1, 0.2, 0.0, 0.6, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,8.900000000000006,Newburyport - Newburyport High,02040505, 1.2, 1.5, 4.0, 91.1, 0.0, 0.0, 2.2, 47.2, 52.6 -14.814814814814799,5,a-cure-i1,2016-17,5.0,5.400000000000006,Newburyport - Rupert A Nock Middle,02040305, 0.4, 1.5, 1.5, 94.6, 0.0, 0.0, 2.0, 53.9, 46.1 -1,1,a-cure-i1,2016-17,4.2,29.700000000000003,Newton - A E Angier,02070005, 3.3, 14.7, 5.2, 70.3, 0.0, 0.0, 6.4, 46.3, 53.7 -3.401574803149607,3.4,a-cure-i1,2016-17,8.100000000000001,38.1,Newton - Bigelow Middle,02070305, 5.9, 15.0, 9.7, 61.9, 0.8, 0.2, 6.5, 48.8, 51.2 -9.537117903930131,5,a-cure-i1,2016-17,27.299999999999997,45.8,Newton - Bowen,02070015, 6.7, 28.8, 4.6, 54.2, 0.2, 0.0, 5.5, 52.3, 47.7 -9.876543209876543,5,a-cure-i1,2016-17,25.0,40.5,Newton - C C Burr,02070020, 3.5, 20.4, 10.9, 59.5, 0.2, 0.0, 5.5, 51.0, 49.0 -7.724137931034483,5,a-cure-i1,2016-17,14.0,29.0,Newton - Cabot,02070025, 3.8, 13.3, 5.5, 71.0, 0.0, 0.0, 6.5, 46.8, 53.3 -3.311827956989247,3.31,a-cure-i1,2016-17,7.7,37.2,Newton - Charles E Brown Middle,02070310, 3.9, 21.1, 6.1, 62.8, 0.1, 0.0, 6.1, 54.4, 45.6 -1,1,a-cure-i1,2016-17,4.2,42.0,Newton - Countryside,02070040, 3.7, 22.7, 7.8, 58.0, 0.2, 0.0, 7.6, 47.5, 52.5 -4.158192090395479,4.16,a-cure-i1,2016-17,9.2,35.400000000000006,Newton - F A Day Middle,02070315, 6.5, 13.6, 7.9, 64.6, 0.2, 0.0, 7.1, 53.9, 46.1 -1,1,a-cure-i1,2016-17,3.9,29.400000000000006,Newton - Franklin,02070055, 3.4, 12.6, 8.7, 70.6, 0.2, 0.0, 4.5, 45.7, 54.3 -7.181102362204725,5,a-cure-i1,2016-17,17.1,38.1,Newton - Horace Mann,02070075, 3.8, 18.2, 8.4, 61.9, 0.0, 0.0, 7.7, 55.9, 44.1 -1,1,a-cure-i1,2016-17,3.1,29.200000000000003,Newton - John Ward,02070120, 3.2, 15.4, 3.2, 70.8, 0.0, 0.0, 7.4, 45.2, 54.8 -1,1,a-cure-i1,2016-17,4.6,45.4,Newton - Lincoln-Eliot,02070070, 8.7, 17.3, 13.9, 54.6, 0.0, 0.0, 5.5, 48.6, 51.4 -3.648,3.65,a-cure-i1,2016-17,5.7,25.0,Newton - Mason-Rice,02070080, 1.4, 13.2, 3.6, 75.0, 0.0, 0.0, 6.9, 53.5, 46.5 -4.328502415458937,4.33,a-cure-i1,2016-17,11.2,41.4,Newton - Memorial Spaulding,02070105, 2.6, 25.6, 7.0, 58.6, 0.0, 0.0, 6.2, 52.0, 48.0 -2.0698151950718686,2.07,a-cure-i1,2016-17,6.3,48.7,Newton - Newton Early Childhood Center,02070108, 5.7, 24.9, 9.3, 51.3, 0.0, 0.0, 8.8, 64.2, 35.8 -7.571428571428574,5,a-cure-i1,2016-17,15.900000000000002,33.599999999999994,Newton - Newton North High,02070505, 5.0, 14.3, 9.3, 66.4, 0.2, 0.1, 4.7, 49.9, 50.1 -7.933147632311977,5,a-cure-i1,2016-17,17.8,35.900000000000006,Newton - Newton South High,02070510, 5.9, 19.6, 6.1, 64.1, 0.1, 0.0, 4.3, 50.9, 49.1 -8.466019417475728,5,a-cure-i1,2016-17,21.8,41.2,Newton - Oak Hill Middle,02070320, 5.0, 22.1, 6.4, 58.8, 0.2, 0.0, 7.5, 45.4, 54.6 -4.58312020460358,4.58,a-cure-i1,2016-17,11.2,39.1,Newton - Peirce,02070100, 4.3, 19.1, 8.7, 60.9, 0.0, 0.7, 6.4, 51.2, 48.8 -4.527472527472528,4.53,a-cure-i1,2016-17,10.3,36.4,Newton - Underwood,02070115, 3.8, 17.9, 11.8, 63.6, 0.0, 0.0, 2.9, 47.6, 52.4 -1,1,a-cure-i1,2016-17,0.0,43.0,Newton - Williams,02070125, 3.1, 25.6, 9.9, 57.0, 0.3, 0.0, 4.1, 56.7, 43.3 -5.03370786516854,5,a-cure-i1,2016-17,11.2,35.599999999999994,Newton - Zervas,02070130, 4.7, 18.1, 5.0, 64.4, 0.3, 0.3, 7.1, 52.2, 47.8 -1,1,a-cure-i1,2016-17,4.1,9.900000000000006,Norfolk - Freeman-Kennedy School,02080005, 1.4, 1.6, 3.6, 90.1, 0.0, 0.0, 3.2, 53.7, 46.3 -1,1,a-cure-i1,2016-17,0.0,9.5,Norfolk - H Olive Day,02080015, 0.5, 2.7, 3.4, 90.5, 0.0, 0.0, 2.9, 56.1, 43.9 -1,1,a-cure-i1,2016-17,0.0,8.799999999999997,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.5, 0.9, 3.2, 91.2, 0.4, 0.0, 2.8, 28.7, 71.3 -1,1,a-cure-i1,2016-17,0.0,17.200000000000003,North Adams - Brayton,02090035, 2.6, 0.3, 7.2, 82.8, 0.0, 0.0, 7.2, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,14.0,North Adams - Colegrove Park Elementary,02090008, 4.8, 0.3, 3.9, 86.0, 0.0, 0.0, 5.1, 50.0, 50.0 -1,1,a-cure-i1,2016-17,3.0,17.099999999999994,North Adams - Drury High,02090505, 3.4, 0.0, 5.9, 82.9, 0.2, 0.2, 7.3, 47.6, 52.4 -1,1,a-cure-i1,2016-17,0.0,21.900000000000006,North Adams - Greylock,02090015, 2.6, 2.0, 8.6, 78.1, 0.0, 0.7, 7.9, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,17.599999999999994,North Andover - Annie L Sargent School,02110018, 1.6, 6.7, 4.5, 82.4, 0.7, 0.0, 4.0, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,36.2,North Andover - Atkinson,02110001, 6.4, 11.5, 14.8, 63.8, 0.2, 0.0, 3.5, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,25.200000000000003,North Andover - Franklin,02110010, 1.7, 13.4, 6.7, 74.8, 0.6, 0.0, 2.7, 55.6, 44.4 -1,1,a-cure-i1,2016-17,0.0,20.599999999999994,North Andover - Kittredge,02110015, 3.0, 6.4, 6.4, 79.4, 0.0, 0.7, 4.1, 55.4, 44.6 -1,1,a-cure-i1,2016-17,1.3,19.599999999999994,North Andover - North Andover High,02110505, 3.2, 6.9, 7.3, 80.4, 0.2, 0.4, 1.6, 46.3, 53.7 -1,1,a-cure-i1,2016-17,0.0,21.200000000000003,North Andover - North Andover Middle,02110305, 3.0, 7.4, 8.6, 78.8, 0.2, 0.2, 1.8, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,30.400000000000006,North Andover - Thomson,02110020, 3.3, 5.8, 16.9, 69.6, 0.0, 0.0, 4.4, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,20.0,North Attleborough - Amvet Boulevard,02120007, 3.0, 8.4, 5.6, 80.0, 0.5, 0.0, 2.5, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,27.599999999999994,North Attleborough - Community,02120030, 7.4, 3.6, 7.1, 72.4, 0.3, 0.0, 9.2, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,16.700000000000003,North Attleborough - Falls,02120010, 2.8, 4.6, 5.0, 83.3, 0.0, 0.4, 3.9, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,16.0,North Attleborough - Joseph W Martin Jr Elementary,02120013, 2.8, 5.9, 2.8, 84.0, 0.0, 0.3, 4.2, 49.6, 50.4 -1,1,a-cure-i1,2016-17,3.7,15.200000000000003,North Attleborough - North Attleboro High,02120505, 2.8, 5.7, 4.6, 84.8, 0.4, 0.1, 1.7, 49.5, 50.5 -1,1,a-cure-i1,2016-17,0.0,30.099999999999994,North Attleborough - North Attleborough Early Learning Center,02120020, 4.4, 13.2, 2.9, 69.9, 1.5, 0.7, 7.4, 56.6, 43.4 -1,1,a-cure-i1,2016-17,4.1,15.900000000000006,North Attleborough - North Attleborough Middle,02120305, 2.2, 6.0, 4.2, 84.1, 0.3, 0.1, 3.2, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,North Attleborough - Roosevelt Avenue,02120015, 0.6, 6.7, 2.6, 85.3, 0.0, 0.0, 4.8, 45.2, 54.8 -1,1,a-cure-i1,2016-17,0.0,8.200000000000003,North Brookfield - North Brookfield Elementary,02150015, 0.6, 0.0, 3.6, 91.8, 0.0, 0.0, 4.0, 58.4, 41.6 -1,1,a-cure-i1,2016-17,0.0,10.400000000000006,North Brookfield - North Brookfield High,02150505, 1.3, 0.9, 5.7, 89.6, 0.0, 0.0, 2.6, 43.9, 56.1 -1,1,a-cure-i1,2016-17,0.0,2.299999999999997,North Middlesex - Ashby Elementary,07350010, 1.4, 0.0, 0.9, 97.7, 0.0, 0.0, 0.0, 56.0, 44.0 -1,1,a-cure-i1,2016-17,0.0,9.599999999999994,North Middlesex - Hawthorne Brook,07350030, 0.6, 1.0, 3.9, 90.4, 0.0, 0.2, 3.9, 48.2, 51.8 -1,1,a-cure-i1,2016-17,2.9,9.5,North Middlesex - Nissitissit Middle School,07350310, 1.1, 1.7, 3.6, 90.5, 0.2, 0.0, 2.9, 54.0, 46.0 -1,1,a-cure-i1,2016-17,1.9,7.200000000000003,North Middlesex - North Middlesex Regional,07350505, 1.3, 0.8, 3.1, 92.8, 0.0, 0.1, 1.9, 48.1, 51.9 -1,1,a-cure-i1,2016-17,0.0,0.0,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.0, 40.0 -1,1,a-cure-i1,2016-17,0.0,12.400000000000006,North Middlesex - Spaulding Memorial,07350005, 1.9, 1.9, 5.6, 87.6, 0.2, 0.0, 2.8, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,6.299999999999997,North Middlesex - Squannacook Early Childhood Center,07350002, 2.5, 2.5, 1.3, 93.7, 0.0, 0.0, 0.0, 63.3, 36.7 -1,1,a-cure-i1,2016-17,3.1,12.299999999999997,North Middlesex - Varnum Brook,07350035, 2.1, 0.7, 4.4, 87.7, 0.2, 0.0, 4.8, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,14.599999999999994,North Reading - E Ethel Little School,02170003, 0.6, 4.3, 4.3, 85.4, 0.0, 0.3, 5.0, 54.7, 45.3 -1,1,a-cure-i1,2016-17,0.0,11.400000000000006,North Reading - J Turner Hood,02170010, 1.5, 5.3, 1.8, 88.6, 0.0, 0.0, 2.9, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,10.5,North Reading - L D Batchelder,02170005, 0.2, 3.4, 4.5, 89.5, 0.0, 0.0, 2.5, 48.4, 51.6 -1,1,a-cure-i1,2016-17,3.3,6.400000000000006,North Reading - North Reading High,02170505, 0.4, 2.7, 2.2, 93.6, 0.0, 0.2, 0.9, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,8.900000000000006,North Reading - North Reading Middle,02170305, 0.7, 2.8, 2.1, 91.1, 0.0, 0.2, 3.1, 49.3, 50.7 -2.6442577030812324,2.64,a-cure-i1,2016-17,5.9,35.7,Northampton - Bridge Street,02100005, 2.6, 6.0, 17.7, 64.3, 0.8, 0.0, 8.6, 55.6, 44.4 -6.1395348837209305,5,a-cure-i1,2016-17,16.5,43.0,Northampton - Jackson Street,02100020, 6.1, 6.7, 20.3, 57.0, 0.0, 0.0, 10.0, 46.7, 53.3 -1,1,a-cure-i1,2016-17,0.0,27.700000000000003,Northampton - John F Kennedy Middle School,02100410, 2.7, 2.4, 16.8, 72.3, 0.3, 0.0, 5.6, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,29.5,Northampton - Leeds,02100025, 1.5, 2.1, 18.6, 70.5, 0.3, 0.0, 7.1, 54.0, 46.0 -1,1,a-cure-i1,2016-17,4.0,25.599999999999994,Northampton - Northampton High,02100505, 2.4, 5.0, 14.0, 74.4, 0.1, 0.0, 4.1, 46.8, 53.2 -1,1,a-cure-i1,2016-17,0.0,30.299999999999997,Northampton - R. K. Finn Ryan Road,02100029, 1.8, 3.9, 19.3, 69.7, 0.0, 0.0, 5.3, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,19.799999999999997,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.6, 1.0, 15.6, 80.2, 0.0, 0.0, 1.4, 60.9, 39.1 -1,1,a-cure-i1,2016-17,2.1,19.200000000000003,Northboro-Southboro - Algonquin Regional High,07300505, 1.2, 10.2, 4.7, 80.8, 0.1, 0.3, 2.6, 47.1, 52.9 -1,1,a-cure-i1,2016-17,0.0,29.700000000000003,Northborough - Fannie E Proctor,02130015, 2.5, 13.0, 10.9, 70.3, 0.0, 0.4, 2.9, 54.0, 46.0 -1,1,a-cure-i1,2016-17,0.0,19.5,Northborough - Lincoln Street,02130003, 1.5, 10.7, 1.9, 80.5, 1.1, 0.4, 3.8, 47.5, 52.5 -1,1,a-cure-i1,2016-17,0.0,32.7,Northborough - Marguerite E Peaslee,02130014, 0.7, 15.2, 11.9, 67.3, 0.4, 0.7, 3.7, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,29.0,Northborough - Marion E Zeh,02130020, 2.0, 14.9, 8.6, 71.0, 0.0, 0.3, 3.3, 52.5, 47.5 -1,1,a-cure-i1,2016-17,2.4,20.700000000000003,Northborough - Robert E. Melican Middle School,02130305, 1.4, 9.5, 4.8, 79.3, 0.6, 0.3, 4.1, 54.0, 46.0 -1,1,a-cure-i1,2016-17,0.0,17.900000000000006,Northbridge - Northbridge Elementary,02140005, 0.3, 1.3, 10.8, 82.1, 0.3, 0.0, 5.4, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,12.200000000000003,Northbridge - Northbridge High,02140505, 0.5, 1.2, 7.7, 87.8, 0.0, 0.0, 2.7, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,11.0,Northbridge - Northbridge Middle,02140305, 0.5, 1.0, 5.7, 89.0, 0.0, 0.3, 3.4, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,14.400000000000006,Northbridge - W Edward Balmer,02140001, 0.4, 0.6, 8.9, 85.6, 0.0, 0.0, 4.6, 49.5, 50.5 -1,1,a-cure-i1,2016-17,4.6,33.3,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.9, 1.7, 27.0, 66.7, 0.0, 0.2, 1.6, 54.1, 45.9 -1,1,a-cure-i1,2016-17,0.0,7.200000000000003,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 1.0, 0.2, 3.1, 92.8, 0.2, 0.0, 2.7, 63.0, 37.0 -1,1,a-cure-i1,2016-17,0.0,15.0,Norton - Henri A. Yelle,02180060, 2.1, 2.4, 4.6, 85.0, 0.3, 0.0, 5.6, 46.9, 53.1 -1,1,a-cure-i1,2016-17,0.0,10.700000000000003,Norton - J C Solmonese,02180015, 1.0, 1.2, 2.7, 89.3, 0.7, 0.0, 5.0, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,16.799999999999997,Norton - L G Nourse Elementary,02180010, 3.0, 1.9, 7.3, 83.2, 0.3, 0.0, 4.3, 53.8, 46.2 -1,1,a-cure-i1,2016-17,4.9,6.599999999999994,Norton - Norton High,02180505, 1.7, 1.6, 1.7, 93.4, 0.0, 0.4, 1.2, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,8.099999999999994,Norton - Norton Middle,02180305, 1.7, 1.8, 2.0, 91.9, 0.0, 0.2, 2.3, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,7.799999999999997,Norwell - Grace Farrar Cole,02190005, 0.4, 1.9, 1.9, 92.2, 0.2, 0.0, 3.4, 57.3, 42.7 -1,1,a-cure-i1,2016-17,0.0,5.900000000000006,Norwell - Norwell High,02190505, 0.4, 2.1, 2.0, 94.1, 0.0, 0.1, 1.3, 48.0, 52.0 -1,1,a-cure-i1,2016-17,0.0,6.0,Norwell - Norwell Middle School,02190405, 1.0, 2.1, 1.5, 94.0, 0.0, 0.2, 1.2, 45.1, 54.9 -1,1,a-cure-i1,2016-17,0.0,6.700000000000003,Norwell - William G Vinal,02190020, 0.0, 1.6, 1.8, 93.3, 0.0, 0.4, 2.9, 54.4, 45.6 -3.9198218262806237,3.92,a-cure-i1,2016-17,11.0,44.9,Norwood - Balch,02200005, 10.9, 3.5, 27.4, 55.1, 0.0, 0.0, 3.2, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,31.299999999999997,Norwood - Charles J Prescott,02200025, 6.1, 20.7, 2.4, 68.7, 0.0, 0.0, 2.0, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,25.200000000000003,Norwood - Cornelius M Callahan,02200010, 9.4, 5.0, 7.9, 74.8, 0.0, 0.0, 3.0, 48.0, 52.0 -1,1,a-cure-i1,2016-17,1.8,29.200000000000003,Norwood - Dr. Philip O. Coakley Middle School,02200305, 10.4, 5.3, 11.3, 70.8, 0.0, 0.0, 2.3, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,25.299999999999997,Norwood - F A Cleveland,02200015, 6.5, 10.9, 5.9, 74.7, 0.0, 0.3, 1.8, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,39.3,Norwood - George F. Willett,02200075, 8.6, 15.7, 12.4, 60.7, 0.3, 0.0, 2.3, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,29.099999999999994,Norwood - John P Oldham,02200020, 12.0, 7.7, 8.1, 70.9, 0.0, 0.4, 0.9, 50.4, 49.6 -1,1,a-cure-i1,2016-17,3.0,27.799999999999997,Norwood - Norwood High,02200505, 12.7, 3.9, 9.5, 72.2, 0.0, 0.0, 1.7, 50.4, 49.6 -1,1,a-cure-i1,2016-17,2.7,35.7,Oak Bluffs - Oak Bluffs Elementary,02210005, 3.9, 1.1, 20.6, 64.3, 2.5, 0.5, 7.1, 47.6, 52.4 -1,1,a-cure-i1,2016-17,3.1,3.5,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.9, 0.5, 0.4, 96.5, 0.0, 0.0, 1.6, 61.7, 38.3 -1,1,a-cure-i1,2016-17,2.2,8.400000000000006,Old Rochester - Old Rochester Regional High,07400505, 2.3, 2.3, 1.7, 91.6, 0.1, 0.0, 2.0, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,9.599999999999994,Old Rochester - Old Rochester Regional Jr High,07400405, 3.3, 1.2, 1.2, 90.4, 0.0, 0.0, 3.9, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,12.299999999999997,Orange - Dexter Park,02230010, 1.5, 0.6, 7.2, 87.7, 0.0, 0.0, 3.0, 58.1, 41.9 -1,1,a-cure-i1,2016-17,0.0,13.099999999999994,Orange - Fisher Hill,02230015, 1.0, 0.3, 8.8, 86.9, 0.0, 0.0, 3.0, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,10.200000000000003,Orleans - Orleans Elementary,02240005, 3.3, 3.3, 2.3, 89.8, 0.0, 0.0, 1.4, 54.0, 46.0 -1,1,a-cure-i1,2016-17,0.0,17.700000000000003,Oxford - Alfred M Chaffee,02260010, 2.1, 0.3, 10.5, 82.3, 0.3, 0.0, 4.5, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,18.200000000000003,Oxford - Clara Barton,02260005, 1.9, 0.5, 10.6, 81.8, 0.0, 0.0, 5.3, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.1,17.099999999999994,Oxford - Oxford High,02260505, 1.9, 1.7, 9.5, 82.9, 0.4, 0.0, 3.7, 49.6, 50.4 -1,1,a-cure-i1,2016-17,4.0,18.200000000000003,Oxford - Oxford Middle,02260405, 2.4, 1.4, 9.7, 81.8, 0.2, 0.5, 4.0, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,36.0,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 32.0, 64.0, 0.0, 0.0, 4.0, 88.0, 12.0 -1,1,a-cure-i1,2016-17,2.8,16.5,Palmer - Converse Middle,02270305, 2.8, 0.4, 8.9, 83.5, 0.0, 0.0, 4.4, 58.1, 41.9 -1,1,a-cure-i1,2016-17,2.9,22.5,Palmer - Old Mill Pond,02270008, 2.9, 2.3, 12.7, 77.5, 0.0, 0.0, 4.6, 49.2, 50.8 -1,1,a-cure-i1,2016-17,2.4,13.0,Palmer - Palmer High,02270505, 2.9, 1.9, 6.2, 87.0, 0.0, 0.0, 2.1, 53.7, 46.3 -1,1,a-cure-i1,2016-17,1.7,11.799999999999997,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.6, 0.8, 5.7, 88.2, 0.8, 0.0, 3.9, 60.2, 39.8 -8.464516129032258,5,a-cure-i1,2016-17,49.2,93.0,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 5.2, 0.0, 87.5, 7.0, 0.0, 0.3, 0.0, 44.8, 55.2 -1,1,a-cure-i1,2016-17,0.0,19.799999999999997,Peabody - Captain Samuel Brown,02290005, 2.4, 1.6, 13.3, 80.2, 0.0, 0.0, 2.4, 56.1, 43.9 -1,1,a-cure-i1,2016-17,0.0,23.799999999999997,Peabody - Center,02290015, 9.6, 2.6, 9.1, 76.2, 0.0, 0.0, 2.6, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,21.099999999999994,Peabody - J Henry Higgins Middle,02290305, 3.4, 1.6, 14.0, 78.9, 0.0, 0.0, 2.2, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,7.299999999999997,Peabody - John E Burke,02290007, 0.4, 1.5, 2.9, 92.7, 0.0, 0.0, 2.5, 48.4, 51.6 -1,1,a-cure-i1,2016-17,0.0,15.0,Peabody - John E. McCarthy,02290016, 2.3, 2.8, 7.4, 85.0, 0.0, 0.0, 2.5, 56.7, 43.3 -1,1,a-cure-i1,2016-17,1.1,23.799999999999997,Peabody - Peabody Veterans Memorial High,02290510, 4.0, 2.1, 15.7, 76.2, 0.0, 0.0, 1.9, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,14.200000000000003,Peabody - South Memorial,02290035, 2.8, 1.9, 6.7, 85.8, 0.0, 0.0, 2.8, 48.2, 51.8 -1,1,a-cure-i1,2016-17,0.0,24.200000000000003,Peabody - Thomas Carroll,02290010, 4.4, 0.8, 17.1, 75.8, 0.0, 0.0, 1.9, 48.8, 51.2 -1,1,a-cure-i1,2016-17,0.0,5.5,Peabody - West Memorial,02290045, 1.3, 1.3, 2.1, 94.5, 0.0, 0.0, 0.8, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,41.4,Peabody - William A Welch Sr,02290027, 5.9, 0.8, 32.0, 58.6, 0.0, 0.0, 2.7, 50.0, 50.0 -11.017964071856285,5,a-cure-i1,2016-17,11.5,16.700000000000003,Pelham - Pelham Elementary,02300005, 3.0, 1.5, 7.6, 83.3, 0.0, 0.0, 4.5, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,3.9000000000000057,Pembroke - Bryantville Elementary,02310003, 1.0, 0.4, 0.0, 96.1, 0.2, 0.2, 2.1, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,1.5999999999999943,Pembroke - Hobomock Elementary,02310010, 0.9, 0.2, 0.2, 98.4, 0.0, 0.0, 0.2, 57.5, 42.5 -1,1,a-cure-i1,2016-17,0.0,5.700000000000003,Pembroke - North Pembroke Elementary,02310015, 0.3, 1.7, 0.7, 94.3, 0.2, 0.0, 2.8, 51.0, 49.0 -1,1,a-cure-i1,2016-17,0.0,4.200000000000003,Pembroke - Pembroke Community Middle School,02310305, 0.8, 1.2, 1.2, 95.8, 0.0, 0.0, 1.0, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,3.0,Pembroke - Pembroke High School,02310505, 0.9, 0.8, 0.4, 97.0, 0.0, 0.4, 0.4, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,12.099999999999994,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.5, 7.3, 87.9, 0.0, 0.0, 4.4, 57.8, 42.2 -1,1,a-cure-i1,2016-17,1.5,5.200000000000003,Pentucket - Dr John C Page School,07450015, 0.6, 2.3, 1.1, 94.8, 0.0, 0.0, 1.1, 49.4, 50.6 -1,1,a-cure-i1,2016-17,1.0,5.5,Pentucket - Elmer S Bagnall,07450005, 0.6, 0.6, 3.0, 94.5, 0.0, 0.0, 1.4, 54.7, 45.3 -1,1,a-cure-i1,2016-17,2.2,7.400000000000006,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.4, 4.5, 92.6, 0.0, 0.0, 2.5, 53.9, 46.1 -1,1,a-cure-i1,2016-17,0.0,7.599999999999994,Pentucket - Pentucket Regional Middle,07450405, 0.9, 2.8, 2.4, 92.4, 0.0, 0.0, 1.5, 52.9, 47.1 -1,1,a-cure-i1,2016-17,0.0,4.5,Pentucket - Pentucket Regional Sr High,07450505, 0.3, 1.2, 2.3, 95.5, 0.0, 0.0, 0.7, 47.5, 52.5 -1,1,a-cure-i1,2016-17,0.0,8.900000000000006,Petersham - Petersham Center,02340005, 0.0, 0.8, 2.4, 91.1, 0.0, 0.0, 5.6, 53.2, 46.8 -6.373581011351909,5,a-cure-i1,2016-17,38.6,96.9,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 21.2, 0.5, 69.4, 3.1, 1.0, 0.0, 4.7, 51.3, 48.7 -4.862911795961743,4.86,a-cure-i1,2016-17,28.6,94.1,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 16.5, 2.4, 75.3, 5.9, 0.0, 0.0, 0.0, 58.2, 41.8 -3.145685997171145,3.15,a-cure-i1,2016-17,13.899999999999999,70.7,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 29.7, 10.3, 29.1, 29.3, 0.9, 0.2, 0.6, 51.2, 48.8 -6.7236467236467234,5,a-cure-i1,2016-17,29.5,70.2,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 35.1, 11.5, 21.1, 29.8, 1.2, 0.0, 1.2, 45.0, 55.0 -1,1,a-cure-i1,2016-17,0.0,9.700000000000003,Pioneer Valley - Bernardston Elementary,07500006, 0.6, 0.0, 1.7, 90.3, 0.0, 0.0, 7.4, 47.2, 52.8 -1,1,a-cure-i1,2016-17,0.0,4.299999999999997,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 2.7, 95.7, 0.0, 0.0, 1.6, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,7.700000000000003,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 2.6, 5.1, 92.3, 0.0, 0.0, 0.0, 41.0, 59.0 -1,1,a-cure-i1,2016-17,0.0,7.099999999999994,Pioneer Valley - Pioneer Valley Regional,07500505, 2.0, 1.0, 1.7, 92.9, 0.2, 0.0, 2.2, 48.7, 51.3 -1,1,a-cure-i1,2016-17,0.0,1.7999999999999972,Pioneer Valley - Warwick Community School,07500009, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 49.1, 50.9 -12.653846153846153,5,a-cure-i1,2016-17,32.9,41.6,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 4.7, 17.6, 6.2, 58.4, 0.0, 0.0, 13.2, 46.3, 53.5 -11.076923076923075,5,a-cure-i1,2016-17,21.599999999999998,31.200000000000003,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8.3, 2.0, 13.6, 68.8, 0.3, 0.0, 7.0, 32.2, 67.3 -1,1,a-cure-i1,2016-17,4.6,31.599999999999994,Pittsfield - Allendale,02360010, 6.7, 1.4, 12.4, 68.4, 1.1, 0.0, 9.9, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,42.6,Pittsfield - Crosby,02360065, 13.4, 1.8, 16.4, 57.4, 0.2, 0.0, 10.7, 58.5, 41.5 -1,1,a-cure-i1,2016-17,3.4,24.900000000000006,Pittsfield - Egremont,02360035, 7.5, 1.3, 9.8, 75.1, 0.0, 0.0, 6.4, 48.0, 52.0 -1,1,a-cure-i1,2016-17,1.9,35.3,Pittsfield - John T Reid Middle,02360305, 11.9, 0.7, 12.6, 64.7, 0.2, 0.2, 9.7, 49.0, 51.0 -1,1,a-cure-i1,2016-17,0.0,45.8,Pittsfield - Morningside Community School,02360055, 14.6, 1.2, 17.5, 54.2, 0.5, 0.5, 11.5, 49.9, 50.1 -1,1,a-cure-i1,2016-17,4.5,29.200000000000003,Pittsfield - Pittsfield High,02360505, 10.8, 2.1, 11.5, 70.8, 0.1, 0.0, 4.6, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,18.700000000000003,Pittsfield - Robert T. Capeless Elementary School,02360045, 2.9, 0.0, 5.7, 81.3, 0.0, 0.0, 10.0, 45.0, 55.0 -1,1,a-cure-i1,2016-17,2.7,59.9,Pittsfield - Silvio O Conte Community,02360105, 20.2, 0.6, 21.8, 40.1, 1.1, 0.0, 16.3, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.0,21.700000000000003,Pittsfield - Stearns,02360090, 3.8, 1.7, 8.5, 78.3, 0.0, 0.0, 7.7, 53.6, 46.4 -1,1,a-cure-i1,2016-17,1.3,28.200000000000003,Pittsfield - Taconic High,02360510, 12.9, 1.4, 6.9, 71.8, 0.3, 0.0, 6.7, 51.6, 48.4 -1,1,a-cure-i1,2016-17,2.7,30.700000000000003,Pittsfield - Theodore Herberg Middle,02360310, 10.7, 1.7, 11.3, 69.3, 0.2, 0.0, 6.8, 50.6, 49.4 -1,1,a-cure-i1,2016-17,4.7,21.700000000000003,Pittsfield - Williams,02360100, 4.0, 5.0, 5.9, 78.3, 0.0, 0.3, 6.5, 51.4, 48.6 -1,1,a-cure-i1,2016-17,1.1,17.200000000000003,Plainville - Anna Ware Jackson,02380010, 2.0, 5.4, 6.9, 82.8, 0.2, 0.0, 2.7, 52.2, 47.8 -1,1,a-cure-i1,2016-17,1.2,14.400000000000006,Plainville - Beatrice H Wood Elementary,02380005, 1.6, 4.6, 5.6, 85.6, 0.7, 0.0, 2.0, 52.3, 47.7 -5.090909090909092,5,a-cure-i1,2016-17,6.3,19.799999999999997,Plymouth - Cold Spring,02390005, 0.8, 2.4, 10.9, 80.2, 0.0, 0.0, 5.6, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,18.0,Plymouth - Federal Furnace School,02390011, 5.8, 0.7, 7.0, 82.0, 0.0, 0.0, 4.4, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,21.900000000000006,Plymouth - Hedge,02390010, 1.0, 3.8, 7.1, 78.1, 0.0, 0.0, 10.0, 53.3, 46.7 -1,1,a-cure-i1,2016-17,2.9,4.599999999999994,Plymouth - Indian Brook,02390012, 0.5, 0.0, 2.1, 95.4, 0.2, 0.0, 1.8, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,8.200000000000003,Plymouth - Manomet Elementary,02390015, 0.7, 0.0, 3.0, 91.8, 0.0, 0.0, 4.6, 52.6, 47.4 -1,1,a-cure-i1,2016-17,3.0,12.700000000000003,Plymouth - Nathaniel Morton Elementary,02390030, 1.4, 2.2, 4.7, 87.3, 0.2, 0.0, 4.2, 50.8, 49.2 -1,1,a-cure-i1,2016-17,2.8,12.599999999999994,Plymouth - Plymouth Commun Intermediate,02390405, 2.4, 1.7, 3.6, 87.4, 0.0, 0.0, 4.9, 54.3, 45.7 -1,1,a-cure-i1,2016-17,0.0,13.799999999999997,Plymouth - Plymouth Early Childhood Center,02390003, 2.6, 0.9, 3.4, 86.2, 0.0, 0.0, 6.9, 61.2, 38.8 -1,1,a-cure-i1,2016-17,2.2,13.299999999999997,Plymouth - Plymouth North High,02390505, 2.8, 1.5, 5.7, 86.7, 0.2, 0.1, 3.1, 51.1, 48.9 -1,1,a-cure-i1,2016-17,2.1,9.700000000000003,Plymouth - Plymouth South High,02390515, 1.7, 0.9, 2.8, 90.3, 0.8, 0.3, 3.3, 53.3, 46.7 -1,1,a-cure-i1,2016-17,1.8,7.0,Plymouth - Plymouth South Middle,02390305, 0.7, 0.7, 2.2, 93.0, 0.2, 0.0, 3.2, 51.9, 48.1 -1,1,a-cure-i1,2016-17,2.9,11.700000000000003,Plymouth - South Elementary,02390046, 1.6, 0.4, 4.6, 88.3, 0.5, 0.0, 4.6, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,13.400000000000006,Plymouth - West Elementary,02390047, 2.8, 1.0, 5.4, 86.6, 0.3, 0.0, 3.9, 55.5, 44.5 -1,1,a-cure-i1,2016-17,0.0,2.9000000000000057,Plympton - Dennett Elementary,02400010, 0.0, 0.5, 1.0, 97.1, 0.0, 0.0, 1.4, 48.8, 51.2 -5.801596351197262,5,a-cure-i1,2016-17,31.799999999999997,87.7,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 55.0, 8.5, 20.8, 12.3, 0.4, 0.2, 2.8, 50.6, 49.4 -4.516411378555799,4.52,a-cure-i1,2016-17,12.9,45.7,Provincetown - Provincetown Schools,02420020, 20.2, 0.0, 16.3, 54.3, 0.0, 0.0, 9.3, 51.2, 48.8 -13.359223300970877,5,a-cure-i1,2016-17,8.6,10.299999999999997,Quabbin - Hardwick Elementary,07530005, 0.5, 0.0, 8.2, 89.7, 0.5, 0.0, 1.0, 54.6, 45.4 -1,1,a-cure-i1,2016-17,0.0,3.200000000000003,Quabbin - Hubbardston Center,07530010, 0.6, 0.6, 1.6, 96.8, 0.0, 0.0, 0.3, 45.6, 54.4 -34.597402597402585,5,a-cure-i1,2016-17,33.3,15.400000000000006,Quabbin - IB School of Quabbin,07530515, 15.4, 0.0, 0.0, 84.6, 0.0, 0.0, 0.0, 30.8, 69.2 -1,1,a-cure-i1,2016-17,0.0,9.299999999999997,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 7.4, 90.7, 0.0, 0.0, 1.9, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,4.700000000000003,Quabbin - Oakham Center,07530025, 0.0, 0.7, 2.7, 95.3, 0.0, 0.0, 1.3, 45.6, 54.4 -9.806451612903228,5,a-cure-i1,2016-17,5.699999999999999,9.299999999999997,Quabbin - Quabbin Regional High School,07530505, 0.6, 0.9, 4.7, 90.7, 0.0, 0.0, 3.1, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,8.5,Quabbin - Quabbin Regional Middle School,07530405, 0.2, 0.5, 4.5, 91.5, 0.0, 0.0, 3.3, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,9.5,Quabbin - Ruggles Lane,07530030, 0.0, 1.4, 5.2, 90.5, 0.0, 0.3, 2.7, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,11.0,Quaboag Regional - Quaboag Regional High,07780505, 0.5, 0.5, 7.1, 89.0, 0.0, 0.0, 2.7, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,8.400000000000006,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.4, 0.0, 5.9, 91.6, 0.0, 0.0, 2.1, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,10.599999999999994,Quaboag Regional - Warren Elementary,07780005, 0.8, 0.0, 7.2, 89.4, 0.0, 0.0, 2.5, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,9.799999999999997,Quaboag Regional - West Brookfield Elementary,07780010, 0.3, 0.0, 5.2, 90.2, 0.0, 0.0, 4.3, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,65.3,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 7.1, 47.1, 4.7, 34.7, 0.0, 0.6, 5.9, 57.6, 42.4 -1,1,a-cure-i1,2016-17,0.0,21.599999999999994,Quincy - Atherton Hough,02430040, 4.1, 6.0, 6.3, 78.4, 0.0, 0.0, 5.2, 53.7, 46.3 -2.531810766721044,2.53,a-cure-i1,2016-17,9.7,61.3,Quincy - Atlantic Middle,02430305, 4.5, 50.4, 1.9, 38.7, 0.4, 0.2, 3.8, 47.4, 52.6 -1,1,a-cure-i1,2016-17,4.3,42.3,Quincy - Beechwood Knoll Elementary,02430020, 0.6, 38.3, 1.4, 57.7, 0.0, 0.0, 2.0, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,32.3,Quincy - Broad Meadows Middle,02430310, 6.9, 16.3, 4.8, 67.7, 0.5, 0.0, 3.7, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,50.1,Quincy - Central Middle,02430315, 2.8, 41.5, 2.8, 49.9, 0.0, 0.5, 2.5, 52.9, 47.1 -1,1,a-cure-i1,2016-17,4.7,37.1,Quincy - Charles A Bernazzani Elementary,02430025, 1.5, 23.7, 5.0, 62.9, 0.0, 0.0, 7.0, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,65.4,Quincy - Clifford H Marshall Elementary,02430055, 11.3, 41.4, 7.8, 34.6, 0.0, 1.9, 3.0, 52.7, 47.3 -3.3927710843373498,3.39,a-cure-i1,2016-17,17.6,83.0,Quincy - Francis W Parker,02430075, 3.4, 73.7, 3.4, 17.0, 0.0, 0.3, 2.2, 57.3, 42.7 -1,1,a-cure-i1,2016-17,0.0,59.4,Quincy - Lincoln-Hancock Community School,02430035, 11.4, 32.1, 10.2, 40.6, 0.4, 0.4, 4.9, 56.9, 43.1 -1,1,a-cure-i1,2016-17,4.6,34.3,Quincy - Merrymount,02430060, 7.4, 22.3, 2.9, 65.7, 0.3, 0.6, 0.9, 51.1, 48.9 -1,1,a-cure-i1,2016-17,3.7,68.5,Quincy - Montclair,02430065, 2.3, 58.3, 4.2, 31.5, 0.0, 0.7, 3.0, 50.3, 49.7 -2.5679012345679015,2.57,a-cure-i1,2016-17,10.4,64.8,Quincy - North Quincy High,02430510, 2.4, 58.4, 2.9, 35.2, 0.2, 0.0, 0.9, 50.5, 49.4 -1,1,a-cure-i1,2016-17,3.9,59.4,Quincy - Point Webster Middle,02430325, 10.7, 36.4, 8.4, 40.6, 0.3, 0.6, 3.0, 55.8, 44.2 -3.6538461538461537,3.65,a-cure-i1,2016-17,9.5,41.6,Quincy - Quincy High,02430505, 10.4, 20.6, 7.1, 58.4, 0.1, 0.3, 2.9, 53.6, 46.3 -1,1,a-cure-i1,2016-17,4.6,55.6,Quincy - Reay E Sterling Middle,02430320, 13.2, 26.8, 10.6, 44.4, 0.6, 0.6, 3.8, 52.6, 47.4 -1,1,a-cure-i1,2016-17,0.0,60.0,Quincy - Snug Harbor Community School,02430090, 11.7, 36.7, 7.7, 40.0, 0.0, 0.0, 4.0, 54.7, 45.3 -1,1,a-cure-i1,2016-17,2.7,37.3,Quincy - Squantum,02430095, 3.6, 26.6, 3.8, 62.7, 0.3, 0.0, 3.0, 50.9, 49.1 -1,1,a-cure-i1,2016-17,2.0,67.8,Quincy - Wollaston School,02430110, 3.3, 62.1, 1.2, 32.2, 0.0, 0.3, 0.9, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.0,10.5,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 5.3, 89.5, 0.0, 0.0, 5.3, 31.6, 68.4 -6.233766233766231,5,a-cure-i1,2016-17,6.0,15.400000000000006,Ralph C Mahar - Ralph C Mahar Regional,07550505, 2.4, 1.3, 6.8, 84.6, 0.5, 0.0, 4.6, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,22.799999999999997,Ralph C Mahar - The Gateway to College,07550525, 3.8, 0.0, 15.2, 77.2, 0.0, 0.0, 3.8, 36.7, 63.3 -1.0840652446675032,1.08,a-cure-i1,2016-17,5.4,79.7,Randolph - Elizabeth G Lyons Elementary,02440020, 47.6, 12.5, 13.2, 20.3, 0.7, 0.0, 5.7, 53.7, 46.3 -1,1,a-cure-i1,2016-17,3.0,86.0,Randolph - J F Kennedy Elementary,02440018, 54.5, 13.0, 13.2, 14.0, 0.2, 0.4, 4.5, 57.4, 42.6 -3.985697258641239,3.99,a-cure-i1,2016-17,20.9,83.9,Randolph - Margaret L Donovan,02440015, 46.3, 22.8, 8.5, 16.1, 0.2, 0.0, 6.0, 52.8, 47.2 -1.8316498316498318,1.83,a-cure-i1,2016-17,10.2,89.1,Randolph - Martin E Young Elementary,02440040, 47.5, 18.8, 16.6, 10.9, 0.0, 0.0, 6.3, 54.4, 45.6 -5.802615933412604,5,a-cure-i1,2016-17,30.5,84.1,Randolph - Randolph Community Middle,02440410, 47.9, 16.4, 14.4, 15.9, 0.3, 0.2, 4.9, 51.5, 48.5 -4.3508771929824555,4.35,a-cure-i1,2016-17,24.799999999999997,91.2,Randolph - Randolph High,02440505, 57.6, 18.3, 10.9, 8.8, 0.3, 0.4, 3.7, 54.1, 45.9 -1,1,a-cure-i1,2016-17,3.2,11.700000000000003,Reading - Alice M Barrows,02460002, 1.8, 3.9, 1.8, 88.3, 0.3, 0.0, 3.9, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,9.200000000000003,Reading - Arthur W Coolidge Middle,02460305, 1.9, 4.3, 1.1, 90.8, 0.0, 0.0, 1.9, 53.9, 46.1 -1,1,a-cure-i1,2016-17,0.0,8.400000000000006,Reading - Birch Meadow,02460005, 1.6, 2.1, 1.0, 91.6, 0.3, 0.0, 3.4, 54.0, 46.0 -1,1,a-cure-i1,2016-17,0.0,12.799999999999997,Reading - J Warren Killam,02460017, 3.5, 6.4, 0.5, 87.2, 0.0, 0.2, 2.1, 53.4, 46.6 -4.7058823529411775,4.71,a-cure-i1,2016-17,6.5,22.099999999999994,Reading - Joshua Eaton,02460010, 4.5, 6.6, 7.1, 77.9, 0.2, 0.0, 3.8, 52.5, 47.5 -1,1,a-cure-i1,2016-17,2.5,8.900000000000006,Reading - Reading Memorial High,02460505, 2.3, 4.4, 1.0, 91.1, 0.2, 0.0, 1.0, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,18.700000000000003,Reading - RISE PreSchool,02460001, 1.1, 11.0, 5.5, 81.3, 0.0, 0.0, 1.1, 69.2, 30.8 -1,1,a-cure-i1,2016-17,2.7,10.5,Reading - Walter S Parker Middle,02460310, 2.3, 4.5, 2.3, 89.5, 0.3, 0.0, 1.0, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,12.700000000000003,Reading - Wood End Elementary School,02460020, 2.5, 4.4, 3.5, 87.3, 0.0, 0.0, 2.2, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,51.1,Revere - A. C. Whelan Elementary School,02480003, 2.5, 5.5, 40.7, 48.9, 0.0, 0.1, 2.3, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,54.1,Revere - Abraham Lincoln,02480025, 4.8, 4.8, 43.0, 45.9, 0.0, 0.0, 1.5, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,55.4,Revere - Beachmont Veterans Memorial School,02480013, 4.1, 2.2, 47.8, 44.6, 0.0, 0.0, 1.4, 55.4, 44.6 -1,1,a-cure-i1,2016-17,0.0,72.5,Revere - Garfield Elementary School,02480056, 2.0, 6.3, 62.9, 27.5, 0.1, 0.0, 1.2, 48.6, 51.4 -1.28,1.28,a-cure-i1,2016-17,5.4,67.5,Revere - Garfield Middle School,02480057, 3.1, 6.8, 55.1, 32.5, 0.4, 0.0, 2.0, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,57.7,Revere - Paul Revere,02480050, 3.6, 6.5, 42.5, 42.3, 0.2, 0.0, 4.9, 49.2, 50.8 -1.8781575037147105,1.88,a-cure-i1,2016-17,7.9,67.3,Revere - Revere High,02480505, 4.7, 6.2, 54.1, 32.7, 0.2, 0.0, 2.2, 49.5, 50.5 -1,1,a-cure-i1,2016-17,2.5,54.3,Revere - Rumney Marsh Academy,02480014, 4.4, 4.9, 41.3, 45.7, 1.0, 0.2, 2.5, 54.8, 45.2 -1,1,a-cure-i1,2016-17,0.0,73.6,Revere - Seacoast School,02480520, 7.4, 3.3, 57.9, 26.4, 0.0, 0.0, 5.0, 66.9, 33.1 -1,1,a-cure-i1,2016-17,0.0,69.4,Revere - Staff Sargent James J. Hill Elementary School,02480035, 4.5, 3.0, 58.8, 30.6, 0.3, 0.1, 2.7, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,66.1,Revere - Susan B. Anthony Middle School,02480305, 4.1, 4.7, 54.6, 33.9, 0.5, 0.0, 2.2, 46.0, 54.0 -1,1,a-cure-i1,2016-17,0.0,11.0,Richmond - Richmond Consolidated,02490005, 2.9, 0.0, 5.2, 89.0, 0.0, 0.0, 2.9, 44.5, 55.5 -11.230769230769226,5,a-cure-i1,2016-17,7.300000000000001,10.400000000000006,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.1, 3.0, 2.1, 89.6, 0.5, 0.0, 3.8, 48.1, 51.9 -1,1,a-cure-i1,2016-17,0.0,10.799999999999997,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 3.8, 2.8, 89.2, 0.3, 0.0, 3.5, 41.7, 58.3 -1,1,a-cure-i1,2016-17,3.5,8.599999999999994,Rochester - Rochester Memorial,02500005, 1.5, 0.0, 1.5, 91.4, 0.0, 0.0, 5.6, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,20.5,Rockland - Jefferson Elementary School,02510060, 3.9, 1.5, 11.7, 79.5, 0.0, 0.0, 3.3, 47.6, 52.4 -1,1,a-cure-i1,2016-17,1.9,20.900000000000006,Rockland - John W Rogers Middle,02510305, 5.0, 1.2, 10.1, 79.1, 0.0, 0.0, 4.6, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,22.5,Rockland - Memorial Park,02510020, 4.4, 1.1, 12.4, 77.5, 0.0, 0.0, 4.7, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,27.0,Rockland - R Stewart Esten,02510025, 7.6, 1.3, 15.1, 73.0, 0.0, 0.0, 3.0, 55.3, 44.7 -1,1,a-cure-i1,2016-17,2.4,17.400000000000006,Rockland - Rockland Senior High,02510505, 4.7, 0.3, 8.1, 82.6, 0.0, 0.0, 4.3, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,5.700000000000003,Rockport - Rockport Elementary,02520005, 0.0, 2.2, 1.5, 94.3, 0.0, 0.0, 2.0, 53.1, 46.9 -1,1,a-cure-i1,2016-17,4.2,7.5,Rockport - Rockport High,02520510, 1.4, 1.0, 2.4, 92.5, 0.0, 0.0, 2.7, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,7.900000000000006,Rockport - Rockport Middle,02520305, 0.9, 1.3, 0.9, 92.1, 0.0, 0.0, 4.8, 52.0, 48.0 -26.91764705882353,5,a-cure-i1,2016-17,14.3,8.5,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 3.4, 91.5, 0.0, 0.0, 5.1, 45.8, 54.2 -5.816717019133938,5,a-cure-i1,2016-17,36.1,99.3,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 56.4, 0.8, 40.7, 0.7, 0.1, 0.2, 1.1, 50.0, 50.0 -4.475816993464052,4.48,a-cure-i1,2016-17,21.4,76.5,Sabis International Charter (District) - Sabis International Charter School,04410505, 29.8, 4.1, 37.6, 23.5, 0.0, 0.0, 5.0, 50.1, 49.9 -4.247139588100687,4.25,a-cure-i1,2016-17,11.600000000000001,43.7,Salem - Bates,02580003, 8.3, 1.2, 27.5, 56.3, 0.0, 0.0, 6.7, 49.2, 50.8 -2.6036745406824147,2.6,a-cure-i1,2016-17,6.2,38.1,Salem - Carlton,02580015, 4.6, 1.3, 26.4, 61.9, 0.0, 0.0, 5.9, 47.3, 52.7 -4.363636363636363,4.36,a-cure-i1,2016-17,12.3,45.1,Salem - Collins Middle,02580305, 5.7, 2.8, 33.0, 54.9, 0.0, 0.0, 3.7, 52.7, 47.3 -2.088235294117647,2.09,a-cure-i1,2016-17,7.1,54.4,Salem - Horace Mann Laboratory,02580030, 7.7, 0.7, 39.4, 45.6, 0.0, 0.0, 6.6, 52.3, 47.7 -3.7306733167082293,3.73,a-cure-i1,2016-17,18.7,80.2,Salem - Nathaniel Bowditch,02580025, 5.9, 2.7, 69.1, 19.8, 0.2, 0.0, 2.3, 53.4, 46.6 -7.908883826879271,5,a-cure-i1,2016-17,21.7,43.9,Salem - New Liberty Innovation School,02580510, 7.3, 0.0, 36.6, 56.1, 0.0, 0.0, 0.0, 41.5, 58.5 -1,1,a-cure-i1,2016-17,0.0,54.3,Salem - Salem Early Childhood,02580001, 13.0, 1.1, 29.3, 45.7, 0.0, 0.0, 10.9, 51.1, 48.9 -1.936842105263158,1.94,a-cure-i1,2016-17,6.9,57.0,Salem - Salem High,02580505, 7.7, 2.3, 43.0, 43.0, 0.2, 0.0, 3.9, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,46.2,Salem - Salem Prep High School,02580515, 7.7, 0.0, 38.5, 53.8, 0.0, 0.0, 0.0, 61.5, 38.5 -2.327944572748268,2.33,a-cure-i1,2016-17,6.3,43.3,Salem - Saltonstall School,02580050, 3.5, 2.4, 30.4, 56.7, 0.0, 0.0, 7.0, 47.8, 52.2 -1,1,a-cure-i1,2016-17,1.0,39.5,Salem - Witchcraft Heights,02580070, 5.8, 5.2, 24.6, 60.5, 0.0, 0.2, 3.5, 54.9, 45.1 -6.163187855787476,5,a-cure-i1,2016-17,20.3,52.7,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 8.8, 5.4, 36.7, 47.3, 0.0, 0.0, 1.8, 45.5, 54.5 -8.946236559139788,5,a-cure-i1,2016-17,5.2,9.299999999999997,Sandwich - Forestdale School,02610002, 1.2, 2.6, 4.3, 90.7, 0.2, 0.2, 0.8, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Sandwich - Oak Ridge,02610025, 1.2, 1.8, 1.8, 93.8, 0.8, 0.0, 0.7, 49.1, 50.9 -1,1,a-cure-i1,2016-17,2.5,5.099999999999994,Sandwich - Sandwich High,02610505, 1.1, 2.3, 1.4, 94.9, 0.1, 0.0, 0.1, 51.9, 48.1 -15.225806451612897,5,a-cure-i1,2016-17,5.9,6.200000000000003,Sandwich - Sandwich STEM Academy,02610305, 1.3, 2.6, 0.6, 93.8, 1.1, 0.2, 0.4, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,20.900000000000006,Saugus - Ballard School,02620001, 5.5, 1.8, 7.3, 79.1, 0.9, 0.0, 5.5, 57.3, 42.7 -3.52542372881356,3.53,a-cure-i1,2016-17,5.2,23.599999999999994,Saugus - Belmonte Saugus Middle,02620305, 4.8, 3.2, 13.7, 76.4, 0.5, 0.2, 1.4, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,27.200000000000003,Saugus - Douglas Waybright,02620067, 2.9, 7.3, 13.1, 72.8, 0.5, 0.0, 3.4, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,30.200000000000003,Saugus - Lynnhurst,02620040, 2.6, 9.8, 17.0, 69.8, 0.0, 0.4, 0.4, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,33.2,Saugus - Oaklandvale,02620050, 4.7, 4.2, 18.7, 66.8, 0.5, 0.9, 4.2, 54.7, 45.3 -1,1,a-cure-i1,2016-17,3.8,24.599999999999994,Saugus - Saugus High,02620505, 5.5, 5.9, 12.4, 75.4, 0.4, 0.0, 0.4, 50.3, 49.7 -1,1,a-cure-i1,2016-17,2.9,28.099999999999994,Saugus - Veterans Memorial,02620065, 3.7, 4.1, 18.7, 71.9, 0.2, 0.0, 1.4, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,6.099999999999994,Savoy - Emma L Miller Elementary School,02630010, 2.0, 0.0, 4.1, 93.9, 0.0, 0.0, 0.0, 46.9, 53.1 -1,1,a-cure-i1,2016-17,0.0,5.200000000000003,Scituate - Cushing Elementary,02640007, 2.2, 1.1, 0.8, 94.8, 0.3, 0.0, 0.8, 54.8, 45.2 -1,1,a-cure-i1,2016-17,0.0,6.700000000000003,Scituate - Gates Intermediate School,02640305, 3.5, 1.7, 0.4, 93.3, 0.0, 0.0, 1.2, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,6.099999999999994,Scituate - Hatherly Elementary,02640010, 2.6, 1.3, 1.0, 93.9, 0.0, 0.0, 1.3, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,5.799999999999997,Scituate - Jenkins Elementary School,02640015, 2.2, 0.9, 1.1, 94.2, 0.0, 0.0, 1.7, 49.2, 50.8 -1,1,a-cure-i1,2016-17,3.5,5.700000000000003,Scituate - Scituate High School,02640505, 2.6, 1.3, 0.2, 94.3, 0.0, 0.1, 1.4, 47.3, 52.7 -1,1,a-cure-i1,2016-17,0.0,8.400000000000006,Scituate - Wampatuck Elementary,02640020, 3.5, 0.9, 1.4, 91.6, 0.0, 0.0, 2.6, 54.3, 45.7 -7.724137931034486,5,a-cure-i1,2016-17,5.6,11.599999999999994,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.3, 2.7, 4.8, 88.4, 0.2, 0.0, 2.5, 49.7, 50.1 -1,1,a-cure-i1,2016-17,4.5,16.200000000000003,Seekonk - George R Martin,02650007, 2.1, 2.7, 7.1, 83.8, 0.0, 0.0, 4.3, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,11.299999999999997,Seekonk - Mildred Aitken School,02650015, 2.2, 3.1, 3.1, 88.7, 0.0, 0.0, 2.9, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.0,9.400000000000006,Seekonk - Seekonk High,02650505, 1.9, 2.4, 2.9, 90.6, 0.0, 0.0, 2.2, 46.8, 53.2 -3.012987012987013,3.01,a-cure-i1,2016-17,17.400000000000002,92.4,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 47.1, 0.1, 41.5, 7.6, 0.0, 0.0, 3.6, 52.9, 47.1 -1,1,a-cure-i1,2016-17,1.2,40.8,Sharon - Cottage Street,02660005, 3.0, 27.2, 3.0, 59.2, 0.2, 0.2, 7.0, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,42.2,Sharon - East Elementary,02660010, 4.2, 26.7, 6.8, 57.8, 0.0, 0.0, 4.6, 50.5, 49.5 -1,1,a-cure-i1,2016-17,3.3,45.9,Sharon - Heights Elementary,02660015, 2.1, 33.3, 3.0, 54.1, 0.2, 0.2, 7.2, 52.2, 47.8 -1,1,a-cure-i1,2016-17,3.6,37.1,Sharon - Sharon High,02660505, 8.1, 22.1, 3.8, 62.9, 0.0, 0.0, 3.0, 51.2, 48.8 -1,1,a-cure-i1,2016-17,1.9,41.5,Sharon - Sharon Middle,02660305, 3.9, 28.0, 5.0, 58.5, 0.1, 0.2, 4.2, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,8.5,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.5, 0.7, 4.3, 91.5, 0.3, 0.0, 1.6, 57.5, 42.5 -1,1,a-cure-i1,2016-17,2.7,19.099999999999994,Sherborn - Pine Hill,02690010, 1.9, 8.6, 2.3, 80.9, 0.0, 0.0, 6.3, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,63.2,Shrewsbury - Beal School,02710005, 0.9, 52.5, 6.0, 36.8, 0.0, 0.0, 3.8, 55.3, 44.7 -1,1,a-cure-i1,2016-17,0.0,52.6,Shrewsbury - Calvin Coolidge,02710015, 2.7, 30.3, 14.2, 47.4, 0.2, 0.0, 5.1, 51.1, 48.9 -1,1,a-cure-i1,2016-17,2.8,59.8,Shrewsbury - Floral Street School,02710020, 1.5, 46.3, 7.8, 40.2, 0.4, 0.0, 3.9, 50.1, 49.9 -2.4522613065326633,2.45,a-cure-i1,2016-17,6.1,39.8,Shrewsbury - Oak Middle School,02710030, 1.8, 26.1, 8.1, 60.2, 0.3, 0.0, 3.5, 50.9, 49.1 -2.1735849056603773,2.17,a-cure-i1,2016-17,7.2,53.0,Shrewsbury - Parker Road Preschool,02710040, 2.2, 35.8, 9.5, 47.0, 1.7, 0.0, 3.9, 52.6, 47.4 -1,1,a-cure-i1,2016-17,3.4,40.2,Shrewsbury - Sherwood Middle School,02710305, 2.8, 27.9, 6.3, 59.8, 0.2, 0.0, 3.0, 50.5, 49.5 -3.1610942249240117,3.16,a-cure-i1,2016-17,6.5,32.900000000000006,Shrewsbury - Shrewsbury Sr High,02710505, 1.9, 20.6, 7.5, 67.1, 0.2, 0.1, 2.6, 46.7, 53.1 -1,1,a-cure-i1,2016-17,0.0,35.5,Shrewsbury - Spring Street,02710035, 1.1, 23.4, 5.4, 64.5, 0.0, 0.0, 5.6, 49.2, 50.8 -2.738255033557047,2.74,a-cure-i1,2016-17,5.1,29.799999999999997,Shrewsbury - Walter J Paton,02710025, 0.5, 17.2, 7.7, 70.2, 0.3, 0.0, 4.1, 55.5, 44.5 -7.736263736263735,5,a-cure-i1,2016-17,8.8,18.200000000000003,Shutesbury - Shutesbury Elementary,02720005, 0.8, 0.0, 6.6, 81.8, 0.8, 0.0, 9.9, 42.1, 57.9 -1,1,a-cure-i1,2016-17,0.0,25.700000000000003,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 2.8, 2.5, 18.7, 74.3, 0.2, 0.0, 1.6, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,4.099999999999994,Silver Lake - Silver Lake Regional High,07600505, 1.6, 0.7, 1.0, 95.9, 0.0, 0.2, 0.5, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,3.700000000000003,Silver Lake - Silver Lake Regional Middle School,07600405, 1.2, 1.2, 0.7, 96.3, 0.0, 0.0, 0.5, 51.8, 48.2 -4.240963855421685,4.24,a-cure-i1,2016-17,6.6,24.900000000000006,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 4.3, 2.2, 16.8, 75.1, 0.0, 0.0, 1.6, 47.6, 52.4 -1,1,a-cure-i1,2016-17,0.0,6.400000000000006,Somerset - Chace Street,02730005, 1.5, 0.0, 2.7, 93.6, 0.0, 0.0, 2.2, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,8.099999999999994,Somerset - North Elementary,02730008, 1.6, 1.2, 3.6, 91.9, 0.0, 0.0, 1.8, 49.0, 51.0 -1,1,a-cure-i1,2016-17,0.0,7.299999999999997,Somerset - Somerset Middle School,02730305, 1.0, 0.2, 3.4, 92.7, 0.2, 0.0, 2.6, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,9.400000000000006,Somerset - South,02730015, 0.8, 0.4, 5.3, 90.6, 0.0, 0.0, 3.0, 49.2, 50.8 -1,1,a-cure-i1,2016-17,3.4,7.5,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 1.4, 0.5, 2.5, 92.5, 0.0, 0.0, 3.1, 46.8, 53.2 -2.95593220338983,2.96,a-cure-i1,2016-17,10.899999999999999,59.0,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.7, 10.3, 39.4, 41.0, 0.0, 0.0, 3.7, 51.1, 48.9 -2.977777777777778,2.98,a-cure-i1,2016-17,13.4,72.0,Somerville - Arthur D Healey,02740075, 13.8, 6.8, 48.4, 28.0, 0.0, 0.0, 3.0, 49.5, 50.5 -1,1,a-cure-i1,2016-17,0.0,28.0,Somerville - Benjamin G Brown,02740015, 0.0, 9.7, 8.5, 72.0, 0.4, 0.0, 9.3, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,60.5,Somerville - Capuano Early Childhood Center,02740005, 5.4, 9.6, 41.3, 39.5, 0.0, 0.0, 4.2, 61.7, 38.3 -5.877149877149877,5,a-cure-i1,2016-17,29.900000000000002,81.4,Somerville - E Somerville Community,02740111, 4.4, 3.2, 71.3, 18.6, 0.0, 0.1, 2.3, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,67.2,Somerville - Full Circle High School,02740510, 23.0, 1.6, 39.3, 32.8, 0.0, 0.0, 3.3, 62.3, 37.7 -2.4583333333333335,2.46,a-cure-i1,2016-17,5.9,38.4,Somerville - John F Kennedy,02740083, 10.2, 5.5, 17.4, 61.6, 0.0, 0.0, 5.3, 54.6, 45.4 -1.8834285714285715,1.88,a-cure-i1,2016-17,10.3,87.5,Somerville - Next Wave Junior High,02740410, 18.8, 0.0, 68.8, 12.5, 0.0, 0.0, 0.0, 68.8, 31.3 -4.972661870503598,4.97,a-cure-i1,2016-17,21.6,69.5,Somerville - Somerville High,02740505, 13.6, 9.4, 45.8, 30.5, 0.0, 0.0, 0.7, 54.7, 45.3 -1,1,a-cure-i1,2016-17,4.5,44.3,Somerville - West Somerville Neighborhood,02740115, 13.8, 4.0, 20.7, 55.7, 0.0, 0.0, 5.8, 53.8, 46.2 -2.8015564202334633,2.8,a-cure-i1,2016-17,13.5,77.1,Somerville - Winter Hill Community,02740120, 12.6, 8.2, 53.5, 22.9, 0.0, 0.0, 2.8, 55.0, 45.0 -1,1,a-cure-i1,2016-17,0.0,20.5,South Hadley - Michael E. Smith Middle School,02780305, 2.0, 1.8, 12.5, 79.5, 0.0, 0.0, 4.2, 49.6, 50.4 -1,1,a-cure-i1,2016-17,4.6,20.599999999999994,South Hadley - Mosier,02780020, 1.4, 1.6, 15.7, 79.4, 0.2, 0.0, 1.6, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,18.299999999999997,South Hadley - Plains Elementary,02780015, 1.2, 2.6, 11.0, 81.7, 0.3, 0.0, 3.2, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,13.200000000000003,South Hadley - South Hadley High,02780505, 3.1, 1.7, 7.2, 86.8, 0.0, 0.4, 0.9, 50.3, 49.7 -1,1,a-cure-i1,2016-17,2.8,56.5,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 5.9, 0.1, 46.3, 43.5, 0.8, 0.0, 3.3, 56.9, 43.1 -1,1,a-cure-i1,2016-17,4.9,37.5,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 25.1, 4.6, 2.8, 62.5, 0.3, 0.1, 4.6, 50.5, 49.5 -1,1,a-cure-i1,2016-17,1.8,7.200000000000003,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.8, 0.5, 3.3, 92.8, 0.0, 0.2, 2.5, 66.4, 33.6 -1,1,a-cure-i1,2016-17,0.0,9.200000000000003,Southampton - William E Norris,02750005, 0.4, 1.5, 4.4, 90.8, 0.2, 0.4, 2.3, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,32.7,Southborough - Albert S. Woodward Memorial School,02760050, 1.6, 18.4, 6.9, 67.3, 0.0, 0.0, 5.7, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,28.5,Southborough - Margaret A Neary,02760020, 0.3, 16.1, 6.4, 71.5, 0.3, 0.0, 5.4, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,28.0,Southborough - Mary E Finn School,02760008, 1.7, 15.7, 4.8, 72.0, 0.3, 0.0, 5.5, 53.6, 46.4 -1,1,a-cure-i1,2016-17,3.1,22.400000000000006,Southborough - P Brent Trottier,02760305, 0.4, 14.4, 4.4, 77.6, 0.0, 0.0, 3.3, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,54.9,Southbridge - Charlton Street,02770005, 3.1, 1.4, 46.6, 45.1, 0.2, 0.0, 3.6, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,56.3,Southbridge - Eastford Road,02770010, 2.0, 2.4, 51.6, 43.7, 0.4, 0.0, 0.0, 48.8, 51.2 -1,1,a-cure-i1,2016-17,2.6,57.6,Southbridge - Southbridge High School,02770515, 1.8, 0.8, 54.2, 42.4, 0.2, 0.0, 0.6, 52.1, 47.9 -1,1,a-cure-i1,2016-17,4.8,62.3,Southbridge - Southbridge Middle School,02770315, 1.4, 1.0, 57.8, 37.7, 0.6, 0.0, 1.6, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,58.7,Southbridge - West Street,02770020, 1.4, 2.3, 52.2, 41.3, 0.7, 0.0, 2.1, 49.4, 50.6 -2.67741935483871,2.68,a-cure-i1,2016-17,8.3,49.6,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 32.6, 1.4, 11.7, 50.4, 0.1, 0.0, 3.9, 51.2, 48.8 -12.061538461538463,5,a-cure-i1,2016-17,9.8,13.0,Southern Berkshire - Mt Everett Regional,07650505, 0.7, 0.0, 6.8, 87.0, 0.0, 0.0, 5.5, 51.0, 49.0 -33.43589743589745,5,a-cure-i1,2016-17,16.3,7.799999999999997,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 1.1, 92.2, 3.3, 0.0, 3.3, 50.0, 50.0 -29.506493506493495,5,a-cure-i1,2016-17,14.2,7.700000000000003,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 7.7, 92.3, 0.0, 0.0, 0.0, 69.2, 30.8 -1,1,a-cure-i1,2016-17,1.5,14.200000000000003,Southern Berkshire - Undermountain,07650035, 1.2, 0.0, 7.6, 85.8, 0.3, 0.0, 5.2, 53.0, 47.0 -1,1,a-cure-i1,2016-17,0.9,8.700000000000003,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.5, 0.4, 6.7, 91.3, 0.1, 0.0, 0.9, 58.0, 42.0 -1,1,a-cure-i1,2016-17,0.0,7.299999999999997,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.0, 0.0, 1.2, 92.7, 1.2, 0.0, 4.9, 52.4, 47.6 -1,1,a-cure-i1,2016-17,4.0,11.200000000000003,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 2.3, 1.3, 5.9, 88.8, 0.0, 0.0, 1.8, 48.7, 51.3 -13.999999999999995,5,a-cure-i1,2016-17,6.3,7.200000000000003,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.9, 0.4, 3.8, 92.8, 0.0, 0.0, 1.1, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,12.099999999999994,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 1.5, 0.6, 7.7, 87.9, 0.0, 0.0, 2.4, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,16.0,Spencer-E Brookfield - David Prouty High,07670505, 1.2, 1.2, 8.6, 84.0, 0.0, 0.0, 5.0, 54.4, 45.6 -1,1,a-cure-i1,2016-17,0.0,12.700000000000003,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.9, 0.5, 6.1, 87.3, 0.5, 0.0, 4.7, 54.2, 45.8 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,Spencer-E Brookfield - Knox Trail Middle School,07670415, 1.0, 0.5, 9.7, 85.3, 0.2, 0.0, 3.4, 54.8, 45.2 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,Spencer-E Brookfield - Wire Village School,07670040, 0.9, 1.4, 8.8, 85.3, 0.0, 0.0, 3.5, 49.3, 50.7 -3.0934699103713195,3.09,a-cure-i1,2016-17,15.100000000000001,78.1,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 25.3, 0.2, 48.4, 21.9, 0.0, 0.0, 4.1, 47.0, 53.0 -2.1882057716436636,2.19,a-cure-i1,2016-17,10.9,79.7,Springfield - Alice B Beal Elementary,02810175, 13.8, 9.1, 54.0, 20.3, 0.0, 0.0, 2.9, 50.7, 49.3 -1.3381123058542412,1.34,a-cure-i1,2016-17,7.0,83.7,Springfield - Arthur T Talmadge,02810165, 30.0, 1.9, 48.1, 16.3, 0.4, 0.0, 3.3, 53.0, 47.0 -4.124064171122995,4.12,a-cure-i1,2016-17,24.1,93.5,Springfield - Balliet Middle School,02810360, 19.6, 0.0, 73.9, 6.5, 0.0, 0.0, 0.0, 69.6, 30.4 -4.582995951417004,4.58,a-cure-i1,2016-17,28.3,98.8,Springfield - Brightwood,02810025, 16.4, 0.0, 82.4, 1.2, 0.0, 0.0, 0.0, 52.0, 48.0 -2.6202661207778912,2.62,a-cure-i1,2016-17,16.0,97.7,Springfield - Chestnut Accelerated Middle School (North),02810365, 8.7, 0.3, 88.3, 2.3, 0.3, 0.0, 0.0, 54.0, 46.0 -6.222222222222221,5,a-cure-i1,2016-17,37.8,97.2,Springfield - Chestnut Accelerated Middle School (South),02810366, 12.9, 0.3, 83.9, 2.8, 0.0, 0.0, 0.0, 49.5, 50.5 -7.393103448275863,5,a-cure-i1,2016-17,40.2,87.0,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 21.1, 2.8, 60.4, 13.0, 0.4, 0.4, 2.1, 43.9, 56.1 -4.380090497737557,4.38,a-cure-i1,2016-17,24.200000000000003,88.4,Springfield - Conservatory of the Arts,02810475, 25.8, 0.0, 61.4, 11.6, 0.0, 0.0, 1.2, 24.0, 76.0 -1.2875739644970416,1.29,a-cure-i1,2016-17,6.800000000000001,84.5,Springfield - Daniel B Brunton,02810035, 20.3, 1.5, 60.8, 15.5, 0.0, 0.2, 1.7, 49.3, 50.7 -1.7997750281214846,1.8,a-cure-i1,2016-17,10.0,88.9,Springfield - Early Childhood Education Center,02810001, 19.4, 1.4, 65.3, 11.1, 0.0, 0.0, 2.8, 63.9, 36.1 -1,1,a-cure-i1,2016-17,2.6,91.1,Springfield - Edward P. Boland School,02810010, 10.0, 1.3, 78.0, 8.9, 0.1, 0.0, 1.6, 56.3, 43.7 -4.40174672489083,4.4,a-cure-i1,2016-17,25.2,91.6,Springfield - Elias Brookings,02810030, 24.0, 0.3, 64.9, 8.4, 0.8, 0.0, 1.6, 51.7, 48.3 -1.5374868004223867,1.54,a-cure-i1,2016-17,9.100000000000001,94.7,Springfield - Forest Park Middle,02810325, 17.8, 7.8, 67.8, 5.3, 0.1, 0.1, 1.0, 48.9, 51.1 -3.2424607961399277,3.24,a-cure-i1,2016-17,16.8,82.9,Springfield - Frank H Freedman,02810075, 25.1, 1.0, 55.2, 17.1, 0.0, 0.0, 1.6, 55.9, 44.1 -2.0626506024096383,2.06,a-cure-i1,2016-17,10.7,83.0,Springfield - Frederick Harris,02810080, 19.7, 3.2, 56.9, 17.0, 0.0, 0.0, 3.2, 51.2, 48.8 -22.727272727272727,5,a-cure-i1,2016-17,100.0,70.4,Springfield - Gateway to College at Holyoke Community College,02810575, 22.2, 0.0, 48.1, 29.6, 0.0, 0.0, 0.0, 37.0, 63.0 -18.285714285714285,5,a-cure-i1,2016-17,100.0,87.5,Springfield - Gateway to College at Springfield Technical Community College,02810580, 20.8, 0.0, 64.6, 12.5, 0.0, 0.0, 2.1, 39.6, 60.4 -2.5560165975103732,2.56,a-cure-i1,2016-17,15.4,96.4,Springfield - German Gerena Community School,02810195, 14.5, 0.7, 80.7, 3.6, 0.0, 0.0, 0.5, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,85.7,Springfield - Glenwood,02810065, 14.0, 2.3, 66.8, 14.3, 0.0, 0.0, 2.7, 53.8, 46.2 -2.8703030303030306,2.87,a-cure-i1,2016-17,14.8,82.5,Springfield - Glickman Elementary,02810068, 22.8, 3.6, 53.8, 17.5, 0.0, 0.0, 2.2, 50.1, 49.9 -6.169934640522876,5,a-cure-i1,2016-17,35.4,91.8,Springfield - High School Of Commerce,02810510, 19.8, 1.5, 69.3, 8.2, 0.0, 0.0, 1.1, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,87.6,Springfield - Hiram L Dorman,02810050, 27.9, 1.2, 57.6, 12.4, 0.0, 0.0, 0.9, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,90.8,Springfield - Homer Street,02810085, 24.1, 1.6, 64.2, 9.2, 0.0, 0.0, 0.9, 52.5, 47.5 -1.649289099526066,1.65,a-cure-i1,2016-17,8.7,84.4,Springfield - Indian Orchard Elementary,02810100, 17.0, 1.7, 62.6, 15.6, 0.0, 0.0, 3.2, 52.9, 47.1 -5.665573770491802,5,a-cure-i1,2016-17,32.39999999999999,91.5,Springfield - John F Kennedy Middle,02810328, 19.1, 0.7, 70.6, 8.5, 0.2, 0.0, 0.9, 54.9, 45.1 -2.6319526627218934,2.63,a-cure-i1,2016-17,13.9,84.5,Springfield - John J Duggan Middle,02810320, 27.4, 2.5, 53.6, 15.5, 0.0, 0.0, 1.0, 58.3, 41.7 -1.6100628930817609,1.61,a-cure-i1,2016-17,9.6,95.4,Springfield - Kensington International School,02810110, 21.2, 5.2, 67.6, 4.6, 0.0, 0.0, 1.3, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,85.4,Springfield - Liberty,02810115, 8.7, 2.1, 74.0, 14.6, 0.0, 0.0, 0.7, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,61.5,Springfield - Liberty Preparatory Academy,02810560, 15.4, 7.7, 38.5, 38.5, 0.0, 0.0, 0.0, 69.2, 30.8 -2.677685950413223,2.68,a-cure-i1,2016-17,16.2,96.8,Springfield - Lincoln,02810120, 10.1, 0.2, 85.6, 3.2, 0.0, 0.0, 0.7, 57.4, 42.6 -5.107551487414187,5,a-cure-i1,2016-17,27.9,87.4,Springfield - M Marcus Kiley Middle,02810330, 21.2, 3.0, 62.4, 12.6, 0.2, 0.0, 0.8, 53.3, 46.7 -1.3092659446450061,1.31,a-cure-i1,2016-17,6.8,83.1,Springfield - Margaret C Ells,02810060, 26.5, 0.5, 53.0, 16.9, 0.5, 0.0, 2.7, 58.4, 41.6 -1,1,a-cure-i1,2016-17,0.0,76.8,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 14.5, 7.2, 52.1, 23.2, 0.0, 0.3, 2.7, 47.3, 52.7 -1.452972972972973,1.45,a-cure-i1,2016-17,8.4,92.5,Springfield - Mary M Lynch,02810140, 18.0, 0.0, 73.3, 7.5, 0.0, 0.0, 1.1, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,86.4,Springfield - Mary M Walsh,02810155, 14.3, 1.0, 68.8, 13.6, 0.0, 0.0, 2.3, 55.2, 44.8 -3.924528301886793,3.92,a-cure-i1,2016-17,20.8,84.8,Springfield - Mary O Pottenger,02810145, 11.4, 2.0, 69.7, 15.2, 0.2, 0.0, 1.3, 51.6, 48.4 -1.3991769547325101,1.4,a-cure-i1,2016-17,8.5,97.2,Springfield - Milton Bradley School,02810023, 16.7, 0.0, 80.0, 2.8, 0.0, 0.0, 0.5, 52.3, 47.7 -5.608421052631578,5,a-cure-i1,2016-17,33.3,95.0,Springfield - Rebecca M Johnson,02810055, 28.0, 0.3, 65.2, 5.0, 0.1, 0.0, 1.4, 51.1, 48.9 -3.1670480549199085,3.17,a-cure-i1,2016-17,17.3,87.4,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 19.5, 1.6, 65.5, 12.6, 0.0, 0.0, 0.9, 45.8, 54.2 -2.1454545454545455,2.15,a-cure-i1,2016-17,11.8,88.0,Springfield - Samuel Bowles,02810020, 16.8, 0.3, 68.5, 12.0, 0.0, 0.3, 2.1, 51.4, 48.6 -4.78688524590164,4.79,a-cure-i1,2016-17,29.200000000000003,97.6,Springfield - South End Middle School,02810355, 14.2, 0.4, 81.7, 2.4, 0.0, 0.0, 1.2, 49.6, 50.4 -3.566265060240964,3.57,a-cure-i1,2016-17,18.5,83.0,Springfield - Springfield Central High,02810500, 24.1, 6.0, 51.5, 17.0, 0.0, 0.1, 1.1, 51.8, 48.2 -6.5504587155963305,5,a-cure-i1,2016-17,35.7,87.2,Springfield - Springfield High School,02810570, 25.6, 0.0, 59.8, 12.8, 0.0, 0.0, 1.7, 68.4, 31.6 -4.130777903043968,4.13,a-cure-i1,2016-17,22.9,88.7,Springfield - Springfield High School of Science and Technology,02810530, 17.3, 2.3, 68.4, 11.3, 0.0, 0.1, 0.7, 58.8, 41.2 -5.690140845070422,5,a-cure-i1,2016-17,30.3,85.2,Springfield - Springfield Public Day Elementary School,02810005, 25.9, 0.0, 59.3, 14.8, 0.0, 0.0, 0.0, 81.5, 18.5 -6.59847660500544,5,a-cure-i1,2016-17,37.9,91.9,Springfield - Springfield Public Day High School,02810550, 23.4, 0.0, 66.7, 8.1, 0.0, 0.0, 1.8, 69.4, 30.6 -2.902575587905935,2.9,a-cure-i1,2016-17,16.2,89.3,Springfield - Springfield Public Day Middle School,02810345, 25.0, 0.0, 64.3, 10.7, 0.0, 0.0, 0.0, 87.5, 12.5 -8.202764976958525,5,a-cure-i1,2016-17,44.5,86.8,Springfield - STEM Middle Academy,02810350, 25.7, 1.4, 59.7, 13.2, 0.0, 0.0, 0.0, 64.9, 35.1 -3.7909407665505226,3.79,a-cure-i1,2016-17,20.4,86.1,Springfield - Sumner Avenue,02810160, 17.0, 4.7, 61.3, 13.9, 0.2, 0.0, 3.0, 52.3, 47.7 -2.745308310991957,2.75,a-cure-i1,2016-17,12.799999999999999,74.6,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 25.2, 1.4, 47.0, 25.4, 0.0, 0.1, 0.8, 51.6, 48.4 -2.3322033898305086,2.33,a-cure-i1,2016-17,12.9,88.5,Springfield - Thomas M Balliet,02810015, 23.8, 1.2, 61.0, 11.5, 0.0, 0.0, 2.5, 51.1, 48.9 -3.7420765027322402,3.74,a-cure-i1,2016-17,21.4,91.5,Springfield - Van Sickle Academy,02810480, 19.1, 1.8, 69.1, 8.5, 0.0, 0.0, 1.5, 52.7, 47.3 -5.217787913340935,5,a-cure-i1,2016-17,28.6,87.7,Springfield - Van Sickle International Baccalaureate,02810485, 11.8, 2.5, 72.9, 12.3, 0.0, 0.0, 0.5, 55.6, 44.4 -1,1,a-cure-i1,2016-17,0.0,83.9,Springfield - Warner,02810180, 16.5, 2.9, 60.6, 16.1, 0.7, 0.4, 2.9, 53.4, 46.6 -1.7857948139797066,1.79,a-cure-i1,2016-17,9.899999999999999,88.7,Springfield - Washington,02810185, 19.6, 7.1, 58.3, 11.3, 0.0, 0.2, 3.5, 54.6, 45.4 -1.4194961664841186,1.42,a-cure-i1,2016-17,8.100000000000001,91.3,Springfield - White Street,02810190, 16.3, 4.9, 68.8, 8.7, 0.0, 0.0, 1.3, 51.2, 48.8 -3.777319587628866,3.78,a-cure-i1,2016-17,22.9,97.0,Springfield - William N. DeBerry,02810045, 16.1, 0.0, 79.5, 3.0, 0.3, 0.0, 1.0, 49.0, 51.0 -17.03940362087327,5,a-cure-i1,2016-17,100.0,93.9,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 24.5, 1.8, 64.4, 6.1, 0.0, 0.0, 3.1, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,14.700000000000003,Stoneham - Colonial Park,02840005, 1.5, 3.8, 5.3, 85.3, 0.0, 0.0, 4.1, 57.1, 42.9 -1,1,a-cure-i1,2016-17,0.0,17.900000000000006,Stoneham - Robin Hood,02840025, 0.8, 7.1, 8.2, 82.1, 0.3, 0.0, 1.6, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,20.099999999999994,Stoneham - South,02840030, 2.7, 3.6, 7.8, 79.9, 1.2, 0.0, 4.8, 48.5, 51.5 -1,1,a-cure-i1,2016-17,3.6,17.0,Stoneham - Stoneham Central Middle School,02840405, 1.6, 4.5, 7.1, 83.0, 0.0, 0.1, 3.7, 50.6, 49.4 -1,1,a-cure-i1,2016-17,1.9,13.700000000000003,Stoneham - Stoneham High,02840505, 2.8, 3.5, 5.2, 86.3, 0.1, 0.0, 2.1, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,43.3,Stoughton - Edwin A Jones Early Childhood Center,02850012, 27.8, 1.1, 8.9, 56.7, 0.0, 0.0, 5.6, 62.2, 37.8 -1,1,a-cure-i1,2016-17,0.0,36.7,Stoughton - Helen Hansen Elementary,02850010, 18.1, 2.4, 10.9, 63.3, 0.0, 1.2, 4.0, 48.8, 51.2 -1,1,a-cure-i1,2016-17,0.0,33.099999999999994,Stoughton - Joseph H Gibbons,02850025, 12.1, 6.1, 7.2, 66.9, 0.0, 0.0, 7.7, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,51.3,Stoughton - Joseph R Dawe Jr Elementary,02850014, 26.5, 9.8, 10.6, 48.7, 0.0, 0.5, 4.0, 56.9, 43.1 -1,1,a-cure-i1,2016-17,0.0,42.8,Stoughton - O'Donnell Middle School,02850405, 22.8, 6.6, 8.9, 57.2, 0.1, 0.1, 4.1, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,44.7,Stoughton - South Elementary,02850015, 19.6, 10.6, 6.3, 55.3, 0.4, 2.0, 5.9, 49.4, 50.6 -1,1,a-cure-i1,2016-17,2.2,35.5,Stoughton - Stoughton High,02850505, 22.2, 5.5, 5.9, 64.5, 0.0, 0.1, 1.8, 51.8, 48.2 -1,1,a-cure-i1,2016-17,4.1,50.7,Stoughton - West Elementary,02850020, 21.8, 4.1, 16.8, 49.3, 0.6, 0.3, 7.2, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,10.799999999999997,Sturbridge - Burgess Elementary,02870005, 0.5, 1.4, 4.6, 89.2, 0.3, 0.0, 3.9, 56.1, 43.9 -7.243243243243245,5,a-cure-i1,2016-17,6.7,14.799999999999997,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 1.7, 2.6, 4.4, 85.2, 0.6, 0.1, 5.3, 40.9, 59.1 -7.144654088050313,5,a-cure-i1,2016-17,7.1000000000000005,15.900000000000006,Sudbury - Ephraim Curtis Middle,02880305, 2.3, 6.6, 3.1, 84.1, 0.0, 0.1, 3.9, 51.5, 48.5 -1,1,a-cure-i1,2016-17,4.8,24.900000000000006,Sudbury - General John Nixon Elementary,02880025, 5.3, 9.0, 2.2, 75.1, 0.0, 0.3, 8.1, 49.6, 50.4 -1,1,a-cure-i1,2016-17,3.9,25.299999999999997,Sudbury - Israel Loring School,02880015, 2.1, 11.9, 3.9, 74.7, 0.8, 1.0, 5.5, 53.2, 46.8 -1,1,a-cure-i1,2016-17,1.3,20.200000000000003,Sudbury - Josiah Haynes,02880010, 3.1, 8.8, 1.6, 79.8, 0.0, 0.0, 6.7, 55.6, 44.4 -1,1,a-cure-i1,2016-17,0.0,24.900000000000006,Sudbury - Peter Noyes,02880030, 2.9, 10.1, 4.0, 75.1, 0.0, 0.0, 7.9, 51.9, 48.1 -1,1,a-cure-i1,2016-17,0.0,35.0,Sunderland - Sunderland Elementary,02890005, 5.8, 8.2, 10.1, 65.0, 0.0, 0.0, 10.9, 59.1, 40.9 -1,1,a-cure-i1,2016-17,0.0,7.900000000000006,Sutton - Sutton Early Learning,02900003, 0.9, 1.3, 1.3, 92.1, 0.0, 0.0, 4.4, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,10.900000000000006,Sutton - Sutton Elementary,02900005, 0.9, 2.1, 2.1, 89.1, 0.0, 0.3, 5.4, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,7.5,Sutton - Sutton High School,02900510, 0.2, 0.9, 1.6, 92.5, 0.2, 0.0, 4.5, 49.1, 50.9 -1,1,a-cure-i1,2016-17,0.0,8.799999999999997,Sutton - Sutton Middle School,02900305, 1.1, 1.9, 1.6, 91.2, 0.0, 0.0, 4.3, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,16.5,Swampscott - Clarke,02910005, 1.5, 3.4, 9.2, 83.5, 1.0, 0.0, 1.5, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,19.900000000000006,Swampscott - Hadley,02910010, 3.4, 3.4, 9.4, 80.1, 0.0, 0.0, 3.7, 53.5, 46.5 -1,1,a-cure-i1,2016-17,0.0,13.700000000000003,Swampscott - Stanley,02910020, 0.7, 1.4, 7.9, 86.3, 0.4, 0.0, 3.2, 50.7, 49.3 -7.264864864864865,5,a-cure-i1,2016-17,8.4,18.5,Swampscott - Swampscott High,02910505, 4.6, 2.1, 9.7, 81.5, 0.0, 0.4, 1.6, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,20.200000000000003,Swampscott - Swampscott Middle,02910305, 3.9, 2.7, 11.4, 79.8, 0.3, 0.0, 1.9, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,2.299999999999997,Swansea - Elizabeth S Brown,02920006, 0.3, 1.3, 0.7, 97.7, 0.0, 0.0, 0.0, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,2.5,Swansea - Gardner,02920015, 0.4, 0.4, 0.8, 97.5, 0.4, 0.0, 0.4, 54.3, 45.7 -1,1,a-cure-i1,2016-17,2.2,6.099999999999994,Swansea - Joseph Case High,02920505, 1.7, 1.3, 1.7, 93.9, 0.2, 0.0, 1.1, 52.7, 47.3 -1,1,a-cure-i1,2016-17,3.0,4.200000000000003,Swansea - Joseph Case Jr High,02920305, 0.6, 0.6, 1.4, 95.8, 0.0, 0.0, 1.6, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,7.299999999999997,Swansea - Joseph G Luther,02920020, 0.9, 0.5, 3.6, 92.7, 0.5, 0.0, 1.8, 52.3, 47.7 -1,1,a-cure-i1,2016-17,0.0,8.700000000000003,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 1.5, 1.5, 91.3, 0.4, 0.0, 5.3, 54.0, 46.0 -1,1,a-cure-i1,2016-17,0.0,9.099999999999994,Tantasqua - Tantasqua Regional Jr High,07700405, 0.7, 1.2, 4.5, 90.9, 0.0, 0.0, 2.7, 47.1, 52.9 -1,1,a-cure-i1,2016-17,3.0,8.799999999999997,Tantasqua - Tantasqua Regional Sr High,07700505, 0.5, 1.4, 4.1, 91.2, 0.1, 0.0, 2.6, 43.6, 56.4 -1,1,a-cure-i1,2016-17,0.0,8.5,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.4, 5.0, 91.5, 0.6, 0.0, 2.2, 61.4, 38.6 -1,1,a-cure-i1,2016-17,0.0,25.400000000000006,Taunton - Benjamin Friedman Middle,02930315, 8.5, 1.0, 10.8, 74.6, 0.5, 0.2, 4.4, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,24.5,Taunton - East Taunton Elementary,02930010, 11.7, 0.5, 8.2, 75.5, 0.5, 0.0, 3.6, 49.6, 50.4 -1,1,a-cure-i1,2016-17,0.0,21.299999999999997,Taunton - Edmund Hatch Bennett,02930007, 8.7, 0.9, 9.0, 78.7, 0.3, 0.0, 2.4, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,29.799999999999997,Taunton - Edward F. Leddy Preschool,02930005, 11.9, 2.4, 11.9, 70.2, 0.0, 0.3, 3.3, 57.1, 42.9 -1,1,a-cure-i1,2016-17,0.0,42.6,Taunton - Elizabeth Pole,02930027, 17.7, 1.6, 14.9, 57.4, 0.0, 0.3, 8.0, 50.2, 49.8 -3.729847494553377,3.73,a-cure-i1,2016-17,10.7,45.9,Taunton - H H Galligan,02930057, 22.0, 0.8, 17.1, 54.1, 0.4, 1.2, 4.5, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,31.5,Taunton - Hopewell,02930035, 13.4, 0.3, 9.6, 68.5, 0.3, 0.0, 7.9, 47.9, 52.1 -1,1,a-cure-i1,2016-17,2.8,44.6,Taunton - John F Parker Middle,02930305, 19.2, 2.0, 15.2, 55.4, 0.4, 0.2, 7.5, 48.3, 51.7 -7.111111111111111,5,a-cure-i1,2016-17,8.0,18.0,Taunton - Joseph C Chamberlain,02930008, 7.2, 1.5, 4.3, 82.0, 0.2, 0.0, 4.7, 52.7, 47.3 -1,1,a-cure-i1,2016-17,3.5,30.299999999999997,Taunton - Joseph H Martin,02930042, 14.0, 1.7, 10.5, 69.7, 0.3, 0.0, 3.9, 52.5, 47.5 -2.3324808184143224,2.33,a-cure-i1,2016-17,5.7,39.1,Taunton - Mulcahey Elementary School,02930015, 18.0, 0.6, 15.1, 60.9, 0.0, 0.2, 5.1, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,36.0,Taunton - Taunton Alternative High School,02930525, 15.7, 0.0, 14.6, 64.0, 0.0, 0.0, 5.6, 62.9, 37.1 -2.4922118380062313,2.49,a-cure-i1,2016-17,5.000000000000001,32.099999999999994,Taunton - Taunton High,02930505, 14.5, 1.8, 11.8, 67.9, 0.1, 0.3, 3.6, 50.1, 49.8 -1,1,a-cure-i1,2016-17,0.0,29.5,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 6.3, 3.3, 12.2, 70.5, 0.4, 0.2, 7.1, 43.4, 56.6 -1,1,a-cure-i1,2016-17,0.0,9.200000000000003,Tewksbury - Heath-Brook,02950010, 1.8, 2.4, 3.0, 90.8, 0.0, 0.0, 2.1, 49.7, 50.3 -1,1,a-cure-i1,2016-17,2.6,8.400000000000006,Tewksbury - John F. Ryan,02950023, 2.4, 3.0, 1.7, 91.6, 0.4, 0.2, 0.7, 53.9, 46.1 -1,1,a-cure-i1,2016-17,2.2,9.599999999999994,Tewksbury - John W. Wynn Middle,02950305, 2.8, 3.2, 2.3, 90.4, 0.0, 0.0, 1.3, 45.2, 54.8 -1,1,a-cure-i1,2016-17,3.4,13.299999999999997,Tewksbury - L F Dewing,02950001, 4.1, 3.4, 5.3, 86.7, 0.0, 0.2, 0.4, 52.8, 47.2 -1,1,a-cure-i1,2016-17,0.0,7.5,Tewksbury - Louise Davy Trahan,02950025, 0.8, 3.5, 2.0, 92.5, 0.0, 0.0, 1.2, 45.9, 54.1 -1,1,a-cure-i1,2016-17,0.0,12.5,Tewksbury - North Street,02950020, 5.8, 3.1, 1.9, 87.5, 0.0, 0.0, 1.6, 57.6, 42.4 -1,1,a-cure-i1,2016-17,1.6,7.400000000000006,Tewksbury - Tewksbury Memorial High,02950505, 1.5, 2.6, 2.9, 92.6, 0.0, 0.2, 0.3, 52.8, 47.2 -4.696517412935323,4.7,a-cure-i1,2016-17,11.8,40.2,Tisbury - Tisbury Elementary,02960005, 3.1, 0.9, 26.2, 59.8, 2.2, 0.0, 7.8, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,7.799999999999997,Topsfield - Proctor Elementary,02980005, 0.8, 1.6, 2.9, 92.2, 0.0, 0.0, 2.5, 47.5, 52.5 -1,1,a-cure-i1,2016-17,2.7,6.799999999999997,Topsfield - Steward Elementary,02980010, 0.3, 1.6, 1.8, 93.2, 0.8, 0.0, 2.4, 50.8, 49.2 -1,1,a-cure-i1,2016-17,1.3,10.799999999999997,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.4, 0.7, 4.6, 89.2, 0.4, 0.2, 4.5, 55.0, 44.9 -1,1,a-cure-i1,2016-17,0.0,5.200000000000003,Triton - Newbury Elementary,07730020, 0.7, 1.6, 1.6, 94.8, 0.0, 0.5, 0.9, 55.2, 44.8 -1,1,a-cure-i1,2016-17,0.0,5.099999999999994,Triton - Pine Grove,07730025, 0.4, 0.6, 1.1, 94.9, 0.2, 0.0, 2.8, 50.7, 49.0 -1,1,a-cure-i1,2016-17,0.0,14.400000000000006,Triton - Salisbury Elementary,07730015, 2.6, 3.6, 4.3, 85.6, 0.0, 0.6, 3.2, 50.2, 49.8 -16.000000000000007,5,a-cure-i1,2016-17,5.3,5.299999999999997,Triton - Triton Regional High School,07730505, 0.8, 1.7, 2.2, 94.7, 0.0, 0.0, 0.6, 47.9, 52.1 -1,1,a-cure-i1,2016-17,0.0,8.400000000000006,Triton - Triton Regional Middle School,07730405, 1.0, 2.0, 2.8, 91.6, 0.5, 0.3, 1.8, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,29.299999999999997,Truro - Truro Central,03000005, 6.0, 0.0, 12.1, 70.7, 0.0, 0.0, 11.2, 44.8, 55.2 -1,1,a-cure-i1,2016-17,0.0,18.900000000000006,Tyngsborough - Tyngsborough Elementary,03010020, 4.1, 6.7, 5.1, 81.1, 0.1, 0.0, 2.9, 53.6, 46.4 -1,1,a-cure-i1,2016-17,0.0,14.799999999999997,Tyngsborough - Tyngsborough High School,03010505, 2.2, 6.1, 3.6, 85.2, 0.0, 0.0, 3.0, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.9,13.799999999999997,Tyngsborough - Tyngsborough Middle,03010305, 1.7, 5.0, 3.6, 86.2, 0.2, 0.0, 3.3, 48.7, 51.3 -3.1492063492063496,3.15,a-cure-i1,2016-17,18.6,94.5,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 46.8, 5.7, 39.4, 5.5, 0.2, 0.4, 1.9, 55.7, 44.3 -5.031344792719919,5,a-cure-i1,2016-17,31.099999999999998,98.9,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 56.7, 1.6, 38.0, 1.1, 0.4, 0.0, 2.2, 49.2, 50.8 -1,1,a-cure-i1,2016-17,0.0,13.599999999999994,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 2.3, 2.3, 86.4, 0.0, 0.0, 9.1, 56.8, 43.2 -1,1,a-cure-i1,2016-17,3.1,18.900000000000006,Up-Island Regional - West Tisbury Elementary,07740020, 2.9, 0.9, 6.0, 81.1, 4.0, 0.0, 5.2, 55.0, 45.0 -1,1,a-cure-i1,2016-17,1.7,12.400000000000006,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 4.4, 1.7, 1.4, 87.6, 0.6, 0.0, 4.4, 61.8, 38.2 -1,1,a-cure-i1,2016-17,0.0,26.099999999999994,Uxbridge - Gateway to College,03040515, 0.0, 2.2, 17.4, 73.9, 2.2, 2.2, 2.2, 41.3, 58.7 -1,1,a-cure-i1,2016-17,0.0,10.0,Uxbridge - McCloskey Middle School,03040015, 1.2, 1.9, 4.8, 90.0, 0.0, 0.0, 2.1, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,6.900000000000006,Uxbridge - Taft Early Learning Center,03040005, 1.0, 0.8, 2.7, 93.1, 0.0, 0.0, 2.3, 55.3, 44.7 -1,1,a-cure-i1,2016-17,0.0,8.099999999999994,Uxbridge - Uxbridge High,03040505, 1.5, 1.5, 2.7, 91.9, 0.6, 0.2, 1.7, 53.5, 46.5 -1,1,a-cure-i1,2016-17,0.0,8.799999999999997,Uxbridge - Whitin Elementary School,03040020, 0.7, 1.7, 3.6, 91.2, 1.0, 0.0, 1.7, 52.8, 47.0 -2.8638799571275455,2.86,a-cure-i1,2016-17,16.7,93.3,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 19.5, 1.3, 70.9, 6.7, 0.0, 0.0, 1.6, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,10.700000000000003,Wachusett - Central Tree Middle,07750310, 1.2, 2.2, 3.2, 89.3, 0.0, 0.0, 4.0, 55.2, 44.8 -1,1,a-cure-i1,2016-17,3.6,7.700000000000003,Wachusett - Chocksett Middle School,07750315, 1.3, 1.6, 3.7, 92.3, 0.0, 0.0, 1.1, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,12.299999999999997,Wachusett - Davis Hill Elementary,07750018, 2.9, 1.8, 5.3, 87.7, 0.0, 0.0, 2.4, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,14.799999999999997,Wachusett - Dawson,07750020, 3.0, 4.3, 4.5, 85.2, 0.0, 0.0, 3.0, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,16.0,Wachusett - Early Childhood Center,07750001, 1.3, 4.7, 6.7, 84.0, 0.7, 0.7, 2.0, 55.3, 44.7 -1,1,a-cure-i1,2016-17,0.0,13.599999999999994,Wachusett - Glenwood Elementary School,07750060, 1.4, 3.1, 5.6, 86.4, 0.0, 0.0, 3.6, 48.3, 51.7 -1,1,a-cure-i1,2016-17,0.0,12.200000000000003,Wachusett - Houghton Elementary,07750027, 1.3, 2.6, 5.9, 87.8, 0.0, 0.0, 2.6, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,13.799999999999997,Wachusett - Leroy E.Mayo,07750032, 2.0, 5.7, 4.9, 86.2, 0.0, 0.0, 1.2, 53.3, 46.7 -1,1,a-cure-i1,2016-17,1.9,14.099999999999994,Wachusett - Mountview Middle,07750305, 2.3, 4.2, 4.7, 85.9, 0.2, 0.0, 2.6, 50.6, 49.4 -1,1,a-cure-i1,2016-17,0.0,10.200000000000003,Wachusett - Naquag Elementary School,07750005, 1.9, 0.6, 4.3, 89.8, 0.9, 0.3, 2.2, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,13.700000000000003,Wachusett - Paxton Center,07750040, 2.0, 2.2, 8.7, 86.3, 0.0, 0.0, 0.8, 53.7, 46.3 -1,1,a-cure-i1,2016-17,4.3,7.299999999999997,Wachusett - Thomas Prince,07750045, 0.5, 1.3, 3.8, 92.7, 0.0, 0.0, 1.8, 47.8, 52.2 -1,1,a-cure-i1,2016-17,0.8,11.099999999999994,Wachusett - Wachusett Regional High,07750505, 1.9, 3.2, 4.1, 88.9, 0.0, 0.2, 1.7, 47.3, 52.7 -1,1,a-cure-i1,2016-17,0.0,14.0,Wakefield - Dolbeare,03050005, 0.7, 2.5, 7.0, 86.0, 0.2, 0.0, 3.6, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,12.400000000000006,Wakefield - Early Childhood Center at the Doyle School,03050001, 1.6, 3.9, 3.1, 87.6, 0.0, 1.6, 2.3, 51.2, 48.8 -1,1,a-cure-i1,2016-17,3.3,13.700000000000003,Wakefield - Galvin Middle School,03050310, 3.2, 2.8, 5.6, 86.3, 0.1, 0.1, 1.9, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,17.5,Wakefield - Greenwood,03050020, 1.8, 5.4, 5.4, 82.5, 0.0, 0.0, 4.9, 48.9, 51.1 -1,1,a-cure-i1,2016-17,4.0,11.400000000000006,Wakefield - Wakefield Memorial High,03050505, 3.1, 3.1, 2.9, 88.6, 0.2, 0.3, 2.0, 47.9, 52.1 -1,1,a-cure-i1,2016-17,0.0,11.900000000000006,Wakefield - Walton,03050040, 2.5, 2.5, 3.5, 88.1, 0.0, 0.0, 3.5, 53.2, 46.8 -1,1,a-cure-i1,2016-17,4.2,21.0,Wakefield - Woodville School,03050015, 1.8, 4.1, 10.6, 79.0, 0.2, 0.0, 4.3, 52.9, 46.8 -1,1,a-cure-i1,2016-17,0.0,9.799999999999997,Wales - Wales Elementary,03060005, 0.6, 0.6, 3.7, 90.2, 1.2, 0.0, 3.7, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,14.0,Walpole - Bird Middle,03070305, 3.3, 2.3, 5.8, 86.0, 0.8, 0.0, 1.7, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,20.599999999999994,Walpole - Boyden,03070010, 6.9, 5.0, 6.3, 79.4, 0.8, 0.0, 1.6, 48.1, 51.9 -1,1,a-cure-i1,2016-17,0.0,32.900000000000006,Walpole - Daniel Feeney Preschool Center,03070002, 6.1, 14.6, 8.5, 67.1, 0.0, 0.0, 3.7, 54.9, 45.1 -1,1,a-cure-i1,2016-17,0.0,19.299999999999997,Walpole - Eleanor N Johnson Middle,03070310, 3.1, 10.3, 3.6, 80.7, 0.0, 0.0, 2.2, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,18.200000000000003,Walpole - Elm Street School,03070005, 2.1, 8.4, 5.1, 81.8, 0.2, 0.0, 2.3, 55.4, 44.6 -1,1,a-cure-i1,2016-17,0.0,22.400000000000006,Walpole - Fisher,03070015, 3.5, 11.4, 3.9, 77.6, 0.0, 0.0, 3.5, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,14.900000000000006,Walpole - Old Post Road,03070018, 2.5, 2.9, 7.0, 85.1, 0.7, 0.0, 1.8, 50.9, 49.1 -1,1,a-cure-i1,2016-17,1.4,13.299999999999997,Walpole - Walpole High,03070505, 4.2, 3.5, 4.5, 86.7, 0.2, 0.0, 0.9, 48.9, 51.1 -1,1,a-cure-i1,2016-17,0.0,39.8,Waltham - Douglas MacArthur Elementary School,03080032, 10.9, 8.6, 16.0, 60.2, 0.0, 0.0, 4.4, 52.8, 47.2 -1,1,a-cure-i1,2016-17,3.3,83.1,Waltham - Henry Whittemore Elementary School,03080065, 4.9, 3.4, 73.5, 16.9, 0.0, 0.0, 1.3, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,44.6,Waltham - James Fitzgerald Elementary School,03080060, 7.6, 5.8, 27.5, 55.4, 0.0, 0.0, 3.8, 46.9, 53.1 -2.546236559139785,2.55,a-cure-i1,2016-17,7.4,46.5,Waltham - John F Kennedy Middle,03080404, 10.9, 5.7, 28.3, 53.5, 0.0, 0.0, 1.6, 52.3, 47.7 -1,1,a-cure-i1,2016-17,3.6,57.0,Waltham - John W. McDevitt Middle School,03080415, 8.4, 3.1, 42.0, 43.0, 0.0, 0.2, 3.4, 52.4, 47.6 -1,1,a-cure-i1,2016-17,2.5,47.2,Waltham - Northeast Elementary School,03080040, 10.3, 8.4, 24.5, 52.8, 0.6, 0.0, 3.4, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,59.2,Waltham - Thomas R Plympton Elementary School,03080050, 11.8, 5.0, 38.7, 40.8, 0.0, 0.0, 3.6, 54.4, 45.6 -19.062857142857144,5,a-cure-i1,2016-17,83.4,70.0,Waltham - Waltham Public Schools Dual Language Program,03080001, 2.5, 2.5, 62.5, 30.0, 0.0, 0.0, 2.5, 47.5, 52.5 -1,1,a-cure-i1,2016-17,2.4000000000000004,57.8,Waltham - Waltham Sr High,03080505, 11.6, 5.0, 38.3, 42.2, 0.2, 0.3, 2.3, 54.1, 45.9 -1,1,a-cure-i1,2016-17,4.6,63.0,Waltham - William F. Stanley Elementary School,03080005, 7.0, 8.1, 46.2, 37.0, 0.0, 0.0, 1.8, 54.9, 45.1 -1,1,a-cure-i1,2016-17,0.0,15.200000000000003,Ware - Stanley M Koziol Elementary School,03090020, 1.2, 0.5, 7.7, 84.8, 0.0, 0.0, 5.8, 53.4, 46.6 -5.925925925925925,5,a-cure-i1,2016-17,6.0,16.200000000000003,Ware - Ware Junior/Senior High School,03090505, 2.5, 1.1, 8.8, 83.8, 0.4, 0.2, 3.2, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,15.400000000000006,Ware - Ware Middle School,03090305, 2.1, 0.6, 7.1, 84.6, 0.0, 0.3, 5.3, 48.1, 51.9 -1,1,a-cure-i1,2016-17,0.0,26.799999999999997,Wareham - John William Decas,03100003, 6.1, 1.0, 6.6, 73.2, 0.8, 0.0, 12.3, 50.7, 49.3 -1,1,a-cure-i1,2016-17,2.9,25.0,Wareham - Minot Forest,03100017, 7.1, 1.2, 5.7, 75.0, 1.2, 0.0, 9.9, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,27.900000000000006,Wareham - Wareham Cooperative Alternative School,03100315, 9.8, 0.0, 8.2, 72.1, 1.6, 0.0, 8.2, 60.7, 39.3 -3.850622406639005,3.85,a-cure-i1,2016-17,5.8,24.099999999999994,Wareham - Wareham Middle,03100305, 7.2, 0.7, 6.6, 75.9, 1.3, 0.1, 8.2, 52.7, 47.3 -3.8518518518518516,3.85,a-cure-i1,2016-17,7.800000000000001,32.400000000000006,Wareham - Wareham Senior High,03100505, 9.7, 1.5, 9.8, 67.6, 0.8, 0.2, 10.4, 51.0, 49.0 -1,1,a-cure-i1,2016-17,0.0,28.400000000000006,Watertown - Cunniff,03140015, 4.4, 5.7, 15.2, 71.6, 0.0, 0.0, 3.0, 53.7, 46.3 -1,1,a-cure-i1,2016-17,2.4,29.5,Watertown - Hosmer,03140020, 3.0, 7.7, 12.2, 70.5, 0.3, 0.0, 6.3, 50.9, 49.1 -1,1,a-cure-i1,2016-17,0.0,28.900000000000006,Watertown - James Russell Lowell,03140025, 2.1, 8.8, 11.3, 71.1, 0.2, 0.0, 6.5, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,26.400000000000006,Watertown - Watertown High,03140505, 3.2, 6.5, 13.0, 73.6, 0.8, 0.2, 2.9, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,33.599999999999994,Watertown - Watertown Middle,03140305, 4.9, 9.5, 13.7, 66.4, 0.7, 0.2, 4.6, 50.1, 49.9 -1,1,a-cure-i1,2016-17,3.2,28.400000000000006,Wayland - Claypit Hill School,03150005, 5.9, 11.9, 4.3, 71.6, 0.0, 0.6, 5.8, 48.4, 51.6 -4.215568862275449,4.22,a-cure-i1,2016-17,8.8,33.400000000000006,Wayland - Happy Hollow School,03150015, 7.0, 15.8, 4.1, 66.6, 0.0, 0.3, 6.2, 54.1, 45.9 -3.943661971830985,3.94,a-cure-i1,2016-17,7.0,28.400000000000006,Wayland - Loker School,03150020, 3.9, 15.6, 3.9, 71.6, 0.0, 0.4, 4.7, 53.3, 46.7 -2.756756756756757,2.76,a-cure-i1,2016-17,5.1,29.599999999999994,Wayland - Wayland High School,03150505, 4.8, 15.0, 5.4, 70.4, 0.0, 0.1, 4.2, 53.1, 46.9 -6.161194029850746,5,a-cure-i1,2016-17,12.899999999999999,33.5,Wayland - Wayland Middle School,03150305, 5.2, 17.5, 3.9, 66.5, 0.0, 0.2, 6.8, 48.3, 51.7 -1,1,a-cure-i1,2016-17,2.9,26.900000000000006,Webster - Bartlett High School,03160505, 4.3, 2.9, 14.7, 73.1, 0.0, 0.0, 5.0, 54.2, 45.8 -1,1,a-cure-i1,2016-17,0.0,37.6,Webster - Park Avenue Elementary,03160015, 3.9, 1.3, 26.2, 62.4, 0.2, 0.1, 5.9, 52.9, 47.1 -1,1,a-cure-i1,2016-17,0.0,36.9,Webster - Webster Middle School,03160315, 5.7, 1.9, 22.3, 63.1, 0.2, 0.5, 6.4, 45.9, 54.1 -9.363636363636365,5,a-cure-i1,2016-17,10.299999999999999,17.599999999999994,Wellesley - Ernest F Upham,03170050, 2.7, 10.4, 1.8, 82.4, 0.0, 0.0, 2.7, 53.6, 46.4 -8.306382978723404,5,a-cure-i1,2016-17,12.2,23.5,Wellesley - Hunnewell,03170025, 4.8, 6.0, 2.8, 76.5, 0.0, 0.0, 10.0, 47.8, 52.2 -1,1,a-cure-i1,2016-17,1.5,37.0,Wellesley - John D Hardy,03170020, 3.9, 20.8, 6.2, 63.0, 0.0, 0.0, 6.2, 47.4, 52.6 -1,1,a-cure-i1,2016-17,0.0,41.5,Wellesley - Joseph E Fiske,03170015, 4.1, 22.7, 8.2, 58.5, 0.0, 0.0, 6.6, 49.9, 50.1 -1,1,a-cure-i1,2016-17,4.9,19.299999999999997,Wellesley - Katharine Lee Bates,03170005, 3.7, 6.3, 3.2, 80.7, 0.0, 0.0, 6.1, 45.1, 54.9 -1,1,a-cure-i1,2016-17,0.0,34.0,Wellesley - Schofield,03170045, 5.7, 14.7, 7.1, 66.0, 0.0, 0.0, 6.5, 47.6, 52.4 -1,1,a-cure-i1,2016-17,4.7,33.400000000000006,Wellesley - Sprague Elementary School,03170048, 3.8, 13.3, 5.1, 66.6, 0.0, 0.0, 11.2, 53.6, 46.4 -4.947791164658633,4.95,a-cure-i1,2016-17,7.699999999999999,24.900000000000006,Wellesley - Wellesley Middle,03170305, 3.3, 10.9, 4.5, 75.1, 0.0, 0.0, 6.1, 51.5, 48.5 -4.950943396226415,4.95,a-cure-i1,2016-17,8.2,26.5,Wellesley - Wellesley Sr High,03170505, 6.1, 11.6, 4.7, 73.5, 0.0, 0.1, 4.0, 48.2, 51.8 -8.213333333333333,5,a-cure-i1,2016-17,7.7,15.0,Wellfleet - Wellfleet Elementary,03180005, 1.8, 0.0, 8.0, 85.0, 0.0, 0.0, 5.3, 47.8, 52.2 -1,1,a-cure-i1,2016-17,0.0,18.400000000000006,West Boylston - Major Edwards Elementary,03220005, 1.5, 1.2, 11.4, 81.6, 0.0, 0.0, 4.2, 51.0, 49.0 -8.639999999999999,5,a-cure-i1,2016-17,8.1,15.0,West Boylston - West Boylston Junior/Senior High,03220505, 1.6, 0.8, 9.2, 85.0, 0.2, 0.0, 3.3, 47.6, 52.4 -1,1,a-cure-i1,2016-17,0.0,11.5,West Bridgewater - Howard School,03230305, 3.0, 0.4, 5.2, 88.5, 0.4, 0.0, 2.6, 51.1, 48.9 -1,1,a-cure-i1,2016-17,0.0,11.700000000000003,West Bridgewater - Rose L Macdonald,03230003, 3.9, 1.6, 1.9, 88.3, 0.0, 0.4, 3.9, 47.1, 52.9 -1,1,a-cure-i1,2016-17,0.0,14.900000000000006,West Bridgewater - Spring Street School,03230005, 1.4, 2.1, 7.1, 85.1, 0.0, 0.0, 4.3, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,9.200000000000003,West Bridgewater - West Bridgewater Junior/Senior,03230505, 3.1, 1.3, 2.4, 90.8, 0.2, 0.2, 2.1, 44.9, 55.1 -1,1,a-cure-i1,2016-17,0.0,21.400000000000006,West Springfield - 21st Century Skills Academy,03320515, 7.1, 0.0, 14.3, 78.6, 0.0, 0.0, 0.0, 78.6, 21.4 -1,1,a-cure-i1,2016-17,0.0,35.0,West Springfield - Cowing Early Childhood,03320001, 3.3, 11.7, 18.3, 65.0, 0.0, 0.0, 1.7, 50.0, 50.0 -1,1,a-cure-i1,2016-17,0.0,25.200000000000003,West Springfield - John Ashley,03320005, 2.7, 2.2, 17.7, 74.8, 0.0, 0.0, 2.7, 53.5, 46.5 -1,1,a-cure-i1,2016-17,4.4,25.5,West Springfield - John R Fausey,03320010, 3.5, 4.8, 13.2, 74.5, 0.0, 0.2, 3.9, 55.0, 45.0 -1,1,a-cure-i1,2016-17,0.0,49.2,West Springfield - Memorial,03320025, 5.1, 8.9, 30.5, 50.8, 0.0, 0.0, 4.7, 51.7, 48.3 -1,1,a-cure-i1,2016-17,0.0,27.0,West Springfield - Mittineague,03320030, 4.3, 1.8, 16.6, 73.0, 0.0, 0.0, 4.3, 46.6, 53.4 -1,1,a-cure-i1,2016-17,0.0,39.2,West Springfield - Philip G Coburn,03320007, 4.9, 15.3, 16.7, 60.8, 0.0, 0.0, 2.3, 49.7, 50.3 -1,1,a-cure-i1,2016-17,0.0,17.599999999999994,West Springfield - Tatham,03320040, 1.3, 2.6, 8.4, 82.4, 0.0, 0.0, 5.3, 48.5, 51.5 -4.298507462686567,4.3,a-cure-i1,2016-17,7.199999999999999,26.799999999999997,West Springfield - West Springfield High,03320505, 3.6, 6.8, 14.4, 73.2, 0.1, 0.1, 1.9, 52.3, 47.7 -1,1,a-cure-i1,2016-17,4.5,30.599999999999994,West Springfield - West Springfield Middle,03320305, 3.2, 6.8, 19.0, 69.4, 0.2, 0.0, 1.4, 52.4, 47.6 -1,1,a-cure-i1,2016-17,0.0,42.2,Westborough - Annie E Fales,03210010, 1.2, 35.2, 2.3, 57.8, 0.6, 0.0, 2.9, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,58.2,Westborough - Elsie A Hastings Elementary,03210025, 2.1, 40.9, 11.7, 41.8, 0.4, 0.0, 3.1, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,50.5,Westborough - J Harding Armstrong,03210005, 3.0, 41.8, 4.0, 49.5, 0.0, 0.0, 1.8, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,43.3,Westborough - Mill Pond School,03210045, 0.7, 33.5, 5.6, 56.7, 0.0, 0.1, 3.4, 50.5, 49.5 -1,1,a-cure-i1,2016-17,2.6,39.6,Westborough - Sarah W Gibbons Middle,03210305, 1.3, 26.7, 6.9, 60.4, 0.2, 0.2, 4.4, 53.3, 46.7 -3.3177257525083608,3.32,a-cure-i1,2016-17,6.2,29.900000000000006,Westborough - Westborough High,03210505, 2.0, 21.2, 4.5, 70.1, 0.0, 0.0, 2.3, 49.3, 50.7 -1,1,a-cure-i1,2016-17,0.0,31.700000000000003,Westfield - Abner Gibbs,03250020, 3.7, 6.0, 19.3, 68.3, 0.0, 0.0, 2.8, 48.2, 51.8 -1,1,a-cure-i1,2016-17,0.0,31.400000000000006,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 6.9, 22.3, 68.6, 0.0, 0.0, 2.3, 56.6, 43.4 -3.3272171253822624,3.33,a-cure-i1,2016-17,6.8,32.7,Westfield - Franklin Ave,03250015, 2.8, 2.0, 25.9, 67.3, 0.4, 0.4, 1.2, 49.0, 51.0 -1,1,a-cure-i1,2016-17,0.0,25.799999999999997,Westfield - Highland,03250025, 1.5, 8.6, 14.6, 74.2, 0.0, 0.0, 1.0, 53.5, 46.5 -1,1,a-cure-i1,2016-17,0.0,16.5,Westfield - Munger Hill,03250033, 3.0, 2.3, 8.1, 83.5, 0.0, 0.3, 2.8, 52.5, 47.5 -1,1,a-cure-i1,2016-17,0.0,16.400000000000006,Westfield - North Middle School,03250305, 1.1, 1.6, 11.1, 83.6, 0.0, 0.3, 2.3, 50.3, 49.7 -4.270270270270271,4.27,a-cure-i1,2016-17,7.9,29.599999999999994,Westfield - Paper Mill,03250036, 4.2, 0.9, 21.2, 70.4, 0.2, 0.0, 3.0, 51.3, 48.7 -1,1,a-cure-i1,2016-17,0.0,10.900000000000006,Westfield - Russell Elementary School,03250055, 1.6, 0.5, 7.6, 89.1, 0.0, 0.0, 1.1, 52.7, 47.3 -1,1,a-cure-i1,2016-17,0.0,21.700000000000003,Westfield - South Middle School,03250310, 2.5, 3.1, 15.4, 78.3, 0.0, 0.0, 0.7, 51.7, 48.3 -1,1,a-cure-i1,2016-17,3.7,17.200000000000003,Westfield - Southampton Road,03250040, 0.9, 0.9, 11.7, 82.8, 0.2, 0.0, 3.5, 48.8, 51.2 -1,1,a-cure-i1,2016-17,1.7,19.400000000000006,Westfield - Westfield High,03250505, 2.9, 3.2, 11.1, 80.6, 0.2, 0.2, 1.9, 45.3, 54.7 -1,1,a-cure-i1,2016-17,1.5,12.0,Westfield - Westfield Technical Academy,03250605, 2.2, 1.9, 6.3, 88.0, 0.2, 0.2, 1.3, 63.9, 36.1 -1,1,a-cure-i1,2016-17,0.0,20.200000000000003,Westford - Abbot Elementary,03260004, 0.3, 15.4, 0.3, 79.8, 2.0, 0.0, 2.2, 47.8, 52.2 -1,1,a-cure-i1,2016-17,2.3,31.900000000000006,Westford - Blanchard Middle,03260310, 1.0, 28.7, 0.3, 68.1, 0.7, 0.2, 1.1, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,31.700000000000003,Westford - Col John Robinson,03260025, 0.7, 26.2, 1.5, 68.3, 0.0, 0.0, 3.3, 48.3, 51.7 -1,1,a-cure-i1,2016-17,0.0,40.6,Westford - Day Elementary,03260007, 1.4, 35.0, 0.6, 59.4, 0.0, 0.0, 3.6, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,33.900000000000006,Westford - John A. Crisafulli Elementary School,03260045, 1.2, 25.9, 2.4, 66.1, 0.0, 0.0, 4.5, 51.2, 48.8 -1,1,a-cure-i1,2016-17,0.0,41.2,Westford - Millennium Elementary,03260013, 0.8, 31.1, 2.5, 58.8, 0.0, 0.0, 6.7, 57.1, 42.9 -1,1,a-cure-i1,2016-17,2.9,26.599999999999994,Westford - Nabnasset,03260015, 0.6, 19.9, 1.7, 73.4, 0.0, 0.0, 4.4, 50.1, 49.9 -2.7511312217194566,2.75,a-cure-i1,2016-17,7.6,44.2,Westford - Rita E. Miller Elementary School,03260055, 0.9, 34.0, 2.1, 55.8, 0.0, 0.0, 7.2, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.9,29.099999999999994,Westford - Stony Brook School,03260330, 0.7, 23.9, 1.3, 70.9, 0.1, 0.0, 3.0, 52.2, 47.8 -1,1,a-cure-i1,2016-17,2.8,25.900000000000006,Westford - Westford Academy,03260505, 0.7, 20.5, 1.1, 74.1, 0.0, 0.0, 3.6, 51.0, 49.0 -1,1,a-cure-i1,2016-17,0.0,5.400000000000006,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 3.8, 94.6, 0.0, 0.0, 1.5, 50.0, 50.0 -4.306068601583113,4.31,a-cure-i1,2016-17,10.2,37.9,Weston - Country,03300010, 5.6, 13.3, 11.9, 62.1, 0.0, 0.0, 7.0, 48.1, 51.9 -2.552147239263804,2.55,a-cure-i1,2016-17,5.2,32.599999999999994,Weston - Field Elementary School,03300012, 7.8, 12.7, 5.5, 67.4, 0.0, 0.0, 6.6, 54.8, 45.2 -8.41337386018237,5,a-cure-i1,2016-17,17.3,32.900000000000006,Weston - Weston High,03300505, 5.9, 17.0, 4.8, 67.1, 0.6, 0.0, 4.5, 50.6, 49.4 -5.155015197568388,5,a-cure-i1,2016-17,10.6,32.900000000000006,Weston - Weston Middle,03300305, 7.0, 15.0, 4.7, 67.1, 0.6, 0.0, 5.6, 50.4, 49.6 -3.0177935943060503,3.02,a-cure-i1,2016-17,5.3,28.099999999999994,Weston - Woodland,03300015, 6.0, 14.9, 5.3, 71.9, 0.0, 0.3, 1.7, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,7.599999999999994,Westport - Alice A Macomber,03310015, 0.0, 0.3, 2.3, 92.4, 0.3, 0.0, 4.7, 53.3, 46.7 -1,1,a-cure-i1,2016-17,0.0,9.799999999999997,Westport - Westport Elementary,03310030, 0.2, 0.4, 4.1, 90.2, 0.0, 0.0, 5.1, 54.8, 45.2 -1,1,a-cure-i1,2016-17,0.0,9.0,Westport - Westport Junior/Senior High School,03310515, 0.7, 1.7, 3.3, 91.0, 0.5, 0.0, 2.8, 55.7, 44.3 -6.066350710900475,5,a-cure-i1,2016-17,8.0,21.099999999999994,Westwood - Deerfield School,03350010, 0.4, 10.3, 4.9, 78.9, 0.0, 0.0, 5.4, 56.1, 43.9 -1,1,a-cure-i1,2016-17,0.0,21.700000000000003,Westwood - Downey,03350012, 0.4, 13.1, 3.7, 78.3, 0.0, 0.0, 4.5, 57.4, 42.6 -1,1,a-cure-i1,2016-17,3.6,19.5,Westwood - E W Thurston Middle,03350305, 3.9, 9.4, 3.9, 80.5, 0.0, 0.0, 2.3, 46.7, 53.3 -1,1,a-cure-i1,2016-17,0.0,19.5,Westwood - Martha Jones,03350017, 1.0, 11.6, 3.1, 80.5, 0.0, 0.0, 3.8, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,23.400000000000006,Westwood - Paul Hanlon,03350015, 1.8, 14.0, 3.6, 76.6, 0.0, 0.0, 4.1, 50.5, 49.5 -6.162962962962963,5,a-cure-i1,2016-17,5.2,13.5,Westwood - Westwood High,03350505, 3.0, 7.0, 1.9, 86.5, 0.0, 0.0, 1.6, 47.4, 52.6 -1,1,a-cure-i1,2016-17,0.0,11.900000000000006,Westwood - Westwood Integrated Preschool,03350050, 2.4, 4.8, 4.8, 88.1, 0.0, 0.0, 0.0, 71.4, 28.6 -1,1,a-cure-i1,2016-17,0.0,17.200000000000003,Westwood - William E Sheehan,03350025, 0.6, 6.1, 5.8, 82.8, 0.0, 0.0, 4.7, 54.4, 45.6 -1,1,a-cure-i1,2016-17,1.6,22.799999999999997,Weymouth - Abigail Adams Middle School,03360310, 5.8, 4.7, 9.1, 77.2, 0.4, 0.2, 2.7, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,24.599999999999994,Weymouth - Academy Avenue,03360005, 3.8, 8.8, 9.5, 75.4, 0.0, 0.0, 2.5, 54.6, 45.4 -1,1,a-cure-i1,2016-17,0.0,22.099999999999994,Weymouth - Frederick C Murphy,03360050, 7.9, 0.8, 6.7, 77.9, 0.0, 0.0, 6.7, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,28.099999999999994,Weymouth - Johnson Early Childhood Center,03360003, 8.5, 8.5, 7.0, 71.9, 0.0, 0.0, 4.0, 55.8, 44.2 -1,1,a-cure-i1,2016-17,0.0,17.700000000000003,Weymouth - Lawrence W Pingree,03360065, 5.9, 5.0, 4.5, 82.3, 0.0, 0.0, 2.3, 47.7, 52.3 -1,1,a-cure-i1,2016-17,0.0,22.900000000000006,Weymouth - Maria Weston Chapman Middle School,03360020, 7.3, 5.1, 6.1, 77.1, 0.1, 0.1, 4.1, 50.8, 49.2 -1,1,a-cure-i1,2016-17,0.0,23.0,Weymouth - Ralph Talbot,03360085, 6.7, 6.0, 8.9, 77.0, 0.0, 0.4, 1.1, 51.4, 48.6 -1,1,a-cure-i1,2016-17,0.0,19.5,Weymouth - Thomas V Nash,03360060, 3.5, 4.3, 6.5, 80.5, 0.0, 0.0, 5.2, 43.7, 56.3 -1,1,a-cure-i1,2016-17,0.0,31.599999999999994,Weymouth - Thomas W. Hamilton Primary School,03360105, 5.2, 10.1, 11.9, 68.4, 1.2, 0.0, 3.2, 47.2, 52.8 -1,1,a-cure-i1,2016-17,0.0,16.700000000000003,Weymouth - Wessagusset,03360110, 1.7, 4.4, 6.1, 83.3, 0.0, 0.0, 4.4, 53.4, 46.6 -1,1,a-cure-i1,2016-17,1.6,18.700000000000003,Weymouth - Weymouth High School,03360505, 4.3, 4.8, 6.8, 81.3, 0.2, 0.0, 2.7, 52.0, 48.0 -1,1,a-cure-i1,2016-17,0.0,51.0,Weymouth - William Seach,03360080, 18.7, 11.3, 16.1, 49.0, 0.6, 0.0, 4.2, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,6.200000000000003,Whately - Whately Elementary,03370005, 0.0, 0.0, 4.7, 93.8, 0.0, 0.0, 1.6, 52.7, 47.3 -1,1,a-cure-i1,2016-17,4.3,6.200000000000003,Whitman-Hanson - Hanson Middle School,07800315, 1.2, 0.5, 2.5, 93.8, 0.0, 0.0, 2.0, 55.7, 44.3 -1,1,a-cure-i1,2016-17,0.0,5.200000000000003,Whitman-Hanson - Indian Head,07800035, 0.9, 1.2, 2.3, 94.8, 0.0, 0.0, 0.9, 50.4, 49.6 -1,1,a-cure-i1,2016-17,4.2,15.400000000000006,Whitman-Hanson - John H Duval,07800030, 2.2, 0.8, 7.1, 84.6, 0.6, 0.2, 4.4, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,12.5,Whitman-Hanson - Louise A Conley,07800010, 2.9, 0.7, 5.9, 87.5, 0.7, 0.0, 2.3, 49.0, 51.0 -1,1,a-cure-i1,2016-17,0.0,9.5,Whitman-Hanson - Maquan Elementary,07800025, 0.9, 1.2, 4.4, 90.5, 0.2, 0.0, 2.8, 57.4, 42.6 -1,1,a-cure-i1,2016-17,1.5,8.200000000000003,Whitman-Hanson - Whitman Hanson Regional,07800505, 1.9, 1.3, 2.5, 91.8, 0.3, 0.2, 2.1, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,10.5,Whitman-Hanson - Whitman Middle,07800310, 2.8, 0.8, 3.5, 89.5, 0.7, 0.3, 2.3, 52.3, 47.7 -1,1,a-cure-i1,2016-17,1.4,24.0,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 1.5, 1.1, 18.3, 76.0, 0.2, 0.0, 2.8, 54.6, 45.4 -1,1,a-cure-i1,2016-17,0.0,4.400000000000006,Williamsburg - Anne T. Dunphy School,03400020, 3.2, 0.6, 0.6, 95.6, 0.0, 0.0, 0.0, 54.4, 45.6 -6.181818181818183,5,a-cure-i1,2016-17,6.8,17.599999999999994,Williamstown - Williamstown Elementary,03410010, 1.3, 2.9, 6.9, 82.4, 0.0, 0.0, 6.4, 52.2, 47.8 -1,1,a-cure-i1,2016-17,0.0,17.099999999999994,Wilmington - Boutwell,03420005, 0.6, 8.9, 4.4, 82.9, 0.0, 0.0, 3.2, 53.2, 46.8 -1,1,a-cure-i1,2016-17,3.7,10.700000000000003,Wilmington - North Intermediate,03420060, 1.1, 3.0, 3.0, 89.3, 0.0, 0.0, 3.7, 53.0, 47.0 -1,1,a-cure-i1,2016-17,3.9,15.299999999999997,Wilmington - Shawsheen Elementary,03420025, 0.8, 4.5, 6.7, 84.7, 0.0, 0.0, 3.3, 52.1, 47.9 -1,1,a-cure-i1,2016-17,0.0,13.400000000000006,Wilmington - West Intermediate,03420080, 1.2, 3.9, 5.9, 86.6, 0.4, 0.0, 2.0, 47.2, 52.8 -11.092024539877302,5,a-cure-i1,2016-17,11.299999999999999,16.299999999999997,Wilmington - Wildwood,03420015, 2.8, 4.5, 3.9, 83.7, 0.6, 0.0, 4.5, 56.2, 43.8 -1,1,a-cure-i1,2016-17,4.2,12.5,Wilmington - Wilmington High,03420505, 2.4, 5.2, 3.0, 87.5, 0.1, 0.1, 1.7, 49.4, 50.6 -1,1,a-cure-i1,2016-17,1.7,13.5,Wilmington - Wilmington Middle School,03420330, 1.6, 4.3, 4.3, 86.5, 0.1, 0.0, 3.2, 50.4, 49.6 -1,1,a-cure-i1,2016-17,0.0,12.599999999999994,Wilmington - Woburn Street,03420020, 0.5, 4.6, 3.6, 87.4, 0.0, 0.0, 3.9, 53.2, 46.8 -1,1,a-cure-i1,2016-17,0.0,9.5,Winchendon - Memorial,03430040, 1.1, 1.8, 4.0, 90.5, 0.0, 0.0, 2.5, 61.8, 38.2 -1,1,a-cure-i1,2016-17,0.0,7.099999999999994,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 92.9, 0.0, 0.0, 7.1, 64.3, 35.7 -5.635220125786162,5,a-cure-i1,2016-17,5.6000000000000005,15.900000000000006,Winchendon - Murdock High School,03430515, 2.1, 3.1, 8.0, 84.1, 0.3, 0.0, 2.4, 53.6, 46.4 -1,1,a-cure-i1,2016-17,0.0,16.900000000000006,Winchendon - Murdock Middle School,03430315, 1.7, 3.0, 7.1, 83.1, 0.7, 0.0, 4.4, 50.7, 49.3 -1,1,a-cure-i1,2016-17,0.0,13.5,Winchendon - Toy Town Elementary,03430050, 1.8, 2.1, 6.8, 86.5, 0.0, 0.4, 2.5, 48.4, 51.6 -1,1,a-cure-i1,2016-17,0.0,7.200000000000003,Winchendon - Winchendon PreSchool Program,03430010, 1.2, 2.4, 1.2, 92.8, 0.0, 0.0, 2.4, 54.2, 45.8 -1,1,a-cure-i1,2016-17,4.9,9.5,Winchester - Ambrose Elementary,03440045, 0.0, 4.8, 1.6, 90.5, 0.0, 0.0, 3.2, 50.5, 49.5 -1,1,a-cure-i1,2016-17,0.0,18.5,Winchester - Lincoln Elementary,03440005, 1.2, 7.6, 2.2, 81.5, 0.0, 0.0, 7.6, 45.9, 53.9 -1,1,a-cure-i1,2016-17,0.0,38.3,Winchester - Lynch Elementary,03440020, 2.2, 25.6, 4.0, 61.7, 0.0, 0.0, 6.4, 53.7, 46.3 -5.12,5,a-cure-i1,2016-17,8.0,25.0,Winchester - McCall Middle,03440305, 0.7, 16.7, 3.4, 75.0, 0.3, 0.1, 3.8, 49.4, 50.6 -1,1,a-cure-i1,2016-17,0.0,36.1,Winchester - Muraco Elementary,03440040, 1.0, 23.5, 2.2, 63.9, 0.7, 0.0, 8.7, 48.5, 51.5 -1,1,a-cure-i1,2016-17,0.0,30.799999999999997,Winchester - Vinson-Owen Elementary,03440025, 0.2, 19.2, 2.8, 69.2, 0.0, 0.0, 8.5, 49.8, 50.2 -1,1,a-cure-i1,2016-17,1.5,25.900000000000006,Winchester - Winchester High School,03440505, 1.4, 16.4, 4.1, 74.1, 0.1, 0.0, 3.9, 50.3, 49.7 -1,1,a-cure-i1,2016-17,0.0,19.900000000000006,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.3, 0.9, 15.9, 80.1, 0.2, 0.0, 1.5, 51.5, 48.5 -1,1,a-cure-i1,2016-17,0.0,18.599999999999994,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.7, 0.0, 14.2, 81.4, 0.0, 0.0, 2.8, 53.8, 46.2 -1,1,a-cure-i1,2016-17,0.0,18.599999999999994,Winthrop - Winthrop High School,03460505, 1.9, 1.7, 11.8, 81.4, 0.5, 0.0, 2.6, 49.8, 50.2 -1,1,a-cure-i1,2016-17,0.0,14.0,Winthrop - Winthrop Middle School,03460305, 0.4, 0.6, 11.8, 86.0, 0.0, 0.0, 1.1, 51.0, 49.0 -1,1,a-cure-i1,2016-17,0.0,23.599999999999994,Woburn - Clyde Reeves,03470040, 8.5, 6.1, 5.0, 76.4, 0.2, 0.0, 3.7, 50.3, 49.7 -1,1,a-cure-i1,2016-17,4.2,20.5,Woburn - Daniel L Joyce Middle School,03470410, 5.6, 4.6, 6.8, 79.5, 0.4, 0.2, 2.8, 50.2, 49.8 -1,1,a-cure-i1,2016-17,0.0,10.099999999999994,Woburn - Daniel P Hurld,03470020, 2.4, 4.3, 2.4, 89.9, 0.0, 0.0, 1.0, 48.6, 51.4 -1,1,a-cure-i1,2016-17,0.0,24.900000000000006,Woburn - Goodyear Elementary School,03470005, 7.8, 5.6, 6.5, 75.1, 0.3, 0.0, 4.7, 54.2, 45.8 -1,1,a-cure-i1,2016-17,2.4,23.900000000000006,Woburn - John F Kennedy Middle School,03470405, 8.3, 5.5, 7.9, 76.1, 1.0, 0.0, 1.2, 48.7, 51.3 -1,1,a-cure-i1,2016-17,0.0,40.6,Woburn - Linscott-Rumford,03470025, 8.5, 21.4, 6.7, 59.4, 0.0, 0.0, 4.0, 46.0, 54.0 -1,1,a-cure-i1,2016-17,0.0,28.900000000000006,Woburn - Malcolm White,03470055, 6.5, 5.6, 11.8, 71.1, 0.6, 0.0, 4.3, 46.6, 53.4 -2.0775193798449614,2.08,a-cure-i1,2016-17,6.7,51.6,Woburn - Mary D Altavesta,03470065, 9.8, 19.9, 16.3, 48.4, 1.2, 0.8, 3.7, 55.3, 44.7 -1,1,a-cure-i1,2016-17,0.0,34.7,Woburn - Shamrock,03470043, 9.1, 5.4, 14.5, 65.3, 0.6, 0.3, 4.8, 55.6, 44.4 -1,1,a-cure-i1,2016-17,3.4000000000000004,26.200000000000003,Woburn - Woburn High,03470505, 6.1, 6.4, 11.9, 73.8, 0.1, 0.2, 1.6, 49.1, 50.8 -1,1,a-cure-i1,2016-17,0.0,21.5,Woburn - Wyman,03470060, 1.1, 9.4, 7.2, 78.5, 0.0, 0.0, 3.9, 46.4, 53.6 -1.6987654320987653,1.7,a-cure-i1,2016-17,8.6,81.0,Worcester - Belmont Street Community,03480020, 20.4, 9.7, 46.8, 19.0, 0.2, 0.0, 3.9, 53.2, 46.8 -2.222222222222222,2.22,a-cure-i1,2016-17,9.5,68.4,Worcester - Burncoat Middle School,03480405, 15.3, 4.4, 41.9, 31.6, 0.2, 0.0, 6.6, 51.5, 48.5 -2.454277286135693,2.45,a-cure-i1,2016-17,10.4,67.8,Worcester - Burncoat Senior High,03480503, 19.1, 5.9, 38.2, 32.2, 0.2, 0.0, 4.5, 51.8, 48.2 -1.6671490593342984,1.67,a-cure-i1,2016-17,7.2,69.1,Worcester - Burncoat Street,03480035, 15.8, 3.5, 46.7, 30.9, 0.0, 0.0, 3.1, 54.1, 45.9 -0.9964071856287425,1,a-cure-i1,2016-17,5.2,83.5,Worcester - Canterbury,03480045, 15.2, 14.4, 52.1, 16.5, 0.5, 0.0, 1.3, 54.3, 45.7 -1.8475750577367207,1.85,a-cure-i1,2016-17,10.0,86.6,Worcester - Chandler Elementary Community,03480050, 15.2, 8.8, 60.3, 13.4, 0.0, 0.0, 2.3, 52.1, 47.9 -3.7407407407407405,3.74,a-cure-i1,2016-17,20.2,86.4,Worcester - Chandler Magnet,03480052, 4.3, 3.4, 76.3, 13.6, 0.0, 0.0, 2.4, 47.4, 52.6 -2.1215469613259668,2.12,a-cure-i1,2016-17,9.6,72.4,Worcester - City View,03480053, 13.3, 4.4, 51.1, 27.6, 0.0, 0.0, 3.6, 50.1, 49.9 -3.2516129032258068,3.25,a-cure-i1,2016-17,18.900000000000002,93.0,Worcester - Claremont Academy,03480350, 9.2, 9.8, 72.4, 7.0, 0.0, 0.0, 1.7, 50.4, 49.6 -1.5744157441574416,1.57,a-cure-i1,2016-17,8.0,81.3,Worcester - Clark St Community,03480055, 19.2, 3.9, 53.7, 18.7, 0.0, 0.0, 4.4, 55.7, 44.3 -1.1712418300653593,1.17,a-cure-i1,2016-17,5.6,76.5,Worcester - Columbus Park,03480060, 13.7, 10.5, 48.9, 23.5, 0.4, 0.0, 2.9, 56.1, 43.9 -3.3131313131313136,3.31,a-cure-i1,2016-17,12.3,59.4,Worcester - Doherty Memorial High,03480512, 16.1, 7.8, 31.7, 40.6, 0.3, 0.0, 3.5, 54.5, 45.5 -2.8733850129198966,2.87,a-cure-i1,2016-17,13.9,77.4,Worcester - Elm Park Community,03480095, 13.6, 3.2, 56.7, 22.6, 0.2, 0.0, 3.6, 53.7, 46.3 -1,1,a-cure-i1,2016-17,0.0,27.200000000000003,Worcester - Flagg Street,03480090, 5.9, 5.7, 11.4, 72.8, 0.0, 0.0, 4.2, 48.0, 52.0 -3.9710144927536235,3.97,a-cure-i1,2016-17,13.700000000000001,55.2,Worcester - Forest Grove Middle,03480415, 11.9, 6.4, 31.8, 44.8, 0.1, 0.0, 4.9, 52.4, 47.6 -4.026143790849673,4.03,a-cure-i1,2016-17,15.4,61.2,Worcester - Francis J McGrath Elementary,03480177, 18.1, 3.7, 31.8, 38.8, 0.3, 0.0, 7.4, 51.8, 48.2 -1.5410764872521248,1.54,a-cure-i1,2016-17,6.8,70.6,Worcester - Gates Lane,03480110, 14.9, 13.1, 37.1, 29.4, 0.3, 0.0, 5.2, 62.8, 37.2 -3.942028985507246,3.94,a-cure-i1,2016-17,20.4,82.8,Worcester - Goddard School/Science Technical,03480100, 10.1, 10.8, 57.1, 17.2, 0.8, 0.0, 4.1, 55.5, 44.5 -1.3171390013495277,1.32,a-cure-i1,2016-17,6.1,74.1,Worcester - Grafton Street,03480115, 17.8, 6.1, 44.3, 25.9, 0.0, 0.0, 5.9, 53.3, 46.7 -18.753939393939394,5,a-cure-i1,2016-17,96.7,82.5,Worcester - Head Start,03480002, 18.4, 3.2, 58.9, 17.5, 0.4, 0.4, 1.3, 50.0, 50.0 -2.837606837606838,2.84,a-cure-i1,2016-17,8.3,46.8,Worcester - Heard Street,03480136, 9.3, 11.5, 20.8, 53.2, 0.4, 0.0, 4.8, 47.2, 52.8 -1,1,a-cure-i1,2016-17,0.0,87.3,Worcester - Jacob Hiatt Magnet,03480140, 25.8, 3.2, 52.5, 12.7, 0.0, 0.0, 5.9, 48.6, 51.4 -3.1794871794871797,3.18,a-cure-i1,2016-17,9.3,46.8,Worcester - Lake View,03480145, 15.7, 9.0, 17.4, 53.2, 0.3, 0.0, 4.3, 51.8, 48.2 -1,1,a-cure-i1,2016-17,0.0,87.7,Worcester - Lincoln Street,03480160, 18.9, 4.6, 58.6, 12.3, 0.7, 0.0, 4.9, 51.6, 48.4 -1,1,a-cure-i1,2016-17,0.0,50.7,Worcester - May Street,03480175, 9.8, 8.6, 20.2, 49.3, 0.3, 0.0, 11.9, 48.1, 51.9 -4.0,4.0,a-cure-i1,2016-17,9.1,36.4,Worcester - Midland Street,03480185, 6.6, 10.3, 10.3, 63.6, 0.4, 0.0, 8.7, 53.7, 46.3 -1,1,a-cure-i1,2016-17,0.0,39.0,Worcester - Nelson Place,03480200, 11.0, 6.2, 16.5, 61.0, 0.0, 0.0, 5.3, 54.6, 45.4 -3.3131313131313127,3.31,a-cure-i1,2016-17,12.299999999999999,59.4,Worcester - Norrback Avenue,03480202, 21.6, 5.1, 28.4, 40.6, 0.0, 0.0, 4.2, 52.1, 47.9 -4.820253164556962,4.82,a-cure-i1,2016-17,23.8,79.0,Worcester - North High,03480515, 19.3, 8.3, 47.9, 21.0, 0.4, 0.0, 3.1, 52.1, 47.9 -4.515759312320918,4.52,a-cure-i1,2016-17,19.700000000000003,69.8,Worcester - Quinsigamond,03480210, 18.9, 7.3, 39.6, 30.2, 0.1, 0.0, 3.9, 47.8, 52.2 -2.5125925925925925,2.51,a-cure-i1,2016-17,10.6,67.5,Worcester - Rice Square,03480215, 16.5, 7.5, 37.4, 32.5, 0.0, 0.0, 6.1, 53.9, 46.1 -6.69980879541109,5,a-cure-i1,2016-17,21.9,52.3,Worcester - Roosevelt,03480220, 15.3, 4.7, 27.8, 47.7, 0.0, 0.0, 4.4, 48.8, 51.2 -4.289093298291721,4.29,a-cure-i1,2016-17,20.4,76.1,Worcester - South High Community,03480520, 17.1, 12.7, 43.7, 23.9, 0.1, 0.0, 2.5, 52.9, 47.1 -4.552667578659371,4.55,a-cure-i1,2016-17,20.799999999999997,73.1,Worcester - Sullivan Middle,03480423, 14.6, 11.4, 42.4, 26.9, 0.2, 0.0, 4.5, 52.3, 47.7 -1.669829222011385,1.67,a-cure-i1,2016-17,5.5,52.7,Worcester - Tatnuck,03480230, 19.5, 5.5, 22.9, 47.3, 0.0, 0.0, 4.9, 47.3, 52.7 -2.5876993166287017,2.59,a-cure-i1,2016-17,7.1,43.9,Worcester - Thorndyke Road,03480235, 14.1, 4.3, 22.1, 56.1, 0.0, 0.0, 3.5, 46.3, 53.7 -1,1,a-cure-i1,2016-17,4.8,79.8,Worcester - Union Hill School,03480240, 11.9, 2.9, 60.7, 20.2, 0.2, 0.0, 4.2, 50.1, 49.9 -1,1,a-cure-i1,2016-17,0.5,88.2,Worcester - University Pk Campus School,03480285, 11.4, 19.7, 53.5, 11.8, 0.4, 0.0, 3.1, 55.1, 44.9 -1.7506361323155217,1.75,a-cure-i1,2016-17,8.6,78.6,Worcester - Vernon Hill School,03480280, 21.2, 4.6, 47.2, 21.4, 0.2, 0.0, 5.3, 54.0, 46.0 -1,1,a-cure-i1,2016-17,0.0,62.6,Worcester - Wawecus Road School,03480026, 12.2, 6.1, 38.8, 37.4, 0.0, 0.0, 5.4, 53.7, 46.3 -3.239263803680982,3.24,a-cure-i1,2016-17,6.6,32.599999999999994,Worcester - West Tatnuck,03480260, 7.0, 5.0, 13.2, 67.4, 0.0, 0.0, 7.3, 47.2, 52.8 -1.4753018660812296,1.48,a-cure-i1,2016-17,8.4,91.1,Worcester - Woodland Academy,03480030, 7.3, 9.3, 71.6, 8.9, 0.2, 0.0, 2.7, 49.9, 50.1 -1,1,a-cure-i1,2016-17,0.0,48.6,Worcester - Worcester Arts Magnet School,03480225, 15.3, 6.2, 19.8, 51.4, 0.0, 0.0, 7.4, 46.9, 53.1 -4.966921119592875,4.97,a-cure-i1,2016-17,24.4,78.6,Worcester - Worcester East Middle,03480420, 19.1, 7.0, 48.2, 21.4, 0.0, 0.0, 4.3, 51.8, 48.2 -1,1,a-cure-i1,2016-17,4.2,62.9,Worcester - Worcester Technical High,03480605, 16.6, 6.6, 36.8, 37.1, 0.0, 0.0, 3.0, 42.6, 57.4 -1,1,a-cure-i1,2016-17,0.0,6.700000000000003,Worthington - R. H. Conwell,03490010, 0.0, 1.7, 1.7, 93.3, 0.0, 0.0, 3.3, 45.0, 55.0 -1,1,a-cure-i1,2016-17,0.0,9.299999999999997,Wrentham - Charles E Roderick,03500010, 1.4, 1.6, 3.0, 90.7, 0.0, 0.0, 3.4, 53.1, 46.9 -1,1,a-cure-i1,2016-17,0.0,13.0,Wrentham - Delaney,03500003, 1.2, 2.9, 4.6, 87.0, 0.2, 0.2, 4.1, 51.9, 48.1 +Raw likert calculation,Likert Score,Admin Data Item,Academic Year,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 (%),Non-White Teachers %,Non-White Students % +NA,NA,a-cure-i1,2024-25,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.6, 2.7, 55.9, 24.3, 5.0, 0.1, 11.4, 53.6, 46.4, 0.0,88.6 +NA,NA,a-cure-i1,2024-25,Abington - Abington Early Education Program,00010001, 1.2, 6.1, 9.8, 13.4, 7.3, 0.0, 62.2, 40.2, 59.8, 0.0,37.8 +NA,NA,a-cure-i1,2024-25,Abington - Abington High,00010505, 0.2, 1.9, 8.1, 17.2, 1.9, 0.0, 70.8, 49.1, 50.4, 0.6,29.200000000000003 +NA,NA,a-cure-i1,2024-25,Abington - Abington Middle School,00010405, 0.4, 2.5, 6.3, 15.7, 2.4, 0.0, 72.6, 49.6, 50.1, 0.3,27.400000000000006 +NA,NA,a-cure-i1,2024-25,Abington - Beaver Brook Elementary,00010020, 0.2, 2.2, 5.5, 17.3, 4.3, 0.0, 70.5, 47.3, 52.7, 0.0,29.5 +NA,NA,a-cure-i1,2024-25,Abington - Woodsdale Elementary School,00010015, 0.5, 2.2, 8.3, 14.5, 4.0, 0.3, 70.2, 51.3, 48.7, 0.0,29.799999999999997 +NA,NA,a-cure-i1,2024-25,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.8, 0.0, 62.9, 31.8, 2.4, 0.0, 2.2, 46.6, 53.4, 0.0,97.8 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.2, 37.8, 3.6, 8.4, 3.5, 0.2, 46.3, 47.7, 51.7, 0.6,53.7 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - Blanchard Memorial School,06000005, 0.2, 30.3, 2.6, 9.4, 7.0, 0.0, 50.5, 49.9, 49.7, 0.4,49.5 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 14.2, 1.7, 12.0, 9.3, 0.0, 62.7, 50.7, 49.3, 0.0,37.3 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 30.2, 7.8, 11.2, 8.6, 0.0, 42.2, 40.5, 59.5, 0.0,57.8 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - Luther Conant School,06000030, 0.0, 52.4, 4.1, 7.1, 6.1, 0.0, 30.2, 47.8, 52.2, 0.0,69.8 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 9.3, 4.2, 14.4, 5.8, 0.0, 66.4, 51.3, 48.7, 0.0,33.599999999999994 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - Merriam School,06000010, 0.0, 16.5, 4.1, 7.6, 7.3, 0.0, 64.6, 50.6, 49.1, 0.3,35.400000000000006 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 55.0, 2.6, 6.3, 7.4, 0.0, 28.7, 47.1, 52.9, 0.0,71.3 +NA,NA,a-cure-i1,2024-25,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 32.5, 2.2, 9.7, 5.8, 0.0, 49.8, 49.4, 50.0, 0.6,50.2 +NA,NA,a-cure-i1,2024-25,Acushnet - Acushnet Elementary School,00030025, 0.8, 0.4, 1.2, 9.1, 2.7, 0.0, 85.9, 44.3, 55.7, 0.0,14.099999999999994 +NA,NA,a-cure-i1,2024-25,Acushnet - Albert F Ford Middle School,00030305, 0.5, 1.0, 1.5, 5.0, 3.0, 0.0, 89.1, 47.6, 52.4, 0.0,10.900000000000006 +NA,NA,a-cure-i1,2024-25,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.2, 8.9, 3.5, 12.5, 7.1, 0.1, 67.7, 46.8, 52.3, 0.9,32.3 +NA,NA,a-cure-i1,2024-25,Agawam - Agawam Early Childhood Center,00050003, 0.0, 3.0, 3.0, 11.1, 3.7, 0.0, 79.3, 45.9, 54.1, 0.0,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Agawam - Agawam High,00050505, 0.0, 3.6, 3.0, 12.2, 3.0, 0.0, 78.1, 46.2, 53.2, 0.6,21.900000000000006 +NA,NA,a-cure-i1,2024-25,Agawam - Agawam Junior High,00050405, 0.0, 2.3, 3.4, 10.6, 2.8, 0.2, 80.6, 49.7, 50.3, 0.0,19.400000000000006 +NA,NA,a-cure-i1,2024-25,Agawam - Benjamin J Phelps,00050020, 0.3, 5.3, 2.6, 12.5, 3.3, 0.3, 75.7, 49.3, 50.7, 0.0,24.299999999999997 +NA,NA,a-cure-i1,2024-25,Agawam - Clifford M Granger,00050010, 0.0, 1.9, 0.3, 17.7, 2.5, 0.0, 77.6, 45.7, 54.3, 0.0,22.400000000000006 +NA,NA,a-cure-i1,2024-25,Agawam - James Clark School,00050030, 0.3, 3.7, 3.4, 15.5, 2.0, 0.0, 75.1, 43.1, 56.9, 0.0,24.900000000000006 +NA,NA,a-cure-i1,2024-25,Agawam - Roberta G. Doering School,00050303, 0.0, 4.2, 1.9, 12.1, 3.1, 0.2, 78.5, 49.0, 51.0, 0.0,21.5 +NA,NA,a-cure-i1,2024-25,Agawam - William P. Sapelli Elementary,00050025, 0.7, 2.8, 3.4, 15.2, 2.4, 0.0, 75.5, 55.2, 44.8, 0.0,24.5 +NA,NA,a-cure-i1,2024-25,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.6, 0.5, 15.9, 61.0, 4.6, 0.0, 17.4, 53.2, 46.8, 0.0,82.6 +NA,NA,a-cure-i1,2024-25,Amesbury - Amesbury High,00070505, 0.2, 3.3, 1.0, 11.4, 4.4, 0.0, 79.6, 47.8, 52.2, 0.0,20.400000000000006 +NA,NA,a-cure-i1,2024-25,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 2.0, 14.0, 10.0, 0.0, 74.0, 42.0, 58.0, 0.0,26.0 +NA,NA,a-cure-i1,2024-25,Amesbury - Amesbury Middle,00070013, 0.0, 1.6, 1.9, 13.7, 4.4, 0.3, 78.0, 44.5, 55.5, 0.0,22.0 +NA,NA,a-cure-i1,2024-25,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 1.0, 1.2, 14.8, 2.2, 0.0, 80.9, 49.2, 50.8, 0.0,19.099999999999994 +NA,NA,a-cure-i1,2024-25,Amesbury - Shay Elementary,00070005, 0.4, 0.8, 3.1, 12.8, 2.7, 0.0, 80.2, 51.5, 48.5, 0.0,19.799999999999997 +NA,NA,a-cure-i1,2024-25,Amherst - Crocker Farm Elementary,00080009, 0.0, 11.9, 11.6, 20.4, 8.8, 0.3, 47.0, 51.3, 47.0, 1.7,53.0 +NA,NA,a-cure-i1,2024-25,Amherst - Fort River Elementary,00080020, 0.0, 10.0, 7.0, 35.3, 5.9, 0.0, 41.8, 47.4, 52.6, 0.0,58.2 +NA,NA,a-cure-i1,2024-25,Amherst - Wildwood Elementary,00080050, 0.6, 17.5, 11.8, 18.8, 8.0, 0.0, 43.3, 50.0, 49.7, 0.3,56.7 +NA,NA,a-cure-i1,2024-25,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 11.6, 7.6, 18.5, 6.6, 0.1, 55.5, 46.1, 52.0, 2.0,44.5 +NA,NA,a-cure-i1,2024-25,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.5, 9.6, 11.2, 18.9, 7.1, 0.0, 52.7, 47.8, 49.7, 2.5,47.3 +NA,NA,a-cure-i1,2024-25,Andover - Andover High,00090505, 0.2, 21.3, 3.0, 8.8, 3.5, 0.1, 63.0, 49.0, 50.8, 0.1,37.0 +NA,NA,a-cure-i1,2024-25,Andover - Andover West Middle,00090310, 0.0, 19.5, 3.5, 10.2, 3.9, 0.0, 62.8, 52.6, 47.4, 0.0,37.2 +NA,NA,a-cure-i1,2024-25,Andover - Bancroft Elementary,00090003, 0.0, 8.2, 0.8, 9.2, 5.2, 0.2, 76.4, 50.0, 50.0, 0.0,23.599999999999994 +NA,NA,a-cure-i1,2024-25,Andover - Doherty Middle,00090305, 0.0, 10.5, 1.4, 6.9, 5.9, 0.0, 75.3, 50.9, 48.7, 0.4,24.700000000000003 +NA,NA,a-cure-i1,2024-25,Andover - Henry C Sanborn Elementary,00090010, 0.3, 17.8, 3.0, 9.6, 7.8, 0.0, 61.4, 44.6, 55.4, 0.0,38.6 +NA,NA,a-cure-i1,2024-25,Andover - High Plain Elementary,00090004, 0.0, 25.1, 5.1, 14.3, 8.1, 0.2, 47.1, 48.3, 51.7, 0.0,52.9 +NA,NA,a-cure-i1,2024-25,Andover - Shawsheen School,00090005, 0.0, 21.2, 2.4, 14.1, 3.5, 0.0, 58.8, 35.3, 64.7, 0.0,41.2 +NA,NA,a-cure-i1,2024-25,Andover - South Elementary,00090020, 0.0, 16.7, 0.7, 8.2, 7.1, 0.0, 67.4, 46.1, 53.9, 0.0,32.599999999999994 +NA,NA,a-cure-i1,2024-25,Andover - West Elementary,00090025, 0.2, 18.0, 6.0, 10.9, 5.6, 0.0, 59.3, 44.0, 56.0, 0.0,40.7 +NA,NA,a-cure-i1,2024-25,Andover - Wood Hill Middle School,00090350, 0.3, 31.5, 4.1, 15.5, 2.5, 0.0, 46.1, 43.8, 55.8, 0.3,53.9 +NA,NA,a-cure-i1,2024-25,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.7, 3.1, 17.7, 25.2, 5.8, 0.3, 47.2, 51.6, 47.9, 0.5,52.8 +NA,NA,a-cure-i1,2024-25,Arlington - Arlington High,00100505, 0.1, 10.0, 3.5, 9.1, 6.7, 0.2, 70.3, 48.1, 50.1, 1.8,29.700000000000003 +NA,NA,a-cure-i1,2024-25,Arlington - Brackett,00100010, 0.0, 12.2, 1.3, 7.1, 16.2, 0.0, 63.2, 46.7, 53.0, 0.3,36.8 +NA,NA,a-cure-i1,2024-25,Arlington - Cyrus E Dallin,00100025, 0.0, 16.2, 1.0, 8.5, 11.8, 0.0, 62.6, 52.1, 47.9, 0.0,37.4 +NA,NA,a-cure-i1,2024-25,Arlington - Gibbs School,00100305, 0.0, 10.6, 4.5, 7.0, 10.4, 0.0, 67.5, 47.1, 52.4, 0.6,32.5 +NA,NA,a-cure-i1,2024-25,Arlington - Hardy,00100030, 0.0, 14.4, 2.4, 8.1, 13.1, 0.0, 62.0, 45.8, 53.9, 0.3,38.0 +NA,NA,a-cure-i1,2024-25,Arlington - John A Bishop,00100005, 0.0, 11.2, 1.1, 6.9, 13.9, 0.0, 66.9, 48.8, 51.2, 0.0,33.099999999999994 +NA,NA,a-cure-i1,2024-25,Arlington - M Norcross Stratton,00100055, 0.0, 21.9, 3.3, 8.7, 11.6, 0.0, 54.5, 49.3, 50.2, 0.4,45.5 +NA,NA,a-cure-i1,2024-25,Arlington - Menotomy Preschool,00100038, 0.0, 22.0, 12.0, 13.0, 7.0, 0.0, 46.0, 38.0, 62.0, 0.0,54.0 +NA,NA,a-cure-i1,2024-25,Arlington - Ottoson Middle,00100410, 0.0, 13.7, 2.9, 8.5, 6.6, 0.0, 68.2, 50.1, 49.1, 0.8,31.799999999999997 +NA,NA,a-cure-i1,2024-25,Arlington - Peirce,00100045, 0.0, 13.8, 4.4, 11.0, 8.8, 0.0, 61.9, 42.8, 56.9, 0.3,38.1 +NA,NA,a-cure-i1,2024-25,Arlington - Thompson,00100050, 0.2, 13.2, 4.7, 9.1, 12.1, 0.0, 60.7, 52.3, 47.5, 0.2,39.3 +NA,NA,a-cure-i1,2024-25,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.9, 3.0, 5.6, 2.8, 0.0, 87.6, 50.8, 49.0, 0.2,12.400000000000006 +NA,NA,a-cure-i1,2024-25,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.5, 5.7, 5.2, 3.3, 0.0, 85.2, 47.1, 52.9, 0.0,14.799999999999997 +NA,NA,a-cure-i1,2024-25,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 1.4, 2.1, 7.6, 3.6, 0.0, 85.3, 46.6, 51.7, 1.7,14.700000000000003 +NA,NA,a-cure-i1,2024-25,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.9, 1.9, 8.3, 2.6, 0.0, 86.3, 50.7, 49.3, 0.0,13.700000000000003 +NA,NA,a-cure-i1,2024-25,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.5, 1.9, 5.1, 2.9, 0.0, 89.6, 51.5, 48.3, 0.3,10.400000000000006 +NA,NA,a-cure-i1,2024-25,Ashland - Ashland High,00140505, 0.6, 13.9, 2.7, 19.7, 2.9, 0.0, 60.2, 49.2, 50.7, 0.1,39.8 +NA,NA,a-cure-i1,2024-25,Ashland - Ashland Middle,00140405, 0.1, 16.1, 3.8, 20.3, 4.4, 0.1, 55.2, 48.6, 51.2, 0.1,44.8 +NA,NA,a-cure-i1,2024-25,Ashland - David Mindess,00140015, 0.1, 22.2, 3.1, 19.1, 3.9, 0.0, 51.5, 46.0, 53.7, 0.3,48.5 +NA,NA,a-cure-i1,2024-25,Ashland - Henry E Warren Elementary,00140010, 0.2, 22.6, 2.9, 22.3, 3.8, 0.2, 48.1, 47.8, 52.2, 0.0,51.9 +NA,NA,a-cure-i1,2024-25,Ashland - William Pittaway Elementary,00140005, 0.0, 38.4, 2.3, 17.4, 4.7, 0.0, 37.2, 48.8, 51.2, 0.0,62.8 +NA,NA,a-cure-i1,2024-25,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.4, 0.4, 3.1, 34.4, 4.0, 0.1, 57.5, 45.5, 54.3, 0.3,42.5 +NA,NA,a-cure-i1,2024-25,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.9, 2.5, 15.3, 4.4, 0.0, 75.9, 49.9, 50.1, 0.0,24.099999999999994 +NA,NA,a-cure-i1,2024-25,Athol-Royalston - Athol High,06150505, 0.0, 1.9, 2.9, 19.2, 3.8, 0.0, 72.2, 44.1, 55.9, 0.0,27.799999999999997 +NA,NA,a-cure-i1,2024-25,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.2, 3.1, 20.0, 4.7, 0.0, 72.0, 47.3, 52.7, 0.0,28.0 +NA,NA,a-cure-i1,2024-25,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 6.6, 2.6, 0.0, 90.8, 42.1, 57.9, 0.0,9.200000000000003 +NA,NA,a-cure-i1,2024-25,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.2, 2.1, 7.7, 20.5, 8.0, 0.1, 61.4, 52.0, 47.9, 0.1,38.6 +NA,NA,a-cure-i1,2024-25,Attleboro - A. Irvin Studley Elementary School,00160001, 0.5, 4.0, 11.3, 18.8, 5.1, 0.3, 59.9, 44.4, 55.6, 0.0,40.1 +NA,NA,a-cure-i1,2024-25,Attleboro - Attleboro Community Academy,00160515, 1.6, 3.1, 4.7, 10.9, 12.5, 0.0, 67.2, 46.9, 51.6, 1.6,32.8 +NA,NA,a-cure-i1,2024-25,Attleboro - Attleboro High,00160505, 0.3, 5.0, 12.0, 18.9, 6.9, 0.1, 56.7, 46.0, 53.7, 0.3,43.3 +NA,NA,a-cure-i1,2024-25,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 2.6, 5.1, 7.7, 7.7, 0.0, 76.9, 12.8, 87.2, 0.0,23.099999999999994 +NA,NA,a-cure-i1,2024-25,Attleboro - Cyril K. Brennan Middle School,00160315, 0.2, 3.2, 13.5, 21.4, 6.3, 0.0, 55.4, 51.1, 48.9, 0.0,44.6 +NA,NA,a-cure-i1,2024-25,Attleboro - Early Learning Center,00160008, 1.2, 4.5, 15.6, 23.0, 4.9, 0.0, 50.8, 46.3, 53.7, 0.0,49.2 +NA,NA,a-cure-i1,2024-25,Attleboro - Hill-Roberts Elementary School,00160045, 0.2, 7.8, 8.3, 20.9, 6.1, 0.0, 56.8, 45.4, 54.6, 0.0,43.2 +NA,NA,a-cure-i1,2024-25,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 3.2, 8.5, 24.4, 8.5, 0.2, 55.3, 49.8, 50.2, 0.0,44.7 +NA,NA,a-cure-i1,2024-25,Attleboro - Peter Thacher Elementary School,00160050, 0.6, 5.4, 12.4, 22.3, 4.9, 0.0, 54.4, 46.3, 53.5, 0.2,45.6 +NA,NA,a-cure-i1,2024-25,Attleboro - Robert J. Coelho Middle School,00160305, 0.2, 5.1, 8.5, 15.0, 6.3, 0.0, 65.0, 48.1, 51.9, 0.0,35.0 +NA,NA,a-cure-i1,2024-25,Attleboro - Thomas Willett Elementary School,00160035, 0.8, 2.9, 8.8, 22.5, 6.4, 0.3, 58.2, 49.9, 50.1, 0.0,41.8 +NA,NA,a-cure-i1,2024-25,Attleboro - Wamsutta Middle School,00160320, 0.0, 3.7, 9.4, 17.9, 8.6, 0.2, 60.2, 51.3, 48.7, 0.0,39.8 +NA,NA,a-cure-i1,2024-25,Auburn - Auburn Middle,00170305, 0.0, 4.6, 4.5, 11.9, 2.7, 0.0, 76.3, 47.5, 52.4, 0.2,23.700000000000003 +NA,NA,a-cure-i1,2024-25,Auburn - Auburn Senior High,00170505, 0.1, 6.5, 6.4, 13.5, 2.2, 0.0, 71.3, 52.0, 48.0, 0.0,28.700000000000003 +NA,NA,a-cure-i1,2024-25,Auburn - Bryn Mawr,00170010, 0.0, 3.7, 6.2, 16.2, 0.4, 0.4, 73.0, 50.2, 49.8, 0.0,27.0 +NA,NA,a-cure-i1,2024-25,Auburn - Pakachoag School,00170025, 0.8, 4.8, 9.2, 15.7, 1.6, 0.0, 67.9, 44.6, 55.0, 0.4,32.099999999999994 +NA,NA,a-cure-i1,2024-25,Auburn - Swanson Road Intermediate School,00170030, 0.4, 3.6, 3.6, 13.2, 3.6, 0.2, 75.5, 49.5, 50.5, 0.0,24.5 +NA,NA,a-cure-i1,2024-25,Avon - Avon Middle High School,00180510, 0.5, 4.2, 46.5, 14.2, 5.6, 0.0, 29.1, 47.9, 52.1, 0.0,70.9 +NA,NA,a-cure-i1,2024-25,Avon - Ralph D Butler,00180010, 0.6, 4.3, 30.0, 17.0, 6.8, 0.0, 41.2, 49.5, 50.5, 0.0,58.8 +NA,NA,a-cure-i1,2024-25,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.5, 3.4, 8.9, 15.6, 2.9, 0.2, 68.6, 46.0, 54.0, 0.0,31.400000000000006 +NA,NA,a-cure-i1,2024-25,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.5, 2.2, 7.1, 15.1, 5.1, 0.2, 69.8, 43.9, 56.1, 0.0,30.200000000000003 +NA,NA,a-cure-i1,2024-25,Ayer Shirley School District - Lura A. White Elementary School,06160001, 1.7, 3.4, 7.0, 11.2, 3.6, 0.0, 73.1, 49.3, 50.7, 0.0,26.900000000000006 +NA,NA,a-cure-i1,2024-25,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.4, 7.1, 8.2, 17.6, 6.3, 0.0, 60.5, 46.0, 54.0, 0.0,39.5 +NA,NA,a-cure-i1,2024-25,Barnstable - Barnstable Community Innovation School,00200012, 0.3, 2.4, 10.9, 53.2, 6.5, 0.3, 26.3, 50.2, 49.8, 0.0,73.7 +NA,NA,a-cure-i1,2024-25,Barnstable - Barnstable High,00200505, 0.7, 1.9, 11.0, 32.9, 5.2, 0.2, 48.2, 48.5, 51.0, 0.4,51.8 +NA,NA,a-cure-i1,2024-25,Barnstable - Barnstable Intermediate School,00200315, 0.2, 2.3, 10.7, 31.0, 9.2, 0.0, 46.6, 47.2, 52.6, 0.2,53.4 +NA,NA,a-cure-i1,2024-25,Barnstable - Barnstable United Elementary School,00200050, 0.6, 1.1, 10.1, 30.3, 10.4, 0.0, 47.6, 48.2, 51.7, 0.1,52.4 +NA,NA,a-cure-i1,2024-25,Barnstable - Centerville Elementary,00200010, 0.4, 1.9, 5.6, 18.4, 6.4, 0.0, 67.4, 40.1, 59.9, 0.0,32.599999999999994 +NA,NA,a-cure-i1,2024-25,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 6.0, 10.7, 46.7, 8.0, 0.0, 28.7, 38.0, 61.3, 0.7,71.3 +NA,NA,a-cure-i1,2024-25,Barnstable - Hyannis West Elementary,00200025, 0.3, 2.6, 12.9, 55.7, 7.8, 0.0, 20.7, 51.8, 47.9, 0.3,79.3 +NA,NA,a-cure-i1,2024-25,Barnstable - West Barnstable Elementary,00200005, 0.0, 3.8, 5.9, 20.3, 11.4, 0.0, 58.6, 46.4, 53.6, 0.0,41.4 +NA,NA,a-cure-i1,2024-25,Barnstable - West Villages Elementary School,00200045, 0.2, 1.9, 3.1, 19.5, 8.7, 0.2, 66.3, 46.2, 53.8, 0.0,33.7 +NA,NA,a-cure-i1,2024-25,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.8, 25.3, 66.5, 1.0, 0.5, 5.9, 53.1, 46.9, 0.0,94.1 +NA,NA,a-cure-i1,2024-25,Bedford - Bedford High,00230505, 0.0, 18.4, 7.3, 9.4, 4.7, 0.1, 60.0, 49.0, 50.9, 0.1,40.0 +NA,NA,a-cure-i1,2024-25,Bedford - John Glenn Middle,00230305, 0.0, 22.2, 7.8, 6.5, 7.8, 0.0, 55.8, 50.0, 50.0, 0.0,44.2 +NA,NA,a-cure-i1,2024-25,Bedford - Lt Eleazer Davis,00230010, 0.0, 20.4, 8.8, 6.4, 12.4, 0.0, 52.1, 47.3, 52.7, 0.0,47.9 +NA,NA,a-cure-i1,2024-25,Bedford - Lt Job Lane School,00230012, 0.0, 25.4, 6.3, 7.2, 7.6, 0.2, 53.3, 46.1, 53.9, 0.0,46.7 +NA,NA,a-cure-i1,2024-25,Belchertown - Belchertown High,00240505, 0.0, 1.6, 2.3, 7.7, 3.8, 0.2, 84.5, 48.2, 51.3, 0.5,15.5 +NA,NA,a-cure-i1,2024-25,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.8, 0.6, 11.7, 4.3, 0.0, 82.6, 47.8, 52.2, 0.0,17.400000000000006 +NA,NA,a-cure-i1,2024-25,Belchertown - Cold Spring,00240005, 0.0, 3.2, 2.7, 11.7, 2.7, 0.0, 79.8, 45.2, 54.8, 0.0,20.200000000000003 +NA,NA,a-cure-i1,2024-25,Belchertown - Jabish Middle School,00240025, 0.3, 1.2, 1.5, 7.6, 4.4, 0.0, 85.1, 51.9, 48.1, 0.0,14.900000000000006 +NA,NA,a-cure-i1,2024-25,Belchertown - Swift River Elementary,00240018, 0.4, 2.0, 1.1, 10.6, 5.6, 0.0, 80.2, 51.5, 48.3, 0.2,19.799999999999997 +NA,NA,a-cure-i1,2024-25,Bellingham - Bellingham High School,00250505, 0.4, 3.4, 2.3, 12.2, 2.4, 0.3, 79.1, 48.9, 51.1, 0.0,20.900000000000006 +NA,NA,a-cure-i1,2024-25,Bellingham - Bellingham Memorial School,00250315, 0.3, 2.7, 3.6, 17.7, 3.9, 0.7, 71.0, 50.7, 49.3, 0.0,29.0 +NA,NA,a-cure-i1,2024-25,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.8, 5.2, 3.4, 20.0, 3.4, 0.0, 67.3, 49.1, 50.9, 0.0,32.7 +NA,NA,a-cure-i1,2024-25,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 13.8, 0.0, 0.0, 86.2, 65.5, 34.5, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Bellingham - Stall Brook,00250025, 0.0, 2.9, 3.6, 21.8, 5.0, 0.0, 66.8, 46.1, 53.9, 0.0,33.2 +NA,NA,a-cure-i1,2024-25,Belmont - Belmont High,00260505, 0.1, 23.2, 4.1, 5.7, 7.8, 0.1, 58.9, 49.2, 50.0, 0.8,41.1 +NA,NA,a-cure-i1,2024-25,Belmont - Belmont Middle School,00260315, 0.0, 24.1, 3.5, 4.0, 8.8, 0.1, 59.4, 46.9, 52.4, 0.7,40.6 +NA,NA,a-cure-i1,2024-25,Belmont - Daniel Butler,00260015, 0.4, 31.0, 2.7, 11.1, 11.9, 0.0, 42.9, 47.5, 52.5, 0.0,57.1 +NA,NA,a-cure-i1,2024-25,Belmont - Mary Lee Burbank,00260010, 0.0, 30.7, 3.8, 4.2, 4.2, 0.0, 57.1, 52.9, 46.2, 0.8,42.9 +NA,NA,a-cure-i1,2024-25,Belmont - Roger E Wellington,00260035, 0.0, 17.8, 7.7, 7.0, 9.4, 0.0, 58.0, 48.4, 50.9, 0.7,42.0 +NA,NA,a-cure-i1,2024-25,Belmont - Winn Brook,00260005, 0.0, 30.9, 5.3, 5.6, 7.9, 0.0, 50.3, 51.0, 48.7, 0.3,49.7 +NA,NA,a-cure-i1,2024-25,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 25.0, 3.6, 5.6, 8.9, 0.0, 56.9, 50.7, 48.7, 0.6,43.1 +NA,NA,a-cure-i1,2024-25,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 3.1, 84.1, 6.5, 3.7, 0.0, 2.6, 52.0, 47.7, 0.3,97.4 +NA,NA,a-cure-i1,2024-25,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 1.4, 23.9, 3.0, 7.5, 5.0, 0.7, 58.5, 51.0, 48.8, 0.2,41.5 +NA,NA,a-cure-i1,2024-25,Berkley - Berkley Community School,00270010, 0.0, 0.4, 1.7, 5.4, 5.9, 0.0, 86.5, 49.0, 51.0, 0.0,13.5 +NA,NA,a-cure-i1,2024-25,Berkley - Berkley Middle School,00270305, 0.3, 0.8, 0.8, 2.1, 4.0, 0.3, 91.7, 50.3, 49.5, 0.3,8.299999999999997 +NA,NA,a-cure-i1,2024-25,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.5, 9.1, 17.0, 6.0, 0.0, 67.3, 51.4, 45.6, 3.0,32.7 +NA,NA,a-cure-i1,2024-25,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 2.1, 1.4, 16.7, 3.5, 0.2, 76.1, 42.9, 56.1, 0.9,23.900000000000006 +NA,NA,a-cure-i1,2024-25,Berkshire Hills - Mountainside Preschool,06180001, 0.0, 0.0, 0.0, 22.2, 0.0, 0.0, 77.8, 22.2, 77.8, 0.0,22.200000000000003 +NA,NA,a-cure-i1,2024-25,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 3.3, 3.8, 17.5, 6.6, 0.0, 68.8, 49.6, 50.1, 0.3,31.200000000000003 +NA,NA,a-cure-i1,2024-25,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 1.2, 1.8, 13.8, 6.1, 0.0, 77.0, 54.0, 45.4, 0.6,23.0 +NA,NA,a-cure-i1,2024-25,Berlin-Boylston - Berlin Memorial School,06200005, 0.8, 2.5, 0.8, 12.4, 2.5, 0.0, 81.0, 48.8, 50.8, 0.4,19.0 +NA,NA,a-cure-i1,2024-25,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 5.5, 1.2, 11.2, 4.0, 0.0, 78.1, 46.1, 53.9, 0.0,21.900000000000006 +NA,NA,a-cure-i1,2024-25,Berlin-Boylston - Tahanto Regional High,06200505, 0.2, 4.2, 2.3, 8.0, 5.9, 0.2, 79.1, 50.4, 49.0, 0.6,20.900000000000006 +NA,NA,a-cure-i1,2024-25,Beverly - Ayers/Ryal Side School,00300055, 0.0, 2.1, 2.8, 9.0, 1.3, 0.0, 84.8, 49.5, 50.5, 0.0,15.200000000000003 +NA,NA,a-cure-i1,2024-25,Beverly - Beverly High,00300505, 0.1, 2.0, 3.5, 18.5, 3.9, 0.1, 72.0, 50.5, 48.7, 0.8,28.0 +NA,NA,a-cure-i1,2024-25,Beverly - Beverly Middle School,00300305, 0.0, 1.9, 3.7, 15.5, 5.2, 0.0, 73.7, 48.1, 51.9, 0.0,26.299999999999997 +NA,NA,a-cure-i1,2024-25,Beverly - Centerville Elementary,00300010, 0.0, 2.1, 4.6, 17.1, 5.8, 0.0, 70.3, 45.0, 55.0, 0.0,29.700000000000003 +NA,NA,a-cure-i1,2024-25,Beverly - Cove Elementary,00300015, 0.3, 1.0, 3.8, 18.0, 4.6, 0.0, 72.3, 46.2, 53.8, 0.0,27.700000000000003 +NA,NA,a-cure-i1,2024-25,Beverly - Hannah Elementary,00300033, 0.6, 3.5, 1.9, 12.5, 4.8, 0.0, 76.6, 46.8, 52.9, 0.3,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Beverly - McKeown School,00300002, 0.0, 1.6, 7.2, 17.6, 4.0, 0.0, 69.6, 52.0, 48.0, 0.0,30.400000000000006 +NA,NA,a-cure-i1,2024-25,Beverly - North Beverly Elementary,00300040, 0.0, 4.5, 3.7, 13.5, 3.9, 0.6, 73.9, 44.7, 55.3, 0.0,26.099999999999994 +NA,NA,a-cure-i1,2024-25,Billerica - Billerica Memorial High School,00310505, 0.3, 11.5, 8.4, 11.8, 3.7, 0.1, 64.2, 50.9, 48.9, 0.2,35.8 +NA,NA,a-cure-i1,2024-25,Billerica - Frederick J Dutile,00310007, 0.0, 13.2, 7.7, 8.4, 4.2, 0.0, 66.5, 47.4, 52.6, 0.0,33.5 +NA,NA,a-cure-i1,2024-25,Billerica - Hajjar Elementary,00310026, 0.7, 11.2, 6.0, 19.0, 3.7, 0.2, 59.1, 50.4, 49.4, 0.2,40.9 +NA,NA,a-cure-i1,2024-25,Billerica - John F Kennedy,00310012, 1.2, 3.6, 1.2, 8.5, 2.7, 0.0, 82.7, 51.2, 48.8, 0.0,17.299999999999997 +NA,NA,a-cure-i1,2024-25,Billerica - Locke Middle,00310310, 0.0, 9.8, 2.8, 8.7, 5.3, 0.0, 73.4, 49.5, 50.5, 0.0,26.599999999999994 +NA,NA,a-cure-i1,2024-25,Billerica - Marshall Middle School,00310305, 0.5, 8.9, 8.1, 13.6, 2.9, 0.2, 65.9, 54.5, 45.5, 0.0,34.099999999999994 +NA,NA,a-cure-i1,2024-25,Billerica - Parker,00310015, 0.9, 14.6, 13.0, 12.1, 2.7, 0.0, 56.7, 51.8, 48.2, 0.0,43.3 +NA,NA,a-cure-i1,2024-25,Billerica - Thomas Ditson,00310005, 0.6, 14.8, 4.8, 11.1, 3.7, 0.2, 64.9, 47.4, 52.6, 0.0,35.099999999999994 +NA,NA,a-cure-i1,2024-25,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 2.0, 2.7, 13.3, 2.6, 0.0, 79.4, 42.6, 56.6, 0.9,20.599999999999994 +NA,NA,a-cure-i1,2024-25,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.3, 2.4, 14.8, 3.9, 0.0, 77.5, 47.9, 51.5, 0.6,22.5 +NA,NA,a-cure-i1,2024-25,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.2, 2.3, 13.6, 4.3, 0.0, 78.6, 49.7, 50.3, 0.0,21.400000000000006 +NA,NA,a-cure-i1,2024-25,Blackstone-Millville - Millville Elementary,06220010, 0.0, 1.5, 3.9, 9.6, 4.4, 0.0, 80.6, 52.1, 47.7, 0.2,19.400000000000006 +NA,NA,a-cure-i1,2024-25,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.4, 3.4, 22.3, 18.8, 7.4, 0.4, 47.3, 49.5, 50.4, 0.1,52.7 +NA,NA,a-cure-i1,2024-25,Boston - Adams Elementary School,00350302, 0.0, 2.1, 5.1, 72.2, 5.1, 0.0, 15.6, 44.7, 55.3, 0.0,84.4 +NA,NA,a-cure-i1,2024-25,Boston - Albert D Holland School of Technology,00350525, 0.5, 2.5, 51.1, 40.1, 3.0, 0.0, 2.8, 43.9, 56.1, 0.0,97.2 +NA,NA,a-cure-i1,2024-25,Boston - Alighieri Dante Montessori School,00350066, 0.0, 3.7, 2.8, 56.9, 3.7, 0.0, 33.0, 48.6, 51.4, 0.0,67.0 +NA,NA,a-cure-i1,2024-25,Boston - Another Course To College,00350541, 0.4, 0.0, 49.8, 43.5, 3.6, 0.4, 2.4, 40.7, 58.5, 0.8,97.6 +NA,NA,a-cure-i1,2024-25,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 21.2, 13.3, 43.0, 9.1, 0.0, 13.3, 40.0, 60.0, 0.0,86.7 +NA,NA,a-cure-i1,2024-25,Boston - Bates Elementary School,00350278, 0.4, 2.8, 19.6, 29.5, 5.3, 0.0, 42.3, 43.4, 56.2, 0.4,57.7 +NA,NA,a-cure-i1,2024-25,Boston - Beethoven Elementary School,00350021, 0.0, 2.4, 30.3, 37.6, 5.2, 0.0, 24.4, 51.2, 48.4, 0.3,75.6 +NA,NA,a-cure-i1,2024-25,Boston - Blackstone Elementary School,00350390, 0.2, 1.7, 27.0, 65.8, 1.4, 0.0, 4.0, 46.4, 53.6, 0.0,96.0 +NA,NA,a-cure-i1,2024-25,Boston - Boston Adult Tech Academy,00350548, 0.4, 4.0, 47.6, 45.8, 0.9, 0.0, 1.3, 46.3, 53.7, 0.0,98.7 +NA,NA,a-cure-i1,2024-25,Boston - Boston Arts Academy,00350546, 0.4, 2.4, 33.8, 43.2, 3.8, 0.0, 16.4, 64.8, 33.6, 1.6,83.6 +NA,NA,a-cure-i1,2024-25,Boston - Boston Collaborative High School,00350755, 0.0, 1.4, 34.8, 57.6, 2.9, 0.5, 2.9, 45.7, 53.3, 1.0,97.1 +NA,NA,a-cure-i1,2024-25,Boston - Boston International High School & Newcomers Academy,00350507, 0.2, 4.7, 33.1, 59.2, 0.2, 0.2, 2.4, 41.4, 58.6, 0.0,97.6 +NA,NA,a-cure-i1,2024-25,Boston - Boston Latin Academy,00350545, 0.3, 15.1, 26.2, 31.4, 5.6, 0.1, 21.3, 54.8, 45.0, 0.2,78.7 +NA,NA,a-cure-i1,2024-25,Boston - Boston Latin School,00350560, 0.1, 30.7, 15.3, 16.5, 5.2, 0.1, 32.1, 53.8, 45.9, 0.3,67.9 +NA,NA,a-cure-i1,2024-25,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.4, 1.6, 22.1, 40.6, 10.0, 0.4, 24.9, 52.2, 47.8, 0.0,75.1 +NA,NA,a-cure-i1,2024-25,Boston - Bradley Elementary School,00350215, 0.0, 6.2, 7.5, 41.1, 3.1, 0.7, 41.4, 53.4, 46.6, 0.0,58.6 +NA,NA,a-cure-i1,2024-25,Boston - Brighton High School,00350505, 0.0, 2.7, 28.5, 60.4, 2.1, 0.0, 6.3, 46.5, 53.4, 0.1,93.7 +NA,NA,a-cure-i1,2024-25,Boston - Carter School,00350036, 0.0, 0.0, 50.0, 39.3, 0.0, 0.0, 10.7, 46.4, 53.6, 0.0,89.3 +NA,NA,a-cure-i1,2024-25,Boston - Channing Elementary School,00350360, 0.5, 1.0, 49.0, 40.2, 1.5, 0.0, 7.7, 40.2, 59.8, 0.0,92.3 +NA,NA,a-cure-i1,2024-25,Boston - Charlestown High School,00350515, 0.0, 5.4, 21.6, 64.1, 1.6, 0.0, 7.3, 40.6, 59.4, 0.0,92.7 +NA,NA,a-cure-i1,2024-25,Boston - Chittick Elementary School,00350154, 0.0, 0.8, 57.7, 33.9, 2.4, 0.0, 5.2, 45.2, 54.8, 0.0,94.8 +NA,NA,a-cure-i1,2024-25,Boston - Clap Elementary School,00350298, 0.0, 7.1, 33.6, 43.6, 4.3, 0.0, 11.4, 45.7, 54.3, 0.0,88.6 +NA,NA,a-cure-i1,2024-25,Boston - Community Academy,00350518, 0.0, 0.0, 46.6, 43.1, 8.6, 0.0, 1.7, 37.9, 62.1, 0.0,98.3 +NA,NA,a-cure-i1,2024-25,Boston - Community Academy of Science and Health,00350581, 0.3, 4.5, 62.3, 29.4, 1.8, 0.3, 1.5, 50.8, 49.2, 0.0,98.5 +NA,NA,a-cure-i1,2024-25,Boston - Condon K-8 School,00350146, 1.2, 5.2, 35.9, 44.0, 2.9, 0.6, 10.2, 46.1, 53.9, 0.0,89.8 +NA,NA,a-cure-i1,2024-25,Boston - Conley Elementary School,00350122, 1.4, 0.7, 25.0, 50.0, 4.7, 1.4, 16.9, 39.2, 60.8, 0.0,83.1 +NA,NA,a-cure-i1,2024-25,Boston - Curley K-8 School,00350020, 0.0, 4.5, 17.5, 39.2, 7.2, 0.1, 31.4, 42.5, 57.5, 0.0,68.6 +NA,NA,a-cure-i1,2024-25,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.4, 61.6, 33.5, 2.7, 0.4, 1.6, 49.0, 50.8, 0.2,98.4 +NA,NA,a-cure-i1,2024-25,Boston - Dever Elementary School,00350268, 0.0, 3.1, 21.6, 65.6, 1.6, 0.2, 7.9, 49.0, 51.0, 0.0,92.1 +NA,NA,a-cure-i1,2024-25,Boston - East Boston Early Education Center,00350009, 0.0, 1.1, 2.8, 64.2, 6.3, 0.0, 25.6, 50.6, 49.4, 0.0,74.4 +NA,NA,a-cure-i1,2024-25,Boston - East Boston High School,00350530, 0.0, 1.3, 5.0, 83.2, 1.4, 0.0, 9.0, 45.9, 54.0, 0.1,91.0 +NA,NA,a-cure-i1,2024-25,Boston - Edison Elementary School,00350375, 0.2, 7.2, 17.9, 56.8, 2.6, 0.0, 15.3, 47.2, 52.8, 0.0,84.7 +NA,NA,a-cure-i1,2024-25,Boston - Eliot K-8 Innovation School,00350096, 0.0, 9.4, 5.5, 15.2, 6.8, 0.1, 63.0, 47.4, 52.6, 0.0,37.0 +NA,NA,a-cure-i1,2024-25,Boston - Ellis Elementary School,00350072, 0.3, 0.0, 28.4, 65.5, 2.3, 0.0, 3.6, 50.4, 49.6, 0.0,96.4 +NA,NA,a-cure-i1,2024-25,Boston - Ellison-Parks Early Education School,00350008, 0.0, 2.6, 52.6, 39.5, 3.2, 0.0, 2.1, 43.2, 56.8, 0.0,97.9 +NA,NA,a-cure-i1,2024-25,Boston - English High School,00350535, 0.0, 1.0, 27.6, 65.8, 2.2, 0.1, 3.2, 47.2, 52.8, 0.0,96.8 +NA,NA,a-cure-i1,2024-25,Boston - Everett Elementary School,00350088, 0.7, 11.1, 41.3, 33.7, 2.1, 0.0, 11.1, 48.3, 51.7, 0.0,88.9 +NA,NA,a-cure-i1,2024-25,Boston - Excel High School,00350522, 0.0, 17.6, 37.2, 33.6, 4.3, 0.3, 7.0, 40.2, 59.8, 0.0,93.0 +NA,NA,a-cure-i1,2024-25,Boston - Fenway High School,00350540, 0.6, 3.0, 29.6, 58.0, 1.7, 0.0, 7.2, 52.5, 47.5, 0.0,92.8 +NA,NA,a-cure-i1,2024-25,Boston - Frederick Pilot Middle School,00350383, 0.5, 2.3, 38.1, 55.8, 0.9, 0.5, 1.9, 53.5, 46.5, 0.0,98.1 +NA,NA,a-cure-i1,2024-25,Boston - Gardner Pilot Academy,00350326, 0.0, 4.7, 13.7, 64.6, 4.7, 0.0, 12.4, 46.2, 53.3, 0.5,87.6 +NA,NA,a-cure-i1,2024-25,Boston - Greater Egleston High School,00350543, 0.0, 3.8, 38.5, 53.8, 3.8, 0.0, 0.0, 46.2, 53.8, 0.0,100.0 +NA,NA,a-cure-i1,2024-25,Boston - Greenwood Sarah K-8 School,00350308, 0.3, 0.6, 10.6, 86.0, 0.8, 0.0, 1.7, 49.6, 50.4, 0.0,98.3 +NA,NA,a-cure-i1,2024-25,Boston - Grew Elementary School,00350135, 0.5, 0.5, 36.9, 42.4, 8.6, 0.0, 11.1, 49.0, 51.0, 0.0,88.9 +NA,NA,a-cure-i1,2024-25,Boston - Guild Elementary School,00350062, 0.0, 0.4, 5.0, 84.2, 1.5, 0.0, 8.9, 44.0, 56.0, 0.0,91.1 +NA,NA,a-cure-i1,2024-25,Boston - Hale Elementary School,00350243, 0.6, 6.8, 49.4, 20.4, 8.0, 0.0, 14.8, 53.1, 46.9, 0.0,85.2 +NA,NA,a-cure-i1,2024-25,Boston - Haley Pilot School,00350077, 0.3, 0.8, 42.8, 31.1, 4.7, 0.0, 20.3, 49.2, 50.3, 0.6,79.7 +NA,NA,a-cure-i1,2024-25,Boston - Harvard-Kent Elementary School,00350200, 0.0, 12.3, 14.7, 28.1, 3.9, 0.0, 41.0, 48.2, 51.8, 0.0,59.0 +NA,NA,a-cure-i1,2024-25,Boston - Haynes Early Education Center,00350010, 0.6, 1.8, 44.6, 47.6, 1.8, 0.0, 3.6, 46.4, 53.6, 0.0,96.4 +NA,NA,a-cure-i1,2024-25,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 14.8, 28.1, 32.7, 8.2, 2.6, 13.8, 47.4, 52.6, 0.0,86.2 +NA,NA,a-cure-i1,2024-25,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.5, 6.5, 47.4, 33.9, 4.4, 0.2, 7.1, 46.3, 53.7, 0.0,92.9 +NA,NA,a-cure-i1,2024-25,Boston - Hennigan K-8 School,00350153, 0.2, 1.9, 27.3, 65.0, 2.3, 0.2, 3.0, 47.9, 52.1, 0.0,97.0 +NA,NA,a-cure-i1,2024-25,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 3.0, 78.5, 3.5, 0.0, 15.1, 53.2, 46.8, 0.0,84.9 +NA,NA,a-cure-i1,2024-25,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.6, 29.2, 62.3, 4.5, 0.0, 3.2, 44.2, 55.8, 0.0,96.8 +NA,NA,a-cure-i1,2024-25,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.9, 36.6, 54.9, 2.8, 0.0, 4.7, 46.0, 54.0, 0.0,95.3 +NA,NA,a-cure-i1,2024-25,Boston - Holmes Elementary School,00350138, 0.4, 1.8, 53.0, 40.3, 3.9, 0.0, 0.7, 44.5, 55.5, 0.0,99.3 +NA,NA,a-cure-i1,2024-25,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 6.8, 26.0, 49.3, 2.7, 0.0, 15.1, 28.8, 71.2, 0.0,84.9 +NA,NA,a-cure-i1,2024-25,Boston - Hurley K-8 School,00350182, 0.6, 1.8, 6.0, 66.9, 2.7, 0.0, 22.1, 54.9, 44.8, 0.3,77.9 +NA,NA,a-cure-i1,2024-25,Boston - Kennedy John F Elementary School,00350166, 0.3, 2.8, 16.5, 58.9, 5.3, 0.0, 16.3, 49.4, 50.6, 0.0,83.7 +NA,NA,a-cure-i1,2024-25,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 2.9, 92.1, 0.7, 0.0, 4.3, 46.2, 53.8, 0.0,95.7 +NA,NA,a-cure-i1,2024-25,Boston - Kenny Elementary School,00350328, 0.0, 12.8, 27.4, 32.8, 7.9, 0.0, 19.1, 45.9, 53.8, 0.3,80.9 +NA,NA,a-cure-i1,2024-25,Boston - Kilmer K-8 School,00350190, 0.2, 5.5, 23.7, 23.7, 5.0, 0.0, 41.9, 46.1, 53.9, 0.0,58.1 +NA,NA,a-cure-i1,2024-25,Boston - King Elementary School,00350376, 0.4, 0.9, 49.6, 41.8, 2.8, 0.0, 4.5, 42.9, 57.1, 0.0,95.5 +NA,NA,a-cure-i1,2024-25,Boston - Lee Academy,00350001, 0.0, 2.6, 43.1, 43.6, 5.6, 0.0, 5.1, 45.6, 54.4, 0.0,94.9 +NA,NA,a-cure-i1,2024-25,Boston - Lee K-8 School,00350183, 0.7, 2.5, 47.9, 41.7, 3.1, 0.4, 3.6, 41.2, 58.8, 0.0,96.4 +NA,NA,a-cure-i1,2024-25,Boston - Lyndon K-8 School,00350262, 0.2, 4.5, 8.8, 23.4, 5.1, 0.0, 58.0, 51.0, 49.0, 0.0,42.0 +NA,NA,a-cure-i1,2024-25,Boston - Lyon High School,00350655, 0.0, 8.4, 21.1, 51.6, 8.4, 0.0, 10.5, 43.2, 56.8, 0.0,89.5 +NA,NA,a-cure-i1,2024-25,Boston - Lyon K-8 School,00350004, 0.7, 5.6, 21.0, 41.3, 7.0, 0.0, 24.5, 46.9, 53.1, 0.0,75.5 +NA,NA,a-cure-i1,2024-25,Boston - Madison Park Technical Vocational High School,00350537, 0.2, 1.0, 41.2, 52.7, 2.3, 0.2, 2.4, 41.5, 58.3, 0.2,97.6 +NA,NA,a-cure-i1,2024-25,Boston - Manning Elementary School,00350184, 0.0, 5.0, 13.8, 19.5, 8.2, 0.0, 53.5, 50.3, 49.7, 0.0,46.5 +NA,NA,a-cure-i1,2024-25,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 8.2, 90.7, 0.5, 0.0, 0.7, 52.3, 47.7, 0.0,99.3 +NA,NA,a-cure-i1,2024-25,Boston - Mario Umana Academy,00350656, 0.2, 0.3, 3.0, 92.7, 0.8, 0.0, 3.0, 45.9, 54.1, 0.0,97.0 +NA,NA,a-cure-i1,2024-25,Boston - Mason Elementary School,00350304, 0.5, 0.0, 50.7, 40.0, 3.9, 0.0, 4.9, 45.4, 54.6, 0.0,95.1 +NA,NA,a-cure-i1,2024-25,Boston - Mather Elementary School,00350227, 0.8, 33.0, 35.5, 19.7, 3.8, 0.4, 6.8, 50.1, 49.9, 0.0,93.2 +NA,NA,a-cure-i1,2024-25,Boston - Mattahunt Elementary School,00350016, 0.3, 0.7, 70.6, 24.3, 2.9, 0.0, 1.2, 41.1, 58.9, 0.0,98.8 +NA,NA,a-cure-i1,2024-25,Boston - McKay K-8 School,00350080, 0.2, 0.9, 3.3, 87.3, 0.6, 0.0, 7.7, 49.8, 50.2, 0.0,92.3 +NA,NA,a-cure-i1,2024-25,Boston - McKinley Schools,00350363, 0.8, 0.8, 48.8, 39.2, 3.2, 0.0, 7.2, 29.6, 70.4, 0.0,92.8 +NA,NA,a-cure-i1,2024-25,Boston - Mendell Elementary School,00350100, 0.3, 3.9, 25.9, 36.9, 7.8, 0.0, 25.2, 44.0, 55.7, 0.3,74.8 +NA,NA,a-cure-i1,2024-25,Boston - Mildred Avenue K-8 School,00350378, 0.5, 1.3, 55.1, 36.6, 3.8, 0.0, 2.7, 48.6, 51.4, 0.0,97.3 +NA,NA,a-cure-i1,2024-25,Boston - Mozart Elementary School,00350237, 0.0, 1.9, 25.8, 21.3, 7.1, 0.6, 43.2, 49.7, 49.7, 0.6,56.8 +NA,NA,a-cure-i1,2024-25,Boston - Murphy K-8 School,00350240, 0.4, 49.5, 18.9, 16.0, 3.5, 0.1, 11.6, 49.2, 50.8, 0.0,88.4 +NA,NA,a-cure-i1,2024-25,Boston - New Mission High School,00350542, 0.4, 2.1, 46.4, 39.7, 2.2, 0.1, 9.0, 43.1, 56.6, 0.3,91.0 +NA,NA,a-cure-i1,2024-25,Boston - O'Bryant School of Math & Science,00350575, 0.2, 17.0, 30.0, 37.2, 3.0, 0.2, 12.5, 47.6, 52.3, 0.1,87.5 +NA,NA,a-cure-i1,2024-25,Boston - O'Donnell Elementary School,00350141, 0.0, 2.0, 2.7, 89.1, 0.0, 0.0, 6.3, 53.5, 46.5, 0.0,93.7 +NA,NA,a-cure-i1,2024-25,Boston - Ohrenberger School,00350258, 0.6, 2.9, 38.4, 39.6, 2.9, 0.2, 15.3, 45.1, 54.7, 0.2,84.7 +NA,NA,a-cure-i1,2024-25,Boston - Orchard Gardens K-8 School,00350257, 0.3, 1.6, 55.0, 38.8, 1.3, 0.6, 2.5, 49.1, 50.9, 0.0,97.5 +NA,NA,a-cure-i1,2024-25,Boston - Otis Elementary School,00350156, 0.0, 2.0, 2.5, 72.1, 2.7, 0.0, 20.8, 48.3, 51.7, 0.0,79.2 +NA,NA,a-cure-i1,2024-25,Boston - Perkins Elementary School,00350231, 0.6, 5.4, 36.5, 45.5, 3.0, 0.0, 9.0, 46.1, 53.9, 0.0,91.0 +NA,NA,a-cure-i1,2024-25,Boston - Perry Elementary School,00350255, 0.0, 5.2, 13.6, 16.9, 2.8, 0.0, 61.5, 47.9, 52.1, 0.0,38.5 +NA,NA,a-cure-i1,2024-25,Boston - Philbrick Elementary School,00350172, 0.0, 0.8, 32.1, 39.7, 6.9, 0.0, 20.6, 51.9, 48.1, 0.0,79.4 +NA,NA,a-cure-i1,2024-25,Boston - Quincy Elementary School,00350286, 0.0, 50.6, 13.1, 10.9, 7.4, 0.1, 17.8, 51.0, 49.0, 0.0,82.2 +NA,NA,a-cure-i1,2024-25,Boston - Quincy Upper School,00350565, 0.4, 43.4, 20.8, 23.9, 3.8, 0.0, 7.7, 50.6, 49.2, 0.2,92.3 +NA,NA,a-cure-i1,2024-25,Boston - Roosevelt K-8 School,00350116, 0.5, 4.1, 36.5, 35.4, 6.3, 0.0, 17.0, 47.5, 52.5, 0.0,83.0 +NA,NA,a-cure-i1,2024-25,Boston - Russell Elementary School,00350366, 0.0, 2.2, 30.9, 59.3, 0.8, 0.6, 6.2, 48.0, 52.0, 0.0,93.8 +NA,NA,a-cure-i1,2024-25,Boston - Ruth Batson Academy,00350558, 0.2, 3.8, 25.3, 63.7, 1.2, 0.0, 5.8, 47.0, 52.8, 0.2,94.2 +NA,NA,a-cure-i1,2024-25,Boston - Shaw-Taylor Elementary School,00350014, 0.6, 1.1, 68.9, 26.5, 1.9, 0.0, 0.9, 50.0, 50.0, 0.0,99.1 +NA,NA,a-cure-i1,2024-25,Boston - Snowden International High School,00350690, 0.2, 2.6, 29.5, 56.8, 3.8, 0.0, 7.1, 50.6, 48.9, 0.5,92.9 +NA,NA,a-cure-i1,2024-25,Boston - Sumner Elementary School,00350052, 0.3, 1.7, 16.0, 48.8, 6.1, 0.0, 27.1, 46.0, 54.0, 0.0,72.9 +NA,NA,a-cure-i1,2024-25,Boston - TechBoston Academy,00350657, 0.4, 2.2, 61.8, 30.6, 3.3, 0.0, 1.8, 45.5, 54.5, 0.0,98.2 +NA,NA,a-cure-i1,2024-25,Boston - Tobin K-8 School,00350229, 0.0, 6.0, 23.6, 63.2, 2.5, 0.0, 4.7, 50.0, 50.0, 0.0,95.3 +NA,NA,a-cure-i1,2024-25,Boston - Trotter Elementary School,00350370, 0.6, 1.7, 49.7, 40.6, 4.3, 0.3, 2.8, 44.9, 55.1, 0.0,97.2 +NA,NA,a-cure-i1,2024-25,Boston - Tynan Elementary School,00350181, 0.0, 7.9, 37.9, 33.9, 5.7, 0.4, 14.1, 40.5, 59.5, 0.0,85.9 +NA,NA,a-cure-i1,2024-25,Boston - UP Academy Holland,00350167, 0.6, 1.9, 45.9, 45.6, 3.6, 0.2, 2.3, 53.5, 46.5, 0.0,97.7 +NA,NA,a-cure-i1,2024-25,Boston - Warren-Prescott K-8 School,00350346, 0.2, 3.6, 10.8, 19.9, 5.1, 0.0, 60.4, 48.7, 51.3, 0.0,39.6 +NA,NA,a-cure-i1,2024-25,Boston - West Zone Early Learning Center,00350006, 0.0, 9.2, 21.1, 56.6, 2.6, 0.0, 10.5, 36.8, 63.2, 0.0,89.5 +NA,NA,a-cure-i1,2024-25,Boston - Winship Elementary School,00350374, 0.0, 18.7, 9.1, 36.3, 7.6, 0.0, 28.3, 49.0, 50.7, 0.3,71.7 +NA,NA,a-cure-i1,2024-25,Boston - Winthrop Elementary School,00350180, 0.9, 2.7, 50.4, 38.1, 4.0, 0.4, 3.5, 52.2, 47.8, 0.0,96.5 +NA,NA,a-cure-i1,2024-25,Boston - Young Achievers K-8 School,00350380, 1.2, 0.2, 42.3, 53.8, 1.2, 0.4, 0.8, 47.4, 52.6, 0.0,99.2 +NA,NA,a-cure-i1,2024-25,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 3.1, 24.9, 25.3, 4.1, 0.0, 42.7, 51.6, 48.3, 0.1,57.3 +NA,NA,a-cure-i1,2024-25,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.9, 1.2, 52.6, 41.2, 0.9, 0.0, 3.1, 57.0, 42.1, 0.9,96.9 +NA,NA,a-cure-i1,2024-25,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.7, 2.1, 42.7, 44.8, 3.1, 0.0, 6.6, 48.4, 51.6, 0.0,93.4 +NA,NA,a-cure-i1,2024-25,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.7, 0.3, 59.9, 32.7, 4.3, 0.7, 1.4, 50.1, 49.9, 0.0,98.6 +NA,NA,a-cure-i1,2024-25,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 54.4, 41.3, 3.2, 0.0, 1.2, 51.6, 48.4, 0.0,98.8 +NA,NA,a-cure-i1,2024-25,Bourne - Bourne High School,00360505, 1.5, 3.2, 1.5, 7.0, 8.2, 0.0, 78.6, 53.4, 46.6, 0.0,21.400000000000006 +NA,NA,a-cure-i1,2024-25,Bourne - Bourne Intermediate School,00360030, 0.3, 1.9, 1.4, 7.0, 10.6, 0.3, 78.6, 47.4, 52.6, 0.0,21.400000000000006 +NA,NA,a-cure-i1,2024-25,Bourne - Bourne Middle School,00360325, 0.5, 2.0, 1.5, 5.3, 5.8, 0.0, 84.8, 50.3, 49.7, 0.0,15.200000000000003 +NA,NA,a-cure-i1,2024-25,Bourne - Bournedale Elementary School,00360005, 0.9, 2.4, 3.3, 8.5, 6.1, 0.2, 78.6, 44.7, 55.3, 0.0,21.400000000000006 +NA,NA,a-cure-i1,2024-25,Boxford - Harry Lee Cole,00380005, 0.0, 1.4, 1.1, 3.0, 4.9, 0.0, 89.6, 51.2, 48.8, 0.0,10.400000000000006 +NA,NA,a-cure-i1,2024-25,Boxford - Spofford Pond,00380013, 0.0, 2.2, 0.5, 5.8, 4.6, 0.0, 86.9, 48.2, 51.8, 0.0,13.099999999999994 +NA,NA,a-cure-i1,2024-25,Braintree - Archie T Morrison,00400033, 0.0, 28.4, 8.3, 10.4, 5.5, 0.3, 47.1, 48.9, 51.1, 0.0,52.9 +NA,NA,a-cure-i1,2024-25,Braintree - Braintree High,00400505, 0.2, 29.2, 6.3, 7.4, 2.3, 0.2, 54.4, 48.6, 51.1, 0.2,45.6 +NA,NA,a-cure-i1,2024-25,Braintree - Donald Ross,00400050, 0.0, 25.3, 15.4, 11.0, 5.5, 0.0, 42.9, 50.5, 49.5, 0.0,57.1 +NA,NA,a-cure-i1,2024-25,Braintree - East Middle School,00400305, 0.2, 28.2, 7.1, 7.8, 3.3, 0.0, 53.4, 48.0, 51.9, 0.1,46.6 +NA,NA,a-cure-i1,2024-25,Braintree - Highlands,00400015, 0.0, 24.0, 3.1, 6.3, 2.0, 0.0, 64.6, 50.3, 49.7, 0.0,35.400000000000006 +NA,NA,a-cure-i1,2024-25,Braintree - Hollis,00400005, 0.5, 27.9, 7.1, 7.7, 4.7, 0.0, 52.1, 50.7, 49.0, 0.3,47.9 +NA,NA,a-cure-i1,2024-25,Braintree - Liberty,00400025, 0.5, 32.2, 5.2, 9.8, 3.5, 0.3, 48.5, 44.1, 55.9, 0.0,51.5 +NA,NA,a-cure-i1,2024-25,Braintree - Mary E Flaherty School,00400020, 0.0, 30.7, 4.8, 6.9, 8.3, 0.0, 49.3, 46.6, 53.4, 0.0,50.7 +NA,NA,a-cure-i1,2024-25,Braintree - South Middle School,00400310, 0.2, 27.4, 2.7, 6.5, 3.3, 0.3, 59.7, 46.5, 53.5, 0.0,40.3 +NA,NA,a-cure-i1,2024-25,Brewster - Eddy Elementary,00410010, 0.0, 2.0, 5.1, 12.2, 9.1, 0.0, 71.6, 48.7, 51.3, 0.0,28.400000000000006 +NA,NA,a-cure-i1,2024-25,Brewster - Stony Brook Elementary,00410005, 0.0, 1.7, 6.2, 10.7, 6.6, 0.0, 74.8, 49.6, 50.4, 0.0,25.200000000000003 +NA,NA,a-cure-i1,2024-25,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.9, 59.0, 36.2, 2.7, 0.3, 0.9, 52.3, 47.7, 0.0,99.1 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.1, 2.2, 11.8, 7.7, 3.6, 0.4, 74.2, 46.9, 53.1, 0.0,25.799999999999997 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.1, 2.7, 16.7, 6.0, 5.5, 0.1, 68.9, 49.9, 50.0, 0.1,31.099999999999994 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 3.1, 14.0, 8.5, 6.1, 0.2, 68.1, 47.9, 52.1, 0.0,31.900000000000006 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 4.2, 14.2, 12.6, 5.2, 0.0, 63.9, 49.4, 50.6, 0.0,36.1 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.3, 3.1, 12.5, 10.7, 5.0, 0.2, 68.1, 47.6, 52.4, 0.0,31.900000000000006 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 2.8, 12.3, 4.8, 3.9, 0.0, 76.2, 49.3, 50.7, 0.0,23.799999999999997 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 20.0, 10.0, 0.0, 0.0, 70.0, 60.0, 40.0, 0.0,30.0 +NA,NA,a-cure-i1,2024-25,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 2.1, 13.1, 9.2, 6.4, 0.0, 69.3, 49.0, 51.0, 0.0,30.700000000000003 +NA,NA,a-cure-i1,2024-25,Brimfield - Brimfield Elementary,00430005, 0.8, 0.8, 0.0, 5.8, 4.3, 0.0, 88.4, 49.6, 50.4, 0.0,11.599999999999994 +NA,NA,a-cure-i1,2024-25,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.8, 0.2, 3.3, 18.5, 0.3, 0.0, 76.9, 66.2, 33.4, 0.3,23.099999999999994 +NA,NA,a-cure-i1,2024-25,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.3, 0.7, 5.6, 8.5, 4.8, 0.1, 79.9, 42.2, 57.6, 0.2,20.099999999999994 +NA,NA,a-cure-i1,2024-25,Brockton - Ashfield Middle School,00440421, 0.2, 1.3, 60.1, 13.7, 3.6, 0.0, 21.1, 47.9, 52.1, 0.0,78.9 +NA,NA,a-cure-i1,2024-25,Brockton - Barrett Russell Early Childhood Center,00440008, 0.5, 1.0, 67.9, 17.7, 4.3, 1.0, 7.7, 38.8, 61.2, 0.0,92.3 +NA,NA,a-cure-i1,2024-25,Brockton - Brockton High,00440505, 0.2, 2.3, 64.4, 19.7, 3.6, 0.2, 9.7, 44.6, 55.4, 0.0,90.3 +NA,NA,a-cure-i1,2024-25,Brockton - Brockton Therapeutic Day School,00440400, 0.0, 0.0, 50.0, 16.7, 3.3, 0.0, 30.0, 43.3, 53.3, 3.3,70.0 +NA,NA,a-cure-i1,2024-25,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 3.3, 42.6, 19.7, 11.5, 0.0, 23.0, 51.6, 47.5, 0.8,77.0 +NA,NA,a-cure-i1,2024-25,Brockton - Brookfield,00440010, 0.8, 1.1, 54.3, 22.0, 5.5, 0.2, 16.2, 47.6, 52.4, 0.0,83.8 +NA,NA,a-cure-i1,2024-25,Brockton - Champion High School,00440535, 0.0, 0.0, 57.1, 18.4, 11.0, 0.6, 12.9, 47.9, 51.5, 0.6,87.1 +NA,NA,a-cure-i1,2024-25,Brockton - Downey,00440110, 0.0, 1.3, 57.1, 21.9, 7.1, 0.2, 12.3, 45.5, 54.5, 0.0,87.7 +NA,NA,a-cure-i1,2024-25,Brockton - Dr W Arnone Community School,00440001, 0.8, 0.3, 61.7, 27.4, 4.3, 0.7, 4.8, 48.0, 52.0, 0.0,95.2 +NA,NA,a-cure-i1,2024-25,Brockton - East Middle School,00440405, 0.7, 1.0, 66.0, 16.4, 2.1, 0.0, 13.8, 43.7, 56.3, 0.0,86.2 +NA,NA,a-cure-i1,2024-25,Brockton - Edgar B Davis,00440023, 0.5, 0.5, 64.3, 20.4, 5.6, 0.1, 8.5, 48.3, 51.7, 0.0,91.5 +NA,NA,a-cure-i1,2024-25,Brockton - Edison Evening Academy,00440520, 0.4, 0.9, 78.2, 15.6, 1.3, 0.0, 3.6, 43.1, 56.9, 0.0,96.4 +NA,NA,a-cure-i1,2024-25,Brockton - Gilmore Elementary School,00440055, 1.1, 0.0, 70.5, 22.5, 2.7, 0.0, 3.2, 43.9, 56.1, 0.0,96.8 +NA,NA,a-cure-i1,2024-25,Brockton - Hancock,00440045, 0.3, 2.2, 52.2, 25.4, 5.4, 0.1, 14.3, 51.2, 48.8, 0.0,85.7 +NA,NA,a-cure-i1,2024-25,Brockton - John F Kennedy,00440017, 0.6, 0.9, 54.2, 24.5, 5.2, 0.0, 14.7, 53.2, 46.2, 0.6,85.3 +NA,NA,a-cure-i1,2024-25,Brockton - Louis F Angelo Elementary,00440065, 0.5, 2.2, 55.7, 25.1, 3.3, 0.0, 13.3, 44.5, 55.5, 0.0,86.7 +NA,NA,a-cure-i1,2024-25,Brockton - Manthala George Jr. School,00440003, 0.1, 0.5, 55.7, 31.7, 3.7, 0.2, 8.0, 51.3, 48.7, 0.0,92.0 +NA,NA,a-cure-i1,2024-25,Brockton - Mary E. Baker School,00440002, 0.7, 1.7, 52.4, 24.4, 6.8, 0.7, 13.4, 51.1, 48.9, 0.0,86.6 +NA,NA,a-cure-i1,2024-25,Brockton - North Middle School,00440410, 0.7, 1.9, 69.3, 12.9, 6.6, 0.2, 8.4, 50.4, 49.6, 0.0,91.6 +NA,NA,a-cure-i1,2024-25,Brockton - Oscar F Raymond,00440078, 0.3, 0.8, 76.6, 14.1, 2.3, 0.3, 5.4, 47.0, 53.0, 0.0,94.6 +NA,NA,a-cure-i1,2024-25,Brockton - Plouffe Middle School,00440422, 0.3, 1.1, 41.6, 47.7, 3.3, 0.0, 5.9, 52.0, 48.0, 0.0,94.1 +NA,NA,a-cure-i1,2024-25,Brockton - PROMISE College and Career Academy,00440525, 0.7, 0.7, 60.1, 22.5, 4.3, 0.0, 11.6, 43.5, 56.5, 0.0,88.4 +NA,NA,a-cure-i1,2024-25,Brockton - South Middle School,00440415, 0.5, 1.5, 67.6, 14.8, 3.3, 0.0, 12.3, 51.3, 48.7, 0.0,87.7 +NA,NA,a-cure-i1,2024-25,Brockton - West Middle School,00440420, 0.0, 1.1, 66.6, 14.4, 4.3, 0.2, 13.3, 48.8, 51.2, 0.0,86.7 +NA,NA,a-cure-i1,2024-25,Brooke Charter School (District) - Brooke Charter School,04280305, 0.3, 1.4, 48.6, 43.2, 2.6, 0.1, 3.7, 51.9, 48.0, 0.2,96.3 +NA,NA,a-cure-i1,2024-25,Brookfield - Brookfield Elementary,00450005, 0.0, 0.3, 2.4, 7.6, 4.8, 0.0, 84.8, 47.1, 52.9, 0.0,15.200000000000003 +NA,NA,a-cure-i1,2024-25,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 40.4, 2.1, 6.4, 12.8, 0.0, 38.3, 29.8, 70.2, 0.0,61.7 +NA,NA,a-cure-i1,2024-25,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 39.1, 6.5, 8.7, 10.9, 0.0, 34.8, 47.8, 52.2, 0.0,65.2 +NA,NA,a-cure-i1,2024-25,Brookline - Brookline High,00460505, 0.0, 17.9, 6.5, 12.1, 9.7, 0.0, 53.6, 49.3, 49.4, 1.3,46.4 +NA,NA,a-cure-i1,2024-25,Brookline - Edith C Baker,00460005, 0.0, 33.5, 7.1, 10.7, 8.7, 0.0, 40.0, 50.1, 49.9, 0.0,60.0 +NA,NA,a-cure-i1,2024-25,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 16.7, 5.8, 13.7, 12.0, 0.0, 51.8, 50.9, 49.1, 0.0,48.2 +NA,NA,a-cure-i1,2024-25,Brookline - John D Runkle,00460045, 0.0, 15.3, 3.4, 17.4, 14.3, 0.0, 49.6, 43.9, 55.5, 0.6,50.4 +NA,NA,a-cure-i1,2024-25,Brookline - Lawrence,00460030, 0.0, 37.0, 5.1, 8.6, 9.5, 0.2, 39.7, 51.4, 48.6, 0.0,60.3 +NA,NA,a-cure-i1,2024-25,Brookline - Michael Driscoll,00460020, 0.2, 19.6, 5.3, 13.4, 13.6, 0.0, 48.0, 47.4, 52.4, 0.2,52.0 +NA,NA,a-cure-i1,2024-25,Brookline - Pierce,00460040, 0.0, 27.4, 6.1, 11.3, 13.0, 0.0, 42.2, 51.5, 48.5, 0.0,57.8 +NA,NA,a-cure-i1,2024-25,Brookline - Roland Hayes,00460025, 0.0, 17.0, 6.5, 12.2, 12.4, 0.0, 51.9, 46.2, 53.8, 0.0,48.1 +NA,NA,a-cure-i1,2024-25,Brookline - The Lynch Center,00460060, 0.0, 40.0, 14.0, 4.0, 14.0, 0.0, 28.0, 56.0, 44.0, 0.0,72.0 +NA,NA,a-cure-i1,2024-25,Brookline - William H Lincoln,00460035, 0.2, 25.9, 10.3, 14.2, 11.1, 0.0, 38.3, 49.4, 50.6, 0.0,61.7 +NA,NA,a-cure-i1,2024-25,Burlington - Burlington High,00480505, 0.2, 20.2, 9.0, 13.2, 3.0, 0.0, 54.3, 49.0, 50.4, 0.6,45.7 +NA,NA,a-cure-i1,2024-25,Burlington - Fox Hill,00480007, 0.2, 18.3, 6.4, 8.5, 5.7, 0.0, 60.9, 47.1, 52.9, 0.0,39.1 +NA,NA,a-cure-i1,2024-25,Burlington - Francis Wyman Elementary,00480035, 0.0, 15.8, 9.9, 10.5, 5.3, 0.0, 58.6, 49.4, 50.6, 0.0,41.4 +NA,NA,a-cure-i1,2024-25,Burlington - Marshall Simonds Middle,00480303, 0.2, 15.6, 7.4, 10.6, 4.6, 0.2, 61.3, 50.6, 49.3, 0.1,38.7 +NA,NA,a-cure-i1,2024-25,Burlington - Memorial,00480015, 0.0, 20.4, 5.6, 12.4, 5.6, 0.3, 55.6, 51.1, 48.9, 0.0,44.4 +NA,NA,a-cure-i1,2024-25,Burlington - Pine Glen Elementary,00480020, 0.0, 23.4, 5.6, 8.4, 3.8, 0.0, 58.8, 46.6, 53.4, 0.0,41.2 +NA,NA,a-cure-i1,2024-25,Cambridge - Amigos School,00490006, 0.0, 3.4, 5.8, 50.8, 8.2, 0.0, 31.7, 48.7, 51.3, 0.0,68.3 +NA,NA,a-cure-i1,2024-25,Cambridge - Cambridge Rindge and Latin,00490506, 0.4, 13.0, 26.4, 14.1, 10.1, 0.0, 36.0, 48.7, 50.5, 0.7,64.0 +NA,NA,a-cure-i1,2024-25,Cambridge - Cambridge Street Upper School,00490305, 0.0, 8.6, 31.6, 12.0, 13.0, 0.3, 34.6, 46.2, 52.5, 1.3,65.4 +NA,NA,a-cure-i1,2024-25,Cambridge - Cambridgeport,00490007, 0.0, 14.4, 18.6, 15.2, 11.0, 0.0, 40.7, 50.2, 49.4, 0.4,59.3 +NA,NA,a-cure-i1,2024-25,Cambridge - Fletcher/Maynard Academy,00490090, 0.4, 9.2, 49.4, 22.5, 10.0, 0.0, 8.4, 52.2, 47.8, 0.0,91.6 +NA,NA,a-cure-i1,2024-25,Cambridge - Graham and Parks,00490080, 0.3, 23.4, 18.0, 7.6, 8.2, 0.0, 42.5, 48.2, 51.8, 0.0,57.5 +NA,NA,a-cure-i1,2024-25,Cambridge - Haggerty,00490020, 0.0, 25.2, 18.8, 10.4, 10.8, 0.0, 34.8, 50.8, 49.2, 0.0,65.2 +NA,NA,a-cure-i1,2024-25,Cambridge - John M Tobin,00490065, 0.0, 15.8, 26.8, 9.3, 12.0, 0.0, 36.1, 49.1, 50.9, 0.0,63.9 +NA,NA,a-cure-i1,2024-25,Cambridge - Kennedy-Longfellow,00490040, 0.0, 21.9, 36.7, 22.3, 3.3, 0.0, 15.8, 43.3, 56.3, 0.5,84.2 +NA,NA,a-cure-i1,2024-25,Cambridge - King Open,00490035, 0.0, 11.3, 23.5, 17.4, 15.1, 0.0, 32.7, 46.3, 53.7, 0.0,67.3 +NA,NA,a-cure-i1,2024-25,Cambridge - Maria L. Baldwin,00490005, 0.0, 10.3, 9.2, 7.5, 15.6, 0.0, 57.5, 52.2, 47.8, 0.0,42.5 +NA,NA,a-cure-i1,2024-25,Cambridge - Martin Luther King Jr.,00490030, 0.0, 37.4, 11.5, 2.9, 27.4, 0.3, 20.6, 52.6, 47.4, 0.0,79.4 +NA,NA,a-cure-i1,2024-25,Cambridge - Morse,00490045, 0.0, 16.2, 21.3, 10.4, 11.0, 0.0, 41.2, 45.7, 54.0, 0.3,58.8 +NA,NA,a-cure-i1,2024-25,Cambridge - Peabody,00490050, 0.3, 15.3, 25.5, 6.4, 11.1, 0.0, 41.4, 50.6, 48.7, 0.6,58.6 +NA,NA,a-cure-i1,2024-25,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 19.4, 25.4, 10.2, 17.0, 0.0, 27.9, 48.8, 50.9, 0.4,72.1 +NA,NA,a-cure-i1,2024-25,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 9.9, 19.2, 11.3, 9.6, 0.0, 50.0, 48.6, 51.0, 0.3,50.0 +NA,NA,a-cure-i1,2024-25,Cambridge - Vassal Lane Upper School,00490320, 0.3, 17.4, 27.2, 12.4, 7.0, 0.0, 35.6, 46.6, 53.4, 0.0,64.4 +NA,NA,a-cure-i1,2024-25,Canton - Canton High,00500505, 0.2, 12.2, 16.1, 6.0, 4.8, 0.4, 60.3, 53.9, 46.1, 0.0,39.7 +NA,NA,a-cure-i1,2024-25,Canton - Dean S Luce,00500020, 0.2, 11.2, 13.6, 9.4, 7.9, 0.0, 57.8, 50.1, 49.9, 0.0,42.2 +NA,NA,a-cure-i1,2024-25,Canton - John F Kennedy,00500017, 0.0, 7.1, 7.4, 6.7, 8.9, 0.0, 69.9, 46.8, 53.2, 0.0,30.099999999999994 +NA,NA,a-cure-i1,2024-25,Canton - Lt Peter M Hansen,00500012, 0.2, 11.3, 11.9, 7.4, 8.6, 0.4, 60.2, 48.1, 51.9, 0.0,39.8 +NA,NA,a-cure-i1,2024-25,Canton - Rodman Early Childhood Center,00500010, 0.0, 13.2, 11.6, 14.0, 1.7, 0.0, 59.5, 45.5, 54.5, 0.0,40.5 +NA,NA,a-cure-i1,2024-25,Canton - Wm H Galvin Middle,00500305, 0.0, 10.2, 12.8, 8.5, 7.3, 0.1, 61.0, 50.3, 49.7, 0.0,39.0 +NA,NA,a-cure-i1,2024-25,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 1.2, 2.8, 5.2, 2.4, 0.0, 88.4, 47.8, 52.2, 0.0,11.599999999999994 +NA,NA,a-cure-i1,2024-25,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.7, 0.6, 5.9, 9.2, 4.1, 0.1, 79.3, 36.1, 63.8, 0.1,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Carlisle - Carlisle School,00510025, 0.0, 11.9, 0.3, 6.4, 9.3, 0.5, 71.6, 49.8, 50.2, 0.0,28.400000000000006 +NA,NA,a-cure-i1,2024-25,Carver - Carver Elementary School,00520015, 0.1, 0.5, 1.9, 5.2, 4.6, 0.0, 87.7, 48.2, 51.8, 0.0,12.299999999999997 +NA,NA,a-cure-i1,2024-25,Carver - Carver Middle/High School,00520405, 0.4, 0.7, 2.6, 3.3, 1.7, 0.0, 91.1, 49.3, 50.6, 0.1,8.900000000000006 +NA,NA,a-cure-i1,2024-25,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 5.5, 5.5, 0.0, 89.0, 45.1, 54.9, 0.0,11.0 +NA,NA,a-cure-i1,2024-25,Central Berkshire - Craneville,06350025, 0.2, 1.1, 1.3, 8.7, 6.8, 0.0, 81.9, 51.1, 48.7, 0.2,18.099999999999994 +NA,NA,a-cure-i1,2024-25,Central Berkshire - Kittredge,06350035, 0.5, 0.0, 0.5, 4.3, 2.2, 0.0, 92.4, 49.7, 50.3, 0.0,7.599999999999994 +NA,NA,a-cure-i1,2024-25,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 1.1, 0.0, 6.2, 4.8, 0.0, 87.8, 51.8, 47.9, 0.3,12.200000000000003 +NA,NA,a-cure-i1,2024-25,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.4, 0.9, 4.2, 3.3, 0.0, 91.1, 46.7, 53.1, 0.2,8.900000000000006 +NA,NA,a-cure-i1,2024-25,Chelmsford - Byam School,00560030, 0.2, 14.5, 3.7, 11.2, 4.7, 0.6, 65.1, 47.8, 52.2, 0.0,34.900000000000006 +NA,NA,a-cure-i1,2024-25,Chelmsford - Center Elementary School,00560005, 0.0, 20.6, 5.2, 7.5, 4.6, 0.4, 61.7, 49.6, 50.4, 0.0,38.3 +NA,NA,a-cure-i1,2024-25,Chelmsford - Charles D Harrington,00560025, 0.2, 19.0, 6.0, 12.6, 5.6, 0.2, 56.4, 48.7, 51.3, 0.0,43.6 +NA,NA,a-cure-i1,2024-25,Chelmsford - Chelmsford High,00560505, 0.1, 18.9, 4.6, 9.5, 4.1, 0.1, 62.6, 46.6, 53.1, 0.3,37.4 +NA,NA,a-cure-i1,2024-25,Chelmsford - Col Moses Parker School,00560305, 0.4, 18.9, 3.1, 8.9, 3.3, 0.0, 65.4, 49.6, 50.3, 0.1,34.599999999999994 +NA,NA,a-cure-i1,2024-25,Chelmsford - Community Education Center,00560001, 0.0, 22.8, 4.4, 10.8, 7.0, 0.0, 55.1, 41.1, 58.9, 0.0,44.9 +NA,NA,a-cure-i1,2024-25,Chelmsford - McCarthy Middle School,00560310, 0.1, 20.3, 4.5, 7.8, 4.2, 0.1, 63.0, 49.5, 50.5, 0.0,37.0 +NA,NA,a-cure-i1,2024-25,Chelmsford - South Row,00560015, 0.2, 16.8, 3.0, 8.4, 6.0, 0.0, 65.5, 48.5, 51.5, 0.0,34.5 +NA,NA,a-cure-i1,2024-25,Chelsea - Chelsea High,00570505, 0.1, 0.9, 4.4, 88.6, 0.8, 0.0, 5.2, 45.5, 54.3, 0.2,94.8 +NA,NA,a-cure-i1,2024-25,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.8, 3.0, 93.2, 0.0, 0.0, 3.0, 44.7, 55.3, 0.0,97.0 +NA,NA,a-cure-i1,2024-25,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 3.7, 88.9, 0.0, 0.0, 7.4, 63.0, 37.0, 0.0,92.6 +NA,NA,a-cure-i1,2024-25,Chelsea - Clark Avenue School,00570050, 0.1, 0.0, 3.9, 91.5, 0.7, 0.0, 3.7, 51.9, 48.1, 0.0,96.3 +NA,NA,a-cure-i1,2024-25,Chelsea - Edgar F. Hooks Elementary,00570030, 0.0, 0.7, 4.9, 86.3, 0.2, 0.0, 7.9, 43.5, 56.5, 0.0,92.1 +NA,NA,a-cure-i1,2024-25,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.2, 0.2, 5.3, 84.6, 0.5, 0.0, 9.2, 49.1, 50.9, 0.0,90.8 +NA,NA,a-cure-i1,2024-25,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.2, 3.6, 90.0, 0.0, 0.0, 6.1, 50.4, 49.6, 0.0,93.9 +NA,NA,a-cure-i1,2024-25,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.2, 0.6, 97.0, 0.0, 0.0, 2.3, 51.4, 48.6, 0.0,97.7 +NA,NA,a-cure-i1,2024-25,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.8, 7.4, 86.0, 0.2, 0.0, 5.5, 50.5, 49.5, 0.0,94.5 +NA,NA,a-cure-i1,2024-25,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 1.2, 6.0, 87.5, 0.3, 0.0, 5.0, 45.6, 54.4, 0.0,95.0 +NA,NA,a-cure-i1,2024-25,Chelsea - William A Berkowitz Elementary,00570025, 0.4, 0.2, 5.9, 87.0, 0.2, 0.0, 6.2, 53.6, 46.4, 0.0,93.8 +NA,NA,a-cure-i1,2024-25,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 2.4, 0.8, 0.0, 96.8, 45.2, 54.8, 0.0,3.200000000000003 +NA,NA,a-cure-i1,2024-25,Chicopee - Barry,00610003, 0.0, 0.6, 7.2, 35.9, 4.2, 0.6, 51.5, 44.0, 56.0, 0.0,48.5 +NA,NA,a-cure-i1,2024-25,Chicopee - Belcher,00610010, 0.0, 0.8, 9.8, 51.0, 5.3, 0.4, 32.7, 51.4, 48.6, 0.0,67.3 +NA,NA,a-cure-i1,2024-25,Chicopee - Bellamy Middle,00610305, 0.0, 2.6, 5.8, 41.4, 3.0, 0.0, 47.3, 47.6, 52.4, 0.0,52.7 +NA,NA,a-cure-i1,2024-25,Chicopee - Bowe,00610015, 0.0, 1.7, 4.9, 65.0, 4.4, 0.0, 24.1, 50.4, 49.6, 0.0,75.9 +NA,NA,a-cure-i1,2024-25,Chicopee - Bowie,00610020, 0.4, 1.9, 5.0, 32.3, 4.2, 0.0, 56.2, 51.2, 48.8, 0.0,43.8 +NA,NA,a-cure-i1,2024-25,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 7.6, 59.8, 3.3, 1.1, 28.3, 33.7, 66.3, 0.0,71.7 +NA,NA,a-cure-i1,2024-25,Chicopee - Chicopee Comprehensive High School,00610510, 0.3, 1.3, 3.9, 37.8, 3.1, 0.0, 53.6, 39.2, 60.4, 0.4,46.4 +NA,NA,a-cure-i1,2024-25,Chicopee - Chicopee High,00610505, 0.0, 2.4, 7.1, 53.8, 3.2, 0.0, 33.6, 53.9, 45.6, 0.4,66.4 +NA,NA,a-cure-i1,2024-25,Chicopee - Dupont Middle,00610310, 0.1, 2.0, 6.1, 46.3, 2.8, 0.0, 42.6, 48.9, 51.0, 0.1,57.4 +NA,NA,a-cure-i1,2024-25,Chicopee - Fairview Elementary,00610050, 0.3, 1.8, 9.3, 53.7, 4.4, 0.3, 30.2, 47.3, 52.7, 0.0,69.8 +NA,NA,a-cure-i1,2024-25,Chicopee - Gen John J Stefanik,00610090, 0.0, 1.3, 6.4, 62.5, 4.3, 0.0, 25.5, 46.4, 53.6, 0.0,74.5 +NA,NA,a-cure-i1,2024-25,Chicopee - Lambert-Lavoie,00610040, 0.4, 1.6, 5.7, 38.2, 5.7, 0.0, 48.4, 42.7, 57.3, 0.0,51.6 +NA,NA,a-cure-i1,2024-25,Chicopee - Litwin,00610022, 0.0, 2.6, 9.3, 41.4, 5.2, 0.0, 41.4, 49.6, 50.4, 0.0,58.6 +NA,NA,a-cure-i1,2024-25,Chicopee - Streiber Memorial School,00610065, 0.0, 3.5, 8.3, 32.8, 3.5, 0.0, 52.0, 46.3, 53.7, 0.0,48.0 +NA,NA,a-cure-i1,2024-25,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 2.7, 5.4, 42.3, 5.4, 0.0, 44.1, 46.8, 53.2, 0.0,55.9 +NA,NA,a-cure-i1,2024-25,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 1.4, 1.8, 8.1, 35.2, 9.2, 0.0, 44.4, 46.1, 52.1, 1.8,55.6 +NA,NA,a-cure-i1,2024-25,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 71.8, 26.9, 0.0, 0.0, 1.3, 53.8, 46.2, 0.0,98.7 +NA,NA,a-cure-i1,2024-25,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 0.5, 2.0, 1.5, 0.0, 95.6, 47.5, 52.5, 0.0,4.400000000000006 +NA,NA,a-cure-i1,2024-25,Clinton - Clinton Elementary,00640050, 0.1, 1.0, 3.3, 45.3, 2.8, 0.0, 47.5, 48.3, 51.7, 0.0,52.5 +NA,NA,a-cure-i1,2024-25,Clinton - Clinton Middle School,00640305, 0.0, 0.3, 2.6, 46.1, 2.3, 0.2, 48.5, 47.8, 52.2, 0.0,51.5 +NA,NA,a-cure-i1,2024-25,Clinton - Clinton Senior High,00640505, 0.0, 1.7, 4.0, 41.8, 1.2, 0.2, 51.2, 44.3, 55.5, 0.2,48.8 +NA,NA,a-cure-i1,2024-25,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.3, 0.0, 64.2, 32.0, 3.2, 0.0, 0.3, 52.6, 47.4, 0.0,99.7 +NA,NA,a-cure-i1,2024-25,Cohasset - Cohasset High School,00650505, 0.0, 1.8, 3.1, 1.0, 2.6, 0.0, 91.3, 47.8, 52.2, 0.0,8.700000000000003 +NA,NA,a-cure-i1,2024-25,Cohasset - Cohasset Middle School,00650305, 0.0, 1.3, 4.0, 3.3, 1.3, 0.0, 90.0, 52.3, 47.7, 0.0,10.0 +NA,NA,a-cure-i1,2024-25,Cohasset - Deer Hill,00650005, 0.3, 0.3, 2.6, 2.9, 3.5, 0.0, 90.5, 50.7, 49.3, 0.0,9.5 +NA,NA,a-cure-i1,2024-25,Cohasset - Joseph Osgood,00650010, 0.0, 0.8, 1.1, 4.1, 4.3, 0.0, 89.7, 42.5, 57.5, 0.0,10.299999999999997 +NA,NA,a-cure-i1,2024-25,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 2.2, 24.1, 19.3, 27.7, 3.5, 0.1, 23.0, 53.7, 46.3, 0.0,77.0 +NA,NA,a-cure-i1,2024-25,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.4, 4.0, 62.5, 19.9, 6.4, 0.8, 6.0, 51.4, 48.6, 0.0,94.0 +NA,NA,a-cure-i1,2024-25,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.3, 0.3, 1.4, 95.7, 1.0, 0.0, 1.3, 51.6, 48.4, 0.0,98.7 +NA,NA,a-cure-i1,2024-25,Concord - Alcott,00670005, 0.0, 6.2, 9.6, 10.0, 6.8, 0.0, 67.4, 49.5, 50.5, 0.0,32.599999999999994 +NA,NA,a-cure-i1,2024-25,Concord - Concord Middle,00670305, 0.0, 8.2, 4.4, 7.6, 7.0, 0.0, 72.8, 52.1, 47.9, 0.0,27.200000000000003 +NA,NA,a-cure-i1,2024-25,Concord - Thoreau,00670020, 0.2, 10.2, 1.5, 8.0, 11.2, 0.0, 68.8, 44.9, 55.1, 0.0,31.200000000000003 +NA,NA,a-cure-i1,2024-25,Concord - Willard,00670030, 0.0, 5.8, 6.3, 7.2, 6.3, 0.0, 74.5, 51.9, 48.1, 0.0,25.5 +NA,NA,a-cure-i1,2024-25,Concord-Carlisle - Concord Carlisle High,06400505, 0.1, 9.7, 4.4, 6.1, 7.0, 0.3, 72.5, 46.1, 53.7, 0.3,27.5 +NA,NA,a-cure-i1,2024-25,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.7, 1.1, 50.4, 41.0, 2.9, 0.2, 3.7, 51.3, 48.7, 0.0,96.3 +NA,NA,a-cure-i1,2024-25,Conway - Conway Grammar,00680005, 0.0, 0.7, 0.0, 2.6, 3.9, 0.0, 92.8, 44.1, 55.3, 0.7,7.200000000000003 +NA,NA,a-cure-i1,2024-25,Danvers - Danvers High,00710505, 0.0, 2.9, 3.3, 14.8, 2.7, 0.0, 76.3, 48.9, 50.6, 0.5,23.700000000000003 +NA,NA,a-cure-i1,2024-25,Danvers - Great Oak,00710015, 0.0, 1.7, 6.9, 13.4, 3.8, 0.0, 74.2, 50.5, 49.5, 0.0,25.799999999999997 +NA,NA,a-cure-i1,2024-25,Danvers - Highlands,00710010, 0.3, 2.6, 7.3, 17.7, 1.3, 0.3, 70.6, 45.5, 54.5, 0.0,29.400000000000006 +NA,NA,a-cure-i1,2024-25,Danvers - Holten Richmond Middle School,00710305, 0.0, 2.7, 3.9, 13.3, 2.8, 0.0, 77.3, 50.5, 49.3, 0.3,22.700000000000003 +NA,NA,a-cure-i1,2024-25,Danvers - Ivan G Smith,00710032, 0.0, 2.8, 7.7, 12.1, 0.8, 0.0, 76.6, 45.8, 54.2, 0.0,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Danvers - Riverside,00710030, 0.0, 1.4, 2.9, 11.1, 2.0, 0.0, 82.6, 46.3, 53.7, 0.0,17.400000000000006 +NA,NA,a-cure-i1,2024-25,Danvers - Willis E Thorpe,00710045, 0.0, 0.7, 2.0, 10.5, 0.7, 0.0, 86.1, 51.0, 49.0, 0.0,13.900000000000006 +NA,NA,a-cure-i1,2024-25,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 3.3, 4.3, 9.8, 3.3, 0.0, 79.3, 42.4, 57.6, 0.0,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Dartmouth - Dartmouth High,00720505, 0.0, 1.6, 2.5, 7.8, 8.6, 0.3, 79.2, 50.9, 49.0, 0.1,20.799999999999997 +NA,NA,a-cure-i1,2024-25,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.1, 1.5, 5.4, 6.4, 0.0, 85.6, 46.8, 53.2, 0.0,14.400000000000006 +NA,NA,a-cure-i1,2024-25,Dartmouth - George H Potter,00720030, 0.2, 1.7, 0.5, 9.8, 6.1, 0.0, 81.6, 52.6, 47.4, 0.0,18.400000000000006 +NA,NA,a-cure-i1,2024-25,Dartmouth - James M. Quinn School,00720040, 0.0, 2.3, 1.1, 7.8, 6.5, 0.0, 82.2, 46.9, 53.1, 0.0,17.799999999999997 +NA,NA,a-cure-i1,2024-25,Dartmouth - Joseph Demello,00720015, 0.3, 1.0, 2.3, 8.9, 6.9, 0.0, 80.6, 45.9, 53.8, 0.3,19.400000000000006 +NA,NA,a-cure-i1,2024-25,Dedham - Avery,00730010, 0.0, 2.8, 10.6, 28.7, 6.2, 0.0, 51.7, 46.1, 53.9, 0.0,48.3 +NA,NA,a-cure-i1,2024-25,Dedham - Dedham High,00730505, 0.0, 2.6, 11.8, 19.6, 3.6, 0.0, 62.3, 48.8, 50.6, 0.6,37.7 +NA,NA,a-cure-i1,2024-25,Dedham - Dedham Middle School,00730305, 0.2, 2.2, 9.9, 21.3, 5.9, 0.0, 60.5, 48.8, 51.2, 0.0,39.5 +NA,NA,a-cure-i1,2024-25,Dedham - Early Childhood Center,00730005, 0.0, 4.2, 11.6, 17.5, 5.6, 0.0, 61.1, 49.1, 50.9, 0.0,38.9 +NA,NA,a-cure-i1,2024-25,Dedham - Greenlodge,00730025, 0.0, 3.4, 2.5, 13.1, 7.2, 0.0, 73.8, 46.3, 53.4, 0.3,26.200000000000003 +NA,NA,a-cure-i1,2024-25,Dedham - Oakdale,00730030, 0.0, 0.8, 9.2, 11.8, 6.9, 0.0, 71.4, 56.5, 43.5, 0.0,28.599999999999994 +NA,NA,a-cure-i1,2024-25,Dedham - Riverdale,00730045, 0.0, 1.9, 11.7, 17.0, 6.8, 0.0, 62.6, 51.9, 48.1, 0.0,37.4 +NA,NA,a-cure-i1,2024-25,Deerfield - Deerfield Elementary,00740015, 0.0, 1.3, 2.0, 4.3, 5.6, 0.0, 86.7, 43.2, 56.5, 0.3,13.299999999999997 +NA,NA,a-cure-i1,2024-25,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.6, 3.1, 14.3, 18.1, 5.5, 0.0, 58.5, 47.3, 52.7, 0.0,41.5 +NA,NA,a-cure-i1,2024-25,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.6, 2.5, 14.0, 13.8, 4.4, 0.6, 63.9, 49.1, 50.9, 0.0,36.1 +NA,NA,a-cure-i1,2024-25,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.1, 2.4, 16.5, 14.3, 7.0, 0.2, 57.4, 47.2, 52.7, 0.1,42.6 +NA,NA,a-cure-i1,2024-25,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.8, 3.1, 16.6, 17.7, 4.7, 0.0, 57.1, 47.0, 53.0, 0.0,42.9 +NA,NA,a-cure-i1,2024-25,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.7, 2.0, 18.5, 20.2, 3.0, 0.0, 54.6, 47.7, 52.3, 0.0,45.4 +NA,NA,a-cure-i1,2024-25,Dennis-Yarmouth - Station Avenue Elementary,06450025, 1.0, 1.0, 17.7, 15.3, 5.7, 0.0, 59.4, 48.5, 51.5, 0.0,40.6 +NA,NA,a-cure-i1,2024-25,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 2.1, 2.8, 7.3, 3.2, 0.0, 84.6, 47.9, 52.1, 0.0,15.400000000000006 +NA,NA,a-cure-i1,2024-25,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.4, 2.5, 6.5, 4.2, 0.0, 85.4, 49.9, 50.1, 0.0,14.599999999999994 +NA,NA,a-cure-i1,2024-25,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.2, 2.1, 2.3, 6.9, 3.9, 0.0, 84.7, 47.5, 52.3, 0.2,15.299999999999997 +NA,NA,a-cure-i1,2024-25,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.5, 1.9, 5.4, 4.8, 0.0, 86.2, 48.2, 51.8, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Dighton-Rehoboth - Palmer River,06500010, 0.0, 1.8, 1.9, 7.3, 2.8, 0.0, 86.2, 46.4, 53.6, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Douglas - Douglas Elementary School,00770015, 0.0, 0.3, 1.5, 5.9, 3.2, 0.0, 89.1, 48.2, 51.8, 0.0,10.900000000000006 +NA,NA,a-cure-i1,2024-25,Douglas - Douglas High School,00770505, 0.0, 1.5, 1.1, 8.2, 1.9, 0.0, 87.3, 52.4, 47.2, 0.4,12.700000000000003 +NA,NA,a-cure-i1,2024-25,Douglas - Douglas Middle School,00770305, 0.0, 0.7, 0.7, 7.4, 5.3, 0.0, 85.9, 43.0, 57.0, 0.0,14.099999999999994 +NA,NA,a-cure-i1,2024-25,Douglas - Douglas Primary School,00770005, 0.0, 0.5, 1.8, 10.4, 0.9, 0.0, 86.5, 45.0, 55.0, 0.0,13.5 +NA,NA,a-cure-i1,2024-25,Dover - Chickering,00780005, 0.0, 12.8, 2.0, 5.5, 6.3, 0.0, 73.4, 47.8, 52.2, 0.0,26.599999999999994 +NA,NA,a-cure-i1,2024-25,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 14.9, 2.8, 6.9, 6.9, 0.0, 68.5, 51.0, 48.9, 0.2,31.5 +NA,NA,a-cure-i1,2024-25,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.2, 13.0, 4.7, 3.0, 6.8, 0.0, 72.4, 48.4, 51.4, 0.2,27.599999999999994 +NA,NA,a-cure-i1,2024-25,Dracut - Brookside Elementary,00790035, 0.0, 11.3, 12.7, 14.8, 3.3, 0.0, 57.9, 48.0, 52.0, 0.0,42.1 +NA,NA,a-cure-i1,2024-25,Dracut - Dracut Senior High,00790505, 0.3, 10.5, 10.4, 17.9, 1.6, 0.1, 59.2, 48.5, 51.0, 0.5,40.8 +NA,NA,a-cure-i1,2024-25,Dracut - George H. Englesby Elementary School,00790045, 0.2, 10.6, 6.5, 22.1, 3.3, 0.0, 57.3, 46.5, 53.5, 0.0,42.7 +NA,NA,a-cure-i1,2024-25,Dracut - Greenmont Avenue,00790030, 0.0, 10.0, 12.8, 22.7, 2.8, 0.0, 51.7, 51.2, 48.8, 0.0,48.3 +NA,NA,a-cure-i1,2024-25,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 10.6, 7.8, 11.3, 0.7, 0.0, 69.6, 46.0, 54.0, 0.0,30.400000000000006 +NA,NA,a-cure-i1,2024-25,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 12.0, 7.1, 15.7, 1.7, 0.0, 63.4, 50.1, 49.9, 0.0,36.6 +NA,NA,a-cure-i1,2024-25,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.7, 0.3, 56.3, 37.5, 1.4, 0.3, 3.4, 52.9, 47.1, 0.0,96.6 +NA,NA,a-cure-i1,2024-25,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.6, 0.9, 13.5, 3.3, 0.0, 81.7, 48.9, 51.1, 0.0,18.299999999999997 +NA,NA,a-cure-i1,2024-25,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.3, 1.7, 10.1, 5.2, 0.0, 82.6, 46.0, 53.9, 0.2,17.400000000000006 +NA,NA,a-cure-i1,2024-25,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.3, 1.0, 2.9, 17.5, 5.1, 0.0, 73.3, 50.5, 49.5, 0.0,26.700000000000003 +NA,NA,a-cure-i1,2024-25,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.2, 0.7, 4.6, 16.9, 3.1, 0.0, 74.4, 47.6, 52.4, 0.0,25.599999999999994 +NA,NA,a-cure-i1,2024-25,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.7, 2.1, 11.3, 3.8, 0.0, 82.1, 52.2, 47.8, 0.0,17.900000000000006 +NA,NA,a-cure-i1,2024-25,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 1.0, 4.8, 16.2, 3.1, 0.0, 74.8, 46.6, 53.4, 0.0,25.200000000000003 +NA,NA,a-cure-i1,2024-25,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 1.0, 4.1, 13.5, 3.2, 0.0, 78.2, 46.1, 53.6, 0.3,21.799999999999997 +NA,NA,a-cure-i1,2024-25,Duxbury - Alden School,00820004, 0.0, 1.8, 1.4, 3.7, 4.2, 0.0, 88.9, 48.6, 51.3, 0.2,11.099999999999994 +NA,NA,a-cure-i1,2024-25,Duxbury - Chandler Elementary,00820006, 0.2, 0.9, 0.3, 3.6, 4.1, 0.0, 91.0, 50.5, 49.5, 0.0,9.0 +NA,NA,a-cure-i1,2024-25,Duxbury - Duxbury High,00820505, 0.2, 1.2, 0.2, 3.2, 3.5, 0.0, 91.6, 49.1, 50.7, 0.1,8.400000000000006 +NA,NA,a-cure-i1,2024-25,Duxbury - Duxbury Middle,00820305, 0.2, 0.5, 0.7, 2.8, 2.8, 0.2, 92.8, 48.2, 51.8, 0.0,7.200000000000003 +NA,NA,a-cure-i1,2024-25,East Bridgewater - Central,00830005, 0.2, 1.0, 6.5, 8.1, 4.4, 0.0, 79.8, 47.9, 52.1, 0.0,20.200000000000003 +NA,NA,a-cure-i1,2024-25,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 1.0, 0.8, 8.5, 6.7, 3.7, 0.1, 79.1, 47.7, 52.2, 0.1,20.900000000000006 +NA,NA,a-cure-i1,2024-25,East Bridgewater - Gordon W. Mitchell School,00830010, 0.8, 1.0, 7.2, 6.0, 4.1, 0.0, 80.9, 52.0, 48.0, 0.0,19.099999999999994 +NA,NA,a-cure-i1,2024-25,East Longmeadow - Birchland Park,00870305, 0.2, 5.4, 3.2, 13.4, 5.4, 0.2, 72.2, 48.3, 51.5, 0.2,27.799999999999997 +NA,NA,a-cure-i1,2024-25,East Longmeadow - East Longmeadow High,00870505, 0.3, 7.0, 4.8, 11.3, 3.6, 0.0, 73.0, 46.6, 53.3, 0.1,27.0 +NA,NA,a-cure-i1,2024-25,East Longmeadow - Mapleshade,00870010, 0.0, 6.4, 6.1, 18.9, 3.4, 0.0, 65.3, 44.1, 55.9, 0.0,34.7 +NA,NA,a-cure-i1,2024-25,East Longmeadow - Meadow Brook,00870013, 0.2, 3.3, 4.5, 17.6, 5.6, 0.0, 68.8, 43.6, 56.4, 0.0,31.200000000000003 +NA,NA,a-cure-i1,2024-25,East Longmeadow - Mountain View,00870015, 0.0, 3.5, 3.1, 13.3, 4.2, 0.0, 75.9, 49.3, 50.7, 0.0,24.099999999999994 +NA,NA,a-cure-i1,2024-25,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 13.0, 7.9, 9.6, 0.0, 69.5, 45.2, 54.8, 0.0,30.5 +NA,NA,a-cure-i1,2024-25,Easthampton - Easthampton High,00860505, 0.3, 4.0, 1.3, 16.4, 4.5, 0.0, 73.5, 45.9, 53.1, 1.1,26.5 +NA,NA,a-cure-i1,2024-25,Easthampton - Mountain View School,00860415, 0.2, 1.7, 1.0, 15.4, 6.0, 0.4, 75.3, 49.6, 50.2, 0.2,24.700000000000003 +NA,NA,a-cure-i1,2024-25,Easton - Blanche A. Ames Elementary School,00880015, 0.3, 4.5, 9.4, 12.1, 5.6, 0.0, 68.1, 46.5, 53.5, 0.0,31.900000000000006 +NA,NA,a-cure-i1,2024-25,Easton - Easton Middle School,00880405, 0.5, 3.5, 8.9, 10.8, 3.9, 0.1, 72.3, 51.3, 48.6, 0.1,27.700000000000003 +NA,NA,a-cure-i1,2024-25,Easton - Oliver Ames High,00880505, 0.3, 3.6, 9.7, 7.2, 4.1, 0.2, 74.9, 50.0, 49.8, 0.2,25.099999999999994 +NA,NA,a-cure-i1,2024-25,Easton - Richardson Olmsted School,00880025, 0.0, 3.8, 8.6, 9.4, 5.4, 0.0, 72.7, 47.5, 52.5, 0.0,27.299999999999997 +NA,NA,a-cure-i1,2024-25,Edgartown - Edgartown Elementary,00890005, 2.2, 0.3, 5.9, 29.1, 5.0, 0.0, 57.4, 48.2, 51.8, 0.0,42.6 +NA,NA,a-cure-i1,2024-25,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, 2.6, 35.5, 56.1, 2.1, 0.3, 3.4, 68.4, 31.6, 0.0,96.6 +NA,NA,a-cure-i1,2024-25,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 7.1, 8.8, 0.0, 84.1, 40.7, 59.3, 0.0,15.900000000000006 +NA,NA,a-cure-i1,2024-25,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.3, 1.7, 2.7, 19.6, 3.8, 0.0, 71.9, 57.1, 42.5, 0.4,28.099999999999994 +NA,NA,a-cure-i1,2024-25,Everett - Adams School,00930003, 0.0, 14.2, 14.8, 51.9, 1.2, 0.0, 17.9, 48.1, 51.9, 0.0,82.1 +NA,NA,a-cure-i1,2024-25,Everett - Devens School,00930030, 0.0, 2.6, 13.2, 55.3, 0.0, 0.0, 28.9, 28.9, 71.1, 0.0,71.1 +NA,NA,a-cure-i1,2024-25,Everett - Everett High,00930505, 0.1, 4.6, 15.5, 65.6, 1.3, 0.0, 12.9, 48.9, 51.0, 0.1,87.1 +NA,NA,a-cure-i1,2024-25,Everett - George Keverian School,00930028, 0.1, 3.0, 11.9, 73.5, 1.4, 0.1, 10.0, 48.5, 51.5, 0.0,90.0 +NA,NA,a-cure-i1,2024-25,Everett - Lafayette School,00930038, 0.1, 8.1, 13.2, 63.1, 1.4, 0.0, 14.0, 50.9, 49.1, 0.0,86.0 +NA,NA,a-cure-i1,2024-25,Everett - Madeline English School,00930018, 0.1, 4.3, 11.8, 68.6, 1.1, 0.0, 14.1, 50.8, 49.2, 0.0,85.9 +NA,NA,a-cure-i1,2024-25,Everett - Parlin School,00930058, 0.0, 3.9, 9.8, 78.8, 0.4, 0.0, 7.1, 49.9, 50.1, 0.0,92.9 +NA,NA,a-cure-i1,2024-25,Everett - Sumner G. Whittier School,00930010, 0.7, 2.9, 12.0, 75.3, 1.1, 0.0, 8.0, 48.8, 51.2, 0.0,92.0 +NA,NA,a-cure-i1,2024-25,Everett - Webster Extension,00930001, 0.0, 15.6, 18.5, 51.2, 1.9, 0.0, 12.8, 53.6, 46.4, 0.0,87.2 +NA,NA,a-cure-i1,2024-25,Everett - Webster School,00930015, 0.0, 5.7, 12.0, 67.0, 1.1, 0.0, 14.2, 43.6, 56.4, 0.0,85.8 +NA,NA,a-cure-i1,2024-25,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.2, 0.9, 4.7, 81.1, 0.9, 0.2, 12.0, 49.8, 50.2, 0.0,88.0 +NA,NA,a-cure-i1,2024-25,Fairhaven - East Fairhaven,00940010, 0.0, 1.3, 2.2, 12.0, 6.3, 0.0, 78.2, 48.7, 51.3, 0.0,21.799999999999997 +NA,NA,a-cure-i1,2024-25,Fairhaven - Fairhaven High,00940505, 0.5, 2.1, 2.3, 9.9, 3.9, 0.0, 81.3, 48.6, 51.4, 0.0,18.700000000000003 +NA,NA,a-cure-i1,2024-25,Fairhaven - Hastings Middle,00940305, 1.0, 2.7, 2.4, 6.7, 5.1, 0.0, 82.2, 51.6, 48.4, 0.0,17.799999999999997 +NA,NA,a-cure-i1,2024-25,Fairhaven - Leroy Wood,00940030, 0.2, 2.1, 1.9, 9.3, 6.3, 0.0, 80.1, 48.8, 51.2, 0.0,19.900000000000006 +NA,NA,a-cure-i1,2024-25,Fall River - B M C Durfee High,00950505, 0.2, 3.4, 14.1, 32.7, 8.0, 0.0, 41.5, 51.1, 48.7, 0.2,58.5 +NA,NA,a-cure-i1,2024-25,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.3, 3.4, 13.5, 40.9, 6.9, 0.1, 35.0, 50.1, 49.9, 0.0,65.0 +NA,NA,a-cure-i1,2024-25,Fall River - Early Learning Center,00950001, 0.6, 1.8, 11.6, 26.2, 3.0, 0.0, 56.7, 36.0, 64.0, 0.0,43.3 +NA,NA,a-cure-i1,2024-25,Fall River - FRPS Early Learning Center,00950002, 0.0, 3.8, 11.3, 30.2, 5.7, 0.0, 49.1, 37.7, 62.3, 0.0,50.9 +NA,NA,a-cure-i1,2024-25,Fall River - Henry Lord Community School,00950017, 0.0, 1.1, 14.6, 38.6, 10.2, 0.0, 35.6, 47.4, 52.6, 0.0,64.4 +NA,NA,a-cure-i1,2024-25,Fall River - James Tansey,00950140, 0.0, 3.2, 9.6, 16.1, 11.1, 0.0, 60.0, 48.9, 51.1, 0.0,40.0 +NA,NA,a-cure-i1,2024-25,Fall River - John J Doran,00950045, 0.2, 0.0, 12.6, 35.8, 10.5, 0.0, 41.0, 47.6, 52.4, 0.0,59.0 +NA,NA,a-cure-i1,2024-25,Fall River - Letourneau Elementary School,00950013, 0.7, 1.8, 14.8, 37.8, 6.5, 0.2, 38.2, 48.6, 51.4, 0.0,61.8 +NA,NA,a-cure-i1,2024-25,Fall River - Mary Fonseca Elementary School,00950011, 0.2, 1.7, 17.2, 44.3, 5.9, 0.0, 30.8, 50.0, 49.8, 0.2,69.2 +NA,NA,a-cure-i1,2024-25,Fall River - Matthew J Kuss Middle,00950320, 0.3, 2.8, 13.5, 37.2, 8.2, 0.0, 38.1, 47.8, 52.2, 0.0,61.9 +NA,NA,a-cure-i1,2024-25,Fall River - Morton Middle,00950315, 0.4, 2.8, 15.8, 30.5, 7.3, 0.0, 43.1, 48.2, 51.8, 0.0,56.9 +NA,NA,a-cure-i1,2024-25,Fall River - North End Elementary,00950005, 0.2, 1.4, 14.4, 21.5, 10.5, 0.0, 52.1, 49.3, 50.7, 0.0,47.9 +NA,NA,a-cure-i1,2024-25,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 2.9, 18.1, 35.1, 11.1, 0.6, 32.2, 39.8, 60.2, 0.0,67.8 +NA,NA,a-cure-i1,2024-25,Fall River - Samuel Watson,00950145, 0.3, 1.7, 17.4, 33.8, 10.5, 0.3, 35.9, 50.2, 49.8, 0.0,64.1 +NA,NA,a-cure-i1,2024-25,Fall River - Spencer Borden,00950130, 0.0, 6.1, 11.3, 24.3, 7.7, 0.3, 50.3, 43.3, 56.7, 0.0,49.7 +NA,NA,a-cure-i1,2024-25,Fall River - Stone PK-12 School,00950340, 1.8, 0.0, 10.7, 28.6, 8.9, 1.8, 48.2, 25.0, 75.0, 0.0,51.8 +NA,NA,a-cure-i1,2024-25,Fall River - Talbot Innovation School,00950305, 0.2, 2.9, 15.8, 39.3, 7.6, 0.2, 34.0, 47.8, 52.2, 0.0,66.0 +NA,NA,a-cure-i1,2024-25,Fall River - Westall Elementary,00950150, 0.0, 2.9, 22.1, 30.1, 9.4, 0.4, 35.1, 48.2, 51.8, 0.0,64.9 +NA,NA,a-cure-i1,2024-25,Fall River - William S Greene,00950065, 0.1, 3.3, 15.4, 37.5, 7.9, 0.0, 35.7, 49.7, 50.3, 0.0,64.3 +NA,NA,a-cure-i1,2024-25,Falmouth - East Falmouth Elementary,00960005, 1.0, 2.6, 5.0, 9.2, 12.2, 0.0, 70.0, 47.9, 52.1, 0.0,30.0 +NA,NA,a-cure-i1,2024-25,Falmouth - Falmouth High,00960505, 1.3, 1.4, 6.0, 9.2, 6.2, 0.0, 75.9, 48.2, 51.3, 0.6,24.099999999999994 +NA,NA,a-cure-i1,2024-25,Falmouth - Lawrence,00960405, 1.5, 1.3, 6.1, 11.2, 7.2, 0.0, 72.8, 44.3, 55.5, 0.2,27.200000000000003 +NA,NA,a-cure-i1,2024-25,Falmouth - Morse Pond School,00960305, 0.4, 2.1, 5.1, 13.3, 5.7, 0.0, 73.3, 47.9, 52.1, 0.0,26.700000000000003 +NA,NA,a-cure-i1,2024-25,Falmouth - Mullen-Hall,00960020, 0.8, 1.6, 2.7, 13.7, 8.5, 0.0, 72.5, 48.4, 51.6, 0.0,27.5 +NA,NA,a-cure-i1,2024-25,Falmouth - North Falmouth Elementary,00960030, 0.0, 1.3, 1.7, 8.6, 5.6, 0.0, 82.8, 55.1, 44.9, 0.0,17.200000000000003 +NA,NA,a-cure-i1,2024-25,Falmouth - Teaticket,00960015, 1.3, 1.7, 5.5, 8.9, 8.5, 0.0, 74.2, 43.6, 56.4, 0.0,25.799999999999997 +NA,NA,a-cure-i1,2024-25,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.8, 0.0, 4.8, 2.4, 0.0, 91.9, 48.4, 51.6, 0.0,8.099999999999994 +NA,NA,a-cure-i1,2024-25,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.3, 3.1, 9.6, 61.7, 7.2, 0.0, 18.1, 45.4, 54.6, 0.0,81.9 +NA,NA,a-cure-i1,2024-25,Fitchburg - Crocker Elementary,00970016, 0.8, 3.0, 10.5, 56.2, 6.2, 0.0, 23.3, 49.0, 51.0, 0.0,76.7 +NA,NA,a-cure-i1,2024-25,Fitchburg - Fitchburg High,00970505, 0.1, 4.8, 10.5, 57.9, 7.4, 0.0, 19.3, 50.7, 48.9, 0.4,80.7 +NA,NA,a-cure-i1,2024-25,Fitchburg - Goodrich Academy,00970510, 0.0, 1.1, 2.7, 58.6, 5.9, 0.0, 31.7, 47.8, 51.6, 0.5,68.3 +NA,NA,a-cure-i1,2024-25,Fitchburg - McKay Elementary School,00970340, 0.8, 5.0, 6.9, 64.3, 5.8, 0.0, 17.1, 49.3, 50.7, 0.0,82.9 +NA,NA,a-cure-i1,2024-25,Fitchburg - Memorial Middle School,00970048, 0.0, 4.0, 5.8, 55.6, 7.5, 0.0, 27.1, 48.4, 51.6, 0.0,72.9 +NA,NA,a-cure-i1,2024-25,Fitchburg - Reingold Elementary,00970043, 0.0, 4.7, 6.9, 53.9, 5.7, 0.0, 28.7, 47.0, 53.0, 0.0,71.3 +NA,NA,a-cure-i1,2024-25,Fitchburg - South Street Early Learning Center,00970060, 0.2, 3.5, 9.5, 58.9, 5.8, 0.0, 22.1, 43.5, 56.5, 0.0,77.9 +NA,NA,a-cure-i1,2024-25,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 3.6, 8.4, 0.0, 88.0, 48.2, 51.8, 0.0,12.0 +NA,NA,a-cure-i1,2024-25,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.5, 0.9, 7.5, 3.3, 0.0, 87.8, 46.0, 52.1, 1.9,12.200000000000003 +NA,NA,a-cure-i1,2024-25,Foxborough - Charles Taylor Elementary,00990050, 0.0, 4.3, 8.6, 7.2, 7.9, 0.0, 71.9, 45.3, 54.7, 0.0,28.099999999999994 +NA,NA,a-cure-i1,2024-25,Foxborough - Foxborough High,00990505, 0.3, 4.9, 11.1, 9.5, 3.1, 0.0, 71.1, 48.0, 52.0, 0.0,28.900000000000006 +NA,NA,a-cure-i1,2024-25,Foxborough - John J Ahern,00990405, 0.0, 7.0, 8.5, 10.2, 4.4, 0.1, 69.7, 47.9, 52.1, 0.0,30.299999999999997 +NA,NA,a-cure-i1,2024-25,Foxborough - Mabelle M Burrell,00990015, 0.0, 5.0, 8.0, 11.2, 4.7, 0.0, 71.1, 47.5, 52.5, 0.0,28.900000000000006 +NA,NA,a-cure-i1,2024-25,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 6.6, 9.0, 9.0, 4.5, 0.0, 71.0, 46.2, 53.6, 0.3,29.0 +NA,NA,a-cure-i1,2024-25,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.4, 4.1, 73.9, 6.2, 4.0, 0.1, 11.3, 52.2, 47.8, 0.0,88.7 +NA,NA,a-cure-i1,2024-25,Framingham - Barbieri Elementary,01000035, 0.0, 0.3, 1.3, 80.8, 3.1, 0.0, 14.5, 52.2, 47.8, 0.0,85.5 +NA,NA,a-cure-i1,2024-25,Framingham - Brophy,01000006, 0.0, 3.4, 4.8, 64.3, 4.2, 0.0, 23.4, 46.4, 53.6, 0.0,76.6 +NA,NA,a-cure-i1,2024-25,Framingham - Cameron Middle School,01000302, 0.0, 3.0, 9.1, 44.6, 4.9, 0.0, 38.3, 47.5, 52.5, 0.0,61.7 +NA,NA,a-cure-i1,2024-25,Framingham - Charlotte A Dunning,01000007, 0.0, 6.0, 4.8, 39.4, 5.7, 0.0, 44.0, 46.1, 53.9, 0.0,56.0 +NA,NA,a-cure-i1,2024-25,Framingham - Framingham High School,01000515, 0.0, 4.7, 6.9, 46.5, 3.8, 0.0, 38.0, 49.2, 50.2, 0.6,62.0 +NA,NA,a-cure-i1,2024-25,Framingham - Fuller Middle,01000305, 0.0, 2.7, 6.3, 57.1, 5.6, 0.0, 28.4, 50.2, 49.8, 0.0,71.6 +NA,NA,a-cure-i1,2024-25,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.9, 5.5, 85.0, 2.0, 0.0, 6.6, 48.3, 51.4, 0.2,93.4 +NA,NA,a-cure-i1,2024-25,Framingham - Hemenway,01000015, 0.0, 7.2, 6.3, 34.9, 8.4, 0.0, 43.1, 47.4, 51.9, 0.7,56.9 +NA,NA,a-cure-i1,2024-25,Framingham - Juniper Hill School,01000001, 0.0, 5.3, 4.9, 54.7, 6.5, 0.0, 28.6, 40.8, 59.2, 0.0,71.4 +NA,NA,a-cure-i1,2024-25,Framingham - King Elementary School,01000005, 0.0, 7.5, 7.0, 36.6, 6.2, 0.0, 42.6, 48.3, 51.4, 0.3,57.4 +NA,NA,a-cure-i1,2024-25,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 3.6, 11.7, 55.4, 4.5, 0.0, 24.8, 49.0, 51.0, 0.0,75.2 +NA,NA,a-cure-i1,2024-25,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.7, 7.3, 59.8, 5.7, 0.0, 24.5, 45.5, 54.5, 0.0,75.5 +NA,NA,a-cure-i1,2024-25,Framingham - Potter Road,01000039, 0.0, 2.2, 3.1, 62.0, 4.6, 0.0, 28.0, 47.6, 52.4, 0.0,72.0 +NA,NA,a-cure-i1,2024-25,Framingham - Walsh Middle,01000310, 0.0, 4.3, 6.1, 45.6, 5.1, 0.0, 38.9, 50.7, 49.0, 0.3,61.1 +NA,NA,a-cure-i1,2024-25,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 2.6, 2.6, 8.0, 6.2, 0.3, 80.4, 47.7, 47.4, 4.9,19.599999999999994 +NA,NA,a-cure-i1,2024-25,Franklin - Annie Sullivan Middle School,01010040, 0.0, 4.0, 8.1, 7.5, 3.4, 1.2, 75.8, 50.0, 50.0, 0.0,24.200000000000003 +NA,NA,a-cure-i1,2024-25,Franklin - Franklin Early Childhood Development Center,01010003, 1.4, 23.2, 7.0, 9.9, 4.9, 0.7, 52.8, 42.3, 57.7, 0.0,47.2 +NA,NA,a-cure-i1,2024-25,Franklin - Franklin High,01010505, 0.1, 9.3, 3.9, 6.3, 2.1, 0.3, 78.0, 47.3, 52.4, 0.3,22.0 +NA,NA,a-cure-i1,2024-25,Franklin - Helen Keller Elementary,01010012, 0.0, 6.3, 2.5, 6.4, 2.1, 0.2, 82.5, 50.2, 49.8, 0.0,17.5 +NA,NA,a-cure-i1,2024-25,Franklin - Horace Mann,01010405, 0.2, 9.1, 1.2, 6.9, 2.0, 0.2, 80.3, 48.9, 51.1, 0.0,19.700000000000003 +NA,NA,a-cure-i1,2024-25,Franklin - J F Kennedy Memorial,01010013, 0.0, 9.7, 1.2, 5.0, 2.9, 0.6, 80.6, 43.1, 56.6, 0.3,19.400000000000006 +NA,NA,a-cure-i1,2024-25,Franklin - Jefferson Elementary,01010010, 0.0, 5.9, 3.7, 5.9, 6.2, 0.3, 77.9, 44.5, 54.8, 0.6,22.099999999999994 +NA,NA,a-cure-i1,2024-25,Franklin - Oak Street Elementary,01010030, 0.3, 10.8, 5.8, 7.3, 2.8, 0.5, 72.6, 47.2, 52.8, 0.0,27.400000000000006 +NA,NA,a-cure-i1,2024-25,Franklin - Parmenter,01010032, 1.0, 8.4, 5.5, 13.6, 3.2, 0.3, 68.0, 51.1, 48.9, 0.0,32.0 +NA,NA,a-cure-i1,2024-25,Franklin - Remington Middle,01010310, 0.0, 9.5, 6.7, 8.4, 3.9, 1.1, 70.4, 45.8, 54.2, 0.0,29.599999999999994 +NA,NA,a-cure-i1,2024-25,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.8, 0.6, 0.9, 6.8, 2.8, 0.0, 88.0, 41.7, 58.2, 0.2,12.0 +NA,NA,a-cure-i1,2024-25,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 1.6, 2.7, 2.3, 1.7, 0.0, 91.7, 53.0, 47.0, 0.0,8.299999999999997 +NA,NA,a-cure-i1,2024-25,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.2, 1.9, 2.3, 4.2, 3.5, 0.2, 87.7, 46.9, 53.1, 0.0,12.299999999999997 +NA,NA,a-cure-i1,2024-25,Freetown-Lakeville - Freetown Elementary School,06650001, 0.5, 0.5, 1.1, 5.7, 3.0, 0.0, 89.2, 48.8, 51.2, 0.0,10.799999999999997 +NA,NA,a-cure-i1,2024-25,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.7, 2.6, 5.0, 2.7, 0.0, 89.0, 46.2, 53.5, 0.3,11.0 +NA,NA,a-cure-i1,2024-25,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.6, 2.2, 5.2, 3.5, 0.0, 88.5, 50.0, 50.0, 0.0,11.5 +NA,NA,a-cure-i1,2024-25,Frontier - Frontier Regional,06700505, 0.0, 1.7, 1.5, 7.1, 6.1, 0.2, 83.3, 49.7, 49.5, 0.9,16.700000000000003 +NA,NA,a-cure-i1,2024-25,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.8, 4.1, 25.2, 9.8, 0.0, 60.2, 55.3, 41.5, 3.3,39.8 +NA,NA,a-cure-i1,2024-25,Gardner - Gardner Elementary School,01030001, 0.3, 1.4, 4.9, 31.7, 8.0, 0.0, 53.7, 45.6, 54.4, 0.0,46.3 +NA,NA,a-cure-i1,2024-25,Gardner - Gardner High,01030505, 0.2, 2.1, 4.8, 27.5, 8.7, 0.0, 56.7, 50.1, 48.8, 1.1,43.3 +NA,NA,a-cure-i1,2024-25,Gardner - Gardner Middle School,01030405, 0.2, 1.2, 4.3, 31.9, 5.3, 0.0, 57.2, 47.9, 51.8, 0.4,42.8 +NA,NA,a-cure-i1,2024-25,Gateway - Chester Elementary,06720059, 1.8, 0.0, 0.0, 6.1, 0.9, 0.0, 91.2, 52.6, 47.4, 0.0,8.799999999999997 +NA,NA,a-cure-i1,2024-25,Gateway - Gateway Regional School,06720505, 0.3, 0.3, 0.3, 7.2, 1.5, 0.0, 90.4, 48.3, 51.4, 0.3,9.599999999999994 +NA,NA,a-cure-i1,2024-25,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 5.0, 2.7, 0.4, 91.9, 48.5, 51.5, 0.0,8.099999999999994 +NA,NA,a-cure-i1,2024-25,Georgetown - Georgetown High School,01050505, 0.0, 1.1, 0.7, 14.2, 1.5, 0.7, 81.7, 47.0, 53.0, 0.0,18.299999999999997 +NA,NA,a-cure-i1,2024-25,Georgetown - Georgetown Middle School,01050305, 0.0, 1.6, 0.5, 4.8, 3.2, 0.0, 89.8, 47.1, 52.9, 0.0,10.200000000000003 +NA,NA,a-cure-i1,2024-25,Georgetown - Penn Brook,01050010, 0.0, 0.6, 0.7, 3.6, 2.8, 0.0, 92.3, 47.5, 52.5, 0.0,7.700000000000003 +NA,NA,a-cure-i1,2024-25,Georgetown - Perley Elementary,01050005, 0.0, 1.5, 0.0, 2.9, 1.5, 0.0, 94.1, 45.6, 54.4, 0.0,5.900000000000006 +NA,NA,a-cure-i1,2024-25,Gill-Montague - Gill Elementary,06740005, 0.0, 0.9, 1.8, 6.4, 9.1, 0.0, 81.8, 54.5, 44.5, 0.9,18.200000000000003 +NA,NA,a-cure-i1,2024-25,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.4, 1.8, 15.8, 4.8, 0.4, 76.8, 41.2, 58.3, 0.4,23.200000000000003 +NA,NA,a-cure-i1,2024-25,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 1.6, 5.7, 15.6, 6.6, 0.0, 70.5, 46.7, 53.3, 0.0,29.5 +NA,NA,a-cure-i1,2024-25,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 1.5, 21.6, 8.0, 0.0, 68.8, 46.2, 53.8, 0.0,31.200000000000003 +NA,NA,a-cure-i1,2024-25,Gill-Montague - Turners Fall High,06740505, 0.5, 1.0, 1.5, 19.1, 7.0, 0.0, 70.9, 45.2, 52.3, 2.5,29.099999999999994 +NA,NA,a-cure-i1,2024-25,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.4, 1.0, 13.6, 49.8, 3.3, 0.0, 31.9, 51.2, 48.8, 0.0,68.1 +NA,NA,a-cure-i1,2024-25,Gloucester - Beeman Memorial,01070010, 0.0, 1.7, 3.1, 28.4, 3.8, 0.0, 63.0, 55.1, 44.9, 0.0,37.0 +NA,NA,a-cure-i1,2024-25,Gloucester - East Veterans Elementary School,01070030, 0.0, 2.2, 3.8, 25.5, 5.5, 0.4, 62.5, 50.8, 49.2, 0.0,37.5 +NA,NA,a-cure-i1,2024-25,Gloucester - Gloucester High,01070505, 0.8, 1.2, 1.2, 18.0, 2.4, 0.1, 76.3, 47.0, 52.7, 0.3,23.700000000000003 +NA,NA,a-cure-i1,2024-25,Gloucester - Gloucester PreSchool,01070025, 0.0, 4.0, 3.0, 12.9, 0.0, 0.0, 80.2, 40.6, 59.4, 0.0,19.799999999999997 +NA,NA,a-cure-i1,2024-25,Gloucester - Plum Cove School,01070042, 0.0, 0.9, 1.8, 6.0, 6.5, 0.0, 84.8, 49.8, 50.2, 0.0,15.200000000000003 +NA,NA,a-cure-i1,2024-25,Gloucester - Ralph B O'Maley Middle,01070305, 0.2, 1.3, 2.3, 15.3, 4.0, 0.0, 76.9, 51.4, 48.5, 0.2,23.099999999999994 +NA,NA,a-cure-i1,2024-25,Gloucester - West Parish,01070050, 0.0, 1.3, 0.8, 7.9, 5.0, 0.8, 84.3, 47.6, 52.4, 0.0,15.700000000000003 +NA,NA,a-cure-i1,2024-25,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100.0 +NA,NA,a-cure-i1,2024-25,Grafton - Grafton High School,01100505, 0.4, 10.9, 2.6, 9.6, 3.0, 0.2, 73.2, 47.6, 52.1, 0.3,26.799999999999997 +NA,NA,a-cure-i1,2024-25,Grafton - Grafton Middle,01100305, 0.0, 15.7, 1.7, 7.9, 4.6, 0.0, 70.1, 45.8, 54.2, 0.0,29.900000000000006 +NA,NA,a-cure-i1,2024-25,Grafton - Millbury Street Elementary School,01100200, 0.9, 16.8, 3.2, 9.2, 2.1, 0.0, 67.9, 46.0, 54.0, 0.0,32.099999999999994 +NA,NA,a-cure-i1,2024-25,Grafton - North Grafton Elementary,01100025, 0.4, 21.0, 2.3, 7.4, 5.4, 0.0, 63.4, 50.2, 49.8, 0.0,36.6 +NA,NA,a-cure-i1,2024-25,Grafton - North Street Elementary School,01100030, 0.7, 18.3, 3.8, 7.7, 2.3, 0.0, 67.3, 49.2, 50.6, 0.2,32.7 +NA,NA,a-cure-i1,2024-25,Grafton - South Grafton Elementary,01100005, 0.7, 18.6, 2.9, 5.4, 3.2, 0.4, 68.9, 48.9, 50.7, 0.4,31.099999999999994 +NA,NA,a-cure-i1,2024-25,Granby - East Meadow,01110004, 0.3, 3.5, 1.1, 9.6, 3.5, 0.0, 82.1, 48.5, 51.5, 0.0,17.900000000000006 +NA,NA,a-cure-i1,2024-25,Granby - Granby Jr Sr High School,01110505, 0.3, 2.8, 0.0, 14.5, 3.1, 0.0, 79.3, 48.6, 51.4, 0.0,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.2, 6.3, 7.9, 25.3, 7.6, 0.3, 52.4, 53.8, 44.8, 1.4,47.6 +NA,NA,a-cure-i1,2024-25,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.2, 2.7, 4.5, 17.4, 6.2, 0.1, 69.0, 41.8, 57.4, 0.8,31.0 +NA,NA,a-cure-i1,2024-25,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.7, 1.7, 82.2, 0.8, 0.0, 14.5, 50.5, 49.2, 0.3,85.5 +NA,NA,a-cure-i1,2024-25,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.2, 19.8, 8.3, 33.1, 4.1, 0.0, 34.4, 47.5, 51.9, 0.6,65.6 +NA,NA,a-cure-i1,2024-25,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.2, 0.5, 9.8, 31.3, 6.4, 0.0, 51.7, 48.4, 51.6, 0.0,48.3 +NA,NA,a-cure-i1,2024-25,Greenfield - Discovery School at Four Corners,01140025, 0.5, 0.0, 1.6, 11.9, 3.2, 0.0, 82.7, 45.4, 54.6, 0.0,17.299999999999997 +NA,NA,a-cure-i1,2024-25,Greenfield - Federal Street School,01140010, 0.0, 1.0, 4.1, 23.6, 5.1, 0.0, 66.2, 48.7, 50.3, 1.0,33.8 +NA,NA,a-cure-i1,2024-25,Greenfield - Greenfield High,01140505, 0.0, 1.5, 3.7, 24.0, 6.7, 0.0, 64.1, 49.0, 50.7, 0.2,35.900000000000006 +NA,NA,a-cure-i1,2024-25,Greenfield - Greenfield Middle,01140305, 0.0, 1.2, 5.8, 20.0, 4.6, 0.3, 68.0, 46.5, 53.5, 0.0,32.0 +NA,NA,a-cure-i1,2024-25,Greenfield - Newton School,01140035, 0.0, 0.0, 5.7, 31.6, 5.7, 1.1, 55.7, 52.3, 47.7, 0.0,44.3 +NA,NA,a-cure-i1,2024-25,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.1, 8.0, 21.8, 4.6, 0.0, 64.4, 50.6, 49.4, 0.0,35.599999999999994 +NA,NA,a-cure-i1,2024-25,Groton-Dunstable - Boutwell School,06730001, 0.0, 7.8, 2.6, 3.9, 2.6, 0.0, 83.1, 40.3, 59.7, 0.0,16.900000000000006 +NA,NA,a-cure-i1,2024-25,Groton-Dunstable - Florence Roche School,06730010, 0.3, 9.6, 2.0, 5.2, 3.1, 0.0, 79.8, 48.5, 51.5, 0.0,20.200000000000003 +NA,NA,a-cure-i1,2024-25,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.2, 8.5, 2.6, 3.6, 2.7, 0.2, 82.2, 49.9, 49.8, 0.3,17.799999999999997 +NA,NA,a-cure-i1,2024-25,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.4, 9.6, 1.6, 4.2, 4.6, 0.3, 79.3, 47.4, 52.6, 0.0,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 7.6, 1.4, 5.7, 3.8, 0.0, 81.4, 42.9, 57.1, 0.0,18.599999999999994 +NA,NA,a-cure-i1,2024-25,Hadley - Hadley Elementary,01170015, 0.0, 6.0, 2.5, 13.0, 3.8, 0.0, 74.6, 49.2, 50.5, 0.3,25.400000000000006 +NA,NA,a-cure-i1,2024-25,Hadley - Hopkins Academy,01170505, 0.5, 4.4, 4.9, 15.8, 2.5, 2.0, 70.0, 43.8, 55.7, 0.5,30.0 +NA,NA,a-cure-i1,2024-25,Halifax - Halifax Elementary,01180005, 0.2, 0.0, 1.9, 4.7, 1.9, 0.0, 91.3, 45.4, 54.6, 0.0,8.700000000000003 +NA,NA,a-cure-i1,2024-25,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.7, 1.2, 6.3, 2.4, 0.0, 87.5, 50.6, 49.4, 0.0,12.5 +NA,NA,a-cure-i1,2024-25,Hamilton-Wenham - Cutler School,06750010, 0.0, 1.6, 0.4, 7.3, 2.4, 0.0, 88.2, 50.0, 50.0, 0.0,11.799999999999997 +NA,NA,a-cure-i1,2024-25,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 3.1, 0.7, 3.3, 3.6, 0.7, 88.6, 51.1, 48.4, 0.4,11.400000000000006 +NA,NA,a-cure-i1,2024-25,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 4.6, 1.0, 6.9, 3.3, 0.0, 84.1, 53.2, 46.8, 0.0,15.900000000000006 +NA,NA,a-cure-i1,2024-25,Hamilton-Wenham - Winthrop School,06750015, 0.0, 4.6, 0.6, 5.8, 2.7, 0.0, 86.3, 48.3, 51.7, 0.0,13.700000000000003 +NA,NA,a-cure-i1,2024-25,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 0.6, 3.7, 22.5, 39.0, 2.8, 0.2, 31.1, 45.0, 55.0, 0.0,68.9 +NA,NA,a-cure-i1,2024-25,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.4, 3.5, 10.2, 3.5, 0.0, 82.5, 47.0, 53.0, 0.0,17.5 +NA,NA,a-cure-i1,2024-25,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.6, 2.0, 3.4, 6.5, 5.1, 0.0, 82.5, 40.8, 59.2, 0.0,17.5 +NA,NA,a-cure-i1,2024-25,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.2, 3.0, 4.8, 13.3, 4.3, 0.0, 74.2, 48.7, 51.0, 0.3,25.799999999999997 +NA,NA,a-cure-i1,2024-25,Hampden-Wilbraham - Soule Road,06800030, 0.3, 1.6, 4.0, 9.7, 4.0, 0.0, 80.4, 46.4, 53.6, 0.0,19.599999999999994 +NA,NA,a-cure-i1,2024-25,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 1.6, 4.1, 6.6, 4.7, 0.0, 83.0, 51.4, 48.3, 0.3,17.0 +NA,NA,a-cure-i1,2024-25,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 3.1, 3.1, 9.1, 4.2, 0.3, 80.1, 50.9, 48.9, 0.2,19.900000000000006 +NA,NA,a-cure-i1,2024-25,Hampshire - Hampshire Regional High,06830505, 0.1, 1.3, 0.8, 7.5, 2.8, 0.0, 87.5, 52.6, 46.4, 1.0,12.5 +NA,NA,a-cure-i1,2024-25,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 2.1, 8.3, 2.1, 0.0, 87.5, 68.8, 31.3, 0.0,12.5 +NA,NA,a-cure-i1,2024-25,Hanover - Cedar Elementary,01220004, 0.0, 2.3, 1.9, 4.0, 4.2, 0.0, 87.7, 47.0, 53.0, 0.0,12.299999999999997 +NA,NA,a-cure-i1,2024-25,Hanover - Center Elementary,01220005, 0.2, 1.4, 1.7, 3.4, 2.1, 0.0, 91.2, 50.5, 49.5, 0.0,8.799999999999997 +NA,NA,a-cure-i1,2024-25,Hanover - Hanover High,01220505, 0.0, 2.7, 1.5, 2.9, 1.1, 0.0, 91.9, 54.0, 46.0, 0.0,8.099999999999994 +NA,NA,a-cure-i1,2024-25,Hanover - Hanover Middle,01220305, 0.0, 1.9, 0.8, 3.5, 1.6, 0.0, 92.1, 47.1, 52.8, 0.1,7.900000000000006 +NA,NA,a-cure-i1,2024-25,Harvard - Hildreth Elementary School,01250005, 0.7, 14.9, 1.8, 8.2, 8.0, 0.0, 66.5, 45.7, 54.3, 0.0,33.5 +NA,NA,a-cure-i1,2024-25,Harvard - The Bromfield High School,01250505, 0.0, 12.5, 2.4, 4.3, 6.4, 0.0, 74.4, 54.3, 45.4, 0.3,25.599999999999994 +NA,NA,a-cure-i1,2024-25,Harvard - The Bromfield Middle School,01250305, 0.0, 14.8, 4.1, 4.1, 4.1, 0.0, 73.0, 46.7, 52.5, 0.8,27.0 +NA,NA,a-cure-i1,2024-25,Hatfield - Hatfield Elementary,01270005, 0.0, 1.0, 1.5, 2.0, 5.5, 0.0, 90.0, 49.8, 49.8, 0.5,10.0 +NA,NA,a-cure-i1,2024-25,Hatfield - Smith Academy,01270505, 0.0, 0.9, 0.0, 1.8, 0.9, 0.0, 96.3, 48.6, 51.4, 0.0,3.700000000000003 +NA,NA,a-cure-i1,2024-25,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 2.2, 8.9, 42.2, 2.2, 0.0, 44.4, 20.0, 80.0, 0.0,55.6 +NA,NA,a-cure-i1,2024-25,Haverhill - Bradford Elementary,01280008, 0.0, 0.7, 5.9, 45.4, 2.5, 0.0, 45.6, 44.0, 56.0, 0.0,54.4 +NA,NA,a-cure-i1,2024-25,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 1.8, 6.2, 33.1, 3.2, 0.0, 55.7, 49.3, 50.7, 0.0,44.3 +NA,NA,a-cure-i1,2024-25,Haverhill - Consentino Middle School,01280100, 0.0, 1.9, 6.8, 57.0, 3.2, 0.0, 31.1, 50.8, 49.2, 0.0,68.9 +NA,NA,a-cure-i1,2024-25,Haverhill - Dr Paul Nettle,01280050, 0.0, 2.4, 5.2, 53.9, 2.0, 0.2, 36.4, 49.3, 50.7, 0.0,63.6 +NA,NA,a-cure-i1,2024-25,Haverhill - Gateway Academy,01280515, 0.0, 0.6, 1.9, 38.5, 1.3, 0.0, 57.7, 47.4, 51.3, 1.3,42.3 +NA,NA,a-cure-i1,2024-25,Haverhill - Golden Hill,01280026, 0.2, 1.4, 6.2, 47.0, 2.4, 0.0, 42.8, 50.6, 49.4, 0.0,57.2 +NA,NA,a-cure-i1,2024-25,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 8.8, 44.1, 2.9, 0.0, 44.1, 35.3, 64.7, 0.0,55.9 +NA,NA,a-cure-i1,2024-25,Haverhill - Haverhill High,01280505, 0.2, 1.9, 5.9, 45.2, 2.1, 0.2, 44.5, 47.2, 52.6, 0.2,55.5 +NA,NA,a-cure-i1,2024-25,Haverhill - John G Whittier,01280085, 0.2, 0.6, 8.2, 51.1, 2.5, 0.0, 37.4, 49.3, 50.7, 0.0,62.6 +NA,NA,a-cure-i1,2024-25,Haverhill - Moody,01280045, 0.6, 0.0, 12.6, 50.9, 2.4, 0.0, 33.5, 38.9, 61.1, 0.0,66.5 +NA,NA,a-cure-i1,2024-25,Haverhill - Moody Preschool Extension,01280001, 0.6, 1.7, 9.2, 53.4, 3.4, 0.0, 31.6, 36.2, 63.8, 0.0,68.4 +NA,NA,a-cure-i1,2024-25,Haverhill - Pentucket Lake Elementary,01280054, 0.4, 0.9, 8.3, 51.6, 2.3, 0.0, 36.4, 48.8, 51.2, 0.0,63.6 +NA,NA,a-cure-i1,2024-25,Haverhill - Silver Hill Elementary School,01280067, 0.2, 3.3, 7.1, 58.2, 2.1, 0.2, 28.9, 47.0, 53.0, 0.0,71.1 +NA,NA,a-cure-i1,2024-25,Haverhill - Tilton,01280075, 0.2, 0.6, 5.5, 65.4, 2.1, 0.2, 25.9, 45.0, 55.0, 0.0,74.1 +NA,NA,a-cure-i1,2024-25,Haverhill - Walnut Square,01280080, 0.0, 1.9, 9.3, 34.2, 1.9, 0.0, 52.8, 47.2, 52.8, 0.0,47.2 +NA,NA,a-cure-i1,2024-25,Hawlemont - Hawlemont Regional,06850005, 1.4, 0.0, 0.0, 1.4, 1.4, 0.0, 95.8, 52.1, 47.9, 0.0,4.200000000000003 +NA,NA,a-cure-i1,2024-25,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.7, 6.5, 43.5, 6.5, 0.0, 42.8, 52.3, 47.7, 0.0,57.2 +NA,NA,a-cure-i1,2024-25,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.8, 0.0, 8.7, 10.1, 0.0, 78.4, 42.7, 54.6, 2.8,21.599999999999994 +NA,NA,a-cure-i1,2024-25,Hingham - East Elementary School,01310005, 0.2, 2.2, 0.8, 1.8, 1.6, 0.0, 93.4, 45.0, 55.0, 0.0,6.599999999999994 +NA,NA,a-cure-i1,2024-25,Hingham - Hingham High,01310505, 0.1, 3.7, 2.0, 4.8, 3.6, 0.0, 85.9, 49.5, 49.7, 0.8,14.099999999999994 +NA,NA,a-cure-i1,2024-25,Hingham - Hingham Middle School,01310410, 0.0, 3.3, 1.4, 6.0, 4.4, 0.0, 85.0, 49.5, 50.5, 0.0,15.0 +NA,NA,a-cure-i1,2024-25,Hingham - Plymouth River,01310019, 0.0, 1.1, 3.4, 5.4, 3.1, 0.0, 86.9, 48.3, 51.7, 0.0,13.099999999999994 +NA,NA,a-cure-i1,2024-25,Hingham - South Elementary,01310020, 0.0, 5.8, 1.4, 1.2, 1.6, 0.0, 89.9, 49.6, 50.4, 0.0,10.099999999999994 +NA,NA,a-cure-i1,2024-25,Hingham - Wm L Foster Elementary,01310010, 0.0, 1.5, 1.5, 4.0, 6.7, 0.2, 86.1, 44.5, 55.5, 0.0,13.900000000000006 +NA,NA,a-cure-i1,2024-25,Holbrook - Holbrook Middle High School,01330505, 0.3, 8.0, 30.5, 17.4, 6.5, 0.0, 37.3, 49.0, 50.5, 0.5,62.7 +NA,NA,a-cure-i1,2024-25,Holbrook - John F Kennedy,01330018, 0.6, 5.0, 23.4, 21.3, 9.6, 0.1, 40.0, 49.1, 50.9, 0.0,60.0 +NA,NA,a-cure-i1,2024-25,Holland - Holland Elementary,01350005, 0.5, 1.4, 1.4, 6.6, 1.9, 0.0, 88.2, 55.2, 44.8, 0.0,11.799999999999997 +NA,NA,a-cure-i1,2024-25,Holliston - Holliston High,01360505, 0.2, 9.3, 1.0, 7.7, 3.7, 0.4, 77.8, 48.9, 50.2, 0.9,22.200000000000003 +NA,NA,a-cure-i1,2024-25,Holliston - Miller School,01360007, 0.6, 9.7, 2.2, 7.6, 7.9, 0.0, 72.1, 44.5, 55.5, 0.0,27.900000000000006 +NA,NA,a-cure-i1,2024-25,Holliston - Placentino Elementary,01360010, 0.3, 8.8, 1.5, 7.4, 6.1, 0.2, 75.7, 48.4, 51.2, 0.3,24.299999999999997 +NA,NA,a-cure-i1,2024-25,Holliston - Robert H. Adams Middle School,01360305, 0.6, 8.8, 1.0, 7.0, 4.5, 0.2, 78.0, 47.8, 51.9, 0.3,22.0 +NA,NA,a-cure-i1,2024-25,Holyoke - E N White Elementary,01370045, 0.0, 0.2, 2.0, 74.2, 2.9, 0.0, 20.8, 51.0, 49.0, 0.0,79.2 +NA,NA,a-cure-i1,2024-25,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.3, 7.2, 82.3, 2.0, 0.3, 7.9, 46.2, 53.8, 0.0,92.1 +NA,NA,a-cure-i1,2024-25,Holyoke - Holyoke High,01370505, 0.0, 0.9, 4.5, 82.6, 1.5, 0.0, 10.5, 46.0, 53.7, 0.3,89.5 +NA,NA,a-cure-i1,2024-25,Holyoke - Holyoke STEM Academy,01370320, 0.0, 1.0, 6.2, 81.7, 1.7, 0.0, 9.3, 50.2, 49.8, 0.0,90.7 +NA,NA,a-cure-i1,2024-25,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.9, 4.2, 81.2, 2.3, 0.0, 11.3, 49.8, 50.2, 0.0,88.7 +NA,NA,a-cure-i1,2024-25,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 4.3, 90.7, 0.6, 0.0, 4.3, 47.0, 53.0, 0.0,95.7 +NA,NA,a-cure-i1,2024-25,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 1.7, 6.7, 80.1, 1.3, 0.0, 10.2, 49.2, 50.8, 0.0,89.8 +NA,NA,a-cure-i1,2024-25,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.9, 5.0, 69.4, 2.8, 0.3, 20.5, 41.3, 58.7, 0.0,79.5 +NA,NA,a-cure-i1,2024-25,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.8, 4.9, 78.9, 2.1, 0.3, 13.1, 46.4, 53.6, 0.0,86.9 +NA,NA,a-cure-i1,2024-25,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 6.3, 85.9, 1.5, 0.0, 6.3, 48.2, 51.8, 0.0,93.7 +NA,NA,a-cure-i1,2024-25,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.1, 0.1, 1.7, 93.6, 1.4, 0.0, 3.0, 55.1, 44.9, 0.0,97.0 +NA,NA,a-cure-i1,2024-25,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.5, 2.0, 5.5, 6.3, 0.3, 84.4, 46.0, 54.0, 0.0,15.599999999999994 +NA,NA,a-cure-i1,2024-25,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 5.7, 7.1, 1.7, 0.0, 85.5, 48.3, 51.7, 0.0,14.5 +NA,NA,a-cure-i1,2024-25,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 1.0, 2.0, 4.6, 4.6, 0.0, 87.8, 48.4, 51.6, 0.0,12.200000000000003 +NA,NA,a-cure-i1,2024-25,Hopedale - Hopedale Jr Sr High,01380505, 0.2, 1.3, 2.0, 14.9, 3.5, 0.2, 77.9, 48.9, 50.9, 0.2,22.099999999999994 +NA,NA,a-cure-i1,2024-25,Hopedale - Memorial,01380010, 0.7, 2.5, 0.4, 15.2, 6.6, 0.0, 74.6, 45.0, 54.7, 0.4,25.400000000000006 +NA,NA,a-cure-i1,2024-25,Hopedale - Park Street School,01380003, 0.0, 3.2, 0.0, 10.6, 6.4, 0.0, 79.8, 44.7, 55.3, 0.0,20.200000000000003 +NA,NA,a-cure-i1,2024-25,Hopkinton - Elmwood,01390010, 0.2, 32.4, 1.2, 6.6, 7.6, 0.0, 52.0, 45.1, 54.8, 0.2,48.0 +NA,NA,a-cure-i1,2024-25,Hopkinton - Hopkins Elementary School,01390015, 0.3, 34.6, 0.9, 7.0, 5.9, 0.0, 51.3, 47.5, 52.5, 0.0,48.7 +NA,NA,a-cure-i1,2024-25,Hopkinton - Hopkinton High,01390505, 0.3, 26.5, 0.8, 5.4, 4.5, 0.0, 62.5, 49.5, 50.3, 0.2,37.5 +NA,NA,a-cure-i1,2024-25,Hopkinton - Hopkinton Middle School,01390305, 0.2, 34.3, 0.8, 4.8, 4.7, 0.0, 55.1, 48.7, 51.3, 0.0,44.9 +NA,NA,a-cure-i1,2024-25,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 30.3, 2.2, 5.6, 12.4, 0.0, 49.4, 46.1, 53.9, 0.0,50.6 +NA,NA,a-cure-i1,2024-25,Hopkinton - Marathon Elementary School,01390005, 0.0, 34.9, 1.1, 6.4, 9.4, 0.0, 48.3, 47.7, 52.1, 0.2,51.7 +NA,NA,a-cure-i1,2024-25,Hudson - C A Farley,01410030, 0.0, 0.8, 3.6, 31.4, 2.7, 0.0, 61.4, 50.2, 49.8, 0.0,38.6 +NA,NA,a-cure-i1,2024-25,Hudson - David J. Quinn Middle School,01410410, 0.2, 0.5, 3.7, 24.9, 2.0, 0.0, 68.7, 48.7, 51.1, 0.2,31.299999999999997 +NA,NA,a-cure-i1,2024-25,Hudson - Forest Avenue Elementary,01410015, 0.0, 1.1, 3.0, 20.4, 3.0, 0.0, 72.5, 45.0, 55.0, 0.0,27.5 +NA,NA,a-cure-i1,2024-25,Hudson - Hudson High,01410505, 0.0, 1.0, 3.4, 23.3, 3.2, 0.0, 69.0, 53.1, 46.6, 0.4,31.0 +NA,NA,a-cure-i1,2024-25,Hudson - Mulready Elementary,01410007, 0.0, 0.8, 3.2, 24.1, 2.0, 0.0, 69.9, 49.8, 50.2, 0.0,30.099999999999994 +NA,NA,a-cure-i1,2024-25,Hull - Hull High,01420505, 0.4, 1.8, 2.5, 6.1, 2.5, 0.0, 86.7, 48.6, 50.7, 0.7,13.299999999999997 +NA,NA,a-cure-i1,2024-25,Hull - Lillian M Jacobs,01420015, 0.0, 0.9, 2.5, 4.6, 3.9, 0.0, 88.0, 44.5, 55.5, 0.0,12.0 +NA,NA,a-cure-i1,2024-25,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.6, 10.4, 9.2, 17.3, 6.0, 0.0, 56.5, 50.0, 49.6, 0.4,43.5 +NA,NA,a-cure-i1,2024-25,Ipswich - Ipswich High,01440505, 0.0, 2.2, 1.8, 10.1, 3.4, 0.0, 82.6, 52.6, 47.4, 0.0,17.400000000000006 +NA,NA,a-cure-i1,2024-25,Ipswich - Ipswich Middle School,01440305, 0.3, 0.5, 1.1, 9.3, 6.4, 0.0, 82.5, 51.5, 48.5, 0.0,17.5 +NA,NA,a-cure-i1,2024-25,Ipswich - Paul F Doyon Memorial,01440007, 0.5, 1.1, 1.6, 8.7, 5.7, 0.0, 82.2, 46.7, 53.3, 0.0,17.799999999999997 +NA,NA,a-cure-i1,2024-25,Ipswich - Winthrop,01440015, 0.0, 2.7, 1.1, 10.2, 4.8, 0.0, 81.2, 48.3, 51.7, 0.0,18.799999999999997 +NA,NA,a-cure-i1,2024-25,King Philip - King Philip Middle School,06900510, 0.3, 3.0, 4.7, 5.8, 4.0, 0.0, 82.3, 48.0, 51.7, 0.3,17.700000000000003 +NA,NA,a-cure-i1,2024-25,King Philip - King Philip Regional High,06900505, 0.2, 4.2, 4.1, 6.1, 4.1, 0.0, 81.2, 49.6, 50.1, 0.4,18.799999999999997 +NA,NA,a-cure-i1,2024-25,Kingston - Kingston Elementary,01450005, 0.8, 0.6, 5.7, 7.5, 1.3, 0.2, 83.9, 46.7, 53.3, 0.0,16.099999999999994 +NA,NA,a-cure-i1,2024-25,Kingston - Kingston Intermediate,01450020, 0.3, 0.8, 3.7, 4.8, 2.0, 0.2, 88.2, 50.1, 49.9, 0.0,11.799999999999997 +NA,NA,a-cure-i1,2024-25,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.8, 0.0, 59.1, 36.4, 3.1, 0.0, 0.6, 51.2, 48.8, 0.0,99.4 +NA,NA,a-cure-i1,2024-25,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.3, 3.8, 14.5, 73.6, 2.6, 0.1, 5.0, 50.8, 49.2, 0.0,95.0 +NA,NA,a-cure-i1,2024-25,Lawrence - Alexander B Bruce,01490015, 0.0, 0.2, 2.6, 94.8, 0.9, 0.0, 1.5, 48.1, 51.9, 0.0,98.5 +NA,NA,a-cure-i1,2024-25,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.7, 96.6, 0.2, 0.0, 2.5, 47.5, 52.5, 0.0,97.5 +NA,NA,a-cure-i1,2024-25,Lawrence - Arlington Middle School,01490017, 0.2, 0.0, 0.2, 97.4, 0.6, 0.0, 1.7, 49.7, 49.4, 0.9,98.3 +NA,NA,a-cure-i1,2024-25,Lawrence - Edward F. Parthum,01490053, 0.2, 0.3, 2.0, 93.6, 0.5, 0.0, 3.5, 46.0, 54.0, 0.0,96.5 +NA,NA,a-cure-i1,2024-25,Lawrence - Emily G Wetherbee,01490080, 0.0, 2.5, 1.5, 92.7, 0.2, 0.0, 3.1, 49.4, 50.4, 0.2,96.9 +NA,NA,a-cure-i1,2024-25,Lawrence - Francis M Leahy,01490040, 0.0, 0.2, 1.3, 97.0, 0.0, 0.2, 1.3, 46.1, 53.9, 0.0,98.7 +NA,NA,a-cure-i1,2024-25,Lawrence - Frost Middle School,01490525, 0.0, 2.6, 1.8, 89.8, 0.8, 0.0, 5.1, 48.0, 51.6, 0.4,94.9 +NA,NA,a-cure-i1,2024-25,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.0, 1.2, 94.4, 0.4, 0.4, 2.5, 48.5, 51.5, 0.0,97.5 +NA,NA,a-cure-i1,2024-25,Lawrence - Guilmette Middle School,01490025, 0.0, 0.9, 2.2, 94.7, 0.0, 0.0, 2.2, 47.7, 52.3, 0.0,97.8 +NA,NA,a-cure-i1,2024-25,Lawrence - High School Learning Center,01490536, 0.0, 1.5, 1.5, 93.9, 0.0, 0.0, 3.0, 42.4, 57.6, 0.0,97.0 +NA,NA,a-cure-i1,2024-25,Lawrence - James F Hennessey,01490020, 0.0, 1.0, 1.7, 94.0, 0.3, 0.0, 3.0, 45.7, 54.3, 0.0,97.0 +NA,NA,a-cure-i1,2024-25,Lawrence - John Breen School,01490003, 0.0, 3.1, 3.1, 88.5, 1.1, 0.0, 4.2, 40.1, 59.9, 0.0,95.8 +NA,NA,a-cure-i1,2024-25,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 97.9, 0.4, 0.0, 1.8, 43.4, 56.6, 0.0,98.2 +NA,NA,a-cure-i1,2024-25,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.5, 2.9, 95.6, 0.0, 0.0, 1.0, 47.3, 52.7, 0.0,99.0 +NA,NA,a-cure-i1,2024-25,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 3.5, 94.6, 0.5, 0.0, 1.5, 50.0, 50.0, 0.0,98.5 +NA,NA,a-cure-i1,2024-25,Lawrence - Lawrence High School,01490515, 0.0, 1.0, 1.5, 95.3, 0.2, 0.0, 2.0, 47.1, 52.7, 0.2,98.0 +NA,NA,a-cure-i1,2024-25,Lawrence - Leonard Middle School,01490090, 0.0, 0.0, 1.3, 98.1, 0.0, 0.0, 0.6, 43.5, 56.5, 0.0,99.4 +NA,NA,a-cure-i1,2024-25,Lawrence - Oliver Elementary School,01490048, 0.0, 0.2, 1.9, 95.5, 0.6, 0.0, 1.7, 49.7, 50.3, 0.0,98.3 +NA,NA,a-cure-i1,2024-25,Lawrence - Oliver Middle School,01490049, 0.0, 0.6, 1.1, 97.4, 0.3, 0.0, 0.6, 48.3, 51.7, 0.0,99.4 +NA,NA,a-cure-i1,2024-25,Lawrence - Parthum Middle School,01490027, 0.0, 0.3, 1.9, 94.2, 0.2, 0.0, 3.4, 44.8, 55.0, 0.2,96.6 +NA,NA,a-cure-i1,2024-25,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 95.9, 1.4, 0.0, 2.7, 25.7, 73.0, 1.4,97.3 +NA,NA,a-cure-i1,2024-25,Lawrence - Robert Frost,01490018, 0.0, 3.0, 2.6, 87.5, 0.9, 0.0, 6.0, 49.1, 50.9, 0.0,94.0 +NA,NA,a-cure-i1,2024-25,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.6, 0.6, 96.8, 0.0, 0.0, 1.9, 42.0, 58.0, 0.0,98.1 +NA,NA,a-cure-i1,2024-25,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 4.2, 90.7, 0.0, 0.0, 5.1, 19.5, 79.7, 0.8,94.9 +NA,NA,a-cure-i1,2024-25,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 1.5, 1.7, 94.3, 0.5, 0.0, 2.1, 50.2, 49.8, 0.0,97.9 +NA,NA,a-cure-i1,2024-25,Lawrence - Spark Academy,01490085, 0.0, 1.4, 1.1, 94.4, 0.5, 0.0, 2.7, 47.0, 53.0, 0.0,97.3 +NA,NA,a-cure-i1,2024-25,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 55.6, 44.4, 0.0,100.0 +NA,NA,a-cure-i1,2024-25,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.2, 0.6, 43.7, 49.1, 1.1, 0.0, 5.4, 49.8, 50.2, 0.0,94.6 +NA,NA,a-cure-i1,2024-25,Lee - Lee Elementary,01500025, 0.0, 3.0, 0.9, 14.8, 2.7, 0.0, 78.5, 50.8, 49.2, 0.0,21.5 +NA,NA,a-cure-i1,2024-25,Lee - Lee Middle/High School,01500505, 0.3, 2.1, 1.2, 12.5, 2.1, 0.0, 81.7, 46.0, 53.7, 0.3,18.299999999999997 +NA,NA,a-cure-i1,2024-25,Leicester - Leicester Elementary,01510005, 0.0, 3.0, 7.5, 21.8, 4.9, 0.6, 62.1, 52.5, 47.5, 0.0,37.9 +NA,NA,a-cure-i1,2024-25,Leicester - Leicester High,01510505, 0.3, 3.1, 7.0, 19.8, 4.6, 0.0, 65.2, 44.3, 55.4, 0.3,34.8 +NA,NA,a-cure-i1,2024-25,Leicester - Leicester Integrated Preschool,01510001, 0.0, 2.2, 15.6, 11.1, 6.7, 0.0, 64.4, 44.4, 55.6, 0.0,35.599999999999994 +NA,NA,a-cure-i1,2024-25,Leicester - Leicester Middle,01510015, 0.3, 4.1, 6.9, 18.3, 3.6, 0.3, 66.8, 49.2, 50.8, 0.0,33.2 +NA,NA,a-cure-i1,2024-25,Lenox - Lenox Memorial High,01520505, 0.0, 5.0, 0.7, 10.0, 4.8, 0.0, 79.5, 48.7, 51.0, 0.2,20.5 +NA,NA,a-cure-i1,2024-25,Lenox - Morris,01520015, 0.0, 7.8, 1.5, 9.6, 6.6, 0.9, 73.5, 45.5, 54.5, 0.0,26.5 +NA,NA,a-cure-i1,2024-25,Leominster - Bennett,01530003, 0.0, 0.9, 13.0, 27.8, 3.5, 0.0, 54.8, 46.1, 53.9, 0.0,45.2 +NA,NA,a-cure-i1,2024-25,Leominster - Center For Technical Education Innovation,01530605, 0.1, 2.9, 9.0, 44.6, 3.3, 0.1, 40.0, 36.8, 63.2, 0.0,60.0 +NA,NA,a-cure-i1,2024-25,Leominster - Fall Brook,01530007, 0.1, 3.0, 8.4, 35.4, 5.5, 0.0, 47.6, 46.1, 53.9, 0.0,52.4 +NA,NA,a-cure-i1,2024-25,Leominster - Frances Drake School,01530010, 0.0, 3.5, 9.6, 53.5, 4.1, 0.0, 29.3, 50.0, 50.0, 0.0,70.7 +NA,NA,a-cure-i1,2024-25,Leominster - Johnny Appleseed,01530025, 0.0, 3.8, 12.4, 37.6, 4.2, 0.0, 42.1, 48.8, 51.2, 0.0,57.9 +NA,NA,a-cure-i1,2024-25,Leominster - Leominster Academy,01530705, 0.0, 0.0, 6.3, 56.3, 0.0, 0.0, 37.5, 68.8, 31.3, 0.0,62.5 +NA,NA,a-cure-i1,2024-25,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 4.6, 47.7, 3.1, 0.0, 44.6, 47.7, 43.1, 9.2,55.4 +NA,NA,a-cure-i1,2024-25,Leominster - Leominster High School,01530505, 0.3, 3.5, 10.2, 41.0, 5.3, 0.1, 39.6, 54.2, 45.6, 0.2,60.4 +NA,NA,a-cure-i1,2024-25,Leominster - Lincoln School,01530005, 0.0, 4.3, 23.9, 37.0, 2.2, 0.0, 32.6, 21.7, 78.3, 0.0,67.4 +NA,NA,a-cure-i1,2024-25,Leominster - Northwest,01530030, 0.3, 3.8, 10.1, 49.8, 4.1, 0.0, 32.0, 50.8, 49.2, 0.0,68.0 +NA,NA,a-cure-i1,2024-25,Leominster - Priest Street,01530040, 0.7, 3.3, 9.9, 49.0, 6.6, 0.0, 30.5, 45.0, 55.0, 0.0,69.5 +NA,NA,a-cure-i1,2024-25,Leominster - Samoset School,01530045, 0.0, 3.4, 10.7, 41.4, 4.0, 0.0, 40.4, 45.7, 54.3, 0.0,59.6 +NA,NA,a-cure-i1,2024-25,Leominster - Sky View Middle School,01530320, 0.1, 3.2, 9.7, 44.8, 4.4, 0.1, 37.7, 49.3, 50.7, 0.0,62.3 +NA,NA,a-cure-i1,2024-25,Leverett - Leverett Elementary,01540005, 0.0, 1.5, 0.0, 3.6, 10.2, 0.0, 84.7, 51.8, 47.4, 0.7,15.299999999999997 +NA,NA,a-cure-i1,2024-25,Lexington - Bowman,01550008, 0.0, 42.7, 6.5, 5.4, 10.5, 0.0, 35.0, 48.7, 51.3, 0.0,65.0 +NA,NA,a-cure-i1,2024-25,Lexington - Bridge,01550006, 0.0, 50.4, 4.3, 10.7, 11.9, 0.0, 22.6, 49.3, 50.7, 0.0,77.4 +NA,NA,a-cure-i1,2024-25,Lexington - Fiske,01550015, 0.3, 42.0, 1.9, 7.7, 9.6, 0.0, 38.6, 46.3, 53.7, 0.0,61.4 +NA,NA,a-cure-i1,2024-25,Lexington - Harrington,01550030, 0.0, 49.2, 8.8, 6.1, 8.8, 0.0, 27.0, 57.5, 42.5, 0.0,73.0 +NA,NA,a-cure-i1,2024-25,Lexington - Jonas Clarke Middle,01550305, 0.0, 42.5, 5.3, 5.2, 7.5, 0.0, 39.6, 51.5, 48.4, 0.1,60.4 +NA,NA,a-cure-i1,2024-25,Lexington - Joseph Estabrook,01550010, 0.0, 50.4, 2.2, 6.7, 9.4, 0.0, 31.2, 49.2, 50.8, 0.0,68.8 +NA,NA,a-cure-i1,2024-25,Lexington - Lexington Children's Place,01550001, 0.0, 45.7, 5.7, 10.0, 8.6, 0.0, 30.0, 44.3, 55.7, 0.0,70.0 +NA,NA,a-cure-i1,2024-25,Lexington - Lexington High,01550505, 0.1, 46.7, 4.4, 4.6, 6.7, 0.0, 37.5, 48.8, 50.9, 0.3,62.5 +NA,NA,a-cure-i1,2024-25,Lexington - Maria Hastings,01550035, 0.0, 50.3, 5.0, 7.3, 9.0, 0.0, 28.5, 50.8, 49.2, 0.0,71.5 +NA,NA,a-cure-i1,2024-25,Lexington - Wm Diamond Middle,01550310, 0.0, 44.6, 4.1, 7.6, 8.7, 0.0, 35.1, 47.9, 52.1, 0.0,64.9 +NA,NA,a-cure-i1,2024-25,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.9, 12.8, 82.1, 2.0, 0.0, 2.3, 50.3, 49.7, 0.0,97.7 +NA,NA,a-cure-i1,2024-25,Lincoln - Hanscom School,01570305, 0.0, 3.4, 6.9, 28.0, 12.0, 0.2, 49.5, 50.3, 49.7, 0.0,50.5 +NA,NA,a-cure-i1,2024-25,Lincoln - Lincoln School,01570025, 0.0, 8.1, 10.6, 13.0, 12.5, 0.0, 55.9, 49.8, 49.8, 0.4,44.1 +NA,NA,a-cure-i1,2024-25,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 10.0, 5.0, 7.4, 7.6, 0.2, 69.8, 47.8, 51.8, 0.5,30.200000000000003 +NA,NA,a-cure-i1,2024-25,Littleton - Littleton High School,01580505, 0.2, 16.4, 1.7, 5.4, 1.2, 0.2, 74.9, 52.1, 47.7, 0.2,25.099999999999994 +NA,NA,a-cure-i1,2024-25,Littleton - Littleton Middle School,01580305, 0.0, 15.3, 0.8, 5.1, 2.9, 0.8, 75.1, 48.5, 51.2, 0.3,24.900000000000006 +NA,NA,a-cure-i1,2024-25,Littleton - Russell St Elementary,01580015, 0.0, 19.5, 2.1, 2.4, 1.9, 0.8, 73.3, 46.1, 53.9, 0.0,26.700000000000003 +NA,NA,a-cure-i1,2024-25,Littleton - Shaker Lane Elementary,01580005, 0.2, 14.6, 1.2, 5.4, 6.4, 0.2, 72.0, 44.9, 55.1, 0.0,28.0 +NA,NA,a-cure-i1,2024-25,Longmeadow - Blueberry Hill,01590005, 0.0, 12.7, 2.5, 6.1, 5.5, 0.0, 73.2, 49.4, 50.6, 0.0,26.799999999999997 +NA,NA,a-cure-i1,2024-25,Longmeadow - Center,01590010, 0.0, 5.1, 3.4, 8.5, 5.3, 0.0, 77.7, 50.5, 49.5, 0.0,22.299999999999997 +NA,NA,a-cure-i1,2024-25,Longmeadow - Glenbrook Middle,01590017, 0.0, 9.8, 4.9, 10.4, 5.2, 0.0, 69.7, 45.3, 54.7, 0.0,30.299999999999997 +NA,NA,a-cure-i1,2024-25,Longmeadow - Longmeadow High,01590505, 0.0, 11.6, 3.7, 7.7, 4.9, 0.3, 71.8, 46.3, 53.1, 0.7,28.200000000000003 +NA,NA,a-cure-i1,2024-25,Longmeadow - Williams Middle,01590305, 0.0, 11.3, 3.3, 7.4, 5.6, 0.0, 72.4, 50.7, 49.0, 0.3,27.599999999999994 +NA,NA,a-cure-i1,2024-25,Longmeadow - Wolf Swamp Road,01590025, 0.0, 11.9, 3.7, 7.9, 5.8, 0.0, 70.6, 45.7, 54.3, 0.0,29.400000000000006 +NA,NA,a-cure-i1,2024-25,Lowell - Abraham Lincoln,01600020, 0.0, 37.0, 5.9, 37.8, 4.9, 0.2, 14.2, 48.2, 51.8, 0.0,85.8 +NA,NA,a-cure-i1,2024-25,Lowell - B.F. Butler Middle School,01600310, 0.2, 29.8, 6.8, 41.3, 3.7, 0.0, 18.2, 48.3, 51.7, 0.0,81.8 +NA,NA,a-cure-i1,2024-25,Lowell - Bartlett Community Partnership,01600090, 0.0, 33.3, 10.0, 40.2, 3.7, 0.0, 12.7, 51.2, 48.8, 0.0,87.3 +NA,NA,a-cure-i1,2024-25,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 26.4, 19.8, 33.9, 5.0, 0.8, 14.0, 39.7, 60.3, 0.0,86.0 +NA,NA,a-cure-i1,2024-25,Lowell - Charles W Morey,01600030, 0.4, 55.1, 7.4, 22.5, 5.0, 0.0, 9.5, 50.3, 49.7, 0.0,90.5 +NA,NA,a-cure-i1,2024-25,Lowell - Charlotte M Murkland Elementary,01600080, 0.7, 23.7, 8.7, 52.5, 4.0, 0.2, 10.3, 50.2, 49.8, 0.0,89.7 +NA,NA,a-cure-i1,2024-25,Lowell - Dr An Wang School,01600345, 0.0, 21.3, 7.1, 40.7, 4.4, 0.2, 26.4, 46.9, 53.1, 0.0,73.6 +NA,NA,a-cure-i1,2024-25,Lowell - Dr Gertrude Bailey,01600002, 0.0, 34.1, 8.1, 30.6, 5.7, 0.0, 21.4, 47.1, 52.9, 0.0,78.6 +NA,NA,a-cure-i1,2024-25,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 11.4, 17.1, 37.1, 4.3, 0.0, 30.0, 20.0, 80.0, 0.0,70.0 +NA,NA,a-cure-i1,2024-25,Lowell - Greenhalge,01600015, 0.0, 8.8, 12.3, 59.6, 3.1, 0.0, 16.3, 50.2, 49.8, 0.0,83.7 +NA,NA,a-cure-i1,2024-25,Lowell - Henry J Robinson Middle,01600330, 0.3, 10.3, 11.2, 54.3, 3.8, 0.0, 20.0, 47.0, 53.0, 0.0,80.0 +NA,NA,a-cure-i1,2024-25,Lowell - James S Daley Middle School,01600315, 0.0, 50.4, 5.7, 19.7, 3.7, 0.0, 20.5, 48.4, 51.6, 0.0,79.5 +NA,NA,a-cure-i1,2024-25,Lowell - James Sullivan Middle School,01600340, 0.5, 11.5, 5.4, 49.4, 2.7, 0.2, 30.2, 49.1, 50.9, 0.0,69.8 +NA,NA,a-cure-i1,2024-25,Lowell - John J Shaughnessy,01600050, 0.2, 22.3, 5.4, 47.2, 5.2, 0.2, 19.6, 44.5, 55.5, 0.0,80.4 +NA,NA,a-cure-i1,2024-25,Lowell - Joseph McAvinnue,01600010, 0.2, 15.9, 10.7, 49.0, 5.1, 0.0, 19.0, 49.4, 50.6, 0.0,81.0 +NA,NA,a-cure-i1,2024-25,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.3, 42.3, 6.2, 36.9, 2.4, 0.0, 11.9, 50.1, 49.9, 0.0,88.1 +NA,NA,a-cure-i1,2024-25,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 6.7, 6.7, 46.7, 6.7, 0.0, 33.3, 13.3, 86.7, 0.0,66.7 +NA,NA,a-cure-i1,2024-25,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 5.6, 2.8, 44.4, 11.1, 0.0, 36.1, 33.3, 66.7, 0.0,63.9 +NA,NA,a-cure-i1,2024-25,Lowell - Lowell High,01600505, 0.1, 28.2, 9.2, 40.9, 3.6, 0.1, 18.0, 47.6, 52.3, 0.2,82.0 +NA,NA,a-cure-i1,2024-25,Lowell - Moody Elementary,01600027, 0.4, 8.9, 6.0, 58.1, 2.4, 0.8, 23.4, 51.2, 48.8, 0.0,76.6 +NA,NA,a-cure-i1,2024-25,Lowell - Pawtucketville Memorial,01600036, 0.2, 25.1, 11.2, 32.6, 4.1, 0.0, 26.8, 46.0, 54.0, 0.0,73.2 +NA,NA,a-cure-i1,2024-25,Lowell - Peter W Reilly,01600040, 0.4, 10.8, 5.5, 37.4, 7.0, 0.0, 38.9, 49.5, 50.5, 0.0,61.1 +NA,NA,a-cure-i1,2024-25,Lowell - Pyne Arts,01600018, 0.0, 16.2, 5.2, 40.0, 4.8, 0.0, 33.8, 47.8, 52.2, 0.0,66.2 +NA,NA,a-cure-i1,2024-25,Lowell - Rogers STEM Academy,01600005, 0.6, 18.7, 8.6, 52.0, 3.3, 0.3, 16.5, 47.6, 52.4, 0.0,83.5 +NA,NA,a-cure-i1,2024-25,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 8.6, 10.6, 54.1, 3.6, 0.2, 23.0, 51.9, 48.1, 0.0,77.0 +NA,NA,a-cure-i1,2024-25,Lowell - The Career Academy,01600515, 0.0, 9.6, 7.2, 53.0, 3.6, 0.0, 26.5, 33.7, 66.3, 0.0,73.5 +NA,NA,a-cure-i1,2024-25,Lowell - Washington,01600055, 0.8, 42.1, 9.1, 27.4, 6.0, 0.4, 14.3, 42.9, 57.1, 0.0,85.7 +NA,NA,a-cure-i1,2024-25,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.1, 16.8, 24.3, 47.2, 4.4, 0.0, 7.2, 51.7, 48.2, 0.1,92.8 +NA,NA,a-cure-i1,2024-25,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 6.3, 7.9, 52.4, 3.2, 0.8, 29.4, 64.3, 34.9, 0.8,70.6 +NA,NA,a-cure-i1,2024-25,Ludlow - East Street Elementary School,01610010, 0.0, 1.1, 2.7, 18.2, 6.0, 0.0, 72.0, 46.2, 53.8, 0.0,28.0 +NA,NA,a-cure-i1,2024-25,Ludlow - Harris Brook Elementary School,01610665, 0.0, 2.5, 1.9, 17.9, 5.1, 0.0, 72.7, 45.7, 54.3, 0.0,27.299999999999997 +NA,NA,a-cure-i1,2024-25,Ludlow - Ludlow Senior High,01610505, 0.0, 1.0, 2.4, 16.8, 2.2, 0.0, 77.6, 49.5, 50.5, 0.0,22.400000000000006 +NA,NA,a-cure-i1,2024-25,Ludlow - Paul R Baird Middle,01610305, 0.0, 1.4, 2.3, 20.3, 2.5, 0.0, 73.5, 48.1, 51.9, 0.0,26.5 +NA,NA,a-cure-i1,2024-25,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 90.0, 40.0, 60.0, 0.0,10.0 +NA,NA,a-cure-i1,2024-25,Lunenburg - Lunenburg High,01620505, 0.0, 2.2, 2.9, 11.3, 4.4, 0.7, 78.5, 48.2, 51.5, 0.2,21.5 +NA,NA,a-cure-i1,2024-25,Lunenburg - Lunenburg Middle School,01620305, 0.0, 1.6, 4.7, 10.2, 3.1, 0.3, 80.1, 50.8, 49.2, 0.0,19.900000000000006 +NA,NA,a-cure-i1,2024-25,Lunenburg - Lunenburg Primary School,01620010, 0.3, 0.8, 3.5, 15.5, 3.5, 0.3, 76.2, 48.9, 51.1, 0.0,23.799999999999997 +NA,NA,a-cure-i1,2024-25,Lunenburg - Turkey Hill Elementary School,01620025, 0.3, 0.6, 3.5, 10.7, 3.2, 0.3, 81.4, 51.0, 49.0, 0.0,18.599999999999994 +NA,NA,a-cure-i1,2024-25,Lynn - A Drewicz Elementary,01630016, 1.2, 5.1, 5.1, 81.1, 1.6, 0.0, 5.7, 51.8, 48.2, 0.0,94.3 +NA,NA,a-cure-i1,2024-25,Lynn - Aborn,01630011, 0.4, 10.3, 8.0, 52.2, 3.6, 0.4, 25.0, 51.3, 48.7, 0.0,75.0 +NA,NA,a-cure-i1,2024-25,Lynn - Breed Middle School,01630405, 0.1, 8.0, 7.5, 73.3, 2.5, 0.0, 8.6, 51.1, 48.9, 0.0,91.4 +NA,NA,a-cure-i1,2024-25,Lynn - Brickett Elementary,01630020, 0.0, 7.9, 7.2, 75.2, 3.5, 0.0, 6.3, 46.5, 53.5, 0.0,93.7 +NA,NA,a-cure-i1,2024-25,Lynn - Capt William G Shoemaker,01630090, 0.3, 6.6, 10.2, 46.3, 4.7, 0.0, 31.9, 36.6, 63.4, 0.0,68.1 +NA,NA,a-cure-i1,2024-25,Lynn - Classical High,01630505, 0.4, 7.5, 7.9, 71.1, 1.9, 0.0, 11.1, 46.1, 53.8, 0.1,88.9 +NA,NA,a-cure-i1,2024-25,Lynn - Cobbet Elementary,01630035, 0.5, 2.3, 7.8, 85.1, 1.6, 0.0, 2.8, 46.8, 53.2, 0.0,97.2 +NA,NA,a-cure-i1,2024-25,Lynn - E J Harrington,01630045, 0.3, 4.1, 8.0, 78.9, 1.7, 0.0, 7.0, 45.9, 54.1, 0.0,93.0 +NA,NA,a-cure-i1,2024-25,Lynn - Early Childhood Center,01630004, 0.0, 6.7, 5.9, 73.3, 0.0, 0.0, 14.1, 39.3, 60.7, 0.0,85.9 +NA,NA,a-cure-i1,2024-25,Lynn - Edward A Sisson,01630095, 0.4, 9.4, 6.9, 56.3, 3.3, 0.0, 23.6, 50.3, 49.7, 0.0,76.4 +NA,NA,a-cure-i1,2024-25,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 1.1, 4.3, 5.3, 58.5, 6.4, 0.0, 24.5, 52.1, 46.8, 1.1,75.5 +NA,NA,a-cure-i1,2024-25,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.4, 5.5, 8.1, 76.6, 3.0, 0.0, 6.4, 55.7, 43.8, 0.4,93.6 +NA,NA,a-cure-i1,2024-25,Lynn - Hood,01630055, 0.4, 6.8, 7.2, 77.3, 2.0, 0.0, 6.3, 45.3, 54.7, 0.0,93.7 +NA,NA,a-cure-i1,2024-25,Lynn - Ingalls,01630060, 0.3, 3.9, 7.5, 82.9, 0.8, 0.0, 4.6, 49.0, 51.0, 0.0,95.4 +NA,NA,a-cure-i1,2024-25,Lynn - Julia F Callahan,01630030, 0.0, 8.0, 10.7, 63.0, 3.5, 0.0, 14.7, 45.6, 54.4, 0.0,85.3 +NA,NA,a-cure-i1,2024-25,Lynn - Lincoln-Thomson,01630070, 0.5, 11.9, 4.6, 63.5, 3.2, 0.0, 16.4, 49.8, 50.2, 0.0,83.6 +NA,NA,a-cure-i1,2024-25,Lynn - Lynn English High,01630510, 0.6, 6.8, 9.5, 74.8, 2.6, 0.0, 5.8, 47.0, 52.9, 0.1,94.2 +NA,NA,a-cure-i1,2024-25,Lynn - Lynn Vocational Technical Institute,01630605, 0.4, 3.2, 5.8, 78.4, 2.1, 0.0, 10.0, 47.4, 52.4, 0.2,90.0 +NA,NA,a-cure-i1,2024-25,Lynn - Lynn Woods,01630075, 0.7, 5.9, 3.3, 47.1, 3.3, 0.0, 39.9, 52.9, 47.1, 0.0,60.1 +NA,NA,a-cure-i1,2024-25,Lynn - Pickering Middle,01630420, 0.5, 11.3, 5.7, 59.5, 4.1, 0.0, 18.9, 43.2, 56.8, 0.0,81.1 +NA,NA,a-cure-i1,2024-25,Lynn - Robert L Ford,01630050, 0.5, 2.4, 8.8, 83.9, 1.0, 0.0, 3.4, 52.2, 47.8, 0.0,96.6 +NA,NA,a-cure-i1,2024-25,Lynn - Sewell-Anderson,01630085, 0.7, 5.7, 9.7, 64.7, 3.0, 0.0, 16.3, 53.7, 46.3, 0.0,83.7 +NA,NA,a-cure-i1,2024-25,Lynn - Thurgood Marshall Mid,01630305, 0.8, 6.8, 9.9, 71.7, 2.6, 0.0, 8.2, 48.0, 52.0, 0.0,91.8 +NA,NA,a-cure-i1,2024-25,Lynn - Tracy,01630100, 0.8, 2.8, 4.0, 89.2, 1.0, 0.0, 2.3, 45.6, 54.4, 0.0,97.7 +NA,NA,a-cure-i1,2024-25,Lynn - Washington Elementary School,01630005, 0.0, 2.6, 17.7, 71.5, 2.2, 0.0, 6.0, 51.7, 48.3, 0.0,94.0 +NA,NA,a-cure-i1,2024-25,Lynn - William R Fallon,01630080, 0.0, 0.0, 26.7, 53.3, 16.7, 0.0, 3.3, 23.3, 76.7, 0.0,96.7 +NA,NA,a-cure-i1,2024-25,Lynn - Wm P Connery,01630040, 0.5, 6.4, 6.4, 81.5, 1.6, 0.0, 3.6, 51.5, 48.5, 0.0,96.4 +NA,NA,a-cure-i1,2024-25,Lynnfield - Huckleberry Hill,01640010, 0.0, 12.0, 3.1, 7.5, 5.0, 0.0, 72.4, 48.6, 51.4, 0.0,27.599999999999994 +NA,NA,a-cure-i1,2024-25,Lynnfield - Lynnfield High,01640505, 0.0, 8.0, 1.5, 9.5, 3.2, 0.0, 77.7, 51.7, 48.3, 0.0,22.299999999999997 +NA,NA,a-cure-i1,2024-25,Lynnfield - Lynnfield Middle School,01640405, 0.0, 8.6, 2.4, 7.4, 4.7, 0.0, 76.8, 49.7, 50.0, 0.3,23.200000000000003 +NA,NA,a-cure-i1,2024-25,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 11.1, 5.6, 0.0, 83.3, 25.0, 75.0, 0.0,16.700000000000003 +NA,NA,a-cure-i1,2024-25,Lynnfield - Summer Street,01640020, 0.0, 5.2, 1.1, 3.6, 4.5, 0.0, 85.5, 48.9, 51.1, 0.0,14.5 +NA,NA,a-cure-i1,2024-25,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 57.6, 3.0, 6.1, 4.0, 0.0, 29.3, 49.5, 50.5, 0.0,70.7 +NA,NA,a-cure-i1,2024-25,Malden - Beebe,01650003, 0.9, 30.3, 14.3, 24.5, 5.1, 0.3, 24.5, 51.5, 48.5, 0.0,75.5 +NA,NA,a-cure-i1,2024-25,Malden - Ferryway,01650013, 0.5, 18.2, 19.6, 39.2, 3.9, 0.2, 18.4, 50.8, 49.2, 0.0,81.6 +NA,NA,a-cure-i1,2024-25,Malden - Forestdale,01650027, 0.2, 12.1, 15.6, 26.2, 8.2, 0.0, 37.8, 43.6, 56.4, 0.0,62.2 +NA,NA,a-cure-i1,2024-25,Malden - Linden,01650047, 0.9, 25.3, 20.2, 28.2, 4.6, 0.4, 20.5, 47.5, 52.4, 0.1,79.5 +NA,NA,a-cure-i1,2024-25,Malden - Malden Early Learning Center,01650049, 0.0, 31.5, 23.5, 9.7, 1.7, 0.0, 33.6, 40.8, 59.2, 0.0,66.4 +NA,NA,a-cure-i1,2024-25,Malden - Malden High,01650505, 0.1, 20.3, 22.0, 30.5, 4.4, 0.0, 22.8, 49.2, 50.7, 0.1,77.2 +NA,NA,a-cure-i1,2024-25,Malden - Salemwood,01650057, 0.6, 10.8, 26.9, 43.9, 2.6, 0.0, 15.1, 47.7, 52.2, 0.1,84.9 +NA,NA,a-cure-i1,2024-25,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.5, 0.0, 3.7, 2.3, 0.0, 93.5, 54.9, 45.1, 0.0,6.5 +NA,NA,a-cure-i1,2024-25,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.8, 0.0, 2.0, 1.3, 0.0, 95.9, 50.0, 49.7, 0.3,4.099999999999994 +NA,NA,a-cure-i1,2024-25,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.1, 0.0, 2.2, 1.8, 0.0, 95.0, 55.2, 44.8, 0.0,5.0 +NA,NA,a-cure-i1,2024-25,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 1.3, 0.0, 3.9, 2.3, 0.0, 92.4, 53.6, 46.4, 0.0,7.599999999999994 +NA,NA,a-cure-i1,2024-25,Mansfield - Everett W Robinson,01670007, 0.0, 7.2, 5.0, 8.0, 5.3, 0.0, 74.5, 50.2, 49.8, 0.0,25.5 +NA,NA,a-cure-i1,2024-25,Mansfield - Harold L Qualters Middle,01670035, 0.1, 8.8, 4.8, 6.4, 5.9, 0.0, 74.0, 48.3, 51.5, 0.3,26.0 +NA,NA,a-cure-i1,2024-25,Mansfield - Jordan/Jackson Elementary,01670014, 0.3, 8.6, 5.4, 7.9, 4.9, 0.1, 72.9, 48.2, 51.6, 0.3,27.099999999999994 +NA,NA,a-cure-i1,2024-25,Mansfield - Mansfield High,01670505, 0.1, 8.1, 7.3, 6.6, 4.0, 0.0, 74.0, 45.2, 54.7, 0.1,26.0 +NA,NA,a-cure-i1,2024-25,Mansfield - Roland Green School,01670003, 0.0, 10.3, 7.5, 13.1, 5.6, 0.0, 63.6, 42.1, 57.9, 0.0,36.4 +NA,NA,a-cure-i1,2024-25,Map Academy Charter School (District) - Map Academy Charter School,35170505, 1.7, 0.3, 5.0, 12.6, 8.0, 0.3, 72.1, 46.5, 51.5, 2.0,27.900000000000006 +NA,NA,a-cure-i1,2024-25,Marblehead - Glover,01680020, 0.0, 1.9, 1.3, 9.1, 4.7, 0.0, 83.0, 46.2, 53.8, 0.0,17.0 +NA,NA,a-cure-i1,2024-25,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 1.3, 0.0, 10.6, 5.4, 0.0, 82.7, 47.2, 52.8, 0.0,17.299999999999997 +NA,NA,a-cure-i1,2024-25,Marblehead - Marblehead High,01680505, 0.0, 1.2, 3.4, 7.9, 3.8, 0.0, 83.7, 46.5, 53.2, 0.3,16.299999999999997 +NA,NA,a-cure-i1,2024-25,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.9, 3.2, 7.1, 3.6, 0.0, 84.2, 49.9, 50.1, 0.0,15.799999999999997 +NA,NA,a-cure-i1,2024-25,Marblehead - Village School,01680016, 0.2, 2.3, 2.3, 7.8, 4.5, 0.0, 83.0, 45.4, 54.6, 0.0,17.0 +NA,NA,a-cure-i1,2024-25,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 2.1, 5.7, 14.6, 6.3, 0.5, 70.8, 50.0, 50.0, 0.0,29.200000000000003 +NA,NA,a-cure-i1,2024-25,Marion - Sippican,01690005, 0.3, 1.9, 3.3, 4.9, 6.5, 0.0, 83.2, 48.8, 51.2, 0.0,16.799999999999997 +NA,NA,a-cure-i1,2024-25,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.1, 1.0, 6.2, 66.4, 2.3, 0.0, 23.9, 50.7, 49.1, 0.2,76.1 +NA,NA,a-cure-i1,2024-25,Marlborough - Charles Jaworek School,01700030, 0.5, 2.7, 4.6, 54.2, 2.9, 0.0, 35.2, 46.6, 53.4, 0.0,64.8 +NA,NA,a-cure-i1,2024-25,Marlborough - Early Childhood Center,01700006, 0.5, 6.2, 5.1, 29.2, 2.6, 0.0, 56.4, 44.6, 55.4, 0.0,43.6 +NA,NA,a-cure-i1,2024-25,Marlborough - Francis J Kane,01700008, 0.0, 2.3, 8.5, 49.7, 3.3, 0.0, 36.2, 47.0, 53.0, 0.0,63.8 +NA,NA,a-cure-i1,2024-25,Marlborough - Goodnow Brothers Elementary School,01700020, 0.3, 1.5, 4.9, 57.5, 2.8, 0.0, 33.0, 48.7, 51.3, 0.0,67.0 +NA,NA,a-cure-i1,2024-25,Marlborough - Marlborough High,01700505, 0.7, 1.5, 6.4, 61.8, 2.2, 0.1, 27.2, 45.7, 54.1, 0.2,72.8 +NA,NA,a-cure-i1,2024-25,Marlborough - Richer,01700025, 0.5, 2.5, 4.7, 64.3, 4.4, 0.0, 23.7, 49.8, 50.2, 0.0,76.3 +NA,NA,a-cure-i1,2024-25,Marshfield - Daniel Webster,01710015, 0.0, 2.2, 3.5, 2.9, 2.9, 1.6, 86.9, 45.7, 54.3, 0.0,13.099999999999994 +NA,NA,a-cure-i1,2024-25,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.4, 4.4, 2.0, 0.0, 93.2, 52.2, 47.8, 0.0,6.799999999999997 +NA,NA,a-cure-i1,2024-25,Marshfield - Furnace Brook Middle,01710310, 0.3, 1.4, 1.6, 4.3, 2.4, 0.3, 89.9, 47.6, 52.4, 0.0,10.099999999999994 +NA,NA,a-cure-i1,2024-25,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.8, 0.6, 2.5, 1.1, 0.0, 95.0, 41.5, 58.5, 0.0,5.0 +NA,NA,a-cure-i1,2024-25,Marshfield - Jeffrey W. Granatino Early Education Center,01710001, 0.0, 0.0, 2.4, 0.0, 4.8, 0.0, 92.8, 48.2, 51.8, 0.0,7.200000000000003 +NA,NA,a-cure-i1,2024-25,Marshfield - Marshfield High,01710505, 0.4, 1.1, 1.2, 4.7, 2.3, 0.2, 90.2, 51.6, 48.3, 0.1,9.799999999999997 +NA,NA,a-cure-i1,2024-25,Marshfield - Martinson Elementary,01710025, 0.0, 1.3, 3.6, 6.1, 2.7, 0.0, 86.3, 45.8, 54.2, 0.0,13.700000000000003 +NA,NA,a-cure-i1,2024-25,Marshfield - South River,01710010, 0.0, 1.5, 2.6, 1.8, 2.2, 0.0, 91.9, 48.9, 51.1, 0.0,8.099999999999994 +NA,NA,a-cure-i1,2024-25,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.6, 0.4, 4.3, 27.3, 4.0, 0.0, 62.4, 49.7, 50.1, 0.1,37.6 +NA,NA,a-cure-i1,2024-25,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 1.1, 0.6, 3.4, 9.7, 10.2, 0.0, 75.0, 56.3, 43.8, 0.0,25.0 +NA,NA,a-cure-i1,2024-25,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 1.1, 2.3, 25.7, 66.7, 2.3, 0.0, 2.0, 52.8, 47.2, 0.0,98.0 +NA,NA,a-cure-i1,2024-25,Masconomet - Masconomet Regional High School,07050505, 0.2, 3.4, 1.0, 4.0, 3.6, 0.0, 87.9, 52.4, 47.6, 0.0,12.099999999999994 +NA,NA,a-cure-i1,2024-25,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 2.0, 0.4, 6.5, 1.8, 0.0, 89.3, 51.5, 48.3, 0.2,10.700000000000003 +NA,NA,a-cure-i1,2024-25,Mashpee - Kenneth Coombs School,01720005, 2.3, 1.3, 2.6, 12.9, 13.2, 0.0, 67.7, 46.5, 53.5, 0.0,32.3 +NA,NA,a-cure-i1,2024-25,Mashpee - Mashpee Middle-High School,01720505, 6.2, 1.2, 4.8, 10.2, 9.3, 0.0, 68.3, 50.3, 49.7, 0.0,31.700000000000003 +NA,NA,a-cure-i1,2024-25,Mashpee - Quashnet School,01720035, 4.3, 2.0, 4.8, 11.0, 13.3, 0.5, 64.2, 48.9, 51.1, 0.0,35.8 +NA,NA,a-cure-i1,2024-25,Match Charter Public School (District) - Match Charter Public School,04690505, 0.3, 0.3, 49.2, 47.0, 1.6, 0.1, 1.5, 49.5, 50.4, 0.1,98.5 +NA,NA,a-cure-i1,2024-25,Mattapoisett - Center,01730005, 0.0, 0.4, 1.3, 4.8, 2.2, 0.0, 91.2, 49.8, 50.2, 0.0,8.799999999999997 +NA,NA,a-cure-i1,2024-25,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 5.8, 5.8, 0.0, 88.3, 44.8, 55.2, 0.0,11.700000000000003 +NA,NA,a-cure-i1,2024-25,Maynard - Fowler School,01740305, 0.0, 0.9, 2.7, 16.9, 4.4, 0.0, 75.2, 48.8, 50.6, 0.7,24.799999999999997 +NA,NA,a-cure-i1,2024-25,Maynard - Green Meadow,01740010, 0.4, 2.6, 4.4, 15.4, 6.6, 0.0, 70.6, 50.7, 49.3, 0.0,29.400000000000006 +NA,NA,a-cure-i1,2024-25,Maynard - Maynard High,01740505, 0.0, 1.9, 2.9, 15.5, 3.9, 0.0, 75.8, 50.6, 48.7, 0.6,24.200000000000003 +NA,NA,a-cure-i1,2024-25,Medfield - Dale Street,01750005, 0.3, 3.9, 1.6, 3.1, 3.6, 0.0, 87.5, 53.9, 46.1, 0.0,12.5 +NA,NA,a-cure-i1,2024-25,Medfield - Medfield Senior High,01750505, 0.4, 3.6, 1.8, 6.4, 4.1, 0.0, 83.7, 48.9, 51.1, 0.0,16.299999999999997 +NA,NA,a-cure-i1,2024-25,Medfield - Memorial School,01750003, 0.0, 2.7, 2.7, 4.1, 4.4, 0.0, 86.2, 49.8, 50.2, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Medfield - Ralph Wheelock School,01750007, 0.0, 3.7, 2.0, 4.5, 3.2, 0.0, 86.6, 46.8, 53.2, 0.0,13.400000000000006 +NA,NA,a-cure-i1,2024-25,Medfield - Thomas Blake Middle,01750305, 0.2, 4.5, 1.7, 5.2, 3.7, 0.0, 84.7, 47.4, 52.4, 0.2,15.299999999999997 +NA,NA,a-cure-i1,2024-25,Medford - Brooks School,01760130, 0.2, 4.9, 4.7, 6.8, 8.3, 0.0, 75.2, 50.5, 49.3, 0.2,24.799999999999997 +NA,NA,a-cure-i1,2024-25,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 9.1, 27.3, 18.2, 0.0, 45.5, 45.5, 54.5, 0.0,54.5 +NA,NA,a-cure-i1,2024-25,Medford - John J McGlynn Elementary School,01760068, 0.4, 14.3, 15.2, 28.1, 3.4, 0.0, 38.6, 49.5, 50.3, 0.2,61.4 +NA,NA,a-cure-i1,2024-25,Medford - John J. McGlynn Middle School,01760320, 1.3, 8.6, 14.4, 19.0, 6.3, 0.0, 50.4, 47.2, 52.4, 0.4,49.6 +NA,NA,a-cure-i1,2024-25,Medford - Madeleine Dugger Andrews,01760315, 0.0, 7.8, 10.3, 14.5, 5.1, 0.0, 62.3, 51.5, 48.0, 0.5,37.7 +NA,NA,a-cure-i1,2024-25,Medford - Medford High,01760505, 0.6, 9.5, 15.3, 15.8, 4.4, 0.2, 54.3, 46.8, 52.6, 0.6,45.7 +NA,NA,a-cure-i1,2024-25,Medford - Milton Fuller Roberts,01760150, 0.3, 11.4, 8.4, 14.0, 7.8, 0.0, 58.0, 49.5, 50.2, 0.3,42.0 +NA,NA,a-cure-i1,2024-25,Medford - Missituk Elementary School,01760140, 0.5, 7.7, 9.1, 17.9, 7.7, 0.0, 57.2, 49.0, 50.2, 0.7,42.8 +NA,NA,a-cure-i1,2024-25,Medway - Burke/Memorial Elementary School,01770015, 0.4, 6.3, 1.6, 8.7, 6.3, 0.0, 76.7, 49.0, 51.0, 0.0,23.299999999999997 +NA,NA,a-cure-i1,2024-25,Medway - John D Mc Govern Elementary,01770013, 0.0, 6.2, 2.5, 13.3, 4.2, 0.0, 73.7, 46.2, 53.8, 0.0,26.299999999999997 +NA,NA,a-cure-i1,2024-25,Medway - Medway High,01770505, 0.0, 4.0, 2.4, 10.0, 3.5, 0.5, 79.6, 51.0, 48.6, 0.5,20.400000000000006 +NA,NA,a-cure-i1,2024-25,Medway - Medway Middle,01770305, 0.1, 4.7, 3.0, 9.2, 1.8, 0.0, 81.2, 49.9, 50.1, 0.0,18.799999999999997 +NA,NA,a-cure-i1,2024-25,Melrose - Early Childhood Center,01780003, 0.8, 10.6, 2.4, 7.3, 5.7, 0.0, 73.2, 47.6, 52.4, 0.0,26.799999999999997 +NA,NA,a-cure-i1,2024-25,Melrose - Herbert Clark Hoover,01780017, 0.0, 8.8, 6.5, 10.0, 4.2, 0.0, 70.4, 48.8, 51.2, 0.0,29.599999999999994 +NA,NA,a-cure-i1,2024-25,Melrose - Horace Mann,01780025, 0.0, 2.0, 3.1, 6.7, 4.3, 0.0, 83.9, 47.6, 52.0, 0.4,16.099999999999994 +NA,NA,a-cure-i1,2024-25,Melrose - Lincoln,01780020, 0.5, 15.6, 6.4, 8.9, 8.9, 0.0, 59.7, 53.0, 47.0, 0.0,40.3 +NA,NA,a-cure-i1,2024-25,Melrose - Melrose High,01780505, 0.0, 7.5, 7.4, 7.4, 4.9, 0.1, 72.6, 51.5, 48.0, 0.5,27.400000000000006 +NA,NA,a-cure-i1,2024-25,Melrose - Melrose Middle,01780305, 0.0, 7.1, 5.9, 6.5, 7.4, 0.0, 73.0, 49.1, 50.6, 0.3,27.0 +NA,NA,a-cure-i1,2024-25,Melrose - Roosevelt,01780035, 0.0, 5.7, 4.9, 4.7, 5.9, 0.0, 78.8, 47.3, 52.0, 0.7,21.200000000000003 +NA,NA,a-cure-i1,2024-25,Melrose - Winthrop,01780050, 0.3, 2.6, 1.8, 4.8, 5.6, 0.0, 84.9, 48.5, 50.5, 1.0,15.099999999999994 +NA,NA,a-cure-i1,2024-25,Mendon-Upton - Henry P Clough,07100179, 0.0, 1.5, 1.3, 8.8, 0.5, 0.0, 87.9, 49.5, 50.5, 0.0,12.099999999999994 +NA,NA,a-cure-i1,2024-25,Mendon-Upton - Memorial School,07100001, 0.0, 4.3, 1.4, 9.7, 3.0, 0.0, 81.5, 53.1, 46.9, 0.0,18.5 +NA,NA,a-cure-i1,2024-25,Mendon-Upton - Miscoe Hill School,07100015, 0.2, 2.9, 1.7, 6.8, 2.3, 0.0, 86.1, 53.0, 47.0, 0.0,13.900000000000006 +NA,NA,a-cure-i1,2024-25,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 2.6, 0.7, 8.4, 1.7, 0.0, 86.5, 51.7, 48.1, 0.2,13.5 +NA,NA,a-cure-i1,2024-25,Methuen - Comprehensive Grammar School,01810050, 0.0, 3.8, 10.6, 50.2, 2.2, 0.0, 33.2, 48.6, 51.4, 0.0,66.8 +NA,NA,a-cure-i1,2024-25,Methuen - Donald P Timony Grammar,01810060, 0.2, 3.0, 7.8, 56.8, 2.0, 0.1, 30.1, 48.1, 51.9, 0.0,69.9 +NA,NA,a-cure-i1,2024-25,Methuen - Early Childhood Center,01810001, 0.0, 1.2, 12.9, 60.7, 2.5, 0.0, 22.7, 32.5, 67.5, 0.0,77.3 +NA,NA,a-cure-i1,2024-25,Methuen - Marsh Grammar School,01810030, 0.1, 2.4, 6.9, 42.9, 4.4, 0.0, 43.3, 44.9, 55.1, 0.0,56.7 +NA,NA,a-cure-i1,2024-25,Methuen - Methuen High,01810505, 0.0, 3.9, 6.8, 51.9, 1.7, 0.0, 35.7, 47.0, 52.7, 0.2,64.3 +NA,NA,a-cure-i1,2024-25,Methuen - Tenney Grammar School,01810055, 0.0, 2.2, 5.2, 66.5, 2.2, 0.1, 23.8, 51.5, 48.5, 0.0,76.2 +NA,NA,a-cure-i1,2024-25,Middleborough - Henry B. Burkland Elementary School,01820008, 0.4, 1.5, 2.8, 6.4, 5.0, 0.4, 83.7, 51.6, 48.3, 0.2,16.299999999999997 +NA,NA,a-cure-i1,2024-25,Middleborough - John T. Nichols Middle,01820305, 0.1, 1.9, 4.1, 4.1, 6.4, 0.1, 83.3, 51.6, 48.4, 0.0,16.700000000000003 +NA,NA,a-cure-i1,2024-25,Middleborough - Mary K. Goode Elementary School,01820010, 0.7, 1.2, 2.7, 6.8, 6.8, 0.0, 81.9, 49.8, 49.7, 0.5,18.099999999999994 +NA,NA,a-cure-i1,2024-25,Middleborough - Memorial Early Childhood Center,01820011, 0.4, 0.7, 4.4, 8.1, 5.1, 0.0, 81.3, 43.2, 56.8, 0.0,18.700000000000003 +NA,NA,a-cure-i1,2024-25,Middleborough - Middleborough High,01820505, 0.4, 0.5, 5.0, 3.7, 6.3, 0.1, 83.9, 50.9, 48.4, 0.6,16.099999999999994 +NA,NA,a-cure-i1,2024-25,Middleton - Fuller Meadow,01840003, 0.4, 3.0, 1.5, 6.7, 3.7, 0.4, 84.4, 40.9, 59.1, 0.0,15.599999999999994 +NA,NA,a-cure-i1,2024-25,Middleton - Howe-Manning,01840005, 0.2, 4.3, 1.3, 6.5, 3.0, 0.2, 84.4, 49.5, 50.5, 0.0,15.599999999999994 +NA,NA,a-cure-i1,2024-25,Milford - Brookside,01850065, 1.6, 0.5, 6.6, 41.7, 2.9, 0.2, 46.5, 48.8, 51.2, 0.0,53.5 +NA,NA,a-cure-i1,2024-25,Milford - Memorial,01850010, 1.4, 4.1, 6.7, 41.6, 3.0, 0.0, 43.2, 46.4, 53.3, 0.2,56.8 +NA,NA,a-cure-i1,2024-25,Milford - Milford High,01850505, 2.3, 1.7, 5.1, 37.5, 3.7, 0.2, 49.5, 46.3, 53.6, 0.1,50.5 +NA,NA,a-cure-i1,2024-25,Milford - Shining Star Early Childhood Center,01850075, 2.5, 8.9, 5.7, 38.6, 4.4, 0.0, 39.9, 43.7, 56.3, 0.0,60.1 +NA,NA,a-cure-i1,2024-25,Milford - Stacy Middle,01850305, 0.7, 1.0, 5.4, 37.7, 2.4, 0.2, 52.6, 47.5, 52.5, 0.0,47.4 +NA,NA,a-cure-i1,2024-25,Milford - Woodland,01850090, 1.4, 1.6, 4.2, 36.0, 2.2, 0.0, 54.4, 48.1, 51.9, 0.0,45.6 +NA,NA,a-cure-i1,2024-25,Millbury - Elmwood Street,01860017, 0.2, 5.3, 8.6, 11.2, 6.2, 0.0, 68.6, 46.6, 53.4, 0.0,31.400000000000006 +NA,NA,a-cure-i1,2024-25,Millbury - Millbury Junior/Senior High,01860505, 0.0, 3.9, 4.7, 12.2, 6.1, 0.1, 73.0, 45.6, 54.0, 0.4,27.0 +NA,NA,a-cure-i1,2024-25,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 4.2, 5.1, 10.1, 5.9, 0.0, 74.7, 47.4, 52.6, 0.0,25.299999999999997 +NA,NA,a-cure-i1,2024-25,Millis - Clyde F Brown,01870005, 0.3, 4.0, 1.5, 12.9, 5.8, 0.0, 75.5, 51.6, 48.4, 0.0,24.5 +NA,NA,a-cure-i1,2024-25,Millis - Millis High School,01870505, 0.3, 1.7, 0.7, 10.5, 5.2, 0.0, 81.5, 52.1, 47.2, 0.7,18.5 +NA,NA,a-cure-i1,2024-25,Millis - Millis Middle,01870020, 0.7, 1.9, 1.5, 8.6, 5.2, 0.4, 81.6, 55.1, 44.9, 0.0,18.400000000000006 +NA,NA,a-cure-i1,2024-25,Millis - TIES,01870515, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 80.0, 40.0, 60.0, 0.0,20.0 +NA,NA,a-cure-i1,2024-25,Milton - Charles S Pierce Middle,01890410, 0.2, 9.7, 14.3, 5.6, 6.6, 0.0, 63.7, 51.5, 48.4, 0.1,36.3 +NA,NA,a-cure-i1,2024-25,Milton - Collicot,01890005, 0.0, 12.0, 3.7, 4.5, 5.8, 0.0, 74.0, 52.2, 47.8, 0.0,26.0 +NA,NA,a-cure-i1,2024-25,Milton - Cunningham School,01890007, 0.0, 9.3, 5.6, 8.0, 7.8, 0.3, 69.0, 46.9, 53.1, 0.0,31.0 +NA,NA,a-cure-i1,2024-25,Milton - Glover,01890010, 0.3, 6.9, 4.6, 7.1, 5.7, 0.0, 75.4, 53.6, 46.4, 0.0,24.599999999999994 +NA,NA,a-cure-i1,2024-25,Milton - Milton High,01890505, 0.2, 7.8, 15.3, 6.6, 4.2, 0.1, 65.8, 49.4, 49.9, 0.7,34.2 +NA,NA,a-cure-i1,2024-25,Milton - Tucker,01890020, 0.2, 7.3, 29.7, 12.3, 11.9, 0.0, 38.5, 48.5, 51.5, 0.0,61.5 +NA,NA,a-cure-i1,2024-25,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.1, 3.9, 5.7, 11.2, 5.8, 0.1, 73.1, 34.5, 63.4, 2.1,26.900000000000006 +NA,NA,a-cure-i1,2024-25,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.4, 0.7, 1.1, 5.9, 4.4, 0.0, 87.4, 49.6, 50.0, 0.4,12.599999999999994 +NA,NA,a-cure-i1,2024-25,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 3.2, 2.1, 1.1, 0.0, 93.6, 41.5, 58.5, 0.0,6.400000000000006 +NA,NA,a-cure-i1,2024-25,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.3, 0.6, 6.0, 5.4, 0.0, 87.7, 52.2, 46.8, 0.9,12.299999999999997 +NA,NA,a-cure-i1,2024-25,Mohawk Trail - Sanderson Academy,07170020, 0.8, 0.0, 2.4, 0.0, 0.0, 0.0, 96.8, 48.8, 51.2, 0.0,3.200000000000003 +NA,NA,a-cure-i1,2024-25,Monomoy Regional School District - Chatham Elementary School,07120001, 0.7, 0.7, 9.6, 16.4, 8.9, 0.0, 63.7, 42.5, 57.5, 0.0,36.3 +NA,NA,a-cure-i1,2024-25,Monomoy Regional School District - Harwich Elementary School,07120002, 0.2, 3.3, 7.1, 9.1, 8.0, 0.2, 71.9, 43.9, 56.1, 0.0,28.099999999999994 +NA,NA,a-cure-i1,2024-25,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.8, 1.5, 8.9, 9.3, 5.3, 0.3, 73.8, 50.8, 48.8, 0.4,26.200000000000003 +NA,NA,a-cure-i1,2024-25,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.5, 1.0, 6.6, 12.7, 8.1, 0.0, 71.1, 46.1, 53.9, 0.0,28.900000000000006 +NA,NA,a-cure-i1,2024-25,Monson - Granite Valley School,01910030, 0.5, 1.3, 1.0, 8.0, 1.5, 0.0, 87.8, 51.0, 49.0, 0.0,12.200000000000003 +NA,NA,a-cure-i1,2024-25,Monson - Monson High School,01910505, 0.7, 0.4, 1.8, 10.0, 4.3, 0.4, 82.5, 52.5, 47.1, 0.4,17.5 +NA,NA,a-cure-i1,2024-25,Monson - Quarry Hill Community School,01910010, 0.0, 1.7, 2.5, 12.5, 0.8, 0.0, 82.5, 50.0, 50.0, 0.0,17.5 +NA,NA,a-cure-i1,2024-25,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.1, 3.2, 18.7, 4.6, 0.1, 72.3, 47.4, 51.4, 1.2,27.700000000000003 +NA,NA,a-cure-i1,2024-25,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 4.3, 1.3, 6.9, 2.2, 0.4, 84.8, 49.4, 50.6, 0.0,15.200000000000003 +NA,NA,a-cure-i1,2024-25,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.5, 2.4, 6.7, 4.6, 0.0, 84.8, 49.0, 50.3, 0.7,15.200000000000003 +NA,NA,a-cure-i1,2024-25,Mount Greylock - Williamstown Elementary,07150010, 0.0, 5.4, 4.2, 8.8, 5.4, 0.0, 76.2, 44.0, 55.3, 0.7,23.799999999999997 +NA,NA,a-cure-i1,2024-25,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.2, 32.7, 16.8, 13.4, 4.3, 0.1, 32.5, 51.5, 48.5, 0.0,67.5 +NA,NA,a-cure-i1,2024-25,Nahant - Johnson,01960010, 0.6, 1.2, 0.0, 7.4, 3.7, 0.0, 87.1, 43.6, 56.4, 0.0,12.900000000000006 +NA,NA,a-cure-i1,2024-25,Nantucket - Cyrus Peirce,01970010, 0.0, 1.1, 7.8, 45.5, 5.0, 0.0, 40.5, 50.8, 49.2, 0.0,59.5 +NA,NA,a-cure-i1,2024-25,Nantucket - Nantucket Elementary,01970005, 0.0, 2.8, 10.5, 48.9, 6.0, 0.0, 31.8, 49.1, 50.9, 0.0,68.2 +NA,NA,a-cure-i1,2024-25,Nantucket - Nantucket High,01970505, 0.2, 2.0, 10.1, 39.8, 4.2, 0.0, 43.8, 48.7, 51.3, 0.0,56.2 +NA,NA,a-cure-i1,2024-25,Nantucket - Nantucket Intermediate School,01970020, 0.0, 1.9, 6.8, 44.8, 5.5, 0.0, 41.0, 52.2, 47.8, 0.0,59.0 +NA,NA,a-cure-i1,2024-25,Narragansett - Narragansett Middle,07200305, 0.0, 0.5, 1.9, 10.9, 3.6, 0.0, 83.1, 46.4, 53.6, 0.0,16.900000000000006 +NA,NA,a-cure-i1,2024-25,Narragansett - Narragansett Regional High,07200505, 0.2, 0.8, 1.8, 10.2, 3.5, 0.2, 83.3, 45.9, 53.3, 0.8,16.700000000000003 +NA,NA,a-cure-i1,2024-25,Narragansett - Templeton Elementary School,07200020, 0.2, 0.7, 1.4, 10.7, 3.6, 0.0, 83.5, 48.7, 51.3, 0.0,16.5 +NA,NA,a-cure-i1,2024-25,Nashoba - Center School,07250020, 0.0, 4.9, 1.4, 8.2, 6.2, 0.0, 79.2, 46.6, 53.4, 0.0,20.799999999999997 +NA,NA,a-cure-i1,2024-25,Nashoba - Florence Sawyer School,07250025, 0.0, 4.0, 0.8, 6.0, 5.0, 0.1, 84.1, 48.6, 51.2, 0.1,15.900000000000006 +NA,NA,a-cure-i1,2024-25,Nashoba - Hale,07250310, 0.0, 5.7, 0.8, 6.5, 6.9, 0.0, 80.2, 51.8, 47.8, 0.4,19.799999999999997 +NA,NA,a-cure-i1,2024-25,Nashoba - Luther Burbank Middle School,07250305, 0.4, 3.3, 1.6, 15.9, 6.1, 0.0, 72.7, 49.8, 50.2, 0.0,27.299999999999997 +NA,NA,a-cure-i1,2024-25,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 3.0, 2.3, 18.0, 5.1, 0.0, 71.7, 46.1, 53.9, 0.0,28.299999999999997 +NA,NA,a-cure-i1,2024-25,Nashoba - Nashoba Regional,07250505, 0.0, 4.3, 2.1, 8.6, 3.8, 0.1, 81.0, 53.2, 46.5, 0.2,19.0 +NA,NA,a-cure-i1,2024-25,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.1, 1.3, 2.6, 15.5, 4.8, 0.0, 75.6, 37.8, 59.8, 2.3,24.400000000000006 +NA,NA,a-cure-i1,2024-25,Natick - Bennett-Hemenway,01980005, 0.2, 14.1, 2.0, 11.5, 6.2, 0.0, 66.1, 45.4, 54.4, 0.2,33.900000000000006 +NA,NA,a-cure-i1,2024-25,Natick - Brown,01980010, 0.2, 22.3, 2.8, 15.2, 6.1, 0.0, 53.4, 45.7, 54.3, 0.0,46.6 +NA,NA,a-cure-i1,2024-25,Natick - J F Kennedy Middle School,01980305, 0.1, 10.8, 2.1, 10.0, 6.6, 0.0, 70.5, 48.3, 51.7, 0.0,29.5 +NA,NA,a-cure-i1,2024-25,Natick - Lilja Elementary,01980035, 0.0, 11.0, 1.8, 13.9, 7.4, 0.0, 65.8, 50.6, 49.4, 0.0,34.2 +NA,NA,a-cure-i1,2024-25,Natick - Memorial,01980043, 0.0, 7.9, 1.3, 7.9, 9.5, 0.0, 73.4, 50.5, 49.5, 0.0,26.599999999999994 +NA,NA,a-cure-i1,2024-25,Natick - Natick High,01980505, 0.0, 10.0, 3.5, 9.1, 6.3, 0.1, 71.1, 46.5, 53.0, 0.5,28.900000000000006 +NA,NA,a-cure-i1,2024-25,Natick - Wilson Middle,01980310, 0.1, 11.4, 3.7, 9.1, 6.5, 0.0, 69.2, 48.4, 51.6, 0.0,30.799999999999997 +NA,NA,a-cure-i1,2024-25,Nauset - Nauset Regional High,06600505, 0.1, 2.4, 6.6, 6.0, 5.0, 0.0, 79.8, 53.9, 46.0, 0.1,20.200000000000003 +NA,NA,a-cure-i1,2024-25,Nauset - Nauset Regional Middle,06600305, 0.0, 0.4, 6.2, 7.7, 6.8, 0.0, 78.9, 53.6, 46.4, 0.0,21.099999999999994 +NA,NA,a-cure-i1,2024-25,Needham - Broadmeadow,01990005, 0.0, 13.9, 1.2, 5.8, 9.2, 0.0, 69.9, 46.8, 53.2, 0.0,30.099999999999994 +NA,NA,a-cure-i1,2024-25,Needham - High Rock School,01990410, 0.2, 11.8, 3.4, 7.3, 7.3, 0.0, 70.1, 48.3, 51.2, 0.5,29.900000000000006 +NA,NA,a-cure-i1,2024-25,Needham - John Eliot,01990020, 0.0, 21.2, 5.3, 8.8, 9.1, 0.0, 55.7, 50.9, 49.1, 0.0,44.3 +NA,NA,a-cure-i1,2024-25,Needham - Needham High,01990505, 0.0, 9.4, 2.6, 8.3, 4.9, 0.1, 74.7, 51.4, 48.1, 0.6,25.299999999999997 +NA,NA,a-cure-i1,2024-25,Needham - Newman Elementary,01990050, 0.0, 11.8, 2.7, 8.5, 5.6, 0.1, 71.3, 47.3, 52.7, 0.0,28.700000000000003 +NA,NA,a-cure-i1,2024-25,Needham - Pollard Middle,01990405, 0.0, 12.1, 3.8, 6.3, 5.5, 0.0, 72.2, 49.3, 50.6, 0.1,27.799999999999997 +NA,NA,a-cure-i1,2024-25,Needham - Sunita L. Williams Elementary,01990035, 0.0, 11.1, 4.3, 5.6, 8.3, 0.2, 70.5, 45.6, 54.4, 0.0,29.5 +NA,NA,a-cure-i1,2024-25,Needham - William Mitchell,01990040, 0.0, 9.9, 3.3, 4.5, 6.1, 0.0, 76.2, 48.6, 51.4, 0.0,23.799999999999997 +NA,NA,a-cure-i1,2024-25,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.3, 2.4, 50.4, 31.8, 6.6, 0.0, 8.5, 48.2, 51.8, 0.0,91.5 +NA,NA,a-cure-i1,2024-25,New Bedford - Abraham Lincoln,02010095, 0.1, 0.6, 14.1, 48.8, 6.6, 0.0, 29.8, 45.1, 54.9, 0.0,70.2 +NA,NA,a-cure-i1,2024-25,New Bedford - Alfred J Gomes,02010063, 0.2, 0.0, 15.1, 71.4, 3.0, 0.0, 10.3, 47.0, 53.0, 0.0,89.7 +NA,NA,a-cure-i1,2024-25,New Bedford - Betsey B Winslow,02010140, 0.4, 1.8, 11.0, 19.8, 9.3, 0.0, 57.7, 50.7, 48.9, 0.4,42.3 +NA,NA,a-cure-i1,2024-25,New Bedford - Carlos Pacheco,02010105, 0.4, 1.2, 19.8, 50.0, 6.6, 0.0, 21.9, 51.2, 48.8, 0.0,78.1 +NA,NA,a-cure-i1,2024-25,New Bedford - Casimir Pulaski,02010123, 0.0, 0.5, 7.3, 23.2, 5.6, 0.2, 63.2, 48.1, 51.9, 0.0,36.8 +NA,NA,a-cure-i1,2024-25,New Bedford - Charles S Ashley,02010010, 0.0, 1.5, 9.6, 33.8, 8.1, 0.0, 47.1, 47.1, 52.9, 0.0,52.9 +NA,NA,a-cure-i1,2024-25,New Bedford - Elizabeth Carter Brooks,02010015, 0.4, 0.0, 16.9, 32.2, 9.6, 0.0, 41.0, 52.9, 47.1, 0.0,59.0 +NA,NA,a-cure-i1,2024-25,New Bedford - Ellen R Hathaway,02010075, 0.0, 1.5, 19.4, 44.3, 3.5, 0.0, 31.3, 49.3, 50.7, 0.0,68.7 +NA,NA,a-cure-i1,2024-25,New Bedford - Elwyn G Campbell,02010020, 0.4, 1.1, 12.0, 40.1, 6.0, 0.0, 40.4, 44.2, 55.8, 0.0,59.6 +NA,NA,a-cure-i1,2024-25,New Bedford - Hayden/McFadden,02010078, 0.4, 0.7, 14.2, 65.6, 4.4, 0.0, 14.7, 48.7, 51.3, 0.0,85.3 +NA,NA,a-cure-i1,2024-25,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.3, 0.3, 9.3, 60.6, 5.2, 0.0, 24.5, 50.0, 49.7, 0.3,75.5 +NA,NA,a-cure-i1,2024-25,New Bedford - James B Congdon,02010040, 0.7, 0.3, 20.4, 38.5, 6.0, 0.0, 34.1, 50.5, 49.5, 0.0,65.9 +NA,NA,a-cure-i1,2024-25,New Bedford - Jireh Swift,02010130, 1.5, 2.0, 9.8, 33.3, 4.9, 0.0, 48.5, 58.3, 41.7, 0.0,51.5 +NA,NA,a-cure-i1,2024-25,New Bedford - John Avery Parker,02010115, 0.0, 1.4, 15.9, 50.9, 6.9, 0.0, 24.9, 46.4, 53.6, 0.0,75.1 +NA,NA,a-cure-i1,2024-25,New Bedford - John B Devalles,02010050, 0.0, 0.0, 17.5, 52.4, 6.5, 0.0, 23.6, 46.2, 53.8, 0.0,76.4 +NA,NA,a-cure-i1,2024-25,New Bedford - Keith Middle School,02010405, 0.2, 0.9, 18.1, 39.1, 6.0, 0.0, 35.6, 50.4, 49.5, 0.1,64.4 +NA,NA,a-cure-i1,2024-25,New Bedford - New Bedford High,02010505, 0.3, 0.5, 16.7, 48.2, 5.4, 0.1, 28.8, 47.1, 52.7, 0.2,71.2 +NA,NA,a-cure-i1,2024-25,New Bedford - Normandin Middle School,02010410, 0.7, 1.4, 11.3, 39.2, 4.1, 0.1, 43.1, 47.6, 52.4, 0.0,56.9 +NA,NA,a-cure-i1,2024-25,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.4, 16.2, 49.9, 3.7, 0.1, 29.6, 47.0, 53.0, 0.0,70.4 +NA,NA,a-cure-i1,2024-25,New Bedford - Sgt Wm H Carney Academy,02010045, 0.2, 1.3, 20.2, 41.3, 8.7, 0.0, 28.3, 42.9, 57.1, 0.0,71.7 +NA,NA,a-cure-i1,2024-25,New Bedford - Thomas R Rodman,02010125, 0.0, 1.0, 12.5, 41.0, 4.5, 0.0, 41.0, 48.5, 51.5, 0.0,59.0 +NA,NA,a-cure-i1,2024-25,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 14.0, 40.9, 5.4, 0.0, 39.8, 29.0, 68.8, 2.2,60.2 +NA,NA,a-cure-i1,2024-25,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 15.5, 51.0, 10.0, 0.0, 23.5, 35.5, 64.5, 0.0,76.5 +NA,NA,a-cure-i1,2024-25,New Bedford - William H Taylor,02010135, 0.0, 0.0, 9.4, 27.0, 12.0, 0.0, 51.7, 51.7, 48.3, 0.0,48.3 +NA,NA,a-cure-i1,2024-25,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.4, 85.3, 7.9, 5.2, 0.0, 1.2, 49.7, 50.3, 0.0,98.8 +NA,NA,a-cure-i1,2024-25,New Salem-Wendell - Swift River,07280015, 0.0, 0.7, 0.0, 4.5, 7.5, 0.0, 87.3, 48.5, 50.7, 0.7,12.700000000000003 +NA,NA,a-cure-i1,2024-25,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.6, 0.3, 5.2, 4.2, 0.0, 88.7, 48.7, 51.3, 0.0,11.299999999999997 +NA,NA,a-cure-i1,2024-25,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.2, 0.7, 7.2, 2.9, 0.0, 88.0, 47.9, 52.1, 0.0,12.0 +NA,NA,a-cure-i1,2024-25,Newburyport - Newburyport High,02040505, 0.1, 1.7, 0.9, 5.5, 1.9, 0.0, 89.8, 51.5, 48.5, 0.0,10.200000000000003 +NA,NA,a-cure-i1,2024-25,Newburyport - Rupert A Nock Middle,02040305, 0.0, 1.7, 0.6, 6.6, 1.7, 0.0, 89.4, 54.3, 45.5, 0.2,10.599999999999994 +NA,NA,a-cure-i1,2024-25,Newton - A E Angier,02070005, 0.0, 18.8, 3.7, 5.0, 11.5, 0.0, 61.1, 50.9, 48.6, 0.5,38.9 +NA,NA,a-cure-i1,2024-25,Newton - Bigelow Middle,02070305, 0.0, 16.4, 4.8, 17.5, 10.4, 0.0, 50.9, 47.9, 51.8, 0.2,49.1 +NA,NA,a-cure-i1,2024-25,Newton - Bowen,02070015, 0.0, 30.8, 3.1, 12.6, 10.2, 0.0, 43.4, 51.7, 48.3, 0.0,56.6 +NA,NA,a-cure-i1,2024-25,Newton - C C Burr,02070020, 0.0, 23.4, 4.6, 14.0, 8.3, 0.0, 49.7, 49.4, 49.1, 1.4,50.3 +NA,NA,a-cure-i1,2024-25,Newton - Cabot,02070025, 0.0, 18.4, 4.3, 15.2, 13.8, 0.0, 48.3, 49.3, 50.5, 0.2,51.7 +NA,NA,a-cure-i1,2024-25,Newton - Charles E Brown Middle,02070310, 0.0, 26.6, 4.1, 8.1, 7.9, 0.1, 53.2, 48.0, 50.8, 1.3,46.8 +NA,NA,a-cure-i1,2024-25,Newton - Countryside,02070040, 0.0, 24.9, 6.2, 9.5, 10.6, 0.0, 48.8, 50.9, 49.1, 0.0,51.2 +NA,NA,a-cure-i1,2024-25,Newton - F A Day Middle,02070315, 0.1, 16.0, 5.0, 9.3, 11.7, 0.2, 57.6, 49.8, 49.8, 0.5,42.4 +NA,NA,a-cure-i1,2024-25,Newton - Franklin,02070055, 0.0, 15.0, 3.8, 12.8, 8.8, 0.0, 59.7, 52.8, 46.9, 0.3,40.3 +NA,NA,a-cure-i1,2024-25,Newton - Horace Mann,02070075, 0.0, 18.2, 5.1, 11.1, 12.0, 0.0, 53.6, 46.4, 53.3, 0.3,46.4 +NA,NA,a-cure-i1,2024-25,Newton - John Ward,02070120, 0.0, 18.8, 0.0, 7.0, 12.9, 0.0, 61.3, 50.5, 49.5, 0.0,38.7 +NA,NA,a-cure-i1,2024-25,Newton - Lincoln-Eliot,02070070, 0.0, 22.0, 7.1, 21.1, 11.3, 0.0, 38.4, 47.6, 52.4, 0.0,61.6 +NA,NA,a-cure-i1,2024-25,Newton - Mason-Rice,02070080, 0.0, 19.9, 1.6, 6.2, 10.9, 0.6, 60.7, 50.5, 49.5, 0.0,39.3 +NA,NA,a-cure-i1,2024-25,Newton - Memorial Spaulding,02070105, 0.0, 28.1, 4.1, 8.5, 8.2, 0.0, 51.2, 55.0, 45.0, 0.0,48.8 +NA,NA,a-cure-i1,2024-25,Newton - Newton Early Childhood Program,02070108, 0.0, 23.7, 7.5, 12.7, 16.8, 0.0, 39.3, 28.9, 71.1, 0.0,60.7 +NA,NA,a-cure-i1,2024-25,Newton - Newton North High,02070505, 0.0, 17.5, 5.0, 11.9, 7.6, 0.3, 57.8, 50.1, 49.1, 0.8,42.2 +NA,NA,a-cure-i1,2024-25,Newton - Newton South High,02070510, 0.2, 25.2, 3.8, 9.0, 6.2, 0.0, 55.7, 48.8, 50.6, 0.6,44.3 +NA,NA,a-cure-i1,2024-25,Newton - Oak Hill Middle,02070320, 0.2, 26.7, 6.6, 12.2, 7.2, 0.0, 47.1, 47.3, 52.5, 0.2,52.9 +NA,NA,a-cure-i1,2024-25,Newton - Peirce,02070100, 0.0, 17.7, 4.0, 12.4, 9.2, 0.0, 56.6, 47.8, 51.8, 0.4,43.4 +NA,NA,a-cure-i1,2024-25,Newton - Underwood,02070115, 0.4, 21.3, 5.9, 16.2, 11.1, 0.0, 45.1, 54.2, 45.5, 0.4,54.9 +NA,NA,a-cure-i1,2024-25,Newton - Williams,02070125, 0.0, 35.5, 2.8, 9.0, 6.2, 0.0, 46.4, 45.5, 54.5, 0.0,53.6 +NA,NA,a-cure-i1,2024-25,Newton - Zervas,02070130, 0.3, 23.8, 8.0, 10.8, 12.3, 0.3, 44.6, 50.9, 48.9, 0.3,55.4 +NA,NA,a-cure-i1,2024-25,Norfolk - Freeman-Kennedy School,02080005, 0.2, 3.3, 2.1, 4.7, 3.6, 0.0, 86.2, 50.6, 49.4, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Norfolk - H Olive Day,02080015, 0.0, 3.1, 3.4, 2.5, 5.2, 0.0, 85.7, 44.9, 55.1, 0.0,14.299999999999997 +NA,NA,a-cure-i1,2024-25,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.5, 0.8, 1.3, 7.4, 3.9, 0.2, 85.9, 67.3, 29.3, 3.4,14.099999999999994 +NA,NA,a-cure-i1,2024-25,North Adams - Brayton,02090035, 0.0, 0.3, 2.6, 11.4, 9.6, 0.0, 76.0, 43.0, 56.4, 0.6,24.0 +NA,NA,a-cure-i1,2024-25,North Adams - Colegrove Park Elementary,02090008, 0.3, 0.5, 1.6, 10.6, 10.3, 0.0, 76.7, 46.3, 53.4, 0.3,23.299999999999997 +NA,NA,a-cure-i1,2024-25,North Adams - Drury High,02090505, 0.5, 0.5, 3.2, 9.1, 9.4, 0.0, 77.4, 50.9, 48.6, 0.5,22.599999999999994 +NA,NA,a-cure-i1,2024-25,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.2, 8.2, 1.9, 16.7, 3.9, 0.0, 69.0, 43.1, 56.9, 0.0,31.0 +NA,NA,a-cure-i1,2024-25,North Andover - Annie L Sargent School,02110018, 0.2, 6.6, 0.7, 7.7, 3.2, 0.0, 81.6, 46.5, 53.5, 0.0,18.400000000000006 +NA,NA,a-cure-i1,2024-25,North Andover - Atkinson,02110001, 0.0, 4.7, 7.7, 27.7, 4.0, 0.4, 55.5, 47.4, 52.2, 0.4,44.5 +NA,NA,a-cure-i1,2024-25,North Andover - Franklin,02110010, 0.0, 8.4, 3.7, 10.7, 4.4, 0.0, 72.8, 45.7, 54.3, 0.0,27.200000000000003 +NA,NA,a-cure-i1,2024-25,North Andover - Kittredge,02110015, 0.0, 1.9, 2.4, 15.6, 4.7, 0.5, 74.9, 49.8, 49.8, 0.5,25.099999999999994 +NA,NA,a-cure-i1,2024-25,North Andover - North Andover High,02110505, 0.3, 7.2, 3.8, 16.4, 4.5, 0.0, 67.7, 50.3, 49.2, 0.5,32.3 +NA,NA,a-cure-i1,2024-25,North Andover - North Andover Middle,02110305, 0.0, 7.5, 3.7, 16.7, 4.2, 0.1, 67.7, 48.3, 51.6, 0.1,32.3 +NA,NA,a-cure-i1,2024-25,North Andover - Thomson,02110020, 0.0, 5.8, 2.7, 28.2, 2.4, 0.0, 60.9, 44.2, 55.8, 0.0,39.1 +NA,NA,a-cure-i1,2024-25,North Attleborough - Amvet Boulevard,02120007, 0.0, 18.9, 6.5, 7.9, 7.7, 0.5, 58.5, 49.6, 50.4, 0.0,41.5 +NA,NA,a-cure-i1,2024-25,North Attleborough - Community,02120030, 0.4, 6.5, 9.4, 14.9, 7.6, 0.0, 61.2, 50.0, 50.0, 0.0,38.8 +NA,NA,a-cure-i1,2024-25,North Attleborough - Falls,02120010, 0.4, 6.6, 3.3, 5.3, 7.0, 0.0, 77.4, 43.2, 56.8, 0.0,22.599999999999994 +NA,NA,a-cure-i1,2024-25,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.2, 6.2, 6.9, 4.9, 3.8, 0.0, 78.0, 45.2, 54.8, 0.0,22.0 +NA,NA,a-cure-i1,2024-25,North Attleborough - North Attleboro High,02120505, 0.2, 9.2, 5.8, 8.4, 4.9, 0.4, 71.0, 50.1, 49.4, 0.5,29.0 +NA,NA,a-cure-i1,2024-25,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 15.6, 9.1, 8.4, 2.6, 0.6, 63.6, 44.2, 55.8, 0.0,36.4 +NA,NA,a-cure-i1,2024-25,North Attleborough - North Attleborough Middle,02120305, 0.4, 9.2, 8.0, 7.6, 3.4, 0.3, 71.1, 46.7, 53.1, 0.2,28.900000000000006 +NA,NA,a-cure-i1,2024-25,North Attleborough - Roosevelt Avenue,02120015, 0.0, 10.2, 7.1, 5.1, 2.0, 0.0, 75.7, 50.2, 49.8, 0.0,24.299999999999997 +NA,NA,a-cure-i1,2024-25,North Brookfield - North Brookfield Elementary,02150015, 0.0, 1.3, 5.0, 10.4, 1.3, 0.0, 82.1, 46.3, 53.8, 0.0,17.900000000000006 +NA,NA,a-cure-i1,2024-25,North Brookfield - North Brookfield High,02150505, 0.0, 1.3, 5.7, 9.6, 0.0, 0.0, 83.4, 47.1, 52.9, 0.0,16.599999999999994 +NA,NA,a-cure-i1,2024-25,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 1.3, 11.8, 2.0, 0.0, 84.9, 38.2, 61.2, 0.7,15.099999999999994 +NA,NA,a-cure-i1,2024-25,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.6, 3.3, 8.9, 2.9, 0.0, 83.3, 55.5, 44.5, 0.0,16.700000000000003 +NA,NA,a-cure-i1,2024-25,North Middlesex - Nissitissit Middle School,07350310, 0.4, 2.6, 2.6, 11.5, 4.7, 0.4, 77.7, 45.7, 54.3, 0.0,22.299999999999997 +NA,NA,a-cure-i1,2024-25,North Middlesex - North Middlesex Regional,07350505, 0.1, 3.0, 2.4, 8.9, 4.4, 0.0, 81.3, 49.1, 50.6, 0.3,18.700000000000003 +NA,NA,a-cure-i1,2024-25,North Middlesex - Spaulding Memorial,07350005, 0.0, 1.2, 2.9, 9.7, 4.1, 0.0, 82.1, 49.6, 50.4, 0.0,17.900000000000006 +NA,NA,a-cure-i1,2024-25,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 3.4, 4.5, 10.1, 5.6, 0.0, 76.4, 34.8, 65.2, 0.0,23.599999999999994 +NA,NA,a-cure-i1,2024-25,North Middlesex - Varnum Brook,07350035, 0.2, 4.1, 3.5, 9.7, 3.5, 0.0, 79.0, 53.5, 46.5, 0.0,21.0 +NA,NA,a-cure-i1,2024-25,North Reading - E Ethel Little School,02170003, 0.0, 4.6, 0.0, 6.6, 4.0, 0.0, 84.8, 53.1, 46.9, 0.0,15.200000000000003 +NA,NA,a-cure-i1,2024-25,North Reading - J Turner Hood,02170010, 0.0, 7.0, 0.7, 5.5, 4.6, 0.0, 82.2, 50.2, 49.8, 0.0,17.799999999999997 +NA,NA,a-cure-i1,2024-25,North Reading - L D Batchelder,02170005, 0.0, 4.8, 1.1, 2.8, 3.7, 0.0, 87.7, 45.2, 54.8, 0.0,12.299999999999997 +NA,NA,a-cure-i1,2024-25,North Reading - North Reading High,02170505, 0.0, 6.6, 0.5, 4.9, 3.5, 0.0, 84.5, 50.0, 49.7, 0.3,15.5 +NA,NA,a-cure-i1,2024-25,North Reading - North Reading Middle,02170305, 0.0, 5.1, 0.6, 3.6, 4.3, 0.2, 86.2, 46.2, 53.8, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Northampton - Bridge Street,02100005, 0.0, 2.8, 5.7, 32.4, 8.2, 0.0, 50.9, 50.2, 49.5, 0.4,49.1 +NA,NA,a-cure-i1,2024-25,Northampton - Jackson Street,02100020, 0.0, 2.2, 3.6, 20.4, 7.2, 0.0, 66.7, 45.5, 54.5, 0.0,33.3 +NA,NA,a-cure-i1,2024-25,Northampton - John F Kennedy Middle School,02100410, 0.2, 1.9, 4.0, 17.7, 8.3, 0.0, 67.9, 46.4, 52.9, 0.7,32.099999999999994 +NA,NA,a-cure-i1,2024-25,Northampton - Leeds,02100025, 0.4, 3.2, 0.4, 20.2, 4.7, 0.0, 71.1, 45.5, 53.8, 0.8,28.900000000000006 +NA,NA,a-cure-i1,2024-25,Northampton - Northampton High,02100505, 0.0, 3.5, 3.7, 13.9, 8.2, 0.0, 70.6, 49.1, 48.7, 2.2,29.400000000000006 +NA,NA,a-cure-i1,2024-25,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.9, 1.7, 15.2, 3.5, 0.0, 78.8, 48.1, 51.9, 0.0,21.200000000000003 +NA,NA,a-cure-i1,2024-25,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.5, 0.7, 1.5, 13.6, 2.0, 0.0, 81.6, 42.1, 56.9, 1.0,18.400000000000006 +NA,NA,a-cure-i1,2024-25,Northboro-Southboro - Algonquin Regional High,07300505, 0.1, 16.1, 1.8, 9.5, 4.3, 1.0, 67.3, 50.7, 49.0, 0.3,32.7 +NA,NA,a-cure-i1,2024-25,Northborough - Fannie E Proctor,02130015, 0.4, 16.0, 3.8, 12.2, 5.9, 0.0, 61.8, 47.5, 52.5, 0.0,38.2 +NA,NA,a-cure-i1,2024-25,Northborough - Lincoln Street,02130003, 0.0, 12.7, 2.2, 9.3, 5.6, 0.0, 70.1, 48.5, 51.5, 0.0,29.900000000000006 +NA,NA,a-cure-i1,2024-25,Northborough - Marguerite E Peaslee,02130014, 0.0, 13.1, 1.5, 16.5, 9.0, 1.5, 58.4, 48.7, 51.3, 0.0,41.6 +NA,NA,a-cure-i1,2024-25,Northborough - Marion E Zeh,02130020, 0.0, 17.7, 1.2, 13.7, 4.8, 0.0, 62.7, 49.8, 50.2, 0.0,37.3 +NA,NA,a-cure-i1,2024-25,Northborough - Robert E. Melican Middle School,02130305, 0.4, 12.7, 2.8, 11.7, 4.6, 1.5, 66.4, 47.7, 52.3, 0.0,33.599999999999994 +NA,NA,a-cure-i1,2024-25,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.7, 2.3, 16.0, 2.6, 0.0, 78.4, 46.0, 54.0, 0.0,21.599999999999994 +NA,NA,a-cure-i1,2024-25,Northbridge - Northbridge High,02140505, 0.0, 2.1, 2.3, 15.3, 3.2, 0.0, 77.1, 51.0, 48.6, 0.4,22.900000000000006 +NA,NA,a-cure-i1,2024-25,Northbridge - Northbridge Middle,02140305, 0.3, 1.8, 1.3, 12.2, 1.5, 0.0, 83.0, 44.9, 55.1, 0.0,17.0 +NA,NA,a-cure-i1,2024-25,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.7, 1.3, 5.3, 48.3, 2.2, 0.1, 42.2, 45.8, 53.5, 0.7,57.8 +NA,NA,a-cure-i1,2024-25,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.2, 1.2, 2.3, 1.9, 0.4, 94.0, 37.4, 62.6, 0.0,6.0 +NA,NA,a-cure-i1,2024-25,Norton - Henri A. Yelle,02180060, 0.0, 1.9, 4.6, 4.0, 4.6, 0.0, 84.9, 50.4, 49.6, 0.0,15.099999999999994 +NA,NA,a-cure-i1,2024-25,Norton - J C Solmonese,02180015, 0.0, 2.4, 5.1, 3.3, 5.1, 0.0, 84.1, 48.5, 51.5, 0.0,15.900000000000006 +NA,NA,a-cure-i1,2024-25,Norton - L G Nourse Elementary,02180010, 0.0, 2.9, 8.1, 4.8, 5.1, 0.0, 79.0, 45.6, 54.4, 0.0,21.0 +NA,NA,a-cure-i1,2024-25,Norton - Norton High,02180505, 0.0, 2.5, 5.1, 4.1, 3.6, 0.3, 84.4, 51.7, 48.3, 0.0,15.599999999999994 +NA,NA,a-cure-i1,2024-25,Norton - Norton Middle,02180305, 0.0, 0.9, 5.1, 5.9, 4.4, 0.0, 83.7, 51.8, 48.2, 0.0,16.299999999999997 +NA,NA,a-cure-i1,2024-25,Norwell - Grace Farrar Cole,02190005, 0.0, 2.7, 0.9, 1.7, 6.6, 0.0, 88.1, 49.6, 50.2, 0.2,11.900000000000006 +NA,NA,a-cure-i1,2024-25,Norwell - Norwell High,02190505, 0.2, 2.7, 0.5, 1.7, 3.7, 0.0, 91.3, 47.6, 52.4, 0.0,8.700000000000003 +NA,NA,a-cure-i1,2024-25,Norwell - Norwell Middle School,02190405, 0.0, 3.9, 1.4, 1.6, 4.9, 0.2, 88.0, 43.6, 56.2, 0.2,12.0 +NA,NA,a-cure-i1,2024-25,Norwell - William G Vinal,02190020, 0.0, 2.5, 0.4, 2.0, 4.9, 0.0, 90.3, 50.4, 49.6, 0.0,9.700000000000003 +NA,NA,a-cure-i1,2024-25,Norwood - Balch,02200005, 0.7, 6.6, 10.6, 41.6, 1.7, 1.3, 37.6, 49.5, 50.5, 0.0,62.4 +NA,NA,a-cure-i1,2024-25,Norwood - Charles J Prescott,02200025, 0.7, 18.4, 15.0, 18.4, 6.7, 1.5, 39.3, 52.8, 47.2, 0.0,60.7 +NA,NA,a-cure-i1,2024-25,Norwood - Cornelius M Callahan,02200010, 0.4, 6.9, 13.4, 23.9, 4.9, 0.4, 50.2, 50.2, 49.8, 0.0,49.8 +NA,NA,a-cure-i1,2024-25,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.1, 5.7, 16.0, 21.2, 3.1, 1.0, 52.9, 47.2, 52.8, 0.0,47.1 +NA,NA,a-cure-i1,2024-25,Norwood - F A Cleveland,02200015, 0.3, 3.8, 10.0, 15.6, 4.4, 0.6, 65.2, 49.9, 50.1, 0.0,34.8 +NA,NA,a-cure-i1,2024-25,Norwood - George F. Willett,02200075, 0.8, 6.6, 10.9, 20.7, 5.1, 1.2, 54.7, 44.9, 55.1, 0.0,45.3 +NA,NA,a-cure-i1,2024-25,Norwood - John P Oldham,02200020, 0.4, 4.2, 12.6, 12.3, 3.8, 1.5, 65.1, 47.9, 52.1, 0.0,34.900000000000006 +NA,NA,a-cure-i1,2024-25,Norwood - Little Mustangs Preschool Academy (LMPA),02200001, 0.0, 21.7, 9.3, 14.7, 4.7, 0.0, 49.6, 43.4, 56.6, 0.0,50.4 +NA,NA,a-cure-i1,2024-25,Norwood - Norwood High,02200505, 0.3, 4.1, 13.3, 22.6, 2.8, 0.4, 56.5, 52.3, 47.4, 0.3,43.5 +NA,NA,a-cure-i1,2024-25,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.2, 1.7, 2.5, 38.6, 4.7, 0.0, 52.2, 45.3, 54.5, 0.2,47.8 +NA,NA,a-cure-i1,2024-25,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.5, 0.9, 1.1, 3.8, 4.0, 0.2, 89.5, 37.5, 61.4, 1.1,10.5 +NA,NA,a-cure-i1,2024-25,Old Rochester - Old Rochester Regional High,07400505, 0.0, 1.6, 3.4, 2.3, 5.1, 0.0, 87.6, 49.0, 50.9, 0.2,12.400000000000006 +NA,NA,a-cure-i1,2024-25,Old Rochester - Old Rochester Regional Jr High,07400405, 0.2, 0.5, 0.7, 4.7, 4.9, 0.0, 88.9, 47.7, 52.1, 0.2,11.099999999999994 +NA,NA,a-cure-i1,2024-25,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.3, 0.3, 4.8, 33.7, 2.5, 0.3, 58.1, 44.4, 55.6, 0.0,41.9 +NA,NA,a-cure-i1,2024-25,Orange - Fisher Hill School,02230010, 0.2, 1.4, 1.0, 11.7, 5.1, 0.2, 80.4, 46.4, 53.6, 0.0,19.599999999999994 +NA,NA,a-cure-i1,2024-25,Orleans - Orleans Elementary,02240005, 1.3, 2.7, 2.0, 8.7, 4.0, 0.0, 81.2, 49.7, 50.3, 0.0,18.799999999999997 +NA,NA,a-cure-i1,2024-25,Oxford - Alfred M Chaffee,02260010, 0.3, 2.2, 4.2, 19.8, 5.8, 0.0, 67.7, 47.3, 52.7, 0.0,32.3 +NA,NA,a-cure-i1,2024-25,Oxford - Clara Barton,02260005, 0.0, 1.0, 3.3, 18.9, 6.5, 0.0, 70.4, 53.1, 46.9, 0.0,29.599999999999994 +NA,NA,a-cure-i1,2024-25,Oxford - Oxford High,02260505, 0.0, 1.8, 5.3, 21.2, 6.2, 0.0, 65.6, 47.0, 52.1, 0.9,34.400000000000006 +NA,NA,a-cure-i1,2024-25,Oxford - Oxford Middle,02260405, 0.5, 0.5, 2.9, 17.1, 3.1, 0.0, 75.8, 48.3, 51.7, 0.0,24.200000000000003 +NA,NA,a-cure-i1,2024-25,Palmer - Old Mill Pond,02270008, 0.1, 1.2, 2.8, 15.8, 5.5, 0.0, 74.6, 50.2, 49.8, 0.0,25.400000000000006 +NA,NA,a-cure-i1,2024-25,Palmer - Palmer High,02270505, 0.0, 3.6, 3.4, 17.5, 5.3, 0.0, 70.2, 47.4, 52.4, 0.2,29.799999999999997 +NA,NA,a-cure-i1,2024-25,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.5, 1.4, 11.1, 3.8, 0.2, 83.2, 38.6, 61.2, 0.2,16.799999999999997 +NA,NA,a-cure-i1,2024-25,Peabody - Captain Samuel Brown,02290005, 0.0, 5.4, 6.2, 22.5, 4.6, 0.3, 61.0, 45.0, 55.0, 0.0,39.0 +NA,NA,a-cure-i1,2024-25,Peabody - Center,02290015, 0.0, 7.3, 10.6, 25.2, 4.9, 0.0, 52.0, 41.5, 58.5, 0.0,48.0 +NA,NA,a-cure-i1,2024-25,Peabody - J Henry Higgins Middle,02290305, 0.3, 1.9, 5.0, 25.6, 2.0, 0.0, 65.2, 51.0, 49.0, 0.0,34.8 +NA,NA,a-cure-i1,2024-25,Peabody - John E Burke,02290007, 0.3, 0.3, 3.1, 12.2, 2.4, 0.0, 81.6, 48.3, 51.7, 0.0,18.400000000000006 +NA,NA,a-cure-i1,2024-25,Peabody - John E. McCarthy,02290016, 0.5, 4.7, 20.5, 26.5, 3.6, 0.0, 44.2, 55.8, 44.2, 0.0,55.8 +NA,NA,a-cure-i1,2024-25,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 1.0, 4.1, 6.2, 29.9, 1.0, 0.0, 57.7, 51.5, 46.4, 2.1,42.3 +NA,NA,a-cure-i1,2024-25,Peabody - Peabody Veterans Memorial High,02290510, 0.4, 1.6, 7.7, 26.9, 2.5, 0.1, 60.9, 48.3, 51.6, 0.1,39.1 +NA,NA,a-cure-i1,2024-25,Peabody - South Memorial,02290035, 0.2, 2.2, 3.6, 16.2, 5.5, 0.0, 72.3, 51.8, 48.2, 0.0,27.700000000000003 +NA,NA,a-cure-i1,2024-25,Peabody - Thomas Carroll,02290010, 0.5, 2.2, 5.6, 40.9, 2.9, 0.3, 47.6, 48.7, 51.3, 0.0,52.4 +NA,NA,a-cure-i1,2024-25,Peabody - West Memorial,02290045, 0.0, 1.7, 3.7, 11.2, 3.7, 0.0, 79.6, 51.0, 49.0, 0.0,20.400000000000006 +NA,NA,a-cure-i1,2024-25,Peabody - William A Welch Sr,02290027, 0.7, 1.5, 4.4, 54.4, 2.5, 0.2, 36.3, 48.5, 51.5, 0.0,63.7 +NA,NA,a-cure-i1,2024-25,Pelham - Pelham Elementary,02300005, 1.6, 3.9, 5.5, 14.1, 10.2, 0.0, 64.8, 41.4, 56.3, 2.3,35.2 +NA,NA,a-cure-i1,2024-25,Pembroke - Bryantville Elementary,02310003, 0.2, 0.0, 0.0, 3.3, 7.6, 0.0, 88.8, 46.1, 53.9, 0.0,11.200000000000003 +NA,NA,a-cure-i1,2024-25,Pembroke - Hobomock Elementary,02310010, 0.0, 1.0, 0.8, 3.4, 3.6, 0.0, 91.2, 49.4, 50.6, 0.0,8.799999999999997 +NA,NA,a-cure-i1,2024-25,Pembroke - North Pembroke Elementary,02310015, 0.4, 0.4, 0.2, 3.7, 7.3, 0.0, 88.0, 49.6, 50.4, 0.0,12.0 +NA,NA,a-cure-i1,2024-25,Pembroke - Pembroke Community Middle School,02310305, 0.6, 1.4, 0.6, 2.8, 2.5, 0.0, 92.1, 47.0, 53.0, 0.0,7.900000000000006 +NA,NA,a-cure-i1,2024-25,Pembroke - Pembroke High School,02310505, 0.0, 0.6, 0.3, 1.9, 3.6, 0.0, 93.6, 46.5, 53.5, 0.0,6.400000000000006 +NA,NA,a-cure-i1,2024-25,Pentucket - Dr Frederick N Sweetsir,07450020, 0.5, 0.5, 0.9, 6.9, 6.0, 0.0, 85.3, 41.0, 59.0, 0.0,14.700000000000003 +NA,NA,a-cure-i1,2024-25,Pentucket - Dr John C Page School,07450015, 0.3, 0.6, 0.0, 5.8, 1.8, 0.0, 91.4, 48.3, 51.7, 0.0,8.599999999999994 +NA,NA,a-cure-i1,2024-25,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.6, 0.2, 11.0, 3.9, 0.0, 84.4, 47.4, 52.6, 0.0,15.599999999999994 +NA,NA,a-cure-i1,2024-25,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.8, 0.0, 9.2, 2.3, 0.0, 87.8, 47.3, 52.7, 0.0,12.200000000000003 +NA,NA,a-cure-i1,2024-25,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.6, 0.3, 7.8, 1.5, 0.0, 89.9, 50.4, 49.6, 0.0,10.099999999999994 +NA,NA,a-cure-i1,2024-25,Pentucket - Pentucket Regional Sr High,07450505, 0.2, 1.2, 0.2, 7.8, 2.4, 0.0, 88.2, 49.7, 50.0, 0.3,11.799999999999997 +NA,NA,a-cure-i1,2024-25,Petersham - Petersham Center,02340005, 0.7, 0.7, 2.1, 7.7, 2.1, 0.0, 86.6, 52.1, 47.9, 0.0,13.400000000000006 +NA,NA,a-cure-i1,2024-25,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 1.5, 0.5, 8.1, 83.8, 1.0, 0.0, 5.1, 55.1, 44.4, 0.5,94.9 +NA,NA,a-cure-i1,2024-25,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 2.1, 0.0, 4.3, 80.0, 3.6, 0.0, 10.0, 52.9, 47.1, 0.0,90.0 +NA,NA,a-cure-i1,2024-25,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.6, 0.0, 15.8, 74.1, 5.1, 0.0, 4.4, 55.1, 44.3, 0.6,95.6 +NA,NA,a-cure-i1,2024-25,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.5, 8.8, 20.9, 27.0, 3.6, 0.0, 39.1, 52.2, 47.8, 0.0,60.9 +NA,NA,a-cure-i1,2024-25,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.5, 16.9, 31.4, 23.8, 4.0, 0.0, 23.3, 49.6, 50.4, 0.0,76.7 +NA,NA,a-cure-i1,2024-25,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 3.5, 4.5, 0.5, 91.5, 49.3, 50.7, 0.0,8.5 +NA,NA,a-cure-i1,2024-25,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.7, 3.5, 4.3, 0.0, 91.5, 44.0, 56.0, 0.0,8.5 +NA,NA,a-cure-i1,2024-25,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.4, 0.0, 2.9, 3.8, 0.0, 92.9, 50.6, 47.3, 2.1,7.099999999999994 +NA,NA,a-cure-i1,2024-25,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 19.2, 7.4, 10.4, 15.9, 0.0, 47.1, 46.9, 52.6, 0.5,52.9 +NA,NA,a-cure-i1,2024-25,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.3, 1.3, 8.1, 27.2, 7.1, 0.0, 56.2, 68.3, 30.5, 1.3,43.8 +NA,NA,a-cure-i1,2024-25,Pittsfield - Allendale,02360010, 0.4, 1.7, 17.8, 22.9, 9.7, 0.0, 47.5, 44.5, 55.5, 0.0,52.5 +NA,NA,a-cure-i1,2024-25,Pittsfield - Crosby,02360065, 0.0, 0.8, 14.1, 32.1, 15.3, 0.0, 37.8, 51.8, 47.8, 0.4,62.2 +NA,NA,a-cure-i1,2024-25,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 16.7, 20.8, 12.5, 0.0, 50.0, 20.8, 79.2, 0.0,50.0 +NA,NA,a-cure-i1,2024-25,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 16.7, 33.3, 8.3, 0.0, 41.7, 37.5, 62.5, 0.0,58.3 +NA,NA,a-cure-i1,2024-25,Pittsfield - Egremont,02360035, 0.3, 1.9, 7.4, 22.9, 10.1, 0.0, 57.4, 48.7, 51.3, 0.0,42.6 +NA,NA,a-cure-i1,2024-25,Pittsfield - John T Reid Middle,02360305, 0.0, 0.2, 11.3, 26.0, 12.3, 0.0, 50.1, 51.6, 47.7, 0.7,49.9 +NA,NA,a-cure-i1,2024-25,Pittsfield - Morningside Community School,02360055, 0.3, 0.5, 17.8, 38.0, 12.5, 0.0, 30.9, 55.1, 44.9, 0.0,69.1 +NA,NA,a-cure-i1,2024-25,Pittsfield - Pittsfield High,02360505, 0.3, 2.1, 14.6, 22.8, 7.7, 0.0, 52.5, 47.9, 51.9, 0.3,47.5 +NA,NA,a-cure-i1,2024-25,Pittsfield - Robert T. Capeless Elementary School,02360045, 1.1, 0.0, 7.4, 16.5, 13.6, 0.6, 60.8, 47.2, 52.8, 0.0,39.2 +NA,NA,a-cure-i1,2024-25,Pittsfield - Silvio O Conte Community,02360105, 0.3, 0.5, 21.6, 34.3, 12.4, 0.0, 30.9, 50.4, 49.6, 0.0,69.1 +NA,NA,a-cure-i1,2024-25,Pittsfield - Stearns,02360090, 0.4, 1.8, 7.1, 10.3, 14.3, 0.4, 65.6, 45.5, 54.5, 0.0,34.400000000000006 +NA,NA,a-cure-i1,2024-25,Pittsfield - Taconic High,02360510, 0.4, 1.1, 10.3, 18.2, 10.0, 0.0, 60.1, 44.1, 55.5, 0.5,39.9 +NA,NA,a-cure-i1,2024-25,Pittsfield - Theodore Herberg Middle,02360310, 0.5, 1.5, 12.6, 18.4, 11.4, 0.2, 55.4, 46.7, 52.8, 0.5,44.6 +NA,NA,a-cure-i1,2024-25,Pittsfield - Williams,02360100, 0.4, 3.8, 8.0, 16.3, 6.4, 0.0, 65.2, 50.0, 50.0, 0.0,34.8 +NA,NA,a-cure-i1,2024-25,Plainville - Anna Ware Jackson,02380010, 0.0, 2.5, 5.9, 12.0, 4.3, 0.0, 75.3, 49.7, 50.3, 0.0,24.700000000000003 +NA,NA,a-cure-i1,2024-25,Plainville - Beatrice H Wood Elementary,02380005, 0.3, 3.6, 5.7, 10.3, 6.6, 0.0, 73.4, 45.9, 54.1, 0.0,26.599999999999994 +NA,NA,a-cure-i1,2024-25,Plymouth - Cold Spring,02390005, 0.0, 1.4, 5.6, 24.3, 3.7, 0.0, 65.0, 52.8, 47.2, 0.0,35.0 +NA,NA,a-cure-i1,2024-25,Plymouth - Federal Furnace School,02390011, 0.0, 0.6, 4.5, 8.6, 7.2, 0.0, 79.1, 44.8, 55.2, 0.0,20.900000000000006 +NA,NA,a-cure-i1,2024-25,Plymouth - Hedge,02390010, 0.5, 0.0, 4.8, 43.8, 6.2, 0.0, 44.8, 46.7, 53.3, 0.0,55.2 +NA,NA,a-cure-i1,2024-25,Plymouth - Indian Brook,02390012, 0.0, 0.2, 0.6, 7.1, 3.7, 0.2, 88.3, 47.5, 52.5, 0.0,11.700000000000003 +NA,NA,a-cure-i1,2024-25,Plymouth - Manomet Elementary,02390015, 0.0, 1.1, 1.9, 5.3, 6.8, 0.0, 84.8, 51.3, 48.7, 0.0,15.200000000000003 +NA,NA,a-cure-i1,2024-25,Plymouth - Nathaniel Morton Elementary,02390030, 0.4, 1.6, 2.0, 11.7, 5.7, 0.0, 78.7, 47.7, 52.3, 0.0,21.299999999999997 +NA,NA,a-cure-i1,2024-25,Plymouth - Plymouth Commun Intermediate,02390405, 0.1, 0.5, 2.9, 13.2, 6.5, 0.0, 76.7, 49.6, 50.3, 0.1,23.299999999999997 +NA,NA,a-cure-i1,2024-25,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 1.8, 0.9, 10.7, 4.4, 0.0, 82.2, 45.8, 54.2, 0.0,17.799999999999997 +NA,NA,a-cure-i1,2024-25,Plymouth - Plymouth North High,02390505, 0.0, 1.7, 3.1, 14.3, 4.7, 0.1, 76.1, 49.6, 50.1, 0.3,23.900000000000006 +NA,NA,a-cure-i1,2024-25,Plymouth - Plymouth South High,02390515, 0.0, 0.3, 1.8, 5.6, 2.8, 0.2, 89.3, 47.7, 52.1, 0.2,10.700000000000003 +NA,NA,a-cure-i1,2024-25,Plymouth - Plymouth South Middle,02390305, 0.7, 0.3, 1.8, 6.2, 4.3, 0.3, 86.4, 47.9, 51.9, 0.2,13.599999999999994 +NA,NA,a-cure-i1,2024-25,Plymouth - South Elementary,02390046, 0.0, 0.8, 1.1, 7.3, 4.1, 0.0, 86.6, 48.0, 52.0, 0.0,13.400000000000006 +NA,NA,a-cure-i1,2024-25,Plymouth - West Elementary,02390047, 0.3, 2.0, 3.2, 8.3, 5.7, 0.0, 80.5, 43.3, 56.7, 0.0,19.5 +NA,NA,a-cure-i1,2024-25,Plympton - Dennett Elementary,02400010, 0.4, 0.0, 0.0, 4.0, 0.8, 0.0, 94.8, 47.4, 52.6, 0.0,5.200000000000003 +NA,NA,a-cure-i1,2024-25,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.3, 5.7, 56.2, 22.8, 5.2, 0.1, 9.7, 50.1, 49.9, 0.0,90.3 +NA,NA,a-cure-i1,2024-25,Provincetown - Provincetown Schools,02420020, 0.0, 0.7, 24.3, 11.8, 9.2, 0.0, 53.9, 48.7, 50.7, 0.7,46.1 +NA,NA,a-cure-i1,2024-25,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 3.0, 7.7, 3.6, 0.0, 85.8, 49.7, 50.3, 0.0,14.200000000000003 +NA,NA,a-cure-i1,2024-25,Quabbin - Hubbardston Center,07530010, 0.3, 1.6, 0.0, 4.9, 1.0, 0.0, 92.1, 48.0, 52.0, 0.0,7.900000000000006 +NA,NA,a-cure-i1,2024-25,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 17.2, 10.3, 0.0, 72.4, 37.9, 62.1, 0.0,27.599999999999994 +NA,NA,a-cure-i1,2024-25,Quabbin - Oakham Center,07530025, 0.0, 0.7, 3.3, 5.9, 1.3, 0.0, 88.8, 44.1, 55.9, 0.0,11.200000000000003 +NA,NA,a-cure-i1,2024-25,Quabbin - Quabbin Regional High School,07530505, 0.2, 1.7, 2.6, 7.5, 2.8, 0.0, 85.3, 52.5, 47.5, 0.0,14.700000000000003 +NA,NA,a-cure-i1,2024-25,Quabbin - Quabbin Regional Middle School,07530405, 0.2, 1.4, 2.4, 7.5, 2.9, 0.2, 85.5, 46.9, 52.9, 0.2,14.5 +NA,NA,a-cure-i1,2024-25,Quabbin - Ruggles Lane,07530030, 0.0, 0.7, 2.2, 5.5, 3.7, 0.0, 87.8, 43.5, 56.5, 0.0,12.200000000000003 +NA,NA,a-cure-i1,2024-25,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 1.9, 5.7, 15.1, 3.8, 0.0, 73.6, 34.0, 66.0, 0.0,26.400000000000006 +NA,NA,a-cure-i1,2024-25,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 1.2, 9.6, 6.0, 0.0, 83.2, 52.7, 45.8, 1.5,16.799999999999997 +NA,NA,a-cure-i1,2024-25,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.5, 1.5, 1.5, 9.7, 4.6, 0.0, 82.1, 45.9, 53.1, 1.0,17.900000000000006 +NA,NA,a-cure-i1,2024-25,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.3, 1.3, 11.1, 4.9, 0.0, 82.3, 48.5, 51.5, 0.0,17.700000000000003 +NA,NA,a-cure-i1,2024-25,Quaboag Regional - West Brookfield Elementary,07780010, 0.9, 2.2, 1.3, 9.3, 2.2, 0.0, 84.1, 53.3, 46.7, 0.0,15.900000000000006 +NA,NA,a-cure-i1,2024-25,Quincy - Atherton Hough,02430040, 0.0, 10.5, 7.4, 8.2, 8.6, 0.4, 64.8, 38.3, 61.7, 0.0,35.2 +NA,NA,a-cure-i1,2024-25,Quincy - Atlantic Middle,02430305, 0.0, 59.7, 4.5, 4.8, 2.8, 0.0, 28.1, 49.9, 49.9, 0.2,71.9 +NA,NA,a-cure-i1,2024-25,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 57.1, 2.6, 5.8, 4.1, 0.0, 30.3, 49.3, 50.7, 0.0,69.7 +NA,NA,a-cure-i1,2024-25,Quincy - Broad Meadows Middle,02430310, 0.3, 21.7, 12.3, 9.4, 4.4, 0.0, 51.9, 47.8, 52.2, 0.0,48.1 +NA,NA,a-cure-i1,2024-25,Quincy - Central Middle,02430315, 0.0, 51.6, 3.7, 4.5, 2.7, 0.4, 37.1, 44.9, 55.0, 0.1,62.9 +NA,NA,a-cure-i1,2024-25,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 25.1, 4.4, 4.7, 9.1, 0.0, 56.6, 53.7, 46.0, 0.3,43.4 +NA,NA,a-cure-i1,2024-25,Quincy - Clifford H Marshall Elementary,02430055, 0.4, 36.8, 17.2, 15.0, 6.0, 0.0, 24.7, 48.6, 51.4, 0.0,75.3 +NA,NA,a-cure-i1,2024-25,Quincy - Dr. Rick DeCristofaro Learning Center,02430150, 0.4, 39.1, 18.0, 11.5, 6.9, 0.0, 24.1, 34.9, 65.1, 0.0,75.9 +NA,NA,a-cure-i1,2024-25,Quincy - Francis W Parker,02430075, 0.3, 59.8, 6.2, 7.4, 5.9, 0.0, 20.4, 48.6, 51.4, 0.0,79.6 +NA,NA,a-cure-i1,2024-25,Quincy - Lincoln-Hancock Community School,02430035, 0.5, 28.7, 15.4, 12.0, 11.7, 0.0, 31.7, 51.0, 48.8, 0.2,68.3 +NA,NA,a-cure-i1,2024-25,Quincy - Merrymount,02430060, 0.0, 15.1, 5.5, 10.0, 7.2, 0.0, 62.2, 47.8, 52.2, 0.0,37.8 +NA,NA,a-cure-i1,2024-25,Quincy - Montclair,02430065, 0.0, 61.9, 4.1, 7.4, 4.9, 0.0, 21.6, 46.0, 54.0, 0.0,78.4 +NA,NA,a-cure-i1,2024-25,Quincy - North Quincy High,02430510, 0.1, 56.1, 3.7, 4.9, 3.0, 0.3, 32.0, 47.5, 52.4, 0.1,68.0 +NA,NA,a-cure-i1,2024-25,Quincy - Point Webster Middle,02430325, 0.0, 33.2, 23.1, 14.6, 2.9, 0.0, 26.3, 56.5, 43.5, 0.0,73.7 +NA,NA,a-cure-i1,2024-25,Quincy - Quincy High,02430505, 0.3, 22.7, 15.0, 15.1, 5.7, 0.6, 40.7, 46.6, 52.8, 0.7,59.3 +NA,NA,a-cure-i1,2024-25,Quincy - Snug Harbor Community School,02430090, 0.3, 29.7, 15.3, 17.6, 9.7, 0.0, 27.4, 43.9, 56.1, 0.0,72.6 +NA,NA,a-cure-i1,2024-25,Quincy - South West Middle School,02430320, 0.9, 29.0, 17.8, 14.7, 9.6, 0.2, 27.8, 48.1, 51.9, 0.0,72.2 +NA,NA,a-cure-i1,2024-25,Quincy - Squantum,02430095, 0.0, 26.5, 6.4, 6.7, 5.8, 0.0, 54.5, 45.2, 54.8, 0.0,45.5 +NA,NA,a-cure-i1,2024-25,Quincy - Wollaston School,02430110, 0.0, 61.6, 3.5, 3.1, 4.4, 0.0, 27.4, 44.0, 56.0, 0.0,72.6 +NA,NA,a-cure-i1,2024-25,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.2, 0.8, 2.8, 10.8, 3.7, 0.0, 81.7, 45.2, 53.2, 1.6,18.299999999999997 +NA,NA,a-cure-i1,2024-25,Randolph - J F Kennedy Elementary,02440018, 0.0, 15.9, 56.3, 14.1, 4.4, 0.2, 9.1, 45.0, 55.0, 0.0,90.9 +NA,NA,a-cure-i1,2024-25,Randolph - Margaret L Donovan,02440015, 0.5, 18.1, 49.9, 18.6, 4.1, 0.0, 8.9, 52.3, 47.7, 0.0,91.1 +NA,NA,a-cure-i1,2024-25,Randolph - Martin E Young Elementary,02440040, 0.3, 7.8, 54.1, 17.8, 3.4, 0.3, 16.3, 51.6, 48.4, 0.0,83.7 +NA,NA,a-cure-i1,2024-25,Randolph - North Randolph Elementary School,02440020, 0.0, 14.2, 47.9, 15.2, 6.0, 0.7, 16.0, 51.1, 48.9, 0.0,84.0 +NA,NA,a-cure-i1,2024-25,Randolph - Randolph Community Middle,02440410, 0.3, 14.8, 51.1, 18.3, 5.2, 0.2, 10.2, 49.4, 50.5, 0.2,89.8 +NA,NA,a-cure-i1,2024-25,Randolph - Randolph High,02440505, 0.5, 19.9, 56.5, 13.9, 2.1, 0.1, 7.1, 47.7, 52.3, 0.0,92.9 +NA,NA,a-cure-i1,2024-25,Reading - Alice M Barrows,02460002, 0.0, 4.4, 1.6, 5.2, 3.3, 0.0, 85.5, 48.8, 51.2, 0.0,14.5 +NA,NA,a-cure-i1,2024-25,Reading - Arthur W Coolidge Middle,02460305, 0.0, 6.4, 3.7, 4.2, 2.5, 0.0, 83.2, 48.4, 51.6, 0.0,16.799999999999997 +NA,NA,a-cure-i1,2024-25,Reading - Birch Meadow,02460005, 0.0, 5.3, 2.8, 4.5, 5.3, 0.0, 82.2, 43.7, 56.3, 0.0,17.799999999999997 +NA,NA,a-cure-i1,2024-25,Reading - J Warren Killam,02460017, 0.0, 7.4, 5.2, 6.4, 1.7, 0.0, 79.3, 47.3, 52.5, 0.2,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Reading - Joshua Eaton,02460010, 0.0, 4.4, 2.1, 7.7, 3.9, 0.0, 82.0, 49.0, 51.0, 0.0,18.0 +NA,NA,a-cure-i1,2024-25,Reading - Reading Memorial High,02460505, 0.2, 3.7, 4.1, 4.3, 2.7, 0.0, 85.0, 45.9, 53.7, 0.5,15.0 +NA,NA,a-cure-i1,2024-25,Reading - RISE PreSchool,02460001, 0.0, 6.9, 1.7, 4.3, 6.9, 0.0, 80.2, 43.1, 56.9, 0.0,19.799999999999997 +NA,NA,a-cure-i1,2024-25,Reading - Walter S Parker Middle,02460310, 0.2, 6.0, 5.1, 5.4, 3.0, 0.0, 80.3, 47.1, 52.9, 0.0,19.700000000000003 +NA,NA,a-cure-i1,2024-25,Reading - Wood End Elementary School,02460020, 0.0, 6.8, 0.8, 4.2, 3.4, 0.0, 84.7, 46.2, 53.8, 0.0,15.299999999999997 +NA,NA,a-cure-i1,2024-25,Revere - A. C. Whelan Elementary School,02480003, 0.6, 3.3, 3.0, 59.1, 1.8, 0.2, 31.9, 48.5, 51.5, 0.0,68.1 +NA,NA,a-cure-i1,2024-25,Revere - Abraham Lincoln,02480025, 1.2, 4.5, 4.2, 51.5, 3.3, 0.0, 35.3, 53.2, 46.8, 0.0,64.7 +NA,NA,a-cure-i1,2024-25,Revere - Beachmont Veterans Memorial School,02480013, 0.6, 1.4, 4.6, 59.0, 1.2, 0.3, 32.9, 50.0, 50.0, 0.0,67.1 +NA,NA,a-cure-i1,2024-25,Revere - CityLab Innovation High School,02480520, 0.0, 3.4, 1.7, 69.2, 2.6, 0.0, 23.1, 48.7, 50.4, 0.9,76.9 +NA,NA,a-cure-i1,2024-25,Revere - Garfield Elementary School,02480056, 0.8, 4.9, 4.2, 70.3, 1.3, 0.0, 18.6, 49.5, 50.5, 0.0,81.4 +NA,NA,a-cure-i1,2024-25,Revere - Garfield Middle School,02480057, 0.2, 4.6, 2.8, 68.3, 2.8, 0.0, 21.4, 52.4, 47.6, 0.0,78.6 +NA,NA,a-cure-i1,2024-25,Revere - Paul Revere,02480050, 1.2, 3.6, 4.2, 56.7, 3.0, 0.2, 31.0, 48.5, 51.5, 0.0,69.0 +NA,NA,a-cure-i1,2024-25,Revere - Revere High,02480505, 0.5, 3.2, 4.6, 67.2, 1.2, 0.0, 23.3, 47.3, 52.6, 0.1,76.7 +NA,NA,a-cure-i1,2024-25,Revere - Rumney Marsh Academy,02480014, 0.5, 3.7, 3.4, 66.1, 1.0, 0.0, 25.2, 46.5, 53.5, 0.0,74.8 +NA,NA,a-cure-i1,2024-25,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.3, 2.1, 3.7, 72.7, 1.5, 0.0, 19.7, 49.4, 50.6, 0.0,80.3 +NA,NA,a-cure-i1,2024-25,Revere - Susan B. Anthony Middle School,02480305, 0.0, 4.4, 2.8, 64.4, 1.5, 0.0, 27.0, 49.0, 51.0, 0.0,73.0 +NA,NA,a-cure-i1,2024-25,Richmond - Richmond Consolidated,02490005, 0.0, 0.6, 0.6, 4.5, 7.0, 0.0, 87.3, 50.3, 49.7, 0.0,12.700000000000003 +NA,NA,a-cure-i1,2024-25,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.3, 2.4, 2.9, 5.7, 8.1, 0.0, 80.6, 55.1, 44.2, 0.6,19.400000000000006 +NA,NA,a-cure-i1,2024-25,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.3, 0.7, 6.6, 6.9, 0.7, 84.7, 50.0, 49.7, 0.3,15.299999999999997 +NA,NA,a-cure-i1,2024-25,Rochester - Rochester Memorial,02500005, 0.0, 0.2, 0.8, 3.6, 2.3, 0.0, 93.0, 43.3, 56.7, 0.0,7.0 +NA,NA,a-cure-i1,2024-25,Rockland - John W Rogers Middle,02510305, 0.6, 2.0, 7.0, 20.7, 4.8, 0.0, 64.9, 48.6, 51.4, 0.0,35.099999999999994 +NA,NA,a-cure-i1,2024-25,Rockland - Phelps Elementary School,02510060, 0.3, 2.0, 6.3, 25.7, 3.4, 0.0, 62.3, 47.9, 52.1, 0.0,37.7 +NA,NA,a-cure-i1,2024-25,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.8, 2.1, 5.4, 22.3, 8.7, 0.0, 60.7, 47.5, 52.5, 0.0,39.3 +NA,NA,a-cure-i1,2024-25,Rockland - Rockland Senior High,02510505, 1.7, 1.9, 6.6, 21.7, 2.5, 0.2, 65.4, 50.7, 49.3, 0.0,34.599999999999994 +NA,NA,a-cure-i1,2024-25,Rockport - Rockport Elementary,02520005, 0.0, 1.1, 0.8, 6.1, 4.9, 0.0, 87.1, 44.3, 55.7, 0.0,12.900000000000006 +NA,NA,a-cure-i1,2024-25,Rockport - Rockport Middle High,02520510, 0.0, 2.2, 0.3, 2.2, 1.6, 0.3, 93.5, 49.6, 50.4, 0.0,6.5 +NA,NA,a-cure-i1,2024-25,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.9, 5.6, 11.1, 0.0, 81.5, 46.3, 53.7, 0.0,18.5 +NA,NA,a-cure-i1,2024-25,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.5, 0.4, 52.6, 40.9, 3.5, 0.0, 1.2, 44.3, 55.6, 0.1,98.8 +NA,NA,a-cure-i1,2024-25,Salem - Bates,02580003, 1.5, 1.2, 7.3, 35.6, 4.9, 0.5, 49.0, 47.8, 52.0, 0.2,51.0 +NA,NA,a-cure-i1,2024-25,Salem - Bentley Academy Innovation School,02580010, 0.3, 0.7, 7.3, 78.3, 0.7, 0.0, 12.6, 52.4, 47.6, 0.0,87.4 +NA,NA,a-cure-i1,2024-25,Salem - Carlton,02580015, 0.4, 1.6, 6.1, 32.4, 3.6, 0.4, 55.5, 50.2, 49.4, 0.4,44.5 +NA,NA,a-cure-i1,2024-25,Salem - Collins Middle,02580305, 0.2, 2.6, 7.0, 44.5, 5.4, 0.0, 40.3, 46.5, 53.5, 0.0,59.7 +NA,NA,a-cure-i1,2024-25,Salem - Horace Mann Laboratory,02580030, 0.7, 3.8, 7.5, 51.2, 2.4, 0.3, 34.1, 50.9, 49.1, 0.0,65.9 +NA,NA,a-cure-i1,2024-25,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 8.3, 52.8, 8.3, 0.0, 30.6, 52.8, 44.4, 2.8,69.4 +NA,NA,a-cure-i1,2024-25,Salem - Salem Early Childhood,02580001, 0.9, 5.7, 5.7, 45.3, 5.7, 0.0, 36.8, 45.3, 54.7, 0.0,63.2 +NA,NA,a-cure-i1,2024-25,Salem - Salem High,02580505, 0.2, 2.4, 7.8, 49.2, 4.2, 0.0, 36.2, 47.7, 51.8, 0.5,63.8 +NA,NA,a-cure-i1,2024-25,Salem - Salem Prep High School,02580515, 0.0, 0.0, 4.3, 56.5, 4.3, 0.0, 34.8, 43.5, 56.5, 0.0,65.2 +NA,NA,a-cure-i1,2024-25,Salem - Saltonstall School,02580050, 0.5, 1.0, 5.3, 53.9, 6.6, 0.0, 32.8, 47.1, 52.9, 0.0,67.2 +NA,NA,a-cure-i1,2024-25,Salem - Witchcraft Heights,02580070, 0.4, 4.0, 7.7, 40.7, 3.7, 0.4, 43.1, 43.3, 56.7, 0.0,56.9 +NA,NA,a-cure-i1,2024-25,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 4.0, 9.4, 57.1, 2.5, 0.0, 27.1, 50.4, 49.0, 0.6,72.9 +NA,NA,a-cure-i1,2024-25,Sandwich - Forestdale School,02610002, 0.2, 2.9, 1.1, 6.1, 3.6, 0.0, 86.2, 47.4, 52.6, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Sandwich - Oak Ridge,02610025, 0.3, 2.7, 1.2, 5.5, 2.8, 0.1, 87.4, 49.9, 50.1, 0.0,12.599999999999994 +NA,NA,a-cure-i1,2024-25,Sandwich - Sandwich Middle High School,02610505, 0.3, 2.7, 1.9, 6.5, 2.5, 0.2, 85.8, 50.8, 48.6, 0.6,14.200000000000003 +NA,NA,a-cure-i1,2024-25,Saugus - Belmonte STEAM Academy,02620060, 0.6, 6.4, 6.0, 32.2, 4.1, 0.1, 50.6, 45.1, 54.9, 0.0,49.4 +NA,NA,a-cure-i1,2024-25,Saugus - Saugus High,02620505, 0.7, 6.5, 8.1, 38.8, 1.5, 0.4, 44.1, 45.7, 54.3, 0.0,55.9 +NA,NA,a-cure-i1,2024-25,Saugus - Saugus Middle School,02620305, 1.0, 8.1, 6.3, 29.4, 4.1, 0.2, 51.0, 51.6, 48.4, 0.0,49.0 +NA,NA,a-cure-i1,2024-25,Saugus - Veterans Early Learning Center,02620065, 0.2, 9.0, 6.6, 33.1, 3.4, 0.0, 47.7, 46.1, 53.9, 0.0,52.3 +NA,NA,a-cure-i1,2024-25,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 2.6, 7.9, 0.0, 0.0, 89.5, 42.1, 57.9, 0.0,10.5 +NA,NA,a-cure-i1,2024-25,Scituate - Cushing Elementary,02640007, 0.0, 0.9, 0.6, 3.7, 3.7, 0.3, 90.9, 49.1, 50.9, 0.0,9.099999999999994 +NA,NA,a-cure-i1,2024-25,Scituate - Gates Middle School,02640305, 0.2, 0.2, 2.7, 2.3, 2.8, 0.0, 91.9, 48.2, 51.8, 0.0,8.099999999999994 +NA,NA,a-cure-i1,2024-25,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.9, 3.0, 3.0, 0.0, 92.0, 49.8, 50.2, 0.0,8.0 +NA,NA,a-cure-i1,2024-25,Scituate - Jenkins Elementary School,02640015, 0.0, 0.9, 2.6, 2.9, 4.7, 0.0, 88.9, 48.4, 51.6, 0.0,11.099999999999994 +NA,NA,a-cure-i1,2024-25,Scituate - Scituate High School,02640505, 0.1, 1.0, 3.3, 3.6, 3.7, 0.0, 88.3, 48.3, 51.0, 0.7,11.700000000000003 +NA,NA,a-cure-i1,2024-25,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.2, 2.6, 3.5, 0.0, 92.7, 48.6, 51.4, 0.0,7.299999999999997 +NA,NA,a-cure-i1,2024-25,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 4.2, 2.2, 7.2, 3.0, 0.0, 83.4, 48.4, 51.6, 0.0,16.599999999999994 +NA,NA,a-cure-i1,2024-25,Seekonk - George R Martin,02650007, 0.2, 6.3, 3.6, 7.9, 2.3, 0.0, 79.7, 51.2, 48.8, 0.0,20.299999999999997 +NA,NA,a-cure-i1,2024-25,Seekonk - Mildred Aitken School,02650015, 0.3, 3.1, 1.9, 7.1, 5.0, 0.0, 82.5, 47.6, 52.4, 0.0,17.5 +NA,NA,a-cure-i1,2024-25,Seekonk - Seekonk High,02650505, 0.0, 3.8, 3.0, 6.7, 3.6, 0.0, 83.0, 46.7, 52.7, 0.6,17.0 +NA,NA,a-cure-i1,2024-25,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 16.7, 0.0, 0.0, 0.0, 0.0, 83.3, 33.3, 66.7, 0.0,16.700000000000003 +NA,NA,a-cure-i1,2024-25,Sharon - Cottage Street,02660005, 0.0, 17.6, 7.6, 13.4, 13.2, 0.0, 48.3, 48.5, 51.3, 0.2,51.7 +NA,NA,a-cure-i1,2024-25,Sharon - East Elementary,02660010, 0.0, 28.6, 5.0, 9.4, 9.8, 0.0, 47.2, 47.8, 52.0, 0.2,52.8 +NA,NA,a-cure-i1,2024-25,Sharon - Heights Elementary,02660015, 0.4, 29.5, 5.7, 5.7, 7.7, 0.0, 51.0, 50.1, 49.9, 0.0,49.0 +NA,NA,a-cure-i1,2024-25,Sharon - Sharon Early Childhood Center,02660001, 0.0, 35.7, 1.8, 8.9, 5.4, 0.0, 48.2, 51.8, 48.2, 0.0,51.8 +NA,NA,a-cure-i1,2024-25,Sharon - Sharon High,02660505, 0.2, 33.8, 6.0, 5.9, 5.8, 0.0, 48.3, 48.2, 51.4, 0.3,51.7 +NA,NA,a-cure-i1,2024-25,Sharon - Sharon Middle,02660305, 0.2, 31.2, 6.9, 5.9, 7.6, 0.0, 48.2, 50.6, 49.1, 0.4,51.8 +NA,NA,a-cure-i1,2024-25,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.5, 0.9, 2.3, 10.0, 3.7, 0.0, 82.5, 40.2, 59.2, 0.6,17.5 +NA,NA,a-cure-i1,2024-25,Sherborn - Pine Hill,02690010, 0.0, 9.6, 4.0, 4.8, 6.3, 0.0, 75.3, 51.4, 48.6, 0.0,24.700000000000003 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Calvin Coolidge School,02710015, 0.3, 26.8, 7.0, 21.3, 6.6, 0.0, 38.0, 54.4, 45.6, 0.0,62.0 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Floral Street School,02710020, 1.5, 46.4, 5.3, 9.4, 6.9, 0.0, 30.5, 44.8, 55.2, 0.0,69.5 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Major Howard W. Beal School,02710005, 0.8, 36.9, 4.8, 13.6, 6.1, 0.0, 37.7, 47.7, 52.3, 0.0,62.3 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Oak Middle School,02710030, 0.5, 35.9, 5.6, 10.0, 5.3, 0.0, 42.8, 48.4, 51.5, 0.1,57.2 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Parker Road Preschool,02710040, 0.5, 36.3, 7.3, 15.5, 5.2, 0.0, 35.2, 51.8, 48.2, 0.0,64.8 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Sherwood Middle School,02710305, 0.5, 37.0, 3.9, 10.1, 6.2, 0.0, 42.3, 48.3, 51.4, 0.3,57.7 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Shrewsbury High School,02710505, 0.4, 30.9, 4.3, 11.6, 5.1, 0.0, 47.6, 50.0, 49.8, 0.2,52.4 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Spring Street School,02710035, 0.0, 30.9, 2.3, 8.6, 5.3, 0.0, 53.0, 46.4, 53.6, 0.0,47.0 +NA,NA,a-cure-i1,2024-25,Shrewsbury - Walter J. Paton School,02710025, 1.1, 19.3, 2.2, 9.7, 8.2, 0.0, 59.5, 53.5, 46.1, 0.4,40.5 +NA,NA,a-cure-i1,2024-25,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.8, 10.4, 4.8, 0.0, 84.0, 56.8, 43.2, 0.0,16.0 +NA,NA,a-cure-i1,2024-25,Silver Lake - Silver Lake Integrated Preschool,07600001, 0.0, 0.0, 1.2, 2.4, 0.0, 0.0, 96.4, 47.0, 53.0, 0.0,3.5999999999999943 +NA,NA,a-cure-i1,2024-25,Silver Lake - Silver Lake Regional High,07600505, 0.4, 0.4, 2.2, 5.5, 1.6, 0.0, 89.8, 49.1, 50.7, 0.2,10.200000000000003 +NA,NA,a-cure-i1,2024-25,Silver Lake - Silver Lake Regional Middle School,07600405, 0.4, 0.9, 2.6, 5.3, 1.1, 0.2, 89.5, 49.8, 50.2, 0.0,10.5 +NA,NA,a-cure-i1,2024-25,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.4, 1.1, 7.8, 27.0, 6.4, 0.7, 56.7, 51.4, 47.5, 1.1,43.3 +NA,NA,a-cure-i1,2024-25,Somerset - Chace Street,02730005, 0.3, 2.0, 1.3, 7.7, 3.4, 0.0, 85.2, 52.5, 47.5, 0.0,14.799999999999997 +NA,NA,a-cure-i1,2024-25,Somerset - North Elementary,02730008, 0.0, 2.5, 2.5, 5.9, 4.5, 0.2, 84.3, 49.0, 51.0, 0.0,15.700000000000003 +NA,NA,a-cure-i1,2024-25,Somerset - Somerset Middle School,02730305, 0.3, 2.3, 1.1, 5.1, 3.1, 0.0, 88.0, 47.0, 52.8, 0.2,12.0 +NA,NA,a-cure-i1,2024-25,Somerset - South,02730015, 0.8, 2.5, 2.1, 9.1, 5.4, 0.0, 80.2, 46.7, 53.3, 0.0,19.799999999999997 +NA,NA,a-cure-i1,2024-25,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.2, 2.3, 1.5, 7.3, 2.2, 0.0, 86.5, 50.1, 49.8, 0.1,13.5 +NA,NA,a-cure-i1,2024-25,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.4, 7.2, 3.8, 35.1, 8.9, 0.4, 44.3, 46.7, 53.0, 0.4,55.7 +NA,NA,a-cure-i1,2024-25,Somerville - Arthur D Healey,02740075, 0.2, 3.3, 14.5, 48.3, 4.8, 0.2, 28.6, 51.0, 48.5, 0.4,71.4 +NA,NA,a-cure-i1,2024-25,Somerville - Benjamin G Brown,02740015, 0.0, 6.4, 7.8, 6.4, 14.6, 0.5, 64.4, 55.3, 44.3, 0.5,35.599999999999994 +NA,NA,a-cure-i1,2024-25,Somerville - Capuano Early Childhood Center,02740005, 0.0, 14.0, 8.4, 35.6, 10.4, 0.0, 31.6, 40.8, 58.8, 0.4,68.4 +NA,NA,a-cure-i1,2024-25,Somerville - E Somerville Community,02740111, 0.0, 5.8, 6.3, 66.3, 3.3, 0.1, 18.2, 46.7, 53.1, 0.1,81.8 +NA,NA,a-cure-i1,2024-25,Somerville - Full Circle High School,02740510, 0.0, 0.0, 16.4, 55.2, 6.0, 0.0, 22.4, 43.3, 56.7, 0.0,77.6 +NA,NA,a-cure-i1,2024-25,Somerville - John F Kennedy,02740083, 0.2, 7.3, 3.2, 12.8, 11.2, 0.0, 65.4, 48.1, 51.5, 0.5,34.599999999999994 +NA,NA,a-cure-i1,2024-25,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 12.5, 37.5, 12.5, 0.0, 37.5, 12.5, 87.5, 0.0,62.5 +NA,NA,a-cure-i1,2024-25,Somerville - Somerville High,02740505, 0.1, 5.2, 10.2, 45.3, 4.3, 0.1, 34.8, 45.4, 53.4, 1.1,65.2 +NA,NA,a-cure-i1,2024-25,Somerville - West Somerville Neighborhood,02740115, 0.0, 7.3, 10.8, 9.8, 12.3, 0.5, 59.2, 50.4, 49.1, 0.5,40.8 +NA,NA,a-cure-i1,2024-25,Somerville - Winter Hill Community,02740120, 0.0, 6.2, 10.1, 47.9, 3.1, 0.3, 32.5, 43.0, 56.4, 0.5,67.5 +NA,NA,a-cure-i1,2024-25,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 1.6, 2.0, 18.6, 3.2, 0.0, 74.7, 51.9, 48.1, 0.0,25.299999999999997 +NA,NA,a-cure-i1,2024-25,South Hadley - Mosier,02780020, 0.3, 1.1, 1.6, 18.1, 4.9, 0.0, 74.0, 44.7, 55.3, 0.0,26.0 +NA,NA,a-cure-i1,2024-25,South Hadley - Plains Elementary,02780015, 0.0, 1.8, 2.2, 22.5, 5.2, 0.0, 68.3, 49.4, 50.6, 0.0,31.700000000000003 +NA,NA,a-cure-i1,2024-25,South Hadley - South Hadley High,02780505, 0.2, 1.5, 2.7, 18.2, 1.7, 0.0, 75.8, 48.4, 50.7, 0.8,24.200000000000003 +NA,NA,a-cure-i1,2024-25,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.2, 1.2, 5.1, 45.3, 3.8, 0.1, 43.2, 41.9, 56.9, 1.2,56.8 +NA,NA,a-cure-i1,2024-25,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.5, 9.5, 38.1, 10.6, 6.9, 0.4, 34.1, 48.1, 51.7, 0.3,65.9 +NA,NA,a-cure-i1,2024-25,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.3, 3.4, 9.5, 1.9, 0.0, 85.0, 31.2, 67.7, 1.0,15.0 +NA,NA,a-cure-i1,2024-25,Southampton - William E Norris,02750005, 0.0, 0.2, 0.0, 8.0, 2.9, 0.0, 88.8, 45.5, 54.5, 0.0,11.200000000000003 +NA,NA,a-cure-i1,2024-25,Southborough - Albert S. Woodward Memorial School,02760050, 0.3, 31.1, 1.7, 4.9, 4.9, 0.0, 57.0, 50.3, 49.7, 0.0,43.0 +NA,NA,a-cure-i1,2024-25,Southborough - Margaret A Neary,02760020, 0.0, 27.3, 1.1, 5.8, 2.9, 0.4, 62.5, 49.1, 50.9, 0.0,37.5 +NA,NA,a-cure-i1,2024-25,Southborough - Mary E Finn School,02760008, 0.0, 24.1, 2.6, 10.7, 9.6, 0.0, 53.0, 48.7, 51.3, 0.0,47.0 +NA,NA,a-cure-i1,2024-25,Southborough - P Brent Trottier,02760305, 0.2, 16.8, 0.2, 5.7, 6.7, 0.0, 70.3, 50.0, 50.0, 0.0,29.700000000000003 +NA,NA,a-cure-i1,2024-25,Southbridge - Charlton Street,02770005, 0.3, 2.1, 3.5, 64.6, 2.4, 0.0, 27.1, 50.0, 50.0, 0.0,72.9 +NA,NA,a-cure-i1,2024-25,Southbridge - Eastford Road,02770010, 0.3, 1.3, 4.3, 65.5, 2.5, 0.0, 26.2, 50.9, 49.1, 0.0,73.8 +NA,NA,a-cure-i1,2024-25,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 47.6, 9.5, 0.0, 42.9, 28.6, 71.4, 0.0,57.1 +NA,NA,a-cure-i1,2024-25,Southbridge - Southbridge High School,02770515, 0.0, 1.4, 4.5, 65.9, 0.5, 0.2, 27.4, 46.1, 53.7, 0.2,72.6 +NA,NA,a-cure-i1,2024-25,Southbridge - Southbridge Middle School,02770315, 0.8, 1.6, 3.7, 62.6, 2.4, 0.3, 28.7, 49.2, 50.8, 0.0,71.3 +NA,NA,a-cure-i1,2024-25,Southbridge - West Street,02770020, 0.0, 0.3, 4.3, 72.4, 1.2, 0.3, 21.4, 47.1, 52.9, 0.0,78.6 +NA,NA,a-cure-i1,2024-25,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 1.3, 42.3, 16.6, 5.1, 0.0, 34.8, 52.2, 46.7, 1.1,65.2 +NA,NA,a-cure-i1,2024-25,Southern Berkshire - Mt Everett Regional,07650505, 0.7, 0.4, 0.4, 11.2, 7.6, 0.0, 79.9, 46.4, 53.2, 0.4,20.099999999999994 +NA,NA,a-cure-i1,2024-25,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 3.4, 1.7, 0.0, 94.8, 50.0, 50.0, 0.0,5.200000000000003 +NA,NA,a-cure-i1,2024-25,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 54.5, 45.5, 0.0,0.0 +NA,NA,a-cure-i1,2024-25,Southern Berkshire - Undermountain,07650035, 0.4, 1.5, 0.8, 13.1, 6.2, 0.0, 78.1, 55.4, 44.6, 0.0,21.900000000000006 +NA,NA,a-cure-i1,2024-25,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.3, 1.6, 2.2, 18.3, 0.9, 0.2, 76.6, 43.7, 56.3, 0.0,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 2.1, 1.0, 7.8, 3.1, 0.0, 85.9, 46.7, 53.3, 0.0,14.099999999999994 +NA,NA,a-cure-i1,2024-25,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.3, 1.2, 1.9, 8.0, 2.2, 0.0, 86.4, 52.0, 48.0, 0.0,13.599999999999994 +NA,NA,a-cure-i1,2024-25,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.3, 1.5, 0.6, 8.3, 2.2, 0.0, 87.0, 48.8, 51.2, 0.0,13.0 +NA,NA,a-cure-i1,2024-25,Spencer-E Brookfield - David Prouty High,07670505, 0.3, 2.9, 3.6, 19.6, 5.2, 0.0, 68.3, 47.7, 51.6, 0.7,31.700000000000003 +NA,NA,a-cure-i1,2024-25,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 1.2, 2.4, 13.8, 3.6, 0.0, 78.9, 46.2, 53.8, 0.0,21.099999999999994 +NA,NA,a-cure-i1,2024-25,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 1.7, 4.1, 22.2, 2.9, 0.0, 69.2, 45.8, 54.0, 0.2,30.799999999999997 +NA,NA,a-cure-i1,2024-25,Spencer-E Brookfield - Wire Village School,07670040, 0.2, 2.3, 3.3, 25.1, 2.6, 0.0, 66.5, 48.6, 51.4, 0.0,33.5 +NA,NA,a-cure-i1,2024-25,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 19.0, 58.3, 7.2, 0.0, 15.5, 54.6, 45.4, 0.0,84.5 +NA,NA,a-cure-i1,2024-25,Springfield - Alice B Beal Elementary,02810175, 0.3, 6.8, 17.1, 56.2, 5.8, 0.0, 13.7, 44.9, 55.1, 0.0,86.3 +NA,NA,a-cure-i1,2024-25,Springfield - Arthur T Talmadge,02810165, 0.0, 4.1, 13.3, 65.8, 7.1, 0.0, 9.7, 50.0, 50.0, 0.0,90.3 +NA,NA,a-cure-i1,2024-25,Springfield - Balliet Preschool,02810003, 0.0, 2.0, 17.2, 68.7, 8.1, 0.0, 4.0, 46.5, 53.5, 0.0,96.0 +NA,NA,a-cure-i1,2024-25,Springfield - Benjamin Swan Elementary,02810085, 0.0, 1.0, 20.6, 69.3, 6.0, 0.0, 3.1, 47.9, 52.1, 0.0,96.9 +NA,NA,a-cure-i1,2024-25,Springfield - Brightwood,02810025, 0.0, 0.4, 7.7, 88.4, 1.3, 0.0, 2.2, 52.0, 48.0, 0.0,97.8 +NA,NA,a-cure-i1,2024-25,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 2.6, 23.8, 59.2, 4.5, 0.0, 9.8, 43.4, 56.6, 0.0,90.2 +NA,NA,a-cure-i1,2024-25,Springfield - Conservatory of the Arts,02810475, 0.0, 0.3, 18.2, 69.3, 1.7, 0.0, 10.5, 69.6, 30.1, 0.3,89.5 +NA,NA,a-cure-i1,2024-25,Springfield - Daniel B Brunton,02810035, 0.0, 2.9, 19.4, 50.3, 6.1, 0.3, 21.0, 51.3, 48.7, 0.0,79.0 +NA,NA,a-cure-i1,2024-25,Springfield - Early Childhood Education Center,02810001, 0.0, 0.6, 21.2, 70.9, 4.2, 0.0, 3.0, 45.5, 54.5, 0.0,97.0 +NA,NA,a-cure-i1,2024-25,Springfield - Edward P. Boland School,02810010, 0.0, 1.5, 10.4, 79.4, 3.1, 0.2, 5.5, 45.1, 54.9, 0.0,94.5 +NA,NA,a-cure-i1,2024-25,Springfield - Elias Brookings,02810030, 0.0, 0.7, 22.7, 69.7, 2.0, 0.0, 4.9, 51.0, 49.0, 0.0,95.1 +NA,NA,a-cure-i1,2024-25,Springfield - Emergence Academy,02810318, 0.3, 1.0, 29.6, 49.5, 3.9, 0.0, 15.7, 51.3, 48.4, 0.3,84.3 +NA,NA,a-cure-i1,2024-25,Springfield - Forest Park Middle,02810325, 0.4, 2.5, 21.6, 66.0, 1.4, 0.4, 7.8, 51.4, 48.6, 0.0,92.2 +NA,NA,a-cure-i1,2024-25,Springfield - Frank H Freedman,02810075, 0.4, 2.8, 15.9, 62.7, 7.1, 0.0, 11.1, 49.6, 50.4, 0.0,88.9 +NA,NA,a-cure-i1,2024-25,Springfield - Frederick Harris,02810080, 0.9, 4.6, 20.5, 54.6, 7.0, 0.0, 12.5, 50.0, 50.0, 0.0,87.5 +NA,NA,a-cure-i1,2024-25,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 19.0, 57.1, 4.8, 0.0, 19.0, 71.4, 23.8, 4.8,81.0 +NA,NA,a-cure-i1,2024-25,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 32.0, 64.0, 4.0, 0.0, 0.0, 84.0, 16.0, 0.0,100.0 +NA,NA,a-cure-i1,2024-25,Springfield - German Gerena Community School,02810195, 0.2, 0.3, 13.2, 77.9, 5.2, 0.0, 3.2, 50.6, 49.4, 0.0,96.8 +NA,NA,a-cure-i1,2024-25,Springfield - Glenwood,02810065, 0.4, 0.4, 8.0, 76.4, 6.2, 0.0, 8.7, 47.3, 52.7, 0.0,91.3 +NA,NA,a-cure-i1,2024-25,Springfield - Glickman Elementary,02810068, 0.3, 1.0, 14.5, 67.7, 5.2, 0.0, 11.3, 48.7, 51.3, 0.0,88.7 +NA,NA,a-cure-i1,2024-25,Springfield - High School Of Commerce,02810510, 0.1, 1.2, 17.6, 70.6, 2.1, 0.0, 8.4, 45.7, 53.6, 0.7,91.6 +NA,NA,a-cure-i1,2024-25,Springfield - Hiram L Dorman,02810050, 0.0, 2.5, 13.6, 71.7, 4.3, 0.0, 7.9, 48.4, 51.6, 0.0,92.1 +NA,NA,a-cure-i1,2024-25,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 11.9, 78.8, 3.2, 0.0, 6.1, 46.8, 53.2, 0.0,93.9 +NA,NA,a-cure-i1,2024-25,Springfield - Indian Orchard Elementary,02810100, 0.3, 0.5, 21.7, 63.8, 6.2, 0.0, 7.4, 48.4, 51.6, 0.0,92.6 +NA,NA,a-cure-i1,2024-25,Springfield - John F Kennedy Middle,02810328, 0.3, 0.0, 20.8, 71.0, 2.7, 0.0, 5.2, 49.7, 50.3, 0.0,94.8 +NA,NA,a-cure-i1,2024-25,Springfield - John J Duggan Academy,02810320, 0.1, 2.8, 22.8, 59.4, 3.6, 0.0, 11.2, 43.7, 56.0, 0.2,88.8 +NA,NA,a-cure-i1,2024-25,Springfield - Kensington International School,02810110, 0.4, 1.4, 20.9, 69.4, 5.0, 0.0, 2.9, 47.5, 52.5, 0.0,97.1 +NA,NA,a-cure-i1,2024-25,Springfield - Kiley Academy,02810316, 0.4, 1.9, 20.1, 61.9, 4.5, 0.0, 11.2, 49.3, 50.7, 0.0,88.8 +NA,NA,a-cure-i1,2024-25,Springfield - Kiley Prep,02810315, 0.3, 2.0, 25.5, 59.4, 3.4, 0.0, 9.4, 44.6, 55.4, 0.0,90.6 +NA,NA,a-cure-i1,2024-25,Springfield - Liberty,02810115, 0.0, 0.8, 9.7, 75.6, 2.9, 0.0, 10.9, 48.3, 51.7, 0.0,89.1 +NA,NA,a-cure-i1,2024-25,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 16.7, 16.7, 0.0, 0.0, 66.7, 0.0, 100.0, 0.0,33.3 +NA,NA,a-cure-i1,2024-25,Springfield - Lincoln,02810120, 0.0, 0.2, 10.9, 82.4, 2.1, 0.0, 4.4, 48.5, 51.5, 0.0,95.6 +NA,NA,a-cure-i1,2024-25,Springfield - Margaret C Ells,02810060, 1.4, 2.1, 17.0, 70.9, 5.0, 0.0, 3.5, 44.7, 55.3, 0.0,96.5 +NA,NA,a-cure-i1,2024-25,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.3, 7.2, 15.5, 56.9, 4.6, 0.3, 15.1, 51.6, 48.4, 0.0,84.9 +NA,NA,a-cure-i1,2024-25,Springfield - Mary M Lynch,02810140, 0.0, 1.9, 21.3, 64.4, 5.1, 0.0, 7.4, 53.7, 46.3, 0.0,92.6 +NA,NA,a-cure-i1,2024-25,Springfield - Mary M Walsh,02810155, 0.0, 0.4, 15.1, 68.1, 1.7, 0.0, 14.7, 44.8, 55.2, 0.0,85.3 +NA,NA,a-cure-i1,2024-25,Springfield - Mary O Pottenger,02810145, 0.0, 0.8, 11.5, 77.0, 2.7, 0.0, 7.9, 50.7, 49.3, 0.0,92.1 +NA,NA,a-cure-i1,2024-25,Springfield - Milton Bradley School,02810023, 0.3, 0.8, 19.0, 73.2, 3.6, 0.0, 3.1, 47.0, 53.0, 0.0,96.9 +NA,NA,a-cure-i1,2024-25,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 19.7, 73.7, 2.2, 0.0, 4.4, 44.1, 55.9, 0.0,95.6 +NA,NA,a-cure-i1,2024-25,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.1, 2.2, 16.7, 72.1, 2.3, 0.0, 6.5, 56.0, 43.9, 0.1,93.5 +NA,NA,a-cure-i1,2024-25,Springfield - Samuel Bowles,02810020, 0.9, 1.2, 14.8, 67.7, 4.3, 0.3, 10.8, 47.4, 52.6, 0.0,89.2 +NA,NA,a-cure-i1,2024-25,Springfield - South End Middle School,02810355, 0.0, 0.0, 19.6, 73.6, 3.7, 0.0, 3.1, 55.8, 44.2, 0.0,96.9 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Central High,02810500, 0.0, 2.3, 22.5, 65.6, 3.4, 0.0, 6.3, 44.5, 55.3, 0.3,93.7 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield High School,02810570, 0.0, 0.0, 20.7, 69.6, 3.0, 0.0, 6.8, 40.1, 59.9, 0.0,93.2 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.3, 19.6, 68.4, 2.8, 0.0, 7.9, 45.1, 54.6, 0.3,92.1 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 47.4, 36.8, 5.3, 0.0, 10.5, 52.6, 47.4, 0.0,89.5 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 2.1, 16.8, 66.3, 1.1, 0.0, 13.7, 37.9, 62.1, 0.0,86.3 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 6.7, 91.3, 0.7, 0.0, 1.3, 45.2, 54.8, 0.0,98.7 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 11.1, 83.3, 5.6, 0.0, 0.0, 33.3, 66.7, 0.0,100.0 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Public Day Elementary School,02810005, 3.0, 0.0, 24.2, 57.6, 6.1, 0.0, 9.1, 12.1, 87.9, 0.0,90.9 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 13.8, 69.2, 1.5, 0.0, 15.4, 27.7, 72.3, 0.0,84.6 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 16.7, 66.7, 10.0, 0.0, 6.7, 26.7, 73.3, 0.0,93.3 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Realization Academy,02810335, 0.0, 3.3, 14.6, 78.3, 1.9, 0.0, 1.9, 51.9, 48.1, 0.0,98.1 +NA,NA,a-cure-i1,2024-25,Springfield - Springfield Transition Academy,02810675, 0.0, 5.5, 17.3, 65.5, 0.0, 0.0, 11.8, 30.9, 69.1, 0.0,88.2 +NA,NA,a-cure-i1,2024-25,Springfield - STEM Middle Academy,02810350, 0.0, 2.6, 13.4, 65.4, 4.1, 0.0, 14.5, 42.0, 57.6, 0.4,85.5 +NA,NA,a-cure-i1,2024-25,Springfield - Sumner Avenue,02810160, 0.0, 3.1, 18.4, 66.7, 4.3, 0.0, 7.6, 45.5, 54.3, 0.2,92.4 +NA,NA,a-cure-i1,2024-25,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 2.9, 19.6, 64.9, 1.9, 0.0, 10.8, 54.0, 46.0, 0.0,89.2 +NA,NA,a-cure-i1,2024-25,Springfield - The Springfield Virtual School,02810705, 0.0, 0.0, 14.4, 75.2, 3.2, 0.0, 7.2, 51.2, 48.8, 0.0,92.8 +NA,NA,a-cure-i1,2024-25,Springfield - Thomas M Balliet,02810015, 0.0, 3.8, 18.2, 61.5, 7.9, 0.0, 8.6, 49.8, 50.2, 0.0,91.4 +NA,NA,a-cure-i1,2024-25,Springfield - Van Sickle Academy,02810485, 0.4, 2.3, 9.2, 78.2, 1.9, 0.0, 8.0, 50.0, 50.0, 0.0,92.0 +NA,NA,a-cure-i1,2024-25,Springfield - Van Sickle Prep,02810480, 0.0, 0.0, 19.4, 70.9, 1.9, 0.0, 7.8, 42.7, 57.3, 0.0,92.2 +NA,NA,a-cure-i1,2024-25,Springfield - Warner,02810180, 0.0, 1.3, 20.5, 64.5, 6.0, 0.0, 7.7, 51.3, 48.7, 0.0,92.3 +NA,NA,a-cure-i1,2024-25,Springfield - Washington,02810185, 0.0, 4.0, 16.7, 66.0, 4.7, 0.0, 8.6, 50.0, 50.0, 0.0,91.4 +NA,NA,a-cure-i1,2024-25,Springfield - White Street,02810190, 0.5, 2.6, 20.4, 69.6, 2.1, 0.0, 4.8, 45.5, 54.5, 0.0,95.2 +NA,NA,a-cure-i1,2024-25,Springfield - William N. DeBerry,02810045, 0.2, 0.2, 20.9, 70.4, 3.7, 0.0, 4.6, 50.5, 49.5, 0.0,95.4 +NA,NA,a-cure-i1,2024-25,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.1, 3.1, 26.2, 52.3, 6.5, 0.0, 11.8, 50.2, 49.8, 0.0,88.2 +NA,NA,a-cure-i1,2024-25,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 1.2, 20.2, 72.4, 1.9, 0.0, 4.3, 50.0, 50.0, 0.0,95.7 +NA,NA,a-cure-i1,2024-25,Stoneham - Colonial Park,02840005, 0.9, 5.7, 2.2, 7.4, 3.5, 0.0, 80.3, 47.6, 52.4, 0.0,19.700000000000003 +NA,NA,a-cure-i1,2024-25,Stoneham - Robin Hood,02840025, 0.3, 5.3, 3.4, 11.8, 6.1, 0.0, 73.2, 48.7, 51.3, 0.0,26.799999999999997 +NA,NA,a-cure-i1,2024-25,Stoneham - South,02840030, 0.6, 6.6, 5.2, 17.6, 4.6, 0.3, 65.1, 51.3, 48.4, 0.3,34.900000000000006 +NA,NA,a-cure-i1,2024-25,Stoneham - Stoneham Central Middle School,02840405, 0.0, 5.4, 3.5, 13.2, 4.2, 0.0, 73.7, 53.1, 46.9, 0.0,26.299999999999997 +NA,NA,a-cure-i1,2024-25,Stoneham - Stoneham Early Learning Center,02840002, 0.0, 8.5, 6.4, 16.0, 4.3, 0.0, 64.9, 41.5, 58.5, 0.0,35.099999999999994 +NA,NA,a-cure-i1,2024-25,Stoneham - Stoneham High,02840505, 0.3, 5.7, 4.0, 10.9, 2.5, 0.0, 76.6, 48.6, 50.3, 1.2,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Stoughton - Edwin A Jones Early Childhood Center,02850012, 1.0, 13.9, 39.6, 4.0, 6.9, 0.0, 34.7, 51.5, 48.5, 0.0,65.3 +NA,NA,a-cure-i1,2024-25,Stoughton - Helen Hansen Elementary,02850010, 0.0, 5.3, 29.8, 10.2, 6.7, 0.7, 47.4, 50.5, 49.5, 0.0,52.6 +NA,NA,a-cure-i1,2024-25,Stoughton - Joseph H Gibbons,02850025, 0.5, 3.9, 30.8, 14.1, 6.7, 0.8, 43.2, 47.0, 53.0, 0.0,56.8 +NA,NA,a-cure-i1,2024-25,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.2, 5.7, 29.3, 11.2, 6.5, 0.2, 46.9, 44.9, 55.1, 0.0,53.1 +NA,NA,a-cure-i1,2024-25,Stoughton - O'Donnell Middle School,02850405, 0.2, 5.4, 30.5, 17.0, 5.1, 0.0, 41.8, 50.1, 49.8, 0.1,58.2 +NA,NA,a-cure-i1,2024-25,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.8, 5.3, 27.2, 21.6, 5.3, 0.6, 39.2, 52.4, 47.6, 0.0,60.8 +NA,NA,a-cure-i1,2024-25,Stoughton - South Elementary,02850015, 0.0, 6.2, 27.2, 10.8, 8.2, 0.3, 47.2, 50.5, 49.5, 0.0,52.8 +NA,NA,a-cure-i1,2024-25,Stoughton - Stoughton High,02850505, 0.2, 6.0, 31.6, 15.8, 5.2, 0.5, 40.7, 50.9, 49.0, 0.1,59.3 +NA,NA,a-cure-i1,2024-25,Sturbridge - Burgess Elementary,02870005, 0.0, 2.4, 1.7, 12.5, 5.5, 0.0, 78.0, 50.5, 49.4, 0.1,22.0 +NA,NA,a-cure-i1,2024-25,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.2, 5.1, 3.2, 6.3, 4.5, 0.0, 80.7, 59.5, 39.0, 1.5,19.299999999999997 +NA,NA,a-cure-i1,2024-25,Sudbury - Ephraim Curtis Middle,02880305, 0.1, 10.9, 3.7, 5.9, 7.1, 0.1, 72.2, 50.2, 49.5, 0.2,27.799999999999997 +NA,NA,a-cure-i1,2024-25,Sudbury - General John Nixon Elementary,02880025, 0.3, 8.6, 2.4, 3.9, 12.0, 0.0, 72.8, 49.2, 50.3, 0.5,27.200000000000003 +NA,NA,a-cure-i1,2024-25,Sudbury - Israel Loring School,02880015, 0.0, 9.6, 3.5, 12.2, 6.3, 0.0, 68.3, 51.2, 48.8, 0.0,31.700000000000003 +NA,NA,a-cure-i1,2024-25,Sudbury - Josiah Haynes,02880010, 0.3, 10.6, 4.0, 5.8, 5.3, 0.0, 74.1, 47.6, 51.9, 0.5,25.900000000000006 +NA,NA,a-cure-i1,2024-25,Sudbury - Peter Noyes,02880030, 0.0, 10.6, 1.8, 5.7, 9.3, 0.0, 72.6, 47.2, 52.8, 0.0,27.400000000000006 +NA,NA,a-cure-i1,2024-25,Sunderland - Sunderland Elementary,02890005, 0.0, 6.9, 4.6, 14.4, 6.3, 0.0, 67.8, 47.1, 52.3, 0.6,32.2 +NA,NA,a-cure-i1,2024-25,Sutton - Sutton Early Learning,02900003, 0.0, 3.4, 2.8, 6.5, 4.0, 0.0, 83.3, 48.1, 51.9, 0.0,16.700000000000003 +NA,NA,a-cure-i1,2024-25,Sutton - Sutton Elementary,02900005, 0.0, 1.4, 2.1, 6.6, 4.5, 0.0, 85.4, 48.8, 51.2, 0.0,14.599999999999994 +NA,NA,a-cure-i1,2024-25,Sutton - Sutton High School,02900510, 0.0, 2.5, 2.2, 7.1, 4.6, 0.0, 83.7, 51.5, 48.2, 0.3,16.299999999999997 +NA,NA,a-cure-i1,2024-25,Sutton - Sutton Middle School,02900305, 0.0, 2.2, 0.6, 4.5, 3.2, 0.0, 89.5, 49.5, 50.5, 0.0,10.5 +NA,NA,a-cure-i1,2024-25,Swampscott - Swampscott Elementary School,02910025, 0.1, 2.5, 2.3, 15.1, 3.8, 0.3, 75.9, 50.1, 49.9, 0.0,24.099999999999994 +NA,NA,a-cure-i1,2024-25,Swampscott - Swampscott High,02910505, 0.6, 3.3, 4.7, 15.2, 3.3, 0.1, 72.9, 49.7, 50.1, 0.1,27.099999999999994 +NA,NA,a-cure-i1,2024-25,Swampscott - Swampscott Middle,02910305, 0.2, 2.9, 4.7, 13.5, 3.2, 0.0, 75.5, 45.7, 54.3, 0.0,24.5 +NA,NA,a-cure-i1,2024-25,Swansea - Elizabeth S Brown,02920006, 0.7, 0.7, 1.4, 1.8, 2.5, 0.0, 92.9, 51.6, 48.4, 0.0,7.099999999999994 +NA,NA,a-cure-i1,2024-25,Swansea - Gardner,02920015, 0.7, 1.8, 2.9, 3.3, 1.4, 0.0, 89.9, 48.2, 51.8, 0.0,10.099999999999994 +NA,NA,a-cure-i1,2024-25,Swansea - Joseph Case High,02920505, 0.6, 1.4, 1.2, 3.1, 1.9, 0.0, 91.8, 50.4, 49.4, 0.2,8.200000000000003 +NA,NA,a-cure-i1,2024-25,Swansea - Joseph Case Jr High,02920305, 0.0, 1.2, 1.6, 2.4, 2.9, 0.0, 91.8, 48.0, 52.0, 0.0,8.200000000000003 +NA,NA,a-cure-i1,2024-25,Swansea - Joseph G Luther,02920020, 0.0, 1.5, 1.0, 2.6, 2.1, 0.0, 92.8, 47.4, 52.6, 0.0,7.200000000000003 +NA,NA,a-cure-i1,2024-25,Swansea - Mark G Hoyle Elementary,02920017, 0.4, 1.7, 3.0, 3.4, 2.1, 0.0, 89.3, 47.9, 52.1, 0.0,10.700000000000003 +NA,NA,a-cure-i1,2024-25,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.7, 1.2, 6.8, 4.5, 0.0, 85.8, 51.4, 48.3, 0.3,14.200000000000003 +NA,NA,a-cure-i1,2024-25,Tantasqua - Tantasqua Regional Sr High,07700505, 0.2, 1.9, 1.3, 9.7, 2.5, 0.0, 84.5, 50.0, 49.8, 0.2,15.5 +NA,NA,a-cure-i1,2024-25,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 1.3, 2.0, 8.5, 4.6, 0.0, 83.4, 37.5, 61.8, 0.7,16.599999999999994 +NA,NA,a-cure-i1,2024-25,Taunton - Benjamin Friedman Middle,02930315, 0.4, 0.9, 20.0, 15.0, 4.7, 0.0, 59.1, 49.8, 50.2, 0.0,40.9 +NA,NA,a-cure-i1,2024-25,Taunton - East Taunton Elementary,02930010, 0.2, 1.1, 21.8, 10.1, 6.6, 0.0, 60.3, 46.1, 53.9, 0.0,39.7 +NA,NA,a-cure-i1,2024-25,Taunton - Edmund Hatch Bennett,02930007, 0.0, 1.3, 20.4, 14.1, 5.4, 0.0, 58.8, 49.2, 50.8, 0.0,41.2 +NA,NA,a-cure-i1,2024-25,Taunton - Edward F. Leddy Preschool,02930005, 0.4, 2.0, 25.7, 12.7, 4.1, 0.8, 54.3, 43.3, 56.7, 0.0,45.7 +NA,NA,a-cure-i1,2024-25,Taunton - Elizabeth Pole,02930027, 0.3, 0.9, 31.5, 15.9, 7.4, 0.5, 43.5, 50.6, 49.4, 0.0,56.5 +NA,NA,a-cure-i1,2024-25,Taunton - H H Galligan,02930057, 0.3, 1.0, 30.4, 24.1, 8.0, 0.3, 35.7, 47.9, 52.1, 0.0,64.3 +NA,NA,a-cure-i1,2024-25,Taunton - James L. Mulcahey Elementary School,02930015, 0.6, 0.8, 30.2, 15.5, 7.5, 0.6, 45.0, 51.4, 48.6, 0.0,55.0 +NA,NA,a-cure-i1,2024-25,Taunton - John F Parker Middle,02930305, 0.0, 0.6, 34.4, 17.6, 8.3, 0.4, 38.7, 49.5, 50.5, 0.0,61.3 +NA,NA,a-cure-i1,2024-25,Taunton - Joseph C Chamberlain,02930008, 0.4, 1.2, 16.9, 12.3, 6.3, 0.2, 62.7, 49.4, 50.6, 0.0,37.3 +NA,NA,a-cure-i1,2024-25,Taunton - Joseph H Martin,02930042, 0.2, 1.2, 26.0, 13.3, 6.2, 0.0, 53.2, 51.0, 49.0, 0.0,46.8 +NA,NA,a-cure-i1,2024-25,Taunton - Taunton Alternative High School,02930525, 0.0, 1.4, 21.6, 17.6, 8.1, 0.0, 51.4, 45.9, 54.1, 0.0,48.6 +NA,NA,a-cure-i1,2024-25,Taunton - Taunton High,02930505, 0.4, 1.1, 27.7, 13.4, 4.9, 0.3, 52.2, 47.9, 52.1, 0.0,47.8 +NA,NA,a-cure-i1,2024-25,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 13.8, 19.0, 6.9, 1.7, 58.6, 53.4, 46.6, 0.0,41.4 +NA,NA,a-cure-i1,2024-25,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.3, 3.0, 10.2, 27.3, 8.1, 0.2, 50.9, 58.3, 41.7, 0.0,49.1 +NA,NA,a-cure-i1,2024-25,Tewksbury - Center Elementary School,02950030, 0.0, 6.0, 5.0, 9.2, 4.1, 0.0, 75.6, 47.0, 53.0, 0.0,24.400000000000006 +NA,NA,a-cure-i1,2024-25,Tewksbury - Heath-Brook,02950010, 0.0, 7.3, 6.7, 8.0, 3.3, 0.0, 74.7, 48.7, 51.3, 0.0,25.299999999999997 +NA,NA,a-cure-i1,2024-25,Tewksbury - John F. Ryan,02950023, 0.2, 3.8, 6.8, 9.0, 2.4, 0.0, 77.8, 51.4, 48.6, 0.0,22.200000000000003 +NA,NA,a-cure-i1,2024-25,Tewksbury - John W. Wynn Middle,02950305, 0.0, 4.3, 6.1, 10.2, 0.7, 0.0, 78.7, 52.1, 47.9, 0.0,21.299999999999997 +NA,NA,a-cure-i1,2024-25,Tewksbury - L F Dewing,02950001, 0.0, 9.4, 8.9, 11.8, 4.6, 0.0, 65.3, 51.9, 48.1, 0.0,34.7 +NA,NA,a-cure-i1,2024-25,Tewksbury - Tewksbury Memorial High,02950505, 0.1, 5.0, 6.8, 9.8, 1.7, 0.0, 76.6, 51.0, 48.9, 0.1,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Tisbury - Tisbury Elementary,02960005, 1.9, 0.0, 7.7, 37.2, 4.5, 0.0, 48.7, 50.3, 49.7, 0.0,51.3 +NA,NA,a-cure-i1,2024-25,Topsfield - Proctor Elementary,02980005, 0.4, 1.6, 0.4, 4.8, 3.2, 0.0, 89.6, 53.0, 47.0, 0.0,10.400000000000006 +NA,NA,a-cure-i1,2024-25,Topsfield - Steward Elementary,02980010, 0.0, 1.7, 0.0, 4.0, 2.3, 0.0, 91.9, 47.6, 52.4, 0.0,8.099999999999994 +NA,NA,a-cure-i1,2024-25,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.2, 0.7, 3.2, 11.4, 4.1, 0.1, 80.3, 38.9, 59.7, 1.4,19.700000000000003 +NA,NA,a-cure-i1,2024-25,Triton - Newbury Elementary,07730020, 0.0, 1.7, 0.7, 5.0, 2.8, 0.2, 89.6, 47.4, 52.6, 0.0,10.400000000000006 +NA,NA,a-cure-i1,2024-25,Triton - Pine Grove,07730025, 0.5, 1.2, 0.5, 3.7, 2.1, 0.0, 92.1, 50.1, 49.9, 0.0,7.900000000000006 +NA,NA,a-cure-i1,2024-25,Triton - Salisbury Elementary,07730015, 0.3, 2.3, 3.4, 10.1, 2.6, 0.0, 81.3, 50.5, 49.5, 0.0,18.700000000000003 +NA,NA,a-cure-i1,2024-25,Triton - Triton Regional High School,07730505, 0.0, 3.5, 0.7, 5.9, 1.7, 0.2, 87.9, 46.1, 53.3, 0.6,12.099999999999994 +NA,NA,a-cure-i1,2024-25,Triton - Triton Regional Middle School,07730405, 0.3, 1.3, 3.7, 5.4, 3.0, 0.0, 86.2, 49.2, 50.8, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Truro - Truro Central,03000005, 0.0, 0.0, 9.0, 10.3, 16.7, 0.0, 64.1, 48.7, 51.3, 0.0,35.900000000000006 +NA,NA,a-cure-i1,2024-25,Tyngsborough - Tyngsborough Elementary,03010020, 0.1, 12.0, 5.7, 12.6, 5.6, 0.0, 63.9, 49.2, 50.8, 0.0,36.1 +NA,NA,a-cure-i1,2024-25,Tyngsborough - Tyngsborough High School,03010505, 0.0, 9.9, 5.9, 8.9, 5.9, 0.0, 69.4, 46.7, 53.3, 0.0,30.599999999999994 +NA,NA,a-cure-i1,2024-25,Tyngsborough - Tyngsborough Middle,03010305, 0.3, 10.6, 5.8, 10.4, 3.8, 0.0, 69.1, 42.0, 58.0, 0.0,30.900000000000006 +NA,NA,a-cure-i1,2024-25,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.2, 1.7, 50.6, 43.6, 2.5, 0.2, 1.3, 52.5, 47.5, 0.0,98.7 +NA,NA,a-cure-i1,2024-25,Up-Island Regional - Chilmark Elementary,07740010, 1.4, 2.9, 0.0, 1.4, 10.1, 0.0, 84.1, 50.7, 49.3, 0.0,15.900000000000006 +NA,NA,a-cure-i1,2024-25,Up-Island Regional - West Tisbury Elementary,07740020, 3.4, 0.0, 2.2, 16.5, 6.5, 0.0, 71.3, 43.9, 56.1, 0.0,28.700000000000003 +NA,NA,a-cure-i1,2024-25,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.8, 0.8, 2.9, 8.8, 6.2, 0.1, 80.3, 39.9, 59.7, 0.5,19.700000000000003 +NA,NA,a-cure-i1,2024-25,Uxbridge - Gateway to College,03040515, 0.0, 2.3, 2.3, 18.2, 11.4, 0.0, 65.9, 54.5, 43.2, 2.3,34.099999999999994 +NA,NA,a-cure-i1,2024-25,Uxbridge - Taft Early Learning Center,03040005, 0.4, 1.3, 1.3, 4.0, 2.7, 0.0, 90.3, 45.8, 54.2, 0.0,9.700000000000003 +NA,NA,a-cure-i1,2024-25,Uxbridge - Uxbridge High,03040505, 1.2, 1.9, 2.0, 6.6, 4.2, 0.0, 84.1, 43.2, 56.8, 0.0,15.900000000000006 +NA,NA,a-cure-i1,2024-25,Uxbridge - Whitin Intermediate,03040405, 0.2, 2.8, 0.9, 11.0, 2.6, 0.2, 82.3, 47.1, 52.9, 0.0,17.700000000000003 +NA,NA,a-cure-i1,2024-25,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.3, 1.0, 19.4, 71.1, 3.4, 0.1, 4.8, 53.2, 46.6, 0.1,95.2 +NA,NA,a-cure-i1,2024-25,Wachusett - Central Tree Middle,07750310, 0.0, 2.4, 5.7, 7.9, 2.4, 0.0, 81.6, 51.2, 48.8, 0.0,18.400000000000006 +NA,NA,a-cure-i1,2024-25,Wachusett - Chocksett Middle School,07750315, 0.0, 3.0, 3.0, 12.1, 4.2, 0.0, 77.7, 47.3, 52.7, 0.0,22.299999999999997 +NA,NA,a-cure-i1,2024-25,Wachusett - Davis Hill Elementary,07750018, 0.2, 2.3, 3.0, 7.0, 2.6, 0.0, 84.9, 43.6, 56.4, 0.0,15.099999999999994 +NA,NA,a-cure-i1,2024-25,Wachusett - Dawson,07750020, 0.2, 4.1, 2.7, 8.4, 5.1, 0.2, 79.3, 52.6, 47.4, 0.0,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Wachusett - Early Childhood Center,07750001, 0.0, 4.7, 8.7, 11.8, 2.4, 0.0, 72.4, 49.6, 50.4, 0.0,27.599999999999994 +NA,NA,a-cure-i1,2024-25,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.8, 6.8, 8.9, 3.4, 0.0, 79.1, 50.0, 50.0, 0.0,20.900000000000006 +NA,NA,a-cure-i1,2024-25,Wachusett - Houghton Elementary,07750027, 0.0, 2.5, 3.2, 14.8, 3.2, 0.0, 76.3, 47.3, 52.7, 0.0,23.700000000000003 +NA,NA,a-cure-i1,2024-25,Wachusett - Leroy E.Mayo,07750032, 0.0, 3.8, 4.7, 8.7, 3.6, 0.2, 79.0, 44.9, 55.1, 0.0,21.0 +NA,NA,a-cure-i1,2024-25,Wachusett - Mountview Middle,07750305, 0.1, 4.0, 5.4, 8.3, 3.1, 0.0, 79.0, 53.3, 46.6, 0.1,21.0 +NA,NA,a-cure-i1,2024-25,Wachusett - Naquag Elementary School,07750005, 0.0, 1.7, 5.4, 9.3, 4.0, 0.0, 79.6, 48.7, 51.3, 0.0,20.400000000000006 +NA,NA,a-cure-i1,2024-25,Wachusett - Paxton Center,07750040, 0.0, 2.7, 2.2, 8.7, 3.8, 0.2, 82.4, 54.0, 46.0, 0.0,17.599999999999994 +NA,NA,a-cure-i1,2024-25,Wachusett - Thomas Prince,07750045, 0.0, 0.3, 1.4, 4.8, 2.5, 0.0, 91.0, 45.4, 54.4, 0.3,9.0 +NA,NA,a-cure-i1,2024-25,Wachusett - Wachusett Regional High,07750505, 0.2, 3.9, 3.4, 7.3, 2.2, 0.0, 83.0, 51.7, 48.3, 0.1,17.0 +NA,NA,a-cure-i1,2024-25,Wakefield - Dolbeare,03050005, 0.0, 3.4, 1.4, 7.9, 2.0, 0.0, 85.3, 51.7, 48.3, 0.0,14.700000000000003 +NA,NA,a-cure-i1,2024-25,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 8.6, 3.9, 6.3, 4.7, 0.0, 76.6, 40.6, 59.4, 0.0,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Wakefield - Galvin Middle School,03050310, 0.1, 4.5, 3.5, 10.7, 4.2, 0.4, 76.7, 48.7, 51.2, 0.1,23.299999999999997 +NA,NA,a-cure-i1,2024-25,Wakefield - Greenwood,03050020, 0.0, 1.8, 2.2, 5.3, 5.7, 0.4, 84.6, 50.2, 49.8, 0.0,15.400000000000006 +NA,NA,a-cure-i1,2024-25,Wakefield - Wakefield Memorial High,03050505, 0.2, 3.9, 3.6, 9.5, 3.0, 0.2, 79.5, 50.1, 49.5, 0.4,20.5 +NA,NA,a-cure-i1,2024-25,Wakefield - Walton,03050040, 0.0, 1.4, 1.8, 8.3, 3.2, 0.9, 84.4, 46.8, 53.2, 0.0,15.599999999999994 +NA,NA,a-cure-i1,2024-25,Wakefield - Woodville School,03050015, 0.0, 5.0, 3.3, 10.1, 4.8, 0.7, 76.1, 49.3, 50.7, 0.0,23.900000000000006 +NA,NA,a-cure-i1,2024-25,Wales - Wales Elementary,03060005, 1.1, 0.0, 4.3, 6.5, 0.0, 0.0, 88.2, 39.8, 60.2, 0.0,11.799999999999997 +NA,NA,a-cure-i1,2024-25,Walpole - Boyden,03070010, 0.3, 2.8, 7.8, 10.1, 2.5, 0.0, 76.5, 42.5, 57.5, 0.0,23.5 +NA,NA,a-cure-i1,2024-25,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 10.8, 3.1, 3.1, 9.2, 0.0, 73.8, 43.1, 56.9, 0.0,26.200000000000003 +NA,NA,a-cure-i1,2024-25,Walpole - Elm Street School,03070005, 0.0, 6.4, 3.9, 5.9, 3.4, 0.0, 80.4, 54.6, 45.2, 0.2,19.599999999999994 +NA,NA,a-cure-i1,2024-25,Walpole - Fisher,03070015, 0.2, 13.2, 1.5, 9.5, 4.5, 0.0, 71.1, 51.6, 48.2, 0.2,28.900000000000006 +NA,NA,a-cure-i1,2024-25,Walpole - Old Post Road,03070018, 0.7, 3.7, 2.0, 11.4, 5.5, 0.0, 76.9, 47.4, 52.6, 0.0,23.099999999999994 +NA,NA,a-cure-i1,2024-25,Walpole - Walpole High,03070505, 0.4, 7.2, 5.8, 8.7, 3.3, 0.0, 74.6, 49.6, 50.2, 0.2,25.400000000000006 +NA,NA,a-cure-i1,2024-25,Walpole - Walpole Middle School,03070315, 0.4, 8.1, 4.6, 8.6, 4.2, 0.2, 73.9, 52.0, 48.0, 0.0,26.099999999999994 +NA,NA,a-cure-i1,2024-25,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 7.6, 7.4, 22.3, 4.8, 0.4, 57.5, 52.0, 47.6, 0.4,42.5 +NA,NA,a-cure-i1,2024-25,Waltham - Dual Language School,03080001, 0.0, 1.4, 2.3, 72.5, 5.4, 0.0, 18.5, 47.7, 52.3, 0.0,81.5 +NA,NA,a-cure-i1,2024-25,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.8, 4.8, 77.2, 3.5, 0.0, 10.8, 54.0, 46.0, 0.0,89.2 +NA,NA,a-cure-i1,2024-25,Waltham - James Fitzgerald Elementary School,03080060, 0.3, 5.7, 3.1, 34.6, 5.7, 0.0, 50.6, 50.0, 50.0, 0.0,49.4 +NA,NA,a-cure-i1,2024-25,Waltham - John F Kennedy Middle,03080404, 0.2, 5.4, 11.0, 33.7, 5.4, 0.0, 44.4, 47.9, 52.1, 0.0,55.6 +NA,NA,a-cure-i1,2024-25,Waltham - John W. McDevitt Middle School,03080415, 0.0, 3.7, 6.8, 62.0, 3.7, 0.2, 23.6, 47.1, 52.8, 0.2,76.4 +NA,NA,a-cure-i1,2024-25,Waltham - Northeast Elementary School,03080040, 0.2, 6.1, 11.8, 42.9, 3.8, 0.0, 35.3, 51.0, 49.0, 0.0,64.7 +NA,NA,a-cure-i1,2024-25,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 4.2, 13.4, 38.1, 5.3, 0.0, 38.9, 46.2, 53.8, 0.0,61.1 +NA,NA,a-cure-i1,2024-25,Waltham - Waltham Sr High,03080505, 0.1, 3.4, 9.0, 52.4, 2.9, 0.1, 32.2, 45.2, 54.7, 0.2,67.8 +NA,NA,a-cure-i1,2024-25,Waltham - Waltham Valor High School,03080515, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 49.0, 51.0, 0.0,98.0 +NA,NA,a-cure-i1,2024-25,Waltham - William F. Stanley Elementary School,03080005, 0.0, 7.9, 12.3, 49.6, 3.7, 0.0, 26.5, 42.0, 58.0, 0.0,73.5 +NA,NA,a-cure-i1,2024-25,Ware - Stanley M Koziol Elementary School,03090020, 0.3, 0.8, 3.3, 21.2, 6.8, 0.0, 67.7, 48.2, 51.8, 0.0,32.3 +NA,NA,a-cure-i1,2024-25,Ware - Ware Junior/Senior High School,03090505, 0.2, 0.5, 2.1, 13.2, 5.2, 0.2, 78.6, 48.2, 51.8, 0.0,21.400000000000006 +NA,NA,a-cure-i1,2024-25,Ware - Ware Middle School,03090305, 0.8, 0.4, 3.4, 12.3, 5.4, 0.0, 77.8, 50.2, 49.8, 0.0,22.200000000000003 +NA,NA,a-cure-i1,2024-25,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 5.1, 12.8, 15.4, 0.0, 66.7, 59.0, 41.0, 0.0,33.3 +NA,NA,a-cure-i1,2024-25,Wareham - Wareham Elementary School,03100017, 1.0, 0.4, 5.4, 8.9, 9.9, 0.1, 74.3, 48.2, 51.8, 0.0,25.700000000000003 +NA,NA,a-cure-i1,2024-25,Wareham - Wareham Middle,03100305, 0.9, 1.2, 9.0, 9.7, 17.4, 0.2, 61.6, 47.9, 52.1, 0.0,38.4 +NA,NA,a-cure-i1,2024-25,Wareham - Wareham Senior High,03100505, 1.7, 0.4, 10.9, 8.8, 14.6, 0.2, 63.4, 50.1, 49.7, 0.2,36.6 +NA,NA,a-cure-i1,2024-25,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 7.4, 11.1, 0.0, 81.5, 25.9, 74.1, 0.0,18.5 +NA,NA,a-cure-i1,2024-25,Watertown - Cunniff,03140015, 0.3, 6.6, 2.5, 23.8, 10.3, 0.0, 56.6, 52.2, 47.8, 0.0,43.4 +NA,NA,a-cure-i1,2024-25,Watertown - Hosmer,03140020, 0.0, 9.0, 7.1, 20.8, 11.1, 0.1, 51.8, 44.6, 55.3, 0.1,48.2 +NA,NA,a-cure-i1,2024-25,Watertown - James Russell Lowell,03140025, 0.0, 12.8, 2.6, 21.8, 8.3, 0.0, 54.5, 47.4, 52.6, 0.0,45.5 +NA,NA,a-cure-i1,2024-25,Watertown - Watertown High,03140505, 0.3, 8.0, 4.5, 24.0, 6.8, 0.0, 56.4, 48.2, 51.4, 0.4,43.6 +NA,NA,a-cure-i1,2024-25,Watertown - Watertown Middle,03140305, 0.0, 8.1, 4.1, 24.9, 8.1, 0.0, 54.9, 47.2, 52.1, 0.7,45.1 +NA,NA,a-cure-i1,2024-25,Wayland - Claypit Hill School,03150005, 0.0, 12.5, 3.2, 4.6, 7.9, 0.0, 71.7, 50.5, 49.5, 0.0,28.299999999999997 +NA,NA,a-cure-i1,2024-25,Wayland - Happy Hollow School,03150015, 0.0, 17.9, 2.4, 6.7, 8.8, 0.0, 64.2, 45.5, 54.5, 0.0,35.8 +NA,NA,a-cure-i1,2024-25,Wayland - Loker School,03150020, 0.3, 15.6, 1.7, 10.3, 7.8, 0.0, 64.3, 48.7, 51.3, 0.0,35.7 +NA,NA,a-cure-i1,2024-25,Wayland - The Children's Way Preschool,03150025, 0.0, 25.0, 1.9, 9.6, 7.7, 0.0, 55.8, 36.5, 63.5, 0.0,44.2 +NA,NA,a-cure-i1,2024-25,Wayland - Wayland High School,03150505, 0.0, 17.4, 5.9, 6.1, 6.4, 0.2, 64.0, 47.9, 51.9, 0.1,36.0 +NA,NA,a-cure-i1,2024-25,Wayland - Wayland Middle School,03150305, 0.0, 12.1, 3.9, 6.0, 6.0, 0.2, 71.8, 51.1, 48.9, 0.0,28.200000000000003 +NA,NA,a-cure-i1,2024-25,Webster - Bartlett High School,03160505, 0.2, 2.7, 9.6, 42.9, 4.2, 0.2, 40.2, 42.9, 56.1, 1.0,59.8 +NA,NA,a-cure-i1,2024-25,Webster - Park Avenue Elementary,03160015, 0.1, 2.6, 9.8, 39.3, 3.3, 0.0, 45.0, 48.0, 52.0, 0.0,55.0 +NA,NA,a-cure-i1,2024-25,Webster - Webster Middle School,03160315, 0.2, 1.9, 7.6, 39.6, 5.3, 0.0, 45.4, 51.1, 48.9, 0.0,54.6 +NA,NA,a-cure-i1,2024-25,Wellesley - Hunnewell,03170025, 0.0, 10.9, 2.4, 6.8, 9.5, 0.0, 70.4, 49.3, 50.7, 0.0,29.599999999999994 +NA,NA,a-cure-i1,2024-25,Wellesley - John D Hardy,03170020, 0.0, 31.4, 0.7, 8.6, 5.7, 0.0, 53.6, 44.6, 55.4, 0.0,46.4 +NA,NA,a-cure-i1,2024-25,Wellesley - Joseph E Fiske,03170015, 0.0, 27.7, 5.0, 8.3, 4.3, 0.0, 54.7, 45.7, 54.3, 0.0,45.3 +NA,NA,a-cure-i1,2024-25,Wellesley - Katharine Lee Bates,03170005, 0.0, 6.3, 2.4, 7.3, 8.0, 0.0, 75.9, 47.6, 52.4, 0.0,24.099999999999994 +NA,NA,a-cure-i1,2024-25,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 18.4, 2.3, 13.8, 13.8, 0.0, 51.7, 43.7, 56.3, 0.0,48.3 +NA,NA,a-cure-i1,2024-25,Wellesley - Schofield,03170045, 0.0, 15.5, 2.7, 10.0, 6.2, 0.3, 65.3, 54.6, 45.4, 0.0,34.7 +NA,NA,a-cure-i1,2024-25,Wellesley - Sprague Elementary School,03170048, 0.0, 20.1, 3.8, 11.1, 9.7, 0.0, 55.4, 44.6, 55.4, 0.0,44.6 +NA,NA,a-cure-i1,2024-25,Wellesley - Wellesley Middle,03170305, 0.1, 19.6, 4.6, 7.0, 7.9, 0.0, 60.8, 50.7, 49.3, 0.0,39.2 +NA,NA,a-cure-i1,2024-25,Wellesley - Wellesley Sr High,03170505, 0.0, 18.6, 4.7, 6.3, 7.2, 0.0, 63.2, 53.2, 46.6, 0.2,36.8 +NA,NA,a-cure-i1,2024-25,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.3, 2.6, 6.4, 12.8, 0.0, 76.9, 41.0, 59.0, 0.0,23.099999999999994 +NA,NA,a-cure-i1,2024-25,West Boylston - Major Edwards Elementary,03220005, 0.2, 3.0, 5.0, 12.1, 6.1, 0.0, 73.6, 48.1, 51.9, 0.0,26.400000000000006 +NA,NA,a-cure-i1,2024-25,West Boylston - West Boylston Junior/Senior High,03220505, 0.2, 2.8, 3.9, 13.7, 4.8, 0.4, 74.2, 51.6, 48.4, 0.0,25.799999999999997 +NA,NA,a-cure-i1,2024-25,West Bridgewater - Howard School,03230305, 0.0, 0.6, 9.9, 9.3, 5.7, 0.0, 74.6, 47.5, 52.5, 0.0,25.400000000000006 +NA,NA,a-cure-i1,2024-25,West Bridgewater - Rose L Macdonald,03230003, 0.7, 1.7, 9.5, 10.8, 3.4, 0.0, 74.0, 46.6, 53.4, 0.0,26.0 +NA,NA,a-cure-i1,2024-25,West Bridgewater - Spring Street School,03230005, 0.9, 3.6, 7.1, 8.9, 3.6, 0.0, 75.9, 47.3, 52.7, 0.0,24.099999999999994 +NA,NA,a-cure-i1,2024-25,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.2, 1.0, 10.7, 8.5, 5.2, 0.2, 74.3, 50.5, 49.5, 0.0,25.700000000000003 +NA,NA,a-cure-i1,2024-25,West Springfield - John Ashley,03320005, 0.0, 5.4, 3.4, 34.5, 4.1, 0.0, 52.7, 57.4, 42.6, 0.0,47.3 +NA,NA,a-cure-i1,2024-25,West Springfield - John R Fausey,03320010, 0.0, 5.5, 3.7, 25.7, 5.7, 0.0, 59.3, 47.4, 52.6, 0.0,40.7 +NA,NA,a-cure-i1,2024-25,West Springfield - Memorial,03320025, 0.0, 6.9, 6.9, 42.9, 6.3, 0.0, 37.0, 40.7, 59.3, 0.0,63.0 +NA,NA,a-cure-i1,2024-25,West Springfield - Mittineague,03320030, 0.0, 3.6, 5.5, 30.9, 2.7, 0.0, 57.3, 52.7, 47.3, 0.0,42.7 +NA,NA,a-cure-i1,2024-25,West Springfield - Philip G Coburn,03320007, 0.1, 8.3, 8.2, 26.9, 7.0, 0.1, 49.4, 49.1, 50.9, 0.0,50.6 +NA,NA,a-cure-i1,2024-25,West Springfield - Tatham,03320040, 0.0, 2.5, 6.1, 13.0, 6.5, 0.0, 71.8, 49.5, 50.5, 0.0,28.200000000000003 +NA,NA,a-cure-i1,2024-25,West Springfield - West Springfield High,03320505, 0.0, 8.4, 5.6, 21.2, 5.1, 0.1, 59.5, 47.1, 52.0, 0.9,40.5 +NA,NA,a-cure-i1,2024-25,West Springfield - West Springfield Middle,03320305, 0.0, 6.9, 4.5, 22.9, 4.5, 0.1, 61.1, 51.7, 48.2, 0.1,38.9 +NA,NA,a-cure-i1,2024-25,Westborough - Annie E Fales,03210010, 0.3, 35.7, 2.6, 7.2, 5.2, 0.0, 48.9, 48.2, 51.8, 0.0,51.1 +NA,NA,a-cure-i1,2024-25,Westborough - Elsie A Hastings Elementary,03210025, 0.6, 33.7, 1.9, 19.7, 4.8, 0.0, 39.3, 47.9, 52.1, 0.0,60.7 +NA,NA,a-cure-i1,2024-25,Westborough - J Harding Armstrong,03210005, 1.5, 29.7, 4.3, 11.5, 6.1, 0.0, 46.8, 50.4, 49.6, 0.0,53.2 +NA,NA,a-cure-i1,2024-25,Westborough - Mill Pond School,03210045, 0.4, 36.2, 3.6, 11.4, 3.1, 0.1, 45.2, 48.6, 51.3, 0.1,54.8 +NA,NA,a-cure-i1,2024-25,Westborough - Sarah W Gibbons Middle,03210305, 0.2, 37.0, 3.3, 13.8, 3.6, 0.0, 42.1, 51.6, 48.4, 0.0,57.9 +NA,NA,a-cure-i1,2024-25,Westborough - Westborough High,03210505, 0.2, 33.7, 3.6, 9.3, 2.6, 0.0, 50.5, 48.5, 51.3, 0.2,49.5 +NA,NA,a-cure-i1,2024-25,Westfield - Abner Gibbs,03250020, 0.0, 6.6, 0.0, 25.5, 3.1, 0.5, 64.3, 47.4, 52.6, 0.0,35.7 +NA,NA,a-cure-i1,2024-25,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 3.1, 0.6, 14.8, 4.3, 0.0, 77.2, 42.0, 58.0, 0.0,22.799999999999997 +NA,NA,a-cure-i1,2024-25,Westfield - Franklin Ave,03250015, 0.0, 2.3, 4.0, 44.3, 8.0, 0.0, 41.5, 47.2, 52.8, 0.0,58.5 +NA,NA,a-cure-i1,2024-25,Westfield - Highland,03250025, 0.0, 2.6, 0.3, 10.5, 4.3, 0.0, 82.3, 52.8, 47.2, 0.0,17.700000000000003 +NA,NA,a-cure-i1,2024-25,Westfield - Munger Hill,03250033, 0.0, 2.8, 1.3, 9.7, 6.6, 0.0, 79.7, 45.3, 54.7, 0.0,20.299999999999997 +NA,NA,a-cure-i1,2024-25,Westfield - Paper Mill,03250036, 0.0, 2.9, 2.2, 23.7, 7.1, 0.0, 64.1, 48.4, 51.6, 0.0,35.900000000000006 +NA,NA,a-cure-i1,2024-25,Westfield - Southampton Road,03250040, 0.0, 1.9, 1.6, 21.0, 6.1, 0.0, 69.4, 48.4, 51.6, 0.0,30.599999999999994 +NA,NA,a-cure-i1,2024-25,Westfield - Westfield High,03250505, 0.2, 3.2, 2.4, 22.1, 4.3, 0.1, 67.7, 53.5, 46.3, 0.2,32.3 +NA,NA,a-cure-i1,2024-25,Westfield - Westfield Intermediate School,03250075, 0.0, 3.8, 1.5, 21.4, 5.1, 0.0, 68.2, 49.1, 50.9, 0.0,31.799999999999997 +NA,NA,a-cure-i1,2024-25,Westfield - Westfield Middle School,03250310, 0.1, 2.1, 2.7, 20.0, 2.7, 0.1, 72.3, 51.6, 48.4, 0.0,27.700000000000003 +NA,NA,a-cure-i1,2024-25,Westfield - Westfield Technical Academy,03250605, 0.0, 1.1, 1.6, 15.3, 2.2, 0.0, 79.9, 32.3, 67.7, 0.0,20.099999999999994 +NA,NA,a-cure-i1,2024-25,Westford - Abbot Elementary,03260004, 0.3, 22.6, 1.3, 2.4, 1.1, 0.0, 72.2, 48.5, 51.5, 0.0,27.799999999999997 +NA,NA,a-cure-i1,2024-25,Westford - Blanchard Middle,03260310, 0.2, 37.0, 2.0, 4.1, 0.4, 0.0, 56.4, 49.2, 50.6, 0.2,43.6 +NA,NA,a-cure-i1,2024-25,Westford - Col John Robinson,03260025, 0.0, 35.0, 2.9, 4.9, 5.8, 0.0, 51.4, 51.2, 48.8, 0.0,48.6 +NA,NA,a-cure-i1,2024-25,Westford - Day Elementary,03260007, 0.0, 40.1, 5.0, 7.0, 0.7, 0.3, 46.8, 46.5, 53.2, 0.3,53.2 +NA,NA,a-cure-i1,2024-25,Westford - John A. Crisafulli Elementary School,03260045, 0.3, 30.7, 2.6, 6.1, 2.3, 0.0, 57.9, 48.0, 52.0, 0.0,42.1 +NA,NA,a-cure-i1,2024-25,Westford - Nabnasset,03260015, 0.3, 22.9, 1.7, 4.1, 3.8, 0.0, 67.2, 51.3, 48.7, 0.0,32.8 +NA,NA,a-cure-i1,2024-25,Westford - Rita E. Miller Elementary School,03260055, 0.4, 43.8, 3.9, 10.0, 2.5, 0.0, 39.5, 40.9, 59.1, 0.0,60.5 +NA,NA,a-cure-i1,2024-25,Westford - Stony Brook School,03260330, 0.2, 29.3, 1.5, 3.1, 1.1, 0.2, 64.7, 47.6, 52.4, 0.0,35.3 +NA,NA,a-cure-i1,2024-25,Westford - Westford Academy,03260505, 0.4, 34.4, 2.7, 3.5, 0.7, 0.1, 58.3, 51.3, 48.5, 0.3,41.7 +NA,NA,a-cure-i1,2024-25,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 7.4, 2.1, 0.0, 90.5, 40.0, 60.0, 0.0,9.5 +NA,NA,a-cure-i1,2024-25,Weston - Country,03300010, 0.0, 23.7, 3.6, 5.6, 7.7, 0.0, 59.5, 49.4, 50.6, 0.0,40.5 +NA,NA,a-cure-i1,2024-25,Weston - Field Elementary School,03300012, 0.0, 19.9, 5.4, 6.6, 6.6, 0.0, 61.5, 52.7, 47.3, 0.0,38.5 +NA,NA,a-cure-i1,2024-25,Weston - Weston High,03300505, 0.0, 24.9, 5.5, 6.8, 7.4, 0.0, 55.3, 46.2, 53.8, 0.0,44.7 +NA,NA,a-cure-i1,2024-25,Weston - Weston Middle,03300305, 0.0, 27.1, 6.0, 7.8, 5.1, 0.2, 53.9, 50.3, 49.4, 0.2,46.1 +NA,NA,a-cure-i1,2024-25,Weston - Woodland,03300015, 0.0, 17.7, 5.7, 7.7, 3.7, 0.0, 65.2, 49.8, 50.2, 0.0,34.8 +NA,NA,a-cure-i1,2024-25,Westport - Alice A Macomber,03310015, 0.0, 1.8, 0.6, 3.1, 3.7, 0.0, 90.8, 50.3, 49.7, 0.0,9.200000000000003 +NA,NA,a-cure-i1,2024-25,Westport - Westport Elementary,03310030, 0.0, 0.9, 1.5, 6.9, 3.5, 0.2, 87.0, 52.5, 47.3, 0.2,13.0 +NA,NA,a-cure-i1,2024-25,Westport - Westport Middle-High School,03310515, 0.2, 0.8, 1.0, 4.7, 3.4, 0.0, 89.9, 47.4, 52.4, 0.2,10.099999999999994 +NA,NA,a-cure-i1,2024-25,Westwood - Downey,03350012, 0.0, 21.8, 0.4, 5.5, 6.6, 0.4, 65.3, 48.3, 51.7, 0.0,34.7 +NA,NA,a-cure-i1,2024-25,Westwood - E W Thurston Middle,03350305, 0.2, 14.8, 2.0, 6.2, 7.2, 0.0, 69.7, 47.1, 52.9, 0.0,30.299999999999997 +NA,NA,a-cure-i1,2024-25,Westwood - Martha Jones,03350017, 0.0, 9.8, 0.0, 3.3, 7.6, 0.0, 79.3, 46.2, 53.8, 0.0,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Westwood - Pine Hill Elementary School,03350030, 0.0, 12.5, 3.8, 10.6, 6.6, 0.2, 66.4, 46.7, 53.3, 0.0,33.599999999999994 +NA,NA,a-cure-i1,2024-25,Westwood - Westwood High,03350505, 0.0, 12.8, 1.9, 7.9, 3.8, 0.1, 73.5, 48.6, 51.1, 0.2,26.5 +NA,NA,a-cure-i1,2024-25,Westwood - Westwood Integrated Preschool,03350050, 0.0, 25.0, 0.0, 4.5, 9.1, 0.0, 61.4, 38.6, 61.4, 0.0,38.6 +NA,NA,a-cure-i1,2024-25,Westwood - William E Sheehan,03350025, 0.0, 9.4, 0.4, 6.5, 7.2, 0.0, 76.6, 45.3, 54.7, 0.0,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Weymouth - Academy Avenue,03360005, 0.0, 3.6, 10.1, 16.2, 5.9, 0.3, 63.9, 48.5, 51.5, 0.0,36.1 +NA,NA,a-cure-i1,2024-25,Weymouth - Frederick C Murphy,03360050, 0.0, 4.0, 6.9, 18.6, 6.2, 0.0, 64.2, 49.3, 50.7, 0.0,35.8 +NA,NA,a-cure-i1,2024-25,Weymouth - Lawrence W Pingree,03360065, 0.4, 5.6, 3.8, 13.5, 5.3, 0.0, 71.4, 55.3, 44.7, 0.0,28.599999999999994 +NA,NA,a-cure-i1,2024-25,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 6.4, 8.7, 16.9, 6.0, 0.1, 61.9, 50.2, 49.8, 0.0,38.1 +NA,NA,a-cure-i1,2024-25,Weymouth - Ralph Talbot,03360085, 0.3, 7.0, 8.3, 11.7, 5.7, 0.0, 67.0, 45.7, 54.3, 0.0,33.0 +NA,NA,a-cure-i1,2024-25,Weymouth - Thomas V Nash,03360060, 0.0, 6.5, 6.1, 8.0, 8.0, 0.0, 71.5, 47.9, 52.1, 0.0,28.5 +NA,NA,a-cure-i1,2024-25,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.5, 12.3, 3.7, 12.6, 7.6, 0.0, 63.3, 47.2, 52.8, 0.0,36.7 +NA,NA,a-cure-i1,2024-25,Weymouth - Wessagusset,03360110, 0.0, 9.1, 8.5, 7.6, 7.0, 0.0, 67.8, 48.6, 51.4, 0.0,32.2 +NA,NA,a-cure-i1,2024-25,Weymouth - Weymouth Early Childhood Center,03360003, 0.9, 11.3, 11.3, 10.4, 9.9, 0.0, 56.3, 44.1, 55.9, 0.0,43.7 +NA,NA,a-cure-i1,2024-25,Weymouth - Weymouth High School,03360505, 0.2, 6.4, 9.2, 15.2, 4.3, 0.1, 64.6, 52.2, 47.6, 0.2,35.400000000000006 +NA,NA,a-cure-i1,2024-25,Weymouth - William Seach,03360080, 0.3, 6.5, 19.4, 27.2, 5.9, 0.0, 40.9, 50.0, 50.0, 0.0,59.1 +NA,NA,a-cure-i1,2024-25,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.8, 3.8, 1.5, 0.0, 94.0, 48.1, 51.9, 0.0,6.0 +NA,NA,a-cure-i1,2024-25,Whitman-Hanson - Hanson Middle School,07800315, 0.2, 0.9, 2.0, 6.3, 2.3, 0.2, 88.0, 51.4, 48.6, 0.0,12.0 +NA,NA,a-cure-i1,2024-25,Whitman-Hanson - Indian Head,07800035, 0.2, 0.8, 2.8, 4.9, 4.9, 0.2, 86.2, 43.7, 56.3, 0.0,13.799999999999997 +NA,NA,a-cure-i1,2024-25,Whitman-Hanson - John H Duval,07800030, 0.5, 1.6, 8.8, 19.5, 4.0, 0.0, 65.6, 46.5, 53.5, 0.0,34.400000000000006 +NA,NA,a-cure-i1,2024-25,Whitman-Hanson - Louise A Conley,07800010, 0.0, 3.7, 7.6, 11.9, 4.5, 0.0, 72.3, 51.2, 48.8, 0.0,27.700000000000003 +NA,NA,a-cure-i1,2024-25,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 1.8, 5.3, 10.5, 4.4, 0.0, 78.1, 37.7, 62.3, 0.0,21.900000000000006 +NA,NA,a-cure-i1,2024-25,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.3, 1.7, 6.8, 9.7, 2.9, 0.1, 78.4, 52.9, 47.1, 0.0,21.599999999999994 +NA,NA,a-cure-i1,2024-25,Whitman-Hanson - Whitman Middle,07800310, 1.2, 2.2, 5.6, 12.3, 3.4, 0.0, 75.2, 49.0, 51.0, 0.0,24.799999999999997 +NA,NA,a-cure-i1,2024-25,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.2, 1.7, 3.0, 30.2, 4.7, 0.1, 60.2, 42.3, 56.8, 0.9,39.8 +NA,NA,a-cure-i1,2024-25,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 8.1, 0.0, 0.0, 91.9, 45.9, 54.1, 0.0,8.099999999999994 +NA,NA,a-cure-i1,2024-25,Wilmington - Boutwell,03420005, 0.0, 4.7, 2.3, 9.4, 3.9, 0.0, 79.7, 47.7, 52.3, 0.0,20.299999999999997 +NA,NA,a-cure-i1,2024-25,Wilmington - North Intermediate,03420060, 0.4, 4.9, 1.6, 5.7, 4.1, 0.0, 83.3, 43.9, 56.1, 0.0,16.700000000000003 +NA,NA,a-cure-i1,2024-25,Wilmington - Shawsheen Elementary,03420025, 0.0, 7.9, 1.6, 5.9, 5.9, 0.0, 78.6, 51.3, 48.7, 0.0,21.400000000000006 +NA,NA,a-cure-i1,2024-25,Wilmington - West Intermediate,03420080, 0.3, 9.7, 1.6, 5.8, 4.5, 0.0, 78.0, 49.2, 50.8, 0.0,22.0 +NA,NA,a-cure-i1,2024-25,Wilmington - Wilmington High,03420505, 0.0, 8.6, 1.6, 7.1, 3.4, 0.0, 79.3, 51.4, 48.5, 0.2,20.700000000000003 +NA,NA,a-cure-i1,2024-25,Wilmington - Wilmington Middle School,03420330, 0.0, 7.3, 1.7, 5.8, 3.5, 0.0, 81.8, 50.0, 50.0, 0.0,18.200000000000003 +NA,NA,a-cure-i1,2024-25,Wilmington - Woburn Street,03420020, 0.3, 6.0, 3.3, 9.2, 4.6, 0.0, 76.6, 45.4, 54.6, 0.0,23.400000000000006 +NA,NA,a-cure-i1,2024-25,Winchendon - Memorial,03430040, 0.0, 1.5, 1.9, 11.6, 6.0, 0.0, 79.1, 48.9, 51.1, 0.0,20.900000000000006 +NA,NA,a-cure-i1,2024-25,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 100.0, 0.0,0.0 +NA,NA,a-cure-i1,2024-25,Winchendon - Murdock High School,03430515, 0.0, 3.1, 2.7, 13.7, 2.0, 0.0, 78.5, 41.8, 57.4, 0.8,21.5 +NA,NA,a-cure-i1,2024-25,Winchendon - Murdock Middle School,03430315, 0.0, 1.8, 2.1, 10.0, 3.2, 0.4, 82.6, 44.1, 55.2, 0.7,17.400000000000006 +NA,NA,a-cure-i1,2024-25,Winchendon - Toy Town Elementary,03430050, 0.3, 0.3, 1.4, 11.3, 4.8, 0.3, 81.5, 49.7, 50.3, 0.0,18.5 +NA,NA,a-cure-i1,2024-25,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 1.1, 2.2, 8.9, 5.6, 0.0, 82.2, 43.3, 56.7, 0.0,17.799999999999997 +NA,NA,a-cure-i1,2024-25,Winchester - Ambrose Elementary,03440045, 0.0, 9.5, 0.5, 3.5, 7.0, 0.0, 79.4, 54.0, 46.0, 0.0,20.599999999999994 +NA,NA,a-cure-i1,2024-25,Winchester - Lincoln Elementary,03440005, 0.0, 12.6, 0.6, 3.6, 8.7, 0.0, 74.6, 49.4, 50.6, 0.0,25.400000000000006 +NA,NA,a-cure-i1,2024-25,Winchester - Lynch Elementary,03440020, 0.0, 28.9, 2.1, 4.5, 8.7, 0.0, 55.9, 41.8, 58.2, 0.0,44.1 +NA,NA,a-cure-i1,2024-25,Winchester - McCall Middle,03440305, 0.1, 21.2, 1.1, 3.5, 8.7, 0.0, 65.4, 49.1, 50.8, 0.1,34.599999999999994 +NA,NA,a-cure-i1,2024-25,Winchester - Muraco Elementary,03440040, 0.3, 25.0, 2.6, 6.3, 6.5, 0.0, 59.4, 54.0, 45.7, 0.3,40.6 +NA,NA,a-cure-i1,2024-25,Winchester - Vinson-Owen Elementary,03440025, 0.0, 24.5, 0.5, 2.5, 7.9, 0.0, 64.6, 50.1, 49.9, 0.0,35.400000000000006 +NA,NA,a-cure-i1,2024-25,Winchester - Winchester High School,03440505, 0.1, 21.2, 2.4, 5.3, 6.7, 0.0, 64.3, 51.4, 48.4, 0.1,35.7 +NA,NA,a-cure-i1,2024-25,Winthrop - Arthur T. Cummings Elementary School,03460020, 2.1, 0.4, 2.6, 0.4, 0.0, 0.0, 94.4, 48.4, 51.6, 0.0,5.599999999999994 +NA,NA,a-cure-i1,2024-25,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.8, 1.2, 3.3, 0.0, 0.0, 0.0, 93.6, 48.7, 51.3, 0.0,6.400000000000006 +NA,NA,a-cure-i1,2024-25,Winthrop - Winthrop High School,03460505, 4.6, 1.1, 3.5, 0.4, 0.0, 0.2, 90.3, 51.6, 48.4, 0.0,9.700000000000003 +NA,NA,a-cure-i1,2024-25,Winthrop - Winthrop Middle School,03460305, 2.1, 0.0, 4.3, 0.0, 0.0, 0.5, 93.2, 53.1, 46.9, 0.0,6.799999999999997 +NA,NA,a-cure-i1,2024-25,Woburn - Clyde Reeves,03470040, 1.8, 8.4, 7.3, 14.6, 4.0, 0.2, 63.6, 46.8, 53.0, 0.2,36.4 +NA,NA,a-cure-i1,2024-25,Woburn - Daniel L Joyce Middle School,03470410, 1.8, 3.1, 8.8, 13.2, 4.2, 0.0, 69.0, 51.2, 48.4, 0.4,31.0 +NA,NA,a-cure-i1,2024-25,Woburn - Goodyear Elementary School,03470005, 0.9, 8.8, 9.7, 26.4, 3.4, 0.0, 50.9, 51.1, 48.9, 0.0,49.1 +NA,NA,a-cure-i1,2024-25,Woburn - Hurld-Wyman Elementary School,03470020, 1.0, 5.5, 5.0, 14.4, 4.1, 0.2, 69.9, 46.2, 53.8, 0.0,30.099999999999994 +NA,NA,a-cure-i1,2024-25,Woburn - John F Kennedy Middle School,03470405, 1.2, 7.9, 8.4, 17.1, 3.1, 0.0, 62.4, 48.8, 51.2, 0.0,37.6 +NA,NA,a-cure-i1,2024-25,Woburn - Linscott-Rumford,03470025, 0.0, 13.4, 9.1, 16.7, 3.3, 0.5, 56.9, 46.4, 53.6, 0.0,43.1 +NA,NA,a-cure-i1,2024-25,Woburn - Malcolm White,03470055, 3.7, 3.7, 7.4, 27.9, 5.0, 0.0, 52.3, 53.3, 46.4, 0.3,47.7 +NA,NA,a-cure-i1,2024-25,Woburn - Mary D Altavesta,03470065, 1.6, 8.5, 14.5, 23.0, 4.8, 0.0, 47.6, 48.0, 52.0, 0.0,52.4 +NA,NA,a-cure-i1,2024-25,Woburn - Shamrock,03470043, 2.1, 6.3, 13.7, 21.5, 4.9, 0.0, 51.4, 44.7, 55.3, 0.0,48.6 +NA,NA,a-cure-i1,2024-25,Woburn - Woburn High,03470505, 1.0, 5.3, 11.3, 19.1, 4.0, 0.2, 59.3, 52.6, 47.4, 0.0,40.7 +NA,NA,a-cure-i1,2024-25,Worcester - Belmont Street Community,03480020, 0.5, 7.0, 19.7, 50.1, 3.6, 0.0, 19.2, 48.6, 51.4, 0.0,80.8 +NA,NA,a-cure-i1,2024-25,Worcester - Burncoat Middle School,03480405, 0.0, 6.3, 18.8, 45.6, 4.3, 0.0, 25.1, 49.6, 50.3, 0.1,74.9 +NA,NA,a-cure-i1,2024-25,Worcester - Burncoat Senior High,03480503, 0.0, 4.8, 20.2, 41.9, 4.4, 0.1, 28.5, 52.6, 47.3, 0.2,71.5 +NA,NA,a-cure-i1,2024-25,Worcester - Burncoat Street,03480035, 0.0, 2.7, 14.3, 52.9, 1.8, 0.0, 28.3, 48.4, 51.6, 0.0,71.7 +NA,NA,a-cure-i1,2024-25,Worcester - Canterbury,03480045, 0.0, 9.4, 14.3, 59.3, 3.0, 0.0, 14.0, 50.2, 49.8, 0.0,86.0 +NA,NA,a-cure-i1,2024-25,Worcester - Chandler Elementary Community,03480050, 0.2, 8.7, 13.2, 61.9, 2.5, 0.0, 13.4, 50.2, 49.8, 0.0,86.6 +NA,NA,a-cure-i1,2024-25,Worcester - City View,03480053, 0.2, 2.4, 24.6, 49.8, 5.2, 0.0, 17.9, 50.4, 49.6, 0.0,82.1 +NA,NA,a-cure-i1,2024-25,Worcester - Claremont Academy,03480350, 0.2, 5.7, 10.3, 74.7, 1.3, 0.6, 7.2, 48.3, 51.7, 0.0,92.8 +NA,NA,a-cure-i1,2024-25,Worcester - Clark St Community,03480055, 0.0, 6.5, 19.4, 55.8, 4.3, 0.0, 14.0, 49.3, 50.7, 0.0,86.0 +NA,NA,a-cure-i1,2024-25,Worcester - Columbus Park,03480060, 0.0, 5.8, 14.2, 58.8, 3.4, 0.0, 17.8, 48.0, 52.0, 0.0,82.2 +NA,NA,a-cure-i1,2024-25,Worcester - Doherty Memorial High,03480512, 0.1, 5.9, 17.4, 35.5, 5.7, 0.0, 35.3, 47.4, 52.6, 0.0,64.7 +NA,NA,a-cure-i1,2024-25,Worcester - Elm Park Community,03480095, 0.4, 5.9, 16.9, 58.2, 2.3, 0.0, 16.3, 47.5, 52.5, 0.0,83.7 +NA,NA,a-cure-i1,2024-25,Worcester - Flagg Street,03480090, 0.2, 4.9, 5.3, 13.3, 6.8, 0.0, 69.4, 48.8, 51.0, 0.2,30.599999999999994 +NA,NA,a-cure-i1,2024-25,Worcester - Forest Grove Middle,03480415, 0.2, 6.3, 15.4, 42.3, 4.1, 0.1, 31.6, 47.6, 52.3, 0.1,68.4 +NA,NA,a-cure-i1,2024-25,Worcester - Francis J McGrath Elementary,03480177, 0.5, 4.0, 15.0, 49.0, 3.5, 0.5, 27.5, 45.5, 54.5, 0.0,72.5 +NA,NA,a-cure-i1,2024-25,Worcester - Gates Lane,03480110, 0.4, 11.9, 16.3, 44.2, 6.6, 0.4, 20.3, 40.8, 59.2, 0.0,79.7 +NA,NA,a-cure-i1,2024-25,Worcester - Goddard School/Science Technical,03480100, 0.8, 9.7, 14.2, 61.0, 3.1, 0.0, 11.1, 49.0, 51.0, 0.0,88.9 +NA,NA,a-cure-i1,2024-25,Worcester - Grafton Street,03480115, 0.3, 5.2, 18.1, 49.7, 2.1, 0.0, 24.6, 49.7, 50.3, 0.0,75.4 +NA,NA,a-cure-i1,2024-25,Worcester - Head Start,03480002, 0.0, 4.3, 28.7, 51.6, 0.9, 0.3, 14.3, 52.1, 47.9, 0.0,85.7 +NA,NA,a-cure-i1,2024-25,Worcester - Heard Street,03480136, 0.0, 8.2, 17.1, 32.2, 4.9, 0.0, 37.6, 52.2, 47.8, 0.0,62.4 +NA,NA,a-cure-i1,2024-25,Worcester - Jacob Hiatt Magnet,03480140, 0.3, 4.1, 30.2, 47.1, 3.8, 0.0, 14.4, 53.4, 46.6, 0.0,85.6 +NA,NA,a-cure-i1,2024-25,Worcester - Lake View,03480145, 0.4, 9.2, 21.1, 31.0, 2.8, 0.4, 35.2, 48.6, 51.4, 0.0,64.8 +NA,NA,a-cure-i1,2024-25,Worcester - Lincoln Street,03480160, 0.6, 7.9, 24.9, 41.8, 6.8, 0.0, 18.1, 48.6, 51.4, 0.0,81.9 +NA,NA,a-cure-i1,2024-25,Worcester - May Street,03480175, 0.0, 7.7, 15.8, 27.7, 9.0, 0.0, 39.7, 46.8, 53.2, 0.0,60.3 +NA,NA,a-cure-i1,2024-25,Worcester - Midland Street,03480185, 0.0, 9.2, 8.4, 22.5, 7.2, 0.0, 52.6, 42.6, 57.0, 0.4,47.4 +NA,NA,a-cure-i1,2024-25,Worcester - Nelson Place,03480200, 0.0, 7.4, 17.6, 25.4, 5.5, 0.0, 44.1, 41.4, 58.6, 0.0,55.9 +NA,NA,a-cure-i1,2024-25,Worcester - Norrback Avenue,03480202, 0.2, 2.4, 29.0, 36.3, 3.8, 0.0, 28.4, 45.4, 54.6, 0.0,71.6 +NA,NA,a-cure-i1,2024-25,Worcester - North High,03480515, 0.2, 5.3, 23.3, 50.9, 3.2, 0.0, 17.1, 48.1, 51.6, 0.3,82.9 +NA,NA,a-cure-i1,2024-25,Worcester - Quinsigamond,03480210, 0.4, 5.4, 20.1, 50.8, 2.2, 0.0, 21.1, 47.3, 52.7, 0.0,78.9 +NA,NA,a-cure-i1,2024-25,Worcester - Rice Square,03480215, 0.4, 10.0, 25.9, 38.6, 4.4, 0.0, 20.7, 54.2, 45.8, 0.0,79.3 +NA,NA,a-cure-i1,2024-25,Worcester - Roosevelt,03480220, 0.2, 5.8, 28.6, 32.1, 4.8, 0.2, 28.3, 44.4, 55.6, 0.0,71.7 +NA,NA,a-cure-i1,2024-25,Worcester - South High Community,03480520, 0.0, 9.3, 19.9, 44.0, 4.3, 0.0, 22.5, 48.3, 51.7, 0.0,77.5 +NA,NA,a-cure-i1,2024-25,Worcester - Sullivan Middle,03480423, 0.2, 8.7, 14.8, 49.1, 4.3, 0.0, 22.9, 49.0, 51.0, 0.0,77.1 +NA,NA,a-cure-i1,2024-25,Worcester - Tatnuck,03480230, 0.3, 4.0, 18.9, 30.6, 5.6, 0.0, 40.7, 49.2, 50.8, 0.0,59.3 +NA,NA,a-cure-i1,2024-25,Worcester - Thorndyke Road,03480235, 0.0, 4.1, 16.0, 43.6, 2.5, 0.0, 33.9, 50.8, 49.2, 0.0,66.1 +NA,NA,a-cure-i1,2024-25,Worcester - Union Hill School,03480240, 0.3, 1.6, 16.7, 66.0, 2.4, 0.0, 13.0, 48.3, 51.7, 0.0,87.0 +NA,NA,a-cure-i1,2024-25,Worcester - University Pk Campus School,03480285, 0.4, 9.0, 12.9, 63.9, 3.9, 0.0, 9.9, 44.6, 55.4, 0.0,90.1 +NA,NA,a-cure-i1,2024-25,Worcester - Vernon Hill School,03480280, 0.0, 3.6, 20.8, 53.9, 4.0, 0.0, 17.7, 45.3, 54.7, 0.0,82.3 +NA,NA,a-cure-i1,2024-25,Worcester - Wawecus Road School,03480026, 0.0, 7.7, 14.8, 35.5, 8.4, 0.0, 33.5, 52.3, 47.7, 0.0,66.5 +NA,NA,a-cure-i1,2024-25,Worcester - West Tatnuck,03480260, 0.0, 7.9, 14.3, 21.6, 7.3, 0.0, 49.0, 45.2, 54.8, 0.0,51.0 +NA,NA,a-cure-i1,2024-25,Worcester - Woodland Academy,03480030, 0.4, 4.1, 12.4, 70.1, 2.7, 0.2, 10.0, 49.4, 50.6, 0.0,90.0 +NA,NA,a-cure-i1,2024-25,Worcester - Worcester Academic Center for Transition (ACT),03480290, 2.0, 0.0, 14.3, 46.9, 6.1, 0.0, 30.6, 10.2, 89.8, 0.0,69.4 +NA,NA,a-cure-i1,2024-25,Worcester - Worcester Alternative High School,03480525, 0.0, 0.0, 8.3, 66.7, 13.9, 0.0, 11.1, 33.3, 66.7, 0.0,88.9 +NA,NA,a-cure-i1,2024-25,Worcester - Worcester Arts Magnet School,03480225, 0.3, 10.8, 22.0, 26.9, 2.7, 0.0, 37.4, 50.0, 50.0, 0.0,62.6 +NA,NA,a-cure-i1,2024-25,Worcester - Worcester Dual Language Magnet School,03480052, 0.0, 1.0, 4.4, 76.7, 2.9, 0.0, 15.0, 51.6, 48.4, 0.0,85.0 +NA,NA,a-cure-i1,2024-25,Worcester - Worcester East Middle,03480420, 0.4, 5.7, 20.4, 57.2, 2.9, 0.0, 13.4, 46.5, 53.5, 0.0,86.6 +NA,NA,a-cure-i1,2024-25,Worcester - Worcester Technical High,03480605, 0.3, 6.2, 20.6, 42.6, 3.3, 0.0, 27.0, 51.6, 48.4, 0.0,73.0 +NA,NA,a-cure-i1,2024-25,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 1.0, 27.3, 43.8, 2.6, 0.0, 25.3, 46.4, 53.6, 0.0,74.7 +NA,NA,a-cure-i1,2024-25,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 1.3, 5.3, 3.9, 0.0, 89.5, 47.4, 51.3, 1.3,10.5 +NA,NA,a-cure-i1,2024-25,Wrentham - Charles E Roderick,03500010, 0.3, 3.1, 1.7, 7.3, 5.6, 0.3, 81.8, 51.8, 48.2, 0.0,18.200000000000003 +NA,NA,a-cure-i1,2024-25,Wrentham - Delaney,03500003, 0.8, 3.8, 2.2, 7.2, 4.0, 0.2, 81.9, 45.9, 54.1, 0.0,18.099999999999994 +1.3984108967082862,1.4,a-cure-i1,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.4, 3.0, 56.8, 23.3, 4.6, 0.1, 11.9, 54.4, 45.6, 0.0,88.1,7.7 +1,1,a-cure-i1,2023-24,Abington - Abington Early Education Program,00010001, 1.3, 7.7, 5.1, 9.0, 5.1, 0.0, 71.8, 38.5, 61.5, 0.0,28.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Abington - Abington High,00010505, 0.0, 2.1, 6.2, 17.5, 1.6, 0.2, 72.4, 44.7, 54.9, 0.4,27.599999999999994,2.4 +3.627530364372469,3.63,a-cure-i1,2023-24,Abington - Abington Middle School,00010405, 0.6, 2.4, 6.3, 13.1, 2.4, 0.0, 75.3, 50.3, 49.4, 0.3,24.700000000000003,5.6 +1,1,a-cure-i1,2023-24,Abington - Beaver Brook Elementary,00010020, 0.4, 2.8, 5.5, 16.8, 3.8, 0.2, 70.6, 48.0, 52.0, 0.0,29.400000000000006,3.9 +3.767918088737202,3.77,a-cure-i1,2023-24,Abington - Woodsdale Elementary School,00010015, 0.6, 2.0, 7.1, 15.6, 4.0, 0.0, 70.7, 51.7, 48.0, 0.3,29.299999999999997,6.9 +6.926118626430802,5,a-cure-i1,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.2, 0.0, 64.3, 28.6, 3.0, 0.0, 3.9, 47.7, 52.3, 0.0,96.1,41.6 +1,1,a-cure-i1,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.3, 37.8, 3.2, 8.1, 3.3, 0.2, 47.1, 47.5, 52.0, 0.5,52.9,4.199999999999999 +1.847422680412371,1.85,a-cure-i1,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.2, 29.0, 3.2, 9.3, 6.9, 0.0, 51.5, 48.5, 50.9, 0.6,48.5,5.6 +1,1,a-cure-i1,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 14.5, 2.5, 11.3, 9.3, 0.0, 62.4, 48.6, 51.4, 0.0,37.6,1.4 +1,1,a-cure-i1,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.9, 36.7, 6.4, 8.3, 7.3, 0.0, 40.4, 35.8, 64.2, 0.0,59.6,0.0 +2.0869565217391304,2.09,a-cure-i1,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 56.4, 2.9, 7.7, 6.5, 0.0, 26.4, 47.7, 52.3, 0.0,73.6,9.6 +1,1,a-cure-i1,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 10.4, 3.4, 12.9, 5.4, 0.0, 67.8, 47.6, 52.4, 0.0,32.2,3.9 +1,1,a-cure-i1,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 16.6, 2.2, 8.2, 7.9, 0.0, 65.1, 50.7, 49.3, 0.0,34.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 56.5, 1.7, 6.2, 7.3, 0.0, 28.4, 48.3, 51.7, 0.0,71.6,3.1 +2.4201680672268906,2.42,a-cure-i1,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 33.5, 2.0, 7.3, 4.9, 0.0, 52.4, 50.2, 49.4, 0.4,47.6,7.2 +1,1,a-cure-i1,2023-24,Acushnet - Acushnet Elementary School,00030025, 0.8, 0.4, 1.4, 7.7, 2.5, 0.0, 87.2, 45.1, 54.9, 0.0,12.799999999999997,2.9 +1,1,a-cure-i1,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.5, 1.0, 1.0, 4.5, 3.8, 0.0, 89.3, 50.7, 49.3, 0.0,10.700000000000003,3.5 +5.2825396825396815,5,a-cure-i1,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.1, 10.6, 2.7, 11.0, 7.0, 0.1, 68.5, 46.0, 53.0, 1.0,31.5,10.399999999999999 +1,1,a-cure-i1,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, 4.0, 3.3, 18.0, 2.0, 0.0, 72.7, 36.7, 63.3, 0.0,27.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Agawam - Agawam High,00050505, 0.0, 4.0, 3.0, 11.0, 2.9, 0.0, 79.0, 45.5, 53.9, 0.6,21.0,2.0 +1,1,a-cure-i1,2023-24,Agawam - Agawam Junior High,00050405, 0.2, 2.4, 2.7, 10.3, 2.4, 0.2, 81.9, 47.0, 53.0, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Agawam - Benjamin J Phelps,00050020, 0.3, 4.2, 2.6, 9.4, 3.6, 0.0, 79.9, 48.1, 51.9, 0.0,20.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Agawam - Clifford M Granger,00050010, 0.6, 2.3, 0.6, 18.1, 2.0, 0.0, 76.5, 49.6, 50.4, 0.0,23.5,0.0 +1,1,a-cure-i1,2023-24,Agawam - James Clark School,00050030, 0.3, 4.3, 2.0, 15.8, 3.0, 0.0, 74.6, 45.2, 54.8, 0.0,25.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 3.6, 2.4, 11.5, 2.6, 0.2, 79.8, 48.4, 51.6, 0.0,20.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.0, 2.1, 2.8, 14.7, 3.5, 0.0, 76.8, 56.1, 43.9, 0.0,23.200000000000003,0.0 +5.685785536159601,5,a-cure-i1,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.7, 0.6, 14.8, 60.1, 4.0, 0.0, 19.8, 52.9, 47.1, 0.0,80.2,28.500000000000004 +5.773195876288658,5,a-cure-i1,2023-24,Amesbury - Amesbury High,00070505, 0.2, 1.9, 1.7, 11.4, 4.1, 0.0, 80.6, 48.6, 51.4, 0.0,19.400000000000006,7.0 +1,1,a-cure-i1,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 9.8, 11.8, 0.0, 78.4, 49.0, 51.0, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Amesbury - Amesbury Middle,00070013, 0.2, 1.2, 2.2, 11.3, 4.6, 0.0, 80.5, 45.9, 54.1, 0.0,19.5,2.7 +1,1,a-cure-i1,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.3, 0.0, 2.0, 13.3, 3.0, 0.3, 81.2, 49.5, 50.5, 0.0,18.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Amesbury - Shay Elementary,00070005, 0.2, 0.4, 2.3, 12.5, 2.7, 0.0, 81.9, 48.0, 52.0, 0.0,18.099999999999994,0.0 +2.3771428571428572,2.38,a-cure-i1,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.0, 12.3, 11.0, 20.6, 8.3, 0.3, 47.5, 51.8, 46.6, 1.5,52.5,7.8 +7.717314487632509,5,a-cure-i1,2023-24,Amherst - Fort River Elementary,00080020, 0.3, 10.1, 6.6, 34.1, 5.5, 0.0, 43.4, 44.8, 55.2, 0.0,56.6,27.3 +13.050279329608939,5,a-cure-i1,2023-24,Amherst - Wildwood Elementary,00080050, 0.3, 13.8, 14.5, 18.0, 7.1, 0.0, 46.3, 50.2, 48.9, 1.0,53.7,43.800000000000004 +7.479518072289156,5,a-cure-i1,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 8.6, 6.8, 18.0, 8.2, 0.0, 58.5, 47.1, 50.4, 2.5,41.5,19.4 +9.020134228187919,5,a-cure-i1,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.5, 11.9, 10.0, 16.8, 5.1, 0.3, 55.3, 45.5, 53.4, 1.1,44.7,25.2 +5.04812834224599,5,a-cure-i1,2023-24,Andover - Andover High,00090505, 0.2, 21.5, 3.0, 9.3, 3.2, 0.1, 62.6, 49.8, 50.1, 0.1,37.4,11.8 +1,1,a-cure-i1,2023-24,Andover - Andover West Middle,00090310, 0.0, 18.7, 2.8, 10.1, 2.0, 0.0, 66.3, 52.9, 46.9, 0.2,33.7,2.8 +1,1,a-cure-i1,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 8.0, 1.0, 10.3, 6.3, 0.0, 74.3, 50.2, 49.8, 0.0,25.700000000000003,0.0 +9.326633165829143,5,a-cure-i1,2023-24,Andover - Doherty Middle,00090305, 0.0, 8.4, 1.7, 5.4, 4.3, 0.0, 80.1, 48.7, 51.1, 0.2,19.900000000000006,11.6 +1,1,a-cure-i1,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.6, 22.5, 3.3, 9.0, 7.2, 0.0, 57.5, 45.2, 54.8, 0.0,42.5,0.0 +1,1,a-cure-i1,2023-24,Andover - High Plain Elementary,00090004, 0.0, 27.0, 3.9, 13.8, 6.8, 0.2, 48.3, 49.3, 50.7, 0.0,51.7,4.2 +3.686635944700461,3.69,a-cure-i1,2023-24,Andover - Shawsheen School,00090005, 0.0, 15.7, 6.0, 12.0, 9.6, 0.0, 56.6, 41.0, 59.0, 0.0,43.4,10.0 +1,1,a-cure-i1,2023-24,Andover - South Elementary,00090020, 0.0, 18.5, 1.2, 6.3, 7.2, 0.0, 66.9, 45.4, 54.6, 0.0,33.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Andover - West Elementary,00090025, 0.2, 16.6, 4.1, 8.8, 6.2, 0.0, 64.1, 47.4, 52.6, 0.0,35.900000000000006,1.7 +2.3170254403131114,2.32,a-cure-i1,2023-24,Andover - Wood Hill Middle School,00090350, 0.3, 30.8, 3.3, 12.4, 4.2, 0.0, 48.9, 41.7, 58.3, 0.0,51.1,7.4 +6.6476578411405285,5,a-cure-i1,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.7, 2.3, 14.5, 25.6, 5.9, 0.2, 50.9, 46.3, 53.3, 0.3,49.1,20.4 +4.931506849315068,4.93,a-cure-i1,2023-24,Arlington - Arlington High,00100505, 0.1, 10.6, 3.2, 8.8, 6.4, 0.1, 70.8, 49.0, 49.2, 1.7,29.200000000000003,9.0 +4.1337386018237074,4.13,a-cure-i1,2023-24,Arlington - Brackett,00100010, 0.0, 11.1, 1.2, 5.7, 14.9, 0.0, 67.1, 46.1, 53.7, 0.2,32.900000000000006,8.5 +5.552941176470589,5,a-cure-i1,2023-24,Arlington - Cyrus E Dallin,00100025, 0.0, 14.4, 1.2, 7.1, 11.2, 0.0, 66.0, 52.3, 47.4, 0.2,34.0,11.8 +1,1,a-cure-i1,2023-24,Arlington - Gibbs School,00100305, 0.0, 10.3, 3.2, 7.3, 10.7, 0.0, 68.6, 52.4, 46.8, 0.9,31.400000000000006,2.5999999999999996 +1,1,a-cure-i1,2023-24,Arlington - Hardy,00100030, 0.0, 13.8, 2.9, 6.8, 12.0, 0.0, 64.5, 48.6, 51.2, 0.3,35.5,4.6 +1,1,a-cure-i1,2023-24,Arlington - John A Bishop,00100005, 0.0, 11.3, 2.3, 6.9, 12.5, 0.0, 67.0, 49.9, 50.1, 0.0,33.0,0.6 +3.1067961165048543,3.11,a-cure-i1,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 19.7, 3.0, 7.8, 10.8, 0.0, 58.8, 46.9, 52.6, 0.5,41.2,8.0 +1,1,a-cure-i1,2023-24,Arlington - Menotomy Preschool,00100038, 1.3, 19.0, 2.5, 8.9, 17.7, 0.0, 50.6, 40.5, 59.5, 0.0,49.4,0.0 +5.718032786885246,5,a-cure-i1,2023-24,Arlington - Ottoson Middle,00100410, 0.0, 14.0, 3.3, 7.9, 5.1, 0.2, 69.5, 49.0, 49.9, 1.1,30.5,10.9 +5.9335038363171355,5,a-cure-i1,2023-24,Arlington - Peirce,00100045, 0.0, 16.1, 6.3, 10.4, 6.3, 0.0, 60.9, 44.8, 54.9, 0.3,39.1,14.5 +1,1,a-cure-i1,2023-24,Arlington - Thompson,00100050, 0.2, 13.0, 5.4, 9.0, 11.7, 0.0, 60.7, 50.6, 49.2, 0.2,39.3,0.5 +7.999999999999997,5,a-cure-i1,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.8, 2.0, 6.5, 2.8, 0.0, 87.8, 51.2, 48.6, 0.2,12.200000000000003,6.1 +1,1,a-cure-i1,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 2.6, 4.1, 2.1, 0.0, 91.3, 51.3, 48.7, 0.0,8.700000000000003,0.0 +7.5354838709677425,5,a-cure-i1,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.2, 1.4, 1.4, 8.7, 3.8, 0.0, 84.5, 46.4, 51.9, 1.7,15.5,7.300000000000001 +1,1,a-cure-i1,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.6, 1.1, 8.2, 2.6, 0.0, 87.5, 49.7, 49.9, 0.4,12.5,3.0 +1,1,a-cure-i1,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.7, 1.5, 6.4, 2.9, 0.0, 88.5, 51.0, 48.8, 0.2,11.5,0.0 +1,1,a-cure-i1,2023-24,Ashland - Ashland High,00140505, 0.7, 13.4, 2.6, 17.1, 2.8, 0.0, 63.3, 49.4, 50.5, 0.1,36.7,1.7 +1,1,a-cure-i1,2023-24,Ashland - Ashland Middle,00140405, 0.0, 16.2, 3.4, 19.6, 4.0, 0.0, 56.8, 48.5, 51.4, 0.1,43.2,4.2 +1,1,a-cure-i1,2023-24,Ashland - David Mindess,00140015, 0.1, 20.4, 3.0, 19.6, 3.9, 0.1, 52.8, 44.8, 55.0, 0.1,47.2,4.5 +1,1,a-cure-i1,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.2, 22.9, 2.6, 19.5, 3.9, 0.0, 50.9, 48.9, 51.1, 0.0,49.1,2.2 +1,1,a-cure-i1,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 31.6, 1.3, 17.1, 3.9, 0.0, 46.1, 39.5, 60.5, 0.0,53.9,0.0 +1,1,a-cure-i1,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.4, 0.3, 2.5, 29.9, 3.5, 0.0, 63.5, 46.9, 52.7, 0.4,36.5,4.4 +1,1,a-cure-i1,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.8, 2.3, 13.0, 4.9, 0.0, 78.1, 47.3, 52.5, 0.2,21.900000000000006,3.0 +1,1,a-cure-i1,2023-24,Athol-Royalston - Athol High,06150505, 0.2, 1.9, 4.1, 19.6, 1.9, 0.0, 72.2, 44.9, 55.1, 0.0,27.799999999999997,3.5 +1,1,a-cure-i1,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.6, 1.5, 16.6, 3.9, 0.0, 77.3, 48.4, 51.6, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.7, 6.1, 3.4, 0.0, 89.9, 44.6, 55.4, 0.0,10.099999999999994,0.0 +2.7555555555555555,2.76,a-cure-i1,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.2, 2.1, 6.9, 19.5, 7.2, 0.1, 64.0, 52.1, 47.8, 0.1,36.0,6.2 +1,1,a-cure-i1,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.6, 4.0, 7.4, 17.5, 4.9, 0.3, 65.3, 46.4, 53.6, 0.0,34.7,4.6 +1,1,a-cure-i1,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 4.4, 11.8, 14.7, 10.3, 0.0, 58.8, 52.9, 45.6, 1.5,41.2,1.5 +3.103274559193955,3.1,a-cure-i1,2023-24,Attleboro - Attleboro High,00160505, 0.2, 4.7, 10.2, 18.0, 6.4, 0.1, 60.3, 46.5, 53.1, 0.4,39.7,7.700000000000001 +1,1,a-cure-i1,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 3.2, 6.5, 9.7, 3.2, 0.0, 77.4, 9.7, 90.3, 0.0,22.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.3, 2.6, 11.1, 19.7, 6.5, 0.0, 59.7, 49.6, 50.4, 0.0,40.3,2.6 +1,1,a-cure-i1,2023-24,Attleboro - Early Learning Center,00160008, 0.9, 3.5, 16.4, 18.1, 3.1, 0.0, 58.0, 42.0, 58.0, 0.0,42.0,0.0 +1,1,a-cure-i1,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 7.2, 8.4, 18.4, 6.5, 0.0, 59.6, 45.5, 54.5, 0.0,40.4,0.0 +1,1,a-cure-i1,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 3.5, 7.4, 21.0, 9.0, 0.2, 58.9, 49.0, 51.0, 0.0,41.1,4.2 +1,1,a-cure-i1,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0.5, 5.2, 10.2, 22.0, 6.4, 0.0, 55.7, 46.4, 53.4, 0.2,44.3,3.3 +1,1,a-cure-i1,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.2, 5.2, 9.0, 14.0, 7.1, 0.2, 64.3, 44.7, 55.1, 0.2,35.7,0.0 +1,1,a-cure-i1,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.5, 3.2, 10.2, 19.8, 7.0, 0.3, 59.0, 49.3, 50.7, 0.0,41.0,0.0 +1,1,a-cure-i1,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 5.7, 6.9, 17.8, 8.8, 0.2, 60.7, 50.7, 49.1, 0.2,39.3,3.1 +1,1,a-cure-i1,2023-24,Auburn - Auburn Middle,00170305, 0.0, 4.3, 3.2, 12.4, 3.5, 0.0, 76.5, 48.4, 51.6, 0.0,23.5,2.4 +1,1,a-cure-i1,2023-24,Auburn - Auburn Senior High,00170505, 0.0, 6.9, 5.3, 11.3, 2.5, 0.0, 74.1, 50.6, 49.3, 0.1,25.900000000000006,1.7 +1,1,a-cure-i1,2023-24,Auburn - Bryn Mawr,00170010, 0.0, 4.3, 5.1, 15.2, 1.6, 0.4, 73.5, 47.5, 52.5, 0.0,26.5,0.0 +1,1,a-cure-i1,2023-24,Auburn - Pakachoag School,00170025, 0.8, 4.1, 6.1, 15.6, 2.9, 0.0, 70.5, 45.9, 54.1, 0.0,29.5,0.0 +1,1,a-cure-i1,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.4, 3.0, 1.8, 11.8, 2.5, 0.2, 80.4, 49.4, 50.6, 0.0,19.599999999999994,0.0 +2.876132930513595,2.88,a-cure-i1,2023-24,Avon - Avon Middle High School,00180510, 0.7, 4.4, 40.9, 14.7, 5.4, 0.0, 33.8, 47.5, 52.2, 0.2,66.2,11.9 +2.3208191126279862,2.32,a-cure-i1,2023-24,Avon - Ralph D Butler,00180010, 0.3, 4.0, 32.4, 14.2, 7.7, 0.0, 41.4, 48.8, 51.2, 0.0,58.6,8.5 +3.1351351351351355,3.14,a-cure-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.0, 3.9, 6.3, 15.5, 2.4, 0.5, 70.4, 43.4, 56.1, 0.5,29.599999999999994,5.8 +4.879432624113474,4.88,a-cure-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.5, 3.2, 4.5, 14.2, 5.5, 0.3, 71.8, 48.8, 51.2, 0.0,28.200000000000003,8.6 +1,1,a-cure-i1,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.8, 2.2, 5.9, 11.2, 3.9, 0.0, 75.8, 44.4, 55.6, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.4, 6.1, 6.5, 12.6, 8.3, 0.0, 66.1, 47.2, 52.8, 0.0,33.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 1.9, 10.0, 50.8, 7.8, 0.0, 29.4, 48.2, 51.8, 0.0,70.6,0.0 +3.1999999999999997,3.2,a-cure-i1,2023-24,Barnstable - Barnstable High,00200505, 0.6, 1.8, 10.5, 29.7, 5.9, 0.1, 51.5, 46.9, 52.7, 0.4,48.5,9.7 +1,1,a-cure-i1,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, 2.7, 10.0, 29.4, 7.8, 0.0, 50.1, 48.2, 51.5, 0.3,49.9,2.1 +2.0826446280991737,2.08,a-cure-i1,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.6, 2.1, 9.1, 28.2, 8.5, 0.0, 51.6, 50.1, 49.9, 0.0,48.4,6.300000000000001 +3.045317220543807,3.05,a-cure-i1,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 1.9, 6.5, 16.2, 8.5, 0.0, 66.9, 41.2, 58.5, 0.4,33.099999999999994,6.3 +1,1,a-cure-i1,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 4.6, 10.5, 34.6, 11.8, 0.0, 38.6, 37.9, 62.1, 0.0,61.4,0.0 +3.1959026888604356,3.2,a-cure-i1,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.6, 1.8, 13.2, 55.0, 7.6, 0.0, 21.9, 48.2, 51.8, 0.0,78.1,15.6 +1,1,a-cure-i1,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 3.2, 3.6, 20.9, 14.2, 0.0, 58.1, 43.1, 56.9, 0.0,41.9,0.0 +1,1,a-cure-i1,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 1.5, 4.3, 14.0, 10.8, 0.0, 69.4, 44.9, 55.1, 0.0,30.599999999999994,0.0 +9.808049535603715,5,a-cure-i1,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.7, 24.4, 70.0, 1.0, 0.7, 3.1, 51.7, 48.3, 0.0,96.9,59.400000000000006 +2.5633074935400515,2.56,a-cure-i1,2023-24,Bedford - Bedford High,00230505, 0.0, 17.6, 7.0, 10.2, 3.9, 0.0, 61.3, 48.8, 50.7, 0.5,38.7,6.2 +1,1,a-cure-i1,2023-24,Bedford - John Glenn Middle,00230305, 0.0, 21.6, 8.0, 6.7, 7.5, 0.0, 56.2, 52.3, 47.7, 0.0,43.8,2.4 +3.4310722100656457,3.43,a-cure-i1,2023-24,Bedford - Lt Eleazer Davis,00230010, 0.0, 22.2, 8.0, 5.7, 9.8, 0.0, 54.3, 47.6, 52.4, 0.0,45.7,9.8 +3.3488372093023253,3.35,a-cure-i1,2023-24,Bedford - Lt Job Lane School,00230012, 0.0, 25.4, 6.3, 7.9, 7.5, 0.2, 52.7, 43.6, 56.4, 0.0,47.3,9.899999999999999 +1,1,a-cure-i1,2023-24,Belchertown - Belchertown High,00240505, 0.0, 1.5, 1.8, 7.6, 3.5, 0.3, 85.2, 51.8, 47.3, 0.8,14.799999999999997,4.2 +1,1,a-cure-i1,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.2, 1.6, 0.6, 9.6, 4.3, 0.0, 83.6, 50.7, 49.3, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Belchertown - Cold Spring,00240005, 0.0, 3.2, 0.0, 11.1, 4.2, 0.0, 81.5, 50.8, 49.2, 0.0,18.5,0.0 +1,1,a-cure-i1,2023-24,Belchertown - Jabish Middle School,00240025, 0.3, 1.8, 2.1, 6.6, 3.6, 0.0, 85.6, 49.8, 50.2, 0.0,14.400000000000006,3.5 +1,1,a-cure-i1,2023-24,Belchertown - Swift River Elementary,00240018, 0.4, 1.1, 1.1, 10.7, 5.3, 0.0, 81.4, 48.3, 51.7, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 7.3, 4.6, 11.9, 2.8, 0.0, 73.4, 40.4, 59.6, 0.0,26.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Bellingham - Bellingham High School,00250505, 0.4, 3.7, 2.3, 10.7, 2.8, 0.0, 80.1, 48.9, 51.1, 0.0,19.900000000000006,1.8 +1,1,a-cure-i1,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.0, 2.2, 14.0, 3.0, 1.0, 77.7, 49.9, 50.1, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.3, 3.0, 3.0, 15.6, 4.3, 0.0, 73.8, 51.0, 49.0, 0.0,26.200000000000003,0.0 +25.14285714285713,5,a-cure-i1,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 7.7, 0.0, 0.0, 92.3, 61.5, 38.5, 0.0,7.700000000000003,12.1 +1,1,a-cure-i1,2023-24,Bellingham - Stall Brook,00250025, 0.0, 1.4, 2.3, 18.8, 3.8, 0.0, 73.7, 46.0, 54.0, 0.0,26.299999999999997,0.0 +6.12853470437018,5,a-cure-i1,2023-24,Belmont - Belmont High,00260505, 0.1, 22.0, 3.8, 6.0, 6.8, 0.1, 61.1, 49.8, 49.5, 0.7,38.9,14.9 +7.336585365853659,5,a-cure-i1,2023-24,Belmont - Belmont Middle School,00260315, 0.2, 22.4, 4.8, 3.5, 10.1, 0.2, 59.0, 48.6, 50.3, 1.1,41.0,18.8 +4.058394160583942,4.06,a-cure-i1,2023-24,Belmont - Daniel Butler,00260015, 0.0, 32.1, 2.2, 11.2, 9.3, 0.0, 45.2, 49.8, 49.8, 0.3,54.8,13.900000000000002 +2.4293193717277486,2.43,a-cure-i1,2023-24,Belmont - Mary Lee Burbank,00260010, 0.0, 24.5, 3.4, 4.3, 5.9, 0.0, 61.8, 50.0, 49.1, 0.9,38.2,5.8 +1,1,a-cure-i1,2023-24,Belmont - Roger E Wellington,00260035, 0.0, 18.4, 7.1, 6.1, 9.4, 0.0, 59.0, 49.4, 50.2, 0.4,41.0,4.8 +4.0262582056892775,4.03,a-cure-i1,2023-24,Belmont - Winn Brook,00260005, 0.0, 28.7, 4.1, 4.3, 8.6, 0.0, 54.3, 53.3, 46.7, 0.0,45.7,11.5 +5.12621359223301,5,a-cure-i1,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 24.8, 3.4, 3.9, 9.1, 0.0, 58.8, 46.8, 52.7, 0.4,41.2,13.200000000000001 +9.88671472708548,5,a-cure-i1,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 2.6, 82.9, 6.6, 4.9, 0.0, 2.9, 51.2, 48.6, 0.3,97.1,60.0 +1,1,a-cure-i1,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 1.0, 23.1, 3.3, 6.5, 5.3, 0.8, 60.0, 49.9, 50.1, 0.0,40.0,4.0 +1,1,a-cure-i1,2023-24,Berkley - Berkley Community School,00270010, 0.2, 0.0, 1.9, 4.0, 5.3, 0.0, 88.5, 49.3, 50.7, 0.0,11.5,3.1 +1,1,a-cure-i1,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 1.1, 0.5, 2.2, 3.6, 0.3, 92.3, 51.8, 48.2, 0.0,7.700000000000003,0.0 +5.578947368421051,5,a-cure-i1,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.8, 9.6, 14.8, 5.2, 0.0, 69.6, 47.4, 49.6, 3.0,30.400000000000006,10.6 +6.5108225108225115,5,a-cure-i1,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 2.4, 2.0, 14.6, 3.8, 0.2, 76.9, 43.9, 55.2, 0.9,23.099999999999994,9.399999999999999 +1,1,a-cure-i1,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 3.2, 3.7, 17.9, 7.1, 0.0, 68.2, 50.0, 49.7, 0.3,31.799999999999997,2.9 +1,1,a-cure-i1,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 2.0, 2.3, 14.1, 5.7, 0.0, 75.9, 52.0, 47.1, 0.9,24.099999999999994,4.0 +1,1,a-cure-i1,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 1.4, 1.8, 0.5, 9.9, 2.7, 0.0, 83.8, 48.6, 50.9, 0.5,16.200000000000003,0.0 +3.791469194312797,3.79,a-cure-i1,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.3, 4.5, 1.5, 11.6, 3.3, 0.0, 78.9, 46.4, 53.6, 0.0,21.099999999999994,5.0 +1,1,a-cure-i1,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.2, 4.3, 2.2, 8.5, 5.4, 0.2, 79.2, 49.8, 49.8, 0.4,20.799999999999997,3.6 +1,1,a-cure-i1,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.0, 1.5, 2.3, 10.3, 2.8, 0.0, 83.0, 49.7, 50.3, 0.0,17.0,0.0 +1,1,a-cure-i1,2023-24,Beverly - Beverly High,00300505, 0.1, 2.2, 3.3, 18.7, 3.4, 0.1, 72.2, 50.6, 49.0, 0.4,27.799999999999997,2.6 +1,1,a-cure-i1,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 1.8, 3.8, 17.0, 4.5, 0.0, 73.0, 47.1, 52.6, 0.3,27.0,4.4 +1,1,a-cure-i1,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 1.9, 3.4, 16.8, 8.1, 0.0, 69.8, 44.5, 55.5, 0.0,30.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Beverly - Cove Elementary,00300015, 0.2, 1.0, 3.0, 21.0, 5.2, 0.0, 69.6, 46.7, 53.3, 0.0,30.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Beverly - Hannah Elementary,00300033, 0.3, 3.4, 1.6, 10.9, 5.3, 0.0, 78.4, 49.1, 50.6, 0.3,21.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Beverly - McKeown School,00300002, 0.0, 4.5, 7.3, 13.6, 3.6, 0.0, 70.9, 40.0, 60.0, 0.0,29.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Beverly - North Beverly Elementary,00300040, 0.0, 2.9, 3.2, 11.2, 4.0, 0.3, 78.4, 42.7, 57.3, 0.0,21.599999999999994,4.5 +1,1,a-cure-i1,2023-24,Billerica - Billerica Memorial High School,00310505, 0.4, 11.0, 7.1, 11.1, 3.7, 0.1, 66.6, 48.9, 50.9, 0.2,33.400000000000006,3.4000000000000004 +1,1,a-cure-i1,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 14.5, 8.1, 7.8, 5.4, 0.0, 64.2, 44.9, 54.7, 0.3,35.8,0.0 +1,1,a-cure-i1,2023-24,Billerica - Hajjar Elementary,00310026, 0.5, 9.4, 5.8, 14.9, 3.4, 0.0, 66.0, 53.7, 46.1, 0.3,34.0,0.0 +1,1,a-cure-i1,2023-24,Billerica - John F Kennedy,00310012, 1.2, 5.2, 1.2, 8.5, 2.4, 0.0, 81.4, 51.8, 48.2, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Billerica - Locke Middle,00310310, 0.0, 9.7, 2.6, 8.7, 5.0, 0.0, 74.0, 48.5, 51.5, 0.0,26.0,0.0 +1,1,a-cure-i1,2023-24,Billerica - Marshall Middle School,00310305, 0.2, 9.0, 7.0, 11.4, 3.2, 0.0, 69.3, 53.4, 46.6, 0.0,30.700000000000003,4.2 +1,1,a-cure-i1,2023-24,Billerica - Parker,00310015, 1.2, 16.4, 10.5, 8.3, 2.1, 0.0, 61.5, 54.4, 45.6, 0.0,38.5,0.0 +1,1,a-cure-i1,2023-24,Billerica - Thomas Ditson,00310005, 0.4, 14.2, 4.5, 10.3, 4.2, 0.0, 66.4, 49.4, 50.5, 0.2,33.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 2.0, 3.0, 11.8, 2.5, 0.0, 80.8, 43.7, 55.3, 1.0,19.200000000000003,2.9 +1,1,a-cure-i1,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 1.3, 2.9, 12.2, 3.8, 0.0, 79.8, 50.4, 49.6, 0.0,20.200000000000003,0.0 +7.953757225433527,5,a-cure-i1,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.8, 2.1, 8.9, 4.5, 0.0, 82.7, 46.3, 52.4, 1.3,17.299999999999997,8.6 +8.389189189189189,5,a-cure-i1,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.5, 1.1, 11.4, 5.4, 0.0, 81.5, 46.6, 53.1, 0.3,18.5,9.7 +1,1,a-cure-i1,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.9, 2.6, 7.8, 2.6, 0.0, 86.1, 43.5, 56.5, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 2.3, 3.2, 5.7, 3.7, 0.0, 85.1, 55.2, 44.8, 0.0,14.900000000000006,4.3 +2.052104208416834,2.05,a-cure-i1,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.7, 3.3, 21.8, 17.4, 6.8, 0.0, 50.1, 48.8, 51.2, 0.0,49.9,6.4 +3.6165680473372785,3.62,a-cure-i1,2023-24,Boston - Adams Elementary School,00350302, 0.0, 1.6, 4.8, 74.9, 3.2, 0.0, 15.5, 45.4, 54.6, 0.0,84.5,19.1 +21.876543209876544,5,a-cure-i1,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.0, 1.9, 2.8, 53.7, 6.5, 0.0, 35.2, 44.4, 55.6, 0.0,64.8,88.6 +8.96794208893485,5,a-cure-i1,2023-24,Boston - Another Course To College,00350541, 0.8, 0.0, 43.3, 49.2, 3.3, 0.0, 3.3, 41.3, 57.9, 0.8,96.7,54.2 +7.582938388625592,5,a-cure-i1,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 25.0, 12.5, 38.0, 8.9, 0.0, 15.6, 42.7, 57.3, 0.0,84.4,40.0 +7.785330948121646,5,a-cure-i1,2023-24,Boston - Bates Elementary School,00350278, 0.4, 3.2, 21.9, 26.2, 4.3, 0.0, 44.1, 41.6, 58.1, 0.4,55.9,27.2 +3.372972972972973,3.37,a-cure-i1,2023-24,Boston - Beethoven Elementary School,00350021, 0.0, 3.1, 29.8, 35.1, 6.1, 0.0, 26.0, 48.1, 51.5, 0.4,74.0,15.600000000000001 +5.455683003128259,5,a-cure-i1,2023-24,Boston - Blackstone Elementary School,00350390, 0.2, 2.2, 28.4, 63.7, 1.4, 0.0, 4.1, 48.7, 51.3, 0.0,95.9,32.7 +13.479674796747968,5,a-cure-i1,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 4.9, 38.9, 53.5, 1.1, 0.0, 1.6, 48.1, 51.9, 0.0,98.4,82.9 +9.96994219653179,5,a-cure-i1,2023-24,Boston - Boston Arts Academy,00350546, 0.2, 1.7, 34.5, 45.9, 4.2, 0.0, 13.5, 66.8, 31.1, 2.1,86.5,53.89999999999999 +7.094496365524404,5,a-cure-i1,2023-24,Boston - Boston Collaborative High School,00350755, 0.5, 1.4, 36.7, 55.0, 2.3, 0.5, 3.7, 50.5, 49.5, 0.0,96.3,42.7 +8.625792811839323,5,a-cure-i1,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.2, 3.7, 27.9, 61.0, 1.8, 0.0, 5.4, 50.1, 49.6, 0.4,94.6,51.0 +7.18935516888434,5,a-cure-i1,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 5.8, 29.0, 62.1, 0.6, 0.2, 2.3, 39.7, 60.3, 0.0,97.7,43.900000000000006 +10.060130718954248,5,a-cure-i1,2023-24,Boston - Boston Latin Academy,00350545, 0.2, 15.7, 25.4, 30.5, 4.5, 0.1, 23.5, 56.6, 43.2, 0.2,76.5,48.1 +6.970542635658914,5,a-cure-i1,2023-24,Boston - Boston Latin School,00350560, 0.1, 29.6, 13.8, 16.2, 4.6, 0.1, 35.5, 53.1, 46.5, 0.4,64.5,28.099999999999998 +7.771428571428572,5,a-cure-i1,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.4, 25.0, 39.0, 8.8, 0.4, 26.5, 51.5, 48.5, 0.0,73.5,35.7 +5.288135593220339,5,a-cure-i1,2023-24,Boston - Bradley Elementary School,00350215, 0.0, 6.7, 6.0, 42.3, 3.3, 0.7, 41.0, 54.3, 45.7, 0.0,59.0,19.5 +5.925925925925926,5,a-cure-i1,2023-24,Boston - Brighton High School,00350505, 0.7, 2.7, 24.5, 65.2, 1.4, 0.0, 5.5, 47.3, 52.6, 0.2,94.5,35.0 +8.494845360824742,5,a-cure-i1,2023-24,Boston - Burke High School,00350525, 0.8, 2.5, 53.9, 37.0, 2.8, 0.0, 3.0, 40.0, 60.0, 0.0,97.0,51.5 +1,1,a-cure-i1,2023-24,Boston - Carter School,00350036, 0.0, 0.0, 48.4, 35.5, 0.0, 3.2, 12.9, 45.2, 54.8, 0.0,87.1,0.0 +6.5070118662351675,5,a-cure-i1,2023-24,Boston - Channing Elementary School,00350360, 0.0, 2.6, 41.7, 45.3, 3.1, 0.0, 7.3, 38.0, 62.0, 0.0,92.7,37.7 +6.06423982869379,5,a-cure-i1,2023-24,Boston - Charlestown High School,00350515, 0.1, 6.6, 22.4, 63.1, 1.1, 0.0, 6.6, 41.1, 58.8, 0.1,93.4,35.4 +5.836691410392365,5,a-cure-i1,2023-24,Boston - Chittick Elementary School,00350154, 0.0, 0.9, 55.3, 33.8, 4.4, 0.0, 5.7, 46.9, 53.1, 0.0,94.3,34.4 +5.026467203682393,5,a-cure-i1,2023-24,Boston - Clap Elementary School,00350298, 0.0, 6.2, 33.8, 42.3, 4.6, 0.0, 13.1, 38.5, 61.5, 0.0,86.9,27.3 +16.393442622950822,5,a-cure-i1,2023-24,Boston - Community Academy,00350518, 0.0, 0.0, 56.1, 41.5, 0.0, 0.0, 2.4, 34.1, 63.4, 2.4,97.6,100.0 +8.462809917355372,5,a-cure-i1,2023-24,Boston - Community Academy of Science and Health,00350581, 0.0, 6.7, 53.1, 33.1, 3.2, 0.6, 3.2, 49.6, 50.4, 0.0,96.8,51.2 +6.081447963800905,5,a-cure-i1,2023-24,Boston - Condon K-8 School,00350146, 1.0, 4.7, 31.6, 47.4, 3.3, 0.5, 11.6, 44.8, 55.2, 0.0,88.4,33.6 +5.247524752475248,5,a-cure-i1,2023-24,Boston - Conley Elementary School,00350122, 1.3, 0.7, 24.5, 48.3, 4.0, 2.0, 19.2, 45.0, 55.0, 0.0,80.8,26.5 +4.561194029850746,4.56,a-cure-i1,2023-24,Boston - Curley K-8 School,00350020, 0.0, 4.4, 17.4, 37.8, 7.2, 0.1, 33.0, 42.4, 57.6, 0.0,67.0,19.1 +7.430894308943088,5,a-cure-i1,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.5, 60.8, 33.5, 3.1, 0.5, 1.6, 49.0, 50.8, 0.2,98.4,45.699999999999996 +9.554083885209716,5,a-cure-i1,2023-24,Boston - Dever Elementary School,00350268, 0.2, 2.7, 19.7, 66.5, 1.2, 0.2, 9.4, 44.3, 55.7, 0.0,90.6,54.10000000000001 +11.549668874172186,5,a-cure-i1,2023-24,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 5.6, 60.7, 7.7, 0.5, 24.5, 52.0, 48.0, 0.0,75.5,54.5 +5.607142857142858,5,a-cure-i1,2023-24,Boston - East Boston High School,00350530, 0.0, 1.3, 5.2, 82.0, 1.1, 0.0, 10.4, 44.4, 55.5, 0.2,89.6,31.4 +8.250871080139373,5,a-cure-i1,2023-24,Boston - Edison K-8 School,00350375, 0.3, 9.1, 16.8, 56.5, 3.3, 0.2, 13.9, 46.1, 53.9, 0.0,86.1,44.4 +17.0840108401084,5,a-cure-i1,2023-24,Boston - Eliot K-8 Innovation School,00350096, 0.0, 9.3, 6.2, 14.6, 6.6, 0.1, 63.1, 47.3, 52.7, 0.0,36.9,39.4 +11.114375655823716,5,a-cure-i1,2023-24,Boston - Ellis Elementary School,00350072, 0.0, 0.3, 27.4, 65.3, 2.4, 0.0, 4.7, 50.6, 49.4, 0.0,95.3,66.2 +12.320328542094455,5,a-cure-i1,2023-24,Boston - Ellison-Parks Early Education School,00350008, 0.0, 3.2, 50.8, 38.6, 4.8, 0.0, 2.6, 44.4, 55.6, 0.0,97.4,75.0 +6.923879040667361,5,a-cure-i1,2023-24,Boston - English High School,00350535, 0.0, 1.2, 32.0, 60.6, 2.2, 0.0, 4.1, 44.7, 55.1, 0.1,95.9,41.5 +6.852097130242826,5,a-cure-i1,2023-24,Boston - Everett Elementary School,00350088, 1.1, 12.2, 42.8, 32.0, 2.5, 0.0, 9.4, 46.4, 53.6, 0.0,90.6,38.8 +10.500556173526139,5,a-cure-i1,2023-24,Boston - Excel High School,00350522, 0.0, 15.5, 32.6, 36.2, 5.4, 0.3, 10.1, 42.1, 57.6, 0.3,89.9,59.0 +9.38219895287958,5,a-cure-i1,2023-24,Boston - Fenway High School,00350540, 0.0, 2.7, 30.1, 61.2, 1.6, 0.0, 4.5, 51.3, 48.7, 0.0,95.5,56.0 +9.016393442622952,5,a-cure-i1,2023-24,Boston - Frederick Pilot Middle School,00350383, 0.6, 4.3, 33.3, 58.1, 0.9, 0.3, 2.4, 47.7, 52.3, 0.0,97.6,55.00000000000001 +9.492468134414834,5,a-cure-i1,2023-24,Boston - Gardner Pilot Academy,00350326, 0.0, 5.4, 11.1, 65.2, 4.6, 0.0, 13.7, 49.1, 50.7, 0.3,86.3,51.2 +7.68,5,a-cure-i1,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 3.9, 34.2, 56.6, 5.3, 0.0, 0.0, 47.4, 52.6, 0.0,100.0,48.0 +9.977619532044761,5,a-cure-i1,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 0.3, 0.3, 11.1, 85.8, 0.8, 0.0, 1.7, 51.5, 48.5, 0.0,98.3,61.3 +13.243243243243244,5,a-cure-i1,2023-24,Boston - Grew Elementary School,00350135, 1.0, 0.5, 38.1, 41.1, 8.1, 0.0, 11.2, 43.1, 56.9, 0.0,88.8,73.5 +3.9320498301245754,3.93,a-cure-i1,2023-24,Boston - Guild Elementary School,00350062, 0.0, 0.4, 3.6, 83.0, 1.2, 0.0, 11.7, 47.4, 52.6, 0.0,88.3,21.7 +12.309111880046137,5,a-cure-i1,2023-24,Boston - Hale Elementary School,00350243, 0.0, 7.8, 44.6, 27.1, 7.2, 0.0, 13.3, 50.0, 50.0, 0.0,86.7,66.7 +11.150259067357512,5,a-cure-i1,2023-24,Boston - Haley Pilot School,00350077, 0.3, 0.5, 40.4, 32.3, 3.7, 0.0, 22.8, 44.9, 54.9, 0.3,77.2,53.8 +7.477124183006535,5,a-cure-i1,2023-24,Boston - Harvard-Kent Elementary School,00350200, 0.0, 14.1, 14.4, 27.9, 4.7, 0.0, 38.8, 46.5, 53.5, 0.0,61.2,28.599999999999998 +10.716666666666667,5,a-cure-i1,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 2.5, 46.0, 45.5, 2.0, 0.0, 4.0, 52.5, 47.5, 0.0,96.0,64.3 +8.367491166077738,5,a-cure-i1,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 14.2, 30.3, 29.4, 8.7, 2.3, 15.1, 46.3, 53.7, 0.0,84.9,44.4 +6.290748898678415,5,a-cure-i1,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.3, 6.6, 47.4, 31.6, 4.7, 0.2, 9.2, 47.7, 52.3, 0.0,90.8,35.7 +5.970893970893971,5,a-cure-i1,2023-24,Boston - Hennigan K-8 School,00350153, 0.0, 4.0, 25.0, 65.0, 2.2, 0.2, 3.8, 45.9, 54.1, 0.0,96.2,35.9 +14.530232558139534,5,a-cure-i1,2023-24,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 3.4, 79.1, 3.4, 0.0, 14.0, 52.6, 47.4, 0.0,86.0,78.1 +12.34658511722732,5,a-cure-i1,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 1.3, 30.6, 62.4, 3.8, 0.0, 1.9, 41.4, 58.6, 0.0,98.1,75.7 +8.080971659919028,5,a-cure-i1,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 1.2, 34.3, 57.4, 5.9, 0.0, 1.2, 44.4, 55.6, 0.0,98.8,49.9 +8.825331971399386,5,a-cure-i1,2023-24,Boston - Holmes Elementary School,00350138, 0.3, 1.0, 53.7, 38.3, 4.5, 0.0, 2.1, 42.9, 57.1, 0.0,97.9,54.0 +1.149478563151796,1.15,a-cure-i1,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 8.2, 31.5, 45.2, 1.4, 0.0, 13.7, 28.8, 71.2, 0.0,86.3,6.2 +13.796653796653796,5,a-cure-i1,2023-24,Boston - Hurley K-8 School,00350182, 0.3, 1.4, 4.9, 67.9, 3.2, 0.0, 22.3, 53.3, 46.4, 0.3,77.7,67.0 +7.591933570581258,5,a-cure-i1,2023-24,Boston - Kennedy John F Elementary School,00350166, 0.3, 1.3, 18.2, 58.1, 6.6, 0.0, 15.7, 49.5, 50.5, 0.0,84.3,40.0 +4.371308016877637,4.37,a-cure-i1,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 1.1, 2.2, 91.0, 0.4, 0.0, 5.2, 46.4, 53.6, 0.0,94.8,25.9 +10.653113087674713,5,a-cure-i1,2023-24,Boston - Kenny Elementary School,00350328, 0.0, 11.2, 32.0, 27.8, 7.7, 0.0, 21.3, 44.7, 55.0, 0.3,78.7,52.4 +7.820895522388059,5,a-cure-i1,2023-24,Boston - Kilmer K-8 School,00350190, 0.0, 5.7, 18.6, 23.7, 5.7, 0.0, 46.4, 48.0, 52.0, 0.0,53.6,26.2 +10.705759162303664,5,a-cure-i1,2023-24,Boston - King Elementary School,00350376, 0.4, 1.1, 52.8, 38.7, 2.6, 0.0, 4.5, 44.5, 55.5, 0.0,95.5,63.9 +6.7368421052631575,5,a-cure-i1,2023-24,Boston - Lee Academy,00350001, 0.0, 1.5, 45.0, 41.5, 7.0, 0.0, 5.0, 44.0, 56.0, 0.0,95.0,40.0 +5.68177028451001,5,a-cure-i1,2023-24,Boston - Lee K-8 School,00350183, 0.8, 3.2, 50.1, 36.4, 4.2, 0.2, 5.1, 41.9, 58.1, 0.0,94.9,33.7 +9.06422018348624,5,a-cure-i1,2023-24,Boston - Lyndon K-8 School,00350262, 0.2, 4.9, 10.6, 22.2, 5.7, 0.0, 56.4, 50.6, 49.4, 0.0,43.6,24.700000000000003 +3.745075318655852,3.75,a-cure-i1,2023-24,Boston - Lyon High School,00350655, 0.0, 5.9, 20.6, 51.0, 8.8, 0.0, 13.7, 45.1, 53.9, 1.0,86.3,20.2 +3.505507955936353,3.51,a-cure-i1,2023-24,Boston - Lyon K-8 School,00350004, 0.8, 6.7, 22.5, 43.3, 8.3, 0.0, 18.3, 45.0, 55.0, 0.0,81.7,17.900000000000002 +8.18833162743091,5,a-cure-i1,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.3, 1.3, 39.5, 54.0, 2.6, 0.1, 2.3, 40.4, 59.5, 0.2,97.7,50.0 +1,1,a-cure-i1,2023-24,Boston - Manning Elementary School,00350184, 0.0, 4.1, 15.4, 16.0, 8.9, 0.0, 55.6, 50.9, 49.1, 0.0,44.4,0.2 +9.842424242424242,5,a-cure-i1,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 6.5, 91.6, 0.6, 0.3, 1.0, 55.5, 44.5, 0.0,99.0,60.9 +7.142268041237113,5,a-cure-i1,2023-24,Boston - Mario Umana Academy,00350656, 0.2, 0.5, 2.4, 92.9, 1.1, 0.0, 3.0, 48.4, 51.6, 0.0,97.0,43.3 +5.795407098121086,5,a-cure-i1,2023-24,Boston - Mason Elementary School,00350304, 0.0, 0.0, 55.0, 36.0, 4.8, 0.0, 4.2, 45.5, 54.0, 0.5,95.8,34.7 +9.444561774023231,5,a-cure-i1,2023-24,Boston - Mather Elementary School,00350227, 0.9, 31.5, 38.3, 20.0, 3.7, 0.2, 5.3, 52.6, 47.4, 0.0,94.7,55.900000000000006 +7.01123595505618,5,a-cure-i1,2023-24,Boston - Mattahunt Elementary School,00350016, 0.2, 0.8, 67.8, 25.8, 3.3, 0.0, 2.1, 40.0, 60.0, 0.0,97.9,42.900000000000006 +4.688453159041395,4.69,a-cure-i1,2023-24,Boston - McKay K-8 School,00350080, 0.0, 0.7, 3.4, 87.0, 0.6, 0.0, 8.2, 47.8, 52.2, 0.0,91.8,26.900000000000002 +4.341621621621622,4.34,a-cure-i1,2023-24,Boston - Melvin H. King South End Academy,00350363, 0.7, 2.2, 44.8, 41.8, 3.0, 0.0, 7.5, 29.1, 70.9, 0.0,92.5,25.099999999999998 +16.023121387283236,5,a-cure-i1,2023-24,Boston - Mendell Elementary School,00350100, 0.3, 3.6, 27.6, 30.5, 7.1, 0.0, 30.8, 47.4, 52.6, 0.0,69.2,69.3 +9.49124613800206,5,a-cure-i1,2023-24,Boston - Mildred Avenue K-8 School,00350378, 0.3, 0.8, 57.3, 35.3, 3.2, 0.2, 2.9, 48.8, 51.2, 0.0,97.1,57.6 +5.00374531835206,5,a-cure-i1,2023-24,Boston - Mozart Elementary School,00350237, 0.6, 3.4, 22.5, 19.1, 7.9, 0.0, 46.6, 46.1, 53.9, 0.0,53.4,16.7 +6.522522522522523,5,a-cure-i1,2023-24,Boston - Murphy K-8 School,00350240, 0.4, 50.1, 17.0, 17.6, 3.5, 0.2, 11.2, 47.7, 52.2, 0.1,88.8,36.2 +7.8705501618122975,5,a-cure-i1,2023-24,Boston - New Mission High School,00350542, 0.4, 3.0, 46.9, 40.4, 1.6, 0.3, 7.3, 46.1, 53.7, 0.1,92.7,45.6 +10.321995464852607,5,a-cure-i1,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.1, 17.4, 31.5, 36.5, 2.5, 0.1, 11.8, 50.1, 49.7, 0.2,88.2,56.9 +6.592202318229714,5,a-cure-i1,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 2.2, 2.9, 89.1, 0.7, 0.0, 5.1, 50.5, 49.5, 0.0,94.9,39.099999999999994 +6.2608695652173925,5,a-cure-i1,2023-24,Boston - Ohrenberger School,00350258, 0.2, 2.9, 33.9, 43.1, 2.7, 0.0, 17.2, 46.0, 53.8, 0.2,82.8,32.400000000000006 +5.771839671120247,5,a-cure-i1,2023-24,Boston - Orchard Gardens K-8 School,00350257, 0.6, 0.9, 54.8, 39.1, 1.3, 0.6, 2.7, 48.1, 51.9, 0.0,97.3,35.1 +3.0552763819095476,3.06,a-cure-i1,2023-24,Boston - Otis Elementary School,00350156, 0.0, 1.7, 2.2, 73.4, 2.2, 0.0, 20.4, 50.7, 49.3, 0.0,79.6,15.2 +6.7808676307007785,5,a-cure-i1,2023-24,Boston - Perkins Elementary School,00350231, 0.7, 6.7, 33.6, 43.6, 5.4, 0.0, 10.1, 45.0, 55.0, 0.0,89.9,38.1 +11.52876712328767,5,a-cure-i1,2023-24,Boston - Perry Elementary School,00350255, 0.0, 5.0, 13.8, 14.9, 2.8, 0.0, 63.5, 47.0, 53.0, 0.0,36.5,26.299999999999997 +9.57060849598163,5,a-cure-i1,2023-24,Boston - Philbrick Elementary School,00350172, 0.8, 3.0, 35.6, 40.2, 7.6, 0.0, 12.9, 55.3, 44.7, 0.0,87.1,52.1 +11.648616125150422,5,a-cure-i1,2023-24,Boston - Quincy Elementary School,00350286, 0.0, 52.7, 13.4, 10.0, 7.1, 0.0, 16.9, 52.8, 47.2, 0.0,83.1,60.5 +10.55863539445629,5,a-cure-i1,2023-24,Boston - Quincy Upper School,00350565, 0.2, 49.1, 19.0, 22.9, 2.6, 0.0, 6.2, 50.2, 49.6, 0.2,93.8,61.900000000000006 +5.88034188034188,5,a-cure-i1,2023-24,Boston - Roosevelt K-8 School,00350116, 0.3, 3.3, 36.9, 35.6, 5.7, 0.0, 18.1, 46.8, 53.2, 0.0,81.9,30.1 +5.6570820021299255,5,a-cure-i1,2023-24,Boston - Russell Elementary School,00350366, 0.0, 2.6, 32.4, 57.5, 0.9, 0.6, 6.1, 47.4, 52.6, 0.0,93.9,33.2 +8.998984771573605,5,a-cure-i1,2023-24,Boston - Shaw Elementary School,00350014, 0.5, 0.0, 58.7, 35.3, 4.0, 0.0, 1.5, 51.2, 48.8, 0.0,98.5,55.400000000000006 +7.735325506937032,5,a-cure-i1,2023-24,Boston - Snowden International High School,00350690, 0.0, 3.4, 29.4, 58.0, 2.9, 0.0, 6.3, 50.6, 49.4, 0.0,93.7,45.3 +5.779548472775565,5,a-cure-i1,2023-24,Boston - Sumner Elementary School,00350052, 0.3, 2.1, 15.5, 53.3, 4.1, 0.0, 24.7, 46.6, 53.4, 0.0,75.3,27.2 +11.18712273641851,5,a-cure-i1,2023-24,Boston - Taylor Elementary School,00350054, 0.9, 1.2, 77.6, 19.2, 0.6, 0.0, 0.6, 46.4, 53.6, 0.0,99.4,69.5 +8.040941658137154,5,a-cure-i1,2023-24,Boston - TechBoston Academy,00350657, 0.3, 1.8, 57.6, 34.0, 3.9, 0.0, 2.3, 46.6, 53.4, 0.0,97.7,49.1 +7.562700964630224,5,a-cure-i1,2023-24,Boston - Tobin K-8 School,00350229, 0.0, 4.3, 25.1, 62.1, 1.9, 0.0, 6.7, 47.7, 52.3, 0.0,93.3,44.099999999999994 +11.266666666666666,5,a-cure-i1,2023-24,Boston - Trotter Elementary School,00350370, 0.3, 2.0, 53.0, 35.3, 3.7, 1.7, 4.0, 45.7, 54.3, 0.0,96.0,67.6 +7.405275779376499,5,a-cure-i1,2023-24,Boston - Tynan Elementary School,00350181, 0.0, 6.8, 33.7, 35.1, 7.8, 0.0, 16.6, 41.0, 59.0, 0.0,83.4,38.6 +6.137435897435897,5,a-cure-i1,2023-24,Boston - UP Academy Holland,00350167, 1.2, 2.3, 47.2, 43.5, 3.0, 0.4, 2.5, 52.8, 47.2, 0.0,97.5,37.4 +8.099255583126551,5,a-cure-i1,2023-24,Boston - Warren-Prescott K-8 School,00350346, 0.0, 5.6, 11.2, 19.0, 4.4, 0.0, 59.7, 47.3, 52.7, 0.0,40.3,20.4 +7.159322033898305,5,a-cure-i1,2023-24,Boston - West Zone Early Learning Center,00350006, 0.0, 8.8, 24.8, 51.3, 3.5, 0.0, 11.5, 45.1, 54.9, 0.0,88.5,39.6 +9.504950495049505,5,a-cure-i1,2023-24,Boston - Winship Elementary School,00350374, 0.0, 17.1, 10.4, 35.7, 7.5, 0.0, 29.3, 52.5, 47.2, 0.3,70.7,42.0 +6.419855222337125,5,a-cure-i1,2023-24,Boston - Winthrop Elementary School,00350180, 0.4, 2.1, 48.5, 43.2, 2.1, 0.4, 3.3, 49.0, 51.0, 0.0,96.7,38.8 +7.74245472837022,5,a-cure-i1,2023-24,Boston - Young Achievers K-8 School,00350380, 0.6, 0.4, 38.6, 56.9, 2.4, 0.4, 0.6, 46.8, 53.0, 0.2,99.4,48.099999999999994 +13.742160278745645,5,a-cure-i1,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 3.5, 26.7, 22.2, 4.9, 0.0, 42.6, 48.7, 51.0, 0.3,57.4,49.300000000000004 +10.655737704918034,5,a-cure-i1,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.7, 0.3, 52.2, 43.7, 0.7, 0.0, 2.4, 58.4, 41.0, 0.7,97.6,65.0 +6.946681175190424,5,a-cure-i1,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.7, 1.5, 45.8, 40.7, 3.3, 0.0, 8.1, 49.2, 50.8, 0.0,91.9,39.9 +7.732522796352582,5,a-cure-i1,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.4, 0.3, 61.2, 31.1, 4.9, 0.9, 1.3, 50.4, 49.6, 0.0,98.7,47.699999999999996 +1.967479674796748,1.97,a-cure-i1,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 55.9, 39.1, 3.4, 0.0, 1.6, 51.4, 48.6, 0.0,98.4,12.100000000000001 +1,1,a-cure-i1,2023-24,Bourne - Bourne High School,00360505, 1.2, 3.3, 2.1, 6.0, 6.3, 0.0, 81.2, 52.5, 47.5, 0.0,18.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Bourne - Bourne Intermediate School,00360030, 0.6, 3.1, 2.5, 8.9, 7.5, 0.3, 77.2, 50.4, 49.6, 0.0,22.799999999999997,0.0 +5.626373626373626,5,a-cure-i1,2023-24,Bourne - Bourne Middle School,00360325, 0.7, 1.1, 3.0, 6.8, 6.4, 0.2, 81.8, 49.3, 50.7, 0.0,18.200000000000003,6.4 +1,1,a-cure-i1,2023-24,Bourne - Bournedale Elementary School,00360005, 0.2, 1.4, 3.5, 9.8, 8.6, 0.2, 76.2, 46.6, 53.4, 0.0,23.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 1.1, 1.1, 4.8, 4.5, 0.0, 88.4, 50.6, 49.4, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Boxford - Spofford Pond,00380013, 0.0, 2.2, 0.2, 3.2, 4.2, 0.0, 90.1, 47.4, 52.6, 0.0,9.900000000000006,3.8 +1,1,a-cure-i1,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 29.1, 9.0, 11.0, 5.7, 0.3, 44.8, 51.5, 48.5, 0.0,55.2,0.0 +1,1,a-cure-i1,2023-24,Braintree - Braintree High,00400505, 0.1, 27.2, 6.4, 6.7, 1.9, 0.1, 57.6, 48.9, 51.0, 0.1,42.4,3.6 +1,1,a-cure-i1,2023-24,Braintree - Donald Ross,00400050, 0.6, 24.0, 13.4, 11.2, 2.8, 0.0, 48.0, 54.2, 45.8, 0.0,52.0,0.0 +1,1,a-cure-i1,2023-24,Braintree - East Middle School,00400305, 0.2, 27.9, 5.9, 7.4, 3.1, 0.1, 55.4, 47.1, 52.8, 0.1,44.6,1.3 +1,1,a-cure-i1,2023-24,Braintree - Highlands,00400015, 0.0, 20.6, 1.7, 5.4, 1.1, 0.0, 71.1, 51.1, 48.9, 0.0,28.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Braintree - Hollis,00400005, 0.3, 27.6, 6.2, 7.5, 3.7, 0.0, 54.7, 49.7, 50.0, 0.3,45.3,0.0 +1,1,a-cure-i1,2023-24,Braintree - Liberty,00400025, 0.3, 31.4, 6.1, 6.5, 3.9, 0.3, 51.5, 44.3, 55.7, 0.0,48.5,0.0 +1,1,a-cure-i1,2023-24,Braintree - Mary E Flaherty School,00400020, 0.0, 28.5, 2.5, 7.5, 7.1, 0.0, 54.4, 44.1, 55.9, 0.0,45.6,0.0 +1,1,a-cure-i1,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 30.6, 5.5, 10.4, 4.9, 0.5, 48.1, 46.4, 53.6, 0.0,51.9,0.0 +1,1,a-cure-i1,2023-24,Braintree - South Middle School,00400310, 0.2, 26.6, 3.3, 4.9, 2.4, 0.5, 62.2, 48.6, 51.4, 0.0,37.8,0.0 +1,1,a-cure-i1,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 2.0, 2.4, 12.7, 6.8, 0.0, 76.1, 50.2, 49.8, 0.0,23.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 1.3, 5.2, 11.8, 8.3, 0.0, 73.4, 53.7, 46.3, 0.0,26.599999999999994,0.0 +7.319838056680163,5,a-cure-i1,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 1.2, 62.6, 31.4, 3.3, 0.3, 1.2, 52.4, 47.6, 0.0,98.8,45.2 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.1, 1.7, 11.7, 5.0, 4.6, 0.1, 76.9, 46.5, 53.5, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.1, 2.6, 14.3, 4.3, 5.5, 0.1, 73.0, 49.8, 50.2, 0.0,27.0,2.3 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 3.1, 9.4, 6.1, 5.5, 0.0, 75.8, 48.4, 51.6, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.3, 5.2, 10.1, 8.7, 4.6, 0.3, 70.7, 49.3, 50.7, 0.0,29.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.2, 2.0, 10.5, 9.5, 6.2, 0.1, 71.4, 47.6, 52.4, 0.0,28.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 2.4, 11.4, 4.7, 4.2, 0.0, 77.3, 48.4, 51.6, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 9.1, 0.0, 0.0, 90.9, 63.6, 36.4, 0.0,9.099999999999994,1.9 +1,1,a-cure-i1,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 2.0, 11.4, 9.6, 5.2, 0.1, 71.6, 49.2, 50.8, 0.0,28.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Brimfield - Brimfield Elementary,00430005, 0.7, 1.1, 0.4, 3.9, 2.1, 0.0, 91.9, 49.3, 50.7, 0.0,8.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.7, 0.0, 2.9, 12.7, 0.7, 0.0, 83.1, 67.4, 32.4, 0.2,16.900000000000006,2.6 +1,1,a-cure-i1,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.3, 0.8, 5.7, 7.7, 4.2, 0.1, 81.3, 42.6, 57.2, 0.2,18.700000000000003,4.1 +1,1,a-cure-i1,2023-24,Brockton - Ashfield Middle School,00440421, 0.4, 1.9, 58.6, 14.5, 2.5, 0.0, 22.1, 49.3, 50.7, 0.0,77.9,3.8 +1,1,a-cure-i1,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.4, 1.9, 61.9, 22.3, 3.8, 0.0, 9.8, 41.1, 58.9, 0.0,90.2,0.0 +4.958002270147561,4.96,a-cure-i1,2023-24,Brockton - Brockton High,00440505, 0.1, 2.6, 61.4, 19.7, 4.1, 0.2, 11.9, 44.8, 55.1, 0.1,88.1,27.300000000000004 +1,1,a-cure-i1,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.6, 2.5, 51.6, 17.0, 10.1, 0.0, 18.2, 52.8, 47.2, 0.0,81.8,0.0 +1.4275092936802973,1.43,a-cure-i1,2023-24,Brockton - Brookfield,00440010, 0.9, 1.1, 52.3, 20.2, 6.2, 0.0, 19.3, 46.3, 53.7, 0.0,80.7,7.2 +1,1,a-cure-i1,2023-24,Brockton - Downey,00440110, 0.5, 1.7, 59.4, 18.2, 7.0, 0.3, 12.9, 48.1, 51.9, 0.0,87.1,2.7 +1.500526870389884,1.5,a-cure-i1,2023-24,Brockton - Dr W Arnone Community School,00440001, 0.3, 0.3, 61.3, 27.3, 5.2, 0.5, 5.1, 48.2, 51.8, 0.0,94.9,8.9 +2.707692307692308,2.71,a-cure-i1,2023-24,Brockton - East Middle School,00440405, 0.7, 0.9, 63.2, 16.7, 3.0, 0.0, 15.5, 44.0, 56.0, 0.0,84.5,14.3 +1.7092511013215859,1.71,a-cure-i1,2023-24,Brockton - Edgar B Davis,00440023, 0.5, 0.5, 64.0, 19.6, 6.0, 0.1, 9.2, 48.9, 51.1, 0.0,90.8,9.7 +1.8937198067632852,1.89,a-cure-i1,2023-24,Brockton - Edison Day Academy,00440535, 0.0, 0.0, 54.6, 19.6, 8.6, 0.0, 17.2, 47.9, 51.5, 0.6,82.8,9.8 +11.610471204188482,5,a-cure-i1,2023-24,Brockton - Edison Evening Academy,00440520, 0.5, 2.0, 62.1, 28.8, 2.0, 0.0, 4.5, 43.9, 56.1, 0.0,95.5,69.3 +3.057113187954309,3.06,a-cure-i1,2023-24,Brockton - Gilmore Elementary School,00440055, 0.5, 0.0, 72.5, 20.4, 3.0, 0.0, 3.7, 45.8, 54.2, 0.0,96.3,18.4 +3.331719128329298,3.33,a-cure-i1,2023-24,Brockton - Hancock,00440045, 0.2, 1.7, 51.5, 24.9, 4.2, 0.2, 17.4, 51.5, 48.5, 0.0,82.6,17.2 +2.0843672456575684,2.08,a-cure-i1,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 52.8, 19.4, 8.3, 0.0, 19.4, 47.2, 52.8, 0.0,80.6,10.5 +3.4299401197604786,3.43,a-cure-i1,2023-24,Brockton - John F Kennedy,00440017, 0.8, 1.4, 55.5, 22.5, 3.4, 0.0, 16.5, 53.1, 46.9, 0.0,83.5,17.9 +2.0730270906949353,2.07,a-cure-i1,2023-24,Brockton - Louis F Angelo Elementary,00440065, 0.8, 2.9, 53.8, 24.0, 3.5, 0.0, 15.1, 43.6, 56.4, 0.0,84.9,11.0 +1.2972972972972974,1.3,a-cure-i1,2023-24,Brockton - Manthala George Jr. School,00440003, 0.1, 0.6, 55.3, 31.9, 4.4, 0.3, 7.5, 52.1, 47.9, 0.0,92.5,7.5 +1.665859564164649,1.67,a-cure-i1,2023-24,Brockton - Mary E. Baker School,00440002, 0.6, 1.7, 50.7, 21.7, 7.7, 0.3, 17.4, 52.2, 47.8, 0.0,82.6,8.6 +2.384449244060475,2.38,a-cure-i1,2023-24,Brockton - North Middle School,00440410, 1.0, 1.5, 72.4, 12.1, 5.4, 0.2, 7.4, 48.5, 51.5, 0.0,92.6,13.799999999999999 +2.089171974522293,2.09,a-cure-i1,2023-24,Brockton - Oscar F Raymond,00440078, 0.4, 0.6, 77.6, 12.6, 2.7, 0.4, 5.8, 47.3, 52.7, 0.0,94.2,12.3 +5.1498335183129855,5,a-cure-i1,2023-24,Brockton - Plouffe Middle School,00440422, 0.0, 1.4, 39.6, 44.7, 4.5, 0.0, 9.9, 53.7, 46.3, 0.0,90.1,29.0 +0.8918617614269788,1,a-cure-i1,2023-24,Brockton - PROMISE College and Career Academy,00440525, 1.0, 1.0, 59.8, 23.7, 4.1, 0.0, 10.3, 43.3, 56.7, 0.0,89.7,5.0 +5.60730593607306,5,a-cure-i1,2023-24,Brockton - South Middle School,00440415, 0.4, 2.1, 65.8, 15.4, 3.8, 0.0, 12.4, 44.9, 55.1, 0.0,87.6,30.700000000000003 +4.472049689440993,4.47,a-cure-i1,2023-24,Brockton - West Middle School,00440420, 0.2, 1.2, 55.9, 17.3, 5.9, 0.0, 19.5, 49.6, 50.4, 0.0,80.5,22.5 +9.007284079084288,5,a-cure-i1,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0.3, 1.4, 49.5, 41.9, 2.8, 0.1, 3.9, 51.4, 48.4, 0.2,96.1,54.1 +1,1,a-cure-i1,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.3, 2.6, 5.6, 5.3, 0.0, 86.1, 47.7, 52.3, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 30.4, 4.3, 8.7, 10.9, 0.0, 45.7, 32.6, 67.4, 0.0,54.3,0.0 +1,1,a-cure-i1,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 21.2, 3.0, 21.2, 24.2, 0.0, 30.3, 57.6, 42.4, 0.0,69.7,0.0 +1,1,a-cure-i1,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 23.8, 9.5, 2.4, 11.9, 0.0, 52.4, 35.7, 64.3, 0.0,47.6,0.0 +5.503184713375797,5,a-cure-i1,2023-24,Brookline - Brookline High,00460505, 0.1, 17.6, 6.2, 13.3, 9.9, 0.0, 52.9, 49.9, 49.1, 1.0,47.1,16.200000000000003 +4.643356643356643,4.64,a-cure-i1,2023-24,Brookline - Edith C Baker,00460005, 0.2, 29.7, 7.0, 11.0, 9.3, 0.0, 42.8, 50.6, 49.4, 0.0,57.2,16.6 +3.221006564551422,3.22,a-cure-i1,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 18.0, 5.9, 11.4, 10.4, 0.0, 54.3, 48.9, 51.1, 0.0,45.7,9.2 +2.0125786163522013,2.01,a-cure-i1,2023-24,Brookline - Heath,00460025, 0.0, 17.7, 5.3, 12.9, 11.8, 0.0, 52.3, 46.3, 53.7, 0.0,47.7,6.0 +1.8842975206611572,1.88,a-cure-i1,2023-24,Brookline - John D Runkle,00460045, 0.0, 14.1, 3.1, 15.7, 15.5, 0.0, 51.6, 44.3, 55.3, 0.4,48.4,5.7 +4.075213675213675,4.08,a-cure-i1,2023-24,Brookline - Lawrence,00460030, 0.0, 33.3, 4.6, 9.3, 11.2, 0.2, 41.5, 51.4, 48.6, 0.0,58.5,14.9 +3.8461538461538463,3.85,a-cure-i1,2023-24,Brookline - Michael Driscoll,00460020, 0.0, 19.8, 5.5, 13.1, 13.5, 0.0, 48.0, 46.3, 53.5, 0.2,52.0,12.5 +6.136200716845879,5,a-cure-i1,2023-24,Brookline - Pierce,00460040, 0.0, 26.8, 5.8, 10.6, 12.6, 0.0, 44.2, 50.3, 49.4, 0.3,55.8,21.400000000000002 +4.574496644295302,4.57,a-cure-i1,2023-24,Brookline - The Lynch Center,00460060, 0.0, 29.1, 20.0, 9.1, 16.4, 0.0, 25.5, 49.1, 50.9, 0.0,74.5,21.3 +3.2101105845181674,3.21,a-cure-i1,2023-24,Brookline - William H Lincoln,00460035, 0.4, 26.8, 11.4, 12.9, 11.8, 0.0, 36.7, 50.0, 50.0, 0.0,63.3,12.7 +3.608200455580866,3.61,a-cure-i1,2023-24,Burlington - Burlington High,00480505, 0.3, 19.5, 8.9, 12.7, 2.5, 0.0, 56.1, 47.8, 51.5, 0.7,43.9,9.9 +1,1,a-cure-i1,2023-24,Burlington - Fox Hill,00480007, 0.2, 15.2, 6.2, 8.4, 5.1, 0.0, 65.1, 50.5, 49.5, 0.0,34.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Burlington - Francis Wyman Elementary,00480035, 0.0, 13.2, 10.7, 9.7, 5.8, 0.0, 60.7, 50.2, 49.8, 0.0,39.3,3.2 +2.6730310262529833,2.67,a-cure-i1,2023-24,Burlington - Marshall Simonds Middle,00480303, 0.3, 17.9, 7.1, 11.1, 5.5, 0.0, 58.1, 50.5, 49.4, 0.1,41.9,7.0 +1,1,a-cure-i1,2023-24,Burlington - Memorial,00480015, 0.0, 18.8, 4.2, 10.4, 6.3, 0.0, 60.3, 51.2, 48.8, 0.0,39.7,3.5 +1,1,a-cure-i1,2023-24,Burlington - Pine Glen Elementary,00480020, 0.0, 22.5, 6.6, 8.7, 3.3, 0.0, 59.0, 47.6, 52.4, 0.0,41.0,4.0 +12.926829268292684,5,a-cure-i1,2023-24,Cambridge - Amigos School,00490006, 0.0, 3.1, 5.0, 49.5, 7.9, 0.0, 34.4, 50.0, 49.8, 0.2,65.6,53.0 +7.161904761904761,5,a-cure-i1,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.3, 11.9, 25.9, 14.5, 10.4, 0.0, 37.0, 48.2, 50.9, 0.9,63.0,28.2 +9.171974522292993,5,a-cure-i1,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, 9.9, 29.3, 12.5, 11.2, 0.0, 37.2, 50.3, 48.4, 1.3,62.8,36.0 +8.727272727272727,5,a-cure-i1,2023-24,Cambridge - Cambridgeport,00490007, 0.0, 13.3, 18.6, 11.6, 13.3, 0.4, 42.8, 49.5, 50.5, 0.0,57.2,31.2 +5.624454148471616,5,a-cure-i1,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 0.4, 8.8, 52.2, 20.3, 10.0, 0.0, 8.4, 44.2, 55.8, 0.0,91.6,32.2 +2.7686116700201207,2.77,a-cure-i1,2023-24,Cambridge - Graham and Parks,00490080, 0.0, 21.5, 13.9, 7.1, 7.3, 0.0, 50.3, 45.7, 54.3, 0.0,49.7,8.6 +10.102564102564102,5,a-cure-i1,2023-24,Cambridge - Haggerty,00490020, 0.4, 22.3, 20.5, 11.4, 7.9, 0.0, 37.6, 51.5, 48.5, 0.0,62.4,39.4 +4.978369384359401,4.98,a-cure-i1,2023-24,Cambridge - John M Tobin,00490065, 0.0, 19.0, 22.1, 8.0, 11.0, 0.0, 39.9, 48.2, 51.8, 0.0,60.1,18.7 +2.5852417302798982,2.59,a-cure-i1,2023-24,Cambridge - Kennedy-Longfellow,00490040, 0.0, 23.2, 25.5, 22.7, 7.3, 0.0, 21.4, 45.9, 54.1, 0.0,78.6,12.7 +7.029185867895546,5,a-cure-i1,2023-24,Cambridge - King Open,00490035, 0.0, 11.4, 25.6, 14.2, 14.0, 0.0, 34.9, 46.8, 53.2, 0.0,65.1,28.599999999999998 +10.20952380952381,5,a-cure-i1,2023-24,Cambridge - Maria L. Baldwin,00490005, 0.0, 10.8, 9.7, 8.2, 13.4, 0.0, 58.0, 50.3, 49.7, 0.0,42.0,26.8 +8.512820512820513,5,a-cure-i1,2023-24,Cambridge - Martin Luther King Jr.,00490030, 0.0, 36.0, 12.2, 3.7, 26.2, 0.0, 22.0, 51.5, 48.2, 0.3,78.0,41.5 +2.972222222222222,2.97,a-cure-i1,2023-24,Cambridge - Morse,00490045, 0.0, 14.6, 23.2, 9.6, 10.3, 0.0, 42.4, 45.7, 54.3, 0.0,57.6,10.7 +5.925925925925926,5,a-cure-i1,2023-24,Cambridge - Peabody,00490050, 0.0, 13.1, 25.9, 7.8, 10.0, 0.0, 43.3, 47.7, 52.0, 0.3,56.7,21.0 +7.106082036775105,5,a-cure-i1,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.4, 18.9, 27.0, 10.0, 14.4, 0.0, 29.3, 45.9, 54.1, 0.0,70.7,31.4 +8.95617529880478,5,a-cure-i1,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 8.7, 19.7, 12.5, 9.3, 0.0, 49.8, 54.7, 45.0, 0.3,50.2,28.099999999999998 +3.6202531645569622,3.62,a-cure-i1,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.4, 17.8, 24.0, 12.8, 8.1, 0.0, 36.8, 46.9, 53.1, 0.0,63.2,14.3 +3.588390501319261,3.59,a-cure-i1,2023-24,Canton - Canton High,00500505, 0.2, 11.6, 15.6, 5.3, 4.8, 0.4, 62.1, 54.4, 45.5, 0.1,37.9,8.5 +1,1,a-cure-i1,2023-24,Canton - Dean S Luce,00500020, 0.2, 10.3, 10.7, 7.5, 8.6, 0.0, 62.7, 48.8, 51.2, 0.0,37.3,3.3 +1,1,a-cure-i1,2023-24,Canton - John F Kennedy,00500017, 0.0, 7.9, 6.6, 5.7, 9.2, 0.0, 70.7, 47.7, 52.3, 0.0,29.299999999999997,0.0 +2.503667481662592,2.5,a-cure-i1,2023-24,Canton - Lt Peter M Hansen,00500012, 0.2, 11.4, 11.6, 8.4, 9.1, 0.2, 59.1, 47.8, 52.2, 0.0,40.9,6.4 +1,1,a-cure-i1,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, 17.9, 9.0, 10.4, 6.0, 0.0, 56.7, 44.8, 55.2, 0.0,43.3,0.0 +2.694736842105263,2.69,a-cure-i1,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, 10.2, 12.5, 9.3, 5.8, 0.1, 62.0, 50.3, 49.7, 0.0,38.0,6.4 +1,1,a-cure-i1,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 1.6, 3.2, 5.2, 2.0, 0.0, 88.0, 53.4, 46.6, 0.0,12.0,0.0 +1,1,a-cure-i1,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.6, 0.8, 5.7, 9.7, 4.4, 0.3, 78.6, 37.7, 62.3, 0.0,21.400000000000006,1.3 +1,1,a-cure-i1,2023-24,Carlisle - Carlisle School,00510025, 0.0, 11.5, 0.3, 6.4, 8.2, 0.5, 73.0, 49.8, 50.2, 0.0,27.0,3.6 +1,1,a-cure-i1,2023-24,Carver - Carver Elementary School,00520015, 0.4, 0.5, 1.7, 4.3, 4.3, 0.0, 88.9, 50.3, 49.7, 0.0,11.099999999999994,0.0 +10.666666666666666,5,a-cure-i1,2023-24,Carver - Carver Middle/High School,00520405, 0.4, 0.8, 2.4, 3.5, 1.8, 0.0, 91.0, 47.5, 52.3, 0.1,9.0,6.0 +1,1,a-cure-i1,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 5.5, 6.6, 0.0, 87.9, 48.4, 51.6, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Central Berkshire - Craneville,06350025, 0.2, 1.1, 1.5, 9.1, 6.2, 0.0, 81.9, 50.6, 49.4, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 4.5, 2.8, 0.0, 92.7, 51.4, 48.6, 0.0,7.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 1.1, 0.3, 5.0, 3.4, 0.0, 90.2, 53.1, 46.6, 0.3,9.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.8, 1.0, 4.4, 4.1, 0.0, 89.6, 46.5, 53.5, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Chelmsford - Byam School,00560030, 0.0, 14.0, 4.0, 12.3, 4.9, 0.4, 64.5, 46.8, 53.2, 0.0,35.5,0.0 +1,1,a-cure-i1,2023-24,Chelmsford - Center Elementary School,00560005, 0.2, 21.0, 4.3, 5.6, 4.1, 0.0, 64.8, 47.9, 51.9, 0.2,35.2,0.0 +1,1,a-cure-i1,2023-24,Chelmsford - Charles D Harrington,00560025, 0.6, 18.9, 4.6, 15.1, 4.6, 0.2, 56.0, 50.3, 49.7, 0.0,44.0,0.0 +1,1,a-cure-i1,2023-24,Chelmsford - Chelmsford High,00560505, 0.1, 18.9, 4.5, 8.2, 3.8, 0.2, 64.3, 45.9, 53.6, 0.5,35.7,4.0 +1,1,a-cure-i1,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.1, 21.8, 3.1, 7.3, 3.9, 0.0, 63.7, 48.6, 51.4, 0.0,36.3,1.6 +1,1,a-cure-i1,2023-24,Chelmsford - Community Education Center,00560001, 0.5, 28.0, 5.5, 7.0, 4.5, 0.5, 54.0, 42.0, 58.0, 0.0,46.0,0.0 +1,1,a-cure-i1,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.1, 17.0, 4.5, 9.7, 4.2, 0.1, 64.3, 48.7, 51.3, 0.0,35.7,0.0 +1,1,a-cure-i1,2023-24,Chelmsford - South Row,00560015, 0.2, 17.4, 3.2, 8.0, 6.5, 0.0, 64.7, 49.0, 51.0, 0.0,35.3,0.0 +5.428872497365648,5,a-cure-i1,2023-24,Chelsea - Chelsea High,00570505, 0.2, 1.1, 3.8, 89.2, 0.6, 0.0, 5.1, 45.5, 54.3, 0.1,94.9,32.2 +4.80672268907563,4.81,a-cure-i1,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 1.6, 1.6, 92.0, 0.0, 0.0, 4.8, 37.6, 62.4, 0.0,95.2,28.6 +1,1,a-cure-i1,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 1.7, 3.3, 83.3, 1.7, 0.0, 10.0, 68.3, 31.7, 0.0,90.0,0.0 +1.761006289308176,1.76,a-cure-i1,2023-24,Chelsea - Clark Avenue School,00570050, 0.1, 0.0, 2.8, 91.4, 1.0, 0.0, 4.6, 49.9, 50.1, 0.0,95.4,10.5 +4.824561403508771,4.82,a-cure-i1,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.4, 0.7, 5.3, 84.3, 0.4, 0.0, 8.8, 39.5, 60.5, 0.0,91.2,27.5 +3.4820457018498367,3.48,a-cure-i1,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.2, 6.5, 84.7, 0.5, 0.0, 8.1, 50.6, 49.4, 0.0,91.9,20.0 +1.7241379310344829,1.72,a-cure-i1,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.2, 0.2, 4.4, 87.9, 0.0, 0.0, 7.2, 52.3, 47.7, 0.0,92.8,10.0 +11.856115107913668,5,a-cure-i1,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.2, 1.0, 96.1, 0.0, 0.0, 2.7, 52.1, 47.9, 0.0,97.3,72.1 +8.614072494669509,5,a-cure-i1,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.4, 0.8, 7.0, 85.4, 0.2, 0.0, 6.2, 48.7, 51.3, 0.0,93.8,50.5 +3.4519956850053934,3.45,a-cure-i1,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 1.0, 4.6, 87.1, 0.0, 0.0, 7.3, 47.6, 52.4, 0.0,92.7,20.0 +3.4297606659729447,3.43,a-cure-i1,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0.5, 0.9, 6.4, 88.0, 0.2, 0.0, 3.9, 54.7, 45.3, 0.0,96.1,20.599999999999998 +1,1,a-cure-i1,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 1.4, 2.2, 0.7, 0.0, 95.7, 42.4, 57.6, 0.0,4.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Chicopee - Barry,00610003, 0.0, 1.4, 9.1, 36.7, 3.0, 0.6, 49.2, 44.8, 55.2, 0.0,50.8,4.3 +1,1,a-cure-i1,2023-24,Chicopee - Belcher,00610010, 0.0, 0.4, 8.7, 45.0, 5.2, 0.4, 40.2, 52.8, 47.2, 0.0,59.8,0.0 +1,1,a-cure-i1,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 1.3, 5.6, 42.1, 3.4, 0.1, 47.4, 47.4, 52.6, 0.0,52.6,1.4 +1,1,a-cure-i1,2023-24,Chicopee - Bowe,00610015, 0.0, 2.2, 4.8, 63.6, 5.3, 0.0, 24.2, 49.3, 50.7, 0.0,75.8,0.0 +4.298507462686567,4.3,a-cure-i1,2023-24,Chicopee - Bowie,00610020, 0.0, 2.7, 5.8, 27.8, 3.8, 0.0, 59.8, 51.2, 48.8, 0.0,40.2,10.8 +3.1904047976011993,3.19,a-cure-i1,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 1.4, 8.7, 50.7, 5.8, 0.0, 33.3, 29.0, 71.0, 0.0,66.7,13.3 +2.896551724137931,2.9,a-cure-i1,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.2, 1.2, 3.2, 38.3, 3.5, 0.0, 53.6, 40.1, 59.5, 0.4,46.4,8.4 +2.184049079754601,2.18,a-cure-i1,2023-24,Chicopee - Chicopee High,00610505, 0.1, 2.9, 5.9, 52.9, 3.4, 0.0, 34.8, 53.4, 46.2, 0.3,65.2,8.9 +3.5428571428571423,3.54,a-cure-i1,2023-24,Chicopee - Dupont Middle,00610310, 0.1, 1.8, 5.0, 45.4, 3.7, 0.0, 44.0, 46.9, 52.9, 0.1,56.0,12.399999999999999 +1.6894409937888197,1.69,a-cure-i1,2023-24,Chicopee - Fairview Elementary,00610050, 0.3, 1.1, 10.7, 48.5, 3.8, 0.0, 35.6, 45.5, 54.5, 0.0,64.4,6.8 +1.149171270718232,1.15,a-cure-i1,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 1.8, 5.4, 60.9, 4.3, 0.0, 27.6, 46.0, 54.0, 0.0,72.4,5.2 +1,1,a-cure-i1,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 1.8, 4.4, 34.5, 5.3, 0.0, 54.0, 43.8, 56.2, 0.0,46.0,1.1 +1,1,a-cure-i1,2023-24,Chicopee - Litwin,00610022, 0.0, 1.5, 7.3, 41.3, 3.8, 0.0, 46.2, 50.6, 49.4, 0.0,53.8,0.0 +1,1,a-cure-i1,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 4.3, 5.6, 32.6, 2.1, 0.0, 55.4, 44.2, 55.8, 0.0,44.6,1.0 +1,1,a-cure-i1,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.8, 1.7, 6.7, 41.7, 3.8, 0.0, 45.4, 44.2, 55.8, 0.0,54.6,0.0 +8.569395017793594,5,a-cure-i1,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 1.4, 4.2, 10.4, 32.6, 7.6, 0.0, 43.8, 43.4, 55.9, 0.7,56.2,30.1 +6.006153846153846,5,a-cure-i1,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.5, 0.0, 68.8, 27.6, 0.5, 0.0, 2.5, 53.3, 46.7, 0.0,97.5,36.6 +1,1,a-cure-i1,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 0.0, 2.9, 1.9, 0.0, 94.7, 47.6, 52.4, 0.0,5.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Clinton - Clinton Elementary,00640050, 0.1, 0.8, 2.9, 41.3, 3.0, 0.0, 51.9, 46.8, 53.2, 0.0,48.1,2.5 +1,1,a-cure-i1,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 0.5, 2.5, 40.8, 1.9, 0.2, 54.1, 48.7, 51.3, 0.0,45.9,4.8 +3.6042105263157893,3.6,a-cure-i1,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.9, 3.8, 41.5, 1.2, 0.2, 52.5, 42.7, 57.0, 0.3,47.5,10.7 +8.255999999999998,5,a-cure-i1,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 69.9, 28.0, 2.1, 0.0, 0.0, 50.9, 49.1, 0.0,100.0,51.599999999999994 +1,1,a-cure-i1,2023-24,Cohasset - Cohasset High School,00650505, 0.0, 1.7, 3.2, 1.2, 3.0, 0.0, 90.9, 48.5, 51.5, 0.0,9.099999999999994,2.6 +1,1,a-cure-i1,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 1.7, 3.1, 1.0, 1.0, 0.0, 93.1, 50.3, 49.7, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Cohasset - Deer Hill,00650005, 0.3, 0.3, 3.1, 3.4, 2.8, 0.0, 90.0, 50.8, 49.2, 0.0,10.0,0.0 +1,1,a-cure-i1,2023-24,Cohasset - Joseph Osgood,00650010, 0.0, 1.0, 1.0, 2.8, 3.9, 0.0, 91.3, 48.3, 51.7, 0.0,8.700000000000003,0.0 +5.425165562913907,5,a-cure-i1,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 2.3, 24.4, 21.9, 23.9, 3.0, 0.1, 24.5, 52.9, 47.0, 0.1,75.5,25.6 +5.9893955461293755,5,a-cure-i1,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 5.0, 65.5, 18.0, 5.4, 0.4, 5.7, 55.9, 44.1, 0.0,94.3,35.300000000000004 +4.883011190233978,4.88,a-cure-i1,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.3, 0.3, 1.3, 95.7, 0.8, 0.0, 1.7, 50.8, 49.2, 0.0,98.3,30.0 +5.546012269938652,5,a-cure-i1,2023-24,Concord - Alcott,00670005, 0.0, 6.5, 10.0, 9.3, 6.7, 0.0, 67.4, 50.9, 49.1, 0.0,32.599999999999994,11.3 +8.514285714285714,5,a-cure-i1,2023-24,Concord - Concord Middle,00670305, 0.2, 8.0, 4.7, 8.3, 6.9, 0.0, 72.0, 48.8, 51.2, 0.0,28.0,14.9 +1,1,a-cure-i1,2023-24,Concord - Thoreau,00670020, 0.2, 10.8, 1.6, 7.3, 9.9, 0.0, 70.2, 48.6, 51.4, 0.0,29.799999999999997,4.1 +8.076923076923078,5,a-cure-i1,2023-24,Concord - Willard,00670030, 0.0, 6.0, 1.8, 7.1, 6.0, 0.0, 79.2, 49.7, 50.3, 0.0,20.799999999999997,10.5 +6.581132075471698,5,a-cure-i1,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.1, 8.7, 3.7, 6.3, 7.6, 0.2, 73.5, 46.4, 53.3, 0.3,26.5,10.9 +5.422314911366006,5,a-cure-i1,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.2, 1.6, 49.1, 42.3, 2.7, 0.0, 4.1, 53.6, 46.4, 0.0,95.9,32.5 +1,1,a-cure-i1,2023-24,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 2.8, 4.2, 0.0, 93.1, 45.1, 54.2, 0.7,6.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Danvers - Danvers High,00710505, 0.0, 2.9, 2.9, 13.5, 2.6, 0.0, 78.1, 49.6, 49.5, 0.9,21.900000000000006,2.7 +1,1,a-cure-i1,2023-24,Danvers - Great Oak,00710015, 0.0, 1.7, 6.7, 14.0, 3.3, 0.0, 74.3, 50.7, 49.3, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Danvers - Highlands,00710010, 0.3, 3.4, 5.3, 15.0, 1.1, 0.0, 75.0, 45.3, 54.7, 0.0,25.0,0.0 +1,1,a-cure-i1,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, 2.6, 3.2, 12.7, 3.1, 0.0, 78.4, 49.3, 50.5, 0.3,21.599999999999994,3.4 +1,1,a-cure-i1,2023-24,Danvers - Ivan G Smith,00710032, 0.0, 2.2, 5.7, 11.1, 1.4, 0.0, 79.7, 49.3, 50.7, 0.0,20.299999999999997,4.7 +1,1,a-cure-i1,2023-24,Danvers - Riverside,00710030, 0.0, 1.9, 2.8, 12.0, 0.3, 0.0, 82.9, 48.1, 51.9, 0.0,17.099999999999994,0.0 +8.903225806451609,5,a-cure-i1,2023-24,Danvers - Willis E Thorpe,00710045, 0.0, 1.2, 1.2, 9.5, 0.6, 0.0, 87.6, 52.7, 47.3, 0.0,12.400000000000006,6.9 +1,1,a-cure-i1,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 2.6, 1.9, 7.7, 7.1, 0.0, 80.6, 41.9, 58.1, 0.0,19.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 0.8, 2.2, 7.6, 8.3, 0.1, 80.9, 53.8, 46.0, 0.1,19.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.4, 1.3, 4.7, 6.2, 0.1, 86.3, 45.4, 54.6, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Dartmouth - George H Potter,00720030, 0.0, 1.2, 0.2, 8.6, 6.2, 0.0, 83.7, 52.0, 48.0, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 2.1, 1.4, 7.4, 7.2, 0.0, 81.9, 46.9, 53.1, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Dartmouth - Joseph Demello,00720015, 0.3, 1.2, 2.7, 6.9, 6.6, 0.0, 82.2, 48.6, 51.1, 0.3,17.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Dedham - Avery,00730010, 0.0, 1.6, 9.6, 30.1, 6.2, 0.0, 52.5, 43.8, 56.2, 0.0,47.5,0.0 +1,1,a-cure-i1,2023-24,Dedham - Dedham High,00730505, 0.1, 3.0, 10.7, 17.2, 3.3, 0.0, 65.7, 46.8, 52.8, 0.4,34.3,1.9 +1,1,a-cure-i1,2023-24,Dedham - Dedham Middle School,00730305, 0.2, 1.7, 11.2, 21.0, 5.3, 0.0, 60.6, 49.2, 50.8, 0.0,39.4,1.9 +1,1,a-cure-i1,2023-24,Dedham - Early Childhood Center,00730005, 0.0, 4.7, 7.6, 18.0, 4.9, 0.0, 64.8, 46.5, 53.5, 0.0,35.2,0.0 +1,1,a-cure-i1,2023-24,Dedham - Greenlodge,00730025, 0.0, 1.9, 2.3, 12.3, 7.7, 0.0, 75.8, 47.4, 52.3, 0.3,24.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Dedham - Oakdale,00730030, 0.0, 0.8, 8.6, 12.9, 6.6, 0.0, 71.1, 55.1, 44.9, 0.0,28.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Dedham - Riverdale,00730045, 0.0, 3.1, 6.7, 14.5, 6.7, 0.0, 68.9, 54.9, 45.1, 0.0,31.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 0.6, 1.3, 5.1, 5.8, 0.0, 87.2, 43.8, 56.2, 0.0,12.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.4, 3.5, 10.4, 14.1, 5.1, 0.2, 66.3, 50.4, 49.6, 0.0,33.7,2.0 +2.9132947976878616,2.91,a-cure-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 2.5, 2.0, 11.5, 11.7, 6.1, 0.9, 65.4, 46.5, 53.5, 0.0,34.599999999999994,6.3 +1,1,a-cure-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.5, 2.4, 14.3, 13.1, 7.5, 0.1, 61.1, 49.3, 50.3, 0.3,38.9,4.9 +1,1,a-cure-i1,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.4, 2.2, 14.3, 16.0, 6.2, 0.3, 59.7, 47.1, 52.9, 0.0,40.3,4.2 +1,1,a-cure-i1,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.8, 2.5, 14.2, 16.4, 2.5, 0.0, 62.5, 47.3, 52.7, 0.0,37.5,4.0 +1,1,a-cure-i1,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.9, 1.2, 11.6, 15.7, 5.6, 0.0, 65.0, 46.5, 53.5, 0.0,35.0,0.0 +1,1,a-cure-i1,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 1.9, 3.5, 6.5, 4.1, 0.0, 84.0, 49.2, 50.8, 0.0,16.0,0.0 +1,1,a-cure-i1,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.6, 2.2, 8.2, 5.4, 0.0, 82.6, 48.0, 52.0, 0.0,17.400000000000006,4.9 +1,1,a-cure-i1,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.2, 2.2, 1.8, 6.0, 4.6, 0.0, 85.2, 47.4, 52.3, 0.3,14.799999999999997,1.7 +6.628571428571428,5,a-cure-i1,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.3, 1.3, 6.5, 4.8, 0.0, 86.0, 46.4, 53.6, 0.0,14.0,5.8 +1,1,a-cure-i1,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 1.4, 1.7, 6.1, 2.7, 0.0, 88.2, 47.7, 52.3, 0.0,11.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 0.3, 0.8, 5.7, 2.8, 0.0, 90.4, 45.6, 54.4, 0.0,9.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Douglas - Douglas High School,00770505, 0.0, 1.3, 1.0, 5.6, 2.0, 0.0, 90.1, 49.5, 50.2, 0.3,9.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 1.4, 1.0, 8.0, 5.2, 0.0, 84.4, 48.4, 51.6, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.4, 10.2, 1.9, 0.0, 86.5, 43.7, 56.3, 0.0,13.5,0.0 +1,1,a-cure-i1,2023-24,Dover - Chickering,00780005, 0.2, 12.3, 3.0, 4.6, 6.6, 0.0, 73.2, 48.3, 51.7, 0.0,26.799999999999997,2.7 +4.602739726027397,4.6,a-cure-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.2, 13.7, 2.8, 5.7, 6.8, 0.0, 70.8, 49.5, 50.2, 0.3,29.200000000000003,8.4 +5.255474452554743,5,a-cure-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.2, 11.8, 2.8, 5.3, 7.2, 0.0, 72.6, 48.4, 51.4, 0.2,27.400000000000006,9.0 +1,1,a-cure-i1,2023-24,Dracut - Brookside Elementary,00790035, 0.0, 11.0, 10.8, 16.6, 2.4, 0.0, 59.2, 46.8, 53.2, 0.0,40.8,0.0 +1,1,a-cure-i1,2023-24,Dracut - Dracut Senior High,00790505, 0.1, 10.5, 9.3, 14.3, 1.9, 0.1, 63.8, 48.3, 51.0, 0.8,36.2,2.3 +1,1,a-cure-i1,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.2, 10.8, 5.4, 19.9, 2.8, 0.0, 60.9, 47.3, 52.7, 0.0,39.1,0.0 +1,1,a-cure-i1,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 9.1, 9.6, 21.7, 3.5, 0.0, 56.1, 50.4, 49.6, 0.0,43.9,0.0 +1,1,a-cure-i1,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.2, 9.7, 8.7, 10.2, 0.2, 0.0, 71.1, 45.8, 54.2, 0.0,28.900000000000006,0.0 +2.5762711864406773,2.58,a-cure-i1,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 9.5, 8.3, 15.7, 2.0, 0.0, 64.6, 48.8, 51.2, 0.0,35.400000000000006,5.699999999999999 +9.876543209876543,5,a-cure-i1,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.3, 0.7, 60.1, 35.8, 0.3, 0.0, 2.8, 53.5, 46.5, 0.0,97.2,60.0 +1,1,a-cure-i1,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.3, 0.6, 1.2, 11.0, 2.4, 0.0, 84.5, 48.8, 51.2, 0.0,15.5,0.0 +1,1,a-cure-i1,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.8, 1.5, 8.5, 4.6, 0.2, 84.4, 45.6, 54.2, 0.2,15.599999999999994,1.9 +5.84738955823293,5,a-cure-i1,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.3, 0.6, 4.2, 15.3, 4.5, 0.0, 75.1, 51.1, 48.9, 0.0,24.900000000000006,9.1 +1,1,a-cure-i1,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.9, 4.2, 15.0, 2.9, 0.0, 77.0, 47.6, 52.4, 0.0,23.0,0.0 +1,1,a-cure-i1,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.9, 1.6, 10.9, 3.8, 0.0, 82.8, 49.6, 50.4, 0.0,17.200000000000003,4.1 +7.529411764705883,5,a-cure-i1,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.9, 1.7, 18.2, 3.0, 0.0, 76.2, 50.6, 49.4, 0.0,23.799999999999997,11.2 +1,1,a-cure-i1,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.1, 0.9, 3.6, 10.8, 3.3, 0.0, 81.3, 49.0, 50.7, 0.3,18.700000000000003,4.8 +1,1,a-cure-i1,2023-24,Duxbury - Alden School,00820004, 0.0, 1.4, 1.0, 2.7, 4.0, 0.0, 90.8, 48.0, 51.9, 0.2,9.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Duxbury - Chandler Elementary,00820006, 0.5, 0.8, 0.6, 4.6, 3.9, 0.0, 89.7, 49.9, 50.1, 0.0,10.299999999999997,2.7 +1,1,a-cure-i1,2023-24,Duxbury - Duxbury High,00820505, 0.2, 1.9, 0.5, 3.0, 4.2, 0.0, 90.3, 49.5, 50.2, 0.2,9.700000000000003,3.4 +1,1,a-cure-i1,2023-24,Duxbury - Duxbury Middle,00820305, 0.2, 0.3, 0.8, 2.9, 2.7, 0.2, 92.9, 49.9, 50.1, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2023-24,East Bridgewater - Central,00830005, 0.2, 1.2, 6.4, 6.2, 6.0, 0.0, 80.0, 47.8, 52.2, 0.0,20.0,0.0 +1,1,a-cure-i1,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.6, 0.6, 7.2, 5.8, 4.1, 0.1, 81.6, 44.4, 55.4, 0.2,18.400000000000006,1.5 +1,1,a-cure-i1,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.5, 0.6, 7.1, 7.1, 2.6, 0.0, 82.0, 52.9, 47.1, 0.0,18.0,0.0 +3.3333333333333326,3.33,a-cure-i1,2023-24,East Longmeadow - Birchland Park,00870305, 0.3, 5.9, 2.1, 13.0, 4.9, 0.2, 73.6, 45.6, 54.2, 0.2,26.400000000000006,5.5 +4.451612903225807,4.45,a-cure-i1,2023-24,East Longmeadow - East Longmeadow High,00870505, 0.1, 6.4, 4.9, 10.0, 3.4, 0.0, 75.2, 47.7, 52.3, 0.0,24.799999999999997,6.8999999999999995 +1,1,a-cure-i1,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 5.9, 5.6, 17.1, 2.8, 0.0, 68.6, 48.1, 51.9, 0.0,31.400000000000006,0.0 +1,1,a-cure-i1,2023-24,East Longmeadow - Meadow Brook,00870013, 0.0, 4.3, 3.6, 17.3, 5.7, 0.0, 69.2, 43.2, 56.8, 0.0,30.799999999999997,0.0 +1,1,a-cure-i1,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 2.9, 4.0, 12.8, 2.9, 0.0, 77.3, 50.5, 49.5, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 11.9, 5.7, 10.8, 0.0, 71.6, 42.6, 57.4, 0.0,28.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Easthampton - Easthampton High,00860505, 0.3, 4.3, 0.8, 17.4, 3.5, 0.0, 73.7, 48.5, 49.6, 1.9,26.299999999999997,2.5 +1,1,a-cure-i1,2023-24,Easthampton - Mountain View School,00860415, 0.2, 2.1, 1.1, 15.3, 5.4, 0.3, 75.7, 48.5, 51.2, 0.3,24.299999999999997,3.2 +1,1,a-cure-i1,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 4.1, 9.1, 12.5, 5.9, 0.0, 68.4, 44.3, 55.7, 0.0,31.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Easton - Easton Middle School,00880405, 0.6, 2.8, 9.0, 8.9, 4.0, 0.1, 74.5, 49.6, 50.4, 0.0,25.5,3.4 +5.5929203539823025,5,a-cure-i1,2023-24,Easton - Oliver Ames High,00880505, 0.2, 3.7, 8.1, 7.2, 3.3, 0.2, 77.4, 49.6, 50.1, 0.3,22.599999999999994,7.9 +3.224806201550388,3.22,a-cure-i1,2023-24,Easton - Richardson Olmsted School,00880025, 0.0, 4.2, 7.5, 9.0, 5.2, 0.0, 74.2, 49.3, 50.7, 0.0,25.799999999999997,5.2 +2.088772845953003,2.09,a-cure-i1,2023-24,Edgartown - Edgartown Elementary,00890005, 2.3, 0.3, 4.7, 26.7, 4.4, 0.0, 61.7, 49.2, 50.8, 0.0,38.3,5.0 +8.351378958120529,5,a-cure-i1,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, 2.4, 38.4, 53.6, 3.2, 0.3, 2.1, 66.9, 33.1, 0.0,97.9,51.099999999999994 +1,1,a-cure-i1,2023-24,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 7.3, 6.5, 0.0, 86.2, 44.7, 55.3, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.1, 2.1, 2.6, 15.7, 3.4, 0.0, 76.2, 56.1, 43.6, 0.3,23.799999999999997,3.3 +1,1,a-cure-i1,2023-24,Everett - Adams School,00930003, 0.6, 14.1, 16.6, 54.0, 1.8, 0.0, 12.9, 52.1, 47.9, 0.0,87.1,0.0 +1.77319587628866,1.77,a-cure-i1,2023-24,Everett - Devens School,00930030, 0.0, 4.1, 18.4, 53.1, 2.0, 0.0, 22.4, 26.5, 71.4, 2.0,77.6,8.6 +2.315294117647059,2.32,a-cure-i1,2023-24,Everett - Everett High,00930505, 0.2, 4.8, 14.0, 64.3, 1.6, 0.1, 15.0, 49.5, 50.5, 0.0,85.0,12.3 +1.225305216426193,1.23,a-cure-i1,2023-24,Everett - George Keverian School,00930028, 0.1, 3.7, 11.5, 73.3, 1.5, 0.1, 9.9, 50.4, 49.5, 0.1,90.1,6.8999999999999995 +1.304964539007092,1.3,a-cure-i1,2023-24,Everett - Lafayette School,00930038, 0.1, 7.0, 14.6, 61.6, 1.3, 0.0, 15.4, 49.4, 50.6, 0.0,84.6,6.8999999999999995 +1.0442890442890442,1.04,a-cure-i1,2023-24,Everett - Madeline English School,00930018, 0.1, 4.1, 13.6, 66.5, 1.4, 0.0, 14.2, 48.8, 51.2, 0.0,85.8,5.6 +1,1,a-cure-i1,2023-24,Everett - Parlin School,00930058, 0.0, 3.6, 9.8, 79.0, 0.4, 0.0, 7.3, 51.3, 48.7, 0.0,92.7,3.7 +1.1746384872080087,1.17,a-cure-i1,2023-24,Everett - Sumner G. Whittier School,00930010, 0.8, 2.8, 8.4, 76.5, 1.5, 0.0, 10.1, 48.9, 51.1, 0.0,89.9,6.6 +2.6824085005903187,2.68,a-cure-i1,2023-24,Everett - Webster Extension,00930001, 0.0, 19.4, 13.1, 51.4, 0.9, 0.0, 15.3, 45.5, 54.5, 0.0,84.7,14.2 +1,1,a-cure-i1,2023-24,Everett - Webster School,00930015, 0.0, 4.4, 11.7, 63.6, 0.9, 0.0, 19.4, 45.7, 54.3, 0.0,80.6,1.1 +7.61904761904762,5,a-cure-i1,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.4, 1.2, 4.8, 80.2, 1.2, 0.4, 11.8, 48.8, 51.2, 0.0,88.2,42.00000000000001 +1,1,a-cure-i1,2023-24,Fairhaven - East Fairhaven,00940010, 0.7, 1.6, 1.3, 10.5, 6.2, 0.0, 79.7, 51.3, 48.7, 0.0,20.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Fairhaven - Fairhaven High,00940505, 0.3, 2.4, 1.7, 8.1, 3.7, 0.0, 83.8, 48.1, 51.8, 0.2,16.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Fairhaven - Hastings Middle,00940305, 0.7, 2.1, 3.0, 5.6, 4.0, 0.0, 84.6, 47.9, 52.1, 0.0,15.400000000000006,2.6 +1,1,a-cure-i1,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 2.8, 2.3, 8.1, 5.5, 0.0, 81.3, 50.2, 49.8, 0.0,18.700000000000003,0.0 +2.2816399286987523,2.28,a-cure-i1,2023-24,Fall River - B M C Durfee High,00950505, 0.2, 4.0, 11.2, 32.2, 8.4, 0.0, 43.9, 51.0, 48.8, 0.2,56.1,8.0 +1,1,a-cure-i1,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.1, 2.7, 11.0, 41.0, 8.0, 0.1, 36.9, 50.2, 49.8, 0.0,63.1,1.9 +4.530693069306931,4.53,a-cure-i1,2023-24,Fall River - Early Learning Center,00950001, 0.0, 3.2, 8.4, 29.5, 9.5, 0.0, 49.5, 38.9, 61.1, 0.0,50.5,14.3 +1,1,a-cure-i1,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, 3.7, 2.8, 38.9, 7.4, 0.0, 47.2, 39.8, 60.2, 0.0,52.8,0.0 +2.154351395730706,2.15,a-cure-i1,2023-24,Fall River - Henry Lord Community School,00950017, 0.1, 1.8, 12.0, 36.8, 10.0, 0.1, 39.1, 46.9, 53.1, 0.0,60.9,8.2 +1,1,a-cure-i1,2023-24,Fall River - James Tansey,00950140, 0.0, 3.3, 7.8, 19.0, 10.1, 0.0, 59.8, 49.0, 50.7, 0.3,40.2,0.0 +1,1,a-cure-i1,2023-24,Fall River - John J Doran,00950045, 0.0, 0.2, 13.3, 34.1, 12.7, 0.0, 39.7, 45.0, 55.0, 0.0,60.3,0.6 +1,1,a-cure-i1,2023-24,Fall River - Letourneau Elementary School,00950013, 0.3, 2.3, 10.8, 38.3, 7.0, 0.3, 40.9, 47.7, 52.3, 0.0,59.1,3.3 +3.30791788856305,3.31,a-cure-i1,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 1.7, 16.1, 41.5, 8.9, 0.0, 31.8, 50.0, 50.0, 0.0,68.2,14.100000000000001 +3.0862944162436547,3.09,a-cure-i1,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.3, 4.2, 12.2, 34.0, 8.4, 0.0, 40.9, 47.4, 52.6, 0.0,59.1,11.4 +2.8693957115009745,2.87,a-cure-i1,2023-24,Fall River - Morton Middle,00950315, 0.1, 2.9, 12.5, 25.8, 9.9, 0.0, 48.7, 45.4, 54.6, 0.0,51.3,9.2 +1,1,a-cure-i1,2023-24,Fall River - North End Elementary,00950005, 0.2, 1.2, 12.2, 22.5, 11.9, 0.0, 52.0, 49.1, 50.9, 0.0,48.0,0.0 +1.2730109204368174,1.27,a-cure-i1,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.5, 18.5, 34.2, 10.9, 0.0, 35.9, 40.2, 59.8, 0.0,64.1,5.1 +3.447368421052632,3.45,a-cure-i1,2023-24,Fall River - Samuel Watson,00950145, 0.0, 0.8, 17.0, 29.4, 13.2, 0.4, 39.2, 50.6, 49.4, 0.0,60.8,13.1 +2.446680080482897,2.45,a-cure-i1,2023-24,Fall River - Spencer Borden,00950130, 0.0, 5.7, 13.3, 22.3, 8.3, 0.0, 50.3, 44.1, 55.9, 0.0,49.7,7.6 +6.088495575221239,5,a-cure-i1,2023-24,Fall River - Stone PK-12 School,00950340, 1.6, 0.0, 11.3, 22.6, 9.7, 0.0, 54.8, 25.8, 74.2, 0.0,45.2,17.2 +5.856905158069884,5,a-cure-i1,2023-24,Fall River - Talbot Innovation School,00950305, 0.4, 2.7, 10.4, 39.0, 7.5, 0.2, 39.9, 49.6, 50.4, 0.0,60.1,22.0 +1,1,a-cure-i1,2023-24,Fall River - William S Greene,00950065, 0.4, 3.1, 10.3, 40.2, 8.9, 0.3, 36.8, 49.8, 50.2, 0.0,63.2,2.9 +4.616393442622951,4.62,a-cure-i1,2023-24,Falmouth - East Falmouth Elementary,00960005, 1.0, 3.0, 7.7, 9.7, 9.1, 0.0, 69.5, 41.9, 58.1, 0.0,30.5,8.8 +1,1,a-cure-i1,2023-24,Falmouth - Falmouth High,00960505, 1.5, 1.2, 7.0, 8.9, 5.4, 0.0, 75.9, 47.9, 51.7, 0.4,24.099999999999994,4.0 +1,1,a-cure-i1,2023-24,Falmouth - Lawrence,00960405, 1.7, 0.9, 4.8, 10.2, 7.6, 0.0, 74.7, 49.5, 50.3, 0.2,25.299999999999997,4.2 +3.4909090909090907,3.49,a-cure-i1,2023-24,Falmouth - Morse Pond School,00960305, 0.6, 1.7, 5.8, 12.1, 7.3, 0.0, 72.5, 48.1, 51.7, 0.2,27.5,6.0 +1,1,a-cure-i1,2023-24,Falmouth - Mullen-Hall,00960020, 1.1, 2.7, 1.6, 13.8, 7.7, 0.0, 73.1, 48.4, 51.6, 0.0,26.900000000000006,3.2 +13.3953488372093,5,a-cure-i1,2023-24,Falmouth - North Falmouth Elementary,00960030, 0.7, 1.3, 1.3, 7.7, 6.1, 0.0, 82.8, 54.2, 45.8, 0.0,17.200000000000003,14.399999999999999 +3.18819188191882,3.19,a-cure-i1,2023-24,Falmouth - Teaticket,00960015, 0.8, 1.6, 5.5, 11.0, 8.2, 0.0, 72.9, 40.8, 58.0, 1.2,27.099999999999994,5.4 +1,1,a-cure-i1,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 5.4, 0.8, 0.0, 93.8, 51.9, 48.1, 0.0,6.200000000000003,4.9 +1.7708333333333335,1.77,a-cure-i1,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.4, 4.2, 8.5, 55.9, 7.8, 0.0, 23.2, 45.7, 54.3, 0.0,76.8,8.5 +1.7919999999999996,1.79,a-cure-i1,2023-24,Fitchburg - Crocker Elementary,00970016, 0.3, 3.2, 7.9, 56.0, 7.6, 0.0, 25.0, 51.3, 48.7, 0.0,75.0,8.399999999999999 +4.141414141414141,4.14,a-cure-i1,2023-24,Fitchburg - Fitchburg High,00970505, 0.1, 5.6, 8.3, 58.6, 6.6, 0.0, 20.8, 50.8, 48.6, 0.5,79.2,20.5 +4.1659513590844055,4.17,a-cure-i1,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, 1.8, 5.8, 57.5, 4.9, 0.0, 30.1, 50.0, 50.0, 0.0,69.9,18.2 +1,1,a-cure-i1,2023-24,Fitchburg - McKay Elementary School,00970340, 0.3, 4.3, 6.0, 64.0, 6.8, 0.0, 18.5, 47.6, 52.4, 0.0,81.5,4.1 +1.7165562913907289,1.72,a-cure-i1,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, 4.1, 6.1, 57.2, 8.0, 0.0, 24.5, 47.2, 52.6, 0.2,75.5,8.100000000000001 +2.2823179791976225,2.28,a-cure-i1,2023-24,Fitchburg - Reingold Elementary,00970043, 0.0, 4.7, 4.2, 53.3, 5.1, 0.0, 32.7, 44.3, 55.7, 0.0,67.3,9.6 +2.9379128137384414,2.94,a-cure-i1,2023-24,Fitchburg - South Street Early Learning Center,00970060, 0.0, 5.0, 7.1, 57.4, 6.1, 0.2, 24.3, 44.2, 55.8, 0.0,75.7,13.900000000000002 +1,1,a-cure-i1,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 98.8, 48.2, 51.8, 0.0,1.2000000000000028,0.0 +14.235294117647065,5,a-cure-i1,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.9, 1.4, 7.0, 4.2, 0.0, 86.4, 47.2, 50.0, 2.8,13.599999999999994,12.1 +1,1,a-cure-i1,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 5.0, 5.4, 6.1, 5.0, 0.0, 78.6, 41.1, 58.9, 0.0,21.400000000000006,3.4 +1,1,a-cure-i1,2023-24,Foxborough - Foxborough High,00990505, 0.3, 4.2, 10.0, 8.5, 2.6, 0.0, 74.4, 48.7, 51.1, 0.1,25.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Foxborough - John J Ahern,00990405, 0.3, 7.0, 8.2, 8.9, 5.2, 0.1, 70.3, 47.9, 52.1, 0.0,29.700000000000003,3.5 +3.163498098859316,3.16,a-cure-i1,2023-24,Foxborough - Mabelle M Burrell,00990015, 0.0, 5.7, 6.9, 9.1, 4.5, 0.0, 73.7, 45.0, 55.0, 0.0,26.299999999999997,5.2 +1,1,a-cure-i1,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 7.8, 9.4, 9.9, 4.0, 0.0, 68.8, 43.5, 56.5, 0.0,31.200000000000003,0.0 +3.6576787807737396,3.66,a-cure-i1,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.4, 5.5, 70.3, 4.8, 4.2, 0.1, 14.7, 52.8, 47.2, 0.0,85.3,19.5 +12.306264501160092,5,a-cure-i1,2023-24,Framingham - Barbieri Elementary,01000035, 0.0, 0.2, 1.5, 80.7, 3.8, 0.0, 13.8, 52.7, 47.3, 0.0,86.2,66.3 +6.438502673796792,5,a-cure-i1,2023-24,Framingham - Brophy,01000006, 0.2, 4.3, 5.7, 59.6, 5.1, 0.0, 25.2, 46.5, 53.3, 0.2,74.8,30.1 +7.127012522361359,5,a-cure-i1,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 2.7, 8.2, 40.8, 4.3, 0.0, 44.1, 45.2, 54.8, 0.0,55.9,24.9 +7.258687258687259,5,a-cure-i1,2023-24,Framingham - Charlotte A Dunning,01000007, 0.0, 7.8, 5.7, 32.6, 5.7, 0.0, 48.2, 48.4, 51.6, 0.0,51.8,23.5 +4.830188679245284,4.83,a-cure-i1,2023-24,Framingham - Framingham High School,01000515, 0.0, 4.4, 6.5, 43.5, 3.9, 0.0, 41.7, 49.3, 50.1, 0.6,58.3,17.6 +6.197991391678622,5,a-cure-i1,2023-24,Framingham - Fuller Middle,01000305, 0.0, 1.8, 6.7, 56.7, 4.4, 0.0, 30.3, 50.5, 49.3, 0.2,69.7,27.0 +5.455797933409874,5,a-cure-i1,2023-24,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.8, 7.8, 76.5, 1.9, 0.0, 12.9, 46.3, 53.5, 0.2,87.1,29.7 +1,1,a-cure-i1,2023-24,Framingham - Hemenway,01000015, 0.0, 10.0, 6.3, 28.0, 9.4, 0.0, 46.3, 47.2, 52.6, 0.2,53.7,4.0 +3.6684303350970016,3.67,a-cure-i1,2023-24,Framingham - Juniper Hill School,01000001, 0.0, 5.8, 3.2, 39.7, 7.9, 0.0, 43.3, 39.4, 60.6, 0.0,56.7,13.0 +1,1,a-cure-i1,2023-24,Framingham - King Elementary School,01000005, 0.0, 7.6, 4.9, 37.9, 6.6, 0.0, 43.0, 49.6, 49.6, 0.7,57.0,0.0 +1.7376586741889986,1.74,a-cure-i1,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 4.2, 9.0, 52.8, 4.8, 0.0, 29.1, 47.5, 52.5, 0.0,70.9,7.7 +1,1,a-cure-i1,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.0, 7.9, 55.8, 7.1, 0.0, 27.2, 46.4, 53.6, 0.0,72.8,3.6999999999999997 +1.3075780089153046,1.31,a-cure-i1,2023-24,Framingham - Potter Road,01000039, 0.0, 1.5, 4.3, 57.0, 4.5, 0.0, 32.7, 49.3, 50.7, 0.0,67.3,5.5 +5.700516351118761,5,a-cure-i1,2023-24,Framingham - Walsh Middle,01000310, 0.0, 4.1, 5.4, 43.6, 5.0, 0.0, 41.9, 51.7, 47.8, 0.5,58.1,20.700000000000003 +17.13475177304965,5,a-cure-i1,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 1.9, 2.4, 4.6, 5.1, 0.0, 85.9, 50.3, 43.8, 5.9,14.099999999999994,15.1 +1,1,a-cure-i1,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, 3.4, 5.6, 5.9, 2.8, 0.6, 81.7, 47.5, 52.5, 0.0,18.299999999999997,1.2 +1,1,a-cure-i1,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 2.0, 26.3, 5.9, 5.3, 2.0, 1.3, 57.2, 38.2, 61.8, 0.0,42.8,0.0 +1,1,a-cure-i1,2023-24,Franklin - Franklin High,01010505, 0.1, 8.8, 3.4, 6.8, 2.5, 0.3, 78.1, 48.0, 51.5, 0.5,21.900000000000006,1.7999999999999998 +1,1,a-cure-i1,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 5.0, 3.4, 7.0, 1.6, 0.4, 82.6, 50.2, 49.8, 0.0,17.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Franklin - Horace Mann,01010405, 0.3, 8.3, 1.3, 4.9, 1.8, 0.5, 82.9, 47.5, 52.5, 0.0,17.099999999999994,1.1 +1,1,a-cure-i1,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 10.6, 1.2, 4.2, 2.7, 0.6, 80.7, 43.8, 55.9, 0.3,19.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 5.7, 2.1, 7.8, 5.7, 0.3, 78.4, 44.1, 55.3, 0.6,21.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Franklin - Oak Street Elementary,01010030, 0.3, 8.0, 3.6, 7.8, 3.4, 0.5, 76.4, 48.7, 51.3, 0.0,23.599999999999994,4.2 +1,1,a-cure-i1,2023-24,Franklin - Parmenter,01010032, 0.7, 7.2, 5.2, 12.0, 2.1, 0.3, 72.5, 48.5, 51.5, 0.0,27.5,0.0 +1,1,a-cure-i1,2023-24,Franklin - Remington Middle,01010310, 0.0, 7.1, 6.8, 9.4, 3.4, 0.9, 72.4, 47.9, 52.1, 0.0,27.599999999999994,4.4 +1,1,a-cure-i1,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.2, 0.2, 0.6, 6.1, 3.2, 0.3, 89.4, 43.0, 56.5, 0.5,10.599999999999994,2.8 +1,1,a-cure-i1,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 1.2, 2.0, 2.3, 1.8, 0.0, 92.7, 52.0, 47.6, 0.4,7.299999999999997,3.5 +1,1,a-cure-i1,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 1.3, 4.1, 3.0, 3.2, 0.2, 88.3, 48.6, 51.4, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 0.3, 1.1, 0.8, 3.4, 3.7, 0.0, 90.8, 49.3, 50.7, 0.0,9.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 1.1, 3.8, 3.5, 2.7, 0.0, 88.8, 50.1, 49.9, 0.0,11.200000000000003,4.7 +1,1,a-cure-i1,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.4, 1.9, 5.2, 3.9, 0.0, 88.6, 46.8, 53.0, 0.2,11.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Frontier - Frontier Regional,06700505, 0.0, 3.5, 2.0, 7.3, 7.1, 0.0, 80.2, 47.3, 51.7, 1.0,19.799999999999997,2.0 +1,1,a-cure-i1,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.8, 7.9, 20.5, 8.7, 0.0, 62.2, 55.9, 43.3, 0.8,37.8,0.0 +1,1,a-cure-i1,2023-24,Gardner - Gardner Elementary School,01030001, 0.3, 1.1, 3.7, 31.1, 6.8, 0.0, 56.9, 45.9, 54.0, 0.1,43.1,3.5999999999999996 +3.278048780487805,3.28,a-cure-i1,2023-24,Gardner - Gardner High,01030505, 0.2, 1.7, 4.7, 26.8, 7.5, 0.0, 59.0, 48.2, 50.3, 1.5,41.0,8.4 +1,1,a-cure-i1,2023-24,Gardner - Gardner Middle School,01030405, 0.4, 1.2, 4.1, 29.0, 6.6, 0.0, 58.6, 48.9, 50.7, 0.4,41.4,0.0 +1,1,a-cure-i1,2023-24,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 3.4, 0.0, 0.0, 96.6, 48.7, 51.3, 0.0,3.4000000000000057,0.0 +7.804878048780489,5,a-cure-i1,2023-24,Gateway - Gateway Regional High,06720505, 0.6, 0.0, 1.9, 9.3, 0.6, 0.0, 87.7, 50.0, 50.0, 0.0,12.299999999999997,6.0 +19.12195121951219,5,a-cure-i1,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.5, 0.0, 5.1, 2.6, 0.0, 91.8, 47.4, 52.0, 0.5,8.200000000000003,9.8 +10.29885057471264,5,a-cure-i1,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 5.8, 2.5, 0.4, 91.3, 47.7, 52.3, 0.0,8.700000000000003,5.6 +1,1,a-cure-i1,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 1.0, 1.0, 10.0, 1.4, 0.7, 85.8, 49.5, 50.5, 0.0,14.200000000000003,4.9 +1,1,a-cure-i1,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 1.1, 1.6, 3.7, 2.1, 0.0, 91.5, 47.6, 52.4, 0.0,8.5,2.1 +1,1,a-cure-i1,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.7, 0.4, 3.7, 2.6, 0.0, 92.5, 48.0, 52.0, 0.0,7.5,0.0 +1,1,a-cure-i1,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 1.1, 3.4, 0.0, 95.5, 43.2, 56.8, 0.0,4.5,0.0 +1,1,a-cure-i1,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.9, 0.9, 7.0, 7.0, 0.0, 84.2, 47.4, 52.6, 0.0,15.799999999999997,0.0 +4.965517241379311,4.97,a-cure-i1,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.8, 14.3, 4.6, 0.4, 79.7, 42.2, 56.5, 1.3,20.299999999999997,6.300000000000001 +1,1,a-cure-i1,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.7, 1.5, 0.7, 19.7, 7.3, 0.0, 70.1, 48.9, 51.1, 0.0,29.900000000000006,0.0 +3.908794788273615,3.91,a-cure-i1,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.5, 1.9, 20.8, 7.5, 0.0, 69.3, 42.9, 57.1, 0.0,30.700000000000003,7.5 +3.3817034700315456,3.38,a-cure-i1,2023-24,Gill-Montague - Turners Fall High,06740505, 0.5, 0.5, 2.0, 18.8, 9.9, 0.0, 68.3, 47.0, 52.5, 0.5,31.700000000000003,6.7 +4.578241430700447,4.58,a-cure-i1,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.2, 1.2, 13.7, 47.8, 4.2, 0.0, 32.9, 53.4, 46.6, 0.0,67.1,19.2 +1,1,a-cure-i1,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 1.0, 2.4, 23.0, 3.8, 0.0, 69.7, 53.3, 46.7, 0.0,30.299999999999997,0.0 +3.5976331360946747,3.6,a-cure-i1,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, 2.9, 2.7, 22.4, 5.3, 0.4, 66.2, 50.4, 49.6, 0.0,33.8,7.6 +1,1,a-cure-i1,2023-24,Gloucester - Gloucester High,01070505, 0.6, 1.7, 1.1, 15.1, 2.4, 0.1, 78.9, 47.2, 52.3, 0.5,21.099999999999994,0.5 +1,1,a-cure-i1,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 3.5, 1.8, 11.4, 3.5, 0.0, 79.8, 43.0, 57.0, 0.0,20.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 1.9, 4.8, 6.7, 0.0, 86.5, 47.6, 52.4, 0.0,13.5,0.0 +1,1,a-cure-i1,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.2, 0.6, 1.9, 15.2, 4.3, 0.3, 77.5, 52.1, 47.9, 0.0,22.5,0.0 +1,1,a-cure-i1,2023-24,Gloucester - West Parish,01070050, 0.3, 0.8, 0.8, 7.8, 4.6, 0.8, 84.9, 47.3, 52.7, 0.0,15.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100.0,0.0 +3.526530612244898,3.53,a-cure-i1,2023-24,Grafton - Grafton High School,01100505, 0.4, 10.5, 2.4, 8.6, 2.4, 0.1, 75.5, 48.7, 51.1, 0.2,24.5,5.4 +3.4705882352941173,3.47,a-cure-i1,2023-24,Grafton - Grafton Middle,01100305, 0.4, 13.5, 2.2, 6.8, 4.1, 0.2, 72.8, 46.2, 53.6, 0.2,27.200000000000003,5.9 +1,1,a-cure-i1,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.5, 15.4, 2.7, 8.5, 2.5, 0.0, 70.3, 46.2, 53.8, 0.0,29.700000000000003,2.8 +1,1,a-cure-i1,2023-24,Grafton - North Grafton Elementary,01100025, 1.2, 17.9, 4.0, 7.9, 3.6, 0.0, 65.5, 48.4, 51.6, 0.0,34.5,0.0 +1,1,a-cure-i1,2023-24,Grafton - North Street Elementary School,01100030, 0.7, 16.4, 3.5, 6.5, 2.6, 0.0, 70.2, 49.5, 50.4, 0.2,29.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Grafton - South Grafton Elementary,01100005, 1.0, 17.5, 2.4, 7.2, 3.4, 0.0, 68.4, 49.5, 50.2, 0.3,31.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Granby - East Meadow,01110004, 0.2, 2.5, 0.7, 10.0, 4.7, 0.0, 81.8, 48.0, 52.0, 0.0,18.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Granby - Granby Jr Sr High School,01110505, 0.3, 1.7, 0.0, 13.4, 3.1, 0.0, 81.4, 47.4, 52.6, 0.0,18.599999999999994,4.7 +1,1,a-cure-i1,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.1, 5.9, 7.6, 26.3, 8.0, 0.3, 51.9, 53.8, 45.0, 1.2,48.1,0.0 +1,1,a-cure-i1,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.3, 2.5, 3.9, 17.2, 6.2, 0.0, 70.0, 42.0, 57.3, 0.7,30.0,2.9000000000000004 +3.169811320754717,3.17,a-cure-i1,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.8, 1.8, 81.6, 0.6, 0.0, 15.2, 53.1, 46.7, 0.2,84.8,16.8 +1.7476923076923077,1.75,a-cure-i1,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.2, 20.0, 7.6, 33.4, 3.8, 0.0, 35.0, 48.4, 50.6, 1.0,65.0,7.1 +2.905908096280087,2.91,a-cure-i1,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.3, 0.7, 9.5, 29.2, 6.0, 0.1, 54.3, 48.7, 51.2, 0.1,45.7,8.299999999999999 +1,1,a-cure-i1,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 11.9, 3.3, 0.0, 84.8, 42.9, 57.1, 0.0,15.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Greenfield - Federal Street School,01140010, 0.0, 1.1, 2.7, 24.7, 4.9, 0.0, 66.5, 50.5, 49.5, 0.0,33.5,0.0 +3.5801104972375692,3.58,a-cure-i1,2023-24,Greenfield - Greenfield High,01140505, 0.0, 2.0, 4.5, 24.1, 5.6, 0.0, 63.8, 50.2, 49.8, 0.0,36.2,8.100000000000001 +5.962732919254658,5,a-cure-i1,2023-24,Greenfield - Greenfield Middle,01140305, 0.3, 2.3, 3.7, 20.3, 5.6, 0.0, 67.8, 44.2, 55.8, 0.0,32.2,12.0 +2.6666666666666665,2.67,a-cure-i1,2023-24,Greenfield - Newton School,01140035, 0.0, 0.0, 6.0, 31.1, 4.4, 1.1, 57.4, 53.6, 46.4, 0.0,42.6,7.1 +1,1,a-cure-i1,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.1, 2.2, 17.8, 7.8, 0.0, 71.1, 44.4, 55.6, 0.0,28.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 2.7, 4.0, 2.7, 4.0, 0.0, 86.7, 38.7, 61.3, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.4, 9.4, 2.0, 4.1, 5.1, 0.2, 78.7, 51.0, 49.0, 0.0,21.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.1, 7.7, 1.7, 2.8, 2.2, 0.1, 85.3, 49.3, 50.2, 0.4,14.700000000000003,2.4 +1,1,a-cure-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.4, 8.0, 2.2, 3.9, 4.3, 0.1, 80.9, 46.7, 53.3, 0.0,19.099999999999994,2.1 +1,1,a-cure-i1,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 7.2, 0.6, 6.9, 3.1, 0.0, 82.2, 43.8, 56.3, 0.0,17.799999999999997,0.0 +7.924528301886792,5,a-cure-i1,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 5.5, 3.4, 9.6, 2.7, 0.0, 78.8, 47.3, 52.7, 0.0,21.200000000000003,10.5 +4.971428571428571,4.97,a-cure-i1,2023-24,Hadley - Hopkins Academy,01170505, 0.5, 4.7, 4.3, 12.8, 3.3, 2.4, 72.0, 44.5, 55.5, 0.0,28.0,8.7 +1,1,a-cure-i1,2023-24,Halifax - Halifax Elementary,01180005, 0.2, 0.0, 1.5, 5.3, 1.8, 0.0, 91.3, 46.6, 53.4, 0.0,8.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 4.2, 1.2, 8.9, 1.5, 0.0, 84.2, 45.9, 54.1, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 1.2, 0.0, 6.3, 2.4, 0.0, 90.2, 50.2, 49.8, 0.0,9.799999999999997,0.0 +10.992366412213745,5,a-cure-i1,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 4.5, 0.7, 4.1, 3.2, 0.7, 86.9, 52.9, 46.8, 0.2,13.099999999999994,9.0 +15.05185185185185,5,a-cure-i1,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 4.8, 0.0, 5.0, 3.7, 0.0, 86.5, 56.3, 43.7, 0.0,13.5,12.7 +1,1,a-cure-i1,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 4.8, 0.9, 5.7, 2.4, 0.0, 86.1, 48.6, 51.4, 0.0,13.900000000000006,0.0 +2.503259452411995,2.5,a-cure-i1,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.5, 4.0, 26.8, 42.0, 3.3, 0.2, 23.3, 45.8, 53.9, 0.4,76.7,12.0 +4.038240917782027,4.04,a-cure-i1,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.5, 2.8, 12.7, 34.5, 1.8, 0.0, 47.7, 42.9, 57.1, 0.0,52.3,13.200000000000001 +1,1,a-cure-i1,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.4, 2.5, 9.8, 4.3, 0.0, 83.0, 50.0, 50.0, 0.0,17.0,0.0 +4.930232558139534,4.93,a-cure-i1,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.3, 0.8, 5.0, 5.6, 5.6, 0.0, 82.8, 43.1, 56.9, 0.0,17.200000000000003,5.3 +1,1,a-cure-i1,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.1, 3.3, 4.3, 11.6, 5.1, 0.0, 75.6, 50.8, 49.1, 0.1,24.400000000000006,1.3 +1,1,a-cure-i1,2023-24,Hampden-Wilbraham - Soule Road,06800030, 0.0, 2.5, 3.1, 8.0, 5.0, 0.6, 80.8, 47.4, 52.6, 0.0,19.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 1.7, 2.7, 7.9, 3.4, 0.0, 84.2, 50.2, 49.8, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 2.8, 3.1, 10.2, 3.1, 0.0, 80.7, 48.2, 51.8, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Hampshire - Hampshire Regional High,06830505, 0.1, 1.3, 0.7, 4.5, 3.0, 0.0, 90.3, 51.6, 47.4, 1.0,9.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 3.4, 1.7, 8.6, 1.7, 0.0, 84.5, 69.0, 31.0, 0.0,15.5,0.0 +1,1,a-cure-i1,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 1.8, 1.6, 3.1, 3.3, 0.0, 90.2, 46.7, 53.3, 0.0,9.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Hanover - Center Elementary,01220005, 0.2, 1.6, 1.9, 3.2, 1.3, 0.0, 91.9, 51.3, 48.6, 0.2,8.099999999999994,3.2 +1,1,a-cure-i1,2023-24,Hanover - Hanover High,01220505, 0.0, 2.3, 1.8, 2.5, 1.0, 0.0, 92.4, 49.7, 50.1, 0.1,7.599999999999994,4.0 +1,1,a-cure-i1,2023-24,Hanover - Hanover Middle,01220305, 0.0, 2.3, 0.4, 2.9, 1.5, 0.0, 93.0, 46.9, 53.1, 0.0,7.0,3.6 +1,1,a-cure-i1,2023-24,Harvard - Hildreth Elementary School,01250005, 0.2, 15.2, 2.7, 5.2, 8.4, 0.0, 68.3, 45.2, 54.8, 0.0,31.700000000000003,3.3 +6.095238095238096,5,a-cure-i1,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 14.5, 1.8, 4.3, 4.6, 0.0, 74.8, 53.2, 46.5, 0.3,25.200000000000003,9.600000000000001 +1,1,a-cure-i1,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 14.3, 4.4, 4.0, 4.8, 0.0, 72.6, 49.6, 50.4, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 1.0, 0.5, 2.0, 5.1, 0.0, 91.3, 51.5, 48.5, 0.0,8.700000000000003,0.0 +20.4,5,a-cure-i1,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.8, 0.0, 1.6, 1.6, 0.0, 96.0, 47.6, 52.4, 0.0,4.0,5.1 +1,1,a-cure-i1,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 2.4, 12.2, 48.8, 2.4, 0.0, 34.1, 22.0, 78.0, 0.0,65.9,0.0 +3.8591549295774654,3.86,a-cure-i1,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 1.5, 5.2, 48.4, 1.7, 0.0, 43.2, 46.7, 53.3, 0.0,56.8,13.700000000000001 +1,1,a-cure-i1,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 2.0, 5.1, 30.2, 2.9, 0.0, 59.9, 47.5, 52.5, 0.0,40.1,3.4 +1,1,a-cure-i1,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, 1.6, 5.0, 57.1, 2.7, 0.0, 33.7, 50.0, 50.0, 0.0,66.3,4.2 +2.9952,3.0,a-cure-i1,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 2.3, 3.8, 53.3, 3.2, 0.0, 37.5, 49.0, 51.0, 0.0,62.5,11.700000000000001 +5.840776699029126,5,a-cure-i1,2023-24,Haverhill - Gateway Academy,01280515, 0.0, 1.0, 1.0, 48.5, 1.0, 0.0, 48.5, 47.6, 50.5, 1.9,51.5,18.8 +1,1,a-cure-i1,2023-24,Haverhill - Golden Hill,01280026, 0.2, 1.3, 5.3, 45.2, 2.3, 0.0, 45.8, 51.5, 48.5, 0.0,54.2,0.0 +1,1,a-cure-i1,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 11.8, 47.1, 2.9, 0.0, 38.2, 26.5, 73.5, 0.0,61.8,0.0 +3.4174757281553396,3.42,a-cure-i1,2023-24,Haverhill - Haverhill High,01280505, 0.3, 1.8, 5.7, 41.7, 1.9, 0.2, 48.5, 47.9, 51.9, 0.3,51.5,11.0 +1,1,a-cure-i1,2023-24,Haverhill - John G Whittier,01280085, 0.6, 1.0, 7.0, 46.2, 3.2, 0.0, 42.0, 49.8, 50.0, 0.2,58.0,3.8 +1,1,a-cure-i1,2023-24,Haverhill - Moody,01280045, 0.7, 3.3, 8.5, 49.7, 0.7, 0.7, 36.6, 40.5, 59.5, 0.0,63.4,2.1 +1,1,a-cure-i1,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.7, 0.7, 8.1, 57.4, 1.4, 0.0, 31.8, 42.6, 57.4, 0.0,68.2,4.1 +1,1,a-cure-i1,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.4, 0.6, 7.8, 51.5, 2.4, 0.2, 37.1, 47.5, 52.5, 0.0,62.9,0.0 +1,1,a-cure-i1,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 2.3, 8.2, 56.9, 2.3, 0.0, 30.4, 51.2, 48.8, 0.0,69.6,3.8 +1,1,a-cure-i1,2023-24,Haverhill - Tilton,01280075, 0.2, 0.4, 4.5, 64.6, 2.7, 0.4, 27.1, 45.5, 54.5, 0.0,72.9,0.0 +1,1,a-cure-i1,2023-24,Haverhill - Walnut Square,01280080, 0.0, 1.2, 8.5, 34.8, 1.8, 0.0, 53.7, 47.0, 53.0, 0.0,46.3,4.3 +1,1,a-cure-i1,2023-24,Hawlemont - Hawlemont Regional,06850005, 1.8, 1.8, 0.0, 1.8, 1.8, 0.0, 92.9, 51.8, 48.2, 0.0,7.099999999999994,0.0 +9.904000000000002,5,a-cure-i1,2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 72.6, 24.2, 3.2, 0.0, 0.0, 43.2, 56.8, 0.0,100.0,61.900000000000006 +2.7072243346007605,2.71,a-cure-i1,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 6.9, 38.5, 7.2, 0.0, 47.4, 52.0, 48.0, 0.0,52.6,8.9 +1,1,a-cure-i1,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.8, 0.0, 7.3, 9.6, 0.0, 80.3, 43.1, 54.1, 2.8,19.700000000000003,3.0 +1,1,a-cure-i1,2023-24,Hingham - East Elementary School,01310005, 0.2, 1.5, 1.5, 1.7, 2.5, 0.0, 92.5, 45.3, 54.7, 0.0,7.5,3.1 +1,1,a-cure-i1,2023-24,Hingham - Hingham High,01310505, 0.1, 3.1, 2.2, 4.5, 3.2, 0.0, 86.9, 48.6, 50.7, 0.6,13.099999999999994,1.0 +7.608391608391611,5,a-cure-i1,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 3.1, 1.2, 5.2, 4.8, 0.0, 85.7, 49.3, 50.7, 0.0,14.299999999999997,6.800000000000001 +1,1,a-cure-i1,2023-24,Hingham - Plymouth River,01310019, 0.0, 1.7, 3.9, 5.9, 2.5, 0.0, 86.0, 48.9, 51.1, 0.0,14.0,0.0 +1,1,a-cure-i1,2023-24,Hingham - South Elementary,01310020, 0.0, 4.9, 2.4, 1.4, 1.2, 0.0, 90.1, 49.5, 50.5, 0.0,9.900000000000006,3.9 +1,1,a-cure-i1,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 2.3, 1.0, 2.8, 6.4, 0.3, 87.2, 47.3, 52.7, 0.0,12.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.3, 8.0, 27.7, 17.5, 7.2, 0.0, 39.4, 46.3, 53.4, 0.3,60.6,1.0 +1,1,a-cure-i1,2023-24,Holbrook - John F Kennedy,01330018, 0.6, 4.6, 22.9, 18.1, 8.4, 0.1, 45.3, 47.7, 52.3, 0.0,54.7,3.7 +1,1,a-cure-i1,2023-24,Holland - Holland Elementary,01350005, 0.4, 1.3, 1.3, 7.1, 2.2, 0.0, 87.6, 52.2, 47.8, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Holliston - Holliston High,01360505, 0.1, 8.7, 0.7, 8.5, 3.2, 0.2, 78.5, 49.7, 49.3, 1.0,21.5,3.8 +8.291497975708502,5,a-cure-i1,2023-24,Holliston - Miller School,01360007, 0.0, 9.5, 1.7, 7.8, 5.7, 0.0, 75.3, 46.2, 53.6, 0.2,24.700000000000003,12.8 +1,1,a-cure-i1,2023-24,Holliston - Placentino Elementary,01360010, 0.3, 8.0, 1.3, 10.1, 8.0, 0.0, 72.3, 46.1, 53.6, 0.3,27.700000000000003,4.5 +5.586206896551723,5,a-cure-i1,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.2, 9.0, 0.8, 7.5, 5.6, 0.2, 76.8, 48.9, 50.7, 0.5,23.200000000000003,8.1 +14.184696569920845,5,a-cure-i1,2023-24,Holyoke - E N White Elementary,01370045, 0.0, 0.2, 1.6, 71.2, 2.9, 0.0, 24.2, 47.9, 52.1, 0.0,75.8,67.2 +3.0715835140997836,3.07,a-cure-i1,2023-24,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.3, 6.0, 84.1, 1.8, 0.0, 7.8, 44.3, 55.7, 0.0,92.2,17.700000000000003 +4.136674259681094,4.14,a-cure-i1,2023-24,Holyoke - Holyoke High,01370505, 0.0, 0.6, 3.4, 82.3, 1.4, 0.0, 12.2, 47.3, 52.6, 0.1,87.8,22.7 +3.5359116022099446,3.54,a-cure-i1,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, 1.0, 6.3, 80.9, 2.3, 0.0, 9.5, 47.0, 53.0, 0.0,90.5,20.0 +2.5365853658536586,2.54,a-cure-i1,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 1.5, 3.9, 83.4, 1.5, 0.0, 9.8, 43.4, 56.6, 0.0,90.2,14.3 +8.48356309650053,5,a-cure-i1,2023-24,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 3.5, 90.2, 0.7, 0.0, 5.7, 48.6, 51.4, 0.0,94.3,50.0 +8.74859075535513,5,a-cure-i1,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.6, 4.5, 82.0, 1.6, 0.0, 11.3, 46.2, 53.8, 0.0,88.7,48.5 +1,1,a-cure-i1,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.2, 4.5, 69.8, 3.3, 0.0, 21.1, 43.8, 56.2, 0.0,78.9,4.5 +2.745995423340961,2.75,a-cure-i1,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.5, 4.9, 79.5, 2.3, 0.2, 12.6, 45.8, 54.2, 0.0,87.4,15.0 +4.23728813559322,4.24,a-cure-i1,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 5.3, 86.4, 2.8, 0.0, 5.6, 48.3, 51.7, 0.0,94.4,25.0 +4.545073375262055,4.55,a-cure-i1,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.6, 1.3, 92.3, 1.2, 0.0, 4.6, 54.3, 45.7, 0.0,95.4,27.1 +1,1,a-cure-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.4, 2.4, 5.4, 5.1, 0.3, 85.4, 48.4, 51.6, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.7, 0.0, 6.0, 5.4, 1.7, 0.0, 86.3, 54.8, 45.2, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.3, 1.6, 5.2, 3.6, 0.0, 89.3, 45.0, 55.0, 0.0,10.700000000000003,0.0 +4.194174757281555,4.19,a-cure-i1,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.2, 1.6, 1.8, 14.1, 2.7, 0.2, 79.4, 48.8, 51.0, 0.2,20.599999999999994,5.4 +1,1,a-cure-i1,2023-24,Hopedale - Memorial,01380010, 0.5, 2.2, 0.7, 13.3, 6.2, 0.0, 77.0, 46.2, 53.6, 0.2,23.0,0.0 +1,1,a-cure-i1,2023-24,Hopedale - Park Street School,01380003, 0.0, 3.8, 0.0, 12.3, 6.6, 0.0, 77.4, 43.4, 56.6, 0.0,22.599999999999994,0.0 +2.747826086956522,2.75,a-cure-i1,2023-24,Hopkinton - Elmwood,01390010, 0.3, 32.6, 0.6, 5.8, 6.7, 0.0, 54.0, 44.1, 55.7, 0.2,46.0,7.9 +2.1196581196581197,2.12,a-cure-i1,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.1, 34.0, 0.6, 5.5, 6.6, 0.0, 53.2, 49.5, 50.5, 0.0,46.8,6.2 +3.606936416184972,3.61,a-cure-i1,2023-24,Hopkinton - Hopkinton High,01390505, 0.3, 23.1, 0.9, 5.8, 4.5, 0.0, 65.4, 48.0, 51.6, 0.4,34.599999999999994,7.800000000000001 +1,1,a-cure-i1,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.2, 32.8, 0.4, 4.7, 4.1, 0.0, 57.8, 50.4, 49.5, 0.1,42.2,4.4 +1,1,a-cure-i1,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 37.5, 1.0, 8.3, 8.3, 0.0, 44.8, 37.5, 62.5, 0.0,55.2,0.0 +1.890295358649789,1.89,a-cure-i1,2023-24,Hopkinton - Marathon Elementary School,01390005, 0.2, 32.6, 1.4, 5.4, 7.8, 0.0, 52.6, 49.7, 50.2, 0.2,47.4,5.6 +1,1,a-cure-i1,2023-24,Hudson - C A Farley,01410030, 0.0, 0.9, 4.1, 27.8, 2.7, 0.0, 64.5, 48.4, 51.6, 0.0,35.5,4.8 +4.132450331125828,4.13,a-cure-i1,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.2, 3.1, 22.5, 3.3, 0.0, 69.8, 50.3, 49.6, 0.2,30.200000000000003,7.8 +1,1,a-cure-i1,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.4, 1.1, 3.2, 21.1, 2.2, 0.0, 72.0, 49.5, 50.5, 0.0,28.0,0.0 +5.740458015267175,5,a-cure-i1,2023-24,Hudson - Hudson High,01410505, 0.0, 1.9, 3.2, 18.7, 2.5, 0.0, 73.8, 52.4, 47.5, 0.1,26.200000000000003,9.4 +1,1,a-cure-i1,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 0.8, 4.2, 20.3, 3.0, 0.0, 71.7, 48.9, 51.1, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Hull - Hull High,01420505, 0.0, 1.3, 1.7, 3.9, 2.1, 0.0, 91.0, 46.8, 52.4, 0.9,9.0,0.0 +1,1,a-cure-i1,2023-24,Hull - Lillian M Jacobs,01420015, 0.2, 1.4, 2.6, 3.6, 3.8, 0.0, 88.2, 44.0, 56.0, 0.0,11.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Hull - Memorial Middle,01420305, 0.9, 2.8, 1.9, 4.7, 0.9, 0.0, 88.7, 53.8, 46.2, 0.0,11.299999999999997,0.0 +7.3689567430025456,5,a-cure-i1,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.6, 8.8, 8.4, 15.4, 6.2, 0.0, 60.7, 51.9, 47.5, 0.6,39.3,18.1 +1,1,a-cure-i1,2023-24,Ipswich - Ipswich High,01440505, 0.2, 2.7, 1.5, 8.5, 3.5, 0.0, 83.6, 53.7, 46.3, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Ipswich - Ipswich Middle School,01440305, 0.3, 0.3, 1.3, 9.7, 3.9, 0.0, 84.6, 50.8, 49.2, 0.0,15.400000000000006,3.8 +6.545454545454543,5,a-cure-i1,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.3, 0.8, 0.5, 9.2, 4.6, 0.0, 84.6, 48.0, 52.0, 0.0,15.400000000000006,6.3 +1,1,a-cure-i1,2023-24,Ipswich - Winthrop,01440015, 0.3, 2.2, 0.8, 10.6, 4.9, 0.0, 81.3, 49.6, 50.4, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2023-24,King Philip - King Philip Middle School,06900510, 0.3, 2.4, 3.4, 6.9, 4.8, 0.0, 82.2, 46.7, 52.6, 0.7,17.799999999999997,2.0 +1,1,a-cure-i1,2023-24,King Philip - King Philip Regional High,06900505, 0.3, 3.9, 3.0, 5.3, 3.5, 0.0, 84.1, 48.5, 51.1, 0.4,15.900000000000006,4.7 +1,1,a-cure-i1,2023-24,Kingston - Kingston Elementary,01450005, 0.8, 0.6, 3.5, 4.5, 1.5, 0.2, 88.9, 43.2, 56.8, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Kingston - Kingston Intermediate,01450020, 0.2, 0.8, 1.6, 5.4, 1.8, 0.0, 90.2, 50.7, 49.3, 0.0,9.799999999999997,0.0 +10.070493454179257,5,a-cure-i1,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.8, 0.2, 59.9, 36.5, 1.9, 0.0, 0.7, 50.4, 49.6, 0.0,99.3,62.50000000000001 +9.001051524710832,5,a-cure-i1,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.3, 4.0, 15.5, 72.9, 2.2, 0.1, 4.9, 50.8, 49.1, 0.1,95.1,53.5 +2.6288032454361057,2.63,a-cure-i1,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 0.7, 2.4, 95.0, 0.5, 0.0, 1.4, 47.6, 51.9, 0.5,98.6,16.2 +2.5040650406504064,2.5,a-cure-i1,2023-24,Lawrence - Arlington Elementary,01490009, 0.2, 0.0, 0.5, 97.5, 0.0, 0.2, 1.6, 46.2, 53.2, 0.5,98.4,15.4 +3.0437436419125135,3.04,a-cure-i1,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.3, 97.4, 0.5, 0.0, 1.7, 49.8, 50.0, 0.2,98.3,18.700000000000003 +1.3761658031088084,1.38,a-cure-i1,2023-24,Lawrence - Edward F. Parthum,01490053, 0.0, 0.3, 2.2, 93.4, 0.6, 0.0, 3.5, 47.1, 52.7, 0.1,96.5,8.3 +3.4028629856850716,3.4,a-cure-i1,2023-24,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.6, 0.8, 95.2, 0.2, 0.0, 2.2, 50.5, 49.3, 0.2,97.8,20.8 +2.98989898989899,2.99,a-cure-i1,2023-24,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.5, 97.5, 0.0, 0.0, 1.0, 42.7, 57.3, 0.0,99.0,18.5 +2.912169312169312,2.91,a-cure-i1,2023-24,Lawrence - Frost Middle School,01490525, 0.0, 2.8, 2.0, 88.6, 1.0, 0.0, 5.5, 49.3, 50.3, 0.4,94.5,17.2 +1.2687950566426365,1.27,a-cure-i1,2023-24,Lawrence - Gerard A. Guilmette,01490022, 0.2, 1.0, 1.0, 93.9, 0.4, 0.4, 2.9, 46.3, 53.7, 0.0,97.1,7.699999999999999 +3.2974619289340104,3.3,a-cure-i1,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, 1.5, 1.9, 94.8, 0.2, 0.0, 1.5, 48.9, 51.1, 0.0,98.5,20.3 +4.800000000000001,4.8,a-cure-i1,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.5, 1.0, 97.4, 0.0, 0.0, 1.0, 44.6, 54.9, 0.5,99.0,29.700000000000003 +3.666314677930306,3.67,a-cure-i1,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.4, 3.2, 90.8, 0.4, 0.0, 5.3, 42.2, 57.8, 0.0,94.7,21.7 +1.931321540062435,1.93,a-cure-i1,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.8, 2.7, 92.6, 0.0, 0.0, 3.9, 40.7, 59.3, 0.0,96.1,11.6 +2.290422245108136,2.29,a-cure-i1,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 96.7, 0.4, 0.0, 2.9, 44.2, 55.8, 0.0,97.1,13.9 +3.248730964467005,3.25,a-cure-i1,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.5, 1.5, 96.1, 0.0, 0.5, 1.5, 48.5, 51.5, 0.0,98.5,20.0 +5.333333333333332,5,a-cure-i1,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.5, 1.6, 94.8, 0.0, 0.0, 3.1, 50.8, 49.2, 0.0,96.9,32.3 +5.791411042944786,5,a-cure-i1,2023-24,Lawrence - Lawrence High School,01490515, 0.0, 1.3, 1.4, 94.9, 0.1, 0.0, 2.2, 46.6, 53.0, 0.4,97.8,35.4 +5.6016096579476855,5,a-cure-i1,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, 0.0, 1.9, 97.5, 0.0, 0.0, 0.6, 45.2, 54.8, 0.0,99.4,34.8 +4.410986775178027,4.41,a-cure-i1,2023-24,Lawrence - Oliver Elementary School,01490048, 0.0, 0.2, 1.5, 96.1, 0.4, 0.0, 1.7, 49.1, 50.9, 0.0,98.3,27.1 +2.9623601220752795,2.96,a-cure-i1,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, 0.6, 1.4, 96.2, 0.0, 0.0, 1.7, 49.4, 50.3, 0.3,98.3,18.2 +2.661157024793389,2.66,a-cure-i1,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.3, 1.4, 94.9, 0.2, 0.0, 3.2, 45.3, 54.7, 0.0,96.8,16.1 +5.3604060913705585,5,a-cure-i1,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 97.0, 1.5, 0.0, 1.5, 23.9, 76.1, 0.0,98.5,33.0 +1.618945102260495,1.62,a-cure-i1,2023-24,Lawrence - Robert Frost,01490018, 0.0, 3.5, 1.5, 86.8, 0.9, 0.2, 7.1, 48.4, 51.5, 0.2,92.9,9.4 +4.711758584807493,4.71,a-cure-i1,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 0.7, 0.0, 1.3, 94.1, 0.0, 0.0, 3.9, 41.2, 58.8, 0.0,96.1,28.3 +8.234800838574424,5,a-cure-i1,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 4.6, 90.7, 0.0, 0.0, 4.6, 16.7, 83.3, 0.0,95.4,49.1 +1.7759506680369992,1.78,a-cure-i1,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 2.0, 1.7, 93.2, 0.5, 0.0, 2.7, 50.3, 49.5, 0.2,97.3,10.8 +4.2898550724637685,4.29,a-cure-i1,2023-24,Lawrence - Spark Academy,01490085, 0.0, 0.7, 1.1, 94.8, 0.0, 0.0, 3.4, 47.9, 52.1, 0.0,96.6,25.9 +5.279515640766903,5,a-cure-i1,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.8, 98.3, 0.0, 0.0, 0.9, 56.4, 43.6, 0.0,99.1,32.7 +3.2916224814422055,3.29,a-cure-i1,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.1, 1.0, 46.0, 45.4, 1.6, 0.0, 5.7, 49.2, 50.8, 0.0,94.3,19.4 +1,1,a-cure-i1,2023-24,Lee - Lee Elementary,01500025, 0.0, 2.7, 1.2, 10.7, 2.7, 0.3, 82.5, 49.1, 50.9, 0.0,17.5,2.8 +4.512820512820513,4.51,a-cure-i1,2023-24,Lee - Lee Middle/High School,01500505, 0.3, 3.6, 1.0, 11.7, 2.9, 0.0, 80.5, 47.1, 52.6, 0.3,19.5,5.5 +1,1,a-cure-i1,2023-24,Leicester - Leicester Elementary,01510005, 0.0, 3.8, 6.6, 23.2, 4.3, 0.0, 62.1, 51.9, 48.1, 0.0,37.9,0.0 +4.501529051987767,4.5,a-cure-i1,2023-24,Leicester - Leicester High,01510505, 0.0, 3.3, 6.3, 19.9, 3.3, 0.0, 67.3, 44.6, 55.4, 0.0,32.7,9.2 +1,1,a-cure-i1,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 2.0, 10.2, 10.2, 4.1, 0.0, 73.5, 30.6, 69.4, 0.0,26.5,0.0 +1,1,a-cure-i1,2023-24,Leicester - Leicester Middle,01510015, 0.5, 3.7, 5.7, 17.2, 3.0, 0.0, 70.0, 47.8, 52.0, 0.2,30.0,0.0 +1,1,a-cure-i1,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 4.9, 0.7, 9.4, 4.5, 0.0, 80.5, 48.0, 51.8, 0.2,19.5,2.2 +1,1,a-cure-i1,2023-24,Lenox - Morris,01520015, 0.0, 7.1, 1.8, 10.7, 5.9, 0.9, 73.6, 45.1, 54.9, 0.0,26.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Leominster - Bennett,01530003, 0.0, 2.2, 10.1, 31.5, 7.9, 0.0, 48.3, 43.8, 56.2, 0.0,51.7,0.0 +1,1,a-cure-i1,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 2.7, 9.0, 41.0, 3.3, 0.1, 43.7, 36.2, 63.7, 0.1,56.3,2.9 +2.047244094488189,2.05,a-cure-i1,2023-24,Leominster - Fall Brook,01530007, 0.0, 2.7, 8.7, 34.3, 5.1, 0.0, 49.2, 44.9, 54.9, 0.2,50.8,6.5 +1,1,a-cure-i1,2023-24,Leominster - Frances Drake School,01530010, 0.0, 3.7, 9.9, 46.6, 4.3, 0.0, 35.5, 50.7, 49.3, 0.0,64.5,0.0 +1,1,a-cure-i1,2023-24,Leominster - Johnny Appleseed,01530025, 0.0, 3.2, 10.8, 36.0, 4.7, 0.0, 45.2, 49.3, 50.7, 0.0,54.8,3.0 +9.169373549883991,5,a-cure-i1,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 4.6, 35.4, 3.1, 0.0, 56.9, 49.2, 43.1, 7.7,43.1,24.7 +1.4369602763385148,1.44,a-cure-i1,2023-24,Leominster - Leominster High School,01530505, 0.2, 3.9, 9.1, 41.0, 3.6, 0.0, 42.1, 55.5, 44.0, 0.5,57.9,5.2 +1,1,a-cure-i1,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, 0.0, 6.3, 62.5, 12.5, 0.0, 18.8, 50.0, 50.0, 0.0,81.2,0.0 +1,1,a-cure-i1,2023-24,Leominster - Lincoln School,01530005, 0.0, 5.0, 7.5, 47.5, 10.0, 0.0, 30.0, 27.5, 72.5, 0.0,70.0,0.0 +1,1,a-cure-i1,2023-24,Leominster - Northwest,01530030, 0.0, 3.6, 9.1, 49.6, 3.9, 0.0, 33.8, 50.7, 49.3, 0.0,66.2,0.0 +1,1,a-cure-i1,2023-24,Leominster - Priest Street,01530040, 0.7, 5.0, 16.5, 40.3, 6.5, 0.0, 30.9, 51.8, 48.2, 0.0,69.1,0.0 +2.094240837696335,2.09,a-cure-i1,2023-24,Leominster - Samoset School,01530045, 0.0, 2.8, 8.8, 40.2, 5.6, 0.0, 42.7, 41.7, 58.3, 0.0,57.3,7.5 +1,1,a-cure-i1,2023-24,Leominster - Sky View Middle School,01530320, 0.2, 2.2, 10.0, 46.5, 5.1, 0.0, 36.0, 48.9, 51.1, 0.0,64.0,3.7 +1,1,a-cure-i1,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.7, 0.0, 2.8, 11.3, 0.0, 85.2, 48.6, 51.4, 0.0,14.799999999999997,0.0 +6.238993710691824,5,a-cure-i1,2023-24,Lexington - Bowman,01550008, 0.0, 43.7, 3.7, 5.1, 11.0, 0.0, 36.4, 47.0, 53.0, 0.0,63.6,24.8 +1.8823529411764708,1.88,a-cure-i1,2023-24,Lexington - Bridge,01550006, 0.0, 49.3, 5.8, 9.0, 10.7, 0.0, 25.2, 49.0, 51.0, 0.0,74.8,8.8 +2.3734729493891797,2.37,a-cure-i1,2023-24,Lexington - Fiske,01550015, 0.3, 39.4, 3.6, 5.4, 8.7, 0.0, 42.7, 46.3, 53.7, 0.0,57.3,8.5 +3.190404797601199,3.19,a-cure-i1,2023-24,Lexington - Harrington,01550030, 0.0, 46.3, 7.7, 4.8, 7.9, 0.0, 33.3, 55.6, 44.4, 0.0,66.7,13.299999999999999 +3.3131313131313136,3.31,a-cure-i1,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, 42.3, 4.6, 5.6, 6.9, 0.0, 40.6, 51.4, 48.6, 0.0,59.4,12.3 +2.3929618768328442,2.39,a-cure-i1,2023-24,Lexington - Joseph Estabrook,01550010, 0.0, 47.3, 4.3, 6.0, 10.6, 0.0, 31.8, 48.8, 51.2, 0.0,68.2,10.2 +1,1,a-cure-i1,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, 53.9, 5.3, 11.8, 2.6, 0.0, 26.3, 42.1, 57.9, 0.0,73.7,0.0 +3.61038961038961,3.61,a-cure-i1,2023-24,Lexington - Lexington High,01550505, 0.0, 46.1, 4.3, 4.1, 7.0, 0.0, 38.4, 50.3, 49.5, 0.2,61.6,13.899999999999999 +5.379509379509379,5,a-cure-i1,2023-24,Lexington - Maria Hastings,01550035, 0.0, 49.4, 3.0, 8.1, 8.7, 0.0, 30.7, 50.1, 49.9, 0.0,69.3,23.299999999999997 +3.5072,3.51,a-cure-i1,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, 44.2, 3.3, 6.0, 8.7, 0.1, 37.5, 45.8, 54.2, 0.0,62.5,13.700000000000001 +7.57807652533609,5,a-cure-i1,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.2, 1.0, 12.1, 80.3, 3.1, 0.0, 3.3, 50.9, 49.1, 0.0,96.7,45.8 +2.1287553648068664,2.13,a-cure-i1,2023-24,Lincoln - Hanscom School,01570305, 0.4, 4.0, 5.1, 24.9, 11.9, 0.2, 53.4, 48.2, 51.8, 0.0,46.6,6.199999999999999 +3.5799086757990866,3.58,a-cure-i1,2023-24,Lincoln - Lincoln School,01570025, 0.0, 8.9, 9.3, 12.4, 13.2, 0.0, 56.2, 49.9, 49.7, 0.4,43.8,9.799999999999999 +5.91186440677966,5,a-cure-i1,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 9.0, 5.3, 6.8, 8.1, 0.2, 70.5, 49.0, 50.5, 0.5,29.5,10.899999999999999 +4.102564102564101,4.1,a-cure-i1,2023-24,Littleton - Littleton High School,01580505, 0.2, 14.0, 2.3, 4.3, 2.5, 0.2, 76.6, 52.6, 47.4, 0.0,23.400000000000006,6.0 +1,1,a-cure-i1,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 13.9, 0.5, 5.2, 1.5, 0.5, 78.4, 54.1, 45.4, 0.5,21.599999999999994,4.2 +1,1,a-cure-i1,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 18.0, 0.8, 2.0, 2.0, 0.8, 76.4, 43.8, 56.2, 0.0,23.599999999999994,0.0 +5.105058365758754,5,a-cure-i1,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 15.6, 1.1, 4.5, 4.3, 0.2, 74.3, 45.4, 54.6, 0.0,25.700000000000003,8.2 +1,1,a-cure-i1,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 14.1, 2.7, 5.9, 6.7, 0.0, 70.7, 50.7, 49.3, 0.0,29.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Longmeadow - Center,01590010, 0.0, 4.2, 3.9, 8.3, 3.7, 0.0, 80.0, 50.6, 49.4, 0.0,20.0,0.0 +1,1,a-cure-i1,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 9.7, 5.6, 6.9, 5.9, 0.0, 71.9, 45.3, 54.7, 0.0,28.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, 11.3, 3.5, 8.8, 3.6, 0.3, 72.4, 48.4, 51.0, 0.5,27.599999999999994,4.9 +1,1,a-cure-i1,2023-24,Longmeadow - Williams Middle,01590305, 0.0, 11.9, 2.3, 8.1, 6.5, 0.0, 71.3, 46.8, 52.9, 0.3,28.700000000000003,4.9 +1,1,a-cure-i1,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.0, 10.9, 4.2, 8.0, 3.8, 0.0, 73.0, 46.9, 53.1, 0.0,27.0,0.0 +1.816118047673099,1.82,a-cure-i1,2023-24,Lowell - Abraham Lincoln,01600020, 0.2, 39.9, 5.1, 37.8, 4.9, 0.2, 11.9, 49.1, 50.9, 0.0,88.1,10.0 +6.364532019704432,5,a-cure-i1,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, 30.7, 7.9, 39.0, 3.6, 0.0, 18.8, 51.5, 48.5, 0.0,81.2,32.3 +1.4242774566473988,1.42,a-cure-i1,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.4, 34.0, 10.4, 37.9, 3.8, 0.0, 13.5, 50.8, 49.2, 0.0,86.5,7.699999999999999 +1,1,a-cure-i1,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 22.1, 18.3, 40.4, 6.7, 0.0, 12.5, 36.5, 63.5, 0.0,87.5,0.0 +1.377123442808607,1.38,a-cure-i1,2023-24,Lowell - Charles W Morey,01600030, 0.6, 56.9, 5.6, 20.3, 4.6, 0.2, 11.7, 48.5, 51.5, 0.0,88.3,7.6 +1,1,a-cure-i1,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.5, 24.1, 9.2, 48.2, 3.9, 0.5, 13.8, 52.5, 47.5, 0.0,86.2,0.0 +2.062415196743555,2.06,a-cure-i1,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 22.5, 7.6, 39.4, 4.3, 0.0, 26.3, 47.0, 52.9, 0.2,73.7,9.5 +1,1,a-cure-i1,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.0, 38.1, 5.9, 27.5, 5.6, 0.0, 22.8, 47.6, 52.4, 0.0,77.2,3.8 +1,1,a-cure-i1,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 1.7, 13.8, 12.1, 36.2, 5.2, 0.0, 31.0, 24.1, 75.9, 0.0,69.0,0.0 +1.2661870503597121,1.27,a-cure-i1,2023-24,Lowell - Greenhalge,01600015, 0.0, 10.1, 12.0, 57.8, 3.5, 0.0, 16.6, 49.2, 50.8, 0.0,83.4,6.6 +5.347204161248374,5,a-cure-i1,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.3, 9.8, 8.3, 55.2, 3.2, 0.0, 23.1, 48.3, 51.7, 0.0,76.9,25.700000000000003 +1.6467598475222365,1.65,a-cure-i1,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, 50.6, 5.1, 18.7, 4.3, 0.0, 21.3, 49.0, 51.0, 0.0,78.7,8.100000000000001 +1.7297297297297298,1.73,a-cure-i1,2023-24,Lowell - James Sullivan Middle School,01600340, 0.2, 12.6, 5.3, 49.1, 2.9, 0.2, 29.7, 51.5, 48.5, 0.0,70.3,7.6 +1.4292803970223327,1.43,a-cure-i1,2023-24,Lowell - John J Shaughnessy,01600050, 0.2, 25.2, 5.8, 44.3, 5.1, 0.0, 19.4, 44.6, 55.4, 0.0,80.6,7.2 +1.5876288659793816,1.59,a-cure-i1,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 15.2, 9.1, 48.5, 4.7, 0.2, 22.4, 48.7, 51.3, 0.0,77.6,7.7 +1.330254041570439,1.33,a-cure-i1,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.3, 41.6, 5.0, 37.0, 2.4, 0.3, 13.4, 46.6, 53.4, 0.0,86.6,7.2 +4.736,4.74,a-cure-i1,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 6.3, 6.3, 43.8, 18.8, 0.0, 25.0, 12.5, 87.5, 0.0,75.0,22.2 +3.6941529235382307,3.69,a-cure-i1,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 2.8, 11.1, 41.7, 11.1, 0.0, 33.3, 27.8, 72.2, 0.0,66.7,15.4 +3.5141104294478533,3.51,a-cure-i1,2023-24,Lowell - Lowell High,01600505, 0.1, 28.5, 8.6, 40.5, 3.8, 0.0, 18.5, 46.2, 53.6, 0.1,81.5,17.900000000000002 +1.4930362116991645,1.49,a-cure-i1,2023-24,Lowell - Moody Elementary,01600027, 0.4, 8.5, 7.3, 52.4, 2.4, 0.8, 28.2, 51.2, 48.8, 0.0,71.8,6.7 +1.831187410586552,1.83,a-cure-i1,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.0, 25.0, 8.2, 31.2, 5.5, 0.0, 30.1, 47.1, 52.9, 0.0,69.9,8.0 +2.2816901408450705,2.28,a-cure-i1,2023-24,Lowell - Peter W Reilly,01600040, 0.2, 9.8, 4.8, 35.8, 6.3, 0.0, 43.2, 49.7, 50.3, 0.0,56.8,8.1 +1.5579598145285933,1.56,a-cure-i1,2023-24,Lowell - Pyne Arts,01600018, 0.0, 16.4, 4.5, 39.2, 4.5, 0.0, 35.3, 47.2, 52.8, 0.0,64.7,6.3 +2.103194103194103,2.1,a-cure-i1,2023-24,Lowell - Rogers STEM Academy,01600005, 0.6, 19.6, 8.0, 49.5, 3.5, 0.1, 18.6, 47.9, 52.1, 0.0,81.4,10.7 +1.7367706919945725,1.74,a-cure-i1,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 0.2, 9.3, 7.9, 53.3, 2.9, 0.0, 26.3, 51.2, 48.8, 0.0,73.7,8.0 +1,1,a-cure-i1,2023-24,Lowell - The Career Academy,01600515, 0.0, 14.1, 7.6, 50.0, 5.4, 0.0, 22.8, 38.0, 62.0, 0.0,77.2,0.0 +1.1484184914841848,1.15,a-cure-i1,2023-24,Lowell - Washington,01600055, 0.0, 40.1, 5.4, 27.3, 9.1, 0.4, 17.8, 44.2, 55.8, 0.0,82.2,5.9 +4.055853920515575,4.06,a-cure-i1,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.1, 16.5, 25.3, 47.1, 4.0, 0.0, 6.9, 51.4, 48.5, 0.1,93.1,23.599999999999998 +9.774058577405857,5,a-cure-i1,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 7.5, 2.8, 56.6, 4.7, 0.0, 28.3, 59.4, 39.6, 0.9,71.7,43.8 +1,1,a-cure-i1,2023-24,Ludlow - East Street Elementary School,01610010, 0.0, 3.3, 1.7, 16.2, 3.9, 0.0, 74.9, 43.2, 56.8, 0.0,25.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 2.3, 2.1, 16.5, 4.2, 0.0, 74.9, 47.6, 52.4, 0.0,25.099999999999994,2.2 +1,1,a-cure-i1,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.5, 1.6, 13.2, 2.1, 0.0, 82.5, 49.1, 50.8, 0.1,17.5,0.0 +1,1,a-cure-i1,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 1.3, 2.1, 19.4, 2.1, 0.0, 75.2, 48.3, 51.7, 0.0,24.799999999999997,2.4 +1,1,a-cure-i1,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 14.3, 0.0, 0.0, 0.0, 85.7, 57.1, 42.9, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Lunenburg - Lunenburg High,01620505, 0.4, 1.1, 2.0, 9.1, 4.5, 0.7, 82.2, 49.0, 50.8, 0.2,17.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, 2.8, 3.3, 12.9, 3.9, 0.0, 77.1, 49.6, 50.1, 0.3,22.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.8, 4.6, 14.3, 4.1, 0.5, 75.7, 48.8, 51.2, 0.0,24.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.5, 4.3, 8.6, 2.2, 0.3, 84.1, 49.7, 50.3, 0.0,15.900000000000006,0.0 +1.0505920344456403,1.05,a-cure-i1,2023-24,Lynn - A Drewicz Elementary,01630016, 0.6, 6.9, 4.1, 79.7, 1.6, 0.0, 7.1, 51.0, 49.0, 0.0,92.9,6.1 +1.6770538243626065,1.68,a-cure-i1,2023-24,Lynn - Aborn,01630011, 0.4, 11.0, 6.1, 47.4, 5.3, 0.4, 29.4, 50.9, 49.1, 0.0,70.6,7.4 +2.6812705366922236,2.68,a-cure-i1,2023-24,Lynn - Breed Middle School,01630405, 0.1, 7.9, 7.3, 73.3, 2.7, 0.0, 8.7, 50.1, 49.9, 0.0,91.3,15.3 +4.140350877192983,4.14,a-cure-i1,2023-24,Lynn - Brickett Elementary,01630020, 0.6, 8.5, 7.6, 70.3, 4.1, 0.0, 8.8, 44.5, 55.5, 0.0,91.2,23.6 +3.5792592592592594,3.58,a-cure-i1,2023-24,Lynn - Capt William G Shoemaker,01630090, 0.3, 7.1, 12.4, 42.9, 4.7, 0.0, 32.5, 38.8, 61.2, 0.0,67.5,15.1 +2.4824462061155153,2.48,a-cure-i1,2023-24,Lynn - Classical High,01630505, 0.2, 7.3, 7.2, 71.2, 2.2, 0.0, 11.7, 45.0, 54.8, 0.1,88.3,13.7 +1.379876796714579,1.38,a-cure-i1,2023-24,Lynn - Cobbet Elementary,01630035, 0.5, 3.0, 7.2, 85.1, 1.6, 0.0, 2.6, 44.5, 55.5, 0.0,97.4,8.4 +2.3586358635863585,2.36,a-cure-i1,2023-24,Lynn - E J Harrington,01630045, 0.3, 3.6, 8.2, 76.7, 2.1, 0.0, 9.1, 48.4, 51.6, 0.0,90.9,13.4 +1,1,a-cure-i1,2023-24,Lynn - Edward A Sisson,01630095, 0.5, 9.6, 6.3, 54.3, 3.5, 0.0, 25.8, 49.9, 50.1, 0.0,74.2,3.4 +1.9795918367346936,1.98,a-cure-i1,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 2.3, 1.1, 4.5, 68.2, 2.3, 0.0, 21.6, 38.6, 59.1, 2.3,78.4,9.7 +3.0540827147401908,3.05,a-cure-i1,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 4.5, 7.6, 78.3, 3.8, 0.0, 5.7, 50.3, 49.0, 0.6,94.3,18.0 +3.9437837837837844,3.94,a-cure-i1,2023-24,Lynn - Hood,01630055, 0.6, 8.4, 6.7, 75.2, 1.6, 0.0, 7.5, 47.5, 52.5, 0.0,92.5,22.800000000000004 +1.3333333333333335,1.33,a-cure-i1,2023-24,Lynn - Ingalls,01630060, 0.6, 4.9, 7.4, 81.1, 0.9, 0.0, 5.2, 48.4, 51.6, 0.0,94.8,7.9 +1.753424657534247,1.75,a-cure-i1,2023-24,Lynn - Julia F Callahan,01630030, 0.0, 7.9, 10.4, 66.2, 3.0, 0.0, 12.4, 46.4, 53.6, 0.0,87.6,9.600000000000001 +1,1,a-cure-i1,2023-24,Lynn - Lincoln-Thomson,01630070, 0.9, 10.2, 4.2, 62.0, 4.2, 0.0, 18.5, 53.2, 46.8, 0.0,81.5,3.6 +3.0762620837808807,3.08,a-cure-i1,2023-24,Lynn - Lynn English High,01630510, 0.5, 6.9, 8.7, 74.5, 2.5, 0.0, 6.9, 47.9, 51.9, 0.2,93.1,17.9 +1.8058690744920998,1.81,a-cure-i1,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 0.4, 4.0, 5.7, 75.8, 2.6, 0.0, 11.4, 47.8, 52.1, 0.1,88.6,10.000000000000002 +1,1,a-cure-i1,2023-24,Lynn - Lynn Woods,01630075, 0.6, 5.0, 1.9, 47.2, 3.1, 0.0, 42.2, 52.8, 47.2, 0.0,57.8,0.0 +2.6531645569620252,2.65,a-cure-i1,2023-24,Lynn - Pickering Middle,01630420, 0.7, 11.8, 4.8, 56.7, 5.0, 0.0, 21.0, 46.8, 53.2, 0.0,79.0,13.1 +1,1,a-cure-i1,2023-24,Lynn - Robert L Ford,01630050, 0.5, 3.6, 8.6, 80.1, 1.7, 0.0, 5.5, 52.6, 47.4, 0.0,94.5,3.6 +0.9976019184652278,1,a-cure-i1,2023-24,Lynn - Sewell-Anderson,01630085, 1.5, 4.8, 9.2, 63.1, 4.8, 0.0, 16.6, 57.6, 42.4, 0.0,83.4,5.2 +4.301639344262295,4.3,a-cure-i1,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.5, 6.7, 8.4, 73.7, 2.2, 0.0, 8.5, 47.3, 52.7, 0.0,91.5,24.599999999999998 +1,1,a-cure-i1,2023-24,Lynn - Tracy,01630100, 0.5, 3.2, 3.4, 88.9, 0.8, 0.0, 3.2, 46.1, 53.9, 0.0,96.8,1.9 +2.611042944785276,2.61,a-cure-i1,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 8.6, 14.8, 55.6, 2.5, 0.0, 18.5, 29.6, 70.4, 0.0,81.5,13.3 +1.1162790697674418,1.12,a-cure-i1,2023-24,Lynn - Washington Elementary School,01630005, 0.0, 3.4, 16.1, 73.4, 1.8, 0.0, 5.4, 51.0, 49.0, 0.0,94.6,6.6 +1,1,a-cure-i1,2023-24,Lynn - William R Fallon,01630080, 0.0, 4.2, 20.8, 45.8, 16.7, 0.0, 12.5, 20.8, 79.2, 0.0,87.5,0.0 +2.616977225672878,2.62,a-cure-i1,2023-24,Lynn - Wm P Connery,01630040, 0.4, 6.3, 5.6, 82.5, 1.8, 0.0, 3.4, 54.0, 46.0, 0.0,96.6,15.8 +1,1,a-cure-i1,2023-24,Lynnfield - Huckleberry Hill,01640010, 0.0, 11.1, 3.1, 7.6, 6.0, 0.0, 72.2, 50.6, 49.4, 0.0,27.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 8.2, 1.8, 9.1, 2.8, 0.0, 78.1, 50.1, 49.9, 0.0,21.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, 7.6, 2.3, 6.6, 4.4, 0.0, 79.1, 49.5, 50.4, 0.1,20.900000000000006,0.2 +23.064935064935067,5,a-cure-i1,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 5.1, 2.6, 7.7, 7.7, 0.0, 76.9, 38.5, 61.5, 0.0,23.099999999999994,33.3 +1,1,a-cure-i1,2023-24,Lynnfield - Summer Street,01640020, 0.0, 4.3, 1.2, 2.9, 5.0, 0.0, 86.6, 47.4, 52.6, 0.0,13.400000000000006,0.0 +3.8668596237337196,3.87,a-cure-i1,2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 59.8, 4.1, 4.1, 0.0, 1.0, 30.9, 48.5, 51.5, 0.0,69.1,16.7 +1.1675675675675676,1.17,a-cure-i1,2023-24,Malden - Beebe,01650003, 0.9, 31.6, 12.4, 23.5, 5.3, 0.2, 26.0, 49.5, 50.5, 0.0,74.0,5.4 +1.4527112232030266,1.45,a-cure-i1,2023-24,Malden - Ferryway,01650013, 0.7, 19.1, 18.3, 37.9, 3.2, 0.1, 20.7, 50.5, 49.5, 0.0,79.3,7.2 +1,1,a-cure-i1,2023-24,Malden - Forestdale,01650027, 0.2, 13.3, 14.9, 25.8, 8.7, 0.0, 37.1, 44.9, 55.1, 0.0,62.9,0.0 +3.8174706649282912,3.82,a-cure-i1,2023-24,Malden - Linden,01650047, 0.7, 25.3, 20.4, 25.3, 4.7, 0.2, 23.3, 47.5, 52.4, 0.1,76.7,18.299999999999997 +1,1,a-cure-i1,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 33.9, 17.9, 11.6, 2.0, 0.0, 34.7, 39.4, 60.6, 0.0,65.3,0.0 +2.68051948051948,2.68,a-cure-i1,2023-24,Malden - Malden High,01650505, 0.2, 20.4, 21.2, 31.3, 3.9, 0.0, 23.0, 50.0, 49.9, 0.1,77.0,12.899999999999999 +3.6577017114914434,3.66,a-cure-i1,2023-24,Malden - Salemwood,01650057, 0.5, 13.0, 21.8, 43.4, 3.1, 0.0, 18.2, 49.8, 50.1, 0.1,81.8,18.700000000000003 +1,1,a-cure-i1,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 3.9, 0.9, 0.0, 95.2, 54.6, 45.4, 0.0,4.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.0, 0.0, 2.5, 1.3, 0.0, 95.3, 49.8, 50.3, 0.0,4.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.7, 0.0, 2.2, 0.7, 0.0, 96.4, 53.3, 46.7, 0.0,3.5999999999999943,4.0 +1,1,a-cure-i1,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 1.7, 0.0, 1.7, 3.0, 0.0, 93.6, 54.2, 45.8, 0.0,6.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Mansfield - Everett W Robinson,01670007, 0.1, 7.6, 4.2, 7.2, 4.8, 0.0, 76.1, 49.3, 50.7, 0.0,23.900000000000006,2.5 +3.014492753623189,3.01,a-cure-i1,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.1, 9.5, 5.2, 6.6, 6.1, 0.0, 72.4, 47.1, 52.8, 0.1,27.599999999999994,5.2 +1,1,a-cure-i1,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.3, 7.7, 4.7, 7.9, 5.0, 0.1, 74.3, 49.9, 50.0, 0.1,25.700000000000003,2.9 +5.675213675213675,5,a-cure-i1,2023-24,Mansfield - Mansfield High,01670505, 0.1, 8.2, 6.1, 6.0, 3.0, 0.0, 76.6, 45.8, 54.0, 0.2,23.400000000000006,8.3 +1,1,a-cure-i1,2023-24,Mansfield - Roland Green School,01670003, 0.0, 10.0, 7.0, 9.0, 8.0, 0.0, 66.0, 39.0, 61.0, 0.0,34.0,0.0 +9.99209486166008,5,a-cure-i1,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 1.1, 0.7, 4.0, 10.5, 8.7, 0.4, 74.7, 42.6, 53.8, 3.6,25.299999999999997,15.799999999999999 +1,1,a-cure-i1,2023-24,Marblehead - Glover,01680020, 0.0, 1.2, 1.6, 8.7, 5.9, 0.0, 82.6, 43.6, 56.4, 0.0,17.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 1.1, 0.2, 9.5, 5.7, 0.0, 83.5, 46.4, 53.6, 0.0,16.5,2.9 +6.9818181818181815,5,a-cure-i1,2023-24,Marblehead - Marblehead High,01680505, 0.1, 1.3, 3.4, 8.6, 3.1, 0.0, 83.5, 48.2, 50.9, 0.9,16.5,7.199999999999999 +1,1,a-cure-i1,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.4, 2.7, 8.1, 4.5, 0.0, 83.3, 48.8, 51.2, 0.0,16.700000000000003,4.800000000000001 +1,1,a-cure-i1,2023-24,Marblehead - Village School,01680016, 0.0, 1.7, 3.5, 7.3, 4.5, 0.0, 83.1, 48.4, 51.6, 0.0,16.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 2.3, 6.9, 16.6, 5.7, 0.6, 68.0, 49.7, 50.3, 0.0,32.0,0.0 +1,1,a-cure-i1,2023-24,Marion - Sippican,01690005, 0.3, 1.8, 3.6, 5.7, 6.9, 0.0, 81.7, 48.6, 51.4, 0.0,18.299999999999997,0.0 +1.841095890410959,1.84,a-cure-i1,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.2, 4.8, 64.7, 2.3, 0.0, 27.0, 47.2, 52.8, 0.0,73.0,8.4 +1,1,a-cure-i1,2023-24,Marlborough - Charles Jaworek School,01700030, 0.0, 1.2, 4.6, 52.1, 4.4, 0.0, 37.7, 47.2, 52.8, 0.0,62.3,3.9 +1,1,a-cure-i1,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 2.2, 7.8, 27.7, 10.0, 0.0, 52.4, 43.7, 55.8, 0.4,47.6,0.0 +2.3367697594501715,2.34,a-cure-i1,2023-24,Marlborough - Francis J Kane,01700008, 0.2, 0.4, 6.3, 46.5, 4.9, 0.0, 41.8, 46.5, 53.5, 0.0,58.2,8.5 +1,1,a-cure-i1,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.5, 4.4, 56.4, 3.5, 0.0, 35.2, 45.4, 54.6, 0.0,64.8,1.7 +1.2782369146005512,1.28,a-cure-i1,2023-24,Marlborough - Marlborough High,01700505, 0.0, 1.0, 5.0, 62.8, 3.8, 0.0, 27.4, 45.7, 54.1, 0.2,72.6,5.800000000000001 +1,1,a-cure-i1,2023-24,Marlborough - Richer,01700025, 0.0, 1.6, 3.8, 62.5, 6.7, 0.0, 25.4, 49.7, 50.3, 0.0,74.6,2.8 +1,1,a-cure-i1,2023-24,Marshfield - Daniel Webster,01710015, 0.0, 1.1, 3.0, 3.3, 1.5, 1.8, 89.3, 45.8, 54.2, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 3.5, 1.8, 0.0, 94.7, 51.3, 48.7, 0.0,5.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.4, 1.3, 1.2, 4.5, 2.7, 0.4, 89.6, 47.7, 52.3, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.6, 0.3, 3.4, 2.0, 0.0, 93.8, 41.4, 58.6, 0.0,6.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Marshfield - Marshfield High,01710505, 0.3, 1.0, 1.2, 4.5, 2.0, 0.1, 90.9, 50.2, 49.8, 0.0,9.099999999999994,2.5 +1,1,a-cure-i1,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 5.0, 2.5, 4.2, 0.0, 88.3, 40.8, 59.2, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Marshfield - Martinson Elementary,01710025, 0.0, 0.9, 3.8, 4.6, 3.1, 0.0, 87.6, 47.5, 52.5, 0.0,12.400000000000006,3.9 +1,1,a-cure-i1,2023-24,Marshfield - South River,01710010, 0.0, 1.2, 1.2, 0.4, 2.0, 0.0, 95.2, 51.0, 49.0, 0.0,4.799999999999997,0.0 +3.349862258953168,3.35,a-cure-i1,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.5, 0.4, 4.0, 26.1, 4.3, 0.0, 63.7, 50.8, 49.0, 0.1,36.3,7.6 +9.90134529147982,5,a-cure-i1,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 1.1, 0.6, 3.4, 8.0, 9.1, 0.0, 77.7, 60.6, 39.4, 0.0,22.299999999999997,13.799999999999999 +9.237613751263902,5,a-cure-i1,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 1.1, 1.7, 28.4, 65.7, 2.0, 0.0, 1.1, 51.7, 48.3, 0.0,98.9,57.1 +1,1,a-cure-i1,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.1, 3.5, 0.8, 4.1, 2.5, 0.1, 88.9, 53.3, 46.6, 0.1,11.099999999999994,1.5 +8.330578512396698,5,a-cure-i1,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.2, 2.7, 0.9, 5.0, 3.4, 0.0, 87.9, 50.7, 49.3, 0.0,12.099999999999994,6.300000000000001 +1,1,a-cure-i1,2023-24,Mashpee - Kenneth Coombs School,01720005, 3.2, 0.7, 2.2, 11.4, 12.9, 0.0, 69.4, 48.8, 51.2, 0.0,30.599999999999994,0.0 +3.764705882352942,3.76,a-cure-i1,2023-24,Mashpee - Mashpee Middle-High School,01720505, 6.0, 1.8, 4.7, 9.2, 9.0, 0.0, 69.4, 50.0, 50.0, 0.0,30.599999999999994,7.2 +1,1,a-cure-i1,2023-24,Mashpee - Quashnet School,01720035, 4.2, 2.2, 4.4, 10.0, 14.7, 0.5, 64.0, 43.9, 56.1, 0.0,36.0,1.1 +6.347914547304171,5,a-cure-i1,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 0.2, 0.3, 48.7, 47.3, 1.7, 0.2, 1.7, 49.5, 50.4, 0.1,98.3,39.0 +1,1,a-cure-i1,2023-24,Mattapoisett - Center,01730005, 0.0, 0.9, 1.3, 5.7, 3.0, 0.0, 89.1, 50.0, 50.0, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.2, 0.6, 7.1, 7.1, 0.0, 84.1, 46.5, 53.5, 0.0,15.900000000000006,0.0 +8.927038626609443,5,a-cure-i1,2023-24,Maynard - Fowler School,01740305, 0.0, 0.8, 2.5, 15.8, 4.2, 0.0, 76.7, 48.5, 51.1, 0.4,23.299999999999997,13.0 +9.611510791366907,5,a-cure-i1,2023-24,Maynard - Green Meadow,01740010, 0.5, 2.8, 4.0, 15.0, 5.6, 0.0, 72.2, 50.2, 49.5, 0.2,27.799999999999997,16.7 +1,1,a-cure-i1,2023-24,Maynard - Maynard High,01740505, 0.0, 2.4, 2.7, 14.5, 3.4, 0.0, 77.1, 52.5, 46.1, 1.3,22.900000000000006,2.4 +1,1,a-cure-i1,2023-24,Medfield - Dale Street,01750005, 0.2, 4.2, 1.0, 3.2, 3.2, 0.0, 88.1, 49.5, 50.5, 0.0,11.900000000000006,3.3 +1,1,a-cure-i1,2023-24,Medfield - Medfield Senior High,01750505, 0.6, 3.5, 1.1, 6.1, 4.4, 0.0, 84.3, 48.1, 51.9, 0.0,15.700000000000003,2.0 +1,1,a-cure-i1,2023-24,Medfield - Memorial School,01750003, 0.0, 3.4, 2.2, 4.4, 4.1, 0.0, 85.9, 47.6, 52.4, 0.0,14.099999999999994,1.0 +10.947368421052634,5,a-cure-i1,2023-24,Medfield - Ralph Wheelock School,01750007, 0.3, 3.3, 2.0, 4.5, 3.3, 0.0, 86.7, 51.0, 49.0, 0.0,13.299999999999997,9.1 +1,1,a-cure-i1,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, 4.6, 2.6, 5.6, 3.8, 0.0, 83.4, 48.9, 50.9, 0.2,16.599999999999994,3.4000000000000004 +1,1,a-cure-i1,2023-24,Medford - Brooks School,01760130, 0.4, 4.7, 4.5, 6.7, 7.6, 0.0, 76.2, 50.3, 49.7, 0.0,23.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 13.3, 26.7, 6.7, 0.0, 53.3, 46.7, 53.3, 0.0,46.7,0.0 +3.1999999999999997,3.2,a-cure-i1,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.4, 16.8, 13.4, 26.9, 3.0, 0.0, 39.5, 48.7, 51.1, 0.2,60.5,12.1 +1,1,a-cure-i1,2023-24,Medford - John J. McGlynn Middle School,01760320, 0.5, 10.0, 13.0, 16.9, 5.6, 0.0, 54.2, 44.9, 54.6, 0.5,45.8,4.8999999999999995 +2.6096256684491976,2.61,a-cure-i1,2023-24,Medford - Madeleine Dugger Andrews,01760315, 1.3, 7.5, 10.2, 11.7, 6.4, 0.2, 62.6, 51.1, 48.5, 0.4,37.4,6.1 +1,1,a-cure-i1,2023-24,Medford - Medford High,01760505, 0.3, 9.5, 14.3, 16.0, 4.8, 0.1, 55.1, 46.1, 53.1, 0.8,44.9,4.6 +1,1,a-cure-i1,2023-24,Medford - Milton Fuller Roberts,01760150, 0.7, 10.5, 7.4, 12.4, 7.4, 0.0, 61.6, 51.3, 48.5, 0.2,38.4,0.0 +1,1,a-cure-i1,2023-24,Medford - Missituk Elementary School,01760140, 0.7, 7.6, 8.9, 16.7, 7.1, 0.0, 59.0, 49.7, 49.7, 0.7,41.0,2.9 +1,1,a-cure-i1,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 5.7, 1.8, 10.0, 3.7, 0.0, 78.8, 49.2, 50.8, 0.0,21.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.3, 4.5, 2.1, 10.9, 6.1, 0.0, 76.1, 49.6, 50.4, 0.0,23.900000000000006,4.3 +1,1,a-cure-i1,2023-24,Medway - Medway High,01770505, 0.3, 4.0, 2.5, 9.2, 3.3, 0.3, 80.4, 50.9, 48.4, 0.7,19.599999999999994,2.4 +1,1,a-cure-i1,2023-24,Medway - Medway Middle,01770305, 0.2, 4.1, 2.6, 7.7, 2.0, 0.2, 83.5, 48.4, 51.6, 0.0,16.5,0.0 +1,1,a-cure-i1,2023-24,Melrose - Early Childhood Center,01780003, 0.8, 10.9, 2.3, 4.3, 5.0, 0.0, 76.7, 48.8, 51.2, 0.0,23.299999999999997,1.9 +1,1,a-cure-i1,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 7.8, 6.4, 8.1, 3.9, 0.0, 73.9, 51.2, 48.8, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Melrose - Horace Mann,01780025, 0.0, 1.1, 3.4, 5.6, 5.3, 0.0, 84.6, 48.9, 50.8, 0.4,15.400000000000006,2.7 +1,1,a-cure-i1,2023-24,Melrose - Lincoln,01780020, 0.2, 15.5, 7.3, 8.0, 9.5, 0.0, 59.5, 51.0, 49.0, 0.0,40.5,1.4 +1,1,a-cure-i1,2023-24,Melrose - Melrose High,01780505, 0.1, 6.3, 9.4, 6.9, 4.5, 0.1, 72.8, 51.9, 47.7, 0.4,27.200000000000003,4.2 +4.437500000000001,4.44,a-cure-i1,2023-24,Melrose - Melrose Middle,01780305, 0.0, 5.8, 5.5, 7.1, 7.1, 0.0, 74.4, 49.7, 50.1, 0.2,25.599999999999994,7.1 +1,1,a-cure-i1,2023-24,Melrose - Roosevelt,01780035, 0.2, 4.2, 2.7, 3.7, 6.7, 0.0, 82.4, 49.1, 50.1, 0.7,17.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Melrose - Winthrop,01780050, 0.0, 3.7, 3.0, 4.2, 6.0, 0.0, 83.0, 50.1, 49.1, 0.7,17.0,4.3 +1,1,a-cure-i1,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.3, 1.3, 0.8, 7.7, 0.5, 0.0, 89.4, 48.9, 51.1, 0.0,10.599999999999994,4.9 +7.172413793103446,5,a-cure-i1,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 4.6, 1.8, 8.4, 2.6, 0.0, 82.6, 53.5, 46.5, 0.0,17.400000000000006,7.8 +1,1,a-cure-i1,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 3.1, 1.1, 6.0, 2.0, 0.0, 87.7, 50.5, 49.5, 0.0,12.299999999999997,2.4 +1,1,a-cure-i1,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 2.0, 0.9, 7.7, 2.9, 0.0, 86.6, 51.7, 47.9, 0.4,13.400000000000006,2.6 +1,1,a-cure-i1,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 3.8, 8.9, 49.0, 1.9, 0.0, 36.4, 47.5, 52.5, 0.0,63.6,3.1 +1,1,a-cure-i1,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.2, 2.9, 7.0, 56.0, 1.8, 0.1, 32.1, 48.5, 51.5, 0.0,67.9,2.9 +1,1,a-cure-i1,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 3.5, 9.1, 58.7, 4.9, 0.0, 23.8, 32.9, 67.1, 0.0,76.2,0.0 +1,1,a-cure-i1,2023-24,Methuen - Marsh Grammar School,01810030, 0.1, 2.5, 6.0, 42.3, 3.6, 0.1, 45.4, 44.1, 55.9, 0.0,54.6,0.0 +1.4382022471910112,1.44,a-cure-i1,2023-24,Methuen - Methuen High,01810505, 0.0, 4.0, 6.3, 50.2, 1.9, 0.0, 37.7, 47.2, 52.6, 0.2,62.3,5.6 +1,1,a-cure-i1,2023-24,Methuen - Tenney Grammar School,01810055, 0.0, 2.4, 4.3, 64.8, 2.4, 0.1, 26.1, 50.9, 49.1, 0.0,73.9,3.7 +1,1,a-cure-i1,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.5, 1.4, 3.4, 5.3, 5.5, 0.5, 83.4, 51.0, 49.0, 0.0,16.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.3, 1.6, 4.2, 3.9, 7.2, 0.0, 82.8, 51.3, 48.7, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.7, 1.8, 3.6, 5.4, 6.1, 0.0, 82.5, 51.6, 48.3, 0.2,17.5,3.0 +1,1,a-cure-i1,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.4, 0.4, 6.4, 8.6, 6.0, 0.0, 78.3, 45.3, 53.9, 0.7,21.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Middleborough - Middleborough High,01820505, 0.8, 1.0, 5.3, 3.5, 5.8, 0.1, 83.4, 50.1, 49.5, 0.5,16.599999999999994,1.6 +1,1,a-cure-i1,2023-24,Middleton - Fuller Meadow,01840003, 0.4, 2.1, 1.1, 6.0, 3.5, 0.4, 86.7, 43.5, 56.5, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Middleton - Howe-Manning,01840005, 1.4, 5.5, 1.1, 5.3, 3.2, 0.0, 83.5, 49.7, 50.3, 0.0,16.5,0.0 +1,1,a-cure-i1,2023-24,Milford - Brookside,01850065, 1.2, 0.9, 3.5, 42.7, 3.0, 0.0, 48.7, 45.9, 54.1, 0.0,51.3,3.5 +1,1,a-cure-i1,2023-24,Milford - Memorial,01850010, 1.1, 2.0, 3.2, 38.7, 2.7, 0.0, 52.3, 47.1, 52.9, 0.0,47.7,1.6 +1,1,a-cure-i1,2023-24,Milford - Milford High,01850505, 2.5, 1.5, 3.9, 35.6, 3.5, 0.1, 52.7, 45.3, 54.7, 0.1,47.3,4.2 +1,1,a-cure-i1,2023-24,Milford - Shining Star Early Childhood Center,01850075, 2.6, 5.8, 7.1, 31.8, 3.2, 0.6, 48.7, 39.6, 60.4, 0.0,51.3,0.0 +2.495412844036697,2.5,a-cure-i1,2023-24,Milford - Stacy Middle,01850305, 0.7, 1.1, 4.0, 34.4, 3.0, 0.3, 56.4, 47.4, 52.6, 0.0,43.6,6.8 +2.4504504504504503,2.45,a-cure-i1,2023-24,Milford - Woodland,01850090, 1.3, 1.8, 3.9, 35.1, 2.2, 0.0, 55.6, 49.1, 50.9, 0.0,44.4,6.8 +1,1,a-cure-i1,2023-24,Millbury - Elmwood Street,01860017, 0.2, 5.4, 6.7, 9.7, 5.4, 0.0, 72.5, 48.9, 51.1, 0.0,27.5,0.0 +1,1,a-cure-i1,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 4.4, 4.7, 12.6, 6.5, 0.1, 71.6, 44.4, 54.6, 1.0,28.400000000000006,1.8 +1,1,a-cure-i1,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 4.1, 4.3, 8.4, 5.6, 0.0, 77.7, 47.1, 52.9, 0.0,22.299999999999997,0.0 +4.118143459915611,4.12,a-cure-i1,2023-24,Millis - Clyde F Brown,01870005, 0.5, 3.5, 1.7, 12.4, 5.5, 0.0, 76.3, 50.9, 49.1, 0.0,23.700000000000003,6.1 +1,1,a-cure-i1,2023-24,Millis - Millis High School,01870505, 0.3, 3.2, 0.6, 10.4, 5.0, 0.0, 80.4, 50.5, 49.2, 0.3,19.599999999999994,3.5 +1,1,a-cure-i1,2023-24,Millis - Millis Middle,01870020, 0.4, 2.2, 1.1, 10.8, 4.5, 0.4, 80.6, 53.4, 46.6, 0.0,19.400000000000006,1.8 +1,1,a-cure-i1,2023-24,Millis - TIES,01870515, 0.0, 0.0, 16.7, 0.0, 0.0, 0.0, 83.3, 83.3, 16.7, 0.0,16.700000000000003,0.0 +3.335211267605634,3.34,a-cure-i1,2023-24,Milton - Charles S Pierce Middle,01890410, 0.1, 9.3, 14.1, 5.9, 6.1, 0.0, 64.5, 51.4, 48.5, 0.1,35.5,7.4 +6.449612403100776,5,a-cure-i1,2023-24,Milton - Collicot,01890005, 0.0, 12.6, 3.2, 3.9, 6.0, 0.0, 74.2, 52.2, 47.8, 0.0,25.799999999999997,10.4 +4.744827586206896,4.74,a-cure-i1,2023-24,Milton - Cunningham School,01890007, 0.0, 10.3, 4.4, 6.7, 7.2, 0.3, 71.0, 48.8, 51.2, 0.0,29.0,8.6 +5.963636363636363,5,a-cure-i1,2023-24,Milton - Glover,01890010, 0.5, 4.8, 5.3, 5.6, 5.8, 0.0, 78.0, 53.9, 46.1, 0.0,22.0,8.2 +1,1,a-cure-i1,2023-24,Milton - Milton High,01890505, 0.2, 7.1, 14.7, 7.4, 4.3, 0.0, 66.4, 47.1, 52.3, 0.6,33.599999999999994,4.7 +4.777947932618683,4.78,a-cure-i1,2023-24,Milton - Tucker,01890020, 0.0, 8.2, 33.4, 10.9, 12.7, 0.0, 34.7, 45.4, 54.6, 0.0,65.3,19.5 +1,1,a-cure-i1,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.1, 4.0, 5.0, 11.7, 6.6, 0.0, 72.6, 35.1, 62.7, 2.2,27.400000000000006,3.9000000000000004 +1,1,a-cure-i1,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.4, 1.1, 6.8, 4.5, 0.0, 87.2, 54.9, 44.7, 0.4,12.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 2.9, 5.8, 1.9, 0.0, 89.3, 39.8, 60.2, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.7, 0.7, 5.0, 4.0, 0.0, 89.6, 51.8, 47.2, 1.0,10.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.7, 0.0, 2.9, 1.4, 0.0, 0.0, 94.9, 47.1, 52.9, 0.0,5.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.7, 0.7, 6.7, 16.8, 9.4, 0.0, 65.8, 43.6, 56.4, 0.0,34.2,0.0 +1,1,a-cure-i1,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 0.2, 3.2, 6.5, 9.1, 7.3, 0.2, 73.5, 43.3, 56.7, 0.0,26.5,4.4 +5.184,5,a-cure-i1,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.8, 1.5, 8.1, 9.9, 4.6, 0.1, 75.0, 51.3, 48.1, 0.6,25.0,8.1 +1,1,a-cure-i1,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.5, 1.0, 5.8, 10.6, 6.5, 0.2, 75.4, 45.9, 53.9, 0.2,24.599999999999994,2.4 +1,1,a-cure-i1,2023-24,Monson - Granite Valley School,01910030, 0.5, 1.6, 1.0, 9.3, 2.1, 0.0, 85.5, 53.0, 47.0, 0.0,14.5,3.1 +1,1,a-cure-i1,2023-24,Monson - Monson High School,01910505, 0.3, 1.0, 1.7, 9.5, 4.4, 0.3, 82.7, 52.5, 46.8, 0.7,17.299999999999997,2.9 +18.000000000000007,5,a-cure-i1,2023-24,Monson - Quarry Hill Community School,01910010, 0.0, 0.8, 1.6, 5.6, 0.8, 0.0, 91.2, 49.6, 50.4, 0.0,8.799999999999997,9.9 +6.891385767790261,5,a-cure-i1,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.3, 3.0, 17.5, 4.8, 0.1, 73.3, 46.8, 52.2, 1.0,26.700000000000003,11.5 +1,1,a-cure-i1,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 3.1, 2.2, 7.4, 1.7, 0.4, 85.2, 49.3, 50.7, 0.0,14.799999999999997,0.0 +7.613793103448276,5,a-cure-i1,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.3, 2.7, 6.7, 3.8, 0.0, 85.5, 49.2, 49.9, 0.9,14.5,6.9 +1,1,a-cure-i1,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 3.7, 4.6, 7.0, 7.0, 0.0, 77.7, 45.9, 53.4, 0.7,22.299999999999997,3.2 +4.54380664652568,4.54,a-cure-i1,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.2, 31.0, 17.9, 12.6, 4.4, 0.1, 33.8, 50.9, 49.1, 0.0,66.2,18.8 +1,1,a-cure-i1,2023-24,Nahant - Johnson,01960010, 0.0, 0.7, 0.0, 11.4, 3.4, 0.0, 84.6, 40.9, 59.1, 0.0,15.400000000000006,0.0 +4.215053763440861,4.22,a-cure-i1,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 0.6, 8.5, 41.1, 5.7, 0.0, 44.2, 47.3, 52.7, 0.0,55.8,14.700000000000001 +1.7943925233644857,1.79,a-cure-i1,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 1.5, 9.3, 46.9, 6.5, 0.0, 35.8, 53.1, 46.9, 0.0,64.2,7.199999999999999 +4.559139784946237,4.56,a-cure-i1,2023-24,Nantucket - Nantucket High,01970505, 0.0, 2.4, 9.6, 40.1, 3.7, 0.0, 44.2, 48.6, 51.4, 0.0,55.8,15.9 +2.2974358974358973,2.3,a-cure-i1,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.9, 5.6, 47.4, 4.7, 0.0, 41.5, 47.9, 52.1, 0.0,58.5,8.399999999999999 +1,1,a-cure-i1,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 1.1, 0.5, 8.5, 3.0, 0.0, 86.9, 48.1, 51.9, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Narragansett - Narragansett Regional High,07200505, 0.2, 1.1, 1.3, 9.9, 4.2, 0.2, 83.2, 43.4, 55.4, 1.3,16.799999999999997,2.9 +1,1,a-cure-i1,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 0.7, 2.1, 11.1, 4.2, 0.0, 81.9, 48.2, 51.8, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Nashoba - Center School,07250020, 0.0, 5.8, 0.8, 8.0, 6.8, 0.0, 78.6, 46.6, 53.4, 0.0,21.400000000000006,3.3 +1,1,a-cure-i1,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 4.3, 1.2, 5.8, 5.0, 0.1, 83.6, 49.0, 50.9, 0.1,16.400000000000006,0.0 +5.017751479289939,5,a-cure-i1,2023-24,Nashoba - Hale,07250310, 0.0, 4.2, 0.8, 5.9, 5.9, 0.0, 83.1, 53.2, 46.4, 0.4,16.900000000000006,5.3 +3.7647058823529425,3.76,a-cure-i1,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.4, 0.8, 1.2, 14.5, 5.2, 0.0, 77.9, 47.0, 53.0, 0.0,22.099999999999994,5.2 +1,1,a-cure-i1,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 2.6, 1.7, 14.8, 3.3, 0.0, 77.7, 48.2, 51.8, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 4.9, 2.5, 7.7, 3.4, 0.1, 81.3, 52.2, 47.3, 0.5,18.700000000000003,4.8 +1,1,a-cure-i1,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.1, 1.2, 2.3, 13.1, 4.4, 0.0, 78.9, 37.1, 60.3, 2.6,21.099999999999994,4.6 +3.555555555555555,3.56,a-cure-i1,2023-24,Natick - Bennett-Hemenway,01980005, 0.0, 14.3, 1.8, 10.0, 6.1, 0.0, 67.6, 46.9, 53.1, 0.0,32.400000000000006,7.2 +1,1,a-cure-i1,2023-24,Natick - Brown,01980010, 0.0, 23.4, 3.3, 14.6, 5.5, 0.0, 53.1, 46.5, 53.5, 0.0,46.9,0.0 +2.8333333333333335,2.83,a-cure-i1,2023-24,Natick - J F Kennedy Middle School,01980305, 0.3, 11.3, 1.9, 9.0, 6.3, 0.0, 71.2, 46.7, 53.2, 0.1,28.799999999999997,5.1 +1,1,a-cure-i1,2023-24,Natick - Johnson,01980031, 0.0, 7.8, 2.0, 9.8, 2.0, 0.0, 78.4, 41.2, 58.8, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Natick - Lilja Elementary,01980035, 0.2, 11.7, 2.2, 13.2, 7.6, 0.0, 65.1, 51.5, 48.5, 0.0,34.900000000000006,3.9 +1,1,a-cure-i1,2023-24,Natick - Memorial,01980043, 0.0, 7.2, 1.4, 6.8, 8.1, 0.0, 76.6, 49.8, 50.2, 0.0,23.400000000000006,0.0 +3.8326996197718635,3.83,a-cure-i1,2023-24,Natick - Natick High,01980505, 0.1, 9.5, 3.6, 8.0, 5.0, 0.1, 73.7, 45.4, 53.8, 0.7,26.299999999999997,6.3 +1,1,a-cure-i1,2023-24,Natick - Wilson Middle,01980310, 0.1, 9.2, 4.0, 8.2, 8.0, 0.0, 70.5, 50.1, 49.7, 0.1,29.5,3.1000000000000005 +1,1,a-cure-i1,2023-24,Nauset - Nauset Regional High,06600505, 0.1, 2.0, 5.3, 5.6, 3.5, 0.0, 83.5, 53.7, 45.8, 0.5,16.5,2.8 +1,1,a-cure-i1,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 1.0, 5.2, 7.6, 6.8, 0.0, 79.4, 50.5, 49.5, 0.0,20.599999999999994,2.4 +5.316770186335403,5,a-cure-i1,2023-24,Needham - Broadmeadow,01990005, 0.0, 14.9, 2.1, 5.9, 9.2, 0.0, 67.8, 47.9, 52.1, 0.0,32.2,10.7 +1,1,a-cure-i1,2023-24,Needham - High Rock School,01990410, 0.0, 12.5, 3.4, 5.4, 5.6, 0.0, 73.2, 49.0, 50.8, 0.2,26.799999999999997,2.7 +2.8822170900692843,2.88,a-cure-i1,2023-24,Needham - John Eliot,01990020, 0.0, 19.4, 4.7, 9.2, 10.0, 0.0, 56.7, 51.0, 49.0, 0.0,43.3,7.8 +9.322314049586776,5,a-cure-i1,2023-24,Needham - Needham High,01990505, 0.0, 9.0, 2.5, 7.9, 4.7, 0.1, 75.8, 51.0, 48.1, 0.9,24.200000000000003,14.1 +3.679442508710801,3.68,a-cure-i1,2023-24,Needham - Newman Elementary,01990050, 0.0, 11.9, 3.4, 7.2, 6.0, 0.1, 71.3, 45.1, 54.9, 0.0,28.700000000000003,6.6 +5.6598639455782305,5,a-cure-i1,2023-24,Needham - Pollard Middle,01990405, 0.0, 11.4, 3.9, 8.0, 6.3, 0.0, 70.6, 51.5, 48.5, 0.0,29.400000000000006,10.4 +6.040816326530612,5,a-cure-i1,2023-24,Needham - Sunita L. Williams Elementary,01990035, 0.2, 11.1, 4.3, 6.0, 7.5, 0.2, 70.6, 47.6, 52.4, 0.0,29.400000000000006,11.100000000000001 +1,1,a-cure-i1,2023-24,Needham - William Mitchell,01990040, 0.0, 10.5, 3.0, 4.6, 5.7, 0.0, 76.3, 49.2, 50.8, 0.0,23.700000000000003,4.4 +8.642464246424643,5,a-cure-i1,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.2, 2.5, 51.8, 29.6, 6.9, 0.0, 9.1, 49.2, 50.8, 0.0,90.9,49.1 +1.9358600583090382,1.94,a-cure-i1,2023-24,New Bedford - Abraham Lincoln,02010095, 0.3, 0.9, 12.4, 47.9, 7.1, 0.0, 31.4, 45.8, 54.2, 0.0,68.6,8.3 +4.716553287981859,4.72,a-cure-i1,2023-24,New Bedford - Alfred J Gomes,02010063, 0.3, 0.5, 14.1, 70.2, 3.1, 0.0, 11.8, 48.2, 51.8, 0.0,88.2,26.0 +1,1,a-cure-i1,2023-24,New Bedford - Betsey B Winslow,02010140, 0.4, 2.1, 10.3, 21.4, 8.1, 0.0, 57.7, 47.0, 52.6, 0.4,42.3,3.4 +2.1361256544502614,2.14,a-cure-i1,2023-24,New Bedford - Carlos Pacheco,02010105, 0.4, 1.2, 15.4, 52.4, 7.1, 0.0, 23.6, 50.8, 49.2, 0.0,76.4,10.2 +1,1,a-cure-i1,2023-24,New Bedford - Casimir Pulaski,02010123, 0.5, 1.1, 7.3, 23.0, 4.5, 0.2, 63.4, 45.2, 54.8, 0.0,36.6,2.4 +1,1,a-cure-i1,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 1.1, 7.6, 32.8, 8.4, 0.0, 50.0, 47.7, 52.3, 0.0,50.0,2.7 +4.9694793536804305,4.97,a-cure-i1,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.4, 0.8, 14.0, 34.5, 6.1, 0.0, 44.3, 51.1, 48.9, 0.0,55.7,17.3 +1,1,a-cure-i1,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.0, 2.0, 18.8, 40.8, 3.7, 0.0, 34.7, 50.6, 49.4, 0.0,65.3,0.0 +1.4647887323943662,1.46,a-cure-i1,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 1.1, 12.9, 38.1, 4.7, 0.0, 43.2, 39.2, 60.8, 0.0,56.8,5.2 +2.1626794258373208,2.16,a-cure-i1,2023-24,New Bedford - Hayden/McFadden,02010078, 0.4, 0.7, 13.2, 65.8, 3.5, 0.0, 16.4, 49.9, 50.1, 0.0,83.6,11.3 +1.8420348058902274,1.84,a-cure-i1,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.3, 0.5, 9.7, 59.0, 5.0, 0.3, 25.3, 51.4, 48.3, 0.3,74.7,8.6 +2.475873544093178,2.48,a-cure-i1,2023-24,New Bedford - James B Congdon,02010040, 0.7, 0.7, 15.0, 39.9, 4.0, 0.0, 39.9, 48.8, 51.2, 0.0,60.1,9.3 +1,1,a-cure-i1,2023-24,New Bedford - Jireh Swift,02010130, 1.4, 1.8, 9.5, 30.3, 5.0, 0.0, 52.0, 54.3, 45.7, 0.0,48.0,0.0 +3.933333333333334,3.93,a-cure-i1,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 0.4, 18.6, 44.7, 8.3, 0.0, 28.0, 48.5, 51.5, 0.0,72.0,17.700000000000003 +1,1,a-cure-i1,2023-24,New Bedford - John B Devalles,02010050, 0.3, 0.3, 18.5, 49.0, 6.2, 0.0, 25.7, 48.3, 51.7, 0.0,74.3,0.0 +4.3475513428120065,4.35,a-cure-i1,2023-24,New Bedford - Keith Middle School,02010405, 0.5, 0.7, 17.4, 37.0, 7.7, 0.0, 36.7, 49.5, 50.3, 0.1,63.3,17.2 +3.965417867435158,3.97,a-cure-i1,2023-24,New Bedford - New Bedford High,02010505, 0.4, 0.7, 15.6, 47.3, 5.4, 0.1, 30.6, 45.8, 53.9, 0.3,69.4,17.2 +2.3428571428571425,2.34,a-cure-i1,2023-24,New Bedford - Normandin Middle School,02010410, 0.5, 1.4, 9.3, 40.5, 4.0, 0.2, 44.0, 46.9, 53.0, 0.1,56.0,8.2 +3.1372549019607843,3.14,a-cure-i1,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.1, 17.1, 50.3, 3.9, 0.0, 28.6, 46.8, 53.2, 0.0,71.4,14.0 +3.737062937062937,3.74,a-cure-i1,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.2, 0.7, 20.9, 40.9, 8.8, 0.0, 28.5, 40.9, 59.1, 0.0,71.5,16.7 +2.899145299145299,2.9,a-cure-i1,2023-24,New Bedford - Thomas R Rodman,02010125, 0.0, 1.5, 11.2, 40.0, 5.9, 0.0, 41.5, 47.3, 52.7, 0.0,58.5,10.6 +1,1,a-cure-i1,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 10.5, 33.7, 7.0, 0.0, 48.8, 33.7, 65.1, 1.2,51.2,4.3 +2.4403183023872677,2.44,a-cure-i1,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.6, 15.6, 49.2, 10.1, 0.0, 24.6, 38.5, 61.5, 0.0,75.4,11.5 +1,1,a-cure-i1,2023-24,New Bedford - William H Taylor,02010135, 0.0, 0.4, 8.8, 23.4, 10.0, 0.0, 57.5, 51.3, 48.7, 0.0,42.5,0.0 +5.93131313131313,5,a-cure-i1,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.1, 0.4, 86.8, 7.3, 4.2, 0.1, 1.0, 51.6, 48.4, 0.0,99.0,36.699999999999996 +13.548387096774187,5,a-cure-i1,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 1.5, 0.0, 5.8, 5.1, 0.0, 87.6, 45.3, 54.7, 0.0,12.400000000000006,10.5 +1,1,a-cure-i1,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 2.7, 0.0, 4.0, 4.0, 0.0, 89.3, 50.3, 49.7, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.2, 1.5, 0.8, 6.6, 2.5, 0.0, 88.4, 48.5, 51.5, 0.0,11.599999999999994,3.6 +1,1,a-cure-i1,2023-24,Newburyport - Newburyport High,02040505, 0.3, 3.3, 1.4, 3.4, 1.9, 0.0, 89.7, 51.7, 48.3, 0.0,10.299999999999997,0.0 +17.454545454545453,5,a-cure-i1,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, 1.9, 1.1, 7.0, 1.1, 0.0, 89.0, 51.4, 48.4, 0.2,11.0,12.0 +7.494736842105263,5,a-cure-i1,2023-24,Newton - A E Angier,02070005, 0.0, 16.9, 3.9, 4.9, 12.2, 0.0, 62.0, 51.3, 47.4, 1.3,38.0,17.8 +2.970917225950783,2.97,a-cure-i1,2023-24,Newton - Bigelow Middle,02070305, 0.0, 15.9, 5.1, 14.7, 8.7, 0.2, 55.3, 53.4, 45.9, 0.7,44.7,8.3 +9.062937062937062,5,a-cure-i1,2023-24,Newton - Bowen,02070015, 0.0, 30.7, 2.5, 14.1, 9.9, 0.0, 42.8, 49.6, 50.4, 0.0,57.2,32.4 +8.02930402930403,5,a-cure-i1,2023-24,Newton - C C Burr,02070020, 0.0, 23.9, 5.4, 15.2, 10.1, 0.0, 45.4, 49.6, 49.0, 1.4,54.6,27.4 +2.699588477366255,2.7,a-cure-i1,2023-24,Newton - Cabot,02070025, 0.0, 17.5, 4.4, 12.6, 14.0, 0.0, 51.4, 48.4, 51.2, 0.5,48.6,8.2 +2.3244552058111383,2.32,a-cure-i1,2023-24,Newton - Charles E Brown Middle,02070310, 0.0, 23.2, 3.7, 7.8, 6.6, 0.0, 58.7, 47.8, 51.4, 0.8,41.3,6.0 +4.039761431411532,4.04,a-cure-i1,2023-24,Newton - Countryside,02070040, 0.0, 26.1, 6.1, 8.3, 9.7, 0.0, 49.7, 47.5, 52.5, 0.0,50.3,12.700000000000001 +4.2898550724637685,4.29,a-cure-i1,2023-24,Newton - F A Day Middle,02070315, 0.1, 16.5, 5.2, 8.5, 10.7, 0.3, 58.6, 51.3, 48.4, 0.3,41.4,11.100000000000001 +3.603960396039604,3.6,a-cure-i1,2023-24,Newton - Franklin,02070055, 0.0, 17.5, 3.2, 10.6, 9.2, 0.0, 59.6, 53.3, 45.8, 0.9,40.4,9.1 +7.378823529411764,5,a-cure-i1,2023-24,Newton - Horace Mann,02070075, 0.0, 15.6, 5.3, 10.0, 11.7, 0.0, 57.5, 45.6, 54.2, 0.3,42.5,19.599999999999998 +5.107344632768361,5,a-cure-i1,2023-24,Newton - John Ward,02070120, 0.0, 16.5, 1.4, 7.1, 10.4, 0.0, 64.6, 48.1, 51.9, 0.0,35.400000000000006,11.3 +4.521739130434782,4.52,a-cure-i1,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, 24.4, 6.1, 19.8, 9.5, 0.0, 40.2, 43.6, 56.4, 0.0,59.8,16.9 +1,1,a-cure-i1,2023-24,Newton - Mason-Rice,02070080, 0.0, 22.2, 1.8, 6.3, 9.6, 0.6, 59.6, 51.5, 48.5, 0.0,40.4,4.6 +4.7207207207207205,4.72,a-cure-i1,2023-24,Newton - Memorial Spaulding,02070105, 0.0, 23.8, 4.6, 8.4, 7.6, 0.0, 55.6, 56.6, 43.4, 0.0,44.4,13.1 +1,1,a-cure-i1,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, 28.6, 7.0, 11.9, 13.0, 0.0, 39.5, 37.8, 62.2, 0.0,60.5,0.0 +5.9553349875930515,5,a-cure-i1,2023-24,Newton - Newton North High,02070505, 0.0, 16.2, 5.2, 11.6, 7.0, 0.2, 59.7, 49.4, 49.9, 0.7,40.3,14.999999999999998 +5.186206896551724,5,a-cure-i1,2023-24,Newton - Newton South High,02070510, 0.3, 24.7, 3.5, 8.5, 6.4, 0.1, 56.5, 48.2, 51.2, 0.6,43.5,14.1 +4.784761904761905,4.78,a-cure-i1,2023-24,Newton - Oak Hill Middle,02070320, 0.0, 27.0, 6.2, 12.5, 6.8, 0.0, 47.5, 47.7, 52.2, 0.2,52.5,15.700000000000001 +4.780722891566265,4.78,a-cure-i1,2023-24,Newton - Peirce,02070100, 0.0, 16.1, 4.2, 11.9, 9.3, 0.0, 58.5, 48.3, 51.7, 0.0,41.5,12.4 +5.562724014336918,5,a-cure-i1,2023-24,Newton - Underwood,02070115, 0.4, 22.7, 6.6, 15.3, 10.7, 0.0, 44.2, 54.5, 45.0, 0.4,55.8,19.4 +1.9705882352941178,1.97,a-cure-i1,2023-24,Newton - Williams,02070125, 0.0, 36.7, 2.3, 8.8, 6.5, 0.0, 45.6, 50.7, 49.3, 0.0,54.4,6.7 +2.8368794326241136,2.84,a-cure-i1,2023-24,Newton - Zervas,02070130, 0.5, 25.8, 7.8, 10.3, 11.5, 0.5, 43.6, 50.1, 49.6, 0.3,56.4,10.0 +1,1,a-cure-i1,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.2, 2.7, 2.0, 3.3, 3.4, 0.0, 88.4, 48.4, 51.6, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Norfolk - H Olive Day,02080015, 0.0, 2.7, 1.6, 2.5, 2.7, 0.0, 90.6, 48.3, 51.7, 0.0,9.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.7, 0.5, 1.5, 7.2, 4.6, 0.0, 85.5, 69.8, 28.0, 2.2,14.5,2.0 +1,1,a-cure-i1,2023-24,North Adams - Brayton,02090035, 0.0, 1.4, 0.9, 10.1, 9.6, 0.0, 78.0, 39.9, 60.1, 0.0,22.0,0.0 +1,1,a-cure-i1,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.8, 0.4, 4.3, 6.3, 10.6, 0.0, 77.6, 43.3, 56.3, 0.4,22.400000000000006,4.5 +1,1,a-cure-i1,2023-24,North Adams - Drury High,02090505, 0.4, 0.9, 3.4, 8.0, 8.8, 0.4, 78.1, 52.0, 47.5, 0.4,21.900000000000006,2.8 +1,1,a-cure-i1,2023-24,North Adams - Greylock,02090015, 0.0, 0.0, 0.7, 8.9, 12.2, 0.4, 77.8, 48.9, 51.1, 0.0,22.200000000000003,0.0 +1,1,a-cure-i1,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 8.0, 3.6, 16.9, 3.1, 0.2, 68.0, 44.6, 55.4, 0.0,32.0,3.6 +1,1,a-cure-i1,2023-24,North Andover - Annie L Sargent School,02110018, 0.2, 7.9, 1.1, 6.8, 4.5, 0.0, 79.5, 47.6, 52.4, 0.0,20.5,0.0 +1,1,a-cure-i1,2023-24,North Andover - Atkinson,02110001, 0.4, 4.9, 6.0, 31.2, 3.4, 0.0, 54.1, 47.0, 53.0, 0.0,45.9,0.0 +1,1,a-cure-i1,2023-24,North Andover - Franklin,02110010, 0.0, 8.4, 3.4, 9.2, 5.0, 0.0, 73.9, 47.4, 52.6, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2023-24,North Andover - Kittredge,02110015, 0.0, 2.3, 1.8, 13.1, 3.6, 0.0, 79.3, 45.9, 53.6, 0.5,20.700000000000003,0.0 +1,1,a-cure-i1,2023-24,North Andover - North Andover High,02110505, 0.2, 7.5, 3.6, 15.9, 3.8, 0.0, 69.0, 48.8, 50.9, 0.3,31.0,1.9000000000000001 +1,1,a-cure-i1,2023-24,North Andover - North Andover Middle,02110305, 0.1, 7.4, 2.9, 16.5, 3.6, 0.1, 69.4, 47.2, 52.5, 0.3,30.599999999999994,0.0 +1,1,a-cure-i1,2023-24,North Andover - Thomson,02110020, 0.0, 6.9, 2.5, 23.3, 2.5, 0.0, 64.7, 46.7, 53.3, 0.0,35.3,0.0 +1,1,a-cure-i1,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.5, 18.9, 4.9, 7.4, 4.7, 0.7, 62.9, 51.4, 48.6, 0.0,37.1,1.0 +1,1,a-cure-i1,2023-24,North Attleborough - Community,02120030, 0.3, 7.3, 11.5, 13.5, 6.9, 0.3, 60.1, 49.3, 50.7, 0.0,39.9,0.0 +1,1,a-cure-i1,2023-24,North Attleborough - Falls,02120010, 0.4, 5.4, 5.0, 4.6, 7.5, 0.0, 77.1, 43.8, 56.3, 0.0,22.900000000000006,0.0 +1,1,a-cure-i1,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 4.4, 4.8, 5.9, 3.5, 0.0, 81.3, 43.6, 56.2, 0.2,18.700000000000003,0.0 +3.4068441064638786,3.41,a-cure-i1,2023-24,North Attleborough - North Attleboro High,02120505, 0.2, 8.5, 5.9, 7.5, 3.8, 0.4, 73.7, 50.3, 49.2, 0.5,26.299999999999997,5.6 +1,1,a-cure-i1,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 11.5, 9.5, 9.5, 4.7, 0.0, 64.9, 41.9, 58.1, 0.0,35.099999999999994,0.0 +1,1,a-cure-i1,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.1, 8.5, 5.8, 7.1, 4.8, 0.1, 73.7, 46.2, 53.6, 0.2,26.299999999999997,4.5 +3.983673469387755,3.98,a-cure-i1,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.0, 9.9, 7.5, 5.1, 2.0, 0.0, 75.5, 51.4, 48.6, 0.0,24.5,6.1 +8.546583850931679,5,a-cure-i1,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.7, 2.6, 9.5, 3.3, 0.0, 83.9, 48.2, 51.8, 0.0,16.099999999999994,8.6 +1,1,a-cure-i1,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.8, 3.0, 12.0, 3.0, 0.0, 81.2, 48.9, 51.1, 0.0,18.799999999999997,3.0 +1,1,a-cure-i1,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.7, 0.7, 10.6, 2.6, 0.0, 85.4, 43.0, 57.0, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.3, 2.4, 7.3, 3.3, 0.0, 85.6, 54.6, 45.4, 0.0,14.400000000000006,1.7 +1,1,a-cure-i1,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.2, 2.9, 3.5, 12.1, 6.0, 0.0, 75.3, 47.7, 52.3, 0.0,24.700000000000003,1.3 +1,1,a-cure-i1,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, 2.9, 2.0, 8.2, 3.7, 0.1, 83.1, 48.3, 51.4, 0.3,16.900000000000006,1.9 +1,1,a-cure-i1,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 1.4, 3.5, 8.1, 3.0, 0.0, 84.0, 50.9, 49.1, 0.0,16.0,0.0 +1,1,a-cure-i1,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 2.8, 3.8, 9.4, 2.8, 0.0, 81.1, 33.0, 67.0, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2023-24,North Middlesex - Varnum Brook,07350035, 0.3, 3.8, 3.1, 8.8, 3.3, 0.0, 80.7, 51.1, 48.9, 0.0,19.299999999999997,3.3 +1,1,a-cure-i1,2023-24,North Reading - E Ethel Little School,02170003, 0.0, 5.1, 0.7, 6.5, 5.8, 0.0, 82.0, 53.1, 46.9, 0.0,18.0,0.0 +1,1,a-cure-i1,2023-24,North Reading - J Turner Hood,02170010, 0.0, 5.9, 0.5, 6.6, 3.7, 0.0, 83.4, 48.8, 51.2, 0.0,16.599999999999994,0.0 +1,1,a-cure-i1,2023-24,North Reading - L D Batchelder,02170005, 0.0, 4.2, 0.9, 2.4, 3.8, 0.0, 88.7, 44.7, 55.3, 0.0,11.299999999999997,3.7 +1,1,a-cure-i1,2023-24,North Reading - North Reading High,02170505, 0.0, 6.0, 0.5, 5.2, 2.6, 0.0, 85.8, 51.5, 47.9, 0.6,14.200000000000003,3.2 +1,1,a-cure-i1,2023-24,North Reading - North Reading Middle,02170305, 0.0, 5.7, 0.4, 4.2, 5.5, 0.2, 84.0, 47.0, 53.0, 0.0,16.0,0.0 +1,1,a-cure-i1,2023-24,Northampton - Bridge Street,02100005, 0.0, 2.3, 4.2, 32.4, 7.7, 0.0, 53.3, 49.8, 49.8, 0.4,46.7,0.0 +13.933933933933934,5,a-cure-i1,2023-24,Northampton - Jackson Street,02100020, 0.0, 4.0, 3.6, 18.5, 7.2, 0.0, 66.7, 44.9, 55.1, 0.0,33.3,29.0 +1,1,a-cure-i1,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.2, 2.6, 4.1, 20.3, 8.1, 0.0, 64.8, 48.5, 51.1, 0.4,35.2,1.1 +1,1,a-cure-i1,2023-24,Northampton - Leeds,02100025, 0.4, 2.5, 1.1, 16.9, 6.1, 0.0, 73.0, 43.5, 55.8, 0.7,27.0,0.0 +4.893470790378008,4.89,a-cure-i1,2023-24,Northampton - Northampton High,02100505, 0.0, 3.0, 3.3, 14.7, 8.2, 0.0, 70.9, 48.3, 49.6, 2.1,29.099999999999994,8.9 +5.847715736040608,5,a-cure-i1,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 1.3, 2.1, 12.0, 4.3, 0.0, 80.3, 47.6, 51.9, 0.4,19.700000000000003,7.2 +1,1,a-cure-i1,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.5, 0.7, 1.2, 12.7, 2.6, 0.2, 82.1, 39.7, 58.9, 1.4,17.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 15.7, 2.0, 9.9, 4.4, 0.3, 67.7, 52.0, 47.5, 0.5,32.3,2.2 +1,1,a-cure-i1,2023-24,Northborough - Fannie E Proctor,02130015, 0.8, 16.6, 6.5, 12.6, 5.7, 0.0, 57.9, 47.0, 53.0, 0.0,42.1,0.0 +1,1,a-cure-i1,2023-24,Northborough - Lincoln Street,02130003, 0.0, 12.4, 1.8, 8.5, 5.3, 0.4, 71.6, 45.7, 54.3, 0.0,28.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.0, 13.9, 2.1, 16.4, 8.2, 3.9, 55.5, 47.3, 52.3, 0.4,44.5,0.0 +1,1,a-cure-i1,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 19.2, 2.0, 14.5, 3.9, 0.0, 60.4, 49.8, 50.2, 0.0,39.6,0.0 +1,1,a-cure-i1,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.5, 10.7, 2.8, 9.8, 4.2, 2.3, 69.6, 46.7, 53.3, 0.0,30.400000000000006,4.6 +1,1,a-cure-i1,2023-24,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.3, 2.0, 14.4, 2.0, 0.0, 81.4, 46.0, 54.0, 0.0,18.599999999999994,2.3 +1,1,a-cure-i1,2023-24,Northbridge - Northbridge High,02140505, 0.0, 1.5, 2.1, 12.1, 3.0, 0.0, 81.4, 48.2, 51.6, 0.2,18.599999999999994,2.7 +1,1,a-cure-i1,2023-24,Northbridge - Northbridge Middle,02140305, 0.2, 1.6, 0.5, 12.5, 2.1, 0.0, 83.1, 49.1, 50.7, 0.2,16.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.4, 1.3, 4.7, 45.7, 1.4, 0.1, 46.5, 45.8, 53.5, 0.7,53.5,1.3 +1,1,a-cure-i1,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.4, 1.3, 1.5, 1.2, 0.4, 95.2, 37.5, 62.3, 0.2,4.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.9, 5.7, 5.4, 4.5, 0.0, 83.5, 51.1, 48.9, 0.0,16.5,0.0 +1,1,a-cure-i1,2023-24,Norton - J C Solmonese,02180015, 0.0, 3.0, 4.9, 2.9, 5.9, 0.0, 83.3, 49.0, 51.0, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 3.0, 6.9, 3.3, 4.0, 0.0, 82.8, 47.2, 52.8, 0.0,17.200000000000003,0.0 +5.971830985915491,5,a-cure-i1,2023-24,Norton - Norton High,02180505, 0.4, 2.6, 4.1, 3.9, 3.1, 0.0, 85.8, 52.1, 47.7, 0.1,14.200000000000003,5.3 +1,1,a-cure-i1,2023-24,Norton - Norton Middle,02180305, 0.0, 1.1, 3.9, 4.5, 4.5, 0.0, 86.0, 49.6, 50.4, 0.0,14.0,0.0 +1,1,a-cure-i1,2023-24,Norwell - Grace Farrar Cole,02190005, 0.0, 3.9, 1.1, 1.5, 6.7, 0.0, 86.9, 49.2, 50.8, 0.0,13.099999999999994,3.4 +1,1,a-cure-i1,2023-24,Norwell - Norwell High,02190505, 0.2, 2.9, 0.2, 1.7, 3.5, 0.0, 91.6, 45.5, 54.5, 0.0,8.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Norwell - Norwell Middle School,02190405, 0.0, 2.6, 1.2, 1.0, 3.8, 0.2, 91.2, 45.6, 54.2, 0.2,8.799999999999997,2.7 +1,1,a-cure-i1,2023-24,Norwell - William G Vinal,02190020, 0.0, 2.2, 0.4, 1.3, 4.7, 0.0, 91.4, 49.1, 50.7, 0.2,8.599999999999994,0.0 +1.2919254658385093,1.29,a-cure-i1,2023-24,Norwood - Balch,02200005, 0.3, 6.5, 13.4, 40.5, 1.0, 2.6, 35.6, 50.0, 50.0, 0.0,64.4,5.2 +1,1,a-cure-i1,2023-24,Norwood - Charles J Prescott,02200025, 1.2, 23.6, 15.6, 14.4, 4.4, 0.8, 40.0, 54.8, 45.2, 0.0,60.0,0.0 +1,1,a-cure-i1,2023-24,Norwood - Cornelius M Callahan,02200010, 0.4, 6.0, 12.0, 19.2, 4.7, 1.7, 56.0, 51.3, 48.7, 0.0,44.0,3.5 +1.9185520361990949,1.92,a-cure-i1,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 5.7, 15.3, 19.6, 3.0, 0.6, 55.8, 51.3, 48.7, 0.0,44.2,5.3 +1,1,a-cure-i1,2023-24,Norwood - F A Cleveland,02200015, 0.0, 3.8, 8.8, 14.5, 6.0, 0.6, 66.2, 49.8, 50.2, 0.0,33.8,2.5 +1,1,a-cure-i1,2023-24,Norwood - George F. Willett,02200075, 0.5, 12.8, 11.4, 19.7, 5.0, 1.4, 49.3, 45.5, 54.5, 0.0,50.7,0.0 +2.4438040345821324,2.44,a-cure-i1,2023-24,Norwood - John P Oldham,02200020, 0.4, 4.7, 12.8, 11.7, 3.3, 1.8, 65.3, 47.8, 52.2, 0.0,34.7,5.3 +2.9928057553956835,2.99,a-cure-i1,2023-24,Norwood - Norwood High,02200505, 0.5, 5.0, 13.1, 20.2, 2.5, 0.3, 58.3, 51.4, 48.1, 0.5,41.7,7.800000000000001 +1,1,a-cure-i1,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.5, 1.9, 3.1, 37.2, 4.8, 0.0, 52.5, 44.2, 55.8, 0.0,47.5,4.8 +1,1,a-cure-i1,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.4, 1.1, 1.1, 3.3, 3.8, 0.2, 90.2, 37.3, 61.6, 1.1,9.799999999999997,4.0 +1,1,a-cure-i1,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.2, 1.3, 2.5, 3.1, 4.4, 0.0, 88.5, 50.7, 49.3, 0.0,11.5,2.2 +1,1,a-cure-i1,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.7, 2.1, 3.5, 5.8, 0.0, 87.9, 47.3, 52.4, 0.2,12.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.3, 0.3, 4.0, 27.3, 2.6, 0.3, 65.2, 42.5, 57.5, 0.0,34.8,3.4 +1,1,a-cure-i1,2023-24,Orange - Fisher Hill School,02230010, 0.2, 1.5, 0.6, 9.4, 5.2, 0.2, 83.0, 46.1, 53.7, 0.2,17.0,3.1 +1,1,a-cure-i1,2023-24,Orleans - Orleans Elementary,02240005, 1.4, 2.1, 3.5, 9.2, 3.5, 0.0, 80.3, 50.0, 50.0, 0.0,19.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Oxford - Alfred M Chaffee,02260010, 0.3, 1.2, 3.7, 20.1, 5.9, 0.0, 68.8, 51.2, 48.8, 0.0,31.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Oxford - Clara Barton,02260005, 0.6, 1.6, 1.2, 18.1, 3.7, 0.0, 74.8, 52.3, 47.7, 0.0,25.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Oxford - Oxford High,02260505, 0.0, 1.9, 5.2, 19.9, 6.3, 0.0, 66.7, 48.6, 51.0, 0.4,33.3,2.3 +4.469635627530364,4.47,a-cure-i1,2023-24,Oxford - Oxford Middle,02260405, 0.0, 0.5, 3.4, 16.4, 4.4, 0.0, 75.3, 45.5, 54.5, 0.0,24.700000000000003,6.9 +1,1,a-cure-i1,2023-24,Palmer - Old Mill Pond,02270008, 0.0, 1.4, 2.1, 17.2, 4.5, 0.0, 74.8, 47.9, 52.1, 0.0,25.200000000000003,2.5 +1,1,a-cure-i1,2023-24,Palmer - Palmer High,02270505, 0.2, 3.3, 2.0, 17.5, 5.7, 0.0, 71.3, 47.0, 53.0, 0.0,28.700000000000003,2.3000000000000003 +1,1,a-cure-i1,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.6, 1.6, 10.7, 3.4, 0.2, 83.5, 40.0, 59.4, 0.6,16.5,0.0 +1,1,a-cure-i1,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 4.5, 4.5, 22.3, 3.5, 0.3, 64.9, 45.2, 54.5, 0.3,35.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Peabody - Center,02290015, 0.3, 2.6, 10.9, 34.4, 2.6, 0.0, 49.3, 46.1, 53.9, 0.0,50.7,3.9 +1,1,a-cure-i1,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.2, 1.9, 4.3, 23.9, 2.0, 0.1, 67.7, 50.0, 49.9, 0.1,32.3,0.0 +1,1,a-cure-i1,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 3.1, 14.9, 2.4, 0.0, 79.7, 51.2, 48.8, 0.0,20.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Peabody - John E. McCarthy,02290016, 0.8, 2.9, 9.1, 22.1, 4.9, 0.5, 59.6, 51.0, 49.0, 0.0,40.4,0.0 +1,1,a-cure-i1,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 1.0, 4.1, 4.1, 27.6, 1.0, 0.0, 62.2, 52.0, 46.9, 1.0,37.8,0.0 +1,1,a-cure-i1,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.2, 2.0, 6.3, 26.1, 2.5, 0.0, 63.0, 48.7, 51.2, 0.1,37.0,4.4 +1,1,a-cure-i1,2023-24,Peabody - South Memorial,02290035, 0.4, 3.2, 3.2, 17.1, 3.8, 0.0, 72.4, 51.3, 48.7, 0.0,27.599999999999994,0.4 +1,1,a-cure-i1,2023-24,Peabody - Thomas Carroll,02290010, 0.5, 2.2, 4.7, 34.9, 2.6, 0.3, 54.7, 51.6, 48.4, 0.0,45.3,0.0 +1,1,a-cure-i1,2023-24,Peabody - West Memorial,02290045, 0.0, 1.4, 0.7, 9.0, 4.0, 0.0, 84.8, 53.8, 46.2, 0.0,15.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Peabody - William A Welch Sr,02290027, 1.0, 1.7, 3.7, 55.2, 2.4, 0.3, 35.7, 48.5, 51.5, 0.0,64.3,0.0 +4.679245283018869,4.68,a-cure-i1,2023-24,Pelham - Pelham Elementary,02300005, 2.3, 3.1, 6.2, 15.5, 4.7, 0.0, 68.2, 39.5, 58.9, 1.6,31.799999999999997,9.3 +1,1,a-cure-i1,2023-24,Pembroke - Bryantville Elementary,02310003, 0.2, 0.0, 0.5, 3.2, 6.1, 0.0, 90.0, 46.0, 54.0, 0.0,10.0,0.0 +1,1,a-cure-i1,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 1.8, 0.3, 3.3, 4.0, 0.0, 90.7, 48.7, 51.3, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.2, 0.4, 0.2, 5.3, 5.7, 0.0, 88.1, 49.9, 50.1, 0.0,11.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.6, 0.8, 0.6, 1.9, 3.3, 0.0, 92.8, 50.0, 50.0, 0.0,7.200000000000003,3.9 +1,1,a-cure-i1,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.7, 0.6, 1.4, 3.1, 0.0, 94.3, 43.6, 56.4, 0.0,5.700000000000003,2.0 +1,1,a-cure-i1,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.4, 1.3, 1.3, 6.5, 3.5, 0.0, 87.0, 44.6, 55.4, 0.0,13.0,0.0 +1,1,a-cure-i1,2023-24,Pentucket - Dr John C Page School,07450015, 0.0, 1.2, 0.3, 6.1, 2.5, 0.0, 89.9, 46.3, 53.7, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.4, 0.2, 9.5, 3.3, 0.0, 86.7, 47.9, 52.1, 0.0,13.299999999999997,3.8 +8.414814814814815,5,a-cure-i1,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.4, 0.0, 10.6, 2.4, 0.0, 86.5, 48.6, 51.4, 0.0,13.5,7.1 +1,1,a-cure-i1,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.3, 0.0, 8.5, 2.4, 0.0, 88.8, 46.2, 53.8, 0.0,11.200000000000003,2.0 +12.610169491525427,5,a-cure-i1,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.2, 1.6, 0.5, 7.7, 1.7, 0.2, 88.2, 51.4, 47.9, 0.7,11.799999999999997,9.3 +1,1,a-cure-i1,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 2.3, 7.5, 1.5, 0.0, 88.7, 51.9, 48.1, 0.0,11.299999999999997,0.0 +5.864476386036961,5,a-cure-i1,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 1.5, 0.0, 7.2, 87.6, 1.0, 0.0, 2.6, 49.5, 50.0, 0.5,97.4,35.7 +6.586046511627908,5,a-cure-i1,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.9, 0.0, 5.3, 78.1, 0.9, 0.9, 14.0, 48.2, 50.9, 0.9,86.0,35.400000000000006 +13.440660474716202,5,a-cure-i1,2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 2.5, 0.0, 15.7, 74.8, 3.8, 0.0, 3.1, 48.4, 51.6, 0.0,96.9,81.4 +4.065573770491803,4.07,a-cure-i1,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.5, 8.1, 22.1, 27.1, 3.2, 0.0, 39.0, 52.5, 47.5, 0.0,61.0,15.5 +7.293506493506494,5,a-cure-i1,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.4, 17.5, 29.5, 26.0, 3.7, 0.0, 23.0, 47.7, 52.3, 0.0,77.0,35.1 +1,1,a-cure-i1,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 2.9, 3.4, 0.5, 93.2, 49.3, 50.7, 0.0,6.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 2.4, 4.2, 0.0, 93.5, 50.0, 50.0, 0.0,6.5,0.0 +1,1,a-cure-i1,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.8, 0.4, 1.7, 3.7, 0.0, 93.4, 48.1, 50.2, 1.7,6.599999999999994,0.0 +16.974459724950883,5,a-cure-i1,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 18.5, 8.3, 8.7, 15.4, 0.0, 49.1, 46.7, 52.7, 0.5,50.9,54.0 +7.158924205378973,5,a-cure-i1,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.3, 1.3, 8.3, 24.1, 7.0, 0.0, 59.1, 64.7, 32.8, 2.5,40.9,18.3 +1,1,a-cure-i1,2023-24,Pittsfield - Allendale,02360010, 0.4, 1.6, 16.3, 22.3, 11.2, 0.0, 48.2, 46.6, 53.4, 0.0,51.8,0.0 +1,1,a-cure-i1,2023-24,Pittsfield - Crosby,02360065, 0.0, 0.0, 11.7, 34.0, 14.6, 0.0, 39.7, 51.4, 48.6, 0.0,60.3,0.0 +1,1,a-cure-i1,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 38.1, 14.3, 0.0, 47.6, 23.8, 76.2, 0.0,52.4,0.0 +1,1,a-cure-i1,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 13.3, 23.3, 3.3, 0.0, 60.0, 30.0, 70.0, 0.0,40.0,0.0 +1,1,a-cure-i1,2023-24,Pittsfield - Egremont,02360035, 0.3, 1.6, 7.8, 23.1, 9.3, 0.0, 58.0, 49.2, 50.8, 0.0,42.0,3.5 +2.6163522012578615,2.62,a-cure-i1,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, 0.2, 11.8, 21.3, 14.5, 0.0, 52.3, 51.8, 47.7, 0.5,47.7,7.8 +1,1,a-cure-i1,2023-24,Pittsfield - Morningside Community School,02360055, 0.3, 0.6, 15.2, 32.9, 13.0, 0.0, 38.1, 53.9, 46.1, 0.0,61.9,3.6 +2.766917293233083,2.77,a-cure-i1,2023-24,Pittsfield - Pittsfield High,02360505, 0.1, 1.9, 12.2, 18.8, 6.9, 0.0, 60.1, 48.1, 51.5, 0.4,39.9,6.9 +1,1,a-cure-i1,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 1.6, 0.0, 6.4, 17.0, 11.2, 0.0, 63.8, 47.3, 52.7, 0.0,36.2,0.0 +1,1,a-cure-i1,2023-24,Pittsfield - Silvio O Conte Community,02360105, 0.6, 0.6, 22.7, 28.7, 12.9, 0.0, 34.5, 51.7, 48.3, 0.0,65.5,3.6 +1,1,a-cure-i1,2023-24,Pittsfield - Stearns,02360090, 0.5, 2.4, 5.7, 9.0, 11.0, 0.0, 71.4, 44.3, 55.7, 0.0,28.599999999999994,0.0 +5.061224489795919,5,a-cure-i1,2023-24,Pittsfield - Taconic High,02360510, 0.3, 1.4, 11.0, 17.3, 9.3, 0.0, 60.8, 45.6, 53.9, 0.5,39.2,12.400000000000002 +1,1,a-cure-i1,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.6, 1.7, 11.1, 17.3, 10.2, 0.2, 58.9, 46.5, 52.9, 0.6,41.1,4.2 +1,1,a-cure-i1,2023-24,Pittsfield - Williams,02360100, 0.0, 4.2, 8.4, 13.0, 7.7, 0.0, 66.7, 50.6, 49.4, 0.0,33.3,0.0 +1,1,a-cure-i1,2023-24,Plainville - Anna Ware Jackson,02380010, 0.3, 2.5, 5.3, 12.5, 4.7, 0.0, 74.8, 43.3, 56.7, 0.0,25.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.3, 3.8, 5.4, 8.0, 3.8, 0.0, 78.7, 49.4, 50.6, 0.0,21.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.5, 4.5, 25.0, 3.6, 0.0, 66.4, 52.3, 47.7, 0.0,33.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Federal Furnace School,02390011, 0.0, 0.5, 4.7, 8.6, 7.3, 0.0, 78.9, 44.1, 55.9, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Hedge,02390010, 0.0, 0.5, 5.5, 40.4, 7.8, 0.0, 45.9, 48.6, 51.4, 0.0,54.1,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Indian Brook,02390012, 0.0, 0.4, 0.7, 5.7, 3.3, 0.2, 89.7, 48.4, 51.6, 0.0,10.299999999999997,3.3 +1,1,a-cure-i1,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.7, 1.8, 4.8, 7.7, 0.0, 85.0, 50.2, 49.8, 0.0,15.0,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.2, 1.0, 1.8, 11.8, 4.6, 0.0, 80.7, 46.2, 53.8, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 1.1, 3.0, 12.3, 5.9, 0.0, 77.7, 50.5, 49.3, 0.2,22.299999999999997,1.5 +1,1,a-cure-i1,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.5, 0.9, 14.2, 5.0, 0.0, 79.5, 40.6, 59.4, 0.0,20.5,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Plymouth North High,02390505, 0.0, 1.5, 2.8, 13.6, 5.0, 0.1, 77.0, 48.8, 50.8, 0.3,23.0,0.0 +1,1,a-cure-i1,2023-24,Plymouth - Plymouth South High,02390515, 0.1, 0.3, 1.6, 5.2, 2.9, 0.0, 89.9, 47.4, 52.5, 0.1,10.099999999999994,2.0 +8.301886792452835,5,a-cure-i1,2023-24,Plymouth - Plymouth South Middle,02390305, 0.5, 0.0, 0.8, 5.1, 3.6, 0.5, 89.4, 46.3, 53.7, 0.0,10.599999999999994,5.5 +1,1,a-cure-i1,2023-24,Plymouth - South Elementary,02390046, 0.2, 1.1, 1.4, 7.0, 3.7, 0.2, 86.5, 49.0, 51.0, 0.0,13.5,0.0 +1,1,a-cure-i1,2023-24,Plymouth - West Elementary,02390047, 0.0, 2.0, 2.9, 8.2, 7.0, 0.0, 79.9, 45.5, 54.5, 0.0,20.099999999999994,3.9 +1,1,a-cure-i1,2023-24,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 3.2, 0.8, 0.0, 96.0, 47.8, 52.2, 0.0,4.0,0.0 +7.308203991130819,5,a-cure-i1,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.2, 6.7, 56.4, 22.1, 4.6, 0.2, 9.8, 51.0, 49.0, 0.0,90.2,41.199999999999996 +1,1,a-cure-i1,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.7, 22.6, 14.6, 10.2, 0.0, 51.8, 53.3, 46.0, 0.7,48.2,0.0 +1,1,a-cure-i1,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 1.1, 8.5, 3.7, 0.0, 86.8, 46.6, 53.4, 0.0,13.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Quabbin - Hubbardston Center,07530010, 0.3, 1.6, 0.3, 6.7, 1.3, 0.0, 89.8, 47.0, 53.0, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 5.7, 0.0, 0.0, 94.3, 37.1, 62.9, 0.0,5.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.6, 3.8, 7.7, 2.6, 0.0, 85.3, 46.2, 53.8, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.2, 1.4, 0.5, 7.4, 1.8, 0.0, 88.7, 53.8, 46.2, 0.0,11.299999999999997,2.4 +1,1,a-cure-i1,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.2, 1.1, 3.2, 7.8, 3.4, 0.0, 84.3, 50.5, 49.5, 0.0,15.700000000000003,3.1 +1,1,a-cure-i1,2023-24,Quabbin - Ruggles Lane,07530030, 0.0, 0.3, 2.4, 5.2, 2.9, 0.3, 89.0, 43.0, 57.0, 0.0,11.0,0.0 +1,1,a-cure-i1,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 1.9, 20.8, 0.0, 0.0, 77.4, 43.4, 56.6, 0.0,22.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.6, 0.0, 1.2, 6.1, 5.5, 0.0, 86.6, 51.5, 47.1, 1.5,13.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.6, 0.0, 12.9, 5.9, 0.0, 80.6, 44.1, 55.3, 0.6,19.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.3, 0.3, 2.3, 11.1, 3.9, 0.0, 82.1, 50.5, 49.5, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 2.0, 1.2, 8.6, 3.3, 0.0, 84.8, 49.6, 50.0, 0.4,15.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 42.4, 12.9, 10.0, 8.8, 0.0, 25.9, 40.0, 60.0, 0.0,74.1,0.0 +3.338129496402878,3.34,a-cure-i1,2023-24,Quincy - Atherton Hough,02430040, 0.0, 8.9, 5.2, 6.9, 6.5, 0.4, 72.2, 38.3, 61.7, 0.0,27.799999999999997,5.8 +4.35543018335684,4.36,a-cure-i1,2023-24,Quincy - Atlantic Middle,02430305, 0.0, 59.8, 2.5, 6.1, 2.5, 0.0, 29.1, 50.0, 50.0, 0.0,70.9,19.3 +2.066666666666667,2.07,a-cure-i1,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 59.3, 2.7, 6.8, 3.2, 0.0, 28.0, 50.7, 49.3, 0.0,72.0,9.3 +1,1,a-cure-i1,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, 23.3, 8.8, 10.4, 3.5, 0.0, 54.1, 47.5, 52.5, 0.0,45.9,1.5 +1.3311148086522462,1.33,a-cure-i1,2023-24,Quincy - Central Middle,02430315, 0.0, 48.4, 3.0, 5.1, 3.3, 0.4, 39.9, 43.4, 56.0, 0.6,60.1,5.0 +1,1,a-cure-i1,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 24.9, 3.9, 6.0, 7.8, 0.0, 57.5, 53.3, 46.7, 0.0,42.5,4.9 +1,1,a-cure-i1,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0.2, 37.8, 15.5, 15.5, 5.9, 0.0, 25.1, 49.7, 50.3, 0.0,74.9,0.0 +5.111111111111111,5,a-cure-i1,2023-24,Quincy - Francis W Parker,02430075, 0.0, 59.8, 7.4, 6.5, 5.4, 0.0, 20.8, 49.4, 50.6, 0.0,79.2,25.3 +1,1,a-cure-i1,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.5, 31.0, 14.3, 12.5, 8.8, 0.0, 32.8, 49.4, 50.4, 0.2,67.2,2.7 +2.5706371191135733,2.57,a-cure-i1,2023-24,Quincy - Merrymount,02430060, 0.0, 17.2, 4.1, 8.2, 6.6, 0.0, 63.9, 47.0, 53.0, 0.0,36.1,5.8 +2.1937106918238993,2.19,a-cure-i1,2023-24,Quincy - Montclair,02430065, 0.0, 64.3, 4.4, 6.1, 4.6, 0.0, 20.5, 46.9, 53.1, 0.0,79.5,10.9 +2.1333333333333333,2.13,a-cure-i1,2023-24,Quincy - North Quincy High,02430510, 0.3, 54.2, 3.4, 4.6, 3.1, 0.5, 34.0, 47.5, 52.5, 0.1,66.0,8.8 +1.9626666666666666,1.96,a-cure-i1,2023-24,Quincy - Point Webster Middle,02430325, 0.0, 34.6, 20.1, 16.9, 3.4, 0.0, 25.0, 54.2, 45.6, 0.2,75.0,9.2 +3.6193895870736084,3.62,a-cure-i1,2023-24,Quincy - Quincy High,02430505, 0.2, 22.3, 14.2, 13.5, 4.8, 0.7, 44.3, 47.8, 51.8, 0.4,55.7,12.6 +1,1,a-cure-i1,2023-24,Quincy - Snug Harbor Community School,02430090, 0.5, 30.3, 15.2, 16.5, 8.0, 0.0, 29.6, 41.1, 58.9, 0.0,70.4,0.6 +1.28,1.28,a-cure-i1,2023-24,Quincy - South West Middle School,02430320, 0.9, 29.6, 16.9, 14.2, 7.9, 0.5, 30.0, 46.5, 53.5, 0.0,70.0,5.6 +1,1,a-cure-i1,2023-24,Quincy - Squantum,02430095, 0.6, 28.3, 4.7, 6.4, 5.6, 0.0, 54.4, 46.1, 53.9, 0.0,45.6,0.0 +1,1,a-cure-i1,2023-24,Quincy - Wollaston School,02430110, 0.0, 60.3, 3.2, 3.8, 3.2, 0.0, 29.5, 43.5, 56.5, 0.0,70.5,0.0 +1,1,a-cure-i1,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.8, 1.8, 9.1, 4.0, 0.0, 84.3, 45.8, 53.0, 1.2,15.700000000000003,4.4 +2.58128078817734,2.58,a-cure-i1,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 15.3, 43.3, 15.7, 6.1, 0.8, 18.8, 49.4, 50.6, 0.0,81.2,13.1 +2.660592255125285,2.66,a-cure-i1,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.0, 13.7, 55.2, 13.5, 5.3, 0.2, 12.2, 47.8, 52.2, 0.0,87.8,14.600000000000001 +2.639910813823857,2.64,a-cure-i1,2023-24,Randolph - Margaret L Donovan,02440015, 0.5, 20.6, 47.3, 17.2, 4.2, 0.0, 10.3, 51.5, 48.3, 0.2,89.7,14.8 +3.921387283236994,3.92,a-cure-i1,2023-24,Randolph - Martin E Young Elementary,02440040, 0.7, 6.9, 56.0, 19.6, 3.3, 0.0, 13.5, 52.0, 48.0, 0.0,86.5,21.2 +5.208472686733558,5,a-cure-i1,2023-24,Randolph - Randolph Community Middle,02440410, 1.0, 18.6, 49.0, 16.1, 4.8, 0.2, 10.3, 48.5, 51.5, 0.0,89.7,29.200000000000006 +2.200873362445415,2.2,a-cure-i1,2023-24,Randolph - Randolph High,02440505, 0.2, 19.4, 52.7, 16.3, 2.9, 0.2, 8.4, 43.4, 56.6, 0.0,91.6,12.600000000000001 +1,1,a-cure-i1,2023-24,Reading - Alice M Barrows,02460002, 0.0, 3.7, 2.0, 4.5, 2.8, 0.0, 87.1, 49.7, 50.3, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, 5.2, 2.7, 3.2, 1.7, 0.0, 87.1, 46.7, 53.1, 0.2,12.900000000000006,3.7 +1,1,a-cure-i1,2023-24,Reading - Birch Meadow,02460005, 0.0, 4.9, 3.5, 3.5, 4.6, 0.0, 83.6, 44.7, 55.3, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Reading - J Warren Killam,02460017, 0.0, 7.6, 4.8, 5.5, 1.2, 0.0, 81.0, 46.8, 53.2, 0.0,19.0,0.0 +1,1,a-cure-i1,2023-24,Reading - Joshua Eaton,02460010, 0.0, 6.1, 1.8, 9.7, 3.1, 0.0, 79.3, 48.5, 51.5, 0.0,20.700000000000003,4.9 +1,1,a-cure-i1,2023-24,Reading - Reading Memorial High,02460505, 0.3, 4.6, 4.5, 3.8, 1.7, 0.1, 85.0, 46.1, 53.5, 0.4,15.0,1.5 +1,1,a-cure-i1,2023-24,Reading - RISE PreSchool,02460001, 0.0, 6.4, 0.0, 3.6, 6.4, 0.0, 83.6, 41.8, 58.2, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Reading - Walter S Parker Middle,02460310, 0.2, 4.7, 3.8, 4.4, 5.5, 0.0, 81.4, 47.5, 52.5, 0.0,18.599999999999994,2.6 +1,1,a-cure-i1,2023-24,Reading - Wood End Elementary School,02460020, 0.0, 6.0, 2.0, 4.0, 3.2, 0.0, 84.7, 49.0, 51.0, 0.0,15.299999999999997,0.0 +1.7031484257871063,1.7,a-cure-i1,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.3, 3.4, 1.3, 59.8, 1.9, 0.0, 33.3, 48.5, 51.5, 0.0,66.7,7.1 +1.6880733944954127,1.69,a-cure-i1,2023-24,Revere - Abraham Lincoln,02480025, 0.8, 4.5, 3.0, 55.5, 1.7, 0.0, 34.6, 48.8, 51.2, 0.0,65.4,6.9 +1,1,a-cure-i1,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.3, 2.4, 4.9, 59.9, 1.2, 0.3, 30.9, 46.8, 53.2, 0.0,69.1,2.8 +2.1144414168937327,2.11,a-cure-i1,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, 2.8, 1.8, 64.2, 4.6, 0.0, 26.6, 48.6, 50.5, 0.9,73.4,9.7 +2.0227560050568902,2.02,a-cure-i1,2023-24,Revere - Garfield Elementary School,02480056, 0.4, 4.6, 3.0, 69.9, 1.2, 0.0, 20.9, 51.2, 48.8, 0.0,79.1,10.0 +5.92904073587385,5,a-cure-i1,2023-24,Revere - Garfield Middle School,02480057, 0.4, 2.8, 3.0, 67.8, 2.1, 0.0, 23.9, 51.6, 48.4, 0.0,76.1,28.2 +1,1,a-cure-i1,2023-24,Revere - Paul Revere,02480050, 1.7, 3.9, 3.0, 57.4, 2.4, 0.2, 31.5, 48.0, 52.0, 0.0,68.5,2.7 +3.5649867374005297,3.56,a-cure-i1,2023-24,Revere - Revere High,02480505, 0.4, 3.7, 4.2, 66.0, 1.1, 0.0, 24.6, 46.9, 52.9, 0.1,75.4,16.799999999999997 +1.314447592067989,1.31,a-cure-i1,2023-24,Revere - Rumney Marsh Academy,02480014, 0.2, 4.0, 3.5, 62.0, 1.0, 0.0, 29.4, 45.6, 54.4, 0.0,70.6,5.800000000000001 +1,1,a-cure-i1,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 3.4, 4.0, 70.1, 1.1, 0.0, 21.5, 49.2, 50.8, 0.0,78.5,0.0 +1.2557510148849795,1.26,a-cure-i1,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.4, 4.0, 3.5, 65.0, 1.1, 0.0, 26.1, 51.4, 48.6, 0.0,73.9,5.8 +1,1,a-cure-i1,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.3, 6.3, 6.3, 0.0, 86.1, 51.9, 48.1, 0.0,13.900000000000006,0.0 +8.973544973544971,5,a-cure-i1,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.5, 2.1, 2.7, 5.3, 8.3, 0.0, 81.1, 51.2, 48.2, 0.6,18.900000000000006,10.6 +1,1,a-cure-i1,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.3, 1.0, 6.9, 4.9, 0.0, 86.8, 52.1, 47.6, 0.3,13.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Rochester - Rochester Memorial,02500005, 0.2, 0.4, 0.6, 4.5, 2.8, 0.0, 91.5, 44.3, 55.7, 0.0,8.5,0.0 +2.4213649851632044,2.42,a-cure-i1,2023-24,Rockland - John W Rogers Middle,02510305, 1.0, 1.7, 6.3, 19.9, 4.7, 0.0, 66.3, 48.1, 51.9, 0.0,33.7,5.1 +1,1,a-cure-i1,2023-24,Rockland - Phelps Elementary School,02510060, 0.5, 2.3, 5.5, 24.4, 3.4, 0.0, 63.9, 48.4, 51.6, 0.0,36.1,2.2 +2.9090909090909083,2.91,a-cure-i1,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 1.8, 6.2, 19.0, 4.9, 0.0, 68.1, 45.6, 54.4, 0.0,31.900000000000006,5.8 +5.565217391304347,5,a-cure-i1,2023-24,Rockland - Rockland Senior High,02510505, 1.4, 1.9, 6.4, 20.1, 2.3, 0.2, 67.8, 51.3, 48.7, 0.0,32.2,11.2 +1,1,a-cure-i1,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 1.5, 1.1, 3.7, 3.3, 0.0, 90.4, 47.4, 52.6, 0.0,9.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Rockport - Rockport High,02520510, 0.0, 2.7, 1.3, 3.5, 2.7, 0.0, 89.8, 39.8, 59.7, 0.4,10.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.6, 0.6, 3.5, 1.2, 0.6, 93.6, 49.1, 50.9, 0.0,6.400000000000006,0.0 +8.934010152284262,5,a-cure-i1,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.6, 3.3, 14.8, 0.0, 80.3, 49.2, 50.8, 0.0,19.700000000000003,11.0 +6.986828774062816,5,a-cure-i1,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.4, 0.7, 53.8, 40.8, 1.9, 0.1, 1.3, 43.9, 56.1, 0.0,98.7,43.099999999999994 +4.288973384030418,4.29,a-cure-i1,2023-24,Salem - Bates,02580003, 1.3, 0.5, 7.3, 38.3, 4.8, 0.5, 47.4, 50.6, 49.1, 0.3,52.6,14.099999999999998 +7.893333333333333,5,a-cure-i1,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.0, 1.1, 9.6, 78.1, 1.1, 0.0, 10.0, 52.6, 47.4, 0.0,90.0,44.4 +4.705882352941177,4.71,a-cure-i1,2023-24,Salem - Carlton,02580015, 0.0, 2.0, 5.1, 31.1, 4.3, 0.0, 57.5, 50.4, 49.2, 0.4,42.5,12.5 +6.707070707070707,5,a-cure-i1,2023-24,Salem - Collins Middle,02580305, 0.0, 2.2, 7.7, 44.6, 4.5, 0.3, 40.6, 49.3, 50.7, 0.0,59.4,24.9 +2.783661119515885,2.78,a-cure-i1,2023-24,Salem - Horace Mann Laboratory,02580030, 0.0, 3.9, 9.8, 49.2, 3.3, 0.0, 33.9, 51.5, 48.5, 0.0,66.1,11.5 +3.286356821589205,3.29,a-cure-i1,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 4.4, 53.3, 8.9, 0.0, 33.3, 60.0, 37.8, 2.2,66.7,13.7 +1,1,a-cure-i1,2023-24,Salem - Salem Early Childhood,02580001, 0.9, 5.4, 8.9, 39.3, 6.3, 0.9, 38.4, 42.0, 58.0, 0.0,61.6,0.0 +4.532924961715161,4.53,a-cure-i1,2023-24,Salem - Salem High,02580505, 0.1, 3.1, 8.2, 49.7, 4.0, 0.2, 34.7, 46.8, 52.8, 0.3,65.3,18.5 +1,1,a-cure-i1,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 5.9, 41.2, 0.0, 0.0, 52.9, 52.9, 47.1, 0.0,47.1,0.0 +1.4280991735537192,1.43,a-cure-i1,2023-24,Salem - Saltonstall School,02580050, 0.3, 0.3, 4.9, 50.8, 4.4, 0.0, 39.5, 47.9, 52.1, 0.0,60.5,5.4 +2.5611510791366903,2.56,a-cure-i1,2023-24,Salem - Witchcraft Heights,02580070, 0.2, 4.5, 7.4, 39.7, 3.6, 0.2, 44.4, 46.6, 53.4, 0.0,55.6,8.899999999999999 +4.574679943100996,4.57,a-cure-i1,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 4.3, 9.4, 54.3, 2.3, 0.0, 29.7, 50.8, 48.8, 0.4,70.3,20.1 +1,1,a-cure-i1,2023-24,Sandwich - Forestdale School,02610002, 0.2, 3.1, 0.6, 5.2, 3.1, 0.0, 87.8, 46.4, 53.6, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Sandwich - Oak Ridge,02610025, 0.6, 2.8, 1.6, 5.3, 3.3, 0.3, 86.1, 50.6, 49.4, 0.0,13.900000000000006,2.7 +1,1,a-cure-i1,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.1, 2.7, 1.9, 5.6, 1.8, 0.2, 87.7, 47.5, 51.9, 0.7,12.299999999999997,2.6 +1,1,a-cure-i1,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.6, 6.4, 7.1, 30.9, 4.1, 0.1, 50.8, 46.0, 54.0, 0.0,49.2,0.0 +1.875,1.88,a-cure-i1,2023-24,Saugus - Saugus High,02620505, 0.8, 5.1, 7.3, 36.0, 1.4, 0.6, 48.8, 46.1, 53.9, 0.0,51.2,6.0 +1,1,a-cure-i1,2023-24,Saugus - Saugus Middle School,02620305, 0.6, 7.9, 4.9, 29.8, 2.6, 0.2, 54.0, 48.1, 51.9, 0.0,46.0,0.0 +1,1,a-cure-i1,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.2, 8.2, 5.4, 32.4, 3.6, 0.0, 50.2, 42.7, 57.3, 0.0,49.8,3.7 +1,1,a-cure-i1,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 2.1, 6.4, 0.0, 0.0, 91.5, 46.8, 53.2, 0.0,8.5,0.0 +1,1,a-cure-i1,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 0.8, 0.3, 3.5, 3.3, 0.3, 91.8, 50.7, 49.3, 0.0,8.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Scituate - Gates Middle School,02640305, 0.0, 0.5, 2.3, 2.8, 2.8, 0.0, 91.7, 47.7, 52.3, 0.0,8.299999999999997,2.3 +1,1,a-cure-i1,2023-24,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 2.8, 2.4, 2.8, 0.0, 92.0, 49.2, 50.8, 0.0,8.0,0.0 +1,1,a-cure-i1,2023-24,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 3.3, 3.3, 5.1, 0.0, 88.4, 47.5, 52.5, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Scituate - Scituate High School,02640505, 0.1, 0.8, 3.2, 3.1, 3.5, 0.0, 89.3, 49.7, 49.7, 0.7,10.700000000000003,1.8 +1,1,a-cure-i1,2023-24,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.9, 2.8, 3.0, 0.0, 92.3, 48.1, 51.9, 0.0,7.700000000000003,0.0 +4.648044692737429,4.65,a-cure-i1,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 3.7, 3.3, 7.4, 3.5, 0.0, 82.1, 51.4, 48.4, 0.2,17.900000000000006,5.2 +1,1,a-cure-i1,2023-24,Seekonk - George R Martin,02650007, 0.0, 5.2, 3.1, 7.6, 2.7, 0.0, 81.4, 51.8, 48.2, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Seekonk - Mildred Aitken School,02650015, 0.2, 3.8, 2.1, 5.7, 4.7, 0.0, 83.5, 47.3, 52.7, 0.0,16.5,2.9 +1,1,a-cure-i1,2023-24,Seekonk - Seekonk High,02650505, 0.0, 4.0, 2.9, 6.2, 3.7, 0.0, 83.3, 48.7, 50.8, 0.6,16.700000000000003,2.4 +1,1,a-cure-i1,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 16.7, 0.0, 0.0, 0.0, 0.0, 83.3, 33.3, 66.7, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Sharon - Cottage Street,02660005, 0.0, 21.0, 6.6, 11.8, 11.8, 0.0, 48.7, 46.2, 53.8, 0.0,51.3,3.5 +1,1,a-cure-i1,2023-24,Sharon - East Elementary,02660010, 0.0, 29.3, 4.3, 7.2, 8.7, 0.0, 50.5, 48.0, 51.8, 0.2,49.5,3.3 +1,1,a-cure-i1,2023-24,Sharon - Heights Elementary,02660015, 0.4, 31.9, 5.0, 4.6, 6.8, 0.0, 51.3, 48.3, 51.7, 0.0,48.7,3.2 +1,1,a-cure-i1,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 29.0, 0.0, 25.8, 6.5, 0.0, 38.7, 45.2, 54.8, 0.0,61.3,0.0 +1.9837398373983737,1.98,a-cure-i1,2023-24,Sharon - Sharon High,02660505, 0.2, 32.1, 5.2, 5.6, 6.1, 0.1, 50.8, 47.8, 52.1, 0.1,49.2,6.1 +1,1,a-cure-i1,2023-24,Sharon - Sharon Middle,02660305, 0.2, 32.6, 6.3, 5.6, 7.3, 0.0, 48.0, 50.8, 48.9, 0.2,52.0,4.1 +1,1,a-cure-i1,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.4, 0.8, 1.7, 9.0, 3.3, 0.0, 84.8, 37.6, 61.8, 0.6,15.200000000000003,1.3 +4.327868852459015,4.33,a-cure-i1,2023-24,Sherborn - Pine Hill,02690010, 0.0, 9.2, 4.5, 5.0, 5.7, 0.0, 75.6, 50.1, 49.9, 0.0,24.400000000000006,6.6 +1,1,a-cure-i1,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.3, 31.6, 4.9, 22.2, 5.2, 0.0, 35.8, 52.8, 47.2, 0.0,64.2,0.0 +1,1,a-cure-i1,2023-24,Shrewsbury - Floral Street School,02710020, 1.1, 48.2, 6.1, 8.1, 6.3, 0.0, 30.3, 43.2, 56.8, 0.0,69.7,0.0 +1.8128078817733992,1.81,a-cure-i1,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0.8, 38.7, 4.1, 10.9, 6.3, 0.2, 39.1, 47.5, 52.5, 0.0,60.9,6.9 +2.2285714285714286,2.23,a-cure-i1,2023-24,Shrewsbury - Oak Middle School,02710030, 0.4, 35.3, 5.0, 10.7, 4.6, 0.0, 44.0, 47.9, 52.0, 0.1,56.0,7.8 +1,1,a-cure-i1,2023-24,Shrewsbury - Parker Road Preschool,02710040, 1.5, 40.2, 8.0, 12.1, 3.0, 0.0, 35.2, 51.8, 48.2, 0.0,64.8,0.0 +1.78096947935368,1.78,a-cure-i1,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.9, 34.8, 4.7, 9.3, 6.1, 0.0, 44.3, 47.5, 52.2, 0.2,55.7,6.199999999999999 +1.9803536345776034,1.98,a-cure-i1,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.4, 30.2, 4.1, 11.0, 5.2, 0.0, 49.1, 49.7, 50.2, 0.2,50.9,6.300000000000001 +1,1,a-cure-i1,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 29.2, 3.6, 6.9, 5.8, 0.0, 54.5, 49.8, 50.2, 0.0,45.5,0.0 +2.7214076246334313,2.72,a-cure-i1,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.4, 15.6, 1.9, 8.9, 7.4, 0.0, 65.9, 48.5, 51.5, 0.0,34.099999999999994,5.8 +8.691358024691358,5,a-cure-i1,2023-24,Shutesbury - Shutesbury Elementary,02720005, 0.9, 0.0, 0.9, 9.0, 5.4, 0.0, 83.8, 55.0, 44.1, 0.9,16.200000000000003,8.8 +1,1,a-cure-i1,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.5, 1.0, 1.9, 5.0, 1.8, 0.0, 90.0, 49.1, 50.8, 0.1,10.0,1.6 +1,1,a-cure-i1,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.5, 0.2, 1.2, 3.0, 0.7, 0.2, 94.1, 48.3, 51.7, 0.0,5.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.3, 1.3, 8.6, 24.8, 3.6, 0.3, 60.9, 51.0, 48.0, 1.0,39.1,3.8 +1,1,a-cure-i1,2023-24,Somerset - Chace Street,02730005, 0.3, 2.0, 1.3, 6.6, 3.3, 0.0, 86.6, 54.1, 45.9, 0.0,13.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Somerset - North Elementary,02730008, 0.0, 1.9, 1.7, 5.8, 5.0, 0.2, 85.3, 47.0, 53.0, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Somerset - Somerset Middle School,02730305, 0.2, 2.1, 0.9, 5.5, 2.7, 0.0, 88.7, 45.9, 54.1, 0.0,11.299999999999997,2.4 +5.528795811518326,5,a-cure-i1,2023-24,Somerset - South,02730015, 1.1, 1.9, 2.7, 7.6, 5.7, 0.0, 80.9, 47.3, 52.7, 0.0,19.099999999999994,6.6 +1,1,a-cure-i1,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.4, 1.7, 2.1, 6.4, 2.1, 0.0, 87.4, 50.7, 49.2, 0.1,12.599999999999994,3.0 +2.118067978533095,2.12,a-cure-i1,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.4, 7.4, 5.0, 34.6, 8.3, 0.2, 44.1, 46.6, 53.2, 0.2,55.9,7.4 +6.633608815426998,5,a-cure-i1,2023-24,Somerville - Arthur D Healey,02740075, 0.4, 2.7, 13.8, 51.0, 4.5, 0.2, 27.4, 50.8, 48.8, 0.4,72.6,30.1 +1,1,a-cure-i1,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 8.0, 6.7, 6.7, 18.2, 0.0, 60.4, 56.9, 43.1, 0.0,39.6,3.6 +1,1,a-cure-i1,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.0, 11.7, 8.7, 38.3, 8.3, 0.0, 33.0, 39.6, 60.4, 0.0,67.0,4.3 +3.9501246882793017,3.95,a-cure-i1,2023-24,Somerville - E Somerville Community,02740111, 0.0, 5.7, 5.9, 65.5, 3.0, 0.1, 19.8, 45.1, 54.8, 0.1,80.2,19.8 +1.208706786171575,1.21,a-cure-i1,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 18.8, 57.8, 1.6, 0.0, 21.9, 42.2, 56.3, 1.6,78.1,5.9 +7.85185185185185,5,a-cure-i1,2023-24,Somerville - John F Kennedy,02740083, 0.2, 6.3, 4.2, 13.4, 8.0, 0.2, 67.6, 47.1, 52.7, 0.2,32.400000000000006,15.9 +7.102439024390243,5,a-cure-i1,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 7.7, 46.2, 7.7, 0.0, 38.5, 15.4, 84.6, 0.0,61.5,27.299999999999997 +4.396946564885496,4.4,a-cure-i1,2023-24,Somerville - Somerville High,02740505, 0.1, 5.8, 9.5, 46.3, 3.7, 0.1, 34.5, 45.7, 53.0, 1.3,65.5,18.0 +3.7078085642317373,3.71,a-cure-i1,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 6.1, 10.1, 9.8, 13.2, 0.5, 60.3, 48.4, 51.1, 0.5,39.7,9.2 +2.721259842519685,2.72,a-cure-i1,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 5.0, 9.2, 45.4, 3.7, 0.2, 36.5, 43.4, 56.1, 0.5,63.5,10.8 +1,1,a-cure-i1,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 1.4, 1.0, 16.4, 2.7, 0.0, 78.5, 50.7, 49.3, 0.0,21.5,0.0 +1,1,a-cure-i1,2023-24,South Hadley - Mosier,02780020, 0.3, 1.1, 2.5, 19.4, 3.6, 0.0, 73.1, 44.7, 55.3, 0.0,26.900000000000006,4.7 +1,1,a-cure-i1,2023-24,South Hadley - Plains Elementary,02780015, 0.8, 2.6, 1.5, 18.5, 6.4, 0.0, 70.2, 43.0, 57.0, 0.0,29.799999999999997,0.0 +1,1,a-cure-i1,2023-24,South Hadley - South Hadley High,02780505, 0.2, 2.0, 2.8, 16.9, 1.4, 0.0, 76.8, 48.0, 51.0, 1.0,23.200000000000003,3.6 +2.3197026022304836,2.32,a-cure-i1,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.7, 1.5, 4.7, 41.8, 4.1, 0.0, 46.2, 42.9, 55.7, 1.4,53.8,7.800000000000001 +3.49185667752443,3.49,a-cure-i1,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.9, 8.2, 36.8, 8.2, 6.9, 0.3, 38.6, 48.9, 50.6, 0.5,61.4,13.4 +1,1,a-cure-i1,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.1, 3.3, 8.7, 1.8, 0.0, 86.1, 33.0, 66.0, 1.0,13.900000000000006,4.1 +1,1,a-cure-i1,2023-24,Southampton - William E Norris,02750005, 0.0, 0.4, 0.0, 7.9, 3.2, 0.0, 88.5, 44.8, 55.2, 0.0,11.5,0.0 +1,1,a-cure-i1,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 27.5, 0.8, 5.7, 2.0, 0.4, 63.6, 51.8, 48.2, 0.0,36.4,0.0 +1,1,a-cure-i1,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 20.7, 1.4, 5.3, 4.9, 0.0, 67.7, 45.6, 54.4, 0.0,32.3,0.0 +1,1,a-cure-i1,2023-24,Southborough - Mary E Finn School,02760008, 0.3, 28.2, 2.2, 6.8, 9.6, 0.0, 52.9, 48.2, 51.8, 0.0,47.1,0.0 +2.8087774294670838,2.81,a-cure-i1,2023-24,Southborough - P Brent Trottier,02760305, 0.2, 18.9, 0.7, 5.4, 6.6, 0.0, 68.1, 49.9, 50.1, 0.0,31.900000000000006,5.6 +2.2535211267605635,2.25,a-cure-i1,2023-24,Southbridge - Charlton Street,02770005, 0.4, 2.1, 2.5, 64.3, 1.8, 0.0, 29.0, 47.0, 53.0, 0.0,71.0,10.0 +2.8993288590604025,2.9,a-cure-i1,2023-24,Southbridge - Eastford Road,02770010, 0.9, 0.6, 4.6, 65.5, 2.9, 0.0, 25.5, 46.4, 53.6, 0.0,74.5,13.5 +9.989708404802744,5,a-cure-i1,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 2.8, 52.8, 2.8, 0.0, 41.7, 33.3, 66.7, 0.0,58.3,36.4 +3.030640668523677,3.03,a-cure-i1,2023-24,Southbridge - Southbridge High School,02770515, 0.4, 1.5, 2.6, 66.5, 0.6, 0.2, 28.2, 42.4, 57.0, 0.6,71.8,13.6 +6.966618287373004,5,a-cure-i1,2023-24,Southbridge - Southbridge Middle School,02770315, 0.7, 1.4, 2.1, 62.6, 2.1, 0.0, 31.1, 49.1, 50.9, 0.0,68.9,30.0 +1.1614518147684605,1.16,a-cure-i1,2023-24,Southbridge - West Street,02770020, 0.3, 0.3, 3.7, 73.5, 1.8, 0.3, 20.1, 50.3, 49.7, 0.0,79.9,5.8 +3.3279999999999994,3.33,a-cure-i1,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 1.4, 40.8, 15.4, 4.9, 0.0, 37.5, 52.2, 46.7, 1.1,62.5,12.999999999999998 +1,1,a-cure-i1,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.7, 0.7, 0.7, 11.0, 7.5, 0.0, 79.4, 48.8, 50.9, 0.4,20.599999999999994,3.9 +1,1,a-cure-i1,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 4.6, 3.1, 0.0, 92.3, 49.2, 50.8, 0.0,7.700000000000003,2.8 +1,1,a-cure-i1,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 9.1, 18.2, 0.0, 72.7, 72.7, 27.3, 0.0,27.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Southern Berkshire - Undermountain,07650035, 0.4, 1.2, 0.4, 14.4, 5.4, 0.0, 78.2, 51.4, 48.6, 0.0,21.799999999999997,2.8 +14.989473684210527,5,a-cure-i1,2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 1.0, 1.2, 13.7, 3.1, 0.0, 81.0, 44.0, 56.0, 0.0,19.0,17.8 +1,1,a-cure-i1,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.3, 1.6, 1.3, 7.9, 2.9, 0.0, 86.1, 46.2, 53.8, 0.0,13.900000000000006,3.8 +11.67567567567568,5,a-cure-i1,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.2, 1.0, 1.3, 5.9, 2.8, 0.0, 88.9, 51.1, 48.9, 0.0,11.099999999999994,8.1 +1,1,a-cure-i1,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.3, 2.2, 0.6, 7.5, 3.1, 0.0, 86.3, 48.1, 51.9, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0.6, 2.4, 3.3, 17.8, 4.8, 0.0, 71.0, 45.9, 53.5, 0.6,29.0,0.0 +1,1,a-cure-i1,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.8, 1.6, 2.8, 11.7, 4.0, 0.0, 78.9, 44.9, 55.1, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.5, 2.8, 24.7, 3.1, 0.0, 68.9, 46.3, 53.5, 0.3,31.099999999999994,3.7 +1,1,a-cure-i1,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0.2, 2.2, 3.5, 22.8, 3.1, 0.2, 67.8, 46.3, 53.7, 0.0,32.2,0.0 +2.7644970414201184,2.76,a-cure-i1,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 18.8, 57.6, 8.0, 0.0, 15.5, 55.1, 44.9, 0.0,84.5,14.6 +1,1,a-cure-i1,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.3, 7.6, 17.4, 55.9, 4.6, 0.0, 14.1, 43.4, 56.6, 0.0,85.9,4.8 +1.188470066518847,1.19,a-cure-i1,2023-24,Springfield - Arthur T Talmadge,02810165, 0.0, 3.1, 17.0, 64.3, 5.8, 0.0, 9.8, 46.4, 53.6, 0.0,90.2,6.7 +3.506607929515418,3.51,a-cure-i1,2023-24,Springfield - Balliet Preschool,02810003, 0.0, 1.5, 17.6, 68.7, 3.1, 0.0, 9.2, 41.2, 58.8, 0.0,90.8,19.9 +4.123711340206185,4.12,a-cure-i1,2023-24,Springfield - Benjamin Swan Elementary,02810085, 0.2, 0.8, 22.2, 68.3, 5.4, 0.0, 3.0, 51.1, 48.9, 0.0,97.0,25.0 +4.54054054054054,4.54,a-cure-i1,2023-24,Springfield - Brightwood,02810025, 0.0, 0.2, 7.5, 87.7, 0.8, 0.0, 3.8, 52.5, 47.5, 0.0,96.2,27.299999999999997 +10.630385487528343,5,a-cure-i1,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 3.1, 22.8, 59.1, 3.1, 0.0, 11.8, 44.1, 55.9, 0.0,88.2,58.599999999999994 +6.696035242290749,5,a-cure-i1,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, 0.3, 19.5, 69.6, 1.3, 0.0, 9.2, 66.3, 33.3, 0.3,90.8,38.0 +3.7862595419847325,3.79,a-cure-i1,2023-24,Springfield - Daniel B Brunton,02810035, 0.0, 2.0, 15.3, 54.6, 6.4, 0.3, 21.4, 49.8, 50.2, 0.0,78.6,18.599999999999998 +6.357507660878447,5,a-cure-i1,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, 0.5, 19.1, 70.7, 7.4, 0.0, 2.1, 49.5, 50.5, 0.0,97.9,38.9 +3.6080084299262376,3.61,a-cure-i1,2023-24,Springfield - Edward P. Boland School,02810010, 0.0, 1.4, 10.6, 80.0, 2.7, 0.2, 5.1, 42.6, 57.0, 0.4,94.9,21.4 +5.769152196118488,5,a-cure-i1,2023-24,Springfield - Elias Brookings,02810030, 0.0, 0.3, 21.8, 73.4, 2.4, 0.0, 2.1, 49.1, 50.9, 0.0,97.9,35.3 +11.42354235423542,5,a-cure-i1,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.4, 19.9, 67.1, 3.5, 0.0, 9.1, 48.9, 50.6, 0.4,90.9,64.89999999999999 +3.148936170212766,3.15,a-cure-i1,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 2.8, 19.4, 68.7, 3.2, 0.0, 6.0, 51.1, 48.6, 0.4,94.0,18.5 +8.330726256983239,5,a-cure-i1,2023-24,Springfield - Frank H Freedman,02810075, 0.4, 2.6, 18.0, 62.2, 6.4, 0.0, 10.5, 52.8, 47.2, 0.0,89.5,46.599999999999994 +2.0571428571428574,2.06,a-cure-i1,2023-24,Springfield - Frederick Harris,02810080, 0.6, 4.3, 18.9, 53.7, 6.3, 0.2, 16.0, 47.3, 52.7, 0.0,84.0,10.8 +17.222820236813778,5,a-cure-i1,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 3.6, 25.0, 64.3, 0.0, 0.0, 7.1, 75.0, 25.0, 0.0,92.9,100.0 +16.0,5,a-cure-i1,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 32.0, 68.0, 0.0, 0.0, 0.0, 76.0, 24.0, 0.0,100.0,100.0 +2.762589928057554,2.76,a-cure-i1,2023-24,Springfield - German Gerena Community School,02810195, 0.3, 0.6, 14.4, 77.5, 4.3, 0.0, 2.7, 47.0, 53.0, 0.0,97.3,16.8 +2.750816104461371,2.75,a-cure-i1,2023-24,Springfield - Glenwood,02810065, 0.0, 1.0, 9.5, 78.4, 3.0, 0.0, 8.1, 48.6, 51.0, 0.3,91.9,15.8 +1,1,a-cure-i1,2023-24,Springfield - Glickman Elementary,02810068, 0.3, 2.2, 14.0, 65.1, 6.0, 0.0, 12.4, 46.3, 53.7, 0.0,87.6,0.3 +9.1528384279476,5,a-cure-i1,2023-24,Springfield - High School Of Commerce,02810510, 0.0, 1.1, 15.9, 72.4, 2.2, 0.0, 8.4, 48.7, 51.0, 0.3,91.6,52.400000000000006 +2.1206896551724137,2.12,a-cure-i1,2023-24,Springfield - Hiram L Dorman,02810050, 0.0, 1.8, 13.7, 72.9, 4.3, 0.0, 7.2, 49.5, 50.5, 0.0,92.8,12.299999999999999 +9.482722513089005,5,a-cure-i1,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.5, 0.0, 12.4, 80.2, 2.5, 0.0, 4.5, 49.0, 51.0, 0.0,95.5,56.6 +1.4545454545454548,1.45,a-cure-i1,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.2, 0.7, 18.9, 66.0, 5.5, 0.0, 8.7, 46.5, 53.5, 0.0,91.3,8.3 +8.43918191603875,5,a-cure-i1,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 0.5, 21.5, 67.3, 3.5, 0.0, 7.1, 50.4, 49.6, 0.0,92.9,49.0 +6.1842696629213485,5,a-cure-i1,2023-24,Springfield - John J Duggan Academy,02810320, 0.1, 2.3, 24.9, 59.0, 2.8, 0.0, 11.0, 45.8, 53.9, 0.2,89.0,34.4 +4.0251572327044025,4.03,a-cure-i1,2023-24,Springfield - Kensington International School,02810110, 0.0, 1.1, 15.6, 74.4, 4.2, 0.0, 4.6, 51.5, 48.5, 0.0,95.4,24.0 +9.786578657865787,5,a-cure-i1,2023-24,Springfield - Kiley Academy,02810316, 0.0, 1.7, 24.7, 60.6, 3.8, 0.0, 9.1, 48.8, 51.2, 0.0,90.9,55.60000000000001 +6.912707182320441,5,a-cure-i1,2023-24,Springfield - Kiley Prep,02810315, 0.0, 1.9, 22.8, 63.9, 1.9, 0.0, 9.5, 48.7, 51.0, 0.4,90.5,39.099999999999994 +2.081587651598677,2.08,a-cure-i1,2023-24,Springfield - Liberty,02810115, 0.4, 0.4, 9.8, 78.9, 1.2, 0.0, 9.3, 45.1, 54.9, 0.0,90.7,11.8 +1,1,a-cure-i1,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 28.6, 0.0, 0.0, 71.4, 0.0, 100.0, 0.0,28.599999999999994,0.0 +6.1000000000000005,5,a-cure-i1,2023-24,Springfield - Lincoln,02810120, 0.0, 0.2, 9.9, 84.4, 1.5, 0.0, 4.0, 47.6, 52.4, 0.0,96.0,36.6 +6.2956521739130435,5,a-cure-i1,2023-24,Springfield - Margaret C Ells,02810060, 0.0, 1.4, 15.2, 68.8, 6.5, 0.0, 8.0, 44.9, 55.1, 0.0,92.0,36.2 +2.215384615384615,2.22,a-cure-i1,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.3, 7.6, 15.5, 56.2, 4.8, 0.0, 15.5, 52.4, 47.6, 0.0,84.5,11.7 +6.812227074235809,5,a-cure-i1,2023-24,Springfield - Mary M Lynch,02810140, 0.0, 0.9, 22.6, 62.4, 5.8, 0.0, 8.4, 50.4, 49.6, 0.0,91.6,39.0 +4.178960096735187,4.18,a-cure-i1,2023-24,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 16.1, 62.2, 4.4, 0.0, 17.3, 46.2, 53.8, 0.0,82.7,21.599999999999998 +5.207708779443254,5,a-cure-i1,2023-24,Springfield - Mary O Pottenger,02810145, 0.0, 1.4, 11.5, 77.6, 3.0, 0.0, 6.6, 48.4, 51.6, 0.0,93.4,30.4 +2.0970072239422084,2.1,a-cure-i1,2023-24,Springfield - Milton Bradley School,02810023, 0.3, 0.3, 16.6, 73.1, 6.6, 0.0, 3.1, 49.4, 50.6, 0.0,96.9,12.7 +5.33882595262616,5,a-cure-i1,2023-24,Springfield - Rebecca M Johnson,02810055, 0.2, 0.0, 20.7, 74.8, 1.5, 0.0, 2.9, 45.2, 54.8, 0.0,97.1,32.400000000000006 +7.498920086393087,5,a-cure-i1,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.9, 20.8, 68.1, 2.8, 0.0, 7.4, 45.8, 54.2, 0.0,92.6,43.39999999999999 +4.394849785407724,4.39,a-cure-i1,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.1, 2.5, 16.3, 72.3, 2.0, 0.0, 6.8, 55.1, 44.7, 0.2,93.2,25.599999999999998 +3.9409761634506246,3.94,a-cure-i1,2023-24,Springfield - Samuel Bowles,02810020, 0.6, 1.0, 14.5, 68.7, 2.9, 0.3, 11.9, 48.7, 51.0, 0.3,88.1,21.7 +9.091299677765843,5,a-cure-i1,2023-24,Springfield - South End Middle School,02810355, 0.0, 0.0, 19.6, 69.8, 3.7, 0.0, 6.9, 54.5, 45.5, 0.0,93.1,52.9 +3.948051948051947,3.95,a-cure-i1,2023-24,Springfield - Springfield Central High,02810500, 0.0, 2.4, 21.3, 65.7, 2.9, 0.0, 7.6, 44.1, 55.8, 0.1,92.4,22.799999999999997 +6.136263736263736,5,a-cure-i1,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 17.6, 71.0, 2.3, 0.0, 9.0, 43.0, 56.6, 0.5,91.0,34.9 +5.1240721102863205,5,a-cure-i1,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.0, 19.0, 71.4, 2.9, 0.1, 5.7, 43.0, 56.8, 0.2,94.3,30.2 +1.1154285714285714,1.12,a-cure-i1,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 40.6, 40.6, 6.3, 0.0, 12.5, 46.9, 53.1, 0.0,87.5,6.1 +5.598377281947262,5,a-cure-i1,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 2.8, 9.7, 84.7, 1.4, 0.0, 1.4, 34.7, 65.3, 0.0,98.6,34.5 +10.580121703853957,5,a-cure-i1,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.6, 7.3, 89.9, 0.8, 0.0, 1.4, 46.8, 53.2, 0.0,98.6,65.2 +8.849474912485414,5,a-cure-i1,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 14.3, 64.3, 7.1, 0.0, 14.3, 28.6, 71.4, 0.0,85.7,47.4 +4.933196300102775,4.93,a-cure-i1,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 2.7, 0.0, 24.3, 67.6, 2.7, 0.0, 2.7, 21.6, 78.4, 0.0,97.3,30.0 +13.33013205282113,5,a-cure-i1,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 11.5, 70.5, 1.3, 0.0, 16.7, 30.8, 69.2, 0.0,83.3,69.4 +1.6034858387799564,1.6,a-cure-i1,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 21.3, 67.2, 3.3, 0.0, 8.2, 21.3, 78.7, 0.0,91.8,9.2 +12.016326530612243,5,a-cure-i1,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 4.5, 21.6, 68.8, 3.0, 0.0, 2.0, 53.8, 46.2, 0.0,98.0,73.6 +5.6120789779326365,5,a-cure-i1,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 2.6, 16.5, 67.0, 0.0, 0.0, 13.9, 32.2, 67.8, 0.0,86.1,30.2 +6.632402234636872,5,a-cure-i1,2023-24,Springfield - STEM Middle Academy,02810350, 0.7, 3.8, 9.1, 72.5, 3.5, 0.0, 10.5, 45.6, 54.4, 0.0,89.5,37.1 +2.9344978165938866,2.93,a-cure-i1,2023-24,Springfield - Sumner Avenue,02810160, 0.0, 3.1, 18.4, 65.8, 4.3, 0.0, 8.4, 46.5, 53.5, 0.0,91.6,16.8 +6.142695356738393,5,a-cure-i1,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 2.5, 20.0, 63.7, 2.1, 0.0, 11.7, 54.0, 46.0, 0.0,88.3,33.900000000000006 +1,1,a-cure-i1,2023-24,Springfield - The Springfield Virtual School,02810705, 0.0, 0.3, 14.5, 75.0, 3.0, 0.0, 7.2, 50.7, 49.0, 0.3,92.8,0.0 +4.815703380588877,4.82,a-cure-i1,2023-24,Springfield - Thomas M Balliet,02810015, 0.0, 3.6, 19.4, 62.6, 6.1, 0.0, 8.3, 47.5, 52.5, 0.0,91.7,27.6 +5.129770992366412,5,a-cure-i1,2023-24,Springfield - Van Sickle Academy,02810485, 0.4, 2.8, 9.9, 77.8, 0.8, 0.0, 8.3, 46.8, 53.2, 0.0,91.7,29.4 +3.0095642933049955,3.01,a-cure-i1,2023-24,Springfield - Warner,02810180, 0.0, 0.8, 24.4, 66.0, 2.9, 0.0, 5.9, 47.9, 52.1, 0.0,94.1,17.700000000000003 +2.898047722342733,2.9,a-cure-i1,2023-24,Springfield - Washington,02810185, 0.0, 4.3, 17.9, 64.5, 5.5, 0.0, 7.8, 50.4, 49.6, 0.0,92.2,16.7 +1.4303534303534302,1.43,a-cure-i1,2023-24,Springfield - White Street,02810190, 0.3, 2.8, 18.9, 71.9, 2.3, 0.0, 3.8, 46.2, 53.8, 0.0,96.2,8.6 +3.995854922279793,4.0,a-cure-i1,2023-24,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 21.0, 71.5, 4.0, 0.0, 3.5, 50.0, 50.0, 0.0,96.5,24.1 +4.395402298850574,4.4,a-cure-i1,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.1, 3.1, 28.1, 49.7, 6.0, 0.0, 13.0, 49.3, 50.6, 0.1,87.0,23.9 +14.405036726128017,5,a-cure-i1,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 2.5, 20.5, 70.8, 1.4, 0.0, 4.7, 49.9, 50.1, 0.0,95.3,85.8 +1,1,a-cure-i1,2023-24,Stoneham - Colonial Park,02840005, 0.8, 8.2, 2.7, 7.4, 2.7, 0.0, 78.2, 46.7, 53.3, 0.0,21.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Stoneham - Robin Hood,02840025, 0.8, 4.8, 2.0, 12.0, 6.9, 0.0, 73.5, 50.9, 49.1, 0.0,26.5,3.6 +1,1,a-cure-i1,2023-24,Stoneham - South,02840030, 0.6, 7.6, 4.5, 15.5, 5.6, 0.3, 65.8, 47.5, 52.3, 0.3,34.2,4.6 +5.687500000000001,5,a-cure-i1,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.3, 5.1, 2.9, 13.1, 4.1, 0.0, 74.4, 52.6, 47.4, 0.0,25.599999999999994,9.1 +1,1,a-cure-i1,2023-24,Stoneham - Stoneham High,02840505, 0.0, 6.3, 2.2, 11.1, 2.7, 0.0, 77.6, 49.7, 49.6, 0.7,22.400000000000006,2.2 +1,1,a-cure-i1,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 14.2, 32.7, 12.4, 9.7, 0.9, 30.1, 39.8, 60.2, 0.0,69.9,0.0 +1.6859504132231404,1.69,a-cure-i1,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.4, 6.3, 20.2, 12.7, 7.9, 0.8, 51.6, 48.8, 51.2, 0.0,48.4,5.1 +1,1,a-cure-i1,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.3, 4.0, 23.1, 16.8, 7.2, 0.3, 48.4, 44.7, 55.3, 0.0,51.6,0.0 +1,1,a-cure-i1,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.3, 5.9, 25.2, 15.9, 4.6, 0.0, 48.1, 45.8, 54.2, 0.0,51.9,0.0 +3.144827586206896,3.14,a-cure-i1,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.4, 5.3, 28.9, 17.4, 5.9, 0.1, 42.0, 48.4, 51.5, 0.1,58.0,11.399999999999999 +1,1,a-cure-i1,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.3, 4.5, 21.0, 24.9, 6.6, 0.9, 41.7, 52.9, 47.1, 0.0,58.3,0.0 +1,1,a-cure-i1,2023-24,Stoughton - South Elementary,02850015, 0.0, 9.2, 20.8, 13.3, 8.5, 0.3, 47.8, 50.9, 49.1, 0.0,52.2,0.0 +2.538324420677362,2.54,a-cure-i1,2023-24,Stoughton - Stoughton High,02850505, 0.2, 6.7, 28.8, 15.0, 4.7, 0.6, 43.9, 49.0, 51.0, 0.0,56.1,8.9 +1,1,a-cure-i1,2023-24,Sturbridge - Burgess Elementary,02870005, 0.0, 1.7, 1.4, 13.7, 5.3, 0.0, 77.8, 51.6, 48.2, 0.2,22.200000000000003,0.0 +5.116279069767441,5,a-cure-i1,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 3.6, 2.7, 6.1, 4.7, 0.1, 82.8, 58.2, 40.4, 1.3,17.200000000000003,5.5 +3.9233716475095792,3.92,a-cure-i1,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.1, 9.8, 4.0, 4.8, 7.2, 0.1, 73.9, 47.9, 51.9, 0.1,26.099999999999994,6.3999999999999995 +4.384341637010676,4.38,a-cure-i1,2023-24,Sudbury - General John Nixon Elementary,02880025, 0.0, 9.3, 2.1, 5.4, 11.4, 0.0, 71.9, 52.1, 47.6, 0.3,28.099999999999994,7.699999999999999 +3.877133105802048,3.88,a-cure-i1,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 10.1, 2.4, 10.8, 6.0, 0.0, 70.7, 49.6, 50.4, 0.0,29.299999999999997,7.1 +1,1,a-cure-i1,2023-24,Sudbury - Josiah Haynes,02880010, 0.3, 10.8, 3.6, 5.9, 4.9, 0.0, 74.6, 46.3, 53.2, 0.5,25.400000000000006,2.6 +1,1,a-cure-i1,2023-24,Sudbury - Peter Noyes,02880030, 0.2, 10.2, 1.9, 7.5, 9.6, 0.0, 70.6, 49.4, 50.3, 0.4,29.400000000000006,3.0 +2.690690690690691,2.69,a-cure-i1,2023-24,Sunderland - Sunderland Elementary,02890005, 0.0, 9.8, 2.7, 13.1, 7.7, 0.0, 66.7, 45.9, 53.6, 0.5,33.3,5.6 +1,1,a-cure-i1,2023-24,Sutton - Sutton Early Learning,02900003, 0.3, 1.8, 4.1, 6.8, 4.4, 0.0, 82.6, 47.5, 52.5, 0.0,17.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.6, 3.5, 4.8, 2.6, 0.0, 88.5, 47.9, 52.1, 0.0,11.5,0.0 +1,1,a-cure-i1,2023-24,Sutton - Sutton High School,02900510, 0.0, 2.8, 3.3, 5.8, 5.0, 0.0, 83.2, 53.4, 46.3, 0.3,16.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 2.4, 0.7, 5.1, 2.7, 0.0, 89.2, 53.2, 46.8, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Swampscott - Clarke,02910005, 0.5, 2.9, 2.4, 17.0, 3.4, 0.0, 73.8, 49.0, 51.0, 0.0,26.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Swampscott - Hadley,02910010, 0.8, 2.0, 3.9, 18.8, 3.9, 0.6, 69.9, 48.6, 51.4, 0.0,30.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Swampscott - Stanley,02910020, 0.0, 3.7, 3.7, 5.5, 3.1, 0.0, 84.0, 44.2, 55.8, 0.0,16.0,0.0 +3.789473684210527,3.79,a-cure-i1,2023-24,Swampscott - Swampscott High,02910505, 0.3, 3.6, 5.1, 14.9, 2.6, 0.2, 73.4, 48.6, 51.1, 0.3,26.599999999999994,6.3 +1,1,a-cure-i1,2023-24,Swampscott - Swampscott Middle,02910305, 0.3, 3.3, 3.8, 12.7, 2.9, 0.0, 77.0, 46.3, 53.7, 0.0,23.0,2.0 +1,1,a-cure-i1,2023-24,Swansea - Elizabeth S Brown,02920006, 0.7, 1.1, 2.2, 2.9, 2.2, 0.0, 90.9, 52.2, 47.8, 0.0,9.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Swansea - Gardner,02920015, 0.4, 0.7, 2.2, 1.1, 2.6, 0.0, 93.0, 48.9, 51.1, 0.0,7.0,0.0 +1,1,a-cure-i1,2023-24,Swansea - Joseph Case High,02920505, 0.5, 1.0, 1.2, 2.6, 1.9, 0.0, 92.7, 50.5, 49.3, 0.2,7.299999999999997,2.3 +1,1,a-cure-i1,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 1.0, 1.2, 2.2, 2.4, 0.0, 93.1, 46.9, 53.1, 0.0,6.900000000000006,3.1 +1,1,a-cure-i1,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 1.1, 2.8, 2.8, 2.8, 0.0, 90.5, 47.5, 52.5, 0.0,9.5,0.0 +1,1,a-cure-i1,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.4, 1.6, 0.8, 1.9, 3.5, 0.0, 91.8, 47.5, 52.5, 0.0,8.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.3, 1.4, 8.2, 4.1, 0.0, 85.0, 47.3, 52.7, 0.0,15.0,0.0 +1,1,a-cure-i1,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.2, 1.2, 1.4, 10.1, 2.1, 0.0, 85.1, 50.8, 48.7, 0.5,14.900000000000006,0.6 +8.975609756097557,5,a-cure-i1,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 1.1, 2.6, 7.1, 5.4, 0.0, 83.6, 36.9, 62.7, 0.4,16.400000000000006,9.2 +1,1,a-cure-i1,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.6, 1.0, 18.9, 14.2, 4.8, 0.0, 60.5, 48.4, 51.6, 0.0,39.5,0.0 +1,1,a-cure-i1,2023-24,Taunton - East Taunton Elementary,02930010, 0.0, 0.6, 20.0, 10.3, 7.3, 0.0, 61.9, 46.5, 53.5, 0.0,38.1,0.0 +1,1,a-cure-i1,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 1.4, 17.3, 14.6, 5.1, 0.0, 61.7, 46.8, 53.2, 0.0,38.3,0.0 +1,1,a-cure-i1,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.4, 2.7, 22.2, 10.3, 2.3, 0.4, 61.7, 40.6, 59.4, 0.0,38.3,0.0 +1,1,a-cure-i1,2023-24,Taunton - Elizabeth Pole,02930027, 0.7, 1.5, 28.2, 15.8, 7.8, 0.3, 45.7, 48.8, 51.2, 0.0,54.3,4.6 +9.104704097116842,5,a-cure-i1,2023-24,Taunton - H H Galligan,02930057, 0.4, 0.4, 30.8, 26.9, 7.2, 0.4, 34.1, 47.7, 52.3, 0.0,65.9,37.5 +1.825311942959002,1.83,a-cure-i1,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 0.3, 0.8, 28.3, 18.4, 7.9, 0.3, 43.9, 50.2, 49.8, 0.0,56.1,6.4 +1,1,a-cure-i1,2023-24,Taunton - John F Parker Middle,02930305, 0.0, 0.4, 33.7, 15.9, 8.6, 0.4, 41.0, 48.8, 51.2, 0.0,59.0,4.8 +1,1,a-cure-i1,2023-24,Taunton - Joseph C Chamberlain,02930008, 0.2, 1.2, 14.7, 13.2, 6.9, 0.0, 63.7, 50.3, 49.7, 0.0,36.3,0.0 +1,1,a-cure-i1,2023-24,Taunton - Joseph H Martin,02930042, 0.6, 1.1, 24.2, 10.8, 5.2, 0.2, 57.9, 50.2, 49.8, 0.0,42.1,0.0 +1,1,a-cure-i1,2023-24,Taunton - Taunton Alternative High School,02930525, 1.2, 0.0, 22.4, 18.8, 9.4, 0.0, 48.2, 43.5, 56.5, 0.0,51.8,0.0 +2.88,2.88,a-cure-i1,2023-24,Taunton - Taunton High,02930505, 0.3, 0.9, 23.8, 14.1, 5.5, 0.3, 55.0, 47.9, 52.0, 0.1,45.0,8.1 +1,1,a-cure-i1,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 14.9, 17.0, 4.3, 2.1, 61.7, 68.1, 31.9, 0.0,38.3,0.0 +1,1,a-cure-i1,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.4, 3.2, 10.8, 25.5, 7.4, 0.2, 52.5, 56.8, 42.8, 0.4,47.5,0.0 +1,1,a-cure-i1,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 5.7, 4.8, 8.5, 3.5, 0.0, 77.4, 48.9, 51.1, 0.0,22.599999999999994,2.4 +1,1,a-cure-i1,2023-24,Tewksbury - Heath-Brook,02950010, 0.0, 4.2, 5.2, 8.4, 2.9, 0.0, 79.4, 47.7, 52.3, 0.0,20.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Tewksbury - John F. Ryan,02950023, 0.2, 4.4, 5.0, 9.1, 1.0, 0.0, 80.3, 51.7, 48.3, 0.0,19.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, 4.4, 4.6, 9.2, 1.5, 0.0, 80.2, 51.2, 48.8, 0.0,19.799999999999997,2.9 +1,1,a-cure-i1,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 8.4, 7.4, 8.9, 4.8, 0.0, 70.4, 53.6, 46.4, 0.0,29.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.1, 5.6, 5.7, 9.3, 1.1, 0.0, 78.2, 51.5, 48.4, 0.1,21.799999999999997,1.7 +2.6018691588785043,2.6,a-cure-i1,2023-24,Tisbury - Tisbury Elementary,02960005, 2.2, 0.0, 5.5, 40.6, 5.2, 0.0, 46.5, 50.2, 49.8, 0.0,53.5,8.7 +1,1,a-cure-i1,2023-24,Topsfield - Proctor Elementary,02980005, 0.8, 1.2, 0.4, 4.7, 2.4, 0.0, 90.6, 52.8, 47.2, 0.0,9.400000000000006,0.0 +1,1,a-cure-i1,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 2.2, 0.3, 5.6, 2.8, 0.0, 89.1, 46.8, 53.2, 0.0,10.900000000000006,3.4 +1,1,a-cure-i1,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.1, 0.8, 2.5, 12.1, 4.1, 0.1, 80.2, 41.2, 57.7, 1.1,19.799999999999997,1.4 +1,1,a-cure-i1,2023-24,Triton - Newbury Elementary,07730020, 0.2, 0.9, 0.7, 3.5, 3.1, 0.0, 91.5, 50.0, 50.0, 0.0,8.5,0.0 +1,1,a-cure-i1,2023-24,Triton - Pine Grove,07730025, 0.4, 0.9, 0.9, 4.3, 1.6, 0.0, 91.9, 50.1, 49.7, 0.2,8.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Triton - Salisbury Elementary,07730015, 0.2, 1.7, 3.7, 10.2, 3.0, 0.0, 81.0, 51.6, 48.4, 0.0,19.0,3.9 +1,1,a-cure-i1,2023-24,Triton - Triton Regional High School,07730505, 0.0, 3.2, 1.1, 6.3, 1.4, 0.2, 87.8, 45.9, 53.8, 0.4,12.200000000000003,4.2 +1,1,a-cure-i1,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, 1.9, 2.5, 5.7, 3.2, 0.3, 86.3, 49.0, 51.0, 0.0,13.700000000000003,3.5 +1,1,a-cure-i1,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 6.6, 9.9, 18.7, 0.0, 64.8, 46.2, 53.8, 0.0,35.2,0.0 +1,1,a-cure-i1,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.1, 13.0, 5.6, 11.8, 5.0, 0.0, 64.4, 47.9, 52.1, 0.0,35.599999999999994,3.1 +1,1,a-cure-i1,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 10.5, 4.8, 6.0, 6.2, 0.0, 72.6, 46.7, 53.3, 0.0,27.400000000000006,3.8 +1,1,a-cure-i1,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.3, 7.0, 6.2, 10.8, 5.1, 0.0, 70.5, 44.7, 55.0, 0.3,29.5,3.9 +5.742738589211618,5,a-cure-i1,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 3.0, 47.0, 44.6, 1.8, 0.0, 3.6, 51.2, 48.8, 0.0,96.4,34.6 +6.348178137651822,5,a-cure-i1,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.2, 1.6, 51.7, 42.9, 2.2, 0.2, 1.2, 51.6, 48.4, 0.0,98.8,39.2 +17.401459854014597,5,a-cure-i1,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 1.4, 2.7, 0.0, 0.0, 9.6, 0.0, 86.3, 52.1, 47.9, 0.0,13.700000000000003,14.9 +1,1,a-cure-i1,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 4.3, 0.0, 1.8, 17.5, 6.2, 0.0, 70.2, 45.5, 54.5, 0.0,29.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.7, 0.8, 2.2, 7.9, 7.1, 0.1, 81.1, 39.8, 59.6, 0.6,18.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 2.4, 4.9, 22.0, 4.9, 2.4, 63.4, 56.1, 41.5, 2.4,36.6,0.0 +1,1,a-cure-i1,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 1.9, 0.9, 7.3, 2.3, 0.2, 87.4, 46.2, 53.8, 0.0,12.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Uxbridge - Uxbridge High,03040505, 0.5, 2.6, 0.9, 8.4, 2.7, 0.0, 84.9, 41.6, 58.4, 0.0,15.099999999999994,2.3 +1,1,a-cure-i1,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.4, 1.3, 1.3, 8.8, 2.9, 0.2, 85.1, 45.4, 54.6, 0.0,14.900000000000006,0.0 +7.958027282266527,5,a-cure-i1,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.5, 1.0, 19.2, 70.7, 3.7, 0.2, 4.7, 53.3, 46.3, 0.3,95.3,47.4 +1,1,a-cure-i1,2023-24,Wachusett - Central Tree Middle,07750310, 0.3, 1.8, 3.7, 8.4, 2.1, 0.0, 83.7, 52.6, 47.4, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 2.9, 3.7, 9.2, 1.8, 0.0, 82.4, 48.0, 52.0, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Davis Hill Elementary,07750018, 0.2, 1.3, 4.6, 8.8, 2.3, 0.2, 82.5, 47.2, 52.8, 0.0,17.5,3.3 +1,1,a-cure-i1,2023-24,Wachusett - Dawson,07750020, 0.2, 4.5, 3.1, 7.8, 4.7, 0.2, 79.5, 53.1, 46.9, 0.0,20.5,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, 6.4, 6.4, 9.3, 1.4, 0.0, 76.4, 44.3, 55.7, 0.0,23.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.7, 5.2, 6.3, 4.3, 0.0, 82.5, 50.6, 49.4, 0.0,17.5,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Houghton Elementary,07750027, 0.0, 3.1, 2.2, 14.8, 4.1, 0.0, 75.8, 46.5, 53.5, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Leroy E.Mayo,07750032, 0.0, 2.9, 4.2, 8.4, 2.3, 0.0, 82.3, 46.1, 53.9, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Mountview Middle,07750305, 0.1, 3.9, 3.6, 7.7, 3.1, 0.0, 81.6, 49.8, 50.1, 0.1,18.400000000000006,2.3 +1,1,a-cure-i1,2023-24,Wachusett - Naquag Elementary School,07750005, 0.0, 1.9, 4.5, 10.3, 2.9, 0.0, 80.4, 48.1, 51.9, 0.0,19.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Paxton Center,07750040, 0.0, 2.3, 1.6, 7.2, 3.9, 0.2, 84.7, 53.0, 47.0, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.3, 1.7, 5.1, 1.4, 0.3, 91.2, 47.3, 52.7, 0.0,8.799999999999997,3.9 +1,1,a-cure-i1,2023-24,Wachusett - Wachusett Regional High,07750505, 0.1, 3.7, 3.5, 7.1, 2.4, 0.1, 83.1, 52.6, 47.3, 0.1,16.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Wakefield - Dolbeare,03050005, 0.0, 4.3, 0.9, 8.7, 2.5, 0.0, 83.7, 50.8, 49.2, 0.0,16.299999999999997,0.0 +8.290155440414509,5,a-cure-i1,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 5.9, 2.2, 5.9, 3.7, 1.5, 80.7, 47.4, 52.6, 0.0,19.299999999999997,10.0 +1,1,a-cure-i1,2023-24,Wakefield - Galvin Middle School,03050310, 0.3, 4.8, 2.6, 9.8, 3.9, 0.5, 78.2, 47.8, 52.0, 0.2,21.799999999999997,2.1 +1,1,a-cure-i1,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.4, 1.8, 5.7, 5.7, 0.9, 85.5, 46.5, 53.5, 0.0,14.5,0.0 +1,1,a-cure-i1,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.2, 3.8, 3.5, 9.8, 3.1, 0.1, 79.5, 52.1, 47.5, 0.4,20.5,1.6 +1,1,a-cure-i1,2023-24,Wakefield - Walton,03050040, 0.0, 2.3, 2.8, 11.3, 2.8, 0.0, 80.8, 46.9, 53.1, 0.0,19.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Wakefield - Woodville School,03050015, 0.0, 4.9, 3.1, 12.4, 3.8, 0.7, 75.1, 50.0, 50.0, 0.0,24.900000000000006,0.0 +17.03703703703704,5,a-cure-i1,2023-24,Wales - Wales Elementary,03060005, 1.1, 0.0, 2.2, 7.5, 0.0, 0.0, 89.2, 39.8, 60.2, 0.0,10.799999999999997,11.5 +4.404858299595141,4.4,a-cure-i1,2023-24,Walpole - Bird Middle,03070305, 0.8, 3.5, 8.0, 8.5, 4.0, 0.0, 75.3, 52.8, 47.0, 0.3,24.700000000000003,6.8 +1,1,a-cure-i1,2023-24,Walpole - Boyden,03070010, 0.5, 2.7, 7.7, 10.4, 3.0, 0.0, 75.8, 43.5, 56.5, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 8.9, 2.5, 6.3, 10.1, 0.0, 72.2, 36.7, 63.3, 0.0,27.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.2, 9.9, 4.1, 8.4, 2.9, 0.0, 74.5, 49.6, 50.4, 0.0,25.5,3.3 +1,1,a-cure-i1,2023-24,Walpole - Elm Street School,03070005, 0.0, 8.5, 4.3, 5.2, 4.0, 0.0, 78.0, 53.6, 46.2, 0.2,22.0,0.0 +1,1,a-cure-i1,2023-24,Walpole - Fisher,03070015, 0.2, 14.2, 1.5, 8.9, 3.6, 0.4, 71.2, 51.4, 48.4, 0.2,28.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Walpole - Old Post Road,03070018, 0.6, 3.8, 2.8, 9.6, 5.3, 0.0, 77.8, 48.8, 51.2, 0.0,22.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Walpole - Walpole High,03070505, 0.2, 7.8, 4.3, 7.3, 3.0, 0.0, 77.4, 49.6, 50.2, 0.2,22.599999999999994,1.4 +1,1,a-cure-i1,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 10.3, 4.8, 20.4, 4.2, 0.2, 60.0, 53.3, 46.3, 0.4,40.0,0.0 +10.87920298879203,5,a-cure-i1,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.9, 3.7, 70.6, 5.0, 0.0, 19.7, 46.8, 53.2, 0.0,80.3,54.6 +1,1,a-cure-i1,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.6, 5.7, 76.7, 1.3, 0.0, 12.7, 53.1, 46.9, 0.0,87.3,3.8 +1,1,a-cure-i1,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 6.2, 2.8, 31.4, 5.4, 0.0, 54.2, 49.2, 50.8, 0.0,45.8,3.5 +4.432637571157495,4.43,a-cure-i1,2023-24,Waltham - John F Kennedy Middle,03080404, 0.2, 4.8, 8.9, 34.1, 4.8, 0.0, 47.3, 45.5, 54.3, 0.2,52.7,14.6 +3.0172642762284196,3.02,a-cure-i1,2023-24,Waltham - John W. McDevitt Middle School,03080415, 0.0, 2.8, 7.1, 61.9, 3.1, 0.3, 24.7, 46.4, 53.6, 0.0,75.3,14.2 +1.9937694704049844,1.99,a-cure-i1,2023-24,Waltham - Northeast Elementary School,03080040, 0.2, 7.8, 8.8, 44.2, 3.0, 0.2, 35.8, 52.8, 47.2, 0.0,64.2,8.0 +1,1,a-cure-i1,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 4.8, 15.3, 38.1, 4.3, 0.0, 37.5, 45.7, 54.3, 0.0,62.5,0.0 +2.9221556886227544,2.92,a-cure-i1,2023-24,Waltham - Waltham Sr High,03080505, 0.0, 3.9, 8.4, 52.4, 2.1, 0.0, 33.2, 45.5, 54.4, 0.1,66.8,12.2 +1.4189602446483178,1.42,a-cure-i1,2023-24,Waltham - William F. Stanley Elementary School,03080005, 0.3, 8.8, 12.2, 41.8, 2.1, 0.3, 34.6, 43.1, 56.9, 0.0,65.4,5.8 +1,1,a-cure-i1,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.5, 0.3, 3.3, 19.0, 7.5, 0.0, 69.4, 48.3, 51.2, 0.5,30.599999999999994,0.0 +6.980392156862743,5,a-cure-i1,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.2, 0.2, 1.9, 11.9, 5.7, 0.4, 79.6, 47.1, 52.9, 0.0,20.400000000000006,8.9 +1,1,a-cure-i1,2023-24,Ware - Ware Middle School,03090305, 0.8, 0.4, 3.8, 11.0, 3.8, 0.0, 80.3, 51.5, 48.5, 0.0,19.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 3.3, 0.0, 6.7, 3.3, 13.3, 0.0, 73.3, 60.0, 40.0, 0.0,26.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Wareham - Wareham Elementary School,03100017, 0.9, 0.5, 6.0, 8.4, 9.8, 0.1, 74.4, 48.8, 51.2, 0.0,25.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Wareham - Wareham Middle,03100305, 1.5, 1.2, 9.2, 11.4, 15.8, 0.2, 60.6, 47.5, 52.5, 0.0,39.4,3.0 +5.538461538461539,5,a-cure-i1,2023-24,Wareham - Wareham Senior High,03100505, 1.2, 0.2, 11.3, 9.3, 14.2, 0.2, 63.6, 48.2, 51.3, 0.5,36.4,12.600000000000001 +1,1,a-cure-i1,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 3.7, 7.4, 0.0, 88.9, 25.9, 74.1, 0.0,11.099999999999994,0.0 +6.259259259259259,5,a-cure-i1,2023-24,Watertown - Cunniff,03140015, 0.3, 5.8, 2.9, 23.5, 10.6, 0.0, 56.8, 49.4, 50.6, 0.0,43.2,16.9 +1,1,a-cure-i1,2023-24,Watertown - Hosmer,03140020, 0.0, 9.7, 5.0, 21.1, 8.6, 0.1, 55.4, 46.0, 53.9, 0.1,44.6,2.0 +4.8,4.8,a-cure-i1,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 9.8, 2.7, 21.8, 11.7, 0.0, 54.0, 47.1, 52.9, 0.0,46.0,13.8 +1,1,a-cure-i1,2023-24,Watertown - Watertown High,03140505, 0.3, 7.2, 3.9, 25.8, 7.1, 0.0, 55.7, 46.2, 53.3, 0.5,44.3,1.8 +1,1,a-cure-i1,2023-24,Watertown - Watertown Middle,03140305, 0.2, 7.4, 4.2, 23.2, 7.6, 0.0, 57.4, 50.3, 49.2, 0.5,42.6,4.2 +1,1,a-cure-i1,2023-24,Wayland - Claypit Hill School,03150005, 0.0, 11.2, 4.3, 5.3, 8.4, 0.0, 70.8, 49.5, 50.5, 0.0,29.200000000000003,3.4 +4.578461538461539,4.58,a-cure-i1,2023-24,Wayland - Happy Hollow School,03150015, 0.0, 15.9, 2.6, 5.5, 8.4, 0.0, 67.5, 49.6, 50.4, 0.0,32.5,9.3 +13.556195965417865,5,a-cure-i1,2023-24,Wayland - Loker School,03150020, 0.3, 14.9, 2.1, 10.1, 7.4, 0.0, 65.3, 52.0, 48.0, 0.0,34.7,29.4 +1,1,a-cure-i1,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 23.4, 2.1, 6.4, 4.3, 0.0, 63.8, 38.3, 61.7, 0.0,36.2,0.0 +1,1,a-cure-i1,2023-24,Wayland - Wayland High School,03150505, 0.0, 17.6, 5.9, 4.9, 6.7, 0.1, 64.9, 50.4, 49.5, 0.1,35.099999999999994,3.2 +8.196491228070176,5,a-cure-i1,2023-24,Wayland - Wayland Middle School,03150305, 0.0, 13.9, 4.5, 4.5, 5.4, 0.1, 71.5, 46.9, 53.1, 0.0,28.5,14.600000000000001 +1,1,a-cure-i1,2023-24,Webster - Bartlett High School,03160505, 0.3, 2.9, 7.8, 42.6, 4.6, 0.3, 41.6, 41.6, 57.6, 0.8,58.4,3.3 +1,1,a-cure-i1,2023-24,Webster - Park Avenue Elementary,03160015, 0.0, 1.4, 7.1, 39.9, 4.8, 0.0, 46.9, 48.5, 51.5, 0.0,53.1,0.0 +1,1,a-cure-i1,2023-24,Webster - Webster Middle School,03160315, 0.2, 2.0, 6.9, 39.4, 5.6, 0.0, 45.9, 46.6, 53.4, 0.0,54.1,0.0 +7.172413793103449,5,a-cure-i1,2023-24,Wellesley - Ernest F Upham,03170050, 0.7, 12.1, 5.7, 7.8, 8.5, 0.0, 65.2, 44.0, 56.0, 0.0,34.8,15.600000000000001 +1,1,a-cure-i1,2023-24,Wellesley - Hunnewell,03170025, 0.0, 7.0, 1.5, 6.0, 5.0, 0.0, 80.5, 49.5, 50.5, 0.0,19.5,2.6 +2.2809917355371905,2.28,a-cure-i1,2023-24,Wellesley - John D Hardy,03170020, 0.0, 31.6, 2.2, 8.4, 6.2, 0.0, 51.6, 48.4, 51.6, 0.0,48.4,6.9 +1,1,a-cure-i1,2023-24,Wellesley - Joseph E Fiske,03170015, 0.0, 25.9, 4.4, 7.0, 6.3, 0.0, 56.3, 47.2, 52.8, 0.0,43.7,0.0 +6.893280632411068,5,a-cure-i1,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.0, 7.9, 1.6, 6.7, 9.1, 0.0, 74.7, 47.8, 52.2, 0.0,25.299999999999997,10.9 +1,1,a-cure-i1,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 1.0, 20.6, 4.1, 7.2, 10.3, 0.0, 56.7, 37.1, 62.9, 0.0,43.3,0.0 +4.447129909365559,4.45,a-cure-i1,2023-24,Wellesley - Schofield,03170045, 0.0, 16.4, 3.3, 8.4, 4.7, 0.3, 66.9, 55.2, 44.8, 0.0,33.099999999999994,9.2 +1,1,a-cure-i1,2023-24,Wellesley - Sprague Elementary School,03170048, 0.0, 19.8, 3.1, 9.9, 13.7, 0.0, 53.6, 42.3, 57.7, 0.0,46.4,0.8 +3.2160804020100504,3.22,a-cure-i1,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, 19.0, 4.4, 6.7, 9.7, 0.0, 60.2, 50.9, 49.1, 0.0,39.8,8.0 +3.011764705882353,3.01,a-cure-i1,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, 16.4, 4.8, 7.1, 5.7, 0.0, 66.0, 53.5, 46.2, 0.3,34.0,6.4 +1,1,a-cure-i1,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.1, 2.2, 5.5, 9.9, 0.0, 81.3, 47.3, 52.7, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.2, 2.6, 4.6, 11.4, 5.9, 0.2, 74.9, 47.9, 52.1, 0.0,25.099999999999994,0.0 +1,1,a-cure-i1,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 3.6, 3.3, 13.2, 3.3, 0.2, 76.3, 51.3, 48.7, 0.0,23.700000000000003,2.2 +4.1626016260162615,4.16,a-cure-i1,2023-24,West Bridgewater - Howard School,03230305, 0.0, 0.6, 7.8, 8.4, 7.8, 0.0, 75.4, 47.6, 52.4, 0.0,24.599999999999994,6.4 +7.430962343096232,5,a-cure-i1,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.6, 1.2, 9.2, 9.5, 3.4, 0.0, 76.1, 46.3, 53.7, 0.0,23.900000000000006,11.1 +1,1,a-cure-i1,2023-24,West Bridgewater - Spring Street School,03230005, 0.7, 2.7, 6.1, 9.5, 2.0, 0.0, 79.1, 46.6, 53.4, 0.0,20.900000000000006,0.0 +1,1,a-cure-i1,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.2, 1.1, 10.2, 7.3, 5.0, 0.2, 76.1, 51.1, 48.9, 0.0,23.900000000000006,0.6 +1,1,a-cure-i1,2023-24,West Springfield - John Ashley,03320005, 0.0, 6.9, 7.8, 25.5, 5.9, 0.0, 53.9, 50.0, 50.0, 0.0,46.1,0.0 +1,1,a-cure-i1,2023-24,West Springfield - John R Fausey,03320010, 0.0, 6.1, 3.4, 22.0, 5.6, 0.0, 62.9, 50.3, 49.7, 0.0,37.1,0.0 +1,1,a-cure-i1,2023-24,West Springfield - Memorial,03320025, 0.0, 8.2, 6.3, 45.2, 6.3, 0.0, 34.1, 43.3, 56.7, 0.0,65.9,0.0 +1,1,a-cure-i1,2023-24,West Springfield - Mittineague,03320030, 0.0, 3.6, 0.7, 28.6, 4.3, 0.0, 62.9, 52.9, 47.1, 0.0,37.1,0.0 +1,1,a-cure-i1,2023-24,West Springfield - Philip G Coburn,03320007, 0.2, 9.2, 6.1, 26.9, 7.5, 0.2, 49.9, 48.3, 51.7, 0.0,50.1,0.0 +1,1,a-cure-i1,2023-24,West Springfield - Tatham,03320040, 0.0, 3.8, 7.6, 14.5, 4.2, 0.0, 69.8, 53.1, 46.9, 0.0,30.200000000000003,0.0 +2.1530343007915564,2.15,a-cure-i1,2023-24,West Springfield - West Springfield High,03320505, 0.0, 7.9, 4.9, 20.7, 4.4, 0.1, 62.1, 46.7, 52.4, 0.9,37.9,5.1 +1,1,a-cure-i1,2023-24,West Springfield - West Springfield Middle,03320305, 0.0, 7.0, 4.9, 22.1, 5.5, 0.1, 60.4, 52.2, 47.6, 0.2,39.6,4.4 +2.766208251473478,2.77,a-cure-i1,2023-24,Westborough - Annie E Fales,03210010, 0.0, 37.0, 2.4, 7.9, 3.6, 0.0, 49.1, 48.5, 51.5, 0.0,50.9,8.8 +1,1,a-cure-i1,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 0.6, 33.6, 3.9, 17.9, 4.5, 0.0, 39.5, 49.9, 50.1, 0.0,60.5,3.2 +1,1,a-cure-i1,2023-24,Westborough - J Harding Armstrong,03210005, 0.8, 31.3, 4.1, 12.4, 5.4, 0.0, 46.0, 50.6, 49.4, 0.0,54.0,0.0 +2.0213523131672595,2.02,a-cure-i1,2023-24,Westborough - Mill Pond School,03210045, 0.1, 39.4, 3.5, 10.2, 2.9, 0.1, 43.8, 49.7, 50.3, 0.0,56.2,7.1 +1.9887005649717513,1.99,a-cure-i1,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.2, 34.3, 3.3, 11.6, 3.7, 0.0, 46.9, 49.1, 50.9, 0.0,53.1,6.6 +2.872651356993737,2.87,a-cure-i1,2023-24,Westborough - Westborough High,03210505, 0.2, 33.2, 3.1, 8.8, 2.7, 0.0, 52.1, 51.0, 48.6, 0.4,47.9,8.6 +1,1,a-cure-i1,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 6.5, 0.0, 25.4, 2.7, 0.0, 65.4, 45.4, 54.6, 0.0,34.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 4.1, 1.4, 14.3, 4.8, 0.0, 75.5, 48.3, 51.7, 0.0,24.5,0.0 +1,1,a-cure-i1,2023-24,Westfield - Franklin Ave,03250015, 0.0, 1.7, 3.4, 44.3, 8.6, 0.0, 42.0, 49.4, 50.6, 0.0,58.0,0.0 +1,1,a-cure-i1,2023-24,Westfield - Highland,03250025, 0.0, 2.6, 0.6, 11.5, 5.2, 0.0, 80.1, 53.0, 47.0, 0.0,19.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Westfield - Munger Hill,03250033, 0.0, 3.7, 2.1, 12.5, 4.9, 0.0, 76.8, 44.8, 55.2, 0.0,23.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Westfield - Paper Mill,03250036, 0.0, 2.5, 1.9, 22.5, 7.6, 0.0, 65.5, 46.5, 53.5, 0.0,34.5,0.0 +1,1,a-cure-i1,2023-24,Westfield - Southampton Road,03250040, 0.0, 2.6, 1.6, 21.3, 5.6, 0.0, 68.9, 49.8, 50.2, 0.0,31.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Westfield - Westfield High,03250505, 0.2, 3.1, 2.2, 20.1, 4.1, 0.0, 70.4, 53.4, 46.5, 0.1,29.599999999999994,2.0 +1,1,a-cure-i1,2023-24,Westfield - Westfield Intermediate School,03250075, 0.1, 3.5, 2.0, 21.9, 3.8, 0.0, 68.6, 52.2, 47.8, 0.0,31.400000000000006,1.8 +1,1,a-cure-i1,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 2.3, 2.5, 18.8, 3.3, 0.1, 72.9, 49.6, 50.4, 0.0,27.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, 1.3, 1.6, 15.5, 1.8, 0.0, 79.7, 30.8, 68.6, 0.5,20.299999999999997,1.3 +1,1,a-cure-i1,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 1.6, 3.2, 32.3, 4.8, 0.0, 58.1, 46.8, 51.6, 1.6,41.9,0.0 +1,1,a-cure-i1,2023-24,Westford - Abbot Elementary,03260004, 0.3, 21.2, 0.3, 1.3, 0.8, 0.0, 76.1, 51.1, 48.9, 0.0,23.900000000000006,0.0 +1,1,a-cure-i1,2023-24,Westford - Blanchard Middle,03260310, 0.2, 35.3, 1.3, 6.5, 1.3, 0.0, 55.3, 50.7, 49.3, 0.0,44.7,2.4 +1,1,a-cure-i1,2023-24,Westford - Col John Robinson,03260025, 0.0, 28.5, 3.3, 6.6, 4.3, 0.0, 57.4, 51.5, 48.5, 0.0,42.6,0.0 +1,1,a-cure-i1,2023-24,Westford - Day Elementary,03260007, 0.0, 36.1, 2.4, 8.4, 1.4, 0.7, 51.0, 50.3, 49.7, 0.0,49.0,0.0 +1,1,a-cure-i1,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.3, 35.8, 2.1, 3.3, 2.1, 0.0, 56.4, 45.2, 54.5, 0.3,43.6,0.0 +1,1,a-cure-i1,2023-24,Westford - Nabnasset,03260015, 0.3, 22.3, 1.0, 3.9, 1.3, 0.0, 71.1, 49.2, 50.8, 0.0,28.900000000000006,0.0 +1.4197952218430034,1.42,a-cure-i1,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 44.6, 4.7, 9.4, 0.0, 0.0, 41.4, 38.8, 61.2, 0.0,58.6,5.2 +1,1,a-cure-i1,2023-24,Westford - Stony Brook School,03260330, 0.2, 31.2, 1.0, 3.2, 1.9, 0.2, 62.3, 48.5, 51.4, 0.2,37.7,4.9 +1,1,a-cure-i1,2023-24,Westford - Westford Academy,03260505, 0.5, 32.8, 2.4, 3.3, 0.1, 0.1, 60.8, 51.4, 48.3, 0.3,39.2,3.8 +1,1,a-cure-i1,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 6.7, 1.0, 0.0, 92.3, 42.3, 57.7, 0.0,7.700000000000003,0.0 +3.6090225563909777,3.61,a-cure-i1,2023-24,Weston - Country,03300010, 0.0, 21.1, 3.8, 8.8, 6.3, 0.0, 60.1, 50.0, 50.0, 0.0,39.9,9.0 +2.545454545454545,2.55,a-cure-i1,2023-24,Weston - Field Elementary School,03300012, 0.0, 16.1, 6.3, 6.3, 6.6, 0.0, 64.8, 52.3, 47.7, 0.0,35.2,5.6 +8.74820143884892,5,a-cure-i1,2023-24,Weston - Weston High,03300505, 0.0, 23.1, 5.6, 6.2, 6.8, 0.0, 58.3, 45.8, 54.1, 0.2,41.7,22.799999999999997 +2.5964912280701755,2.6,a-cure-i1,2023-24,Weston - Weston Middle,03300305, 0.0, 23.1, 6.3, 9.3, 6.5, 0.2, 54.4, 48.1, 51.6, 0.2,45.6,7.4 +1,1,a-cure-i1,2023-24,Weston - Woodland,03300015, 0.0, 18.2, 5.2, 7.4, 5.6, 0.0, 63.6, 49.4, 50.6, 0.0,36.4,0.0 +1,1,a-cure-i1,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 1.1, 5.6, 3.4, 0.0, 89.9, 54.5, 45.5, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.9, 0.4, 6.3, 2.9, 0.2, 89.3, 53.1, 46.9, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Westport - Westport Middle-High School,03310515, 0.2, 0.7, 1.4, 4.4, 3.3, 0.0, 90.0, 46.8, 53.1, 0.1,10.0,0.0 +1,1,a-cure-i1,2023-24,Westwood - Downey,03350012, 0.0, 22.9, 0.0, 5.1, 6.1, 0.3, 65.6, 43.9, 56.1, 0.0,34.400000000000006,0.6 +1,1,a-cure-i1,2023-24,Westwood - E W Thurston Middle,03350305, 0.2, 13.8, 2.3, 6.1, 7.3, 0.2, 70.3, 47.4, 52.6, 0.0,29.700000000000003,0.0 +4.324324324324324,4.32,a-cure-i1,2023-24,Westwood - Martha Jones,03350017, 0.0, 10.5, 0.0, 4.0, 7.6, 0.0, 77.8, 46.9, 53.1, 0.0,22.200000000000003,6.0 +3.3684210526315788,3.37,a-cure-i1,2023-24,Westwood - Pine Hill Elementary School,03350030, 0.0, 14.3, 4.0, 11.2, 6.7, 0.0, 63.9, 47.7, 52.3, 0.0,36.1,7.6 +5.669291338582676,5,a-cure-i1,2023-24,Westwood - Westwood High,03350505, 0.0, 12.9, 2.4, 7.2, 2.7, 0.1, 74.6, 48.1, 51.7, 0.2,25.400000000000006,9.0 +1,1,a-cure-i1,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 16.7, 0.0, 2.8, 11.1, 0.0, 69.4, 41.7, 58.3, 0.0,30.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Westwood - William E Sheehan,03350025, 0.0, 8.3, 0.3, 4.7, 7.3, 0.0, 79.3, 43.0, 57.0, 0.0,20.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 5.0, 8.9, 12.4, 6.2, 0.6, 66.9, 49.7, 50.3, 0.0,33.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 6.0, 7.1, 18.4, 6.0, 0.0, 62.5, 48.1, 51.9, 0.0,37.5,0.0 +3.0853994490358128,3.09,a-cure-i1,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 13.7, 7.4, 6.4, 8.8, 0.0, 63.7, 42.6, 57.4, 0.0,36.3,7.0 +1,1,a-cure-i1,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.4, 4.9, 5.6, 12.8, 6.4, 0.0, 69.9, 56.0, 44.0, 0.0,30.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.1, 5.8, 8.2, 16.2, 5.2, 0.0, 64.5, 51.1, 48.8, 0.1,35.5,4.2 +2.674351585014409,2.67,a-cure-i1,2023-24,Weymouth - Ralph Talbot,03360085, 0.0, 6.1, 10.1, 13.5, 4.7, 0.3, 65.3, 45.5, 54.5, 0.0,34.7,5.8 +1,1,a-cure-i1,2023-24,Weymouth - Thomas V Nash,03360060, 0.0, 7.1, 3.2, 9.9, 7.9, 0.0, 71.8, 47.2, 52.8, 0.0,28.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.3, 11.7, 4.0, 11.4, 6.0, 0.0, 66.7, 47.0, 53.0, 0.0,33.3,0.0 +1,1,a-cure-i1,2023-24,Weymouth - Wessagusset,03360110, 0.3, 9.8, 9.5, 6.1, 6.4, 0.0, 68.0, 49.7, 50.3, 0.0,32.0,0.0 +3.303834808259587,3.3,a-cure-i1,2023-24,Weymouth - Weymouth High School,03360505, 0.3, 5.9, 8.9, 14.7, 4.0, 0.2, 66.1, 52.8, 46.9, 0.2,33.900000000000006,7.000000000000001 +1,1,a-cure-i1,2023-24,Weymouth - William Seach,03360080, 0.3, 6.0, 17.7, 27.3, 6.3, 0.0, 42.4, 49.0, 51.0, 0.0,57.6,4.5 +1,1,a-cure-i1,2023-24,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.8, 4.8, 1.6, 0.0, 92.8, 46.4, 53.6, 0.0,7.200000000000003,0.0 +1,1,a-cure-i1,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.5, 1.7, 1.4, 5.2, 2.1, 0.2, 88.9, 48.8, 51.2, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Whitman-Hanson - Indian Head,07800035, 0.2, 1.0, 3.0, 5.0, 4.0, 0.2, 86.5, 45.8, 54.2, 0.0,13.5,3.6 +1,1,a-cure-i1,2023-24,Whitman-Hanson - John H Duval,07800030, 0.9, 1.4, 6.2, 17.2, 4.6, 0.0, 69.7, 48.3, 51.7, 0.0,30.299999999999997,3.9 +1,1,a-cure-i1,2023-24,Whitman-Hanson - Louise A Conley,07800010, 0.0, 2.9, 6.7, 9.3, 4.6, 0.0, 76.4, 51.4, 48.6, 0.0,23.599999999999994,0.0 +13.973799126637552,5,a-cure-i1,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 1.9, 5.7, 10.5, 4.8, 0.0, 77.1, 40.0, 60.0, 0.0,22.900000000000006,20.0 +1,1,a-cure-i1,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.9, 2.0, 6.2, 9.8, 2.7, 0.2, 78.2, 52.2, 47.8, 0.0,21.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Whitman-Hanson - Whitman Middle,07800310, 1.0, 2.0, 6.7, 10.3, 3.0, 0.0, 77.1, 47.7, 52.3, 0.0,22.900000000000006,0.0 +3.2164948453608253,3.22,a-cure-i1,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.1, 1.9, 3.6, 28.6, 4.5, 0.1, 61.2, 42.1, 56.8, 1.1,38.8,7.800000000000001 +1,1,a-cure-i1,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.8, 0.0, 4.9, 0.0, 0.0, 94.3, 46.3, 53.7, 0.0,5.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Wilmington - Boutwell,03420005, 0.0, 6.9, 2.1, 9.0, 6.9, 0.0, 75.0, 52.1, 47.9, 0.0,25.0,0.0 +1,1,a-cure-i1,2023-24,Wilmington - North Intermediate,03420060, 0.4, 6.4, 1.2, 7.6, 4.8, 0.0, 79.5, 43.4, 56.6, 0.0,20.5,0.0 +1,1,a-cure-i1,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 7.3, 1.8, 4.7, 5.0, 0.0, 81.3, 50.3, 49.7, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2023-24,Wilmington - West Intermediate,03420080, 0.0, 9.5, 1.1, 6.6, 4.4, 0.0, 78.4, 44.7, 55.3, 0.0,21.599999999999994,3.9 +3.9808612440191378,3.98,a-cure-i1,2023-24,Wilmington - Wilmington High,03420505, 0.2, 7.8, 1.3, 7.5, 4.1, 0.0, 79.1, 50.1, 49.6, 0.3,20.900000000000006,5.2 +1,1,a-cure-i1,2023-24,Wilmington - Wilmington Middle School,03420330, 0.0, 6.9, 1.5, 5.4, 3.3, 0.0, 82.8, 49.7, 50.3, 0.0,17.200000000000003,1.4 +1,1,a-cure-i1,2023-24,Wilmington - Woburn Street,03420020, 0.3, 5.0, 2.8, 6.4, 5.3, 0.0, 80.2, 44.7, 55.3, 0.0,19.799999999999997,0.0 +9.904761904761902,5,a-cure-i1,2023-24,Winchendon - Memorial,03430040, 0.3, 1.0, 1.3, 11.6, 4.3, 0.3, 81.1, 49.0, 51.0, 0.0,18.900000000000006,11.7 +1,1,a-cure-i1,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 15.0, 5.0, 0.0, 80.0, 35.0, 60.0, 5.0,20.0,0.0 +7.871657754010694,5,a-cure-i1,2023-24,Winchendon - Murdock High School,03430515, 0.0, 2.4, 2.0, 11.5, 2.4, 0.4, 81.3, 46.8, 52.4, 0.8,18.700000000000003,9.2 +1,1,a-cure-i1,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 1.7, 2.1, 12.4, 2.8, 0.3, 80.7, 40.3, 59.3, 0.3,19.299999999999997,0.0 +1,1,a-cure-i1,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.7, 2.5, 7.2, 4.3, 0.0, 85.1, 47.5, 52.5, 0.0,14.900000000000006,0.0 +16.59751037344399,5,a-cure-i1,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 2.5, 13.9, 7.6, 0.0, 75.9, 36.7, 63.3, 0.0,24.099999999999994,25.0 +1,1,a-cure-i1,2023-24,Winchester - Ambrose Elementary,03440045, 0.0, 8.6, 0.5, 2.1, 6.5, 0.0, 82.2, 52.5, 47.5, 0.0,17.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 13.2, 0.6, 3.4, 8.6, 0.0, 74.2, 47.6, 52.4, 0.0,25.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 30.8, 1.4, 4.7, 8.7, 0.0, 54.4, 43.8, 56.2, 0.0,45.6,3.6 +2.7804878048780486,2.78,a-cure-i1,2023-24,Winchester - McCall Middle,03440305, 0.1, 19.2, 1.5, 3.6, 8.5, 0.0, 67.2, 49.0, 50.9, 0.1,32.8,5.699999999999999 +1,1,a-cure-i1,2023-24,Winchester - Muraco Elementary,03440040, 0.3, 25.1, 0.9, 5.3, 6.8, 0.0, 61.5, 53.0, 46.7, 0.3,38.5,0.0 +3.7674418604651154,3.77,a-cure-i1,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 23.5, 0.5, 1.9, 8.5, 0.0, 65.6, 49.6, 50.4, 0.0,34.400000000000006,8.1 +4.717325227963524,4.72,a-cure-i1,2023-24,Winchester - Winchester High School,03440505, 0.2, 19.8, 2.3, 4.5, 6.0, 0.0, 67.1, 51.6, 48.3, 0.1,32.900000000000006,9.7 +1,1,a-cure-i1,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.2, 1.8, 24.4, 1.4, 0.0, 72.2, 55.5, 44.5, 0.0,27.799999999999997,0.0 +1,1,a-cure-i1,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.6, 1.6, 23.8, 3.2, 0.0, 70.8, 47.6, 52.4, 0.0,29.200000000000003,0.0 +4.338028169014083,4.34,a-cure-i1,2023-24,Winthrop - Winthrop High School,03460505, 1.0, 1.2, 1.8, 22.7, 1.5, 0.2, 71.6, 50.4, 49.4, 0.2,28.400000000000006,7.699999999999999 +1,1,a-cure-i1,2023-24,Winthrop - Winthrop Middle School,03460305, 0.5, 0.0, 2.1, 22.5, 1.4, 0.0, 73.5, 50.6, 49.4, 0.0,26.5,0.0 +1,1,a-cure-i1,2023-24,Woburn - Clyde Reeves,03470040, 2.3, 8.8, 7.9, 11.5, 3.6, 0.0, 66.0, 46.6, 53.2, 0.2,34.0,3.5 +1,1,a-cure-i1,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 1.1, 4.3, 8.3, 15.0, 3.7, 0.0, 67.6, 51.5, 48.3, 0.2,32.400000000000006,4.6 +1,1,a-cure-i1,2023-24,Woburn - Goodyear Elementary School,03470005, 1.1, 7.4, 8.5, 24.9, 3.1, 0.3, 54.7, 51.6, 48.4, 0.0,45.3,0.0 +1,1,a-cure-i1,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.7, 4.1, 4.1, 13.7, 3.6, 0.2, 73.5, 46.3, 53.7, 0.0,26.5,0.0 +2.681318681318681,2.68,a-cure-i1,2023-24,Woburn - John F Kennedy Middle School,03470405, 2.0, 6.5, 8.4, 16.0, 3.3, 0.2, 63.6, 47.7, 52.3, 0.0,36.4,6.1 +1,1,a-cure-i1,2023-24,Woburn - Linscott-Rumford,03470025, 1.0, 15.3, 9.7, 13.3, 3.6, 0.5, 56.6, 45.4, 54.6, 0.0,43.4,0.0 +1,1,a-cure-i1,2023-24,Woburn - Malcolm White,03470055, 3.8, 5.0, 7.1, 22.8, 4.7, 0.0, 56.5, 54.7, 44.7, 0.6,43.5,0.0 +1,1,a-cure-i1,2023-24,Woburn - Mary D Altavesta,03470065, 2.9, 9.8, 18.6, 18.6, 2.5, 0.0, 47.5, 52.5, 47.5, 0.0,52.5,0.0 +1,1,a-cure-i1,2023-24,Woburn - Shamrock,03470043, 1.5, 6.2, 15.3, 22.5, 4.4, 0.0, 50.2, 45.8, 54.2, 0.0,49.8,0.0 +1,1,a-cure-i1,2023-24,Woburn - Woburn High,03470505, 0.9, 5.8, 9.5, 18.0, 3.2, 0.2, 62.4, 52.2, 47.4, 0.4,37.6,4.8 +1,1,a-cure-i1,2023-24,Worcester - Belmont Street Community,03480020, 0.3, 5.8, 18.7, 51.5, 4.3, 0.0, 19.4, 47.7, 52.3, 0.0,80.6,2.8 +3.9943899018232822,3.99,a-cure-i1,2023-24,Worcester - Burncoat Middle School,03480405, 0.0, 5.0, 15.9, 46.2, 4.2, 0.0, 28.7, 52.8, 47.1, 0.1,71.3,17.8 +2.405673758865248,2.41,a-cure-i1,2023-24,Worcester - Burncoat Senior High,03480503, 0.1, 5.0, 21.4, 39.5, 4.4, 0.1, 29.5, 50.9, 49.1, 0.0,70.5,10.6 +1,1,a-cure-i1,2023-24,Worcester - Burncoat Street,03480035, 0.0, 3.5, 12.6, 54.5, 4.3, 0.0, 25.1, 47.2, 52.8, 0.0,74.9,0.0 +1.6342042755344417,1.63,a-cure-i1,2023-24,Worcester - Canterbury,03480045, 0.0, 10.1, 11.6, 60.0, 2.4, 0.0, 15.8, 47.2, 52.8, 0.0,84.2,8.6 +1,1,a-cure-i1,2023-24,Worcester - Chandler Elementary Community,03480050, 0.5, 9.7, 11.2, 60.8, 3.2, 0.0, 14.6, 46.0, 54.0, 0.0,85.4,2.1 +9.403019744483158,5,a-cure-i1,2023-24,Worcester - Chandler Magnet,03480052, 0.2, 0.9, 4.7, 78.1, 2.2, 0.0, 13.9, 54.0, 46.0, 0.0,86.1,50.599999999999994 +2.3225806451612905,2.32,a-cure-i1,2023-24,Worcester - City View,03480053, 0.5, 2.8, 18.5, 54.0, 4.8, 0.0, 19.4, 49.9, 50.1, 0.0,80.6,11.700000000000001 +3.8673796791443853,3.87,a-cure-i1,2023-24,Worcester - Claremont Academy,03480350, 0.2, 5.6, 10.7, 75.5, 1.5, 0.0, 6.5, 48.5, 51.5, 0.0,93.5,22.6 +4.4958677685950414,4.5,a-cure-i1,2023-24,Worcester - Clark St Community,03480055, 0.4, 7.7, 19.9, 53.3, 3.4, 0.0, 15.3, 51.0, 49.0, 0.0,84.7,23.8 +1.6936488169364883,1.69,a-cure-i1,2023-24,Worcester - Columbus Park,03480060, 0.8, 6.1, 10.7, 59.2, 3.5, 0.0, 19.7, 46.9, 53.1, 0.0,80.3,8.5 +3.3333333333333335,3.33,a-cure-i1,2023-24,Worcester - Doherty Memorial High,03480512, 0.3, 6.0, 15.3, 35.5, 5.3, 0.0, 37.6, 46.6, 53.2, 0.1,62.4,13.0 +1.5882352941176472,1.59,a-cure-i1,2023-24,Worcester - Elm Park Community,03480095, 0.0, 5.2, 13.9, 59.8, 2.7, 0.0, 18.4, 46.1, 53.9, 0.0,81.6,8.1 +1,1,a-cure-i1,2023-24,Worcester - Flagg Street,03480090, 0.3, 4.1, 5.4, 16.0, 4.4, 0.0, 69.8, 49.4, 50.6, 0.0,30.200000000000003,0.0 +4.855842185128983,4.86,a-cure-i1,2023-24,Worcester - Forest Grove Middle,03480415, 0.1, 5.7, 13.5, 41.7, 4.8, 0.0, 34.1, 50.4, 49.6, 0.0,65.9,20.0 +1,1,a-cure-i1,2023-24,Worcester - Francis J McGrath Elementary,03480177, 0.0, 3.8, 18.3, 47.6, 4.8, 0.5, 25.0, 50.0, 50.0, 0.0,75.0,2.3 +1.492772667542707,1.49,a-cure-i1,2023-24,Worcester - Gates Lane,03480110, 0.2, 13.5, 13.2, 41.9, 6.9, 0.4, 23.9, 41.7, 58.3, 0.0,76.1,7.1 +1.4983277591973245,1.5,a-cure-i1,2023-24,Worcester - Goddard School/Science Technical,03480100, 1.1, 8.2, 13.8, 64.6, 2.1, 0.0, 10.3, 46.6, 53.4, 0.0,89.7,8.4 +1,1,a-cure-i1,2023-24,Worcester - Grafton Street,03480115, 0.3, 2.8, 18.6, 51.0, 4.0, 0.0, 23.4, 50.5, 49.5, 0.0,76.6,3.7 +1,1,a-cure-i1,2023-24,Worcester - Head Start,03480002, 0.3, 4.5, 21.8, 54.0, 0.3, 0.0, 19.1, 53.7, 46.3, 0.0,80.9,4.3 +3.1672354948805466,3.17,a-cure-i1,2023-24,Worcester - Heard Street,03480136, 0.0, 8.8, 15.9, 29.5, 4.4, 0.0, 41.4, 49.4, 50.6, 0.0,58.6,11.600000000000001 +1,1,a-cure-i1,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 0.3, 4.5, 31.5, 46.2, 3.7, 0.0, 13.9, 50.7, 49.3, 0.0,86.1,3.6 +3.259720062208398,3.26,a-cure-i1,2023-24,Worcester - Lake View,03480145, 0.3, 9.4, 20.3, 29.4, 4.5, 0.3, 35.7, 49.3, 50.7, 0.0,64.3,13.1 +1.147023086269745,1.15,a-cure-i1,2023-24,Worcester - Lincoln Street,03480160, 0.0, 6.0, 24.7, 45.6, 6.0, 0.0, 17.7, 45.6, 54.4, 0.0,82.3,5.9 +4.707438016528925,4.71,a-cure-i1,2023-24,Worcester - May Street,03480175, 0.0, 8.2, 13.9, 27.6, 10.9, 0.0, 39.5, 48.3, 51.7, 0.0,60.5,17.799999999999997 +2.9642105263157896,2.96,a-cure-i1,2023-24,Worcester - Midland Street,03480185, 0.0, 10.9, 9.7, 19.7, 7.1, 0.0, 52.5, 46.2, 53.4, 0.4,47.5,8.8 +1,1,a-cure-i1,2023-24,Worcester - Nelson Place,03480200, 0.0, 7.5, 16.3, 24.6, 5.8, 0.0, 45.9, 41.9, 58.1, 0.0,54.1,4.5 +3.734087694483734,3.73,a-cure-i1,2023-24,Worcester - Norrback Avenue,03480202, 0.4, 3.3, 29.1, 33.2, 4.7, 0.0, 29.3, 45.2, 54.8, 0.0,70.7,16.5 +3.884057971014493,3.88,a-cure-i1,2023-24,Worcester - North High,03480515, 0.2, 4.6, 21.3, 52.7, 3.9, 0.1, 17.2, 47.8, 51.8, 0.4,82.8,20.1 +3.4966887417218544,3.5,a-cure-i1,2023-24,Worcester - Quinsigamond,03480210, 0.4, 5.5, 15.4, 51.3, 2.9, 0.0, 24.5, 49.2, 50.8, 0.0,75.5,16.5 +4.774869109947644,4.77,a-cure-i1,2023-24,Worcester - Rice Square,03480215, 0.7, 8.9, 21.3, 41.7, 3.7, 0.0, 23.6, 52.3, 47.7, 0.0,76.4,22.8 +1.2201438848920865,1.22,a-cure-i1,2023-24,Worcester - Roosevelt,03480220, 0.0, 5.0, 26.5, 33.4, 4.0, 0.5, 30.5, 42.4, 57.6, 0.0,69.5,5.300000000000001 +2.744063324538259,2.74,a-cure-i1,2023-24,Worcester - South High Community,03480520, 0.0, 10.8, 18.8, 42.0, 4.2, 0.0, 24.2, 47.3, 52.7, 0.0,75.8,13.000000000000002 +2.56,2.56,a-cure-i1,2023-24,Worcester - Sullivan Middle,03480423, 0.2, 8.1, 14.1, 47.9, 4.7, 0.0, 25.0, 49.2, 50.8, 0.0,75.0,12.0 +1,1,a-cure-i1,2023-24,Worcester - Tatnuck,03480230, 0.3, 5.0, 17.6, 29.7, 6.1, 0.0, 41.3, 48.2, 51.8, 0.0,58.7,3.8 +1,1,a-cure-i1,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 5.4, 16.2, 40.3, 3.1, 0.0, 34.9, 50.9, 49.1, 0.0,65.1,4.8 +2.607683352735739,2.61,a-cure-i1,2023-24,Worcester - Union Hill School,03480240, 0.0, 3.0, 16.3, 64.2, 2.4, 0.0, 14.1, 49.6, 50.4, 0.0,85.9,14.0 +1.888641425389755,1.89,a-cure-i1,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 10.7, 13.9, 61.5, 3.7, 0.0, 10.2, 44.7, 55.3, 0.0,89.8,10.6 +2.1853658536585363,2.19,a-cure-i1,2023-24,Worcester - Vernon Hill School,03480280, 0.0, 3.7, 20.1, 55.3, 2.9, 0.0, 18.0, 47.1, 52.9, 0.0,82.0,11.2 +1.8631732168850073,1.86,a-cure-i1,2023-24,Worcester - Wawecus Road School,03480026, 0.0, 4.7, 14.0, 40.7, 9.3, 0.0, 31.3, 52.0, 48.0, 0.0,68.7,8.0 +5.738140417457305,5,a-cure-i1,2023-24,Worcester - West Tatnuck,03480260, 0.3, 7.7, 14.8, 21.6, 8.5, 0.0, 47.3, 44.3, 55.7, 0.0,52.7,18.9 +3.091703056768559,3.09,a-cure-i1,2023-24,Worcester - Woodland Academy,03480030, 0.2, 4.7, 10.8, 73.0, 2.7, 0.2, 8.4, 50.5, 49.5, 0.0,91.6,17.7 +1,1,a-cure-i1,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.2, 8.1, 23.9, 27.6, 1.7, 0.0, 38.4, 49.8, 50.2, 0.0,61.6,1.9 +3.5705669481302773,3.57,a-cure-i1,2023-24,Worcester - Worcester East Middle,03480420, 0.3, 5.3, 21.3, 53.2, 2.7, 0.0, 17.1, 48.1, 51.9, 0.0,82.9,18.5 +1.713490959666203,1.71,a-cure-i1,2023-24,Worcester - Worcester Technical High,03480605, 0.3, 6.3, 18.8, 42.6, 3.8, 0.1, 28.1, 54.1, 45.9, 0.0,71.9,7.7 +8.891191709844561,5,a-cure-i1,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.7, 0.0, 24.3, 47.8, 4.4, 0.0, 22.8, 53.7, 45.6, 0.7,77.2,42.900000000000006 +1,1,a-cure-i1,2023-24,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 5.5, 4.1, 0.0, 90.4, 35.6, 63.0, 1.4,9.599999999999994,0.0 +1,1,a-cure-i1,2023-24,Wrentham - Charles E Roderick,03500010, 0.5, 2.7, 1.9, 7.8, 5.1, 0.0, 81.9, 51.6, 48.4, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2023-24,Wrentham - Delaney,03500003, 0.8, 4.1, 2.5, 6.7, 5.2, 0.3, 80.4, 47.6, 52.4, 0.0,19.599999999999994,2.7 +1.2882147024504085,1.29,a-cure-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.4, 2.9, 55.4, 21.6, 5.3, 0.1, 14.3, 53.4, 46.6, 0.0,85.7,6.9 +1,1,a-cure-i1,2022-23,Abington - Abington Early Education Program,00010001, 1.1, 5.7, 9.2, 8.0, 1.1, 0.0, 74.7, 35.6, 64.4, 0.0,25.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Abington - Abington High,00010505, 0.4, 2.2, 5.3, 14.4, 1.1, 0.0, 76.6, 48.0, 51.5, 0.5,23.400000000000006,2.6 +4.524590163934425,4.52,a-cure-i1,2022-23,Abington - Abington Middle School,00010405, 0.5, 2.0, 6.2, 14.2, 1.4, 0.2, 75.6, 49.5, 50.2, 0.3,24.400000000000006,6.9 +1,1,a-cure-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 0.2, 2.5, 6.1, 14.6, 4.6, 0.2, 71.8, 51.4, 48.6, 0.0,28.200000000000003,3.7 +4.363636363636363,4.36,a-cure-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 0.9, 3.0, 5.1, 13.4, 1.8, 0.0, 75.8, 47.5, 52.2, 0.3,24.200000000000003,6.6 +6.178723404255319,5,a-cure-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 64.9, 26.6, 2.6, 0.0, 6.0, 49.7, 50.3, 0.0,94.0,36.3 +1,1,a-cure-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.2, 36.8, 3.2, 6.8, 3.1, 0.2, 49.6, 47.3, 52.0, 0.7,50.4,4.2 +1,1,a-cure-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 0.2, 27.7, 3.2, 9.5, 5.9, 0.0, 53.6, 49.2, 50.6, 0.2,46.4,3.6 +1,1,a-cure-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 15.9, 2.1, 10.3, 8.0, 0.0, 63.7, 46.4, 53.6, 0.0,36.3,0.5 +1,1,a-cure-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 39.3, 5.6, 7.5, 8.4, 0.0, 39.3, 38.3, 61.7, 0.0,60.7,0.0 +2.7891891891891887,2.79,a-cure-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 0.0, 58.1, 2.9, 7.8, 5.1, 0.0, 26.0, 47.3, 52.7, 0.0,74.0,12.899999999999999 +1,1,a-cure-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 9.9, 2.9, 10.8, 6.1, 0.0, 70.4, 48.7, 51.1, 0.2,29.599999999999994,4.2 +1,1,a-cure-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 0.0, 16.7, 2.8, 6.7, 7.9, 0.0, 65.9, 50.3, 49.2, 0.5,34.099999999999994,4.3 +1,1,a-cure-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 56.3, 1.1, 6.9, 7.7, 0.0, 28.0, 50.0, 50.0, 0.0,72.0,4.1 +2.862823061630219,2.86,a-cure-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.2, 35.9, 3.3, 7.4, 3.4, 0.1, 49.7, 47.0, 52.7, 0.2,50.3,9.0 +1,1,a-cure-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 0.7, 0.9, 1.4, 6.1, 3.1, 0.2, 87.6, 45.0, 55.0, 0.0,12.400000000000006,2.9 +1,1,a-cure-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 0.5, 0.5, 1.2, 4.7, 3.9, 0.0, 89.2, 50.9, 48.9, 0.2,10.799999999999997,0.0 +4.951140065146579,4.95,a-cure-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 11.9, 2.8, 8.5, 7.6, 0.0, 69.3, 45.0, 54.2, 0.7,30.700000000000003,9.5 +1,1,a-cure-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 0.0, 7.4, 0.7, 18.9, 2.0, 0.0, 70.9, 37.8, 62.2, 0.0,29.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Agawam - Agawam High,00050505, 0.0, 4.2, 2.5, 9.1, 2.9, 0.0, 81.4, 47.5, 51.7, 0.8,18.599999999999994,1.6 +1,1,a-cure-i1,2022-23,Agawam - Agawam Junior High,00050405, 0.0, 3.1, 2.9, 14.1, 2.3, 0.0, 77.6, 43.8, 56.0, 0.2,22.400000000000006,2.1 +1,1,a-cure-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 0.3, 3.6, 2.3, 8.1, 2.9, 0.0, 82.8, 47.4, 52.6, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Agawam - Clifford M Granger,00050010, 0.6, 3.9, 0.9, 16.7, 2.1, 0.0, 75.8, 49.3, 50.7, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Agawam - James Clark School,00050030, 0.0, 4.9, 1.6, 12.1, 3.6, 0.0, 77.9, 47.2, 52.8, 0.0,22.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 0.2, 2.7, 2.9, 10.0, 2.7, 0.2, 81.3, 50.6, 49.4, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Agawam - Robinson Park,00050025, 0.0, 2.5, 2.9, 14.4, 4.7, 0.0, 75.5, 53.1, 46.9, 0.0,24.5,0.0 +3.6491228070175437,3.65,a-cure-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.5, 0.5, 14.2, 60.3, 4.3, 0.0, 20.2, 53.3, 46.7, 0.0,79.8,18.2 +1,1,a-cure-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 2.1, 8.2, 3.7, 0.0, 86.0, 50.3, 49.7, 0.0,14.0,0.0 +1,1,a-cure-i1,2022-23,Amesbury - Amesbury High,00070505, 0.0, 1.5, 1.5, 10.6, 4.9, 0.0, 81.5, 49.2, 50.8, 0.0,18.5,4.4 +1,1,a-cure-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 8.9, 8.9, 0.0, 82.2, 53.3, 46.7, 0.0,17.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Amesbury - Amesbury Middle,00070013, 0.2, 1.5, 1.7, 11.1, 4.3, 0.0, 81.2, 44.3, 55.7, 0.0,18.799999999999997,2.1 +1,1,a-cure-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 0.3, 0.5, 1.9, 15.7, 3.3, 0.3, 78.0, 50.4, 49.6, 0.0,22.0,0.0 +2.0326678765880217,2.03,a-cure-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 0.3, 11.6, 12.8, 19.1, 11.0, 0.3, 44.9, 52.2, 46.4, 1.4,55.1,7.0 +9.199294532627865,5,a-cure-i1,2022-23,Amherst - Fort River Elementary,00080020, 0.3, 10.3, 6.3, 32.5, 7.4, 0.0, 43.3, 44.9, 54.6, 0.5,56.7,32.6 +11.74368932038835,5,a-cure-i1,2022-23,Amherst - Wildwood Elementary,00080050, 0.6, 10.7, 15.3, 18.4, 6.4, 0.0, 48.5, 52.8, 46.6, 0.6,51.5,37.800000000000004 +6.321428571428573,5,a-cure-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 9.1, 7.9, 19.1, 8.6, 0.0, 55.2, 47.2, 51.3, 1.5,44.8,17.700000000000003 +14.603491271820445,5,a-cure-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 11.0, 7.0, 15.9, 5.9, 0.3, 59.9, 43.3, 55.4, 1.3,40.1,36.599999999999994 +5.711048158640227,5,a-cure-i1,2022-23,Andover - Andover High,00090505, 0.4, 20.1, 2.9, 8.3, 3.5, 0.1, 64.7, 51.0, 48.8, 0.2,35.3,12.6 +1,1,a-cure-i1,2022-23,Andover - Andover West Middle,00090310, 0.2, 15.6, 1.7, 9.8, 2.1, 0.0, 70.5, 51.5, 47.9, 0.6,29.5,2.8 +1,1,a-cure-i1,2022-23,Andover - Bancroft Elementary,00090003, 0.0, 8.5, 1.1, 7.9, 6.1, 0.0, 76.4, 51.0, 48.8, 0.2,23.599999999999994,0.0 +8.0,5,a-cure-i1,2022-23,Andover - Doherty Middle,00090305, 0.0, 10.6, 0.9, 7.6, 3.9, 0.0, 77.0, 49.5, 50.5, 0.0,23.0,11.5 +1,1,a-cure-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 0.3, 19.3, 3.0, 10.0, 6.3, 0.0, 61.0, 46.2, 53.8, 0.0,39.0,0.0 +1,1,a-cure-i1,2022-23,Andover - High Plain Elementary,00090004, 0.2, 26.4, 3.2, 14.2, 6.1, 0.2, 49.7, 49.9, 50.1, 0.0,50.3,4.2 +3.629764065335753,3.63,a-cure-i1,2022-23,Andover - Shawsheen School,00090005, 0.0, 27.6, 7.1, 16.3, 4.1, 0.0, 44.9, 37.8, 62.2, 0.0,55.1,12.5 +1,1,a-cure-i1,2022-23,Andover - South Elementary,00090020, 0.0, 18.3, 1.1, 6.2, 5.1, 0.0, 69.3, 44.8, 55.2, 0.0,30.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Andover - West Elementary,00090025, 0.2, 16.4, 3.8, 8.8, 5.8, 0.0, 65.0, 46.5, 53.5, 0.0,35.0,1.8 +2.2902584493041753,2.29,a-cure-i1,2022-23,Andover - Wood Hill Middle School,00090350, 0.3, 31.1, 3.3, 10.7, 5.0, 0.0, 49.7, 45.9, 54.1, 0.0,50.3,7.2 +4.2494969818913475,4.25,a-cure-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.5, 2.5, 14.6, 25.7, 6.1, 0.2, 50.3, 45.2, 54.8, 0.0,49.7,13.2 +4.941176470588235,4.94,a-cure-i1,2022-23,Arlington - Arlington High,00100505, 0.0, 10.2, 3.3, 7.7, 5.9, 0.1, 72.8, 50.4, 47.7, 1.9,27.200000000000003,8.4 +3.869281045751635,3.87,a-cure-i1,2022-23,Arlington - Brackett,00100010, 0.0, 9.6, 0.9, 5.4, 14.6, 0.0, 69.4, 46.4, 53.6, 0.0,30.599999999999994,7.4 +5.525525525525526,5,a-cure-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 0.0, 12.8, 1.4, 7.2, 11.8, 0.0, 66.7, 51.8, 48.2, 0.0,33.3,11.5 +1,1,a-cure-i1,2022-23,Arlington - Gibbs School,00100305, 0.0, 16.8, 2.7, 8.6, 2.7, 0.0, 69.1, 46.8, 53.0, 0.2,30.900000000000006,2.0 +1,1,a-cure-i1,2022-23,Arlington - Hardy,00100030, 0.0, 14.1, 3.3, 6.3, 11.6, 0.0, 64.7, 50.6, 49.1, 0.3,35.3,4.2 +1,1,a-cure-i1,2022-23,Arlington - John A Bishop,00100005, 0.0, 13.7, 2.7, 5.5, 12.2, 0.0, 65.8, 48.6, 51.4, 0.0,34.2,4.3 +3.6324324324324326,3.63,a-cure-i1,2022-23,Arlington - M Norcross Stratton,00100055, 0.0, 16.8, 3.2, 6.2, 10.8, 0.0, 63.0, 50.3, 49.4, 0.2,37.0,8.4 +1,1,a-cure-i1,2022-23,Arlington - Menotomy Preschool,00100038, 0.0, 14.8, 1.1, 8.0, 19.3, 1.1, 55.7, 38.6, 61.4, 0.0,44.3,0.0 +5.952218430034129,5,a-cure-i1,2022-23,Arlington - Ottoson Middle,00100410, 0.2, 10.8, 4.0, 7.0, 6.8, 0.3, 70.7, 49.0, 50.4, 0.5,29.299999999999997,10.899999999999999 +6.136986301369863,5,a-cure-i1,2022-23,Arlington - Peirce,00100045, 0.0, 15.4, 5.2, 9.3, 6.6, 0.0, 63.5, 46.2, 53.3, 0.5,36.5,14.0 +1,1,a-cure-i1,2022-23,Arlington - Thompson,00100050, 0.0, 12.7, 5.4, 8.8, 10.0, 0.0, 63.1, 53.4, 46.2, 0.4,36.9,0.0 +7.630769230769231,5,a-cure-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 1.0, 1.9, 6.1, 4.0, 0.0, 87.0, 51.1, 48.9, 0.0,13.0,6.2 +1,1,a-cure-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.5, 2.6, 4.2, 2.6, 0.0, 89.9, 49.2, 50.8, 0.0,10.099999999999994,0.0 +6.528,5,a-cure-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.2, 1.2, 1.4, 6.7, 3.0, 0.0, 87.5, 46.4, 52.0, 1.7,12.5,5.1 +1,1,a-cure-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 1.3, 1.6, 7.8, 2.4, 0.0, 86.9, 48.6, 50.5, 0.9,13.099999999999994,2.9 +1,1,a-cure-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.5, 2.3, 4.9, 3.1, 0.0, 89.2, 50.1, 49.9, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Ashland - Ashland High,00140505, 0.7, 13.6, 2.3, 17.9, 2.5, 0.0, 63.1, 49.9, 50.0, 0.1,36.9,1.7 +1,1,a-cure-i1,2022-23,Ashland - Ashland Middle,00140405, 0.4, 13.0, 2.8, 16.7, 3.2, 0.1, 63.6, 48.5, 51.5, 0.0,36.4,4.2 +1,1,a-cure-i1,2022-23,Ashland - David Mindess,00140015, 0.2, 19.4, 3.7, 17.5, 3.4, 0.2, 55.6, 46.4, 53.6, 0.0,44.4,4.6 +1,1,a-cure-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 0.3, 21.6, 3.3, 19.6, 3.7, 0.0, 51.5, 48.5, 51.3, 0.2,48.5,2.2 +1,1,a-cure-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 0.0, 36.6, 4.9, 9.8, 8.5, 0.0, 40.2, 47.6, 52.4, 0.0,59.8,0.0 +1,1,a-cure-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.2, 0.2, 2.1, 24.7, 3.2, 0.0, 69.6, 43.6, 55.4, 1.0,30.400000000000006,4.5 +1,1,a-cure-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.2, 2.4, 13.6, 4.2, 0.0, 78.5, 48.3, 51.7, 0.0,21.5,3.3 +1,1,a-cure-i1,2022-23,Athol-Royalston - Athol High,06150505, 0.2, 2.0, 3.7, 19.3, 2.5, 0.0, 72.3, 44.1, 55.9, 0.0,27.700000000000003,3.8 +1,1,a-cure-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 1.6, 0.9, 12.1, 3.7, 0.0, 81.6, 47.6, 52.4, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.6, 0.6, 7.0, 1.9, 0.0, 89.9, 42.4, 57.6, 0.0,10.099999999999994,0.0 +3.3684210526315788,3.37,a-cure-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 2.0, 6.3, 17.8, 6.0, 0.1, 67.7, 52.8, 47.0, 0.2,32.3,6.799999999999999 +2.311614730878187,2.31,a-cure-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 3.7, 7.1, 17.1, 7.1, 0.3, 64.7, 47.9, 51.9, 0.3,35.3,5.1 +10.118380062305297,5,a-cure-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 1.8, 8.9, 16.1, 5.4, 0.0, 67.9, 44.6, 53.6, 1.8,32.099999999999994,20.299999999999997 +5.8652291105121295,5,a-cure-i1,2022-23,Attleboro - Attleboro High,00160505, 0.3, 4.8, 9.1, 17.1, 5.9, 0.0, 62.9, 45.6, 54.0, 0.5,37.1,13.600000000000001 +1,1,a-cure-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 5.0, 5.0, 15.0, 5.0, 0.0, 70.0, 20.0, 80.0, 0.0,30.0,0.0 +1,1,a-cure-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 0.5, 2.7, 8.5, 20.1, 6.9, 0.0, 61.3, 50.2, 49.6, 0.2,38.7,0.0 +1,1,a-cure-i1,2022-23,Attleboro - Early Learning Center,00160008, 0.5, 5.8, 8.4, 15.8, 3.2, 0.0, 66.3, 40.0, 60.0, 0.0,33.7,0.0 +1,1,a-cure-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 7.3, 7.3, 15.6, 6.4, 0.0, 63.3, 47.9, 52.1, 0.0,36.7,0.0 +1,1,a-cure-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 0.7, 3.3, 8.9, 19.6, 9.1, 0.0, 58.4, 50.0, 50.0, 0.0,41.6,4.3 +1,1,a-cure-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 0.2, 2.9, 11.3, 18.6, 6.3, 0.0, 60.6, 46.8, 53.2, 0.0,39.4,3.5 +1,1,a-cure-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 0.3, 5.1, 8.9, 12.2, 6.5, 0.2, 66.8, 44.5, 55.3, 0.2,33.2,0.0 +1,1,a-cure-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 0.5, 3.0, 9.9, 17.7, 5.9, 0.3, 62.6, 50.5, 49.5, 0.0,37.4,0.0 +2.2097186700767266,2.21,a-cure-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 0.0, 5.9, 7.3, 16.8, 9.0, 0.0, 60.9, 50.0, 50.0, 0.0,39.1,5.4 +1,1,a-cure-i1,2022-23,Auburn - Auburn Middle,00170305, 0.3, 5.7, 3.1, 11.5, 2.5, 0.0, 77.0, 47.9, 52.1, 0.0,23.0,4.9 +1,1,a-cure-i1,2022-23,Auburn - Auburn Senior High,00170505, 0.1, 5.2, 4.3, 11.3, 3.3, 0.1, 75.6, 49.7, 49.8, 0.5,24.400000000000006,1.7 +1,1,a-cure-i1,2022-23,Auburn - Bryn Mawr,00170010, 0.7, 4.1, 3.0, 14.1, 2.2, 0.0, 75.8, 46.5, 53.5, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Auburn - Pakachoag School,00170025, 0.4, 4.1, 2.9, 10.3, 4.5, 0.0, 77.7, 48.3, 51.7, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 0.2, 3.2, 2.0, 12.3, 3.1, 0.2, 79.1, 48.6, 51.4, 0.0,20.900000000000006,0.0 +3.160493827160494,3.16,a-cure-i1,2022-23,Avon - Avon Middle High School,00180510, 0.9, 4.4, 39.9, 14.8, 4.7, 0.0, 35.2, 49.1, 50.9, 0.0,64.8,12.8 +2.0273972602739727,2.03,a-cure-i1,2022-23,Avon - Ralph D Butler,00180010, 0.0, 3.1, 33.9, 13.8, 7.7, 0.0, 41.6, 48.5, 51.5, 0.0,58.4,7.4 +1,1,a-cure-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.0, 3.3, 5.3, 14.2, 2.5, 0.3, 73.4, 47.2, 52.3, 0.5,26.599999999999994,3.6 +7.935483870967742,5,a-cure-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.5, 2.7, 3.8, 13.1, 4.1, 0.5, 75.2, 47.1, 52.9, 0.0,24.799999999999997,12.299999999999999 +1,1,a-cure-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 1.2, 3.2, 3.8, 11.7, 5.2, 0.0, 74.9, 46.4, 53.6, 0.0,25.099999999999994,4.5 +1,1,a-cure-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.6, 6.0, 7.5, 12.0, 7.0, 0.0, 66.9, 47.4, 52.6, 0.0,33.099999999999994,0.0 +2.0967238689547583,2.1,a-cure-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 1.0, 2.8, 10.0, 43.1, 7.2, 0.0, 35.9, 48.6, 51.4, 0.0,64.1,8.4 +2.1476510067114094,2.15,a-cure-i1,2022-23,Barnstable - Barnstable High,00200505, 0.5, 2.0, 9.8, 25.9, 6.3, 0.2, 55.3, 49.3, 50.3, 0.5,44.7,6.000000000000001 +1,1,a-cure-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 0.2, 3.2, 9.4, 30.3, 6.0, 0.0, 51.0, 48.1, 51.8, 0.2,49.0,4.8 +2.122105263157895,2.12,a-cure-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 0.1, 2.4, 8.6, 27.9, 8.4, 0.0, 52.5, 49.5, 50.2, 0.3,47.5,6.300000000000001 +2.8148148148148144,2.81,a-cure-i1,2022-23,Barnstable - Centerville Elementary,00200010, 0.0, 2.0, 5.3, 13.4, 11.7, 0.0, 67.6, 46.2, 53.8, 0.0,32.400000000000006,5.7 +3.1657754010695185,3.17,a-cure-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 4.5, 12.1, 28.0, 11.5, 0.0, 43.9, 40.1, 59.9, 0.0,56.1,11.1 +1.6886543535620053,1.69,a-cure-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 0.3, 0.6, 14.2, 49.7, 10.9, 0.0, 24.2, 51.8, 48.2, 0.0,75.8,8.0 +1,1,a-cure-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 0.0, 2.3, 4.2, 17.8, 9.8, 0.0, 65.9, 40.9, 59.1, 0.0,34.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 0.0, 1.2, 3.7, 12.5, 12.2, 0.0, 70.3, 46.9, 53.1, 0.0,29.700000000000003,0.0 +8.34417628541448,5,a-cure-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.5, 28.9, 64.4, 0.7, 0.7, 4.7, 44.5, 55.5, 0.0,95.3,49.7 +2.5,2.5,a-cure-i1,2022-23,Bedford - Bedford High,00230505, 0.0, 17.7, 6.3, 10.2, 4.2, 0.0, 61.6, 48.0, 51.1, 0.8,38.4,6.0 +1,1,a-cure-i1,2022-23,Bedford - John Glenn Middle,00230305, 0.0, 19.3, 7.5, 6.4, 5.4, 0.0, 61.5, 50.4, 49.6, 0.0,38.5,0.5 +2.532981530343008,2.53,a-cure-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 0.0, 21.6, 4.5, 5.6, 6.2, 0.0, 62.1, 46.5, 53.5, 0.0,37.9,6.0 +3.2653061224489797,3.27,a-cure-i1,2022-23,Bedford - Lt Job Lane School,00230012, 0.0, 23.7, 6.0, 5.8, 8.7, 0.0, 55.9, 47.4, 52.6, 0.0,44.1,9.0 +1,1,a-cure-i1,2022-23,Belchertown - Belchertown High,00240505, 0.3, 1.7, 1.9, 5.0, 3.0, 0.5, 87.6, 50.1, 48.7, 1.3,12.400000000000006,4.1 +1,1,a-cure-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 0.0, 1.2, 0.6, 7.1, 5.0, 0.0, 86.1, 50.6, 49.4, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Belchertown - Cold Spring,00240005, 1.0, 2.6, 1.5, 8.8, 6.7, 0.0, 79.4, 46.9, 53.1, 0.0,20.599999999999994,0.0 +6.282208588957056,5,a-cure-i1,2022-23,Belchertown - Jabish Middle School,00240025, 0.6, 1.2, 1.8, 8.3, 4.4, 0.0, 83.7, 45.9, 53.8, 0.3,16.299999999999997,6.4 +1,1,a-cure-i1,2022-23,Belchertown - Swift River Elementary,00240018, 0.0, 1.5, 0.4, 11.4, 4.0, 0.0, 82.7, 47.5, 52.5, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 6.0, 2.0, 15.0, 8.0, 0.0, 69.0, 50.0, 49.0, 1.0,31.0,0.0 +4.371134020618555,4.37,a-cure-i1,2022-23,Bellingham - Bellingham High School,00250505, 0.4, 3.5, 2.7, 10.3, 2.5, 0.0, 80.6, 51.4, 48.6, 0.0,19.400000000000006,5.3 +1,1,a-cure-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.0, 3.1, 10.2, 2.2, 1.0, 81.4, 47.4, 52.6, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.3, 3.3, 2.3, 13.0, 4.3, 0.0, 76.7, 50.7, 49.3, 0.0,23.299999999999997,0.0 +21.6822429906542,5,a-cure-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 0.0, 3.6, 0.0, 7.1, 0.0, 0.0, 89.3, 46.4, 53.6, 0.0,10.700000000000003,14.5 +1,1,a-cure-i1,2022-23,Bellingham - Stall Brook,00250025, 0.0, 1.2, 1.6, 18.8, 3.3, 0.0, 75.1, 48.6, 51.4, 0.0,24.900000000000006,0.0 +6.067532467532468,5,a-cure-i1,2022-23,Belmont - Belmont High,00260505, 0.1, 21.6, 4.0, 5.9, 6.7, 0.1, 61.5, 49.7, 50.0, 0.3,38.5,14.600000000000001 +4.0452830188679245,4.05,a-cure-i1,2022-23,Belmont - Daniel Butler,00260015, 0.0, 30.5, 3.0, 10.8, 8.7, 0.0, 47.0, 46.7, 52.7, 0.6,53.0,13.4 +3.9669421487603307,3.97,a-cure-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 0.0, 22.9, 3.6, 3.3, 6.5, 0.0, 63.7, 51.8, 48.2, 0.0,36.3,9.0 +1,1,a-cure-i1,2022-23,Belmont - Roger E Wellington,00260035, 0.0, 19.1, 5.9, 3.3, 9.3, 0.0, 62.3, 50.1, 49.7, 0.2,37.7,1.0 +1,1,a-cure-i1,2022-23,Belmont - Winn Brook,00260005, 0.0, 31.3, 2.3, 4.4, 9.0, 0.0, 53.0, 55.1, 44.9, 0.0,47.0,3.6 +7.708333333333334,5,a-cure-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 0.1, 21.2, 3.6, 4.0, 9.3, 0.1, 61.6, 49.2, 50.1, 0.7,38.4,18.5 +10.29393627954779,5,a-cure-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 1.8, 81.6, 8.4, 5.4, 0.0, 2.7, 52.4, 47.3, 0.3,97.3,62.599999999999994 +1,1,a-cure-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 1.2, 22.7, 3.1, 4.6, 4.4, 1.2, 62.8, 50.2, 49.8, 0.0,37.2,4.0 +1,1,a-cure-i1,2022-23,Berkley - Berkley Community School,00270010, 0.2, 0.4, 1.3, 3.8, 4.4, 0.2, 89.8, 50.5, 49.5, 0.0,10.200000000000003,3.1 +1,1,a-cure-i1,2022-23,Berkley - Berkley Middle School,00270305, 0.0, 0.5, 0.8, 2.4, 4.0, 0.0, 92.2, 51.5, 48.5, 0.0,7.799999999999997,0.0 +4.858895705521473,4.86,a-cure-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 1.3, 10.1, 15.8, 5.1, 0.3, 67.4, 44.6, 52.2, 3.2,32.599999999999994,9.899999999999999 +7.009523809523809,5,a-cure-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 2.3, 1.5, 13.3, 3.6, 0.2, 79.0, 46.6, 53.2, 0.2,21.0,9.2 +3.1351351351351355,3.14,a-cure-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 3.0, 2.7, 14.8, 9.1, 0.0, 70.4, 52.2, 47.6, 0.3,29.599999999999994,5.8 +1,1,a-cure-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 2.2, 1.8, 13.2, 5.8, 0.0, 76.9, 48.6, 50.2, 1.2,23.099999999999994,2.4 +1,1,a-cure-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 1.4, 0.9, 0.5, 8.2, 3.6, 0.0, 85.5, 49.1, 50.5, 0.5,14.5,0.0 +4.341708542713567,4.34,a-cure-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 4.7, 1.5, 9.2, 4.5, 0.0, 80.1, 44.8, 55.2, 0.0,19.900000000000006,5.4 +1,1,a-cure-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 0.2, 5.2, 1.6, 8.5, 5.2, 0.2, 79.0, 52.4, 46.8, 0.8,21.0,2.2 +1,1,a-cure-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 0.0, 1.3, 2.3, 10.9, 3.1, 0.0, 82.4, 51.0, 49.0, 0.0,17.599999999999994,4.8 +1,1,a-cure-i1,2022-23,Beverly - Beverly High,00300505, 0.0, 2.6, 3.6, 17.1, 3.1, 0.1, 73.6, 49.8, 49.8, 0.4,26.400000000000006,3.6 +1,1,a-cure-i1,2022-23,Beverly - Beverly Middle School,00300305, 0.1, 1.8, 3.9, 17.4, 4.9, 0.0, 72.0, 48.4, 51.2, 0.4,28.0,4.1 +1,1,a-cure-i1,2022-23,Beverly - Centerville Elementary,00300010, 0.0, 1.9, 4.7, 14.8, 6.6, 0.0, 71.9, 47.3, 52.7, 0.0,28.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Beverly - Cove Elementary,00300015, 0.2, 1.9, 3.3, 17.4, 5.3, 0.0, 71.8, 48.7, 51.3, 0.0,28.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Beverly - Hannah Elementary,00300033, 0.3, 3.0, 3.0, 11.5, 5.8, 0.0, 76.4, 49.7, 50.3, 0.0,23.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Beverly - McKeown School,00300002, 0.0, 5.6, 4.0, 12.0, 3.2, 0.0, 75.2, 35.2, 64.8, 0.0,24.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Beverly - North Beverly Elementary,00300040, 0.0, 1.7, 2.6, 12.8, 3.8, 0.0, 79.1, 42.0, 58.0, 0.0,20.900000000000006,4.2 +1,1,a-cure-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 0.2, 10.4, 6.6, 9.1, 3.2, 0.2, 70.3, 49.7, 50.2, 0.1,29.700000000000003,4.2 +1,1,a-cure-i1,2022-23,Billerica - Frederick J Dutile,00310007, 0.0, 13.2, 6.8, 7.5, 3.6, 0.0, 68.9, 49.6, 50.4, 0.0,31.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Billerica - Hajjar Elementary,00310026, 0.3, 7.7, 5.3, 12.0, 3.5, 0.0, 71.2, 53.3, 46.4, 0.3,28.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Billerica - John F Kennedy,00310012, 0.3, 5.3, 1.3, 4.9, 2.6, 0.0, 85.5, 53.9, 46.1, 0.0,14.5,0.0 +1,1,a-cure-i1,2022-23,Billerica - Locke Middle,00310310, 0.0, 10.6, 3.3, 8.0, 4.6, 0.0, 73.6, 48.1, 51.9, 0.0,26.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Billerica - Marshall Middle School,00310305, 0.3, 8.1, 7.1, 11.4, 3.5, 0.0, 69.5, 51.7, 48.3, 0.0,30.5,4.6 +1,1,a-cure-i1,2022-23,Billerica - Parker,00310015, 1.2, 15.5, 8.9, 6.8, 3.3, 0.0, 64.4, 53.2, 46.8, 0.0,35.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Billerica - Thomas Ditson,00310005, 0.5, 11.8, 2.5, 10.4, 4.3, 0.0, 70.4, 50.3, 49.7, 0.0,29.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.8, 2.0, 9.9, 2.5, 0.1, 83.7, 44.3, 55.0, 0.7,16.299999999999997,2.1 +1,1,a-cure-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.4, 1.6, 13.7, 5.1, 0.0, 79.3, 47.7, 52.3, 0.0,20.700000000000003,0.0 +8.292682926829265,5,a-cure-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.5, 2.3, 8.1, 4.5, 0.0, 83.6, 48.2, 51.0, 0.8,16.400000000000006,8.5 +7.7546012269938664,5,a-cure-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.3, 1.5, 9.9, 4.7, 0.0, 83.7, 44.6, 54.8, 0.6,16.299999999999997,7.9 +1,1,a-cure-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.8, 2.8, 10.1, 4.6, 0.0, 80.7, 54.1, 45.9, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.8, 2.7, 6.0, 2.7, 0.0, 87.6, 50.5, 49.5, 0.0,12.400000000000006,4.1 +2.715746421267894,2.72,a-cure-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.9, 2.5, 19.6, 18.4, 7.6, 0.0, 51.1, 48.2, 51.8, 0.0,48.9,8.3 +4.646415552855407,4.65,a-cure-i1,2022-23,Boston - Adams Elementary School,00350302, 0.0, 1.6, 4.8, 73.9, 2.0, 0.0, 17.7, 47.4, 52.6, 0.0,82.3,23.9 +12.01799100449775,5,a-cure-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 0.0, 3.7, 1.9, 52.8, 8.3, 0.0, 33.3, 44.4, 55.6, 0.0,66.7,50.099999999999994 +10.289281997918836,5,a-cure-i1,2022-23,Boston - Another Course To College,00350541, 0.0, 0.0, 42.6, 50.9, 2.6, 0.0, 3.9, 39.1, 60.4, 0.4,96.1,61.800000000000004 +11.157333333333332,5,a-cure-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 25.0, 10.5, 31.4, 8.1, 0.0, 25.0, 51.2, 48.8, 0.0,75.0,52.3 +6.306188925081434,5,a-cure-i1,2022-23,Boston - Bates Elementary School,00350278, 0.4, 2.2, 23.5, 30.3, 5.1, 0.0, 38.6, 43.0, 57.0, 0.0,61.4,24.200000000000003 +3.695906432748538,3.7,a-cure-i1,2022-23,Boston - Beethoven Elementary School,00350021, 0.0, 6.5, 21.7, 34.2, 6.1, 0.0, 31.6, 46.4, 53.6, 0.0,68.4,15.8 +6.072992700729927,5,a-cure-i1,2022-23,Boston - Blackstone Elementary School,00350390, 0.0, 2.0, 27.4, 64.6, 1.9, 0.0, 4.1, 47.5, 52.5, 0.0,95.9,36.4 +13.522051282051281,5,a-cure-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.8, 2.5, 33.9, 59.5, 0.8, 0.0, 2.5, 43.0, 57.0, 0.0,97.5,82.39999999999999 +9.614112458654905,5,a-cure-i1,2022-23,Boston - Boston Arts Academy,00350546, 0.0, 1.2, 37.0, 48.8, 3.6, 0.0, 9.3, 69.8, 29.1, 1.0,90.7,54.49999999999999 +5.43756786102063,5,a-cure-i1,2022-23,Boston - Boston Collaborative High School,00350755, 1.1, 2.8, 35.4, 50.6, 2.2, 0.0, 7.9, 50.6, 48.9, 0.6,92.1,31.3 +7.634095634095635,5,a-cure-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 0.2, 4.2, 31.9, 57.7, 2.2, 0.0, 3.8, 50.3, 49.0, 0.7,96.2,45.900000000000006 +7.584097859327217,5,a-cure-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 0.4, 6.1, 28.4, 62.3, 0.4, 0.4, 1.9, 36.7, 63.3, 0.0,98.1,46.5 +10.745945945945946,5,a-cure-i1,2022-23,Boston - Boston Latin Academy,00350545, 0.1, 17.1, 24.6, 27.7, 4.2, 0.2, 26.0, 57.1, 42.7, 0.2,74.0,49.7 +7.766233766233766,5,a-cure-i1,2022-23,Boston - Boston Latin School,00350560, 0.1, 29.1, 12.3, 15.2, 4.8, 0.2, 38.4, 52.7, 46.9, 0.4,61.6,29.9 +9.56373937677054,5,a-cure-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.3, 1.0, 26.8, 37.1, 5.4, 0.0, 29.4, 47.8, 52.2, 0.0,70.6,42.2 +2.706075533661741,2.71,a-cure-i1,2022-23,Boston - Bradley Elementary School,00350215, 0.0, 5.9, 6.6, 45.3, 2.4, 0.7, 39.1, 51.6, 48.4, 0.0,60.9,10.3 +6.095238095238095,5,a-cure-i1,2022-23,Boston - Brighton High School,00350505, 0.8, 3.9, 29.7, 57.7, 2.4, 0.0, 5.5, 44.7, 55.3, 0.0,94.5,36.0 +6.9680082559339525,5,a-cure-i1,2022-23,Boston - Burke High School,00350525, 0.7, 1.9, 54.0, 36.0, 4.3, 0.0, 3.1, 44.8, 55.2, 0.0,96.9,42.2 +1,1,a-cure-i1,2022-23,Boston - Carter School,00350036, 0.0, 7.7, 50.0, 26.9, 0.0, 3.8, 11.5, 38.5, 61.5, 0.0,88.5,0.0 +7.498956158663883,5,a-cure-i1,2022-23,Boston - Channing Elementary School,00350360, 0.0, 2.6, 45.5, 45.0, 2.6, 0.0, 4.2, 42.9, 57.1, 0.0,95.8,44.9 +6.345991561181435,5,a-cure-i1,2022-23,Boston - Charlestown High School,00350515, 0.1, 6.7, 23.4, 62.8, 1.8, 0.1, 5.2, 44.2, 55.7, 0.1,94.8,37.6 +6.39337474120083,5,a-cure-i1,2022-23,Boston - Chittick Elementary School,00350154, 0.0, 0.9, 61.6, 30.6, 3.0, 0.4, 3.4, 44.4, 55.6, 0.0,96.6,38.60000000000001 +1.5905325443786984,1.59,a-cure-i1,2022-23,Boston - Clap Elementary School,00350298, 0.0, 7.3, 27.3, 44.5, 5.5, 0.0, 15.5, 45.5, 54.5, 0.0,84.5,8.4 +13.621181262729126,5,a-cure-i1,2022-23,Boston - Community Academy,00350518, 0.0, 0.0, 67.3, 30.9, 0.0, 0.0, 1.8, 34.5, 63.6, 1.8,98.2,83.60000000000001 +9.55442522889115,5,a-cure-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 0.0, 5.5, 55.6, 32.9, 4.0, 0.3, 1.7, 47.6, 52.4, 0.0,98.3,58.7 +6.976744186046512,5,a-cure-i1,2022-23,Boston - Condon K-8 School,00350146, 0.5, 6.3, 30.9, 44.1, 3.9, 0.3, 14.0, 45.8, 54.2, 0.0,86.0,37.5 +6.434782608695651,5,a-cure-i1,2022-23,Boston - Conley Elementary School,00350122, 0.6, 0.6, 27.6, 49.7, 3.1, 1.2, 17.2, 43.6, 56.4, 0.0,82.8,33.3 +5.466275659824046,5,a-cure-i1,2022-23,Boston - Curley K-8 School,00350020, 0.1, 4.2, 17.3, 39.3, 7.2, 0.1, 31.8, 43.6, 56.4, 0.0,68.2,23.299999999999997 +8.755329949238579,5,a-cure-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 1.3, 57.3, 35.5, 3.7, 0.7, 1.5, 47.9, 51.9, 0.2,98.5,53.9 +5.769316909294513,5,a-cure-i1,2022-23,Boston - Dever Elementary School,00350268, 0.5, 2.9, 21.7, 62.8, 1.1, 0.3, 10.7, 42.5, 57.5, 0.0,89.3,32.2 +11.590723055934514,5,a-cure-i1,2022-23,Boston - East Boston Early Education Center,00350009, 0.0, 0.5, 5.3, 63.6, 3.7, 0.0, 26.7, 47.1, 52.9, 0.0,73.3,53.099999999999994 +5.813273340832395,5,a-cure-i1,2022-23,Boston - East Boston High School,00350530, 0.0, 1.1, 5.3, 81.5, 0.9, 0.1, 11.1, 43.7, 56.1, 0.2,88.9,32.3 +8.29090909090909,5,a-cure-i1,2022-23,Boston - Edison K-8 School,00350375, 0.8, 10.4, 14.4, 58.1, 4.2, 0.2, 12.0, 46.4, 53.6, 0.0,88.0,45.599999999999994 +18.89315068493151,5,a-cure-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 0.0, 10.8, 5.4, 14.1, 5.9, 0.2, 63.5, 48.2, 51.8, 0.0,36.5,43.1 +13.675789473684208,5,a-cure-i1,2022-23,Boston - Ellis Elementary School,00350072, 0.0, 0.3, 31.8, 61.3, 1.6, 0.0, 5.0, 52.2, 47.8, 0.0,95.0,81.19999999999999 +8.350730688935283,5,a-cure-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 0.0, 3.7, 49.7, 39.8, 2.6, 0.0, 4.2, 51.8, 48.2, 0.0,95.8,50.0 +7.256008359456635,5,a-cure-i1,2022-23,Boston - English High School,00350535, 0.0, 0.8, 34.4, 57.8, 2.6, 0.2, 4.3, 45.5, 54.5, 0.0,95.7,43.4 +5.449023861171367,5,a-cure-i1,2022-23,Boston - Everett Elementary School,00350088, 1.5, 15.2, 38.3, 34.6, 2.2, 0.4, 7.8, 49.4, 50.6, 0.0,92.2,31.4 +10.981420765027321,5,a-cure-i1,2022-23,Boston - Excel High School,00350522, 0.0, 13.8, 32.3, 41.9, 3.2, 0.2, 8.5, 41.0, 58.8, 0.2,91.5,62.8 +9.64406779661017,5,a-cure-i1,2022-23,Boston - Fenway High School,00350540, 0.0, 2.4, 28.9, 61.5, 1.6, 0.0, 5.6, 51.7, 48.0, 0.3,94.4,56.9 +10.157948717948718,5,a-cure-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 0.6, 8.7, 33.7, 52.3, 1.9, 0.3, 2.5, 47.1, 52.9, 0.0,97.5,61.900000000000006 +12.394110985277464,5,a-cure-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 0.0, 4.7, 12.4, 67.6, 3.6, 0.0, 11.7, 48.2, 51.3, 0.5,88.3,68.4 +8.816,5,a-cure-i1,2022-23,Boston - Greater Egleston High School,00350543, 2.2, 1.1, 43.3, 48.9, 4.4, 0.0, 0.0, 50.0, 50.0, 0.0,100.0,55.1 +10.958459979736576,5,a-cure-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.3, 12.6, 85.0, 0.8, 0.0, 1.3, 50.8, 49.2, 0.0,98.7,67.60000000000001 +5.650224215246636,5,a-cure-i1,2022-23,Boston - Grew Elementary School,00350135, 0.9, 0.0, 36.3, 42.5, 9.4, 0.0, 10.8, 40.1, 59.9, 0.0,89.2,31.5 +4.844390832328106,4.84,a-cure-i1,2022-23,Boston - Guild Elementary School,00350062, 0.0, 0.4, 2.4, 78.9, 1.2, 0.0, 17.1, 47.4, 52.6, 0.0,82.9,25.1 +12.600667408231367,5,a-cure-i1,2022-23,Boston - Hale Elementary School,00350243, 0.0, 5.3, 47.9, 30.2, 6.5, 0.0, 10.1, 50.3, 49.7, 0.0,89.9,70.8 +6.7823899371069185,5,a-cure-i1,2022-23,Boston - Haley Pilot School,00350077, 0.0, 1.3, 38.5, 35.3, 4.3, 0.0, 20.5, 49.1, 50.9, 0.0,79.5,33.7 +7.445300462249614,5,a-cure-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 0.0, 15.8, 15.8, 29.2, 4.1, 0.0, 35.1, 46.2, 53.8, 0.0,64.9,30.2 +11.715481171548118,5,a-cure-i1,2022-23,Boston - Haynes Early Education Center,00350010, 0.5, 0.0, 46.8, 43.8, 4.4, 0.0, 4.4, 51.7, 48.3, 0.0,95.6,70.0 +8.097087378640778,5,a-cure-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 11.8, 34.8, 25.7, 8.6, 1.6, 17.6, 48.1, 51.9, 0.0,82.4,41.7 +7.269364161849712,5,a-cure-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.8, 7.2, 44.1, 30.6, 3.5, 0.3, 13.5, 45.6, 54.2, 0.2,86.5,39.300000000000004 +6.572333685322069,5,a-cure-i1,2022-23,Boston - Hennigan K-8 School,00350153, 0.0, 3.7, 24.6, 64.6, 1.4, 0.4, 5.3, 51.1, 48.9, 0.0,94.7,38.9 +12.526434195725535,5,a-cure-i1,2022-23,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 3.5, 81.6, 3.8, 0.0, 11.1, 52.5, 47.5, 0.0,88.9,69.60000000000001 +8.418461538461537,5,a-cure-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.8, 31.7, 62.5, 2.5, 0.0, 2.5, 46.7, 53.3, 0.0,97.5,51.3 +6.632548618219038,5,a-cure-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 1.1, 33.9, 58.2, 4.5, 0.0, 2.3, 39.5, 60.5, 0.0,97.7,40.5 +6.880490296220633,5,a-cure-i1,2022-23,Boston - Holmes Elementary School,00350138, 0.0, 1.1, 55.4, 37.1, 4.3, 0.0, 2.1, 41.8, 58.2, 0.0,97.9,42.1 +1,1,a-cure-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 5.7, 30.0, 48.6, 1.4, 0.0, 14.3, 31.4, 68.6, 0.0,85.7,4.0 +14.062421972534334,5,a-cure-i1,2022-23,Boston - Hurley K-8 School,00350182, 0.3, 1.7, 4.0, 71.0, 3.1, 0.0, 19.9, 55.1, 44.6, 0.3,80.1,70.4 +5.513905683192261,5,a-cure-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 0.3, 1.6, 20.5, 54.9, 5.3, 0.0, 17.3, 48.8, 51.2, 0.0,82.7,28.5 +5.094781682641107,5,a-cure-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 1.1, 2.3, 90.5, 0.0, 0.0, 6.1, 45.5, 54.5, 0.0,93.9,29.9 +11.594202898550725,5,a-cure-i1,2022-23,Boston - Kenny Elementary School,00350328, 0.0, 11.4, 30.7, 27.8, 6.0, 0.0, 24.1, 46.5, 53.5, 0.0,75.9,55.0 +8.545454545454545,5,a-cure-i1,2022-23,Boston - Kilmer K-8 School,00350190, 0.3, 8.1, 18.2, 21.2, 5.1, 0.0, 47.2, 44.2, 55.6, 0.3,52.8,28.2 +11.37888198757764,5,a-cure-i1,2022-23,Boston - King Elementary School,00350376, 1.1, 0.9, 52.3, 39.1, 3.2, 0.0, 3.4, 44.8, 55.2, 0.0,96.6,68.7 +7.742471443406022,5,a-cure-i1,2022-23,Boston - Lee Academy,00350001, 0.0, 2.7, 52.4, 33.7, 7.5, 0.0, 3.7, 43.3, 56.7, 0.0,96.3,46.599999999999994 +3.410658307210031,3.41,a-cure-i1,2022-23,Boston - Lee K-8 School,00350183, 0.4, 4.8, 53.8, 33.3, 3.3, 0.2, 4.3, 42.1, 57.9, 0.0,95.7,20.4 +11.595294117647057,5,a-cure-i1,2022-23,Boston - Lyndon K-8 School,00350262, 0.0, 4.8, 10.6, 21.0, 6.0, 0.2, 57.5, 48.6, 51.4, 0.0,42.5,30.799999999999997 +2.88862837045721,2.89,a-cure-i1,2022-23,Boston - Lyon High School,00350655, 0.0, 5.2, 21.6, 50.9, 7.8, 0.0, 14.7, 37.1, 62.1, 0.9,85.3,15.4 +3.8663239074550133,3.87,a-cure-i1,2022-23,Boston - Lyon K-8 School,00350004, 0.0, 8.7, 24.6, 35.7, 8.7, 0.0, 22.2, 45.2, 54.8, 0.0,77.8,18.8 +7.712230215827337,5,a-cure-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 0.2, 1.5, 38.5, 53.9, 2.8, 0.5, 2.7, 40.8, 59.1, 0.1,97.3,46.89999999999999 +1,1,a-cure-i1,2022-23,Boston - Manning Elementary School,00350184, 0.0, 4.4, 11.9, 21.3, 10.6, 0.0, 51.9, 53.1, 46.9, 0.0,48.1,2.8 +8.933601609657947,5,a-cure-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 5.4, 93.0, 0.6, 0.3, 0.6, 52.5, 47.5, 0.0,99.4,55.5 +7.733333333333332,5,a-cure-i1,2022-23,Boston - Mario Umana Academy,00350656, 0.2, 0.9, 1.7, 92.3, 1.0, 0.0, 4.0, 47.7, 52.3, 0.0,96.0,46.39999999999999 +6.655462184873948,5,a-cure-i1,2022-23,Boston - Mason Elementary School,00350304, 0.0, 2.1, 54.8, 34.6, 3.7, 0.0, 4.8, 45.7, 53.7, 0.5,95.2,39.599999999999994 +9.663531870428422,5,a-cure-i1,2022-23,Boston - Mather Elementary School,00350227, 0.8, 27.6, 43.1, 20.0, 3.9, 0.2, 4.3, 49.9, 50.1, 0.0,95.7,57.8 +6.634953464322647,5,a-cure-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 0.4, 0.8, 64.4, 28.0, 3.1, 0.0, 3.3, 37.7, 62.3, 0.0,96.7,40.1 +7.920441988950276,5,a-cure-i1,2022-23,Boston - McKay K-8 School,00350080, 0.0, 1.0, 2.8, 85.8, 0.9, 0.0, 9.5, 49.5, 50.5, 0.0,90.5,44.8 +5.725576289791438,5,a-cure-i1,2022-23,Boston - McKinley Schools,00350363, 0.6, 1.9, 46.2, 38.0, 4.4, 0.0, 8.9, 22.8, 76.6, 0.6,91.1,32.6 +13.879234167893962,5,a-cure-i1,2022-23,Boston - Mendell Elementary School,00350100, 0.3, 3.5, 28.5, 29.5, 6.1, 0.0, 32.1, 47.4, 52.6, 0.0,67.9,58.900000000000006 +8.337796086508755,5,a-cure-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 0.8, 1.1, 59.1, 31.9, 4.2, 0.0, 2.9, 47.1, 52.9, 0.0,97.1,50.6 +15.911926605504588,5,a-cure-i1,2022-23,Boston - Mozart Elementary School,00350237, 0.6, 0.0, 23.9, 21.6, 8.5, 0.0, 45.5, 39.2, 60.8, 0.0,54.5,54.2 +7.115044247787611,5,a-cure-i1,2022-23,Boston - Murphy K-8 School,00350240, 0.5, 51.2, 17.3, 17.1, 4.1, 0.2, 9.6, 47.4, 52.5, 0.1,90.4,40.2 +8.10212765957447,5,a-cure-i1,2022-23,Boston - New Mission High School,00350542, 0.0, 2.8, 47.9, 41.2, 2.0, 0.2, 6.0, 49.0, 50.7, 0.3,94.0,47.6 +10.242905788876277,5,a-cure-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 0.1, 19.1, 31.3, 35.1, 2.3, 0.2, 11.9, 52.3, 47.6, 0.1,88.1,56.39999999999999 +4.5448785638859555,4.54,a-cure-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 0.4, 1.1, 2.8, 89.3, 1.1, 0.0, 5.3, 52.7, 47.3, 0.0,94.7,26.900000000000002 +6.5200000000000005,5,a-cure-i1,2022-23,Boston - Ohrenberger School,00350258, 0.2, 4.7, 33.0, 39.0, 3.1, 0.0, 20.0, 45.5, 54.5, 0.0,80.0,32.6 +4.198347107438017,4.2,a-cure-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 0.6, 1.1, 52.1, 41.3, 1.4, 0.4, 3.2, 47.7, 52.3, 0.0,96.8,25.400000000000002 +2.258142340168878,2.26,a-cure-i1,2022-23,Boston - Otis Elementary School,00350156, 0.2, 2.4, 4.1, 73.9, 2.2, 0.0, 17.1, 49.5, 50.5, 0.0,82.9,11.7 +6.672727272727273,5,a-cure-i1,2022-23,Boston - Perkins Elementary School,00350231, 1.3, 8.9, 38.6, 34.8, 4.4, 0.0, 12.0, 50.6, 49.4, 0.0,88.0,36.7 +7.478260869565218,5,a-cure-i1,2022-23,Boston - Perry Elementary School,00350255, 0.5, 4.4, 15.4, 14.3, 2.2, 0.0, 63.2, 47.8, 52.2, 0.0,36.8,17.2 +9.172093023255814,5,a-cure-i1,2022-23,Boston - Philbrick Elementary School,00350172, 0.9, 3.5, 41.2, 33.3, 7.0, 0.0, 14.0, 53.5, 46.5, 0.0,86.0,49.3 +11.053864168618267,5,a-cure-i1,2022-23,Boston - Quincy Elementary School,00350286, 0.0, 56.8, 11.9, 10.0, 6.6, 0.0, 14.6, 51.8, 48.2, 0.0,85.4,59.0 +11.462433862433864,5,a-cure-i1,2022-23,Boston - Quincy Upper School,00350565, 0.2, 51.5, 18.7, 22.1, 2.1, 0.0, 5.5, 47.5, 52.3, 0.2,94.5,67.7 +1.4145758661887695,1.41,a-cure-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 0.3, 4.2, 36.3, 36.9, 5.9, 0.0, 16.3, 49.0, 51.0, 0.0,83.7,7.4 +4.743286788399571,4.74,a-cure-i1,2022-23,Boston - Russell Elementary School,00350366, 0.3, 6.6, 29.2, 54.8, 1.7, 0.6, 6.9, 49.9, 50.1, 0.0,93.1,27.6 +6.97560975609756,5,a-cure-i1,2022-23,Boston - Shaw Elementary School,00350014, 1.1, 0.5, 59.4, 33.2, 4.3, 0.0, 1.6, 49.2, 50.8, 0.0,98.4,42.9 +6.308668076109936,5,a-cure-i1,2022-23,Boston - Snowden International High School,00350690, 0.2, 3.9, 30.5, 57.5, 2.6, 0.0, 5.4, 49.2, 50.8, 0.0,94.6,37.3 +9.27626459143969,5,a-cure-i1,2022-23,Boston - Sumner Elementary School,00350052, 0.4, 1.7, 15.1, 55.8, 4.3, 0.0, 22.9, 48.1, 51.9, 0.0,77.1,44.7 +10.042726347914549,5,a-cure-i1,2022-23,Boston - Taylor Elementary School,00350054, 0.8, 1.4, 75.1, 19.6, 1.4, 0.0, 1.7, 45.5, 54.5, 0.0,98.3,61.7 +7.425051334702258,5,a-cure-i1,2022-23,Boston - TechBoston Academy,00350657, 0.1, 2.2, 57.6, 32.6, 4.8, 0.0, 2.6, 43.5, 56.5, 0.0,97.4,45.199999999999996 +8.85,5,a-cure-i1,2022-23,Boston - Tobin K-8 School,00350229, 0.2, 4.9, 26.3, 62.7, 1.9, 0.0, 4.0, 48.6, 51.4, 0.0,96.0,53.1 +12.68619246861925,5,a-cure-i1,2022-23,Boston - Trotter Elementary School,00350370, 0.3, 2.4, 54.5, 34.0, 2.4, 2.0, 4.4, 48.1, 51.9, 0.0,95.6,75.80000000000001 +6.520681265206813,5,a-cure-i1,2022-23,Boston - Tynan Elementary School,00350181, 0.0, 6.6, 32.0, 35.5, 7.6, 0.5, 17.8, 39.6, 60.4, 0.0,82.2,33.5 +5.185185185185185,5,a-cure-i1,2022-23,Boston - UP Academy Holland,00350167, 1.3, 1.9, 47.8, 43.2, 2.8, 0.2, 2.8, 50.0, 50.0, 0.0,97.2,31.5 +9.034825870646765,5,a-cure-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 0.0, 3.8, 11.3, 19.1, 5.9, 0.0, 59.8, 46.3, 53.7, 0.0,40.2,22.7 +6.582959641255606,5,a-cure-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 0.0, 9.0, 25.2, 54.1, 0.9, 0.0, 10.8, 48.6, 51.4, 0.0,89.2,36.7 +10.328275862068965,5,a-cure-i1,2022-23,Boston - Winship Elementary School,00350374, 0.3, 13.6, 12.7, 38.2, 7.7, 0.0, 27.5, 53.3, 46.7, 0.0,72.5,46.8 +4.472049689440994,4.47,a-cure-i1,2022-23,Boston - Winthrop Elementary School,00350180, 0.4, 2.1, 57.4, 34.6, 1.7, 0.4, 3.4, 53.2, 46.8, 0.0,96.6,27.0 +8.437246963562753,5,a-cure-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 0.6, 0.4, 42.7, 51.6, 3.1, 0.4, 1.2, 43.5, 56.5, 0.0,98.8,52.099999999999994 +14.73015873015873,5,a-cure-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 3.4, 29.1, 19.6, 4.4, 0.1, 43.3, 47.4, 52.3, 0.3,56.7,52.2 +11.252032520325205,5,a-cure-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.6, 1.9, 49.2, 46.7, 0.0, 0.0, 1.6, 52.6, 46.4, 0.9,98.4,69.20000000000002 +8.380952380952381,5,a-cure-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.6, 2.9, 43.3, 42.9, 2.7, 0.0, 7.6, 50.0, 50.0, 0.0,92.4,48.400000000000006 +6.817813765182188,5,a-cure-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.3, 0.3, 63.7, 29.9, 3.7, 0.9, 1.2, 49.9, 50.1, 0.0,98.8,42.10000000000001 +2.934143870314083,2.93,a-cure-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.1, 0.0, 57.6, 37.4, 3.6, 0.0, 1.3, 52.9, 47.1, 0.0,98.7,18.1 +1,1,a-cure-i1,2022-23,Bourne - Bourne High School,00360505, 1.1, 4.3, 1.4, 4.6, 4.8, 0.0, 83.8, 53.6, 46.4, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 0.5, 2.4, 1.1, 6.8, 6.5, 0.3, 82.4, 52.2, 47.8, 0.0,17.599999999999994,0.0 +5.43030303030303,5,a-cure-i1,2022-23,Bourne - Bourne Middle School,00360325, 0.7, 1.2, 1.9, 6.5, 6.3, 0.0, 83.5, 50.6, 49.4, 0.0,16.5,5.6 +1,1,a-cure-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 0.0, 2.5, 0.7, 7.2, 10.0, 0.0, 79.6, 47.3, 52.7, 0.0,20.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Boxford - Harry Lee Cole,00380005, 0.0, 2.3, 1.1, 4.3, 3.4, 0.0, 88.8, 47.7, 52.3, 0.0,11.200000000000003,0.0 +12.036697247706416,5,a-cure-i1,2022-23,Boxford - Spofford Pond,00380013, 0.0, 2.3, 0.0, 3.1, 5.5, 0.0, 89.1, 47.9, 52.1, 0.0,10.900000000000006,8.2 +1,1,a-cure-i1,2022-23,Braintree - Archie T Morrison,00400033, 0.3, 27.9, 7.9, 7.2, 5.2, 0.0, 51.5, 54.1, 45.9, 0.0,48.5,0.0 +1,1,a-cure-i1,2022-23,Braintree - Braintree High,00400505, 0.1, 23.8, 6.2, 6.6, 1.6, 0.2, 61.4, 49.6, 50.1, 0.3,38.6,4.1 +1,1,a-cure-i1,2022-23,Braintree - Donald Ross,00400050, 0.5, 27.2, 12.1, 11.7, 2.4, 0.0, 46.1, 55.8, 44.2, 0.0,53.9,0.0 +1,1,a-cure-i1,2022-23,Braintree - East Middle School,00400305, 0.1, 25.0, 5.9, 7.3, 2.8, 0.0, 58.9, 47.1, 52.8, 0.1,41.1,1.5 +1,1,a-cure-i1,2022-23,Braintree - Highlands,00400015, 0.0, 23.7, 1.7, 4.9, 1.0, 0.0, 68.7, 48.2, 51.8, 0.0,31.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Braintree - Hollis,00400005, 0.3, 27.9, 4.2, 6.0, 3.6, 0.0, 58.0, 46.5, 53.2, 0.3,42.0,0.0 +1,1,a-cure-i1,2022-23,Braintree - Liberty,00400025, 0.0, 33.4, 3.0, 5.7, 2.7, 0.8, 54.4, 43.4, 56.6, 0.0,45.6,0.0 +1,1,a-cure-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 0.0, 29.0, 3.4, 5.5, 6.6, 0.0, 55.5, 45.2, 54.8, 0.0,44.5,0.0 +1,1,a-cure-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 30.0, 4.0, 13.0, 2.5, 0.5, 50.0, 46.0, 54.0, 0.0,50.0,0.0 +1,1,a-cure-i1,2022-23,Braintree - South Middle School,00400310, 0.2, 24.7, 2.9, 5.1, 2.3, 0.2, 64.6, 51.4, 48.4, 0.2,35.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Brewster - Eddy Elementary,00410010, 0.0, 0.5, 1.0, 11.4, 6.5, 0.0, 80.6, 48.8, 51.2, 0.0,19.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 0.0, 2.2, 3.9, 10.4, 7.4, 0.0, 76.1, 54.8, 45.2, 0.0,23.900000000000006,0.0 +6.4590163934426235,5,a-cure-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 1.2, 65.6, 26.9, 3.6, 0.3, 2.4, 53.6, 46.4, 0.0,97.6,39.4 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.1, 2.2, 11.7, 4.3, 5.3, 0.0, 76.4, 48.4, 51.6, 0.0,23.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.1, 2.4, 11.4, 3.8, 5.2, 0.1, 76.9, 48.7, 51.2, 0.1,23.099999999999994,3.6 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 3.6, 9.4, 5.4, 5.0, 0.0, 76.6, 46.9, 53.1, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 4.3, 6.8, 8.5, 6.5, 0.0, 73.9, 47.4, 52.6, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.1, 2.2, 9.8, 8.9, 6.4, 0.0, 72.6, 48.3, 51.7, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 0.1, 2.2, 10.3, 3.0, 4.3, 0.0, 80.0, 49.9, 50.1, 0.0,20.0,0.0 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 7.1, 7.1, 7.1, 0.0, 78.6, 35.7, 64.3, 0.0,21.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 2.6, 9.4, 8.0, 4.4, 0.1, 75.5, 46.6, 53.4, 0.0,24.5,0.0 +1,1,a-cure-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 0.7, 1.0, 1.4, 4.2, 0.7, 0.0, 92.0, 50.9, 49.1, 0.0,8.0,0.0 +1,1,a-cure-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.2, 0.2, 2.7, 12.4, 0.5, 0.0, 84.0, 68.7, 31.1, 0.2,16.0,2.4 +1,1,a-cure-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.1, 0.8, 4.6, 7.0, 3.7, 0.0, 83.8, 43.1, 56.8, 0.1,16.200000000000003,4.7 +1.3242876526458616,1.32,a-cure-i1,2022-23,Brockton - Ashfield Middle School,00440421, 0.0, 2.0, 53.1, 15.2, 3.1, 0.2, 26.3, 46.9, 52.9, 0.2,73.7,6.1 +1,1,a-cure-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 0.4, 2.2, 59.4, 21.4, 3.9, 0.0, 12.7, 44.5, 55.5, 0.0,87.3,0.0 +4.860759493670886,4.86,a-cure-i1,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 56.5, 15.9, 6.5, 0.0, 21.0, 42.8, 57.2, 0.0,79.0,24.0 +4.687427912341406,4.69,a-cure-i1,2022-23,Brockton - Brockton High,00440505, 0.1, 2.7, 61.3, 18.3, 4.1, 0.2, 13.3, 44.7, 55.2, 0.2,86.7,25.4 +1,1,a-cure-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.6, 3.5, 51.4, 17.3, 10.4, 0.0, 16.8, 49.1, 50.3, 0.6,83.2,0.0 +1.4600760456273763,1.46,a-cure-i1,2022-23,Brockton - Brookfield,00440010, 0.2, 1.4, 51.5, 20.0, 5.8, 0.0, 21.1, 48.3, 51.7, 0.0,78.9,7.2 +0.9834515366430261,1,a-cure-i1,2022-23,Brockton - Downey,00440110, 0.5, 1.4, 59.1, 17.4, 6.1, 0.2, 15.4, 42.6, 57.4, 0.0,84.6,5.2 +1,1,a-cure-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 0.5, 0.3, 58.1, 26.7, 6.7, 0.4, 7.2, 48.3, 51.7, 0.0,92.8,4.8 +1.5477629987908101,1.55,a-cure-i1,2022-23,Brockton - East Middle School,00440405, 0.2, 0.9, 61.3, 15.7, 4.4, 0.2, 17.3, 43.8, 56.2, 0.0,82.7,8.0 +1.6692563817980024,1.67,a-cure-i1,2022-23,Brockton - Edgar B Davis,00440023, 0.5, 0.9, 65.4, 17.3, 5.7, 0.3, 9.9, 51.6, 48.4, 0.0,90.1,9.4 +10.944734098018769,5,a-cure-i1,2022-23,Brockton - Edison Academy,00440520, 0.0, 1.2, 61.8, 29.9, 2.5, 0.4, 4.1, 40.2, 59.8, 0.0,95.9,65.6 +3.5,3.5,a-cure-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 0.0, 0.2, 73.7, 18.4, 3.5, 0.2, 4.0, 48.9, 51.1, 0.0,96.0,21.0 +3.9460122699386497,3.95,a-cure-i1,2022-23,Brockton - Hancock,00440045, 0.2, 2.4, 52.4, 21.4, 4.7, 0.3, 18.5, 53.2, 46.8, 0.0,81.5,20.099999999999998 +1.1231788079470197,1.12,a-cure-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 53.1, 16.3, 6.1, 0.0, 24.5, 28.6, 67.3, 4.1,75.5,5.3 +2.318840579710145,2.32,a-cure-i1,2022-23,Brockton - John F Kennedy,00440017, 0.4, 1.4, 58.5, 19.7, 2.9, 0.0, 17.2, 51.7, 48.3, 0.0,82.8,12.0 +2.880778588807786,2.88,a-cure-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 0.6, 3.5, 53.2, 21.9, 2.9, 0.0, 17.8, 44.4, 55.6, 0.0,82.2,14.8 +1.159165751920966,1.16,a-cure-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 0.1, 0.3, 52.8, 33.9, 3.8, 0.3, 8.9, 51.3, 48.7, 0.0,91.1,6.6 +1.8576779026217232,1.86,a-cure-i1,2022-23,Brockton - Mary E. Baker School,00440002, 0.3, 1.6, 49.3, 21.0, 7.4, 0.4, 19.9, 50.4, 49.6, 0.0,80.1,9.3 +2.856516976998905,2.86,a-cure-i1,2022-23,Brockton - North Middle School,00440410, 0.4, 0.9, 72.8, 12.5, 4.5, 0.2, 8.7, 48.4, 51.6, 0.0,91.3,16.3 +1.4017094017094016,1.4,a-cure-i1,2022-23,Brockton - Oscar F Raymond,00440078, 0.3, 1.3, 78.0, 11.3, 2.4, 0.4, 6.4, 46.5, 53.5, 0.0,93.6,8.2 +4.7186440677966095,4.72,a-cure-i1,2022-23,Brockton - Plouffe Middle School,00440422, 0.3, 2.8, 40.0, 41.1, 4.1, 0.2, 11.5, 49.2, 50.8, 0.0,88.5,26.099999999999998 +8.196078431372548,5,a-cure-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 0.0, 2.6, 44.7, 34.2, 0.0, 0.0, 18.4, 44.7, 55.3, 0.0,81.6,41.8 +5.47514450867052,5,a-cure-i1,2022-23,Brockton - South Middle School,00440415, 0.0, 1.5, 66.0, 13.1, 5.8, 0.0, 13.5, 46.5, 53.5, 0.0,86.5,29.599999999999998 +2.4736196319018404,2.47,a-cure-i1,2022-23,Brockton - West Middle School,00440420, 0.0, 1.8, 56.2, 15.6, 7.9, 0.0, 18.5, 47.9, 52.1, 0.0,81.5,12.6 +8.39289446185998,5,a-cure-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 0.2, 1.5, 51.4, 39.8, 2.7, 0.1, 4.3, 51.4, 48.3, 0.3,95.7,50.2 +1,1,a-cure-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 0.0, 0.3, 2.4, 5.2, 4.1, 0.0, 88.0, 48.5, 51.5, 0.0,12.0,0.0 +1,1,a-cure-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 30.0, 2.0, 8.0, 18.0, 0.0, 42.0, 34.0, 66.0, 0.0,58.0,0.0 +1,1,a-cure-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 10.9, 1.6, 20.3, 18.8, 0.0, 48.4, 40.6, 59.4, 0.0,51.6,0.0 +1,1,a-cure-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 19.2, 7.7, 7.7, 7.7, 0.0, 57.7, 38.5, 61.5, 0.0,42.3,0.0 +4.967880085653105,4.97,a-cure-i1,2022-23,Brookline - Brookline High,00460505, 0.0, 16.0, 7.4, 12.9, 10.3, 0.0, 53.3, 49.7, 49.3, 1.0,46.7,14.500000000000002 +3.724867724867725,3.72,a-cure-i1,2022-23,Brookline - Edith C Baker,00460005, 0.1, 28.0, 6.7, 9.5, 12.4, 0.0, 43.3, 47.3, 52.7, 0.0,56.7,13.200000000000001 +2.871794871794872,2.87,a-cure-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 16.8, 5.2, 10.0, 10.9, 0.0, 57.1, 51.1, 48.8, 0.1,42.9,7.7 +1.951219512195122,1.95,a-cure-i1,2022-23,Brookline - Heath,00460025, 0.0, 15.9, 4.6, 11.3, 13.3, 0.0, 54.9, 48.1, 51.6, 0.2,45.1,5.5 +2.488120950323974,2.49,a-cure-i1,2022-23,Brookline - John D Runkle,00460045, 0.0, 14.4, 4.3, 13.2, 14.4, 0.0, 53.7, 45.1, 54.7, 0.2,46.3,7.199999999999999 +3.6400679117147705,3.64,a-cure-i1,2022-23,Brookline - Lawrence,00460030, 0.0, 33.8, 5.0, 9.3, 10.6, 0.2, 41.1, 51.9, 48.1, 0.0,58.9,13.399999999999999 +4.032258064516129,4.03,a-cure-i1,2022-23,Brookline - Michael Driscoll,00460020, 0.0, 19.3, 5.9, 10.5, 13.8, 0.0, 50.4, 45.6, 54.4, 0.0,49.6,12.5 +5.353383458646617,5,a-cure-i1,2022-23,Brookline - Pierce,00460040, 0.0, 25.1, 5.7, 10.4, 12.1, 0.0, 46.8, 51.3, 48.1, 0.6,53.2,17.8 +5.325,5,a-cure-i1,2022-23,Brookline - The Lynch Center,00460060, 0.0, 24.0, 12.0, 16.0, 12.0, 0.0, 36.0, 40.0, 60.0, 0.0,64.0,21.3 +3.28476821192053,3.28,a-cure-i1,2022-23,Brookline - William H Lincoln,00460035, 0.2, 27.2, 12.2, 11.3, 9.5, 0.0, 39.6, 50.1, 49.9, 0.0,60.4,12.4 +3.99002493765586,3.99,a-cure-i1,2022-23,Burlington - Burlington High,00480505, 0.4, 18.4, 8.6, 10.0, 2.7, 0.0, 59.9, 47.8, 51.9, 0.3,40.1,10.0 +1,1,a-cure-i1,2022-23,Burlington - Fox Hill,00480007, 0.5, 16.4, 5.6, 7.2, 5.8, 0.0, 64.5, 52.3, 47.7, 0.0,35.5,0.0 +1,1,a-cure-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 0.0, 12.8, 12.4, 5.9, 5.5, 0.0, 63.5, 48.7, 51.3, 0.0,36.5,0.0 +1,1,a-cure-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 0.2, 17.4, 6.4, 9.8, 4.8, 0.0, 61.4, 50.6, 49.1, 0.4,38.6,3.5 +1,1,a-cure-i1,2022-23,Burlington - Memorial,00480015, 0.0, 19.5, 4.3, 10.7, 6.9, 0.0, 58.6, 49.0, 51.0, 0.0,41.4,3.5 +3.7052631578947373,3.71,a-cure-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 0.0, 22.4, 3.2, 6.8, 5.5, 0.0, 62.0, 47.7, 52.3, 0.0,38.0,8.8 +12.097560975609758,5,a-cure-i1,2022-23,Cambridge - Amigos School,00490006, 0.0, 3.4, 4.7, 50.4, 7.1, 0.0, 34.4, 49.6, 50.1, 0.2,65.6,49.6 +7.323763955342902,5,a-cure-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 0.3, 11.1, 26.1, 15.2, 10.0, 0.0, 37.3, 51.0, 48.4, 0.6,62.7,28.7 +8.97171381031614,5,a-cure-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 0.3, 10.9, 27.0, 11.6, 10.2, 0.0, 39.9, 49.5, 50.2, 0.3,60.1,33.7 +12.04979253112033,5,a-cure-i1,2022-23,Cambridge - Cambridgeport,00490007, 0.0, 11.0, 16.5, 7.1, 13.7, 0.0, 51.8, 50.2, 48.6, 1.2,48.2,36.3 +4.917594654788419,4.92,a-cure-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 0.4, 7.1, 51.6, 20.9, 9.8, 0.0, 10.2, 41.3, 58.7, 0.0,89.8,27.6 +2.694736842105263,2.69,a-cure-i1,2022-23,Cambridge - Graham and Parks,00490080, 0.0, 16.6, 13.5, 9.1, 8.3, 0.0, 52.5, 45.6, 54.4, 0.0,47.5,8.0 +12.577696526508227,5,a-cure-i1,2022-23,Cambridge - Haggerty,00490020, 0.9, 22.4, 15.9, 9.5, 6.0, 0.0, 45.3, 54.7, 45.3, 0.0,54.7,43.0 +3.741293532338309,3.74,a-cure-i1,2022-23,Cambridge - John M Tobin,00490065, 0.0, 15.9, 23.8, 7.8, 12.8, 0.0, 39.7, 48.4, 51.6, 0.0,60.3,14.100000000000001 +3.626943005181347,3.63,a-cure-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 0.0, 23.9, 23.4, 21.7, 8.2, 0.0, 22.8, 50.5, 49.5, 0.0,77.2,17.5 +6.546603475513428,5,a-cure-i1,2022-23,Cambridge - King Open,00490035, 0.0, 13.2, 22.6, 13.5, 14.0, 0.0, 36.7, 48.5, 51.5, 0.0,63.3,25.9 +8.976525821596244,5,a-cure-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 0.0, 9.1, 10.0, 9.1, 14.4, 0.0, 57.4, 50.9, 49.1, 0.0,42.6,23.9 +9.854166666666666,5,a-cure-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 0.0, 35.8, 12.0, 4.2, 24.7, 0.0, 23.2, 49.4, 50.6, 0.0,76.8,47.3 +2.8457350272232307,2.85,a-cure-i1,2022-23,Cambridge - Morse,00490045, 0.0, 9.5, 25.5, 8.8, 11.2, 0.0, 44.9, 48.0, 52.0, 0.0,55.1,9.8 +7.243636363636363,5,a-cure-i1,2022-23,Cambridge - Peabody,00490050, 0.3, 15.1, 23.9, 8.2, 7.5, 0.0, 45.0, 50.0, 50.0, 0.0,55.0,24.9 +7.381275440976934,5,a-cure-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 1.2, 15.9, 30.7, 12.4, 13.5, 0.0, 26.3, 45.8, 54.2, 0.0,73.7,34.0 +9.516129032258064,5,a-cure-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 10.2, 22.3, 9.5, 7.7, 0.0, 50.4, 48.5, 50.4, 1.1,49.6,29.5 +5.418530351437698,5,a-cure-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 0.0, 17.6, 23.8, 11.0, 10.3, 0.0, 37.4, 46.9, 52.7, 0.4,62.6,21.199999999999996 +3.9193083573487026,3.92,a-cure-i1,2022-23,Canton - Canton High,00500505, 0.2, 10.5, 14.2, 4.9, 4.9, 0.1, 65.3, 54.8, 44.9, 0.3,34.7,8.5 +1,1,a-cure-i1,2022-23,Canton - Dean S Luce,00500020, 0.2, 9.8, 10.1, 6.3, 8.1, 0.0, 65.4, 47.5, 52.5, 0.0,34.599999999999994,3.5 +1,1,a-cure-i1,2022-23,Canton - John F Kennedy,00500017, 0.0, 8.5, 6.2, 6.8, 8.7, 0.0, 69.8, 46.8, 53.2, 0.0,30.200000000000003,0.0 +2.49645390070922,2.5,a-cure-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 0.2, 11.5, 11.4, 9.3, 9.5, 0.4, 57.7, 47.4, 52.6, 0.0,42.3,6.6 +1,1,a-cure-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 0.0, 23.6, 10.1, 7.9, 5.6, 0.0, 52.8, 46.1, 53.9, 0.0,47.2,0.0 +2.761421319796954,2.76,a-cure-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 0.0, 11.2, 13.8, 8.1, 6.0, 0.4, 60.6, 51.5, 48.5, 0.0,39.4,6.8 +1,1,a-cure-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.4, 1.6, 2.0, 2.8, 1.2, 0.0, 92.0, 50.8, 49.2, 0.0,8.0,0.0 +1,1,a-cure-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.1, 0.9, 5.7, 11.3, 4.1, 0.3, 76.7, 37.7, 62.2, 0.2,23.299999999999997,4.0 +1,1,a-cure-i1,2022-23,Carlisle - Carlisle School,00510025, 0.0, 12.0, 0.3, 6.2, 8.7, 0.5, 72.4, 49.4, 50.4, 0.2,27.599999999999994,3.4 +1,1,a-cure-i1,2022-23,Carver - Carver Elementary School,00520015, 0.1, 0.3, 2.2, 3.5, 2.7, 0.0, 91.2, 50.5, 49.5, 0.0,8.799999999999997,2.2 +13.837837837837828,5,a-cure-i1,2022-23,Carver - Carver Middle/High School,00520405, 0.5, 0.4, 2.5, 2.7, 1.3, 0.0, 92.6, 47.2, 52.7, 0.1,7.400000000000006,6.4 +1,1,a-cure-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 8.0, 4.0, 0.0, 88.0, 53.0, 47.0, 0.0,12.0,0.0 +1,1,a-cure-i1,2022-23,Central Berkshire - Craneville,06350025, 0.0, 1.1, 0.9, 7.4, 5.8, 0.0, 84.8, 49.3, 50.4, 0.2,15.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 3.1, 3.7, 0.0, 93.2, 52.2, 47.8, 0.0,6.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 1.2, 0.6, 4.6, 5.8, 0.0, 87.8, 48.1, 51.9, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.2, 0.8, 4.1, 3.1, 0.0, 91.8, 50.3, 49.7, 0.0,8.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Chelmsford - Byam School,00560030, 0.0, 13.6, 3.8, 11.4, 4.8, 0.0, 66.5, 48.3, 51.7, 0.0,33.5,0.0 +1,1,a-cure-i1,2022-23,Chelmsford - Center Elementary School,00560005, 0.2, 19.8, 3.7, 6.8, 3.5, 0.0, 66.0, 47.4, 52.6, 0.0,34.0,0.0 +1,1,a-cure-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 0.6, 21.4, 4.0, 13.4, 3.8, 0.4, 56.3, 52.4, 47.6, 0.0,43.7,0.0 +1,1,a-cure-i1,2022-23,Chelmsford - Chelmsford High,00560505, 0.2, 18.1, 3.8, 7.2, 3.1, 0.2, 67.3, 47.5, 52.1, 0.4,32.7,4.0 +1,1,a-cure-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 0.0, 15.8, 3.5, 10.0, 4.6, 0.0, 66.3, 47.9, 52.0, 0.1,33.7,0.0 +1,1,a-cure-i1,2022-23,Chelmsford - Community Education Center,00560001, 0.5, 28.9, 5.5, 11.9, 3.0, 0.5, 49.8, 31.3, 68.7, 0.0,50.2,0.0 +1,1,a-cure-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 0.1, 19.1, 4.4, 8.6, 4.4, 0.5, 62.9, 48.1, 51.5, 0.4,37.1,3.2 +1,1,a-cure-i1,2022-23,Chelmsford - South Row,00560015, 0.4, 16.0, 2.6, 7.1, 6.3, 0.0, 67.6, 48.8, 51.2, 0.0,32.400000000000006,0.0 +4.378947368421053,4.38,a-cure-i1,2022-23,Chelsea - Chelsea High,00570505, 0.2, 1.0, 3.8, 89.2, 0.7, 0.0, 5.0, 45.1, 54.9, 0.1,95.0,26.0 +2.7433264887063653,2.74,a-cure-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.9, 1.7, 94.8, 0.0, 0.0, 2.6, 29.6, 70.4, 0.0,97.4,16.7 +1,1,a-cure-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 2.1, 85.1, 0.0, 0.0, 12.8, 55.3, 44.7, 0.0,87.2,0.0 +2.3340380549682878,2.33,a-cure-i1,2022-23,Chelsea - Clark Avenue School,00570050, 0.1, 0.3, 3.1, 90.0, 1.0, 0.0, 5.4, 49.5, 50.5, 0.0,94.6,13.8 +3.2815964523281593,3.28,a-cure-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 0.4, 0.4, 6.4, 82.3, 0.6, 0.0, 9.8, 44.6, 55.4, 0.0,90.2,18.5 +1.6842105263157896,1.68,a-cure-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.7, 4.9, 86.9, 0.7, 0.0, 6.9, 49.7, 50.3, 0.0,93.1,9.8 +2.675409836065574,2.68,a-cure-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 0.2, 0.2, 3.8, 87.1, 0.2, 0.0, 8.5, 51.1, 48.9, 0.0,91.5,15.3 +7.369294605809129,5,a-cure-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.2, 1.7, 94.6, 0.0, 0.0, 3.6, 51.9, 48.1, 0.0,96.4,44.400000000000006 +7.122470713525026,5,a-cure-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 0.4, 1.8, 6.5, 84.9, 0.4, 0.0, 6.1, 44.6, 55.4, 0.0,93.9,41.8 +2.176278563656148,2.18,a-cure-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 0.1, 0.9, 3.8, 87.0, 0.1, 0.0, 8.1, 47.4, 52.6, 0.0,91.9,12.5 +1.9348054679284965,1.93,a-cure-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 0.2, 0.9, 7.3, 86.3, 0.4, 0.0, 4.9, 54.7, 45.3, 0.0,95.1,11.5 +1,1,a-cure-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.7, 0.0, 0.7, 2.1, 0.7, 0.0, 95.9, 44.8, 55.2, 0.0,4.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Chicopee - Barry,00610003, 0.3, 2.3, 4.9, 32.8, 3.2, 0.6, 55.9, 44.6, 55.4, 0.0,44.1,0.0 +1.8569157392686804,1.86,a-cure-i1,2022-23,Chicopee - Belcher,00610010, 0.0, 0.4, 10.3, 46.4, 5.4, 0.4, 37.1, 49.6, 50.4, 0.0,62.9,7.3 +1,1,a-cure-i1,2022-23,Chicopee - Bellamy Middle,00610305, 0.0, 1.0, 5.3, 39.7, 3.5, 0.1, 50.4, 46.6, 53.2, 0.1,49.6,1.7 +1,1,a-cure-i1,2022-23,Chicopee - Bowe,00610015, 0.0, 2.2, 4.2, 66.5, 4.6, 0.0, 22.5, 50.1, 49.9, 0.0,77.5,0.0 +3.089108910891089,3.09,a-cure-i1,2022-23,Chicopee - Bowie,00610020, 0.0, 2.9, 4.7, 28.7, 4.0, 0.0, 59.6, 51.3, 48.7, 0.0,40.4,7.8 +1.783206106870229,1.78,a-cure-i1,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 1.1, 9.2, 50.6, 4.6, 0.0, 34.5, 27.6, 72.4, 0.0,65.5,7.3 +3.764705882352941,3.76,a-cure-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 0.1, 1.4, 3.1, 36.4, 3.2, 0.0, 55.8, 41.0, 58.7, 0.2,44.2,10.4 +2.488888888888889,2.49,a-cure-i1,2022-23,Chicopee - Chicopee High,00610505, 0.0, 2.6, 5.3, 51.3, 3.8, 0.0, 37.0, 52.3, 47.5, 0.2,63.0,9.8 +2.690777576853526,2.69,a-cure-i1,2022-23,Chicopee - Dupont Middle,00610310, 0.0, 1.4, 5.2, 45.8, 2.9, 0.0, 44.7, 45.3, 54.5, 0.3,55.3,9.299999999999999 +1,1,a-cure-i1,2022-23,Chicopee - Fairview Elementary,00610050, 0.0, 1.1, 10.0, 50.4, 4.3, 0.0, 34.1, 44.7, 55.3, 0.0,65.9,4.0 +1.1685393258426966,1.17,a-cure-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 0.0, 1.0, 4.6, 62.0, 3.6, 0.0, 28.8, 48.8, 51.2, 0.0,71.2,5.2 +1,1,a-cure-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 0.0, 2.1, 3.3, 36.5, 4.6, 0.0, 53.5, 42.7, 57.3, 0.0,46.5,1.1 +1,1,a-cure-i1,2022-23,Chicopee - Litwin,00610022, 0.0, 1.8, 9.1, 35.6, 3.6, 0.0, 49.8, 50.5, 49.5, 0.0,50.2,0.8 +1,1,a-cure-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 0.0, 3.1, 4.0, 31.4, 3.1, 0.0, 58.4, 43.8, 56.2, 0.0,41.6,1.2 +1,1,a-cure-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 1.8, 7.2, 33.8, 4.5, 0.0, 52.7, 45.0, 55.0, 0.0,47.3,0.0 +3.3825503355704702,3.38,a-cure-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 1.2, 6.7, 7.9, 35.0, 8.8, 0.0, 40.4, 41.3, 57.1, 1.5,59.6,12.600000000000001 +3.138211382113821,3.14,a-cure-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 67.8, 30.1, 0.5, 0.0, 1.6, 48.1, 51.9, 0.0,98.4,19.3 +1,1,a-cure-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 0.0, 2.1, 2.1, 0.0, 95.2, 46.0, 54.0, 0.0,4.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Clinton - Clinton Elementary,00640050, 0.1, 0.8, 2.6, 37.7, 2.6, 0.1, 56.0, 47.5, 52.5, 0.0,44.0,0.0 +1,1,a-cure-i1,2022-23,Clinton - Clinton Middle School,00640305, 0.0, 0.4, 2.0, 39.6, 1.8, 0.0, 56.1, 49.0, 51.0, 0.0,43.9,4.6 +4.251748251748252,4.25,a-cure-i1,2022-23,Clinton - Clinton Senior High,00640505, 0.0, 0.5, 3.7, 37.3, 1.2, 0.2, 57.1, 43.6, 56.2, 0.2,42.9,11.399999999999999 +7.638916750250753,5,a-cure-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 74.4, 24.4, 0.9, 0.0, 0.3, 50.6, 49.4, 0.0,99.7,47.60000000000001 +1,1,a-cure-i1,2022-23,Cohasset - Cohasset High School,00650505, 0.0, 1.9, 3.2, 1.6, 1.9, 0.0, 91.4, 47.6, 52.4, 0.0,8.599999999999994,2.8 +1,1,a-cure-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 0.0, 2.7, 2.4, 0.7, 2.4, 0.0, 91.9, 49.5, 50.5, 0.0,8.099999999999994,3.7 +1,1,a-cure-i1,2022-23,Cohasset - Deer Hill,00650005, 0.0, 0.7, 3.9, 2.6, 1.3, 0.0, 91.4, 52.3, 47.7, 0.0,8.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Cohasset - Joseph Osgood,00650010, 0.3, 1.1, 1.1, 2.4, 2.9, 0.0, 92.3, 50.3, 49.7, 0.0,7.700000000000003,0.0 +7.672391017173051,5,a-cure-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 2.5, 25.1, 19.8, 24.4, 3.9, 0.0, 24.3, 50.8, 49.1, 0.1,75.7,36.3 +7.135362014690451,5,a-cure-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.4, 5.1, 70.8, 16.2, 2.8, 0.0, 4.7, 56.1, 43.9, 0.0,95.3,42.5 +4.562118126272912,4.56,a-cure-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.3, 0.4, 1.3, 95.7, 0.4, 0.0, 1.8, 50.7, 49.3, 0.0,98.2,28.0 +5.732087227414331,5,a-cure-i1,2022-23,Concord - Alcott,00670005, 0.0, 6.5, 8.4, 9.6, 7.7, 0.0, 67.9, 50.6, 49.4, 0.0,32.099999999999994,11.5 +10.381679389312977,5,a-cure-i1,2022-23,Concord - Concord Middle,00670305, 0.0, 7.4, 4.0, 7.8, 6.9, 0.0, 73.8, 48.6, 51.4, 0.0,26.200000000000003,17.0 +1,1,a-cure-i1,2022-23,Concord - Thoreau,00670020, 0.2, 9.5, 2.1, 7.4, 8.8, 0.0, 72.1, 47.8, 52.2, 0.0,27.900000000000006,4.2 +8.55813953488372,5,a-cure-i1,2022-23,Concord - Willard,00670030, 0.0, 8.5, 0.7, 5.2, 7.2, 0.0, 78.5, 50.7, 49.3, 0.0,21.5,11.5 +7.657587548638132,5,a-cure-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 0.1, 8.9, 4.2, 5.9, 6.4, 0.2, 74.3, 46.5, 52.9, 0.6,25.700000000000003,12.3 +5.89121338912134,5,a-cure-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.2, 2.6, 47.4, 42.1, 3.3, 0.0, 4.4, 52.4, 47.6, 0.0,95.6,35.2 +1,1,a-cure-i1,2022-23,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 4.9, 3.3, 0.0, 91.9, 40.7, 59.3, 0.0,8.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Danvers - Danvers High,00710505, 0.0, 3.1, 2.6, 10.8, 3.3, 0.0, 80.2, 49.3, 49.9, 0.8,19.799999999999997,0.7 +1,1,a-cure-i1,2022-23,Danvers - Great Oak,00710015, 0.3, 2.3, 3.7, 11.6, 5.0, 0.0, 77.1, 51.8, 48.2, 0.0,22.900000000000006,4.9 +1,1,a-cure-i1,2022-23,Danvers - Highlands,00710010, 0.3, 3.1, 5.4, 12.7, 2.1, 0.0, 76.4, 45.1, 54.9, 0.0,23.599999999999994,0.0 +4.288659793814432,4.29,a-cure-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 0.0, 2.8, 2.1, 12.3, 2.2, 0.0, 80.6, 51.0, 48.8, 0.1,19.400000000000006,5.2 +1,1,a-cure-i1,2022-23,Danvers - Ivan G Smith,00710032, 0.0, 1.8, 3.2, 7.4, 1.5, 0.0, 86.1, 48.1, 51.9, 0.0,13.900000000000006,4.5 +1,1,a-cure-i1,2022-23,Danvers - Riverside,00710030, 0.0, 0.9, 3.0, 13.9, 0.3, 0.0, 81.9, 43.2, 56.8, 0.0,18.099999999999994,0.0 +6.2089552238805945,5,a-cure-i1,2022-23,Danvers - Willis E Thorpe,00710045, 0.0, 0.9, 0.9, 10.6, 0.9, 0.0, 86.6, 52.6, 47.4, 0.0,13.400000000000006,5.2 +1,1,a-cure-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 2.3, 0.8, 7.6, 9.9, 0.0, 79.4, 50.4, 49.6, 0.0,20.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Dartmouth - Dartmouth High,00720505, 0.0, 0.7, 2.8, 7.2, 8.2, 0.1, 81.1, 51.8, 47.9, 0.3,18.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.1, 1.5, 5.8, 6.8, 0.0, 84.7, 45.8, 54.1, 0.1,15.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Dartmouth - George H Potter,00720030, 0.0, 1.5, 0.5, 6.0, 6.7, 0.0, 85.3, 50.4, 49.6, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 0.0, 1.7, 1.1, 6.5, 7.4, 0.0, 83.2, 46.6, 53.4, 0.0,16.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Dartmouth - Joseph Demello,00720015, 0.3, 1.1, 1.7, 5.1, 6.3, 0.0, 85.5, 50.1, 49.6, 0.3,14.5,0.0 +1,1,a-cure-i1,2022-23,Dedham - Avery,00730010, 0.0, 1.7, 8.1, 31.0, 5.1, 0.0, 54.2, 46.8, 53.2, 0.0,45.8,0.0 +1,1,a-cure-i1,2022-23,Dedham - Dedham High,00730505, 0.0, 2.5, 10.1, 16.2, 2.8, 0.0, 68.4, 46.7, 51.7, 1.5,31.599999999999994,3.8 +1,1,a-cure-i1,2022-23,Dedham - Dedham Middle School,00730305, 0.2, 2.4, 9.3, 20.6, 5.4, 0.0, 62.2, 49.3, 50.7, 0.0,37.8,0.0 +1,1,a-cure-i1,2022-23,Dedham - Early Childhood Center,00730005, 0.0, 2.6, 4.9, 13.4, 5.2, 0.0, 73.9, 52.1, 47.9, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Dedham - Greenlodge,00730025, 0.0, 1.4, 1.8, 9.7, 8.7, 0.0, 78.3, 47.3, 52.3, 0.4,21.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Dedham - Oakdale,00730030, 0.0, 2.0, 9.4, 9.8, 6.5, 0.0, 72.2, 55.1, 44.9, 0.0,27.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Dedham - Riverdale,00730045, 0.0, 3.4, 4.6, 13.2, 6.9, 0.0, 71.8, 47.7, 52.3, 0.0,28.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 0.0, 0.6, 0.6, 5.2, 7.4, 0.0, 86.1, 46.0, 53.7, 0.3,13.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.9, 2.4, 9.3, 11.9, 6.2, 0.4, 68.9, 50.0, 50.0, 0.0,31.099999999999994,3.7 +4.057636887608069,4.06,a-cure-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 1.9, 2.5, 10.3, 10.7, 9.0, 0.2, 65.3, 42.6, 57.1, 0.2,34.7,8.8 +2.2127659574468086,2.21,a-cure-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.9, 2.7, 13.3, 13.2, 6.4, 0.1, 62.4, 49.4, 50.1, 0.5,37.6,5.2 +1,1,a-cure-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.2, 2.4, 11.2, 13.2, 7.4, 0.0, 64.7, 48.5, 51.5, 0.0,35.3,3.8 +1,1,a-cure-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.8, 2.8, 11.7, 19.1, 8.5, 0.0, 56.0, 45.7, 54.3, 0.0,44.0,0.0 +1,1,a-cure-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.7, 2.9, 11.5, 9.6, 5.0, 0.0, 70.3, 46.0, 54.0, 0.0,29.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 2.3, 3.5, 4.9, 4.2, 0.0, 85.2, 47.8, 52.2, 0.0,14.799999999999997,0.0 +9.62091503267974,5,a-cure-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.6, 3.6, 5.7, 4.4, 0.0, 84.7, 47.5, 52.2, 0.3,15.299999999999997,9.2 +1,1,a-cure-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.1, 1.5, 1.5, 5.4, 4.8, 0.0, 86.8, 48.6, 51.1, 0.3,13.200000000000003,3.5 +1,1,a-cure-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.8, 1.6, 4.5, 4.5, 0.0, 87.4, 50.4, 49.1, 0.4,12.599999999999994,3.0 +1,1,a-cure-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 0.0, 1.5, 0.9, 4.9, 2.9, 0.0, 89.8, 44.8, 55.2, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Douglas - Douglas Elementary School,00770015, 0.0, 0.3, 0.6, 7.0, 3.8, 0.0, 88.4, 46.8, 53.2, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Douglas - Douglas High School,00770505, 0.0, 1.5, 0.6, 5.2, 1.5, 0.0, 91.0, 48.5, 51.5, 0.0,9.0,0.0 +1,1,a-cure-i1,2022-23,Douglas - Douglas Middle School,00770305, 0.0, 0.7, 1.0, 7.0, 3.7, 0.0, 87.6, 47.0, 53.0, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.4, 4.5, 3.6, 0.0, 90.5, 41.4, 58.6, 0.0,9.5,0.0 +1,1,a-cure-i1,2022-23,Dover - Chickering,00780005, 0.2, 13.1, 3.4, 4.6, 6.2, 0.0, 72.5, 46.8, 53.2, 0.0,27.5,4.7 +4.666666666666667,4.67,a-cure-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.3, 12.7, 3.4, 6.1, 6.3, 0.0, 71.2, 49.9, 49.6, 0.4,28.799999999999997,8.4 +6.228571428571428,5,a-cure-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 12.4, 2.1, 5.8, 7.7, 0.0, 72.0, 47.5, 52.5, 0.0,28.0,10.899999999999999 +1,1,a-cure-i1,2022-23,Dracut - Brookside Elementary,00790035, 0.0, 10.2, 10.2, 15.3, 1.5, 0.0, 62.7, 48.3, 51.7, 0.0,37.3,0.0 +1,1,a-cure-i1,2022-23,Dracut - Dracut Senior High,00790505, 0.4, 10.6, 8.6, 11.8, 1.7, 0.0, 66.9, 49.8, 49.8, 0.4,33.099999999999994,3.4 +1,1,a-cure-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 0.2, 11.5, 6.4, 19.0, 3.0, 0.0, 60.0, 47.7, 52.3, 0.0,40.0,0.0 +1,1,a-cure-i1,2022-23,Dracut - Greenmont Avenue,00790030, 0.0, 10.8, 7.1, 14.6, 2.9, 0.0, 64.6, 44.6, 55.4, 0.0,35.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 0.2, 6.9, 9.2, 9.7, 1.0, 0.0, 73.0, 45.6, 54.4, 0.0,27.0,0.0 +2.953846153846154,2.95,a-cure-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 8.4, 6.8, 15.4, 1.9, 0.0, 67.5, 47.6, 52.1, 0.2,32.5,6.0 +8.7826982492276,5,a-cure-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.7, 0.4, 61.2, 34.2, 0.7, 0.0, 2.9, 49.3, 50.7, 0.0,97.1,53.3 +1,1,a-cure-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.3, 0.6, 1.2, 11.0, 1.8, 0.0, 85.2, 50.1, 49.9, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.2, 0.8, 1.7, 8.3, 4.7, 0.0, 84.3, 47.3, 52.7, 0.0,15.700000000000003,0.0 +6.0338983050847474,5,a-cure-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.3, 0.3, 3.8, 14.6, 4.7, 0.0, 76.4, 49.9, 50.1, 0.0,23.599999999999994,8.9 +1,1,a-cure-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.9, 3.3, 12.1, 2.2, 0.0, 81.5, 45.7, 54.3, 0.0,18.5,0.0 +7.908045977011492,5,a-cure-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.9, 1.1, 11.0, 4.4, 0.0, 82.6, 48.3, 51.4, 0.2,17.400000000000006,8.6 +6.730158730158729,5,a-cure-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 1.3, 1.7, 17.1, 5.1, 0.0, 74.8, 48.7, 51.3, 0.0,25.200000000000003,10.6 +5.752808988764047,5,a-cure-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.1, 2.1, 2.6, 10.5, 2.4, 0.1, 82.2, 51.8, 47.9, 0.3,17.799999999999997,6.4 +1,1,a-cure-i1,2022-23,Duxbury - Alden School,00820004, 0.0, 1.2, 1.0, 3.3, 4.0, 0.2, 90.4, 46.3, 53.7, 0.0,9.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Duxbury - Chandler Elementary,00820006, 0.2, 0.9, 1.1, 3.3, 3.8, 0.0, 90.7, 49.9, 49.9, 0.2,9.299999999999997,2.9 +1,1,a-cure-i1,2022-23,Duxbury - Duxbury High,00820505, 0.2, 1.6, 0.3, 2.8, 3.2, 0.0, 91.8, 48.5, 51.5, 0.0,8.200000000000003,3.0 +1,1,a-cure-i1,2022-23,Duxbury - Duxbury Middle,00820305, 0.2, 0.8, 0.5, 2.6, 4.2, 0.0, 91.8, 50.2, 49.8, 0.0,8.200000000000003,0.0 +1,1,a-cure-i1,2022-23,East Bridgewater - Central,00830005, 0.2, 1.3, 5.3, 5.5, 3.8, 0.0, 83.8, 48.1, 51.9, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.6, 1.1, 6.6, 4.5, 3.7, 0.1, 83.4, 45.1, 54.8, 0.1,16.599999999999994,3.1 +1,1,a-cure-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 0.5, 0.6, 5.7, 7.0, 3.6, 0.0, 82.6, 51.5, 48.5, 0.0,17.400000000000006,0.0 +4.7891156462585025,4.79,a-cure-i1,2022-23,East Longmeadow - Birchland Park,00870305, 0.3, 6.0, 4.7, 13.7, 4.7, 0.0, 70.6, 42.6, 57.2, 0.2,29.400000000000006,8.8 +5.552511415525112,5,a-cure-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 0.0, 6.4, 4.3, 7.7, 3.6, 0.0, 78.1, 48.4, 51.5, 0.1,21.900000000000006,7.6 +1,1,a-cure-i1,2022-23,East Longmeadow - Mapleshade,00870010, 0.3, 7.9, 2.4, 12.3, 3.1, 0.0, 74.0, 49.3, 50.7, 0.0,26.0,0.0 +1,1,a-cure-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 0.0, 4.6, 4.1, 17.3, 5.3, 0.0, 68.7, 46.1, 53.9, 0.0,31.299999999999997,0.0 +1,1,a-cure-i1,2022-23,East Longmeadow - Mountain View,00870015, 0.0, 3.3, 3.0, 11.9, 3.3, 0.0, 78.4, 48.3, 51.7, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 10.2, 4.3, 8.6, 0.0, 76.9, 45.2, 54.8, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Easthampton - Easthampton High,00860505, 0.3, 5.4, 1.9, 15.1, 2.2, 0.0, 75.1, 47.6, 51.4, 1.1,24.900000000000006,2.8 +1,1,a-cure-i1,2022-23,Easthampton - Mountain View School,00860415, 0.3, 2.2, 1.1, 15.4, 4.8, 0.1, 76.1, 48.2, 51.5, 0.3,23.900000000000006,1.5 +1,1,a-cure-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 4.4, 6.7, 10.7, 6.2, 0.0, 72.0, 45.9, 54.1, 0.0,28.0,2.1 +1,1,a-cure-i1,2022-23,Easton - Easton Middle School,00880405, 0.9, 2.8, 8.4, 7.9, 3.9, 0.1, 76.0, 48.6, 51.4, 0.0,24.0,3.2 +7.024390243902439,5,a-cure-i1,2022-23,Easton - Oliver Ames High,00880505, 0.2, 3.7, 7.1, 6.7, 2.9, 0.0, 79.5, 50.2, 49.5, 0.3,20.5,9.0 +1,1,a-cure-i1,2022-23,Easton - Richardson Olmsted School,00880025, 0.1, 3.8, 7.4, 9.1, 3.9, 0.0, 75.7, 48.2, 51.8, 0.0,24.299999999999997,2.6 +1,1,a-cure-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 2.7, 0.2, 4.7, 24.8, 4.5, 0.0, 63.1, 49.8, 50.2, 0.0,36.9,2.8 +7.346432264736299,5,a-cure-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, 0.0, 1.1, 38.5, 54.4, 2.7, 0.0, 3.3, 66.8, 33.2, 0.0,96.7,44.400000000000006 +1,1,a-cure-i1,2022-23,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 5.4, 9.3, 0.0, 85.3, 43.4, 56.6, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.1, 1.8, 2.1, 14.7, 3.7, 0.1, 77.5, 57.3, 42.3, 0.4,22.5,2.4000000000000004 +1,1,a-cure-i1,2022-23,Everett - Adams School,00930003, 0.5, 12.1, 17.0, 51.1, 2.2, 0.0, 17.0, 52.7, 47.3, 0.0,83.0,0.0 +1.5862068965517244,1.59,a-cure-i1,2022-23,Everett - Devens School,00930030, 0.0, 0.0, 23.9, 43.5, 2.2, 0.0, 30.4, 28.3, 71.7, 0.0,69.6,6.9 +2.824644549763033,2.82,a-cure-i1,2022-23,Everett - Everett High,00930505, 0.4, 5.1, 14.3, 62.7, 1.8, 0.0, 15.6, 48.8, 51.2, 0.0,84.4,14.9 +1.382716049382716,1.38,a-cure-i1,2022-23,Everett - George Keverian School,00930028, 0.1, 3.5, 12.7, 71.2, 1.4, 0.1, 10.9, 51.6, 48.4, 0.0,89.1,7.699999999999999 +1.709483793517407,1.71,a-cure-i1,2022-23,Everett - Lafayette School,00930038, 0.1, 7.1, 15.7, 58.7, 1.8, 0.0, 16.7, 48.4, 51.6, 0.0,83.3,8.9 +1.4388489208633093,1.44,a-cure-i1,2022-23,Everett - Madeline English School,00930018, 0.1, 4.5, 9.8, 67.5, 1.4, 0.0, 16.6, 49.0, 51.0, 0.0,83.4,7.5 +1,1,a-cure-i1,2022-23,Everett - Parlin School,00930058, 0.0, 3.5, 10.0, 77.4, 1.0, 0.1, 8.1, 51.3, 48.7, 0.0,91.9,4.5 +1.4926052332195678,1.49,a-cure-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 0.8, 3.0, 7.6, 74.4, 2.1, 0.0, 12.1, 48.9, 51.1, 0.0,87.9,8.200000000000001 +1,1,a-cure-i1,2022-23,Everett - Webster Extension,00930001, 0.0, 19.1, 13.3, 49.1, 0.6, 0.0, 17.9, 46.2, 53.8, 0.0,82.1,0.0 +1,1,a-cure-i1,2022-23,Everett - Webster School,00930015, 0.0, 2.7, 8.5, 64.7, 0.6, 0.0, 23.4, 45.0, 55.0, 0.0,76.6,3.8 +6.429223744292238,5,a-cure-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.4, 1.3, 5.7, 78.7, 0.9, 0.5, 12.4, 48.4, 51.6, 0.0,87.6,35.2 +1,1,a-cure-i1,2022-23,Fairhaven - East Fairhaven,00940010, 0.6, 1.6, 2.2, 8.9, 6.1, 0.0, 80.5, 49.2, 50.8, 0.0,19.5,0.0 +1,1,a-cure-i1,2022-23,Fairhaven - Fairhaven High,00940505, 0.5, 2.2, 1.6, 7.6, 3.5, 0.0, 84.7, 49.3, 50.6, 0.2,15.299999999999997,0.0 +5.987096774193549,5,a-cure-i1,2022-23,Fairhaven - Hastings Middle,00940305, 0.7, 1.4, 3.4, 6.2, 3.9, 0.0, 84.5, 50.9, 49.1, 0.0,15.5,5.8 +1,1,a-cure-i1,2022-23,Fairhaven - Leroy Wood,00940030, 0.5, 2.9, 2.5, 6.8, 4.3, 0.0, 83.0, 48.2, 51.8, 0.0,17.0,0.0 +2.0528301886792457,2.05,a-cure-i1,2022-23,Fall River - B M C Durfee High,00950505, 0.2, 4.3, 10.3, 30.4, 7.7, 0.0, 47.0, 50.6, 49.3, 0.1,53.0,6.800000000000001 +1.4402618657937807,1.44,a-cure-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.1, 2.7, 9.2, 38.2, 10.8, 0.0, 38.9, 49.9, 50.1, 0.0,61.1,5.5 +4.976671850699844,4.98,a-cure-i1,2022-23,Fall River - Early Learning Center,00950001, 0.0, 3.6, 7.1, 39.3, 14.3, 0.0, 35.7, 32.1, 67.9, 0.0,64.3,20.0 +1.4400000000000002,1.44,a-cure-i1,2022-23,Fall River - Henry Lord Community School,00950017, 0.4, 1.7, 10.2, 38.3, 9.4, 0.0, 40.0, 47.7, 52.3, 0.0,60.0,5.4 +1,1,a-cure-i1,2022-23,Fall River - James Tansey,00950140, 0.0, 2.2, 6.5, 13.8, 9.1, 0.0, 68.5, 50.4, 49.3, 0.4,31.5,0.0 +1.4222222222222223,1.42,a-cure-i1,2022-23,Fall River - John J Doran,00950045, 0.0, 0.6, 10.2, 33.2, 14.5, 0.0, 41.5, 47.2, 52.8, 0.0,58.5,5.2 +2.750413223140496,2.75,a-cure-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 0.0, 2.5, 9.4, 38.9, 9.7, 0.0, 39.5, 46.6, 53.4, 0.0,60.5,10.4 +2.9219440353460966,2.92,a-cure-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 0.3, 2.2, 13.4, 43.2, 8.8, 0.0, 32.1, 50.0, 50.0, 0.0,67.9,12.399999999999999 +2.98932384341637,2.99,a-cure-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 0.1, 4.0, 9.7, 33.1, 9.2, 0.0, 43.8, 48.4, 51.6, 0.0,56.2,10.5 +2.989010989010989,2.99,a-cure-i1,2022-23,Fall River - Morton Middle,00950315, 0.1, 4.8, 16.7, 22.3, 1.6, 0.0, 54.5, 45.7, 54.3, 0.0,45.5,8.5 +1,1,a-cure-i1,2022-23,Fall River - North End Elementary,00950005, 0.0, 3.1, 20.4, 20.1, 3.6, 0.0, 52.8, 49.2, 50.8, 0.0,47.2,0.0 +2.1492537313432836,2.15,a-cure-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.5, 21.3, 33.0, 12.2, 0.0, 33.0, 38.1, 61.9, 0.0,67.0,9.0 +1.844155844155844,1.84,a-cure-i1,2022-23,Fall River - Samuel Watson,00950145, 0.0, 2.5, 11.6, 31.8, 14.9, 0.8, 38.4, 52.9, 47.1, 0.0,61.6,7.1 +3.976878612716763,3.98,a-cure-i1,2022-23,Fall River - Spencer Borden,00950130, 0.0, 5.4, 14.1, 22.9, 9.5, 0.0, 48.1, 46.2, 53.8, 0.0,51.9,12.899999999999999 +3.874439461883408,3.87,a-cure-i1,2022-23,Fall River - Stone PK-12 School,00950340, 1.4, 0.0, 9.5, 23.0, 9.5, 1.4, 55.4, 31.1, 68.9, 0.0,44.6,10.8 +3.9069767441860463,3.91,a-cure-i1,2022-23,Fall River - Talbot Innovation School,00950305, 0.4, 3.0, 10.9, 37.5, 8.4, 0.0, 39.8, 51.2, 48.8, 0.0,60.2,14.7 +1,1,a-cure-i1,2022-23,Fall River - William S Greene,00950065, 0.4, 4.3, 12.1, 34.7, 11.4, 0.1, 37.0, 46.9, 53.1, 0.0,63.0,0.0 +1,1,a-cure-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 0.7, 3.2, 5.0, 8.9, 7.8, 0.0, 74.5, 40.8, 59.2, 0.0,25.5,0.0 +1,1,a-cure-i1,2022-23,Falmouth - Falmouth High,00960505, 1.4, 1.7, 5.6, 8.7, 6.0, 0.0, 76.5, 46.6, 52.5, 0.9,23.5,4.1 +5.139896373056995,5,a-cure-i1,2022-23,Falmouth - Lawrence,00960405, 0.6, 0.8, 4.8, 7.8, 5.2, 0.0, 80.7, 49.9, 49.7, 0.4,19.299999999999997,6.199999999999999 +3.2,3.2,a-cure-i1,2022-23,Falmouth - Morse Pond School,00960305, 1.7, 1.5, 6.0, 9.5, 8.3, 0.0, 73.0, 44.4, 55.4, 0.2,27.0,5.4 +3.727598566308243,3.73,a-cure-i1,2022-23,Falmouth - Mullen-Hall,00960020, 1.1, 1.8, 2.4, 14.5, 8.2, 0.0, 72.1, 49.2, 50.8, 0.0,27.900000000000006,6.5 +7.859649122807021,5,a-cure-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 0.0, 1.0, 2.5, 7.6, 6.0, 0.0, 82.9, 54.3, 45.7, 0.0,17.099999999999994,8.4 +5.128919860627176,5,a-cure-i1,2022-23,Falmouth - Teaticket,00960015, 1.9, 1.5, 5.7, 10.6, 9.1, 0.0, 71.3, 46.0, 52.8, 1.1,28.700000000000003,9.2 +1,1,a-cure-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 97.5, 52.5, 47.5, 0.0,2.5,4.9 +1.206030150753769,1.21,a-cure-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.3, 5.3, 6.6, 60.5, 6.8, 0.0, 20.4, 48.0, 52.0, 0.0,79.6,6.0 +1.8649006622516557,1.86,a-cure-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 0.0, 3.2, 8.1, 56.8, 7.3, 0.0, 24.5, 50.8, 49.2, 0.0,75.5,8.8 +4.438709677419355,4.44,a-cure-i1,2022-23,Fitchburg - Fitchburg High,00970505, 0.0, 5.6, 8.7, 57.1, 6.2, 0.0, 22.5, 50.2, 49.7, 0.1,77.5,21.5 +5.647058823529412,5,a-cure-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 1.5, 4.1, 48.5, 8.8, 0.0, 37.1, 54.1, 45.9, 0.0,62.9,22.2 +1.281602002503129,1.28,a-cure-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 0.0, 5.1, 5.8, 61.6, 7.4, 0.0, 20.1, 44.0, 56.0, 0.0,79.9,6.4 +2.520393811533052,2.52,a-cure-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 0.0, 2.9, 5.2, 56.1, 6.9, 0.0, 28.9, 50.3, 49.4, 0.3,71.1,11.2 +1.8599105812220569,1.86,a-cure-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 0.0, 4.0, 5.7, 51.3, 6.1, 0.0, 32.9, 44.7, 55.3, 0.0,67.1,7.800000000000001 +2.4960000000000004,2.5,a-cure-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 0.0, 3.9, 7.1, 56.7, 7.3, 0.0, 25.0, 47.2, 52.8, 0.0,75.0,11.700000000000001 +1,1,a-cure-i1,2022-23,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 98.9, 44.6, 55.4, 0.0,1.0999999999999943,0.0 +12.503311258278151,5,a-cure-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 1.8, 1.4, 6.8, 5.0, 0.0, 84.9, 50.7, 47.9, 1.4,15.099999999999994,11.8 +1,1,a-cure-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 0.0, 4.3, 5.9, 7.9, 3.9, 0.0, 78.0, 44.5, 55.5, 0.0,22.0,3.8 +1,1,a-cure-i1,2022-23,Foxborough - Foxborough High,00990505, 0.4, 3.5, 9.1, 7.6, 2.3, 0.0, 77.2, 49.5, 50.4, 0.1,22.799999999999997,0.0 +2.9039145907473314,2.9,a-cure-i1,2022-23,Foxborough - John J Ahern,00990405, 0.3, 6.4, 6.5, 9.4, 5.3, 0.1, 71.9, 48.0, 52.0, 0.0,28.099999999999994,5.1 +3.851851851851853,3.85,a-cure-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 0.3, 5.1, 6.3, 6.6, 3.3, 0.0, 78.4, 45.3, 54.7, 0.0,21.599999999999994,5.2 +1,1,a-cure-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 7.1, 8.5, 11.6, 4.5, 0.0, 68.4, 44.4, 55.6, 0.0,31.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.5, 8.2, 60.2, 6.2, 5.2, 0.2, 19.6, 51.9, 48.1, 0.0,80.4,0.0 +10.654335260115607,5,a-cure-i1,2022-23,Framingham - Barbieri Elementary,01000035, 0.0, 0.4, 1.7, 81.2, 3.2, 0.0, 13.5, 52.9, 47.1, 0.0,86.5,57.6 +5.491251682368776,5,a-cure-i1,2022-23,Framingham - Brophy,01000006, 0.2, 3.5, 5.7, 60.6, 4.3, 0.0, 25.7, 46.6, 53.2, 0.2,74.3,25.5 +6.842767295597484,5,a-cure-i1,2022-23,Framingham - Cameron Middle School,01000302, 0.0, 2.0, 6.1, 35.6, 4.0, 0.0, 52.3, 45.2, 54.8, 0.0,47.7,20.4 +2.6723044397463003,2.67,a-cure-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 0.0, 7.2, 5.3, 29.8, 5.1, 0.0, 52.7, 48.5, 51.3, 0.2,47.3,7.9 +4.8432432432432435,4.84,a-cure-i1,2022-23,Framingham - Framingham High School,01000515, 0.0, 4.3, 5.9, 41.5, 3.7, 0.0, 44.5, 49.5, 50.2, 0.3,55.5,16.8 +4.897038081805359,4.9,a-cure-i1,2022-23,Framingham - Fuller Middle,01000305, 0.0, 1.5, 6.8, 58.9, 3.7, 0.0, 29.1, 47.9, 51.8, 0.3,70.9,21.7 +2.4736196319018404,2.47,a-cure-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 0.0, 1.2, 7.3, 70.6, 2.4, 0.0, 18.5, 45.0, 54.8, 0.2,81.5,12.6 +1,1,a-cure-i1,2022-23,Framingham - Hemenway,01000015, 0.0, 10.3, 7.2, 26.3, 8.3, 0.0, 47.9, 47.7, 52.1, 0.2,52.1,4.8 +1,1,a-cure-i1,2022-23,Framingham - Juniper Hill School,01000001, 0.0, 7.4, 5.2, 37.2, 8.9, 0.0, 41.3, 36.1, 63.9, 0.0,58.7,4.9 +1,1,a-cure-i1,2022-23,Framingham - King Elementary School,01000005, 0.0, 8.4, 3.8, 31.9, 7.9, 0.0, 48.0, 49.0, 50.8, 0.3,52.0,4.2 +1.707317073170732,1.71,a-cure-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 4.4, 8.5, 45.2, 7.6, 0.0, 34.4, 47.8, 52.2, 0.0,65.6,7.0 +1.5716234652114596,1.57,a-cure-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.7, 10.0, 53.1, 7.5, 0.0, 26.7, 47.3, 52.7, 0.0,73.3,7.199999999999999 +1.9644588045234248,1.96,a-cure-i1,2022-23,Framingham - Potter Road,01000039, 0.0, 1.3, 5.9, 50.1, 4.6, 0.0, 38.1, 48.4, 51.6, 0.0,61.9,7.6 +4.51063829787234,4.51,a-cure-i1,2022-23,Framingham - Walsh Middle,01000310, 0.0, 4.9, 5.1, 42.6, 3.8, 0.0, 43.6, 53.6, 45.8, 0.6,56.4,15.9 +17.954198473282453,5,a-cure-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 3.1, 2.1, 3.9, 4.1, 0.0, 86.9, 51.8, 44.1, 4.1,13.099999999999994,14.700000000000001 +1,1,a-cure-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 0.0, 3.8, 2.8, 5.3, 2.5, 1.3, 84.3, 44.7, 55.3, 0.0,15.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 0.7, 24.2, 4.0, 6.7, 1.3, 0.0, 63.1, 40.9, 59.1, 0.0,36.9,0.0 +1,1,a-cure-i1,2022-23,Franklin - Franklin High,01010505, 0.1, 7.9, 2.6, 5.5, 2.3, 0.2, 81.3, 49.2, 50.2, 0.6,18.700000000000003,1.1 +1,1,a-cure-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 0.0, 5.3, 2.1, 6.6, 1.7, 0.6, 83.8, 49.1, 50.9, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Franklin - Horace Mann,01010405, 0.3, 8.2, 0.5, 5.3, 2.4, 1.1, 82.2, 47.6, 52.4, 0.0,17.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 0.0, 7.7, 0.0, 4.1, 1.8, 1.2, 85.2, 41.7, 58.0, 0.3,14.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Franklin - Jefferson Elementary,01010010, 0.0, 6.3, 2.0, 7.4, 4.3, 0.6, 79.4, 42.7, 57.0, 0.3,20.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Franklin - Oak Street Elementary,01010030, 0.6, 6.9, 1.7, 7.2, 4.1, 0.6, 79.1, 49.6, 50.4, 0.0,20.900000000000006,4.2 +1,1,a-cure-i1,2022-23,Franklin - Parmenter,01010032, 0.0, 7.3, 5.2, 10.0, 3.8, 0.7, 73.0, 50.5, 49.5, 0.0,27.0,0.0 +1,1,a-cure-i1,2022-23,Franklin - Remington Middle,01010310, 0.0, 7.4, 4.9, 7.4, 2.2, 0.3, 77.9, 47.1, 52.9, 0.0,22.099999999999994,3.1 +1,1,a-cure-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.3, 0.2, 1.0, 6.1, 2.7, 0.3, 89.4, 42.7, 57.3, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.8, 2.7, 1.9, 1.4, 0.0, 93.1, 52.5, 47.1, 0.4,6.900000000000006,3.7 +1,1,a-cure-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.4, 3.9, 3.2, 3.9, 0.2, 88.4, 51.9, 48.1, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.7, 0.5, 2.6, 2.6, 0.0, 93.7, 47.4, 52.6, 0.0,6.299999999999997,0.0 +7.843137254901959,5,a-cure-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.1, 1.2, 3.9, 1.9, 3.1, 0.0, 89.8, 48.1, 51.9, 0.0,10.200000000000003,5.0 +1,1,a-cure-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.4, 2.6, 4.6, 3.5, 0.0, 88.7, 48.6, 51.4, 0.0,11.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Frontier - Frontier Regional,06700505, 0.0, 3.6, 1.7, 6.3, 4.6, 0.0, 83.8, 47.5, 52.0, 0.5,16.200000000000003,3.7 +1,1,a-cure-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.9, 5.6, 16.7, 5.6, 0.0, 71.3, 59.3, 39.8, 0.9,28.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Gardner - Gardner Elementary School,01030001, 0.3, 1.4, 2.5, 29.0, 6.3, 0.0, 60.4, 45.0, 54.9, 0.1,39.6,4.4 +3.2251308900523554,3.23,a-cure-i1,2022-23,Gardner - Gardner High,01030505, 0.2, 1.2, 4.0, 24.1, 8.6, 0.0, 61.8, 47.3, 52.2, 0.5,38.2,7.699999999999999 +1,1,a-cure-i1,2022-23,Gardner - Gardner Middle School,01030405, 0.4, 2.2, 3.5, 28.4, 6.3, 0.0, 59.1, 53.4, 46.4, 0.2,40.9,0.0 +1,1,a-cure-i1,2022-23,Gateway - Chester Elementary,06720059, 0.0, 0.8, 0.0, 2.4, 1.6, 0.0, 95.2, 46.4, 53.6, 0.0,4.799999999999997,0.0 +8.068376068376066,5,a-cure-i1,2022-23,Gateway - Gateway Regional High,06720505, 1.2, 0.0, 1.8, 8.0, 0.6, 0.0, 88.3, 50.3, 49.7, 0.0,11.700000000000003,5.9 +22.028985507246357,5,a-cure-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.5, 0.5, 3.2, 2.7, 0.0, 93.1, 45.2, 54.3, 0.5,6.900000000000006,9.5 +1,1,a-cure-i1,2022-23,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 7.0, 2.7, 0.3, 90.0, 49.8, 50.2, 0.0,10.0,0.0 +9.422222222222222,5,a-cure-i1,2022-23,Georgetown - Georgetown High School,01050505, 0.0, 0.7, 1.0, 5.7, 1.0, 0.7, 91.0, 51.2, 48.8, 0.0,9.0,5.3 +1,1,a-cure-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, 1.6, 2.2, 4.3, 1.1, 0.0, 90.9, 48.9, 51.1, 0.0,9.099999999999994,2.5 +1,1,a-cure-i1,2022-23,Georgetown - Penn Brook,01050010, 0.0, 0.7, 0.6, 3.8, 3.3, 0.0, 91.6, 48.1, 51.9, 0.0,8.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 98.8, 48.8, 51.2, 0.0,1.2000000000000028,0.0 +1,1,a-cure-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.0, 4.8, 5.7, 0.0, 88.6, 50.5, 49.5, 0.0,11.400000000000006,0.0 +4.476683937823835,4.48,a-cure-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.5, 11.6, 6.8, 0.5, 80.7, 44.0, 55.6, 0.5,19.299999999999997,5.4 +1,1,a-cure-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 0.7, 0.7, 0.0, 16.4, 7.5, 0.0, 74.7, 44.5, 55.5, 0.0,25.299999999999997,0.0 +4.228571428571429,4.23,a-cure-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.5, 3.3, 19.4, 4.7, 0.0, 72.0, 44.1, 55.9, 0.0,28.0,7.4 +3.347692307692308,3.35,a-cure-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 0.5, 0.5, 3.1, 18.6, 9.8, 0.0, 67.5, 44.8, 54.6, 0.5,32.5,6.800000000000001 +3.7064748201438844,3.71,a-cure-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.4, 1.0, 13.8, 49.7, 4.6, 0.0, 30.5, 51.7, 48.3, 0.0,69.5,16.099999999999998 +1,1,a-cure-i1,2022-23,Gloucester - Beeman Memorial,01070010, 0.0, 1.0, 2.7, 21.3, 4.3, 0.0, 70.7, 52.0, 48.0, 0.0,29.299999999999997,0.0 +6.030150753768843,5,a-cure-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 0.0, 2.2, 1.7, 13.8, 2.2, 0.0, 80.1, 54.1, 45.9, 0.0,19.900000000000006,7.5 +1,1,a-cure-i1,2022-23,Gloucester - Gloucester High,01070505, 0.5, 1.4, 1.2, 14.2, 3.6, 0.5, 78.6, 45.5, 54.0, 0.5,21.400000000000006,3.5 +1,1,a-cure-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 0.0, 4.8, 1.0, 9.5, 5.7, 0.0, 79.0, 45.7, 54.3, 0.0,21.0,0.0 +1,1,a-cure-i1,2022-23,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.5, 6.4, 6.9, 0.0, 86.2, 49.8, 50.2, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 0.3, 1.0, 2.1, 13.8, 3.1, 0.2, 79.6, 48.2, 51.6, 0.2,20.400000000000006,0.0 +2.8426395939086295,2.84,a-cure-i1,2022-23,Gloucester - Veterans Memorial,01070045, 0.0, 2.8, 5.1, 25.0, 5.1, 1.4, 60.6, 48.1, 51.9, 0.0,39.4,7.0 +1,1,a-cure-i1,2022-23,Gloucester - West Parish,01070050, 0.3, 1.1, 1.1, 6.1, 4.5, 0.3, 86.6, 47.1, 52.9, 0.0,13.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100.0,0.0 +3.7647058823529425,3.76,a-cure-i1,2022-23,Grafton - Grafton High School,01100505, 0.2, 9.1, 2.7, 7.2, 2.6, 0.1, 77.9, 50.1, 49.5, 0.5,22.099999999999994,5.2 +3.569230769230769,3.57,a-cure-i1,2022-23,Grafton - Grafton Middle,01100305, 0.2, 13.0, 1.5, 8.2, 2.9, 0.2, 74.0, 47.9, 51.7, 0.4,26.0,5.8 +1,1,a-cure-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 0.2, 17.8, 1.8, 6.9, 3.2, 0.0, 70.1, 44.2, 55.8, 0.0,29.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Grafton - North Grafton Elementary,01100025, 1.6, 14.8, 4.1, 8.6, 3.7, 0.0, 67.2, 46.3, 53.7, 0.0,32.8,0.0 +1,1,a-cure-i1,2022-23,Grafton - North Street Elementary School,01100030, 0.4, 14.8, 3.5, 5.3, 2.9, 0.0, 73.2, 50.0, 49.8, 0.2,26.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Grafton - South Grafton Elementary,01100005, 0.7, 17.0, 3.4, 9.2, 2.7, 0.0, 67.0, 48.0, 52.0, 0.0,33.0,0.0 +1,1,a-cure-i1,2022-23,Granby - East Meadow,01110004, 0.5, 2.7, 0.7, 10.3, 4.7, 0.0, 81.1, 48.9, 51.1, 0.0,18.900000000000006,0.0 +9.078014184397167,5,a-cure-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 0.3, 1.9, 0.0, 10.0, 1.9, 0.0, 85.9, 45.0, 55.0, 0.0,14.099999999999994,8.0 +1,1,a-cure-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 5.6, 7.4, 26.4, 8.1, 0.4, 51.9, 53.9, 45.0, 1.1,48.1,0.0 +1,1,a-cure-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.6, 2.2, 3.4, 15.2, 5.9, 0.0, 72.7, 42.2, 57.2, 0.6,27.299999999999997,3.0999999999999996 +2.983372921615202,2.98,a-cure-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.9, 1.6, 81.3, 0.5, 0.0, 15.8, 52.3, 47.5, 0.2,84.2,15.700000000000001 +2.0913385826771655,2.09,a-cure-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.2, 18.5, 6.9, 34.8, 3.3, 0.0, 36.5, 48.0, 51.0, 1.0,63.5,8.3 +2.0550458715596327,2.06,a-cure-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.2, 1.0, 8.8, 28.1, 5.4, 0.1, 56.4, 47.2, 52.7, 0.1,43.6,5.6 +6.72,5,a-cure-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.9, 0.0, 10.7, 3.3, 0.0, 85.0, 42.1, 57.9, 0.0,15.0,6.3 +1,1,a-cure-i1,2022-23,Greenfield - Federal Street School,01140010, 0.0, 2.6, 3.1, 22.3, 4.1, 0.0, 67.9, 56.5, 43.5, 0.0,32.099999999999994,0.0 +2.484472049689441,2.48,a-cure-i1,2022-23,Greenfield - Greenfield High,01140505, 0.2, 2.0, 3.1, 20.7, 6.2, 0.0, 67.8, 50.2, 49.6, 0.2,32.2,5.0 +6.0,5,a-cure-i1,2022-23,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 2.7, 24.0, 4.3, 0.0, 68.0, 45.0, 55.0, 0.0,32.0,12.0 +2.73838630806846,2.74,a-cure-i1,2022-23,Greenfield - Newton School,01140035, 0.0, 0.5, 3.4, 31.0, 4.9, 1.0, 59.1, 51.2, 48.8, 0.0,40.9,7.0 +1,1,a-cure-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 1.2, 13.4, 9.8, 0.0, 75.6, 46.3, 53.7, 0.0,24.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 0.0, 6.4, 2.1, 2.1, 2.1, 0.0, 87.2, 41.5, 58.5, 0.0,12.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 0.6, 8.0, 2.5, 5.1, 4.9, 0.0, 78.9, 47.7, 52.3, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.1, 5.9, 1.3, 3.1, 2.2, 0.1, 87.2, 48.7, 51.0, 0.3,12.799999999999997,2.3 +1,1,a-cure-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.3, 8.0, 1.9, 3.9, 3.7, 0.1, 82.0, 47.3, 52.7, 0.0,18.0,2.0 +1,1,a-cure-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 7.9, 1.2, 7.3, 3.4, 0.0, 80.2, 45.1, 54.9, 0.0,19.799999999999997,0.0 +8.54298642533937,5,a-cure-i1,2022-23,Hadley - Hadley Elementary,01170015, 0.4, 5.5, 4.1, 9.6, 2.2, 0.4, 77.9, 43.5, 56.5, 0.0,22.099999999999994,11.8 +9.05785123966942,5,a-cure-i1,2022-23,Hadley - Hopkins Academy,01170505, 0.0, 3.1, 4.5, 10.3, 2.7, 3.6, 75.8, 50.7, 49.3, 0.0,24.200000000000003,13.7 +1,1,a-cure-i1,2022-23,Halifax - Halifax Elementary,01180005, 0.4, 0.0, 1.8, 5.3, 1.8, 0.0, 90.7, 47.1, 52.9, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 6.0, 0.8, 10.9, 1.5, 0.0, 80.8, 43.0, 57.0, 0.0,19.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 0.0, 1.2, 0.0, 5.9, 2.0, 0.0, 90.9, 51.2, 48.8, 0.0,9.099999999999994,0.0 +6.7096774193548345,5,a-cure-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 5.1, 0.4, 3.8, 3.1, 0.0, 87.6, 54.0, 45.8, 0.2,12.400000000000006,5.199999999999999 +12.129032258064509,5,a-cure-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 3.8, 0.3, 3.5, 4.0, 0.8, 87.6, 54.4, 45.6, 0.0,12.400000000000006,9.399999999999999 +1,1,a-cure-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 0.0, 5.4, 1.0, 4.8, 2.6, 0.0, 86.3, 50.5, 49.5, 0.0,13.700000000000003,0.0 +2.1108179419525066,2.11,a-cure-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.5, 3.3, 28.2, 41.0, 2.7, 0.0, 24.2, 47.4, 52.1, 0.5,75.8,10.0 +4.91743119266055,4.92,a-cure-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.3, 1.1, 11.7, 28.6, 1.9, 0.0, 56.4, 44.4, 55.6, 0.0,43.6,13.4 +1,1,a-cure-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 2.9, 12.6, 2.6, 0.0, 81.9, 47.6, 52.4, 0.0,18.099999999999994,0.0 +5.442176870748298,5,a-cure-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 1.7, 2.3, 5.6, 5.1, 0.0, 85.3, 47.2, 52.8, 0.0,14.700000000000003,5.0 +1,1,a-cure-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.3, 2.9, 4.0, 10.5, 4.4, 0.0, 77.9, 49.5, 50.4, 0.1,22.099999999999994,1.6 +1,1,a-cure-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 0.0, 2.6, 3.2, 6.5, 3.2, 0.6, 83.9, 51.6, 48.4, 0.0,16.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 1.7, 3.0, 7.9, 3.0, 0.0, 84.5, 46.5, 53.5, 0.0,15.5,0.0 +1,1,a-cure-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 2.5, 2.8, 10.0, 4.0, 0.0, 80.6, 48.1, 51.9, 0.0,19.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 0.2, 1.7, 0.6, 5.0, 2.7, 0.0, 89.9, 52.1, 47.1, 0.8,10.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Hancock - Hancock Elementary,01210005, 0.0, 3.4, 3.4, 5.1, 3.4, 0.0, 84.7, 61.0, 39.0, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Hanover - Cedar Elementary,01220004, 0.0, 0.9, 1.7, 3.8, 2.6, 0.0, 91.1, 46.6, 53.4, 0.0,8.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Hanover - Center Elementary,01220005, 0.2, 2.3, 1.4, 2.3, 0.9, 0.0, 92.8, 50.4, 49.5, 0.2,7.200000000000003,3.1 +1,1,a-cure-i1,2022-23,Hanover - Hanover High,01220505, 0.0, 2.8, 1.5, 2.1, 0.7, 0.0, 92.8, 48.4, 51.4, 0.1,7.200000000000003,3.8 +1,1,a-cure-i1,2022-23,Hanover - Hanover Middle,01220305, 0.0, 1.7, 1.0, 3.1, 1.1, 0.0, 93.0, 47.3, 52.7, 0.0,7.0,1.8 +4.806584362139918,4.81,a-cure-i1,2022-23,Harvard - Bromfield,01250505, 0.0, 14.1, 2.9, 3.2, 4.1, 0.0, 75.7, 50.9, 48.9, 0.2,24.299999999999997,7.3 +1,1,a-cure-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 0.2, 12.6, 2.6, 5.4, 8.5, 0.0, 70.7, 46.3, 53.7, 0.0,29.299999999999997,3.1 +1,1,a-cure-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 0.0, 0.9, 0.5, 2.8, 3.8, 0.0, 92.0, 51.9, 47.6, 0.5,8.0,0.0 +17.77777777777778,5,a-cure-i1,2022-23,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 3.8, 0.8, 0.0, 95.5, 41.4, 58.6, 0.0,4.5,5.0 +1,1,a-cure-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 11.4, 48.6, 2.9, 0.0, 37.1, 22.9, 77.1, 0.0,62.9,0.0 +2.519480519480519,2.52,a-cure-i1,2022-23,Haverhill - Bradford Elementary,01280008, 0.0, 1.4, 5.1, 53.1, 2.0, 0.0, 38.4, 43.9, 56.1, 0.0,61.6,9.7 +1,1,a-cure-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 2.1, 5.2, 27.9, 3.0, 0.0, 61.9, 48.3, 51.6, 0.1,38.1,3.3 +1,1,a-cure-i1,2022-23,Haverhill - Consentino Middle School,01280100, 0.0, 2.0, 4.9, 54.4, 3.6, 0.0, 35.1, 47.0, 53.0, 0.0,64.9,2.5 +2.3003194888178915,2.3,a-cure-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.9, 3.9, 54.2, 2.6, 0.0, 37.4, 48.6, 51.4, 0.0,62.6,9.0 +4.155143338954469,4.16,a-cure-i1,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 1.2, 4.9, 50.6, 2.5, 0.0, 40.7, 51.9, 48.1, 0.0,59.3,15.4 +1,1,a-cure-i1,2022-23,Haverhill - Golden Hill,01280026, 0.2, 1.9, 3.8, 44.6, 1.9, 0.0, 47.6, 52.6, 47.4, 0.0,52.4,0.0 +1,1,a-cure-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 3.1, 0.0, 6.3, 56.3, 3.1, 0.0, 31.3, 25.0, 75.0, 0.0,68.7,0.0 +4.176706827309237,4.18,a-cure-i1,2022-23,Haverhill - Haverhill High,01280505, 0.3, 1.8, 5.9, 39.9, 1.6, 0.3, 50.2, 47.2, 52.6, 0.3,49.8,13.0 +2.3572744014732967,2.36,a-cure-i1,2022-23,Haverhill - John G Whittier,01280085, 0.4, 1.2, 5.4, 44.4, 2.9, 0.0, 45.7, 48.6, 51.0, 0.4,54.3,8.0 +1,1,a-cure-i1,2022-23,Haverhill - Moody,01280045, 0.0, 3.3, 9.4, 39.4, 1.7, 1.1, 45.0, 41.1, 58.9, 0.0,55.0,0.0 +3.5918367346938775,3.59,a-cure-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 0.0, 2.0, 8.8, 51.0, 2.0, 0.0, 36.3, 42.2, 57.8, 0.0,63.7,14.3 +1,1,a-cure-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 0.4, 0.8, 9.6, 46.8, 2.9, 0.0, 39.5, 46.3, 53.7, 0.0,60.5,0.0 +1,1,a-cure-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 0.0, 3.2, 7.0, 50.1, 3.2, 0.0, 36.5, 52.9, 47.1, 0.0,63.5,3.8 +1.3215339233038348,1.32,a-cure-i1,2022-23,Haverhill - Tilton,01280075, 0.3, 0.0, 5.1, 59.7, 2.0, 0.7, 32.2, 48.5, 51.5, 0.0,67.8,5.6 +1,1,a-cure-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 0.0, 1.2, 3.5, 59.1, 2.9, 0.0, 33.3, 50.3, 49.7, 0.0,66.7,0.0 +1,1,a-cure-i1,2022-23,Haverhill - Walnut Square,01280080, 0.0, 1.5, 5.9, 36.0, 1.5, 0.0, 55.1, 46.3, 53.7, 0.0,44.9,0.0 +1,1,a-cure-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 1.1, 5.5, 0.0, 4.4, 1.1, 0.0, 87.9, 54.9, 45.1, 0.0,12.099999999999994,0.0 +11.92,5,a-cure-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.9, 77.2, 20.2, 0.9, 0.9, 0.0, 46.5, 53.5, 0.0,100.0,74.5 +3.8110882956878847,3.81,a-cure-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 5.9, 36.9, 5.9, 0.0, 51.3, 49.3, 50.7, 0.0,48.7,11.6 +1,1,a-cure-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.3, 0.0, 4.6, 11.1, 0.0, 82.0, 41.5, 56.2, 2.3,18.0,3.6 +1,1,a-cure-i1,2022-23,Hingham - East Elementary School,01310005, 0.0, 1.8, 1.8, 2.0, 2.2, 0.0, 92.2, 44.4, 55.6, 0.0,7.799999999999997,3.2 +1,1,a-cure-i1,2022-23,Hingham - Hingham High,01310505, 0.1, 3.6, 1.6, 3.8, 3.1, 0.0, 87.8, 46.9, 52.8, 0.3,12.200000000000003,0.9 +7.757575757575756,5,a-cure-i1,2022-23,Hingham - Hingham Middle School,01310410, 0.0, 2.3, 1.7, 5.0, 4.3, 0.0, 86.8, 49.3, 50.6, 0.1,13.200000000000003,6.4 +1,1,a-cure-i1,2022-23,Hingham - Plymouth River,01310019, 0.0, 1.8, 3.7, 5.0, 2.6, 0.3, 86.6, 49.1, 50.9, 0.0,13.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Hingham - South Elementary,01310020, 0.0, 5.0, 1.4, 1.8, 1.4, 0.0, 90.4, 49.4, 50.6, 0.0,9.599999999999994,3.7 +1,1,a-cure-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 0.0, 1.7, 1.0, 3.7, 6.9, 0.2, 86.4, 49.1, 50.9, 0.0,13.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 0.3, 7.2, 25.4, 17.5, 7.4, 0.0, 42.2, 46.8, 52.9, 0.3,57.8,0.0 +1,1,a-cure-i1,2022-23,Holbrook - John F Kennedy,01330018, 0.3, 4.7, 21.5, 17.2, 8.6, 0.0, 47.7, 49.0, 51.0, 0.0,52.3,0.0 +1,1,a-cure-i1,2022-23,Holland - Holland Elementary,01350005, 0.4, 1.3, 0.4, 4.8, 0.9, 0.0, 92.2, 49.4, 50.6, 0.0,7.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Holliston - Holliston High,01360505, 0.6, 7.6, 0.7, 7.2, 2.8, 0.4, 80.6, 47.7, 51.4, 1.0,19.400000000000006,2.6 +5.931707317073171,5,a-cure-i1,2022-23,Holliston - Miller School,01360007, 0.2, 10.4, 1.5, 5.0, 3.3, 0.2, 79.5, 48.5, 51.3, 0.2,20.5,7.6 +1,1,a-cure-i1,2022-23,Holliston - Placentino Elementary,01360010, 0.6, 12.8, 2.0, 1.7, 1.1, 0.9, 80.9, 44.4, 55.3, 0.3,19.099999999999994,3.4 +9.908256880733948,5,a-cure-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 0.6, 11.1, 1.2, 4.7, 4.0, 0.2, 78.2, 48.1, 51.5, 0.5,21.799999999999997,13.500000000000002 +7.28421052631579,5,a-cure-i1,2022-23,Holyoke - E N White Elementary,01370045, 0.0, 0.5, 3.9, 68.3, 3.4, 0.0, 24.0, 47.9, 52.1, 0.0,76.0,34.6 +1.1858216970998927,1.19,a-cure-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.6, 5.8, 84.4, 2.3, 0.0, 6.9, 49.1, 50.9, 0.0,93.1,6.9 +4.971231300345224,4.97,a-cure-i1,2022-23,Holyoke - Holyoke High,01370505, 0.0, 0.5, 3.4, 81.7, 1.3, 0.0, 13.1, 46.5, 53.2, 0.3,86.9,27.0 +4.29826353421859,4.3,a-cure-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 0.0, 0.7, 3.2, 93.6, 0.4, 0.0, 2.1, 46.6, 53.4, 0.0,97.9,26.299999999999997 +3.7811408614668216,3.78,a-cure-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.3, 2.8, 81.4, 1.4, 0.0, 14.1, 44.8, 55.2, 0.0,85.9,20.3 +11.102850061957868,5,a-cure-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 2.1, 77.2, 1.3, 0.0, 19.3, 51.2, 48.8, 0.0,80.7,56.0 +5.050882658359294,5,a-cure-i1,2022-23,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 4.6, 90.8, 0.9, 0.0, 3.7, 50.8, 49.2, 0.0,96.3,30.4 +3.903296703296703,3.9,a-cure-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 1.8, 2.8, 84.5, 2.0, 0.0, 9.0, 46.4, 53.6, 0.0,91.0,22.2 +2.8054794520547945,2.81,a-cure-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 2.1, 2.4, 65.3, 3.3, 0.0, 27.0, 44.2, 55.8, 0.0,73.0,12.8 +4.280936454849498,4.28,a-cure-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.6, 4.4, 83.1, 1.4, 0.3, 10.3, 41.4, 58.6, 0.0,89.7,24.0 +4.102145045965271,4.1,a-cure-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 4.6, 91.9, 1.4, 0.0, 2.1, 53.0, 47.0, 0.0,97.9,25.1 +5.11431742508324,5,a-cure-i1,2022-23,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 6.8, 78.6, 4.7, 0.0, 9.9, 47.9, 52.1, 0.0,90.1,28.799999999999997 +4.640837696335079,4.64,a-cure-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.7, 1.3, 92.6, 0.9, 0.0, 4.5, 53.9, 46.1, 0.0,95.5,27.7 +1,1,a-cure-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.3, 1.9, 5.3, 4.0, 0.3, 87.2, 46.5, 53.5, 0.0,12.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.3, 0.3, 3.7, 3.1, 3.1, 0.0, 89.5, 51.5, 48.5, 0.0,10.5,0.0 +1,1,a-cure-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 2.4, 4.5, 2.1, 0.0, 91.0, 49.3, 50.3, 0.3,9.0,0.0 +4.39378238341969,4.39,a-cure-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 0.2, 3.2, 1.8, 11.2, 2.3, 0.5, 80.7, 49.5, 49.8, 0.7,19.299999999999997,5.3 +1,1,a-cure-i1,2022-23,Hopedale - Memorial,01380010, 0.5, 1.6, 0.7, 11.7, 6.5, 0.0, 78.9, 46.2, 53.8, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Hopedale - Park Street School,01380003, 0.0, 2.9, 0.0, 8.8, 5.9, 0.0, 82.4, 44.1, 55.9, 0.0,17.599999999999994,0.0 +2.7719298245614037,2.77,a-cure-i1,2022-23,Hopkinton - Elmwood,01390010, 0.3, 34.4, 0.6, 4.3, 5.9, 0.0, 54.4, 48.8, 51.2, 0.0,45.6,7.9 +2.0395604395604394,2.04,a-cure-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 0.2, 34.1, 0.5, 4.9, 5.9, 0.0, 54.5, 50.2, 49.8, 0.0,45.5,5.8 +2.624605678233438,2.62,a-cure-i1,2022-23,Hopkinton - Hopkinton High,01390505, 0.2, 21.6, 1.1, 4.9, 3.8, 0.0, 68.3, 49.8, 49.8, 0.3,31.700000000000003,5.2 +1,1,a-cure-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 0.3, 27.8, 0.6, 3.6, 4.2, 0.0, 63.5, 49.0, 50.8, 0.2,36.5,4.6 +1,1,a-cure-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 37.4, 3.0, 8.1, 7.1, 0.0, 44.4, 47.5, 52.5, 0.0,55.6,0.0 +1.9779249448123621,1.98,a-cure-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 0.2, 30.4, 1.2, 5.2, 8.3, 0.0, 54.7, 47.0, 52.9, 0.2,45.3,5.6 +3.7866666666666666,3.79,a-cure-i1,2022-23,Hudson - C A Farley,01410030, 0.0, 1.4, 3.0, 22.3, 3.3, 0.0, 70.0, 52.3, 47.7, 0.0,30.0,7.1 +3.10077519379845,3.1,a-cure-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 0.2, 1.3, 2.0, 18.5, 3.9, 0.0, 74.2, 45.7, 53.9, 0.4,25.799999999999997,5.0 +1,1,a-cure-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 0.4, 0.7, 3.2, 19.4, 2.1, 0.0, 74.3, 50.4, 49.6, 0.0,25.700000000000003,0.0 +5.196581196581195,5,a-cure-i1,2022-23,Hudson - Hudson High,01410505, 0.1, 2.0, 2.8, 15.7, 2.6, 0.1, 76.6, 53.7, 46.0, 0.2,23.400000000000006,7.6 +1,1,a-cure-i1,2022-23,Hudson - Mulready Elementary,01410007, 0.0, 1.6, 2.9, 14.8, 2.9, 0.0, 77.8, 48.1, 51.9, 0.0,22.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Hull - Hull High,01420505, 0.0, 0.4, 1.7, 3.3, 1.2, 0.0, 93.4, 43.2, 55.6, 1.2,6.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Hull - Lillian M Jacobs,01420015, 0.3, 1.4, 2.8, 4.4, 2.8, 0.0, 88.4, 45.0, 55.0, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Hull - Memorial Middle,01420305, 0.6, 2.9, 1.7, 3.5, 2.9, 0.0, 88.4, 50.6, 49.4, 0.0,11.599999999999994,0.0 +5.473684210526316,5,a-cure-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.4, 9.0, 8.7, 14.1, 5.8, 0.0, 62.0, 50.2, 49.3, 0.5,38.0,13.0 +1,1,a-cure-i1,2022-23,Ipswich - Ipswich High,01440505, 0.2, 1.8, 1.8, 7.6, 3.6, 0.0, 85.1, 51.8, 48.0, 0.2,14.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 0.0, 1.4, 0.8, 6.9, 4.4, 0.0, 86.5, 51.1, 48.9, 0.0,13.5,3.6 +6.773722627737224,5,a-cure-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 0.5, 0.5, 0.3, 8.5, 3.8, 0.0, 86.3, 49.2, 50.8, 0.0,13.700000000000003,5.8 +1,1,a-cure-i1,2022-23,Ipswich - Winthrop,01440015, 0.0, 2.1, 1.1, 11.8, 4.6, 0.0, 80.4, 50.1, 49.9, 0.0,19.599999999999994,3.1 +1,1,a-cure-i1,2022-23,King Philip - King Philip Middle School,06900510, 0.3, 2.7, 2.2, 7.0, 4.3, 0.0, 83.4, 48.4, 51.2, 0.4,16.599999999999994,1.9 +1,1,a-cure-i1,2022-23,King Philip - King Philip Regional High,06900505, 0.2, 3.2, 3.1, 4.6, 3.2, 0.0, 85.6, 49.5, 50.3, 0.3,14.400000000000006,3.5999999999999996 +1,1,a-cure-i1,2022-23,Kingston - Kingston Elementary,01450005, 0.2, 0.6, 1.3, 4.0, 0.8, 0.2, 92.9, 43.9, 56.1, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Kingston - Kingston Intermediate,01450020, 0.2, 0.7, 1.2, 3.9, 1.5, 0.0, 92.6, 49.7, 50.3, 0.0,7.400000000000006,0.0 +11.842900302114804,5,a-cure-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.5, 0.0, 59.3, 36.9, 2.4, 0.2, 0.7, 49.9, 50.1, 0.0,99.3,73.5 +8.870116156282998,5,a-cure-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.2, 3.3, 16.1, 72.7, 2.2, 0.1, 5.3, 50.1, 49.8, 0.1,94.7,52.5 +1.4887525562372188,1.49,a-cure-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 0.0, 1.5, 2.2, 93.6, 0.5, 0.0, 2.2, 47.4, 52.1, 0.5,97.8,9.1 +2.6095820591233436,2.61,a-cure-i1,2022-23,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.9, 97.1, 0.0, 0.2, 1.9, 48.5, 50.4, 1.0,98.1,16.0 +1.894736842105263,1.89,a-cure-i1,2022-23,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.5, 97.9, 0.3, 0.0, 1.2, 48.0, 52.0, 0.0,98.8,11.7 +0.9284974093264248,1,a-cure-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 0.0, 0.1, 1.6, 93.9, 0.7, 0.0, 3.5, 45.9, 53.8, 0.3,96.5,5.6 +3.1047227926078023,3.1,a-cure-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.4, 0.8, 94.7, 0.4, 0.0, 2.6, 50.3, 49.5, 0.2,97.4,18.9 +1,1,a-cure-i1,2022-23,Lawrence - Francis M Leahy,01490040, 0.3, 0.0, 1.1, 97.4, 0.0, 0.0, 1.3, 44.5, 55.5, 0.0,98.7,4.0 +4.0085653104925045,4.01,a-cure-i1,2022-23,Lawrence - Frost Middle School,01490525, 0.0, 1.9, 1.6, 89.5, 0.4, 0.0, 6.6, 50.2, 49.6, 0.2,93.4,23.4 +1,1,a-cure-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.5, 1.5, 94.0, 0.4, 0.2, 2.5, 45.5, 54.5, 0.0,97.5,0.5 +2.907614213197969,2.91,a-cure-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 0.0, 1.3, 2.4, 94.6, 0.2, 0.0, 1.5, 48.8, 51.0, 0.2,98.5,17.9 +4.654545454545454,4.65,a-cure-i1,2022-23,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.3, 98.7, 0.0, 0.0, 1.0, 40.3, 59.4, 0.3,99.0,28.799999999999997 +3.6432318992654773,3.64,a-cure-i1,2022-23,Lawrence - James F Hennessey,01490020, 0.0, 0.3, 2.5, 92.1, 0.3, 0.0, 4.7, 43.5, 56.5, 0.0,95.3,21.7 +2.8126315789473684,2.81,a-cure-i1,2022-23,Lawrence - John Breen School,01490003, 0.0, 2.7, 2.3, 89.5, 0.4, 0.0, 5.0, 39.5, 60.5, 0.0,95.0,16.7 +0.9161554192229039,1,a-cure-i1,2022-23,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.4, 97.1, 0.4, 0.0, 2.2, 44.4, 55.6, 0.0,97.8,5.6 +1,1,a-cure-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.6, 1.2, 95.7, 0.0, 0.0, 2.4, 50.0, 50.0, 0.0,97.6,0.0 +3.322949117341641,3.32,a-cure-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.5, 1.6, 93.1, 0.5, 0.5, 3.7, 45.0, 55.0, 0.0,96.3,20.0 +5.20777891504606,5,a-cure-i1,2022-23,Lawrence - Lawrence High School,01490515, 0.0, 1.6, 1.2, 94.5, 0.4, 0.0, 2.3, 46.4, 53.2, 0.4,97.7,31.8 +4.048582995951417,4.05,a-cure-i1,2022-23,Lawrence - Leonard Middle School,01490090, 0.0, 0.0, 0.6, 98.2, 0.0, 0.0, 1.2, 47.4, 52.6, 0.0,98.8,25.0 +5.914460285132383,5,a-cure-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 1.6, 96.1, 0.5, 0.0, 1.8, 49.2, 50.8, 0.0,98.2,36.3 +2.245614035087719,2.25,a-cure-i1,2022-23,Lawrence - Oliver Middle School,01490049, 0.0, 0.9, 1.4, 94.6, 0.0, 0.0, 3.1, 45.9, 54.1, 0.0,96.9,13.6 +2.1477627471383975,2.15,a-cure-i1,2022-23,Lawrence - Parthum Middle School,01490027, 0.0, 0.4, 1.2, 94.4, 0.2, 0.0, 3.9, 48.2, 51.8, 0.0,96.1,12.899999999999999 +5.686354378818737,5,a-cure-i1,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 96.4, 1.8, 0.0, 1.8, 19.6, 80.4, 0.0,98.2,34.9 +1.6905016008537883,1.69,a-cure-i1,2022-23,Lawrence - Robert Frost,01490018, 0.0, 3.1, 2.3, 87.1, 1.2, 0.0, 6.3, 50.3, 49.3, 0.3,93.7,9.899999999999999 +7.175257731958763,5,a-cure-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.5, 2.0, 93.6, 1.0, 0.0, 3.0, 43.6, 56.4, 0.0,97.0,43.5 +6.327497425334706,5,a-cure-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 4.9, 92.2, 0.0, 0.0, 2.9, 13.7, 86.3, 0.0,97.1,38.4 +2.236024844720497,2.24,a-cure-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 3.1, 1.4, 91.3, 0.9, 0.0, 3.4, 50.5, 49.3, 0.2,96.6,13.5 +4.785046728971963,4.79,a-cure-i1,2022-23,Lawrence - Spark Academy,01490085, 0.0, 1.1, 0.5, 94.7, 0.0, 0.0, 3.7, 44.4, 55.6, 0.0,96.3,28.8 +3.6092648539778454,3.61,a-cure-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.2, 98.8, 0.2, 0.0, 0.7, 54.9, 45.1, 0.0,99.3,22.400000000000002 +3.153039832285115,3.15,a-cure-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.9, 45.3, 46.8, 2.4, 0.0, 4.6, 50.5, 49.5, 0.0,95.4,18.8 +1,1,a-cure-i1,2022-23,Lee - Lee Elementary,01500025, 0.3, 2.3, 1.2, 10.6, 2.1, 0.0, 83.6, 48.7, 51.3, 0.0,16.400000000000006,2.8 +4.943820224719102,4.94,a-cure-i1,2022-23,Lee - Lee Middle/High School,01500505, 0.0, 3.1, 0.6, 11.1, 3.1, 0.0, 82.2, 45.5, 54.2, 0.3,17.799999999999997,5.5 +1,1,a-cure-i1,2022-23,Leicester - Leicester Elementary,01510005, 0.2, 3.2, 5.9, 20.5, 3.2, 0.0, 66.9, 50.7, 49.3, 0.0,33.099999999999994,0.0 +3.7509157509157514,3.75,a-cure-i1,2022-23,Leicester - Leicester High,01510505, 0.0, 3.1, 5.8, 16.2, 2.2, 0.0, 72.7, 45.9, 54.1, 0.0,27.299999999999997,6.4 +1,1,a-cure-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 5.3, 21.1, 2.6, 0.0, 71.1, 42.1, 57.9, 0.0,28.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Leicester - Leicester Middle,01510015, 0.2, 3.9, 5.6, 14.9, 4.2, 0.0, 71.1, 45.0, 54.8, 0.2,28.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Lenox - Lenox Memorial High,01520505, 0.0, 4.2, 0.7, 9.3, 3.5, 0.0, 82.4, 47.8, 52.2, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Lenox - Morris,01520015, 0.0, 7.1, 0.9, 9.1, 5.3, 0.9, 76.7, 46.0, 54.0, 0.0,23.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Leominster - Bennett,01530003, 0.0, 2.1, 12.8, 23.4, 9.6, 0.0, 52.1, 44.7, 55.3, 0.0,47.9,0.0 +1,1,a-cure-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 0.0, 2.1, 9.4, 40.5, 2.9, 0.1, 45.0, 35.0, 64.9, 0.1,55.0,0.0 +2.176245210727969,2.18,a-cure-i1,2022-23,Leominster - Fall Brook,01530007, 0.0, 2.6, 7.8, 35.9, 5.9, 0.0, 47.8, 45.2, 54.6, 0.2,52.2,7.1 +1,1,a-cure-i1,2022-23,Leominster - Frances Drake School,01530010, 0.0, 3.7, 9.5, 45.8, 4.5, 0.0, 36.6, 48.8, 51.2, 0.0,63.4,0.0 +1,1,a-cure-i1,2022-23,Leominster - Johnny Appleseed,01530025, 0.0, 3.2, 9.7, 36.9, 5.0, 0.0, 45.2, 50.4, 49.6, 0.0,54.8,2.9 +13.600000000000001,5,a-cure-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 6.0, 22.0, 8.0, 0.0, 64.0, 60.0, 34.0, 6.0,36.0,30.6 +1.8419243986254292,1.84,a-cure-i1,2022-23,Leominster - Leominster High School,01530505, 0.2, 5.6, 9.7, 39.5, 3.3, 0.0, 41.8, 55.8, 43.9, 0.3,58.2,6.699999999999999 +1,1,a-cure-i1,2022-23,Leominster - Lincoln School,01530005, 0.0, 6.7, 13.3, 56.7, 6.7, 0.0, 16.7, 46.7, 53.3, 0.0,83.3,0.0 +1,1,a-cure-i1,2022-23,Leominster - Northwest,01530030, 0.0, 3.6, 7.0, 48.4, 4.0, 0.0, 37.0, 51.7, 48.3, 0.0,63.0,0.0 +1,1,a-cure-i1,2022-23,Leominster - Priest Street,01530040, 0.0, 1.5, 14.2, 47.8, 4.5, 0.0, 32.1, 47.0, 53.0, 0.0,67.9,0.0 +1.457092819614711,1.46,a-cure-i1,2022-23,Leominster - Samoset School,01530045, 0.0, 2.4, 8.3, 41.5, 5.0, 0.0, 42.9, 45.2, 54.8, 0.0,57.1,5.2 +1,1,a-cure-i1,2022-23,Leominster - Sky View Middle School,01530320, 0.2, 1.9, 8.9, 44.6, 5.9, 0.0, 38.5, 49.3, 50.7, 0.0,61.5,3.1 +1,1,a-cure-i1,2022-23,Leverett - Leverett Elementary,01540005, 0.0, 0.7, 0.0, 2.1, 11.3, 0.0, 85.8, 51.1, 48.9, 0.0,14.200000000000003,0.0 +8.39087947882736,5,a-cure-i1,2022-23,Lexington - Bowman,01550008, 0.0, 41.9, 4.2, 5.3, 10.0, 0.0, 38.6, 48.8, 51.2, 0.0,61.4,32.199999999999996 +2.0258992805755396,2.03,a-cure-i1,2022-23,Lexington - Bridge,01550006, 0.0, 44.1, 6.7, 9.1, 9.6, 0.0, 30.5, 51.3, 48.7, 0.0,69.5,8.8 +2.612844036697248,2.61,a-cure-i1,2022-23,Lexington - Fiske,01550015, 0.3, 35.8, 2.6, 4.7, 11.1, 0.0, 45.5, 47.2, 52.8, 0.0,54.5,8.9 +4.226415094339623,4.23,a-cure-i1,2022-23,Lexington - Harrington,01550030, 0.0, 44.7, 6.6, 5.6, 6.8, 0.0, 36.4, 51.8, 48.2, 0.0,63.6,16.8 +3.9799666110183645,3.98,a-cure-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 0.1, 44.3, 4.5, 4.3, 6.7, 0.0, 40.1, 49.0, 50.9, 0.1,59.9,14.900000000000002 +1,1,a-cure-i1,2022-23,Lexington - Joseph Estabrook,01550010, 0.0, 45.4, 3.7, 5.9, 11.6, 0.0, 33.4, 48.0, 52.0, 0.0,66.6,4.1 +1,1,a-cure-i1,2022-23,Lexington - Lexington Children's Place,01550001, 0.0, 64.0, 4.0, 5.3, 4.0, 0.0, 22.7, 49.3, 50.7, 0.0,77.3,0.0 +4.006633499170813,4.01,a-cure-i1,2022-23,Lexington - Lexington High,01550505, 0.0, 45.5, 3.7, 4.3, 6.6, 0.0, 39.7, 50.1, 49.6, 0.3,60.3,15.1 +3.560975609756098,3.56,a-cure-i1,2022-23,Lexington - Maria Hastings,01550035, 0.0, 47.3, 3.2, 5.9, 9.2, 0.0, 34.4, 49.0, 51.0, 0.0,65.6,14.600000000000001 +3.6963696369636962,3.7,a-cure-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 0.0, 44.2, 3.5, 4.7, 8.2, 0.1, 39.4, 47.0, 52.9, 0.1,60.6,14.0 +6.4896265560165975,5,a-cure-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.7, 0.5, 10.7, 81.0, 3.4, 0.0, 3.6, 48.9, 51.1, 0.0,96.4,39.1 +1,1,a-cure-i1,2022-23,Lincoln - Hanscom Middle,01570305, 0.4, 3.6, 6.3, 25.4, 8.5, 0.9, 54.9, 47.3, 52.7, 0.0,45.1,2.0 +1,1,a-cure-i1,2022-23,Lincoln - Hanscom Primary,01570006, 0.0, 2.5, 3.8, 22.6, 11.3, 0.0, 59.8, 50.2, 49.8, 0.0,40.2,4.8 +2.458797327394209,2.46,a-cure-i1,2022-23,Lincoln - Lincoln School,01570025, 0.0, 8.6, 11.4, 11.8, 13.1, 0.0, 55.1, 49.3, 50.6, 0.2,44.9,6.8999999999999995 +6.171428571428572,5,a-cure-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 6.0, 5.9, 6.3, 9.6, 0.2, 72.0, 51.1, 48.5, 0.5,28.0,10.8 +1,1,a-cure-i1,2022-23,Littleton - Littleton High School,01580505, 0.2, 11.9, 2.5, 4.2, 3.3, 0.0, 77.9, 50.4, 49.0, 0.6,22.099999999999994,3.0 +1,1,a-cure-i1,2022-23,Littleton - Littleton Middle School,01580305, 0.3, 13.0, 0.8, 4.4, 1.0, 0.8, 79.7, 50.4, 49.6, 0.0,20.299999999999997,1.3 +1,1,a-cure-i1,2022-23,Littleton - Russell St Elementary,01580015, 0.0, 16.5, 0.3, 2.6, 1.5, 0.8, 78.4, 49.1, 50.6, 0.3,21.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 0.0, 17.7, 0.9, 3.2, 2.5, 0.2, 75.5, 46.3, 53.7, 0.0,24.5,3.9 +1,1,a-cure-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 0.0, 14.8, 2.0, 4.8, 6.9, 0.0, 71.4, 52.3, 47.7, 0.0,28.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Longmeadow - Center,01590010, 0.0, 3.3, 2.6, 8.3, 3.8, 0.0, 82.1, 49.5, 50.5, 0.0,17.900000000000006,3.4 +1,1,a-cure-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 0.0, 11.4, 6.6, 6.3, 6.0, 0.0, 69.6, 47.6, 52.4, 0.0,30.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Longmeadow - Longmeadow High,01590505, 0.0, 11.3, 2.4, 7.4, 3.3, 0.3, 75.2, 49.0, 50.3, 0.7,24.799999999999997,3.2 +5.4296028880866425,5,a-cure-i1,2022-23,Longmeadow - Williams Middle,01590305, 0.0, 12.4, 2.5, 8.5, 4.3, 0.0, 72.3, 42.2, 57.4, 0.4,27.700000000000003,9.4 +1,1,a-cure-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 0.0, 9.9, 4.3, 9.7, 3.6, 0.0, 72.5, 47.7, 52.3, 0.0,27.5,0.0 +1.9636363636363638,1.96,a-cure-i1,2022-23,Lowell - Abraham Lincoln,01600020, 0.4, 41.3, 4.9, 36.2, 4.9, 0.4, 12.0, 50.8, 49.2, 0.0,88.0,10.8 +5.172932330827068,5,a-cure-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 0.0, 30.2, 7.4, 38.3, 3.9, 0.0, 20.2, 51.4, 48.6, 0.0,79.8,25.8 +0.9337822671156005,1,a-cure-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 0.2, 34.4, 10.3, 40.7, 3.4, 0.0, 10.9, 51.0, 49.0, 0.0,89.1,5.2 +1,1,a-cure-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 23.2, 17.2, 32.3, 7.1, 0.0, 20.2, 47.5, 52.5, 0.0,79.8,0.0 +1.9910313901345293,1.99,a-cure-i1,2022-23,Lowell - Charles W Morey,01600030, 0.0, 58.8, 4.0, 21.8, 4.6, 0.0, 10.8, 51.8, 48.2, 0.0,89.2,11.100000000000001 +1,1,a-cure-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 27.9, 11.0, 44.3, 3.2, 0.0, 13.7, 49.1, 50.9, 0.0,86.3,0.0 +1.22911051212938,1.23,a-cure-i1,2022-23,Lowell - Dr An Wang School,01600345, 0.0, 20.9, 8.5, 40.5, 4.2, 0.0, 25.8, 48.1, 51.7, 0.2,74.2,5.7 +1,1,a-cure-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 0.0, 39.1, 7.6, 25.2, 5.0, 0.0, 23.0, 46.5, 53.5, 0.0,77.0,3.7 +1,1,a-cure-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 1.8, 14.5, 12.7, 30.9, 5.5, 0.0, 34.5, 21.8, 78.2, 0.0,65.5,0.0 +1.382716049382716,1.38,a-cure-i1,2022-23,Lowell - Greenhalge,01600015, 0.0, 11.8, 10.8, 54.1, 4.2, 0.0, 19.0, 48.0, 52.0, 0.0,81.0,7.0 +4.831372549019608,4.83,a-cure-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 0.3, 11.1, 9.0, 53.4, 2.7, 0.0, 23.5, 50.1, 49.8, 0.2,76.5,23.1 +1.3840104849279162,1.38,a-cure-i1,2022-23,Lowell - James S Daley Middle School,01600315, 0.0, 48.2, 4.5, 19.0, 4.6, 0.0, 23.7, 45.8, 54.0, 0.1,76.3,6.6000000000000005 +2.107091172214183,2.11,a-cure-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 0.0, 12.2, 6.1, 46.8, 3.9, 0.2, 30.9, 48.5, 51.4, 0.2,69.1,9.100000000000001 +1,1,a-cure-i1,2022-23,Lowell - John J Shaughnessy,01600050, 0.0, 26.3, 5.2, 43.4, 4.4, 0.0, 20.7, 47.4, 52.6, 0.0,79.3,3.6 +2.330708661417323,2.33,a-cure-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 0.0, 15.0, 8.2, 47.7, 5.4, 0.0, 23.8, 50.2, 49.8, 0.0,76.2,11.100000000000001 +1.6507936507936507,1.65,a-cure-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.3, 45.8, 3.3, 35.5, 3.0, 0.2, 11.8, 44.7, 55.1, 0.2,88.2,9.1 +4.603421461897356,4.6,a-cure-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 14.3, 35.7, 14.3, 0.0, 35.7, 21.4, 78.6, 0.0,64.3,18.5 +2.891820580474934,2.89,a-cure-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 9.1, 54.5, 12.1, 0.0, 24.2, 27.3, 72.7, 0.0,75.8,13.7 +3.5098039215686274,3.51,a-cure-i1,2022-23,Lowell - Lowell High,01600505, 0.0, 29.0, 9.3, 39.4, 3.7, 0.0, 18.4, 46.2, 53.6, 0.2,81.6,17.9 +1.7410468319559231,1.74,a-cure-i1,2022-23,Lowell - Moody Elementary,01600027, 0.4, 10.4, 8.3, 51.5, 2.1, 0.0, 27.4, 52.7, 46.9, 0.4,72.6,7.9 +1,1,a-cure-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 0.0, 22.7, 8.2, 31.1, 5.2, 0.0, 32.8, 49.1, 50.9, 0.0,67.2,4.2 +2.3587921847246895,2.36,a-cure-i1,2022-23,Lowell - Peter W Reilly,01600040, 0.0, 9.7, 3.9, 37.3, 5.4, 0.0, 43.7, 52.4, 47.6, 0.0,56.3,8.3 +1.5646687697160884,1.56,a-cure-i1,2022-23,Lowell - Pyne Arts,01600018, 0.0, 14.5, 4.6, 40.4, 4.0, 0.0, 36.6, 46.9, 53.1, 0.0,63.4,6.2 +1.9095477386934674,1.91,a-cure-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 0.2, 19.5, 8.6, 47.1, 4.1, 0.1, 20.4, 47.9, 52.1, 0.0,79.6,9.5 +1.7879656160458453,1.79,a-cure-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 0.2, 7.7, 6.0, 52.3, 3.5, 0.0, 30.2, 51.5, 48.5, 0.0,69.8,7.8 +1,1,a-cure-i1,2022-23,Lowell - The Career Academy,01600515, 0.0, 17.0, 13.6, 39.8, 8.0, 0.0, 21.6, 34.1, 65.9, 0.0,78.4,0.0 +1.1568627450980393,1.16,a-cure-i1,2022-23,Lowell - Washington,01600055, 0.4, 43.0, 5.3, 25.4, 7.4, 0.0, 18.4, 41.8, 58.2, 0.0,81.6,5.9 +4.456776947705443,4.46,a-cure-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 17.0, 25.8, 47.8, 3.1, 0.0, 6.3, 50.9, 49.0, 0.1,93.7,26.099999999999998 +4.473118279569893,4.47,a-cure-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 6.0, 2.4, 54.2, 2.4, 0.0, 34.9, 55.4, 42.2, 2.4,65.1,18.2 +1,1,a-cure-i1,2022-23,Ludlow - East Street Elementary School,01610010, 0.0, 2.2, 1.6, 15.4, 5.3, 0.0, 75.5, 45.0, 55.0, 0.0,24.5,0.0 +1,1,a-cure-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 0.0, 1.2, 1.7, 15.3, 4.4, 0.0, 77.4, 47.2, 52.8, 0.0,22.599999999999994,4.2 +1,1,a-cure-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 0.0, 0.9, 1.6, 10.8, 2.6, 0.0, 84.0, 49.9, 49.9, 0.1,16.0,2.7 +1,1,a-cure-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 0.2, 1.0, 1.9, 17.8, 2.5, 0.0, 76.6, 51.0, 49.0, 0.0,23.400000000000006,2.4 +1,1,a-cure-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 60.0, 40.0, 0.0,0.0,0.0 +1,1,a-cure-i1,2022-23,Lunenburg - Lunenburg High,01620505, 0.5, 2.0, 0.9, 9.1, 3.2, 0.7, 83.6, 47.3, 52.5, 0.2,16.400000000000006,3.0 +1,1,a-cure-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 0.0, 2.1, 2.9, 11.3, 5.0, 0.3, 78.4, 48.7, 51.1, 0.3,21.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 3.4, 11.5, 4.4, 0.5, 79.2, 50.3, 49.7, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.8, 2.5, 8.5, 2.0, 0.3, 85.8, 50.7, 49.3, 0.0,14.200000000000003,0.0 +2.1645021645021645,2.16,a-cure-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 0.0, 9.2, 3.9, 77.5, 1.8, 0.0, 7.6, 53.1, 46.9, 0.0,92.4,12.5 +1.5542857142857143,1.55,a-cure-i1,2022-23,Lynn - Aborn,01630011, 0.9, 11.1, 6.0, 45.2, 6.9, 0.0, 30.0, 48.4, 51.6, 0.0,70.0,6.8 +2.0463065049614113,2.05,a-cure-i1,2022-23,Lynn - Breed Middle School,01630405, 0.1, 7.9, 7.1, 72.5, 3.0, 0.0, 9.3, 46.8, 53.2, 0.1,90.7,11.600000000000001 +2.600896860986547,2.6,a-cure-i1,2022-23,Lynn - Brickett Elementary,01630020, 0.0, 10.2, 8.9, 66.2, 3.9, 0.0, 10.8, 46.6, 53.1, 0.3,89.2,14.5 +1.875,1.88,a-cure-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 0.0, 8.1, 13.5, 35.0, 7.4, 0.0, 36.0, 39.1, 60.9, 0.0,64.0,7.5 +2.202502844141069,2.2,a-cure-i1,2022-23,Lynn - Classical High,01630505, 0.0, 7.9, 7.4, 70.1, 2.5, 0.0, 12.1, 45.9, 54.0, 0.1,87.9,12.1 +1.2892561983471074,1.29,a-cure-i1,2022-23,Lynn - Cobbet Elementary,01630035, 0.2, 3.2, 7.6, 84.6, 1.3, 0.0, 3.2, 44.0, 56.0, 0.0,96.8,7.8 +2.0395604395604394,2.04,a-cure-i1,2022-23,Lynn - E J Harrington,01630045, 0.0, 4.6, 8.8, 75.4, 2.2, 0.0, 9.0, 48.0, 52.0, 0.0,91.0,11.6 +1,1,a-cure-i1,2022-23,Lynn - Edward A Sisson,01630095, 1.2, 11.4, 7.5, 51.7, 4.6, 0.0, 23.5, 49.8, 50.2, 0.0,76.5,3.5 +1.8823529411764703,1.88,a-cure-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 2.6, 9.0, 61.5, 5.1, 0.0, 21.8, 35.9, 62.8, 1.3,78.2,9.2 +4.600858369098712,4.6,a-cure-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 6.8, 4.1, 78.1, 4.1, 0.0, 6.8, 43.8, 54.8, 1.4,93.2,26.8 +2.8161434977578472,2.82,a-cure-i1,2022-23,Lynn - Hood,01630055, 0.2, 8.2, 7.5, 71.9, 1.3, 0.0, 10.8, 50.4, 49.6, 0.0,89.2,15.7 +1.3964248159831758,1.4,a-cure-i1,2022-23,Lynn - Ingalls,01630060, 0.3, 6.0, 7.3, 80.1, 1.3, 0.0, 4.9, 47.8, 52.2, 0.0,95.1,8.3 +1.3640552995391706,1.36,a-cure-i1,2022-23,Lynn - Julia F Callahan,01630030, 0.0, 8.2, 10.7, 64.9, 3.0, 0.0, 13.2, 43.8, 56.2, 0.0,86.8,7.4 +1.2896725440806045,1.29,a-cure-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 0.0, 13.2, 3.7, 57.7, 4.8, 0.0, 20.6, 51.3, 48.7, 0.0,79.4,6.4 +3.158351409978308,3.16,a-cure-i1,2022-23,Lynn - Lynn English High,01630510, 0.2, 7.1, 8.5, 73.7, 2.7, 0.0, 7.8, 46.4, 53.3, 0.3,92.2,18.2 +1.2559726962457338,1.26,a-cure-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 0.5, 4.6, 5.6, 74.1, 3.2, 0.0, 12.1, 46.3, 53.5, 0.2,87.9,6.9 +1,1,a-cure-i1,2022-23,Lynn - Lynn Woods,01630075, 0.7, 9.5, 0.7, 42.6, 3.4, 0.0, 43.2, 50.7, 49.3, 0.0,56.8,0.0 +2.5860709592641267,2.59,a-cure-i1,2022-23,Lynn - Pickering Middle,01630420, 0.5, 8.9, 6.3, 55.3, 5.1, 0.0, 23.9, 48.0, 52.0, 0.0,76.1,12.3 +1.7343251859723698,1.73,a-cure-i1,2022-23,Lynn - Robert L Ford,01630050, 0.2, 4.2, 7.4, 80.7, 1.5, 0.0, 5.9, 51.2, 48.8, 0.0,94.1,10.2 +1,1,a-cure-i1,2022-23,Lynn - Sewell-Anderson,01630085, 0.4, 6.7, 8.9, 59.9, 4.5, 0.0, 19.7, 55.4, 44.6, 0.0,80.3,0.0 +2.8758169934640523,2.88,a-cure-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 0.3, 6.8, 7.9, 74.1, 2.6, 0.0, 8.2, 48.0, 52.0, 0.0,91.8,16.5 +1,1,a-cure-i1,2022-23,Lynn - Tracy,01630100, 0.6, 3.3, 4.1, 86.7, 1.4, 0.0, 3.9, 48.1, 51.9, 0.0,96.1,0.0 +5.213270142180095,5,a-cure-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 15.6, 12.5, 56.3, 0.0, 0.0, 15.6, 37.5, 62.5, 0.0,84.4,27.5 +1.6638655462184875,1.66,a-cure-i1,2022-23,Lynn - Washington Elementary School,01630005, 0.0, 4.6, 12.7, 75.5, 2.4, 0.0, 4.8, 49.8, 50.2, 0.0,95.2,9.9 +1,1,a-cure-i1,2022-23,Lynn - William R Fallon,01630080, 0.0, 0.0, 14.8, 48.1, 18.5, 0.0, 18.5, 11.1, 88.9, 0.0,81.5,0.9 +2.331573389651531,2.33,a-cure-i1,2022-23,Lynn - Wm P Connery,01630040, 0.0, 7.9, 5.1, 80.6, 1.1, 0.0, 5.3, 54.1, 45.9, 0.0,94.7,13.8 +1,1,a-cure-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 0.0, 9.8, 3.7, 7.2, 6.8, 0.0, 72.4, 52.1, 47.9, 0.0,27.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Lynnfield - Lynnfield High,01640505, 0.0, 7.8, 1.9, 8.3, 2.3, 0.0, 79.6, 49.0, 50.8, 0.2,20.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 0.0, 7.6, 2.0, 7.4, 3.9, 0.0, 79.1, 48.0, 51.9, 0.1,20.900000000000006,0.0 +25.990243902439023,5,a-cure-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, 7.7, 2.6, 5.1, 5.1, 0.0, 79.5, 48.7, 51.3, 0.0,20.5,33.3 +1,1,a-cure-i1,2022-23,Lynnfield - Summer Street,01640020, 0.0, 4.0, 1.0, 2.9, 4.3, 0.0, 87.9, 49.4, 50.6, 0.0,12.099999999999994,0.0 +3.929411764705882,3.93,a-cure-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 63.0, 2.0, 2.0, 0.0, 1.0, 32.0, 49.0, 51.0, 0.0,68.0,16.7 +1.1926863572433193,1.19,a-cure-i1,2022-23,Malden - Beebe,01650003, 0.7, 31.9, 12.9, 20.2, 5.2, 0.1, 28.9, 47.6, 52.4, 0.0,71.1,5.3 +2.0460358056265986,2.05,a-cure-i1,2022-23,Malden - Ferryway,01650013, 0.7, 19.7, 19.2, 35.0, 3.4, 0.2, 21.8, 50.1, 49.9, 0.0,78.2,10.0 +1,1,a-cure-i1,2022-23,Malden - Forestdale,01650027, 0.0, 12.1, 15.7, 24.9, 5.9, 0.0, 41.4, 45.6, 54.2, 0.2,58.6,0.0 +2.2459893048128343,2.25,a-cure-i1,2022-23,Malden - Linden,01650047, 0.7, 26.1, 19.4, 24.0, 4.4, 0.1, 25.2, 46.3, 53.7, 0.0,74.8,10.5 +1,1,a-cure-i1,2022-23,Malden - Malden Early Learning Center,01650049, 0.0, 34.3, 18.0, 10.9, 3.3, 0.0, 33.5, 40.6, 59.4, 0.0,66.5,0.0 +3.0625,3.06,a-cure-i1,2022-23,Malden - Malden High,01650505, 0.3, 21.9, 19.9, 31.3, 3.5, 0.0, 23.2, 50.6, 49.3, 0.1,76.8,14.7 +3.183879093198992,3.18,a-cure-i1,2022-23,Malden - Salemwood,01650057, 0.4, 15.2, 20.3, 40.4, 3.0, 0.0, 20.6, 49.4, 50.6, 0.0,79.4,15.799999999999999 +1,1,a-cure-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 1.7, 3.5, 0.9, 0.0, 93.9, 58.0, 42.0, 0.0,6.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.4, 0.0, 1.0, 0.7, 0.0, 96.9, 49.8, 50.0, 0.2,3.0999999999999943,0.0 +1,1,a-cure-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.4, 1.1, 1.8, 0.0, 0.0, 96.8, 51.2, 48.8, 0.0,3.200000000000003,4.0 +1,1,a-cure-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 1.4, 1.0, 2.4, 2.1, 0.0, 93.1, 51.2, 48.8, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Mansfield - Everett W Robinson,01670007, 0.3, 8.4, 4.0, 7.8, 4.9, 0.0, 74.7, 50.4, 49.6, 0.0,25.299999999999997,2.5 +1,1,a-cure-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 0.0, 9.7, 5.7, 5.7, 5.4, 0.0, 73.4, 46.6, 53.4, 0.0,26.599999999999994,3.5999999999999996 +1,1,a-cure-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 0.3, 8.5, 4.4, 6.4, 5.1, 0.1, 75.1, 48.0, 51.8, 0.1,24.900000000000006,2.6 +5.032863849765259,5,a-cure-i1,2022-23,Mansfield - Mansfield High,01670505, 0.1, 7.2, 4.5, 6.9, 2.7, 0.0, 78.7, 47.0, 52.7, 0.3,21.299999999999997,6.7 +1,1,a-cure-i1,2022-23,Mansfield - Roland Green School,01670003, 0.0, 6.6, 4.4, 2.2, 2.2, 0.0, 84.6, 39.6, 60.4, 0.0,15.400000000000006,0.0 +6.918918918918917,5,a-cure-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 2.0, 1.2, 4.0, 13.5, 4.8, 0.4, 74.1, 41.8, 54.2, 4.0,25.900000000000006,11.2 +1,1,a-cure-i1,2022-23,Marblehead - Glover,01680020, 0.0, 1.5, 0.9, 6.1, 5.2, 0.0, 86.2, 45.4, 54.6, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 1.6, 0.7, 8.8, 6.1, 0.0, 82.9, 45.9, 54.1, 0.0,17.099999999999994,4.0 +5.8364779874213815,5,a-cure-i1,2022-23,Marblehead - Marblehead High,01680505, 0.1, 1.8, 3.8, 7.5, 2.6, 0.1, 84.1, 49.5, 49.8, 0.7,15.900000000000006,5.8 +1,1,a-cure-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.2, 3.8, 7.7, 5.0, 0.0, 82.3, 45.9, 54.1, 0.0,17.700000000000003,2.5 +1,1,a-cure-i1,2022-23,Marblehead - Village School,01680016, 0.0, 2.2, 2.0, 6.8, 3.4, 0.0, 85.6, 48.5, 51.5, 0.0,14.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 2.2, 6.3, 11.2, 6.3, 0.0, 74.1, 48.7, 51.3, 0.0,25.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Marion - Sippican,01690005, 0.0, 1.7, 3.0, 5.7, 7.4, 0.0, 82.1, 47.1, 52.9, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.1, 3.8, 61.8, 2.8, 0.0, 30.5, 50.5, 49.5, 0.0,69.5,4.7 +1,1,a-cure-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 0.0, 1.1, 5.0, 48.6, 6.1, 0.0, 39.2, 48.9, 51.1, 0.0,60.8,4.8 +1,1,a-cure-i1,2022-23,Marlborough - Early Childhood Center,01700006, 0.0, 3.1, 5.8, 24.1, 12.6, 0.0, 54.5, 39.8, 59.7, 0.5,45.5,0.0 +1.928436911487759,1.93,a-cure-i1,2022-23,Marlborough - Francis J Kane,01700008, 0.0, 0.2, 4.7, 43.8, 4.5, 0.0, 46.9, 48.1, 51.9, 0.0,53.1,6.4 +1,1,a-cure-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.4, 4.6, 55.6, 3.2, 0.0, 36.2, 45.8, 54.2, 0.0,63.8,2.1 +1,1,a-cure-i1,2022-23,Marlborough - Marlborough High,01700505, 0.0, 0.8, 4.4, 63.9, 3.6, 0.0, 27.3, 44.5, 55.1, 0.4,72.7,4.9 +1,1,a-cure-i1,2022-23,Marlborough - Richer,01700025, 0.0, 0.6, 3.6, 61.2, 7.1, 0.0, 27.6, 49.9, 50.1, 0.0,72.4,2.9 +1,1,a-cure-i1,2022-23,Marshfield - Daniel Webster,01710015, 0.0, 2.2, 3.8, 3.2, 1.6, 1.3, 87.9, 43.1, 56.9, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Marshfield - Eames Way School,01710005, 0.4, 0.4, 1.9, 2.3, 2.7, 0.0, 92.4, 49.6, 50.4, 0.0,7.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 0.1, 1.2, 0.6, 5.1, 2.5, 0.2, 90.3, 47.5, 52.5, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.3, 0.3, 3.7, 1.1, 0.0, 94.6, 44.6, 55.4, 0.0,5.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Marshfield - Marshfield High,01710505, 0.2, 1.1, 1.0, 3.6, 1.6, 0.2, 92.4, 50.3, 49.7, 0.0,7.599999999999994,2.0 +1,1,a-cure-i1,2022-23,Marshfield - Martinson Elementary,01710025, 0.0, 0.9, 4.3, 5.4, 3.5, 0.0, 85.9, 46.6, 53.4, 0.0,14.099999999999994,3.8 +1,1,a-cure-i1,2022-23,Marshfield - South River,01710010, 0.0, 1.2, 0.8, 0.8, 2.7, 0.0, 94.6, 50.6, 49.4, 0.0,5.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.2, 0.8, 4.1, 26.4, 5.2, 0.0, 62.4, 49.0, 50.9, 0.1,37.6,4.1 +9.218106995884774,5,a-cure-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 1.7, 0.6, 1.1, 11.0, 9.9, 0.0, 75.7, 61.9, 38.1, 0.0,24.299999999999997,14.0 +7.33061224489796,5,a-cure-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 1.4, 1.7, 30.4, 61.9, 2.6, 0.0, 2.0, 49.4, 50.6, 0.0,98.0,44.900000000000006 +1,1,a-cure-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 0.0, 3.0, 0.8, 3.5, 2.3, 0.1, 90.2, 53.6, 46.3, 0.1,9.799999999999997,1.4 +11.24324324324325,5,a-cure-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 0.5, 3.6, 0.5, 3.8, 2.7, 0.0, 88.9, 50.3, 49.7, 0.0,11.099999999999994,7.8 +1,1,a-cure-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 4.1, 1.3, 3.3, 9.2, 11.3, 0.3, 70.5, 49.2, 50.8, 0.0,29.5,0.0 +3.294117647058823,3.29,a-cure-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 6.3, 2.1, 4.7, 6.1, 7.9, 0.0, 72.8, 49.2, 50.2, 0.6,27.200000000000003,5.6 +1,1,a-cure-i1,2022-23,Mashpee - Quashnet School,01720035, 6.3, 1.0, 4.8, 7.8, 13.8, 0.0, 66.3, 43.7, 56.3, 0.0,33.7,0.0 +6.17629179331307,5,a-cure-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 0.2, 0.4, 49.0, 46.5, 2.4, 0.3, 1.3, 51.9, 48.1, 0.0,98.7,38.1 +1,1,a-cure-i1,2022-23,Mattapoisett - Center,01730005, 0.4, 0.4, 0.8, 6.8, 3.0, 0.0, 88.6, 48.9, 51.1, 0.0,11.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.0, 0.0, 6.3, 6.3, 0.0, 86.5, 47.4, 52.6, 0.0,13.5,0.0 +8.590163934426227,5,a-cure-i1,2022-23,Maynard - Fowler School,01740305, 0.0, 1.3, 2.4, 16.6, 4.1, 0.0, 75.6, 46.6, 52.7, 0.7,24.400000000000006,13.1 +10.86178861788618,5,a-cure-i1,2022-23,Maynard - Green Meadow,01740010, 0.2, 3.1, 3.1, 13.4, 4.8, 0.0, 75.4, 50.1, 49.9, 0.0,24.599999999999994,16.7 +3.3903345724907057,3.39,a-cure-i1,2022-23,Maynard - Maynard High,01740505, 0.0, 2.5, 2.8, 18.0, 3.5, 0.0, 73.1, 52.5, 46.5, 0.9,26.900000000000006,5.7 +1,1,a-cure-i1,2022-23,Medfield - Dale Street,01750005, 0.3, 4.9, 2.1, 3.6, 3.6, 0.0, 85.6, 51.4, 48.6, 0.0,14.400000000000006,4.0 +1,1,a-cure-i1,2022-23,Medfield - Medfield Senior High,01750505, 0.3, 4.5, 0.8, 5.1, 4.7, 0.0, 84.6, 50.8, 49.2, 0.0,15.400000000000006,3.6 +1,1,a-cure-i1,2022-23,Medfield - Memorial School,01750003, 0.0, 2.8, 1.4, 3.8, 3.1, 0.0, 88.9, 48.6, 51.4, 0.0,11.099999999999994,1.1 +9.203539823008851,5,a-cure-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 0.3, 3.9, 1.3, 2.6, 3.2, 0.0, 88.7, 54.5, 45.5, 0.0,11.299999999999997,6.5 +1,1,a-cure-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 0.5, 5.2, 1.9, 6.0, 3.1, 0.0, 83.3, 45.5, 54.3, 0.2,16.700000000000003,3.5999999999999996 +1,1,a-cure-i1,2022-23,Medford - Brooks School,01760130, 0.7, 6.4, 4.2, 7.5, 7.9, 0.0, 73.3, 49.9, 50.1, 0.0,26.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 11.1, 11.1, 11.1, 0.0, 66.7, 50.0, 44.4, 5.6,33.3,0.0 +2.586145648312611,2.59,a-cure-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 0.4, 17.0, 11.0, 23.1, 4.8, 0.0, 43.7, 48.9, 50.9, 0.2,56.3,9.1 +1,1,a-cure-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 0.2, 10.0, 13.0, 15.6, 5.0, 0.2, 56.0, 43.8, 56.0, 0.2,44.0,4.699999999999999 +1,1,a-cure-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 1.1, 8.6, 11.2, 11.8, 5.7, 0.2, 61.4, 52.9, 46.7, 0.4,38.6,1.2 +1,1,a-cure-i1,2022-23,Medford - Medford High,01760505, 0.2, 9.3, 14.0, 17.1, 4.2, 0.0, 55.2, 45.8, 53.7, 0.6,44.8,3.4000000000000004 +1,1,a-cure-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 0.5, 10.0, 8.7, 11.8, 6.3, 0.0, 62.7, 49.8, 50.0, 0.2,37.3,0.0 +1,1,a-cure-i1,2022-23,Medford - Missituk Elementary School,01760140, 1.3, 6.4, 8.4, 18.9, 7.2, 0.3, 57.5, 49.4, 50.6, 0.0,42.5,3.2 +1,1,a-cure-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 0.2, 5.4, 1.4, 8.1, 2.9, 0.0, 82.0, 46.9, 53.1, 0.0,18.0,0.0 +1,1,a-cure-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 0.0, 4.7, 1.4, 8.7, 5.6, 0.0, 79.6, 49.4, 50.6, 0.0,20.400000000000006,4.5 +1,1,a-cure-i1,2022-23,Medway - Medway High,01770505, 0.5, 3.6, 1.8, 7.7, 3.1, 0.3, 83.0, 53.7, 45.8, 0.5,17.0,4.5 +1,1,a-cure-i1,2022-23,Medway - Medway Middle,01770305, 0.0, 2.8, 1.8, 8.1, 2.6, 0.2, 84.5, 49.0, 51.0, 0.0,15.5,2.1 +1,1,a-cure-i1,2022-23,Melrose - Early Childhood Center,01780003, 1.2, 9.0, 3.4, 3.7, 4.6, 0.0, 78.0, 44.0, 55.7, 0.3,22.0,0.0 +1,1,a-cure-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 0.0, 9.6, 5.9, 6.9, 5.0, 0.0, 72.6, 49.5, 50.5, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Melrose - Horace Mann,01780025, 0.0, 0.8, 0.0, 3.3, 5.7, 0.0, 90.2, 53.7, 45.9, 0.4,9.799999999999997,1.6 +1,1,a-cure-i1,2022-23,Melrose - Lincoln,01780020, 0.3, 16.0, 7.4, 9.7, 11.2, 0.0, 55.5, 48.6, 51.4, 0.0,44.5,0.8 +1,1,a-cure-i1,2022-23,Melrose - Melrose High,01780505, 0.0, 5.4, 8.0, 7.1, 4.4, 0.0, 75.1, 50.0, 49.6, 0.4,24.900000000000006,4.3 +5.267489711934157,5,a-cure-i1,2022-23,Melrose - Melrose Middle,01780305, 0.0, 5.6, 5.8, 7.4, 5.5, 0.0, 75.7, 51.6, 48.2, 0.2,24.299999999999997,8.0 +1,1,a-cure-i1,2022-23,Melrose - Roosevelt,01780035, 0.0, 3.4, 4.2, 3.9, 7.1, 0.0, 81.4, 48.5, 51.0, 0.5,18.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Melrose - Winthrop,01780050, 0.0, 4.7, 2.9, 3.4, 6.0, 0.0, 83.0, 50.4, 49.1, 0.5,17.0,4.5 +8.313725490196076,5,a-cure-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 0.6, 1.4, 1.1, 6.8, 0.3, 0.0, 89.8, 47.0, 53.0, 0.0,10.200000000000003,5.3 +7.5180722891566285,5,a-cure-i1,2022-23,Mendon-Upton - Memorial School,07100001, 0.0, 4.8, 1.5, 7.5, 2.7, 0.0, 83.4, 52.5, 47.5, 0.0,16.599999999999994,7.8 +1,1,a-cure-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 2.7, 1.1, 5.7, 1.6, 0.0, 89.0, 49.3, 50.6, 0.2,11.0,2.4 +1,1,a-cure-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 2.5, 0.5, 8.3, 2.8, 0.0, 85.8, 53.4, 46.2, 0.3,14.200000000000003,2.3 +1,1,a-cure-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 0.0, 3.7, 6.1, 46.0, 2.3, 0.0, 42.0, 48.7, 51.3, 0.0,58.0,2.8 +1,1,a-cure-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 0.2, 3.2, 6.9, 54.2, 1.9, 0.1, 33.6, 46.6, 53.4, 0.0,66.4,2.7 +1,1,a-cure-i1,2022-23,Methuen - Marsh Grammar School,01810030, 0.1, 2.7, 4.6, 40.6, 3.5, 0.1, 48.5, 43.2, 56.8, 0.0,51.5,0.0 +1.410981697171381,1.41,a-cure-i1,2022-23,Methuen - Methuen High,01810505, 0.0, 4.4, 5.5, 48.2, 2.0, 0.0, 39.9, 48.0, 52.0, 0.1,60.1,5.300000000000001 +1,1,a-cure-i1,2022-23,Methuen - Tenney Grammar School,01810055, 0.0, 2.7, 4.5, 62.3, 2.5, 0.1, 27.9, 48.1, 51.9, 0.0,72.1,2.4 +1,1,a-cure-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 0.7, 1.2, 3.5, 4.7, 5.8, 0.2, 83.8, 51.3, 48.7, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 0.1, 1.1, 3.2, 3.2, 8.3, 0.0, 83.9, 49.0, 51.0, 0.0,16.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 0.6, 1.3, 2.9, 4.5, 6.5, 0.0, 84.2, 51.2, 48.8, 0.0,15.799999999999997,2.8 +1,1,a-cure-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 0.7, 2.1, 1.1, 8.2, 6.0, 0.4, 81.5, 49.5, 50.5, 0.0,18.5,0.0 +1,1,a-cure-i1,2022-23,Middleborough - Middleborough High,01820505, 1.1, 1.2, 4.1, 4.5, 5.3, 0.1, 83.8, 50.8, 49.0, 0.2,16.200000000000003,1.7 +1,1,a-cure-i1,2022-23,Middleton - Fuller Meadow,01840003, 1.4, 3.4, 1.7, 5.7, 3.7, 0.0, 84.1, 43.6, 56.4, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Middleton - Howe-Manning,01840005, 0.7, 4.2, 1.4, 5.2, 3.5, 0.2, 84.7, 52.9, 47.1, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Milford - Brookside,01850065, 1.3, 0.9, 4.2, 35.5, 2.2, 0.0, 55.9, 45.6, 54.4, 0.0,44.1,4.5 +1,1,a-cure-i1,2022-23,Milford - Memorial,01850010, 1.3, 2.1, 4.2, 38.1, 3.0, 0.0, 51.3, 49.2, 50.8, 0.0,48.7,4.1 +1,1,a-cure-i1,2022-23,Milford - Milford High,01850505, 2.1, 1.9, 3.4, 34.8, 2.9, 0.0, 54.8, 45.2, 54.8, 0.0,45.2,4.2 +1,1,a-cure-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.6, 4.1, 4.1, 32.9, 2.9, 0.6, 54.7, 42.9, 57.1, 0.0,45.3,0.0 +2.654028436018957,2.65,a-cure-i1,2022-23,Milford - Stacy Middle,01850305, 1.7, 1.2, 3.4, 31.7, 4.1, 0.3, 57.8, 48.5, 51.5, 0.0,42.2,7.0 +2.1384248210023866,2.14,a-cure-i1,2022-23,Milford - Woodland,01850090, 1.1, 1.7, 3.6, 33.2, 2.2, 0.1, 58.1, 47.8, 52.1, 0.1,41.9,5.6 +1,1,a-cure-i1,2022-23,Millbury - Elmwood Street,01860017, 0.2, 4.0, 5.2, 11.2, 5.5, 0.0, 73.9, 46.6, 53.4, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 0.0, 3.8, 4.1, 11.6, 5.7, 0.1, 74.7, 47.0, 52.0, 0.9,25.299999999999997,1.8 +1,1,a-cure-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 3.9, 3.5, 7.2, 5.7, 0.0, 79.7, 47.8, 52.2, 0.0,20.299999999999997,0.0 +4.0881057268722465,4.09,a-cure-i1,2022-23,Millis - Clyde F Brown,01870005, 0.6, 2.9, 1.5, 12.5, 5.2, 0.0, 77.3, 49.4, 50.6, 0.0,22.700000000000003,5.8 +1,1,a-cure-i1,2022-23,Millis - Millis High School,01870505, 0.3, 2.2, 1.3, 12.5, 3.5, 0.0, 80.2, 52.4, 46.3, 1.3,19.799999999999997,3.7 +1,1,a-cure-i1,2022-23,Millis - Millis Middle,01870020, 0.0, 1.9, 1.1, 6.7, 4.8, 0.4, 85.2, 53.7, 46.3, 0.0,14.799999999999997,3.2 +1,1,a-cure-i1,2022-23,Millis - TIES,01870515, 0.0, 0.0, 16.7, 0.0, 0.0, 0.0, 83.3, 66.7, 33.3, 0.0,16.700000000000003,0.0 +2.757062146892655,2.76,a-cure-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 0.1, 8.1, 15.1, 6.2, 6.0, 0.0, 64.6, 51.5, 48.5, 0.0,35.400000000000006,6.1 +7.864406779661018,5,a-cure-i1,2022-23,Milton - Collicot,01890005, 0.0, 10.6, 3.1, 4.3, 5.7, 0.0, 76.4, 52.1, 47.9, 0.0,23.599999999999994,11.6 +1,1,a-cure-i1,2022-23,Milton - Cunningham School,01890007, 0.2, 10.2, 5.1, 5.3, 5.9, 0.2, 73.2, 49.6, 50.4, 0.0,26.799999999999997,2.5 +9.866666666666665,5,a-cure-i1,2022-23,Milton - Glover,01890010, 0.5, 5.7, 5.4, 6.0, 6.5, 0.0, 76.0, 54.7, 45.3, 0.0,24.0,14.799999999999999 +3.918367346938776,3.92,a-cure-i1,2022-23,Milton - Milton High,01890505, 0.2, 7.0, 15.8, 7.4, 3.9, 0.0, 65.7, 49.0, 50.3, 0.8,34.3,8.4 +4.06514657980456,4.07,a-cure-i1,2022-23,Milton - Tucker,01890020, 0.0, 7.0, 31.4, 10.7, 12.4, 0.0, 38.6, 45.5, 54.5, 0.0,61.4,15.6 +1,1,a-cure-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.4, 3.6, 4.3, 10.7, 7.1, 0.0, 73.8, 36.9, 61.5, 1.6,26.200000000000003,3.5 +1,1,a-cure-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.1, 6.6, 4.4, 0.0, 88.0, 52.9, 47.1, 0.0,12.0,0.0 +1,1,a-cure-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 1.9, 5.8, 1.9, 0.0, 90.4, 45.2, 54.8, 0.0,9.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.7, 0.4, 4.1, 3.7, 0.0, 91.1, 51.3, 48.0, 0.7,8.900000000000006,3.1 +1,1,a-cure-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 0.7, 0.0, 1.4, 2.9, 0.0, 0.0, 95.0, 49.6, 50.4, 0.0,5.0,0.0 +1,1,a-cure-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 0.7, 0.7, 6.0, 13.2, 6.6, 0.0, 72.8, 43.7, 56.3, 0.0,27.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 0.6, 1.5, 5.5, 8.4, 9.2, 0.2, 74.6, 42.3, 57.7, 0.0,25.400000000000006,4.6 +6.513274336283187,5,a-cure-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 1.0, 1.4, 7.0, 8.5, 4.4, 0.3, 77.4, 52.6, 47.0, 0.4,22.599999999999994,9.2 +1,1,a-cure-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.5, 1.6, 6.6, 9.3, 5.9, 0.2, 75.9, 45.3, 54.4, 0.2,24.099999999999994,2.5 +1,1,a-cure-i1,2022-23,Monson - Granite Valley School,01910030, 0.5, 1.3, 0.5, 9.3, 2.0, 0.0, 86.4, 49.5, 50.5, 0.0,13.599999999999994,2.9 +1,1,a-cure-i1,2022-23,Monson - Monson High School,01910505, 0.3, 1.0, 1.4, 9.2, 4.7, 0.3, 83.1, 56.6, 43.1, 0.3,16.900000000000006,3.4 +21.1014492753623,5,a-cure-i1,2022-23,Monson - Quarry Hill Community School,01910010, 0.0, 0.8, 1.5, 4.6, 0.0, 0.0, 93.1, 56.2, 43.8, 0.0,6.900000000000006,9.1 +5.51310861423221,5,a-cure-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.3, 2.4, 18.0, 4.9, 0.1, 73.3, 48.6, 50.2, 1.2,26.700000000000003,9.200000000000001 +1,1,a-cure-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 3.9, 1.3, 7.4, 1.3, 0.0, 86.1, 50.2, 49.8, 0.0,13.900000000000006,0.0 +10.777777777777773,5,a-cure-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 2.2, 3.0, 5.8, 3.4, 0.0, 85.6, 51.5, 47.6, 0.9,14.400000000000006,9.7 +1,1,a-cure-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 0.0, 2.3, 4.9, 6.7, 8.4, 0.0, 77.7, 45.5, 53.8, 0.7,22.299999999999997,3.0 +2.876971608832808,2.88,a-cure-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.2, 28.7, 18.0, 11.4, 4.9, 0.1, 36.6, 51.4, 48.6, 0.0,63.4,11.4 +1,1,a-cure-i1,2022-23,Nahant - Johnson,01960010, 0.0, 0.6, 0.0, 10.3, 5.8, 0.0, 83.2, 40.0, 60.0, 0.0,16.799999999999997,0.0 +4.4230055658627085,4.42,a-cure-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 0.0, 0.8, 8.7, 40.0, 4.5, 0.0, 46.1, 47.9, 52.1, 0.0,53.9,14.9 +1.9072847682119203,1.91,a-cure-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 0.0, 1.2, 7.0, 45.9, 6.3, 0.0, 39.6, 52.4, 47.6, 0.0,60.4,7.199999999999999 +2.6666666666666665,2.67,a-cure-i1,2022-23,Nantucket - Nantucket High,01970505, 0.2, 1.9, 10.2, 36.3, 3.6, 0.0, 47.8, 48.5, 51.5, 0.0,52.2,8.7 +1.4922279792746116,1.49,a-cure-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 0.0, 1.2, 7.1, 44.7, 5.0, 0.0, 42.1, 47.9, 52.1, 0.0,57.9,5.4 +1,1,a-cure-i1,2022-23,Narragansett - Narragansett Middle,07200305, 0.0, 0.3, 1.1, 6.4, 2.5, 0.0, 89.7, 49.0, 51.0, 0.0,10.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 0.2, 1.1, 1.1, 10.7, 4.9, 0.2, 81.8, 44.7, 54.3, 1.1,18.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 0.0, 0.9, 2.2, 10.2, 3.3, 0.0, 83.4, 48.3, 51.7, 0.0,16.599999999999994,0.0 +4.316279069767441,4.32,a-cure-i1,2022-23,Nashoba - Center School,07250020, 0.0, 6.0, 0.6, 8.0, 6.8, 0.0, 78.5, 46.4, 53.6, 0.0,21.5,5.8 +1,1,a-cure-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 0.0, 4.5, 1.1, 5.0, 4.5, 0.1, 84.8, 49.5, 50.5, 0.0,15.200000000000003,0.0 +5.077844311377245,5,a-cure-i1,2022-23,Nashoba - Hale,07250310, 0.0, 4.1, 2.6, 4.8, 5.2, 0.0, 83.3, 53.3, 46.7, 0.0,16.700000000000003,5.3 +5.05699481865285,5,a-cure-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 0.4, 1.2, 2.1, 13.2, 2.5, 0.0, 80.7, 49.8, 50.2, 0.0,19.299999999999997,6.1 +1,1,a-cure-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 2.1, 0.8, 14.8, 4.4, 0.0, 77.8, 46.2, 53.8, 0.0,22.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Nashoba - Nashoba Regional,07250505, 0.0, 4.7, 1.8, 7.0, 3.2, 0.1, 83.2, 49.1, 50.7, 0.2,16.799999999999997,4.9 +6.264550264550263,5,a-cure-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.4, 1.3, 2.4, 11.5, 3.2, 0.1, 81.1, 37.5, 60.1, 2.4,18.900000000000006,7.4 +3.688473520249222,3.69,a-cure-i1,2022-23,Natick - Bennett-Hemenway,01980005, 0.0, 15.4, 1.9, 9.2, 5.6, 0.0, 67.9, 48.1, 51.9, 0.0,32.099999999999994,7.4 +1,1,a-cure-i1,2022-23,Natick - Brown,01980010, 0.0, 24.1, 2.8, 13.9, 5.4, 0.0, 53.9, 45.5, 54.5, 0.0,46.1,0.0 +3.5687732342007426,3.57,a-cure-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 0.3, 11.5, 1.1, 7.9, 6.0, 0.0, 73.1, 45.2, 54.5, 0.2,26.900000000000006,6.0 +1,1,a-cure-i1,2022-23,Natick - Johnson,01980031, 0.0, 6.6, 2.9, 8.8, 4.4, 0.0, 77.2, 45.6, 53.7, 0.7,22.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Natick - Lilja Elementary,01980035, 0.2, 12.8, 3.7, 11.1, 7.1, 0.0, 65.0, 49.0, 51.0, 0.0,35.0,0.0 +1,1,a-cure-i1,2022-23,Natick - Memorial,01980043, 0.0, 6.9, 1.4, 5.1, 8.6, 0.0, 78.0, 50.7, 49.3, 0.0,22.0,0.0 +4.3984063745019935,4.4,a-cure-i1,2022-23,Natick - Natick High,01980505, 0.1, 9.3, 3.7, 7.1, 5.0, 0.0, 74.9, 46.7, 52.8, 0.6,25.099999999999994,6.9 +1,1,a-cure-i1,2022-23,Natick - Wilson Middle,01980310, 0.1, 8.4, 4.2, 7.7, 6.8, 0.1, 72.6, 51.2, 48.7, 0.1,27.400000000000006,3.0 +1,1,a-cure-i1,2022-23,Nauset - Nauset Regional High,06600505, 0.1, 2.3, 6.4, 4.7, 3.1, 0.0, 83.3, 54.2, 45.3, 0.5,16.700000000000003,2.6 +1,1,a-cure-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 0.0, 1.3, 4.9, 7.6, 5.7, 0.0, 80.5, 50.6, 49.4, 0.0,19.5,3.3 +5.753424657534246,5,a-cure-i1,2022-23,Needham - Broadmeadow,01990005, 0.0, 13.7, 2.0, 4.7, 8.8, 0.0, 70.8, 46.1, 53.9, 0.0,29.200000000000003,10.5 +1,1,a-cure-i1,2022-23,Needham - High Rock School,01990410, 0.0, 11.9, 4.5, 7.0, 5.8, 0.0, 70.9, 48.9, 51.1, 0.0,29.099999999999994,2.7 +1,1,a-cure-i1,2022-23,Needham - John Eliot,01990020, 0.0, 17.6, 6.8, 8.5, 8.0, 0.0, 59.2, 49.5, 50.5, 0.0,40.8,3.7 +7.999999999999999,5,a-cure-i1,2022-23,Needham - Needham High,01990505, 0.0, 7.6, 1.9, 7.9, 4.7, 0.1, 77.8, 50.9, 48.4, 0.7,22.200000000000003,11.1 +1,1,a-cure-i1,2022-23,Needham - Newman Elementary,01990050, 0.0, 11.3, 2.9, 6.7, 5.6, 0.1, 73.4, 46.2, 53.6, 0.1,26.599999999999994,4.8 +4.085106382978723,4.09,a-cure-i1,2022-23,Needham - Pollard Middle,01990405, 0.0, 11.1, 3.8, 7.5, 5.7, 0.1, 71.8, 51.1, 48.8, 0.1,28.200000000000003,7.2 +4.518272425249171,4.52,a-cure-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 0.2, 11.9, 4.2, 6.2, 7.4, 0.2, 69.9, 45.4, 54.6, 0.0,30.099999999999994,8.5 +7.166023166023165,5,a-cure-i1,2022-23,Needham - William Mitchell,01990040, 0.0, 10.4, 3.5, 5.5, 6.4, 0.0, 74.1, 46.5, 53.5, 0.0,25.900000000000006,11.600000000000001 +7.725359911406423,5,a-cure-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.7, 2.3, 51.3, 29.5, 6.5, 0.0, 9.7, 48.7, 51.3, 0.0,90.3,43.6 +2.3390357698289272,2.34,a-cure-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 0.2, 0.8, 12.5, 44.1, 6.6, 0.2, 35.7, 46.6, 53.4, 0.0,64.3,9.4 +4.4719358533791524,4.47,a-cure-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 0.6, 0.2, 12.1, 71.6, 2.8, 0.0, 12.7, 48.8, 51.2, 0.0,87.3,24.4 +1,1,a-cure-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 0.4, 2.2, 11.3, 17.3, 6.5, 0.0, 62.3, 46.3, 53.2, 0.4,37.7,3.4 +1,1,a-cure-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 0.3, 1.5, 15.2, 51.8, 5.5, 0.0, 25.6, 52.7, 47.3, 0.0,74.4,4.7 +1,1,a-cure-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 0.6, 1.3, 6.1, 20.0, 5.0, 0.2, 66.9, 45.2, 54.8, 0.0,33.099999999999994,4.6 +1,1,a-cure-i1,2022-23,New Bedford - Charles S Ashley,02010010, 0.4, 2.2, 5.8, 32.0, 7.6, 0.0, 52.2, 48.6, 51.4, 0.0,47.8,4.1 +4.0795660036166375,4.08,a-cure-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 0.4, 1.1, 13.8, 34.9, 5.1, 0.0, 44.7, 53.8, 46.2, 0.0,55.3,14.100000000000001 +1.2201438848920863,1.22,a-cure-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 0.4, 1.7, 18.6, 44.5, 4.2, 0.0, 30.5, 47.9, 52.1, 0.0,69.5,5.3 +1.3289036544850499,1.33,a-cure-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.7, 14.4, 39.4, 5.6, 0.0, 39.8, 44.7, 55.3, 0.0,60.2,5.0 +2.327990135635019,2.33,a-cure-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 0.4, 0.4, 12.0, 64.5, 3.7, 0.0, 18.9, 49.4, 50.6, 0.0,81.1,11.8 +3.6721311475409837,3.67,a-cure-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.5, 8.4, 58.6, 5.5, 0.2, 26.8, 48.1, 51.6, 0.2,73.2,16.8 +2.7379679144385025,2.74,a-cure-i1,2022-23,New Bedford - James B Congdon,02010040, 0.6, 0.3, 15.3, 35.0, 4.9, 0.0, 43.9, 46.6, 53.4, 0.0,56.1,9.6 +1,1,a-cure-i1,2022-23,New Bedford - Jireh Swift,02010130, 0.9, 0.9, 8.0, 27.4, 4.4, 0.0, 58.4, 54.0, 46.0, 0.0,41.6,0.0 +3.7509933774834443,3.75,a-cure-i1,2022-23,New Bedford - John Avery Parker,02010115, 0.0, 0.8, 19.5, 45.9, 9.3, 0.0, 24.5, 49.8, 50.2, 0.0,75.5,17.700000000000003 +1.989189189189189,1.99,a-cure-i1,2022-23,New Bedford - John B Devalles,02010050, 0.0, 0.0, 17.4, 51.0, 5.6, 0.0, 26.0, 50.7, 49.3, 0.0,74.0,9.2 +2.2122186495176845,2.21,a-cure-i1,2022-23,New Bedford - Keith Middle School,02010405, 0.3, 0.7, 17.9, 35.3, 7.9, 0.0, 37.8, 48.6, 51.3, 0.1,62.2,8.6 +3.6182085168869316,3.62,a-cure-i1,2022-23,New Bedford - New Bedford High,02010505, 0.3, 0.6, 15.2, 46.8, 5.1, 0.1, 31.9, 45.9, 53.9, 0.2,68.1,15.400000000000002 +2.285714285714286,2.29,a-cure-i1,2022-23,New Bedford - Normandin Middle School,02010410, 0.5, 1.1, 9.4, 37.9, 4.9, 0.1, 46.1, 48.5, 51.5, 0.0,53.9,7.7 +3.67816091954023,3.68,a-cure-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 0.8, 0.0, 22.9, 61.8, 1.5, 0.0, 13.0, 50.4, 49.6, 0.0,87.0,20.0 +2.1850220264317186,2.19,a-cure-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 0.1, 0.3, 16.5, 47.3, 3.9, 0.1, 31.9, 46.9, 53.1, 0.0,68.1,9.3 +2.7435158501440915,2.74,a-cure-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 0.5, 0.8, 20.0, 39.4, 8.7, 0.0, 30.6, 42.6, 57.4, 0.0,69.4,11.899999999999999 +1,1,a-cure-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 0.0, 1.0, 11.4, 39.5, 4.3, 0.0, 43.8, 47.6, 52.4, 0.0,56.2,3.6 +1,1,a-cure-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 8.4, 38.6, 10.8, 0.0, 42.2, 30.1, 68.7, 1.2,57.8,3.4 +2.9146496815286627,2.91,a-cure-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 1.5, 0.7, 23.0, 40.7, 12.6, 0.0, 21.5, 36.3, 63.7, 0.0,78.5,14.3 +2.9999999999999996,3.0,a-cure-i1,2022-23,New Bedford - William H Taylor,02010135, 0.0, 0.0, 8.2, 17.6, 9.4, 0.0, 64.8, 49.6, 50.4, 0.0,35.2,6.6 +5.467741935483871,5,a-cure-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.1, 0.5, 87.9, 6.6, 3.8, 0.3, 0.8, 51.7, 48.3, 0.0,99.2,33.9 +14.399999999999999,5,a-cure-i1,2022-23,New Salem-Wendell - Swift River,07280015, 0.0, 1.5, 0.0, 3.8, 7.6, 0.0, 87.0, 48.9, 51.1, 0.0,13.0,11.7 +1,1,a-cure-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 2.2, 0.7, 5.7, 2.5, 0.0, 88.9, 57.0, 43.0, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 2.1, 0.7, 5.6, 3.5, 0.0, 88.2, 49.4, 50.6, 0.0,11.799999999999997,3.8 +1,1,a-cure-i1,2022-23,Newburyport - Newburyport High,02040505, 0.2, 2.8, 1.2, 3.5, 2.0, 0.0, 90.2, 50.6, 49.4, 0.0,9.799999999999997,1.6 +19.076923076923066,5,a-cure-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 0.0, 2.3, 0.8, 6.0, 1.2, 0.0, 89.6, 48.6, 51.1, 0.2,10.400000000000006,12.399999999999999 +7.775280898876406,5,a-cure-i1,2022-23,Newton - A E Angier,02070005, 0.0, 16.2, 3.7, 6.1, 9.6, 0.0, 64.4, 49.2, 49.7, 1.1,35.599999999999994,17.3 +2.962962962962963,2.96,a-cure-i1,2022-23,Newton - Bigelow Middle,02070305, 0.0, 17.0, 6.4, 11.7, 8.0, 0.0, 56.8, 52.2, 47.1, 0.7,43.2,8.0 +8.073126142595978,5,a-cure-i1,2022-23,Newton - Bowen,02070015, 0.0, 27.2, 4.4, 12.8, 10.3, 0.0, 45.3, 50.3, 49.4, 0.3,54.7,27.6 +8.162661737523106,5,a-cure-i1,2022-23,Newton - C C Burr,02070020, 0.0, 24.2, 6.3, 14.4, 9.2, 0.0, 45.9, 48.6, 50.5, 0.8,54.1,27.6 +4.21978021978022,4.22,a-cure-i1,2022-23,Newton - Cabot,02070025, 0.2, 15.8, 5.4, 11.1, 12.7, 0.2, 54.5, 50.5, 49.3, 0.2,45.5,12.0 +3.45631067961165,3.46,a-cure-i1,2022-23,Newton - Charles E Brown Middle,02070310, 0.1, 23.5, 4.1, 7.2, 6.3, 0.0, 58.8, 47.5, 51.6, 0.9,41.2,8.899999999999999 +4.064,4.06,a-cure-i1,2022-23,Newton - Countryside,02070040, 0.0, 28.0, 5.9, 7.3, 8.9, 0.0, 50.0, 46.0, 54.0, 0.0,50.0,12.700000000000001 +3.270072992700729,3.27,a-cure-i1,2022-23,Newton - F A Day Middle,02070315, 0.3, 16.7, 4.9, 9.6, 9.1, 0.4, 58.9, 49.3, 50.5, 0.1,41.1,8.399999999999999 +3.607843137254902,3.61,a-cure-i1,2022-23,Newton - Franklin,02070055, 0.0, 16.5, 3.0, 11.8, 9.4, 0.0, 59.2, 54.0, 46.0, 0.0,40.8,9.2 +7.9801488833746905,5,a-cure-i1,2022-23,Newton - Horace Mann,02070075, 0.0, 13.7, 5.6, 10.1, 10.9, 0.0, 59.7, 46.8, 52.9, 0.3,40.3,20.1 +10.702341137123744,5,a-cure-i1,2022-23,Newton - John Ward,02070120, 0.0, 14.4, 1.5, 5.7, 8.2, 0.0, 70.1, 47.4, 52.6, 0.0,29.900000000000006,20.0 +4.863309352517985,4.86,a-cure-i1,2022-23,Newton - Lincoln-Eliot,02070070, 0.0, 20.1, 7.1, 18.6, 9.8, 0.0, 44.4, 44.4, 55.6, 0.0,55.6,16.9 +1,1,a-cure-i1,2022-23,Newton - Mason-Rice,02070080, 0.0, 24.7, 0.6, 5.7, 9.9, 0.0, 59.0, 51.8, 47.9, 0.3,41.0,4.6 +4.385964912280701,4.39,a-cure-i1,2022-23,Newton - Memorial Spaulding,02070105, 0.0, 25.7, 5.5, 9.1, 5.3, 0.0, 54.4, 52.1, 47.9, 0.0,45.6,12.5 +1,1,a-cure-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 0.0, 28.5, 3.8, 9.7, 16.1, 0.0, 41.9, 36.6, 63.4, 0.0,58.1,0.0 +5.949748743718593,5,a-cure-i1,2022-23,Newton - Newton North High,02070505, 0.1, 15.5, 5.1, 12.1, 7.0, 0.1, 60.2, 48.9, 50.3, 0.8,39.8,14.799999999999999 +6.171428571428571,5,a-cure-i1,2022-23,Newton - Newton South High,02070510, 0.2, 24.1, 3.5, 7.5, 6.6, 0.1, 58.0, 47.8, 51.5, 0.7,42.0,16.2 +5.379310344827585,5,a-cure-i1,2022-23,Newton - Oak Hill Middle,02070320, 0.0, 23.9, 5.3, 10.7, 6.5, 0.0, 53.6, 50.4, 49.3, 0.3,46.4,15.599999999999998 +5.035532994923858,5,a-cure-i1,2022-23,Newton - Peirce,02070100, 0.0, 14.5, 4.1, 11.2, 9.5, 0.0, 60.6, 47.7, 52.3, 0.0,39.4,12.4 +3.826086956521739,3.83,a-cure-i1,2022-23,Newton - Underwood,02070115, 0.5, 22.6, 8.6, 12.7, 10.9, 0.0, 44.8, 53.4, 46.6, 0.0,55.2,13.2 +3.4945848375451263,3.49,a-cure-i1,2022-23,Newton - Williams,02070125, 0.0, 36.8, 3.9, 6.9, 7.8, 0.0, 44.6, 47.2, 52.8, 0.0,55.4,12.1 +2.862254025044723,2.86,a-cure-i1,2022-23,Newton - Zervas,02070130, 0.5, 27.6, 6.9, 9.9, 10.6, 0.5, 44.1, 48.8, 51.2, 0.0,55.9,10.0 +1,1,a-cure-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.3, 1.7, 3.6, 3.2, 0.0, 89.2, 49.1, 50.9, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Norfolk - H Olive Day,02080015, 0.0, 2.7, 1.4, 3.1, 3.9, 0.0, 89.0, 48.1, 51.9, 0.0,11.0,0.0 +1,1,a-cure-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.9, 0.5, 2.1, 0.2, 3.4, 0.2, 92.8, 71.4, 27.1, 1.6,7.200000000000003,0.0 +1,1,a-cure-i1,2022-23,North Adams - Brayton,02090035, 0.0, 1.3, 1.3, 9.6, 7.9, 0.0, 79.8, 38.2, 61.8, 0.0,20.200000000000003,4.9 +1,1,a-cure-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 0.9, 0.4, 2.6, 8.1, 9.8, 0.0, 78.3, 44.7, 55.3, 0.0,21.700000000000003,0.0 +1,1,a-cure-i1,2022-23,North Adams - Drury High,02090505, 0.4, 0.8, 2.8, 7.3, 7.1, 0.4, 81.1, 54.4, 45.4, 0.2,18.900000000000006,1.7 +1,1,a-cure-i1,2022-23,North Adams - Greylock,02090015, 0.0, 0.0, 0.8, 7.5, 9.5, 0.4, 81.7, 49.6, 50.4, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 9.8, 2.6, 16.0, 3.3, 0.2, 68.1, 47.0, 53.0, 0.0,31.900000000000006,0.0 +1,1,a-cure-i1,2022-23,North Andover - Annie L Sargent School,02110018, 0.2, 7.5, 1.3, 6.9, 5.1, 0.0, 79.0, 49.5, 50.5, 0.0,21.0,0.0 +1,1,a-cure-i1,2022-23,North Andover - Atkinson,02110001, 0.0, 5.5, 4.4, 33.9, 2.6, 0.0, 53.6, 48.5, 51.5, 0.0,46.4,0.0 +1,1,a-cure-i1,2022-23,North Andover - Franklin,02110010, 0.0, 7.9, 3.4, 8.7, 4.5, 0.0, 75.6, 45.7, 54.1, 0.3,24.400000000000006,0.0 +1,1,a-cure-i1,2022-23,North Andover - Kittredge,02110015, 0.0, 2.2, 1.8, 11.9, 4.0, 0.0, 80.1, 46.9, 52.7, 0.4,19.900000000000006,0.0 +1,1,a-cure-i1,2022-23,North Andover - North Andover High,02110505, 0.3, 6.9, 3.3, 14.1, 3.6, 0.1, 71.7, 49.9, 50.0, 0.1,28.299999999999997,1.1 +1,1,a-cure-i1,2022-23,North Andover - North Andover Middle,02110305, 0.1, 7.5, 2.7, 15.6, 4.1, 0.0, 70.0, 46.1, 53.6, 0.3,30.0,0.0 +1,1,a-cure-i1,2022-23,North Andover - Thomson,02110020, 0.0, 5.3, 2.0, 19.9, 2.7, 0.0, 70.1, 45.5, 54.5, 0.0,29.900000000000006,0.0 +1,1,a-cure-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 0.7, 14.9, 6.0, 5.0, 5.0, 0.0, 68.4, 50.7, 49.3, 0.0,31.599999999999994,0.0 +1,1,a-cure-i1,2022-23,North Attleborough - Community,02120030, 0.3, 8.3, 9.0, 14.2, 7.3, 0.7, 60.2, 47.8, 51.9, 0.3,39.8,0.0 +1,1,a-cure-i1,2022-23,North Attleborough - Falls,02120010, 0.4, 4.8, 3.9, 3.9, 7.9, 0.0, 79.0, 44.5, 55.0, 0.4,21.0,0.0 +1,1,a-cure-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 4.1, 3.5, 6.2, 2.6, 0.0, 83.6, 45.3, 54.7, 0.0,16.400000000000006,0.0 +4.857142857142856,4.86,a-cure-i1,2022-23,North Attleborough - North Attleboro High,02120505, 0.1, 7.6, 5.0, 6.1, 3.4, 0.3, 77.6, 51.1, 48.4, 0.5,22.400000000000006,6.8 +1,1,a-cure-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 15.5, 7.4, 5.4, 7.4, 0.0, 64.2, 42.6, 57.4, 0.0,35.8,0.0 +1,1,a-cure-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 0.0, 7.8, 5.2, 7.2, 4.8, 0.0, 74.9, 47.3, 52.7, 0.0,25.099999999999994,3.2 +18.433179723502302,5,a-cure-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 0.0, 8.8, 6.8, 5.2, 0.8, 0.0, 78.3, 48.6, 51.4, 0.0,21.700000000000003,25.0 +9.025641025641029,5,a-cure-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 0.0, 1.0, 3.0, 7.6, 4.0, 0.0, 84.4, 51.0, 49.0, 0.0,15.599999999999994,8.8 +1,1,a-cure-i1,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 0.7, 2.9, 12.5, 2.9, 0.0, 80.9, 50.7, 49.3, 0.0,19.099999999999994,2.9 +1,1,a-cure-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 12.1, 3.5, 0.0, 84.4, 42.6, 57.4, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.3, 1.7, 7.3, 3.7, 0.0, 86.0, 55.8, 44.2, 0.0,14.0,1.5 +1,1,a-cure-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 0.2, 3.5, 3.3, 10.8, 5.8, 0.0, 76.3, 45.9, 54.1, 0.0,23.700000000000003,4.0 +1,1,a-cure-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 0.0, 2.7, 1.7, 7.3, 3.5, 0.1, 84.7, 46.7, 52.9, 0.4,15.299999999999997,1.9 +1,1,a-cure-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 0.0, 1.2, 2.4, 7.2, 2.4, 0.0, 86.9, 49.4, 50.6, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 2.0, 4.0, 3.0, 3.0, 0.0, 88.0, 38.0, 62.0, 0.0,12.0,0.0 +1,1,a-cure-i1,2022-23,North Middlesex - Varnum Brook,07350035, 0.0, 3.3, 2.5, 9.6, 4.4, 0.2, 79.9, 51.3, 48.7, 0.0,20.099999999999994,3.2 +1,1,a-cure-i1,2022-23,North Reading - E Ethel Little School,02170003, 0.0, 4.3, 0.9, 4.3, 5.0, 0.0, 85.4, 49.2, 50.8, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2022-23,North Reading - J Turner Hood,02170010, 0.0, 5.5, 0.8, 6.0, 2.9, 0.3, 84.6, 49.3, 50.7, 0.0,15.400000000000006,0.0 +1,1,a-cure-i1,2022-23,North Reading - L D Batchelder,02170005, 0.0, 4.5, 0.9, 2.4, 3.9, 0.0, 88.3, 46.9, 53.1, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2022-23,North Reading - North Reading High,02170505, 0.0, 5.9, 0.2, 5.0, 3.1, 0.0, 85.9, 52.0, 47.5, 0.5,14.099999999999994,4.9 +1,1,a-cure-i1,2022-23,North Reading - North Reading Middle,02170305, 0.0, 5.2, 0.7, 5.7, 4.3, 0.0, 84.1, 47.3, 52.7, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Northampton - Bridge Street,02100005, 0.0, 3.0, 3.4, 29.7, 6.1, 0.0, 57.8, 49.8, 49.8, 0.4,42.2,0.0 +16.66453674121406,5,a-cure-i1,2022-23,Northampton - Jackson Street,02100020, 0.0, 4.1, 2.7, 15.5, 8.9, 0.0, 68.7, 46.4, 53.3, 0.3,31.299999999999997,32.6 +1,1,a-cure-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 0.2, 2.7, 4.1, 17.7, 7.4, 0.0, 67.9, 46.1, 52.7, 1.2,32.099999999999994,1.0 +1,1,a-cure-i1,2022-23,Northampton - Leeds,02100025, 0.3, 3.0, 0.7, 19.8, 6.7, 0.0, 69.5, 46.6, 53.0, 0.3,30.5,0.0 +5.693950177935944,5,a-cure-i1,2022-23,Northampton - Northampton High,02100505, 0.2, 3.0, 3.0, 14.3, 7.6, 0.0, 71.9, 49.3, 48.9, 1.8,28.099999999999994,10.0 +5.308755760368663,5,a-cure-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 2.1, 2.1, 14.0, 3.4, 0.0, 78.3, 46.4, 52.8, 0.9,21.700000000000003,7.2 +1,1,a-cure-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.2, 0.5, 0.9, 13.4, 1.8, 0.2, 83.0, 39.8, 59.2, 1.1,17.0,0.0 +1,1,a-cure-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 0.2, 14.7, 1.6, 9.0, 4.5, 0.4, 69.6, 52.3, 47.5, 0.2,30.400000000000006,1.9 +1,1,a-cure-i1,2022-23,Northborough - Fannie E Proctor,02130015, 0.4, 16.3, 5.6, 11.5, 4.0, 0.0, 62.3, 50.0, 50.0, 0.0,37.7,0.0 +1,1,a-cure-i1,2022-23,Northborough - Lincoln Street,02130003, 0.3, 12.6, 1.0, 6.3, 5.2, 0.3, 74.1, 46.5, 53.5, 0.0,25.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 0.4, 10.8, 2.4, 14.7, 7.6, 4.0, 60.2, 47.8, 52.2, 0.0,39.8,0.0 +1,1,a-cure-i1,2022-23,Northborough - Marion E Zeh,02130020, 0.0, 18.3, 0.8, 12.7, 4.4, 0.0, 63.7, 47.8, 52.2, 0.0,36.3,0.0 +3.0967741935483866,3.1,a-cure-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 0.4, 10.8, 1.1, 10.1, 3.2, 2.4, 72.1, 44.5, 55.5, 0.0,27.900000000000006,5.4 +1,1,a-cure-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.1, 1.8, 11.8, 1.9, 0.0, 84.5, 46.1, 53.9, 0.0,15.5,0.0 +1,1,a-cure-i1,2022-23,Northbridge - Northbridge High,02140505, 0.0, 1.0, 1.9, 12.1, 2.5, 0.0, 82.5, 46.8, 53.2, 0.0,17.5,0.0 +1,1,a-cure-i1,2022-23,Northbridge - Northbridge Middle,02140305, 0.2, 1.7, 0.8, 9.8, 3.1, 0.0, 84.4, 53.8, 46.2, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.2, 1.5, 4.1, 40.9, 0.9, 0.2, 52.2, 44.9, 54.6, 0.5,47.8,1.2 +1,1,a-cure-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.4, 1.1, 1.1, 1.5, 0.2, 95.7, 39.1, 60.7, 0.2,4.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Norton - Henri A. Yelle,02180060, 0.0, 1.2, 3.3, 5.1, 3.3, 0.0, 87.1, 49.5, 50.5, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Norton - J C Solmonese,02180015, 0.0, 2.3, 4.1, 3.1, 5.1, 0.0, 85.4, 50.3, 49.7, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Norton - L G Nourse Elementary,02180010, 0.0, 2.1, 3.5, 3.8, 3.5, 0.0, 87.2, 46.7, 53.3, 0.0,12.799999999999997,0.0 +7.685039370078738,5,a-cure-i1,2022-23,Norton - Norton High,02180505, 0.1, 2.8, 3.4, 3.7, 2.7, 0.0, 87.3, 50.6, 49.0, 0.4,12.700000000000003,6.1 +1,1,a-cure-i1,2022-23,Norton - Norton Middle,02180305, 0.4, 0.7, 3.4, 5.1, 5.1, 0.2, 85.2, 50.5, 49.5, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 0.0, 3.3, 1.1, 1.3, 6.3, 0.0, 87.9, 45.4, 54.6, 0.0,12.099999999999994,3.6 +1,1,a-cure-i1,2022-23,Norwell - Norwell High,02190505, 0.2, 2.7, 0.2, 1.3, 2.5, 0.0, 93.2, 47.3, 52.7, 0.0,6.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Norwell - Norwell Middle School,02190405, 0.0, 2.4, 0.8, 0.8, 4.0, 0.2, 91.8, 47.6, 52.4, 0.0,8.200000000000003,2.7 +1,1,a-cure-i1,2022-23,Norwell - William G Vinal,02190020, 0.0, 1.9, 0.4, 1.5, 5.1, 0.0, 91.1, 48.6, 51.0, 0.4,8.900000000000006,0.0 +1.3333333333333333,1.33,a-cure-i1,2022-23,Norwood - Balch,02200005, 0.0, 6.1, 15.7, 36.5, 1.3, 1.6, 38.8, 50.6, 49.4, 0.0,61.2,5.1 +1,1,a-cure-i1,2022-23,Norwood - Charles J Prescott,02200025, 0.4, 26.3, 10.7, 12.8, 5.3, 1.2, 43.2, 52.3, 47.7, 0.0,56.8,0.0 +1,1,a-cure-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 0.0, 6.7, 12.1, 12.9, 3.6, 0.9, 63.8, 50.4, 49.6, 0.0,36.2,4.0 +1.9762470308788598,1.98,a-cure-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.1, 4.3, 13.3, 21.4, 3.0, 0.1, 57.9, 51.4, 48.6, 0.0,42.1,5.2 +1,1,a-cure-i1,2022-23,Norwood - F A Cleveland,02200015, 0.0, 4.2, 8.9, 16.0, 5.8, 1.0, 64.2, 48.6, 51.4, 0.0,35.8,2.4 +1,1,a-cure-i1,2022-23,Norwood - George F. Willett,02200075, 1.0, 10.2, 10.2, 18.9, 4.0, 1.5, 54.2, 47.5, 52.5, 0.0,45.8,0.0 +1,1,a-cure-i1,2022-23,Norwood - John P Oldham,02200020, 0.4, 3.3, 12.4, 12.4, 2.9, 1.5, 67.3, 48.4, 51.6, 0.0,32.7,0.0 +3.067961165048543,3.07,a-cure-i1,2022-23,Norwood - Norwood High,02200505, 0.1, 6.0, 13.6, 18.7, 2.6, 0.3, 58.8, 51.4, 48.0, 0.5,41.2,7.8999999999999995 +1.7261410788381741,1.73,a-cure-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.1, 1.4, 3.4, 37.4, 4.8, 0.0, 51.8, 47.7, 52.3, 0.0,48.2,5.2 +1,1,a-cure-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.4, 0.9, 0.5, 2.0, 3.2, 0.0, 93.0, 35.7, 64.0, 0.4,7.0,4.2 +1,1,a-cure-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 0.0, 1.8, 2.6, 2.9, 4.8, 0.0, 88.0, 49.1, 50.9, 0.0,12.0,2.2 +1,1,a-cure-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.9, 3.5, 3.3, 5.9, 0.0, 86.3, 49.1, 50.5, 0.5,13.700000000000003,2.9 +5.025270758122743,5,a-cure-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.3, 0.3, 3.9, 20.7, 2.2, 0.3, 72.3, 44.8, 55.2, 0.0,27.700000000000003,8.7 +1,1,a-cure-i1,2022-23,Orange - Dexter Park,02230010, 0.3, 1.0, 1.7, 11.2, 4.4, 0.0, 81.3, 47.3, 52.7, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Orange - Fisher Hill,02230015, 0.0, 1.7, 0.9, 7.0, 6.1, 0.4, 83.9, 43.9, 56.1, 0.0,16.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Orleans - Orleans Elementary,02240005, 0.7, 1.4, 4.1, 10.3, 6.2, 0.0, 77.2, 54.5, 45.5, 0.0,22.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 0.0, 0.3, 3.1, 17.1, 5.9, 0.0, 73.5, 53.0, 47.0, 0.0,26.5,0.0 +1,1,a-cure-i1,2022-23,Oxford - Clara Barton,02260005, 0.4, 1.9, 2.3, 15.6, 4.6, 0.0, 75.2, 51.5, 48.5, 0.0,24.799999999999997,0.0 +4.894117647058823,4.89,a-cure-i1,2022-23,Oxford - Oxford High,02260505, 0.3, 1.8, 2.6, 15.4, 5.5, 0.0, 74.5, 51.0, 48.2, 0.8,25.5,7.8 +1,1,a-cure-i1,2022-23,Oxford - Oxford Middle,02260405, 0.0, 0.2, 3.2, 15.1, 4.2, 0.0, 77.4, 46.4, 53.6, 0.0,22.599999999999994,3.1 +1,1,a-cure-i1,2022-23,Palmer - Old Mill Pond,02270008, 0.0, 1.5, 1.8, 15.0, 4.2, 0.0, 77.5, 47.2, 52.8, 0.0,22.5,2.4 +1,1,a-cure-i1,2022-23,Palmer - Palmer High,02270505, 0.2, 3.0, 2.1, 18.7, 5.0, 0.0, 71.0, 47.1, 52.5, 0.4,29.0,2.1 +1,1,a-cure-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.2, 0.3, 1.9, 9.1, 3.3, 0.2, 85.2, 38.9, 60.6, 0.5,14.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 10.0, 87.0, 1.1, 0.0, 1.9, 58.2, 41.8, 0.0,98.1,0.0 +1,1,a-cure-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 0.0, 3.7, 4.3, 23.9, 1.6, 0.3, 66.2, 46.3, 53.7, 0.0,33.8,0.0 +1,1,a-cure-i1,2022-23,Peabody - Center,02290015, 0.4, 3.1, 7.8, 29.1, 3.6, 0.0, 55.8, 49.3, 50.7, 0.0,44.2,3.2 +1,1,a-cure-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 0.0, 2.1, 4.2, 20.8, 2.4, 0.1, 70.4, 50.2, 49.7, 0.1,29.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Peabody - John E Burke,02290007, 0.0, 0.4, 2.0, 11.1, 2.4, 0.0, 84.1, 52.4, 47.6, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Peabody - John E. McCarthy,02290016, 0.9, 1.8, 4.1, 19.2, 5.0, 0.9, 68.0, 51.2, 48.8, 0.0,32.0,0.0 +1,1,a-cure-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 1.1, 5.3, 5.3, 22.3, 3.2, 0.0, 62.8, 56.4, 43.6, 0.0,37.2,0.0 +2.7092651757188504,2.71,a-cure-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 0.3, 2.2, 4.0, 23.0, 1.8, 0.0, 68.7, 47.6, 52.2, 0.1,31.299999999999997,5.300000000000001 +1,1,a-cure-i1,2022-23,Peabody - South Memorial,02290035, 0.6, 3.2, 3.2, 17.2, 4.4, 0.0, 71.4, 51.1, 48.9, 0.0,28.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Peabody - Thomas Carroll,02290010, 0.5, 2.2, 4.4, 32.6, 1.7, 0.0, 58.5, 51.2, 48.8, 0.0,41.5,0.0 +1,1,a-cure-i1,2022-23,Peabody - West Memorial,02290045, 0.4, 1.5, 0.4, 8.1, 2.3, 0.0, 87.3, 51.4, 48.6, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Peabody - William A Welch Sr,02290027, 0.9, 1.3, 4.3, 53.0, 1.7, 0.4, 38.3, 48.7, 51.3, 0.0,61.7,0.0 +6.411347517730496,5,a-cure-i1,2022-23,Pelham - Pelham Elementary,02300005, 0.0, 3.8, 6.1, 13.7, 4.6, 0.0, 71.8, 38.9, 59.5, 1.5,28.200000000000003,11.3 +1,1,a-cure-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 0.5, 0.0, 0.5, 3.2, 5.6, 0.0, 90.3, 45.1, 54.9, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 0.0, 1.5, 0.5, 2.9, 3.4, 0.0, 91.7, 49.4, 50.6, 0.0,8.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 0.4, 1.0, 0.4, 3.7, 4.7, 0.0, 89.9, 50.0, 50.0, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.5, 0.2, 1.2, 4.0, 0.0, 94.1, 48.1, 51.9, 0.0,5.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Pembroke - Pembroke High School,02310505, 0.0, 1.0, 0.7, 1.4, 1.6, 0.0, 95.4, 46.0, 53.8, 0.3,4.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 1.8, 0.9, 8.8, 4.0, 0.0, 84.6, 46.3, 53.7, 0.0,15.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Pentucket - Dr John C Page School,07450015, 0.0, 1.3, 0.3, 4.7, 2.5, 0.0, 91.2, 49.2, 50.8, 0.0,8.799999999999997,0.8 +1,1,a-cure-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.2, 9.5, 3.5, 0.0, 86.8, 48.1, 51.9, 0.0,13.200000000000003,4.4 +11.555555555555559,5,a-cure-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 8.4, 2.4, 0.0, 89.2, 47.6, 52.4, 0.0,10.799999999999997,7.8 +1,1,a-cure-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.8, 0.3, 7.5, 2.8, 0.0, 88.5, 43.9, 56.1, 0.0,11.5,0.2 +7.57142857142857,5,a-cure-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 0.2, 1.7, 0.5, 6.9, 1.7, 0.2, 88.8, 51.8, 47.9, 0.3,11.200000000000003,5.300000000000001 +1,1,a-cure-i1,2022-23,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 11.1, 3.2, 0.0, 85.7, 54.8, 45.2, 0.0,14.299999999999997,0.0 +2.153209109730849,2.15,a-cure-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 1.5, 0.5, 6.4, 87.2, 1.0, 0.0, 3.4, 52.7, 47.3, 0.0,96.6,13.0 +8.915887850467291,5,a-cure-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.8, 0.0, 3.2, 80.8, 0.0, 0.8, 14.4, 48.8, 51.2, 0.0,85.6,47.7 +12.912863070539418,5,a-cure-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 1.2, 0.0, 13.3, 79.5, 2.4, 0.0, 3.6, 46.4, 53.6, 0.0,96.4,77.8 +4.380327868852459,4.38,a-cure-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.3, 7.2, 23.1, 26.8, 2.7, 0.0, 39.0, 51.9, 48.1, 0.0,61.0,16.7 +9.514093959731545,5,a-cure-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.4, 16.9, 29.9, 23.2, 4.1, 0.0, 25.5, 50.2, 49.8, 0.0,74.5,44.300000000000004 +1,1,a-cure-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 3.4, 2.9, 0.5, 93.1, 53.4, 46.6, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 0.5, 0.0, 0.0, 1.5, 4.5, 0.5, 93.0, 47.0, 53.0, 0.0,7.0,0.0 +1,1,a-cure-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 1.2, 0.8, 2.3, 5.1, 0.4, 90.2, 48.8, 51.2, 0.0,9.799999999999997,0.0 +14.712273641851107,5,a-cure-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 18.9, 8.0, 8.2, 14.6, 0.0, 50.3, 47.2, 52.5, 0.4,49.7,45.7 +6.317948717948718,5,a-cure-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.3, 1.3, 9.7, 21.0, 6.7, 0.0, 61.0, 66.2, 32.1, 1.8,39.0,15.399999999999999 +1,1,a-cure-i1,2022-23,Pittsfield - Allendale,02360010, 0.7, 1.8, 15.4, 17.9, 12.1, 0.0, 52.0, 46.9, 53.1, 0.0,48.0,4.3 +1,1,a-cure-i1,2022-23,Pittsfield - Crosby,02360065, 0.4, 0.0, 13.0, 33.0, 13.7, 0.0, 40.0, 47.8, 52.2, 0.0,60.0,0.0 +1,1,a-cure-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 5.9, 29.4, 17.6, 0.0, 47.1, 29.4, 70.6, 0.0,52.9,0.0 +1,1,a-cure-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 17.4, 21.7, 8.7, 0.0, 52.2, 26.1, 73.9, 0.0,47.8,0.0 +1,1,a-cure-i1,2022-23,Pittsfield - Egremont,02360035, 0.3, 1.8, 9.2, 22.5, 10.2, 0.5, 55.5, 52.4, 47.6, 0.0,44.5,3.6 +1,1,a-cure-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 0.4, 0.4, 12.9, 18.4, 14.7, 0.0, 53.1, 49.6, 50.4, 0.0,46.9,4.0 +1,1,a-cure-i1,2022-23,Pittsfield - Morningside Community School,02360055, 0.8, 1.1, 14.6, 23.4, 14.9, 0.0, 45.1, 53.8, 46.2, 0.0,54.9,3.6 +2.833787465940054,2.83,a-cure-i1,2022-23,Pittsfield - Pittsfield High,02360505, 0.2, 1.5, 11.1, 17.1, 6.9, 0.0, 63.3, 50.4, 49.2, 0.5,36.7,6.5 +1,1,a-cure-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, 2.9, 15.4, 14.4, 9.6, 0.0, 57.7, 49.0, 51.0, 0.0,42.3,0.0 +1,1,a-cure-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 1.1, 0.0, 5.0, 14.9, 9.9, 0.0, 69.1, 49.7, 50.3, 0.0,30.900000000000006,0.0 +1.6944024205748867,1.69,a-cure-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.3, 20.7, 30.5, 14.6, 0.0, 33.9, 50.1, 49.6, 0.3,66.1,7.0 +1,1,a-cure-i1,2022-23,Pittsfield - Stearns,02360090, 0.0, 1.3, 5.1, 9.4, 8.1, 0.0, 76.1, 39.7, 60.3, 0.0,23.900000000000006,0.0 +4.720626631853786,4.72,a-cure-i1,2022-23,Pittsfield - Taconic High,02360510, 0.2, 1.6, 12.0, 14.9, 9.5, 0.0, 61.7, 46.9, 53.0, 0.1,38.3,11.3 +1,1,a-cure-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 0.4, 1.6, 10.1, 16.1, 9.1, 0.2, 62.5, 43.8, 55.4, 0.8,37.5,4.4 +1,1,a-cure-i1,2022-23,Pittsfield - Williams,02360100, 0.0, 3.5, 9.8, 12.5, 7.4, 0.0, 66.8, 49.6, 50.4, 0.0,33.2,0.0 +1,1,a-cure-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 0.3, 3.8, 5.8, 9.9, 4.8, 0.0, 75.4, 49.1, 50.9, 0.0,24.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 0.3, 2.8, 5.6, 7.9, 4.5, 0.0, 78.9, 48.5, 51.5, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Cold Spring,02390005, 0.0, 1.4, 2.8, 25.0, 2.4, 0.0, 68.4, 53.8, 46.2, 0.0,31.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Federal Furnace School,02390011, 0.2, 1.0, 6.7, 6.4, 6.7, 0.0, 79.1, 45.1, 54.9, 0.0,20.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Hedge,02390010, 0.5, 0.5, 5.7, 39.2, 9.6, 0.0, 44.5, 45.5, 54.5, 0.0,55.5,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Indian Brook,02390012, 0.0, 0.3, 0.9, 5.9, 3.3, 0.2, 89.4, 47.9, 52.1, 0.0,10.599999999999994,3.1 +1,1,a-cure-i1,2022-23,Plymouth - Manomet Elementary,02390015, 0.0, 1.2, 0.8, 4.4, 6.8, 0.0, 86.7, 52.2, 47.8, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.6, 1.2, 12.5, 4.7, 0.0, 81.1, 48.0, 52.0, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 1.4, 3.2, 10.3, 5.4, 0.0, 79.8, 49.5, 50.2, 0.2,20.200000000000003,1.4 +1,1,a-cure-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.5, 1.0, 8.9, 4.7, 0.0, 84.8, 33.5, 66.5, 0.0,15.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Plymouth North High,02390505, 0.2, 1.7, 3.1, 10.9, 4.8, 0.1, 79.3, 46.9, 52.7, 0.4,20.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Plymouth - Plymouth South High,02390515, 0.3, 0.3, 1.5, 4.2, 3.7, 0.0, 90.1, 47.4, 52.5, 0.1,9.900000000000006,3.0999999999999996 +1,1,a-cure-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 0.5, 0.0, 1.0, 4.2, 4.0, 0.5, 89.8, 45.6, 54.4, 0.0,10.200000000000003,2.2 +1,1,a-cure-i1,2022-23,Plymouth - South Elementary,02390046, 0.2, 1.3, 1.6, 6.5, 4.0, 0.2, 86.3, 48.1, 51.9, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Plymouth - West Elementary,02390047, 0.0, 2.2, 3.4, 7.8, 7.8, 0.0, 78.8, 45.3, 54.7, 0.0,21.200000000000003,4.3 +1,1,a-cure-i1,2022-23,Plympton - Dennett Elementary,02400010, 0.0, 0.4, 0.4, 2.5, 0.4, 0.0, 96.2, 47.7, 52.3, 0.0,3.799999999999997,0.0 +4.489337822671156,4.49,a-cure-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 6.8, 56.6, 21.2, 4.3, 0.2, 10.9, 50.5, 49.5, 0.0,89.1,25.0 +1,1,a-cure-i1,2022-23,Provincetown - Provincetown Schools,02420020, 0.7, 0.0, 20.4, 13.4, 9.2, 0.0, 56.3, 52.1, 47.9, 0.0,43.7,0.0 +1,1,a-cure-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.5, 8.7, 1.1, 0.0, 89.7, 47.8, 52.2, 0.0,10.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Quabbin - Hubbardston Center,07530010, 0.3, 1.3, 0.3, 5.9, 1.3, 0.0, 90.8, 45.9, 54.1, 0.0,9.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 5.3, 2.6, 0.0, 92.1, 42.1, 55.3, 2.6,7.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Quabbin - Oakham Center,07530025, 0.0, 1.1, 2.9, 7.5, 3.4, 0.0, 85.1, 43.7, 56.3, 0.0,14.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.8, 1.2, 7.1, 1.6, 0.0, 88.3, 54.6, 45.1, 0.4,11.700000000000003,4.3 +1,1,a-cure-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 0.2, 1.0, 2.1, 6.0, 3.3, 0.0, 87.4, 52.2, 47.8, 0.0,12.599999999999994,4.2 +1,1,a-cure-i1,2022-23,Quabbin - Ruggles Lane,07530030, 0.0, 0.3, 3.4, 4.4, 3.4, 0.3, 88.4, 43.3, 56.7, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 2.1, 4.3, 17.0, 0.0, 0.0, 76.6, 44.7, 55.3, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 0.3, 0.0, 0.8, 7.1, 4.5, 0.0, 87.3, 50.0, 48.6, 1.4,12.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 8.9, 8.4, 0.0, 82.8, 50.2, 49.3, 0.5,17.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 0.3, 0.3, 1.6, 7.5, 5.0, 0.0, 85.3, 49.1, 50.9, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.8, 0.8, 9.3, 3.9, 0.0, 85.2, 49.8, 49.8, 0.4,14.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.6, 40.0, 10.9, 11.5, 12.7, 0.0, 24.2, 32.1, 67.9, 0.0,75.8,0.0 +2.835443037974684,2.84,a-cure-i1,2022-23,Quincy - Atherton Hough,02430040, 0.4, 12.1, 5.9, 6.6, 6.3, 0.4, 68.4, 40.2, 59.8, 0.0,31.599999999999994,5.6 +4.155844155844156,4.16,a-cure-i1,2022-23,Quincy - Atlantic Middle,02430305, 0.0, 54.6, 4.0, 7.8, 2.7, 0.2, 30.7, 47.0, 52.8, 0.2,69.3,18.0 +1,1,a-cure-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 59.1, 2.1, 6.7, 2.1, 0.0, 30.0, 49.4, 50.6, 0.0,70.0,4.7 +1,1,a-cure-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 0.3, 22.1, 6.9, 10.6, 3.1, 0.0, 57.0, 46.1, 53.9, 0.0,43.0,0.0 +1,1,a-cure-i1,2022-23,Quincy - Central Middle,02430315, 0.0, 43.6, 3.4, 4.5, 3.6, 0.9, 44.0, 44.4, 55.2, 0.5,56.0,0.0 +1,1,a-cure-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 27.9, 4.1, 4.4, 6.2, 0.0, 57.4, 52.4, 47.6, 0.0,42.6,4.6 +1,1,a-cure-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 35.6, 15.8, 16.0, 6.2, 0.2, 26.3, 53.1, 46.9, 0.0,73.7,0.0 +4.775193798449612,4.78,a-cure-i1,2022-23,Quincy - Francis W Parker,02430075, 0.0, 63.6, 5.3, 6.0, 2.5, 0.0, 22.6, 50.5, 49.5, 0.0,77.4,23.1 +1.2907153729071537,1.29,a-cure-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 0.7, 33.6, 11.4, 11.3, 8.7, 0.0, 34.3, 50.4, 49.4, 0.2,65.7,5.3 +1,1,a-cure-i1,2022-23,Quincy - Merrymount,02430060, 0.0, 19.9, 4.3, 6.4, 5.5, 0.0, 63.9, 48.3, 51.7, 0.0,36.1,1.0 +1.1717171717171717,1.17,a-cure-i1,2022-23,Quincy - Montclair,02430065, 0.0, 64.7, 4.2, 5.3, 5.1, 0.0, 20.8, 49.0, 51.0, 0.0,79.2,5.8 +2.6982248520710064,2.7,a-cure-i1,2022-23,Quincy - North Quincy High,02430510, 0.2, 55.0, 4.7, 4.3, 3.2, 0.2, 32.4, 47.2, 52.8, 0.0,67.6,11.4 +2.0934579439252334,2.09,a-cure-i1,2022-23,Quincy - Point Webster Middle,02430325, 0.0, 36.0, 17.5, 17.0, 3.4, 1.0, 25.1, 53.3, 46.2, 0.5,74.9,9.8 +3.003831417624521,3.0,a-cure-i1,2022-23,Quincy - Quincy High,02430505, 0.3, 21.4, 14.0, 11.5, 4.5, 0.5, 47.8, 48.6, 51.0, 0.4,52.2,9.8 +1,1,a-cure-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 0.3, 31.8, 14.0, 15.8, 7.5, 0.0, 30.8, 40.3, 59.8, 0.0,69.2,0.6 +1,1,a-cure-i1,2022-23,Quincy - South West Middle School,02430320, 0.7, 28.8, 16.0, 15.8, 5.7, 0.7, 32.3, 44.6, 55.4, 0.0,67.7,3.0 +1,1,a-cure-i1,2022-23,Quincy - Squantum,02430095, 0.0, 30.1, 4.5, 5.7, 5.1, 0.0, 54.5, 47.4, 52.6, 0.0,45.5,0.0 +1,1,a-cure-i1,2022-23,Quincy - Wollaston School,02430110, 0.0, 59.2, 3.3, 4.8, 1.8, 0.0, 30.9, 46.5, 53.5, 0.0,69.1,0.0 +1,1,a-cure-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.1, 1.3, 9.4, 3.4, 0.2, 84.5, 46.1, 51.6, 2.3,15.5,2.0 +3.880597014925373,3.88,a-cure-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 0.4, 11.9, 43.2, 17.2, 7.4, 0.4, 19.6, 47.4, 52.6, 0.0,80.4,19.5 +1.8198198198198199,1.82,a-cure-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 0.2, 12.6, 55.7, 14.8, 5.2, 0.2, 11.2, 49.8, 50.2, 0.0,88.8,10.1 +3.7192982456140347,3.72,a-cure-i1,2022-23,Randolph - Margaret L Donovan,02440015, 0.2, 18.5, 46.8, 20.7, 5.0, 0.0, 8.8, 50.1, 49.6, 0.2,91.2,21.2 +3.52414605418139,3.52,a-cure-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 0.8, 8.3, 52.8, 19.8, 3.2, 0.0, 15.1, 53.2, 46.8, 0.0,84.9,18.700000000000003 +4.656179775280899,4.66,a-cure-i1,2022-23,Randolph - Randolph Community Middle,02440410, 0.4, 18.0, 49.8, 15.7, 4.6, 0.5, 11.0, 47.9, 52.1, 0.0,89.0,25.900000000000002 +2.2832244008714597,2.28,a-cure-i1,2022-23,Randolph - Randolph High,02440505, 0.2, 20.2, 50.6, 17.0, 3.9, 0.0, 8.2, 43.0, 56.9, 0.2,91.8,13.1 +1,1,a-cure-i1,2022-23,Reading - Alice M Barrows,02460002, 0.0, 3.4, 2.0, 4.5, 2.0, 0.0, 88.2, 48.9, 51.1, 0.0,11.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 0.0, 3.7, 2.1, 3.0, 1.9, 0.0, 89.3, 45.2, 54.5, 0.2,10.700000000000003,3.6 +1,1,a-cure-i1,2022-23,Reading - Birch Meadow,02460005, 0.0, 4.7, 3.6, 3.4, 3.1, 0.0, 85.2, 44.1, 55.9, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Reading - J Warren Killam,02460017, 0.0, 8.6, 3.0, 3.9, 1.2, 0.0, 83.3, 47.5, 52.5, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Reading - Joshua Eaton,02460010, 0.0, 7.5, 1.5, 8.7, 3.6, 0.0, 78.7, 49.1, 50.9, 0.0,21.299999999999997,4.9 +1,1,a-cure-i1,2022-23,Reading - Reading Memorial High,02460505, 0.2, 4.8, 3.6, 2.6, 2.0, 0.1, 86.7, 46.7, 52.9, 0.4,13.299999999999997,1.4 +1,1,a-cure-i1,2022-23,Reading - RISE PreSchool,02460001, 0.0, 8.7, 1.0, 6.8, 6.8, 0.0, 76.7, 40.8, 59.2, 0.0,23.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Reading - Walter S Parker Middle,02460310, 0.6, 3.7, 5.0, 4.1, 4.7, 0.0, 81.9, 50.9, 49.1, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Reading - Wood End Elementary School,02460020, 0.0, 4.5, 2.8, 4.1, 3.3, 0.0, 85.4, 48.8, 51.2, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 0.1, 3.3, 2.2, 57.4, 2.5, 0.0, 34.4, 47.7, 52.3, 0.0,65.6,2.8 +2.55,2.55,a-cure-i1,2022-23,Revere - Abraham Lincoln,02480025, 0.7, 2.5, 3.3, 55.5, 2.0, 0.0, 36.0, 50.5, 49.5, 0.0,64.0,10.2 +1,1,a-cure-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 3.9, 5.1, 53.6, 0.9, 0.3, 36.3, 45.5, 54.5, 0.0,63.7,0.0 +1,1,a-cure-i1,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 2.1, 2.1, 64.2, 4.2, 0.0, 27.4, 38.9, 60.0, 1.1,72.6,0.0 +1.7258883248730965,1.73,a-cure-i1,2022-23,Revere - Garfield Elementary School,02480056, 0.1, 5.3, 3.2, 68.9, 1.3, 0.0, 21.2, 51.1, 48.8, 0.1,78.8,8.5 +4.272479564032698,4.27,a-cure-i1,2022-23,Revere - Garfield Middle School,02480057, 0.5, 3.8, 2.7, 63.9, 2.4, 0.0, 26.6, 49.6, 50.4, 0.0,73.4,19.6 +1,1,a-cure-i1,2022-23,Revere - Paul Revere,02480050, 0.9, 4.4, 2.2, 57.0, 1.3, 0.0, 34.2, 51.8, 48.2, 0.0,65.8,0.0 +2.791208791208791,2.79,a-cure-i1,2022-23,Revere - Revere High,02480505, 0.3, 4.0, 3.8, 63.4, 1.2, 0.0, 27.2, 47.9, 51.9, 0.1,72.8,12.7 +1.3773314203730271,1.38,a-cure-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 0.2, 4.9, 2.3, 61.8, 0.4, 0.2, 30.3, 47.7, 52.3, 0.0,69.7,6.0 +1,1,a-cure-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.2, 3.3, 4.0, 69.0, 1.2, 0.0, 22.3, 48.1, 51.9, 0.0,77.7,2.1 +1.3008130081300813,1.3,a-cure-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 0.4, 3.1, 3.9, 65.9, 0.5, 0.0, 26.2, 54.9, 44.9, 0.2,73.8,6.0 +1,1,a-cure-i1,2022-23,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.3, 7.1, 5.8, 0.0, 85.7, 52.6, 47.4, 0.0,14.299999999999997,0.0 +14.361445783132533,5,a-cure-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.8, 1.9, 1.3, 5.0, 7.6, 0.0, 83.4, 49.8, 49.5, 0.6,16.599999999999994,14.899999999999999 +1,1,a-cure-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 1.0, 1.0, 6.6, 5.6, 0.0, 85.8, 52.1, 47.9, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Rochester - Rochester Memorial,02500005, 0.0, 0.4, 0.6, 3.3, 2.2, 0.0, 93.5, 47.4, 52.6, 0.0,6.5,0.0 +1,1,a-cure-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 1.2, 0.8, 6.1, 25.5, 4.0, 0.0, 62.3, 49.0, 51.0, 0.0,37.7,0.0 +1,1,a-cure-i1,2022-23,Rockland - John W Rogers Middle,02510305, 0.8, 1.3, 6.4, 18.9, 3.8, 0.0, 68.8, 47.3, 52.7, 0.0,31.200000000000003,4.4 +2.565217391304348,2.57,a-cure-i1,2022-23,Rockland - Memorial Park,02510020, 0.0, 2.8, 3.6, 25.1, 5.3, 0.0, 63.2, 49.0, 51.0, 0.0,36.8,5.9 +3.7493188010899177,3.75,a-cure-i1,2022-23,Rockland - R Stewart Esten,02510025, 0.3, 2.9, 7.3, 24.3, 1.9, 0.0, 63.3, 48.2, 51.8, 0.0,36.7,8.6 +2.700636942675159,2.7,a-cure-i1,2022-23,Rockland - Rockland Senior High,02510505, 1.1, 1.7, 6.2, 20.0, 2.2, 0.2, 68.6, 48.4, 51.5, 0.2,31.400000000000006,5.300000000000001 +1,1,a-cure-i1,2022-23,Rockport - Rockport Elementary,02520005, 0.0, 1.6, 1.6, 3.9, 3.6, 0.0, 89.1, 47.7, 52.3, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Rockport - Rockport High,02520510, 0.0, 1.3, 1.3, 5.2, 3.5, 0.0, 88.7, 40.3, 59.7, 0.0,11.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Rockport - Rockport Middle,02520305, 0.0, 2.1, 0.0, 2.6, 2.6, 0.0, 92.8, 49.7, 50.3, 0.0,7.200000000000003,0.0 +10.572687224669602,5,a-cure-i1,2022-23,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 3.0, 4.5, 15.2, 0.0, 77.3, 43.9, 56.1, 0.0,22.700000000000003,15.0 +6.884848484848484,5,a-cure-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.2, 0.6, 55.1, 40.6, 2.2, 0.2, 1.0, 45.3, 54.7, 0.0,99.0,42.599999999999994 +2.4499054820415878,2.45,a-cure-i1,2022-23,Salem - Bates,02580003, 0.5, 0.8, 7.2, 39.8, 4.3, 0.3, 47.1, 47.6, 52.1, 0.3,52.9,8.1 +7.8394332939787486,5,a-cure-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 0.0, 1.5, 9.9, 70.1, 2.6, 0.7, 15.3, 48.2, 51.8, 0.0,84.7,41.5 +1,1,a-cure-i1,2022-23,Salem - Carlton,02580015, 0.0, 1.6, 2.8, 32.5, 6.1, 0.0, 56.9, 51.2, 48.4, 0.4,43.1,0.0 +5.333333333333333,5,a-cure-i1,2022-23,Salem - Collins Middle,02580305, 0.0, 2.0, 6.0, 45.8, 4.7, 0.0, 41.5, 50.7, 49.3, 0.0,58.5,19.5 +1.636963696369637,1.64,a-cure-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 0.0, 4.4, 8.4, 45.1, 2.7, 0.0, 39.4, 49.8, 50.2, 0.0,60.6,6.2 +5.514431239388795,5,a-cure-i1,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 10.7, 42.9, 5.4, 0.0, 41.1, 60.7, 37.5, 1.8,58.9,20.3 +1,1,a-cure-i1,2022-23,Salem - Salem Early Childhood,02580001, 0.0, 3.1, 10.4, 30.2, 4.2, 0.0, 52.1, 41.7, 58.3, 0.0,47.9,0.0 +3.448946515397082,3.45,a-cure-i1,2022-23,Salem - Salem High,02580505, 0.1, 2.5, 7.2, 48.9, 2.9, 0.1, 38.3, 46.8, 52.9, 0.2,61.7,13.299999999999999 +1,1,a-cure-i1,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.0, 7.1, 28.6, 0.0, 0.0, 64.3, 50.0, 50.0, 0.0,35.7,0.0 +2.505338078291815,2.51,a-cure-i1,2022-23,Salem - Saltonstall School,02580050, 0.0, 1.0, 5.0, 44.8, 5.3, 0.0, 43.8, 50.4, 49.6, 0.0,56.2,8.8 +2.4661654135338344,2.47,a-cure-i1,2022-23,Salem - Witchcraft Heights,02580070, 0.0, 4.2, 6.8, 39.1, 2.9, 0.2, 46.8, 45.3, 54.7, 0.0,53.2,8.2 +4.7099567099567095,4.71,a-cure-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 5.5, 11.9, 49.7, 2.2, 0.0, 30.7, 50.5, 48.9, 0.6,69.3,20.4 +1,1,a-cure-i1,2022-23,Sandwich - Forestdale School,02610002, 0.4, 3.0, 0.6, 4.8, 3.1, 0.2, 88.0, 46.3, 53.7, 0.0,12.0,2.6 +7.238095238095242,5,a-cure-i1,2022-23,Sandwich - Oak Ridge,02610025, 0.4, 2.8, 1.3, 6.2, 1.6, 0.1, 87.4, 50.3, 49.7, 0.0,12.599999999999994,5.7 +1,1,a-cure-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 0.1, 3.0, 1.4, 3.0, 1.8, 0.3, 90.3, 47.8, 51.6, 0.5,9.700000000000003,3.9 +1,1,a-cure-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 1.0, 6.4, 5.3, 27.8, 4.5, 0.3, 54.7, 47.3, 52.7, 0.0,45.3,0.0 +2.502202643171806,2.5,a-cure-i1,2022-23,Saugus - Saugus High,02620505, 0.6, 4.3, 6.9, 31.3, 1.8, 0.6, 54.6, 47.7, 52.2, 0.1,45.4,7.1 +1,1,a-cure-i1,2022-23,Saugus - Saugus Middle School,02620305, 0.8, 7.4, 5.0, 30.8, 2.5, 0.3, 53.2, 46.2, 53.8, 0.0,46.8,0.0 +1,1,a-cure-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 0.5, 8.4, 6.2, 28.0, 4.6, 0.0, 52.3, 40.4, 59.6, 0.0,47.7,3.3 +1,1,a-cure-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 2.5, 2.5, 0.0, 0.0, 95.0, 47.5, 52.5, 0.0,5.0,0.0 +1,1,a-cure-i1,2022-23,Scituate - Cushing Elementary,02640007, 0.0, 0.8, 0.6, 2.5, 3.1, 0.3, 92.6, 52.4, 47.6, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Scituate - Gates Middle School,02640305, 0.2, 0.8, 3.6, 3.5, 2.6, 0.0, 89.3, 45.8, 54.0, 0.2,10.700000000000003,2.4 +1,1,a-cure-i1,2022-23,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 2.4, 2.0, 2.4, 0.0, 93.3, 47.1, 52.9, 0.0,6.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 3.0, 2.7, 4.9, 0.0, 89.4, 47.7, 52.3, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Scituate - Scituate High School,02640505, 0.0, 0.7, 2.0, 2.0, 2.2, 0.0, 93.2, 51.2, 48.2, 0.5,6.799999999999997,1.8 +1,1,a-cure-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.1, 2.4, 3.1, 0.0, 93.4, 50.4, 49.6, 0.0,6.599999999999994,0.0 +5.454545454545456,5,a-cure-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 2.9, 4.5, 6.5, 3.7, 0.0, 82.4, 50.4, 49.6, 0.0,17.599999999999994,6.0 +1,1,a-cure-i1,2022-23,Seekonk - George R Martin,02650007, 0.0, 3.9, 2.2, 6.4, 3.1, 0.0, 84.4, 53.9, 46.1, 0.0,15.599999999999994,0.0 +6.296774193548386,5,a-cure-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 0.0, 3.1, 1.4, 6.7, 4.3, 0.0, 84.5, 46.5, 53.5, 0.0,15.5,6.1 +1,1,a-cure-i1,2022-23,Seekonk - Seekonk High,02650505, 0.0, 4.7, 3.2, 6.2, 4.1, 0.2, 81.6, 46.7, 52.5, 0.8,18.400000000000006,4.699999999999999 +1,1,a-cure-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 50.0, 50.0, 0.0,0.0,0.0 +1,1,a-cure-i1,2022-23,Sharon - Cottage Street,02660005, 0.0, 20.5, 6.8, 9.3, 11.4, 0.0, 52.0, 48.2, 51.8, 0.0,48.0,0.0 +1,1,a-cure-i1,2022-23,Sharon - East Elementary,02660010, 0.0, 28.2, 3.9, 7.4, 8.6, 0.0, 51.9, 47.4, 52.4, 0.2,48.1,3.6 +1,1,a-cure-i1,2022-23,Sharon - Heights Elementary,02660015, 0.4, 31.3, 5.6, 4.9, 7.6, 0.0, 50.3, 49.7, 50.3, 0.0,49.7,3.3 +1,1,a-cure-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, 35.7, 3.6, 10.7, 7.1, 0.0, 42.9, 39.3, 60.7, 0.0,57.1,0.0 +1,1,a-cure-i1,2022-23,Sharon - Sharon High,02660505, 0.1, 31.1, 5.3, 5.6, 5.4, 0.1, 52.4, 48.2, 51.8, 0.0,47.6,4.2 +1,1,a-cure-i1,2022-23,Sharon - Sharon Middle,02660305, 0.4, 32.9, 5.9, 5.2, 8.0, 0.1, 47.5, 50.2, 49.7, 0.1,52.5,3.9 +1,1,a-cure-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.3, 0.7, 1.5, 7.1, 2.1, 0.0, 88.3, 37.5, 61.8, 0.7,11.700000000000003,0.2 +1,1,a-cure-i1,2022-23,Sherborn - Pine Hill,02690010, 0.0, 8.0, 4.0, 4.5, 5.7, 0.0, 77.8, 52.6, 47.1, 0.2,22.200000000000003,2.9 +1,1,a-cure-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 0.4, 28.7, 4.5, 22.7, 3.6, 0.0, 40.1, 54.3, 45.7, 0.0,59.9,0.0 +1,1,a-cure-i1,2022-23,Shrewsbury - Floral Street School,02710020, 1.0, 52.0, 4.6, 5.6, 5.6, 0.0, 31.2, 44.5, 55.5, 0.0,68.8,0.0 +1.8947368421052633,1.89,a-cure-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 1.1, 41.5, 2.5, 10.8, 4.8, 0.0, 39.2, 48.6, 51.4, 0.0,60.8,7.2 +2.2598870056497176,2.26,a-cure-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 0.7, 33.2, 3.5, 10.8, 4.9, 0.0, 46.9, 50.8, 49.0, 0.1,53.1,7.5 +1,1,a-cure-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 1.5, 42.9, 6.4, 9.9, 5.9, 0.0, 33.5, 43.3, 56.7, 0.0,66.5,0.0 +1,1,a-cure-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 0.7, 37.1, 4.6, 9.4, 5.4, 0.0, 42.7, 45.7, 54.3, 0.0,57.3,1.8 +2.074074074074074,2.07,a-cure-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.3, 30.0, 3.8, 9.9, 4.6, 0.0, 51.4, 51.7, 48.3, 0.1,48.6,6.3 +1,1,a-cure-i1,2022-23,Shrewsbury - Spring Street School,02710035, 0.0, 30.5, 2.3, 5.2, 6.2, 0.0, 55.8, 45.5, 54.5, 0.0,44.2,0.0 +2.3305322128851538,2.33,a-cure-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 0.7, 15.5, 3.1, 7.9, 8.6, 0.0, 64.3, 48.1, 51.9, 0.0,35.7,5.2 +10.27737226277372,5,a-cure-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 0.8, 0.0, 0.8, 9.7, 2.4, 0.0, 86.3, 50.8, 47.6, 1.6,13.700000000000003,8.8 +1,1,a-cure-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 0.5, 0.8, 1.3, 3.3, 1.4, 0.0, 92.6, 48.6, 51.2, 0.2,7.400000000000006,1.5 +1,1,a-cure-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 0.6, 0.4, 1.3, 4.0, 0.8, 0.0, 93.0, 48.9, 51.1, 0.0,7.0,0.0 +1,1,a-cure-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.9, 1.5, 9.3, 25.3, 4.9, 0.0, 58.1, 47.7, 51.5, 0.9,41.9,3.4 +1,1,a-cure-i1,2022-23,Somerset - Chace Street,02730005, 0.0, 2.5, 0.9, 6.5, 2.8, 0.0, 87.3, 50.6, 49.4, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Somerset - North Elementary,02730008, 0.2, 1.7, 2.0, 4.6, 5.0, 0.0, 86.5, 44.1, 55.9, 0.0,13.5,0.0 +1,1,a-cure-i1,2022-23,Somerset - Somerset Middle School,02730305, 0.2, 1.9, 0.7, 6.4, 3.1, 0.0, 87.7, 48.5, 51.5, 0.0,12.299999999999997,3.1 +1,1,a-cure-i1,2022-23,Somerset - South,02730015, 0.4, 2.7, 2.3, 6.6, 3.9, 0.0, 84.1, 48.1, 51.9, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.4, 1.4, 1.6, 5.2, 2.2, 0.0, 89.2, 50.4, 49.5, 0.1,10.799999999999997,1.4 +3.891891891891892,3.89,a-cure-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.4, 7.4, 5.1, 35.7, 6.8, 0.2, 44.5, 46.1, 53.7, 0.2,55.5,13.5 +6.342141863699582,5,a-cure-i1,2022-23,Somerville - Arthur D Healey,02740075, 0.2, 3.0, 15.0, 49.6, 4.0, 0.2, 28.1, 48.2, 51.6, 0.2,71.9,28.5 +1,1,a-cure-i1,2022-23,Somerville - Benjamin G Brown,02740015, 0.0, 9.5, 6.6, 7.1, 16.6, 0.0, 60.2, 64.0, 36.0, 0.0,39.8,4.1 +1,1,a-cure-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 0.0, 8.9, 7.5, 32.9, 11.7, 0.5, 38.5, 42.7, 56.8, 0.5,61.5,4.8 +5.548549810844893,5,a-cure-i1,2022-23,Somerville - E Somerville Community,02740111, 0.0, 4.9, 4.8, 66.8, 2.6, 0.1, 20.7, 44.4, 55.3, 0.3,79.3,27.5 +1,1,a-cure-i1,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 14.8, 53.7, 5.6, 0.0, 25.9, 38.9, 61.1, 0.0,74.1,3.8 +7.68,5,a-cure-i1,2022-23,Somerville - John F Kennedy,02740083, 0.2, 6.8, 4.3, 14.5, 6.6, 0.0, 67.5, 48.0, 52.0, 0.0,32.5,15.6 +2.140715109573241,2.14,a-cure-i1,2022-23,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 26.7, 53.3, 6.7, 0.0, 13.3, 26.7, 73.3, 0.0,86.7,11.6 +3.9693721286370605,3.97,a-cure-i1,2022-23,Somerville - Somerville High,02740505, 0.2, 5.7, 9.3, 47.3, 2.7, 0.1, 34.7, 47.0, 51.7, 1.3,65.3,16.200000000000003 +4.129032258064516,4.13,a-cure-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 0.0, 4.9, 10.0, 10.0, 11.9, 0.5, 62.8, 48.2, 51.2, 0.5,37.2,9.6 +1.92,1.92,a-cure-i1,2022-23,Somerville - Winter Hill Community,02740120, 0.0, 4.5, 9.5, 49.3, 4.0, 0.2, 32.5, 43.6, 56.2, 0.2,67.5,8.1 +1,1,a-cure-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 0.2, 1.7, 1.7, 17.7, 2.5, 0.0, 76.2, 50.4, 49.4, 0.2,23.799999999999997,0.0 +1,1,a-cure-i1,2022-23,South Hadley - Mosier,02780020, 0.0, 0.9, 2.0, 17.1, 2.9, 0.0, 77.1, 51.6, 48.4, 0.0,22.900000000000006,4.7 +1,1,a-cure-i1,2022-23,South Hadley - Plains Elementary,02780015, 0.3, 3.3, 0.7, 18.2, 5.9, 0.0, 71.7, 43.0, 57.0, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2022-23,South Hadley - South Hadley High,02780505, 0.0, 1.8, 2.6, 15.4, 2.2, 0.0, 78.0, 49.6, 49.6, 0.8,22.0,0.9 +2.4923076923076923,2.49,a-cure-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.8, 1.4, 5.0, 41.2, 2.6, 0.0, 48.0, 43.1, 55.7, 1.2,52.0,8.1 +3.2876712328767126,3.29,a-cure-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.8, 7.7, 35.8, 8.0, 6.0, 0.3, 41.6, 48.7, 50.7, 0.7,58.4,12.0 +1,1,a-cure-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.2, 0.3, 2.8, 6.3, 1.1, 0.0, 89.4, 33.7, 65.7, 0.6,10.599999999999994,2.0 +1,1,a-cure-i1,2022-23,Southampton - William E Norris,02750005, 0.0, 1.0, 0.0, 6.3, 3.1, 0.0, 89.5, 47.8, 52.2, 0.0,10.5,0.0 +1,1,a-cure-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 26.5, 1.5, 5.6, 3.0, 0.4, 63.1, 50.4, 49.6, 0.0,36.9,0.0 +4.451127819548874,4.45,a-cure-i1,2022-23,Southborough - Margaret A Neary,02760020, 0.0, 15.7, 0.7, 4.1, 6.0, 0.0, 73.4, 48.3, 51.7, 0.0,26.599999999999994,7.4 +1,1,a-cure-i1,2022-23,Southborough - Mary E Finn School,02760008, 0.3, 29.7, 2.3, 7.4, 5.1, 0.0, 55.1, 48.0, 52.0, 0.0,44.9,0.0 +2.770149253731343,2.77,a-cure-i1,2022-23,Southborough - P Brent Trottier,02760305, 0.3, 21.3, 1.0, 4.4, 6.5, 0.0, 66.5, 50.6, 49.4, 0.0,33.5,5.8 +3.746686303387334,3.75,a-cure-i1,2022-23,Southbridge - Charlton Street,02770005, 0.4, 1.6, 1.2, 62.7, 2.0, 0.0, 32.1, 51.4, 48.6, 0.0,67.9,15.899999999999999 +3.6010781671159027,3.6,a-cure-i1,2022-23,Southbridge - Eastford Road,02770010, 0.3, 0.3, 3.3, 67.9, 2.4, 0.0, 25.8, 44.8, 55.2, 0.0,74.2,16.7 +3.574212893553223,3.57,a-cure-i1,2022-23,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 3.0, 63.6, 0.0, 0.0, 33.3, 24.2, 75.8, 0.0,66.7,14.9 +2.2122905027932958,2.21,a-cure-i1,2022-23,Southbridge - Southbridge High School,02770515, 0.0, 1.5, 3.1, 65.4, 1.3, 0.2, 28.4, 43.3, 56.2, 0.4,71.6,9.899999999999999 +4.345978755690441,4.35,a-cure-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 0.2, 1.0, 3.0, 60.2, 1.5, 0.0, 34.1, 48.9, 51.1, 0.0,65.9,17.900000000000002 +2.2795115332428764,2.28,a-cure-i1,2022-23,Southbridge - West Street,02770020, 0.0, 0.3, 1.5, 69.6, 2.4, 0.0, 26.3, 49.6, 50.4, 0.0,73.7,10.5 +4.013559322033898,4.01,a-cure-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 1.2, 38.6, 14.4, 4.8, 0.0, 41.0, 53.3, 45.7, 1.0,59.0,14.799999999999999 +5.254901960784313,5,a-cure-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 0.3, 0.3, 1.0, 12.6, 6.1, 0.0, 79.6, 47.3, 52.4, 0.3,20.400000000000006,6.7 +34.637362637362656,5,a-cure-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 1.5, 4.5, 3.0, 0.0, 90.9, 56.1, 43.9, 0.0,9.099999999999994,19.7 +1,1,a-cure-i1,2022-23,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 7.7, 15.4, 0.0, 76.9, 76.9, 23.1, 0.0,23.099999999999994,0.0 +3.9420289855072457,3.94,a-cure-i1,2022-23,Southern Berkshire - Undermountain,07650035, 0.8, 1.2, 0.4, 13.3, 5.0, 0.0, 79.3, 51.5, 48.5, 0.0,20.700000000000003,5.1 +1,1,a-cure-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.1, 0.8, 1.4, 12.2, 2.7, 0.0, 82.8, 44.1, 55.8, 0.2,17.200000000000003,1.8 +1,1,a-cure-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.3, 1.3, 1.0, 5.5, 3.6, 0.0, 88.3, 48.7, 51.3, 0.0,11.700000000000003,0.0 +12.767676767676761,5,a-cure-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.2, 1.3, 1.1, 5.0, 2.4, 0.0, 90.1, 51.2, 48.8, 0.0,9.900000000000006,7.9 +1,1,a-cure-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.3, 1.6, 1.6, 6.7, 3.8, 0.0, 85.9, 47.3, 52.7, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 0.6, 2.2, 2.8, 17.4, 5.0, 0.0, 72.0, 47.1, 52.4, 0.6,28.0,0.0 +1,1,a-cure-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.4, 2.9, 9.2, 4.2, 0.0, 83.3, 45.8, 54.2, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 1.1, 2.5, 21.2, 4.1, 0.0, 71.1, 44.4, 55.4, 0.3,28.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 1.7, 3.4, 21.3, 3.1, 0.0, 70.5, 47.2, 52.8, 0.0,29.5,0.0 +2.8156956004756246,2.82,a-cure-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 21.4, 55.1, 7.6, 0.0, 15.9, 54.4, 45.6, 0.0,84.1,14.8 +0.9379310344827586,1,a-cure-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 0.3, 8.4, 18.7, 54.8, 4.7, 0.0, 13.0, 47.2, 52.8, 0.0,87.0,5.1 +1,1,a-cure-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 0.0, 3.4, 16.8, 64.7, 6.0, 0.0, 9.1, 46.6, 53.4, 0.0,90.9,0.0 +5.3218142548596115,5,a-cure-i1,2022-23,Springfield - Balliet Preschool,02810003, 0.7, 2.0, 20.1, 63.1, 6.0, 0.7, 7.4, 38.9, 61.1, 0.0,92.6,30.8 +3.6768100734522564,3.68,a-cure-i1,2022-23,Springfield - Brightwood,02810025, 0.0, 0.2, 9.6, 85.1, 0.4, 0.0, 4.7, 51.2, 48.8, 0.0,95.3,21.900000000000002 +11.270668176670442,5,a-cure-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 3.6, 21.2, 62.0, 1.5, 0.0, 11.7, 43.8, 55.5, 0.7,88.3,62.2 +7.5929203539823,5,a-cure-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 0.0, 0.6, 18.3, 69.6, 1.9, 0.0, 9.6, 69.3, 29.8, 0.9,90.4,42.9 +2.600985221674877,2.6,a-cure-i1,2022-23,Springfield - Daniel B Brunton,02810035, 0.0, 2.2, 14.3, 59.1, 5.6, 0.0, 18.8, 51.8, 48.2, 0.0,81.2,13.2 +6.674948240165631,5,a-cure-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 0.0, 0.6, 24.0, 66.5, 5.6, 0.0, 3.4, 48.6, 51.4, 0.0,96.6,40.3 +2.77602523659306,2.78,a-cure-i1,2022-23,Springfield - Edward P. Boland School,02810010, 0.0, 1.8, 11.6, 78.9, 2.7, 0.0, 4.9, 43.6, 56.4, 0.0,95.1,16.5 +5.360910031023785,5,a-cure-i1,2022-23,Springfield - Elias Brookings,02810030, 0.4, 0.0, 22.2, 72.2, 1.9, 0.0, 3.3, 50.7, 49.3, 0.0,96.7,32.4 +7.60775370581528,5,a-cure-i1,2022-23,Springfield - Emergence Academy,02810318, 0.0, 0.9, 9.6, 72.8, 4.4, 0.0, 12.3, 46.5, 53.5, 0.0,87.7,41.7 +2.7656415694591723,2.77,a-cure-i1,2022-23,Springfield - Forest Park Middle,02810325, 0.0, 2.8, 19.6, 68.2, 3.7, 0.0, 5.7, 50.0, 49.7, 0.3,94.3,16.299999999999997 +7.5461624026696335,5,a-cure-i1,2022-23,Springfield - Frank H Freedman,02810075, 0.4, 1.4, 18.4, 64.6, 5.1, 0.0, 10.1, 52.3, 47.7, 0.0,89.9,42.400000000000006 +1.7001180637544273,1.7,a-cure-i1,2022-23,Springfield - Frederick Harris,02810080, 0.5, 4.8, 16.4, 57.0, 6.0, 0.0, 15.3, 47.2, 52.8, 0.0,84.7,9.0 +18.07909604519774,5,a-cure-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 19.2, 69.2, 0.0, 0.0, 11.5, 73.1, 26.9, 0.0,88.5,100.0 +17.77777777777778,5,a-cure-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 16.7, 70.0, 3.3, 0.0, 10.0, 63.3, 36.7, 0.0,90.0,100.0 +2.94824016563147,2.95,a-cure-i1,2022-23,Springfield - German Gerena Community School,02810195, 0.3, 0.7, 14.6, 77.4, 3.6, 0.0, 3.4, 47.7, 52.3, 0.0,96.6,17.8 +1.807909604519774,1.81,a-cure-i1,2022-23,Springfield - Glenwood,02810065, 0.0, 0.7, 5.9, 79.2, 2.8, 0.0, 11.5, 51.0, 49.0, 0.0,88.5,10.0 +1,1,a-cure-i1,2022-23,Springfield - Glickman Elementary,02810068, 0.3, 2.2, 13.8, 68.6, 4.2, 0.0, 10.9, 45.2, 54.8, 0.0,89.1,0.3 +7.113062568605928,5,a-cure-i1,2022-23,Springfield - High School Of Commerce,02810510, 0.1, 1.2, 17.0, 71.4, 1.3, 0.1, 8.9, 47.1, 52.9, 0.1,91.1,40.5 +2.072447859495061,2.07,a-cure-i1,2022-23,Springfield - Hiram L Dorman,02810050, 0.0, 1.5, 14.8, 70.1, 4.8, 0.0, 8.9, 48.3, 51.7, 0.0,91.1,11.8 +2.9928057553956835,2.99,a-cure-i1,2022-23,Springfield - Homer Street,02810085, 0.5, 0.5, 23.5, 67.9, 4.9, 0.0, 2.7, 49.9, 50.1, 0.0,97.3,18.2 +10.282183316168899,5,a-cure-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 0.5, 0.0, 13.6, 79.6, 2.9, 0.5, 2.9, 49.0, 51.0, 0.0,97.1,62.4 +0.9381107491856678,1,a-cure-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 0.4, 0.6, 17.5, 69.1, 4.6, 0.0, 7.9, 47.3, 52.7, 0.0,92.1,5.4 +6.330054644808742,5,a-cure-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 21.0, 67.2, 3.3, 0.0, 8.5, 53.1, 46.9, 0.0,91.5,36.199999999999996 +6.183050847457627,5,a-cure-i1,2022-23,Springfield - John J Duggan Academy,02810320, 0.1, 2.1, 23.9, 59.8, 2.6, 0.0, 11.5, 45.4, 54.2, 0.4,88.5,34.2 +3.654320987654321,3.65,a-cure-i1,2022-23,Springfield - Kensington International School,02810110, 0.0, 1.2, 14.1, 75.4, 6.5, 0.0, 2.8, 50.0, 50.0, 0.0,97.2,22.2 +8.654307524536533,5,a-cure-i1,2022-23,Springfield - Kiley Academy,02810316, 0.0, 1.0, 23.5, 64.1, 3.2, 0.0, 8.3, 46.0, 54.0, 0.0,91.7,49.6 +7.1699779249448135,5,a-cure-i1,2022-23,Springfield - Kiley Prep,02810315, 0.4, 1.9, 22.9, 62.8, 2.6, 0.0, 9.4, 43.2, 56.4, 0.4,90.6,40.6 +0.9205983889528193,1,a-cure-i1,2022-23,Springfield - Liberty,02810115, 0.4, 0.4, 7.6, 77.7, 0.8, 0.0, 13.1, 47.8, 52.2, 0.0,86.9,5.0 +1,1,a-cure-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 37.5, 0.0, 0.0, 62.5, 0.0, 100.0, 0.0,37.5,0.0 +4.7413612565445025,4.74,a-cure-i1,2022-23,Springfield - Lincoln,02810120, 0.0, 0.2, 10.0, 83.5, 1.8, 0.0, 4.5, 50.9, 49.1, 0.0,95.5,28.299999999999997 +4.5592315901814295,4.56,a-cure-i1,2022-23,Springfield - Margaret C Ells,02810060, 0.0, 1.9, 10.6, 75.6, 5.6, 0.0, 6.3, 38.1, 61.9, 0.0,93.7,26.7 +2.059594755661502,2.06,a-cure-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.3, 8.7, 15.4, 54.0, 5.4, 0.0, 16.1, 51.7, 48.3, 0.0,83.9,10.8 +6.903991370010787,5,a-cure-i1,2022-23,Springfield - Mary M Lynch,02810140, 0.0, 2.3, 21.5, 62.6, 6.4, 0.0, 7.3, 52.1, 47.9, 0.0,92.7,40.0 +2.51270207852194,2.51,a-cure-i1,2022-23,Springfield - Mary M Walsh,02810155, 0.0, 0.4, 15.7, 66.7, 3.8, 0.0, 13.4, 49.8, 50.2, 0.0,86.6,13.6 +3.661166116611661,3.66,a-cure-i1,2022-23,Springfield - Mary O Pottenger,02810145, 0.0, 1.8, 11.1, 74.9, 3.0, 0.0, 9.1, 48.9, 50.9, 0.3,90.9,20.8 +1.9771547248182764,1.98,a-cure-i1,2022-23,Springfield - Milton Bradley School,02810023, 0.2, 0.2, 15.1, 77.3, 3.5, 0.0, 3.7, 48.7, 51.3, 0.0,96.3,11.9 +5.533333333333334,5,a-cure-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 0.2, 0.0, 23.0, 70.3, 2.6, 0.0, 4.0, 47.3, 52.7, 0.0,96.0,33.2 +7.391120507399578,5,a-cure-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.2, 21.6, 68.5, 3.3, 0.0, 5.4, 48.1, 51.9, 0.0,94.6,43.7 +4.3257328990228014,4.33,a-cure-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.1, 2.5, 16.3, 71.5, 1.6, 0.0, 7.9, 53.9, 46.0, 0.1,92.1,24.9 +4.479283314669653,4.48,a-cure-i1,2022-23,Springfield - Samuel Bowles,02810020, 0.9, 0.9, 16.4, 68.9, 1.8, 0.4, 10.7, 51.6, 48.4, 0.0,89.3,25.0 +6.214876033057852,5,a-cure-i1,2022-23,Springfield - South End Middle School,02810355, 0.0, 0.0, 21.9, 72.7, 2.1, 0.0, 3.2, 49.7, 50.3, 0.0,96.8,37.6 +3.7176981541802387,3.72,a-cure-i1,2022-23,Springfield - Springfield Central High,02810500, 0.1, 3.0, 20.9, 65.6, 2.5, 0.0, 7.9, 45.3, 54.7, 0.0,92.1,21.4 +6.607888631090487,5,a-cure-i1,2022-23,Springfield - Springfield High School,02810570, 0.0, 0.0, 16.7, 69.0, 0.5, 0.0, 13.8, 44.3, 54.2, 1.5,86.2,35.6 +4.243850267379679,4.24,a-cure-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.4, 18.8, 70.7, 2.5, 0.2, 6.5, 45.1, 54.8, 0.1,93.5,24.8 +6.865315852205005,5,a-cure-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 3.2, 22.6, 58.1, 0.0, 0.0, 16.1, 58.1, 41.9, 0.0,83.9,36.0 +4.3839999999999995,4.38,a-cure-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 6.8, 92.0, 1.1, 0.0, 0.0, 28.4, 71.6, 0.0,100.0,27.4 +8.096579476861166,5,a-cure-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.3, 12.1, 86.0, 0.9, 0.0, 0.6, 44.2, 55.8, 0.0,99.4,50.3 +11.608888888888888,5,a-cure-i1,2022-23,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 10.0, 75.0, 5.0, 0.0, 10.0, 25.0, 75.0, 0.0,90.0,65.3 +3.4014447884416925,3.4,a-cure-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 28.1, 62.5, 6.3, 0.0, 3.1, 28.1, 71.9, 0.0,96.9,20.6 +10.352941176470589,5,a-cure-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 29.5, 60.7, 1.6, 0.0, 8.2, 29.5, 70.5, 0.0,91.8,59.400000000000006 +1.2698412698412698,1.27,a-cure-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 11.8, 76.5, 0.0, 0.0, 11.8, 23.5, 76.5, 0.0,88.2,7.0 +12.948453608247423,5,a-cure-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 0.0, 5.3, 18.8, 69.2, 3.8, 0.0, 3.0, 57.1, 42.9, 0.0,97.0,78.5 +3.9046538024971627,3.9,a-cure-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 0.0, 3.0, 14.9, 70.3, 0.0, 0.0, 11.9, 30.7, 69.3, 0.0,88.1,21.5 +6.460511679644048,5,a-cure-i1,2022-23,Springfield - STEM Middle Academy,02810350, 0.3, 3.7, 14.1, 68.4, 3.4, 0.0, 10.1, 47.5, 52.5, 0.0,89.9,36.3 +2.9441401971522456,2.94,a-cure-i1,2022-23,Springfield - Sumner Avenue,02810160, 0.0, 2.2, 18.5, 67.2, 3.3, 0.2, 8.7, 47.8, 52.2, 0.0,91.3,16.8 +6.0510440835266825,5,a-cure-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 1.4, 18.9, 64.2, 1.7, 0.0, 13.8, 52.1, 47.7, 0.2,86.2,32.6 +1,1,a-cure-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 0.0, 0.5, 13.0, 76.7, 2.1, 0.0, 7.7, 49.8, 50.2, 0.0,92.3,0.0 +4.195232690124858,4.2,a-cure-i1,2022-23,Springfield - Thomas M Balliet,02810015, 0.0, 2.9, 22.7, 56.0, 6.5, 0.0, 11.9, 50.5, 49.5, 0.0,88.1,23.1 +4.043763676148797,4.04,a-cure-i1,2022-23,Springfield - Van Sickle Academy,02810485, 0.4, 2.7, 7.8, 80.1, 0.4, 0.0, 8.6, 50.8, 49.2, 0.0,91.4,23.1 +4.693333333333333,4.69,a-cure-i1,2022-23,Springfield - Warner,02810180, 0.0, 1.2, 26.0, 59.2, 3.6, 0.0, 10.0, 45.6, 54.4, 0.0,90.0,26.4 +2.8571428571428568,2.86,a-cure-i1,2022-23,Springfield - Washington,02810185, 0.0, 5.0, 16.9, 65.7, 4.8, 0.0, 7.6, 49.8, 50.2, 0.0,92.4,16.5 +1.442348008385744,1.44,a-cure-i1,2022-23,Springfield - White Street,02810190, 0.2, 2.9, 21.1, 68.1, 3.1, 0.0, 4.6, 48.9, 51.1, 0.0,95.4,8.6 +3.1699687174139726,3.17,a-cure-i1,2022-23,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 25.0, 67.6, 3.3, 0.0, 4.1, 50.8, 49.2, 0.0,95.9,19.0 +3.4165694282380397,3.42,a-cure-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 3.1, 27.9, 48.6, 6.1, 0.0, 14.3, 49.1, 50.8, 0.1,85.7,18.3 +16.718913270637408,5,a-cure-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 2.1, 19.7, 72.7, 1.2, 0.0, 4.3, 47.6, 52.2, 0.2,95.7,100.0 +1,1,a-cure-i1,2022-23,Stoneham - Colonial Park,02840005, 0.8, 8.3, 1.2, 8.3, 2.5, 0.0, 78.8, 44.0, 56.0, 0.0,21.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Stoneham - Robin Hood,02840025, 0.8, 5.3, 2.8, 12.0, 7.1, 0.0, 72.0, 48.6, 51.4, 0.0,28.0,4.0 +4.717948717948717,4.72,a-cure-i1,2022-23,Stoneham - South,02840030, 0.3, 7.7, 4.6, 14.6, 3.7, 0.3, 68.8, 46.7, 53.0, 0.3,31.200000000000003,9.2 +6.836363636363637,5,a-cure-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 0.3, 5.2, 2.5, 10.2, 3.8, 0.0, 78.0, 51.5, 48.5, 0.0,22.0,9.4 +3.6065573770491794,3.61,a-cure-i1,2022-23,Stoneham - Stoneham High,02840505, 0.3, 5.8, 3.7, 11.1, 3.4, 0.0, 75.6, 48.9, 50.4, 0.6,24.400000000000006,5.5 +1,1,a-cure-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 4.8, 31.7, 22.1, 6.7, 1.0, 33.7, 35.6, 64.4, 0.0,66.3,0.0 +1,1,a-cure-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 0.0, 5.7, 18.6, 15.5, 8.7, 0.4, 51.1, 47.3, 52.7, 0.0,48.9,0.0 +1,1,a-cure-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 0.0, 3.2, 20.6, 17.5, 7.2, 0.0, 51.6, 46.7, 53.0, 0.3,48.4,0.0 +1,1,a-cure-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.3, 3.9, 22.9, 17.6, 4.7, 0.0, 50.5, 45.3, 54.7, 0.0,49.5,0.0 +3.1292517006802725,3.13,a-cure-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 0.2, 5.6, 29.4, 17.9, 5.4, 0.1, 41.2, 49.8, 50.2, 0.0,58.8,11.5 +1,1,a-cure-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 4.2, 19.2, 25.6, 5.4, 0.3, 45.2, 54.8, 45.2, 0.0,54.8,0.0 +1,1,a-cure-i1,2022-23,Stoughton - South Elementary,02850015, 0.0, 10.3, 18.1, 11.7, 9.3, 0.4, 50.2, 50.5, 49.5, 0.0,49.8,0.0 +3.1940298507462686,3.19,a-cure-i1,2022-23,Stoughton - Stoughton High,02850505, 0.2, 7.1, 26.0, 15.1, 4.6, 0.7, 46.4, 49.6, 50.4, 0.0,53.6,10.7 +1,1,a-cure-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 0.0, 1.5, 0.7, 9.8, 6.2, 0.0, 81.9, 51.4, 48.5, 0.1,18.099999999999994,0.0 +7.6,5,a-cure-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.2, 3.5, 2.9, 5.5, 3.7, 0.1, 84.0, 60.1, 38.8, 1.1,16.0,7.6 +4.235294117647058,4.24,a-cure-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 0.1, 10.5, 3.1, 4.9, 8.4, 0.2, 72.8, 45.5, 54.5, 0.0,27.200000000000003,7.199999999999999 +4.5795053003533575,4.58,a-cure-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 0.0, 8.0, 4.0, 5.5, 10.8, 0.0, 71.7, 56.3, 43.7, 0.0,28.299999999999997,8.1 +4.072727272727272,4.07,a-cure-i1,2022-23,Sudbury - Israel Loring School,02880015, 0.0, 8.0, 3.1, 9.9, 6.6, 0.0, 72.5, 48.1, 51.9, 0.0,27.5,7.0 +1,1,a-cure-i1,2022-23,Sudbury - Josiah Haynes,02880010, 0.3, 8.6, 3.2, 4.9, 5.7, 0.0, 77.3, 45.4, 54.6, 0.0,22.700000000000003,1.9 +3.6834532374100726,3.68,a-cure-i1,2022-23,Sudbury - Peter Noyes,02880030, 0.0, 12.2, 1.4, 6.0, 8.2, 0.0, 72.2, 47.5, 52.5, 0.0,27.799999999999997,6.4 +2.7290969899665543,2.73,a-cure-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 0.0, 10.2, 2.8, 10.7, 6.2, 0.0, 70.1, 41.8, 56.5, 1.7,29.900000000000006,5.1 +1,1,a-cure-i1,2022-23,Sutton - Sutton Early Learning,02900003, 0.0, 1.5, 1.8, 6.1, 4.3, 0.0, 86.2, 47.5, 52.5, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Sutton - Sutton Elementary,02900005, 0.0, 1.6, 1.0, 3.9, 2.6, 0.3, 90.5, 47.0, 53.0, 0.0,9.5,0.0 +1,1,a-cure-i1,2022-23,Sutton - Sutton High School,02900510, 0.0, 2.2, 2.4, 6.0, 4.6, 0.3, 84.6, 50.9, 48.2, 0.8,15.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Sutton - Sutton Middle School,02900305, 0.0, 2.4, 0.7, 3.4, 3.7, 0.0, 89.9, 51.4, 48.6, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Swampscott - Clarke,02910005, 0.5, 2.9, 2.4, 16.6, 2.9, 0.0, 74.6, 47.3, 52.7, 0.0,25.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Swampscott - Hadley,02910010, 0.6, 2.9, 3.4, 15.7, 4.3, 0.6, 72.6, 48.0, 52.0, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Swampscott - Stanley,02910020, 0.0, 3.7, 1.9, 8.1, 1.9, 0.0, 84.5, 39.8, 60.2, 0.0,15.5,0.0 +4.033057851239668,4.03,a-cure-i1,2022-23,Swampscott - Swampscott High,02910505, 0.3, 2.8, 5.3, 13.4, 2.3, 0.0, 75.8, 49.0, 50.7, 0.3,24.200000000000003,6.1 +1,1,a-cure-i1,2022-23,Swampscott - Swampscott Middle,02910305, 0.3, 3.7, 4.0, 13.3, 2.9, 0.0, 75.8, 48.3, 51.4, 0.3,24.200000000000003,1.4 +1,1,a-cure-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 0.3, 1.4, 1.7, 2.8, 2.4, 0.0, 91.3, 46.4, 53.6, 0.0,8.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Swansea - Gardner,02920015, 0.8, 0.4, 1.2, 1.6, 2.8, 0.0, 93.3, 53.9, 46.1, 0.0,6.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Swansea - Joseph Case High,02920505, 0.2, 0.7, 0.9, 2.4, 0.9, 0.0, 94.8, 49.7, 50.1, 0.2,5.200000000000003,2.3 +1,1,a-cure-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 0.4, 1.0, 1.0, 2.6, 2.0, 0.0, 93.0, 49.0, 51.0, 0.0,7.0,2.9 +1,1,a-cure-i1,2022-23,Swansea - Joseph G Luther,02920020, 0.0, 2.8, 1.1, 1.1, 3.9, 0.0, 91.0, 52.2, 47.8, 0.0,9.0,0.0 +1,1,a-cure-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 0.4, 1.7, 0.9, 1.3, 2.6, 0.0, 93.1, 47.4, 52.6, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 0.2, 1.3, 1.8, 7.8, 3.6, 0.0, 85.3, 45.9, 54.1, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 0.3, 1.9, 1.6, 7.8, 3.1, 0.0, 85.2, 54.8, 44.6, 0.6,14.799999999999997,3.8 +1,1,a-cure-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.4, 0.2, 1.3, 7.3, 4.6, 0.2, 86.1, 34.5, 65.1, 0.4,13.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 0.1, 1.0, 18.2, 13.6, 5.1, 0.0, 62.1, 46.8, 53.2, 0.0,37.9,0.0 +1,1,a-cure-i1,2022-23,Taunton - East Taunton Elementary,02930010, 0.2, 0.6, 18.4, 9.4, 7.7, 0.0, 63.8, 50.3, 49.7, 0.0,36.2,3.7 +1,1,a-cure-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 0.0, 1.4, 17.2, 13.7, 3.9, 0.0, 63.9, 49.8, 50.2, 0.0,36.1,0.0 +1,1,a-cure-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 1.2, 0.8, 23.0, 15.5, 5.2, 0.0, 54.4, 33.3, 66.7, 0.0,45.6,0.0 +1.7313432835820894,1.73,a-cure-i1,2022-23,Taunton - Elizabeth Pole,02930027, 0.9, 1.6, 23.9, 17.3, 9.5, 0.3, 46.4, 50.3, 49.6, 0.2,53.6,5.8 +8.982035928143713,5,a-cure-i1,2022-23,Taunton - H H Galligan,02930057, 0.8, 0.4, 32.4, 21.6, 11.2, 0.4, 33.2, 50.6, 49.4, 0.0,66.8,37.5 +1,1,a-cure-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 0.2, 0.6, 27.6, 19.4, 6.2, 0.1, 45.8, 49.7, 50.3, 0.0,54.2,0.0 +3.014925373134328,3.01,a-cure-i1,2022-23,Taunton - John F Parker Middle,02930305, 0.0, 0.4, 29.1, 16.2, 7.5, 0.4, 46.4, 48.4, 51.6, 0.0,53.6,10.1 +1,1,a-cure-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 0.2, 1.8, 13.5, 12.4, 6.2, 0.0, 66.0, 50.1, 49.9, 0.0,34.0,0.0 +1,1,a-cure-i1,2022-23,Taunton - Joseph H Martin,02930042, 0.2, 1.1, 23.7, 10.4, 5.1, 0.2, 59.3, 50.2, 49.8, 0.0,40.7,0.0 +1,1,a-cure-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 24.6, 17.4, 8.7, 0.0, 49.3, 36.2, 63.8, 0.0,50.7,0.0 +2.8452655889145504,2.85,a-cure-i1,2022-23,Taunton - Taunton High,02930505, 0.6, 1.1, 22.3, 13.8, 5.2, 0.3, 56.7, 48.8, 51.0, 0.1,43.3,7.700000000000001 +1,1,a-cure-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.5, 3.4, 11.2, 21.5, 7.9, 0.3, 55.3, 56.0, 43.8, 0.2,44.7,0.0 +1,1,a-cure-i1,2022-23,Tewksbury - Heath-Brook,02950010, 0.0, 2.4, 4.5, 7.8, 3.3, 0.0, 81.9, 41.9, 58.1, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Tewksbury - John F. Ryan,02950023, 0.0, 3.5, 4.3, 8.2, 1.4, 0.0, 82.5, 51.8, 48.2, 0.0,17.5,0.7 +1,1,a-cure-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 0.0, 3.2, 5.0, 9.7, 2.2, 0.0, 79.8, 50.4, 49.6, 0.0,20.200000000000003,2.8 +1,1,a-cure-i1,2022-23,Tewksbury - L F Dewing,02950001, 0.0, 8.8, 6.4, 7.5, 4.6, 0.0, 72.7, 51.1, 48.9, 0.0,27.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.5, 0.9, 6.0, 7.4, 2.8, 0.0, 82.4, 51.9, 48.1, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Tewksbury - North Street,02950020, 0.4, 6.0, 5.7, 8.5, 1.4, 0.0, 78.1, 49.8, 50.2, 0.0,21.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 0.3, 5.5, 5.1, 6.9, 1.6, 0.0, 80.7, 49.2, 50.4, 0.4,19.299999999999997,1.6 +1.747126436781609,1.75,a-cure-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 3.3, 0.7, 6.6, 39.0, 2.6, 0.0, 47.8, 46.7, 53.3, 0.0,52.2,5.7 +1,1,a-cure-i1,2022-23,Topsfield - Proctor Elementary,02980005, 1.2, 0.8, 0.4, 4.2, 2.7, 0.0, 90.7, 49.8, 50.2, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Topsfield - Steward Elementary,02980010, 0.0, 2.2, 0.3, 4.6, 1.9, 0.0, 91.1, 49.6, 50.4, 0.0,8.900000000000006,3.2 +1,1,a-cure-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.6, 2.2, 11.2, 4.8, 0.0, 81.2, 39.1, 59.5, 1.5,18.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Triton - Newbury Elementary,07730020, 0.0, 1.0, 1.0, 2.4, 2.9, 0.0, 92.7, 47.3, 52.7, 0.0,7.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Triton - Pine Grove,07730025, 0.5, 1.4, 1.2, 2.3, 1.9, 0.0, 92.8, 50.2, 49.8, 0.0,7.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Triton - Salisbury Elementary,07730015, 0.2, 1.9, 4.3, 10.2, 2.1, 0.0, 81.2, 49.5, 50.5, 0.0,18.799999999999997,4.1 +1,1,a-cure-i1,2022-23,Triton - Triton Regional High School,07730505, 0.2, 3.2, 1.4, 5.9, 1.4, 0.2, 87.8, 49.1, 50.2, 0.6,12.200000000000003,4.0 +1,1,a-cure-i1,2022-23,Triton - Triton Regional Middle School,07730405, 0.0, 2.2, 1.6, 4.4, 2.8, 0.3, 88.8, 48.8, 51.3, 0.0,11.200000000000003,3.4 +1,1,a-cure-i1,2022-23,Truro - Truro Central,03000005, 0.0, 0.0, 6.1, 8.1, 20.2, 0.0, 65.7, 46.5, 53.5, 0.0,34.3,0.0 +1,1,a-cure-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 0.1, 11.8, 5.1, 11.4, 4.9, 0.0, 66.6, 46.7, 53.3, 0.0,33.400000000000006,2.6 +1,1,a-cure-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 0.0, 9.7, 3.9, 7.0, 6.0, 0.0, 73.4, 49.0, 51.0, 0.0,26.599999999999994,3.5 +1,1,a-cure-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 0.3, 8.8, 4.5, 9.0, 4.3, 0.0, 73.3, 43.3, 56.5, 0.3,26.700000000000003,3.4 +7.012345679012346,5,a-cure-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.9, 1.9, 47.4, 45.5, 1.4, 0.0, 2.8, 54.0, 46.0, 0.0,97.2,42.6 +5.542799597180262,5,a-cure-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.2, 1.0, 51.4, 43.6, 2.9, 0.3, 0.7, 49.9, 50.1, 0.0,99.3,34.4 +1,1,a-cure-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 1.4, 2.9, 0.0, 0.0, 10.0, 0.0, 85.7, 52.9, 47.1, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 4.1, 0.0, 2.0, 16.1, 5.8, 0.0, 71.9, 48.0, 52.0, 0.0,28.099999999999994,3.3 +1,1,a-cure-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.9, 0.7, 2.3, 6.1, 7.8, 0.3, 81.9, 42.1, 57.3, 0.5,18.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 2.6, 2.6, 15.8, 15.8, 0.0, 63.2, 55.3, 44.7, 0.0,36.8,0.0 +1,1,a-cure-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 0.4, 1.0, 0.4, 8.6, 2.3, 0.2, 87.1, 47.8, 52.2, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Uxbridge - Uxbridge High,03040505, 0.3, 2.5, 1.7, 6.1, 2.2, 0.0, 87.1, 43.2, 56.8, 0.0,12.900000000000006,2.4 +1,1,a-cure-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 0.2, 1.2, 1.0, 7.5, 3.2, 0.2, 86.7, 44.4, 55.6, 0.0,13.299999999999997,0.0 +9.443983402489627,5,a-cure-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.6, 1.0, 20.6, 70.9, 3.2, 0.2, 3.6, 53.7, 46.1, 0.2,96.4,56.900000000000006 +1,1,a-cure-i1,2022-23,Wachusett - Central Tree Middle,07750310, 0.8, 1.9, 3.2, 5.9, 1.9, 0.0, 86.3, 50.9, 49.1, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 0.0, 1.8, 3.2, 9.7, 2.5, 0.0, 82.8, 45.9, 54.1, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 0.2, 1.3, 3.8, 8.5, 2.5, 0.0, 83.7, 47.2, 52.8, 0.0,16.299999999999997,3.3 +1,1,a-cure-i1,2022-23,Wachusett - Dawson,07750020, 0.2, 4.6, 3.4, 8.0, 4.4, 0.2, 79.2, 53.1, 46.9, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Early Childhood Center,07750001, 0.8, 6.2, 3.1, 13.1, 3.8, 0.0, 73.1, 32.3, 67.7, 0.0,26.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.5, 3.9, 7.5, 3.6, 0.0, 83.5, 51.4, 48.6, 0.0,16.5,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Houghton Elementary,07750027, 0.0, 3.0, 3.0, 13.7, 3.7, 0.0, 76.5, 44.8, 55.2, 0.0,23.5,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 0.0, 3.3, 4.3, 8.6, 2.4, 0.0, 81.5, 48.5, 51.5, 0.0,18.5,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Mountview Middle,07750305, 0.1, 4.1, 3.0, 7.0, 2.3, 0.1, 83.3, 47.5, 52.2, 0.3,16.700000000000003,2.3 +1,1,a-cure-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 0.0, 0.8, 5.0, 8.8, 3.6, 0.0, 81.8, 46.3, 53.7, 0.0,18.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Paxton Center,07750040, 0.0, 2.0, 1.5, 6.6, 3.5, 0.2, 86.1, 52.0, 48.0, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Wachusett - Thomas Prince,07750045, 0.0, 0.3, 1.8, 4.1, 0.9, 0.0, 93.0, 48.5, 51.5, 0.0,7.0,4.0 +1,1,a-cure-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 0.0, 3.8, 2.8, 6.7, 2.6, 0.1, 83.9, 52.9, 47.0, 0.1,16.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Wakefield - Dolbeare,03050005, 0.0, 4.6, 1.2, 8.1, 2.1, 0.0, 84.1, 54.5, 45.5, 0.0,15.900000000000006,0.0 +6.06060606060606,5,a-cure-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 5.0, 2.5, 11.6, 4.1, 3.3, 73.6, 43.8, 56.2, 0.0,26.400000000000006,10.0 +1,1,a-cure-i1,2022-23,Wakefield - Galvin Middle School,03050310, 0.2, 3.9, 2.8, 8.9, 3.6, 0.5, 80.1, 47.4, 52.3, 0.3,19.900000000000006,2.5 +1,1,a-cure-i1,2022-23,Wakefield - Greenwood,03050020, 0.0, 3.2, 1.4, 6.4, 4.1, 0.5, 84.5, 46.1, 53.9, 0.0,15.5,0.0 +1,1,a-cure-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 0.2, 3.9, 3.9, 8.3, 2.9, 0.1, 80.7, 50.2, 49.7, 0.1,19.299999999999997,1.5 +1,1,a-cure-i1,2022-23,Wakefield - Walton,03050040, 0.0, 1.9, 2.8, 7.5, 2.3, 0.5, 85.0, 42.3, 57.7, 0.0,15.0,0.0 +1,1,a-cure-i1,2022-23,Wakefield - Woodville School,03050015, 0.0, 6.3, 4.0, 13.6, 4.4, 0.0, 71.7, 50.6, 49.4, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Wales - Wales Elementary,03060005, 1.0, 0.0, 2.1, 2.1, 1.0, 0.0, 93.8, 40.6, 59.4, 0.0,6.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Walpole - Bird Middle,03070305, 0.8, 3.4, 6.6, 9.0, 3.2, 0.0, 76.9, 53.1, 46.7, 0.3,23.099999999999994,3.2 +1,1,a-cure-i1,2022-23,Walpole - Boyden,03070010, 0.7, 2.9, 8.3, 8.8, 2.9, 0.0, 76.2, 44.9, 55.1, 0.0,23.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 2.3, 6.8, 3.4, 9.1, 8.0, 0.0, 70.5, 43.2, 56.8, 0.0,29.5,0.0 +1,1,a-cure-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 0.2, 9.1, 3.4, 7.2, 4.3, 0.0, 75.8, 47.5, 52.5, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Walpole - Elm Street School,03070005, 0.0, 8.0, 3.6, 5.5, 4.1, 0.0, 78.8, 54.7, 45.1, 0.2,21.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Walpole - Fisher,03070015, 0.2, 16.4, 1.5, 8.2, 4.0, 0.4, 69.3, 49.8, 50.0, 0.2,30.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Walpole - Old Post Road,03070018, 0.2, 3.3, 2.6, 10.5, 6.1, 0.0, 77.2, 49.9, 50.1, 0.0,22.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Walpole - Walpole High,03070505, 0.3, 7.1, 3.5, 6.3, 2.2, 0.0, 80.5, 49.8, 50.1, 0.1,19.5,1.3 +1,1,a-cure-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 0.2, 8.4, 6.5, 17.4, 5.0, 0.2, 62.3, 50.9, 49.1, 0.0,37.7,0.9 +1.1672278338945006,1.17,a-cure-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.6, 5.7, 78.4, 1.3, 0.0, 10.9, 52.5, 47.5, 0.0,89.1,6.5 +1,1,a-cure-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 4.8, 2.6, 31.7, 5.6, 0.0, 55.3, 47.1, 52.9, 0.0,44.7,0.0 +5.354969574036511,5,a-cure-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 0.2, 3.3, 9.0, 32.5, 4.2, 0.2, 50.7, 46.2, 53.5, 0.3,49.3,16.5 +2.364116094986808,2.36,a-cure-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 0.0, 2.9, 8.6, 63.0, 1.3, 0.0, 24.2, 46.1, 53.9, 0.0,75.8,11.200000000000001 +1.439446366782007,1.44,a-cure-i1,2022-23,Waltham - Northeast Elementary School,03080040, 0.2, 7.1, 11.8, 36.5, 2.2, 0.0, 42.2, 51.1, 48.9, 0.0,57.8,5.2 +1,1,a-cure-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 6.2, 12.5, 41.1, 3.7, 0.0, 36.5, 47.6, 52.4, 0.0,63.5,0.0 +12.759493670886076,5,a-cure-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 3.7, 71.0, 4.2, 0.0, 21.0, 46.7, 53.3, 0.0,79.0,63.0 +2.670906200317965,2.67,a-cure-i1,2022-23,Waltham - Waltham Sr High,03080505, 0.0, 3.8, 9.1, 48.3, 1.7, 0.1, 37.1, 45.5, 54.2, 0.3,62.9,10.5 +1,1,a-cure-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 0.5, 9.7, 9.9, 42.6, 2.6, 0.0, 34.7, 43.3, 56.7, 0.0,65.3,2.5 +1,1,a-cure-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 0.3, 0.3, 3.7, 14.5, 6.6, 0.0, 74.7, 50.1, 49.3, 0.5,25.299999999999997,0.0 +4.9740932642487055,4.97,a-cure-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 0.4, 0.2, 2.0, 11.9, 4.4, 0.4, 80.7, 49.7, 50.3, 0.0,19.299999999999997,6.0 +1,1,a-cure-i1,2022-23,Ware - Ware Middle School,03090305, 0.4, 0.4, 2.0, 10.5, 4.0, 0.0, 82.7, 50.8, 49.2, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 9.1, 0.0, 3.0, 3.0, 6.1, 0.0, 78.8, 57.6, 42.4, 0.0,21.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Wareham - Wareham Elementary School,03100017, 1.1, 0.8, 5.3, 9.5, 12.1, 0.1, 71.2, 48.2, 51.8, 0.0,28.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Wareham - Wareham Middle,03100305, 1.6, 0.9, 6.9, 13.0, 13.0, 0.2, 64.3, 47.6, 52.2, 0.2,35.7,2.3 +4.141176470588236,4.14,a-cure-i1,2022-23,Wareham - Wareham Senior High,03100505, 1.6, 0.2, 11.0, 8.0, 13.1, 0.2, 66.0, 49.4, 50.3, 0.3,34.0,8.8 +4.356807511737089,4.36,a-cure-i1,2022-23,Watertown - Cunniff,03140015, 0.3, 4.9, 3.4, 24.5, 9.5, 0.0, 57.4, 48.8, 51.2, 0.0,42.6,11.6 +1.902097902097902,1.9,a-cure-i1,2022-23,Watertown - Hosmer,03140020, 0.1, 9.8, 4.3, 18.9, 9.6, 0.1, 57.1, 46.6, 53.4, 0.0,42.9,5.1 +4.44258872651357,4.44,a-cure-i1,2022-23,Watertown - James Russell Lowell,03140025, 0.0, 8.2, 2.8, 25.1, 11.8, 0.0, 52.1, 45.6, 54.4, 0.0,47.9,13.3 +1,1,a-cure-i1,2022-23,Watertown - Watertown High,03140505, 0.7, 8.3, 4.0, 25.0, 6.5, 0.0, 55.5, 45.2, 54.4, 0.4,44.5,3.1 +2.023866348448687,2.02,a-cure-i1,2022-23,Watertown - Watertown Middle,03140305, 0.4, 8.6, 2.8, 22.0, 8.1, 0.0, 58.1, 51.3, 48.3, 0.4,41.9,5.3 +1,1,a-cure-i1,2022-23,Wayland - Claypit Hill School,03150005, 0.0, 8.6, 3.8, 5.2, 9.2, 0.0, 73.1, 51.2, 48.8, 0.0,26.900000000000006,3.5 +4.699669966996701,4.7,a-cure-i1,2022-23,Wayland - Happy Hollow School,03150015, 0.3, 13.2, 1.9, 5.8, 9.1, 0.0, 69.7, 50.7, 49.3, 0.0,30.299999999999997,8.9 +7.431952662721894,5,a-cure-i1,2022-23,Wayland - Loker School,03150020, 0.3, 15.3, 1.8, 9.9, 6.5, 0.0, 66.2, 52.2, 47.8, 0.0,33.8,15.7 +1,1,a-cure-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 0.0, 15.9, 1.6, 3.2, 1.6, 0.0, 77.8, 39.7, 60.3, 0.0,22.200000000000003,0.0 +2.492917847025496,2.49,a-cure-i1,2022-23,Wayland - Wayland High School,03150505, 0.0, 18.0, 5.3, 5.0, 6.9, 0.1, 64.7, 51.8, 48.2, 0.0,35.3,5.5 +6.917491749174918,5,a-cure-i1,2022-23,Wayland - Wayland Middle School,03150305, 0.0, 14.3, 6.9, 3.5, 5.3, 0.2, 69.7, 46.2, 53.6, 0.2,30.299999999999997,13.1 +1,1,a-cure-i1,2022-23,Webster - Bartlett High School,03160505, 0.0, 2.7, 8.5, 41.4, 4.7, 0.0, 42.7, 46.6, 52.9, 0.5,57.3,2.8 +1,1,a-cure-i1,2022-23,Webster - Park Avenue Elementary,03160015, 0.1, 1.5, 7.5, 38.3, 5.4, 0.0, 47.2, 47.1, 52.9, 0.0,52.8,0.0 +1,1,a-cure-i1,2022-23,Webster - Webster Middle School,03160315, 0.2, 1.9, 7.1, 36.4, 5.4, 0.0, 49.0, 45.9, 54.1, 0.0,51.0,0.7 +6.941538461538462,5,a-cure-i1,2022-23,Wellesley - Ernest F Upham,03170050, 0.6, 10.0, 5.6, 7.5, 8.8, 0.0, 67.5, 47.5, 52.5, 0.0,32.5,14.100000000000001 +11.294117647058822,5,a-cure-i1,2022-23,Wellesley - Hunnewell,03170025, 0.0, 6.1, 1.5, 6.6, 4.5, 0.0, 81.3, 50.0, 50.0, 0.0,18.700000000000003,13.200000000000001 +2.0257510729613735,2.03,a-cure-i1,2022-23,Wellesley - John D Hardy,03170020, 0.0, 26.7, 2.4, 8.3, 9.2, 0.0, 53.4, 48.5, 51.5, 0.0,46.6,5.9 +1,1,a-cure-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 0.0, 27.1, 3.6, 4.3, 7.5, 0.0, 57.5, 47.5, 52.5, 0.0,42.5,0.0 +5.80281690140845,5,a-cure-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 0.0, 9.2, 3.0, 5.9, 10.3, 0.0, 71.6, 48.7, 51.3, 0.0,28.400000000000006,10.3 +1,1,a-cure-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 1.1, 22.5, 1.1, 13.5, 5.6, 0.0, 56.2, 37.1, 62.9, 0.0,43.8,0.0 +3.7701149425287355,3.77,a-cure-i1,2022-23,Wellesley - Schofield,03170045, 0.0, 19.2, 4.2, 6.3, 4.8, 0.3, 65.2, 53.5, 46.5, 0.0,34.8,8.2 +1,1,a-cure-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 0.0, 22.3, 3.1, 7.3, 13.2, 0.0, 54.0, 45.6, 54.4, 0.0,46.0,0.0 +3.924528301886792,3.92,a-cure-i1,2022-23,Wellesley - Wellesley Middle,03170305, 0.0, 17.0, 4.3, 6.2, 9.5, 0.0, 62.9, 50.4, 49.6, 0.0,37.1,9.1 +4.03883495145631,4.04,a-cure-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 0.0, 15.0, 4.2, 5.9, 5.7, 0.0, 69.1, 52.0, 47.7, 0.3,30.900000000000006,7.8 +1,1,a-cure-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.0, 1.0, 4.1, 11.2, 0.0, 82.7, 45.9, 54.1, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 0.0, 2.6, 3.5, 12.1, 5.1, 0.2, 76.6, 47.1, 52.9, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 3.2, 3.7, 12.0, 3.0, 0.2, 77.8, 52.9, 47.1, 0.0,22.200000000000003,2.1 +1,1,a-cure-i1,2022-23,West Bridgewater - Howard School,03230305, 0.3, 0.3, 4.8, 9.6, 5.1, 0.0, 79.7, 48.6, 51.4, 0.0,20.299999999999997,0.0 +4.182572614107885,4.18,a-cure-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 0.3, 0.6, 9.3, 8.0, 5.8, 0.0, 75.9, 46.3, 53.7, 0.0,24.099999999999994,6.3 +1,1,a-cure-i1,2022-23,West Bridgewater - Spring Street School,03230005, 0.6, 1.9, 7.1, 7.7, 1.3, 0.0, 81.4, 46.2, 53.8, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.3, 1.0, 8.6, 6.7, 4.6, 0.2, 78.6, 50.9, 49.1, 0.0,21.400000000000006,0.0 +1,1,a-cure-i1,2022-23,West Springfield - John Ashley,03320005, 0.0, 5.2, 5.2, 30.5, 5.7, 0.0, 53.4, 48.3, 51.7, 0.0,46.6,0.0 +1,1,a-cure-i1,2022-23,West Springfield - John R Fausey,03320010, 0.0, 6.6, 5.1, 20.4, 5.4, 0.0, 62.5, 52.6, 47.4, 0.0,37.5,0.0 +1,1,a-cure-i1,2022-23,West Springfield - Memorial,03320025, 0.0, 9.6, 6.6, 39.9, 8.1, 0.0, 35.9, 46.5, 53.5, 0.0,64.1,0.0 +1,1,a-cure-i1,2022-23,West Springfield - Mittineague,03320030, 0.0, 3.4, 1.3, 22.1, 4.0, 0.0, 69.1, 53.0, 47.0, 0.0,30.900000000000006,0.0 +1,1,a-cure-i1,2022-23,West Springfield - Philip G Coburn,03320007, 0.2, 13.1, 6.2, 26.4, 6.0, 0.0, 48.1, 47.8, 52.2, 0.0,51.9,0.0 +1,1,a-cure-i1,2022-23,West Springfield - Tatham,03320040, 0.0, 3.0, 1.7, 16.1, 4.8, 0.0, 74.3, 46.1, 53.9, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 0.0, 15.7, 3.4, 23.6, 11.2, 0.0, 46.1, 41.6, 58.4, 0.0,53.9,0.0 +1,1,a-cure-i1,2022-23,West Springfield - West Springfield High,03320505, 0.1, 8.3, 4.3, 20.4, 4.6, 0.1, 62.3, 46.6, 52.6, 0.8,37.7,4.6 +1,1,a-cure-i1,2022-23,West Springfield - West Springfield Middle,03320305, 0.0, 8.0, 3.8, 19.7, 4.8, 0.0, 63.7, 49.6, 50.3, 0.1,36.3,4.6 +1,1,a-cure-i1,2022-23,Westborough - Annie E Fales,03210010, 0.0, 39.6, 2.1, 6.0, 3.9, 0.0, 48.3, 48.6, 51.4, 0.0,51.7,4.4 +1.518821603927987,1.52,a-cure-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 1.3, 36.4, 3.2, 16.2, 4.0, 0.0, 38.9, 49.9, 50.1, 0.0,61.1,5.8 +1,1,a-cure-i1,2022-23,Westborough - J Harding Armstrong,03210005, 0.3, 33.0, 3.1, 11.5, 5.6, 0.0, 46.5, 46.5, 53.5, 0.0,53.5,0.0 +1,1,a-cure-i1,2022-23,Westborough - Mill Pond School,03210045, 0.1, 38.2, 3.0, 10.4, 3.0, 0.1, 45.2, 51.1, 48.9, 0.0,54.8,3.5 +2.6999999999999997,2.7,a-cure-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 0.2, 33.7, 3.6, 8.1, 2.4, 0.0, 52.0, 47.3, 52.5, 0.2,48.0,8.1 +2.6899563318777293,2.69,a-cure-i1,2022-23,Westborough - Westborough High,03210505, 0.0, 32.0, 2.3, 8.1, 3.4, 0.0, 54.2, 50.7, 48.9, 0.4,45.8,7.699999999999999 +1,1,a-cure-i1,2022-23,Westfield - Abner Gibbs,03250020, 0.0, 7.2, 1.3, 28.8, 2.6, 0.0, 60.1, 47.1, 52.9, 0.0,39.9,0.0 +1,1,a-cure-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 5.3, 2.3, 14.3, 2.3, 0.0, 75.9, 39.8, 60.2, 0.0,24.099999999999994,0.0 +2.7158671586715863,2.72,a-cure-i1,2022-23,Westfield - Franklin Ave,03250015, 0.0, 2.4, 1.2, 42.8, 7.8, 0.0, 45.8, 51.8, 48.2, 0.0,54.2,9.2 +1,1,a-cure-i1,2022-23,Westfield - Highland,03250025, 0.0, 3.0, 0.5, 10.5, 5.1, 0.0, 80.8, 53.0, 47.0, 0.0,19.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Westfield - Munger Hill,03250033, 0.0, 4.4, 2.6, 13.5, 6.2, 0.0, 73.2, 45.9, 54.1, 0.0,26.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Westfield - Paper Mill,03250036, 0.0, 2.1, 1.8, 24.0, 7.6, 0.0, 64.5, 49.9, 50.1, 0.0,35.5,0.0 +1,1,a-cure-i1,2022-23,Westfield - Southampton Road,03250040, 0.0, 3.4, 1.2, 19.4, 7.1, 0.0, 68.9, 49.5, 50.5, 0.0,31.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Westfield - Westfield High,03250505, 0.1, 2.9, 2.6, 20.0, 3.5, 0.0, 70.9, 52.6, 47.2, 0.2,29.099999999999994,1.4 +1,1,a-cure-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 0.1, 2.1, 2.5, 20.7, 2.7, 0.1, 71.7, 51.8, 48.2, 0.0,28.299999999999997,1.8 +1,1,a-cure-i1,2022-23,Westfield - Westfield Middle School,03250310, 0.1, 2.9, 2.6, 18.2, 3.8, 0.0, 72.4, 46.7, 53.1, 0.1,27.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 0.2, 1.1, 0.9, 13.3, 2.6, 0.0, 82.0, 31.9, 67.8, 0.4,18.0,4.7 +1,1,a-cure-i1,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 5.1, 30.4, 6.3, 0.0, 58.2, 58.2, 40.5, 1.3,41.8,0.0 +1,1,a-cure-i1,2022-23,Westford - Abbot Elementary,03260004, 0.3, 22.8, 0.3, 0.8, 0.6, 0.0, 75.3, 48.3, 51.7, 0.0,24.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Westford - Blanchard Middle,03260310, 0.4, 36.3, 1.1, 6.6, 1.1, 0.0, 54.5, 52.7, 47.1, 0.2,45.5,2.5 +1,1,a-cure-i1,2022-23,Westford - Col John Robinson,03260025, 0.3, 31.4, 2.4, 4.1, 2.7, 0.0, 59.2, 50.9, 49.1, 0.0,40.8,0.0 +1,1,a-cure-i1,2022-23,Westford - Day Elementary,03260007, 0.0, 36.4, 3.1, 6.1, 1.8, 0.6, 52.0, 50.2, 49.8, 0.0,48.0,0.0 +1,1,a-cure-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 0.3, 34.0, 2.7, 3.3, 2.7, 0.0, 57.0, 44.8, 54.9, 0.3,43.0,0.0 +1,1,a-cure-i1,2022-23,Westford - Nabnasset,03260015, 0.8, 20.1, 1.4, 4.3, 1.1, 0.0, 72.4, 49.6, 50.4, 0.0,27.599999999999994,0.0 +1.4469565217391305,1.45,a-cure-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 0.0, 44.5, 2.3, 8.6, 2.0, 0.0, 42.5, 35.9, 64.1, 0.0,57.5,5.2 +1,1,a-cure-i1,2022-23,Westford - Stony Brook School,03260330, 0.0, 30.4, 0.7, 2.3, 1.8, 0.2, 64.7, 52.0, 48.0, 0.0,35.3,2.3 +1,1,a-cure-i1,2022-23,Westford - Westford Academy,03260505, 0.4, 31.1, 2.0, 3.1, 0.2, 0.2, 63.0, 49.8, 50.0, 0.2,37.0,3.9 +1,1,a-cure-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 8.7, 1.0, 0.0, 90.4, 43.3, 56.7, 0.0,9.599999999999994,0.0 +6.55813953488372,5,a-cure-i1,2022-23,Weston - Country,03300010, 0.0, 14.8, 4.8, 7.3, 7.6, 0.0, 65.6, 48.3, 51.7, 0.0,34.400000000000006,14.100000000000001 +2.198198198198198,2.2,a-cure-i1,2022-23,Weston - Field Elementary School,03300012, 0.0, 22.2, 7.9, 8.3, 6.0, 0.0, 55.6, 50.8, 48.9, 0.4,44.4,6.1 +5.912144702842377,5,a-cure-i1,2022-23,Weston - Weston High,03300505, 0.0, 18.8, 6.6, 5.8, 7.5, 0.0, 61.3, 43.7, 56.0, 0.3,38.7,14.299999999999999 +3.0896551724137926,3.09,a-cure-i1,2022-23,Weston - Weston Middle,03300305, 0.0, 20.7, 5.4, 9.2, 7.9, 0.2, 56.5, 49.1, 50.9, 0.0,43.5,8.399999999999999 +1,1,a-cure-i1,2022-23,Weston - Woodland,03300015, 0.0, 16.6, 6.3, 7.8, 5.3, 0.0, 64.1, 50.9, 49.1, 0.0,35.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Westport - Alice A Macomber,03310015, 0.0, 1.2, 0.6, 4.0, 2.9, 0.0, 91.3, 57.2, 42.8, 0.0,8.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Westport - Westport Elementary,03310030, 0.0, 0.5, 0.9, 6.3, 2.9, 0.0, 89.3, 53.3, 46.7, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Westport - Westport Middle-High School,03310515, 0.2, 0.8, 1.2, 4.2, 3.6, 0.0, 89.9, 45.7, 54.0, 0.4,10.099999999999994,0.0 +4.492307692307692,4.49,a-cure-i1,2022-23,Westwood - Deerfield School,03350010, 0.0, 13.8, 2.6, 3.6, 6.1, 0.0, 74.0, 49.5, 50.5, 0.0,26.0,7.3 +1,1,a-cure-i1,2022-23,Westwood - Downey,03350012, 0.0, 22.7, 0.3, 6.8, 4.9, 0.3, 64.9, 43.5, 56.5, 0.0,35.099999999999994,1.0 +1,1,a-cure-i1,2022-23,Westwood - E W Thurston Middle,03350305, 0.2, 11.3, 2.0, 6.4, 7.1, 0.2, 72.9, 48.9, 51.1, 0.0,27.099999999999994,0.0 +4.5373134328358224,4.54,a-cure-i1,2022-23,Westwood - Martha Jones,03350017, 0.0, 9.1, 0.0, 4.2, 6.8, 0.0, 79.9, 51.5, 48.5, 0.0,20.099999999999994,5.7 +2.9872122762148337,2.99,a-cure-i1,2022-23,Westwood - Paul Hanlon,03350015, 0.0, 13.5, 4.8, 14.3, 6.5, 0.0, 60.9, 47.8, 52.2, 0.0,39.1,7.3 +6.38655462184874,5,a-cure-i1,2022-23,Westwood - Westwood High,03350505, 0.1, 11.8, 3.1, 6.2, 2.5, 0.1, 76.2, 48.3, 51.4, 0.2,23.799999999999997,9.5 +1,1,a-cure-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 0.0, 7.1, 0.0, 7.1, 9.5, 0.0, 76.2, 40.5, 59.5, 0.0,23.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Westwood - William E Sheehan,03350025, 0.0, 10.8, 0.7, 4.2, 7.3, 0.0, 77.0, 42.5, 57.5, 0.0,23.0,0.0 +1,1,a-cure-i1,2022-23,Weymouth - Academy Avenue,03360005, 0.0, 4.7, 7.3, 11.6, 7.0, 0.6, 68.9, 50.9, 49.1, 0.0,31.099999999999994,0.0 +2.21105527638191,2.21,a-cure-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 0.0, 5.7, 7.5, 20.8, 5.7, 0.0, 60.2, 45.9, 54.1, 0.0,39.8,5.5 +3.7784256559766765,3.78,a-cure-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 0.6, 11.2, 7.3, 6.7, 8.4, 0.0, 65.7, 41.6, 58.4, 0.0,34.3,8.1 +1,1,a-cure-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 0.4, 4.3, 6.2, 12.4, 5.4, 0.0, 71.3, 54.7, 45.3, 0.0,28.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 0.1, 5.8, 8.6, 15.8, 3.8, 0.2, 65.8, 52.5, 47.4, 0.1,34.2,4.0 +2.816,2.82,a-cure-i1,2022-23,Weymouth - Ralph Talbot,03360085, 0.0, 7.7, 10.8, 12.4, 6.6, 0.0, 62.5, 43.6, 56.4, 0.0,37.5,6.6 +1,1,a-cure-i1,2022-23,Weymouth - Thomas V Nash,03360060, 0.0, 6.5, 3.9, 11.2, 7.3, 0.4, 70.7, 49.6, 50.4, 0.0,29.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.3, 12.9, 3.1, 12.0, 5.1, 0.0, 66.6, 50.3, 49.7, 0.0,33.400000000000006,0.0 +1,1,a-cure-i1,2022-23,Weymouth - Wessagusset,03360110, 0.0, 9.4, 7.3, 7.3, 6.7, 0.0, 69.2, 48.4, 51.6, 0.0,30.799999999999997,0.0 +3.785488958990536,3.79,a-cure-i1,2022-23,Weymouth - Weymouth High School,03360505, 0.2, 5.4, 8.5, 13.6, 3.9, 0.1, 68.3, 50.3, 49.4, 0.3,31.700000000000003,7.5 +1,1,a-cure-i1,2022-23,Weymouth - William Seach,03360080, 0.6, 7.0, 18.0, 24.2, 7.9, 0.0, 42.4, 48.9, 51.1, 0.0,57.6,0.0 +1,1,a-cure-i1,2022-23,Whately - Whately Elementary,03370005, 0.0, 0.8, 0.8, 4.7, 1.6, 0.0, 92.2, 47.7, 52.3, 0.0,7.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 0.4, 1.6, 1.6, 5.6, 1.8, 0.0, 89.1, 47.7, 52.3, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 0.0, 1.2, 2.7, 4.9, 3.3, 0.4, 87.4, 47.0, 53.0, 0.0,12.599999999999994,3.8 +1,1,a-cure-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 0.5, 1.9, 6.1, 15.3, 4.2, 0.0, 72.1, 47.4, 52.6, 0.0,27.900000000000006,4.3 +1,1,a-cure-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 0.2, 3.3, 4.8, 8.3, 4.1, 0.0, 79.3, 49.8, 50.2, 0.0,20.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 2.0, 3.0, 7.0, 8.0, 6.0, 0.0, 74.0, 33.0, 67.0, 0.0,26.0,0.0 +1,1,a-cure-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 1.0, 1.6, 5.6, 7.8, 2.9, 0.1, 81.1, 48.9, 51.1, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 1.0, 1.4, 6.2, 8.3, 3.2, 0.2, 79.8, 48.8, 51.2, 0.0,20.200000000000003,0.0 +3.288888888888889,3.29,a-cure-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.4, 1.6, 3.0, 27.5, 3.6, 0.0, 64.0, 44.4, 54.5, 1.1,36.0,7.4 +1,1,a-cure-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.8, 0.8, 4.7, 0.0, 0.0, 93.7, 47.2, 52.8, 0.0,6.299999999999997,0.0 +1,1,a-cure-i1,2022-23,Wilmington - Boutwell,03420005, 0.0, 4.9, 2.8, 6.3, 7.0, 0.0, 79.0, 49.0, 51.0, 0.0,21.0,0.0 +1,1,a-cure-i1,2022-23,Wilmington - North Intermediate,03420060, 0.0, 5.6, 0.8, 7.1, 5.2, 0.0, 81.3, 52.0, 48.0, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 0.0, 7.8, 1.3, 3.9, 5.9, 0.0, 81.1, 46.8, 53.2, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Wilmington - West Intermediate,03420080, 0.0, 8.6, 1.4, 4.1, 2.7, 0.0, 83.2, 46.9, 53.1, 0.0,16.799999999999997,3.9 +5.6,5,a-cure-i1,2022-23,Wilmington - Wilmington High,03420505, 0.2, 7.3, 1.2, 5.2, 4.1, 0.0, 82.0, 50.3, 49.2, 0.5,18.0,6.3 +1,1,a-cure-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 0.0, 6.3, 1.1, 5.5, 3.3, 0.0, 83.7, 48.0, 52.0, 0.0,16.299999999999997,1.5 +1,1,a-cure-i1,2022-23,Wilmington - Woburn Street,03420020, 0.2, 5.2, 3.1, 6.6, 5.2, 0.0, 79.8, 45.2, 54.8, 0.0,20.200000000000003,0.0 +1,1,a-cure-i1,2022-23,Winchendon - Memorial,03430040, 0.3, 0.0, 1.6, 9.1, 5.0, 0.0, 84.0, 49.5, 50.5, 0.0,16.0,0.0 +1,1,a-cure-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 9.1, 9.1, 0.0, 81.8, 40.9, 59.1, 0.0,18.200000000000003,0.0 +6.120218579234973,5,a-cure-i1,2022-23,Winchendon - Murdock High School,03430515, 0.0, 3.4, 1.9, 9.1, 3.0, 0.8, 81.7, 49.0, 50.6, 0.4,18.299999999999997,7.0 +1,1,a-cure-i1,2022-23,Winchendon - Murdock Middle School,03430315, 0.0, 1.1, 2.2, 11.5, 1.5, 0.4, 83.3, 39.8, 60.2, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 0.0, 1.7, 2.7, 9.9, 3.4, 0.0, 82.3, 46.3, 53.7, 0.0,17.700000000000003,0.0 +20.618556701030922,5,a-cure-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 2.8, 2.8, 8.3, 5.6, 0.0, 80.6, 44.4, 55.6, 0.0,19.400000000000006,25.0 +1,1,a-cure-i1,2022-23,Winchester - Ambrose Elementary,03440045, 0.0, 8.1, 1.2, 2.0, 6.4, 0.0, 82.3, 51.3, 48.7, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2022-23,Winchester - Lincoln Elementary,03440005, 0.0, 12.2, 0.9, 3.0, 9.8, 0.0, 74.1, 46.6, 53.4, 0.0,25.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Winchester - Lynch Elementary,03440020, 0.0, 31.3, 1.5, 4.7, 8.2, 0.0, 54.3, 41.0, 59.0, 0.0,45.7,0.0 +3.116883116883117,3.12,a-cure-i1,2022-23,Winchester - McCall Middle,03440305, 0.1, 18.3, 1.4, 3.8, 7.2, 0.0, 69.2, 52.1, 47.7, 0.2,30.799999999999997,6.0 +1,1,a-cure-i1,2022-23,Winchester - Muraco Elementary,03440040, 0.0, 22.7, 0.3, 3.4, 6.1, 0.0, 67.5, 49.1, 50.6, 0.3,32.5,0.0 +3.841945288753799,3.84,a-cure-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 0.0, 21.8, 0.2, 2.5, 8.4, 0.0, 67.1, 51.2, 48.8, 0.0,32.900000000000006,7.9 +3.1282051282051277,3.13,a-cure-i1,2022-23,Winchester - Winchester High School,03440505, 0.3, 19.5, 2.2, 3.5, 5.6, 0.0, 68.8, 51.4, 48.4, 0.1,31.200000000000003,6.1 +1,1,a-cure-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.7, 1.4, 20.2, 1.9, 0.0, 75.9, 56.4, 43.6, 0.0,24.099999999999994,0.0 +1,1,a-cure-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.2, 0.4, 1.6, 20.0, 2.0, 0.0, 75.8, 48.5, 51.5, 0.0,24.200000000000003,0.0 +3.18819188191882,3.19,a-cure-i1,2022-23,Winthrop - Winthrop High School,03460505, 0.7, 1.3, 1.9, 22.2, 1.0, 0.0, 72.9, 51.7, 48.1, 0.2,27.099999999999994,5.4 +1,1,a-cure-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 0.7, 0.0, 1.6, 17.6, 1.4, 0.2, 78.4, 46.1, 53.9, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Woburn - Clyde Reeves,03470040, 2.6, 6.6, 8.5, 10.4, 4.5, 0.0, 67.3, 45.0, 54.7, 0.2,32.7,3.9 +1,1,a-cure-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 1.6, 3.4, 9.4, 12.1, 4.5, 0.0, 69.1, 53.7, 46.3, 0.0,30.900000000000006,3.0 +1,1,a-cure-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 2.2, 8.1, 6.5, 21.1, 4.0, 0.3, 57.8, 54.7, 45.3, 0.0,42.2,0.0 +1,1,a-cure-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 0.5, 4.1, 3.3, 10.8, 2.8, 0.3, 78.2, 46.7, 53.3, 0.0,21.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 1.6, 7.4, 7.4, 13.8, 3.9, 0.2, 65.8, 50.8, 49.2, 0.0,34.2,3.9 +1,1,a-cure-i1,2022-23,Woburn - Linscott-Rumford,03470025, 1.5, 12.6, 8.5, 10.1, 5.5, 0.5, 61.3, 50.3, 49.7, 0.0,38.7,0.0 +1,1,a-cure-i1,2022-23,Woburn - Malcolm White,03470055, 4.1, 6.9, 6.9, 12.9, 4.7, 0.0, 64.4, 55.5, 44.2, 0.3,35.599999999999994,0.0 +1,1,a-cure-i1,2022-23,Woburn - Mary D Altavesta,03470065, 2.5, 13.3, 14.8, 14.8, 3.0, 0.0, 51.7, 50.2, 49.8, 0.0,48.3,0.0 +1,1,a-cure-i1,2022-23,Woburn - Shamrock,03470043, 1.1, 6.3, 14.1, 20.4, 3.9, 0.0, 54.2, 46.5, 53.5, 0.0,45.8,0.0 +2.7234042553191484,2.72,a-cure-i1,2022-23,Woburn - Woburn High,03470505, 0.6, 6.4, 7.9, 15.1, 2.7, 0.3, 67.1, 51.0, 48.6, 0.3,32.900000000000006,5.6 +1,1,a-cure-i1,2022-23,Worcester - Belmont Street Community,03480020, 0.2, 3.8, 18.3, 53.8, 3.8, 0.0, 20.2, 48.7, 51.3, 0.0,79.8,1.7999999999999998 +4.699140401146132,4.7,a-cure-i1,2022-23,Worcester - Burncoat Middle School,03480405, 0.3, 3.4, 18.3, 43.5, 4.4, 0.0, 30.2, 52.4, 47.6, 0.0,69.8,20.5 +3.10413694721826,3.1,a-cure-i1,2022-23,Worcester - Burncoat Senior High,03480503, 0.1, 5.6, 19.3, 41.2, 3.8, 0.0, 29.9, 50.1, 49.8, 0.1,70.1,13.6 +1.1093333333333333,1.11,a-cure-i1,2022-23,Worcester - Burncoat Street,03480035, 0.0, 4.2, 11.7, 54.6, 4.6, 0.0, 25.0, 46.7, 53.3, 0.0,75.0,5.2 +1.513264129181084,1.51,a-cure-i1,2022-23,Worcester - Canterbury,03480045, 0.3, 14.3, 13.6, 55.4, 3.1, 0.0, 13.3, 45.6, 54.4, 0.0,86.7,8.2 +1,1,a-cure-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 0.2, 7.7, 12.2, 62.0, 3.1, 0.0, 14.8, 50.2, 49.8, 0.0,85.2,1.9 +8.42806183115339,5,a-cure-i1,2022-23,Worcester - Chandler Magnet,03480052, 0.5, 1.0, 4.5, 75.9, 2.2, 0.0, 15.9, 54.7, 45.3, 0.0,84.1,44.3 +1.753958587088916,1.75,a-cure-i1,2022-23,Worcester - City View,03480053, 0.2, 1.9, 14.2, 61.2, 4.7, 0.0, 17.9, 49.3, 50.7, 0.0,82.1,9.0 +3.53448275862069,3.53,a-cure-i1,2022-23,Worcester - Claremont Academy,03480350, 0.4, 5.9, 10.0, 74.4, 2.0, 0.0, 7.2, 49.0, 51.0, 0.0,92.8,20.5 +4.903846153846153,4.9,a-cure-i1,2022-23,Worcester - Clark St Community,03480055, 0.4, 11.2, 13.4, 55.6, 2.6, 0.0, 16.8, 50.0, 50.0, 0.0,83.2,25.5 +1.1191709844559585,1.12,a-cure-i1,2022-23,Worcester - Columbus Park,03480060, 1.0, 5.4, 11.9, 55.4, 3.4, 0.0, 22.8, 44.6, 55.4, 0.0,77.2,5.4 +3.5140186915887845,3.51,a-cure-i1,2022-23,Worcester - Doherty Memorial High,03480512, 0.2, 6.3, 15.8, 37.5, 4.5, 0.0, 35.8, 44.0, 56.0, 0.0,64.2,14.099999999999998 +1.44,1.44,a-cure-i1,2022-23,Worcester - Elm Park Community,03480095, 0.0, 6.0, 9.9, 60.5, 3.6, 0.0, 20.0, 47.7, 52.3, 0.0,80.0,7.2 +1,1,a-cure-i1,2022-23,Worcester - Flagg Street,03480090, 0.3, 4.5, 4.5, 13.9, 3.3, 0.0, 73.5, 50.4, 49.6, 0.0,26.5,0.0 +5.0,5.0,a-cure-i1,2022-23,Worcester - Forest Grove Middle,03480415, 0.3, 5.4, 15.5, 34.9, 6.4, 0.0, 37.6, 48.9, 51.1, 0.0,62.4,19.5 +1,1,a-cure-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 0.0, 4.8, 20.7, 41.3, 6.3, 0.0, 26.9, 46.6, 53.4, 0.0,73.1,2.2 +1.5716234652114596,1.57,a-cure-i1,2022-23,Worcester - Gates Lane,03480110, 0.2, 13.8, 13.8, 39.2, 6.4, 0.0, 26.7, 42.6, 57.4, 0.0,73.3,7.199999999999999 +2.3418994413407823,2.34,a-cure-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 0.3, 8.2, 13.4, 65.3, 2.4, 0.0, 10.5, 48.7, 51.3, 0.0,89.5,13.100000000000001 +2.479784366576819,2.48,a-cure-i1,2022-23,Worcester - Grafton Street,03480115, 0.2, 2.6, 18.7, 49.2, 3.5, 0.0, 25.8, 47.8, 52.2, 0.0,74.2,11.5 +1.7163995067817508,1.72,a-cure-i1,2022-23,Worcester - Head Start,03480002, 0.2, 3.2, 19.7, 56.3, 1.5, 0.2, 18.9, 52.8, 47.2, 0.0,81.1,8.7 +2.098360655737705,2.1,a-cure-i1,2022-23,Worcester - Heard Street,03480136, 0.0, 8.9, 14.2, 26.0, 5.7, 0.0, 45.1, 45.1, 54.9, 0.0,54.9,7.2 +1,1,a-cure-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 0.3, 4.0, 35.2, 42.5, 4.0, 0.0, 14.0, 51.1, 48.9, 0.0,86.0,3.2 +11.62642369020501,5,a-cure-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 0.6, 1.7, 6.4, 76.7, 2.3, 0.0, 12.2, 49.4, 50.0, 0.6,87.8,63.8 +2.735483870967742,2.74,a-cure-i1,2022-23,Worcester - Lake View,03480145, 0.3, 8.4, 18.5, 28.2, 6.5, 0.0, 38.0, 47.4, 52.6, 0.0,62.0,10.6 +1,1,a-cure-i1,2022-23,Worcester - Lincoln Street,03480160, 0.0, 7.9, 27.7, 42.1, 6.6, 0.0, 15.7, 47.9, 52.1, 0.0,84.3,0.0 +4.6392092257001645,4.64,a-cure-i1,2022-23,Worcester - May Street,03480175, 0.3, 7.8, 13.9, 27.1, 11.2, 0.3, 39.3, 49.2, 50.8, 0.0,60.7,17.6 +2.7051546391752574,2.71,a-cure-i1,2022-23,Worcester - Midland Street,03480185, 0.0, 10.7, 7.8, 23.3, 6.8, 0.0, 51.5, 42.7, 57.3, 0.0,48.5,8.2 +2.570888468809074,2.57,a-cure-i1,2022-23,Worcester - Nelson Place,03480200, 0.0, 8.9, 16.0, 22.8, 5.2, 0.0, 47.1, 43.1, 56.9, 0.0,52.9,8.5 +3.7938144329896906,3.79,a-cure-i1,2022-23,Worcester - Norrback Avenue,03480202, 0.4, 2.6, 27.8, 32.7, 4.3, 0.0, 32.1, 44.4, 55.6, 0.0,67.9,16.1 +4.560292326431182,4.56,a-cure-i1,2022-23,Worcester - North High,03480515, 0.0, 4.3, 19.4, 54.8, 3.6, 0.0, 17.9, 47.8, 51.9, 0.3,82.1,23.400000000000002 +2.4649243466299864,2.46,a-cure-i1,2022-23,Worcester - Quinsigamond,03480210, 0.4, 5.0, 13.3, 50.6, 3.2, 0.0, 27.3, 47.7, 52.3, 0.0,72.7,11.200000000000001 +5.467549668874171,5,a-cure-i1,2022-23,Worcester - Rice Square,03480215, 0.9, 7.9, 18.8, 44.3, 3.7, 0.0, 24.5, 51.5, 48.5, 0.0,75.5,25.799999999999997 +1,1,a-cure-i1,2022-23,Worcester - Roosevelt,03480220, 0.0, 4.6, 26.9, 31.6, 4.1, 0.2, 32.7, 44.5, 55.5, 0.0,67.3,2.9 +2.816166883963494,2.82,a-cure-i1,2022-23,Worcester - South High Community,03480520, 0.1, 10.1, 17.1, 45.4, 3.9, 0.0, 23.3, 46.6, 53.4, 0.1,76.7,13.5 +3.2608695652173916,3.26,a-cure-i1,2022-23,Worcester - Sullivan Middle,03480423, 0.2, 9.6, 15.7, 43.4, 4.7, 0.0, 26.4, 49.0, 51.0, 0.0,73.6,15.0 +1,1,a-cure-i1,2022-23,Worcester - Tatnuck,03480230, 0.3, 5.7, 17.1, 30.6, 5.2, 0.0, 41.0, 48.8, 51.2, 0.0,59.0,3.5 +1.386018237082067,1.39,a-cure-i1,2022-23,Worcester - Thorndyke Road,03480235, 0.3, 6.1, 16.5, 39.9, 3.0, 0.0, 34.2, 50.7, 49.3, 0.0,65.8,5.7 +1.5925058548009368,1.59,a-cure-i1,2022-23,Worcester - Union Hill School,03480240, 0.0, 3.1, 16.2, 63.6, 2.6, 0.0, 14.6, 45.4, 54.6, 0.0,85.4,8.5 +1.598163030998852,1.6,a-cure-i1,2022-23,Worcester - University Pk Campus School,03480285, 0.0, 14.3, 13.4, 55.4, 4.0, 0.0, 12.9, 45.1, 54.5, 0.4,87.1,8.7 +1.6152019002375297,1.62,a-cure-i1,2022-23,Worcester - Vernon Hill School,03480280, 0.2, 3.0, 21.7, 56.3, 3.0, 0.0, 15.8, 51.7, 48.3, 0.0,84.2,8.5 +1.9685264663805433,1.97,a-cure-i1,2022-23,Worcester - Wawecus Road School,03480026, 0.0, 6.0, 14.3, 42.9, 6.8, 0.0, 30.1, 50.4, 49.6, 0.0,69.9,8.6 +4.118811881188119,4.12,a-cure-i1,2022-23,Worcester - West Tatnuck,03480260, 0.3, 7.1, 15.4, 19.8, 8.0, 0.0, 49.5, 44.2, 55.8, 0.0,50.5,13.0 +3.515151515151515,3.52,a-cure-i1,2022-23,Worcester - Woodland Academy,03480030, 0.2, 4.5, 9.7, 76.2, 1.8, 0.0, 7.6, 50.5, 49.5, 0.0,92.4,20.3 +1,1,a-cure-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 0.0, 7.9, 23.6, 25.5, 2.7, 0.0, 40.2, 50.3, 49.7, 0.0,59.8,4.3 +4.932484076433121,4.93,a-cure-i1,2022-23,Worcester - Worcester East Middle,03480420, 0.1, 3.5, 17.7, 54.2, 3.0, 0.0, 21.5, 48.6, 51.4, 0.0,78.5,24.2 +2.1149425287356323,2.11,a-cure-i1,2022-23,Worcester - Worcester Technical High,03480605, 0.2, 6.4, 18.4, 40.8, 3.7, 0.1, 30.4, 56.8, 43.1, 0.1,69.6,9.2 +1,1,a-cure-i1,2022-23,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 3.9, 3.9, 0.0, 92.1, 44.7, 53.9, 1.3,7.900000000000006,0.0 +1,1,a-cure-i1,2022-23,Wrentham - Charles E Roderick,03500010, 0.3, 2.4, 2.7, 7.0, 4.3, 0.0, 83.2, 49.9, 50.1, 0.0,16.799999999999997,0.0 +1,1,a-cure-i1,2022-23,Wrentham - Delaney,03500003, 0.5, 3.3, 1.5, 6.5, 5.0, 0.3, 82.8, 48.3, 51.7, 0.0,17.200000000000003,1.2 +1,1,a-cure-i1,2022-23,Tewksbury - Center Elementary School,02950030, , , , , , , , , , ,100.0,0.0 +1.2952380952380953,1.3,a-cure-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.5, 3.0, 54.6, 20.5, 5.3, 0.1, 16.0, 53.9, 46.1, 0.0,84.0,6.8 +1,1,a-cure-i1,2021-22,Abington - Abington Early Education Program,00010001, 0.0, 9.2, 10.5, 10.5, 0.0, 0.0, 69.7, 36.8, 63.2, 0.0,30.299999999999997,0.0 +4.153846153846155,4.15,a-cure-i1,2021-22,Abington - Abington High,00010505, 0.0, 2.9, 4.9, 11.8, 1.2, 0.0, 79.2, 47.1, 52.6, 0.3,20.799999999999997,5.4 +6.273127753303965,5,a-cure-i1,2021-22,Abington - Abington Middle School,00010405, 0.8, 2.3, 4.8, 13.0, 1.7, 0.2, 77.3, 49.9, 50.1, 0.0,22.700000000000003,8.9 +1,1,a-cure-i1,2021-22,Abington - Beaver Brook Elementary,00010020, 0.4, 1.9, 5.6, 13.6, 3.8, 0.2, 74.6, 51.2, 48.6, 0.2,25.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Abington - Woodsdale Elementary School,00010015, 1.0, 3.2, 4.5, 10.5, 2.2, 0.0, 78.7, 49.7, 50.3, 0.0,21.299999999999997,0.0 +8.02577873254565,5,a-cure-i1,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.4, 61.0, 30.0, 1.6, 0.2, 6.9, 48.0, 52.0, 0.0,93.1,46.699999999999996 +1.622718052738337,1.62,a-cure-i1,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.1, 36.6, 2.8, 5.9, 3.6, 0.1, 50.7, 48.2, 51.5, 0.4,49.3,5.0 +1,1,a-cure-i1,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 28.8, 2.4, 9.3, 5.6, 0.0, 53.8, 49.8, 50.2, 0.0,46.2,3.7 +1,1,a-cure-i1,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 14.7, 3.1, 8.9, 8.1, 0.0, 65.2, 49.5, 50.3, 0.3,34.8,0.0 +1,1,a-cure-i1,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.9, 46.2, 4.7, 3.8, 8.5, 0.0, 35.8, 41.5, 58.5, 0.0,64.2,0.0 +2.716981132075472,2.72,a-cure-i1,2021-22,Acton-Boxborough - Luther Conant School,06000030, 0.0, 56.6, 4.2, 8.9, 4.5, 0.0, 25.8, 45.7, 54.1, 0.2,74.2,12.600000000000001 +2.894736842105263,2.89,a-cure-i1,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 11.3, 3.3, 8.7, 7.1, 0.0, 69.6, 51.6, 48.4, 0.0,30.400000000000006,5.5 +3.8670694864048345,3.87,a-cure-i1,2021-22,Acton-Boxborough - Merriam School,06000010, 0.0, 15.2, 3.3, 5.7, 8.8, 0.0, 66.9, 49.9, 49.9, 0.2,33.099999999999994,8.0 +1,1,a-cure-i1,2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 61.4, 1.9, 5.7, 4.9, 0.0, 26.1, 47.0, 53.0, 0.0,73.9,2.8 +1.7959183673469388,1.8,a-cure-i1,2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.4, 34.5, 3.3, 6.9, 3.6, 0.2, 51.0, 48.0, 51.9, 0.1,49.0,5.5 +1,1,a-cure-i1,2021-22,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.9, 1.7, 4.7, 3.7, 0.0, 89.0, 45.4, 54.6, 0.0,11.0,3.0 +1,1,a-cure-i1,2021-22,Acushnet - Albert F Ford Middle School,00030305, 0.5, 0.8, 0.5, 4.0, 3.5, 0.0, 90.7, 49.0, 51.0, 0.0,9.299999999999997,0.0 +3.7740863787375423,3.77,a-cure-i1,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 14.4, 2.0, 7.3, 6.4, 0.0, 69.9, 46.1, 53.5, 0.4,30.099999999999994,7.1 +1,1,a-cure-i1,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.6, 5.7, 0.0, 11.5, 3.8, 0.0, 78.3, 36.3, 63.7, 0.0,21.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Agawam - Agawam High,00050505, 0.1, 3.4, 2.7, 8.3, 3.0, 0.0, 82.5, 47.7, 52.2, 0.1,17.5,1.2 +1,1,a-cure-i1,2021-22,Agawam - Agawam Junior High,00050405, 0.0, 4.3, 2.1, 14.2, 3.1, 0.0, 76.3, 46.8, 53.0, 0.2,23.700000000000003,1.8 +1,1,a-cure-i1,2021-22,Agawam - Benjamin J Phelps,00050020, 0.0, 3.0, 1.0, 6.7, 4.7, 0.0, 84.5, 48.8, 51.2, 0.0,15.5,0.0 +1,1,a-cure-i1,2021-22,Agawam - Clifford M Granger,00050010, 0.0, 4.2, 1.6, 15.7, 0.3, 0.0, 78.3, 48.9, 51.1, 0.0,21.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Agawam - James Clark School,00050030, 0.0, 5.4, 1.4, 14.2, 3.0, 0.0, 76.0, 49.7, 50.3, 0.0,24.0,0.0 +1,1,a-cure-i1,2021-22,Agawam - Roberta G. Doering School,00050303, 0.0, 2.3, 2.3, 8.6, 2.9, 0.2, 83.7, 50.3, 49.7, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Agawam - Robinson Park,00050025, 0.0, 3.5, 2.5, 16.2, 4.2, 0.0, 73.6, 47.2, 52.8, 0.0,26.400000000000006,0.0 +3.1468710089399745,3.15,a-cure-i1,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.4, 0.3, 13.0, 60.7, 3.8, 0.0, 21.7, 54.0, 46.0, 0.0,78.3,15.4 +1,1,a-cure-i1,2021-22,Amesbury - Amesbury Elementary,00070005, 0.0, 0.3, 0.6, 6.3, 3.2, 0.0, 89.6, 46.7, 53.3, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Amesbury - Amesbury High,00070505, 0.0, 1.5, 1.5, 7.1, 4.8, 0.2, 84.9, 50.5, 49.2, 0.2,15.099999999999994,4.3 +1,1,a-cure-i1,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 6.4, 4.3, 0.0, 89.4, 44.7, 55.3, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Amesbury - Amesbury Middle,00070013, 0.2, 2.0, 2.0, 9.8, 5.0, 0.0, 81.1, 43.3, 56.7, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 0.3, 0.3, 1.4, 14.1, 4.2, 0.3, 79.4, 50.1, 49.9, 0.0,20.599999999999994,0.0 +3.992380952380953,3.99,a-cure-i1,2021-22,Amherst - Crocker Farm Elementary,00080009, 0.3, 12.3, 12.3, 17.6, 9.8, 0.3, 47.5, 48.3, 50.3, 1.4,52.5,13.100000000000001 +8.527629233511586,5,a-cure-i1,2021-22,Amherst - Fort River Elementary,00080020, 0.3, 11.4, 7.1, 29.9, 7.1, 0.3, 43.9, 46.4, 53.6, 0.0,56.1,29.9 +11.889094269870608,5,a-cure-i1,2021-22,Amherst - Wildwood Elementary,00080050, 0.6, 9.6, 15.7, 21.5, 6.7, 0.0, 45.9, 52.3, 47.1, 0.6,54.1,40.199999999999996 +6.17607223476298,5,a-cure-i1,2021-22,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 9.1, 8.4, 18.2, 8.6, 0.0, 55.7, 46.9, 52.6, 0.6,44.3,17.1 +12.145077720207254,5,a-cure-i1,2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 7.5, 7.0, 17.2, 6.8, 0.0, 61.4, 47.8, 51.9, 0.2,38.6,29.3 +6.179640718562873,5,a-cure-i1,2021-22,Andover - Andover High,00090505, 0.4, 19.5, 2.9, 8.0, 2.7, 0.1, 66.6, 50.7, 49.0, 0.3,33.400000000000006,12.9 +2.881028938906753,2.88,a-cure-i1,2021-22,Andover - Andover West Middle,00090310, 0.2, 17.7, 3.2, 7.9, 2.1, 0.0, 68.9, 51.1, 48.7, 0.2,31.099999999999994,5.6 +1,1,a-cure-i1,2021-22,Andover - Bancroft Elementary,00090003, 0.0, 8.4, 1.2, 7.8, 6.0, 0.0, 76.7, 49.2, 50.8, 0.0,23.299999999999997,0.0 +7.479674796747969,5,a-cure-i1,2021-22,Andover - Doherty Middle,00090305, 0.0, 11.4, 1.3, 8.8, 3.1, 0.0, 75.4, 51.6, 48.4, 0.0,24.599999999999994,11.5 +1,1,a-cure-i1,2021-22,Andover - Henry C Sanborn Elementary,00090010, 0.0, 21.0, 2.7, 9.5, 6.4, 0.0, 60.4, 48.5, 51.5, 0.0,39.6,0.0 +2.6401590457256465,2.64,a-cure-i1,2021-22,Andover - High Plain Elementary,00090004, 0.2, 27.5, 3.4, 12.8, 6.2, 0.2, 49.7, 48.0, 52.0, 0.0,50.3,8.3 +3.8535645472061657,3.85,a-cure-i1,2021-22,Andover - Shawsheen School,00090005, 1.3, 24.7, 2.6, 14.3, 9.1, 0.0, 48.1, 40.3, 59.7, 0.0,51.9,12.5 +1,1,a-cure-i1,2021-22,Andover - South Elementary,00090020, 0.0, 17.5, 1.1, 4.6, 5.1, 0.0, 71.7, 45.1, 54.9, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Andover - West Elementary,00090025, 0.0, 15.7, 3.5, 7.8, 4.6, 0.0, 68.4, 46.0, 54.0, 0.0,31.599999999999994,0.0 +3.7824267782426784,3.78,a-cure-i1,2021-22,Andover - Wood Hill Middle School,00090350, 0.5, 29.5, 2.7, 9.8, 4.9, 0.3, 52.2, 50.3, 49.7, 0.0,47.8,11.3 +9.950413223140497,5,a-cure-i1,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.5, 1.9, 13.6, 26.7, 5.7, 0.0, 51.6, 46.8, 53.2, 0.0,48.4,30.1 +5.435114503816793,5,a-cure-i1,2021-22,Arlington - Arlington High,00100505, 0.0, 10.9, 3.8, 6.0, 5.5, 0.1, 73.8, 52.3, 46.8, 0.9,26.200000000000003,8.9 +3.972413793103448,3.97,a-cure-i1,2021-22,Arlington - Brackett,00100010, 0.0, 10.0, 1.6, 6.6, 10.9, 0.0, 71.0, 44.1, 55.9, 0.0,29.0,7.2 +6.239999999999999,5,a-cure-i1,2021-22,Arlington - Cyrus E Dallin,00100025, 0.0, 14.3, 1.6, 5.4, 8.7, 0.0, 70.0, 49.8, 50.2, 0.0,30.0,11.7 +1,1,a-cure-i1,2021-22,Arlington - Gibbs School,00100305, 0.0, 11.9, 3.5, 5.8, 6.4, 0.4, 71.9, 53.1, 46.7, 0.2,28.099999999999994,2.3 +4.2,4.2,a-cure-i1,2021-22,Arlington - Hardy,00100030, 0.0, 16.3, 1.7, 5.1, 8.8, 0.0, 68.0, 52.4, 47.6, 0.0,32.0,8.4 +1,1,a-cure-i1,2021-22,Arlington - John A Bishop,00100005, 0.0, 14.6, 3.1, 3.8, 10.3, 0.0, 68.2, 47.7, 52.1, 0.3,31.799999999999997,4.8 +1,1,a-cure-i1,2021-22,Arlington - M Norcross Stratton,00100055, 0.0, 19.2, 2.9, 5.3, 9.3, 0.0, 63.4, 48.8, 51.0, 0.2,36.6,3.9 +5.5669099756691,5,a-cure-i1,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, 19.2, 2.7, 5.5, 13.7, 0.0, 58.9, 45.2, 54.8, 0.0,41.1,14.3 +5.075862068965517,5,a-cure-i1,2021-22,Arlington - Ottoson Middle,00100410, 0.2, 9.6, 4.5, 8.2, 6.4, 0.1, 71.0, 46.2, 53.3, 0.4,29.0,9.2 +4.545961002785514,4.55,a-cure-i1,2021-22,Arlington - Peirce,00100045, 0.0, 16.3, 4.9, 8.0, 6.7, 0.0, 64.1, 42.9, 56.7, 0.3,35.900000000000006,10.2 +1,1,a-cure-i1,2021-22,Arlington - Thompson,00100050, 0.0, 14.1, 4.2, 9.9, 8.3, 0.0, 63.6, 53.1, 46.7, 0.2,36.4,0.0 +12.717948717948715,5,a-cure-i1,2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 0.2, 1.3, 1.1, 4.9, 4.2, 0.0, 88.3, 49.2, 50.8, 0.0,11.700000000000003,9.3 +1,1,a-cure-i1,2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.6, 2.4, 3.0, 4.8, 0.0, 89.2, 50.3, 49.7, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.2, 1.1, 1.0, 5.6, 1.9, 0.0, 90.2, 45.9, 52.8, 1.3,9.799999999999997,4.7 +1,1,a-cure-i1,2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.7, 1.6, 7.8, 4.2, 0.0, 85.7, 47.8, 51.7, 0.5,14.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.5, 1.3, 7.4, 1.9, 0.0, 88.9, 50.7, 49.1, 0.3,11.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Ashland - Ashland High,00140505, 0.5, 14.2, 2.2, 15.0, 2.5, 0.0, 65.6, 50.2, 49.8, 0.0,34.400000000000006,3.6 +1,1,a-cure-i1,2021-22,Ashland - Ashland Middle,00140405, 0.7, 12.8, 2.9, 18.2, 3.0, 0.0, 62.4, 48.3, 51.7, 0.0,37.6,4.4 +1,1,a-cure-i1,2021-22,Ashland - David Mindess,00140015, 0.2, 16.5, 3.5, 17.8, 3.9, 0.2, 58.0, 47.6, 52.4, 0.0,42.0,4.8 +1,1,a-cure-i1,2021-22,Ashland - Henry E Warren Elementary,00140010, 0.2, 24.0, 2.6, 16.9, 3.5, 0.0, 52.7, 46.5, 53.5, 0.0,47.3,2.3 +1,1,a-cure-i1,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, 37.7, 2.6, 6.5, 6.5, 0.0, 46.8, 48.1, 51.9, 0.0,53.2,0.0 +1,1,a-cure-i1,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.1, 0.5, 1.9, 23.0, 2.0, 0.0, 72.4, 42.0, 57.0, 1.1,27.599999999999994,2.4 +1,1,a-cure-i1,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.5, 1.7, 12.8, 3.6, 0.0, 80.3, 47.2, 52.8, 0.0,19.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Athol-Royalston - Athol High,06150505, 0.3, 1.9, 2.7, 17.0, 3.2, 0.0, 74.9, 45.0, 55.0, 0.0,25.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 1.1, 0.9, 12.3, 4.1, 0.0, 81.5, 44.0, 56.0, 0.0,18.5,0.0 +1,1,a-cure-i1,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 4.2, 1.4, 0.0, 94.4, 45.8, 54.2, 0.0,5.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.1, 2.0, 6.2, 15.5, 4.4, 0.1, 71.7, 54.0, 46.0, 0.0,28.299999999999997,4.8 +1,1,a-cure-i1,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 3.8, 5.3, 14.7, 5.3, 0.3, 70.5, 49.9, 50.1, 0.0,29.5,4.8 +2.682352941176471,2.68,a-cure-i1,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, 4.0, 6.0, 20.0, 4.0, 0.0, 66.0, 42.0, 56.0, 2.0,34.0,5.7 +5.741176470588235,5,a-cure-i1,2021-22,Attleboro - Attleboro High,00160505, 0.3, 4.8, 7.5, 16.4, 4.9, 0.1, 66.0, 45.2, 54.7, 0.1,34.0,12.2 +1,1,a-cure-i1,2021-22,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 12.0, 8.0, 14.0, 4.0, 0.0, 62.0, 42.0, 58.0, 0.0,38.0,0.0 +1,1,a-cure-i1,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0.2, 3.3, 6.8, 20.0, 7.8, 0.0, 62.0, 50.1, 49.8, 0.2,38.0,0.0 +1,1,a-cure-i1,2021-22,Attleboro - Early Learning Center,00160008, 0.6, 6.1, 10.6, 8.9, 4.4, 0.0, 69.4, 41.1, 58.9, 0.0,30.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 0.2, 6.2, 8.2, 14.7, 5.5, 0.0, 65.2, 51.5, 48.5, 0.0,34.8,0.0 +1,1,a-cure-i1,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 3.0, 5.9, 19.1, 8.9, 0.0, 63.1, 51.6, 48.4, 0.0,36.9,4.1 +1,1,a-cure-i1,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 0.4, 5.8, 12.1, 15.6, 6.0, 0.0, 60.0, 45.8, 54.2, 0.0,40.0,3.4 +1,1,a-cure-i1,2021-22,Attleboro - Robert J. Coelho Middle School,00160305, 0.5, 5.3, 9.6, 12.1, 6.6, 0.2, 65.6, 44.5, 55.3, 0.2,34.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 3.0, 8.0, 17.6, 7.1, 0.0, 64.3, 50.3, 49.7, 0.0,35.7,0.0 +2.8764044943820233,2.88,a-cure-i1,2021-22,Attleboro - Wamsutta Middle School,00160320, 0.0, 4.8, 6.7, 15.1, 9.0, 0.0, 64.4, 49.4, 50.4, 0.2,35.599999999999994,6.4 +5.187214611872145,5,a-cure-i1,2021-22,Auburn - Auburn Middle,00170305, 0.0, 4.0, 3.4, 11.4, 3.1, 0.0, 78.1, 50.2, 49.8, 0.0,21.900000000000006,7.1 +1,1,a-cure-i1,2021-22,Auburn - Auburn Senior High,00170505, 0.0, 5.4, 3.5, 10.5, 3.5, 0.1, 77.1, 49.2, 50.5, 0.4,22.900000000000006,1.7 +1,1,a-cure-i1,2021-22,Auburn - Bryn Mawr,00170010, 0.8, 3.8, 1.1, 13.4, 4.2, 0.0, 76.6, 48.7, 51.3, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Auburn - Pakachoag School,00170025, 0.0, 3.9, 0.8, 9.4, 5.5, 0.0, 80.5, 52.7, 47.3, 0.0,19.5,0.0 +1,1,a-cure-i1,2021-22,Auburn - Swanson Road Intermediate School,00170030, 0.0, 5.3, 2.1, 10.9, 3.3, 0.0, 78.4, 46.6, 53.4, 0.0,21.599999999999994,0.0 +5.216216216216216,5,a-cure-i1,2021-22,Avon - Avon Middle High School,00180510, 1.3, 5.1, 34.2, 12.3, 6.3, 0.0, 40.8, 46.5, 53.5, 0.0,59.2,19.3 +1,1,a-cure-i1,2021-22,Avon - Ralph D Butler,00180010, 0.0, 4.3, 28.8, 11.8, 8.8, 0.0, 46.4, 50.9, 49.1, 0.0,53.6,4.1 +1,1,a-cure-i1,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.9, 2.4, 3.8, 12.2, 3.8, 0.8, 75.0, 47.6, 52.4, 0.0,25.0,0.0 +4.942084942084941,4.94,a-cure-i1,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.3, 3.1, 5.1, 15.1, 2.1, 0.3, 74.1, 46.7, 53.3, 0.0,25.900000000000006,8.0 +1,1,a-cure-i1,2021-22,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.9, 1.5, 1.2, 8.0, 6.2, 0.3, 81.8, 45.4, 54.6, 0.0,18.200000000000003,4.5 +1,1,a-cure-i1,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.4, 5.9, 6.5, 13.1, 6.3, 0.0, 67.8, 47.6, 52.4, 0.0,32.2,0.0 +1,1,a-cure-i1,2021-22,Barnstable - Barnstable Community Innovation School,00200012, 1.0, 3.4, 9.9, 37.0, 6.5, 0.0, 42.1, 47.9, 51.7, 0.3,57.9,0.0 +2.219895287958115,2.22,a-cure-i1,2021-22,Barnstable - Barnstable High,00200505, 0.5, 2.0, 9.6, 20.6, 5.3, 0.2, 61.8, 50.1, 49.8, 0.1,38.2,5.3 +1,1,a-cure-i1,2021-22,Barnstable - Barnstable Intermediate School,00200315, 0.4, 2.1, 9.4, 24.0, 6.5, 0.0, 57.6, 45.9, 53.5, 0.6,42.4,2.2 +2.5569007263922523,2.56,a-cure-i1,2021-22,Barnstable - Barnstable United Elementary School,00200050, 0.1, 2.4, 8.1, 22.3, 8.3, 0.0, 58.7, 49.2, 50.6, 0.3,41.3,6.6000000000000005 +1,1,a-cure-i1,2021-22,Barnstable - Centerville Elementary,00200010, 0.0, 0.8, 6.1, 17.4, 11.7, 0.0, 64.0, 47.0, 53.0, 0.0,36.0,0.0 +4.342298288508557,4.34,a-cure-i1,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 2.7, 10.7, 15.4, 12.1, 0.0, 59.1, 35.6, 64.4, 0.0,40.9,11.1 +1.8929577464788734,1.89,a-cure-i1,2021-22,Barnstable - Hyannis West Elementary,00200025, 0.3, 0.7, 14.5, 44.1, 11.4, 0.0, 29.0, 48.3, 51.7, 0.0,71.0,8.4 +1,1,a-cure-i1,2021-22,Barnstable - West Barnstable Elementary,00200005, 0.0, 3.3, 2.9, 17.4, 10.0, 0.0, 66.4, 42.7, 57.3, 0.0,33.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Barnstable - West Villages Elementary School,00200045, 0.0, 1.3, 3.5, 10.6, 11.4, 0.0, 73.1, 48.9, 51.1, 0.0,26.900000000000006,0.0 +6.071278825995807,5,a-cure-i1,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.7, 29.8, 63.6, 0.9, 0.4, 4.6, 45.2, 54.8, 0.0,95.4,36.2 +3.088471849865952,3.09,a-cure-i1,2021-22,Bedford - Bedford High,00230505, 0.0, 16.8, 6.4, 9.8, 4.4, 0.0, 62.7, 48.1, 51.7, 0.2,37.3,7.2 +1,1,a-cure-i1,2021-22,Bedford - John Glenn Middle,00230305, 0.0, 20.2, 6.7, 5.2, 5.1, 0.0, 62.8, 49.2, 50.7, 0.2,37.2,0.9 +1.9675174013921113,1.97,a-cure-i1,2021-22,Bedford - Lt Elezer Davis,00230010, 0.0, 24.4, 5.0, 6.1, 7.7, 0.0, 56.9, 43.9, 56.1, 0.0,43.1,5.3 +3.011764705882353,3.01,a-cure-i1,2021-22,Bedford - Lt Job Lane School,00230012, 0.0, 22.1, 7.0, 5.2, 8.2, 0.0, 57.5, 49.5, 50.5, 0.0,42.5,8.0 +1,1,a-cure-i1,2021-22,Belchertown - Belchertown High,00240505, 0.2, 1.5, 2.0, 3.8, 2.6, 0.5, 89.4, 50.8, 48.2, 1.1,10.599999999999994,2.1 +1,1,a-cure-i1,2021-22,Belchertown - Chestnut Hill Community School,00240006, 0.4, 1.2, 1.0, 7.5, 3.5, 0.0, 86.3, 49.1, 50.9, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Belchertown - Cold Spring,00240005, 0.0, 1.0, 1.5, 8.8, 4.9, 0.0, 83.9, 51.7, 48.3, 0.0,16.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Belchertown - Jabish Middle School,00240025, 0.6, 0.0, 1.5, 7.6, 4.4, 0.0, 86.0, 47.4, 52.0, 0.6,14.0,0.0 +1,1,a-cure-i1,2021-22,Belchertown - Swift River Elementary,00240018, 0.0, 1.3, 0.2, 11.2, 3.8, 0.0, 83.4, 47.7, 52.3, 0.0,16.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 4.5, 0.0, 8.0, 6.8, 0.0, 80.7, 55.7, 44.3, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Bellingham - Bellingham High School,00250505, 0.0, 3.2, 2.0, 8.5, 3.0, 0.0, 83.3, 51.9, 48.1, 0.0,16.700000000000003,3.4 +1,1,a-cure-i1,2021-22,Bellingham - Bellingham Memorial School,00250315, 0.2, 2.2, 1.7, 8.0, 2.0, 0.8, 85.1, 47.2, 52.7, 0.2,14.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 2.4, 2.4, 14.3, 4.4, 0.0, 76.5, 53.4, 46.6, 0.0,23.5,0.0 +1,1,a-cure-i1,2021-22,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 9.5, 0.0, 0.0, 90.5, 61.9, 38.1, 0.0,9.5,0.0 +1,1,a-cure-i1,2021-22,Bellingham - Stall Brook,00250025, 0.0, 0.9, 1.7, 13.6, 4.7, 0.4, 78.7, 50.6, 49.4, 0.0,21.299999999999997,0.0 +5.090909090909091,5,a-cure-i1,2021-22,Belmont - Belmont High,00260505, 0.1, 19.1, 4.0, 5.9, 6.2, 0.0, 64.8, 51.0, 49.0, 0.0,35.2,11.200000000000001 +3.0730688935281836,3.07,a-cure-i1,2021-22,Belmont - Daniel Butler,00260015, 0.0, 28.0, 1.5, 6.3, 12.0, 0.0, 52.1, 50.0, 49.7, 0.3,47.9,9.2 +3.903485254691689,3.9,a-cure-i1,2021-22,Belmont - Mary Lee Burbank,00260010, 0.0, 24.0, 5.1, 1.7, 6.5, 0.0, 62.7, 51.4, 48.6, 0.0,37.3,9.1 +1,1,a-cure-i1,2021-22,Belmont - Roger E Wellington,00260035, 0.0, 15.6, 5.6, 4.3, 8.8, 0.0, 65.8, 49.1, 50.7, 0.2,34.2,0.0 +1,1,a-cure-i1,2021-22,Belmont - Winn Brook,00260005, 0.0, 27.8, 1.7, 5.2, 8.8, 0.0, 56.5, 54.4, 45.6, 0.0,43.5,3.5 +6.057441253263708,5,a-cure-i1,2021-22,Belmont - Winthrop L Chenery Middle,00260305, 0.2, 21.4, 3.5, 4.2, 8.9, 0.2, 61.7, 49.6, 50.4, 0.0,38.3,14.5 +8.742268041237113,5,a-cure-i1,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 1.8, 80.5, 8.8, 5.8, 0.0, 3.0, 49.8, 49.8, 0.3,97.0,53.0 +1,1,a-cure-i1,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.4, 18.8, 2.8, 4.4, 4.4, 0.2, 68.9, 49.5, 50.5, 0.0,31.099999999999994,2.1 +1,1,a-cure-i1,2021-22,Berkley - Berkley Community School,00270010, 0.2, 0.4, 1.1, 2.6, 5.0, 0.2, 90.5, 48.7, 51.3, 0.0,9.5,2.9 +1,1,a-cure-i1,2021-22,Berkley - Berkley Middle School,00270305, 0.0, 0.5, 0.5, 1.7, 4.4, 0.0, 92.9, 49.8, 50.2, 0.0,7.099999999999994,0.0 +7.384615384615385,5,a-cure-i1,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 2.2, 10.7, 14.2, 5.5, 0.0, 67.5, 44.5, 52.7, 2.7,32.5,15.0 +5.743589743589744,5,a-cure-i1,2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 0.4, 2.1, 2.0, 11.1, 3.5, 0.4, 80.5, 50.0, 50.0, 0.0,19.5,7.0 +1,1,a-cure-i1,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 3.1, 2.4, 13.5, 10.4, 0.0, 70.6, 54.1, 45.9, 0.0,29.400000000000006,3.0 +1,1,a-cure-i1,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.3, 2.6, 1.1, 14.0, 5.7, 0.0, 76.2, 45.0, 55.0, 0.0,23.799999999999997,2.3 +1,1,a-cure-i1,2021-22,Berlin-Boylston - Berlin Memorial School,06200005, 1.4, 1.9, 0.9, 8.3, 3.2, 0.0, 84.3, 50.9, 49.1, 0.0,15.700000000000003,0.0 +4.59668508287293,4.6,a-cure-i1,2021-22,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 4.9, 1.3, 6.6, 5.3, 0.0, 81.9, 45.7, 54.3, 0.0,18.099999999999994,5.2 +1,1,a-cure-i1,2021-22,Berlin-Boylston - Tahanto Regional High,06200505, 0.2, 5.8, 1.5, 7.5, 3.2, 0.2, 81.6, 50.7, 48.6, 0.8,18.400000000000006,2.2 +1,1,a-cure-i1,2021-22,Beverly - Ayers/Ryal Side School,00300055, 0.0, 1.8, 2.6, 9.9, 3.1, 0.0, 82.7, 50.3, 49.7, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Beverly - Beverly High,00300505, 0.1, 2.9, 3.5, 16.3, 3.2, 0.1, 74.0, 47.7, 52.0, 0.2,26.0,3.8000000000000003 +1,1,a-cure-i1,2021-22,Beverly - Beverly Middle School,00300305, 0.1, 1.8, 3.6, 16.5, 4.6, 0.1, 73.4, 48.8, 51.1, 0.1,26.599999999999994,2.4 +1,1,a-cure-i1,2021-22,Beverly - Centerville Elementary,00300010, 0.0, 1.4, 5.5, 13.4, 7.5, 0.0, 72.3, 49.7, 50.3, 0.0,27.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Beverly - Cove Elementary,00300015, 0.2, 1.0, 3.1, 17.1, 4.8, 0.0, 73.7, 49.9, 50.1, 0.0,26.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Beverly - Hannah Elementary,00300033, 0.0, 4.4, 4.1, 12.0, 5.3, 0.0, 74.3, 45.9, 54.1, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Beverly - McKeown School,00300002, 0.0, 4.9, 8.1, 9.8, 4.9, 0.0, 72.4, 36.6, 63.4, 0.0,27.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Beverly - North Beverly Elementary,00300040, 0.0, 2.0, 2.9, 11.6, 3.8, 0.0, 79.8, 42.5, 57.5, 0.0,20.200000000000003,4.2 +1,1,a-cure-i1,2021-22,Billerica - Billerica Memorial High School,00310505, 0.1, 9.8, 6.5, 7.9, 2.1, 0.2, 73.4, 49.4, 50.5, 0.1,26.599999999999994,2.6 +1,1,a-cure-i1,2021-22,Billerica - Frederick J Dutile,00310007, 0.0, 13.7, 4.2, 6.1, 3.4, 0.0, 72.5, 53.4, 46.6, 0.0,27.5,0.0 +1,1,a-cure-i1,2021-22,Billerica - Hajjar Elementary,00310026, 0.0, 11.5, 3.6, 13.7, 3.0, 0.0, 68.2, 54.8, 45.2, 0.0,31.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Billerica - John F Kennedy,00310012, 0.0, 5.3, 1.6, 6.0, 3.8, 0.0, 83.3, 55.7, 44.3, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Billerica - Locke Middle,00310310, 0.0, 7.9, 3.2, 7.8, 4.9, 0.0, 76.2, 49.1, 50.5, 0.4,23.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Billerica - Marshall Middle School,00310305, 0.2, 8.7, 6.7, 12.4, 3.0, 0.0, 69.1, 47.3, 52.5, 0.2,30.900000000000006,2.4 +1,1,a-cure-i1,2021-22,Billerica - Parker,00310015, 0.2, 13.3, 8.5, 7.0, 4.1, 0.0, 66.7, 51.7, 48.3, 0.0,33.3,0.0 +1,1,a-cure-i1,2021-22,Billerica - Thomas Ditson,00310005, 0.0, 10.3, 1.9, 9.0, 4.7, 0.0, 74.1, 47.0, 53.0, 0.0,25.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 2.0, 1.4, 8.9, 2.1, 0.1, 85.5, 49.1, 50.6, 0.3,14.5,2.0 +1,1,a-cure-i1,2021-22,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 1.7, 11.1, 5.2, 0.0, 81.9, 48.7, 51.3, 0.0,18.099999999999994,0.0 +9.28671328671329,5,a-cure-i1,2021-22,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.2, 1.9, 6.8, 4.4, 0.0, 85.7, 49.2, 50.1, 0.7,14.299999999999997,8.3 +11.812080536912747,5,a-cure-i1,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.8, 1.0, 8.6, 4.6, 0.0, 85.1, 43.5, 55.9, 0.5,14.900000000000006,11.0 +1,1,a-cure-i1,2021-22,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 2.0, 2.0, 10.8, 4.9, 0.0, 80.4, 51.0, 49.0, 0.0,19.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Blackstone-Millville - Millville Elementary,06220010, 0.0, 1.8, 2.8, 3.9, 2.8, 0.0, 88.8, 51.6, 48.4, 0.0,11.200000000000003,0.0 +2.9437229437229435,2.94,a-cure-i1,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.5, 2.2, 20.1, 16.6, 6.9, 0.0, 53.8, 47.4, 52.6, 0.0,46.2,8.5 +4.682926829268292,4.68,a-cure-i1,2021-22,Boston - Adams Elementary School,00350302, 0.0, 1.6, 2.4, 75.9, 2.0, 0.0, 18.0, 52.2, 47.8, 0.0,82.0,24.0 +5.378917378917379,5,a-cure-i1,2021-22,Boston - Alighieri Dante Montessori School,00350066, 0.0, 3.8, 1.9, 54.8, 9.6, 0.0, 29.8, 51.0, 49.0, 0.0,70.2,23.6 +10.193814432989692,5,a-cure-i1,2021-22,Boston - Another Course To College,00350541, 0.0, 0.0, 49.8, 46.3, 0.9, 0.0, 3.0, 39.0, 60.6, 0.4,97.0,61.800000000000004 +9.453646477132262,5,a-cure-i1,2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.7, 27.7, 11.3, 29.1, 12.1, 0.0, 19.1, 48.9, 51.1, 0.0,80.9,47.8 +5.6064,5,a-cure-i1,2021-22,Boston - Bates Elementary School,00350278, 0.5, 2.3, 24.5, 31.0, 4.2, 0.0, 37.5, 44.9, 55.1, 0.0,62.5,21.9 +3.76036866359447,3.76,a-cure-i1,2021-22,Boston - Beethoven Elementary School,00350021, 0.0, 3.9, 21.6, 32.2, 7.5, 0.0, 34.9, 42.4, 57.6, 0.0,65.1,15.299999999999999 +6.359832635983264,5,a-cure-i1,2021-22,Boston - Blackstone Elementary School,00350390, 0.0, 3.7, 25.1, 65.1, 1.8, 0.0, 4.4, 47.9, 52.1, 0.0,95.6,38.0 +11.241935483870968,5,a-cure-i1,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, 2.5, 30.8, 64.2, 1.7, 0.0, 0.8, 51.7, 48.3, 0.0,99.2,69.7 +9.582222222222223,5,a-cure-i1,2021-22,Boston - Boston Arts Academy,00350546, 0.0, 1.4, 40.2, 44.3, 4.1, 0.0, 10.0, 69.0, 30.6, 0.4,90.0,53.900000000000006 +4.115812917594655,4.12,a-cure-i1,2021-22,Boston - Boston Collaborative High School,00350755, 1.0, 2.0, 36.7, 46.9, 3.1, 0.0, 10.2, 49.0, 51.0, 0.0,89.8,23.1 +7.9263050153531225,5,a-cure-i1,2021-22,Boston - Boston Community Leadership Academy,00350558, 0.3, 3.0, 33.9, 58.7, 1.5, 0.3, 2.3, 48.7, 51.3, 0.0,97.7,48.400000000000006 +7.290519877675842,5,a-cure-i1,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0.2, 6.9, 31.1, 59.1, 0.5, 0.2, 1.9, 40.6, 59.4, 0.0,98.1,44.7 +9.415730337078653,5,a-cure-i1,2021-22,Boston - Boston Latin Academy,00350545, 0.1, 17.1, 23.7, 26.4, 3.8, 0.1, 28.8, 57.3, 42.6, 0.2,71.2,41.900000000000006 +8.387543252595155,5,a-cure-i1,2021-22,Boston - Boston Latin School,00350560, 0.0, 28.6, 9.7, 14.2, 5.1, 0.2, 42.2, 53.2, 46.5, 0.3,57.8,30.299999999999997 +11.432024169184288,5,a-cure-i1,2021-22,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.3, 1.4, 24.5, 32.8, 7.2, 0.0, 33.8, 47.6, 52.4, 0.0,66.2,47.3 +3.2704402515723268,3.27,a-cure-i1,2021-22,Boston - Bradley Elementary School,00350215, 0.0, 6.9, 7.2, 46.0, 2.7, 0.7, 36.4, 49.1, 50.9, 0.0,63.6,13.0 +6.2594142259414225,5,a-cure-i1,2021-22,Boston - Brighton High School,00350505, 0.3, 4.7, 32.2, 56.7, 1.4, 0.3, 4.4, 45.6, 54.4, 0.0,95.6,37.4 +8.460732984293193,5,a-cure-i1,2021-22,Boston - Burke High School,00350525, 0.3, 0.9, 54.2, 37.3, 2.1, 0.6, 4.5, 40.6, 59.1, 0.3,95.5,50.5 +1,1,a-cure-i1,2021-22,Boston - Carter School,00350036, 0.0, 8.3, 50.0, 33.3, 0.0, 0.0, 8.3, 45.8, 54.2, 0.0,91.7,0.0 +5.011640211640211,5,a-cure-i1,2021-22,Boston - Channing Elementary School,00350360, 0.0, 1.5, 48.8, 41.8, 2.5, 0.0, 5.5, 39.8, 60.2, 0.0,94.5,29.599999999999998 +6.3228511530398315,5,a-cure-i1,2021-22,Boston - Charlestown High School,00350515, 0.1, 6.1, 26.7, 60.3, 2.2, 0.0, 4.6, 44.7, 55.3, 0.0,95.4,37.699999999999996 +5.283333333333334,5,a-cure-i1,2021-22,Boston - Chittick Elementary School,00350154, 0.4, 0.0, 62.1, 29.9, 3.1, 0.4, 4.0, 46.0, 54.0, 0.0,96.0,31.700000000000003 +7.087885985748218,5,a-cure-i1,2021-22,Boston - Clap Elementary School,00350298, 0.0, 5.8, 35.0, 40.0, 3.3, 0.0, 15.8, 43.3, 56.7, 0.0,84.2,37.3 +12.4,5,a-cure-i1,2021-22,Boston - Community Academy,00350518, 0.0, 2.9, 52.9, 44.1, 0.0, 0.0, 0.0, 35.3, 64.7, 0.0,100.0,77.5 +7.951417004048582,5,a-cure-i1,2021-22,Boston - Community Academy of Science and Health,00350581, 0.3, 5.7, 54.7, 33.2, 4.8, 0.0, 1.2, 45.6, 54.4, 0.0,98.8,49.099999999999994 +7.961259079903147,5,a-cure-i1,2021-22,Boston - Condon K-8 School,00350146, 0.5, 6.2, 31.5, 39.2, 5.0, 0.3, 17.4, 47.7, 52.3, 0.0,82.6,41.099999999999994 +7.756962025316455,5,a-cure-i1,2021-22,Boston - Conley Elementary School,00350122, 0.0, 1.1, 32.4, 42.0, 2.8, 0.6, 21.0, 44.9, 55.1, 0.0,79.0,38.3 +8.251428571428571,5,a-cure-i1,2021-22,Boston - Curley K-8 School,00350020, 0.1, 2.6, 17.2, 42.6, 7.6, 0.0, 30.0, 46.2, 53.8, 0.0,70.0,36.1 +9.329255861365954,5,a-cure-i1,2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 0.2, 1.0, 58.7, 33.4, 4.0, 0.9, 1.9, 49.7, 50.0, 0.3,98.1,57.2 +4.928492849284928,4.93,a-cure-i1,2021-22,Boston - Dever Elementary School,00350268, 0.3, 3.0, 22.8, 62.9, 1.6, 0.3, 9.1, 45.4, 54.6, 0.0,90.9,28.0 +13.555869872701555,5,a-cure-i1,2021-22,Boston - East Boston Early Education Center,00350009, 0.0, 1.1, 6.9, 59.6, 3.2, 0.0, 29.3, 49.5, 50.5, 0.0,70.7,59.9 +5.810055865921788,5,a-cure-i1,2021-22,Boston - East Boston High School,00350530, 0.0, 1.6, 5.4, 81.5, 0.9, 0.1, 10.5, 42.2, 57.8, 0.0,89.5,32.5 +7.158878504672899,5,a-cure-i1,2021-22,Boston - Edison K-8 School,00350375, 0.8, 12.1, 13.0, 55.8, 3.7, 0.2, 14.4, 46.1, 53.9, 0.0,85.6,38.300000000000004 +19.843342036553526,5,a-cure-i1,2021-22,Boston - Eliot K-8 Innovation School,00350096, 0.1, 11.8, 5.3, 14.6, 6.3, 0.3, 61.7, 48.7, 51.3, 0.0,38.3,47.5 +12.409836065573769,5,a-cure-i1,2021-22,Boston - Ellis Elementary School,00350072, 0.0, 0.3, 35.7, 59.8, 1.8, 0.0, 2.4, 52.3, 47.7, 0.0,97.6,75.69999999999999 +6.066666666666666,5,a-cure-i1,2021-22,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.6, 49.1, 43.4, 2.9, 0.0, 4.0, 49.7, 50.3, 0.0,96.0,36.4 +7.420289855072465,5,a-cure-i1,2021-22,Boston - English High School,00350535, 0.4, 0.8, 36.8, 55.8, 2.7, 0.2, 3.4, 46.9, 53.1, 0.0,96.6,44.800000000000004 +7.116939890710384,5,a-cure-i1,2021-22,Boston - Everett Elementary School,00350088, 1.9, 15.9, 42.6, 29.6, 1.1, 0.4, 8.5, 47.0, 53.0, 0.0,91.5,40.70000000000001 +10.713501646542262,5,a-cure-i1,2021-22,Boston - Excel High School,00350522, 0.5, 14.8, 30.1, 42.4, 3.2, 0.2, 8.9, 42.8, 56.7, 0.5,91.1,61.0 +8.141519250780439,5,a-cure-i1,2021-22,Boston - Fenway High School,00350540, 0.3, 3.1, 29.2, 60.9, 2.6, 0.0, 3.9, 50.5, 49.5, 0.0,96.1,48.900000000000006 +8.804060913705584,5,a-cure-i1,2021-22,Boston - Frederick Pilot Middle School,00350383, 0.3, 10.6, 37.1, 47.6, 2.9, 0.0, 1.5, 45.9, 54.1, 0.0,98.5,54.2 +7.264472190692396,5,a-cure-i1,2021-22,Boston - Gardner Pilot Academy,00350326, 0.0, 6.9, 10.6, 65.3, 5.3, 0.0, 11.9, 48.8, 50.1, 1.1,88.1,40.0 +14.39344262295082,5,a-cure-i1,2021-22,Boston - Greater Egleston High School,00350543, 1.2, 1.2, 41.0, 50.6, 3.6, 0.0, 2.4, 56.6, 43.4, 0.0,97.6,87.8 +7.474216380182001,5,a-cure-i1,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.3, 12.4, 85.4, 0.8, 0.0, 1.1, 51.0, 49.0, 0.0,98.9,46.199999999999996 +8.117249154453212,5,a-cure-i1,2021-22,Boston - Grew Elementary School,00350135, 0.5, 0.0, 40.9, 37.9, 9.4, 0.0, 11.3, 40.4, 59.6, 0.0,88.7,45.0 +5.897810218978101,5,a-cure-i1,2021-22,Boston - Guild Elementary School,00350062, 0.0, 0.8, 2.9, 78.1, 0.4, 0.0, 17.8, 47.9, 52.1, 0.0,82.2,30.299999999999997 +12.530337078651685,5,a-cure-i1,2021-22,Boston - Hale Elementary School,00350243, 0.0, 5.2, 48.3, 29.7, 5.8, 0.0, 11.0, 51.7, 48.3, 0.0,89.0,69.7 +9.62849872773537,5,a-cure-i1,2021-22,Boston - Haley Pilot School,00350077, 0.0, 1.1, 38.4, 33.7, 5.3, 0.0, 21.4, 47.4, 52.6, 0.0,78.6,47.3 +5.30298719772404,5,a-cure-i1,2021-22,Boston - Harvard-Kent Elementary School,00350200, 0.0, 19.9, 17.6, 28.8, 4.0, 0.0, 29.7, 45.0, 55.0, 0.0,70.3,23.299999999999997 +12.180104712041885,5,a-cure-i1,2021-22,Boston - Haynes Early Education Center,00350010, 1.1, 1.7, 42.7, 44.4, 5.6, 0.0, 4.5, 45.5, 54.5, 0.0,95.5,72.7 +8.185538881309686,5,a-cure-i1,2021-22,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 12.4, 31.7, 18.3, 9.9, 1.0, 26.7, 47.0, 53.0, 0.0,73.3,37.5 +6.862650602409639,5,a-cure-i1,2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.7, 7.7, 44.0, 26.3, 4.0, 0.3, 17.0, 46.9, 52.8, 0.3,83.0,35.6 +6.141078838174273,5,a-cure-i1,2021-22,Boston - Hennigan K-8 School,00350153, 0.0, 3.8, 25.2, 66.5, 0.8, 0.2, 3.6, 50.6, 49.4, 0.0,96.4,37.0 +11.436123348017622,5,a-cure-i1,2021-22,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 3.3, 84.4, 3.1, 0.0, 9.2, 52.6, 47.4, 0.0,90.8,64.9 +7.709677419354838,5,a-cure-i1,2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 0.8, 0.8, 38.7, 57.1, 1.7, 0.0, 0.8, 47.9, 52.1, 0.0,99.2,47.8 +8.390243902439023,5,a-cure-i1,2021-22,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 1.6, 39.9, 52.1, 4.8, 0.0, 1.6, 48.9, 51.1, 0.0,98.4,51.599999999999994 +5.606557377049181,5,a-cure-i1,2021-22,Boston - Holmes Elementary School,00350138, 0.0, 1.2, 58.3, 34.3, 3.9, 0.0, 2.4, 40.6, 59.4, 0.0,97.6,34.2 +1,1,a-cure-i1,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 5.7, 31.4, 48.6, 1.4, 0.0, 12.9, 32.9, 67.1, 0.0,87.1,2.8 +13.300492610837438,5,a-cure-i1,2021-22,Boston - Hurley K-8 School,00350182, 0.3, 1.7, 3.7, 72.4, 3.1, 0.0, 18.8, 52.4, 47.3, 0.3,81.2,67.5 +7.795291709314226,5,a-cure-i1,2021-22,Boston - Irving Middle School,00350445, 0.0, 1.5, 42.1, 49.6, 4.5, 0.0, 2.3, 48.9, 51.1, 0.0,97.7,47.599999999999994 +4.695837780149413,4.7,a-cure-i1,2021-22,Boston - Jackson-Mann K-8 School,00350013, 1.1, 11.1, 27.3, 51.4, 2.8, 0.0, 6.3, 39.5, 60.5, 0.0,93.7,27.5 +4.805790108564535,4.81,a-cure-i1,2021-22,Boston - Kennedy John F Elementary School,00350166, 0.3, 2.1, 14.7, 61.4, 4.5, 0.0, 17.1, 47.9, 52.1, 0.0,82.9,24.9 +3.9529411764705884,3.95,a-cure-i1,2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 1.5, 2.3, 88.9, 0.8, 0.0, 6.5, 44.8, 55.2, 0.0,93.5,23.1 +7.017173051519155,5,a-cure-i1,2021-22,Boston - Kenny Elementary School,00350328, 0.0, 11.6, 32.3, 26.1, 5.6, 0.0, 24.3, 50.1, 49.9, 0.0,75.7,33.2 +7.147663551401869,5,a-cure-i1,2021-22,Boston - Kilmer K-8 School,00350190, 0.0, 7.9, 17.6, 22.3, 5.7, 0.0, 46.5, 45.3, 54.5, 0.2,53.5,23.9 +9.911794871794871,5,a-cure-i1,2021-22,Boston - King K-8 School,00350376, 1.1, 1.1, 54.8, 38.3, 2.2, 0.0, 2.5, 49.5, 50.5, 0.0,97.5,60.4 +4.988335100742312,4.99,a-cure-i1,2021-22,Boston - Lee Academy,00350001, 0.0, 2.9, 53.1, 32.0, 6.3, 0.0, 5.7, 46.3, 53.7, 0.0,94.3,29.4 +4.466666666666666,4.47,a-cure-i1,2021-22,Boston - Lee K-8 School,00350183, 0.5, 4.9, 52.8, 33.1, 4.2, 0.4, 4.0, 42.8, 57.2, 0.0,96.0,26.799999999999997 +10.368298368298369,5,a-cure-i1,2021-22,Boston - Lyndon K-8 School,00350262, 0.0, 3.7, 9.4, 23.9, 5.7, 0.2, 57.1, 48.0, 52.0, 0.0,42.9,27.8 +3.629072681704261,3.63,a-cure-i1,2021-22,Boston - Lyon High School,00350655, 0.0, 4.7, 21.7, 45.7, 7.8, 0.0, 20.2, 34.9, 65.1, 0.0,79.8,18.1 +6.366925064599483,5,a-cure-i1,2021-22,Boston - Lyon K-8 School,00350004, 0.0, 11.3, 25.6, 29.3, 11.3, 0.0, 22.6, 48.1, 51.9, 0.0,77.4,30.8 +7.736082474226804,5,a-cure-i1,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0.3, 1.3, 38.7, 54.3, 1.9, 0.4, 3.0, 40.4, 59.6, 0.0,97.0,46.9 +1,1,a-cure-i1,2021-22,Boston - Manning Elementary School,00350184, 0.0, 3.8, 13.1, 25.6, 10.0, 0.0, 47.5, 49.4, 50.6, 0.0,52.5,0.0 +8.473420260782346,5,a-cure-i1,2021-22,Boston - Margarita Muniz Academy,00350549, 0.3, 0.0, 7.7, 90.1, 1.5, 0.0, 0.3, 52.3, 47.7, 0.0,99.7,52.8 +6.731501057082452,5,a-cure-i1,2021-22,Boston - Mario Umana Academy,00350656, 0.2, 1.7, 1.7, 90.2, 0.9, 0.0, 5.4, 47.3, 52.4, 0.3,94.6,39.8 +6.22875131164743,5,a-cure-i1,2021-22,Boston - Mason Elementary School,00350304, 0.0, 2.1, 51.8, 36.3, 5.2, 0.0, 4.7, 43.0, 56.5, 0.5,95.3,37.1 +10.148380355276906,5,a-cure-i1,2021-22,Boston - Mather Elementary School,00350227, 0.6, 30.4, 38.1, 22.3, 4.1, 0.2, 4.3, 51.5, 48.5, 0.0,95.7,60.699999999999996 +7.036045314109167,5,a-cure-i1,2021-22,Boston - Mattahunt Elementary School,00350016, 0.7, 0.9, 68.0, 24.9, 2.7, 0.0, 2.9, 42.0, 58.0, 0.0,97.1,42.7 +4.437569060773481,4.44,a-cure-i1,2021-22,Boston - McKay K-8 School,00350080, 0.0, 0.6, 2.5, 86.2, 1.3, 0.0, 9.5, 51.2, 48.8, 0.0,90.5,25.1 +6.4207119741100325,5,a-cure-i1,2021-22,Boston - McKinley Schools,00350363, 0.9, 2.3, 42.9, 42.9, 3.7, 0.0, 7.3, 19.6, 79.9, 0.5,92.7,37.2 +14.709677419354836,5,a-cure-i1,2021-22,Boston - Mendell Elementary School,00350100, 0.4, 3.1, 29.9, 27.6, 7.3, 0.0, 31.8, 46.0, 54.0, 0.0,68.2,62.699999999999996 +7.770961145194274,5,a-cure-i1,2021-22,Boston - Mildred Avenue K-8 School,00350378, 1.0, 1.1, 63.0, 29.2, 3.5, 0.0, 2.2, 47.4, 52.6, 0.0,97.8,47.5 +5.632776934749621,5,a-cure-i1,2021-22,Boston - Mission Hill K-8 School,00350382, 0.0, 1.8, 27.8, 30.0, 5.8, 0.4, 34.1, 43.9, 56.1, 0.0,65.9,23.200000000000003 +19.558573853989813,5,a-cure-i1,2021-22,Boston - Mozart Elementary School,00350237, 0.6, 3.2, 24.1, 22.2, 8.9, 0.0, 41.1, 43.0, 57.0, 0.0,58.9,72.0 +6.899889988998899,5,a-cure-i1,2021-22,Boston - Murphy K-8 School,00350240, 0.5, 53.1, 17.4, 16.5, 3.3, 0.2, 9.1, 47.6, 52.4, 0.0,90.9,39.199999999999996 +7.278756476683937,5,a-cure-i1,2021-22,Boston - New Mission High School,00350542, 0.2, 2.2, 51.0, 40.5, 2.4, 0.2, 3.5, 51.4, 48.6, 0.0,96.5,43.9 +10.319634703196346,5,a-cure-i1,2021-22,Boston - O'Bryant School of Math & Science,00350575, 0.1, 20.2, 30.9, 34.3, 1.9, 0.3, 12.4, 53.6, 46.3, 0.1,87.6,56.49999999999999 +5.240174672489084,5,a-cure-i1,2021-22,Boston - O'Donnell Elementary School,00350141, 0.0, 1.5, 1.1, 88.1, 0.8, 0.0, 8.4, 47.5, 52.5, 0.0,91.6,30.0 +6.2210386151797605,5,a-cure-i1,2021-22,Boston - Ohrenberger School,00350258, 0.2, 4.3, 30.7, 36.1, 3.7, 0.0, 24.9, 50.7, 49.3, 0.0,75.1,29.2 +4.1924257932446265,4.19,a-cure-i1,2021-22,Boston - Orchard Gardens K-8 School,00350257, 1.0, 1.0, 52.4, 40.8, 2.0, 0.5, 2.3, 48.0, 52.0, 0.0,97.7,25.6 +2.835192069392813,2.84,a-cure-i1,2021-22,Boston - Otis Elementary School,00350156, 0.2, 1.5, 4.7, 71.8, 2.2, 0.2, 19.3, 50.7, 49.3, 0.0,80.7,14.3 +7.754266211604094,5,a-cure-i1,2021-22,Boston - Perkins Elementary School,00350231, 0.6, 4.6, 41.6, 36.4, 4.6, 0.0, 12.1, 52.0, 48.0, 0.0,87.9,42.599999999999994 +6.383838383838384,5,a-cure-i1,2021-22,Boston - Perry K-8 School,00350255, 0.5, 4.8, 12.8, 17.1, 4.3, 0.0, 60.4, 48.1, 51.9, 0.0,39.6,15.8 +1,1,a-cure-i1,2021-22,Boston - Philbrick Elementary School,00350172, 1.0, 2.0, 38.4, 39.4, 5.1, 0.0, 14.1, 55.6, 44.4, 0.0,85.9,0.0 +10.08813559322034,5,a-cure-i1,2021-22,Boston - Quincy Elementary School,00350286, 0.0, 61.9, 11.7, 9.3, 5.6, 0.0, 11.5, 50.8, 49.2, 0.0,88.5,55.800000000000004 +10.705636743215033,5,a-cure-i1,2021-22,Boston - Quincy Upper School,00350565, 0.2, 52.3, 19.5, 21.0, 2.9, 0.0, 4.2, 48.1, 51.9, 0.0,95.8,64.10000000000001 +2.7417840375586855,2.74,a-cure-i1,2021-22,Boston - Roosevelt K-8 School,00350116, 0.0, 4.7, 36.9, 36.9, 6.4, 0.2, 14.8, 46.8, 53.2, 0.0,85.2,14.6 +7.621451104100946,5,a-cure-i1,2021-22,Boston - Russell Elementary School,00350366, 0.3, 8.2, 27.3, 56.8, 1.6, 0.8, 4.9, 51.1, 48.9, 0.0,95.1,45.3 +5.512742099898063,5,a-cure-i1,2021-22,Boston - Shaw Elementary School,00350014, 1.9, 2.6, 63.6, 27.9, 1.9, 0.0, 1.9, 47.4, 52.6, 0.0,98.1,33.8 +6.338983050847457,5,a-cure-i1,2021-22,Boston - Snowden International High School,00350690, 0.2, 4.7, 32.0, 55.5, 2.1, 0.0, 5.6, 50.9, 49.1, 0.0,94.4,37.4 +9.809641532756487,5,a-cure-i1,2021-22,Boston - Sumner Elementary School,00350052, 0.0, 1.5, 16.4, 58.3, 4.7, 0.0, 19.1, 44.3, 55.7, 0.0,80.9,49.599999999999994 +12.206686930091184,5,a-cure-i1,2021-22,Boston - Taylor Elementary School,00350054, 0.7, 1.0, 75.5, 19.5, 2.0, 0.0, 1.3, 50.7, 49.3, 0.0,98.7,75.3 +6.367179487179487,5,a-cure-i1,2021-22,Boston - TechBoston Academy,00350657, 0.1, 1.6, 58.3, 32.7, 4.6, 0.2, 2.5, 40.8, 59.1, 0.1,97.5,38.8 +7.90204081632653,5,a-cure-i1,2021-22,Boston - Timilty Middle School,00350485, 0.0, 1.5, 34.1, 59.0, 3.4, 0.0, 2.0, 42.4, 57.1, 0.5,98.0,48.4 +8.751565762004175,5,a-cure-i1,2021-22,Boston - Tobin K-8 School,00350229, 0.5, 2.5, 30.4, 60.1, 2.2, 0.0, 4.2, 50.1, 49.9, 0.0,95.8,52.4 +8.509605662285136,5,a-cure-i1,2021-22,Boston - Trotter K-8 School,00350370, 0.0, 1.4, 56.4, 38.3, 1.4, 1.4, 1.1, 50.6, 49.4, 0.0,98.9,52.6 +6.267639902676399,5,a-cure-i1,2021-22,Boston - Tynan Elementary School,00350181, 0.0, 7.0, 37.9, 32.7, 4.2, 0.5, 17.8, 45.8, 54.2, 0.0,82.2,32.2 +4.865306122448979,4.87,a-cure-i1,2021-22,Boston - UP Academy Holland,00350167, 1.2, 2.0, 46.9, 45.7, 2.1, 0.2, 2.0, 51.3, 48.7, 0.0,98.0,29.8 +9.686274509803923,5,a-cure-i1,2021-22,Boston - Warren-Prescott K-8 School,00350346, 0.0, 3.1, 12.5, 19.6, 5.6, 0.0, 59.2, 46.3, 53.7, 0.0,40.8,24.700000000000003 +6.200445434298441,5,a-cure-i1,2021-22,Boston - West Zone Early Learning Center,00350006, 0.0, 11.4, 23.9, 54.5, 0.0, 0.0, 10.2, 48.9, 51.1, 0.0,89.8,34.8 +10.18585298196949,5,a-cure-i1,2021-22,Boston - Winship Elementary School,00350374, 0.8, 15.5, 12.8, 37.0, 6.0, 0.0, 27.9, 54.0, 46.0, 0.0,72.1,45.900000000000006 +7.168399168399168,5,a-cure-i1,2021-22,Boston - Winthrop Elementary School,00350180, 0.5, 1.9, 58.5, 33.0, 1.9, 0.5, 3.8, 59.9, 40.1, 0.0,96.2,43.1 +9.832492431886983,5,a-cure-i1,2021-22,Boston - Young Achievers K-8 School,00350380, 0.5, 0.4, 46.1, 49.0, 2.7, 0.4, 0.9, 44.0, 56.0, 0.0,99.1,60.9 +13.502572898799315,5,a-cure-i1,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 2.4, 33.9, 18.5, 3.3, 0.1, 41.7, 49.9, 50.0, 0.1,58.3,49.2 +9.586708203530634,5,a-cure-i1,2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.9, 1.4, 46.6, 46.6, 0.9, 0.0, 3.7, 54.9, 45.1, 0.0,96.3,57.7 +7.401709401709402,5,a-cure-i1,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.4, 1.9, 43.8, 44.4, 2.7, 0.4, 6.4, 46.1, 53.9, 0.0,93.6,43.3 +5.549039433771486,5,a-cure-i1,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.4, 66.4, 28.7, 3.2, 0.1, 1.1, 50.0, 50.0, 0.0,98.9,34.3 +2.7433264887063653,2.74,a-cure-i1,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.1, 0.1, 57.1, 36.6, 3.4, 0.1, 2.6, 53.6, 46.4, 0.0,97.4,16.7 +1,1,a-cure-i1,2021-22,Bourne - Bourne High School,00360505, 1.5, 2.3, 1.3, 3.6, 4.3, 0.0, 87.0, 53.4, 46.6, 0.0,13.0,3.4 +1,1,a-cure-i1,2021-22,Bourne - Bourne Intermediate School,00360030, 0.5, 2.2, 2.2, 3.6, 3.0, 0.0, 88.5, 51.8, 48.2, 0.0,11.5,0.0 +10.550724637681162,5,a-cure-i1,2021-22,Bourne - Bourne Middle School,00360325, 0.9, 2.0, 1.4, 5.4, 4.1, 0.0, 86.2, 51.1, 48.9, 0.0,13.799999999999997,9.1 +1,1,a-cure-i1,2021-22,Bourne - Bournedale Elementary School,00360005, 0.3, 2.0, 0.8, 5.3, 10.6, 0.0, 81.0, 46.2, 53.8, 0.0,19.0,0.0 +1,1,a-cure-i1,2021-22,Boxford - Harry Lee Cole,00380005, 0.0, 2.3, 0.3, 4.3, 4.9, 0.0, 88.2, 47.7, 52.3, 0.0,11.799999999999997,0.0 +10.624,5,a-cure-i1,2021-22,Boxford - Spofford Pond,00380013, 0.0, 3.1, 0.5, 3.3, 5.6, 0.0, 87.5, 48.9, 51.1, 0.0,12.5,8.3 +1,1,a-cure-i1,2021-22,Braintree - Archie T Morrison,00400033, 0.3, 24.1, 8.3, 5.3, 4.6, 0.0, 57.4, 49.5, 50.5, 0.0,42.6,0.0 +1,1,a-cure-i1,2021-22,Braintree - Braintree High,00400505, 0.1, 22.4, 5.9, 6.1, 1.6, 0.2, 63.7, 49.7, 50.2, 0.1,36.3,4.1 +1,1,a-cure-i1,2021-22,Braintree - Donald Ross,00400050, 1.0, 31.2, 10.6, 5.5, 2.0, 0.0, 49.7, 55.3, 44.7, 0.0,50.3,0.0 +1,1,a-cure-i1,2021-22,Braintree - East Middle School,00400305, 0.1, 22.3, 6.3, 7.1, 2.4, 0.1, 61.8, 50.0, 50.0, 0.0,38.2,1.5 +1,1,a-cure-i1,2021-22,Braintree - Highlands,00400015, 0.0, 23.9, 1.0, 3.0, 0.7, 0.0, 71.3, 49.9, 50.1, 0.0,28.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Braintree - Hollis,00400005, 0.0, 27.8, 2.3, 6.0, 3.6, 0.0, 60.3, 42.4, 57.3, 0.3,39.7,0.0 +1,1,a-cure-i1,2021-22,Braintree - Liberty,00400025, 0.0, 30.3, 3.4, 4.5, 3.4, 0.8, 57.6, 46.3, 53.7, 0.0,42.4,0.0 +1,1,a-cure-i1,2021-22,Braintree - Mary E Flaherty School,00400020, 0.7, 28.7, 3.3, 4.0, 7.0, 0.0, 56.3, 48.9, 51.1, 0.0,43.7,0.0 +1,1,a-cure-i1,2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 29.5, 5.9, 9.8, 5.5, 0.0, 49.2, 46.5, 53.5, 0.0,50.8,0.0 +1,1,a-cure-i1,2021-22,Braintree - South Middle School,00400310, 0.6, 25.8, 1.7, 3.2, 1.7, 0.2, 66.9, 50.9, 49.1, 0.0,33.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 2.8, 9.4, 4.2, 0.0, 83.6, 51.6, 48.4, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Brewster - Stony Brook Elementary,00410005, 0.0, 1.8, 3.6, 12.0, 8.9, 0.0, 73.8, 48.9, 51.1, 0.0,26.200000000000003,0.0 +6.367010309278351,5,a-cure-i1,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 1.2, 64.9, 28.0, 2.7, 0.3, 3.0, 52.7, 47.3, 0.0,97.0,38.6 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 2.0, 11.4, 4.5, 4.5, 0.0, 77.7, 51.3, 48.7, 0.0,22.299999999999997,3.5 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.1, 2.0, 8.5, 2.6, 5.6, 0.2, 81.0, 48.3, 51.6, 0.1,19.0,0.6 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 3.3, 7.4, 4.3, 4.3, 0.0, 80.9, 47.8, 52.2, 0.0,19.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 3.4, 8.6, 6.4, 6.1, 0.0, 75.5, 47.5, 52.5, 0.0,24.5,0.0 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 2.6, 9.0, 8.2, 5.5, 0.1, 74.7, 47.5, 52.5, 0.0,25.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Raynham Middle School,06250315, 0.1, 2.5, 9.5, 2.4, 3.8, 0.0, 81.7, 50.3, 49.7, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 7.7, 7.7, 7.7, 0.0, 76.9, 30.8, 69.2, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.1, 2.2, 8.4, 3.8, 4.6, 0.0, 80.9, 46.8, 53.2, 0.0,19.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Brimfield - Brimfield Elementary,00430005, 1.1, 1.5, 1.5, 5.6, 0.0, 0.0, 90.3, 51.3, 48.7, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.2, 2.8, 9.0, 0.4, 0.2, 87.4, 71.7, 28.3, 0.0,12.599999999999994,3.5 +1,1,a-cure-i1,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.3, 0.9, 3.7, 6.2, 3.8, 0.0, 85.2, 40.8, 59.2, 0.1,14.799999999999997,4.800000000000001 +1.737265415549598,1.74,a-cure-i1,2021-22,Brockton - Ashfield Middle School,00440421, 0.0, 3.6, 52.2, 15.1, 3.2, 0.4, 25.4, 43.7, 56.3, 0.0,74.6,8.1 +1,1,a-cure-i1,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 59.2, 20.1, 3.3, 0.5, 16.8, 41.8, 58.2, 0.0,83.2,0.0 +3.57124842370744,3.57,a-cure-i1,2021-22,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 53.4, 19.0, 5.2, 1.7, 20.7, 31.9, 67.2, 0.9,79.3,17.7 +4.579439252336449,4.58,a-cure-i1,2021-22,Brockton - Brockton High,00440505, 0.1, 2.4, 61.9, 16.9, 4.2, 0.3, 14.4, 46.2, 53.8, 0.1,85.6,24.5 +1,1,a-cure-i1,2021-22,Brockton - Brockton Virtual Learning Academy,00440705, 0.5, 4.4, 57.3, 19.3, 4.7, 0.3, 13.5, 45.6, 54.4, 0.0,86.5,0.0 +2.910941475826972,2.91,a-cure-i1,2021-22,Brockton - Brookfield,00440010, 0.4, 0.4, 55.6, 14.9, 6.9, 0.2, 21.4, 49.1, 50.9, 0.0,78.6,14.299999999999999 +1,1,a-cure-i1,2021-22,Brockton - Downey,00440110, 0.4, 1.9, 56.3, 18.8, 7.4, 0.2, 15.0, 43.0, 57.0, 0.0,85.0,2.2 +1,1,a-cure-i1,2021-22,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.6, 63.7, 20.0, 6.4, 0.1, 9.3, 44.6, 55.4, 0.0,90.7,4.9 +1.9715639810426537,1.97,a-cure-i1,2021-22,Brockton - East Middle School,00440405, 0.2, 1.4, 62.6, 15.6, 4.5, 0.2, 15.6, 45.9, 54.1, 0.0,84.4,10.399999999999999 +1.846836847946726,1.85,a-cure-i1,2021-22,Brockton - Edgar B Davis,00440023, 0.1, 0.5, 68.6, 14.1, 6.5, 0.3, 9.9, 52.5, 47.5, 0.0,90.1,10.4 +10.556701030927835,5,a-cure-i1,2021-22,Brockton - Edison Academy,00440520, 0.0, 0.0, 61.1, 34.0, 2.0, 0.0, 3.0, 35.0, 65.0, 0.0,97.0,64.0 +3.136,3.14,a-cure-i1,2021-22,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 75.0, 8.3, 16.7, 0.0, 0.0, 25.0, 75.0, 0.0,100.0,19.6 +3.4261954261954264,3.43,a-cure-i1,2021-22,Brockton - Gilmore Elementary School,00440055, 0.0, 0.9, 75.3, 17.3, 2.4, 0.2, 3.8, 51.6, 48.4, 0.0,96.2,20.6 +3.8085381630012933,3.81,a-cure-i1,2021-22,Brockton - Hancock,00440045, 0.0, 2.0, 55.0, 14.7, 5.5, 0.2, 22.7, 53.4, 46.6, 0.0,77.3,18.4 +2.716180371352785,2.72,a-cure-i1,2021-22,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 45.9, 18.0, 11.5, 0.0, 24.6, 31.1, 68.9, 0.0,75.4,12.8 +3.060532687651332,3.06,a-cure-i1,2021-22,Brockton - John F Kennedy,00440017, 0.2, 1.8, 61.4, 15.3, 3.8, 0.2, 17.4, 49.2, 50.8, 0.0,82.6,15.8 +4.91725768321513,4.92,a-cure-i1,2021-22,Brockton - Joseph F. Plouffe Academy,00440422, 0.4, 3.1, 38.9, 37.4, 4.7, 0.1, 15.4, 49.8, 50.2, 0.0,84.6,26.0 +2.552763819095478,2.55,a-cure-i1,2021-22,Brockton - Louis F Angelo Elementary,00440065, 0.3, 3.8, 49.4, 22.3, 3.8, 0.0, 20.4, 45.1, 54.9, 0.0,79.6,12.700000000000001 +2.8609271523178816,2.86,a-cure-i1,2021-22,Brockton - Manthala George Jr. School,00440003, 0.0, 0.2, 46.5, 40.9, 2.8, 0.2, 9.4, 50.9, 49.1, 0.0,90.6,16.200000000000003 +2.4254777070063693,2.43,a-cure-i1,2021-22,Brockton - Mary E. Baker School,00440002, 0.2, 1.5, 48.7, 20.4, 7.4, 0.3, 21.5, 47.8, 52.2, 0.0,78.5,11.9 +2.115846994535519,2.12,a-cure-i1,2021-22,Brockton - North Middle School,00440410, 0.0, 1.0, 70.9, 13.7, 5.9, 0.0, 8.5, 49.0, 51.0, 0.0,91.5,12.1 +0.9240641711229947,1,a-cure-i1,2021-22,Brockton - Oscar F Raymond,00440078, 0.0, 0.9, 79.4, 10.9, 2.0, 0.3, 6.5, 46.2, 53.8, 0.0,93.5,5.4 +4.146118721461187,4.15,a-cure-i1,2021-22,Brockton - South Middle School,00440415, 0.0, 1.3, 65.5, 14.4, 6.5, 0.0, 12.4, 44.4, 55.6, 0.0,87.6,22.7 +2.3903614457831326,2.39,a-cure-i1,2021-22,Brockton - West Middle School,00440420, 0.0, 2.7, 57.9, 16.1, 6.2, 0.2, 17.0, 46.9, 53.1, 0.0,83.0,12.4 +7.86610878661088,5,a-cure-i1,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 0.2, 1.7, 51.9, 39.1, 2.6, 0.1, 4.4, 51.7, 48.3, 0.0,95.6,47.00000000000001 +1,1,a-cure-i1,2021-22,Brookfield - Brookfield Elementary,00450005, 0.0, 0.7, 0.4, 5.0, 3.2, 0.0, 90.7, 48.4, 51.6, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 33.3, 2.1, 10.4, 16.7, 0.0, 37.5, 43.8, 56.3, 0.0,62.5,0.0 +6.830870279146142,5,a-cure-i1,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 21.9, 1.6, 17.2, 20.3, 0.0, 39.1, 35.9, 64.1, 0.0,60.9,26.0 +1,1,a-cure-i1,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 14.0, 2.3, 14.0, 14.0, 0.0, 55.8, 44.2, 55.8, 0.0,44.2,0.0 +5.076586433260393,5,a-cure-i1,2021-22,Brookline - Brookline High,00460505, 0.0, 15.1, 7.3, 12.7, 10.5, 0.0, 54.3, 48.6, 50.9, 0.5,45.7,14.499999999999998 +4.609665427509294,4.61,a-cure-i1,2021-22,Brookline - Edith C Baker,00460005, 0.2, 27.1, 7.1, 9.9, 9.6, 0.0, 46.2, 47.8, 52.0, 0.2,53.8,15.5 +3.5348837209302326,3.53,a-cure-i1,2021-22,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 15.8, 5.3, 10.5, 11.4, 0.0, 57.0, 50.1, 49.5, 0.4,43.0,9.5 +2.1714285714285717,2.17,a-cure-i1,2021-22,Brookline - Heath,00460025, 0.0, 15.5, 4.2, 10.5, 11.8, 0.0, 58.0, 49.0, 50.8, 0.2,42.0,5.7 +2.459016393442623,2.46,a-cure-i1,2021-22,Brookline - John D Runkle,00460045, 0.0, 15.5, 4.9, 13.9, 14.5, 0.0, 51.2, 45.7, 53.9, 0.4,48.8,7.5 +4.150170648464163,4.15,a-cure-i1,2021-22,Brookline - Lawrence,00460030, 0.0, 31.8, 5.6, 10.8, 10.1, 0.3, 41.4, 50.5, 49.3, 0.2,58.6,15.2 +5.906040268456375,5,a-cure-i1,2021-22,Brookline - Michael Driscoll,00460020, 0.0, 17.4, 5.3, 8.1, 13.9, 0.0, 55.3, 44.9, 55.1, 0.0,44.7,16.5 +6.113060428849902,5,a-cure-i1,2021-22,Brookline - Pierce,00460040, 0.0, 22.9, 4.9, 10.7, 12.9, 0.0, 48.7, 51.2, 48.4, 0.4,51.3,19.599999999999998 +9.18181818181818,5,a-cure-i1,2021-22,Brookline - The Lynch Center,00460060, 0.0, 25.9, 14.8, 20.4, 9.3, 0.0, 29.6, 51.9, 48.1, 0.0,70.4,40.4 +3.562043795620438,3.56,a-cure-i1,2021-22,Brookline - William H Lincoln,00460035, 0.2, 22.5, 12.3, 10.6, 9.1, 0.0, 45.2, 51.2, 48.6, 0.2,54.8,12.2 +2.5402843601895735,2.54,a-cure-i1,2021-22,Burlington - Burlington High,00480505, 0.4, 18.6, 8.8, 10.5, 3.9, 0.0, 57.8, 48.0, 51.7, 0.3,42.2,6.7 +1,1,a-cure-i1,2021-22,Burlington - Fox Hill,00480007, 0.4, 16.7, 7.9, 6.9, 4.2, 0.0, 63.8, 51.7, 48.1, 0.2,36.2,0.0 +1,1,a-cure-i1,2021-22,Burlington - Francis Wyman Elementary,00480035, 0.0, 15.3, 11.4, 8.3, 4.8, 0.0, 60.2, 48.3, 51.7, 0.0,39.8,0.5 +1,1,a-cure-i1,2021-22,Burlington - Marshall Simonds Middle,00480303, 0.4, 16.3, 6.8, 7.6, 3.4, 0.0, 65.5, 52.0, 48.0, 0.0,34.5,2.6 +1,1,a-cure-i1,2021-22,Burlington - Memorial,00480015, 0.2, 19.6, 5.9, 11.5, 5.4, 0.0, 57.5, 50.9, 49.1, 0.0,42.5,3.5 +2.4169184290030215,2.42,a-cure-i1,2021-22,Burlington - Pine Glen Elementary,00480020, 0.0, 19.3, 1.5, 6.5, 5.8, 0.0, 66.9, 44.4, 55.6, 0.0,33.099999999999994,5.0 +12.98021308980213,5,a-cure-i1,2021-22,Cambridge - Amigos School,00490006, 0.0, 4.7, 5.4, 47.8, 7.8, 0.0, 34.3, 51.2, 48.5, 0.2,65.7,53.3 +7.515923566878982,5,a-cure-i1,2021-22,Cambridge - Cambridge Rindge and Latin,00490506, 0.2, 10.3, 27.3, 15.2, 9.5, 0.3, 37.2, 50.7, 48.8, 0.5,62.8,29.500000000000004 +11.043478260869565,5,a-cure-i1,2021-22,Cambridge - Cambridge Street Upper School,00490305, 0.4, 9.0, 24.0, 11.8, 10.0, 0.0, 44.8, 44.1, 55.6, 0.4,55.2,38.1 +12.899999999999999,5,a-cure-i1,2021-22,Cambridge - Cambridgeport,00490007, 0.0, 9.1, 18.3, 8.7, 11.9, 0.0, 52.0, 46.4, 52.4, 1.2,48.0,38.699999999999996 +4.856172140430352,4.86,a-cure-i1,2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 0.4, 8.5, 52.8, 17.3, 9.3, 0.0, 11.7, 42.7, 57.3, 0.0,88.3,26.8 +5.931034482758621,5,a-cure-i1,2021-22,Cambridge - Graham and Parks,00490080, 0.0, 13.5, 16.4, 6.9, 9.5, 0.0, 53.6, 51.3, 48.7, 0.0,46.4,17.2 +12.22641509433962,5,a-cure-i1,2021-22,Cambridge - Haggerty,00490020, 0.0, 19.5, 17.8, 8.9, 6.8, 0.0, 47.0, 50.8, 49.2, 0.0,53.0,40.49999999999999 +4.923076923076923,4.92,a-cure-i1,2021-22,Cambridge - John M Tobin,00490065, 0.3, 17.4, 22.4, 7.5, 12.1, 0.0, 40.2, 45.8, 54.2, 0.0,59.8,18.4 +2.883845126835781,2.88,a-cure-i1,2021-22,Cambridge - Kennedy-Longfellow,00490040, 0.0, 19.7, 24.6, 23.2, 7.4, 0.0, 25.1, 44.8, 55.2, 0.0,74.9,13.5 +7.4904458598726125,5,a-cure-i1,2021-22,Cambridge - King Open,00490035, 0.0, 13.0, 23.1, 14.6, 12.1, 0.0, 37.2, 49.6, 50.4, 0.0,62.8,29.400000000000002 +13.821782178217822,5,a-cure-i1,2021-22,Cambridge - Maria L. Baldwin,00490005, 0.0, 9.0, 11.9, 8.5, 11.0, 0.0, 59.6, 50.6, 49.4, 0.0,40.4,34.9 +10.371541501976285,5,a-cure-i1,2021-22,Cambridge - Martin Luther King Jr.,00490030, 0.0, 32.8, 15.2, 5.0, 22.9, 0.0, 24.1, 46.7, 53.3, 0.0,75.9,49.2 +3.7597173144876326,3.76,a-cure-i1,2021-22,Cambridge - Morse,00490045, 0.0, 9.8, 27.3, 8.7, 10.8, 0.0, 43.4, 45.1, 54.9, 0.0,56.6,13.3 +8.986717267552182,5,a-cure-i1,2021-22,Cambridge - Peabody,00490050, 0.3, 14.4, 22.3, 7.2, 8.5, 0.0, 47.3, 49.5, 50.5, 0.0,52.7,29.6 +9.886896551724137,5,a-cure-i1,2021-22,Cambridge - Putnam Avenue Upper School,00490310, 1.5, 14.1, 32.1, 13.0, 11.8, 0.0, 27.5, 46.9, 53.1, 0.0,72.5,44.8 +7.37546468401487,5,a-cure-i1,2021-22,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 11.5, 21.8, 11.5, 9.2, 0.0, 46.2, 56.1, 43.1, 0.8,53.8,24.799999999999997 +6.159999999999999,5,a-cure-i1,2021-22,Cambridge - Vassal Lane Upper School,00490320, 0.0, 15.9, 25.5, 11.0, 7.6, 0.0, 40.0, 48.6, 51.0, 0.3,60.0,23.099999999999998 +3.4883720930232553,3.49,a-cure-i1,2021-22,Canton - Canton High,00500505, 0.0, 11.4, 13.1, 5.8, 4.2, 0.0, 65.6, 55.3, 44.3, 0.4,34.400000000000006,7.5 +1,1,a-cure-i1,2021-22,Canton - Dean S Luce,00500020, 0.0, 9.5, 10.4, 6.5, 6.3, 0.0, 67.3, 46.5, 53.5, 0.0,32.7,0.0 +1,1,a-cure-i1,2021-22,Canton - John F Kennedy,00500017, 0.0, 9.6, 6.3, 5.9, 8.5, 0.0, 69.8, 47.8, 52.2, 0.0,30.200000000000003,0.0 +2.6063348416289593,2.61,a-cure-i1,2021-22,Canton - Lt Peter M Hansen,00500012, 0.0, 12.0, 12.5, 9.6, 10.1, 0.0, 55.8, 48.5, 51.5, 0.0,44.2,7.2 +1,1,a-cure-i1,2021-22,Canton - Rodman Early Childhood Center,00500010, 1.3, 20.3, 11.4, 10.1, 6.3, 0.0, 50.6, 40.5, 59.5, 0.0,49.4,0.0 +2.956521739130435,2.96,a-cure-i1,2021-22,Canton - Wm H Galvin Middle,00500305, 0.3, 11.0, 12.0, 6.6, 6.3, 0.6, 63.2, 52.7, 47.3, 0.0,36.8,6.8 +1,1,a-cure-i1,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.4, 1.6, 1.6, 2.4, 2.0, 0.0, 92.0, 48.0, 51.6, 0.4,8.0,0.0 +1,1,a-cure-i1,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.2, 1.1, 6.7, 10.7, 4.0, 0.2, 76.1, 37.2, 62.5, 0.3,23.900000000000006,3.8 +1,1,a-cure-i1,2021-22,Carlisle - Carlisle School,00510025, 0.0, 11.7, 0.3, 5.5, 8.6, 0.3, 73.5, 49.8, 50.2, 0.0,26.5,3.8 +1,1,a-cure-i1,2021-22,Carver - Carver Elementary School,00520015, 0.1, 0.1, 2.5, 2.5, 1.8, 0.0, 92.9, 50.8, 49.2, 0.0,7.099999999999994,2.1 +14.293333333333333,5,a-cure-i1,2021-22,Carver - Carver Middle/High School,00520405, 0.8, 0.3, 2.5, 2.9, 1.0, 0.0, 92.5, 47.4, 52.6, 0.0,7.5,6.7 +10.33333333333334,5,a-cure-i1,2021-22,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 5.8, 3.8, 0.0, 90.4, 52.9, 47.1, 0.0,9.599999999999994,6.2 +1,1,a-cure-i1,2021-22,Central Berkshire - Craneville,06350025, 0.2, 1.2, 0.7, 7.5, 6.6, 0.0, 83.7, 49.3, 50.7, 0.0,16.299999999999997,0.0 +16.923076923076913,5,a-cure-i1,2021-22,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 2.0, 3.3, 0.0, 94.8, 54.2, 45.8, 0.0,5.200000000000003,5.5 +1,1,a-cure-i1,2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 0.3, 0.3, 3.4, 5.0, 0.0, 90.7, 45.0, 55.0, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.6, 0.8, 4.3, 3.7, 0.0, 90.6, 48.0, 52.0, 0.0,9.400000000000006,1.5 +1,1,a-cure-i1,2021-22,Chelmsford - Byam School,00560030, 0.0, 14.7, 2.6, 10.2, 4.7, 0.2, 67.6, 48.9, 51.1, 0.0,32.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Chelmsford - Center Elementary School,00560005, 0.0, 20.4, 3.1, 5.7, 3.9, 0.0, 66.9, 45.5, 54.5, 0.0,33.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Chelmsford - Charles D Harrington,00560025, 0.6, 22.2, 4.4, 12.1, 2.5, 0.4, 57.6, 50.0, 50.0, 0.0,42.4,0.0 +3.643564356435644,3.64,a-cure-i1,2021-22,Chelmsford - Chelmsford High,00560505, 0.1, 17.3, 3.4, 6.2, 2.9, 0.3, 69.7, 49.7, 50.2, 0.1,30.299999999999997,6.9 +1,1,a-cure-i1,2021-22,Chelmsford - Col Moses Parker School,00560305, 0.3, 14.4, 3.9, 9.2, 4.4, 0.0, 67.8, 43.6, 56.4, 0.0,32.2,0.0 +1,1,a-cure-i1,2021-22,Chelmsford - Community Education Center,00560001, 0.0, 23.6, 3.9, 15.7, 3.1, 0.0, 53.5, 35.4, 64.6, 0.0,46.5,0.0 +1,1,a-cure-i1,2021-22,Chelmsford - McCarthy Middle School,00560310, 0.1, 18.0, 4.2, 8.1, 4.3, 0.2, 65.0, 49.2, 50.7, 0.1,35.0,3.5 +1,1,a-cure-i1,2021-22,Chelmsford - South Row,00560015, 0.4, 17.7, 3.1, 5.8, 4.5, 0.0, 68.5, 49.7, 50.3, 0.0,31.5,0.0 +3.802313354363828,3.8,a-cure-i1,2021-22,Chelsea - Chelsea High,00570505, 0.3, 1.1, 3.4, 89.8, 0.5, 0.0, 4.9, 45.7, 54.2, 0.1,95.1,22.6 +3.8738555442522893,3.87,a-cure-i1,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 2.6, 95.7, 0.0, 0.0, 1.7, 36.8, 63.2, 0.0,98.3,23.8 +1,1,a-cure-i1,2021-22,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 77.8, 0.0, 0.0, 22.2, 22.2, 77.8, 0.0,77.8,0.0 +1.6,1.6,a-cure-i1,2021-22,Chelsea - Clark Avenue School,00570050, 0.3, 0.3, 2.5, 91.0, 1.0, 0.0, 5.0, 48.1, 51.9, 0.0,95.0,9.5 +1.3155555555555556,1.32,a-cure-i1,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 0.2, 0.8, 6.2, 82.1, 0.8, 0.0, 10.0, 47.2, 52.8, 0.0,90.0,7.4 +1.1744680851063831,1.17,a-cure-i1,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.6, 5.8, 86.3, 1.3, 0.0, 6.0, 48.7, 51.3, 0.0,94.0,6.9 +3.321739130434783,3.32,a-cure-i1,2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 0.2, 0.4, 5.7, 85.2, 0.4, 0.0, 8.0, 53.8, 46.2, 0.0,92.0,19.1 +6.687565308254963,5,a-cure-i1,2021-22,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 2.0, 93.7, 0.0, 0.0, 4.3, 51.5, 48.5, 0.0,95.7,40.0 +5.676312968917471,5,a-cure-i1,2021-22,Chelsea - Joseph A. Browne School,00570055, 0.2, 1.3, 5.4, 86.3, 0.2, 0.0, 6.7, 43.7, 56.3, 0.0,93.3,33.1 +2.5761226725082147,2.58,a-cure-i1,2021-22,Chelsea - Shurtleff Early Childhood,00570003, 0.4, 0.7, 3.0, 87.0, 0.2, 0.0, 8.7, 47.1, 52.9, 0.0,91.3,14.7 +1.2555673382820787,1.26,a-cure-i1,2021-22,Chelsea - William A Berkowitz Elementary,00570025, 0.2, 1.3, 6.5, 85.7, 0.7, 0.0, 5.7, 54.8, 45.2, 0.0,94.3,7.4 +1,1,a-cure-i1,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.7, 0.0, 1.4, 1.4, 0.7, 0.0, 95.9, 43.2, 56.8, 0.0,4.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Chicopee - Barry,00610003, 0.3, 2.1, 4.2, 33.4, 3.2, 0.5, 56.2, 43.2, 56.8, 0.0,43.8,0.0 +2.0564263322884013,2.06,a-cure-i1,2021-22,Chicopee - Belcher,00610010, 0.0, 1.3, 10.0, 49.3, 3.1, 0.0, 36.2, 48.9, 51.1, 0.0,63.8,8.2 +1,1,a-cure-i1,2021-22,Chicopee - Bellamy Middle,00610305, 0.0, 0.7, 3.5, 44.9, 3.3, 0.0, 47.5, 48.2, 51.7, 0.1,52.5,1.5 +1,1,a-cure-i1,2021-22,Chicopee - Bowe,00610015, 0.0, 1.6, 3.8, 65.5, 3.8, 0.0, 25.2, 49.5, 50.5, 0.0,74.8,0.0 +3.264367816091954,3.26,a-cure-i1,2021-22,Chicopee - Bowie,00610020, 0.0, 1.9, 3.7, 26.3, 3.0, 0.0, 65.2, 49.6, 50.4, 0.0,34.8,7.1 +1.9210526315789473,1.92,a-cure-i1,2021-22,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 3.8, 54.4, 2.5, 0.0, 39.2, 24.1, 75.9, 0.0,60.8,7.3 +3.12,3.12,a-cure-i1,2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 0.1, 1.6, 2.6, 31.9, 3.8, 0.0, 60.0, 44.0, 55.9, 0.1,40.0,7.800000000000001 +2.598984771573604,2.6,a-cure-i1,2021-22,Chicopee - Chicopee High,00610505, 0.0, 2.5, 4.5, 48.9, 3.2, 0.0, 40.9, 51.7, 48.2, 0.1,59.1,9.6 +1,1,a-cure-i1,2021-22,Chicopee - Dupont Middle,00610310, 0.0, 1.3, 5.3, 45.0, 2.7, 0.0, 45.7, 45.2, 54.6, 0.3,54.3,4.0 +1,1,a-cure-i1,2021-22,Chicopee - Fairview Elementary,00610050, 0.0, 1.2, 6.4, 53.1, 3.2, 0.2, 35.9, 42.5, 57.5, 0.0,64.1,3.8 +2.0367454068241466,2.04,a-cure-i1,2021-22,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.6, 8.1, 62.8, 4.7, 0.0, 23.8, 48.4, 51.6, 0.0,76.2,9.7 +1,1,a-cure-i1,2021-22,Chicopee - Lambert-Lavoie,00610040, 0.0, 2.7, 4.3, 33.5, 5.4, 0.0, 54.1, 42.4, 57.6, 0.0,45.9,1.3 +1,1,a-cure-i1,2021-22,Chicopee - Litwin,00610022, 0.0, 2.1, 8.4, 34.7, 2.4, 0.0, 52.4, 49.7, 50.3, 0.0,47.6,1.0 +2.3434343434343434,2.34,a-cure-i1,2021-22,Chicopee - Streiber Memorial School,00610065, 0.0, 3.5, 4.0, 29.1, 3.1, 0.0, 60.4, 44.1, 55.9, 0.0,39.6,5.8 +2.3406113537117905,2.34,a-cure-i1,2021-22,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 1.0, 5.4, 29.6, 9.4, 0.5, 54.2, 43.8, 56.2, 0.0,45.8,6.7 +5.190965092402464,5,a-cure-i1,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 2.3, 8.5, 7.5, 25.0, 5.4, 0.0, 51.3, 45.6, 54.4, 0.0,48.7,15.8 +3.0843373493975905,3.08,a-cure-i1,2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 67.2, 30.1, 2.2, 0.0, 0.4, 49.3, 50.7, 0.0,99.6,19.2 +1,1,a-cure-i1,2021-22,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 0.0, 2.4, 1.4, 0.0, 95.7, 46.9, 53.1, 0.0,4.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Clinton - Clinton Elementary,00640050, 0.1, 0.9, 2.0, 32.6, 2.9, 0.1, 61.4, 47.2, 52.8, 0.0,38.6,0.0 +2.8097560975609754,2.81,a-cure-i1,2021-22,Clinton - Clinton Middle School,00640305, 0.0, 1.0, 2.6, 35.1, 2.2, 0.0, 59.0, 47.6, 52.4, 0.0,41.0,7.199999999999999 +2.90547263681592,2.91,a-cure-i1,2021-22,Clinton - Clinton Senior High,00640505, 0.0, 1.0, 3.9, 34.1, 1.0, 0.2, 59.8, 46.9, 52.7, 0.4,40.2,7.3 +7.1895687061183535,5,a-cure-i1,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 74.9, 23.6, 1.2, 0.0, 0.3, 50.7, 49.3, 0.0,99.7,44.79999999999999 +1,1,a-cure-i1,2021-22,Cohasset - Cohasset High School,00650505, 0.5, 2.4, 3.1, 2.1, 2.1, 0.0, 89.9, 48.6, 51.2, 0.2,10.099999999999994,2.6 +1,1,a-cure-i1,2021-22,Cohasset - Cohasset Middle School,00650305, 0.0, 2.2, 2.8, 0.9, 2.2, 0.0, 91.8, 47.8, 52.2, 0.0,8.200000000000003,3.5 +1,1,a-cure-i1,2021-22,Cohasset - Deer Hill,00650005, 0.0, 1.3, 2.5, 1.9, 0.6, 0.0, 93.6, 51.9, 48.1, 0.0,6.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Cohasset - Joseph Osgood,00650010, 0.3, 0.8, 2.5, 1.9, 2.7, 0.0, 91.8, 51.4, 48.6, 0.0,8.200000000000003,0.0 +3.49936788874842,3.5,a-cure-i1,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 1.6, 27.0, 20.6, 26.1, 3.7, 0.0, 20.9, 51.1, 48.8, 0.1,79.1,17.3 +6.261603375527427,5,a-cure-i1,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.3, 4.2, 70.8, 15.6, 3.8, 0.0, 5.2, 58.0, 42.0, 0.0,94.8,37.1 +3.2719836400817996,3.27,a-cure-i1,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.5, 0.5, 1.7, 94.8, 0.2, 0.0, 2.2, 49.1, 50.9, 0.0,97.8,20.0 +7.193548387096774,5,a-cure-i1,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.3, 0.0, 1.3, 97.8, 0.0, 0.0, 0.8, 50.0, 50.0, 0.0,99.2,44.6 +1.270103092783505,1.27,a-cure-i1,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.8, 1.5, 94.2, 0.5, 0.0, 3.0, 51.0, 49.0, 0.0,97.0,7.7 +3.8303030303030305,3.83,a-cure-i1,2021-22,Concord - Alcott,00670005, 0.0, 7.9, 9.1, 8.6, 7.4, 0.0, 67.0, 49.3, 50.7, 0.0,33.0,7.9 +11.545787545787547,5,a-cure-i1,2021-22,Concord - Concord Middle,00670305, 0.0, 6.1, 5.7, 8.0, 7.6, 0.0, 72.7, 48.7, 51.3, 0.0,27.299999999999997,19.7 +1,1,a-cure-i1,2021-22,Concord - Thoreau,00670020, 0.2, 8.2, 1.8, 7.1, 8.4, 0.0, 74.3, 48.1, 51.9, 0.0,25.700000000000003,0.7 +8.4,5,a-cure-i1,2021-22,Concord - Willard,00670030, 0.0, 7.7, 1.1, 3.9, 7.3, 0.0, 80.0, 51.7, 48.3, 0.0,20.0,10.5 +5.864541832669324,5,a-cure-i1,2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 0.2, 8.2, 4.5, 5.6, 6.6, 0.0, 74.9, 49.9, 49.6, 0.5,25.099999999999994,9.2 +4.552016985138003,4.55,a-cure-i1,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.2, 1.8, 48.1, 41.4, 2.7, 0.0, 5.8, 51.7, 48.3, 0.0,94.2,26.799999999999997 +1,1,a-cure-i1,2021-22,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.7, 2.8, 4.1, 0.0, 92.4, 42.8, 56.6, 0.7,7.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Danvers - Danvers High,00710505, 0.0, 2.6, 2.9, 9.2, 3.3, 0.0, 82.0, 49.4, 50.1, 0.5,18.0,0.7 +1,1,a-cure-i1,2021-22,Danvers - Great Oak,00710015, 0.3, 2.8, 4.0, 8.7, 4.7, 0.0, 79.4, 51.4, 48.6, 0.0,20.599999999999994,4.7 +1,1,a-cure-i1,2021-22,Danvers - Highlands,00710010, 0.3, 3.5, 4.1, 10.4, 2.5, 0.0, 79.3, 45.8, 54.2, 0.0,20.700000000000003,0.0 +5.135802469135802,5,a-cure-i1,2021-22,Danvers - Holten Richmond Middle School,00710305, 0.0, 2.6, 1.0, 10.8, 1.8, 0.0, 83.8, 48.8, 51.2, 0.0,16.200000000000003,5.2 +1,1,a-cure-i1,2021-22,Danvers - Ivan G Smith,00710032, 0.0, 2.3, 2.9, 7.4, 1.9, 0.0, 85.4, 51.5, 48.5, 0.0,14.599999999999994,4.7 +1,1,a-cure-i1,2021-22,Danvers - Riverside,00710030, 0.3, 1.3, 1.6, 13.4, 1.3, 0.3, 81.8, 39.8, 60.2, 0.0,18.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Danvers - Willis E Thorpe,00710045, 0.0, 0.9, 1.2, 9.7, 1.2, 0.0, 86.9, 51.1, 48.9, 0.0,13.099999999999994,4.7 +1,1,a-cure-i1,2021-22,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.5, 5.3, 11.5, 0.0, 81.7, 53.4, 46.6, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Dartmouth - Dartmouth High,00720505, 0.0, 0.5, 2.7, 6.2, 8.3, 0.1, 82.2, 50.2, 49.8, 0.0,17.799999999999997,1.4 +1,1,a-cure-i1,2021-22,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.0, 1.2, 6.2, 5.7, 0.0, 85.9, 48.3, 51.6, 0.1,14.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Dartmouth - George H Potter,00720030, 0.0, 1.3, 0.5, 4.3, 5.4, 0.0, 88.5, 50.3, 49.7, 0.0,11.5,0.0 +1,1,a-cure-i1,2021-22,Dartmouth - James M. Quinn School,00720040, 0.1, 1.9, 1.3, 6.7, 6.8, 0.0, 83.0, 45.4, 54.6, 0.0,17.0,0.0 +1,1,a-cure-i1,2021-22,Dartmouth - Joseph Demello,00720015, 0.0, 0.8, 1.6, 4.8, 7.0, 0.0, 85.8, 47.1, 52.9, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Dedham - Avery,00730010, 0.0, 1.8, 9.3, 32.1, 6.4, 0.4, 50.0, 48.9, 51.1, 0.0,50.0,0.0 +2.6,2.6,a-cure-i1,2021-22,Dedham - Dedham High,00730505, 0.0, 2.3, 9.3, 17.5, 2.9, 0.0, 68.0, 47.1, 52.2, 0.7,32.0,5.2 +1,1,a-cure-i1,2021-22,Dedham - Dedham Middle School,00730305, 0.0, 2.4, 7.0, 17.5, 4.9, 0.0, 68.2, 49.7, 50.3, 0.0,31.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Dedham - Early Childhood Center,00730005, 0.0, 3.6, 4.8, 13.6, 6.3, 0.0, 71.7, 50.6, 49.4, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Dedham - Greenlodge,00730025, 0.0, 0.4, 3.8, 10.7, 8.0, 0.0, 77.0, 43.3, 56.3, 0.4,23.0,0.0 +1,1,a-cure-i1,2021-22,Dedham - Oakdale,00730030, 0.0, 2.0, 8.8, 11.2, 6.0, 0.0, 71.9, 50.6, 49.4, 0.0,28.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Dedham - Riverdale,00730045, 0.0, 3.5, 5.2, 15.1, 9.3, 0.0, 66.9, 45.9, 54.1, 0.0,33.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Deerfield - Deerfield Elementary,00740015, 0.0, 0.3, 0.3, 5.2, 8.3, 0.0, 85.9, 48.2, 51.8, 0.0,14.099999999999994,0.0 +2.674094707520891,2.67,a-cure-i1,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.2, 2.2, 12.3, 14.3, 4.8, 0.0, 64.1, 49.8, 49.9, 0.3,35.900000000000006,6.0 +1,1,a-cure-i1,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.3, 2.6, 8.5, 12.8, 5.9, 0.0, 68.9, 52.8, 47.2, 0.0,31.099999999999994,3.8 +1,1,a-cure-i1,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.7, 2.7, 9.6, 18.4, 7.2, 0.0, 60.4, 42.7, 57.3, 0.0,39.6,0.0 +5.106382978723404,5,a-cure-i1,2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 1.4, 1.9, 9.6, 10.0, 10.0, 0.0, 67.1, 46.5, 53.5, 0.0,32.900000000000006,10.5 +1,1,a-cure-i1,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 2.7, 2.7, 10.6, 10.0, 6.8, 0.7, 66.5, 46.6, 53.4, 0.0,33.5,4.0 +1,1,a-cure-i1,2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.5, 3.3, 8.0, 12.2, 6.1, 0.0, 70.0, 47.8, 52.2, 0.0,30.0,0.0 +1,1,a-cure-i1,2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 2.0, 3.6, 4.7, 4.5, 0.0, 85.1, 47.7, 52.3, 0.0,14.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.6, 3.4, 4.9, 5.2, 0.0, 85.0, 46.4, 53.6, 0.0,15.0,4.4 +1,1,a-cure-i1,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.1, 1.0, 1.1, 4.5, 3.2, 0.0, 90.0, 48.9, 50.6, 0.4,10.0,3.6 +1,1,a-cure-i1,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.4, 1.9, 2.2, 3.7, 3.2, 0.0, 88.5, 52.2, 47.8, 0.0,11.5,2.9 +1,1,a-cure-i1,2021-22,Dighton-Rehoboth - Palmer River,06500010, 0.0, 1.4, 0.5, 4.6, 3.3, 0.0, 90.1, 46.0, 53.9, 0.2,9.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Douglas - Douglas Elementary School,00770015, 0.0, 0.3, 0.3, 6.5, 5.4, 0.0, 87.6, 46.5, 53.5, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Douglas - Douglas High School,00770505, 0.0, 1.5, 0.6, 5.4, 1.8, 0.3, 90.5, 47.9, 52.1, 0.0,9.5,3.2 +1,1,a-cure-i1,2021-22,Douglas - Douglas Middle School,00770305, 0.0, 0.7, 0.4, 5.8, 2.6, 0.0, 90.5, 50.0, 50.0, 0.0,9.5,0.0 +1,1,a-cure-i1,2021-22,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 4.5, 4.0, 0.0, 90.4, 46.0, 54.0, 0.0,9.599999999999994,0.0 +3.085714285714286,3.09,a-cure-i1,2021-22,Dover - Chickering,00780005, 0.0, 13.9, 3.5, 3.9, 6.7, 0.0, 72.0, 46.2, 53.8, 0.0,28.0,5.4 +5.5408560311284045,5,a-cure-i1,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.3, 11.1, 3.7, 5.5, 5.2, 0.0, 74.3, 49.2, 50.5, 0.3,25.700000000000003,8.9 +4.63157894736842,4.63,a-cure-i1,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 11.9, 3.6, 7.6, 7.4, 0.0, 69.6, 47.5, 52.5, 0.0,30.400000000000006,8.8 +1,1,a-cure-i1,2021-22,Dracut - Brookside Elementary,00790035, 0.2, 11.3, 10.6, 13.2, 1.5, 0.0, 63.3, 49.3, 50.7, 0.0,36.7,0.0 +1,1,a-cure-i1,2021-22,Dracut - Dracut Senior High,00790505, 0.7, 9.5, 8.4, 8.8, 2.4, 0.0, 70.2, 48.4, 51.0, 0.6,29.799999999999997,1.8 +1,1,a-cure-i1,2021-22,Dracut - George H. Englesby Elementary School,00790045, 0.2, 9.5, 6.2, 18.3, 2.1, 0.0, 63.8, 49.6, 50.4, 0.0,36.2,0.0 +1,1,a-cure-i1,2021-22,Dracut - Greenmont Avenue,00790030, 0.0, 9.1, 5.3, 14.4, 3.0, 0.0, 68.2, 46.2, 53.8, 0.0,31.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 0.2, 5.5, 8.5, 8.3, 1.2, 0.0, 76.3, 46.8, 53.2, 0.0,23.700000000000003,0.0 +2.702702702702703,2.7,a-cure-i1,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 7.0, 7.0, 13.7, 1.8, 0.0, 70.4, 48.1, 51.8, 0.1,29.599999999999994,5.0 +9.805924412665986,5,a-cure-i1,2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 1.0, 1.0, 62.2, 32.9, 0.7, 0.0, 2.1, 47.9, 52.1, 0.0,97.9,60.0 +1,1,a-cure-i1,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 1.3, 0.0, 11.3, 3.4, 0.0, 84.1, 51.9, 48.1, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.3, 1.0, 1.9, 6.6, 3.4, 0.0, 86.9, 47.3, 52.7, 0.0,13.099999999999994,0.0 +11.383084577114431,5,a-cure-i1,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.3, 0.6, 3.2, 13.1, 2.9, 0.0, 79.9, 47.8, 52.2, 0.0,20.099999999999994,14.3 +1,1,a-cure-i1,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 1.1, 2.6, 11.4, 2.4, 0.0, 82.5, 46.9, 53.1, 0.0,17.5,0.0 +9.638554216867472,5,a-cure-i1,2021-22,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.2, 1.8, 10.1, 4.4, 0.0, 83.4, 47.2, 52.8, 0.0,16.599999999999994,10.0 +1,1,a-cure-i1,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 0.4, 0.8, 0.8, 13.6, 6.6, 0.0, 77.8, 48.2, 51.8, 0.0,22.200000000000003,3.6 +1,1,a-cure-i1,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 1.6, 1.8, 9.5, 1.8, 0.1, 85.2, 52.7, 47.2, 0.1,14.799999999999997,1.4 +1,1,a-cure-i1,2021-22,Duxbury - Alden School,00820004, 0.0, 0.5, 0.3, 2.9, 3.0, 0.2, 93.1, 48.6, 51.4, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 1.3, 3.5, 4.0, 0.0, 90.2, 50.3, 49.7, 0.0,9.799999999999997,3.2 +1,1,a-cure-i1,2021-22,Duxbury - Duxbury High,00820505, 0.2, 1.7, 0.2, 2.2, 3.7, 0.0, 92.0, 49.4, 50.5, 0.1,8.0,3.0 +1,1,a-cure-i1,2021-22,Duxbury - Duxbury Middle,00820305, 0.0, 0.9, 0.6, 3.1, 4.0, 0.0, 91.4, 48.2, 51.8, 0.0,8.599999999999994,0.0 +1,1,a-cure-i1,2021-22,East Bridgewater - Central,00830005, 0.5, 0.9, 4.9, 4.2, 2.7, 0.0, 86.7, 48.4, 51.6, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.5, 0.6, 4.8, 3.9, 3.0, 0.1, 87.0, 45.3, 54.6, 0.1,13.0,0.0 +1,1,a-cure-i1,2021-22,East Bridgewater - Gordon W. Mitchell School,00830010, 0.3, 1.1, 5.4, 5.3, 3.5, 0.0, 84.4, 49.8, 50.2, 0.0,15.599999999999994,0.0 +5.829457364341085,5,a-cure-i1,2021-22,East Longmeadow - Birchland Park,00870305, 0.2, 6.8, 4.2, 10.5, 4.2, 0.0, 74.2, 46.1, 53.7, 0.2,25.799999999999997,9.399999999999999 +4.946859903381642,4.95,a-cure-i1,2021-22,East Longmeadow - East Longmeadow High,00870505, 0.0, 6.0, 3.8, 8.5, 2.5, 0.0, 79.3, 48.3, 51.7, 0.0,20.700000000000003,6.4 +1,1,a-cure-i1,2021-22,East Longmeadow - Mapleshade,00870010, 0.0, 6.0, 1.9, 14.0, 4.2, 0.0, 74.0, 46.4, 53.6, 0.0,26.0,0.0 +1,1,a-cure-i1,2021-22,East Longmeadow - Meadow Brook,00870013, 0.0, 5.5, 1.8, 15.7, 3.5, 0.0, 73.5, 45.7, 54.3, 0.0,26.5,3.3 +1,1,a-cure-i1,2021-22,East Longmeadow - Mountain View,00870015, 0.0, 4.9, 2.2, 8.2, 5.6, 0.0, 79.0, 50.2, 49.8, 0.0,21.0,0.0 +1,1,a-cure-i1,2021-22,Eastham - Eastham Elementary,00850005, 0.0, 2.1, 8.9, 3.6, 7.8, 0.0, 77.6, 45.3, 54.7, 0.0,22.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Easthampton - Center School,00860005, 0.0, 1.1, 1.6, 10.1, 2.7, 0.0, 84.6, 50.0, 50.0, 0.0,15.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Easthampton - Easthampton High,00860505, 0.2, 4.0, 1.7, 12.7, 2.2, 0.0, 79.1, 50.4, 48.6, 1.0,20.900000000000006,3.0 +1,1,a-cure-i1,2021-22,Easthampton - Maple,00860010, 0.4, 1.8, 0.0, 12.3, 4.4, 0.0, 81.1, 45.8, 53.3, 0.9,18.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Easthampton - Neil A Pepin,00860020, 0.6, 2.3, 2.9, 21.7, 6.3, 0.6, 65.7, 49.1, 50.9, 0.0,34.3,0.0 +1,1,a-cure-i1,2021-22,Easthampton - White Brook Middle School,00860305, 0.2, 3.8, 0.9, 17.4, 3.8, 0.0, 73.9, 45.8, 53.8, 0.5,26.099999999999994,3.4 +1,1,a-cure-i1,2021-22,Easton - Center School,00880003, 0.0, 4.7, 8.4, 11.6, 7.9, 0.0, 67.4, 46.5, 53.5, 0.0,32.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Easton - Easton Middle School,00880405, 0.1, 3.2, 7.8, 6.4, 3.8, 0.0, 78.7, 47.6, 52.4, 0.0,21.299999999999997,3.4 +1,1,a-cure-i1,2021-22,Easton - Moreau Hall,00880020, 0.0, 4.6, 8.7, 8.3, 6.4, 0.0, 72.0, 45.0, 55.0, 0.0,28.0,0.0 +5.414141414141414,5,a-cure-i1,2021-22,Easton - Oliver Ames High,00880505, 0.4, 3.6, 6.7, 5.5, 3.5, 0.0, 80.2, 50.2, 49.7, 0.1,19.799999999999997,6.699999999999999 +1,1,a-cure-i1,2021-22,Easton - Parkview Elementary,00880015, 0.0, 3.4, 2.7, 7.7, 4.4, 0.0, 81.8, 44.4, 55.6, 0.0,18.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Easton - Richardson Olmsted School,00880025, 0.7, 3.0, 7.2, 8.5, 3.4, 0.1, 77.2, 50.2, 49.8, 0.0,22.799999999999997,2.8 +1,1,a-cure-i1,2021-22,Edgartown - Edgartown Elementary,00890005, 2.0, 0.3, 3.3, 23.9, 4.5, 0.0, 66.0, 50.9, 49.1, 0.0,34.0,2.6 +8.543364681295715,5,a-cure-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, 0.3, 1.0, 36.7, 55.2, 2.5, 0.0, 4.3, 66.1, 33.9, 0.0,95.7,51.099999999999994 +1,1,a-cure-i1,2021-22,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 6.0, 8.3, 0.0, 85.7, 42.9, 57.1, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.1, 1.8, 1.8, 13.8, 3.9, 0.1, 78.5, 57.6, 42.1, 0.3,21.5,1.3 +1,1,a-cure-i1,2021-22,Everett - Adams School,00930003, 0.0, 13.0, 18.1, 40.6, 0.7, 0.0, 27.5, 51.4, 48.6, 0.0,72.5,0.0 +2.1956797966963153,2.2,a-cure-i1,2021-22,Everett - Devens School,00930030, 0.0, 0.0, 23.4, 48.9, 6.4, 0.0, 21.3, 23.4, 74.5, 2.1,78.7,10.8 +2.9375764993880047,2.94,a-cure-i1,2021-22,Everett - Everett High,00930505, 0.6, 5.2, 16.8, 57.4, 1.7, 0.0, 18.3, 49.0, 51.0, 0.0,81.7,15.0 +1.6054732041049031,1.61,a-cure-i1,2021-22,Everett - George Keverian School,00930028, 0.2, 4.2, 13.0, 68.6, 1.5, 0.1, 12.3, 50.9, 49.1, 0.0,87.7,8.8 +1.288723667905824,1.29,a-cure-i1,2021-22,Everett - Lafayette School,00930038, 0.1, 8.4, 15.5, 55.1, 1.6, 0.0, 19.3, 49.4, 50.6, 0.0,80.7,6.5 +1,1,a-cure-i1,2021-22,Everett - Madeline English School,00930018, 0.2, 5.9, 11.0, 60.1, 2.0, 0.0, 20.9, 48.2, 51.8, 0.0,79.1,3.1 +1.0044052863436124,1.0,a-cure-i1,2021-22,Everett - Parlin School,00930058, 0.0, 2.7, 10.6, 76.4, 1.1, 0.0, 9.2, 53.2, 46.8, 0.0,90.8,5.7 +2.5564245810055866,2.56,a-cure-i1,2021-22,Everett - Sumner G. Whittier School,00930010, 0.7, 3.1, 10.0, 73.8, 1.8, 0.0, 10.5, 49.6, 50.4, 0.0,89.5,14.3 +1,1,a-cure-i1,2021-22,Everett - Webster Extension,00930001, 0.6, 17.5, 12.9, 49.1, 1.2, 0.0, 18.7, 43.9, 56.1, 0.0,81.3,0.0 +1,1,a-cure-i1,2021-22,Everett - Webster School,00930015, 0.0, 3.8, 12.3, 56.8, 0.9, 0.0, 26.2, 46.7, 53.3, 0.0,73.8,3.8 +6.531356898517673,5,a-cure-i1,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.6, 1.3, 6.2, 78.2, 0.9, 0.5, 12.3, 48.9, 51.1, 0.0,87.7,35.8 +1,1,a-cure-i1,2021-22,Fairhaven - East Fairhaven,00940010, 0.7, 2.0, 2.3, 5.6, 5.6, 0.0, 84.0, 49.0, 51.0, 0.0,16.0,0.9 +1,1,a-cure-i1,2021-22,Fairhaven - Fairhaven High,00940505, 0.5, 2.4, 2.1, 5.1, 3.2, 0.0, 86.8, 51.0, 49.0, 0.0,13.200000000000003,0.0 +7.421686746987954,5,a-cure-i1,2021-22,Fairhaven - Hastings Middle,00940305, 1.1, 1.5, 3.3, 6.6, 4.0, 0.0, 83.4, 50.1, 49.9, 0.0,16.599999999999994,7.7 +1,1,a-cure-i1,2021-22,Fairhaven - Leroy Wood,00940030, 0.4, 2.2, 3.5, 6.6, 4.6, 0.0, 82.7, 49.3, 50.7, 0.0,17.299999999999997,0.7 +2.1077844311377243,2.11,a-cure-i1,2021-22,Fall River - B M C Durfee High,00950505, 0.2, 4.6, 10.1, 28.7, 6.5, 0.0, 49.9, 49.0, 51.0, 0.0,50.1,6.6 +1,1,a-cure-i1,2021-22,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.1, 2.7, 8.8, 37.3, 10.8, 0.0, 40.3, 48.5, 51.5, 0.0,59.7,2.9 +1,1,a-cure-i1,2021-22,Fall River - Henry Lord Community School,00950017, 0.0, 1.8, 10.3, 38.3, 9.2, 0.0, 40.4, 46.6, 53.4, 0.0,59.6,4.2 +1,1,a-cure-i1,2021-22,Fall River - James Tansey,00950140, 0.0, 1.8, 5.7, 12.1, 7.8, 0.0, 72.6, 51.6, 48.0, 0.4,27.400000000000006,0.0 +1.802816901408451,1.8,a-cure-i1,2021-22,Fall River - John J Doran,00950045, 0.0, 1.0, 9.5, 31.9, 14.1, 0.2, 43.2, 48.1, 51.9, 0.0,56.8,6.4 +1.7512437810945274,1.75,a-cure-i1,2021-22,Fall River - Letourneau Elementary School,00950013, 0.0, 3.0, 9.7, 39.2, 8.4, 0.0, 39.7, 47.1, 52.9, 0.0,60.3,6.6 +2.0291545189504374,2.03,a-cure-i1,2021-22,Fall River - Mary Fonseca Elementary School,00950011, 0.2, 2.4, 12.0, 43.7, 10.4, 0.0, 31.4, 49.5, 50.5, 0.0,68.6,8.7 +3.6796714579055436,3.68,a-cure-i1,2021-22,Fall River - Matthew J Kuss Middle,00950320, 0.0, 4.1, 8.3, 26.9, 9.3, 0.0, 51.3, 51.2, 48.8, 0.0,48.7,11.2 +1,1,a-cure-i1,2021-22,Fall River - Morton Middle,00950315, 0.1, 3.5, 9.4, 23.9, 8.4, 0.0, 54.8, 44.8, 55.2, 0.0,45.2,2.5 +1,1,a-cure-i1,2021-22,Fall River - North End Elementary,00950005, 0.3, 1.7, 11.0, 24.0, 10.0, 0.0, 53.0, 49.6, 50.4, 0.0,47.0,0.0 +3.2398753894080996,3.24,a-cure-i1,2021-22,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.9, 17.4, 36.7, 9.2, 0.0, 35.8, 26.6, 73.4, 0.0,64.2,13.0 +1.9001721170395869,1.9,a-cure-i1,2021-22,Fall River - Samuel Watson,00950145, 0.0, 2.1, 12.4, 27.0, 16.2, 0.4, 41.9, 53.1, 46.9, 0.0,58.1,6.9 +1,1,a-cure-i1,2021-22,Fall River - Spencer Borden,00950130, 0.0, 4.6, 11.4, 22.2, 11.2, 0.0, 50.6, 47.2, 52.8, 0.0,49.4,4.8 +1,1,a-cure-i1,2021-22,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 13.2, 22.1, 7.4, 1.5, 55.9, 26.5, 73.5, 0.0,44.1,2.9 +2.604651162790698,2.6,a-cure-i1,2021-22,Fall River - Talbot Innovation School,00950305, 0.3, 3.1, 8.7, 37.4, 10.5, 0.2, 39.8, 51.3, 48.7, 0.0,60.2,9.8 +1,1,a-cure-i1,2021-22,Fall River - William S Greene,00950065, 0.0, 5.4, 9.4, 34.1, 10.6, 0.0, 40.6, 49.5, 50.5, 0.0,59.4,3.1 +1,1,a-cure-i1,2021-22,Falmouth - East Falmouth Elementary,00960005, 1.1, 3.3, 5.4, 11.2, 5.4, 0.0, 73.6, 41.3, 58.7, 0.0,26.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Falmouth - Falmouth High,00960505, 0.5, 2.1, 6.0, 7.3, 4.7, 0.0, 79.4, 48.6, 50.4, 1.0,20.599999999999994,2.8000000000000003 +6.570048309178743,5,a-cure-i1,2021-22,Falmouth - Lawrence,00960405, 2.2, 1.2, 4.6, 6.8, 5.8, 0.0, 79.3, 48.2, 51.4, 0.4,20.700000000000003,8.5 +4.383561643835615,4.38,a-cure-i1,2021-22,Falmouth - Morse Pond School,00960305, 1.5, 0.8, 4.2, 7.4, 8.0, 0.0, 78.1, 48.9, 51.1, 0.0,21.900000000000006,6.0 +4.078431372549019,4.08,a-cure-i1,2021-22,Falmouth - Mullen-Hall,00960020, 0.3, 1.8, 3.5, 10.8, 9.3, 0.0, 74.5, 42.8, 57.3, 0.0,25.5,6.5 +7.466666666666667,5,a-cure-i1,2021-22,Falmouth - North Falmouth Elementary,00960030, 0.3, 1.2, 3.0, 8.6, 5.0, 0.0, 82.0, 54.1, 45.9, 0.0,18.0,8.4 +4.972972972972974,4.97,a-cure-i1,2021-22,Falmouth - Teaticket,00960015, 0.8, 1.2, 7.5, 10.3, 9.9, 0.0, 70.4, 43.9, 54.9, 1.2,29.599999999999994,9.2 +1,1,a-cure-i1,2021-22,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 2.6, 0.0, 0.0, 97.4, 55.2, 44.8, 0.0,2.5999999999999943,0.0 +2.306122448979592,2.31,a-cure-i1,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.2, 3.9, 6.3, 60.0, 8.0, 0.0, 21.6, 47.4, 52.3, 0.3,78.4,11.3 +1.8016085790884717,1.8,a-cure-i1,2021-22,Fitchburg - Crocker Elementary,00970016, 0.0, 5.2, 7.9, 54.7, 6.7, 0.0, 25.4, 50.6, 49.4, 0.0,74.6,8.399999999999999 +3.774574049803408,3.77,a-cure-i1,2021-22,Fitchburg - Fitchburg High,00970505, 0.0, 6.1, 7.5, 56.0, 6.7, 0.0, 23.7, 48.0, 52.0, 0.0,76.3,18.0 +3.2989690721649483,3.3,a-cure-i1,2021-22,Fitchburg - Goodrich Academy,00970510, 0.0, 3.2, 3.8, 45.6, 5.7, 0.0, 41.8, 43.7, 55.7, 0.6,58.2,12.0 +1,1,a-cure-i1,2021-22,Fitchburg - McKay Arts Academy,00970340, 0.0, 5.1, 6.9, 58.1, 6.0, 0.0, 23.8, 45.4, 54.6, 0.0,76.2,4.6 +1.5397489539748952,1.54,a-cure-i1,2021-22,Fitchburg - Memorial Middle School,00970048, 0.0, 3.1, 5.5, 54.9, 7.9, 0.1, 28.3, 54.6, 45.4, 0.0,71.7,6.8999999999999995 +3.490909090909091,3.49,a-cure-i1,2021-22,Fitchburg - Reingold Elementary,00970043, 0.0, 3.7, 4.6, 52.0, 5.7, 0.0, 34.0, 44.9, 55.1, 0.0,66.0,14.4 +1.0256410256410255,1.03,a-cure-i1,2021-22,Fitchburg - South Street Elementary,00970060, 0.0, 2.9, 7.2, 59.7, 8.2, 0.0, 22.0, 46.2, 53.8, 0.0,78.0,5.0 +1,1,a-cure-i1,2021-22,Florida - Abbott Memorial,00980005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 99.0, 43.3, 56.7, 0.0,1.0,0.0 +12.512820512820518,5,a-cure-i1,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.5, 1.8, 0.9, 5.5, 6.9, 0.0, 84.4, 55.5, 43.6, 0.9,15.599999999999994,12.200000000000001 +1,1,a-cure-i1,2021-22,Foxborough - Charles Taylor Elementary,00990050, 0.0, 4.8, 5.6, 8.1, 5.2, 0.0, 76.2, 44.8, 55.2, 0.0,23.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Foxborough - Foxborough High,00990505, 0.6, 3.2, 8.3, 6.6, 2.1, 0.0, 79.1, 47.7, 52.2, 0.1,20.900000000000006,0.3 +1,1,a-cure-i1,2021-22,Foxborough - John J Ahern,00990405, 0.4, 4.8, 6.4, 7.7, 4.6, 0.1, 76.0, 47.9, 52.1, 0.0,24.0,3.5 +4.133971291866028,4.13,a-cure-i1,2021-22,Foxborough - Mabelle M Burrell,00990015, 0.3, 5.3, 5.6, 6.2, 3.5, 0.0, 79.1, 46.8, 53.2, 0.0,20.900000000000006,5.4 +1,1,a-cure-i1,2021-22,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 6.4, 7.0, 9.3, 5.8, 0.3, 71.3, 44.3, 55.7, 0.0,28.700000000000003,2.5 +2.6736842105263157,2.67,a-cure-i1,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.4, 8.9, 54.8, 6.7, 5.1, 0.2, 24.0, 52.2, 47.8, 0.0,76.0,12.7 +8.703703703703702,5,a-cure-i1,2021-22,Framingham - Barbieri Elementary,01000035, 0.0, 0.4, 2.8, 79.6, 3.4, 0.0, 13.6, 51.6, 48.4, 0.0,86.4,47.0 +6.105849582172702,5,a-cure-i1,2021-22,Framingham - Brophy,01000006, 0.2, 3.0, 5.8, 58.1, 4.7, 0.0, 28.2, 46.2, 53.8, 0.0,71.8,27.4 +7.325842696629215,5,a-cure-i1,2021-22,Framingham - Cameron Middle School,01000302, 0.0, 1.9, 6.0, 23.6, 4.1, 0.0, 64.4, 47.3, 52.7, 0.0,35.599999999999994,16.3 +2.7936507936507935,2.79,a-cure-i1,2021-22,Framingham - Charlotte A Dunning,01000007, 0.0, 8.5, 7.0, 25.1, 3.5, 0.0, 55.9, 43.9, 56.1, 0.0,44.1,7.7 +4.312499999999999,4.31,a-cure-i1,2021-22,Framingham - Framingham High School,01000515, 0.0, 4.7, 6.4, 35.9, 4.0, 0.1, 48.8, 49.7, 50.2, 0.1,51.2,13.799999999999999 +4.688888888888888,4.69,a-cure-i1,2021-22,Framingham - Fuller Middle,01000305, 0.2, 1.4, 7.6, 59.0, 3.8, 0.0, 28.0, 47.8, 51.9, 0.3,72.0,21.099999999999998 +4.661951909476662,4.66,a-cure-i1,2021-22,Framingham - Harmony Grove Elementary,01000055, 0.2, 1.4, 9.8, 57.2, 2.2, 0.0, 29.3, 42.4, 57.4, 0.2,70.7,20.6 +1.9834710743801653,1.98,a-cure-i1,2021-22,Framingham - Hemenway,01000015, 0.2, 9.5, 6.9, 23.2, 8.6, 0.0, 51.6, 48.4, 51.6, 0.0,48.4,6.0 +1,1,a-cure-i1,2021-22,Framingham - Juniper Hill School,01000001, 0.0, 7.9, 5.1, 37.0, 7.9, 0.4, 41.7, 38.2, 61.8, 0.0,58.3,4.8 +1,1,a-cure-i1,2021-22,Framingham - King Elementary School,01000005, 0.0, 10.6, 5.6, 18.9, 8.6, 0.0, 56.4, 46.1, 53.6, 0.3,43.6,4.3 +1,1,a-cure-i1,2021-22,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 6.7, 7.7, 39.4, 7.4, 0.0, 38.7, 45.1, 54.9, 0.0,61.3,1.2 +1.6802507836990597,1.68,a-cure-i1,2021-22,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.6, 11.8, 41.1, 8.1, 0.2, 36.2, 52.7, 47.1, 0.2,63.8,6.7 +6.352941176470589,5,a-cure-i1,2021-22,Framingham - Potter Road,01000039, 0.2, 1.9, 7.4, 39.1, 5.9, 0.0, 45.6, 48.7, 51.3, 0.0,54.4,21.6 +4.179337231968812,4.18,a-cure-i1,2021-22,Framingham - Walsh Middle,01000310, 0.0, 5.9, 4.8, 37.1, 3.5, 0.0, 48.7, 52.1, 47.7, 0.1,51.3,13.4 +11.831932773109239,5,a-cure-i1,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 2.3, 2.1, 4.1, 3.4, 0.0, 88.1, 57.5, 42.0, 0.5,11.900000000000006,8.8 +1,1,a-cure-i1,2021-22,Franklin - Annie Sullivan Middle School,01010040, 0.0, 4.6, 4.0, 5.8, 0.3, 0.3, 85.0, 45.6, 54.4, 0.0,15.0,0.0 +1,1,a-cure-i1,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 22.3, 2.3, 1.5, 3.8, 0.0, 70.0, 41.5, 58.5, 0.0,30.0,0.0 +1,1,a-cure-i1,2021-22,Franklin - Franklin High,01010505, 0.1, 7.7, 1.7, 4.4, 2.1, 0.2, 83.7, 50.0, 49.6, 0.4,16.299999999999997,2.2 +1,1,a-cure-i1,2021-22,Franklin - Helen Keller Elementary,01010012, 0.0, 3.1, 2.0, 6.1, 2.4, 0.7, 85.7, 49.4, 50.6, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Franklin - Horace Mann,01010405, 0.0, 6.0, 1.6, 4.1, 2.7, 1.1, 84.3, 47.8, 52.2, 0.0,15.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Franklin - J F Kennedy Memorial,01010013, 0.3, 5.9, 0.0, 4.4, 1.2, 2.4, 85.9, 44.1, 55.3, 0.6,14.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Franklin - Jefferson Elementary,01010010, 0.0, 6.0, 2.7, 6.0, 2.1, 0.6, 82.6, 41.1, 58.9, 0.0,17.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Franklin - Oak Street Elementary,01010030, 0.0, 8.0, 1.9, 5.9, 3.5, 0.3, 80.4, 49.1, 50.9, 0.0,19.599999999999994,4.7 +1,1,a-cure-i1,2021-22,Franklin - Parmenter,01010032, 0.0, 5.3, 5.3, 9.3, 3.0, 1.0, 76.1, 52.2, 47.8, 0.0,23.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Franklin - Remington Middle,01010310, 0.0, 7.1, 2.6, 7.1, 1.3, 0.3, 81.5, 49.2, 50.8, 0.0,18.5,0.0 +1,1,a-cure-i1,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.2, 0.0, 1.2, 7.4, 2.4, 0.5, 88.3, 40.1, 59.9, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.6, 2.6, 2.6, 1.8, 0.1, 92.2, 53.1, 46.5, 0.4,7.799999999999997,4.1 +1,1,a-cure-i1,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.6, 3.9, 3.1, 5.6, 0.0, 86.7, 52.2, 47.8, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.5, 0.9, 2.8, 2.5, 0.0, 93.3, 45.4, 54.6, 0.0,6.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.9, 3.0, 1.0, 1.9, 0.0, 93.2, 49.0, 51.0, 0.0,6.799999999999997,4.8 +1,1,a-cure-i1,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.2, 2.5, 3.8, 3.1, 0.0, 90.3, 49.0, 51.0, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Frontier - Frontier Regional,06700505, 0.0, 2.5, 1.6, 7.2, 4.3, 0.2, 84.3, 47.9, 52.1, 0.0,15.700000000000003,4.2 +2.8944723618090453,2.89,a-cure-i1,2021-22,Gardner - Elm Street School,01030001, 0.0, 1.1, 2.8, 29.7, 6.3, 0.0, 60.2, 46.5, 53.2, 0.2,39.8,7.2 +1,1,a-cure-i1,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 1.0, 8.3, 16.7, 3.1, 0.0, 70.8, 51.0, 49.0, 0.0,29.200000000000003,0.0 +3.2173913043478266,3.22,a-cure-i1,2021-22,Gardner - Gardner High,01030505, 0.1, 2.0, 4.1, 22.0, 8.5, 0.0, 63.2, 47.4, 52.4, 0.1,36.8,7.4 +2.1836228287841193,2.18,a-cure-i1,2021-22,Gardner - Gardner Middle School,01030405, 0.2, 1.7, 2.7, 25.1, 10.6, 0.0, 59.7, 50.2, 49.8, 0.0,40.3,5.5 +1,1,a-cure-i1,2021-22,Gardner - Waterford Street,01030020, 0.2, 2.1, 1.4, 29.2, 6.0, 0.0, 61.1, 45.1, 54.9, 0.0,38.9,0.0 +1,1,a-cure-i1,2021-22,Gateway - Chester Elementary,06720059, 0.0, 1.7, 0.0, 3.4, 0.9, 0.0, 94.0, 40.5, 59.5, 0.0,6.0,0.0 +12.173913043478256,5,a-cure-i1,2021-22,Gateway - Gateway Regional High,06720505, 1.1, 0.0, 0.6, 5.7, 1.7, 0.0, 90.8, 47.1, 52.3, 0.6,9.200000000000003,7.0 +16.475247524752486,5,a-cure-i1,2021-22,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 1.4, 5.8, 2.9, 0.0, 89.9, 47.8, 52.2, 0.0,10.099999999999994,10.4 +1,1,a-cure-i1,2021-22,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 6.9, 1.3, 0.3, 91.5, 50.2, 49.8, 0.0,8.5,0.0 +1,1,a-cure-i1,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 1.2, 1.2, 5.3, 0.9, 0.3, 91.0, 50.3, 49.4, 0.3,9.0,4.6 +1,1,a-cure-i1,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.5, 2.0, 2.5, 1.5, 0.5, 93.1, 48.3, 51.7, 0.0,6.900000000000006,2.3 +1,1,a-cure-i1,2021-22,Georgetown - Penn Brook,01050010, 0.0, 0.9, 0.4, 3.1, 2.6, 0.0, 92.9, 50.3, 49.7, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 2.8, 2.8, 0.0, 94.4, 42.3, 57.7, 0.0,5.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.8, 5.9, 2.5, 0.0, 90.7, 44.9, 55.1, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 1.0, 12.0, 6.8, 1.0, 79.2, 46.9, 52.6, 0.5,20.799999999999997,2.3 +1,1,a-cure-i1,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.7, 2.1, 21.1, 7.0, 0.0, 69.0, 45.1, 54.9, 0.0,31.0,0.0 +4.404181184668989,4.4,a-cure-i1,2021-22,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 1.0, 1.9, 19.1, 6.2, 0.5, 71.3, 42.1, 57.4, 0.5,28.700000000000003,7.9 +3.8333333333333335,3.83,a-cure-i1,2021-22,Gill-Montague - Turners Fall High,06740505, 1.1, 0.0, 2.2, 15.8, 9.8, 0.0, 71.2, 55.4, 44.6, 0.0,28.799999999999997,6.8999999999999995 +2.1698956780923995,2.17,a-cure-i1,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.6, 1.6, 12.7, 47.4, 4.8, 0.0, 32.9, 51.2, 48.8, 0.0,67.1,9.1 +1,1,a-cure-i1,2021-22,Gloucester - Beeman Memorial,01070010, 0.0, 0.9, 1.9, 21.3, 4.6, 0.0, 71.3, 55.2, 44.8, 0.0,28.700000000000003,0.0 +8.0,5,a-cure-i1,2021-22,Gloucester - East Gloucester Elementary,01070020, 0.0, 1.2, 0.6, 10.2, 3.0, 0.0, 85.0, 53.9, 46.1, 0.0,15.0,7.5 +1,1,a-cure-i1,2021-22,Gloucester - Gloucester High,01070505, 0.5, 1.3, 1.4, 11.8, 3.4, 0.5, 81.1, 44.8, 54.3, 0.8,18.900000000000006,3.5 +1,1,a-cure-i1,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, 3.8, 0.0, 11.3, 6.3, 0.0, 78.8, 36.3, 63.8, 0.0,21.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Gloucester - Plum Cove School,01070042, 0.0, 0.5, 1.4, 5.1, 6.5, 0.0, 86.5, 50.7, 49.3, 0.0,13.5,0.0 +1,1,a-cure-i1,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0.5, 1.1, 1.3, 14.0, 3.7, 0.2, 79.4, 48.3, 51.7, 0.0,20.599999999999994,0.0 +2.880886426592798,2.88,a-cure-i1,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, 3.2, 5.6, 23.1, 3.2, 0.9, 63.9, 49.1, 50.9, 0.0,36.1,6.5 +1,1,a-cure-i1,2021-22,Gloucester - West Parish,01070050, 0.3, 1.6, 1.3, 7.5, 4.6, 0.3, 84.4, 48.5, 51.5, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100.0,0.0 +3.9272727272727277,3.93,a-cure-i1,2021-22,Grafton - Grafton High School,01100505, 0.2, 10.2, 2.1, 6.5, 2.9, 0.1, 78.0, 51.4, 48.5, 0.1,22.0,5.4 +1,1,a-cure-i1,2021-22,Grafton - Grafton Middle,01100305, 0.2, 12.2, 1.5, 8.8, 2.1, 0.0, 75.1, 45.5, 54.5, 0.0,24.900000000000006,2.9 +1,1,a-cure-i1,2021-22,Grafton - Millbury Street Elementary School,01100200, 0.2, 17.0, 2.1, 6.2, 3.3, 0.0, 71.3, 44.4, 55.6, 0.0,28.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Grafton - North Grafton Elementary,01100025, 0.8, 12.2, 4.2, 8.4, 2.3, 0.0, 72.2, 41.8, 58.2, 0.0,27.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Grafton - North Street Elementary School,01100030, 0.6, 11.5, 2.0, 5.0, 4.3, 0.2, 76.4, 52.5, 47.5, 0.0,23.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Grafton - South Grafton Elementary,01100005, 0.4, 19.3, 4.0, 8.4, 1.8, 0.0, 66.1, 47.8, 52.2, 0.0,33.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Granby - East Meadow,01110004, 0.8, 1.3, 0.0, 11.4, 4.3, 0.0, 82.2, 50.5, 49.5, 0.0,17.799999999999997,1.0 +10.862385321100913,5,a-cure-i1,2021-22,Granby - Granby Jr Sr High School,01110505, 0.0, 1.0, 0.3, 7.9, 1.7, 0.0, 89.1, 41.6, 57.4, 1.0,10.900000000000006,7.4 +1,1,a-cure-i1,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.2, 5.6, 7.3, 20.5, 7.7, 0.3, 58.4, 53.2, 46.2, 0.6,41.6,0.0 +1,1,a-cure-i1,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.7, 2.0, 3.2, 14.4, 5.9, 0.0, 73.8, 44.0, 55.6, 0.4,26.200000000000003,1.0 +2.713780918727915,2.71,a-cure-i1,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.9, 1.4, 82.2, 0.3, 0.1, 15.1, 51.4, 48.3, 0.2,84.9,14.4 +2.1772151898734173,2.18,a-cure-i1,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.3, 17.4, 5.7, 36.7, 3.2, 0.0, 36.8, 49.2, 50.3, 0.6,63.2,8.6 +2.269503546099291,2.27,a-cure-i1,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.2, 1.2, 8.5, 26.4, 5.7, 0.1, 57.7, 47.5, 52.5, 0.0,42.3,6.0 +1,1,a-cure-i1,2021-22,Greenfield - Discovery School at Four Corners,01140025, 0.0, 1.3, 0.4, 8.9, 1.7, 0.0, 87.8, 40.1, 59.9, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Greenfield - Federal Street School,01140010, 0.0, 2.5, 2.0, 23.2, 3.9, 0.0, 68.5, 52.2, 47.8, 0.0,31.5,0.0 +3.821656050955413,3.82,a-cure-i1,2021-22,Greenfield - Greenfield High,01140505, 0.4, 2.0, 2.9, 19.8, 6.3, 0.0, 68.6, 49.9, 49.9, 0.2,31.400000000000006,7.5 +4.2384105960264895,4.24,a-cure-i1,2021-22,Greenfield - Greenfield Middle,01140305, 0.0, 0.8, 2.5, 22.7, 4.2, 0.0, 69.8, 49.3, 50.7, 0.0,30.200000000000003,8.0 +2.980392156862745,2.98,a-cure-i1,2021-22,Greenfield - Newton School,01140035, 0.0, 0.5, 3.3, 33.2, 3.8, 0.0, 59.2, 54.0, 46.0, 0.0,40.8,7.6 +1,1,a-cure-i1,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.2, 3.6, 18.1, 3.6, 0.0, 73.5, 43.4, 56.6, 0.0,26.5,0.0 +1,1,a-cure-i1,2021-22,Groton-Dunstable - Boutwell School,06730001, 1.4, 7.2, 0.0, 4.3, 4.3, 0.0, 82.6, 44.9, 55.1, 0.0,17.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Groton-Dunstable - Florence Roche School,06730010, 0.4, 6.4, 1.7, 4.2, 6.0, 0.0, 81.3, 48.4, 51.6, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.1, 7.4, 1.0, 3.0, 2.3, 0.3, 85.9, 48.2, 51.1, 0.7,14.099999999999994,4.4 +1,1,a-cure-i1,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.1, 7.3, 1.8, 2.9, 3.2, 0.1, 84.5, 47.7, 52.3, 0.0,15.5,1.6 +1,1,a-cure-i1,2021-22,Groton-Dunstable - Swallow/Union School,06730005, 0.3, 7.5, 1.3, 7.1, 3.6, 0.0, 80.2, 46.8, 53.2, 0.0,19.799999999999997,0.0 +3.5481171548117145,3.55,a-cure-i1,2021-22,Hadley - Hadley Elementary,01170015, 0.4, 4.4, 4.4, 11.4, 2.6, 0.7, 76.1, 43.8, 55.9, 0.4,23.900000000000006,5.3 +6.6991869918699205,5,a-cure-i1,2021-22,Hadley - Hopkins Academy,01170505, 0.4, 4.2, 5.1, 8.5, 2.5, 3.8, 75.4, 47.9, 51.3, 0.8,24.599999999999994,10.3 +1,1,a-cure-i1,2021-22,Halifax - Halifax Elementary,01180005, 0.4, 0.0, 1.8, 5.0, 2.0, 0.0, 91.0, 49.3, 50.7, 0.0,9.0,0.0 +1,1,a-cure-i1,2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 5.6, 0.8, 10.4, 1.2, 0.0, 82.0, 43.6, 56.4, 0.0,18.0,0.0 +1,1,a-cure-i1,2021-22,Hamilton-Wenham - Cutler School,06750010, 0.0, 2.4, 0.0, 2.0, 4.0, 0.0, 91.7, 54.2, 45.8, 0.0,8.299999999999997,0.0 +11.809523809523814,5,a-cure-i1,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 4.5, 0.6, 5.1, 2.4, 0.0, 87.4, 53.9, 46.1, 0.0,12.599999999999994,9.299999999999999 +10.24,5,a-cure-i1,2021-22,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.9, 0.3, 2.6, 3.4, 0.8, 90.0, 52.0, 48.0, 0.0,10.0,6.4 +11.51079136690647,5,a-cure-i1,2021-22,Hamilton-Wenham - Winthrop School,06750015, 0.0, 5.8, 1.0, 4.5, 2.6, 0.0, 86.1, 51.3, 48.7, 0.0,13.900000000000006,10.0 +1.8535286284953398,1.85,a-cure-i1,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 1.3, 2.9, 28.9, 39.2, 2.9, 0.0, 24.9, 48.6, 51.3, 0.2,75.1,8.700000000000001 +3.633802816901408,3.63,a-cure-i1,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.3, 1.4, 16.3, 36.1, 2.7, 0.0, 43.2, 46.5, 53.5, 0.0,56.8,12.899999999999999 +1,1,a-cure-i1,2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 2.1, 12.5, 3.0, 0.0, 82.4, 47.0, 53.0, 0.0,17.599999999999994,0.0 +10.526315789473681,5,a-cure-i1,2021-22,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 1.2, 1.8, 6.9, 5.4, 0.0, 84.8, 49.9, 50.1, 0.0,15.200000000000003,10.0 +1,1,a-cure-i1,2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.5, 3.1, 3.6, 8.8, 3.5, 0.0, 80.4, 51.8, 48.1, 0.1,19.599999999999994,1.6 +1,1,a-cure-i1,2021-22,Hampden-Wilbraham - Soule Road,06800030, 0.0, 2.9, 2.9, 4.1, 3.8, 0.0, 86.3, 49.8, 50.2, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 1.6, 2.3, 8.9, 4.3, 0.7, 82.3, 46.9, 53.1, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 1.9, 2.2, 9.8, 3.1, 0.0, 83.0, 47.6, 52.2, 0.2,17.0,0.0 +1,1,a-cure-i1,2021-22,Hampshire - Hampshire Regional High,06830505, 0.3, 1.2, 0.3, 4.2, 3.2, 0.0, 90.8, 54.6, 45.1, 0.3,9.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Hancock - Hancock Elementary,01210005, 0.0, 3.5, 3.5, 1.8, 0.0, 0.0, 91.2, 52.6, 47.4, 0.0,8.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Hanover - Cedar Elementary,01220004, 0.2, 1.7, 1.3, 3.4, 1.3, 0.0, 92.2, 50.3, 49.7, 0.0,7.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Hanover - Center Elementary,01220005, 0.0, 1.5, 0.7, 3.3, 1.1, 0.0, 93.5, 48.0, 51.8, 0.2,6.5,3.3 +1,1,a-cure-i1,2021-22,Hanover - Hanover High,01220505, 0.0, 2.8, 1.6, 1.3, 0.7, 0.0, 93.7, 47.1, 52.9, 0.0,6.299999999999997,3.6 +1,1,a-cure-i1,2021-22,Hanover - Hanover Middle,01220305, 0.0, 2.1, 1.5, 2.9, 0.9, 0.0, 92.6, 48.1, 51.9, 0.0,7.400000000000006,1.9 +6.899082568807341,5,a-cure-i1,2021-22,Harvard - Bromfield,01250505, 0.0, 12.2, 2.3, 3.7, 3.7, 0.0, 78.2, 52.5, 47.3, 0.2,21.799999999999997,9.4 +1,1,a-cure-i1,2021-22,Harvard - Hildreth Elementary School,01250005, 0.0, 12.2, 2.7, 5.1, 6.6, 0.0, 73.5, 46.5, 53.5, 0.0,26.5,3.2 +1,1,a-cure-i1,2021-22,Hatfield - Hatfield Elementary,01270005, 0.0, 0.9, 0.5, 3.2, 2.8, 0.0, 92.6, 50.0, 49.5, 0.5,7.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Hatfield - Smith Academy,01270505, 0.0, 1.7, 0.6, 4.6, 2.9, 0.0, 90.3, 48.6, 50.3, 1.1,9.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 3.7, 0.0, 14.8, 29.6, 3.7, 0.0, 48.1, 25.9, 74.1, 0.0,51.9,0.0 +1.7971014492753623,1.8,a-cure-i1,2021-22,Haverhill - Bradford Elementary,01280008, 0.0, 1.6, 4.4, 46.8, 2.4, 0.0, 44.8, 45.8, 54.2, 0.0,55.2,6.2 +1,1,a-cure-i1,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 0.1, 2.2, 5.4, 26.3, 2.8, 0.0, 63.3, 48.4, 51.6, 0.0,36.7,2.0 +1,1,a-cure-i1,2021-22,Haverhill - Consentino Middle School,01280100, 0.1, 2.2, 4.8, 52.6, 3.0, 0.0, 37.3, 48.1, 51.9, 0.0,62.7,2.4 +1,1,a-cure-i1,2021-22,Haverhill - Crowell,01280515, 0.0, 0.0, 10.5, 68.4, 0.0, 0.0, 21.1, 47.4, 52.6, 0.0,78.9,0.0 +1.636963696369637,1.64,a-cure-i1,2021-22,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.7, 4.5, 52.2, 2.2, 0.0, 39.4, 46.9, 53.1, 0.0,60.6,6.2 +1,1,a-cure-i1,2021-22,Haverhill - Golden Hill,01280026, 0.4, 1.4, 4.1, 45.0, 2.2, 0.0, 46.8, 49.9, 50.1, 0.0,53.2,0.0 +3.558320373250389,3.56,a-cure-i1,2021-22,Haverhill - Greenleaf Academy,01280033, 3.6, 0.0, 3.6, 57.1, 0.0, 0.0, 35.7, 25.0, 75.0, 0.0,64.3,14.3 +5.67741935483871,5,a-cure-i1,2021-22,Haverhill - Haverhill High,01280505, 0.3, 1.8, 5.2, 37.4, 1.6, 0.3, 53.5, 47.6, 52.2, 0.2,46.5,16.5 +2.2172284644194757,2.22,a-cure-i1,2021-22,Haverhill - John G Whittier,01280085, 0.6, 0.8, 5.6, 43.7, 2.7, 0.2, 46.6, 50.2, 49.6, 0.2,53.4,7.4 +1,1,a-cure-i1,2021-22,Haverhill - Moody,01280045, 0.0, 2.0, 10.9, 40.8, 0.7, 0.0, 45.6, 40.8, 59.2, 0.0,54.4,0.0 +5.947955390334573,5,a-cure-i1,2021-22,Haverhill - Moody Preschool Extension,01280001, 0.0, 3.8, 6.4, 43.6, 0.0, 0.0, 46.2, 30.8, 69.2, 0.0,53.8,20.0 +1,1,a-cure-i1,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 0.2, 1.0, 7.1, 48.7, 3.3, 0.0, 39.5, 46.9, 53.1, 0.0,60.5,0.0 +1,1,a-cure-i1,2021-22,Haverhill - Silver Hill Elementary School,01280067, 0.2, 3.7, 6.6, 45.5, 3.3, 0.0, 40.8, 50.5, 49.5, 0.0,59.2,3.4 +1,1,a-cure-i1,2021-22,Haverhill - Tilton,01280075, 0.3, 0.3, 5.0, 55.5, 2.7, 0.0, 36.3, 46.6, 53.4, 0.0,63.7,0.0 +1,1,a-cure-i1,2021-22,Haverhill - Tilton Upper Middle School,01280105, 0.0, 1.2, 4.9, 63.0, 2.5, 0.0, 28.4, 49.4, 50.6, 0.0,71.6,0.0 +1,1,a-cure-i1,2021-22,Haverhill - Walnut Square,01280080, 0.0, 0.8, 1.7, 34.5, 2.5, 0.0, 60.5, 52.9, 47.1, 0.0,39.5,0.0 +1,1,a-cure-i1,2021-22,Hawlemont - Hawlemont Regional,06850005, 0.8, 0.0, 0.0, 5.7, 3.3, 0.0, 90.2, 61.0, 39.0, 0.0,9.799999999999997,0.0 +14.02028397565923,5,a-cure-i1,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 85.5, 11.6, 0.7, 0.7, 1.4, 54.3, 45.7, 0.0,98.6,86.4 +2.058252427184466,2.06,a-cure-i1,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 5.2, 31.4, 4.6, 0.0, 58.8, 49.0, 51.0, 0.0,41.2,5.3 +8.533333333333333,5,a-cure-i1,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.8, 0.0, 2.3, 12.9, 0.0, 82.0, 45.2, 53.9, 0.9,18.0,9.6 +1,1,a-cure-i1,2021-22,Hingham - East Elementary School,01310005, 0.0, 1.8, 1.6, 2.0, 2.0, 0.4, 92.0, 47.6, 52.4, 0.0,8.0,3.3 +1,1,a-cure-i1,2021-22,Hingham - Hingham High,01310505, 0.1, 3.5, 1.8, 3.7, 3.3, 0.0, 87.6, 47.4, 52.2, 0.4,12.400000000000006,1.2 +8.133333333333333,5,a-cure-i1,2021-22,Hingham - Hingham Middle School,01310410, 0.0, 3.0, 1.8, 4.4, 2.7, 0.0, 88.0, 49.3, 50.7, 0.0,12.0,6.1 +1,1,a-cure-i1,2021-22,Hingham - Plymouth River,01310019, 0.3, 2.1, 4.8, 5.4, 2.1, 0.0, 85.3, 49.6, 50.4, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Hingham - South Elementary,01310020, 0.0, 5.8, 3.8, 2.2, 2.0, 0.0, 86.2, 51.2, 48.8, 0.0,13.799999999999997,3.6 +1,1,a-cure-i1,2021-22,Hingham - Wm L Foster Elementary,01310010, 0.0, 1.7, 1.0, 4.1, 7.6, 0.2, 85.4, 47.5, 52.5, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Holbrook - Holbrook Middle High School,01330505, 0.5, 7.4, 25.5, 13.4, 8.3, 0.0, 44.9, 49.2, 50.5, 0.3,55.1,0.0 +1,1,a-cure-i1,2021-22,Holbrook - John F Kennedy,01330018, 0.3, 4.9, 20.2, 16.9, 8.3, 0.0, 49.4, 48.4, 51.6, 0.0,50.6,0.0 +1,1,a-cure-i1,2021-22,Holland - Holland Elementary,01350005, 0.4, 1.8, 0.9, 5.8, 1.8, 0.0, 89.4, 46.5, 53.5, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Holliston - Holliston High,01360505, 0.4, 8.6, 0.9, 6.4, 2.7, 0.0, 81.0, 50.1, 49.6, 0.2,19.0,1.7 +1,1,a-cure-i1,2021-22,Holliston - Miller School,01360007, 0.2, 9.0, 0.7, 5.6, 3.9, 0.3, 80.3, 46.3, 53.4, 0.3,19.700000000000003,3.8 +1,1,a-cure-i1,2021-22,Holliston - Placentino Elementary,01360010, 0.6, 13.3, 2.2, 2.1, 1.4, 0.7, 79.6, 45.1, 54.6, 0.3,20.400000000000006,2.3 +1,1,a-cure-i1,2021-22,Holliston - Robert H. Adams Middle School,01360305, 0.6, 10.2, 1.5, 6.1, 3.4, 0.1, 78.1, 48.7, 51.2, 0.1,21.900000000000006,2.6 +7.382978723404255,5,a-cure-i1,2021-22,Holyoke - E N White Elementary,01370045, 0.0, 0.5, 3.4, 68.4, 2.9, 0.0, 24.8, 50.4, 49.6, 0.0,75.2,34.7 +3.0288770053475935,3.03,a-cure-i1,2021-22,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.5, 4.8, 86.6, 1.6, 0.0, 6.5, 49.5, 50.5, 0.0,93.5,17.7 +5.707602339181286,5,a-cure-i1,2021-22,Holyoke - Holyoke High,01370505, 0.1, 0.5, 3.4, 80.2, 1.1, 0.1, 14.5, 47.3, 52.3, 0.3,85.5,30.5 +2.675893886966551,2.68,a-cure-i1,2021-22,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 3.5, 81.3, 2.0, 0.0, 13.3, 40.6, 59.4, 0.0,86.7,14.5 +10.144853875476493,5,a-cure-i1,2021-22,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 1.7, 74.9, 2.0, 0.0, 21.3, 54.2, 45.8, 0.0,78.7,49.9 +3.393939393939393,3.39,a-cure-i1,2021-22,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 3.6, 91.4, 0.7, 0.0, 4.3, 50.5, 49.5, 0.0,95.7,20.299999999999997 +3.111602209944752,3.11,a-cure-i1,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 1.1, 2.0, 85.8, 1.6, 0.0, 9.5, 46.6, 53.4, 0.0,90.5,17.6 +2.139402560455192,2.14,a-cure-i1,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 2.0, 2.6, 62.5, 3.2, 0.0, 29.7, 45.3, 54.7, 0.0,70.3,9.4 +4.338983050847458,4.34,a-cure-i1,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.5, 4.3, 82.1, 1.3, 0.3, 11.5, 45.0, 55.0, 0.0,88.5,24.0 +1.950413223140496,1.95,a-cure-i1,2021-22,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 5.3, 90.8, 0.7, 0.0, 3.2, 52.3, 47.7, 0.0,96.8,11.8 +8.15494393476045,5,a-cure-i1,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.7, 4.1, 92.6, 0.7, 0.0, 1.9, 48.2, 51.8, 0.0,98.1,50.0 +6.167209554831705,5,a-cure-i1,2021-22,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 6.9, 81.9, 3.2, 0.0, 7.9, 48.6, 51.4, 0.0,92.1,35.5 +4.937048503611972,4.94,a-cure-i1,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.9, 1.1, 93.4, 1.5, 0.0, 3.1, 53.6, 46.4, 0.0,96.9,29.900000000000002 +1,1,a-cure-i1,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.3, 0.8, 1.7, 3.9, 3.1, 0.3, 90.0, 46.9, 53.1, 0.0,10.0,0.0 +1,1,a-cure-i1,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.6, 0.0, 4.7, 2.4, 2.1, 0.0, 90.3, 48.8, 50.9, 0.3,9.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.3, 3.2, 3.2, 2.3, 0.0, 90.9, 50.0, 50.0, 0.0,9.099999999999994,0.0 +5.057471264367814,5,a-cure-i1,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0.2, 2.8, 1.1, 11.3, 1.7, 0.4, 82.6, 48.8, 50.7, 0.4,17.400000000000006,5.5 +1,1,a-cure-i1,2021-22,Hopedale - Memorial,01380010, 0.2, 1.5, 0.7, 12.2, 6.0, 0.0, 79.4, 47.2, 52.8, 0.0,20.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Hopedale - Park Street School,01380003, 0.0, 0.0, 1.1, 6.4, 9.6, 0.0, 83.0, 47.9, 52.1, 0.0,17.0,0.0 +2.018691588785047,2.02,a-cure-i1,2021-22,Hopkinton - Elmwood,01390010, 0.2, 31.7, 0.5, 4.0, 6.4, 0.0, 57.2, 49.4, 50.6, 0.0,42.8,5.4 +2.206896551724138,2.21,a-cure-i1,2021-22,Hopkinton - Hopkins Elementary School,01390015, 0.2, 31.7, 0.8, 4.4, 3.4, 0.0, 59.4, 49.4, 50.6, 0.0,40.6,5.6 +1,1,a-cure-i1,2021-22,Hopkinton - Hopkinton High,01390505, 0.4, 18.9, 0.9, 4.2, 3.5, 0.0, 72.1, 50.2, 49.6, 0.2,27.900000000000006,3.7 +1,1,a-cure-i1,2021-22,Hopkinton - Hopkinton Middle School,01390305, 0.4, 25.4, 0.8, 3.6, 4.6, 0.0, 65.3, 49.3, 50.7, 0.0,34.7,4.6 +1,1,a-cure-i1,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 40.5, 1.3, 2.5, 8.9, 0.0, 46.8, 49.4, 50.6, 0.0,53.2,0.0 +1.971563981042654,1.97,a-cure-i1,2021-22,Hopkinton - Marathon Elementary School,01390005, 0.4, 30.5, 0.4, 5.3, 5.7, 0.0, 57.8, 44.4, 55.4, 0.2,42.2,5.2 +1,1,a-cure-i1,2021-22,Hudson - C A Farley,01410030, 0.0, 2.0, 2.5, 19.7, 2.7, 0.0, 73.1, 50.1, 49.9, 0.0,26.900000000000006,3.8 +3.6190476190476186,3.62,a-cure-i1,2021-22,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.1, 3.3, 17.4, 3.5, 0.0, 74.8, 52.3, 47.5, 0.2,25.200000000000003,5.7 +1,1,a-cure-i1,2021-22,Hudson - Forest Avenue Elementary,01410015, 0.6, 1.6, 3.1, 14.2, 2.8, 0.0, 77.7, 49.7, 50.3, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Hudson - Hudson High,01410505, 0.1, 1.6, 2.6, 12.8, 2.8, 0.0, 80.1, 53.5, 46.2, 0.4,19.900000000000006,3.0 +1,1,a-cure-i1,2021-22,Hudson - Mulready Elementary,01410007, 0.0, 1.7, 2.1, 14.5, 3.0, 0.0, 78.6, 48.7, 51.3, 0.0,21.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Hull - Hull High,01420505, 0.0, 1.2, 1.2, 3.6, 1.2, 0.0, 92.7, 44.8, 55.2, 0.0,7.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Hull - Lillian M Jacobs,01420015, 0.3, 0.8, 2.1, 3.7, 3.2, 0.0, 89.9, 46.8, 53.2, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Hull - Memorial Middle,01420305, 0.6, 2.8, 0.6, 3.4, 2.8, 0.0, 89.9, 47.5, 52.5, 0.0,10.099999999999994,0.0 +4.2823529411764705,4.28,a-cure-i1,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.4, 8.9, 7.7, 11.0, 6.1, 0.0, 66.0, 52.1, 47.4, 0.5,34.0,9.1 +1,1,a-cure-i1,2021-22,Ipswich - Ipswich High,01440505, 0.2, 1.5, 1.5, 6.3, 4.0, 0.0, 86.6, 52.7, 47.2, 0.2,13.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Ipswich - Ipswich Middle School,01440305, 0.0, 1.9, 1.1, 7.5, 3.6, 0.0, 85.8, 50.3, 48.9, 0.8,14.200000000000003,3.3 +1,1,a-cure-i1,2021-22,Ipswich - Paul F Doyon Memorial,01440007, 0.6, 0.9, 0.3, 6.3, 2.6, 0.0, 89.4, 50.9, 49.1, 0.0,10.599999999999994,3.4 +1,1,a-cure-i1,2021-22,Ipswich - Winthrop,01440015, 0.0, 0.8, 0.5, 10.2, 5.6, 0.0, 82.9, 49.7, 50.3, 0.0,17.099999999999994,3.2 +1,1,a-cure-i1,2021-22,King Philip - King Philip Middle School,06900510, 0.3, 2.7, 1.7, 5.6, 4.1, 0.0, 85.7, 47.3, 52.4, 0.3,14.299999999999997,2.1 +1,1,a-cure-i1,2021-22,King Philip - King Philip Regional High,06900505, 0.2, 3.2, 2.7, 4.2, 2.4, 0.0, 87.3, 50.2, 49.7, 0.1,12.700000000000003,3.5999999999999996 +1,1,a-cure-i1,2021-22,Kingston - Kingston Elementary,01450005, 0.2, 0.9, 0.7, 4.6, 0.9, 0.2, 92.6, 49.5, 50.5, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Kingston - Kingston Intermediate,01450020, 0.3, 0.3, 0.3, 2.7, 1.2, 0.0, 95.1, 48.8, 51.2, 0.0,4.900000000000006,0.0 +11.634904714142424,5,a-cure-i1,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.5, 0.0, 63.8, 33.5, 1.7, 0.2, 0.3, 48.2, 51.8, 0.0,99.7,72.49999999999999 +8.888888888888888,5,a-cure-i1,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.2, 3.3, 17.5, 70.9, 2.5, 0.1, 5.5, 50.0, 49.9, 0.1,94.5,52.49999999999999 +1.2879256965944272,1.29,a-cure-i1,2021-22,Lawrence - Alexander B Bruce,01490015, 0.0, 1.6, 1.3, 93.6, 0.4, 0.0, 3.1, 49.0, 50.8, 0.2,96.9,7.8 +1.641025641025641,1.64,a-cure-i1,2021-22,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 1.2, 96.1, 0.0, 0.2, 2.5, 49.1, 49.8, 1.1,97.5,10.0 +2.195121951219512,2.2,a-cure-i1,2021-22,Lawrence - Arlington Middle School,01490017, 0.2, 0.0, 0.5, 97.3, 0.4, 0.0, 1.6, 49.4, 50.4, 0.2,98.4,13.5 +1.8385093167701865,1.84,a-cure-i1,2021-22,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 1.5, 94.8, 0.3, 0.0, 3.4, 47.3, 52.4, 0.3,96.6,11.1 +1,1,a-cure-i1,2021-22,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.1, 0.9, 93.8, 0.4, 0.0, 3.8, 49.7, 50.1, 0.2,96.2,4.9 +1,1,a-cure-i1,2021-22,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.5, 97.7, 0.0, 0.0, 1.8, 45.5, 54.5, 0.0,98.2,4.2 +2.740899357601713,2.74,a-cure-i1,2021-22,Lawrence - Frost Middle School,01490525, 0.0, 1.5, 1.9, 88.8, 1.1, 0.0, 6.6, 49.8, 50.2, 0.0,93.4,16.0 +1,1,a-cure-i1,2021-22,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.1, 1.7, 94.7, 0.0, 0.0, 2.5, 46.8, 53.2, 0.0,97.5,3.6 +2.5801217038539557,2.58,a-cure-i1,2021-22,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 2.4, 94.6, 0.6, 0.0, 1.4, 45.4, 54.6, 0.0,98.6,15.9 +4.390852390852391,4.39,a-cure-i1,2021-22,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 95.7, 0.5, 0.0, 3.8, 33.2, 66.8, 0.0,96.2,26.400000000000002 +4.466257668711656,4.47,a-cure-i1,2021-22,Lawrence - James F Hennessey,01490020, 0.0, 1.0, 1.9, 94.2, 0.6, 0.0, 2.2, 46.2, 53.8, 0.0,97.8,27.3 +0.9817007534983854,1,a-cure-i1,2021-22,Lawrence - John Breen School,01490003, 0.0, 0.8, 2.4, 89.3, 0.4, 0.0, 7.1, 49.6, 50.4, 0.0,92.9,5.7 +0.9124236252545824,1,a-cure-i1,2021-22,Lawrence - John K Tarbox,01490075, 0.0, 0.4, 1.1, 96.4, 0.4, 0.0, 1.8, 43.8, 56.2, 0.0,98.2,5.6 +3.2262026612077785,3.23,a-cure-i1,2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.5, 94.0, 2.3, 0.0, 2.3, 54.9, 45.1, 0.0,97.7,19.7 +2.74051282051282,2.74,a-cure-i1,2021-22,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 3.1, 2.5, 90.7, 0.6, 0.6, 2.5, 44.4, 55.6, 0.0,97.5,16.7 +4.993839835728952,4.99,a-cure-i1,2021-22,Lawrence - Lawrence High School,01490515, 0.0, 1.5, 1.5, 93.9, 0.4, 0.0, 2.6, 47.9, 51.9, 0.3,97.4,30.4 +4.711656441717792,4.71,a-cure-i1,2021-22,Lawrence - Oliver Partnership School,01490048, 0.0, 0.2, 1.1, 96.3, 0.2, 0.0, 2.2, 52.1, 47.9, 0.0,97.8,28.8 +2.686131386861314,2.69,a-cure-i1,2021-22,Lawrence - Parthum Middle School,01490027, 0.0, 0.5, 0.7, 94.3, 0.4, 0.0, 4.1, 47.4, 52.6, 0.0,95.9,16.1 +1.9364102564102565,1.94,a-cure-i1,2021-22,Lawrence - RISE Academy,01490615, 0.0, 0.0, 1.3, 96.2, 0.0, 0.0, 2.5, 16.5, 83.5, 0.0,97.5,11.8 +2.271077908217716,2.27,a-cure-i1,2021-22,Lawrence - Robert Frost,01490018, 0.0, 3.3, 2.6, 86.5, 1.3, 0.0, 6.3, 46.8, 53.0, 0.2,93.7,13.3 +2.961093585699264,2.96,a-cure-i1,2021-22,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 1.2, 1.2, 91.4, 1.2, 0.0, 4.9, 39.9, 60.1, 0.0,95.1,17.6 +5.5064935064935066,5,a-cure-i1,2021-22,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 2.9, 88.6, 1.0, 0.0, 7.6, 14.3, 85.7, 0.0,92.4,31.8 +0.9636552440290758,1,a-cure-i1,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 2.6, 2.0, 90.8, 0.9, 0.0, 3.7, 48.0, 51.6, 0.4,96.3,5.8 +5.028095733610822,5,a-cure-i1,2021-22,Lawrence - Spark Academy,01490085, 0.0, 0.7, 0.9, 94.5, 0.0, 0.0, 3.9, 45.0, 55.0, 0.0,96.1,30.2 +4.7967145790554415,4.8,a-cure-i1,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.3, 97.1, 0.0, 0.0, 2.6, 48.8, 51.2, 0.0,97.4,29.2 +3.111566018423746,3.11,a-cure-i1,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 1.0, 1.0, 95.8, 0.0, 0.0, 2.3, 44.4, 55.0, 0.6,97.7,19.0 +2.0988900100908174,2.1,a-cure-i1,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.3, 98.7, 0.1, 0.0, 0.9, 55.4, 44.6, 0.0,99.1,13.0 +1.8382978723404257,1.84,a-cure-i1,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.6, 46.8, 44.9, 1.8, 0.0, 6.0, 51.4, 48.6, 0.0,94.0,10.8 +1,1,a-cure-i1,2021-22,Lee - Lee Elementary,01500025, 0.3, 2.1, 1.2, 7.2, 1.5, 0.0, 87.7, 48.8, 51.2, 0.0,12.299999999999997,2.8 +1,1,a-cure-i1,2021-22,Lee - Lee Middle/High School,01500505, 0.0, 4.0, 0.6, 10.1, 3.7, 0.0, 81.6, 46.9, 53.1, 0.0,18.400000000000006,2.8 +1,1,a-cure-i1,2021-22,Leicester - Leicester Elementary,01510005, 0.0, 3.0, 5.8, 17.3, 3.4, 0.0, 70.5, 50.4, 49.6, 0.0,29.5,0.0 +6.412955465587043,5,a-cure-i1,2021-22,Leicester - Leicester High,01510505, 0.0, 3.5, 5.5, 12.7, 3.0, 0.0, 75.3, 50.1, 49.9, 0.0,24.700000000000003,9.899999999999999 +1,1,a-cure-i1,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 10.9, 17.4, 2.2, 0.0, 69.6, 58.7, 41.3, 0.0,30.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Leicester - Leicester Middle,01510015, 0.0, 2.7, 5.6, 14.1, 2.9, 0.0, 74.8, 42.5, 57.5, 0.0,25.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Lenox - Lenox Memorial High,01520505, 0.0, 4.9, 0.5, 8.7, 3.5, 0.0, 82.4, 51.2, 48.8, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Lenox - Morris,01520015, 0.0, 5.1, 1.0, 7.8, 5.4, 0.7, 80.1, 48.6, 51.4, 0.0,19.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Leominster - Bennett,01530003, 0.0, 3.5, 16.5, 25.9, 4.7, 0.0, 49.4, 48.2, 51.8, 0.0,50.6,0.0 +1,1,a-cure-i1,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, 2.9, 8.5, 39.5, 3.2, 0.3, 45.5, 35.6, 64.4, 0.0,54.5,3.0 +1.988527724665392,1.99,a-cure-i1,2021-22,Leominster - Fall Brook,01530007, 0.0, 2.8, 10.3, 32.9, 6.2, 0.0, 47.7, 46.4, 53.6, 0.0,52.3,6.5 +1,1,a-cure-i1,2021-22,Leominster - Frances Drake School,01530010, 0.0, 3.9, 10.0, 45.7, 5.1, 0.0, 35.3, 47.1, 52.9, 0.0,64.7,0.0 +1,1,a-cure-i1,2021-22,Leominster - Johnny Appleseed,01530025, 0.2, 2.1, 10.0, 37.8, 4.2, 0.0, 45.7, 50.7, 49.3, 0.0,54.3,2.8 +7.477806788511749,5,a-cure-i1,2021-22,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 4.3, 29.8, 4.3, 0.0, 61.7, 48.9, 44.7, 6.4,38.3,17.9 +1.7582417582417582,1.76,a-cure-i1,2021-22,Leominster - Leominster High School,01530505, 0.2, 4.7, 8.8, 37.6, 3.3, 0.0, 45.4, 56.7, 43.1, 0.2,54.6,6.0 +1,1,a-cure-i1,2021-22,Leominster - Lincoln School,01530005, 0.0, 6.9, 13.8, 44.8, 10.3, 0.0, 24.1, 62.1, 37.9, 0.0,75.9,0.0 +1,1,a-cure-i1,2021-22,Leominster - Northwest,01530030, 0.0, 3.0, 6.8, 48.2, 4.7, 0.0, 37.3, 49.6, 50.4, 0.0,62.7,0.0 +1,1,a-cure-i1,2021-22,Leominster - Priest Street,01530040, 0.0, 3.3, 4.6, 55.0, 7.3, 0.0, 29.8, 50.3, 49.7, 0.0,70.2,0.0 +1.6470588235294117,1.65,a-cure-i1,2021-22,Leominster - Samoset School,01530045, 0.2, 2.9, 7.0, 40.1, 4.1, 0.0, 45.6, 46.4, 53.4, 0.2,54.4,5.6 +1,1,a-cure-i1,2021-22,Leominster - Sky View Middle School,01530320, 0.1, 2.9, 9.5, 40.5, 5.1, 0.0, 41.9, 50.6, 49.4, 0.0,58.1,3.0 +1,1,a-cure-i1,2021-22,Leverett - Leverett Elementary,01540005, 0.0, 2.1, 0.0, 2.1, 11.1, 0.0, 84.7, 48.6, 51.4, 0.0,15.299999999999997,0.0 +7.40587219343696,5,a-cure-i1,2021-22,Lexington - Bowman,01550008, 0.0, 38.4, 3.7, 5.1, 10.7, 0.0, 42.1, 50.2, 49.8, 0.0,57.9,26.8 +3.5238095238095237,3.52,a-cure-i1,2021-22,Lexington - Bridge,01550006, 0.0, 44.4, 6.1, 7.8, 8.9, 0.0, 32.8, 50.0, 50.0, 0.0,67.2,14.8 +1.8125000000000002,1.81,a-cure-i1,2021-22,Lexington - Fiske,01550015, 0.3, 31.6, 2.6, 5.8, 10.8, 0.0, 48.8, 43.3, 56.7, 0.0,51.2,5.800000000000001 +5.253731343283582,5,a-cure-i1,2021-22,Lexington - Harrington,01550030, 0.0, 42.3, 5.0, 5.2, 7.8, 0.0, 39.7, 51.8, 48.2, 0.0,60.3,19.8 +3.6274165202108968,3.63,a-cure-i1,2021-22,Lexington - Jonas Clarke Middle,01550305, 0.2, 42.3, 4.5, 3.5, 6.4, 0.0, 43.1, 46.6, 53.3, 0.1,56.9,12.900000000000002 +1,1,a-cure-i1,2021-22,Lexington - Joseph Estabrook,01550010, 0.0, 45.8, 3.8, 5.9, 10.3, 0.0, 34.2, 48.3, 51.7, 0.0,65.8,0.0 +1,1,a-cure-i1,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, 53.7, 4.5, 3.0, 6.0, 0.0, 32.8, 40.3, 59.7, 0.0,67.2,0.0 +3.6901893287435463,3.69,a-cure-i1,2021-22,Lexington - Lexington High,01550505, 0.0, 43.2, 3.9, 4.4, 6.6, 0.0, 41.9, 50.9, 48.8, 0.3,58.1,13.400000000000002 +6.275,5,a-cure-i1,2021-22,Lexington - Maria Hastings,01550035, 0.0, 45.9, 2.4, 6.1, 9.6, 0.0, 36.0, 48.0, 52.0, 0.0,64.0,25.1 +3.993254637436763,3.99,a-cure-i1,2021-22,Lexington - Wm Diamond Middle,01550310, 0.1, 43.5, 3.9, 3.6, 8.2, 0.0, 40.7, 48.2, 51.7, 0.1,59.3,14.8 +8.19551934826884,5,a-cure-i1,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.6, 0.9, 13.6, 80.7, 2.4, 0.0, 1.8, 52.7, 47.3, 0.0,98.2,50.300000000000004 +1,1,a-cure-i1,2021-22,Lincoln - Hanscom Middle,01570305, 0.4, 1.7, 9.6, 26.1, 7.8, 0.4, 53.9, 49.6, 50.4, 0.0,46.1,2.0 +1,1,a-cure-i1,2021-22,Lincoln - Hanscom Primary,01570006, 0.0, 2.1, 5.6, 21.5, 10.6, 0.7, 59.5, 48.9, 51.1, 0.0,40.5,4.1 +2.528301886792453,2.53,a-cure-i1,2021-22,Lincoln - Lincoln School,01570025, 0.0, 8.2, 9.6, 11.6, 13.0, 0.0, 57.6, 50.2, 49.6, 0.2,42.4,6.7 +7.174603174603173,5,a-cure-i1,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 4.6, 5.8, 5.7, 9.0, 0.1, 74.8, 50.4, 49.3, 0.3,25.200000000000003,11.299999999999999 +1,1,a-cure-i1,2021-22,Littleton - Littleton High School,01580505, 0.2, 9.5, 1.3, 4.4, 3.5, 0.0, 80.9, 50.1, 49.0, 0.9,19.099999999999994,3.2 +1,1,a-cure-i1,2021-22,Littleton - Littleton Middle School,01580305, 0.3, 15.6, 1.8, 2.8, 1.3, 0.3, 78.1, 50.5, 49.5, 0.0,21.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Littleton - Russell St Elementary,01580015, 0.0, 12.9, 0.5, 2.4, 1.8, 0.0, 82.4, 49.2, 50.8, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, 19.4, 0.5, 1.9, 1.0, 0.5, 76.8, 45.5, 54.5, 0.0,23.200000000000003,4.8 +1,1,a-cure-i1,2021-22,Longmeadow - Blueberry Hill,01590005, 0.0, 16.9, 1.5, 4.9, 7.6, 0.2, 68.9, 49.5, 50.5, 0.0,31.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Longmeadow - Center,01590010, 0.0, 3.6, 2.2, 9.0, 4.4, 0.0, 80.8, 48.5, 51.5, 0.0,19.200000000000003,3.3 +1,1,a-cure-i1,2021-22,Longmeadow - Glenbrook Middle,01590017, 0.0, 11.6, 5.9, 6.2, 3.9, 0.0, 72.4, 45.7, 54.3, 0.0,27.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Longmeadow - Longmeadow High,01590505, 0.0, 10.0, 2.4, 6.4, 3.2, 0.1, 77.9, 48.7, 50.9, 0.3,22.099999999999994,3.0999999999999996 +1,1,a-cure-i1,2021-22,Longmeadow - Williams Middle,01590305, 0.0, 11.6, 1.0, 7.1, 5.1, 0.6, 74.6, 49.2, 50.8, 0.0,25.400000000000006,4.4 +1,1,a-cure-i1,2021-22,Longmeadow - Wolf Swamp Road,01590025, 0.0, 8.7, 3.6, 9.2, 4.6, 0.0, 73.8, 45.6, 54.4, 0.0,26.200000000000003,0.0 +1.4085778781038376,1.41,a-cure-i1,2021-22,Lowell - Abraham Lincoln,01600020, 0.2, 46.9, 4.1, 32.0, 5.2, 0.2, 11.4, 49.8, 50.2, 0.0,88.6,7.8 +2.265306122448979,2.27,a-cure-i1,2021-22,Lowell - B.F. Butler Middle School,01600310, 0.0, 31.7, 6.8, 34.8, 5.2, 0.0, 21.6, 50.1, 49.9, 0.0,78.4,11.1 +1,1,a-cure-i1,2021-22,Lowell - Bartlett Community Partnership,01600090, 0.2, 38.1, 8.9, 37.4, 3.2, 0.0, 12.1, 52.4, 47.6, 0.0,87.9,4.9 +1,1,a-cure-i1,2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 1.2, 23.8, 11.9, 40.5, 6.0, 0.0, 16.7, 36.9, 63.1, 0.0,83.3,0.0 +2.0894117647058827,2.09,a-cure-i1,2021-22,Lowell - Charles W Morey,01600030, 0.0, 59.4, 4.2, 16.3, 5.1, 0.0, 15.0, 50.5, 49.5, 0.0,85.0,11.100000000000001 +1,1,a-cure-i1,2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 0.2, 30.5, 7.3, 43.0, 2.9, 0.0, 16.1, 48.1, 51.9, 0.0,83.9,0.0 +1.3186813186813187,1.32,a-cure-i1,2021-22,Lowell - Dr An Wang School,01600345, 0.0, 18.2, 9.8, 39.2, 5.6, 0.0, 27.2, 49.2, 50.8, 0.0,72.8,6.0 +1,1,a-cure-i1,2021-22,Lowell - Dr Gertrude Bailey,01600002, 0.0, 42.5, 4.4, 23.7, 5.0, 0.0, 24.3, 48.5, 51.5, 0.0,75.7,3.7 +1,1,a-cure-i1,2021-22,Lowell - Dr. Janice Adie Day School,01600605, 1.9, 15.4, 15.4, 25.0, 5.8, 0.0, 36.5, 23.1, 76.9, 0.0,63.5,0.0 +1.4267515923566878,1.43,a-cure-i1,2021-22,Lowell - Greenhalge,01600015, 0.0, 12.3, 12.9, 49.7, 3.7, 0.0, 21.5, 47.3, 52.7, 0.0,78.5,7.0 +5.305039787798408,5,a-cure-i1,2021-22,Lowell - Henry J Robinson Middle,01600330, 0.0, 11.3, 7.2, 54.6, 2.2, 0.0, 24.6, 52.1, 47.9, 0.0,75.4,25.0 +1.8501971090670173,1.85,a-cure-i1,2021-22,Lowell - James S Daley Middle School,01600315, 0.0, 49.3, 4.5, 16.9, 5.4, 0.0, 23.9, 45.9, 54.1, 0.0,76.1,8.8 +1.847041847041847,1.85,a-cure-i1,2021-22,Lowell - James Sullivan Middle School,01600340, 0.0, 13.8, 6.2, 44.9, 4.2, 0.2, 30.7, 48.8, 51.2, 0.0,69.3,8.0 +1,1,a-cure-i1,2021-22,Lowell - John J Shaughnessy,01600050, 0.0, 29.5, 6.1, 41.2, 2.8, 0.0, 20.4, 49.5, 50.5, 0.0,79.6,3.7 +1.5198973042362003,1.52,a-cure-i1,2021-22,Lowell - Joseph McAvinnue,01600010, 0.0, 15.3, 7.4, 50.2, 5.0, 0.0, 22.1, 48.0, 52.0, 0.0,77.9,7.4 +2.1538461538461537,2.15,a-cure-i1,2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 45.2, 4.5, 36.4, 2.3, 0.0, 11.6, 44.9, 55.1, 0.0,88.4,11.9 +1,1,a-cure-i1,2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 5.9, 47.1, 17.6, 0.0, 29.4, 17.6, 82.4, 0.0,70.6,0.0 +1,1,a-cure-i1,2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 2.6, 2.6, 59.0, 2.6, 0.0, 33.3, 43.6, 53.8, 2.6,66.7,0.0 +3.4501891551071875,3.45,a-cure-i1,2021-22,Lowell - Lowell High,01600505, 0.0, 29.4, 11.0, 34.9, 3.9, 0.0, 20.7, 47.0, 52.9, 0.1,79.3,17.099999999999998 +3.583098591549296,3.58,a-cure-i1,2021-22,Lowell - Moody Elementary,01600027, 0.4, 11.6, 6.2, 51.5, 1.2, 0.0, 29.0, 53.1, 46.5, 0.4,71.0,15.9 +1,1,a-cure-i1,2021-22,Lowell - Pawtucketville Memorial,01600036, 0.0, 24.0, 7.0, 30.8, 5.3, 0.0, 32.8, 49.1, 50.9, 0.0,67.2,4.5 +3.328467153284672,3.33,a-cure-i1,2021-22,Lowell - Peter W Reilly,01600040, 0.0, 10.3, 2.9, 36.4, 5.3, 0.0, 45.2, 50.9, 49.1, 0.0,54.8,11.4 +1.6228209191759113,1.62,a-cure-i1,2021-22,Lowell - Pyne Arts,01600018, 0.0, 14.1, 5.7, 39.5, 3.5, 0.2, 36.9, 43.9, 56.1, 0.0,63.1,6.4 +1,1,a-cure-i1,2021-22,Lowell - Rogers STEM Academy,01600005, 0.2, 19.8, 9.5, 45.7, 3.7, 0.0, 21.2, 46.4, 53.6, 0.0,78.8,4.6 +1.8060781476121563,1.81,a-cure-i1,2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 9.2, 5.8, 49.9, 4.0, 0.2, 30.9, 52.0, 48.0, 0.0,69.1,7.8 +1,1,a-cure-i1,2021-22,Lowell - The Career Academy,01600515, 0.0, 21.6, 6.2, 44.3, 7.2, 0.0, 20.6, 38.1, 61.9, 0.0,79.4,0.0 +1.1442424242424243,1.14,a-cure-i1,2021-22,Lowell - Washington,01600055, 0.4, 42.7, 7.3, 26.4, 5.3, 0.4, 17.5, 37.0, 63.0, 0.0,82.5,5.9 +4.65331928345627,4.65,a-cure-i1,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 16.8, 25.5, 48.9, 3.6, 0.0, 5.1, 50.5, 49.4, 0.1,94.9,27.6 +5.378151260504202,5,a-cure-i1,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 9.5, 1.4, 43.2, 5.4, 0.0, 40.5, 64.9, 32.4, 2.7,59.5,20.0 +1,1,a-cure-i1,2021-22,Ludlow - East Street Elementary School,01610010, 0.0, 1.3, 1.6, 16.6, 5.7, 0.0, 74.8, 43.6, 56.4, 0.0,25.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.8, 1.9, 16.3, 3.4, 0.0, 77.5, 48.6, 51.4, 0.0,22.5,2.2 +1,1,a-cure-i1,2021-22,Ludlow - Ludlow Senior High,01610505, 0.0, 0.5, 2.1, 8.3, 3.5, 0.1, 85.5, 49.7, 50.1, 0.2,14.5,4.2 +1,1,a-cure-i1,2021-22,Ludlow - Paul R Baird Middle,01610305, 0.2, 0.2, 2.3, 17.1, 3.6, 0.2, 76.5, 51.6, 48.4, 0.0,23.5,0.0 +1,1,a-cure-i1,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 40.0, 60.0, 0.0,0.0,0.0 +1,1,a-cure-i1,2021-22,Lunenburg - Lunenburg High,01620505, 0.7, 1.6, 1.3, 10.4, 2.2, 0.9, 82.9, 47.8, 52.0, 0.2,17.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Lunenburg - Lunenburg Middle School,01620305, 0.0, 2.5, 2.2, 9.7, 4.0, 0.5, 81.1, 49.3, 50.7, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.1, 2.1, 10.3, 4.7, 0.5, 81.3, 49.9, 50.1, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.4, 4.2, 7.8, 2.8, 0.3, 83.7, 50.1, 49.9, 0.0,16.299999999999997,0.0 +3.5729847494553377,3.57,a-cure-i1,2021-22,Lynn - A Drewicz Elementary,01630016, 0.0, 8.6, 4.7, 76.9, 1.5, 0.0, 8.2, 52.6, 47.4, 0.0,91.8,20.5 +1,1,a-cure-i1,2021-22,Lynn - Aborn,01630011, 1.3, 14.3, 7.1, 40.3, 7.6, 0.0, 29.4, 47.9, 52.1, 0.0,70.6,0.0 +2.4588364434687158,2.46,a-cure-i1,2021-22,Lynn - Breed Middle School,01630405, 0.1, 9.1, 7.4, 70.8, 3.8, 0.0, 8.9, 46.1, 53.8, 0.2,91.1,14.0 +1,1,a-cure-i1,2021-22,Lynn - Brickett Elementary,01630020, 0.3, 10.8, 9.2, 64.9, 4.1, 0.0, 10.8, 47.8, 52.2, 0.0,89.2,0.5 +1,1,a-cure-i1,2021-22,Lynn - Capt William G Shoemaker,01630090, 0.0, 7.1, 13.2, 33.8, 8.4, 0.0, 37.6, 38.9, 61.1, 0.0,62.4,0.0 +1.7652582159624413,1.77,a-cure-i1,2021-22,Lynn - Classical High,01630505, 0.4, 8.3, 7.5, 65.9, 3.2, 0.0, 14.8, 46.2, 53.7, 0.1,85.2,9.4 +2.4232365145228214,2.42,a-cure-i1,2021-22,Lynn - Cobbet Elementary,01630035, 0.0, 3.2, 8.3, 83.9, 1.0, 0.0, 3.6, 46.7, 53.3, 0.0,96.4,14.6 +2.1061946902654864,2.11,a-cure-i1,2021-22,Lynn - E J Harrington,01630045, 0.0, 5.5, 10.7, 72.2, 2.0, 0.0, 9.6, 46.9, 53.1, 0.0,90.4,11.9 +1,1,a-cure-i1,2021-22,Lynn - Edward A Sisson,01630095, 1.1, 11.3, 6.3, 51.6, 5.2, 0.0, 24.4, 48.9, 51.1, 0.0,75.6,4.0 +3.167095115681234,3.17,a-cure-i1,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 3.3, 7.8, 58.9, 7.8, 0.0, 22.2, 33.3, 65.6, 1.1,77.8,15.4 +2.00233918128655,2.0,a-cure-i1,2021-22,Lynn - Hood,01630055, 0.2, 8.9, 7.2, 67.8, 1.4, 0.0, 14.5, 47.7, 52.3, 0.0,85.5,10.700000000000001 +1.983050847457627,1.98,a-cure-i1,2021-22,Lynn - Ingalls,01630060, 0.6, 6.1, 8.3, 77.9, 1.5, 0.0, 5.6, 49.7, 50.3, 0.0,94.4,11.7 +1.2815076560659597,1.28,a-cure-i1,2021-22,Lynn - Julia F Callahan,01630030, 0.0, 8.0, 11.8, 61.5, 3.6, 0.0, 15.1, 45.1, 54.9, 0.0,84.9,6.8 +1,1,a-cure-i1,2021-22,Lynn - Lincoln-Thomson,01630070, 0.0, 13.9, 6.3, 54.3, 5.3, 0.0, 20.2, 46.2, 53.8, 0.0,79.8,3.3 +2.529989094874591,2.53,a-cure-i1,2021-22,Lynn - Lynn English High,01630510, 0.3, 7.5, 8.6, 72.7, 2.4, 0.0, 8.3, 47.6, 52.1, 0.3,91.7,14.5 +1.8986175115207375,1.9,a-cure-i1,2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 0.4, 5.2, 6.7, 71.7, 2.8, 0.0, 13.2, 46.5, 53.2, 0.3,86.8,10.3 +3.9689922480620154,3.97,a-cure-i1,2021-22,Lynn - Lynn Woods,01630075, 0.6, 8.3, 1.9, 37.6, 3.2, 0.0, 48.4, 50.3, 49.7, 0.0,51.6,12.8 +2.179775280898876,2.18,a-cure-i1,2021-22,Lynn - Pickering Middle,01630420, 1.1, 7.5, 5.8, 52.6, 4.2, 0.0, 28.8, 51.4, 48.6, 0.0,71.2,9.7 +1,1,a-cure-i1,2021-22,Lynn - Robert L Ford,01630050, 0.2, 5.8, 6.9, 79.6, 1.8, 0.0, 5.6, 50.8, 49.2, 0.0,94.4,0.0 +1,1,a-cure-i1,2021-22,Lynn - Sewell-Anderson,01630085, 0.4, 7.1, 6.7, 56.9, 4.6, 0.0, 24.4, 52.7, 47.3, 0.0,75.6,0.0 +1.9158576051779934,1.92,a-cure-i1,2021-22,Lynn - Thurgood Marshall Mid,01630305, 0.2, 6.3, 9.3, 73.8, 3.1, 0.1, 7.3, 47.6, 52.2, 0.2,92.7,11.1 +1,1,a-cure-i1,2021-22,Lynn - Tracy,01630100, 0.3, 4.5, 5.0, 83.5, 1.3, 0.0, 5.5, 47.5, 52.5, 0.0,94.5,0.0 +1.5814931650893798,1.58,a-cure-i1,2021-22,Lynn - Washington Elementary School,01630005, 0.0, 4.9, 12.7, 75.7, 1.7, 0.0, 4.9, 46.0, 54.0, 0.0,95.1,9.4 +1,1,a-cure-i1,2021-22,Lynn - William R Fallon,01630080, 0.0, 0.0, 20.0, 44.0, 16.0, 0.0, 20.0, 16.0, 84.0, 0.0,80.0,0.0 +1,1,a-cure-i1,2021-22,Lynn - Wm P Connery,01630040, 0.0, 8.7, 5.8, 78.6, 1.1, 0.0, 5.8, 56.1, 43.9, 0.0,94.2,2.8 +1,1,a-cure-i1,2021-22,Lynnfield - Huckleberry Hill,01640010, 0.0, 10.5, 3.2, 6.6, 6.4, 0.0, 73.3, 54.2, 45.8, 0.0,26.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Lynnfield - Lynnfield High,01640505, 0.0, 6.6, 1.4, 4.1, 1.6, 0.0, 86.3, 51.1, 48.8, 0.2,13.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Lynnfield - Lynnfield Middle School,01640405, 0.0, 7.5, 2.2, 7.5, 3.0, 0.0, 79.8, 47.8, 52.2, 0.0,20.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, 7.9, 0.0, 2.6, 2.6, 0.0, 86.8, 52.6, 47.4, 0.0,13.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Lynnfield - Summer Street,01640020, 0.0, 4.8, 2.3, 3.7, 3.0, 0.0, 86.1, 47.8, 52.2, 0.0,13.900000000000006,0.0 +3.9236417033773865,3.92,a-cure-i1,2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 63.7, 0.0, 2.2, 2.2, 0.0, 31.9, 47.3, 52.7, 0.0,68.1,16.7 +1,1,a-cure-i1,2021-22,Malden - Beebe,01650003, 0.5, 33.4, 14.7, 16.9, 4.1, 0.1, 30.4, 49.8, 50.2, 0.0,69.6,4.5 +1.2581913499344692,1.26,a-cure-i1,2021-22,Malden - Ferryway,01650013, 0.3, 20.6, 19.1, 33.0, 3.0, 0.2, 23.7, 48.3, 51.7, 0.0,76.3,6.0 +1,1,a-cure-i1,2021-22,Malden - Forestdale,01650027, 0.0, 11.7, 16.9, 25.6, 5.7, 0.0, 40.2, 45.4, 54.6, 0.0,59.8,0.0 +2.805049088359046,2.81,a-cure-i1,2021-22,Malden - Linden,01650047, 0.5, 24.8, 19.4, 22.0, 4.6, 0.0, 28.7, 43.7, 56.3, 0.0,71.3,12.499999999999998 +1,1,a-cure-i1,2021-22,Malden - Malden Early Learning Center,01650049, 0.0, 32.7, 17.1, 10.6, 3.2, 0.0, 36.4, 39.6, 60.4, 0.0,63.6,0.0 +3.124508519003932,3.12,a-cure-i1,2021-22,Malden - Malden High,01650505, 0.2, 23.2, 21.7, 28.1, 3.1, 0.0, 23.7, 50.7, 49.2, 0.1,76.3,14.9 +2.8271446862996163,2.83,a-cure-i1,2021-22,Malden - Salemwood,01650057, 0.3, 16.0, 22.7, 36.5, 2.6, 0.0, 21.9, 50.3, 49.7, 0.0,78.1,13.8 +1,1,a-cure-i1,2021-22,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.9, 3.7, 0.5, 0.0, 95.0, 56.2, 43.8, 0.0,5.0,0.0 +1,1,a-cure-i1,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.8, 0.0, 0.7, 1.1, 0.0, 96.4, 48.2, 51.6, 0.2,3.5999999999999943,2.3 +84.57142857142823,5,a-cure-i1,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.4, 1.1, 0.0, 0.0, 98.6, 47.0, 53.0, 0.0,1.4000000000000057,7.4 +1,1,a-cure-i1,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 1.7, 1.3, 1.7, 2.7, 0.0, 92.6, 52.0, 48.0, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Mansfield - Everett W Robinson,01670007, 0.3, 8.1, 3.8, 6.8, 4.5, 0.1, 76.5, 49.0, 50.8, 0.1,23.5,2.4 +1,1,a-cure-i1,2021-22,Mansfield - Harold L Qualters Middle,01670035, 0.0, 8.0, 5.0, 6.1, 4.5, 0.0, 76.4, 45.9, 54.1, 0.0,23.599999999999994,4.9 +1,1,a-cure-i1,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0.1, 8.9, 5.2, 5.6, 5.6, 0.0, 74.4, 48.1, 51.9, 0.0,25.599999999999994,2.5 +4.256157635467981,4.26,a-cure-i1,2021-22,Mansfield - Mansfield High,01670505, 0.1, 6.5, 4.5, 5.7, 3.5, 0.0, 79.7, 47.8, 52.0, 0.2,20.299999999999997,5.4 +1,1,a-cure-i1,2021-22,Mansfield - Roland Green School,01670003, 0.0, 6.6, 3.3, 7.7, 5.5, 0.0, 76.9, 46.2, 53.8, 0.0,23.099999999999994,0.0 +9.867595818815332,5,a-cure-i1,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 2.2, 0.9, 4.5, 16.1, 4.5, 0.4, 71.3, 40.4, 54.7, 4.9,28.700000000000003,17.700000000000003 +1,1,a-cure-i1,2021-22,Marblehead - Glover,01680020, 0.0, 1.6, 2.3, 5.3, 4.9, 0.0, 85.9, 45.7, 54.3, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 1.2, 1.2, 9.4, 5.0, 0.0, 83.2, 45.8, 54.2, 0.0,16.799999999999997,1.1 +6.705882352941178,5,a-cure-i1,2021-22,Marblehead - Marblehead High,01680505, 0.1, 1.2, 3.4, 6.7, 2.1, 0.1, 86.4, 49.0, 50.5, 0.5,13.599999999999994,5.699999999999999 +1,1,a-cure-i1,2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 2.3, 3.1, 6.9, 3.8, 0.0, 83.8, 48.2, 51.5, 0.3,16.200000000000003,2.1 +1,1,a-cure-i1,2021-22,Marblehead - Village School,01680016, 0.0, 1.1, 2.7, 8.2, 4.5, 0.0, 83.5, 46.7, 53.3, 0.0,16.5,0.0 +1,1,a-cure-i1,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 2.7, 4.0, 11.6, 4.4, 0.0, 77.3, 48.9, 51.1, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Marion - Sippican,01690005, 0.0, 1.5, 3.2, 3.4, 7.4, 0.0, 84.5, 46.6, 53.4, 0.0,15.5,0.0 +1.5375375375375377,1.54,a-cure-i1,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.2, 3.1, 58.6, 3.7, 0.0, 33.4, 48.7, 51.3, 0.0,66.6,6.4 +1,1,a-cure-i1,2021-22,Marlborough - Charles Jaworek School,01700030, 0.0, 0.3, 4.7, 44.2, 8.0, 0.0, 42.8, 50.4, 49.6, 0.0,57.2,0.0 +1,1,a-cure-i1,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, 3.6, 6.5, 23.7, 11.8, 0.0, 54.4, 40.8, 59.2, 0.0,45.6,0.0 +1,1,a-cure-i1,2021-22,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 5.0, 43.5, 5.0, 0.0, 46.4, 48.0, 52.0, 0.0,53.6,0.0 +1,1,a-cure-i1,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.4, 3.0, 53.6, 3.0, 0.0, 40.0, 46.6, 53.4, 0.0,60.0,4.0 +1,1,a-cure-i1,2021-22,Marlborough - Marlborough High,01700505, 0.0, 0.9, 3.4, 59.5, 3.3, 0.0, 32.9, 43.9, 56.1, 0.0,67.1,3.9000000000000004 +1,1,a-cure-i1,2021-22,Marlborough - Richer,01700025, 0.0, 0.6, 5.2, 62.6, 5.7, 0.0, 26.0, 46.0, 54.0, 0.0,74.0,2.8 +1,1,a-cure-i1,2021-22,Marshfield - Daniel Webster,01710015, 0.3, 2.1, 1.9, 3.2, 1.9, 1.6, 89.0, 46.5, 53.5, 0.0,11.0,0.0 +1,1,a-cure-i1,2021-22,Marshfield - Eames Way School,01710005, 0.5, 0.0, 0.0, 2.3, 1.4, 0.0, 95.9, 47.0, 53.0, 0.0,4.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Marshfield - Furnace Brook Middle,01710310, 0.2, 1.2, 0.7, 4.8, 2.2, 0.2, 90.5, 50.7, 49.3, 0.0,9.5,1.4 +1,1,a-cure-i1,2021-22,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.8, 0.3, 2.7, 0.8, 0.0, 95.4, 43.4, 56.6, 0.0,4.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Marshfield - Marshfield High,01710505, 0.2, 0.8, 0.7, 2.9, 1.7, 0.1, 93.7, 49.2, 50.8, 0.0,6.299999999999997,1.0 +1,1,a-cure-i1,2021-22,Marshfield - Martinson Elementary,01710025, 0.0, 1.2, 2.7, 5.5, 3.5, 0.0, 87.1, 44.2, 55.8, 0.0,12.900000000000006,3.5 +1,1,a-cure-i1,2021-22,Marshfield - South River,01710010, 0.0, 0.4, 0.4, 1.5, 4.2, 0.0, 93.5, 46.4, 53.6, 0.0,6.5,0.0 +1,1,a-cure-i1,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.7, 1.1, 5.4, 23.2, 5.4, 0.0, 63.2, 45.3, 54.7, 0.0,36.8,3.0 +6.779661016949154,5,a-cure-i1,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.6, 0.6, 0.6, 11.5, 10.3, 0.0, 76.4, 59.4, 40.6, 0.0,23.599999999999994,10.0 +7.238485158648926,5,a-cure-i1,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 1.1, 2.0, 28.3, 64.0, 2.3, 0.0, 2.3, 45.4, 54.6, 0.0,97.7,44.2 +1,1,a-cure-i1,2021-22,Masconomet - Masconomet Regional High School,07050505, 0.0, 3.9, 0.7, 4.0, 1.8, 0.2, 89.4, 53.2, 46.7, 0.1,10.599999999999994,1.3 +11.172413793103454,5,a-cure-i1,2021-22,Masconomet - Masconomet Regional Middle School,07050405, 0.2, 3.5, 0.5, 4.0, 3.2, 0.2, 88.4, 52.3, 47.7, 0.0,11.599999999999994,8.1 +1,1,a-cure-i1,2021-22,Mashpee - Kenneth Coombs School,01720005, 3.3, 1.1, 3.6, 8.8, 9.6, 0.3, 73.4, 49.7, 50.3, 0.0,26.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Mashpee - Mashpee High,01720505, 6.4, 2.7, 5.2, 3.4, 8.4, 0.2, 73.6, 47.7, 52.0, 0.2,26.400000000000006,2.0999999999999996 +7.230125523012551,5,a-cure-i1,2021-22,Mashpee - Mashpee Middle School,01720020, 5.7, 1.7, 2.6, 5.2, 8.7, 0.0, 76.1, 52.2, 47.8, 0.0,23.900000000000006,10.8 +1,1,a-cure-i1,2021-22,Mashpee - Quashnet School,01720035, 6.4, 0.9, 5.4, 7.6, 12.3, 0.0, 67.4, 47.5, 52.5, 0.0,32.599999999999994,0.0 +5.776876267748479,5,a-cure-i1,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.2, 0.7, 47.5, 47.6, 2.4, 0.2, 1.4, 51.1, 48.9, 0.0,98.6,35.6 +1,1,a-cure-i1,2021-22,Mattapoisett - Center,01730005, 0.4, 0.0, 0.4, 5.6, 4.0, 0.0, 89.6, 46.2, 53.8, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.6, 0.5, 6.4, 5.9, 0.0, 85.6, 50.3, 49.7, 0.0,14.400000000000006,0.0 +9.53191489361702,5,a-cure-i1,2021-22,Maynard - Fowler School,01740305, 0.0, 1.1, 2.4, 15.1, 4.8, 0.0, 76.5, 49.1, 50.2, 0.7,23.5,14.0 +9.253012048192769,5,a-cure-i1,2021-22,Maynard - Green Meadow,01740010, 0.2, 2.6, 2.6, 15.1, 4.3, 0.0, 75.1, 48.6, 51.4, 0.0,24.900000000000006,14.4 +4.713692946058092,4.71,a-cure-i1,2021-22,Maynard - Maynard High,01740505, 0.3, 2.3, 2.6, 15.4, 3.5, 0.0, 75.9, 49.2, 49.5, 1.3,24.099999999999994,7.1 +1,1,a-cure-i1,2021-22,Medfield - Dale Street,01750005, 0.0, 3.8, 1.8, 5.1, 4.3, 0.0, 84.9, 51.7, 48.3, 0.0,15.099999999999994,4.5 +1,1,a-cure-i1,2021-22,Medfield - Medfield Senior High,01750505, 0.3, 5.1, 0.8, 3.1, 4.3, 0.0, 86.5, 50.4, 49.6, 0.0,13.5,3.6 +1,1,a-cure-i1,2021-22,Medfield - Memorial School,01750003, 0.2, 3.5, 0.9, 3.3, 3.0, 0.0, 89.0, 50.4, 49.6, 0.0,11.0,1.4 +10.344827586206902,5,a-cure-i1,2021-22,Medfield - Ralph Wheelock School,01750007, 0.3, 4.0, 1.3, 2.5, 3.5, 0.0, 88.4, 50.0, 50.0, 0.0,11.599999999999994,7.5 +1,1,a-cure-i1,2021-22,Medfield - Thomas Blake Middle,01750305, 0.5, 4.4, 1.2, 4.9, 3.4, 0.0, 85.5, 47.3, 52.7, 0.0,14.5,3.8 +1,1,a-cure-i1,2021-22,Medford - Brooks School,01760130, 0.8, 5.0, 4.2, 7.1, 7.3, 0.0, 75.7, 48.1, 51.7, 0.2,24.299999999999997,3.1 +1,1,a-cure-i1,2021-22,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 25.0, 8.3, 8.3, 0.0, 58.3, 58.3, 41.7, 0.0,41.7,0.0 +2.1353383458646613,2.14,a-cure-i1,2021-22,Medford - John J McGlynn Elementary School,01760068, 0.5, 15.8, 12.9, 18.1, 5.9, 0.0, 46.8, 50.7, 49.3, 0.0,53.2,7.1 +3.2638580931263856,3.26,a-cure-i1,2021-22,Medford - John J. McGlynn Middle School,01760320, 0.2, 8.5, 14.9, 16.2, 5.0, 0.2, 54.9, 47.0, 52.5, 0.4,45.1,9.2 +1,1,a-cure-i1,2021-22,Medford - Madeleine Dugger Andrews,01760315, 0.9, 10.5, 11.8, 10.9, 5.2, 0.2, 60.5, 50.9, 49.1, 0.0,39.5,2.9 +1,1,a-cure-i1,2021-22,Medford - Medford High,01760505, 0.1, 9.9, 14.0, 14.4, 4.0, 0.0, 57.7, 46.1, 53.6, 0.3,42.3,4.4 +1,1,a-cure-i1,2021-22,Medford - Milton Fuller Roberts,01760150, 0.4, 10.4, 6.6, 13.3, 6.0, 0.0, 63.2, 47.0, 52.8, 0.2,36.8,0.0 +1,1,a-cure-i1,2021-22,Medford - Missituk Elementary School,01760140, 1.0, 5.6, 9.8, 23.0, 5.6, 0.2, 54.8, 47.7, 52.3, 0.0,45.2,3.3 +1,1,a-cure-i1,2021-22,Medway - Burke/Memorial Elementary School,01770015, 0.2, 2.6, 2.1, 6.6, 1.5, 0.0, 87.0, 48.7, 51.3, 0.0,13.0,0.0 +1,1,a-cure-i1,2021-22,Medway - John D Mc Govern Elementary,01770013, 0.0, 5.4, 0.3, 6.8, 5.7, 0.0, 81.8, 44.0, 56.0, 0.0,18.200000000000003,4.7 +1,1,a-cure-i1,2021-22,Medway - Medway High,01770505, 0.5, 3.0, 1.9, 5.6, 2.3, 0.2, 86.5, 50.9, 48.8, 0.3,13.5,4.5 +1,1,a-cure-i1,2021-22,Medway - Medway Middle,01770305, 0.0, 3.2, 2.3, 5.9, 2.7, 0.3, 85.7, 51.6, 48.4, 0.0,14.299999999999997,4.4 +1,1,a-cure-i1,2021-22,Melrose - Early Childhood Center,01780003, 5.1, 10.6, 7.6, 7.1, 3.0, 0.0, 66.7, 38.9, 61.1, 0.0,33.3,1.3 +1,1,a-cure-i1,2021-22,Melrose - Herbert Clark Hoover,01780017, 0.0, 7.1, 6.4, 6.4, 4.4, 0.0, 75.8, 48.8, 51.2, 0.0,24.200000000000003,2.7 +1,1,a-cure-i1,2021-22,Melrose - Horace Mann,01780025, 0.0, 0.7, 0.4, 3.7, 4.5, 0.0, 90.6, 55.1, 44.6, 0.4,9.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Melrose - Lincoln,01780020, 0.0, 13.6, 7.7, 10.6, 10.6, 0.0, 57.4, 47.8, 52.2, 0.0,42.6,2.3 +4.173913043478261,4.17,a-cure-i1,2021-22,Melrose - Melrose High,01780505, 0.0, 5.1, 7.8, 5.1, 5.0, 0.0, 77.0, 49.9, 49.8, 0.2,23.0,6.0 +5.378151260504202,5,a-cure-i1,2021-22,Melrose - Melrose Middle,01780305, 0.0, 6.2, 6.2, 6.4, 5.1, 0.0, 76.2, 52.5, 47.4, 0.1,23.799999999999997,8.0 +1,1,a-cure-i1,2021-22,Melrose - Roosevelt,01780035, 0.2, 4.1, 4.1, 3.1, 7.0, 0.0, 81.5, 48.4, 51.6, 0.0,18.5,0.0 +6.104046242774567,5,a-cure-i1,2021-22,Melrose - Winthrop,01780050, 0.0, 3.8, 2.5, 3.8, 7.3, 0.0, 82.7, 48.7, 51.0, 0.3,17.299999999999997,6.6 +13.575757575757587,5,a-cure-i1,2021-22,Mendon-Upton - Henry P Clough,07100179, 0.3, 0.6, 0.9, 4.3, 0.6, 0.0, 93.4, 49.3, 50.7, 0.0,6.599999999999994,5.6 +16.000000000000004,5,a-cure-i1,2021-22,Mendon-Upton - Memorial School,07100001, 0.0, 4.9, 1.4, 6.5, 3.0, 0.0, 84.2, 49.6, 50.4, 0.0,15.799999999999997,15.8 +1,1,a-cure-i1,2021-22,Mendon-Upton - Miscoe Hill School,07100015, 0.2, 2.6, 0.5, 6.2, 2.0, 0.0, 88.7, 48.4, 51.6, 0.0,11.299999999999997,2.4 +1,1,a-cure-i1,2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 2.0, 0.9, 5.0, 2.4, 0.0, 89.6, 51.0, 48.8, 0.2,10.400000000000006,2.3 +1,1,a-cure-i1,2021-22,Methuen - Comprehensive Grammar School,01810050, 0.0, 4.3, 5.7, 40.6, 3.8, 0.0, 45.6, 47.8, 52.2, 0.0,54.4,2.7 +1,1,a-cure-i1,2021-22,Methuen - Donald P Timony Grammar,01810060, 0.1, 3.7, 5.7, 52.5, 3.0, 0.1, 34.9, 46.4, 53.6, 0.0,65.1,1.5 +1,1,a-cure-i1,2021-22,Methuen - Marsh Grammar School,01810030, 0.0, 2.5, 3.2, 38.1, 4.0, 0.1, 52.1, 43.1, 56.9, 0.0,47.9,4.2 +1.8472468916518652,1.85,a-cure-i1,2021-22,Methuen - Methuen High,01810505, 0.0, 4.1, 2.9, 45.1, 4.2, 0.0, 43.7, 48.1, 51.9, 0.1,56.3,6.5 +1,1,a-cure-i1,2021-22,Methuen - Tenney Grammar School,01810055, 0.0, 2.6, 4.4, 61.4, 3.0, 0.1, 28.5, 47.8, 52.2, 0.0,71.5,1.2 +1,1,a-cure-i1,2021-22,Middleborough - Henry B. Burkland Elementary School,01820008, 0.4, 1.5, 2.7, 3.3, 5.9, 0.0, 86.3, 50.6, 49.4, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Middleborough - John T. Nichols Middle,01820305, 0.3, 0.4, 3.0, 2.9, 7.9, 0.0, 85.6, 48.8, 51.1, 0.1,14.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Middleborough - Mary K. Goode Elementary School,01820010, 0.7, 1.0, 2.8, 1.3, 7.3, 0.0, 86.9, 49.8, 50.2, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Middleborough - Memorial Early Childhood Center,01820011, 0.4, 0.7, 2.2, 6.1, 5.4, 0.0, 85.3, 49.6, 50.4, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Middleborough - Middleborough High,01820505, 1.0, 1.5, 3.1, 4.0, 4.0, 0.0, 86.5, 49.8, 50.0, 0.2,13.5,1.8 +1,1,a-cure-i1,2021-22,Middleton - Fuller Meadow,01840003, 1.4, 3.5, 2.1, 5.2, 3.8, 0.0, 84.1, 48.4, 51.6, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Middleton - Howe-Manning,01840005, 0.5, 4.8, 1.7, 6.0, 3.8, 0.2, 83.1, 50.6, 49.4, 0.0,16.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Milford - Brookside,01850065, 1.3, 1.3, 3.9, 32.8, 2.2, 0.0, 58.6, 46.6, 53.4, 0.0,41.4,3.2 +1,1,a-cure-i1,2021-22,Milford - Memorial,01850010, 1.2, 0.6, 2.6, 36.9, 2.4, 0.0, 56.2, 49.3, 50.7, 0.0,43.8,0.0 +1,1,a-cure-i1,2021-22,Milford - Milford High,01850505, 1.7, 1.8, 2.8, 33.3, 3.3, 0.0, 57.0, 45.6, 54.3, 0.1,43.0,3.6 +1,1,a-cure-i1,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.7, 2.1, 1.4, 34.3, 4.3, 0.0, 57.1, 46.4, 53.6, 0.0,42.9,0.0 +1,1,a-cure-i1,2021-22,Milford - Stacy Middle,01850305, 1.7, 1.4, 3.7, 31.3, 4.2, 0.1, 57.7, 47.2, 52.8, 0.0,42.3,4.5 +1,1,a-cure-i1,2021-22,Milford - Woodland,01850090, 0.8, 0.6, 3.3, 35.2, 2.9, 0.1, 57.0, 47.9, 52.1, 0.0,43.0,3.3 +1,1,a-cure-i1,2021-22,Millbury - Elmwood Street,01860017, 0.0, 4.9, 4.4, 7.8, 6.3, 0.0, 76.6, 45.2, 54.8, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Millbury - Millbury Junior/Senior High,01860505, 0.0, 4.1, 4.1, 10.6, 5.7, 0.1, 75.4, 48.6, 51.1, 0.3,24.599999999999994,1.8 +1,1,a-cure-i1,2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 1.5, 2.4, 8.0, 4.4, 0.0, 83.8, 47.8, 52.2, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Millis - Clyde F Brown,01870005, 0.5, 2.8, 0.7, 10.2, 4.8, 0.2, 80.9, 50.4, 49.6, 0.0,19.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Millis - Millis High School,01870505, 0.0, 2.1, 1.8, 9.5, 4.9, 0.0, 81.7, 48.8, 50.0, 1.2,18.299999999999997,3.5 +6.025974025974024,5,a-cure-i1,2021-22,Millis - Millis Middle,01870020, 0.0, 2.6, 0.8, 8.3, 3.8, 0.0, 84.6, 51.1, 48.9, 0.0,15.400000000000006,5.800000000000001 +4.345679012345679,4.35,a-cure-i1,2021-22,Milton - Charles S Pierce Middle,01890410, 0.2, 7.7, 14.3, 5.3, 5.0, 0.0, 67.6, 50.1, 49.9, 0.0,32.400000000000006,8.8 +5.931034482758621,5,a-cure-i1,2021-22,Milton - Collicot,01890005, 0.0, 11.2, 3.1, 3.8, 5.1, 0.0, 76.8, 50.8, 49.2, 0.0,23.200000000000003,8.600000000000001 +1,1,a-cure-i1,2021-22,Milton - Cunningham School,01890007, 0.0, 10.9, 5.5, 4.4, 4.9, 0.0, 74.4, 50.6, 49.4, 0.0,25.599999999999994,1.3 +8.774193548387096,5,a-cure-i1,2021-22,Milton - Glover,01890010, 0.5, 5.6, 6.0, 5.1, 7.6, 0.0, 75.2, 52.5, 47.5, 0.0,24.799999999999997,13.599999999999998 +4.2439024390243905,4.24,a-cure-i1,2021-22,Milton - Milton High,01890505, 0.2, 6.5, 16.5, 6.1, 3.3, 0.2, 67.2, 49.1, 50.5, 0.4,32.8,8.7 +4.0,4.0,a-cure-i1,2021-22,Milton - Tucker,01890020, 0.0, 6.9, 35.8, 9.5, 12.3, 0.0, 35.6, 50.2, 49.8, 0.0,64.4,16.1 +1,1,a-cure-i1,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.3, 4.3, 4.0, 8.7, 6.4, 0.0, 76.3, 36.5, 62.4, 1.1,23.700000000000003,4.0 +7.51304347826087,5,a-cure-i1,2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.7, 6.3, 4.4, 0.0, 88.5, 49.6, 50.0, 0.4,11.5,5.4 +1,1,a-cure-i1,2021-22,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 2.1, 4.2, 0.0, 0.0, 93.7, 45.3, 54.7, 0.0,6.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.4, 0.0, 5.5, 4.4, 0.0, 89.7, 50.2, 49.8, 0.0,10.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0, 97.6, 50.8, 49.2, 0.0,2.4000000000000057,0.0 +1,1,a-cure-i1,2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.7, 4.1, 13.1, 6.9, 0.0, 75.2, 48.3, 51.7, 0.0,24.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Monomoy Regional School District - Harwich Elementary School,07120002, 0.6, 1.2, 3.9, 8.7, 8.7, 0.0, 76.8, 42.5, 57.5, 0.0,23.200000000000003,4.4 +4.5296803652968025,4.53,a-cure-i1,2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.9, 1.3, 6.0, 9.3, 4.2, 0.3, 78.1, 50.4, 49.1, 0.4,21.900000000000006,6.2 +1,1,a-cure-i1,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.4, 1.1, 6.4, 7.7, 5.5, 0.4, 78.5, 48.7, 51.3, 0.0,21.5,0.0 +1,1,a-cure-i1,2021-22,Monson - Granite Valley School,01910030, 0.0, 1.2, 0.7, 8.6, 3.4, 0.0, 86.1, 51.8, 48.2, 0.0,13.900000000000006,2.9 +1,1,a-cure-i1,2021-22,Monson - Monson High School,01910505, 0.0, 1.2, 0.9, 5.8, 4.0, 0.6, 87.4, 52.0, 47.4, 0.6,12.599999999999994,3.3 +1,1,a-cure-i1,2021-22,Monson - Quarry Hill Community School,01910010, 1.0, 0.0, 0.0, 9.6, 2.9, 0.0, 86.5, 52.9, 47.1, 0.0,13.5,0.0 +3.8066914498141258,3.81,a-cure-i1,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.3, 2.0, 18.2, 5.2, 0.1, 73.1, 49.8, 49.5, 0.7,26.900000000000006,6.4 +1,1,a-cure-i1,2021-22,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 2.4, 1.9, 6.3, 1.4, 0.0, 87.9, 49.8, 50.2, 0.0,12.099999999999994,3.2 +7.8273381294964,5,a-cure-i1,2021-22,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.9, 3.2, 5.2, 3.6, 0.0, 86.1, 53.8, 45.4, 0.8,13.900000000000006,6.800000000000001 +1,1,a-cure-i1,2021-22,Mount Greylock - Williamstown Elementary,07150010, 0.0, 2.4, 2.8, 7.8, 7.8, 0.0, 79.1, 46.2, 53.6, 0.2,20.900000000000006,2.9 +1,1,a-cure-i1,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.3, 25.6, 18.8, 11.1, 5.2, 0.1, 38.9, 52.1, 47.9, 0.0,61.1,4.3 +1,1,a-cure-i1,2021-22,Nahant - Johnson,01960010, 0.0, 0.6, 0.0, 9.8, 5.5, 0.0, 84.1, 41.5, 58.5, 0.0,15.900000000000006,0.0 +3.7419354838709675,3.74,a-cure-i1,2021-22,Nantucket - Cyrus Peirce,01970010, 0.0, 1.2, 9.5, 34.9, 4.0, 0.0, 50.4, 47.0, 53.0, 0.0,49.6,11.6 +1.395973154362416,1.4,a-cure-i1,2021-22,Nantucket - Nantucket Elementary,01970005, 0.0, 1.3, 7.4, 45.6, 5.3, 0.0, 40.4, 49.9, 50.1, 0.0,59.6,5.2 +3.0270270270270268,3.03,a-cure-i1,2021-22,Nantucket - Nantucket High,01970505, 0.4, 1.6, 10.3, 35.4, 4.2, 0.0, 48.2, 47.5, 52.5, 0.0,51.8,9.799999999999999 +1,1,a-cure-i1,2021-22,Nantucket - Nantucket Intermediate School,01970020, 0.0, 1.6, 5.7, 44.0, 5.0, 0.0, 43.7, 50.3, 49.7, 0.0,56.3,3.1999999999999997 +1,1,a-cure-i1,2021-22,Narragansett - Narragansett Middle,07200305, 0.0, 0.9, 1.1, 6.9, 4.0, 0.0, 87.1, 48.6, 51.4, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Narragansett - Narragansett Regional High,07200505, 0.2, 0.7, 0.5, 9.3, 4.0, 0.2, 85.0, 46.3, 53.4, 0.2,15.0,0.0 +1,1,a-cure-i1,2021-22,Narragansett - Templeton Elementary School,07200020, 0.0, 0.6, 1.0, 10.0, 2.9, 0.0, 85.5, 48.4, 51.6, 0.0,14.5,0.0 +4.89795918367347,4.9,a-cure-i1,2021-22,Nashoba - Center School,07250020, 0.0, 5.1, 0.8, 7.1, 6.5, 0.0, 80.4, 49.2, 50.8, 0.0,19.599999999999994,6.0 +1,1,a-cure-i1,2021-22,Nashoba - Florence Sawyer School,07250025, 0.0, 4.1, 0.8, 4.5, 4.4, 0.1, 86.0, 50.6, 49.4, 0.0,14.0,0.0 +11.148387096774194,5,a-cure-i1,2021-22,Nashoba - Hale,07250310, 0.0, 3.6, 2.9, 4.0, 5.0, 0.0, 84.5, 50.7, 49.3, 0.0,15.5,10.8 +1,1,a-cure-i1,2021-22,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.4, 1.8, 12.1, 2.7, 0.0, 83.0, 47.3, 52.7, 0.0,17.0,3.4 +1,1,a-cure-i1,2021-22,Nashoba - Mary Rowlandson Elementary,07250010, 0.4, 1.7, 1.3, 15.0, 3.9, 0.0, 77.6, 46.8, 53.2, 0.0,22.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Nashoba - Nashoba Regional,07250505, 0.0, 5.0, 1.6, 5.9, 1.8, 0.2, 85.5, 50.0, 49.7, 0.3,14.5,3.0 +5.194805194805193,5,a-cure-i1,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.4, 1.6, 2.0, 8.0, 3.1, 0.1, 84.6, 38.5, 60.3, 1.2,15.400000000000006,5.0 +3.9444444444444446,3.94,a-cure-i1,2021-22,Natick - Bennett-Hemenway,01980005, 0.2, 13.2, 2.2, 7.5, 5.7, 0.0, 71.2, 46.2, 53.8, 0.0,28.799999999999997,7.1 +1,1,a-cure-i1,2021-22,Natick - Brown,01980010, 0.2, 26.7, 1.8, 10.2, 5.7, 0.0, 55.4, 47.7, 52.3, 0.0,44.6,0.0 +3.570247933884297,3.57,a-cure-i1,2021-22,Natick - J F Kennedy Middle School,01980305, 0.1, 11.8, 0.7, 6.5, 5.2, 0.0, 75.8, 44.6, 55.4, 0.0,24.200000000000003,5.4 +1,1,a-cure-i1,2021-22,Natick - Johnson,01980031, 0.0, 5.0, 2.3, 10.5, 5.0, 0.0, 77.2, 46.6, 53.0, 0.5,22.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Natick - Lilja Elementary,01980035, 0.3, 12.1, 3.4, 9.0, 6.5, 0.0, 68.7, 50.4, 49.6, 0.0,31.299999999999997,4.0 +1,1,a-cure-i1,2021-22,Natick - Memorial,01980043, 0.0, 6.3, 1.8, 4.8, 7.1, 0.0, 80.1, 49.2, 50.8, 0.0,19.900000000000006,0.0 +5.599999999999999,5,a-cure-i1,2021-22,Natick - Natick High,01980505, 0.1, 8.3, 3.5, 6.2, 5.9, 0.0, 76.0, 48.0, 51.7, 0.3,24.0,8.399999999999999 +1,1,a-cure-i1,2021-22,Natick - Wilson Middle,01980310, 0.0, 7.6, 4.4, 7.0, 6.1, 0.1, 74.8, 50.5, 49.5, 0.0,25.200000000000003,0.9 +1,1,a-cure-i1,2021-22,Nauset - Nauset Regional High,06600505, 0.1, 2.2, 5.8, 4.3, 2.4, 0.1, 85.1, 54.6, 44.8, 0.6,14.900000000000006,2.6 +1,1,a-cure-i1,2021-22,Nauset - Nauset Regional Middle,06600305, 0.0, 1.7, 4.9, 7.3, 4.3, 0.0, 81.8, 49.0, 51.0, 0.0,18.200000000000003,2.7 +3.6129032258064515,3.61,a-cure-i1,2021-22,Needham - Broadmeadow,01990005, 0.0, 14.5, 2.3, 6.6, 7.6, 0.0, 69.0, 46.9, 53.1, 0.0,31.0,7.0 +1,1,a-cure-i1,2021-22,Needham - High Rock School,01990410, 0.0, 11.3, 3.1, 7.6, 6.2, 0.0, 71.8, 53.1, 46.9, 0.0,28.200000000000003,2.7 +1,1,a-cure-i1,2021-22,Needham - John Eliot,01990020, 0.0, 18.8, 6.5, 7.4, 6.3, 0.0, 61.0, 48.5, 51.5, 0.0,39.0,3.7 +8.144144144144143,5,a-cure-i1,2021-22,Needham - Needham High,01990505, 0.1, 8.4, 1.9, 6.7, 5.0, 0.1, 77.8, 50.6, 48.7, 0.7,22.200000000000003,11.299999999999999 +4.048979591836734,4.05,a-cure-i1,2021-22,Needham - Newman Elementary,01990050, 0.0, 10.1, 2.3, 5.4, 6.6, 0.2, 75.5, 47.8, 52.2, 0.0,24.5,6.2 +4.819277108433734,4.82,a-cure-i1,2021-22,Needham - Pollard Middle,01990405, 0.0, 8.5, 3.7, 8.1, 4.5, 0.1, 75.1, 51.1, 48.8, 0.1,24.900000000000006,7.5 +1,1,a-cure-i1,2021-22,Needham - Sunita L. Williams Elementary,01990035, 0.2, 12.5, 4.2, 5.3, 6.9, 0.2, 70.8, 45.3, 54.7, 0.0,29.200000000000003,0.0 +9.689243027888448,5,a-cure-i1,2021-22,Needham - William Mitchell,01990040, 0.0, 10.7, 4.0, 4.7, 5.8, 0.0, 74.9, 48.0, 52.0, 0.0,25.099999999999994,15.2 +8.000000000000002,5,a-cure-i1,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.8, 2.2, 54.1, 25.5, 6.0, 0.0, 11.4, 49.3, 50.7, 0.0,88.6,44.300000000000004 +1,1,a-cure-i1,2021-22,New Bedford - Abraham Lincoln,02010095, 0.3, 0.9, 11.9, 41.7, 6.6, 0.2, 38.4, 47.1, 52.9, 0.0,61.6,4.0 +3.7821552723059093,3.78,a-cure-i1,2021-22,New Bedford - Alfred J Gomes,02010063, 0.4, 0.4, 12.7, 70.7, 2.0, 0.0, 13.7, 48.0, 52.0, 0.0,86.3,20.4 +1,1,a-cure-i1,2021-22,New Bedford - Betsey B Winslow,02010140, 0.4, 1.7, 10.3, 17.7, 5.2, 0.0, 64.7, 51.3, 48.3, 0.4,35.3,3.5 +1,1,a-cure-i1,2021-22,New Bedford - Carlos Pacheco,02010105, 0.0, 1.3, 14.9, 51.2, 4.6, 0.0, 28.1, 52.5, 47.5, 0.0,71.9,0.0 +3.5897435897435894,3.59,a-cure-i1,2021-22,New Bedford - Casimir Pulaski,02010123, 0.6, 1.1, 6.1, 18.4, 4.8, 0.2, 68.8, 46.2, 53.8, 0.0,31.200000000000003,7.0 +3.5473441108545036,3.55,a-cure-i1,2021-22,New Bedford - Charles S Ashley,02010010, 0.4, 1.8, 5.1, 29.1, 6.9, 0.0, 56.7, 49.1, 50.9, 0.0,43.3,9.6 +5.773788150807898,5,a-cure-i1,2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 1.0, 1.0, 12.7, 34.4, 6.5, 0.0, 44.3, 53.6, 46.4, 0.0,55.7,20.099999999999998 +2.4904552129221735,2.49,a-cure-i1,2021-22,New Bedford - Ellen R Hathaway,02010075, 0.4, 2.6, 18.3, 42.5, 4.4, 0.0, 31.9, 47.6, 52.4, 0.0,68.1,10.6 +1,1,a-cure-i1,2021-22,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.4, 13.8, 39.6, 4.1, 0.0, 42.2, 42.5, 57.5, 0.0,57.8,4.8 +1.944862155388471,1.94,a-cure-i1,2021-22,New Bedford - Hayden/McFadden,02010078, 0.5, 0.6, 13.0, 61.8, 3.9, 0.0, 20.2, 49.6, 50.4, 0.0,79.8,9.7 +1.9421965317919074,1.94,a-cure-i1,2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 8.0, 56.8, 4.0, 0.3, 30.8, 51.5, 48.3, 0.3,69.2,8.4 +1.487719298245614,1.49,a-cure-i1,2021-22,New Bedford - James B Congdon,02010040, 0.4, 0.4, 12.6, 37.8, 5.9, 0.0, 43.0, 50.0, 50.0, 0.0,57.0,5.3 +1,1,a-cure-i1,2021-22,New Bedford - Jireh Swift,02010130, 0.0, 1.0, 11.1, 23.1, 5.8, 0.0, 59.1, 55.3, 44.7, 0.0,40.9,0.0 +7.525423728813561,5,a-cure-i1,2021-22,New Bedford - John Avery Parker,02010115, 0.0, 1.3, 16.8, 44.2, 8.4, 0.0, 29.2, 48.2, 51.8, 0.0,70.8,33.300000000000004 +1,1,a-cure-i1,2021-22,New Bedford - John B Devalles,02010050, 0.0, 0.0, 19.0, 49.7, 3.5, 0.0, 27.7, 52.9, 47.1, 0.0,72.3,4.6 +2.346333853354134,2.35,a-cure-i1,2021-22,New Bedford - Keith Middle School,02010405, 0.5, 0.6, 16.4, 38.3, 8.2, 0.0, 35.9, 45.2, 54.8, 0.0,64.1,9.399999999999999 +3.180722891566265,3.18,a-cure-i1,2021-22,New Bedford - New Bedford High,02010505, 0.6, 0.7, 15.0, 45.0, 5.2, 0.1, 33.6, 46.8, 53.0, 0.1,66.4,13.200000000000001 +2.853889943074003,2.85,a-cure-i1,2021-22,New Bedford - Normandin Middle School,02010410, 0.4, 0.8, 8.4, 38.7, 4.4, 0.1, 47.3, 47.0, 53.0, 0.0,52.7,9.399999999999999 +2.4517593643586837,2.45,a-cure-i1,2021-22,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 20.0, 65.6, 2.5, 0.0, 11.9, 53.1, 46.9, 0.0,88.1,13.5 +1.5598227474150663,1.56,a-cure-i1,2021-22,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 15.7, 46.4, 5.4, 0.3, 32.3, 48.6, 51.4, 0.0,67.7,6.6 +2.979655712050078,2.98,a-cure-i1,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 0.2, 1.2, 18.5, 36.1, 8.1, 0.0, 36.1, 42.3, 57.7, 0.0,63.9,11.899999999999999 +2.9568221070811744,2.96,a-cure-i1,2021-22,New Bedford - Thomas R Rodman,02010125, 0.0, 2.3, 11.6, 40.3, 3.7, 0.0, 42.1, 46.3, 53.7, 0.0,57.9,10.7 +3.8333333333333335,3.83,a-cure-i1,2021-22,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 15.3, 36.5, 5.9, 0.0, 42.4, 32.9, 67.1, 0.0,57.6,13.8 +2.0558659217877095,2.06,a-cure-i1,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 1.5, 0.0, 23.9, 34.3, 11.9, 0.0, 28.4, 31.3, 68.7, 0.0,71.6,9.2 +2.943620178041543,2.94,a-cure-i1,2021-22,New Bedford - William H Taylor,02010135, 0.0, 0.0, 9.1, 16.3, 8.3, 0.0, 66.3, 46.8, 53.2, 0.0,33.7,6.2 +5.7560975609756095,5,a-cure-i1,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.1, 0.5, 88.8, 6.6, 2.2, 0.1, 1.6, 50.5, 49.5, 0.0,98.4,35.4 +16.0,5,a-cure-i1,2021-22,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 3.1, 8.5, 0.0, 88.5, 49.2, 50.8, 0.0,11.5,11.5 +1,1,a-cure-i1,2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 2.1, 1.4, 6.0, 2.8, 0.0, 87.5, 52.7, 47.3, 0.0,12.5,1.7 +1,1,a-cure-i1,2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.3, 0.3, 5.8, 3.6, 0.0, 88.9, 49.8, 50.2, 0.0,11.099999999999994,0.6 +1,1,a-cure-i1,2021-22,Newburyport - Newburyport High,02040505, 0.1, 1.7, 0.9, 4.0, 2.6, 0.0, 90.8, 50.3, 49.6, 0.1,9.200000000000003,0.0 +31.999999999999982,5,a-cure-i1,2021-22,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.8, 1.3, 4.0, 0.6, 0.0, 93.3, 49.2, 50.8, 0.0,6.700000000000003,13.399999999999999 +5.49112426035503,5,a-cure-i1,2021-22,Newton - A E Angier,02070005, 0.0, 16.3, 3.5, 5.2, 8.7, 0.0, 66.2, 48.7, 50.8, 0.5,33.8,11.6 +4.8877284595300265,4.89,a-cure-i1,2021-22,Newton - Bigelow Middle,02070305, 0.0, 16.6, 4.9, 10.1, 6.7, 0.0, 61.7, 53.1, 46.7, 0.2,38.3,11.7 +10.029850746268657,5,a-cure-i1,2021-22,Newton - Bowen,02070015, 0.0, 27.8, 4.9, 11.3, 9.6, 0.0, 46.4, 50.4, 49.3, 0.3,53.6,33.6 +10.140417457305501,5,a-cure-i1,2021-22,Newton - C C Burr,02070020, 0.0, 22.9, 7.1, 13.6, 9.1, 0.0, 47.3, 47.9, 51.6, 0.6,52.7,33.4 +4.478555304740406,4.48,a-cure-i1,2021-22,Newton - Cabot,02070025, 0.2, 15.2, 5.8, 8.9, 14.0, 0.2, 55.7, 50.4, 49.4, 0.2,44.3,12.4 +4.5953002610966065,4.6,a-cure-i1,2021-22,Newton - Charles E Brown Middle,02070310, 0.3, 22.9, 3.2, 7.1, 4.9, 0.0, 61.7, 46.4, 53.4, 0.3,38.3,11.0 +2.961770623742454,2.96,a-cure-i1,2021-22,Newton - Countryside,02070040, 0.0, 28.5, 4.8, 7.3, 9.1, 0.0, 50.3, 49.5, 50.3, 0.3,49.7,9.2 +3.1372549019607847,3.14,a-cure-i1,2021-22,Newton - F A Day Middle,02070315, 0.1, 18.0, 5.4, 8.6, 8.5, 0.3, 59.2, 49.9, 49.9, 0.2,40.8,8.0 +3.6226415094339623,3.62,a-cure-i1,2021-22,Newton - Franklin,02070055, 0.0, 14.4, 2.2, 11.9, 8.2, 0.2, 62.9, 55.5, 44.5, 0.0,37.1,8.4 +8.141772151898735,5,a-cure-i1,2021-22,Newton - Horace Mann,02070075, 0.0, 14.1, 4.3, 9.7, 11.4, 0.0, 60.5, 46.2, 53.8, 0.0,39.5,20.1 +6.752851711026617,5,a-cure-i1,2021-22,Newton - John Ward,02070120, 0.0, 11.7, 2.8, 4.2, 7.5, 0.0, 73.7, 52.6, 47.4, 0.0,26.299999999999997,11.1 +2.8493150684931505,2.85,a-cure-i1,2021-22,Newton - Lincoln-Eliot,02070070, 0.3, 19.7, 6.0, 14.6, 10.5, 0.0, 48.9, 44.4, 55.2, 0.3,51.1,9.1 +1,1,a-cure-i1,2021-22,Newton - Mason-Rice,02070080, 0.0, 22.3, 0.9, 5.0, 9.5, 0.0, 62.3, 49.6, 50.4, 0.0,37.7,4.6 +2.8256070640176603,2.83,a-cure-i1,2021-22,Newton - Memorial Spaulding,02070105, 0.0, 24.2, 5.3, 10.4, 5.3, 0.0, 54.7, 54.2, 45.8, 0.0,45.3,8.0 +1,1,a-cure-i1,2021-22,Newton - Newton Early Childhood Program,02070108, 0.0, 33.0, 2.2, 7.8, 14.0, 0.0, 43.0, 41.3, 58.7, 0.0,57.0,0.0 +6.786632390745502,5,a-cure-i1,2021-22,Newton - Newton North High,02070505, 0.1, 15.0, 5.0, 11.8, 7.1, 0.0, 61.1, 48.4, 51.1, 0.5,38.9,16.5 +6.559241706161136,5,a-cure-i1,2021-22,Newton - Newton South High,02070510, 0.1, 23.5, 4.5, 7.3, 6.8, 0.1, 57.8, 47.0, 52.6, 0.4,42.2,17.299999999999997 +6.226244343891402,5,a-cure-i1,2021-22,Newton - Oak Hill Middle,02070320, 0.0, 23.8, 5.9, 8.3, 6.2, 0.0, 55.8, 49.0, 50.8, 0.2,44.2,17.2 +4.972431077694236,4.97,a-cure-i1,2021-22,Newton - Peirce,02070100, 0.0, 14.7, 3.4, 11.8, 10.1, 0.0, 60.1, 47.5, 52.5, 0.0,39.9,12.4 +2.0,2.0,a-cure-i1,2021-22,Newton - Underwood,02070115, 0.5, 20.6, 5.5, 14.2, 11.9, 0.0, 47.2, 54.1, 45.9, 0.0,52.8,6.6 +2.0665362035225048,2.07,a-cure-i1,2021-22,Newton - Williams,02070125, 0.0, 30.7, 4.9, 8.9, 6.7, 0.0, 48.9, 47.1, 52.9, 0.0,51.1,6.6 +2.835820895522388,2.84,a-cure-i1,2021-22,Newton - Zervas,02070130, 0.5, 25.1, 7.6, 9.5, 10.4, 0.5, 46.4, 48.1, 51.9, 0.0,53.6,9.5 +1,1,a-cure-i1,2021-22,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.0, 0.6, 3.9, 3.5, 0.0, 90.0, 47.8, 52.2, 0.0,10.0,0.0 +1,1,a-cure-i1,2021-22,Norfolk - H Olive Day,02080015, 0.0, 2.4, 0.8, 3.5, 2.9, 0.0, 90.4, 50.3, 49.7, 0.0,9.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.9, 0.9, 1.9, 0.9, 4.3, 0.3, 91.0, 74.1, 25.3, 0.5,9.0,0.0 +6.814814814814816,5,a-cure-i1,2021-22,North Adams - Brayton,02090035, 0.0, 0.9, 2.2, 9.1, 9.5, 0.0, 78.4, 40.5, 59.5, 0.0,21.599999999999994,9.2 +1,1,a-cure-i1,2021-22,North Adams - Colegrove Park Elementary,02090008, 0.4, 0.4, 2.0, 9.3, 9.7, 0.4, 77.7, 47.0, 53.0, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2021-22,North Adams - Drury High,02090505, 0.4, 0.8, 2.3, 5.4, 8.6, 0.4, 82.1, 55.1, 44.9, 0.0,17.900000000000006,2.3 +1,1,a-cure-i1,2021-22,North Adams - Greylock,02090015, 0.0, 0.4, 0.0, 9.1, 10.2, 0.0, 80.3, 51.5, 48.5, 0.0,19.700000000000003,0.0 +1,1,a-cure-i1,2021-22,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.2, 8.1, 3.6, 14.1, 3.8, 0.2, 69.9, 41.3, 58.5, 0.2,30.099999999999994,0.0 +1,1,a-cure-i1,2021-22,North Andover - Annie L Sargent School,02110018, 0.0, 9.4, 1.3, 7.3, 4.5, 0.0, 77.5, 47.4, 52.6, 0.0,22.5,0.0 +1,1,a-cure-i1,2021-22,North Andover - Atkinson,02110001, 0.3, 6.6, 5.2, 31.5, 3.1, 0.0, 53.3, 47.8, 52.2, 0.0,46.7,0.0 +1,1,a-cure-i1,2021-22,North Andover - Franklin,02110010, 0.0, 10.1, 3.2, 8.2, 4.3, 0.0, 74.2, 45.7, 54.3, 0.0,25.799999999999997,0.0 +1,1,a-cure-i1,2021-22,North Andover - Kittredge,02110015, 0.0, 2.2, 1.8, 11.2, 4.9, 0.4, 79.4, 46.6, 53.4, 0.0,20.599999999999994,0.0 +1,1,a-cure-i1,2021-22,North Andover - North Andover High,02110505, 0.1, 7.0, 3.4, 11.9, 2.8, 0.1, 74.8, 48.4, 51.6, 0.0,25.200000000000003,0.9 +1,1,a-cure-i1,2021-22,North Andover - North Andover Middle,02110305, 0.2, 7.1, 2.8, 15.3, 4.2, 0.0, 70.5, 50.9, 49.1, 0.0,29.5,0.0 +1,1,a-cure-i1,2021-22,North Andover - Thomson,02110020, 0.0, 6.7, 1.3, 20.2, 4.2, 0.0, 67.6, 51.0, 49.0, 0.0,32.400000000000006,0.0 +1,1,a-cure-i1,2021-22,North Attleborough - Amvet Boulevard,02120007, 1.0, 16.0, 6.0, 4.1, 4.8, 0.0, 68.2, 51.2, 48.8, 0.0,31.799999999999997,0.0 +1,1,a-cure-i1,2021-22,North Attleborough - Community,02120030, 0.4, 6.6, 10.6, 12.4, 6.2, 0.7, 63.1, 50.7, 49.3, 0.0,36.9,0.0 +1,1,a-cure-i1,2021-22,North Attleborough - Falls,02120010, 0.5, 6.4, 3.2, 4.1, 8.2, 0.0, 77.7, 46.4, 53.6, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.5, 4.7, 2.6, 5.7, 2.4, 0.0, 84.1, 44.8, 55.2, 0.0,15.900000000000006,0.0 +4.186915887850466,4.19,a-cure-i1,2021-22,North Attleborough - North Attleboro High,02120505, 0.1, 7.7, 4.8, 5.3, 3.2, 0.3, 78.6, 49.5, 50.0, 0.5,21.400000000000006,5.6 +1,1,a-cure-i1,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 12.7, 5.2, 7.5, 6.0, 0.7, 67.9, 36.6, 63.4, 0.0,32.099999999999994,0.0 +1,1,a-cure-i1,2021-22,North Attleborough - North Attleborough Middle,02120305, 0.1, 8.3, 4.9, 6.0, 5.1, 0.0, 75.6, 50.1, 49.9, 0.0,24.400000000000006,3.0 +7.672514619883043,5,a-cure-i1,2021-22,North Attleborough - Roosevelt Avenue,02120015, 0.0, 7.1, 4.0, 5.2, 0.8, 0.0, 82.9, 46.4, 53.6, 0.0,17.099999999999994,8.2 +7.804878048780489,5,a-cure-i1,2021-22,North Brookfield - North Brookfield Elementary,02150015, 0.0, 1.4, 1.4, 7.0, 2.5, 0.0, 87.7, 49.5, 50.5, 0.0,12.299999999999997,6.0 +6.361445783132532,5,a-cure-i1,2021-22,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 2.4, 11.2, 3.0, 0.0, 83.4, 50.9, 49.1, 0.0,16.599999999999994,6.6 +1,1,a-cure-i1,2021-22,North Middlesex - Ashby Elementary,07350010, 0.0, 0.7, 0.7, 10.1, 1.4, 0.0, 87.1, 44.6, 55.4, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2021-22,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.7, 1.7, 5.9, 3.2, 0.0, 87.6, 49.9, 50.1, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2021-22,North Middlesex - Nissitissit Middle School,07350310, 0.2, 1.3, 2.5, 8.6, 5.7, 0.0, 81.7, 45.2, 54.8, 0.0,18.299999999999997,2.5 +1,1,a-cure-i1,2021-22,North Middlesex - North Middlesex Regional,07350505, 0.1, 2.4, 1.8, 6.0, 3.1, 0.1, 86.5, 49.3, 50.4, 0.3,13.5,2.0 +1,1,a-cure-i1,2021-22,North Middlesex - Spaulding Memorial,07350005, 0.0, 2.1, 1.7, 5.8, 2.8, 0.2, 87.3, 50.0, 50.0, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 1.1, 3.4, 1.1, 0.0, 0.0, 94.3, 34.5, 65.5, 0.0,5.700000000000003,0.0 +1,1,a-cure-i1,2021-22,North Middlesex - Varnum Brook,07350035, 0.0, 1.6, 2.3, 6.6, 4.8, 0.0, 84.7, 51.3, 48.7, 0.0,15.299999999999997,3.4 +1,1,a-cure-i1,2021-22,North Reading - E Ethel Little School,02170003, 0.0, 4.4, 1.3, 3.0, 4.0, 0.0, 87.2, 50.2, 49.8, 0.0,12.799999999999997,0.0 +1,1,a-cure-i1,2021-22,North Reading - J Turner Hood,02170010, 0.0, 5.9, 0.8, 5.6, 3.7, 0.3, 83.7, 45.2, 54.8, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2021-22,North Reading - L D Batchelder,02170005, 0.0, 4.3, 0.6, 2.6, 3.2, 0.0, 89.2, 44.1, 55.9, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2021-22,North Reading - North Reading High,02170505, 0.0, 4.5, 0.0, 3.6, 2.5, 0.2, 89.2, 50.9, 49.1, 0.0,10.799999999999997,4.9 +1,1,a-cure-i1,2021-22,North Reading - North Reading Middle,02170305, 0.0, 5.3, 0.7, 5.3, 4.3, 0.0, 84.4, 50.9, 49.1, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Northampton - Bridge Street,02100005, 0.0, 3.6, 3.2, 28.1, 8.3, 0.0, 56.8, 46.8, 52.9, 0.4,43.2,0.0 +11.999999999999998,5,a-cure-i1,2021-22,Northampton - Jackson Street,02100020, 0.0, 4.6, 5.6, 15.4, 8.9, 0.0, 65.6, 46.2, 53.4, 0.3,34.400000000000006,25.8 +1,1,a-cure-i1,2021-22,Northampton - John F Kennedy Middle School,02100410, 0.2, 3.3, 4.0, 16.9, 7.9, 0.0, 67.7, 47.8, 51.3, 0.9,32.3,1.0 +1,1,a-cure-i1,2021-22,Northampton - Leeds,02100025, 0.3, 2.3, 0.3, 19.1, 7.3, 0.0, 70.6, 40.6, 59.1, 0.3,29.400000000000006,0.0 +3.7575757575757565,3.76,a-cure-i1,2021-22,Northampton - Northampton High,02100505, 0.3, 3.4, 2.2, 13.7, 6.8, 0.0, 73.6, 50.1, 48.6, 1.3,26.400000000000006,6.199999999999999 +5.64705882352941,5,a-cure-i1,2021-22,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 1.6, 2.4, 13.9, 2.4, 0.0, 79.6, 48.2, 51.4, 0.4,20.400000000000006,7.2 +1,1,a-cure-i1,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.2, 0.5, 1.6, 12.6, 1.5, 0.2, 83.4, 41.1, 58.3, 0.5,16.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Northboro-Southboro - Algonquin Regional High,07300505, 0.4, 13.2, 1.7, 7.6, 4.5, 0.4, 72.2, 52.7, 47.2, 0.1,27.799999999999997,0.9 +1,1,a-cure-i1,2021-22,Northborough - Fannie E Proctor,02130015, 0.4, 16.1, 4.3, 12.9, 3.9, 0.0, 62.4, 45.9, 54.1, 0.0,37.6,0.0 +1,1,a-cure-i1,2021-22,Northborough - Lincoln Street,02130003, 0.4, 12.0, 0.7, 4.1, 4.9, 0.7, 77.2, 46.4, 53.6, 0.0,22.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Northborough - Marguerite E Peaslee,02130014, 0.8, 7.1, 1.6, 12.3, 6.0, 7.5, 64.7, 48.8, 51.2, 0.0,35.3,0.0 +1,1,a-cure-i1,2021-22,Northborough - Marion E Zeh,02130020, 0.4, 16.6, 0.8, 11.7, 4.0, 0.0, 66.4, 47.4, 52.6, 0.0,33.599999999999994,0.0 +3.9298245614035086,3.93,a-cure-i1,2021-22,Northborough - Robert E. Melican Middle School,02130305, 0.4, 11.7, 1.7, 10.2, 2.8, 1.7, 71.5, 47.4, 52.6, 0.0,28.5,7.0 +1,1,a-cure-i1,2021-22,Northbridge - Northbridge Elementary School,02140001, 0.1, 0.4, 0.7, 9.9, 4.7, 0.0, 84.1, 47.6, 52.4, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Northbridge - Northbridge High,02140505, 0.0, 1.4, 1.9, 9.7, 4.9, 0.0, 82.1, 44.2, 55.8, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Northbridge - Northbridge Middle,02140305, 0.0, 1.0, 0.8, 8.4, 5.7, 0.0, 84.1, 54.5, 45.5, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.1, 1.4, 4.6, 37.8, 1.1, 0.2, 54.9, 44.0, 55.9, 0.2,45.1,2.7 +1,1,a-cure-i1,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.6, 0.6, 1.3, 1.5, 0.2, 95.8, 38.8, 61.2, 0.0,4.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Norton - Henri A. Yelle,02180060, 0.0, 0.8, 3.4, 4.5, 5.1, 0.0, 86.2, 52.2, 47.8, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Norton - J C Solmonese,02180015, 0.0, 1.0, 3.1, 2.7, 4.9, 0.0, 88.3, 51.6, 48.4, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Norton - L G Nourse Elementary,02180010, 0.4, 1.5, 4.0, 5.1, 2.5, 0.0, 86.5, 48.0, 52.0, 0.0,13.5,0.0 +10.666666666666664,5,a-cure-i1,2021-22,Norton - Norton High,02180505, 0.1, 2.1, 3.1, 3.8, 2.5, 0.0, 88.3, 49.2, 50.5, 0.3,11.700000000000003,7.8 +1,1,a-cure-i1,2021-22,Norton - Norton Middle,02180305, 0.3, 1.7, 2.7, 3.8, 4.0, 0.0, 87.5, 49.7, 50.3, 0.0,12.5,0.0 +1,1,a-cure-i1,2021-22,Norwell - Grace Farrar Cole,02190005, 0.0, 3.4, 1.3, 1.5, 5.3, 0.0, 88.4, 44.0, 56.0, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Norwell - Norwell High,02190505, 0.0, 3.2, 0.3, 2.1, 2.2, 0.0, 92.2, 50.7, 49.3, 0.0,7.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Norwell - Norwell Middle School,02190405, 0.2, 2.0, 0.6, 1.2, 3.4, 0.0, 92.6, 47.7, 52.3, 0.0,7.400000000000006,2.9 +1,1,a-cure-i1,2021-22,Norwell - William G Vinal,02190020, 0.0, 1.3, 0.2, 1.1, 4.7, 0.2, 92.5, 47.8, 52.0, 0.2,7.5,0.0 +1.3924914675767917,1.39,a-cure-i1,2021-22,Norwood - Balch,02200005, 0.0, 3.6, 13.6, 39.5, 1.0, 1.0, 41.4, 49.5, 50.5, 0.0,58.6,5.1 +1,1,a-cure-i1,2021-22,Norwood - Charles J Prescott,02200025, 0.4, 30.9, 8.5, 11.2, 2.3, 1.5, 45.2, 54.1, 45.9, 0.0,54.8,0.0 +1,1,a-cure-i1,2021-22,Norwood - Cornelius M Callahan,02200010, 0.0, 6.7, 12.1, 10.8, 4.0, 0.4, 65.9, 48.9, 51.1, 0.0,34.099999999999994,3.6 +1,1,a-cure-i1,2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.1, 4.1, 12.5, 19.1, 3.3, 0.1, 60.7, 51.4, 48.3, 0.3,39.3,0.0 +1,1,a-cure-i1,2021-22,Norwood - F A Cleveland,02200015, 0.0, 6.0, 7.6, 13.2, 4.3, 1.0, 67.9, 44.7, 55.3, 0.0,32.099999999999994,2.4 +1,1,a-cure-i1,2021-22,Norwood - George F. Willett,02200075, 0.3, 11.7, 11.7, 16.0, 4.1, 1.9, 54.5, 51.8, 48.2, 0.0,45.5,0.0 +1,1,a-cure-i1,2021-22,Norwood - John P Oldham,02200020, 0.0, 5.2, 15.7, 12.7, 3.4, 0.4, 62.7, 49.6, 50.4, 0.0,37.3,0.0 +2.7716535433070866,2.77,a-cure-i1,2021-22,Norwood - Norwood High,02200505, 0.1, 5.6, 13.2, 16.6, 2.3, 0.3, 61.9, 50.6, 49.0, 0.4,38.1,6.6 +1.8540772532188843,1.85,a-cure-i1,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.9, 1.9, 3.0, 35.1, 5.6, 0.0, 53.4, 47.1, 52.9, 0.0,46.6,5.4 +1,1,a-cure-i1,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.2, 1.1, 0.4, 2.0, 3.0, 0.0, 93.4, 35.5, 64.3, 0.2,6.599999999999994,4.2 +1,1,a-cure-i1,2021-22,Old Rochester - Old Rochester Regional High,07400505, 0.0, 1.8, 2.7, 2.2, 4.9, 0.0, 88.5, 48.2, 51.8, 0.0,11.5,4.4 +1,1,a-cure-i1,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 1.0, 2.0, 1.7, 5.6, 0.0, 89.8, 47.3, 52.7, 0.0,10.200000000000003,0.0 +3.578059071729957,3.58,a-cure-i1,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.3, 4.1, 17.8, 1.3, 0.3, 76.3, 45.6, 54.4, 0.0,23.700000000000003,5.3 +1,1,a-cure-i1,2021-22,Orange - Dexter Park,02230010, 0.3, 0.7, 1.4, 10.4, 4.9, 0.0, 82.3, 49.7, 50.3, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Orange - Fisher Hill,02230015, 0.0, 1.6, 0.0, 6.5, 8.1, 0.4, 83.5, 46.0, 54.0, 0.0,16.5,0.0 +1,1,a-cure-i1,2021-22,Orleans - Orleans Elementary,02240005, 0.6, 1.2, 4.9, 9.8, 4.3, 0.0, 79.3, 55.5, 44.5, 0.0,20.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Oxford - Alfred M Chaffee,02260010, 0.0, 1.7, 1.4, 15.7, 5.9, 0.0, 75.2, 53.1, 46.9, 0.0,24.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Oxford - Clara Barton,02260005, 0.4, 0.4, 2.4, 18.0, 3.2, 0.0, 75.6, 51.6, 48.4, 0.0,24.400000000000006,0.0 +3.621399176954733,3.62,a-cure-i1,2021-22,Oxford - Oxford High,02260505, 0.2, 1.3, 2.6, 15.1, 4.9, 0.2, 75.7, 50.6, 48.5, 0.9,24.299999999999997,5.5 +1,1,a-cure-i1,2021-22,Oxford - Oxford Middle,02260405, 0.0, 0.0, 3.0, 13.8, 4.5, 0.0, 78.8, 44.3, 55.8, 0.0,21.200000000000003,4.0 +5.0,5.0,a-cure-i1,2021-22,Palmer - Old Mill Pond,02270008, 0.0, 1.9, 3.2, 15.0, 3.9, 0.0, 76.0, 49.1, 50.9, 0.0,24.0,7.5 +1,1,a-cure-i1,2021-22,Palmer - Palmer High,02270505, 0.2, 3.5, 2.8, 13.6, 5.1, 0.0, 74.7, 46.9, 52.7, 0.4,25.299999999999997,4.2 +1,1,a-cure-i1,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.2, 0.0, 1.7, 7.9, 4.1, 0.0, 86.0, 38.8, 60.6, 0.6,14.0,0.0 +9.573635427394438,5,a-cure-i1,2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 10.3, 86.0, 0.8, 0.0, 2.9, 55.6, 44.4, 0.0,97.1,58.099999999999994 +1,1,a-cure-i1,2021-22,Peabody - Captain Samuel Brown,02290005, 0.0, 3.0, 3.3, 20.7, 2.2, 0.3, 70.4, 46.7, 53.3, 0.0,29.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Peabody - Center,02290015, 0.2, 3.1, 7.2, 21.7, 3.3, 0.0, 64.4, 48.9, 51.1, 0.0,35.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Peabody - J Henry Higgins Middle,02290305, 0.0, 2.4, 4.2, 18.7, 1.9, 0.1, 72.6, 50.0, 50.0, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Peabody - John E Burke,02290007, 0.0, 2.1, 0.8, 9.1, 2.5, 0.0, 85.6, 51.9, 48.1, 0.0,14.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Peabody - John E. McCarthy,02290016, 0.6, 3.5, 4.4, 18.4, 4.1, 0.3, 68.6, 50.8, 49.2, 0.0,31.400000000000006,4.5 +1,1,a-cure-i1,2021-22,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.8, 3.3, 4.1, 31.7, 4.1, 0.0, 56.1, 61.0, 39.0, 0.0,43.9,0.0 +1,1,a-cure-i1,2021-22,Peabody - Peabody Veterans Memorial High,02290510, 0.3, 2.2, 4.2, 21.7, 1.2, 0.0, 70.4, 48.2, 51.8, 0.1,29.599999999999994,3.5 +1,1,a-cure-i1,2021-22,Peabody - South Memorial,02290035, 0.5, 3.1, 2.8, 13.7, 4.0, 0.0, 75.8, 53.8, 46.2, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Peabody - Thomas Carroll,02290010, 0.4, 1.4, 3.6, 30.4, 1.4, 0.0, 62.7, 49.5, 50.5, 0.0,37.3,0.0 +1,1,a-cure-i1,2021-22,Peabody - West Memorial,02290045, 0.4, 2.0, 0.4, 5.6, 2.8, 0.0, 88.8, 44.4, 55.6, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Peabody - William A Welch Sr,02290027, 0.9, 1.7, 4.9, 43.6, 2.6, 0.0, 46.2, 47.1, 52.9, 0.0,53.8,0.0 +11.772575250836118,5,a-cure-i1,2021-22,Pelham - Pelham Elementary,02300005, 0.0, 2.6, 4.3, 17.1, 6.0, 0.0, 70.1, 37.6, 61.5, 0.9,29.900000000000006,22.0 +1,1,a-cure-i1,2021-22,Pembroke - Bryantville Elementary,02310003, 0.5, 0.2, 0.7, 3.2, 4.3, 0.0, 91.2, 45.1, 54.9, 0.0,8.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Pembroke - Hobomock Elementary,02310010, 0.0, 1.2, 0.2, 2.2, 2.9, 0.0, 93.4, 48.3, 51.7, 0.0,6.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Pembroke - North Pembroke Elementary,02310015, 0.2, 1.0, 1.4, 3.1, 5.0, 0.0, 89.4, 51.1, 48.9, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.5, 0.2, 0.7, 3.6, 0.0, 94.9, 46.1, 53.9, 0.0,5.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Pembroke - Pembroke High School,02310505, 0.0, 1.5, 0.4, 1.1, 1.1, 0.0, 95.8, 48.7, 50.8, 0.5,4.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.9, 0.5, 8.5, 1.9, 0.0, 88.3, 45.5, 54.5, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Pentucket - Dr John C Page School,07450015, 0.0, 1.6, 0.3, 4.5, 2.3, 0.0, 91.2, 47.4, 52.6, 0.0,8.799999999999997,1.3 +1,1,a-cure-i1,2021-22,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.2, 9.5, 3.8, 0.0, 86.4, 47.7, 52.3, 0.0,13.599999999999994,0.9 +16.326530612244902,5,a-cure-i1,2021-22,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 7.0, 2.7, 0.0, 90.2, 47.3, 52.7, 0.0,9.799999999999997,10.0 +1,1,a-cure-i1,2021-22,Pentucket - Pentucket Regional Middle,07450405, 0.3, 1.5, 0.3, 6.1, 2.4, 0.0, 89.4, 45.6, 54.4, 0.0,10.599999999999994,3.0 +1,1,a-cure-i1,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 1.7, 0.5, 6.2, 1.7, 0.2, 89.7, 48.9, 50.9, 0.2,10.299999999999997,1.5 +1,1,a-cure-i1,2021-22,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 10.6, 5.3, 0.0, 84.1, 49.6, 50.4, 0.0,15.900000000000006,0.0 +5.674523007856342,5,a-cure-i1,2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 1.4, 0.0, 0.7, 85.5, 0.7, 0.7, 10.9, 42.0, 58.0, 0.0,89.1,31.6 +6.666666666666667,5,a-cure-i1,2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.6, 1.7, 12.0, 78.3, 2.9, 0.6, 4.0, 42.9, 57.1, 0.0,96.0,40.0 +10.049586776859504,5,a-cure-i1,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 1.1, 0.0, 11.4, 84.3, 0.0, 0.0, 3.2, 51.4, 48.6, 0.0,96.8,60.8 +3.3452188006482984,3.35,a-cure-i1,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.2, 6.6, 23.6, 27.6, 2.7, 0.0, 38.3, 52.1, 47.9, 0.0,61.7,12.9 +7.772609819121445,5,a-cure-i1,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.5, 14.1, 35.9, 24.2, 2.7, 0.0, 22.6, 55.1, 44.9, 0.0,77.4,37.599999999999994 +1,1,a-cure-i1,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 3.7, 3.7, 0.5, 92.1, 53.4, 46.6, 0.0,7.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Pioneer Valley - Northfield Elementary,07500008, 0.5, 0.0, 0.0, 1.5, 4.4, 1.0, 92.6, 46.3, 53.7, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.8, 0.8, 3.0, 5.3, 0.0, 90.2, 50.2, 49.8, 0.0,9.799999999999997,4.1 +14.188099808061422,5,a-cure-i1,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 18.5, 10.0, 10.1, 13.3, 0.2, 47.9, 49.8, 50.0, 0.2,52.1,46.2 +8.590909090909092,5,a-cure-i1,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 1.0, 8.3, 19.3, 6.8, 0.0, 64.8, 65.0, 34.0, 1.0,35.2,18.900000000000002 +1,1,a-cure-i1,2021-22,Pittsfield - Allendale,02360010, 1.6, 1.6, 11.2, 17.7, 12.0, 0.0, 55.8, 45.0, 55.0, 0.0,44.2,4.7 +1,1,a-cure-i1,2021-22,Pittsfield - Crosby,02360065, 1.1, 0.0, 10.4, 33.9, 13.2, 0.0, 41.4, 48.6, 51.4, 0.0,58.6,4.0 +1,1,a-cure-i1,2021-22,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 9.5, 23.8, 23.8, 0.0, 42.9, 33.3, 66.7, 0.0,57.1,0.0 +1,1,a-cure-i1,2021-22,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 16.7, 8.3, 4.2, 0.0, 70.8, 20.8, 79.2, 0.0,29.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Pittsfield - Egremont,02360035, 0.0, 1.2, 11.1, 17.9, 9.2, 0.0, 60.7, 51.3, 48.7, 0.0,39.3,3.2 +2.4054669703872436,2.41,a-cure-i1,2021-22,Pittsfield - John T Reid Middle,02360305, 0.4, 0.9, 11.4, 17.5, 13.8, 0.0, 56.1, 46.3, 53.7, 0.0,43.9,6.6 +1,1,a-cure-i1,2021-22,Pittsfield - Morningside Community School,02360055, 0.6, 0.3, 13.6, 23.7, 17.2, 0.0, 44.7, 53.0, 46.7, 0.3,55.3,0.0 +3.8005865102639302,3.8,a-cure-i1,2021-22,Pittsfield - Pittsfield High,02360505, 0.0, 1.5, 10.3, 15.0, 7.3, 0.0, 65.9, 49.3, 50.4, 0.3,34.099999999999994,8.1 +1,1,a-cure-i1,2021-22,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.5, 1.9, 14.6, 15.5, 9.7, 0.0, 57.8, 53.4, 46.6, 0.0,42.2,0.0 +1,1,a-cure-i1,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.6, 0.6, 2.5, 10.7, 10.7, 0.0, 74.8, 52.8, 47.2, 0.0,25.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Pittsfield - Silvio O Conte Community,02360105, 0.3, 0.3, 24.2, 24.2, 15.0, 0.0, 36.1, 53.5, 46.2, 0.3,63.9,3.7 +1,1,a-cure-i1,2021-22,Pittsfield - Stearns,02360090, 0.0, 1.3, 4.8, 10.5, 7.9, 0.0, 75.4, 41.2, 58.8, 0.0,24.599999999999994,0.0 +2.9531680440771355,2.95,a-cure-i1,2021-22,Pittsfield - Taconic High,02360510, 0.2, 0.8, 13.1, 13.3, 8.8, 0.0, 63.7, 50.8, 48.9, 0.2,36.3,6.7 +3.03448275862069,3.03,a-cure-i1,2021-22,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.9, 8.9, 16.2, 7.6, 0.2, 65.2, 46.0, 53.8, 0.2,34.8,6.6000000000000005 +1,1,a-cure-i1,2021-22,Pittsfield - Williams,02360100, 0.0, 3.5, 9.2, 12.7, 6.5, 0.4, 67.7, 48.5, 51.5, 0.0,32.3,0.0 +1,1,a-cure-i1,2021-22,Plainville - Anna Ware Jackson,02380010, 0.3, 4.3, 3.3, 9.3, 6.0, 0.0, 76.7, 48.3, 51.7, 0.0,23.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Plainville - Beatrice H Wood Elementary,02380005, 0.3, 2.0, 6.2, 8.4, 4.2, 0.0, 78.9, 47.8, 52.2, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Plymouth - Cold Spring,02390005, 0.0, 2.3, 3.2, 18.7, 3.2, 0.0, 72.6, 54.8, 45.2, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Plymouth - Federal Furnace School,02390011, 0.3, 0.8, 6.7, 4.0, 6.7, 0.0, 81.5, 44.8, 55.2, 0.0,18.5,0.0 +1,1,a-cure-i1,2021-22,Plymouth - Hedge,02390010, 0.5, 0.5, 5.9, 34.8, 9.8, 0.0, 48.5, 47.1, 52.9, 0.0,51.5,0.0 +1,1,a-cure-i1,2021-22,Plymouth - Indian Brook,02390012, 0.0, 0.4, 0.7, 5.0, 4.3, 0.0, 89.7, 48.6, 51.4, 0.0,10.299999999999997,3.0 +1,1,a-cure-i1,2021-22,Plymouth - Manomet Elementary,02390015, 0.0, 0.8, 0.8, 4.0, 6.0, 0.0, 88.4, 48.2, 51.8, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 0.2, 0.4, 1.4, 10.3, 4.2, 0.0, 83.5, 46.2, 53.8, 0.0,16.5,0.0 +1,1,a-cure-i1,2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 0.1, 1.4, 3.1, 10.6, 4.8, 0.0, 80.0, 50.3, 49.7, 0.0,20.0,4.5 +1,1,a-cure-i1,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 2.1, 1.6, 7.9, 5.8, 0.0, 82.5, 32.3, 67.7, 0.0,17.5,0.0 +1,1,a-cure-i1,2021-22,Plymouth - Plymouth North High,02390505, 0.1, 1.7, 3.1, 7.5, 4.2, 0.1, 83.4, 46.8, 53.0, 0.2,16.599999999999994,2.2 +1,1,a-cure-i1,2021-22,Plymouth - Plymouth South High,02390515, 0.4, 0.4, 1.0, 4.0, 4.0, 0.0, 90.2, 46.4, 53.5, 0.1,9.799999999999997,4.3 +1,1,a-cure-i1,2021-22,Plymouth - Plymouth South Middle,02390305, 0.2, 0.0, 1.1, 4.7, 2.9, 0.3, 91.0, 47.2, 52.8, 0.0,9.0,2.1 +1,1,a-cure-i1,2021-22,Plymouth - South Elementary,02390046, 0.5, 0.9, 1.4, 4.7, 5.7, 0.3, 86.5, 46.2, 53.8, 0.0,13.5,2.6 +1,1,a-cure-i1,2021-22,Plymouth - West Elementary,02390047, 0.0, 0.9, 3.0, 6.1, 7.3, 0.3, 82.4, 46.8, 53.2, 0.0,17.599999999999994,4.1 +1,1,a-cure-i1,2021-22,Plympton - Dennett Elementary,02400010, 0.4, 0.0, 0.0, 4.1, 0.4, 0.0, 95.0, 46.5, 53.5, 0.0,5.0,0.0 +6.7368421052631575,5,a-cure-i1,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 7.5, 55.1, 22.2, 4.4, 0.2, 10.7, 50.5, 49.5, 0.0,89.3,37.599999999999994 +1,1,a-cure-i1,2021-22,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 19.9, 17.0, 11.3, 0.0, 51.8, 51.8, 48.2, 0.0,48.2,0.0 +1,1,a-cure-i1,2021-22,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.5, 9.2, 2.2, 0.0, 88.1, 49.2, 50.8, 0.0,11.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Quabbin - Hubbardston Center,07530010, 0.0, 1.3, 0.3, 5.3, 1.3, 0.0, 91.7, 46.7, 53.3, 0.0,8.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Quabbin - New Braintree Grade,07530020, 0.0, 1.4, 2.9, 7.2, 2.9, 0.0, 85.5, 40.6, 58.0, 1.4,14.5,0.0 +1,1,a-cure-i1,2021-22,Quabbin - Oakham Center,07530025, 0.0, 0.8, 1.6, 8.1, 4.1, 0.0, 85.4, 47.2, 52.8, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.8, 1.0, 5.5, 1.8, 0.0, 90.0, 55.6, 44.1, 0.3,10.0,4.6 +1,1,a-cure-i1,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0.2, 1.1, 1.1, 6.8, 2.4, 0.2, 88.2, 51.6, 48.2, 0.2,11.799999999999997,0.7 +1,1,a-cure-i1,2021-22,Quabbin - Ruggles Lane,07530030, 0.0, 1.0, 2.3, 4.3, 3.8, 0.3, 88.3, 46.2, 53.8, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 0.3, 0.3, 0.9, 8.5, 4.7, 0.0, 85.3, 49.9, 49.3, 0.9,14.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.5, 5.0, 6.5, 0.0, 88.0, 51.0, 49.0, 0.0,12.0,0.0 +1,1,a-cure-i1,2021-22,Quaboag Regional - Warren Elementary,07780005, 0.3, 0.3, 1.4, 8.5, 3.7, 0.0, 85.8, 49.3, 50.7, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 1.2, 0.8, 8.1, 5.3, 0.0, 84.6, 48.6, 51.0, 0.4,15.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 40.4, 8.8, 10.3, 9.6, 0.0, 30.9, 32.4, 67.6, 0.0,69.1,0.0 +1,1,a-cure-i1,2021-22,Quincy - Atherton Hough,02430040, 0.4, 14.5, 4.7, 6.7, 5.1, 0.4, 68.2, 40.0, 60.0, 0.0,31.799999999999997,1.0 +2.709117221418235,2.71,a-cure-i1,2021-22,Quincy - Atlantic Middle,02430305, 0.2, 53.4, 5.0, 7.7, 2.7, 0.2, 30.9, 47.4, 52.6, 0.0,69.1,11.700000000000001 +1.7245508982035929,1.72,a-cure-i1,2021-22,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 59.5, 2.9, 3.2, 0.9, 0.3, 33.2, 49.6, 50.4, 0.0,66.8,7.2 +1,1,a-cure-i1,2021-22,Quincy - Broad Meadows Middle,02430310, 0.3, 19.6, 9.2, 11.3, 2.8, 0.0, 56.9, 48.0, 52.0, 0.0,43.1,2.6 +1,1,a-cure-i1,2021-22,Quincy - Central Middle,02430315, 0.0, 44.0, 3.4, 4.8, 3.0, 0.6, 44.1, 47.6, 52.3, 0.2,55.9,0.0 +1,1,a-cure-i1,2021-22,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 31.2, 2.7, 5.9, 5.9, 0.0, 54.3, 49.0, 51.0, 0.0,45.7,2.8 +1,1,a-cure-i1,2021-22,Quincy - Clifford H Marshall Elementary,02430055, 0.2, 41.7, 15.7, 14.4, 3.0, 0.2, 24.8, 54.9, 45.1, 0.0,75.2,0.0 +4.2310654685494224,4.23,a-cure-i1,2021-22,Quincy - Francis W Parker,02430075, 0.0, 67.2, 5.2, 3.9, 1.6, 0.0, 22.1, 46.4, 53.6, 0.0,77.9,20.6 +1.2705882352941178,1.27,a-cure-i1,2021-22,Quincy - Lincoln-Hancock Community School,02430035, 0.8, 37.3, 9.9, 13.0, 6.9, 0.2, 32.0, 51.6, 48.4, 0.0,68.0,5.4 +2.0725388601036268,2.07,a-cure-i1,2021-22,Quincy - Merrymount,02430060, 0.0, 24.4, 4.0, 4.3, 5.2, 0.6, 61.4, 48.5, 51.5, 0.0,38.6,5.0 +1.1139240506329113,1.11,a-cure-i1,2021-22,Quincy - Montclair,02430065, 0.0, 64.2, 3.5, 6.2, 5.1, 0.0, 21.0, 49.0, 51.0, 0.0,79.0,5.5 +2.8693009118541037,2.87,a-cure-i1,2021-22,Quincy - North Quincy High,02430510, 0.2, 53.5, 3.8, 4.4, 3.6, 0.3, 34.2, 46.7, 53.3, 0.1,65.8,11.8 +1.4078212290502794,1.41,a-cure-i1,2021-22,Quincy - Point Webster Middle,02430325, 0.5, 35.8, 14.4, 15.4, 4.2, 1.2, 28.4, 47.8, 52.0, 0.2,71.6,6.3 +3.04,3.04,a-cure-i1,2021-22,Quincy - Quincy High,02430505, 0.3, 21.4, 12.8, 11.3, 3.8, 0.3, 50.0, 49.0, 50.9, 0.1,50.0,9.5 +1,1,a-cure-i1,2021-22,Quincy - Snug Harbor Community School,02430090, 0.3, 33.6, 12.6, 14.4, 5.5, 0.0, 33.6, 41.2, 58.8, 0.0,66.4,0.6 +1,1,a-cure-i1,2021-22,Quincy - South West Middle School,02430320, 0.5, 25.0, 16.7, 15.8, 6.4, 0.5, 35.1, 42.2, 57.6, 0.2,64.9,0.0 +1,1,a-cure-i1,2021-22,Quincy - Squantum,02430095, 0.3, 29.2, 6.1, 6.4, 3.3, 0.0, 54.7, 47.5, 52.5, 0.0,45.3,0.0 +1,1,a-cure-i1,2021-22,Quincy - Wollaston School,02430110, 0.0, 62.1, 3.0, 2.1, 1.8, 0.0, 30.9, 46.4, 53.6, 0.0,69.1,0.0 +6.608695652173915,5,a-cure-i1,2021-22,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.2, 1.3, 1.6, 7.0, 3.8, 0.0, 86.2, 48.7, 51.0, 0.4,13.799999999999997,5.7 +4.957746478873239,4.96,a-cure-i1,2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 0.3, 10.9, 49.3, 15.1, 8.9, 0.7, 14.8, 46.4, 53.6, 0.0,85.2,26.4 +1.5169300225733635,1.52,a-cure-i1,2021-22,Randolph - J F Kennedy Elementary,02440018, 0.3, 13.0, 55.4, 14.8, 4.9, 0.3, 11.4, 47.7, 52.3, 0.0,88.6,8.4 +4.039517014270033,4.04,a-cure-i1,2021-22,Randolph - Margaret L Donovan,02440015, 0.5, 21.2, 49.4, 16.0, 4.0, 0.0, 8.9, 51.1, 48.6, 0.2,91.1,23.0 +1.0278787878787878,1.03,a-cure-i1,2021-22,Randolph - Martin E Young Elementary,02440040, 0.8, 10.4, 47.5, 19.6, 4.2, 0.0, 17.5, 50.8, 49.2, 0.0,82.5,5.3 +3.836363636363636,3.84,a-cure-i1,2021-22,Randolph - Randolph Community Middle,02440410, 0.2, 19.1, 50.2, 15.2, 3.2, 0.2, 12.0, 49.1, 50.9, 0.0,88.0,21.099999999999998 +3.273522975929978,3.27,a-cure-i1,2021-22,Randolph - Randolph High,02440505, 0.0, 21.5, 48.3, 17.2, 4.3, 0.0, 8.6, 41.4, 58.6, 0.0,91.4,18.7 +1,1,a-cure-i1,2021-22,Reading - Alice M Barrows,02460002, 0.0, 5.1, 2.3, 4.0, 1.7, 0.0, 86.9, 49.0, 51.0, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Reading - Arthur W Coolidge Middle,02460305, 0.0, 3.2, 1.2, 2.0, 1.2, 0.0, 92.4, 43.1, 56.7, 0.2,7.599999999999994,3.6 +1,1,a-cure-i1,2021-22,Reading - Birch Meadow,02460005, 0.0, 5.0, 2.7, 3.6, 3.0, 0.0, 85.8, 47.2, 52.8, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Reading - J Warren Killam,02460017, 0.0, 7.4, 3.2, 3.4, 1.2, 0.0, 84.8, 47.2, 52.8, 0.0,15.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Reading - Joshua Eaton,02460010, 0.3, 8.0, 1.6, 8.8, 4.0, 0.0, 77.3, 48.5, 51.5, 0.0,22.700000000000003,4.8 +1,1,a-cure-i1,2021-22,Reading - Reading Memorial High,02460505, 0.1, 5.4, 2.6, 2.6, 2.3, 0.1, 86.9, 48.3, 51.5, 0.2,13.099999999999994,1.1 +1,1,a-cure-i1,2021-22,Reading - RISE PreSchool,02460001, 0.0, 6.9, 3.9, 3.9, 9.8, 0.0, 75.5, 35.3, 64.7, 0.0,24.5,0.0 +1,1,a-cure-i1,2021-22,Reading - Walter S Parker Middle,02460310, 0.0, 4.1, 3.3, 3.9, 4.5, 0.0, 84.1, 52.4, 47.2, 0.4,15.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Reading - Wood End Elementary School,02460020, 0.0, 3.2, 2.0, 4.0, 2.8, 0.0, 87.9, 49.6, 50.4, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Revere - A. C. Whelan Elementary School,02480003, 0.3, 3.9, 2.7, 53.9, 1.9, 0.0, 37.5, 48.3, 51.7, 0.0,62.5,2.0 +2.146964856230032,2.15,a-cure-i1,2021-22,Revere - Abraham Lincoln,02480025, 0.5, 2.8, 3.3, 53.8, 2.1, 0.0, 37.4, 52.4, 47.6, 0.0,62.6,8.4 +1,1,a-cure-i1,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 2.4, 6.1, 51.5, 1.4, 0.0, 38.6, 43.1, 56.9, 0.0,61.4,0.0 +1,1,a-cure-i1,2021-22,Revere - Garfield Elementary School,02480056, 0.1, 5.3, 3.1, 67.0, 1.0, 0.0, 23.5, 52.0, 47.8, 0.1,76.5,3.6 +3.3265007320644218,3.33,a-cure-i1,2021-22,Revere - Garfield Middle School,02480057, 0.4, 3.9, 3.2, 59.3, 1.5, 0.0, 31.7, 47.6, 52.4, 0.0,68.3,14.2 +1,1,a-cure-i1,2021-22,Revere - Paul Revere,02480050, 0.2, 6.0, 3.9, 51.9, 1.9, 0.2, 35.8, 51.9, 48.1, 0.0,64.2,0.0 +2.841958041958042,2.84,a-cure-i1,2021-22,Revere - Revere High,02480505, 0.4, 4.8, 4.0, 60.7, 1.6, 0.1, 28.5, 49.3, 50.6, 0.1,71.5,12.7 +2.2103610675039245,2.21,a-cure-i1,2021-22,Revere - Rumney Marsh Academy,02480014, 0.2, 4.8, 3.3, 54.0, 1.2, 0.2, 36.3, 43.3, 56.7, 0.0,63.7,8.799999999999999 +1,1,a-cure-i1,2021-22,Revere - Seacoast School,02480520, 0.0, 0.0, 5.7, 67.1, 8.6, 0.0, 18.6, 38.6, 60.0, 1.4,81.4,0.0 +1,1,a-cure-i1,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.2, 3.9, 3.3, 69.6, 1.3, 0.0, 21.8, 48.7, 51.3, 0.0,78.2,3.5 +1,1,a-cure-i1,2021-22,Revere - Susan B. Anthony Middle School,02480305, 0.2, 2.3, 4.3, 62.6, 0.9, 0.0, 29.8, 55.7, 44.3, 0.0,70.2,4.6 +1,1,a-cure-i1,2021-22,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.6, 6.4, 7.0, 0.0, 86.0, 51.0, 49.0, 0.0,14.0,2.0 +17.813333333333336,5,a-cure-i1,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.1, 1.7, 1.1, 4.3, 6.9, 0.0, 85.0, 49.9, 49.8, 0.3,15.0,16.700000000000003 +1,1,a-cure-i1,2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 1.0, 1.0, 6.6, 4.5, 0.0, 86.5, 52.8, 47.2, 0.0,13.5,0.0 +1,1,a-cure-i1,2021-22,Rochester - Rochester Memorial,02500005, 0.0, 0.4, 0.4, 2.9, 3.5, 0.0, 92.8, 48.4, 51.6, 0.0,7.200000000000003,3.2 +1,1,a-cure-i1,2021-22,Rockland - Jefferson Elementary School,02510060, 0.0, 1.3, 4.8, 20.3, 5.3, 0.0, 68.3, 48.5, 51.5, 0.0,31.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Rockland - John W Rogers Middle,02510305, 0.0, 1.4, 6.3, 18.9, 3.1, 0.0, 70.4, 48.6, 51.4, 0.0,29.599999999999994,2.5 +1,1,a-cure-i1,2021-22,Rockland - Memorial Park,02510020, 0.0, 0.8, 2.9, 20.8, 5.8, 0.0, 69.6, 50.8, 49.2, 0.0,30.400000000000006,0.0 +4.024539877300614,4.02,a-cure-i1,2021-22,Rockland - R Stewart Esten,02510025, 0.0, 0.9, 8.2, 18.5, 5.0, 0.0, 67.4, 45.8, 54.2, 0.0,32.599999999999994,8.2 +3.6794425087108014,3.68,a-cure-i1,2021-22,Rockland - Rockland Senior High,02510505, 0.0, 1.3, 6.5, 16.8, 4.0, 0.0, 71.3, 49.2, 50.8, 0.0,28.700000000000003,6.6000000000000005 +1,1,a-cure-i1,2021-22,Rockport - Rockport Elementary,02520005, 0.0, 1.6, 0.6, 2.6, 3.2, 0.0, 92.0, 48.1, 51.9, 0.0,8.0,0.0 +1,1,a-cure-i1,2021-22,Rockport - Rockport High,02520510, 0.0, 1.3, 1.3, 5.2, 2.6, 0.4, 89.2, 44.2, 55.8, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Rockport - Rockport Middle,02520305, 0.0, 2.4, 0.0, 2.9, 1.5, 0.0, 93.2, 45.9, 54.1, 0.0,6.799999999999997,0.0 +10.112554112554115,5,a-cure-i1,2021-22,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.5, 4.6, 16.9, 0.0, 76.9, 44.6, 55.4, 0.0,23.099999999999994,14.6 +6.47118301314459,5,a-cure-i1,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.2, 0.7, 56.3, 40.6, 1.2, 0.1, 1.1, 46.7, 53.3, 0.0,98.9,40.0 +1,1,a-cure-i1,2021-22,Salem - Bates,02580003, 0.0, 0.8, 5.6, 36.2, 4.2, 0.0, 53.1, 50.0, 50.0, 0.0,46.9,4.0 +6.645241038318912,5,a-cure-i1,2021-22,Salem - Bentley Academy Innovation School,02580010, 0.0, 1.9, 11.1, 65.3, 2.5, 0.0, 19.1, 47.1, 52.9, 0.0,80.9,33.6 +1,1,a-cure-i1,2021-22,Salem - Carlton,02580015, 0.0, 0.8, 3.0, 31.4, 6.4, 0.0, 58.5, 50.8, 49.2, 0.0,41.5,0.0 +5.132075471698113,5,a-cure-i1,2021-22,Salem - Collins Middle,02580305, 0.0, 2.4, 6.3, 45.5, 4.1, 0.0, 41.7, 51.8, 48.2, 0.0,58.3,18.7 +1,1,a-cure-i1,2021-22,Salem - Horace Mann Laboratory,02580030, 0.0, 3.4, 6.8, 44.4, 3.1, 0.0, 42.3, 51.9, 48.1, 0.0,57.7,1.3 +9.767284991568298,5,a-cure-i1,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 3.7, 50.0, 5.6, 0.0, 40.7, 64.8, 33.3, 1.9,59.3,36.2 +1,1,a-cure-i1,2021-22,Salem - Salem Early Childhood,02580001, 0.0, 4.5, 12.7, 30.9, 1.8, 0.0, 50.0, 35.5, 64.5, 0.0,50.0,0.0 +2.2337662337662336,2.23,a-cure-i1,2021-22,Salem - Salem High,02580505, 0.1, 2.9, 6.2, 48.1, 4.4, 0.0, 38.4, 44.3, 55.4, 0.2,61.6,8.6 +1,1,a-cure-i1,2021-22,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 35.3, 11.8, 0.0, 52.9, 35.3, 64.7, 0.0,47.1,0.0 +1,1,a-cure-i1,2021-22,Salem - Saltonstall School,02580050, 0.0, 1.1, 5.8, 40.2, 4.8, 0.0, 48.1, 50.8, 49.2, 0.0,51.9,0.0 +1,1,a-cure-i1,2021-22,Salem - Witchcraft Heights,02580070, 0.0, 3.8, 7.2, 37.8, 3.6, 0.0, 47.6, 47.4, 52.6, 0.0,52.4,0.0 +3.324364723467862,3.32,a-cure-i1,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 5.9, 11.3, 47.9, 1.8, 0.0, 33.1, 50.7, 49.1, 0.2,66.9,13.9 +1,1,a-cure-i1,2021-22,Sandwich - Forestdale School,02610002, 0.5, 2.9, 1.1, 5.7, 2.7, 0.4, 86.7, 47.5, 52.5, 0.0,13.299999999999997,0.0 +11.169811320754723,5,a-cure-i1,2021-22,Sandwich - Oak Ridge,02610025, 0.3, 2.6, 1.1, 5.2, 1.1, 0.4, 89.4, 49.5, 50.5, 0.0,10.599999999999994,7.4 +1,1,a-cure-i1,2021-22,Sandwich - Sandwich High,02610505, 0.5, 1.8, 0.7, 2.0, 1.3, 0.2, 93.6, 51.1, 48.6, 0.3,6.400000000000006,3.1 +12.857142857142854,5,a-cure-i1,2021-22,Sandwich - Sandwich STEM Academy,02610305, 0.8, 2.5, 2.8, 3.6, 1.5, 0.0, 88.8, 50.9, 49.1, 0.0,11.200000000000003,9.0 +1,1,a-cure-i1,2021-22,Saugus - Belmonte STEAM Academy,02620060, 1.3, 6.4, 4.2, 25.9, 3.7, 0.3, 58.2, 48.1, 51.9, 0.0,41.8,0.0 +3.6032171581769443,3.6,a-cure-i1,2021-22,Saugus - Saugus High,02620505, 0.4, 4.6, 5.6, 24.6, 1.7, 0.3, 62.7, 49.0, 50.9, 0.1,37.3,8.4 +1,1,a-cure-i1,2021-22,Saugus - Saugus Middle School,02620305, 1.0, 5.8, 5.4, 28.1, 3.1, 0.2, 56.4, 47.0, 52.8, 0.2,43.6,0.0 +1,1,a-cure-i1,2021-22,Saugus - Veterans Early Learning Center,02620065, 0.3, 8.3, 5.1, 24.1, 3.5, 0.5, 58.2, 44.0, 56.0, 0.0,41.8,3.4 +1,1,a-cure-i1,2021-22,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 96.1, 47.1, 52.9, 0.0,3.9000000000000057,0.0 +1,1,a-cure-i1,2021-22,Scituate - Cushing Elementary,02640007, 0.0, 0.9, 0.9, 1.6, 3.4, 0.3, 92.8, 52.6, 47.4, 0.0,7.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Scituate - Gates Middle School,02640305, 0.2, 0.8, 3.2, 3.7, 3.5, 0.0, 88.6, 44.5, 55.2, 0.3,11.400000000000006,2.2 +1,1,a-cure-i1,2021-22,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 2.0, 1.6, 2.0, 0.0, 94.3, 45.5, 54.5, 0.0,5.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 3.3, 2.7, 4.8, 0.0, 89.1, 51.5, 48.5, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Scituate - Scituate High School,02640505, 0.0, 1.4, 2.2, 1.6, 1.5, 0.0, 93.3, 51.3, 48.5, 0.2,6.700000000000003,2.9000000000000004 +1,1,a-cure-i1,2021-22,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.2, 2.2, 2.7, 0.0, 94.0, 50.1, 49.9, 0.0,6.0,0.0 +4.800000000000001,4.8,a-cure-i1,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 4.0, 4.0, 6.0, 4.0, 0.0, 82.0, 51.0, 48.6, 0.4,18.0,5.4 +1,1,a-cure-i1,2021-22,Seekonk - George R Martin,02650007, 0.0, 3.3, 2.9, 7.4, 4.1, 0.0, 82.3, 56.1, 43.9, 0.0,17.700000000000003,0.0 +7.064935064935062,5,a-cure-i1,2021-22,Seekonk - Mildred Aitken School,02650015, 0.0, 3.3, 1.6, 6.6, 3.8, 0.0, 84.6, 45.6, 54.4, 0.0,15.400000000000006,6.8 +1,1,a-cure-i1,2021-22,Seekonk - Seekonk High,02650505, 0.0, 3.4, 2.7, 5.8, 3.9, 0.2, 84.1, 46.4, 53.3, 0.3,15.900000000000006,2.3 +1,1,a-cure-i1,2021-22,Sharon - Cottage Street,02660005, 0.2, 24.4, 6.0, 8.6, 9.1, 0.0, 51.7, 49.4, 50.6, 0.0,48.3,1.3 +1,1,a-cure-i1,2021-22,Sharon - East Elementary,02660010, 0.0, 28.1, 4.3, 5.8, 9.9, 0.0, 51.9, 48.3, 51.4, 0.2,48.1,4.6 +1,1,a-cure-i1,2021-22,Sharon - Heights Elementary,02660015, 0.2, 31.1, 6.0, 5.2, 7.1, 0.0, 50.5, 51.0, 49.0, 0.0,49.5,4.5 +1,1,a-cure-i1,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 32.0, 2.0, 8.0, 12.0, 0.0, 46.0, 40.0, 60.0, 0.0,54.0,0.0 +1,1,a-cure-i1,2021-22,Sharon - Sharon High,02660505, 0.1, 29.1, 5.2, 5.4, 4.7, 0.1, 55.5, 48.3, 51.6, 0.1,44.5,4.9 +1,1,a-cure-i1,2021-22,Sharon - Sharon Middle,02660305, 0.1, 32.6, 6.1, 6.2, 6.8, 0.1, 48.1, 47.6, 52.2, 0.2,51.9,1.5 +1,1,a-cure-i1,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.2, 0.9, 1.1, 6.5, 1.7, 0.1, 89.5, 39.0, 60.7, 0.2,10.5,0.2 +4.8141592920353995,4.81,a-cure-i1,2021-22,Sherborn - Pine Hill,02690010, 0.0, 8.4, 3.2, 3.5, 7.4, 0.0, 77.4, 52.4, 47.6, 0.0,22.599999999999994,6.8 +1,1,a-cure-i1,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 29.8, 5.1, 18.4, 2.7, 0.0, 43.9, 51.4, 48.6, 0.0,56.1,0.0 +1,1,a-cure-i1,2021-22,Shrewsbury - Floral Street School,02710020, 2.0, 53.5, 3.3, 5.7, 5.9, 0.0, 29.5, 46.1, 53.9, 0.0,70.5,2.9 +1.9377162629757787,1.94,a-cure-i1,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 1.2, 38.8, 3.3, 10.3, 4.3, 0.0, 42.2, 47.3, 52.7, 0.0,57.8,7.0 +2.65625,2.66,a-cure-i1,2021-22,Shrewsbury - Oak Middle School,02710030, 0.6, 32.7, 3.0, 9.9, 5.0, 0.0, 48.8, 50.8, 49.1, 0.1,51.2,8.5 +1,1,a-cure-i1,2021-22,Shrewsbury - Parker Road Preschool,02710040, 1.8, 37.8, 6.1, 6.7, 7.9, 0.0, 39.6, 34.8, 65.2, 0.0,60.4,0.0 +1.889087656529517,1.89,a-cure-i1,2021-22,Shrewsbury - Sherwood Middle School,02710305, 0.5, 38.2, 3.3, 9.9, 4.0, 0.0, 44.1, 46.5, 53.5, 0.0,55.9,6.6 +2.4,2.4,a-cure-i1,2021-22,Shrewsbury - Shrewsbury High School,02710505, 0.3, 28.7, 3.6, 9.6, 3.8, 0.0, 54.0, 53.5, 46.5, 0.0,46.0,6.8999999999999995 +1,1,a-cure-i1,2021-22,Shrewsbury - Spring Street School,02710035, 0.0, 27.6, 2.0, 4.0, 6.4, 0.0, 59.9, 50.2, 49.8, 0.0,40.1,0.0 +1,1,a-cure-i1,2021-22,Shrewsbury - Walter J. Paton School,02710025, 0.6, 15.1, 3.2, 9.9, 7.1, 0.0, 64.1, 51.0, 49.0, 0.0,35.900000000000006,0.0 +16.67878787878788,5,a-cure-i1,2021-22,Shutesbury - Shutesbury Elementary,02720005, 0.9, 0.0, 0.9, 11.3, 3.5, 0.0, 83.5, 54.8, 45.2, 0.0,16.5,17.2 +1,1,a-cure-i1,2021-22,Silver Lake - Silver Lake Regional High,07600505, 0.3, 0.9, 1.5, 2.8, 1.1, 0.0, 93.4, 46.1, 53.7, 0.2,6.599999999999994,1.4 +1,1,a-cure-i1,2021-22,Silver Lake - Silver Lake Regional Middle School,07600405, 0.8, 0.6, 0.8, 4.5, 1.4, 0.0, 91.9, 50.1, 49.5, 0.4,8.099999999999994,0.0 +4.0719794344473,4.07,a-cure-i1,2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.6, 2.0, 9.1, 24.0, 3.1, 0.0, 61.1, 47.4, 51.7, 0.9,38.9,9.899999999999999 +1,1,a-cure-i1,2021-22,Somerset - Chace Street,02730005, 0.0, 3.0, 0.3, 4.6, 2.1, 0.0, 89.9, 47.6, 52.4, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Somerset - North Elementary,02730008, 0.0, 1.3, 0.9, 4.3, 4.7, 0.0, 88.9, 46.5, 53.5, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Somerset - Somerset Middle School,02730305, 0.2, 1.9, 0.7, 7.4, 3.5, 0.0, 86.3, 47.8, 52.2, 0.0,13.700000000000003,2.6 +1,1,a-cure-i1,2021-22,Somerset - South,02730015, 0.8, 2.3, 1.2, 6.6, 3.5, 0.0, 85.7, 48.3, 51.7, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.2, 1.0, 1.3, 5.3, 1.3, 0.1, 90.8, 50.2, 49.7, 0.1,9.200000000000003,1.4 +2.9119373776908026,2.91,a-cure-i1,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.4, 8.1, 5.5, 31.3, 5.7, 0.2, 48.9, 48.9, 51.1, 0.0,51.1,9.3 +9.079889807162536,5,a-cure-i1,2021-22,Somerville - Arthur D Healey,02740075, 0.2, 4.4, 15.8, 48.6, 3.5, 0.2, 27.4, 48.8, 51.0, 0.2,72.6,41.2 +1,1,a-cure-i1,2021-22,Somerville - Benjamin G Brown,02740015, 0.0, 12.7, 6.1, 7.7, 14.4, 0.0, 59.1, 61.3, 38.7, 0.0,40.9,4.4 +1.3937282229965158,1.39,a-cure-i1,2021-22,Somerville - Capuano Early Childhood Center,02740005, 0.0, 7.7, 10.3, 29.2, 10.3, 0.0, 42.6, 47.7, 52.3, 0.0,57.4,5.0 +4.015209125475285,4.02,a-cure-i1,2021-22,Somerville - E Somerville Community,02740111, 0.0, 3.7, 4.4, 68.1, 2.4, 0.1, 21.1, 43.9, 55.8, 0.3,78.9,19.8 +1,1,a-cure-i1,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 19.2, 46.2, 3.8, 0.0, 30.8, 34.6, 65.4, 0.0,69.2,0.0 +11.148387096774194,5,a-cure-i1,2021-22,Somerville - John F Kennedy,02740083, 0.2, 5.3, 4.6, 14.7, 6.2, 0.0, 69.0, 46.3, 53.4, 0.2,31.0,21.6 +1,1,a-cure-i1,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 27.8, 55.6, 5.6, 0.0, 11.1, 22.2, 77.8, 0.0,88.9,0.0 +4.691729323308271,4.69,a-cure-i1,2021-22,Somerville - Somerville High,02740505, 0.2, 5.8, 10.9, 47.3, 2.1, 0.2, 33.5, 48.3, 51.3, 0.4,66.5,19.500000000000004 +1,1,a-cure-i1,2021-22,Somerville - West Somerville Neighborhood,02740115, 0.0, 5.7, 11.3, 11.6, 11.1, 0.5, 59.8, 48.8, 50.9, 0.3,40.2,4.9 +2.2824207492795385,2.28,a-cure-i1,2021-22,Somerville - Winter Hill Community,02740120, 0.0, 4.8, 11.5, 51.2, 1.7, 0.2, 30.6, 42.8, 56.9, 0.2,69.4,9.899999999999999 +1,1,a-cure-i1,2021-22,South Hadley - Michael E. Smith Middle School,02780305, 0.2, 1.7, 1.7, 18.1, 1.5, 0.0, 76.9, 48.1, 51.9, 0.0,23.099999999999994,0.0 +8.444444444444445,5,a-cure-i1,2021-22,South Hadley - Mosier,02780020, 0.0, 1.8, 1.5, 18.8, 3.1, 0.0, 74.8, 51.7, 48.3, 0.0,25.200000000000003,13.3 +1,1,a-cure-i1,2021-22,South Hadley - Plains Elementary,02780015, 0.3, 1.4, 0.7, 16.4, 4.2, 0.0, 76.9, 45.8, 54.2, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2021-22,South Hadley - South Hadley High,02780505, 0.0, 2.2, 1.8, 14.9, 2.4, 0.0, 78.8, 52.4, 47.5, 0.2,21.200000000000003,1.7 +2.117202268431002,2.12,a-cure-i1,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 2.1, 1.6, 4.7, 41.4, 3.1, 0.0, 47.1, 42.1, 57.2, 0.7,52.9,7.0 +3.194295900178253,3.19,a-cure-i1,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.4, 7.0, 35.9, 6.9, 5.9, 0.0, 43.9, 49.2, 50.4, 0.4,56.1,11.200000000000001 +1,1,a-cure-i1,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.3, 0.8, 2.7, 5.0, 1.2, 0.0, 89.9, 32.7, 67.2, 0.2,10.099999999999994,2.0 +1,1,a-cure-i1,2021-22,Southampton - William E Norris,02750005, 0.0, 1.5, 0.2, 6.2, 4.1, 0.0, 88.0, 47.0, 53.0, 0.0,12.0,0.0 +1,1,a-cure-i1,2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 18.6, 1.9, 4.8, 5.2, 0.0, 69.5, 46.5, 53.5, 0.0,30.5,0.0 +4.986301369863013,4.99,a-cure-i1,2021-22,Southborough - Margaret A Neary,02760020, 0.4, 17.7, 0.4, 3.8, 6.9, 0.0, 70.8, 48.1, 51.5, 0.4,29.200000000000003,9.1 +1,1,a-cure-i1,2021-22,Southborough - Mary E Finn School,02760008, 0.3, 28.7, 2.1, 7.2, 2.1, 0.3, 59.4, 51.0, 49.0, 0.0,40.6,0.0 +2.7062314540059345,2.71,a-cure-i1,2021-22,Southborough - P Brent Trottier,02760305, 0.0, 21.4, 1.8, 5.5, 5.0, 0.0, 66.3, 49.9, 50.1, 0.0,33.7,5.7 +1.2326656394453004,1.23,a-cure-i1,2021-22,Southbridge - Charlton Street,02770005, 0.4, 1.8, 2.1, 59.2, 0.7, 0.7, 35.1, 52.1, 47.9, 0.0,64.9,5.0 +2.4958217270194987,2.5,a-cure-i1,2021-22,Southbridge - Eastford Road,02770010, 0.0, 0.6, 1.6, 66.5, 2.8, 0.3, 28.2, 44.2, 55.8, 0.0,71.8,11.2 +3.7221324717285946,3.72,a-cure-i1,2021-22,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 2.4, 57.1, 2.4, 0.0, 38.1, 33.3, 66.7, 0.0,61.9,14.4 +3.545582047685835,3.55,a-cure-i1,2021-22,Southbridge - Southbridge High School,02770515, 0.0, 1.6, 2.9, 65.5, 1.1, 0.2, 28.7, 46.0, 54.0, 0.0,71.3,15.8 +4.498480243161095,4.5,a-cure-i1,2021-22,Southbridge - Southbridge Middle School,02770315, 0.2, 1.2, 1.5, 59.7, 3.2, 0.0, 34.2, 48.9, 51.1, 0.0,65.8,18.5 +1,1,a-cure-i1,2021-22,Southbridge - West Street,02770020, 0.0, 1.0, 1.0, 70.5, 1.6, 0.0, 26.0, 50.6, 49.4, 0.0,74.0,0.0 +2.9844559585492227,2.98,a-cure-i1,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 1.2, 37.4, 14.3, 5.0, 0.0, 42.1, 52.8, 46.9, 0.3,57.9,10.799999999999999 +7.672514619883043,5,a-cure-i1,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 0.3, 0.3, 1.6, 9.5, 5.3, 0.0, 82.9, 48.4, 51.3, 0.3,17.099999999999994,8.2 +36.74725274725277,5,a-cure-i1,2021-22,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 6.1, 3.0, 0.0, 90.9, 45.5, 54.5, 0.0,9.099999999999994,20.900000000000002 +Infinity,5,a-cure-i1,2021-22,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 69.2, 30.8, 0.0,0.0,7.1 +1,1,a-cure-i1,2021-22,Southern Berkshire - Undermountain,07650035, 0.8, 0.0, 0.4, 11.2, 3.6, 0.0, 84.0, 53.6, 46.4, 0.0,16.0,3.3 +1,1,a-cure-i1,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.1, 1.0, 1.1, 10.7, 3.0, 0.0, 84.1, 42.3, 57.5, 0.2,15.900000000000006,2.7 +1,1,a-cure-i1,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.3, 0.8, 1.0, 5.9, 2.8, 0.0, 89.3, 49.0, 51.0, 0.0,10.700000000000003,0.0 +15.030303030303022,5,a-cure-i1,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.3, 1.2, 1.7, 4.7, 2.0, 0.0, 90.1, 52.3, 47.6, 0.2,9.900000000000006,9.3 +1,1,a-cure-i1,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 1.3, 1.9, 4.5, 3.6, 0.0, 88.7, 47.2, 52.8, 0.0,11.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Spencer-E Brookfield - David Prouty High,07670505, 0.6, 2.3, 3.8, 16.3, 5.0, 0.0, 72.0, 46.1, 53.9, 0.0,28.0,0.0 +1,1,a-cure-i1,2021-22,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 2.6, 10.1, 3.5, 0.0, 83.7, 47.6, 52.4, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 1.2, 2.0, 17.4, 4.2, 0.0, 75.2, 45.3, 54.4, 0.2,24.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 1.2, 2.6, 19.9, 3.4, 0.0, 72.9, 44.4, 55.4, 0.2,27.099999999999994,0.0 +2.304921968787515,2.3,a-cure-i1,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 21.5, 56.1, 5.8, 0.0, 16.7, 56.6, 43.4, 0.0,83.3,12.0 +0.9464285714285715,1,a-cure-i1,2021-22,Springfield - Alice B Beal Elementary,02810175, 0.0, 10.4, 19.3, 55.2, 4.6, 0.0, 10.4, 47.9, 52.1, 0.0,89.6,5.3 +1,1,a-cure-i1,2021-22,Springfield - Arthur T Talmadge,02810165, 0.0, 1.0, 20.9, 64.6, 4.9, 0.0, 8.7, 45.1, 54.9, 0.0,91.3,0.0 +3.5077559462254397,3.51,a-cure-i1,2021-22,Springfield - Brightwood,02810025, 0.0, 0.0, 11.1, 85.3, 0.2, 0.0, 3.3, 49.9, 50.1, 0.0,96.7,21.200000000000003 +12.679589509692132,5,a-cure-i1,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 3.7, 17.9, 64.5, 1.7, 0.0, 12.3, 43.5, 56.5, 0.0,87.7,69.5 +8.099210822998872,5,a-cure-i1,2021-22,Springfield - Conservatory of the Arts,02810475, 0.0, 0.6, 16.7, 69.2, 1.9, 0.3, 11.3, 70.8, 28.3, 0.9,88.7,44.9 +3.0806257521058966,3.08,a-cure-i1,2021-22,Springfield - Daniel B Brunton,02810035, 0.0, 1.0, 19.6, 59.4, 3.1, 0.0, 16.9, 47.8, 52.2, 0.0,83.1,16.0 +3.24487594390507,3.24,a-cure-i1,2021-22,Springfield - Early Childhood Education Center,02810001, 0.0, 1.3, 21.2, 60.9, 8.6, 0.7, 7.3, 37.7, 62.3, 0.0,92.7,18.8 +2.444444444444444,2.44,a-cure-i1,2021-22,Springfield - Edward P. Boland School,02810010, 0.0, 2.0, 10.7, 78.5, 2.4, 0.0, 6.4, 44.7, 55.3, 0.0,93.6,14.299999999999999 +5.983333333333334,5,a-cure-i1,2021-22,Springfield - Elias Brookings,02810030, 0.3, 0.0, 21.4, 72.9, 1.3, 0.0, 4.0, 49.8, 50.2, 0.0,96.0,35.900000000000006 +3.5155412647374065,3.52,a-cure-i1,2021-22,Springfield - Emergence Academy,02810318, 0.0, 2.2, 15.6, 75.6, 0.0, 0.0, 6.7, 57.8, 42.2, 0.0,93.3,20.5 +1.3023255813953487,1.3,a-cure-i1,2021-22,Springfield - Forest Park Middle,02810325, 0.0, 4.4, 21.5, 65.2, 3.5, 0.0, 5.4, 47.9, 52.1, 0.0,94.6,7.699999999999999 +6.791111111111111,5,a-cure-i1,2021-22,Springfield - Frank H Freedman,02810075, 0.8, 2.1, 21.6, 59.3, 6.2, 0.0, 10.0, 50.6, 49.4, 0.0,90.0,38.2 +2.308068459657702,2.31,a-cure-i1,2021-22,Springfield - Frederick Harris,02810080, 0.7, 4.3, 17.9, 52.3, 6.6, 0.0, 18.2, 48.1, 51.9, 0.0,81.8,11.8 +18.867924528301888,5,a-cure-i1,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 12.1, 72.7, 0.0, 0.0, 15.2, 69.7, 30.3, 0.0,84.8,100.0 +23.988005997001498,5,a-cure-i1,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 7.4, 59.3, 0.0, 0.0, 33.3, 74.1, 22.2, 3.7,66.7,100.0 +4.334728033472803,4.33,a-cure-i1,2021-22,Springfield - German Gerena Community School,02810195, 0.4, 0.9, 14.2, 77.3, 2.8, 0.0, 4.4, 48.7, 51.3, 0.0,95.6,25.9 +1.0135746606334841,1.01,a-cure-i1,2021-22,Springfield - Glenwood,02810065, 0.0, 2.5, 4.9, 76.4, 4.6, 0.0, 11.6, 48.2, 51.8, 0.0,88.4,5.6 +1,1,a-cure-i1,2021-22,Springfield - Glickman Elementary,02810068, 0.7, 1.8, 17.5, 63.5, 3.5, 0.0, 13.0, 47.7, 52.3, 0.0,87.0,4.5 +7.429805615550756,5,a-cure-i1,2021-22,Springfield - High School Of Commerce,02810510, 0.1, 1.2, 18.3, 71.2, 1.6, 0.2, 7.4, 48.7, 51.2, 0.2,92.6,43.0 +2.088495575221239,2.09,a-cure-i1,2021-22,Springfield - Hiram L Dorman,02810050, 0.0, 0.4, 17.1, 68.1, 4.8, 0.0, 9.6, 48.2, 51.8, 0.0,90.4,11.8 +1,1,a-cure-i1,2021-22,Springfield - Homer Street,02810085, 0.3, 1.1, 23.0, 67.2, 4.9, 0.0, 3.5, 50.7, 49.3, 0.0,96.5,4.0 +9.060041407867496,5,a-cure-i1,2021-22,Springfield - Impact Prep at Chestnut,02810366, 0.5, 0.0, 13.5, 79.3, 2.9, 0.5, 3.4, 52.4, 47.6, 0.0,96.6,54.7 +1.0201342281879193,1.02,a-cure-i1,2021-22,Springfield - Indian Orchard Elementary,02810100, 0.6, 0.4, 15.6, 68.9, 3.9, 0.0, 10.6, 45.9, 54.1, 0.0,89.4,5.7 +6.487912087912088,5,a-cure-i1,2021-22,Springfield - John F Kennedy Middle,02810328, 0.0, 0.5, 22.1, 65.7, 2.6, 0.0, 9.0, 51.7, 48.3, 0.0,91.0,36.9 +6.116040955631398,5,a-cure-i1,2021-22,Springfield - John J Duggan Middle,02810320, 0.0, 2.6, 24.9, 58.9, 1.5, 0.0, 12.1, 44.9, 55.1, 0.0,87.9,33.599999999999994 +2.2369263607257204,2.24,a-cure-i1,2021-22,Springfield - Kensington International School,02810110, 0.4, 1.6, 14.1, 75.3, 2.4, 0.0, 6.3, 54.5, 45.5, 0.0,93.7,13.1 +7.47470398277718,5,a-cure-i1,2021-22,Springfield - Kiley Academy,02810316, 0.0, 0.0, 28.4, 62.6, 1.9, 0.0, 7.1, 47.4, 52.6, 0.0,92.9,43.400000000000006 +4.3152053274139845,4.32,a-cure-i1,2021-22,Springfield - Kiley Prep,02810315, 0.6, 2.3, 18.7, 65.5, 2.9, 0.0, 9.9, 43.3, 56.7, 0.0,90.1,24.3 +1.797752808988764,1.8,a-cure-i1,2021-22,Springfield - Liberty,02810115, 0.4, 0.8, 10.6, 76.5, 0.8, 0.0, 11.0, 50.8, 49.2, 0.0,89.0,10.0 +1,1,a-cure-i1,2021-22,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 75.0, 0.0, 100.0, 0.0,25.0,0.0 +5.842323651452283,5,a-cure-i1,2021-22,Springfield - Lincoln,02810120, 0.0, 0.4, 11.0, 83.5, 1.5, 0.0, 3.6, 49.5, 50.5, 0.0,96.4,35.2 +7.757575757575758,5,a-cure-i1,2021-22,Springfield - Lyceum Academy,02810317, 0.0, 0.2, 11.6, 86.7, 0.5, 0.0, 1.0, 44.1, 55.9, 0.0,99.0,48.0 +5.267857142857143,5,a-cure-i1,2021-22,Springfield - M Marcus Kiley Middle,02810330, 0.5, 1.8, 18.1, 64.7, 4.5, 0.0, 10.4, 46.6, 53.4, 0.0,89.6,29.5 +3.5595105672969964,3.56,a-cure-i1,2021-22,Springfield - Margaret C Ells,02810060, 0.8, 1.6, 25.6, 54.3, 7.8, 0.0, 10.1, 43.4, 56.6, 0.0,89.9,20.0 +2.9962546816479403,3.0,a-cure-i1,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.4, 9.4, 15.9, 51.3, 3.2, 0.0, 19.9, 48.4, 51.6, 0.0,80.1,15.0 +4.431034482758621,4.43,a-cure-i1,2021-22,Springfield - Mary M Lynch,02810140, 0.0, 1.9, 21.7, 65.2, 3.9, 0.0, 7.2, 55.6, 44.4, 0.0,92.8,25.700000000000003 +4.7420814479638,4.74,a-cure-i1,2021-22,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 19.5, 67.0, 1.9, 0.0, 11.6, 46.8, 53.2, 0.0,88.4,26.2 +3.474484256243214,3.47,a-cure-i1,2021-22,Springfield - Mary O Pottenger,02810145, 0.2, 1.7, 11.9, 74.8, 3.5, 0.0, 7.9, 49.0, 50.7, 0.2,92.1,20.0 +1.8366080661840742,1.84,a-cure-i1,2021-22,Springfield - Milton Bradley School,02810023, 0.4, 0.2, 18.4, 76.1, 1.6, 0.0, 3.3, 49.2, 50.8, 0.0,96.7,11.1 +4.942408376963351,4.94,a-cure-i1,2021-22,Springfield - Rebecca M Johnson,02810055, 0.0, 0.2, 23.7, 69.7, 1.9, 0.0, 4.5, 47.6, 52.4, 0.0,95.5,29.5 +5.512459371614301,5,a-cure-i1,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.1, 17.6, 70.0, 3.7, 0.0, 7.7, 44.0, 56.0, 0.0,92.3,31.799999999999997 +4.180021953896817,4.18,a-cure-i1,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.1, 2.2, 16.3, 71.5, 1.1, 0.0, 8.9, 55.6, 44.3, 0.1,91.1,23.799999999999997 +3.8645598194130923,3.86,a-cure-i1,2021-22,Springfield - Samuel Bowles,02810020, 1.0, 1.0, 15.7, 69.0, 1.4, 0.5, 11.4, 51.4, 48.6, 0.0,88.6,21.4 +1.9403905447070917,1.94,a-cure-i1,2021-22,Springfield - South End Middle School,02810355, 0.0, 0.0, 22.7, 73.3, 1.3, 0.0, 2.7, 43.6, 56.4, 0.0,97.3,11.8 +3.6236323851203496,3.62,a-cure-i1,2021-22,Springfield - Springfield Central High,02810500, 0.1, 3.6, 21.1, 64.4, 2.2, 0.0, 8.6, 46.7, 53.3, 0.0,91.4,20.7 +4.3472378804960545,4.35,a-cure-i1,2021-22,Springfield - Springfield High School,02810570, 0.5, 0.0, 15.8, 70.9, 1.5, 0.0, 11.3, 35.5, 64.0, 0.5,88.7,24.1 +4.943231441048035,4.94,a-cure-i1,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 0.1, 1.6, 18.1, 70.2, 1.4, 0.2, 8.4, 43.4, 56.6, 0.0,91.6,28.3 +1,1,a-cure-i1,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 16.7, 83.3, 0.0, 0.0, 0.0, 55.6, 44.4, 0.0,100.0,0.0 +5.3059548254620115,5,a-cure-i1,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 1.3, 6.5, 89.6, 0.0, 0.0, 2.6, 22.1, 77.9, 0.0,97.4,32.3 +2.8762109795479005,2.88,a-cure-i1,2021-22,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 28.6, 64.3, 0.0, 0.0, 7.1, 28.6, 71.4, 0.0,92.9,16.7 +6.608695652173913,5,a-cure-i1,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 28.0, 60.0, 4.0, 0.0, 8.0, 20.0, 80.0, 0.0,92.0,38.0 +7.262054507337525,5,a-cure-i1,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 33.8, 58.5, 3.1, 0.0, 4.6, 16.9, 83.1, 0.0,95.4,43.3 +1,1,a-cure-i1,2021-22,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 13.2, 78.9, 0.0, 0.0, 7.9, 10.5, 89.5, 0.0,92.1,0.0 +13.825557809330627,5,a-cure-i1,2021-22,Springfield - Springfield Realization Academy,02810335, 0.0, 5.7, 18.6, 71.4, 2.9, 0.0, 1.4, 58.6, 41.4, 0.0,98.6,85.19999999999999 +3.0642201834862384,3.06,a-cure-i1,2021-22,Springfield - Springfield Transition Academy,02810675, 0.0, 4.0, 20.0, 63.2, 0.0, 0.0, 12.8, 28.8, 71.2, 0.0,87.2,16.7 +3.4928335170893052,3.49,a-cure-i1,2021-22,Springfield - STEM Middle Academy,02810350, 0.4, 4.6, 20.6, 63.0, 2.1, 0.0, 9.3, 44.8, 55.2, 0.0,90.7,19.8 +3.7281553398058254,3.73,a-cure-i1,2021-22,Springfield - Sumner Avenue,02810160, 0.0, 4.0, 20.0, 65.7, 3.0, 0.0, 7.3, 46.5, 53.3, 0.2,92.7,21.6 +5.676814988290397,5,a-cure-i1,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 1.3, 22.0, 60.5, 1.5, 0.0, 14.6, 51.0, 48.8, 0.2,85.4,30.299999999999997 +1,1,a-cure-i1,2021-22,Springfield - The Springfield Virtual School,02810705, 0.2, 0.4, 15.9, 73.0, 2.3, 0.0, 8.2, 49.2, 50.8, 0.0,91.8,0.0 +4.502883506343713,4.5,a-cure-i1,2021-22,Springfield - Thomas M Balliet,02810015, 0.0, 4.1, 21.8, 53.9, 6.8, 0.0, 13.3, 48.5, 51.5, 0.0,86.7,24.4 +3.2527472527472527,3.25,a-cure-i1,2021-22,Springfield - Van Sickle Academy,02810485, 0.0, 1.8, 8.3, 80.6, 0.4, 0.0, 9.0, 48.6, 51.1, 0.4,91.0,18.5 +3.1708428246013667,3.17,a-cure-i1,2021-22,Springfield - Warner,02810180, 0.0, 0.8, 19.9, 63.8, 3.3, 0.0, 12.2, 45.9, 53.7, 0.4,87.8,17.4 +1.5130434782608695,1.51,a-cure-i1,2021-22,Springfield - Washington,02810185, 0.0, 7.5, 16.3, 63.5, 4.7, 0.0, 8.0, 50.5, 49.5, 0.0,92.0,8.7 +1,1,a-cure-i1,2021-22,Springfield - White Street,02810190, 0.3, 3.6, 20.8, 67.3, 4.1, 0.0, 4.1, 48.2, 51.8, 0.0,95.9,4.2 +3.5574288724973657,3.56,a-cure-i1,2021-22,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 21.6, 70.3, 3.0, 0.0, 5.1, 46.2, 53.8, 0.0,94.9,21.1 +2.9449003516998826,2.94,a-cure-i1,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 3.8, 28.7, 46.8, 6.1, 0.0, 14.7, 50.8, 49.2, 0.0,85.3,15.7 +13.66217616580311,5,a-cure-i1,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 3.0, 18.9, 72.5, 2.1, 0.0, 3.5, 47.3, 52.7, 0.0,96.5,82.4 +1,1,a-cure-i1,2021-22,Stoneham - Colonial Park,02840005, 0.4, 7.2, 0.8, 12.4, 2.0, 0.0, 77.3, 41.8, 58.2, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Stoneham - Robin Hood,02840025, 0.0, 5.3, 2.6, 11.8, 6.8, 0.0, 73.4, 50.5, 49.5, 0.0,26.599999999999994,4.0 +1,1,a-cure-i1,2021-22,Stoneham - South,02840030, 0.0, 7.1, 5.2, 11.4, 3.7, 0.0, 72.5, 51.5, 48.5, 0.0,27.5,4.6 +4.999999999999999,5.0,a-cure-i1,2021-22,Stoneham - Stoneham Central Middle School,02840405, 0.3, 4.1, 2.1, 9.4, 3.2, 0.0, 80.8, 49.1, 50.8, 0.1,19.200000000000003,6.0 +1,1,a-cure-i1,2021-22,Stoneham - Stoneham High,02840505, 0.5, 5.7, 2.6, 10.4, 4.0, 0.0, 76.9, 50.9, 49.1, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 1.0, 6.0, 27.0, 17.0, 8.0, 1.0, 40.0, 44.0, 56.0, 0.0,60.0,0.0 +1,1,a-cure-i1,2021-22,Stoughton - Helen Hansen Elementary,02850010, 0.4, 5.4, 20.3, 15.9, 8.0, 0.0, 50.0, 46.4, 53.6, 0.0,50.0,0.0 +1,1,a-cure-i1,2021-22,Stoughton - Joseph H Gibbons,02850025, 0.0, 3.8, 21.8, 16.5, 7.6, 0.0, 50.3, 50.6, 49.4, 0.0,49.7,0.0 +1,1,a-cure-i1,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 5.2, 26.0, 17.1, 5.5, 0.6, 45.6, 43.1, 56.9, 0.0,54.4,0.0 +3.241252302025783,3.24,a-cure-i1,2021-22,Stoughton - O'Donnell Middle School,02850405, 0.2, 6.4, 26.0, 16.2, 5.0, 0.4, 45.7, 47.6, 52.4, 0.0,54.3,11.0 +1,1,a-cure-i1,2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.3, 4.5, 24.1, 25.2, 7.2, 0.7, 37.9, 49.7, 50.3, 0.0,62.1,4.6 +1,1,a-cure-i1,2021-22,Stoughton - South Elementary,02850015, 0.0, 10.7, 21.7, 10.3, 9.1, 0.4, 47.8, 49.0, 51.0, 0.0,52.2,0.0 +2.6097087378640773,2.61,a-cure-i1,2021-22,Stoughton - Stoughton High,02850505, 0.1, 6.9, 26.6, 12.2, 5.0, 0.8, 48.5, 47.6, 52.4, 0.0,51.5,8.399999999999999 +1,1,a-cure-i1,2021-22,Sturbridge - Burgess Elementary,02870005, 0.0, 1.3, 0.8, 8.4, 5.0, 0.0, 84.5, 48.0, 52.0, 0.0,15.5,0.0 +6.6315789473684195,5,a-cure-i1,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.4, 2.8, 2.8, 6.0, 3.1, 0.1, 84.8, 57.7, 42.1, 0.2,15.200000000000003,6.3 +4.546125461254614,4.55,a-cure-i1,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 11.4, 2.9, 4.5, 8.1, 0.2, 72.9, 45.6, 54.1, 0.2,27.099999999999994,7.7 +5.396825396825396,5,a-cure-i1,2021-22,Sudbury - General John Nixon Elementary,02880025, 0.0, 7.0, 4.4, 4.4, 9.4, 0.0, 74.8, 54.7, 45.3, 0.0,25.200000000000003,8.5 +6.250896057347669,5,a-cure-i1,2021-22,Sudbury - Israel Loring School,02880015, 0.2, 7.3, 3.5, 9.7, 6.9, 0.2, 72.1, 50.6, 49.4, 0.0,27.900000000000006,10.9 +5.153846153846155,5,a-cure-i1,2021-22,Sudbury - Josiah Haynes,02880010, 0.3, 7.3, 3.1, 5.1, 5.1, 0.0, 79.2, 45.5, 54.5, 0.0,20.799999999999997,6.7 +1,1,a-cure-i1,2021-22,Sudbury - Peter Noyes,02880030, 0.0, 12.2, 1.9, 5.6, 8.9, 0.0, 71.3, 46.3, 53.5, 0.2,28.700000000000003,3.1 +2.447058823529412,2.45,a-cure-i1,2021-22,Sunderland - Sunderland Elementary,02890005, 0.5, 9.6, 4.3, 12.2, 7.4, 0.0, 66.0, 46.3, 53.2, 0.5,34.0,5.2 +1,1,a-cure-i1,2021-22,Sutton - Sutton Early Learning,02900003, 0.0, 1.1, 1.1, 5.8, 5.8, 0.4, 86.0, 47.5, 52.5, 0.0,14.0,0.0 +1,1,a-cure-i1,2021-22,Sutton - Sutton Elementary,02900005, 0.0, 1.1, 1.1, 3.3, 3.0, 0.0, 91.5, 47.2, 52.8, 0.0,8.5,0.0 +1,1,a-cure-i1,2021-22,Sutton - Sutton High School,02900510, 0.0, 1.7, 1.9, 3.9, 3.6, 0.0, 88.9, 49.9, 49.6, 0.6,11.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Sutton - Sutton Middle School,02900305, 0.0, 2.0, 0.3, 3.3, 4.7, 0.0, 89.7, 50.2, 49.8, 0.0,10.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Swampscott - Clarke,02910005, 0.5, 2.9, 2.4, 19.4, 3.4, 0.0, 71.4, 45.6, 54.4, 0.0,28.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Swampscott - Hadley,02910010, 0.7, 3.8, 3.4, 13.0, 4.8, 0.0, 74.3, 49.3, 50.7, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Swampscott - Stanley,02910020, 0.0, 2.9, 1.4, 7.2, 2.4, 0.0, 86.1, 40.9, 59.1, 0.0,13.900000000000006,0.0 +3.9008264462809916,3.9,a-cure-i1,2021-22,Swampscott - Swampscott High,02910505, 0.3, 3.4, 5.7, 12.9, 2.0, 0.0, 75.8, 50.1, 49.8, 0.2,24.200000000000003,5.9 +1,1,a-cure-i1,2021-22,Swampscott - Swampscott Middle,02910305, 0.3, 3.5, 3.7, 13.0, 2.9, 0.0, 76.5, 50.1, 49.6, 0.3,23.5,1.3 +1,1,a-cure-i1,2021-22,Swansea - Elizabeth S Brown,02920006, 0.0, 1.4, 1.4, 2.2, 2.2, 0.0, 92.8, 47.5, 52.5, 0.0,7.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Swansea - Gardner,02920015, 0.4, 0.8, 0.4, 1.5, 0.8, 0.0, 96.2, 51.3, 48.7, 0.0,3.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Swansea - Joseph Case High,02920505, 0.0, 0.4, 1.3, 3.7, 0.4, 0.0, 94.3, 47.2, 52.8, 0.0,5.700000000000003,2.2 +1,1,a-cure-i1,2021-22,Swansea - Joseph Case Jr High,02920305, 0.6, 1.6, 0.8, 3.0, 1.4, 0.0, 92.6, 51.9, 48.1, 0.0,7.400000000000006,3.0 +1,1,a-cure-i1,2021-22,Swansea - Joseph G Luther,02920020, 0.0, 2.0, 2.0, 1.5, 3.5, 0.0, 91.0, 52.3, 47.7, 0.0,9.0,0.0 +1,1,a-cure-i1,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 1.3, 0.0, 1.3, 3.4, 0.0, 94.0, 48.3, 51.7, 0.0,6.0,0.0 +1,1,a-cure-i1,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 0.3, 1.7, 1.9, 7.8, 3.2, 0.0, 85.1, 47.5, 52.5, 0.0,14.900000000000006,2.7 +1,1,a-cure-i1,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 0.1, 1.9, 1.2, 7.8, 4.4, 0.0, 84.5, 55.3, 44.4, 0.3,15.5,2.5 +1,1,a-cure-i1,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.2, 0.8, 7.1, 3.5, 0.2, 88.3, 36.7, 63.0, 0.4,11.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Taunton - Benjamin Friedman Middle,02930315, 0.5, 1.2, 16.6, 12.3, 6.0, 0.0, 63.3, 47.0, 53.0, 0.0,36.7,0.0 +1,1,a-cure-i1,2021-22,Taunton - East Taunton Elementary,02930010, 0.2, 0.6, 16.4, 9.7, 7.2, 0.0, 65.9, 52.0, 48.0, 0.0,34.099999999999994,3.9 +1,1,a-cure-i1,2021-22,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.7, 14.4, 11.7, 4.7, 0.0, 68.6, 50.2, 49.8, 0.0,31.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Taunton - Edward F. Leddy Preschool,02930005, 0.5, 0.5, 25.3, 12.9, 5.5, 0.0, 55.3, 42.9, 57.1, 0.0,44.7,0.0 +1,1,a-cure-i1,2021-22,Taunton - Elizabeth Pole,02930027, 0.4, 1.1, 24.4, 16.5, 10.1, 0.2, 47.3, 49.8, 50.0, 0.2,52.7,4.0 +10.153846153846157,5,a-cure-i1,2021-22,Taunton - H H Galligan,02930057, 1.2, 0.8, 33.6, 21.2, 10.4, 0.4, 32.4, 50.6, 49.4, 0.0,67.6,42.900000000000006 +1,1,a-cure-i1,2021-22,Taunton - James L. Mulcahey Elementary School,02930015, 0.2, 0.7, 24.4, 19.6, 5.5, 0.1, 49.4, 50.1, 49.9, 0.0,50.6,3.0 +2.099403578528827,2.1,a-cure-i1,2021-22,Taunton - John F Parker Middle,02930305, 0.2, 0.2, 27.2, 15.7, 6.5, 0.4, 49.7, 47.7, 52.3, 0.0,50.3,6.6 +2.9324758842443734,2.93,a-cure-i1,2021-22,Taunton - Joseph C Chamberlain,02930008, 0.5, 1.6, 12.7, 10.0, 6.4, 0.0, 68.9, 50.2, 49.8, 0.0,31.099999999999994,5.7 +1,1,a-cure-i1,2021-22,Taunton - Joseph H Martin,02930042, 0.5, 1.8, 21.2, 10.9, 5.0, 0.2, 60.5, 50.0, 50.0, 0.0,39.5,0.0 +1.9483394833948338,1.95,a-cure-i1,2021-22,Taunton - Taunton Alternative High School,02930525, 1.4, 0.0, 26.4, 18.1, 8.3, 0.0, 45.8, 27.8, 72.2, 0.0,54.2,6.6 +2.851485148514852,2.85,a-cure-i1,2021-22,Taunton - Taunton High,02930505, 0.5, 1.1, 20.3, 13.7, 4.6, 0.3, 59.6, 49.5, 50.4, 0.0,40.4,7.2 +1,1,a-cure-i1,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.4, 3.8, 9.2, 21.0, 7.0, 0.3, 58.3, 55.0, 44.9, 0.1,41.7,0.0 +1,1,a-cure-i1,2021-22,Tewksbury - Heath-Brook,02950010, 0.0, 1.7, 5.0, 5.6, 3.3, 0.0, 84.4, 45.7, 54.3, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Tewksbury - John F. Ryan,02950023, 0.0, 3.2, 4.0, 8.3, 1.8, 0.0, 82.8, 52.1, 47.9, 0.0,17.200000000000003,2.0 +1,1,a-cure-i1,2021-22,Tewksbury - John W. Wynn Middle,02950305, 0.4, 2.5, 3.7, 8.4, 2.0, 0.0, 83.0, 48.3, 51.5, 0.2,17.0,2.8 +1,1,a-cure-i1,2021-22,Tewksbury - L F Dewing,02950001, 0.0, 7.3, 4.4, 8.0, 4.9, 0.0, 75.4, 47.3, 52.7, 0.0,24.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Tewksbury - Louise Davy Trahan,02950025, 0.0, 1.4, 3.3, 4.7, 1.9, 0.0, 88.7, 51.9, 48.1, 0.0,11.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Tewksbury - North Street,02950020, 0.4, 5.8, 5.4, 5.4, 1.2, 0.0, 81.8, 51.2, 48.8, 0.0,18.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Tewksbury - Tewksbury Memorial High,02950505, 0.1, 5.4, 4.0, 6.6, 1.5, 0.0, 82.4, 50.6, 49.0, 0.4,17.599999999999994,1.6 +2.0735009671179885,2.07,a-cure-i1,2021-22,Tisbury - Tisbury Elementary,02960005, 2.4, 0.7, 5.6, 39.5, 3.5, 0.0, 48.3, 50.7, 49.3, 0.0,51.7,6.7 +1,1,a-cure-i1,2021-22,Topsfield - Proctor Elementary,02980005, 1.6, 1.2, 0.4, 3.5, 3.1, 0.0, 90.3, 48.6, 51.4, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Topsfield - Steward Elementary,02980010, 0.3, 1.9, 0.0, 5.2, 2.5, 0.0, 90.1, 50.4, 49.6, 0.0,9.900000000000006,3.2 +1,1,a-cure-i1,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.1, 0.7, 1.2, 8.8, 4.7, 0.1, 84.3, 39.5, 59.7, 0.7,15.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Triton - Newbury Elementary,07730020, 0.0, 0.8, 1.3, 2.5, 1.3, 0.3, 93.9, 44.8, 55.2, 0.0,6.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Triton - Pine Grove,07730025, 0.2, 1.7, 0.5, 2.0, 2.0, 0.0, 93.7, 51.5, 48.5, 0.0,6.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Triton - Salisbury Elementary,07730015, 0.5, 2.6, 3.7, 7.0, 3.3, 0.2, 82.7, 51.2, 48.8, 0.0,17.299999999999997,3.6 +1,1,a-cure-i1,2021-22,Triton - Triton Regional High School,07730505, 0.0, 3.1, 1.1, 4.0, 1.7, 0.2, 90.0, 48.5, 51.2, 0.3,10.0,4.7 +1,1,a-cure-i1,2021-22,Triton - Triton Regional Middle School,07730405, 0.0, 2.4, 2.7, 5.0, 1.5, 0.6, 87.8, 47.8, 52.2, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Truro - Truro Central,03000005, 0.0, 0.0, 8.1, 8.1, 16.2, 0.0, 67.6, 48.6, 51.4, 0.0,32.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Tyngsborough - Tyngsborough Elementary,03010020, 0.2, 10.5, 4.3, 9.8, 3.7, 0.0, 71.3, 47.1, 52.9, 0.0,28.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Tyngsborough - Tyngsborough High School,03010505, 0.0, 8.2, 3.3, 7.5, 3.8, 0.0, 77.2, 51.3, 48.7, 0.0,22.799999999999997,3.3 +1,1,a-cure-i1,2021-22,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 9.4, 5.1, 5.9, 4.3, 0.0, 75.3, 46.6, 53.4, 0.0,24.700000000000003,3.2 +3.448704663212435,3.45,a-cure-i1,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.3, 4.7, 44.2, 45.7, 1.3, 0.3, 3.5, 46.1, 53.9, 0.0,96.5,20.799999999999997 +6.048387096774193,5,a-cure-i1,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.2, 0.6, 53.1, 42.3, 2.5, 0.6, 0.8, 51.0, 49.0, 0.0,99.2,37.5 +1,1,a-cure-i1,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 1.8, 0.0, 0.0, 17.5, 0.0, 80.7, 54.4, 45.6, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 3.9, 0.0, 2.0, 10.7, 6.7, 0.0, 76.7, 48.9, 50.8, 0.3,23.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.7, 0.8, 3.2, 5.1, 7.4, 0.1, 82.7, 40.9, 59.1, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 3.1, 3.1, 15.6, 3.1, 0.0, 75.0, 62.5, 37.5, 0.0,25.0,0.0 +1,1,a-cure-i1,2021-22,Uxbridge - Taft Early Learning Center,03040005, 0.0, 1.3, 0.4, 8.0, 3.0, 0.4, 86.9, 47.2, 52.8, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Uxbridge - Uxbridge High,03040505, 0.9, 2.2, 1.1, 6.0, 2.5, 0.0, 87.3, 43.2, 56.8, 0.0,12.700000000000003,2.1 +1,1,a-cure-i1,2021-22,Uxbridge - Whitin Intermediate,03040405, 0.4, 1.0, 1.9, 5.4, 2.7, 0.4, 88.1, 46.5, 53.5, 0.0,11.900000000000006,0.0 +7.142559833506764,5,a-cure-i1,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.8, 1.8, 21.6, 68.4, 3.2, 0.3, 3.9, 53.2, 46.8, 0.0,96.1,42.9 +1,1,a-cure-i1,2021-22,Wachusett - Central Tree Middle,07750310, 0.5, 2.2, 3.3, 5.8, 3.3, 0.0, 84.9, 51.8, 48.2, 0.0,15.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Chocksett Middle School,07750315, 0.0, 1.0, 1.0, 8.3, 1.7, 0.0, 87.9, 45.7, 54.3, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Davis Hill Elementary,07750018, 0.4, 0.9, 4.0, 7.8, 3.5, 0.2, 83.1, 50.1, 49.9, 0.0,16.900000000000006,3.6 +1,1,a-cure-i1,2021-22,Wachusett - Dawson,07750020, 0.0, 4.9, 2.9, 7.0, 4.3, 0.2, 80.7, 52.3, 47.7, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Early Childhood Center,07750001, 0.0, 6.3, 2.4, 11.8, 3.9, 0.0, 75.6, 32.3, 67.7, 0.0,24.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Glenwood Elementary School,07750060, 0.0, 1.8, 1.8, 7.3, 2.1, 0.0, 87.0, 49.2, 50.8, 0.0,13.0,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Houghton Elementary,07750027, 0.0, 3.1, 4.9, 10.7, 4.3, 0.0, 77.1, 44.0, 56.0, 0.0,22.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Leroy E.Mayo,07750032, 0.0, 2.8, 4.0, 9.0, 2.4, 0.2, 81.6, 47.2, 52.8, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Mountview Middle,07750305, 0.3, 4.0, 3.6, 6.5, 2.6, 0.0, 83.0, 46.0, 54.0, 0.0,17.0,2.2 +1,1,a-cure-i1,2021-22,Wachusett - Naquag Elementary School,07750005, 0.0, 1.5, 2.3, 9.0, 2.6, 0.0, 84.6, 47.7, 52.3, 0.0,15.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Paxton Center,07750040, 0.0, 2.5, 1.3, 7.4, 3.1, 0.0, 85.7, 53.0, 47.0, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Wachusett - Thomas Prince,07750045, 0.0, 0.9, 2.3, 3.7, 1.1, 0.0, 92.0, 46.6, 53.4, 0.0,8.0,4.1 +1,1,a-cure-i1,2021-22,Wachusett - Wachusett Regional High,07750505, 0.1, 3.7, 2.0, 5.9, 2.2, 0.0, 86.1, 52.9, 47.0, 0.1,13.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Wakefield - Dolbeare,03050005, 0.2, 3.6, 2.2, 7.6, 2.0, 0.0, 84.3, 50.3, 49.7, 0.0,15.700000000000003,0.0 +5.442176870748298,5,a-cure-i1,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 6.9, 2.9, 14.7, 4.9, 0.0, 70.6, 42.2, 57.8, 0.0,29.400000000000006,10.0 +1,1,a-cure-i1,2021-22,Wakefield - Galvin Middle School,03050310, 0.1, 3.5, 2.2, 8.4, 2.9, 0.5, 82.5, 48.9, 50.8, 0.3,17.5,0.7 +1,1,a-cure-i1,2021-22,Wakefield - Greenwood,03050020, 0.0, 2.2, 1.3, 5.8, 4.9, 0.4, 85.2, 43.0, 57.0, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Wakefield - Wakefield Memorial High,03050505, 0.2, 4.0, 3.3, 7.7, 2.5, 0.0, 82.3, 51.3, 48.6, 0.1,17.700000000000003,1.2 +1,1,a-cure-i1,2021-22,Wakefield - Walton,03050040, 0.0, 1.9, 3.7, 7.4, 1.9, 0.5, 84.7, 42.6, 57.4, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Wakefield - Woodville School,03050015, 0.0, 6.4, 3.5, 10.9, 3.8, 0.2, 75.2, 50.6, 49.4, 0.0,24.799999999999997,4.2 +1,1,a-cure-i1,2021-22,Wales - Wales Elementary,03060005, 1.7, 0.0, 1.7, 3.4, 0.8, 0.0, 92.4, 40.7, 59.3, 0.0,7.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Walpole - Bird Middle,03070305, 0.5, 2.7, 4.8, 8.8, 2.7, 0.0, 80.6, 51.3, 48.7, 0.0,19.400000000000006,3.2 +1,1,a-cure-i1,2021-22,Walpole - Boyden,03070010, 0.8, 3.4, 7.4, 7.7, 2.4, 0.0, 78.4, 46.7, 53.3, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 1.1, 9.1, 2.3, 9.1, 4.5, 0.0, 73.9, 39.8, 60.2, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 11.7, 2.6, 5.9, 3.5, 0.0, 76.3, 46.0, 53.5, 0.5,23.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Walpole - Elm Street School,03070005, 0.0, 7.3, 4.6, 4.6, 3.9, 0.0, 79.7, 55.7, 44.1, 0.2,20.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Walpole - Fisher,03070015, 0.4, 15.1, 1.8, 7.9, 4.0, 0.4, 70.3, 49.9, 50.1, 0.0,29.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Walpole - Old Post Road,03070018, 0.0, 3.2, 2.8, 10.0, 4.7, 0.0, 79.4, 49.9, 50.1, 0.0,20.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Walpole - Walpole High,03070505, 0.4, 6.3, 3.5, 6.3, 2.2, 0.0, 81.2, 49.4, 50.3, 0.3,18.799999999999997,2.5 +1,1,a-cure-i1,2021-22,Waltham - Douglas MacArthur Elementary School,03080032, 0.2, 10.0, 7.7, 16.0, 5.3, 0.0, 60.8, 50.3, 49.7, 0.0,39.2,0.3 +1,1,a-cure-i1,2021-22,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.8, 7.2, 75.5, 1.2, 0.0, 12.2, 51.8, 48.2, 0.0,87.8,4.3999999999999995 +1,1,a-cure-i1,2021-22,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 6.6, 1.8, 32.3, 6.3, 0.0, 53.0, 44.1, 55.9, 0.0,47.0,0.8 +4.502325581395349,4.5,a-cure-i1,2021-22,Waltham - John F Kennedy Middle,03080404, 0.0, 4.2, 7.8, 27.8, 3.3, 0.0, 57.0, 45.4, 54.4, 0.2,43.0,12.1 +2.618585298196949,2.62,a-cure-i1,2021-22,Waltham - John W. McDevitt Middle School,03080415, 0.0, 1.9, 8.9, 60.0, 1.3, 0.0, 27.9, 45.9, 54.1, 0.0,72.1,11.8 +1.55366269165247,1.55,a-cure-i1,2021-22,Waltham - Northeast Elementary School,03080040, 0.4, 6.1, 11.4, 38.7, 2.0, 0.0, 41.3, 52.5, 47.5, 0.0,58.7,5.7 +1,1,a-cure-i1,2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 5.1, 12.9, 38.3, 4.2, 0.0, 39.5, 46.7, 53.3, 0.0,60.5,0.7 +10.673495518565943,5,a-cure-i1,2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 4.3, 70.0, 3.8, 0.0, 21.9, 45.7, 54.3, 0.0,78.1,52.1 +3.1731092436974793,3.17,a-cure-i1,2021-22,Waltham - Waltham Sr High,03080505, 0.0, 3.7, 9.7, 44.6, 1.5, 0.1, 40.5, 47.1, 52.7, 0.2,59.5,11.8 +1,1,a-cure-i1,2021-22,Waltham - William F. Stanley Elementary School,03080005, 0.3, 8.1, 10.8, 45.9, 1.8, 0.0, 33.1, 42.3, 57.7, 0.0,66.9,2.8 +1,1,a-cure-i1,2021-22,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 2.4, 12.9, 3.8, 0.3, 80.7, 52.3, 47.7, 0.0,19.299999999999997,0.0 +7.95530726256983,5,a-cure-i1,2021-22,Ware - Ware Junior/Senior High School,03090505, 0.4, 0.2, 2.2, 9.5, 5.2, 0.4, 82.1, 48.2, 51.8, 0.0,17.900000000000006,8.9 +1,1,a-cure-i1,2021-22,Ware - Ware Middle School,03090305, 0.4, 0.8, 2.0, 11.8, 3.5, 0.0, 81.6, 49.0, 51.0, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Wareham - John William Decas,03100003, 1.3, 1.0, 4.8, 7.6, 9.6, 0.0, 75.7, 49.3, 50.7, 0.0,24.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Wareham - Minot Forest,03100017, 1.6, 0.9, 7.2, 12.9, 16.9, 0.3, 60.2, 48.3, 51.7, 0.0,39.8,0.0 +1,1,a-cure-i1,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 2.6, 0.0, 13.2, 10.5, 5.3, 0.0, 68.4, 28.9, 71.1, 0.0,31.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Wareham - Wareham Middle,03100305, 1.5, 0.9, 8.4, 11.0, 12.8, 0.2, 65.2, 48.7, 51.3, 0.0,34.8,2.5 +5.384615384615384,5,a-cure-i1,2021-22,Wareham - Wareham Senior High,03100505, 1.6, 0.6, 9.1, 7.0, 12.9, 0.0, 68.8, 52.4, 47.1, 0.5,31.200000000000003,10.5 +6.598870056497174,5,a-cure-i1,2021-22,Watertown - Cunniff,03140015, 0.0, 6.2, 3.2, 19.8, 6.2, 0.0, 64.6, 49.0, 51.0, 0.0,35.400000000000006,14.6 +1,1,a-cure-i1,2021-22,Watertown - Hosmer,03140020, 0.1, 8.2, 5.4, 17.1, 7.0, 0.1, 62.0, 46.9, 53.1, 0.0,38.0,2.7 +8.264631043256998,5,a-cure-i1,2021-22,Watertown - James Russell Lowell,03140025, 0.0, 4.7, 5.3, 19.5, 9.7, 0.0, 60.7, 47.4, 52.6, 0.0,39.3,20.3 +1,1,a-cure-i1,2021-22,Watertown - Watertown High,03140505, 0.6, 8.4, 4.1, 20.4, 4.3, 0.0, 62.3, 45.5, 54.0, 0.4,37.7,3.3 +1,1,a-cure-i1,2021-22,Watertown - Watertown Middle,03140305, 0.6, 6.8, 2.4, 23.4, 5.5, 0.0, 61.4, 51.8, 48.0, 0.2,38.6,2.9 +1,1,a-cure-i1,2021-22,Wayland - Claypit Hill School,03150005, 0.0, 10.3, 4.1, 4.8, 8.7, 0.0, 72.1, 50.4, 49.6, 0.0,27.900000000000006,3.2 +5.12455516014235,5,a-cure-i1,2021-22,Wayland - Happy Hollow School,03150015, 0.3, 11.6, 3.4, 4.9, 8.0, 0.0, 71.9, 47.9, 52.1, 0.0,28.099999999999994,9.0 +8.274143302180688,5,a-cure-i1,2021-22,Wayland - Loker School,03150020, 0.3, 14.2, 2.9, 8.6, 6.1, 0.0, 67.9, 52.4, 47.6, 0.0,32.099999999999994,16.6 +3.2737752161383282,3.27,a-cure-i1,2021-22,Wayland - Wayland High School,03150505, 0.0, 19.5, 5.1, 4.2, 5.8, 0.1, 65.3, 51.0, 49.0, 0.0,34.7,7.1 +7.017543859649122,5,a-cure-i1,2021-22,Wayland - Wayland Middle School,03150305, 0.0, 15.3, 6.8, 5.0, 6.8, 0.3, 65.8, 48.3, 51.5, 0.2,34.2,15.0 +1,1,a-cure-i1,2021-22,Webster - Bartlett High School,03160505, 0.2, 2.7, 7.9, 35.5, 6.7, 0.2, 46.7, 51.6, 48.4, 0.0,53.3,3.0 +1,1,a-cure-i1,2021-22,Webster - Park Avenue Elementary,03160015, 0.3, 1.1, 6.9, 37.0, 6.1, 0.0, 48.6, 45.3, 54.7, 0.0,51.4,0.0 +1,1,a-cure-i1,2021-22,Webster - Webster Middle School,03160315, 0.2, 1.5, 6.1, 32.8, 4.6, 0.0, 54.8, 45.7, 54.3, 0.0,45.2,0.0 +7.392739273927393,5,a-cure-i1,2021-22,Wellesley - Ernest F Upham,03170050, 0.6, 10.3, 6.7, 6.7, 6.1, 0.0, 69.7, 50.9, 49.1, 0.0,30.299999999999997,14.0 +10.1139896373057,5,a-cure-i1,2021-22,Wellesley - Hunnewell,03170025, 0.0, 5.5, 2.8, 5.5, 5.5, 0.0, 80.7, 54.1, 45.9, 0.0,19.299999999999997,12.2 +2.019723865877712,2.02,a-cure-i1,2021-22,Wellesley - John D Hardy,03170020, 0.0, 28.6, 1.9, 10.8, 9.4, 0.0, 49.3, 51.6, 48.4, 0.0,50.7,6.4 +1,1,a-cure-i1,2021-22,Wellesley - Joseph E Fiske,03170015, 0.0, 21.9, 3.8, 5.7, 5.7, 0.0, 63.0, 51.3, 48.7, 0.0,37.0,0.0 +5.916981132075472,5,a-cure-i1,2021-22,Wellesley - Katharine Lee Bates,03170005, 0.0, 9.2, 2.1, 3.9, 11.3, 0.0, 73.5, 49.1, 50.9, 0.0,26.5,9.8 +1,1,a-cure-i1,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 19.1, 2.1, 12.8, 10.6, 0.0, 55.3, 41.5, 58.5, 0.0,44.7,0.0 +1,1,a-cure-i1,2021-22,Wellesley - Schofield,03170045, 0.0, 18.5, 3.3, 4.2, 5.4, 0.3, 68.4, 52.8, 47.2, 0.0,31.599999999999994,4.2 +1,1,a-cure-i1,2021-22,Wellesley - Sprague Elementary School,03170048, 0.0, 21.1, 2.3, 5.6, 14.9, 0.0, 56.1, 48.8, 51.2, 0.0,43.9,4.7 +3.904761904761906,3.9,a-cure-i1,2021-22,Wellesley - Wellesley Middle,03170305, 0.0, 15.7, 4.3, 5.6, 8.1, 0.0, 66.4, 51.2, 48.8, 0.0,33.599999999999994,8.200000000000001 +3.2751677852348995,3.28,a-cure-i1,2021-22,Wellesley - Wellesley Sr High,03170505, 0.0, 14.2, 4.3, 5.4, 5.8, 0.0, 70.2, 51.1, 48.7, 0.1,29.799999999999997,6.1 +1,1,a-cure-i1,2021-22,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 2.7, 6.3, 13.4, 0.0, 77.7, 44.6, 55.4, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2021-22,West Boylston - Major Edwards Elementary,03220005, 0.0, 1.7, 2.9, 11.8, 3.9, 0.2, 79.4, 48.6, 51.4, 0.0,20.599999999999994,0.0 +1,1,a-cure-i1,2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 0.2, 3.2, 2.8, 11.0, 3.8, 0.2, 78.8, 51.7, 48.3, 0.0,21.200000000000003,3.4000000000000004 +1,1,a-cure-i1,2021-22,West Bridgewater - Howard School,03230305, 0.3, 1.0, 5.1, 6.4, 5.4, 0.0, 81.7, 51.2, 48.8, 0.0,18.299999999999997,0.0 +4.52017937219731,4.52,a-cure-i1,2021-22,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.9, 6.9, 7.9, 6.6, 0.0, 77.7, 47.5, 52.5, 0.0,22.299999999999997,6.3 +1,1,a-cure-i1,2021-22,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 6.3, 8.3, 3.5, 0.0, 81.9, 42.4, 57.6, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.3, 0.6, 7.1, 6.3, 4.2, 0.2, 81.4, 51.0, 49.0, 0.0,18.599999999999994,2.1 +1,1,a-cure-i1,2021-22,West Springfield - Cowing Early Childhood,03320001, 0.0, 10.1, 4.5, 19.1, 9.0, 0.0, 57.3, 43.8, 56.2, 0.0,42.7,0.0 +1,1,a-cure-i1,2021-22,West Springfield - John Ashley,03320005, 0.0, 3.6, 3.6, 29.4, 8.1, 0.0, 55.3, 51.8, 48.2, 0.0,44.7,0.0 +2.675078864353312,2.68,a-cure-i1,2021-22,West Springfield - John R Fausey,03320010, 0.0, 5.0, 3.0, 19.3, 4.5, 0.0, 68.3, 53.5, 46.5, 0.0,31.700000000000003,5.3 +1,1,a-cure-i1,2021-22,West Springfield - Memorial,03320025, 0.0, 12.0, 4.8, 41.1, 5.7, 0.0, 36.4, 42.6, 57.4, 0.0,63.6,0.0 +1,1,a-cure-i1,2021-22,West Springfield - Mittineague,03320030, 0.0, 3.1, 2.5, 24.2, 2.5, 0.0, 67.7, 51.6, 48.4, 0.0,32.3,0.0 +1,1,a-cure-i1,2021-22,West Springfield - Philip G Coburn,03320007, 0.2, 16.8, 5.2, 26.6, 3.7, 0.2, 47.3, 52.3, 47.7, 0.0,52.7,0.0 +1,1,a-cure-i1,2021-22,West Springfield - Tatham,03320040, 0.0, 3.3, 1.1, 14.1, 4.1, 0.0, 77.4, 42.6, 57.4, 0.0,22.599999999999994,0.0 +2.4043715846994536,2.4,a-cure-i1,2021-22,West Springfield - West Springfield High,03320505, 0.2, 8.4, 4.1, 20.8, 3.1, 0.1, 63.4, 46.5, 53.2, 0.3,36.6,5.5 +1,1,a-cure-i1,2021-22,West Springfield - West Springfield Middle,03320305, 0.0, 9.4, 3.6, 17.3, 4.7, 0.2, 64.8, 50.5, 49.5, 0.0,35.2,4.2 +2.475822050290135,2.48,a-cure-i1,2021-22,Westborough - Annie E Fales,03210010, 0.0, 42.2, 2.0, 4.9, 2.3, 0.3, 48.3, 48.3, 51.7, 0.0,51.7,8.0 +1.329073482428115,1.33,a-cure-i1,2021-22,Westborough - Elsie A Hastings Elementary,03210025, 0.8, 41.9, 2.9, 13.0, 3.9, 0.0, 37.4, 49.4, 50.6, 0.0,62.6,5.2 +1,1,a-cure-i1,2021-22,Westborough - J Harding Armstrong,03210005, 0.3, 36.2, 3.0, 9.8, 4.9, 0.0, 45.8, 45.5, 54.5, 0.0,54.2,0.0 +1,1,a-cure-i1,2021-22,Westborough - Mill Pond School,03210045, 0.1, 36.6, 3.5, 9.3, 3.5, 0.0, 47.0, 50.3, 49.7, 0.0,53.0,0.0 +2.0655737704918034,2.07,a-cure-i1,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 0.2, 34.8, 4.9, 6.6, 2.4, 0.0, 51.2, 51.2, 48.8, 0.0,48.8,6.3 +2.104308390022676,2.1,a-cure-i1,2021-22,Westborough - Westborough High,03210505, 0.0, 31.7, 1.1, 7.6, 3.7, 0.1, 55.9, 51.4, 48.4, 0.2,44.1,5.800000000000001 +1,1,a-cure-i1,2021-22,Westfield - Abner Gibbs,03250020, 0.0, 7.0, 1.8, 26.3, 3.5, 0.0, 61.4, 46.8, 53.2, 0.0,38.6,0.0 +1,1,a-cure-i1,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 2.5, 1.3, 19.0, 6.3, 0.0, 70.9, 40.5, 59.5, 0.0,29.099999999999994,0.0 +2.2974358974358977,2.3,a-cure-i1,2021-22,Westfield - Franklin Ave,03250015, 0.0, 1.7, 1.7, 46.0, 9.1, 0.0, 41.5, 58.5, 41.5, 0.0,58.5,8.4 +1,1,a-cure-i1,2021-22,Westfield - Highland,03250025, 0.0, 3.7, 0.6, 10.2, 3.4, 0.0, 82.1, 50.9, 49.1, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Westfield - Munger Hill,03250033, 0.0, 4.5, 2.7, 15.2, 3.6, 0.0, 73.9, 49.7, 50.3, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Westfield - Paper Mill,03250036, 0.0, 1.9, 2.2, 20.6, 7.6, 0.0, 67.6, 48.3, 51.7, 0.0,32.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Westfield - Southampton Road,03250040, 0.0, 3.8, 2.1, 18.8, 6.8, 0.0, 68.5, 46.6, 53.4, 0.0,31.5,0.0 +1,1,a-cure-i1,2021-22,Westfield - Westfield High,03250505, 0.0, 2.8, 2.8, 19.0, 3.2, 0.0, 72.2, 53.2, 46.8, 0.0,27.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Westfield - Westfield Intermediate School,03250075, 0.0, 2.8, 2.5, 17.2, 2.8, 0.1, 74.4, 50.1, 49.9, 0.0,25.599999999999994,1.9 +1,1,a-cure-i1,2021-22,Westfield - Westfield Middle School,03250310, 0.3, 3.7, 2.7, 19.5, 3.1, 0.0, 70.8, 47.9, 52.1, 0.0,29.200000000000003,2.6 +1,1,a-cure-i1,2021-22,Westfield - Westfield Technical Academy,03250605, 0.2, 1.5, 0.4, 13.3, 1.7, 0.0, 83.0, 33.8, 66.2, 0.0,17.0,4.300000000000001 +1,1,a-cure-i1,2021-22,Westfield - Westfield Virtual School,03250705, 0.0, 1.0, 5.1, 27.3, 3.0, 0.0, 63.6, 45.5, 54.5, 0.0,36.4,0.0 +1,1,a-cure-i1,2021-22,Westford - Abbot Elementary,03260004, 0.0, 22.3, 0.3, 1.5, 2.6, 0.0, 73.3, 48.1, 51.9, 0.0,26.700000000000003,0.0 +2.905747126436782,2.91,a-cure-i1,2021-22,Westford - Blanchard Middle,03260310, 0.2, 34.5, 1.8, 3.0, 4.0, 0.0, 56.5, 51.6, 48.2, 0.2,43.5,7.9 +1,1,a-cure-i1,2021-22,Westford - Col John Robinson,03260025, 0.3, 31.9, 2.5, 4.3, 7.7, 0.0, 53.3, 49.8, 50.2, 0.0,46.7,0.0 +1,1,a-cure-i1,2021-22,Westford - Day Elementary,03260007, 0.0, 35.8, 1.7, 3.4, 5.1, 0.0, 54.1, 49.3, 50.7, 0.0,45.9,0.0 +1,1,a-cure-i1,2021-22,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 33.2, 0.6, 2.4, 5.7, 0.0, 58.1, 49.4, 50.6, 0.0,41.9,0.0 +1,1,a-cure-i1,2021-22,Westford - Nabnasset,03260015, 0.5, 18.1, 0.3, 1.4, 4.7, 0.0, 75.0, 48.6, 51.4, 0.0,25.0,0.0 +1.5418181818181818,1.54,a-cure-i1,2021-22,Westford - Rita E. Miller Elementary School,03260055, 0.0, 41.0, 3.6, 5.9, 4.6, 0.0, 45.0, 43.0, 57.0, 0.0,55.0,5.3 +1,1,a-cure-i1,2021-22,Westford - Stony Brook School,03260330, 0.2, 29.0, 0.6, 3.0, 4.6, 0.0, 62.7, 55.1, 44.6, 0.3,37.3,2.4 +2.1857923497267757,2.19,a-cure-i1,2021-22,Westford - Westford Academy,03260505, 0.2, 29.5, 1.3, 2.5, 3.1, 0.1, 63.4, 48.6, 51.4, 0.1,36.6,5.0 +1,1,a-cure-i1,2021-22,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 4.9, 1.0, 0.0, 94.2, 42.7, 57.3, 0.0,5.799999999999997,0.0 +2.484472049689441,2.48,a-cure-i1,2021-22,Weston - Country,03300010, 0.0, 13.8, 5.8, 4.5, 8.0, 0.0, 67.8, 48.9, 51.1, 0.0,32.2,5.0 +1,1,a-cure-i1,2021-22,Weston - Field Elementary School,03300012, 0.0, 21.7, 6.5, 9.9, 4.2, 0.4, 57.4, 48.3, 51.7, 0.0,42.6,0.0 +8.27882037533512,5,a-cure-i1,2021-22,Weston - Weston High,03300505, 0.3, 18.3, 7.5, 5.0, 6.1, 0.0, 62.7, 47.3, 52.7, 0.0,37.3,19.299999999999997 +4.194174757281553,4.19,a-cure-i1,2021-22,Weston - Weston Middle,03300305, 0.0, 19.7, 4.6, 8.8, 8.0, 0.0, 58.8, 48.9, 51.1, 0.0,41.2,10.8 +1,1,a-cure-i1,2021-22,Weston - Woodland,03300015, 0.0, 13.4, 7.0, 8.1, 4.9, 0.0, 66.5, 55.3, 44.4, 0.4,33.5,0.0 +1,1,a-cure-i1,2021-22,Westport - Alice A Macomber,03310015, 0.0, 1.2, 1.9, 6.8, 3.7, 0.0, 86.4, 48.1, 51.9, 0.0,13.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Westport - Westport Elementary,03310030, 0.0, 0.2, 0.9, 5.7, 2.7, 0.0, 90.5, 52.0, 48.0, 0.0,9.5,0.0 +1,1,a-cure-i1,2021-22,Westport - Westport Middle-High School,03310515, 0.1, 1.1, 0.6, 4.1, 3.6, 0.0, 90.5, 46.7, 53.0, 0.2,9.5,0.0 +9.736434108527133,5,a-cure-i1,2021-22,Westwood - Deerfield School,03350010, 0.0, 13.2, 3.3, 3.3, 6.0, 0.0, 74.2, 43.4, 56.6, 0.0,25.799999999999997,15.700000000000001 +1,1,a-cure-i1,2021-22,Westwood - Downey,03350012, 0.0, 19.3, 0.3, 5.2, 6.5, 0.3, 68.3, 42.8, 57.2, 0.0,31.700000000000003,4.3 +1,1,a-cure-i1,2021-22,Westwood - E W Thurston Middle,03350305, 0.2, 12.2, 2.1, 7.3, 5.1, 0.2, 73.0, 48.9, 51.1, 0.0,27.0,2.1 +1,1,a-cure-i1,2021-22,Westwood - Martha Jones,03350017, 0.0, 6.6, 0.0, 4.0, 8.8, 0.0, 80.5, 49.3, 50.7, 0.0,19.5,0.4 +1,1,a-cure-i1,2021-22,Westwood - Paul Hanlon,03350015, 0.0, 16.4, 1.1, 6.3, 5.8, 0.0, 70.4, 47.6, 52.4, 0.0,29.599999999999994,0.0 +7.336244541484715,5,a-cure-i1,2021-22,Westwood - Westwood High,03350505, 0.0, 12.3, 3.7, 4.4, 2.5, 0.0, 77.1, 50.2, 49.7, 0.1,22.900000000000006,10.5 +1,1,a-cure-i1,2021-22,Westwood - Westwood Integrated Preschool,03350050, 0.0, 7.0, 2.3, 11.6, 9.3, 0.0, 69.8, 39.5, 60.5, 0.0,30.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Westwood - William E Sheehan,03350025, 0.0, 8.7, 0.7, 3.8, 6.9, 0.0, 79.9, 45.5, 54.5, 0.0,20.099999999999994,0.0 +2.615384615384615,2.62,a-cure-i1,2021-22,Weymouth - Abigail Adams Middle School,03360310, 0.1, 6.1, 7.9, 13.5, 3.4, 0.1, 68.8, 53.7, 46.2, 0.1,31.200000000000003,5.1 +1,1,a-cure-i1,2021-22,Weymouth - Academy Avenue,03360005, 0.0, 5.9, 4.4, 9.4, 8.1, 0.6, 71.6, 46.3, 53.8, 0.0,28.400000000000006,0.0 +2.1782178217821784,2.18,a-cure-i1,2021-22,Weymouth - Frederick C Murphy,03360050, 0.0, 5.4, 9.3, 20.7, 5.0, 0.0, 59.6, 43.6, 56.4, 0.0,40.4,5.5 +4.124223602484472,4.12,a-cure-i1,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 11.7, 7.0, 5.3, 8.2, 0.0, 67.8, 41.5, 58.5, 0.0,32.2,8.3 +1,1,a-cure-i1,2021-22,Weymouth - Lawrence W Pingree,03360065, 0.8, 4.4, 5.6, 12.4, 4.8, 0.0, 72.0, 53.6, 46.4, 0.0,28.0,0.0 +3.260053619302949,3.26,a-cure-i1,2021-22,Weymouth - Ralph Talbot,03360085, 0.0, 7.2, 10.4, 13.7, 6.0, 0.0, 62.7, 45.0, 55.0, 0.0,37.3,7.6 +1,1,a-cure-i1,2021-22,Weymouth - Thomas V Nash,03360060, 0.0, 4.0, 2.5, 6.5, 7.5, 0.5, 79.1, 48.8, 51.2, 0.0,20.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.3, 15.9, 2.7, 13.2, 4.2, 0.0, 63.8, 46.7, 53.3, 0.0,36.2,0.0 +1,1,a-cure-i1,2021-22,Weymouth - Wessagusset,03360110, 0.6, 7.1, 4.8, 7.4, 6.3, 0.0, 73.8, 46.7, 53.3, 0.0,26.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Weymouth - Weymouth High School,03360505, 0.2, 5.4, 7.9, 11.5, 4.0, 0.1, 70.8, 49.2, 50.7, 0.1,29.200000000000003,3.5999999999999996 +1,1,a-cure-i1,2021-22,Weymouth - William Seach,03360080, 0.3, 10.0, 18.3, 24.8, 8.9, 0.0, 37.7, 50.4, 49.6, 0.0,62.3,0.0 +1,1,a-cure-i1,2021-22,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.8, 4.1, 0.8, 0.0, 94.2, 50.4, 49.6, 0.0,5.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Whitman-Hanson - Hanson Middle School,07800315, 0.4, 1.5, 0.9, 5.9, 3.1, 0.0, 88.2, 47.9, 52.1, 0.0,11.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Whitman-Hanson - Indian Head,07800035, 0.0, 1.6, 2.2, 5.0, 2.6, 0.0, 88.6, 47.7, 52.3, 0.0,11.400000000000006,0.0 +1,1,a-cure-i1,2021-22,Whitman-Hanson - John H Duval,07800030, 0.2, 1.7, 5.0, 11.5, 4.8, 0.0, 76.7, 49.2, 50.8, 0.0,23.299999999999997,4.2 +1,1,a-cure-i1,2021-22,Whitman-Hanson - Louise A Conley,07800010, 0.4, 2.4, 3.9, 7.7, 3.5, 0.0, 82.1, 49.2, 50.8, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 2.2, 3.3, 8.8, 5.5, 0.0, 80.2, 39.6, 60.4, 0.0,19.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.7, 1.4, 4.5, 5.7, 2.7, 0.1, 84.9, 48.7, 51.2, 0.1,15.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Whitman-Hanson - Whitman Middle,07800310, 0.4, 1.6, 4.7, 6.4, 3.7, 0.2, 83.0, 48.3, 51.7, 0.0,17.0,0.0 +4.13953488372093,4.14,a-cure-i1,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.6, 1.4, 3.0, 25.5, 3.9, 0.0, 65.6, 46.6, 53.0, 0.3,34.400000000000006,8.9 +1,1,a-cure-i1,2021-22,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.7, 2.2, 3.6, 0.7, 0.0, 92.8, 46.4, 53.6, 0.0,7.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Wilmington - Boutwell,03420005, 0.0, 3.9, 0.8, 5.5, 4.7, 0.0, 85.2, 52.3, 47.7, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2021-22,Wilmington - North Intermediate,03420060, 0.0, 4.8, 1.2, 4.4, 4.8, 0.0, 84.8, 52.4, 47.6, 0.0,15.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Wilmington - Shawsheen Elementary,03420025, 0.0, 8.2, 1.2, 3.4, 5.5, 0.0, 81.7, 46.6, 53.4, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Wilmington - West Intermediate,03420080, 0.0, 7.5, 0.9, 5.6, 2.8, 0.0, 83.1, 52.1, 47.9, 0.0,16.900000000000006,0.0 +5.614035087719299,5,a-cure-i1,2021-22,Wilmington - Wildwood,03420015, 0.0, 3.8, 4.4, 8.2, 6.3, 0.0, 77.2, 36.7, 63.3, 0.0,22.799999999999997,8.0 +1,1,a-cure-i1,2021-22,Wilmington - Wilmington High,03420505, 0.3, 5.8, 1.4, 6.0, 3.9, 0.0, 82.6, 52.5, 47.3, 0.1,17.400000000000006,3.3 +1,1,a-cure-i1,2021-22,Wilmington - Wilmington Middle School,03420330, 0.0, 5.6, 1.0, 4.5, 3.1, 0.0, 85.8, 47.0, 52.9, 0.1,14.200000000000003,1.4 +1,1,a-cure-i1,2021-22,Wilmington - Woburn Street,03420020, 0.3, 4.9, 0.9, 6.1, 4.3, 0.0, 83.5, 43.4, 56.6, 0.0,16.5,0.0 +1,1,a-cure-i1,2021-22,Winchendon - Memorial,03430040, 0.3, 0.0, 1.7, 8.6, 5.5, 0.0, 83.8, 48.5, 51.5, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 7.7, 3.8, 7.7, 0.0, 80.8, 50.0, 50.0, 0.0,19.200000000000003,0.0 +6.9885057471264345,5,a-cure-i1,2021-22,Winchendon - Murdock High School,03430515, 0.4, 3.8, 2.3, 7.5, 3.0, 0.4, 82.6, 45.7, 54.0, 0.4,17.400000000000006,7.6 +1,1,a-cure-i1,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, 1.2, 2.4, 10.6, 2.7, 0.0, 83.1, 45.5, 54.5, 0.0,16.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Winchendon - Toy Town Elementary,03430050, 0.0, 1.7, 1.7, 6.4, 3.4, 0.3, 86.5, 43.4, 56.6, 0.0,13.5,0.0 +1,1,a-cure-i1,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 6.9, 2.8, 0.0, 90.3, 41.7, 58.3, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Winchester - Ambrose Elementary,03440045, 0.0, 6.4, 0.3, 1.7, 7.8, 0.0, 83.8, 50.1, 49.9, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2021-22,Winchester - Lincoln Elementary,03440005, 0.0, 11.2, 0.0, 3.5, 8.4, 0.0, 76.9, 47.6, 52.4, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Winchester - Lynch Elementary,03440020, 0.0, 30.8, 1.2, 4.7, 8.3, 0.0, 54.9, 44.1, 55.9, 0.0,45.1,0.0 +2.8478964401294493,2.85,a-cure-i1,2021-22,Winchester - McCall Middle,03440305, 0.1, 18.6, 1.5, 3.6, 7.1, 0.0, 69.1, 51.2, 48.8, 0.0,30.900000000000006,5.5 +1,1,a-cure-i1,2021-22,Winchester - Muraco Elementary,03440040, 0.0, 22.0, 0.9, 3.2, 7.2, 0.0, 66.7, 49.6, 50.1, 0.3,33.3,0.0 +1,1,a-cure-i1,2021-22,Winchester - Vinson-Owen Elementary,03440025, 0.0, 21.7, 0.2, 2.4, 9.2, 0.0, 66.4, 49.9, 50.1, 0.0,33.599999999999994,4.0 +1,1,a-cure-i1,2021-22,Winchester - Winchester High School,03440505, 0.4, 19.4, 1.4, 3.7, 4.7, 0.1, 70.3, 51.5, 48.4, 0.1,29.700000000000003,1.1 +1,1,a-cure-i1,2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.5, 1.4, 14.0, 1.2, 0.0, 82.9, 54.5, 45.5, 0.0,17.099999999999994,0.0 +1,1,a-cure-i1,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.2, 1.2, 15.4, 1.5, 0.0, 81.7, 50.1, 49.9, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2021-22,Winthrop - Winthrop High School,03460505, 0.0, 1.1, 1.2, 18.3, 1.1, 0.0, 78.4, 49.1, 50.7, 0.2,21.599999999999994,2.6 +1,1,a-cure-i1,2021-22,Winthrop - Winthrop Middle School,03460305, 0.5, 0.2, 2.1, 15.4, 1.4, 0.2, 80.1, 48.0, 52.0, 0.0,19.900000000000006,2.4 +1,1,a-cure-i1,2021-22,Woburn - Clyde Reeves,03470040, 2.3, 7.8, 7.6, 8.1, 4.6, 0.0, 69.6, 47.5, 52.5, 0.0,30.400000000000006,3.4 +2.939929328621908,2.94,a-cure-i1,2021-22,Woburn - Daniel L Joyce Middle School,03470410, 1.0, 3.6, 6.7, 12.6, 4.4, 0.0, 71.7, 50.5, 49.5, 0.0,28.299999999999997,5.199999999999999 +1,1,a-cure-i1,2021-22,Woburn - Goodyear Elementary School,03470005, 2.0, 8.3, 5.0, 14.6, 3.7, 0.0, 66.4, 48.2, 51.8, 0.0,33.599999999999994,0.0 +1,1,a-cure-i1,2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 0.3, 4.3, 3.5, 9.6, 2.1, 0.0, 80.3, 48.7, 51.3, 0.0,19.700000000000003,0.0 +1,1,a-cure-i1,2021-22,Woburn - John F Kennedy Middle School,03470405, 1.2, 6.7, 9.5, 11.2, 5.1, 0.6, 65.7, 52.9, 47.1, 0.0,34.3,3.7 +1,1,a-cure-i1,2021-22,Woburn - Linscott-Rumford,03470025, 1.0, 17.6, 8.8, 6.3, 4.4, 0.5, 61.5, 49.8, 50.2, 0.0,38.5,0.0 +1,1,a-cure-i1,2021-22,Woburn - Malcolm White,03470055, 4.5, 6.5, 6.5, 11.7, 4.1, 0.0, 66.7, 54.0, 46.0, 0.0,33.3,0.0 +1,1,a-cure-i1,2021-22,Woburn - Mary D Altavesta,03470065, 2.2, 17.6, 11.9, 11.5, 3.1, 0.9, 52.9, 47.6, 52.4, 0.0,47.1,0.0 +1,1,a-cure-i1,2021-22,Woburn - Shamrock,03470043, 1.1, 7.1, 14.3, 19.2, 3.4, 0.0, 54.9, 44.4, 55.6, 0.0,45.1,3.8 +1,1,a-cure-i1,2021-22,Woburn - Woburn High,03470505, 0.3, 6.4, 6.5, 13.7, 2.4, 0.2, 70.4, 52.3, 47.6, 0.1,29.599999999999994,4.9 +1,1,a-cure-i1,2021-22,Worcester - Belmont Street Community,03480020, 0.2, 6.1, 19.3, 49.0, 3.7, 0.0, 21.8, 47.9, 52.1, 0.0,78.2,1.2 +2.513595166163142,2.51,a-cure-i1,2021-22,Worcester - Burncoat Middle School,03480405, 0.0, 3.9, 18.7, 38.8, 4.8, 0.0, 33.8, 52.3, 47.7, 0.0,66.2,10.4 +2.5251396648044695,2.53,a-cure-i1,2021-22,Worcester - Burncoat Senior High,03480503, 0.2, 4.1, 17.8, 45.1, 4.5, 0.0, 28.4, 46.8, 53.2, 0.0,71.6,11.3 +1.0638297872340425,1.06,a-cure-i1,2021-22,Worcester - Burncoat Street,03480035, 0.0, 4.3, 12.2, 54.7, 3.9, 0.0, 24.8, 51.2, 48.8, 0.0,75.2,5.0 +1.486988847583643,1.49,a-cure-i1,2021-22,Worcester - Canterbury,03480045, 0.3, 12.5, 11.2, 54.9, 1.7, 0.0, 19.3, 46.4, 53.6, 0.0,80.7,7.5 +1,1,a-cure-i1,2021-22,Worcester - Chandler Elementary Community,03480050, 0.2, 6.4, 13.7, 61.9, 3.8, 0.0, 13.9, 51.1, 48.9, 0.0,86.1,3.0999999999999996 +7.333333333333333,5,a-cure-i1,2021-22,Worcester - Chandler Magnet,03480052, 0.5, 1.0, 4.3, 77.0, 1.2, 0.0, 16.0, 54.8, 45.2, 0.0,84.0,38.5 +1.2750642673521853,1.28,a-cure-i1,2021-22,Worcester - City View,03480053, 0.2, 2.2, 14.0, 55.7, 5.8, 0.0, 22.2, 49.4, 50.6, 0.0,77.8,6.2 +3.2068965517241383,3.21,a-cure-i1,2021-22,Worcester - Claremont Academy,03480350, 0.2, 7.8, 10.2, 73.1, 1.5, 0.0, 7.2, 50.7, 49.3, 0.0,92.8,18.6 +3.215590742996346,3.22,a-cure-i1,2021-22,Worcester - Clark St Community,03480055, 0.4, 5.8, 19.1, 52.9, 3.9, 0.0, 17.9, 54.9, 45.1, 0.0,82.1,16.5 +1,1,a-cure-i1,2021-22,Worcester - Columbus Park,03480060, 0.8, 5.8, 12.5, 56.5, 1.9, 0.0, 22.5, 47.2, 52.8, 0.0,77.5,3.6 +2.4050632911392404,2.41,a-cure-i1,2021-22,Worcester - Doherty Memorial High,03480512, 0.3, 5.9, 14.7, 37.6, 4.7, 0.0, 36.8, 43.5, 56.5, 0.0,63.2,9.5 +1.2652068126520681,1.27,a-cure-i1,2021-22,Worcester - Elm Park Community,03480095, 0.3, 3.5, 12.8, 62.1, 3.5, 0.0, 17.8, 50.5, 49.5, 0.0,82.2,6.5 +1,1,a-cure-i1,2021-22,Worcester - Flagg Street,03480090, 0.3, 3.5, 5.6, 11.2, 3.8, 0.0, 75.5, 51.3, 48.7, 0.0,24.5,0.0 +3.938879456706282,3.94,a-cure-i1,2021-22,Worcester - Forest Grove Middle,03480415, 0.2, 4.7, 14.8, 32.4, 6.8, 0.0, 41.1, 50.0, 50.0, 0.0,58.9,14.5 +1,1,a-cure-i1,2021-22,Worcester - Francis J McGrath Elementary,03480177, 0.0, 3.9, 20.6, 43.6, 7.8, 0.0, 24.0, 47.1, 52.9, 0.0,76.0,2.6 +1.7333333333333334,1.73,a-cure-i1,2021-22,Worcester - Gates Lane,03480110, 0.2, 12.2, 15.7, 38.1, 5.8, 0.0, 28.0, 42.3, 57.7, 0.0,72.0,7.800000000000001 +1.4982658959537571,1.5,a-cure-i1,2021-22,Worcester - Goddard School/Science Technical,03480100, 0.3, 8.7, 12.2, 61.1, 4.2, 0.0, 13.5, 51.6, 48.4, 0.0,86.5,8.1 +2.4,2.4,a-cure-i1,2021-22,Worcester - Grafton Street,03480115, 0.0, 2.7, 21.7, 50.5, 3.2, 0.0, 22.0, 46.6, 53.4, 0.0,78.0,11.7 +2.5218543046357618,2.52,a-cure-i1,2021-22,Worcester - Head Start,03480002, 1.5, 2.5, 29.4, 37.3, 4.9, 0.0, 24.5, 57.8, 42.2, 0.0,75.5,11.9 +4.291296625222025,4.29,a-cure-i1,2021-22,Worcester - Heard Street,03480136, 0.0, 8.4, 14.3, 27.7, 5.9, 0.0, 43.7, 49.2, 50.8, 0.0,56.3,15.100000000000001 +1,1,a-cure-i1,2021-22,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 2.2, 33.5, 47.8, 4.2, 0.0, 12.3, 56.1, 43.9, 0.0,87.7,0.0 +13.139451728247915,5,a-cure-i1,2021-22,Worcester - La Familia Dual Language School,03480025, 0.6, 1.9, 9.7, 67.7, 3.9, 0.0, 16.1, 56.1, 43.9, 0.0,83.9,68.9 +1.4521452145214522,1.45,a-cure-i1,2021-22,Worcester - Lake View,03480145, 0.0, 7.5, 19.2, 27.0, 6.8, 0.0, 39.4, 44.6, 55.4, 0.0,60.6,5.5 +1,1,a-cure-i1,2021-22,Worcester - Lincoln Street,03480160, 0.0, 5.5, 24.3, 51.1, 3.0, 0.0, 16.2, 42.6, 57.4, 0.0,83.8,1.5 +1.8839137645107795,1.88,a-cure-i1,2021-22,Worcester - May Street,03480175, 0.3, 9.3, 13.7, 27.0, 9.7, 0.3, 39.7, 49.0, 51.0, 0.0,60.3,7.1 +2.440087145969499,2.44,a-cure-i1,2021-22,Worcester - Midland Street,03480185, 0.0, 8.7, 9.2, 19.9, 8.2, 0.0, 54.1, 50.5, 49.5, 0.0,45.9,7.0 +1.6761904761904762,1.68,a-cure-i1,2021-22,Worcester - Nelson Place,03480200, 0.0, 8.6, 15.3, 22.9, 5.6, 0.0, 47.5, 41.2, 58.8, 0.0,52.5,5.5 +3.868383404864091,3.87,a-cure-i1,2021-22,Worcester - Norrback Avenue,03480202, 0.2, 3.1, 26.8, 34.6, 5.2, 0.0, 30.1, 44.5, 55.5, 0.0,69.9,16.9 +4.3099630996309966,4.31,a-cure-i1,2021-22,Worcester - North High,03480515, 0.0, 4.2, 18.7, 54.8, 3.5, 0.0, 18.7, 47.6, 52.3, 0.1,81.3,21.9 +2.4958217270194987,2.5,a-cure-i1,2021-22,Worcester - Quinsigamond,03480210, 0.3, 3.4, 15.9, 47.5, 4.7, 0.0, 28.2, 47.2, 52.8, 0.0,71.8,11.2 +4.939313984168865,4.94,a-cure-i1,2021-22,Worcester - Rice Square,03480215, 0.4, 6.4, 23.4, 41.7, 3.9, 0.0, 24.2, 53.5, 46.5, 0.0,75.8,23.4 +1,1,a-cure-i1,2021-22,Worcester - Roosevelt,03480220, 0.2, 3.5, 27.9, 25.6, 4.6, 0.2, 37.9, 46.3, 53.8, 0.0,62.1,3.1 +2.8088426527958386,2.81,a-cure-i1,2021-22,Worcester - South High Community,03480520, 0.1, 10.4, 16.8, 46.3, 3.3, 0.0, 23.1, 46.3, 53.7, 0.1,76.9,13.5 +3.0014430014430014,3.0,a-cure-i1,2021-22,Worcester - Sullivan Middle,03480423, 0.2, 8.6, 15.3, 40.1, 5.1, 0.0, 30.7, 47.4, 52.6, 0.0,69.3,13.0 +1,1,a-cure-i1,2021-22,Worcester - Tatnuck,03480230, 0.3, 5.9, 17.6, 28.8, 5.1, 0.3, 42.2, 47.8, 52.2, 0.0,57.8,4.1 +2.8571428571428568,2.86,a-cure-i1,2021-22,Worcester - Thorndyke Road,03480235, 0.0, 5.6, 17.1, 39.8, 2.0, 0.0, 35.6, 48.7, 51.3, 0.0,64.4,11.5 +1.0059311981020167,1.01,a-cure-i1,2021-22,Worcester - Union Hill School,03480240, 0.0, 2.3, 13.8, 65.0, 3.1, 0.0, 15.7, 47.5, 52.5, 0.0,84.3,5.3 +1.5449500554938957,1.54,a-cure-i1,2021-22,Worcester - University Pk Campus School,03480285, 0.9, 15.0, 13.3, 55.8, 5.2, 0.0, 9.9, 45.9, 54.1, 0.0,90.1,8.7 +1,1,a-cure-i1,2021-22,Worcester - Vernon Hill School,03480280, 0.0, 3.2, 24.7, 54.4, 2.6, 0.0, 15.1, 52.9, 47.1, 0.0,84.9,3.3 +1.911806543385491,1.91,a-cure-i1,2021-22,Worcester - Wawecus Road School,03480026, 0.0, 7.6, 13.6, 43.2, 5.9, 0.0, 29.7, 48.3, 51.7, 0.0,70.3,8.4 +2.944,2.94,a-cure-i1,2021-22,Worcester - West Tatnuck,03480260, 0.3, 6.8, 14.7, 18.5, 9.7, 0.0, 50.0, 46.5, 53.5, 0.0,50.0,9.2 +3.382955771305286,3.38,a-cure-i1,2021-22,Worcester - Woodland Academy,03480030, 0.4, 6.3, 11.3, 72.9, 1.9, 0.0, 7.3, 50.4, 49.6, 0.0,92.7,19.6 +1,1,a-cure-i1,2021-22,Worcester - Worcester Arts Magnet School,03480225, 0.3, 8.1, 24.4, 20.6, 3.6, 0.0, 43.1, 51.9, 48.1, 0.0,56.9,0.0 +4.948885976408913,4.95,a-cure-i1,2021-22,Worcester - Worcester East Middle,03480420, 0.3, 4.1, 16.9, 50.8, 4.2, 0.0, 23.7, 47.6, 52.4, 0.0,76.3,23.6 +1.5393586005830904,1.54,a-cure-i1,2021-22,Worcester - Worcester Technical High,03480605, 0.2, 7.7, 18.6, 38.3, 3.6, 0.1, 31.4, 58.7, 41.3, 0.0,68.6,6.6 +1,1,a-cure-i1,2021-22,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 3.0, 1.5, 0.0, 95.5, 44.8, 53.7, 1.5,4.5,0.0 +1,1,a-cure-i1,2021-22,Wrentham - Charles E Roderick,03500010, 0.5, 2.6, 3.4, 6.1, 5.0, 0.3, 82.1, 50.8, 49.2, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2021-22,Wrentham - Delaney,03500003, 0.4, 3.3, 1.7, 6.3, 4.3, 0.4, 83.7, 48.4, 51.6, 0.0,16.299999999999997,1.2 +1.3542926239419588,1.35,a-cure-i1,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.6, 3.4, 54.1, 19.4, 5.1, 0.0, 17.3, 54.3, 45.7, 0.0,82.7,7.0 +1,1,a-cure-i1,2020-21,Abington - Abington Early Education Program,00010001, 0.0, 2.0, 7.8, 3.9, 0.0, 0.0, 86.3, 45.1, 54.9, 0.0,13.700000000000003,0.0 +4.783505154639173,4.78,a-cure-i1,2020-21,Abington - Abington High,00010505, 0.0, 2.9, 5.0, 10.5, 1.0, 0.0, 80.6, 47.3, 52.7, 0.0,19.400000000000006,5.8 +5.6748768472906415,5,a-cure-i1,2020-21,Abington - Abington Middle School,00010405, 0.5, 2.5, 3.8, 11.0, 2.5, 0.2, 79.7, 50.1, 49.9, 0.0,20.299999999999997,7.2 +1,1,a-cure-i1,2020-21,Abington - Beaver Brook Elementary,00010020, 1.0, 2.6, 5.2, 12.4, 3.4, 0.0, 75.5, 51.4, 48.4, 0.2,24.5,0.0 +1,1,a-cure-i1,2020-21,Abington - Woodsdale Elementary School,00010015, 1.3, 1.6, 5.6, 10.1, 0.7, 0.3, 80.4, 51.0, 49.0, 0.0,19.599999999999994,0.0 +7.305466237942123,5,a-cure-i1,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.7, 62.8, 28.3, 1.3, 0.2, 6.7, 48.5, 51.5, 0.0,93.3,42.6 +1,1,a-cure-i1,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.1, 34.9, 2.8, 5.0, 4.4, 0.0, 52.8, 47.2, 52.7, 0.1,47.2,3.5 +2.428571428571429,2.43,a-cure-i1,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 29.8, 2.7, 7.2, 5.1, 0.0, 55.2, 48.7, 51.3, 0.0,44.8,6.8 +1,1,a-cure-i1,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 15.6, 2.9, 6.1, 8.2, 0.3, 66.9, 46.6, 53.2, 0.3,33.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 35.6, 6.8, 6.8, 5.5, 0.0, 45.2, 39.7, 60.3, 0.0,54.8,0.0 +1.9007832898172325,1.9,a-cure-i1,2020-21,Acton-Boxborough - Luther Conant School,06000030, 0.0, 61.4, 3.6, 7.9, 3.8, 0.0, 23.4, 45.7, 54.3, 0.0,76.6,9.1 +1,1,a-cure-i1,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0.4, 16.1, 3.7, 9.1, 7.0, 0.0, 63.6, 50.3, 49.7, 0.0,36.4,0.0 +1,1,a-cure-i1,2020-21,Acton-Boxborough - Merriam School,06000010, 0.0, 15.9, 2.5, 6.7, 7.6, 0.0, 67.2, 49.4, 50.6, 0.0,32.8,0.0 +1.6806722689075628,1.68,a-cure-i1,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 59.7, 3.2, 4.8, 3.7, 0.0, 28.6, 47.2, 52.8, 0.0,71.4,7.5 +1.6993987975951903,1.7,a-cure-i1,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.4, 35.9, 3.4, 6.4, 3.6, 0.4, 50.1, 49.9, 49.9, 0.1,49.9,5.3 +1,1,a-cure-i1,2020-21,Acushnet - Acushnet Elementary School,00030025, 0.2, 0.8, 1.4, 4.9, 4.1, 0.0, 88.5, 46.0, 54.0, 0.0,11.5,2.9 +1,1,a-cure-i1,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.2, 1.0, 0.2, 3.8, 4.0, 0.0, 90.7, 47.7, 52.3, 0.0,9.299999999999997,0.0 +3.6273291925465836,3.63,a-cure-i1,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 17.3, 1.9, 7.0, 6.0, 0.0, 67.8, 47.5, 52.4, 0.1,32.2,7.3 +1,1,a-cure-i1,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.0, 6.6, 2.8, 15.1, 2.8, 0.0, 72.6, 44.3, 55.7, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Agawam - Agawam High,00050505, 0.1, 2.8, 1.9, 8.5, 2.9, 0.0, 83.9, 48.8, 51.1, 0.1,16.099999999999994,1.1 +1,1,a-cure-i1,2020-21,Agawam - Agawam Junior High,00050405, 0.0, 2.7, 2.9, 10.1, 3.4, 0.0, 80.8, 51.4, 48.6, 0.0,19.200000000000003,1.8 +1,1,a-cure-i1,2020-21,Agawam - Benjamin J Phelps,00050020, 0.0, 2.6, 0.6, 6.6, 3.7, 0.0, 86.6, 48.0, 52.0, 0.0,13.400000000000006,4.5 +1,1,a-cure-i1,2020-21,Agawam - Clifford M Granger,00050010, 0.0, 5.7, 2.0, 14.2, 0.8, 0.4, 76.9, 51.8, 48.2, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Agawam - James Clark School,00050030, 0.0, 5.9, 2.6, 10.4, 3.7, 0.0, 77.3, 48.7, 51.3, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Agawam - Roberta G. Doering School,00050303, 0.0, 3.0, 2.1, 11.4, 2.8, 0.0, 80.6, 43.8, 56.2, 0.0,19.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Agawam - Robinson Park,00050025, 0.0, 2.4, 2.9, 13.8, 4.8, 0.0, 76.1, 49.3, 50.7, 0.0,23.900000000000006,0.0 +2.602774274905422,2.6,a-cure-i1,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.8, 0.1, 13.7, 60.5, 4.3, 0.0, 20.7, 54.6, 45.4, 0.0,79.3,12.899999999999999 +1,1,a-cure-i1,2020-21,Amesbury - Amesbury Elementary,00070005, 0.0, 1.2, 2.5, 8.0, 4.6, 0.0, 83.7, 40.3, 59.7, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Amesbury - Amesbury High,00070505, 0.0, 1.2, 2.7, 8.4, 4.2, 0.0, 83.5, 49.7, 50.3, 0.0,16.5,2.4 +1,1,a-cure-i1,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 7.1, 7.1, 0.0, 85.7, 42.9, 54.8, 2.4,14.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Amesbury - Amesbury Middle,00070013, 0.3, 1.8, 1.9, 10.1, 4.5, 0.2, 81.3, 47.0, 53.0, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 0.3, 0.3, 1.8, 13.9, 2.9, 0.3, 80.5, 49.6, 50.4, 0.0,19.5,0.0 +4.258064516129032,4.26,a-cure-i1,2020-21,Amherst - Crocker Farm Elementary,00080009, 0.6, 13.2, 9.6, 19.7, 6.2, 0.3, 50.4, 47.6, 51.5, 0.8,49.6,13.2 +7.232472324723247,5,a-cure-i1,2020-21,Amherst - Fort River Elementary,00080020, 0.3, 11.8, 5.6, 29.1, 7.2, 0.3, 45.8, 49.3, 50.7, 0.0,54.2,24.5 +10.994059405940595,5,a-cure-i1,2020-21,Amherst - Wildwood Elementary,00080050, 0.5, 10.6, 14.1, 18.5, 6.8, 0.0, 49.5, 48.4, 51.6, 0.0,50.5,34.7 +4.934240362811791,4.93,a-cure-i1,2020-21,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 9.0, 8.3, 17.2, 9.7, 0.0, 55.9, 49.4, 50.2, 0.3,44.1,13.6 +8.325481798715202,5,a-cure-i1,2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 9.7, 7.7, 20.3, 9.0, 0.0, 53.3, 47.7, 52.3, 0.0,46.7,24.3 +6.289308176100629,5,a-cure-i1,2020-21,Andover - Andover High,00090505, 0.2, 19.4, 2.6, 7.2, 2.4, 0.0, 68.2, 53.4, 46.5, 0.2,31.799999999999997,12.5 +1,1,a-cure-i1,2020-21,Andover - Andover West Middle,00090310, 0.0, 17.5, 4.0, 8.5, 2.4, 0.0, 67.6, 48.3, 51.7, 0.0,32.400000000000006,2.7 +1,1,a-cure-i1,2020-21,Andover - Bancroft Elementary,00090003, 0.0, 8.4, 1.3, 7.5, 6.5, 0.0, 76.3, 48.0, 52.0, 0.0,23.700000000000003,3.1 +5.670886075949365,5,a-cure-i1,2020-21,Andover - Doherty Middle,00090305, 0.2, 11.0, 1.3, 7.8, 3.2, 0.2, 76.3, 50.0, 50.0, 0.0,23.700000000000003,8.399999999999999 +2.5582655826558267,2.56,a-cure-i1,2020-21,Andover - Henry C Sanborn Elementary,00090010, 0.0, 22.2, 2.7, 7.5, 4.5, 0.0, 63.1, 49.2, 50.8, 0.0,36.9,5.9 +1,1,a-cure-i1,2020-21,Andover - High Plain Elementary,00090004, 0.0, 30.6, 4.4, 10.1, 4.8, 0.2, 49.9, 46.0, 54.0, 0.0,50.1,1.8 +6.8708708708708714,5,a-cure-i1,2020-21,Andover - Shawsheen School,00090005, 0.0, 16.7, 0.0, 9.3, 7.4, 0.0, 66.7, 37.0, 63.0, 0.0,33.3,14.3 +1,1,a-cure-i1,2020-21,Andover - South Elementary,00090020, 0.2, 17.5, 1.5, 5.2, 4.1, 0.0, 71.4, 49.6, 50.4, 0.0,28.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Andover - West Elementary,00090025, 0.0, 16.3, 3.7, 7.5, 3.5, 0.0, 69.0, 46.9, 53.1, 0.0,31.0,0.0 +2.272189349112426,2.27,a-cure-i1,2020-21,Andover - Wood Hill Middle School,00090350, 0.3, 33.6, 2.7, 9.3, 4.5, 0.3, 49.3, 48.3, 51.7, 0.0,50.7,7.2 +5.740976645435244,5,a-cure-i1,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.5, 2.3, 13.5, 25.4, 5.4, 0.0, 52.9, 45.9, 54.1, 0.0,47.1,16.9 +6.573643410852713,5,a-cure-i1,2020-21,Arlington - Arlington High,00100505, 0.0, 10.9, 3.8, 5.6, 5.5, 0.1, 74.2, 53.5, 46.1, 0.4,25.799999999999997,10.6 +4.805860805860806,4.81,a-cure-i1,2020-21,Arlington - Brackett,00100010, 0.0, 11.6, 0.9, 5.2, 9.7, 0.0, 72.7, 46.7, 53.3, 0.0,27.299999999999997,8.2 +4.724409448818896,4.72,a-cure-i1,2020-21,Arlington - Cyrus E Dallin,00100025, 0.0, 13.2, 1.6, 3.5, 7.1, 0.0, 74.6, 49.9, 50.1, 0.0,25.400000000000006,7.5 +2.7012987012987013,2.7,a-cure-i1,2020-21,Arlington - Gibbs School,00100305, 0.4, 12.4, 4.3, 6.4, 7.0, 0.2, 69.2, 46.2, 53.8, 0.0,30.799999999999997,5.199999999999999 +5.349845201238391,5,a-cure-i1,2020-21,Arlington - Hardy,00100030, 0.0, 16.0, 2.5, 5.4, 8.4, 0.0, 67.7, 50.6, 49.4, 0.0,32.3,10.8 +1,1,a-cure-i1,2020-21,Arlington - John A Bishop,00100005, 0.0, 15.0, 2.9, 3.1, 10.0, 0.5, 68.5, 47.0, 53.0, 0.0,31.5,0.0 +1,1,a-cure-i1,2020-21,Arlington - M Norcross Stratton,00100055, 0.0, 19.3, 3.1, 6.3, 9.4, 0.0, 61.9, 48.0, 51.8, 0.2,38.1,4.6 +6.43855421686747,5,a-cure-i1,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, 21.5, 6.2, 7.7, 6.2, 0.0, 58.5, 46.2, 53.8, 0.0,41.5,16.7 +4.732394366197182,4.73,a-cure-i1,2020-21,Arlington - Ottoson Middle,00100410, 0.1, 9.8, 4.0, 8.1, 6.3, 0.1, 71.6, 46.5, 53.4, 0.1,28.400000000000006,8.4 +3.2558139534883717,3.26,a-cure-i1,2020-21,Arlington - Peirce,00100045, 0.0, 17.0, 4.9, 5.9, 6.6, 0.0, 65.6, 48.9, 51.1, 0.0,34.400000000000006,7.0 +1,1,a-cure-i1,2020-21,Arlington - Thompson,00100050, 0.2, 14.4, 4.2, 10.0, 8.4, 0.0, 62.8, 52.8, 47.0, 0.2,37.2,0.0 +15.230769230769221,5,a-cure-i1,2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 0.2, 1.3, 0.9, 3.7, 4.3, 0.0, 89.6, 49.9, 50.1, 0.0,10.400000000000006,9.899999999999999 +1,1,a-cure-i1,2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 2.5, 5.7, 5.1, 0.0, 86.6, 54.8, 45.2, 0.0,13.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.2, 1.2, 0.9, 3.6, 1.2, 0.0, 92.9, 49.1, 50.9, 0.0,7.099999999999994,4.8 +1,1,a-cure-i1,2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 1.1, 1.4, 7.0, 4.3, 0.0, 86.2, 48.7, 51.3, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.5, 1.1, 6.2, 1.6, 0.0, 90.5, 48.1, 51.9, 0.0,9.5,0.0 +1,1,a-cure-i1,2020-21,Ashland - Ashland High,00140505, 0.6, 13.7, 2.2, 12.4, 3.0, 0.0, 68.1, 50.8, 49.1, 0.1,31.900000000000006,1.8 +1,1,a-cure-i1,2020-21,Ashland - Ashland Middle,00140405, 0.9, 12.7, 3.0, 14.2, 3.3, 0.0, 66.0, 48.9, 51.1, 0.0,34.0,4.3 +1,1,a-cure-i1,2020-21,Ashland - David Mindess,00140015, 0.0, 17.3, 2.7, 15.1, 4.0, 0.0, 61.0, 49.8, 50.2, 0.0,39.0,4.4 +1,1,a-cure-i1,2020-21,Ashland - Henry E Warren Elementary,00140010, 0.2, 22.3, 3.7, 13.6, 3.8, 0.0, 56.4, 43.8, 56.2, 0.0,43.6,3.0 +1,1,a-cure-i1,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, 24.0, 4.0, 6.0, 2.0, 0.0, 64.0, 32.0, 68.0, 0.0,36.0,0.0 +1,1,a-cure-i1,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.2, 0.5, 1.7, 21.9, 2.3, 0.0, 73.5, 40.6, 58.5, 1.0,26.5,3.5 +1,1,a-cure-i1,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.8, 2.7, 10.8, 3.4, 0.0, 82.3, 46.6, 53.4, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Athol-Royalston - Athol High,06150505, 0.0, 0.6, 1.4, 12.1, 4.3, 0.0, 81.5, 47.1, 52.9, 0.0,18.5,0.0 +1,1,a-cure-i1,2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.2, 1.9, 1.2, 11.5, 3.6, 0.0, 81.5, 42.4, 57.6, 0.0,18.5,0.0 +1,1,a-cure-i1,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.7, 0.7, 5.1, 0.0, 93.4, 49.3, 50.7, 0.0,6.599999999999994,0.0 +3.428571428571429,3.43,a-cure-i1,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.1, 2.2, 5.4, 14.8, 4.1, 0.1, 73.4, 51.9, 48.1, 0.0,26.599999999999994,5.699999999999999 +1,1,a-cure-i1,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 2.5, 5.2, 14.5, 3.4, 0.3, 74.1, 52.2, 47.8, 0.0,25.900000000000006,4.7 +1,1,a-cure-i1,2020-21,Attleboro - Attleboro Community Academy,00160515, 2.1, 4.2, 8.3, 14.6, 2.1, 0.0, 68.8, 41.7, 58.3, 0.0,31.200000000000003,0.0 +4.536585365853659,4.54,a-cure-i1,2020-21,Attleboro - Attleboro High,00160505, 0.2, 5.1, 6.4, 16.0, 4.9, 0.2, 67.2, 46.1, 53.9, 0.1,32.8,9.3 +1,1,a-cure-i1,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0.2, 4.5, 5.8, 20.0, 6.8, 0.0, 62.7, 46.5, 53.4, 0.2,37.3,2.8 +1,1,a-cure-i1,2020-21,Attleboro - Early Learning Center,00160008, 0.0, 4.8, 7.7, 11.5, 5.8, 0.0, 70.2, 36.5, 63.5, 0.0,29.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 0.2, 5.9, 5.9, 13.5, 6.9, 0.0, 67.6, 50.4, 49.6, 0.0,32.400000000000006,0.0 +3.3087818696883855,3.31,a-cure-i1,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 2.1, 4.8, 19.1, 9.3, 0.0, 64.7, 49.7, 50.3, 0.0,35.3,7.3 +1,1,a-cure-i1,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 0.2, 5.9, 11.4, 14.7, 6.1, 0.0, 61.6, 47.4, 52.6, 0.0,38.4,0.0 +1,1,a-cure-i1,2020-21,Attleboro - Robert J. Coelho Middle School,00160305, 0.3, 5.2, 8.1, 10.6, 7.1, 0.2, 68.6, 44.5, 55.5, 0.0,31.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.3, 6.0, 16.2, 8.3, 0.0, 67.2, 47.9, 52.1, 0.0,32.8,0.0 +1,1,a-cure-i1,2020-21,Attleboro - Wamsutta Middle School,00160320, 0.0, 4.8, 6.9, 15.7, 8.7, 0.0, 63.8, 50.2, 49.8, 0.0,36.2,3.2 +1,1,a-cure-i1,2020-21,Auburn - Auburn Middle,00170305, 0.0, 5.4, 3.2, 10.9, 3.2, 0.0, 77.4, 51.3, 48.7, 0.0,22.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Auburn - Auburn Senior High,00170505, 0.1, 4.8, 3.2, 8.1, 2.8, 0.0, 80.9, 51.2, 48.8, 0.0,19.099999999999994,1.7 +1,1,a-cure-i1,2020-21,Auburn - Bryn Mawr,00170010, 0.8, 4.6, 0.8, 10.7, 3.8, 0.0, 79.4, 49.6, 50.4, 0.0,20.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Auburn - Pakachoag School,00170025, 0.0, 3.4, 1.9, 9.3, 2.6, 0.0, 82.8, 48.9, 51.1, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Auburn - Swanson Road Intermediate School,00170030, 0.0, 3.9, 1.9, 9.5, 3.7, 0.0, 81.0, 48.4, 51.6, 0.0,19.0,0.0 +3.6753022452504323,3.68,a-cure-i1,2020-21,Avon - Avon Middle High School,00180510, 1.3, 5.1, 33.8, 11.3, 6.4, 0.0, 42.1, 44.1, 55.9, 0.0,57.9,13.3 +1,1,a-cure-i1,2020-21,Avon - Ralph D Butler,00180010, 0.0, 4.0, 25.8, 13.7, 6.7, 0.0, 49.7, 51.1, 48.9, 0.0,50.3,0.0 +1,1,a-cure-i1,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.7, 2.5, 2.8, 11.8, 6.7, 0.8, 73.7, 51.3, 48.7, 0.0,26.299999999999997,3.4 +7.8688524590163915,5,a-cure-i1,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.0, 2.0, 4.6, 14.1, 2.4, 0.2, 75.6, 43.2, 56.8, 0.0,24.400000000000006,12.0 +1,1,a-cure-i1,2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.3, 1.5, 1.8, 7.3, 6.6, 0.3, 82.2, 48.6, 51.4, 0.0,17.799999999999997,4.7 +1,1,a-cure-i1,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.2, 4.8, 5.1, 10.9, 6.5, 0.0, 72.5, 48.1, 51.9, 0.0,27.5,0.0 +1,1,a-cure-i1,2020-21,Barnstable - Barnstable Community Innovation School,00200012, 1.4, 3.8, 13.7, 33.9, 6.2, 0.0, 41.1, 47.3, 52.4, 0.3,58.9,4.3 +2.904761904761905,2.9,a-cure-i1,2020-21,Barnstable - Barnstable High,00200505, 0.4, 2.0, 8.9, 17.6, 4.4, 0.3, 66.4, 50.5, 49.4, 0.1,33.599999999999994,6.1 +1,1,a-cure-i1,2020-21,Barnstable - Barnstable Intermediate School,00200315, 0.8, 2.1, 8.0, 20.2, 5.8, 0.1, 62.9, 46.5, 53.5, 0.0,37.1,2.2 +1,1,a-cure-i1,2020-21,Barnstable - Barnstable United Elementary School,00200050, 0.1, 2.8, 7.7, 21.4, 5.7, 0.0, 62.3, 47.5, 52.2, 0.3,37.7,3.8 +1,1,a-cure-i1,2020-21,Barnstable - Centerville Elementary,00200010, 0.0, 0.4, 8.0, 15.2, 12.2, 0.0, 64.1, 43.5, 56.5, 0.0,35.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 4.8, 5.6, 14.5, 14.5, 0.0, 60.5, 31.5, 68.5, 0.0,39.5,0.0 +2.148905109489051,2.15,a-cure-i1,2020-21,Barnstable - Hyannis West Elementary,00200025, 0.4, 1.1, 14.9, 38.8, 13.4, 0.0, 31.5, 51.4, 48.6, 0.0,68.5,9.2 +1,1,a-cure-i1,2020-21,Barnstable - West Barnstable Elementary,00200005, 0.0, 1.4, 3.2, 14.9, 10.9, 0.0, 69.7, 46.2, 53.8, 0.0,30.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Barnstable - West Villages Elementary School,00200045, 0.0, 0.8, 1.8, 12.1, 10.5, 0.0, 74.7, 49.2, 50.8, 0.0,25.299999999999997,0.0 +5.984322508398656,5,a-cure-i1,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.9, 27.5, 59.3, 1.3, 0.4, 10.7, 46.7, 53.3, 0.0,89.3,33.4 +2.3384615384615386,2.34,a-cure-i1,2020-21,Bedford - Bedford High,00230505, 0.0, 14.8, 7.1, 11.6, 5.3, 0.1, 61.0, 49.3, 50.5, 0.1,39.0,5.7 +1,1,a-cure-i1,2020-21,Bedford - John Glenn Middle,00230305, 0.2, 20.0, 5.9, 4.7, 2.1, 0.0, 67.1, 47.3, 52.7, 0.0,32.900000000000006,0.4 +1,1,a-cure-i1,2020-21,Bedford - Lt Elezer Davis,00230010, 0.0, 25.2, 5.6, 6.6, 7.7, 0.0, 54.9, 43.0, 57.0, 0.0,45.1,3.1 +3.395121951219512,3.4,a-cure-i1,2020-21,Bedford - Lt Job Lane School,00230012, 0.0, 20.6, 6.6, 5.6, 8.1, 0.0, 59.0, 52.1, 47.9, 0.0,41.0,8.7 +1,1,a-cure-i1,2020-21,Belchertown - Belchertown High,00240505, 0.4, 1.3, 2.3, 3.2, 2.6, 0.4, 89.8, 52.2, 47.6, 0.3,10.200000000000003,2.1 +1,1,a-cure-i1,2020-21,Belchertown - Chestnut Hill Community School,00240006, 0.6, 1.0, 1.6, 7.6, 5.3, 0.0, 83.7, 46.3, 53.7, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Belchertown - Cold Spring,00240005, 0.0, 0.0, 1.1, 11.9, 4.5, 0.0, 82.4, 45.5, 54.5, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Belchertown - Jabish Middle School,00240025, 0.3, 1.1, 2.5, 4.2, 2.0, 0.3, 89.5, 48.0, 51.7, 0.3,10.5,0.0 +1,1,a-cure-i1,2020-21,Belchertown - Swift River Elementary,00240018, 0.0, 1.8, 0.5, 7.5, 4.1, 0.0, 86.1, 50.3, 49.7, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 3.5, 3.5, 8.8, 0.0, 0.0, 84.2, 54.4, 45.6, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Bellingham - Bellingham High School,00250505, 0.0, 4.1, 2.3, 5.6, 2.3, 0.0, 85.5, 48.6, 51.4, 0.0,14.5,3.6 +1,1,a-cure-i1,2020-21,Bellingham - Bellingham Memorial School,00250315, 0.2, 2.3, 2.0, 6.5, 2.6, 0.3, 86.1, 51.3, 48.7, 0.0,13.900000000000006,2.6 +1,1,a-cure-i1,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 3.9, 2.1, 9.1, 3.9, 0.7, 80.4, 53.7, 46.3, 0.0,19.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 9.5, 0.0, 0.0, 90.5, 47.6, 47.6, 4.8,9.5,0.0 +1,1,a-cure-i1,2020-21,Bellingham - Stall Brook,00250025, 0.0, 1.6, 1.6, 9.7, 4.0, 1.2, 81.9, 48.0, 52.0, 0.0,18.099999999999994,0.0 +5.006134969325155,5,a-cure-i1,2020-21,Belmont - Belmont High,00260505, 0.1, 18.2, 3.4, 4.7, 6.3, 0.0, 67.4, 50.3, 49.7, 0.0,32.599999999999994,10.200000000000001 +3.1861471861471857,3.19,a-cure-i1,2020-21,Belmont - Daniel Butler,00260015, 0.0, 27.9, 2.1, 4.5, 11.7, 0.0, 53.8, 48.6, 51.4, 0.0,46.2,9.2 +4.117962466487936,4.12,a-cure-i1,2020-21,Belmont - Mary Lee Burbank,00260010, 0.0, 21.3, 4.3, 1.6, 9.9, 0.3, 62.7, 49.3, 50.7, 0.0,37.3,9.6 +1,1,a-cure-i1,2020-21,Belmont - Roger E Wellington,00260035, 0.0, 16.4, 4.1, 1.6, 10.7, 0.0, 67.3, 51.4, 48.6, 0.0,32.7,2.8 +1,1,a-cure-i1,2020-21,Belmont - Winn Brook,00260005, 0.0, 31.3, 0.5, 4.2, 7.9, 0.0, 56.1, 50.6, 49.4, 0.0,43.9,0.0 +7.387862796833773,5,a-cure-i1,2020-21,Belmont - Winthrop L Chenery Middle,00260305, 0.2, 21.8, 3.5, 4.1, 8.2, 0.1, 62.1, 49.5, 50.5, 0.0,37.9,17.5 +8.640657084188911,5,a-cure-i1,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.3, 1.7, 77.9, 11.9, 4.9, 0.6, 2.6, 50.9, 48.8, 0.3,97.4,52.6 +1,1,a-cure-i1,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.6, 19.2, 3.0, 4.8, 4.1, 0.1, 68.2, 50.3, 49.7, 0.0,31.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Berkley - Berkley Community School,00270010, 0.2, 0.8, 1.1, 2.3, 4.6, 0.2, 90.7, 46.9, 53.1, 0.0,9.299999999999997,3.2 +1,1,a-cure-i1,2020-21,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.5, 2.6, 3.9, 0.0, 93.1, 52.2, 47.8, 0.0,6.900000000000006,0.0 +3.171171171171171,3.17,a-cure-i1,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.3, 2.4, 12.6, 12.4, 5.6, 0.0, 66.7, 46.2, 53.2, 0.5,33.3,6.6 +4.620320855614973,4.62,a-cure-i1,2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 0.4, 3.0, 1.6, 9.4, 3.8, 0.6, 81.3, 51.2, 48.8, 0.0,18.700000000000003,5.4 +1,1,a-cure-i1,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 2.8, 1.3, 13.2, 8.5, 0.0, 74.2, 54.4, 45.6, 0.0,25.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 3.2, 1.7, 11.6, 6.1, 0.0, 77.3, 43.6, 56.4, 0.0,22.700000000000003,2.4 +1,1,a-cure-i1,2020-21,Berlin-Boylston - Berlin Memorial School,06200005, 1.1, 1.6, 0.5, 10.0, 4.7, 0.0, 82.1, 52.1, 47.9, 0.0,17.900000000000006,0.0 +4.808743169398908,4.81,a-cure-i1,2020-21,Berlin-Boylston - Boylston Elementary School,06200010, 0.3, 5.0, 1.3, 7.0, 4.7, 0.0, 81.7, 47.0, 53.0, 0.0,18.299999999999997,5.5 +1,1,a-cure-i1,2020-21,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 5.2, 1.8, 6.1, 2.7, 0.2, 84.0, 51.3, 48.4, 0.4,16.0,2.3 +1,1,a-cure-i1,2020-21,Beverly - Ayers/Ryal Side School,00300055, 0.0, 2.0, 3.7, 13.4, 3.2, 0.0, 77.7, 47.9, 52.1, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Beverly - Beverly High,00300505, 0.1, 2.7, 3.6, 14.7, 3.3, 0.1, 75.5, 47.6, 52.3, 0.1,24.5,2.3 +3.8095238095238093,3.81,a-cure-i1,2020-21,Beverly - Beverly Middle School,00300305, 0.1, 2.4, 3.3, 15.9, 3.5, 0.1, 74.8, 49.5, 50.5, 0.0,25.200000000000003,6.0 +1,1,a-cure-i1,2020-21,Beverly - Centerville Elementary,00300010, 0.0, 2.1, 4.8, 17.1, 5.7, 0.0, 70.4, 49.1, 50.9, 0.0,29.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Beverly - Cove Elementary,00300015, 0.0, 2.2, 3.5, 16.8, 5.9, 0.0, 71.5, 48.3, 51.7, 0.0,28.5,0.0 +1,1,a-cure-i1,2020-21,Beverly - Hannah Elementary,00300033, 0.0, 2.8, 4.4, 12.7, 3.8, 0.0, 76.3, 48.1, 51.9, 0.0,23.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Beverly - McKeown School,00300002, 0.0, 8.5, 4.9, 14.6, 4.9, 0.0, 67.1, 37.8, 62.2, 0.0,32.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Beverly - North Beverly Elementary,00300040, 0.3, 1.9, 2.4, 12.9, 4.8, 0.0, 77.7, 45.8, 54.2, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Billerica - Billerica Memorial High School,00310505, 0.2, 8.9, 6.2, 7.1, 2.2, 0.2, 75.2, 49.8, 50.2, 0.1,24.799999999999997,3.4000000000000004 +1,1,a-cure-i1,2020-21,Billerica - Frederick J Dutile,00310007, 0.0, 12.7, 4.5, 7.8, 2.5, 0.0, 72.5, 54.5, 45.5, 0.0,27.5,0.0 +1,1,a-cure-i1,2020-21,Billerica - Hajjar Elementary,00310026, 0.0, 8.6, 3.4, 12.9, 3.1, 0.0, 72.0, 51.7, 48.3, 0.0,28.0,0.0 +1,1,a-cure-i1,2020-21,Billerica - John F Kennedy,00310012, 0.0, 4.9, 2.3, 5.9, 4.6, 0.0, 82.4, 55.0, 45.0, 0.0,17.599999999999994,4.8 +1,1,a-cure-i1,2020-21,Billerica - Locke Middle,00310310, 0.0, 7.8, 3.6, 6.5, 5.2, 0.0, 76.9, 47.9, 52.1, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Billerica - Marshall Middle School,00310305, 0.2, 8.7, 8.2, 10.1, 2.8, 0.0, 70.0, 47.7, 52.3, 0.0,30.0,4.1 +1,1,a-cure-i1,2020-21,Billerica - Parker,00310015, 0.0, 13.0, 7.8, 8.5, 2.8, 0.0, 67.9, 49.7, 50.3, 0.0,32.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Billerica - Thomas Ditson,00310005, 0.0, 10.4, 3.6, 6.6, 4.7, 0.0, 74.6, 47.6, 52.4, 0.0,25.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.9, 1.2, 7.7, 2.4, 0.1, 86.7, 50.1, 49.7, 0.2,13.299999999999997,2.0 +1,1,a-cure-i1,2020-21,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.4, 0.7, 10.1, 7.2, 0.0, 81.6, 47.3, 52.7, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.0, 2.4, 6.7, 3.6, 0.0, 86.4, 46.1, 53.7, 0.2,13.599999999999994,4.1 +10.044444444444444,5,a-cure-i1,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 1.3, 10.8, 4.9, 0.0, 82.0, 52.4, 47.3, 0.3,18.0,11.3 +1,1,a-cure-i1,2020-21,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 2.9, 9.8, 3.4, 0.0, 82.8, 51.0, 49.0, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.4, 1.4, 5.4, 2.2, 0.0, 90.6, 42.8, 57.2, 0.0,9.400000000000006,0.0 +3.263157894736842,3.26,a-cure-i1,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.7, 2.1, 22.1, 15.3, 5.4, 0.0, 54.4, 46.1, 53.9, 0.0,45.6,9.3 +7.856691253951529,5,a-cure-i1,2020-21,Boston - Another Course To College,00350541, 0.4, 0.8, 50.4, 41.1, 2.1, 0.0, 5.1, 41.5, 58.1, 0.4,94.9,46.60000000000001 +9.931758530183727,5,a-cure-i1,2020-21,Boston - Baldwin Early Learning Center,00350003, 0.7, 23.1, 12.9, 28.6, 10.9, 0.0, 23.8, 47.6, 52.4, 0.0,76.2,47.3 +2.9948006932409013,2.99,a-cure-i1,2020-21,Boston - Beethoven,00350021, 0.0, 3.9, 22.9, 25.8, 5.0, 0.0, 42.3, 47.7, 52.3, 0.0,57.7,10.8 +6.297872340425532,5,a-cure-i1,2020-21,Boston - Blackstone,00350390, 0.2, 2.3, 26.5, 63.1, 1.9, 0.0, 6.0, 45.8, 54.2, 0.0,94.0,37.0 +12.371134020618557,5,a-cure-i1,2020-21,Boston - Boston Adult Academy,00350548, 0.0, 5.3, 35.3, 55.6, 0.0, 0.8, 3.0, 39.8, 60.2, 0.0,97.0,75.0 +9.185510428100988,5,a-cure-i1,2020-21,Boston - Boston Arts Academy,00350546, 0.4, 2.1, 41.7, 41.7, 5.0, 0.2, 8.9, 69.1, 30.3, 0.6,91.1,52.3 +6.233995584988962,5,a-cure-i1,2020-21,Boston - Boston Collaborative High School,00350755, 0.0, 3.1, 33.8, 51.9, 1.9, 0.0, 9.4, 42.5, 57.5, 0.0,90.6,35.3 +8.703205791106514,5,a-cure-i1,2020-21,Boston - Boston Community Leadership Academy,00350558, 0.2, 2.7, 36.2, 56.5, 0.8, 0.2, 3.3, 47.5, 52.5, 0.0,96.7,52.6 +8.260692464358453,5,a-cure-i1,2020-21,Boston - Boston International High School,00350507, 0.3, 8.8, 33.4, 55.5, 0.3, 0.0, 1.8, 42.5, 57.5, 0.0,98.2,50.7 +8.965765765765767,5,a-cure-i1,2020-21,Boston - Boston Latin,00350560, 0.1, 29.3, 7.7, 13.4, 4.7, 0.2, 44.5, 52.3, 47.5, 0.2,55.5,31.1 +8.73968705547653,5,a-cure-i1,2020-21,Boston - Boston Latin Academy,00350545, 0.1, 18.8, 21.4, 26.4, 3.5, 0.1, 29.7, 58.6, 41.1, 0.3,70.3,38.400000000000006 +9.146456692913386,5,a-cure-i1,2020-21,Boston - Boston Teachers Union School,00350012, 0.4, 1.8, 23.5, 31.8, 6.1, 0.0, 36.5, 50.2, 49.8, 0.0,63.5,36.3 +6.16421052631579,5,a-cure-i1,2020-21,Boston - Brighton High,00350505, 0.2, 4.0, 38.1, 50.5, 2.0, 0.2, 5.0, 41.8, 58.2, 0.0,95.0,36.6 +18.779342723004696,5,a-cure-i1,2020-21,Boston - Carter School,00350036, 0.0, 7.4, 48.1, 25.9, 0.0, 3.7, 14.8, 44.4, 55.6, 0.0,85.2,100.0 +11.714867617107942,5,a-cure-i1,2020-21,Boston - Charles H Taylor,00350054, 0.9, 0.6, 74.9, 19.9, 1.8, 0.0, 1.8, 50.8, 49.2, 0.0,98.2,71.89999999999999 +9.194479297365119,5,a-cure-i1,2020-21,Boston - Charles Sumner,00350052, 0.0, 1.2, 16.7, 56.7, 5.1, 0.0, 20.3, 48.0, 52.0, 0.0,79.7,45.8 +6.77115987460815,5,a-cure-i1,2020-21,Boston - Charlestown High,00350515, 0.3, 7.8, 28.0, 58.6, 1.0, 0.0, 4.3, 43.1, 56.9, 0.0,95.7,40.5 +7.548172757475082,5,a-cure-i1,2020-21,Boston - Clarence R Edwards Middle,00350430, 0.0, 2.4, 16.0, 69.9, 1.0, 1.0, 9.7, 48.1, 51.9, 0.0,90.3,42.599999999999994 +14.672,5,a-cure-i1,2020-21,Boston - Community Academy,00350518, 2.0, 0.0, 66.7, 27.5, 3.9, 0.0, 0.0, 45.1, 54.9, 0.0,100.0,91.7 +7.032786885245902,5,a-cure-i1,2020-21,Boston - Community Academy of Science and Health,00350581, 0.3, 4.2, 59.6, 29.3, 4.2, 0.0, 2.4, 43.7, 56.3, 0.0,97.6,42.9 +7.1800000000000015,5,a-cure-i1,2020-21,Boston - Condon K-8,00350146, 0.4, 6.9, 30.1, 37.8, 4.5, 0.3, 20.0, 47.3, 52.7, 0.0,80.0,35.900000000000006 +7.311706629055006,5,a-cure-i1,2020-21,Boston - Curley K-8 School,00350020, 0.1, 2.5, 16.8, 44.5, 7.0, 0.0, 29.1, 46.5, 53.5, 0.0,70.9,32.4 +5.7990430622009566,5,a-cure-i1,2020-21,Boston - Curtis Guild,00350062, 0.0, 1.2, 2.0, 80.1, 0.4, 0.0, 16.4, 46.5, 53.5, 0.0,83.6,30.299999999999997 +5.640449438202247,5,a-cure-i1,2020-21,Boston - Dante Alighieri Montessori School,00350066, 0.0, 3.6, 1.8, 57.7, 8.1, 0.0, 28.8, 48.6, 51.4, 0.0,71.2,25.1 +10.715746421267895,5,a-cure-i1,2020-21,Boston - David A Ellis,00350072, 0.0, 0.0, 37.6, 58.6, 1.7, 0.0, 2.2, 49.7, 50.3, 0.0,97.8,65.5 +7.779366700715015,5,a-cure-i1,2020-21,Boston - Dearborn,00350074, 0.2, 0.9, 59.7, 32.2, 4.0, 1.0, 2.1, 50.2, 49.7, 0.2,97.9,47.6 +3.795918367346939,3.8,a-cure-i1,2020-21,Boston - Dennis C Haley,00350077, 0.0, 0.8, 36.1, 35.4, 5.8, 0.3, 21.6, 46.4, 53.6, 0.0,78.4,18.6 +5.6695652173913045,5,a-cure-i1,2020-21,Boston - Donald Mckay,00350080, 0.0, 0.5, 2.0, 87.6, 1.9, 0.0, 8.0, 51.1, 48.9, 0.0,92.0,32.6 +7.748427672955975,5,a-cure-i1,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.6, 1.1, 53.4, 38.5, 1.7, 0.0, 4.6, 48.3, 51.7, 0.0,95.4,46.2 +9.453471196454949,5,a-cure-i1,2020-21,Boston - Dr. William Henderson Lower,00350266, 0.0, 10.6, 30.3, 19.2, 5.6, 2.0, 32.3, 52.0, 47.5, 0.5,67.7,40.0 +6.6355828220858895,5,a-cure-i1,2020-21,Boston - Dr. William Henderson Upper,00350426, 0.8, 8.7, 42.7, 24.9, 4.3, 0.1, 18.5, 44.9, 55.0, 0.1,81.5,33.8 +13.415220293724966,5,a-cure-i1,2020-21,Boston - East Boston Early Childhood Center,00350009, 0.5, 2.1, 5.9, 63.1, 2.7, 0.5, 25.1, 50.3, 49.7, 0.0,74.9,62.8 +4.901220865704773,4.9,a-cure-i1,2020-21,Boston - East Boston High,00350530, 0.1, 2.1, 4.6, 81.8, 1.4, 0.1, 9.9, 41.7, 58.3, 0.0,90.1,27.6 +6.2537142857142864,5,a-cure-i1,2020-21,Boston - Edison K-8,00350375, 0.8, 13.7, 16.0, 53.3, 3.7, 0.2, 12.5, 45.4, 54.6, 0.0,87.5,34.2 +5.186906019007392,5,a-cure-i1,2020-21,Boston - Edward Everett,00350088, 0.7, 15.1, 41.8, 33.7, 3.2, 0.4, 5.3, 51.9, 48.1, 0.0,94.7,30.7 +3.5099183197199535,3.51,a-cure-i1,2020-21,Boston - ELC - West Zone,00350006, 0.0, 8.2, 28.6, 42.9, 6.1, 0.0, 14.3, 44.9, 55.1, 0.0,85.7,18.8 +16.558603491271818,5,a-cure-i1,2020-21,Boston - Eliot Elementary,00350096, 0.3, 11.0, 5.9, 15.9, 6.8, 0.3, 59.9, 49.3, 50.7, 0.0,40.1,41.49999999999999 +10.407294832826748,5,a-cure-i1,2020-21,Boston - Ellis Mendell,00350100, 0.0, 2.2, 27.9, 27.5, 8.2, 0.0, 34.2, 47.2, 52.4, 0.4,65.8,42.8 +9.155172413793103,5,a-cure-i1,2020-21,Boston - Excel High School,00350522, 0.4, 21.0, 27.0, 42.0, 2.1, 0.2, 7.2, 40.1, 59.9, 0.0,92.8,53.1 +7.933054393305441,5,a-cure-i1,2020-21,Boston - Fenway High School,00350540, 0.3, 2.6, 29.4, 60.6, 2.6, 0.3, 4.4, 51.5, 48.5, 0.0,95.6,47.400000000000006 +2.7166276346604215,2.72,a-cure-i1,2020-21,Boston - Franklin D Roosevelt,00350116, 0.5, 4.0, 35.6, 38.1, 6.9, 0.2, 14.6, 45.5, 54.5, 0.0,85.4,14.5 +7.390300230946883,5,a-cure-i1,2020-21,Boston - Gardner Pilot Academy,00350326, 0.0, 5.6, 10.2, 65.7, 5.1, 0.0, 13.4, 49.1, 50.4, 0.5,86.6,40.0 +7.241895261845388,5,a-cure-i1,2020-21,Boston - George H Conley,00350122, 0.0, 1.6, 35.9, 38.5, 3.6, 0.5, 19.8, 47.9, 52.1, 0.0,80.2,36.300000000000004 +9.775967413441954,5,a-cure-i1,2020-21,Boston - Greater Egleston Community High School,00350543, 0.0, 0.9, 47.4, 44.7, 5.3, 0.0, 1.8, 50.0, 50.0, 0.0,98.2,60.0 +5.402328589909445,5,a-cure-i1,2020-21,Boston - Harvard-Kent,00350200, 0.3, 19.6, 21.9, 31.4, 4.1, 0.0, 22.7, 45.6, 54.4, 0.0,77.3,26.1 +11.128258602711158,5,a-cure-i1,2020-21,Boston - Haynes Early Education Center,00350010, 0.6, 2.9, 40.7, 44.8, 7.0, 0.0, 4.1, 45.3, 54.7, 0.0,95.9,66.7 +7.4124293785310735,5,a-cure-i1,2020-21,Boston - Henry Grew,00350135, 0.5, 0.0, 39.6, 40.1, 8.3, 0.0, 11.5, 51.2, 48.8, 0.0,88.5,41.0 +5.768378650553877,5,a-cure-i1,2020-21,Boston - Higginson,00350015, 0.7, 0.7, 41.0, 56.0, 0.7, 0.0, 0.7, 45.5, 54.5, 0.0,99.3,35.8 +9.3510747185261,5,a-cure-i1,2020-21,Boston - Higginson/Lewis K-8,00350377, 0.0, 1.4, 43.4, 47.9, 5.0, 0.0, 2.3, 41.6, 58.4, 0.0,97.7,57.1 +1.1085450346420325,1.11,a-cure-i1,2020-21,Boston - Horace Mann School for the Deaf,00350750, 0.0, 4.5, 32.8, 49.3, 0.0, 0.0, 13.4, 32.8, 67.2, 0.0,86.6,6.0 +4.596300326441784,4.6,a-cure-i1,2020-21,Boston - Hugh Roe O'Donnell,00350141, 0.0, 2.6, 0.4, 88.6, 0.4, 0.0, 8.1, 50.0, 50.0, 0.0,91.9,26.4 +5.948275862068965,5,a-cure-i1,2020-21,Boston - Jackson Mann,00350013, 0.9, 11.7, 29.4, 48.3, 2.6, 0.0, 7.2, 41.5, 58.5, 0.0,92.8,34.5 +5.208907741251325,5,a-cure-i1,2020-21,Boston - James J Chittick,00350154, 0.0, 0.8, 61.8, 28.9, 2.8, 0.0, 5.7, 48.8, 51.2, 0.0,94.3,30.699999999999996 +1.5639097744360901,1.56,a-cure-i1,2020-21,Boston - James Otis,00350156, 0.2, 2.4, 4.4, 70.7, 2.0, 0.0, 20.2, 52.7, 47.3, 0.0,79.8,7.8 +10.812563323201621,5,a-cure-i1,2020-21,Boston - James P Timilty Middle,00350485, 0.0, 0.9, 35.6, 59.7, 2.6, 0.0, 1.3, 50.6, 49.4, 0.0,98.7,66.7 +7.026014568158169,5,a-cure-i1,2020-21,Boston - James W Hennigan,00350153, 0.0, 2.6, 28.7, 63.9, 0.7, 0.2, 3.9, 51.1, 48.9, 0.0,96.1,42.2 +7.983367983367983,5,a-cure-i1,2020-21,Boston - Jeremiah E Burke High,00350525, 0.0, 0.8, 59.5, 32.3, 2.8, 0.8, 3.8, 42.6, 57.4, 0.0,96.2,48.0 +8.397687861271676,5,a-cure-i1,2020-21,Boston - John D Philbrick,00350172, 1.8, 2.7, 43.2, 36.0, 2.7, 0.0, 13.5, 45.9, 54.1, 0.0,86.5,45.4 +4.742791234140715,4.74,a-cure-i1,2020-21,Boston - John F Kennedy,00350166, 0.3, 1.7, 18.2, 64.3, 2.3, 0.0, 13.3, 45.8, 54.2, 0.0,86.7,25.7 +6.847736625514403,5,a-cure-i1,2020-21,Boston - John W McCormack,00350179, 0.4, 6.4, 27.6, 60.0, 2.8, 0.0, 2.8, 52.0, 48.0, 0.0,97.2,41.6 +5.104294478527607,5,a-cure-i1,2020-21,Boston - John Winthrop,00350180, 0.4, 0.9, 54.5, 39.0, 3.0, 0.0, 2.2, 58.4, 41.6, 0.0,97.8,31.2 +12.157635467980295,5,a-cure-i1,2020-21,Boston - Joseph J Hurley,00350182, 0.6, 2.2, 4.5, 71.1, 2.8, 0.0, 18.8, 53.1, 46.9, 0.0,81.2,61.7 +5.654008438818566,5,a-cure-i1,2020-21,Boston - Joseph Lee,00350183, 0.3, 4.5, 53.8, 30.2, 5.6, 0.3, 5.2, 43.6, 56.4, 0.0,94.8,33.5 +2.264432029795158,2.26,a-cure-i1,2020-21,Boston - Joseph P Manning,00350184, 0.0, 5.7, 12.6, 24.0, 10.9, 0.6, 46.3, 47.4, 52.6, 0.0,53.7,7.6 +7.044025157232705,5,a-cure-i1,2020-21,Boston - Joseph P Tynan,00350181, 0.4, 6.4, 40.6, 26.9, 5.2, 0.0, 20.5, 43.0, 57.0, 0.0,79.5,35.0 +10.751131221719456,5,a-cure-i1,2020-21,Boston - Josiah Quincy,00350286, 0.0, 62.5, 12.1, 8.6, 5.1, 0.0, 11.6, 49.9, 50.1, 0.0,88.4,59.4 +7.167999999999999,5,a-cure-i1,2020-21,Boston - Joyce Kilmer,00350190, 0.0, 7.7, 16.1, 21.0, 5.1, 0.0, 50.0, 43.9, 56.1, 0.0,50.0,22.4 +10.257668711656443,5,a-cure-i1,2020-21,Boston - King K-8,00350376, 0.7, 1.6, 56.5, 36.2, 2.6, 0.2, 2.2, 48.5, 51.5, 0.0,97.8,62.7 +5.105656350053361,5,a-cure-i1,2020-21,Boston - Lee Academy,00350001, 0.0, 7.3, 45.8, 34.4, 6.3, 0.0, 6.3, 50.0, 50.0, 0.0,93.7,29.9 +8.700610997963338,5,a-cure-i1,2020-21,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 10.5, 40.2, 45.1, 2.4, 0.0, 1.8, 44.9, 55.1, 0.0,98.2,53.39999999999999 +7.886255924170616,5,a-cure-i1,2020-21,Boston - Lyndon,00350262, 0.2, 3.4, 9.3, 24.1, 5.1, 0.2, 57.8, 50.0, 50.0, 0.0,42.2,20.8 +9.148825065274151,5,a-cure-i1,2020-21,Boston - Lyon K-8,00350004, 0.0, 8.9, 25.8, 33.1, 8.9, 0.0, 23.4, 43.5, 56.5, 0.0,76.6,43.8 +8.590604026845638,5,a-cure-i1,2020-21,Boston - Lyon Upper 9-12,00350655, 0.0, 4.4, 21.2, 40.9, 8.0, 0.0, 25.5, 38.7, 61.3, 0.0,74.5,40.0 +7.7784615384615385,5,a-cure-i1,2020-21,Boston - Madison Park High,00350537, 0.4, 1.9, 39.7, 53.4, 1.8, 0.3, 2.5, 41.5, 58.5, 0.0,97.5,47.4 +1.425,1.43,a-cure-i1,2020-21,Boston - Manassah E Bradley,00350215, 0.0, 7.6, 6.3, 46.9, 2.6, 0.7, 36.0, 48.2, 51.8, 0.0,64.0,5.7 +7.45271629778672,5,a-cure-i1,2020-21,Boston - Margarita Muniz Academy,00350549, 0.3, 0.0, 6.7, 91.7, 0.6, 0.0, 0.6, 49.5, 50.5, 0.0,99.4,46.300000000000004 +6.06423982869379,5,a-cure-i1,2020-21,Boston - Mario Umana Academy,00350656, 0.1, 2.0, 1.7, 88.8, 0.8, 0.0, 6.6, 48.8, 51.2, 0.0,93.4,35.4 +9.025210084033613,5,a-cure-i1,2020-21,Boston - Mather,00350227, 0.4, 31.2, 38.4, 19.2, 5.8, 0.2, 4.8, 49.8, 50.2, 0.0,95.2,53.7 +6.7723995880535535,5,a-cure-i1,2020-21,Boston - Mattahunt Elementary School,00350016, 0.7, 0.7, 67.4, 24.5, 3.4, 0.2, 2.9, 41.9, 58.1, 0.0,97.1,41.1 +8.614090431125133,5,a-cure-i1,2020-21,Boston - Maurice J Tobin,00350229, 0.5, 1.7, 28.9, 62.3, 1.7, 0.0, 4.9, 51.2, 48.8, 0.0,95.1,51.2 +7.538280329799764,5,a-cure-i1,2020-21,Boston - Michael J Perkins,00350231, 0.0, 8.4, 39.8, 32.5, 4.2, 0.0, 15.1, 52.4, 47.6, 0.0,84.9,40.0 +8.09025641025641,5,a-cure-i1,2020-21,Boston - Mildred Avenue K-8,00350378, 0.7, 1.6, 63.1, 28.4, 3.6, 0.0, 2.5, 48.3, 51.7, 0.0,97.5,49.3 +11.250374812593702,5,a-cure-i1,2020-21,Boston - Mission Hill School,00350382, 0.0, 1.8, 26.8, 31.1, 6.6, 0.4, 33.3, 42.1, 57.9, 0.0,66.7,46.9 +8.39794168096055,5,a-cure-i1,2020-21,Boston - Mozart,00350237, 0.6, 2.4, 26.8, 20.8, 7.7, 0.0, 41.7, 38.7, 61.3, 0.0,58.3,30.6 +8.329004329004327,5,a-cure-i1,2020-21,Boston - Nathan Hale,00350243, 0.0, 7.0, 51.5, 30.4, 3.5, 0.0, 7.6, 53.8, 46.2, 0.0,92.4,48.099999999999994 +7.484135107471852,5,a-cure-i1,2020-21,Boston - New Mission High School,00350542, 0.2, 2.3, 49.7, 43.5, 2.1, 0.0, 2.3, 51.1, 48.6, 0.2,97.7,45.699999999999996 +5.602471678681772,5,a-cure-i1,2020-21,Boston - O W Holmes,00350138, 0.0, 2.6, 54.0, 36.1, 4.4, 0.0, 2.9, 39.8, 60.2, 0.0,97.1,34.0 +10.129105322763307,5,a-cure-i1,2020-21,Boston - O'Bryant School Math/Science,00350575, 0.1, 20.2, 32.3, 33.8, 1.6, 0.2, 11.7, 54.7, 45.3, 0.0,88.3,55.9 +10.768496420047732,5,a-cure-i1,2020-21,Boston - Oliver Hazard Perry,00350255, 0.0, 3.4, 15.8, 18.7, 3.9, 0.0, 58.1, 46.8, 53.2, 0.0,41.9,28.2 +6.370672097759674,5,a-cure-i1,2020-21,Boston - Orchard Gardens,00350257, 1.0, 1.0, 51.7, 41.8, 2.0, 0.7, 1.8, 49.5, 50.5, 0.0,98.2,39.1 +4.735729386892178,4.74,a-cure-i1,2020-21,Boston - Patrick J Kennedy,00350264, 0.0, 1.8, 4.3, 87.4, 1.1, 0.0, 5.4, 43.5, 56.5, 0.0,94.6,28.0 +6.242622950819673,5,a-cure-i1,2020-21,Boston - Paul A Dever,00350268, 0.6, 4.5, 24.6, 60.2, 1.4, 0.3, 8.5, 42.4, 57.6, 0.0,91.5,35.7 +5.133603238866398,5,a-cure-i1,2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 1.9, 0.6, 68.5, 26.5, 1.2, 0.0, 1.2, 51.9, 48.1, 0.0,98.8,31.700000000000003 +3.6190476190476186,3.62,a-cure-i1,2020-21,Boston - Phineas Bates,00350278, 0.4, 3.4, 29.4, 29.8, 4.2, 0.0, 32.8, 44.5, 55.5, 0.0,67.2,15.2 +10.018691588785046,5,a-cure-i1,2020-21,Boston - Quincy Upper School,00350565, 0.2, 49.7, 21.7, 22.1, 2.6, 0.0, 3.7, 47.9, 52.1, 0.0,96.3,60.3 +10.944625407166125,5,a-cure-i1,2020-21,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 3.6, 85.6, 2.9, 0.0, 7.9, 52.9, 47.1, 0.0,92.1,63.0 +6.527716186252771,5,a-cure-i1,2020-21,Boston - Richard J Murphy,00350240, 0.3, 50.4, 18.7, 16.9, 3.6, 0.2, 9.8, 48.3, 51.7, 0.0,90.2,36.8 +4.822695035460994,4.82,a-cure-i1,2020-21,Boston - Roger Clap,00350298, 0.0, 8.1, 33.3, 40.7, 2.4, 0.0, 15.4, 46.3, 53.7, 0.0,84.6,25.5 +5.748502994011976,5,a-cure-i1,2020-21,Boston - Samuel Adams,00350302, 0.4, 1.6, 3.2, 77.0, 1.2, 0.0, 16.5, 51.2, 48.8, 0.0,83.5,30.0 +8.050526315789472,5,a-cure-i1,2020-21,Boston - Samuel W Mason,00350304, 0.9, 1.8, 55.2, 30.8, 6.3, 0.0, 5.0, 46.6, 52.9, 0.5,95.0,47.8 +6.936040609137057,5,a-cure-i1,2020-21,Boston - Sarah Greenwood,00350308, 0.0, 0.3, 15.5, 80.7, 2.0, 0.0, 1.5, 51.0, 49.0, 0.0,98.5,42.7 +6.488322717622081,5,a-cure-i1,2020-21,Boston - Snowden International School at Copley,00350690, 0.4, 6.2, 33.7, 52.0, 1.9, 0.0, 5.8, 47.8, 52.2, 0.0,94.2,38.2 +6.311019567456232,5,a-cure-i1,2020-21,Boston - TechBoston Academy,00350657, 0.2, 2.1, 60.6, 30.5, 3.6, 0.1, 2.9, 43.1, 56.8, 0.1,97.1,38.300000000000004 +7.0406673618352436,5,a-cure-i1,2020-21,Boston - The English High,00350535, 0.4, 1.2, 36.1, 55.6, 2.7, 0.0, 4.1, 45.6, 54.4, 0.0,95.9,42.199999999999996 +8.086486486486486,5,a-cure-i1,2020-21,Boston - Thomas J Kenny,00350328, 0.0, 11.5, 35.4, 22.4, 4.7, 0.0, 26.0, 47.5, 52.5, 0.0,74.0,37.4 +6.338399189463019,5,a-cure-i1,2020-21,Boston - UP Academy Holland,00350167, 0.9, 3.3, 47.3, 44.7, 2.2, 0.3, 1.3, 51.2, 48.8, 0.0,98.7,39.1 +7.644028103044495,5,a-cure-i1,2020-21,Boston - Warren-Prescott,00350346, 0.0, 3.6, 12.4, 21.5, 5.1, 0.0, 57.3, 49.1, 50.9, 0.0,42.7,20.4 +9.189304812834225,5,a-cure-i1,2020-21,Boston - Washington Irving Middle,00350445, 0.0, 1.1, 38.6, 50.5, 3.3, 0.0, 6.5, 47.8, 52.2, 0.0,93.5,53.699999999999996 +6.182939362795477,5,a-cure-i1,2020-21,Boston - William E Russell,00350366, 0.3, 8.2, 27.7, 57.3, 2.7, 1.1, 2.7, 47.9, 52.1, 0.0,97.3,37.599999999999994 +7.632085561497325,5,a-cure-i1,2020-21,Boston - William Ellery Channing,00350360, 0.0, 1.9, 44.7, 42.3, 4.2, 0.5, 6.5, 43.7, 56.3, 0.0,93.5,44.599999999999994 +6.94421768707483,5,a-cure-i1,2020-21,Boston - William H Ohrenberger,00350258, 0.2, 3.0, 29.3, 37.2, 3.9, 0.0, 26.5, 48.9, 51.1, 0.0,73.5,31.9 +4.65934065934066,4.66,a-cure-i1,2020-21,Boston - William McKinley,00350363, 0.7, 1.9, 41.9, 43.1, 3.4, 0.0, 9.0, 21.0, 79.0, 0.0,91.0,26.5 +6.632962588473205,5,a-cure-i1,2020-21,Boston - William Monroe Trotter,00350370, 0.3, 1.3, 54.5, 38.4, 3.2, 1.3, 1.1, 49.2, 50.8, 0.0,98.9,41.0 +9.784946236559138,5,a-cure-i1,2020-21,Boston - Winship Elementary,00350374, 0.4, 15.4, 14.1, 37.4, 7.0, 0.0, 25.6, 52.0, 48.0, 0.0,74.4,45.5 +9.39375629405841,5,a-cure-i1,2020-21,Boston - Young Achievers,00350380, 0.5, 0.4, 47.3, 48.9, 1.8, 0.4, 0.7, 45.0, 55.0, 0.0,99.3,58.3 +10.59233449477352,5,a-cure-i1,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.1, 1.8, 34.7, 17.4, 3.2, 0.1, 42.6, 51.3, 48.7, 0.0,57.4,38.0 +16.64932362122789,5,a-cure-i1,2020-21,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.6, 0.8, 47.2, 45.8, 1.7, 0.0, 3.9, 53.4, 46.6, 0.0,96.1,100.0 +8.727272727272727,5,a-cure-i1,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.2, 1.8, 44.6, 43.6, 2.9, 0.4, 6.5, 47.5, 52.5, 0.0,93.5,51.0 +1,1,a-cure-i1,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.4, 67.5, 27.9, 3.0, 0.1, 1.0, 50.7, 49.3, 0.0,99.0,0.0 +1,1,a-cure-i1,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.2, 0.1, 60.2, 34.3, 3.6, 0.0, 1.6, 51.3, 48.7, 0.0,98.4,0.0 +1,1,a-cure-i1,2020-21,Bourne - Bourne High School,00360505, 1.4, 2.1, 1.4, 3.5, 3.0, 0.0, 88.6, 54.7, 45.3, 0.0,11.400000000000006,2.7 +1,1,a-cure-i1,2020-21,Bourne - Bourne Intermediate School,00360030, 0.5, 1.4, 2.6, 6.1, 3.8, 0.0, 85.6, 53.1, 46.9, 0.0,14.400000000000006,0.0 +10.47482014388489,5,a-cure-i1,2020-21,Bourne - Bourne Middle School,00360325, 1.7, 1.3, 1.7, 5.4, 3.7, 0.0, 86.1, 50.2, 49.8, 0.0,13.900000000000006,9.100000000000001 +1,1,a-cure-i1,2020-21,Bourne - Bournedale Elementary School,00360005, 0.9, 3.0, 1.5, 6.8, 5.9, 0.0, 82.0, 49.4, 50.6, 0.0,18.0,0.0 +1,1,a-cure-i1,2020-21,Boxford - Harry Lee Cole,00380005, 0.0, 2.4, 0.0, 4.1, 5.5, 0.0, 87.9, 44.1, 55.9, 0.0,12.099999999999994,0.0 +10.276422764227645,5,a-cure-i1,2020-21,Boxford - Spofford Pond,00380013, 0.0, 4.4, 0.5, 2.6, 4.9, 0.0, 87.7, 48.8, 51.2, 0.0,12.299999999999997,7.9 +1,1,a-cure-i1,2020-21,Braintree - Archie T Morrison,00400033, 0.6, 22.8, 9.9, 4.0, 2.2, 0.0, 60.5, 47.2, 52.8, 0.0,39.5,0.0 +1,1,a-cure-i1,2020-21,Braintree - Braintree High,00400505, 0.2, 19.9, 5.5, 5.1, 1.7, 0.2, 67.5, 50.1, 49.8, 0.1,32.5,4.6 +1,1,a-cure-i1,2020-21,Braintree - Donald Ross,00400050, 0.4, 33.1, 8.3, 4.7, 1.6, 0.0, 52.0, 55.1, 44.9, 0.0,48.0,0.0 +1,1,a-cure-i1,2020-21,Braintree - East Middle School,00400305, 0.0, 21.6, 8.0, 7.2, 1.7, 0.1, 61.5, 50.2, 49.8, 0.0,38.5,1.4 +1,1,a-cure-i1,2020-21,Braintree - Highlands,00400015, 0.3, 20.8, 2.3, 2.3, 0.5, 0.0, 73.9, 45.8, 54.2, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Braintree - Hollis,00400005, 0.0, 28.4, 1.8, 4.9, 3.0, 0.0, 61.9, 43.9, 56.1, 0.0,38.1,0.0 +1,1,a-cure-i1,2020-21,Braintree - Liberty,00400025, 0.0, 31.0, 2.7, 4.4, 3.3, 0.8, 57.8, 45.8, 54.2, 0.0,42.2,0.0 +1,1,a-cure-i1,2020-21,Braintree - Mary E Flaherty School,00400020, 0.0, 27.8, 1.9, 4.4, 4.4, 0.0, 61.5, 48.9, 51.1, 0.0,38.5,0.0 +1,1,a-cure-i1,2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 32.6, 5.6, 4.9, 4.9, 0.7, 51.4, 54.2, 45.8, 0.0,48.6,0.0 +1,1,a-cure-i1,2020-21,Braintree - South Middle School,00400310, 0.2, 23.9, 3.1, 3.4, 1.1, 0.0, 68.4, 52.2, 47.8, 0.0,31.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 3.3, 5.3, 4.8, 0.0, 86.6, 46.9, 53.1, 0.0,13.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Brewster - Stony Brook Elementary,00410005, 0.0, 0.5, 2.8, 12.3, 8.1, 0.0, 76.3, 50.7, 49.3, 0.0,23.700000000000003,0.0 +5.641237113402062,5,a-cure-i1,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.9, 66.6, 26.0, 3.3, 0.3, 3.0, 52.7, 47.3, 0.0,97.0,34.2 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.2, 2.2, 7.6, 2.4, 5.1, 0.2, 82.4, 51.2, 48.8, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.1, 1.7, 7.1, 2.0, 5.3, 0.1, 83.8, 50.1, 49.9, 0.0,16.200000000000003,1.2 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 2.6, 8.2, 3.2, 3.7, 0.0, 82.2, 47.6, 52.4, 0.0,17.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 3.0, 8.7, 4.3, 6.7, 0.0, 77.3, 49.2, 50.8, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 2.8, 6.9, 6.6, 5.2, 0.3, 78.2, 46.6, 53.4, 0.0,21.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Raynham Middle School,06250315, 0.1, 2.8, 7.8, 1.5, 3.9, 0.0, 83.9, 46.3, 53.5, 0.1,16.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 8.3, 8.3, 8.3, 0.0, 75.0, 33.3, 66.7, 0.0,25.0,0.0 +1,1,a-cure-i1,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.1, 1.9, 8.3, 2.9, 5.2, 0.0, 81.6, 49.5, 50.5, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Brimfield - Brimfield Elementary,00430005, 0.7, 1.1, 1.5, 4.8, 0.0, 0.0, 91.8, 49.1, 50.9, 0.0,8.200000000000003,0.0 +11.865168539325834,5,a-cure-i1,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.4, 2.2, 4.5, 1.6, 0.2, 91.1, 74.1, 25.7, 0.2,8.900000000000006,6.6 +1,1,a-cure-i1,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.4, 1.0, 3.6, 6.0, 3.7, 0.0, 85.4, 42.6, 57.4, 0.0,14.599999999999994,2.1 +1,1,a-cure-i1,2020-21,Brockton - Ashfield Middle School,00440421, 0.7, 3.7, 53.2, 13.1, 2.7, 0.7, 25.9, 47.0, 53.0, 0.0,74.1,3.4 +1,1,a-cure-i1,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.7, 52.0, 16.4, 5.3, 0.7, 25.0, 34.9, 65.1, 0.0,75.0,0.7 +3.1880448318804486,3.19,a-cure-i1,2020-21,Brockton - Brockton Champion High School,00440515, 0.0, 0.7, 51.8, 20.4, 5.8, 1.5, 19.7, 43.1, 56.9, 0.0,80.3,16.0 +3.7635933806146578,3.76,a-cure-i1,2020-21,Brockton - Brockton High,00440505, 0.3, 2.3, 62.7, 15.0, 4.2, 0.2, 15.4, 46.0, 54.0, 0.0,84.6,19.900000000000002 +2.823529411764706,2.82,a-cure-i1,2020-21,Brockton - Brookfield,00440010, 0.2, 0.6, 60.6, 10.1, 4.9, 0.0, 23.5, 49.3, 50.7, 0.0,76.5,13.5 +1.5547355473554736,1.55,a-cure-i1,2020-21,Brockton - Downey,00440110, 0.5, 1.2, 55.6, 17.6, 6.2, 0.2, 18.7, 44.2, 55.8, 0.0,81.3,7.9 +1,1,a-cure-i1,2020-21,Brockton - Dr W Arnone Community School,00440001, 0.6, 0.4, 63.4, 18.3, 6.7, 0.0, 10.7, 43.8, 56.2, 0.0,89.3,4.7 +2.1405895691609977,2.14,a-cure-i1,2020-21,Brockton - East Middle School,00440405, 0.5, 0.9, 67.3, 15.1, 4.2, 0.2, 11.8, 46.0, 54.0, 0.0,88.2,11.8 +1.873873873873874,1.87,a-cure-i1,2020-21,Brockton - Edgar B Davis,00440023, 0.4, 0.6, 68.4, 13.6, 5.5, 0.3, 11.2, 53.2, 46.8, 0.0,88.8,10.4 +8.261879619852165,5,a-cure-i1,2020-21,Brockton - Edison Academy,00440520, 1.5, 0.8, 66.2, 25.6, 0.8, 0.0, 5.3, 46.6, 53.4, 0.0,94.7,48.9 +4.408163265306122,4.41,a-cure-i1,2020-21,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 64.7, 17.6, 5.9, 0.0, 11.8, 52.9, 47.1, 0.0,88.2,24.3 +2.6831275720164602,2.68,a-cure-i1,2020-21,Brockton - Gilmore Elementary School,00440055, 0.4, 0.2, 78.6, 14.4, 3.3, 0.2, 2.8, 54.0, 46.0, 0.0,97.2,16.299999999999997 +3.697127937336815,3.7,a-cure-i1,2020-21,Brockton - Hancock,00440045, 0.0, 3.1, 53.7, 14.0, 5.5, 0.2, 23.4, 53.0, 47.0, 0.0,76.6,17.7 +1,1,a-cure-i1,2020-21,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 1.6, 45.3, 23.4, 7.8, 0.0, 21.9, 26.6, 73.4, 0.0,78.1,4.9 +3.018867924528302,3.02,a-cure-i1,2020-21,Brockton - John F Kennedy,00440017, 0.2, 3.1, 59.2, 11.4, 5.4, 0.2, 20.5, 49.6, 50.4, 0.0,79.5,15.0 +3.2117503059975516,3.21,a-cure-i1,2020-21,Brockton - Joseph F. Plouffe Academy,00440422, 0.5, 3.4, 42.7, 30.6, 4.3, 0.1, 18.3, 49.3, 50.7, 0.0,81.7,16.4 +2.2487562189054726,2.25,a-cure-i1,2020-21,Brockton - Louis F Angelo Elementary,00440065, 0.3, 4.9, 54.3, 16.7, 4.2, 0.0, 19.6, 45.6, 54.4, 0.0,80.4,11.3 +2.933333333333333,2.93,a-cure-i1,2020-21,Brockton - Manthala George Jr. School,00440003, 0.2, 0.3, 45.8, 41.4, 2.2, 0.1, 10.0, 49.3, 50.7, 0.0,90.0,16.5 +2.7275167785234897,2.73,a-cure-i1,2020-21,Brockton - Mary E. Baker School,00440002, 0.2, 1.6, 50.7, 16.2, 5.5, 0.3, 25.5, 47.7, 52.3, 0.0,74.5,12.7 +3.3608938547486034,3.36,a-cure-i1,2020-21,Brockton - North Middle School,00440410, 0.5, 1.5, 68.0, 13.5, 6.0, 0.0, 10.5, 52.0, 48.0, 0.0,89.5,18.8 +1.1452991452991454,1.15,a-cure-i1,2020-21,Brockton - Oscar F Raymond,00440078, 0.1, 1.3, 79.3, 10.6, 2.0, 0.3, 6.4, 47.2, 52.8, 0.0,93.6,6.7 +3.1746031746031744,3.17,a-cure-i1,2020-21,Brockton - South Middle School,00440415, 0.2, 0.5, 67.1, 14.3, 6.1, 0.0, 11.8, 43.3, 56.7, 0.0,88.2,17.5 +1.728155339805825,1.73,a-cure-i1,2020-21,Brockton - West Middle School,00440420, 0.4, 2.8, 61.5, 12.4, 5.0, 0.1, 17.6, 46.4, 53.6, 0.0,82.4,8.899999999999999 +8.342022940563085,5,a-cure-i1,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 0.2, 1.8, 52.8, 38.8, 2.3, 0.1, 4.1, 52.4, 47.6, 0.0,95.9,50.0 +1,1,a-cure-i1,2020-21,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.4, 6.0, 3.8, 0.0, 89.8, 47.4, 52.6, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 34.6, 3.8, 0.0, 19.2, 0.0, 42.3, 46.2, 53.8, 0.0,57.7,0.0 +6.053097345132744,5,a-cure-i1,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 16.1, 3.2, 6.5, 19.4, 0.0, 54.8, 41.9, 58.1, 0.0,45.2,17.1 +1,1,a-cure-i1,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 14.3, 0.0, 28.6, 7.1, 0.0, 50.0, 53.6, 46.4, 0.0,50.0,0.0 +4.9442060085836905,4.94,a-cure-i1,2020-21,Brookline - Brookline High,00460505, 0.0, 15.7, 7.8, 13.0, 10.0, 0.1, 53.4, 48.4, 51.4, 0.2,46.6,14.4 +4.130019120458892,4.13,a-cure-i1,2020-21,Brookline - Edith C Baker,00460005, 0.2, 29.1, 5.7, 9.2, 8.2, 0.0, 47.7, 50.9, 49.1, 0.0,52.3,13.5 +6.46808510638298,5,a-cure-i1,2020-21,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 15.6, 5.1, 11.3, 10.3, 0.0, 57.7, 48.9, 50.9, 0.2,42.3,17.1 +3.0167064439140816,3.02,a-cure-i1,2020-21,Brookline - Heath,00460025, 0.0, 17.2, 4.8, 8.2, 11.7, 0.0, 58.1, 50.7, 49.3, 0.0,41.9,7.9 +3.6785714285714293,3.68,a-cure-i1,2020-21,Brookline - John D Runkle,00460045, 0.0, 16.7, 4.4, 11.1, 12.7, 0.0, 55.2, 48.0, 52.0, 0.0,44.8,10.3 +3.471971066907776,3.47,a-cure-i1,2020-21,Brookline - Lawrence,00460030, 0.0, 30.3, 5.6, 8.3, 10.7, 0.3, 44.7, 47.5, 52.4, 0.2,55.3,12.0 +5.429213483146068,5,a-cure-i1,2020-21,Brookline - Michael Driscoll,00460020, 0.0, 16.3, 4.3, 7.9, 16.1, 0.0, 55.5, 45.3, 54.7, 0.0,44.5,15.100000000000001 +5.470355731225297,5,a-cure-i1,2020-21,Brookline - Pierce,00460040, 0.0, 24.4, 4.2, 10.2, 11.8, 0.0, 49.4, 52.6, 47.2, 0.1,50.6,17.3 +9.234285714285713,5,a-cure-i1,2020-21,Brookline - The Lynch Center,00460060, 0.0, 26.7, 20.0, 16.7, 6.7, 0.0, 30.0, 40.0, 60.0, 0.0,70.0,40.4 +3.8195488721804507,3.82,a-cure-i1,2020-21,Brookline - William H Lincoln,00460035, 0.2, 22.8, 10.7, 11.1, 8.4, 0.0, 46.8, 53.0, 47.0, 0.0,53.2,12.7 +2.8845070422535213,2.88,a-cure-i1,2020-21,Burlington - Burlington High,00480505, 0.5, 16.3, 7.5, 7.3, 3.9, 0.0, 64.5, 46.8, 53.1, 0.1,35.5,6.4 +1,1,a-cure-i1,2020-21,Burlington - Fox Hill,00480007, 0.0, 18.7, 8.8, 6.1, 3.4, 0.0, 63.0, 49.2, 50.8, 0.0,37.0,0.0 +1,1,a-cure-i1,2020-21,Burlington - Francis Wyman Elementary,00480035, 0.2, 18.6, 9.5, 7.6, 3.7, 0.0, 60.5, 49.4, 50.4, 0.2,39.5,0.0 +1,1,a-cure-i1,2020-21,Burlington - Marshall Simonds Middle,00480303, 0.0, 18.2, 6.9, 4.8, 3.5, 0.0, 66.6, 50.9, 49.1, 0.0,33.400000000000006,1.9 +2.6395939086294415,2.64,a-cure-i1,2020-21,Burlington - Memorial,00480015, 0.2, 19.2, 5.7, 9.5, 4.7, 0.0, 60.6, 53.4, 46.6, 0.0,39.4,6.5 +3.4418604651162785,3.44,a-cure-i1,2020-21,Burlington - Pine Glen Elementary,00480020, 0.0, 18.0, 3.5, 6.1, 6.8, 0.0, 65.6, 47.6, 52.4, 0.0,34.400000000000006,7.4 +15.461538461538462,5,a-cure-i1,2020-21,Cambridge - Amigos School,00490006, 0.0, 3.8, 5.5, 44.5, 8.6, 0.0, 37.6, 52.1, 47.9, 0.0,62.4,60.3 +7.18048780487805,5,a-cure-i1,2020-21,Cambridge - Cambridge Rindge and Latin,00490506, 0.2, 9.8, 27.4, 15.2, 8.4, 0.4, 38.5, 50.8, 49.1, 0.2,61.5,27.600000000000005 +9.0446735395189,5,a-cure-i1,2020-21,Cambridge - Cambridge Street Upper School,00490305, 0.7, 9.5, 22.0, 15.1, 10.9, 0.0, 41.8, 41.4, 58.2, 0.3,58.2,32.9 +13.135371179039302,5,a-cure-i1,2020-21,Cambridge - Cambridgeport,00490007, 0.0, 9.2, 18.8, 6.6, 11.1, 0.0, 54.2, 48.7, 50.6, 0.7,45.8,37.6 +5.3272519954389965,5,a-cure-i1,2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 0.4, 8.0, 51.8, 16.7, 10.9, 0.0, 12.3, 46.0, 54.0, 0.0,87.7,29.2 +4.861167002012072,4.86,a-cure-i1,2020-21,Cambridge - Graham and Parks,00490080, 0.0, 15.2, 17.7, 9.0, 7.8, 0.0, 50.3, 49.4, 50.6, 0.0,49.7,15.100000000000001 +10.382978723404255,5,a-cure-i1,2020-21,Cambridge - Haggerty,00490020, 0.0, 18.6, 15.0, 6.5, 6.9, 0.0, 53.0, 51.0, 49.0, 0.0,47.0,30.5 +4.6764705882352935,4.68,a-cure-i1,2020-21,Cambridge - John M Tobin,00490065, 0.7, 17.6, 18.2, 7.5, 10.4, 0.0, 45.6, 49.2, 50.8, 0.0,54.4,15.899999999999999 +2.9467625899280576,2.95,a-cure-i1,2020-21,Cambridge - Kennedy-Longfellow,00490040, 0.0, 17.7, 22.2, 21.0, 8.6, 0.0, 30.5, 45.7, 54.3, 0.0,69.5,12.8 +10.415357766143106,5,a-cure-i1,2020-21,Cambridge - King Open,00490035, 0.3, 12.6, 19.3, 11.5, 13.4, 0.3, 42.7, 50.3, 49.7, 0.0,57.3,37.3 +10.174563591022444,5,a-cure-i1,2020-21,Cambridge - Maria L. Baldwin,00490005, 0.0, 9.3, 10.7, 9.6, 10.5, 0.0, 59.9, 49.7, 50.3, 0.0,40.1,25.500000000000004 +6.152202937249665,5,a-cure-i1,2020-21,Cambridge - Martin Luther King Jr.,00490030, 0.3, 30.4, 16.7, 6.0, 21.4, 0.0, 25.1, 49.2, 50.5, 0.3,74.9,28.799999999999997 +5.265454545454546,5,a-cure-i1,2020-21,Cambridge - Morse,00490045, 0.3, 10.3, 24.2, 11.3, 8.9, 0.0, 45.0, 45.0, 55.0, 0.0,55.0,18.1 +9.310924369747898,5,a-cure-i1,2020-21,Cambridge - Peabody,00490050, 0.0, 14.7, 20.5, 5.9, 6.5, 0.0, 52.4, 53.1, 46.9, 0.0,47.6,27.7 +11.622222222222224,5,a-cure-i1,2020-21,Cambridge - Putnam Avenue Upper School,00490310, 0.8, 13.4, 33.7, 12.3, 11.5, 0.4, 28.0, 52.5, 47.1, 0.4,72.0,52.300000000000004 +8.785454545454545,5,a-cure-i1,2020-21,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 8.9, 26.4, 10.0, 9.7, 0.0, 45.0, 49.8, 50.2, 0.0,55.0,30.2 +7.71764705882353,5,a-cure-i1,2020-21,Cambridge - Vassal Lane Upper School,00490320, 0.0, 17.2, 26.8, 7.9, 7.6, 0.0, 40.5, 46.7, 52.9, 0.3,59.5,28.700000000000003 +3.565714285714286,3.57,a-cure-i1,2020-21,Canton - Canton High,00500505, 0.0, 11.7, 12.8, 6.0, 4.5, 0.0, 65.0, 53.7, 46.1, 0.2,35.0,7.800000000000001 +1,1,a-cure-i1,2020-21,Canton - Dean S Luce,00500020, 0.0, 11.9, 9.1, 5.2, 6.9, 0.0, 67.0, 51.8, 48.2, 0.0,33.0,3.5 +1,1,a-cure-i1,2020-21,Canton - John F Kennedy,00500017, 0.0, 9.9, 6.9, 6.3, 7.3, 0.0, 69.5, 47.9, 52.1, 0.0,30.5,0.0 +2.585858585858586,2.59,a-cure-i1,2020-21,Canton - Lt Peter M Hansen,00500012, 0.0, 11.7, 10.9, 7.7, 9.3, 0.0, 60.4, 48.3, 51.7, 0.0,39.6,6.4 +1,1,a-cure-i1,2020-21,Canton - Rodman Early Childhood Center,00500010, 0.0, 16.7, 12.5, 8.3, 4.2, 0.0, 58.3, 25.0, 75.0, 0.0,41.7,0.0 +3.999999999999999,4.0,a-cure-i1,2020-21,Canton - Wm H Galvin Middle,00500305, 0.3, 11.6, 11.6, 4.0, 6.3, 0.7, 65.6, 52.9, 47.1, 0.0,34.400000000000006,8.6 +1,1,a-cure-i1,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.4, 1.2, 0.8, 3.6, 2.8, 0.0, 91.2, 47.2, 52.8, 0.0,8.799999999999997,2.3 +1,1,a-cure-i1,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.6, 0.5, 8.3, 12.6, 5.3, 0.3, 71.4, 36.4, 63.3, 0.3,28.599999999999994,2.0 +1,1,a-cure-i1,2020-21,Carlisle - Carlisle School,00510025, 0.0, 13.0, 0.5, 5.5, 8.5, 0.2, 72.4, 47.5, 52.5, 0.0,27.599999999999994,3.5 +1,1,a-cure-i1,2020-21,Carver - Carver Elementary School,00520015, 0.0, 0.1, 2.6, 1.7, 1.2, 0.0, 94.3, 48.6, 51.4, 0.0,5.700000000000003,4.300000000000001 +18.11320754716982,5,a-cure-i1,2020-21,Carver - Carver Middle/High School,00520405, 0.7, 0.4, 1.5, 1.6, 1.0, 0.1, 94.7, 48.8, 51.2, 0.0,5.299999999999997,6.0 +1,1,a-cure-i1,2020-21,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 2.0, 5.0, 0.0, 93.1, 49.5, 50.5, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Central Berkshire - Craneville,06350025, 0.3, 1.3, 0.5, 8.1, 5.8, 0.0, 84.1, 47.2, 52.8, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.7, 4.8, 2.7, 0.0, 91.8, 54.8, 45.2, 0.0,8.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 0.3, 0.6, 4.2, 5.0, 0.0, 89.7, 43.9, 56.1, 0.0,10.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Central Berkshire - Wahconah Regional High,06350505, 0.2, 1.0, 0.4, 3.1, 2.9, 0.0, 92.4, 48.2, 51.8, 0.0,7.599999999999994,0.5 +1,1,a-cure-i1,2020-21,Chelmsford - Byam School,00560030, 0.2, 14.9, 2.6, 7.7, 3.3, 0.0, 71.3, 49.6, 50.4, 0.0,28.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Chelmsford - Center Elementary School,00560005, 0.0, 18.6, 3.0, 6.1, 3.8, 0.0, 68.6, 47.3, 52.7, 0.0,31.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Chelmsford - Charles D Harrington,00560025, 0.6, 22.4, 6.1, 11.0, 2.6, 0.4, 56.9, 51.8, 48.2, 0.0,43.1,0.0 +1,1,a-cure-i1,2020-21,Chelmsford - Chelmsford High,00560505, 0.0, 16.1, 3.7, 5.4, 2.3, 0.1, 72.4, 50.9, 49.1, 0.0,27.599999999999994,4.9 +1,1,a-cure-i1,2020-21,Chelmsford - Col Moses Parker School,00560305, 0.5, 13.3, 4.3, 9.8, 4.3, 0.0, 67.9, 41.6, 58.4, 0.0,32.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Chelmsford - Community Education Center,00560001, 0.0, 17.1, 10.5, 15.8, 6.6, 0.0, 50.0, 30.3, 69.7, 0.0,50.0,0.0 +1,1,a-cure-i1,2020-21,Chelmsford - McCarthy Middle School,00560310, 0.0, 15.8, 3.8, 7.0, 4.8, 0.1, 68.4, 47.7, 52.3, 0.0,31.599999999999994,3.5 +1,1,a-cure-i1,2020-21,Chelmsford - South Row,00560015, 0.5, 17.3, 4.0, 7.1, 4.3, 0.0, 66.8, 49.8, 50.2, 0.0,33.2,0.0 +3.0620399579390116,3.06,a-cure-i1,2020-21,Chelsea - Chelsea High,00570505, 0.2, 0.1, 4.2, 89.2, 1.4, 0.0, 4.9, 44.8, 55.2, 0.0,95.1,18.2 +3.943434343434343,3.94,a-cure-i1,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 3.0, 96.0, 0.0, 0.0, 1.0, 36.6, 63.4, 0.0,99.0,24.4 +2.1810436634717787,2.18,a-cure-i1,2020-21,Chelsea - Clark Avenue School,00570050, 0.3, 0.4, 2.8, 89.2, 1.1, 0.0, 6.1, 46.7, 53.3, 0.0,93.9,12.8 +1.181208053691275,1.18,a-cure-i1,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 0.6, 0.0, 5.8, 82.1, 1.0, 0.0, 10.6, 49.1, 50.9, 0.0,89.4,6.6 +1.1611526147278548,1.16,a-cure-i1,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.4, 0.2, 5.8, 85.0, 2.3, 0.0, 6.3, 51.1, 48.9, 0.0,93.7,6.8 +3.213897937024973,3.21,a-cure-i1,2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.2, 3.8, 87.5, 0.6, 0.0, 7.9, 50.2, 49.8, 0.0,92.1,18.5 +3.3402922755741127,3.34,a-cure-i1,2020-21,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 3.6, 92.0, 0.2, 0.0, 4.2, 53.3, 46.7, 0.0,95.8,20.0 +4.845908607863975,4.85,a-cure-i1,2020-21,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 4.3, 87.9, 1.9, 0.0, 5.9, 46.1, 53.9, 0.0,94.1,28.5 +2.2561894510226046,2.26,a-cure-i1,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 0.3, 0.0, 6.0, 85.2, 1.4, 0.0, 7.1, 49.0, 51.0, 0.0,92.9,13.1 +1.4931071049840934,1.49,a-cure-i1,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 5.9, 86.6, 1.8, 0.0, 5.7, 49.7, 50.3, 0.0,94.3,8.8 +1,1,a-cure-i1,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 2.0, 0.0, 1.0, 3.0, 1.0, 0.0, 93.1, 48.5, 51.5, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Chicopee - Barry,00610003, 0.0, 2.7, 2.7, 30.5, 2.9, 0.5, 60.7, 45.6, 54.4, 0.0,39.3,0.0 +1.608617594254937,1.61,a-cure-i1,2020-21,Chicopee - Belcher,00610010, 0.0, 0.9, 10.4, 41.5, 2.8, 0.0, 44.3, 51.4, 48.6, 0.0,55.7,5.6 +1,1,a-cure-i1,2020-21,Chicopee - Bellamy Middle,00610305, 0.1, 1.1, 3.4, 43.3, 3.7, 0.0, 48.4, 47.2, 52.7, 0.1,51.6,1.5 +1,1,a-cure-i1,2020-21,Chicopee - Bowe,00610015, 0.0, 1.2, 5.4, 58.9, 5.1, 0.0, 29.4, 45.8, 54.2, 0.0,70.6,0.0 +2.552147239263804,2.55,a-cure-i1,2020-21,Chicopee - Bowie,00610020, 0.0, 2.2, 4.0, 24.6, 1.8, 0.0, 67.4, 50.0, 50.0, 0.0,32.599999999999994,5.2 +1,1,a-cure-i1,2020-21,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 3.3, 61.7, 3.3, 0.0, 31.7, 21.7, 78.3, 0.0,68.3,0.0 +2.316353887399464,2.32,a-cure-i1,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0.2, 2.5, 2.2, 29.3, 3.0, 0.0, 62.7, 43.7, 56.2, 0.1,37.3,5.4 +1.594306049822064,1.59,a-cure-i1,2020-21,Chicopee - Chicopee High,00610505, 0.0, 2.9, 5.0, 45.9, 2.5, 0.0, 43.8, 50.0, 50.0, 0.0,56.2,5.6000000000000005 +1.579143389199255,1.58,a-cure-i1,2020-21,Chicopee - Dupont Middle,00610310, 0.0, 2.4, 4.8, 43.3, 3.1, 0.0, 46.3, 45.8, 54.2, 0.0,53.7,5.3 +1.7605177993527508,1.76,a-cure-i1,2020-21,Chicopee - Fairview Elementary,00610050, 0.0, 1.7, 5.1, 51.7, 3.4, 0.0, 38.2, 41.8, 58.2, 0.0,61.8,6.8 +1,1,a-cure-i1,2020-21,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.3, 6.1, 64.7, 3.5, 0.0, 25.4, 52.3, 47.7, 0.0,74.6,4.0 +1,1,a-cure-i1,2020-21,Chicopee - Lambert-Lavoie,00610040, 0.0, 3.0, 3.7, 29.7, 5.9, 0.0, 57.6, 40.5, 59.5, 0.0,42.4,0.0 +1,1,a-cure-i1,2020-21,Chicopee - Litwin,00610022, 0.0, 1.1, 8.0, 33.1, 1.7, 0.0, 56.0, 48.3, 51.7, 0.0,44.0,0.0 +2.3978201634877383,2.4,a-cure-i1,2020-21,Chicopee - Streiber Memorial School,00610065, 0.0, 3.2, 4.4, 23.0, 5.6, 0.4, 63.3, 47.6, 52.4, 0.0,36.7,5.5 +1,1,a-cure-i1,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 2.5, 5.0, 49.6, 6.6, 0.0, 36.4, 28.9, 71.1, 0.0,63.6,0.0 +4.447653429602888,4.45,a-cure-i1,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.3, 9.5, 6.8, 33.3, 5.5, 0.0, 44.6, 46.9, 52.9, 0.3,55.4,15.4 +5.404298874104401,5,a-cure-i1,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 64.5, 32.4, 0.7, 0.0, 2.3, 47.8, 52.2, 0.0,97.7,33.0 +1,1,a-cure-i1,2020-21,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 0.0, 2.6, 1.6, 0.0, 95.3, 50.0, 50.0, 0.0,4.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Clinton - Clinton Elementary,00640050, 0.0, 0.8, 2.3, 30.5, 3.4, 0.0, 63.0, 46.0, 54.0, 0.0,37.0,2.1 +2.530831099195711,2.53,a-cure-i1,2020-21,Clinton - Clinton Middle School,00640305, 0.0, 0.9, 3.8, 30.1, 2.4, 0.2, 62.7, 45.6, 54.4, 0.0,37.3,5.9 +1,1,a-cure-i1,2020-21,Clinton - Clinton Senior High,00640505, 0.0, 1.6, 3.9, 33.2, 1.2, 0.0, 60.1, 46.8, 53.0, 0.2,39.9,4.7 +7.002012072434608,5,a-cure-i1,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.3, 0.0, 77.6, 20.7, 0.9, 0.0, 0.6, 51.1, 48.9, 0.0,99.4,43.50000000000001 +1,1,a-cure-i1,2020-21,Cohasset - Cohasset High School,00650505, 0.4, 2.9, 2.7, 1.3, 1.6, 0.0, 91.1, 50.6, 49.2, 0.2,8.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Cohasset - Cohasset Middle School,00650305, 0.0, 1.4, 3.6, 0.3, 2.5, 0.0, 92.2, 47.9, 52.1, 0.0,7.799999999999997,3.9 +1,1,a-cure-i1,2020-21,Cohasset - Deer Hill,00650005, 0.0, 1.9, 1.9, 1.6, 1.3, 0.0, 93.2, 51.8, 48.2, 0.0,6.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Cohasset - Joseph Osgood,00650010, 0.3, 0.9, 3.3, 1.5, 2.1, 0.0, 91.9, 49.2, 50.8, 0.0,8.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.5, 27.9, 20.4, 33.0, 3.4, 0.0, 14.8, 50.0, 50.0, 0.1,85.2,0.0 +1,1,a-cure-i1,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.3, 4.3, 71.1, 15.1, 4.3, 0.0, 4.9, 57.2, 42.8, 0.0,95.1,0.0 +3.5864892528147387,3.59,a-cure-i1,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.5, 0.5, 1.3, 95.5, 0.0, 0.0, 2.3, 47.5, 52.5, 0.0,97.7,21.9 +6.924643584521385,5,a-cure-i1,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.3, 0.0, 0.8, 97.2, 0.0, 0.0, 1.8, 50.1, 49.9, 0.0,98.2,42.5 +4.049382716049382,4.05,a-cure-i1,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 1.0, 1.3, 94.5, 0.5, 0.0, 2.8, 52.0, 48.0, 0.0,97.2,24.599999999999998 +3.581395348837209,3.58,a-cure-i1,2020-21,Concord - Alcott,00670005, 0.0, 8.0, 9.1, 10.2, 7.1, 0.0, 65.6, 48.0, 52.0, 0.0,34.400000000000006,7.7 +11.999999999999998,5,a-cure-i1,2020-21,Concord - Concord Middle,00670305, 0.0, 7.6, 5.6, 6.8, 6.5, 0.0, 73.6, 47.7, 52.3, 0.0,26.400000000000006,19.8 +1,1,a-cure-i1,2020-21,Concord - Thoreau,00670020, 0.2, 7.9, 2.5, 7.0, 7.0, 0.2, 75.1, 49.2, 50.8, 0.0,24.900000000000006,4.2 +9.417142857142858,5,a-cure-i1,2020-21,Concord - Willard,00670030, 0.0, 6.8, 1.6, 3.5, 5.6, 0.0, 82.5, 50.8, 49.2, 0.0,17.5,10.3 +5.424892703862661,5,a-cure-i1,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 0.2, 7.8, 4.5, 5.0, 5.9, 0.0, 76.7, 50.8, 48.8, 0.4,23.299999999999997,7.8999999999999995 +4.08042328042328,4.08,a-cure-i1,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.2, 1.8, 47.9, 41.6, 3.1, 0.0, 5.5, 50.8, 49.2, 0.0,94.5,24.099999999999998 +1,1,a-cure-i1,2020-21,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.8, 4.8, 2.4, 0.0, 92.0, 44.0, 56.0, 0.0,8.0,0.0 +1,1,a-cure-i1,2020-21,Danvers - Danvers High,00710505, 0.0, 2.6, 2.3, 9.1, 2.9, 0.0, 83.1, 49.7, 50.2, 0.1,16.900000000000006,0.6 +1,1,a-cure-i1,2020-21,Danvers - Great Oak,00710015, 0.0, 1.7, 3.2, 9.0, 4.9, 0.0, 81.1, 50.3, 49.7, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Danvers - Highlands,00710010, 0.3, 4.1, 3.5, 9.3, 3.5, 0.0, 79.3, 46.3, 53.7, 0.0,20.700000000000003,0.0 +5.503184713375796,5,a-cure-i1,2020-21,Danvers - Holten Richmond Middle School,00710305, 0.0, 2.3, 1.8, 9.5, 2.2, 0.0, 84.3, 48.0, 52.0, 0.0,15.700000000000003,5.4 +1,1,a-cure-i1,2020-21,Danvers - Ivan G Smith,00710032, 0.0, 2.6, 2.3, 7.1, 1.9, 0.0, 86.0, 54.2, 45.8, 0.0,14.0,0.0 +1,1,a-cure-i1,2020-21,Danvers - Riverside,00710030, 0.3, 1.6, 2.6, 10.8, 1.0, 0.3, 83.3, 44.9, 55.1, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Danvers - Willis E Thorpe,00710045, 0.0, 1.5, 1.5, 5.2, 0.6, 0.0, 91.1, 48.3, 51.7, 0.0,8.900000000000006,4.7 +1,1,a-cure-i1,2020-21,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.8, 10.0, 3.3, 0.0, 85.8, 45.0, 55.0, 0.0,14.200000000000003,0.1 +1,1,a-cure-i1,2020-21,Dartmouth - Dartmouth High,00720505, 0.0, 0.1, 2.8, 5.2, 7.7, 0.0, 84.3, 50.8, 49.2, 0.0,15.700000000000003,1.5 +1,1,a-cure-i1,2020-21,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.7, 1.1, 5.6, 5.7, 0.1, 86.7, 49.2, 50.8, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Dartmouth - George H Potter,00720030, 0.0, 0.3, 0.5, 4.1, 4.3, 0.0, 90.8, 47.7, 52.3, 0.0,9.200000000000003,0.4 +1,1,a-cure-i1,2020-21,Dartmouth - James M. Quinn School,00720040, 0.0, 1.4, 0.9, 5.1, 7.3, 0.0, 85.3, 45.8, 54.2, 0.0,14.700000000000003,1.2 +1,1,a-cure-i1,2020-21,Dartmouth - Joseph Demello,00720015, 0.0, 1.1, 1.1, 4.9, 7.6, 0.0, 85.3, 48.2, 51.8, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Dedham - Avery,00730010, 0.0, 2.1, 10.7, 31.8, 7.1, 0.4, 47.9, 50.4, 49.6, 0.0,52.1,0.0 +2.9387755102040813,2.94,a-cure-i1,2020-21,Dedham - Dedham High,00730505, 0.0, 2.9, 8.4, 15.4, 2.8, 0.0, 70.6, 47.2, 52.6, 0.1,29.400000000000006,5.4 +1,1,a-cure-i1,2020-21,Dedham - Dedham Middle School,00730305, 0.2, 2.0, 7.7, 15.6, 4.7, 0.0, 69.8, 47.5, 52.5, 0.0,30.200000000000003,1.8 +1,1,a-cure-i1,2020-21,Dedham - Early Childhood Center,00730005, 0.0, 1.5, 4.0, 13.1, 9.1, 0.0, 72.3, 47.1, 52.6, 0.4,27.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Dedham - Greenlodge,00730025, 0.0, 1.3, 3.0, 10.2, 5.5, 0.0, 80.1, 43.2, 56.8, 0.0,19.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Dedham - Oakdale,00730030, 0.0, 2.4, 8.1, 11.7, 6.1, 0.0, 71.7, 51.8, 48.2, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Dedham - Riverdale,00730045, 0.0, 3.5, 4.7, 14.1, 7.1, 0.0, 70.6, 50.6, 49.4, 0.0,29.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Deerfield - Deerfield Elementary,00740015, 0.0, 0.3, 0.0, 6.4, 8.0, 0.0, 85.2, 51.4, 48.6, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.3, 2.7, 10.6, 14.8, 5.4, 0.0, 64.2, 49.9, 50.1, 0.0,35.8,4.6 +1,1,a-cure-i1,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.4, 2.1, 8.2, 13.8, 7.1, 0.4, 67.0, 49.6, 50.4, 0.0,33.0,3.4 +1,1,a-cure-i1,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.9, 3.1, 14.0, 17.4, 4.7, 0.0, 58.9, 45.3, 54.7, 0.0,41.1,0.0 +5.44080604534005,5,a-cure-i1,2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 3.0, 1.4, 10.9, 15.5, 8.6, 0.2, 60.3, 48.7, 51.3, 0.0,39.7,13.5 +1,1,a-cure-i1,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 2.3, 2.7, 9.7, 9.5, 9.0, 0.4, 66.4, 43.7, 56.3, 0.0,33.599999999999994,3.9 +1,1,a-cure-i1,2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.5, 3.9, 8.8, 7.8, 5.4, 0.2, 73.5, 48.9, 51.1, 0.0,26.5,0.0 +1,1,a-cure-i1,2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 1.8, 2.7, 4.5, 5.2, 0.0, 85.8, 49.7, 50.3, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.3, 2.1, 5.9, 5.1, 0.0, 85.6, 46.3, 53.7, 0.0,14.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.1, 0.8, 1.3, 3.9, 2.5, 0.0, 91.4, 47.5, 52.5, 0.0,8.599999999999994,1.8 +1,1,a-cure-i1,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.4, 1.4, 3.9, 3.3, 0.0, 89.7, 50.5, 49.5, 0.0,10.299999999999997,3.1 +1,1,a-cure-i1,2020-21,Dighton-Rehoboth - Palmer River,06500010, 0.2, 2.2, 0.9, 3.9, 3.6, 0.0, 89.2, 47.8, 52.2, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Douglas - Douglas Elementary School,00770015, 0.0, 0.6, 0.0, 5.8, 4.9, 0.0, 88.8, 47.6, 52.4, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Douglas - Douglas High School,00770505, 0.0, 1.4, 1.2, 4.9, 2.0, 0.6, 89.9, 46.0, 54.0, 0.0,10.099999999999994,3.1 +1,1,a-cure-i1,2020-21,Douglas - Douglas Middle School,00770305, 0.0, 0.7, 0.7, 3.6, 2.9, 0.0, 92.0, 50.0, 50.0, 0.0,8.0,0.0 +1,1,a-cure-i1,2020-21,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.1, 5.5, 2.7, 0.0, 90.7, 49.5, 50.5, 0.0,9.299999999999997,0.0 +3.2352941176470584,3.24,a-cure-i1,2020-21,Dover - Chickering,00780005, 0.0, 14.3, 3.4, 4.2, 5.3, 0.0, 72.8, 44.6, 55.4, 0.0,27.200000000000003,5.5 +6.4884792626728105,5,a-cure-i1,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.4, 9.6, 2.5, 4.3, 4.7, 0.0, 78.3, 50.3, 49.6, 0.1,21.700000000000003,8.8 +4.511475409836065,4.51,a-cure-i1,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 13.5, 4.3, 4.9, 7.8, 0.0, 69.5, 44.2, 55.8, 0.0,30.5,8.6 +1,1,a-cure-i1,2020-21,Dracut - Brookside Elementary,00790035, 0.2, 9.2, 10.6, 12.6, 1.1, 0.0, 66.2, 47.3, 52.7, 0.0,33.8,0.0 +1,1,a-cure-i1,2020-21,Dracut - Dracut Senior High,00790505, 1.0, 9.0, 8.7, 8.3, 2.5, 0.0, 70.5, 48.7, 51.0, 0.3,29.5,0.0 +1,1,a-cure-i1,2020-21,Dracut - George H. Englesby Elementary School,00790045, 0.0, 8.6, 4.8, 17.5, 1.8, 0.0, 67.3, 51.7, 48.3, 0.0,32.7,0.0 +1,1,a-cure-i1,2020-21,Dracut - Greenmont Avenue,00790030, 0.0, 7.4, 5.7, 15.5, 1.8, 0.0, 69.6, 45.2, 54.8, 0.0,30.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Dracut - Joseph A Campbell Elementary,00790020, 0.2, 5.9, 6.7, 7.9, 1.7, 0.0, 77.5, 45.1, 54.9, 0.0,22.5,0.0 +1,1,a-cure-i1,2020-21,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 6.2, 7.4, 13.0, 1.8, 0.0, 71.5, 47.3, 52.4, 0.3,28.5,2.0 +16.44398766700925,5,a-cure-i1,2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.3, 0.7, 59.2, 35.0, 1.7, 0.3, 2.7, 52.7, 47.3, 0.0,97.3,100.0 +1,1,a-cure-i1,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.7, 0.7, 7.9, 4.0, 0.0, 86.8, 48.0, 52.0, 0.0,13.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.5, 1.1, 1.6, 8.4, 2.4, 0.2, 85.9, 46.9, 53.1, 0.0,14.099999999999994,0.0 +19.843575418994405,5,a-cure-i1,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.3, 0.9, 2.4, 11.9, 2.4, 0.0, 82.1, 47.4, 52.6, 0.0,17.900000000000006,22.2 +1,1,a-cure-i1,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.4, 0.6, 2.6, 9.5, 2.8, 0.0, 84.2, 47.9, 51.9, 0.2,15.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.2, 1.5, 9.0, 4.9, 0.0, 84.4, 48.2, 51.8, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 0.9, 0.4, 1.3, 13.4, 4.0, 0.0, 79.9, 46.9, 53.1, 0.0,20.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 1.6, 1.5, 9.9, 2.6, 0.1, 84.4, 52.8, 47.2, 0.0,15.599999999999994,1.1 +1,1,a-cure-i1,2020-21,Duxbury - Alden School,00820004, 0.0, 0.3, 0.5, 2.8, 3.3, 0.0, 93.1, 49.7, 50.3, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Duxbury - Chandler Elementary,00820006, 0.0, 1.1, 0.9, 2.7, 4.1, 0.0, 91.2, 47.6, 52.4, 0.0,8.799999999999997,3.3 +1,1,a-cure-i1,2020-21,Duxbury - Duxbury High,00820505, 0.1, 1.9, 0.4, 2.1, 3.6, 0.0, 91.9, 47.5, 52.3, 0.1,8.099999999999994,4.2 +1,1,a-cure-i1,2020-21,Duxbury - Duxbury Middle,00820305, 0.2, 1.4, 0.3, 2.7, 4.2, 0.0, 91.3, 49.8, 50.2, 0.0,8.700000000000003,0.0 +1,1,a-cure-i1,2020-21,East Bridgewater - Central,00830005, 0.6, 0.8, 4.7, 2.9, 2.5, 0.0, 88.5, 51.1, 48.9, 0.0,11.5,0.0 +1,1,a-cure-i1,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.4, 0.7, 4.1, 2.3, 2.5, 0.1, 89.9, 45.1, 54.9, 0.0,10.099999999999994,1.6 +1,1,a-cure-i1,2020-21,East Bridgewater - Gordon W. Mitchell School,00830010, 0.5, 0.8, 4.5, 4.1, 4.0, 0.0, 86.1, 49.4, 50.6, 0.0,13.900000000000006,0.0 +4.437500000000001,4.44,a-cure-i1,2020-21,East Longmeadow - Birchland Park,00870305, 0.2, 6.5, 5.3, 8.7, 5.0, 0.0, 74.4, 48.0, 52.0, 0.0,25.599999999999994,7.1000000000000005 +6.078212290502791,5,a-cure-i1,2020-21,East Longmeadow - East Longmeadow High,00870505, 0.0, 6.2, 3.1, 7.1, 1.4, 0.1, 82.1, 47.9, 52.1, 0.0,17.900000000000006,6.8 +1,1,a-cure-i1,2020-21,East Longmeadow - Mapleshade,00870010, 0.0, 6.5, 1.1, 14.9, 3.6, 0.0, 73.8, 46.2, 53.8, 0.0,26.200000000000003,0.0 +1,1,a-cure-i1,2020-21,East Longmeadow - Meadow Brook,00870013, 0.0, 5.1, 3.4, 13.0, 2.8, 0.0, 75.7, 48.7, 51.3, 0.0,24.299999999999997,0.0 +1,1,a-cure-i1,2020-21,East Longmeadow - Mountain View,00870015, 0.0, 5.2, 2.2, 8.5, 5.6, 0.0, 78.5, 46.7, 53.3, 0.0,21.5,0.0 +1,1,a-cure-i1,2020-21,Eastham - Eastham Elementary,00850005, 0.0, 2.1, 9.3, 5.2, 7.7, 0.0, 75.8, 45.9, 54.1, 0.0,24.200000000000003,0.0 +82.90155440414509,5,a-cure-i1,2020-21,Easthampton - Center School,00860005, 0.5, 0.0, 2.6, 10.4, 5.7, 0.0, 80.7, 49.5, 50.5, 0.0,19.299999999999997,100.0 +1,1,a-cure-i1,2020-21,Easthampton - Easthampton High,00860505, 0.0, 3.6, 2.1, 11.5, 2.6, 0.2, 80.0, 51.3, 48.2, 0.5,20.0,0.0 +1,1,a-cure-i1,2020-21,Easthampton - Maple,00860010, 0.5, 2.5, 0.0, 11.3, 4.9, 0.0, 80.9, 44.1, 55.4, 0.5,19.099999999999994,0.0 +5.6560509554140115,5,a-cure-i1,2020-21,Easthampton - Neil A Pepin,00860020, 0.5, 3.2, 0.0, 22.3, 5.3, 0.0, 68.6, 51.1, 48.9, 0.0,31.400000000000006,11.1 +1,1,a-cure-i1,2020-21,Easthampton - White Brook Middle School,00860305, 0.5, 4.8, 0.9, 16.7, 2.9, 0.0, 74.2, 45.2, 54.3, 0.5,25.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Easton - Center School,00880003, 0.0, 3.8, 12.9, 9.1, 4.3, 0.0, 69.9, 48.9, 51.1, 0.0,30.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Easton - Easton Middle School,00880405, 0.1, 2.9, 7.8, 6.0, 3.3, 0.1, 79.7, 50.1, 49.9, 0.0,20.299999999999997,3.4 +1,1,a-cure-i1,2020-21,Easton - Moreau Hall,00880020, 0.5, 6.0, 7.1, 6.5, 5.4, 0.5, 73.9, 50.5, 49.5, 0.0,26.099999999999994,0.0 +5.938144329896905,5,a-cure-i1,2020-21,Easton - Oliver Ames High,00880505, 0.2, 3.6, 6.9, 5.1, 3.6, 0.0, 80.6, 49.7, 50.3, 0.0,19.400000000000006,7.199999999999999 +1,1,a-cure-i1,2020-21,Easton - Parkview Elementary,00880015, 0.0, 3.5, 3.9, 8.5, 4.2, 0.0, 79.9, 44.2, 55.8, 0.0,20.099999999999994,3.0 +1,1,a-cure-i1,2020-21,Easton - Richardson Olmsted School,00880025, 0.9, 2.4, 6.4, 8.0, 3.8, 0.1, 78.4, 48.1, 51.9, 0.0,21.599999999999994,4.1 +1,1,a-cure-i1,2020-21,Edgartown - Edgartown Elementary,00890005, 3.1, 0.8, 3.7, 20.4, 4.7, 0.0, 67.3, 50.5, 49.5, 0.0,32.7,0.0 +8.650875386199795,5,a-cure-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, 0.3, 1.0, 36.9, 56.4, 2.6, 0.0, 2.9, 65.7, 34.3, 0.0,97.1,52.5 +1,1,a-cure-i1,2020-21,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 4.4, 10.6, 0.0, 85.0, 42.5, 57.5, 0.0,15.0,0.0 +1,1,a-cure-i1,2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.3, 1.7, 1.6, 13.1, 3.9, 0.1, 79.3, 58.2, 41.6, 0.2,20.700000000000003,2.2 +1,1,a-cure-i1,2020-21,Everett - Adams School,00930003, 0.0, 7.4, 13.9, 50.9, 0.9, 0.9, 25.9, 43.5, 56.5, 0.0,74.1,0.0 +1.579972183588317,1.58,a-cure-i1,2020-21,Everett - Devens School,00930030, 0.0, 0.0, 24.6, 38.6, 8.8, 0.0, 28.1, 24.6, 73.7, 1.8,71.9,7.1 +2.4919653893695917,2.49,a-cure-i1,2020-21,Everett - Everett High,00930505, 0.5, 5.2, 18.0, 55.2, 1.8, 0.1, 19.1, 48.9, 51.1, 0.0,80.9,12.6 +1,1,a-cure-i1,2020-21,Everett - George Keverian School,00930028, 0.2, 3.8, 13.5, 65.9, 1.5, 0.1, 15.0, 49.6, 50.4, 0.0,85.0,2.2 +1,1,a-cure-i1,2020-21,Everett - Lafayette School,00930038, 0.1, 8.4, 15.5, 53.0, 1.7, 0.0, 21.3, 47.8, 52.2, 0.0,78.7,4.5 +1,1,a-cure-i1,2020-21,Everett - Madeline English School,00930018, 0.1, 7.0, 13.0, 54.2, 1.5, 0.0, 24.1, 48.5, 51.5, 0.0,75.9,4.7 +1,1,a-cure-i1,2020-21,Everett - Parlin School,00930058, 0.0, 3.3, 13.3, 70.7, 1.1, 0.0, 11.6, 53.4, 46.6, 0.0,88.4,0.0 +2.1777277840269966,2.18,a-cure-i1,2020-21,Everett - Sumner G. Whittier School,00930010, 0.6, 4.1, 10.6, 72.3, 1.3, 0.0, 11.1, 49.7, 50.3, 0.0,88.9,12.100000000000001 +1,1,a-cure-i1,2020-21,Everett - Webster Extension,00930001, 0.7, 12.7, 17.6, 46.5, 1.4, 0.0, 21.1, 43.7, 56.3, 0.0,78.9,0.0 +1,1,a-cure-i1,2020-21,Everett - Webster School,00930015, 0.0, 4.9, 13.0, 51.9, 1.2, 0.0, 29.1, 48.4, 51.6, 0.0,70.9,3.7 +6.381818181818182,5,a-cure-i1,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.7, 0.9, 6.0, 79.4, 0.6, 0.4, 12.0, 49.5, 50.5, 0.0,88.0,35.1 +1,1,a-cure-i1,2020-21,Fairhaven - East Fairhaven,00940010, 0.9, 1.8, 3.6, 5.8, 4.6, 0.0, 83.3, 48.6, 51.4, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Fairhaven - Fairhaven High,00940505, 0.7, 2.9, 1.9, 4.7, 2.6, 0.0, 87.1, 51.0, 49.0, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Fairhaven - Hastings Middle,00940305, 1.3, 2.2, 2.4, 6.2, 4.4, 0.0, 83.5, 49.3, 50.7, 0.0,16.5,0.0 +1,1,a-cure-i1,2020-21,Fairhaven - Leroy Wood,00940030, 0.4, 1.3, 3.3, 5.5, 3.5, 0.0, 85.9, 48.8, 51.2, 0.0,14.099999999999994,0.0 +2.159509202453988,2.16,a-cure-i1,2020-21,Fall River - B M C Durfee High,00950505, 0.1, 5.4, 9.6, 28.2, 5.6, 0.0, 51.1, 49.4, 50.6, 0.0,48.9,6.6000000000000005 +1,1,a-cure-i1,2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.1, 3.2, 8.4, 34.2, 10.0, 0.0, 44.1, 50.4, 49.6, 0.0,55.9,0.0 +2.9437819420783646,2.94,a-cure-i1,2020-21,Fall River - Henry Lord Community School,00950017, 0.0, 3.5, 9.3, 34.9, 11.0, 0.0, 41.3, 48.7, 51.3, 0.0,58.7,10.8 +1,1,a-cure-i1,2020-21,Fall River - James Tansey,00950140, 0.0, 1.8, 3.6, 10.7, 7.8, 0.0, 76.2, 52.7, 47.3, 0.0,23.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Fall River - John J Doran,00950045, 0.0, 0.8, 8.7, 32.0, 12.2, 0.0, 46.3, 48.1, 51.9, 0.0,53.7,0.0 +1,1,a-cure-i1,2020-21,Fall River - Letourneau Elementary School,00950013, 0.0, 2.8, 7.9, 36.0, 7.7, 0.0, 45.6, 52.4, 47.6, 0.0,54.4,2.2 +2.200298953662182,2.2,a-cure-i1,2020-21,Fall River - Mary Fonseca Elementary School,00950011, 0.2, 2.6, 9.8, 44.8, 9.4, 0.2, 33.1, 45.6, 54.4, 0.0,66.9,9.2 +3.6314606741573034,3.63,a-cure-i1,2020-21,Fall River - Matthew J Kuss Middle,00950320, 0.0, 4.2, 6.9, 23.1, 10.2, 0.0, 55.5, 52.0, 48.0, 0.0,44.5,10.1 +1,1,a-cure-i1,2020-21,Fall River - Morton Middle,00950315, 0.3, 2.8, 8.4, 24.2, 7.1, 0.1, 57.1, 47.0, 53.0, 0.0,42.9,4.3 +1,1,a-cure-i1,2020-21,Fall River - North End Elementary,00950005, 0.1, 1.3, 10.1, 23.3, 9.0, 0.0, 56.1, 50.7, 49.3, 0.0,43.9,2.5 +1.9286926994906624,1.93,a-cure-i1,2020-21,Fall River - Resiliency Preparatory Academy,00950525, 0.5, 0.5, 14.4, 38.6, 5.0, 0.0, 41.1, 37.1, 62.4, 0.5,58.9,7.1000000000000005 +1,1,a-cure-i1,2020-21,Fall River - Samuel Watson,00950145, 0.4, 2.0, 11.2, 27.6, 14.8, 0.8, 43.2, 54.0, 46.0, 0.0,56.8,0.0 +3.2,3.2,a-cure-i1,2020-21,Fall River - Spencer Borden,00950130, 0.0, 4.0, 10.5, 21.5, 10.5, 0.0, 53.5, 46.5, 53.5, 0.0,46.5,9.3 +1,1,a-cure-i1,2020-21,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 18.2, 16.7, 10.6, 0.0, 54.5, 27.3, 72.7, 0.0,45.5,3.7 +1.7504273504273504,1.75,a-cure-i1,2020-21,Fall River - Talbot Innovation School,00950305, 0.4, 3.6, 7.5, 36.7, 10.4, 0.0, 41.5, 48.7, 51.3, 0.0,58.5,6.4 +1.629090909090909,1.63,a-cure-i1,2020-21,Fall River - William S Greene,00950065, 0.0, 5.6, 8.0, 31.2, 10.2, 0.0, 45.0, 51.1, 48.9, 0.0,55.0,5.6 +1,1,a-cure-i1,2020-21,Falmouth - East Falmouth Elementary,00960005, 1.9, 1.9, 5.1, 11.7, 3.5, 0.0, 75.9, 42.8, 57.2, 0.0,24.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Falmouth - Falmouth High,00960505, 0.5, 1.8, 5.5, 5.8, 5.4, 0.0, 80.9, 49.4, 49.9, 0.6,19.099999999999994,3.4 +1,1,a-cure-i1,2020-21,Falmouth - Lawrence,00960405, 2.0, 2.9, 4.7, 5.9, 7.3, 0.0, 77.3, 48.0, 52.0, 0.0,22.700000000000003,4.4 +5.276595744680852,5,a-cure-i1,2020-21,Falmouth - Morse Pond School,00960305, 0.4, 1.4, 4.4, 6.3, 6.1, 0.2, 81.2, 51.7, 48.3, 0.0,18.799999999999997,6.2 +1,1,a-cure-i1,2020-21,Falmouth - Mullen-Hall,00960020, 0.7, 1.7, 3.0, 11.1, 10.6, 0.0, 72.8, 43.2, 56.8, 0.0,27.200000000000003,2.9 +7.341176470588235,5,a-cure-i1,2020-21,Falmouth - North Falmouth Elementary,00960030, 0.0, 1.3, 2.9, 7.5, 5.2, 0.0, 83.0, 50.0, 50.0, 0.0,17.0,7.8 +4.95483870967742,4.95,a-cure-i1,2020-21,Falmouth - Teaticket,00960015, 1.2, 1.2, 10.2, 8.6, 9.8, 0.0, 69.0, 46.1, 53.9, 0.0,31.0,9.6 +1,1,a-cure-i1,2020-21,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 2.8, 0.0, 0.0, 97.2, 49.5, 50.5, 0.0,2.799999999999997,0.0 +1.7800511508951404,1.78,a-cure-i1,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.2, 3.2, 7.1, 60.5, 7.1, 0.2, 21.8, 50.0, 50.0, 0.0,78.2,8.7 +1.2075471698113207,1.21,a-cure-i1,2020-21,Fitchburg - Crocker Elementary,00970016, 0.0, 3.2, 5.5, 57.8, 7.8, 0.0, 25.8, 48.4, 51.6, 0.0,74.2,5.6 +3.3478260869565215,3.35,a-cure-i1,2020-21,Fitchburg - Fitchburg High,00970505, 0.0, 5.6, 7.1, 53.5, 7.4, 0.0, 26.4, 48.2, 51.8, 0.0,73.6,15.399999999999999 +6.394106813996317,5,a-cure-i1,2020-21,Fitchburg - Goodrich Academy,00970510, 0.0, 2.2, 2.9, 43.5, 5.8, 0.0, 45.7, 40.6, 59.4, 0.0,54.3,21.7 +2.0394218134034166,2.04,a-cure-i1,2020-21,Fitchburg - McKay Arts Academy,00970340, 0.0, 6.1, 6.2, 56.3, 7.5, 0.0, 23.9, 48.1, 51.9, 0.0,76.1,9.7 +1.376586741889986,1.38,a-cure-i1,2020-21,Fitchburg - Memorial Middle School,00970048, 0.0, 4.7, 5.5, 52.3, 8.2, 0.2, 29.1, 53.5, 46.5, 0.0,70.9,6.1000000000000005 +1.4014598540145986,1.4,a-cure-i1,2020-21,Fitchburg - Reingold Elementary,00970043, 0.0, 3.8, 4.0, 52.8, 7.8, 0.0, 31.5, 42.0, 58.0, 0.0,68.5,6.0 +1,1,a-cure-i1,2020-21,Fitchburg - South Street Elementary,00970060, 0.0, 3.0, 6.7, 61.4, 8.1, 0.0, 20.7, 45.7, 54.3, 0.0,79.3,0.0 +1,1,a-cure-i1,2020-21,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 46.3, 53.8, 0.0,0.0,0.0 +10.232558139534882,5,a-cure-i1,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.5, 1.4, 0.9, 7.4, 7.0, 0.0, 82.8, 55.8, 43.3, 0.9,17.200000000000003,11.0 +1,1,a-cure-i1,2020-21,Foxborough - Charles Taylor Elementary,00990050, 0.0, 3.6, 4.4, 6.8, 4.8, 0.8, 79.5, 42.6, 57.4, 0.0,20.5,0.0 +1,1,a-cure-i1,2020-21,Foxborough - Foxborough High,00990505, 0.5, 2.5, 7.2, 7.0, 2.0, 0.0, 80.9, 49.3, 50.5, 0.1,19.099999999999994,0.2 +1,1,a-cure-i1,2020-21,Foxborough - John J Ahern,00990405, 0.8, 4.5, 5.8, 6.0, 3.0, 0.0, 79.9, 48.0, 52.0, 0.0,20.099999999999994,3.4 +3.87214611872146,3.87,a-cure-i1,2020-21,Foxborough - Mabelle M Burrell,00990015, 0.3, 6.6, 4.0, 7.0, 4.0, 0.0, 78.1, 48.7, 51.3, 0.0,21.900000000000006,5.3 +1,1,a-cure-i1,2020-21,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 8.6, 8.9, 7.6, 4.6, 0.3, 70.0, 45.1, 54.9, 0.0,30.0,4.2 +3.067586206896552,3.07,a-cure-i1,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.1, 9.6, 51.5, 6.0, 5.1, 0.2, 27.5, 51.6, 48.4, 0.0,72.5,13.9 +6.743801652892563,5,a-cure-i1,2020-21,Framingham - Barbieri Elementary,01000035, 0.0, 0.4, 3.1, 77.0, 4.1, 0.0, 15.3, 52.4, 47.4, 0.1,84.7,35.7 +4.685714285714286,4.69,a-cure-i1,2020-21,Framingham - Brophy,01000006, 0.2, 4.0, 6.5, 55.4, 3.8, 0.0, 30.0, 50.4, 49.6, 0.0,70.0,20.5 +7.0559006211180115,5,a-cure-i1,2020-21,Framingham - Cameron Middle School,01000302, 0.0, 2.4, 6.4, 19.7, 3.7, 0.0, 67.8, 50.0, 50.0, 0.0,32.2,14.2 +3.25,3.25,a-cure-i1,2020-21,Framingham - Charlotte A Dunning,01000007, 0.0, 8.3, 6.9, 19.7, 3.6, 0.0, 61.6, 45.5, 54.5, 0.0,38.4,7.8 +4.369747899159663,4.37,a-cure-i1,2020-21,Framingham - Framingham High School,01000515, 0.1, 4.8, 6.9, 31.9, 3.7, 0.1, 52.4, 49.2, 50.8, 0.0,47.6,13.0 +6.090775988286969,5,a-cure-i1,2020-21,Framingham - Fuller Middle,01000305, 0.2, 1.4, 8.3, 54.9, 3.5, 0.0, 31.7, 42.0, 58.0, 0.0,68.3,26.0 +2.9090909090909096,2.91,a-cure-i1,2020-21,Framingham - Hemenway,01000015, 0.2, 8.7, 6.1, 19.3, 8.6, 0.0, 57.1, 50.2, 49.8, 0.0,42.9,7.800000000000001 +1,1,a-cure-i1,2020-21,Framingham - Juniper Hill School,01000001, 0.0, 7.7, 6.7, 29.7, 2.1, 0.5, 53.3, 36.9, 63.1, 0.0,46.7,4.3 +3.2842105263157895,3.28,a-cure-i1,2020-21,Framingham - King Elementary School,01000005, 0.0, 10.5, 4.1, 14.9, 8.5, 0.0, 62.0, 46.8, 52.9, 0.3,38.0,7.8 +1,1,a-cure-i1,2020-21,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 6.1, 7.0, 31.0, 6.4, 0.0, 49.5, 44.7, 55.3, 0.0,50.5,1.7 +1.4177215189873416,1.42,a-cure-i1,2020-21,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.3, 12.1, 40.5, 8.0, 0.2, 36.8, 55.8, 44.2, 0.0,63.2,5.6 +8.091954022988507,5,a-cure-i1,2020-21,Framingham - Potter Road,01000039, 0.0, 3.1, 8.1, 27.0, 5.2, 0.2, 56.5, 50.3, 49.7, 0.0,43.5,22.0 +5.140425531914894,5,a-cure-i1,2020-21,Framingham - Walsh Middle,01000310, 0.0, 5.9, 4.8, 32.8, 3.5, 0.0, 53.0, 52.9, 47.1, 0.0,47.0,15.1 +2.881646655231561,2.88,a-cure-i1,2020-21,Framingham - Woodrow Wilson,01000055, 0.2, 0.6, 10.0, 45.2, 2.3, 0.0, 41.7, 45.6, 54.4, 0.0,58.3,10.5 +7.768115942028987,5,a-cure-i1,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.3, 2.5, 1.8, 4.0, 5.3, 0.0, 86.2, 54.6, 44.9, 0.5,13.799999999999997,6.7 +1,1,a-cure-i1,2020-21,Franklin - Annie Sullivan Middle School,01010040, 0.3, 4.0, 2.3, 6.3, 0.6, 0.3, 86.2, 46.6, 53.4, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Franklin - Davis Thayer,01010035, 0.0, 2.3, 0.5, 5.6, 2.8, 1.9, 86.9, 52.1, 47.9, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 9.6, 1.4, 1.4, 8.2, 0.0, 79.5, 31.5, 68.5, 0.0,20.5,0.0 +1,1,a-cure-i1,2020-21,Franklin - Franklin High,01010505, 0.2, 7.2, 1.7, 3.7, 2.1, 0.2, 84.9, 50.3, 49.5, 0.2,15.099999999999994,1.1 +1,1,a-cure-i1,2020-21,Franklin - Helen Keller Elementary,01010012, 0.0, 4.0, 3.4, 2.4, 1.8, 0.6, 87.8, 47.1, 52.9, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Franklin - Horace Mann,01010405, 0.0, 6.3, 1.2, 5.3, 1.9, 1.0, 84.3, 46.3, 53.7, 0.0,15.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Franklin - J F Kennedy Memorial,01010013, 0.3, 5.4, 0.6, 3.9, 1.2, 2.7, 85.8, 46.1, 53.9, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Franklin - Jefferson Elementary,01010010, 0.0, 5.8, 2.7, 4.9, 1.5, 0.9, 84.1, 44.5, 55.5, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Franklin - Oak Street Elementary,01010030, 0.0, 7.6, 2.2, 4.9, 3.8, 0.5, 81.0, 50.3, 49.7, 0.0,19.0,4.1 +1,1,a-cure-i1,2020-21,Franklin - Parmenter,01010032, 0.0, 4.5, 5.2, 10.0, 1.9, 1.0, 77.4, 48.7, 51.3, 0.0,22.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Franklin - Remington Middle,01010310, 0.3, 7.9, 2.9, 5.5, 0.8, 0.3, 82.5, 45.5, 54.5, 0.0,17.5,0.0 +1,1,a-cure-i1,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.2, 0.0, 1.1, 6.3, 2.3, 0.7, 89.4, 39.8, 60.2, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.5, 1.2, 2.1, 1.2, 0.1, 94.8, 50.9, 49.1, 0.0,5.200000000000003,1.7 +1,1,a-cure-i1,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.2, 3.1, 3.5, 4.4, 0.0, 88.7, 51.9, 48.1, 0.0,11.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 1.2, 0.7, 4.1, 2.4, 0.0, 91.5, 44.8, 55.2, 0.0,8.5,0.0 +1,1,a-cure-i1,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.2, 0.9, 2.1, 0.9, 1.5, 0.0, 94.4, 49.2, 50.8, 0.0,5.599999999999994,4.8 +1,1,a-cure-i1,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.7, 1.9, 2.4, 3.3, 0.0, 91.6, 48.2, 51.8, 0.0,8.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Frontier - Frontier Regional,06700505, 0.0, 2.9, 2.5, 6.6, 4.2, 0.2, 83.7, 46.5, 53.5, 0.0,16.299999999999997,3.4 +3.174934725848564,3.17,a-cure-i1,2020-21,Gardner - Elm Street School,01030001, 0.0, 1.5, 2.0, 26.3, 8.4, 0.0, 61.7, 49.6, 50.4, 0.0,38.3,7.6 +1,1,a-cure-i1,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.9, 3.5, 7.0, 13.2, 1.8, 0.0, 73.7, 47.4, 52.6, 0.0,26.299999999999997,0.0 +4.231404958677686,4.23,a-cure-i1,2020-21,Gardner - Gardner High,01030505, 0.3, 2.6, 3.4, 22.2, 7.8, 0.0, 63.7, 47.3, 52.5, 0.1,36.3,9.6 +2.2974358974358973,2.3,a-cure-i1,2020-21,Gardner - Gardner Middle School,01030405, 0.2, 2.2, 2.9, 23.3, 10.3, 0.0, 61.0, 47.6, 52.4, 0.0,39.0,5.6 +1,1,a-cure-i1,2020-21,Gardner - Waterford Street,01030020, 0.0, 2.7, 3.2, 24.6, 3.8, 0.0, 65.7, 47.6, 52.2, 0.3,34.3,0.0 +1,1,a-cure-i1,2020-21,Gateway - Chester Elementary,06720059, 0.0, 2.0, 0.0, 3.9, 1.0, 0.0, 93.1, 40.2, 59.8, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Gateway - Gateway Regional High,06720505, 0.5, 0.5, 0.5, 6.2, 2.1, 0.0, 90.2, 47.4, 52.6, 0.0,9.799999999999997,4.6 +11.254237288135597,5,a-cure-i1,2020-21,Gateway - Gateway Regional Middle School,06720405, 0.8, 0.0, 0.8, 8.7, 0.8, 0.8, 88.2, 45.7, 54.3, 0.0,11.799999999999997,8.3 +1,1,a-cure-i1,2020-21,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.6, 4.5, 1.2, 0.3, 93.3, 50.6, 49.4, 0.0,6.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 1.2, 1.2, 3.0, 0.3, 0.0, 94.4, 49.6, 50.1, 0.3,5.599999999999994,4.4 +1,1,a-cure-i1,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 1.0, 1.0, 1.5, 1.0, 1.0, 94.6, 51.0, 49.0, 0.0,5.400000000000006,2.2 +1,1,a-cure-i1,2020-21,Georgetown - Penn Brook,01050010, 0.0, 1.1, 0.6, 2.9, 2.9, 0.0, 92.6, 50.3, 49.7, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 5.9, 0.0, 94.1, 23.5, 76.5, 0.0,5.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.8, 6.3, 2.7, 0.0, 89.2, 50.5, 49.5, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Gill-Montague - Great Falls Middle,06740310, 0.5, 0.0, 0.5, 11.9, 10.0, 0.5, 76.7, 48.1, 51.9, 0.0,23.299999999999997,2.4 +1,1,a-cure-i1,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.8, 2.5, 24.2, 7.5, 0.0, 65.0, 45.8, 54.2, 0.0,35.0,0.0 +1,1,a-cure-i1,2020-21,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.9, 1.4, 16.3, 6.5, 0.5, 74.4, 44.7, 54.4, 0.9,25.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Gill-Montague - Turners Fall High,06740505, 0.5, 0.5, 2.1, 14.2, 6.3, 0.0, 76.3, 57.9, 41.6, 0.5,23.700000000000003,2.5 +1.5,1.5,a-cure-i1,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.8, 1.4, 10.7, 46.3, 4.8, 0.0, 36.0, 51.1, 48.9, 0.0,64.0,6.0 +1,1,a-cure-i1,2020-21,Gloucester - Beeman Memorial,01070010, 0.0, 1.3, 2.9, 20.8, 4.5, 0.0, 70.5, 49.0, 51.0, 0.0,29.5,4.3 +6.857142857142856,5,a-cure-i1,2020-21,Gloucester - East Gloucester Elementary,01070020, 0.0, 1.6, 0.0, 8.9, 4.2, 0.0, 85.3, 50.8, 49.2, 0.0,14.700000000000003,6.3 +5.416666666666666,5,a-cure-i1,2020-21,Gloucester - Gloucester High,01070505, 0.1, 1.1, 1.3, 12.0, 3.9, 0.7, 80.8, 43.3, 56.4, 0.2,19.200000000000003,6.5 +1,1,a-cure-i1,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, 1.5, 1.5, 10.6, 4.5, 0.0, 81.8, 40.9, 59.1, 0.0,18.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Gloucester - Plum Cove School,01070042, 0.0, 0.5, 2.0, 3.4, 5.4, 0.0, 88.8, 47.8, 52.2, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 0.5, 1.5, 0.8, 12.4, 1.7, 0.0, 83.2, 50.3, 49.7, 0.0,16.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Gloucester - Veterans Memorial,01070045, 0.9, 2.3, 4.7, 24.9, 4.7, 1.9, 60.6, 49.3, 50.7, 0.0,39.4,0.0 +1,1,a-cure-i1,2020-21,Gloucester - West Parish,01070050, 0.0, 1.4, 1.4, 8.5, 4.5, 0.0, 84.2, 50.3, 49.7, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 75.0, 25.0, 0.0,0.0,0.0 +4.444444444444445,4.44,a-cure-i1,2020-21,Grafton - Grafton High School,01100505, 0.2, 9.6, 2.3, 4.7, 2.9, 0.1, 80.2, 51.8, 48.2, 0.0,19.799999999999997,5.5 +4.884955752212391,4.88,a-cure-i1,2020-21,Grafton - Grafton Middle,01100305, 0.2, 11.1, 1.6, 6.8, 2.9, 0.0, 77.4, 43.9, 56.1, 0.0,22.599999999999994,6.9 +1,1,a-cure-i1,2020-21,Grafton - Millbury Street Elementary School,01100200, 0.0, 17.3, 1.3, 6.7, 3.0, 0.0, 71.7, 44.3, 55.7, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Grafton - North Grafton Elementary,01100025, 0.4, 11.1, 2.8, 4.3, 1.2, 0.0, 80.2, 49.0, 51.0, 0.0,19.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Grafton - North Street Elementary School,01100030, 0.2, 10.8, 1.4, 5.1, 3.9, 0.2, 78.4, 49.5, 50.5, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Grafton - South Grafton Elementary,01100005, 0.7, 16.9, 3.5, 7.7, 1.4, 0.0, 69.7, 47.9, 52.1, 0.0,30.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Granby - East Meadow,01110004, 0.5, 1.0, 0.0, 13.1, 4.4, 0.0, 80.9, 50.0, 50.0, 0.0,19.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Granby - Granby Jr Sr High School,01110505, 0.0, 1.5, 0.3, 7.9, 3.4, 0.0, 86.9, 40.9, 58.8, 0.3,13.099999999999994,4.1 +1,1,a-cure-i1,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.7, 2.2, 3.5, 12.3, 5.9, 0.0, 75.5, 45.1, 54.8, 0.1,24.5,2.9 +2.5721040189125297,2.57,a-cure-i1,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.1, 1.2, 1.2, 81.9, 0.1, 0.1, 15.4, 50.3, 49.7, 0.0,84.6,13.6 +1.7893030794165314,1.79,a-cure-i1,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.2, 17.1, 5.2, 36.1, 3.0, 0.0, 38.3, 48.6, 51.0, 0.4,61.7,6.8999999999999995 +2.28009828009828,2.28,a-cure-i1,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.4, 1.1, 8.0, 25.3, 5.8, 0.1, 59.3, 47.8, 52.2, 0.0,40.7,5.8 +7.154471544715449,5,a-cure-i1,2020-21,Greenfield - Discovery School at Four Corners,01140025, 0.5, 1.4, 0.5, 8.2, 1.8, 0.0, 87.7, 43.4, 56.6, 0.0,12.299999999999997,5.5 +1,1,a-cure-i1,2020-21,Greenfield - Federal Street School,01140010, 0.0, 1.9, 2.9, 18.8, 3.8, 0.0, 72.6, 48.6, 51.4, 0.0,27.400000000000006,0.0 +3.6697247706422016,3.67,a-cure-i1,2020-21,Greenfield - Greenfield High,01140505, 0.4, 2.1, 2.9, 20.0, 7.3, 0.0, 67.3, 46.0, 54.0, 0.0,32.7,7.5 +1,1,a-cure-i1,2020-21,Greenfield - Greenfield Middle,01140305, 0.0, 0.8, 3.1, 21.7, 6.7, 0.0, 67.8, 50.3, 49.7, 0.0,32.2,4.5 +5.635467980295567,5,a-cure-i1,2020-21,Greenfield - Newton School,01140035, 0.0, 0.4, 4.9, 32.1, 3.1, 0.0, 59.4, 50.0, 50.0, 0.0,40.6,14.3 +1,1,a-cure-i1,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 3.7, 18.5, 3.7, 0.0, 74.1, 42.6, 57.4, 0.0,25.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.1, 5.2, 7.5, 18.9, 7.0, 0.3, 61.0, 53.9, 45.3, 0.8,39.0,0.0 +1,1,a-cure-i1,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, 2.7, 0.0, 8.1, 2.7, 0.0, 86.5, 45.9, 54.1, 0.0,13.5,0.0 +1,1,a-cure-i1,2020-21,Groton-Dunstable - Florence Roche School,06730010, 0.4, 7.0, 1.0, 3.5, 6.2, 0.0, 81.9, 47.0, 53.0, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.3, 7.6, 0.6, 2.4, 1.7, 0.3, 87.2, 48.0, 51.6, 0.4,12.799999999999997,2.3 +1,1,a-cure-i1,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.1, 6.4, 1.7, 3.3, 2.7, 0.1, 85.7, 50.0, 50.0, 0.0,14.299999999999997,2.1 +1,1,a-cure-i1,2020-21,Groton-Dunstable - Swallow/Union School,06730005, 0.4, 7.1, 0.7, 6.0, 3.9, 0.0, 82.0, 47.3, 52.7, 0.0,18.0,0.0 +3.9646017699115053,3.96,a-cure-i1,2020-21,Hadley - Hadley Elementary,01170015, 0.4, 3.2, 4.0, 11.3, 2.4, 1.2, 77.4, 47.6, 52.4, 0.0,22.599999999999994,5.6 +6.644067796610171,5,a-cure-i1,2020-21,Hadley - Hopkins Academy,01170505, 0.4, 5.0, 2.3, 9.3, 3.1, 3.5, 76.4, 46.9, 53.1, 0.0,23.599999999999994,9.8 +1,1,a-cure-i1,2020-21,Halifax - Halifax Elementary,01180005, 0.4, 0.0, 1.6, 6.2, 2.8, 0.0, 89.1, 46.7, 53.3, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.2, 0.4, 9.9, 1.3, 0.0, 86.1, 44.4, 55.6, 0.0,13.900000000000006,0.0 +9.098039215686272,5,a-cure-i1,2020-21,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.9, 0.0, 2.3, 3.9, 0.0, 89.8, 57.0, 43.0, 0.0,10.200000000000003,5.8 +11.733333333333333,5,a-cure-i1,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 4.6, 0.8, 5.2, 3.1, 0.0, 86.5, 53.6, 46.4, 0.0,13.5,9.899999999999999 +1,1,a-cure-i1,2020-21,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.5, 0.3, 3.8, 2.8, 0.8, 89.8, 48.1, 51.9, 0.0,10.200000000000003,4.0 +7.365079365079368,5,a-cure-i1,2020-21,Hamilton-Wenham - Winthrop School,06750015, 0.0, 5.1, 0.7, 4.1, 2.7, 0.0, 87.4, 53.4, 46.6, 0.0,12.599999999999994,5.8 +2.4399460188933877,2.44,a-cure-i1,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.6, 2.0, 30.9, 37.4, 3.1, 0.0, 25.9, 50.2, 49.8, 0.0,74.1,11.3 +5.154562383612663,5,a-cure-i1,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 1.3, 16.9, 34.1, 1.6, 0.0, 46.3, 47.2, 52.8, 0.0,53.7,17.3 +1,1,a-cure-i1,2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.3, 2.2, 13.3, 2.2, 0.0, 82.1, 50.6, 49.4, 0.0,17.900000000000006,0.0 +9.035294117647059,5,a-cure-i1,2020-21,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.6, 1.9, 3.1, 7.7, 3.7, 0.0, 83.0, 46.9, 53.1, 0.0,17.0,9.6 +1,1,a-cure-i1,2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.5, 3.2, 3.0, 7.6, 3.6, 0.0, 82.0, 52.2, 47.8, 0.0,18.0,1.5 +5.005586592178769,5,a-cure-i1,2020-21,Hampden-Wilbraham - Soule Road,06800030, 0.3, 2.2, 2.5, 8.5, 4.4, 0.0, 82.1, 45.1, 54.9, 0.0,17.900000000000006,5.6 +1,1,a-cure-i1,2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 2.1, 2.7, 8.2, 3.8, 0.7, 82.5, 49.1, 50.9, 0.0,17.5,0.0 +1,1,a-cure-i1,2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 2.6, 2.6, 8.1, 3.1, 0.0, 83.7, 49.3, 50.7, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Hampshire - Hampshire Regional High,06830505, 0.1, 1.3, 0.3, 4.1, 2.9, 0.0, 91.2, 57.1, 42.9, 0.0,8.799999999999997,1.6 +1,1,a-cure-i1,2020-21,Hancock - Hancock Elementary,01210005, 0.0, 3.5, 1.8, 0.0, 1.8, 0.0, 93.0, 56.1, 43.9, 0.0,7.0,0.0 +1,1,a-cure-i1,2020-21,Hanover - Cedar Elementary,01220004, 0.2, 2.2, 1.3, 1.5, 0.2, 0.0, 94.5, 51.0, 49.0, 0.0,5.5,0.0 +1,1,a-cure-i1,2020-21,Hanover - Center Elementary,01220005, 0.0, 1.5, 0.5, 3.6, 1.2, 0.0, 93.2, 46.5, 53.5, 0.0,6.799999999999997,3.4 +1,1,a-cure-i1,2020-21,Hanover - Hanover High,01220505, 0.0, 2.8, 1.2, 1.3, 0.1, 0.0, 94.6, 47.0, 53.0, 0.0,5.400000000000006,0.0 +11.544303797468345,5,a-cure-i1,2020-21,Hanover - Hanover Middle,01220305, 0.0, 2.2, 1.6, 3.1, 1.0, 0.0, 92.1, 50.1, 49.9, 0.0,7.900000000000006,5.699999999999999 +4.017937219730943,4.02,a-cure-i1,2020-21,Harvard - Bromfield,01250505, 0.0, 11.6, 2.0, 4.4, 4.2, 0.0, 77.7, 51.3, 48.6, 0.2,22.299999999999997,5.6000000000000005 +3.555555555555555,3.56,a-cure-i1,2020-21,Harvard - Hildreth Elementary School,01250005, 0.0, 12.6, 2.9, 4.4, 5.3, 0.0, 74.8, 47.9, 52.1, 0.0,25.200000000000003,5.6 +1,1,a-cure-i1,2020-21,Hatfield - Hatfield Elementary,01270005, 0.0, 0.9, 0.5, 5.1, 1.9, 0.0, 91.7, 48.6, 50.9, 0.5,8.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Hatfield - Smith Academy,01270505, 0.0, 1.1, 1.1, 3.3, 2.2, 0.0, 92.3, 47.0, 52.5, 0.6,7.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Haverhill - Bradford Elementary,01280008, 0.0, 1.6, 4.1, 46.3, 2.0, 0.0, 46.1, 47.3, 52.7, 0.0,53.9,4.0 +1,1,a-cure-i1,2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 0.1, 2.1, 4.9, 24.8, 2.5, 0.0, 65.5, 48.7, 51.3, 0.0,34.5,2.4 +1,1,a-cure-i1,2020-21,Haverhill - Consentino Middle School,01280100, 0.1, 2.8, 5.2, 47.1, 2.9, 0.0, 41.9, 45.2, 54.8, 0.0,58.1,0.0 +1,1,a-cure-i1,2020-21,Haverhill - Crowell,01280515, 0.0, 0.0, 4.3, 69.6, 0.0, 0.0, 26.1, 21.7, 78.3, 0.0,73.9,0.0 +1,1,a-cure-i1,2020-21,Haverhill - Dr Paul Nettle,01280050, 0.2, 2.5, 4.6, 48.1, 2.7, 0.2, 41.8, 47.7, 52.3, 0.0,58.2,3.7 +1,1,a-cure-i1,2020-21,Haverhill - Golden Hill,01280026, 0.2, 2.3, 4.8, 44.7, 2.5, 0.0, 45.5, 48.0, 51.8, 0.2,54.5,0.0 +3.5805946791862286,3.58,a-cure-i1,2020-21,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 2.8, 58.3, 2.8, 0.0, 36.1, 25.0, 75.0, 0.0,63.9,14.3 +4.839729119638826,4.84,a-cure-i1,2020-21,Haverhill - Haverhill High,01280505, 0.2, 1.5, 5.5, 35.7, 1.1, 0.2, 55.7, 47.9, 52.1, 0.1,44.3,13.399999999999999 +1,1,a-cure-i1,2020-21,Haverhill - John G Whittier,01280085, 0.6, 1.0, 3.9, 34.8, 1.2, 0.2, 58.4, 51.6, 48.2, 0.2,41.6,0.0 +2.488888888888889,2.49,a-cure-i1,2020-21,Haverhill - Moody,01280045, 0.0, 1.1, 11.5, 36.3, 0.5, 0.0, 50.5, 34.1, 65.9, 0.0,49.5,7.7 +1,1,a-cure-i1,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0.6, 1.1, 7.1, 46.6, 3.1, 0.2, 41.4, 49.6, 50.4, 0.0,58.6,0.0 +1,1,a-cure-i1,2020-21,Haverhill - Silver Hill Elementary School,01280067, 0.4, 3.0, 6.5, 41.5, 3.3, 0.0, 45.2, 48.9, 51.1, 0.0,54.8,4.5 +1,1,a-cure-i1,2020-21,Haverhill - TEACH,01280073, 3.6, 0.0, 10.7, 39.3, 3.6, 0.0, 42.9, 32.1, 67.9, 0.0,57.1,0.0 +1,1,a-cure-i1,2020-21,Haverhill - Tilton,01280075, 0.3, 1.6, 5.1, 52.7, 2.7, 0.0, 37.7, 50.5, 49.5, 0.0,62.3,0.0 +1,1,a-cure-i1,2020-21,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 4.4, 62.6, 0.0, 0.0, 33.0, 47.3, 52.7, 0.0,67.0,0.0 +1,1,a-cure-i1,2020-21,Haverhill - Walnut Square,01280080, 0.0, 0.0, 3.3, 30.9, 1.6, 0.0, 64.2, 52.8, 47.2, 0.0,35.8,0.0 +1,1,a-cure-i1,2020-21,Hawlemont - Hawlemont Regional,06850005, 0.8, 0.0, 0.0, 6.8, 4.2, 0.0, 88.1, 57.6, 42.4, 0.0,11.900000000000006,0.0 +15.030303030303031,5,a-cure-i1,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 77.2, 20.7, 0.5, 0.5, 1.0, 50.3, 49.7, 0.0,99.0,93.0 +2.1857923497267757,2.19,a-cure-i1,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.3, 5.0, 27.4, 4.0, 0.0, 63.4, 51.5, 48.5, 0.0,36.6,5.0 +1,1,a-cure-i1,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.8, 0.9, 3.2, 13.3, 0.0, 79.8, 48.6, 50.9, 0.5,20.200000000000003,2.5 +1,1,a-cure-i1,2020-21,Hingham - East Elementary School,01310005, 0.0, 1.3, 1.8, 3.5, 3.3, 0.0, 90.2, 49.9, 50.1, 0.0,9.799999999999997,3.5 +1,1,a-cure-i1,2020-21,Hingham - Hingham High,01310505, 0.0, 2.7, 1.6, 3.5, 3.0, 0.0, 89.2, 48.4, 51.6, 0.1,10.799999999999997,1.0 +8.325203252032523,5,a-cure-i1,2020-21,Hingham - Hingham Middle School,01310410, 0.1, 3.4, 2.2, 3.8, 2.9, 0.0, 87.7, 49.1, 50.8, 0.1,12.299999999999997,6.4 +1,1,a-cure-i1,2020-21,Hingham - Plymouth River,01310019, 0.3, 2.5, 3.6, 4.4, 2.2, 0.0, 87.1, 53.2, 46.8, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Hingham - South Elementary,01310020, 0.0, 4.6, 1.3, 2.1, 3.6, 0.0, 88.5, 50.2, 49.8, 0.0,11.5,4.1 +1,1,a-cure-i1,2020-21,Hingham - Wm L Foster Elementary,01310010, 0.0, 1.8, 1.6, 5.6, 6.7, 0.0, 84.3, 45.8, 54.2, 0.0,15.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Holbrook - Holbrook Middle High School,01330505, 0.3, 6.3, 23.4, 14.6, 7.5, 0.0, 47.9, 48.7, 51.1, 0.2,52.1,0.0 +1,1,a-cure-i1,2020-21,Holbrook - John F Kennedy,01330018, 0.3, 5.0, 19.7, 14.9, 7.5, 0.0, 52.6, 45.8, 54.2, 0.0,47.4,2.5 +7.8709677419354795,5,a-cure-i1,2020-21,Holland - Holland Elementary,01350005, 0.5, 1.5, 0.5, 7.7, 2.1, 0.0, 87.6, 43.3, 56.7, 0.0,12.400000000000006,6.1 +1,1,a-cure-i1,2020-21,Holliston - Holliston High,01360505, 0.6, 8.6, 1.1, 5.4, 1.8, 0.0, 82.4, 49.8, 50.2, 0.0,17.599999999999994,1.7 +5.358139534883721,5,a-cure-i1,2020-21,Holliston - Miller School,01360007, 0.8, 10.1, 0.9, 5.1, 4.5, 0.2, 78.5, 47.0, 53.0, 0.0,21.5,7.2 +1,1,a-cure-i1,2020-21,Holliston - Placentino Elementary,01360010, 0.0, 11.0, 1.8, 3.2, 1.8, 0.5, 81.6, 45.0, 54.8, 0.2,18.400000000000006,1.6 +1,1,a-cure-i1,2020-21,Holliston - Robert H. Adams Middle School,01360305, 0.0, 8.4, 0.9, 6.2, 3.2, 0.1, 81.1, 49.5, 50.5, 0.0,18.900000000000006,1.7 +5.835051546391753,5,a-cure-i1,2020-21,Holyoke - E N White Elementary,01370045, 0.0, 0.7, 3.3, 71.1, 2.6, 0.0, 22.4, 45.7, 54.3, 0.0,77.6,28.3 +2.47787610619469,2.48,a-cure-i1,2020-21,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.6, 7.9, 79.2, 2.8, 0.0, 9.6, 47.8, 52.2, 0.0,90.4,14.0 +5.244970414201183,5,a-cure-i1,2020-21,Holyoke - Holyoke High,01370505, 0.1, 0.3, 3.1, 80.0, 0.9, 0.1, 15.5, 47.4, 52.4, 0.1,84.5,27.7 +2.554926387315968,2.55,a-cure-i1,2020-21,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.8, 3.6, 82.7, 1.2, 0.0, 11.7, 45.6, 54.4, 0.0,88.3,14.1 +9.642384105960264,5,a-cure-i1,2020-21,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 2.0, 71.1, 2.3, 0.0, 24.5, 54.7, 45.3, 0.0,75.5,45.5 +2.3697650663942795,2.37,a-cure-i1,2020-21,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 3.0, 94.6, 0.3, 0.0, 2.1, 46.4, 53.6, 0.0,97.9,14.5 +3.394475138121547,3.39,a-cure-i1,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 1.7, 1.3, 86.3, 1.1, 0.0, 9.5, 43.6, 56.4, 0.0,90.5,19.2 +2.1059001512859306,2.11,a-cure-i1,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 2.5, 2.5, 59.0, 2.2, 0.0, 33.9, 47.9, 52.1, 0.0,66.1,8.7 +2.7029478458049883,2.7,a-cure-i1,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.5, 4.0, 82.3, 1.2, 0.2, 11.8, 45.2, 54.8, 0.0,88.2,14.899999999999999 +2.175077239958805,2.18,a-cure-i1,2020-21,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 5.1, 92.0, 0.0, 0.0, 2.9, 50.4, 49.6, 0.0,97.1,13.2 +8.392638036809817,5,a-cure-i1,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.9, 4.7, 91.3, 0.9, 0.0, 2.2, 44.7, 55.3, 0.0,97.8,51.300000000000004 +6.036131774707758,5,a-cure-i1,2020-21,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 2.7, 89.8, 1.6, 0.0, 5.9, 45.1, 54.9, 0.0,94.1,35.5 +3.1235721703011423,3.12,a-cure-i1,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 1.0, 0.7, 92.7, 1.9, 0.0, 3.7, 52.4, 47.6, 0.0,96.3,18.8 +1,1,a-cure-i1,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.2, 2.1, 4.2, 3.3, 0.0, 89.2, 48.8, 51.2, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.6, 0.3, 4.7, 2.7, 1.2, 0.0, 90.5, 49.3, 50.7, 0.0,9.5,0.0 +1,1,a-cure-i1,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.3, 3.3, 2.5, 2.7, 0.0, 91.3, 50.8, 49.2, 0.0,8.700000000000003,0.0 +5.300613496932517,5,a-cure-i1,2020-21,Hopedale - Hopedale Jr Sr High,01380505, 0.4, 2.7, 1.4, 9.3, 2.1, 0.4, 83.7, 47.3, 52.7, 0.0,16.299999999999997,5.4 +1,1,a-cure-i1,2020-21,Hopedale - Memorial,01380010, 0.0, 1.1, 0.9, 10.5, 5.4, 0.0, 82.0, 48.6, 51.4, 0.0,18.0,0.0 +1,1,a-cure-i1,2020-21,Hopedale - Park Street School,01380003, 0.0, 1.3, 2.5, 7.5, 15.0, 0.0, 73.8, 46.3, 53.8, 0.0,26.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Hopkinton - Elmwood,01390010, 0.2, 30.5, 0.3, 5.3, 6.2, 0.0, 57.4, 49.5, 50.5, 0.0,42.6,4.5 +3.8843930635838158,3.88,a-cure-i1,2020-21,Hopkinton - Hopkins Elementary School,01390015, 0.3, 27.4, 0.3, 3.3, 3.3, 0.0, 65.4, 49.4, 50.6, 0.0,34.599999999999994,8.4 +1,1,a-cure-i1,2020-21,Hopkinton - Hopkinton High,01390505, 0.4, 15.5, 1.4, 3.5, 2.7, 0.0, 76.5, 51.3, 48.6, 0.1,23.5,4.5 +2.6666666666666665,2.67,a-cure-i1,2020-21,Hopkinton - Hopkinton Middle School,01390305, 0.3, 23.0, 0.8, 4.2, 4.7, 0.0, 67.0, 48.5, 51.5, 0.0,33.0,5.5 +1,1,a-cure-i1,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 25.3, 0.0, 6.7, 6.7, 0.0, 61.3, 36.0, 64.0, 0.0,38.7,0.0 +2.802919708029197,2.8,a-cure-i1,2020-21,Hopkinton - Marathon Elementary School,01390005, 0.4, 30.7, 0.4, 4.4, 5.3, 0.0, 58.9, 47.1, 52.9, 0.0,41.1,7.2 +1,1,a-cure-i1,2020-21,Hudson - C A Farley,01410030, 0.0, 1.8, 1.5, 20.9, 3.0, 0.0, 72.8, 48.9, 51.1, 0.0,27.200000000000003,0.0 +5.953488372093023,5,a-cure-i1,2020-21,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.9, 1.9, 14.9, 2.8, 0.0, 78.5, 51.2, 48.8, 0.0,21.5,8.0 +1,1,a-cure-i1,2020-21,Hudson - Forest Avenue Elementary,01410015, 0.6, 2.2, 2.8, 14.6, 3.7, 0.0, 76.1, 49.1, 50.9, 0.0,23.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Hudson - Hudson High,01410505, 0.2, 1.4, 2.3, 13.3, 2.6, 0.1, 80.0, 53.6, 46.3, 0.1,20.0,4.800000000000001 +4.431924882629109,4.43,a-cure-i1,2020-21,Hudson - Mulready Elementary,01410007, 0.0, 2.0, 2.0, 15.0, 2.4, 0.0, 78.7, 49.8, 50.2, 0.0,21.299999999999997,5.9 +1,1,a-cure-i1,2020-21,Hull - Hull High,01420505, 0.0, 1.9, 1.5, 3.8, 1.9, 0.0, 90.8, 43.5, 56.5, 0.0,9.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Hull - Lillian M Jacobs,01420015, 0.3, 2.3, 2.3, 3.4, 3.4, 0.0, 88.4, 47.2, 52.8, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Hull - Memorial Middle,01420305, 0.0, 0.5, 1.1, 3.2, 2.1, 0.0, 93.1, 48.9, 50.5, 0.5,6.900000000000006,0.0 +5.560975609756097,5,a-cure-i1,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.1, 8.7, 8.2, 11.0, 4.7, 0.0, 67.2, 52.4, 47.1, 0.5,32.8,11.399999999999999 +1,1,a-cure-i1,2020-21,Ipswich - Ipswich High,01440505, 0.2, 1.5, 1.3, 5.4, 4.1, 0.0, 87.5, 51.0, 48.6, 0.4,12.5,0.0 +1,1,a-cure-i1,2020-21,Ipswich - Ipswich Middle School,01440305, 0.0, 2.2, 1.9, 7.0, 3.2, 0.0, 85.7, 51.5, 48.5, 0.0,14.299999999999997,3.5 +1,1,a-cure-i1,2020-21,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.3, 0.0, 6.0, 2.1, 0.0, 91.6, 50.9, 49.1, 0.0,8.400000000000006,0.0 +5.587301587301585,5,a-cure-i1,2020-21,Ipswich - Winthrop,01440015, 0.0, 1.1, 1.1, 10.7, 5.9, 0.0, 81.1, 50.3, 49.7, 0.0,18.900000000000006,6.6 +1,1,a-cure-i1,2020-21,King Philip - King Philip Middle School,06900510, 0.3, 2.5, 1.8, 6.3, 3.7, 0.0, 85.5, 48.0, 52.0, 0.0,14.5,3.6 +1,1,a-cure-i1,2020-21,King Philip - King Philip Regional High,06900505, 0.2, 2.8, 2.4, 3.7, 1.6, 0.0, 89.4, 49.4, 50.5, 0.1,10.599999999999994,2.6 +1,1,a-cure-i1,2020-21,Kingston - Kingston Elementary,01450005, 0.0, 0.9, 0.5, 1.6, 1.2, 0.0, 95.8, 49.4, 50.6, 0.0,4.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Kingston - Kingston Intermediate,01450020, 0.5, 0.3, 0.7, 2.7, 0.5, 0.0, 95.3, 46.7, 53.3, 0.0,4.700000000000003,0.0 +10.629145728643214,5,a-cure-i1,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.3, 0.0, 64.6, 33.6, 1.0, 0.0, 0.5, 48.1, 51.9, 0.0,99.5,66.1 +7.26963906581741,5,a-cure-i1,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.2, 3.3, 18.3, 69.8, 2.5, 0.1, 5.8, 50.4, 49.6, 0.0,94.2,42.800000000000004 +0.860392967942089,1,a-cure-i1,2020-21,Lawrence - Alexander B Bruce,01490015, 0.0, 1.7, 0.9, 93.9, 0.2, 0.0, 3.3, 51.1, 48.7, 0.2,96.7,5.2 +2.327568667344863,2.33,a-cure-i1,2020-21,Lawrence - Arlington Middle School,01490017, 0.2, 0.0, 0.9, 97.1, 0.2, 0.0, 1.7, 46.9, 52.7, 0.3,98.3,14.3 +1,1,a-cure-i1,2020-21,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.7, 97.2, 0.2, 0.0, 2.0, 48.8, 50.5, 0.7,98.0,1.7 +1.8276220145379025,1.83,a-cure-i1,2020-21,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 2.3, 93.8, 0.2, 0.0, 3.7, 47.0, 52.5, 0.5,96.3,11.0 +1,1,a-cure-i1,2020-21,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.9, 0.9, 93.1, 0.7, 0.0, 4.4, 51.3, 48.5, 0.2,95.6,2.4 +1,1,a-cure-i1,2020-21,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.2, 95.8, 0.0, 0.0, 3.0, 48.8, 50.9, 0.2,97.0,0.0 +2.657980456026059,2.66,a-cure-i1,2020-21,Lawrence - Frost Middle School,01490525, 0.0, 3.0, 1.8, 85.2, 2.0, 0.0, 7.9, 48.3, 51.7, 0.0,92.1,15.3 +1,1,a-cure-i1,2020-21,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.9, 1.5, 95.9, 0.2, 0.0, 1.5, 48.5, 51.5, 0.0,98.5,3.4 +2.1344195519348266,2.13,a-cure-i1,2020-21,Lawrence - Guilmette Middle School,01490025, 0.0, 0.6, 1.6, 95.7, 0.2, 0.0, 1.8, 45.3, 54.7, 0.0,98.2,13.1 +4.282157676348547,4.28,a-cure-i1,2020-21,Lawrence - High School Learning Center,01490536, 0.6, 0.0, 0.0, 95.2, 0.6, 0.0, 3.6, 36.5, 62.9, 0.6,96.4,25.799999999999997 +4.18848167539267,4.19,a-cure-i1,2020-21,Lawrence - James F Hennessey,01490020, 0.0, 1.0, 1.4, 93.1, 0.0, 0.0, 4.5, 48.5, 50.9, 0.7,95.5,25.0 +2.1299254526091587,2.13,a-cure-i1,2020-21,Lawrence - John Breen School,01490003, 0.0, 1.3, 3.0, 89.1, 0.4, 0.0, 6.1, 49.6, 50.4, 0.0,93.9,12.5 +0.9124236252545824,1,a-cure-i1,2020-21,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.7, 97.2, 0.4, 0.0, 1.8, 41.8, 58.2, 0.0,98.2,5.6 +4.0983606557377055,4.1,a-cure-i1,2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.6, 95.3, 0.8, 0.0, 2.4, 50.4, 49.6, 0.0,97.6,25.0 +2.4989858012170387,2.5,a-cure-i1,2020-21,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 2.0, 2.0, 93.9, 0.7, 0.0, 1.4, 46.3, 53.7, 0.0,98.6,15.4 +4.4799999999999995,4.48,a-cure-i1,2020-21,Lawrence - Lawrence High School,01490515, 0.1, 1.7, 1.1, 94.3, 0.2, 0.0, 2.5, 47.3, 52.5, 0.3,97.5,27.299999999999997 +1,1,a-cure-i1,2020-21,Lawrence - Oliver Partnership School,01490048, 0.0, 0.4, 0.4, 97.4, 0.0, 0.0, 1.7, 49.4, 50.6, 0.0,98.3,0.0 +1.625130890052356,1.63,a-cure-i1,2020-21,Lawrence - Parthum Middle School,01490027, 0.0, 0.8, 0.5, 93.9, 0.3, 0.0, 4.5, 51.2, 48.4, 0.3,95.5,9.7 +3.168,3.17,a-cure-i1,2020-21,Lawrence - RISE Academy,01490615, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 14.3, 81.0, 4.8,100.0,19.8 +1.752953813104189,1.75,a-cure-i1,2020-21,Lawrence - Robert Frost,01490018, 0.0, 4.1, 2.4, 86.2, 0.4, 0.0, 6.9, 50.5, 49.2, 0.4,93.1,10.2 +1.4933333333333332,1.49,a-cure-i1,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.6, 1.9, 94.3, 0.6, 0.0, 2.5, 38.2, 61.8, 0.0,97.5,9.1 +3.5320088300220753,3.53,a-cure-i1,2020-21,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 2.4, 87.4, 0.8, 0.0, 9.4, 15.0, 85.0, 0.0,90.6,20.0 +0.9265770423991726,1,a-cure-i1,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 2.3, 1.7, 92.5, 0.3, 0.0, 3.3, 47.4, 52.4, 0.1,96.7,5.6 +5.128630705394191,5,a-cure-i1,2020-21,Lawrence - Spark Academy,01490085, 0.0, 1.1, 0.6, 94.1, 0.6, 0.0, 3.6, 43.1, 56.9, 0.0,96.4,30.900000000000002 +5.497942386831276,5,a-cure-i1,2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 96.9, 0.3, 0.0, 2.8, 48.1, 51.6, 0.3,97.2,33.4 +4.409321175278622,4.41,a-cure-i1,2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.3, 1.0, 97.4, 0.0, 0.0, 1.3, 47.0, 52.4, 0.6,98.7,27.2 +2.2926337033299697,2.29,a-cure-i1,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.1, 0.4, 98.6, 0.0, 0.0, 0.9, 56.0, 44.0, 0.0,99.1,14.2 +1,1,a-cure-i1,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.2, 46.5, 45.3, 2.0, 0.0, 6.2, 51.7, 48.3, 0.0,93.8,0.0 +1,1,a-cure-i1,2020-21,Lee - Lee Elementary,01500025, 0.3, 2.3, 0.9, 9.1, 3.7, 0.0, 83.7, 46.0, 54.0, 0.0,16.299999999999997,2.7 +1,1,a-cure-i1,2020-21,Lee - Lee Middle/High School,01500505, 0.3, 3.3, 0.9, 8.1, 3.3, 0.0, 84.1, 52.0, 47.7, 0.3,15.900000000000006,2.7 +1,1,a-cure-i1,2020-21,Leicester - Leicester Elementary,01510005, 0.0, 3.2, 5.9, 13.0, 3.2, 0.0, 74.8, 48.5, 51.5, 0.0,25.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Leicester - Leicester High,01510505, 0.2, 3.9, 4.5, 11.6, 2.5, 0.0, 77.3, 48.9, 50.7, 0.5,22.700000000000003,3.9 +1,1,a-cure-i1,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 3.0, 21.2, 6.1, 0.0, 69.7, 57.6, 42.4, 0.0,30.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Leicester - Leicester Middle,01510015, 0.0, 2.8, 5.4, 13.4, 3.5, 0.0, 74.8, 40.9, 59.1, 0.0,25.200000000000003,3.2 +1,1,a-cure-i1,2020-21,Lenox - Lenox Memorial High,01520505, 0.0, 5.2, 0.4, 10.1, 2.7, 0.0, 81.6, 51.0, 49.0, 0.0,18.400000000000006,2.3 +1,1,a-cure-i1,2020-21,Lenox - Morris,01520015, 0.0, 4.6, 0.3, 8.5, 8.2, 0.3, 78.0, 50.2, 49.8, 0.0,22.0,0.0 +1,1,a-cure-i1,2020-21,Leominster - Bennett,01530003, 0.0, 0.0, 11.8, 49.0, 3.9, 0.0, 35.3, 39.2, 60.8, 0.0,64.7,0.0 +1.529636711281071,1.53,a-cure-i1,2020-21,Leominster - Center For Technical Education Innovation,01530605, 0.0, 3.4, 7.7, 38.4, 2.7, 0.1, 47.7, 36.6, 63.4, 0.0,52.3,5.0 +1,1,a-cure-i1,2020-21,Leominster - Fall Brook,01530007, 0.0, 2.7, 8.6, 33.7, 6.1, 0.0, 48.9, 44.9, 55.1, 0.0,51.1,3.4 +1,1,a-cure-i1,2020-21,Leominster - Frances Drake School,01530010, 0.0, 4.4, 8.4, 47.7, 5.2, 0.0, 34.3, 47.7, 52.3, 0.0,65.7,0.0 +1,1,a-cure-i1,2020-21,Leominster - Johnny Appleseed,01530025, 0.2, 3.7, 11.3, 35.7, 5.0, 0.0, 44.2, 51.2, 48.8, 0.0,55.8,3.6 +7.419689119170983,5,a-cure-i1,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 4.5, 31.8, 2.3, 0.0, 61.4, 45.5, 52.3, 2.3,38.6,17.9 +1.7120622568093387,1.71,a-cure-i1,2020-21,Leominster - Leominster High School,01530505, 0.1, 4.2, 9.0, 34.9, 3.3, 0.0, 48.6, 56.6, 43.2, 0.2,51.4,5.5 +1,1,a-cure-i1,2020-21,Leominster - Lincoln School,01530005, 0.0, 0.0, 12.5, 45.8, 8.3, 0.0, 33.3, 41.7, 58.3, 0.0,66.7,0.0 +1,1,a-cure-i1,2020-21,Leominster - Northwest,01530030, 0.0, 2.7, 6.7, 45.3, 4.7, 0.0, 40.7, 50.1, 49.9, 0.0,59.3,3.1 +1,1,a-cure-i1,2020-21,Leominster - Priest Street,01530040, 0.0, 4.8, 6.0, 46.4, 8.3, 0.0, 34.5, 51.2, 48.8, 0.0,65.5,0.0 +1,1,a-cure-i1,2020-21,Leominster - Samoset School,01530045, 0.2, 3.1, 5.5, 38.4, 3.7, 0.2, 48.8, 50.2, 49.0, 0.8,51.2,0.0 +1,1,a-cure-i1,2020-21,Leominster - Sky View Middle School,01530320, 0.1, 3.6, 9.4, 37.1, 4.8, 0.0, 45.0, 51.2, 48.8, 0.0,55.0,2.3 +13.51456310679612,5,a-cure-i1,2020-21,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 2.6, 7.8, 0.0, 89.7, 43.1, 56.9, 0.0,10.299999999999997,8.7 +8.703770197486534,5,a-cure-i1,2020-21,Lexington - Bowman,01550008, 0.0, 37.0, 3.8, 5.5, 9.4, 0.0, 44.3, 51.5, 48.5, 0.0,55.7,30.3 +2.0253164556962022,2.03,a-cure-i1,2020-21,Lexington - Bridge,01550006, 0.3, 43.0, 6.0, 7.0, 7.0, 0.0, 36.8, 51.3, 48.8, 0.0,63.2,8.0 +1,1,a-cure-i1,2020-21,Lexington - Fiske,01550015, 0.0, 32.3, 2.3, 4.9, 9.0, 0.0, 51.4, 43.2, 56.8, 0.0,48.6,0.0 +3.865771812080537,3.87,a-cure-i1,2020-21,Lexington - Harrington,01550030, 0.0, 40.8, 6.5, 5.2, 7.2, 0.0, 40.4, 52.5, 47.5, 0.0,59.6,14.4 +4.201438848920863,4.2,a-cure-i1,2020-21,Lexington - Jonas Clarke Middle,01550305, 0.2, 42.3, 4.0, 4.1, 4.9, 0.1, 44.4, 47.1, 52.8, 0.1,55.6,14.6 +1,1,a-cure-i1,2020-21,Lexington - Joseph Estabrook,01550010, 0.0, 46.2, 3.4, 6.3, 9.4, 0.0, 34.7, 46.9, 53.1, 0.0,65.3,0.2 +1,1,a-cure-i1,2020-21,Lexington - Lexington Children's Place,01550001, 1.8, 38.6, 3.5, 1.8, 7.0, 0.0, 47.4, 36.8, 63.2, 0.0,52.6,0.0 +2.8725314183123873,2.87,a-cure-i1,2020-21,Lexington - Lexington High,01550505, 0.1, 41.0, 3.8, 4.5, 6.3, 0.0, 44.3, 50.4, 49.5, 0.1,55.7,9.999999999999998 +6.155763239875389,5,a-cure-i1,2020-21,Lexington - Maria Hastings,01550035, 0.0, 48.8, 1.9, 4.8, 8.7, 0.0, 35.8, 46.7, 53.3, 0.0,64.2,24.7 +3.8367346938775517,3.84,a-cure-i1,2020-21,Lexington - Wm Diamond Middle,01550310, 0.0, 43.0, 3.7, 3.6, 8.4, 0.0, 41.2, 50.2, 49.8, 0.0,58.8,14.100000000000001 +4.678172588832487,4.68,a-cure-i1,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.8, 0.8, 15.0, 80.4, 1.5, 0.0, 1.5, 50.4, 49.6, 0.0,98.5,28.799999999999997 +2.204724409448819,2.2,a-cure-i1,2020-21,Lincoln - Hanscom Middle,01570305, 0.0, 1.7, 9.7, 29.7, 8.9, 0.8, 49.2, 50.4, 49.6, 0.0,50.8,7.0 +1,1,a-cure-i1,2020-21,Lincoln - Hanscom Primary,01570006, 0.3, 2.0, 6.1, 24.3, 12.8, 2.0, 52.4, 50.3, 49.7, 0.0,47.6,1.2 +3.0992736077481844,3.1,a-cure-i1,2020-21,Lincoln - Lincoln School,01570025, 0.0, 8.1, 11.2, 9.5, 12.4, 0.0, 58.7, 50.8, 49.2, 0.0,41.3,8.0 +4.491228070175439,4.49,a-cure-i1,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 4.2, 5.4, 5.3, 7.8, 0.1, 77.2, 50.3, 49.7, 0.0,22.799999999999997,6.4 +1,1,a-cure-i1,2020-21,Littleton - Littleton High School,01580505, 0.5, 8.7, 1.1, 3.0, 4.1, 0.0, 82.5, 54.3, 45.5, 0.2,17.5,3.3 +1,1,a-cure-i1,2020-21,Littleton - Littleton Middle School,01580305, 0.3, 12.7, 1.5, 3.8, 1.8, 0.3, 79.6, 48.6, 51.4, 0.0,20.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Littleton - Russell St Elementary,01580015, 0.0, 11.8, 0.5, 2.9, 1.9, 0.0, 82.8, 53.1, 46.9, 0.0,17.200000000000003,0.0 +5.05699481865285,5,a-cure-i1,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, 15.3, 0.6, 2.0, 0.9, 0.6, 80.7, 45.2, 54.8, 0.0,19.299999999999997,6.1 +1,1,a-cure-i1,2020-21,Longmeadow - Blueberry Hill,01590005, 0.0, 18.1, 1.5, 4.1, 6.4, 0.3, 69.7, 47.8, 52.2, 0.0,30.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Longmeadow - Center,01590010, 0.0, 3.7, 2.2, 7.5, 4.5, 0.0, 82.0, 47.4, 52.6, 0.0,18.0,4.2 +1,1,a-cure-i1,2020-21,Longmeadow - Glenbrook Middle,01590017, 0.0, 13.5, 4.2, 6.0, 3.0, 0.3, 73.0, 46.2, 53.8, 0.0,27.0,0.0 +1,1,a-cure-i1,2020-21,Longmeadow - Longmeadow High,01590505, 0.1, 9.8, 2.8, 5.7, 3.0, 0.0, 78.7, 49.9, 50.1, 0.0,21.299999999999997,2.9 +1,1,a-cure-i1,2020-21,Longmeadow - Williams Middle,01590305, 0.0, 9.6, 0.3, 4.8, 5.7, 0.6, 79.1, 49.9, 50.1, 0.0,20.900000000000006,4.5 +1,1,a-cure-i1,2020-21,Longmeadow - Wolf Swamp Road,01590025, 0.0, 7.7, 4.1, 6.9, 5.4, 0.0, 75.8, 47.6, 52.4, 0.0,24.200000000000003,0.0 +1.334836527621195,1.33,a-cure-i1,2020-21,Lowell - Abraham Lincoln,01600020, 0.0, 47.8, 3.7, 33.0, 3.9, 0.2, 11.3, 48.0, 52.0, 0.0,88.7,7.4 +1,1,a-cure-i1,2020-21,Lowell - B.F. Butler Middle School,01600310, 0.0, 31.5, 6.9, 34.5, 5.5, 0.0, 21.6, 50.2, 49.8, 0.0,78.4,3.8 +1.101516919486581,1.1,a-cure-i1,2020-21,Lowell - Bartlett Community Partnership,01600090, 0.0, 39.7, 8.9, 33.5, 3.6, 0.0, 14.3, 51.1, 48.9, 0.0,85.7,5.9 +1,1,a-cure-i1,2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 32.9, 5.7, 32.9, 2.9, 0.0, 25.7, 34.3, 65.7, 0.0,74.3,0.0 +2.2195416164053072,2.22,a-cure-i1,2020-21,Lowell - Charles W Morey,01600030, 0.0, 59.9, 5.6, 12.3, 5.0, 0.0, 17.1, 48.9, 51.1, 0.0,82.9,11.5 +1,1,a-cure-i1,2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 0.2, 35.0, 6.3, 39.2, 3.6, 0.0, 15.6, 47.0, 53.0, 0.0,84.4,0.0 +1,1,a-cure-i1,2020-21,Lowell - Dr An Wang School,01600345, 0.0, 17.5, 9.0, 39.4, 5.2, 0.0, 28.9, 46.6, 53.4, 0.0,71.1,2.7 +1,1,a-cure-i1,2020-21,Lowell - Dr Gertrude Bailey,01600002, 0.0, 42.9, 4.9, 22.1, 5.1, 0.0, 25.0, 47.3, 52.7, 0.0,75.0,0.0 +2.1411764705882352,2.14,a-cure-i1,2020-21,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 18.0, 18.0, 26.0, 6.0, 0.0, 32.0, 20.0, 80.0, 0.0,68.0,9.1 +1,1,a-cure-i1,2020-21,Lowell - Greenhalge,01600015, 0.0, 11.1, 10.8, 48.3, 4.7, 0.0, 25.1, 47.4, 52.6, 0.0,74.9,3.4 +5.152909336941813,5,a-cure-i1,2020-21,Lowell - Henry J Robinson Middle,01600330, 0.0, 12.8, 10.2, 48.9, 2.0, 0.0, 26.1, 50.0, 50.0, 0.0,73.9,23.8 +1.9893048128342248,1.99,a-cure-i1,2020-21,Lowell - James S Daley Middle School,01600315, 0.0, 47.3, 5.1, 17.9, 4.5, 0.0, 25.2, 43.8, 56.2, 0.0,74.8,9.3 +2.018018018018018,2.02,a-cure-i1,2020-21,Lowell - James Sullivan Middle School,01600340, 0.0, 12.9, 5.3, 43.1, 5.3, 0.0, 33.4, 49.0, 51.0, 0.0,66.6,8.399999999999999 +1,1,a-cure-i1,2020-21,Lowell - John J Shaughnessy,01600050, 0.0, 30.8, 5.1, 39.6, 3.5, 0.0, 21.0, 47.6, 52.4, 0.0,79.0,0.0 +2.224021592442645,2.22,a-cure-i1,2020-21,Lowell - Joseph McAvinnue,01600010, 0.0, 16.4, 7.5, 45.8, 4.4, 0.0, 25.9, 47.0, 53.0, 0.0,74.1,10.3 +1.974857142857143,1.97,a-cure-i1,2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 44.8, 5.9, 33.1, 3.7, 0.0, 12.5, 46.5, 53.5, 0.0,87.5,10.8 +1,1,a-cure-i1,2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 4.3, 60.9, 8.7, 0.0, 26.1, 8.7, 91.3, 0.0,73.9,0.0 +1,1,a-cure-i1,2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 2.8, 2.8, 52.8, 2.8, 0.0, 38.9, 44.4, 55.6, 0.0,61.1,0.0 +3.357237715803453,3.36,a-cure-i1,2020-21,Lowell - Lowell High,01600505, 0.0, 29.9, 11.1, 30.6, 3.7, 0.0, 24.7, 48.4, 51.6, 0.0,75.3,15.8 +4.148148148148148,4.15,a-cure-i1,2020-21,Lowell - Moody Elementary,01600027, 0.0, 14.9, 6.1, 44.7, 1.8, 0.0, 32.5, 51.3, 48.7, 0.0,67.5,17.5 +1,1,a-cure-i1,2020-21,Lowell - Pawtucketville Memorial,01600036, 0.0, 25.5, 8.2, 27.4, 4.8, 0.0, 34.1, 49.9, 50.1, 0.0,65.9,4.4 +3.454545454545455,3.45,a-cure-i1,2020-21,Lowell - Peter W Reilly,01600040, 0.0, 9.2, 3.1, 36.2, 4.0, 0.2, 47.2, 51.5, 48.5, 0.0,52.8,11.4 +1.792,1.79,a-cure-i1,2020-21,Lowell - Pyne Arts,01600018, 0.0, 13.6, 7.7, 37.5, 3.6, 0.0, 37.5, 45.2, 54.8, 0.0,62.5,7.0 +3.22,3.22,a-cure-i1,2020-21,Lowell - Rogers STEM Academy,01600005, 0.0, 21.6, 10.6, 44.2, 3.5, 0.0, 20.0, 48.2, 51.8, 0.0,80.0,16.1 +1.898697539797395,1.9,a-cure-i1,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 11.8, 5.8, 47.5, 3.9, 0.0, 30.9, 53.3, 46.7, 0.0,69.1,8.2 +1,1,a-cure-i1,2020-21,Lowell - The Career Academy,01600515, 0.0, 21.3, 4.3, 47.9, 5.3, 0.0, 21.3, 37.2, 62.8, 0.0,78.7,0.0 +2.061855670103093,2.06,a-cure-i1,2020-21,Lowell - Washington,01600055, 0.0, 43.2, 5.4, 22.0, 7.1, 0.0, 22.4, 39.0, 61.0, 0.0,77.6,10.0 +3.622641509433962,3.62,a-cure-i1,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 18.3, 24.7, 48.4, 4.0, 0.0, 4.6, 50.3, 49.6, 0.1,95.4,21.599999999999998 +7.061728395061729,5,a-cure-i1,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 11.4, 3.4, 39.8, 10.2, 0.0, 35.2, 56.8, 43.2, 0.0,64.8,28.6 +1,1,a-cure-i1,2020-21,Ludlow - Chapin Street Elementary School,01610020, 0.0, 1.3, 1.7, 15.7, 3.3, 0.0, 78.0, 52.0, 48.0, 0.0,22.0,0.0 +1,1,a-cure-i1,2020-21,Ludlow - East Street Elementary School,01610010, 0.0, 1.5, 1.5, 13.3, 5.1, 0.3, 78.2, 40.8, 59.2, 0.0,21.799999999999997,0.0 +7.030303030303029,5,a-cure-i1,2020-21,Ludlow - Ludlow Senior High,01610505, 0.0, 0.8, 2.0, 7.1, 3.0, 0.2, 86.8, 50.5, 49.2, 0.2,13.200000000000003,5.800000000000001 +1,1,a-cure-i1,2020-21,Ludlow - Paul R Baird Middle,01610305, 0.2, 0.0, 2.1, 14.5, 4.1, 0.0, 79.2, 50.8, 49.2, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.3, 2.1, 16.5, 2.7, 0.3, 78.0, 48.5, 51.5, 0.0,22.0,3.8 +1,1,a-cure-i1,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 50.0, 50.0, 0.0,0.0,0.0 +1,1,a-cure-i1,2020-21,Lunenburg - Lunenburg High,01620505, 1.1, 1.5, 1.5, 9.1, 1.7, 0.6, 84.6, 47.0, 52.5, 0.4,15.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Lunenburg - Lunenburg Middle School,01620305, 0.0, 1.0, 0.8, 9.6, 4.1, 1.0, 83.4, 49.7, 50.0, 0.3,16.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.5, 2.3, 9.4, 3.9, 0.5, 83.4, 46.8, 53.2, 0.0,16.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 3.2, 3.5, 9.3, 1.5, 0.0, 82.6, 50.0, 50.0, 0.0,17.400000000000006,0.0 +1.9310344827586206,1.93,a-cure-i1,2020-21,Lynn - A Drewicz Elementary,01630016, 0.0, 11.6, 5.3, 74.2, 1.8, 0.0, 7.2, 53.4, 46.6, 0.0,92.8,11.2 +1.7338820301783264,1.73,a-cure-i1,2020-21,Lynn - Aborn,01630011, 0.8, 12.7, 8.1, 41.1, 10.2, 0.0, 27.1, 46.6, 53.4, 0.0,72.9,7.9 +1.8625277161862528,1.86,a-cure-i1,2020-21,Lynn - Breed Middle School,01630405, 0.2, 8.3, 8.7, 69.7, 3.3, 0.0, 9.8, 47.2, 52.7, 0.1,90.2,10.5 +1,1,a-cure-i1,2020-21,Lynn - Brickett Elementary,01630020, 0.6, 10.3, 7.4, 65.0, 4.4, 0.0, 12.4, 45.6, 54.4, 0.0,87.6,0.5 +1,1,a-cure-i1,2020-21,Lynn - Capt William G Shoemaker,01630090, 0.0, 7.9, 12.6, 33.1, 7.3, 0.0, 39.1, 36.0, 64.0, 0.0,60.9,0.0 +2.1193317422434372,2.12,a-cure-i1,2020-21,Lynn - Classical High,01630505, 0.5, 8.7, 7.3, 64.2, 3.1, 0.0, 16.2, 46.1, 53.9, 0.0,83.8,11.100000000000001 +2.6058091286307055,2.61,a-cure-i1,2020-21,Lynn - Cobbet Elementary,01630035, 0.0, 3.1, 6.2, 85.2, 1.8, 0.0, 3.6, 44.1, 55.9, 0.0,96.4,15.700000000000001 +1,1,a-cure-i1,2020-21,Lynn - E J Harrington,01630045, 0.0, 5.8, 9.8, 72.5, 2.4, 0.0, 9.5, 49.7, 50.3, 0.0,90.5,0.3 +1,1,a-cure-i1,2020-21,Lynn - Edward A Sisson,01630095, 1.7, 12.0, 6.1, 45.8, 6.8, 0.0, 27.6, 50.9, 49.1, 0.0,72.4,4.3 +1.6853333333333333,1.69,a-cure-i1,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 1.0, 2.0, 6.0, 60.0, 6.0, 0.0, 25.0, 30.0, 70.0, 0.0,75.0,7.9 +2.7010550996483005,2.7,a-cure-i1,2020-21,Lynn - Hood,01630055, 0.4, 8.4, 7.3, 67.4, 1.8, 0.0, 14.7, 47.5, 52.5, 0.0,85.3,14.4 +1.688699360341151,1.69,a-cure-i1,2020-21,Lynn - Ingalls,01630060, 0.4, 6.5, 9.0, 74.6, 3.2, 0.0, 6.2, 48.8, 51.2, 0.0,93.8,9.899999999999999 +1.520190023752969,1.52,a-cure-i1,2020-21,Lynn - Julia F Callahan,01630030, 0.0, 7.2, 12.2, 59.4, 5.3, 0.0, 15.8, 45.8, 54.2, 0.0,84.2,8.0 +1,1,a-cure-i1,2020-21,Lynn - Lincoln-Thomson,01630070, 0.0, 12.8, 5.7, 57.8, 4.3, 0.0, 19.4, 45.0, 55.0, 0.0,80.6,0.0 +3.0577777777777784,3.06,a-cure-i1,2020-21,Lynn - Lynn English High,01630510, 0.3, 7.9, 9.3, 70.0, 2.4, 0.0, 10.0, 47.3, 52.4, 0.2,90.0,17.200000000000003 +2.030267753201397,2.03,a-cure-i1,2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 0.3, 5.5, 6.4, 70.9, 2.9, 0.0, 14.1, 46.0, 54.0, 0.1,85.9,10.9 +3.286821705426356,3.29,a-cure-i1,2020-21,Lynn - Lynn Woods,01630075, 0.7, 5.2, 3.9, 35.3, 6.5, 0.0, 48.4, 51.6, 48.4, 0.0,51.6,10.6 +1.6326530612244898,1.63,a-cure-i1,2020-21,Lynn - Pickering Middle,01630420, 0.8, 8.3, 7.8, 47.5, 4.2, 0.0, 31.4, 48.5, 51.5, 0.0,68.6,7.0 +1,1,a-cure-i1,2020-21,Lynn - Robert L Ford,01630050, 0.4, 6.4, 7.4, 77.5, 2.9, 0.0, 5.4, 49.5, 50.5, 0.0,94.6,0.3 +1.1224489795918366,1.12,a-cure-i1,2020-21,Lynn - Sewell-Anderson,01630085, 0.4, 7.0, 7.0, 58.6, 5.5, 0.0, 21.6, 50.9, 49.1, 0.0,78.4,5.5 +1.492407809110629,1.49,a-cure-i1,2020-21,Lynn - Thurgood Marshall Mid,01630305, 0.2, 7.1, 10.1, 72.0, 2.8, 0.1, 7.8, 48.0, 51.9, 0.1,92.2,8.6 +1,1,a-cure-i1,2020-21,Lynn - Tracy,01630100, 0.2, 5.0, 6.9, 79.6, 1.4, 0.0, 6.9, 47.2, 52.8, 0.0,93.1,0.0 +1.2012513034410843,1.2,a-cure-i1,2020-21,Lynn - Washington Elementary School,01630005, 0.0, 5.9, 12.8, 75.1, 2.1, 0.0, 4.1, 48.2, 51.8, 0.0,95.9,7.2 +1,1,a-cure-i1,2020-21,Lynn - William R Fallon,01630080, 0.0, 3.2, 22.6, 45.2, 9.7, 0.0, 19.4, 12.9, 87.1, 0.0,80.6,0.0 +1,1,a-cure-i1,2020-21,Lynn - Wm P Connery,01630040, 0.0, 9.5, 5.5, 77.3, 2.2, 0.0, 5.6, 52.0, 48.0, 0.0,94.4,3.1 +1,1,a-cure-i1,2020-21,Lynnfield - Huckleberry Hill,01640010, 0.0, 10.8, 2.7, 6.9, 6.0, 0.0, 73.7, 54.4, 45.6, 0.0,26.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Lynnfield - Lynnfield High,01640505, 0.0, 4.8, 1.5, 5.0, 1.5, 0.0, 87.2, 52.2, 47.7, 0.2,12.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Lynnfield - Lynnfield Middle School,01640405, 0.0, 7.0, 1.7, 6.6, 2.6, 0.0, 82.1, 47.3, 52.7, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, 7.4, 3.7, 7.4, 11.1, 0.0, 70.4, 55.6, 44.4, 0.0,29.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Lynnfield - Summer Street,01640020, 0.0, 5.9, 1.8, 4.3, 3.3, 0.0, 84.7, 47.1, 52.9, 0.0,15.299999999999997,0.0 +4.2211690363349135,4.22,a-cure-i1,2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 57.1, 1.0, 0.0, 5.1, 0.0, 36.7, 54.1, 44.9, 1.0,63.3,16.7 +1,1,a-cure-i1,2020-21,Malden - Beebe,01650003, 0.0, 36.3, 13.9, 14.9, 4.3, 0.0, 30.7, 49.3, 50.7, 0.0,69.3,2.5 +1,1,a-cure-i1,2020-21,Malden - Ferryway,01650013, 0.3, 21.6, 17.8, 33.4, 4.9, 0.2, 21.8, 48.9, 51.0, 0.1,78.2,2.0 +1,1,a-cure-i1,2020-21,Malden - Forestdale,01650027, 0.0, 10.5, 16.8, 23.5, 6.6, 0.2, 42.4, 46.7, 53.3, 0.0,57.6,0.0 +1,1,a-cure-i1,2020-21,Malden - Linden,01650047, 0.2, 24.5, 20.2, 19.5, 4.8, 0.0, 30.7, 47.6, 52.4, 0.0,69.3,4.8 +1,1,a-cure-i1,2020-21,Malden - Malden Early Learning Center,01650049, 0.0, 37.8, 17.1, 6.5, 5.5, 0.0, 33.2, 37.3, 62.7, 0.0,66.8,0.0 +3.2084432717678104,3.21,a-cure-i1,2020-21,Malden - Malden High,01650505, 0.2, 23.9, 20.6, 28.6, 2.5, 0.0, 24.2, 48.1, 51.8, 0.1,75.8,15.200000000000001 +2.68051948051948,2.68,a-cure-i1,2020-21,Malden - Salemwood,01650057, 0.2, 16.4, 20.8, 36.6, 3.0, 0.0, 23.0, 49.3, 50.7, 0.0,77.0,12.899999999999999 +1,1,a-cure-i1,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.5, 3.2, 0.0, 0.0, 96.3, 55.6, 44.4, 0.0,3.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.7, 0.0, 0.9, 0.7, 0.0, 96.7, 47.5, 52.3, 0.2,3.299999999999997,3.8 +67.76470588235283,5,a-cure-i1,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.6, 0.0, 0.6, 0.6, 0.0, 98.3, 47.5, 52.5, 0.0,1.7000000000000028,7.2 +1,1,a-cure-i1,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 1.5, 1.5, 1.5, 0.7, 0.0, 94.9, 48.4, 51.6, 0.0,5.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Mansfield - Everett W Robinson,01670007, 0.2, 7.0, 4.4, 7.0, 5.3, 0.2, 75.9, 49.4, 50.5, 0.2,24.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Mansfield - Harold L Qualters Middle,01670035, 0.1, 6.6, 4.7, 6.5, 2.5, 0.0, 79.6, 46.5, 53.5, 0.0,20.400000000000006,1.5 +1,1,a-cure-i1,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0.1, 9.5, 4.8, 5.6, 5.7, 0.0, 74.2, 46.0, 54.0, 0.0,25.799999999999997,3.1 +1,1,a-cure-i1,2020-21,Mansfield - Mansfield High,01670505, 0.0, 7.1, 4.2, 4.7, 3.8, 0.0, 80.2, 50.2, 49.8, 0.0,19.799999999999997,4.5 +1,1,a-cure-i1,2020-21,Mansfield - Roland Green School,01670003, 1.1, 3.3, 3.3, 11.0, 5.5, 0.0, 75.8, 40.7, 59.3, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 1.0, 0.5, 6.8, 16.0, 5.8, 1.0, 68.9, 40.3, 59.7, 0.0,31.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 0.0, 7.0, 4.2, 0.0, 88.7, 47.9, 52.1, 0.0,11.299999999999997,4.1 +1,1,a-cure-i1,2020-21,Marblehead - Glover,01680020, 0.0, 0.9, 2.6, 5.6, 5.3, 0.0, 85.6, 44.4, 55.6, 0.0,14.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Marblehead - L H Coffin,01680010, 0.0, 1.6, 2.1, 6.8, 4.2, 0.0, 85.3, 49.2, 50.8, 0.0,14.700000000000003,3.2 +8.386206896551723,5,a-cure-i1,2020-21,Marblehead - Marblehead High,01680505, 0.1, 1.7, 3.7, 6.5, 2.4, 0.1, 85.5, 51.2, 48.7, 0.1,14.5,7.6 +1,1,a-cure-i1,2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.5, 2.2, 6.6, 2.4, 0.0, 87.2, 48.5, 51.5, 0.0,12.799999999999997,2.5 +1,1,a-cure-i1,2020-21,Marblehead - Village School,01680016, 0.0, 1.4, 3.0, 7.9, 4.0, 0.0, 83.6, 45.8, 54.1, 0.1,16.400000000000006,0.7 +1,1,a-cure-i1,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 1.9, 5.3, 8.7, 2.9, 0.0, 81.3, 45.2, 54.8, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Marion - Sippican,01690005, 0.0, 1.3, 4.0, 3.5, 5.8, 0.0, 85.4, 47.2, 52.8, 0.0,14.599999999999994,0.0 +1.6151419558359623,1.62,a-cure-i1,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.1, 1.8, 3.7, 55.0, 2.9, 0.0, 36.6, 48.7, 51.3, 0.0,63.4,6.4 +1,1,a-cure-i1,2020-21,Marlborough - Charles Jaworek School,01700030, 0.1, 6.3, 3.1, 44.9, 1.8, 0.0, 43.8, 50.6, 49.4, 0.0,56.2,0.5 +1,1,a-cure-i1,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, 7.6, 7.0, 30.6, 3.8, 0.0, 51.0, 38.9, 61.1, 0.0,49.0,0.0 +1,1,a-cure-i1,2020-21,Marlborough - Francis J Kane,01700008, 0.0, 4.7, 4.1, 43.4, 1.6, 0.0, 46.1, 49.8, 50.2, 0.0,53.9,2.4 +1,1,a-cure-i1,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 0.1, 1.8, 2.9, 48.0, 1.8, 0.0, 45.3, 44.3, 55.7, 0.0,54.7,1.8 +1,1,a-cure-i1,2020-21,Marlborough - Marlborough High,01700505, 0.0, 1.5, 3.8, 56.4, 2.5, 0.0, 35.9, 47.0, 53.0, 0.0,64.1,4.4 +1,1,a-cure-i1,2020-21,Marlborough - Richer,01700025, 0.0, 3.2, 4.2, 63.0, 2.8, 0.0, 26.9, 46.3, 53.7, 0.0,73.1,3.2 +1,1,a-cure-i1,2020-21,Marshfield - Daniel Webster,01710015, 0.6, 2.3, 2.0, 3.2, 1.7, 1.7, 88.4, 48.0, 52.0, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.9, 1.4, 0.0, 97.7, 44.9, 55.1, 0.0,2.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Marshfield - Furnace Brook Middle,01710310, 0.2, 1.2, 0.4, 3.8, 2.1, 0.1, 92.2, 50.4, 49.6, 0.0,7.799999999999997,2.3 +1,1,a-cure-i1,2020-21,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.3, 0.0, 2.4, 1.6, 0.0, 95.8, 46.6, 53.4, 0.0,4.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Marshfield - Marshfield High,01710505, 0.0, 1.1, 0.2, 3.4, 1.3, 0.1, 93.9, 48.5, 51.5, 0.0,6.099999999999994,1.1 +1,1,a-cure-i1,2020-21,Marshfield - Martinson Elementary,01710025, 0.0, 1.9, 1.0, 4.8, 2.4, 0.0, 89.8, 46.7, 53.3, 0.0,10.200000000000003,4.2 +1,1,a-cure-i1,2020-21,Marshfield - South River,01710010, 0.0, 0.4, 0.4, 3.2, 4.2, 0.0, 91.9, 46.1, 53.9, 0.0,8.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 2.2, 1.3, 4.8, 20.8, 4.8, 0.3, 65.9, 47.0, 53.0, 0.0,34.099999999999994,3.2 +2.8704318936877082,2.87,a-cure-i1,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 1.1, 0.6, 0.6, 17.0, 10.8, 0.0, 69.9, 53.4, 46.6, 0.0,30.099999999999994,5.4 +5.045643153526971,5,a-cure-i1,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.3, 1.1, 29.9, 64.9, 0.3, 0.0, 3.6, 48.5, 51.5, 0.0,96.4,30.4 +1,1,a-cure-i1,2020-21,Masconomet - Masconomet Regional High School,07050505, 0.1, 4.4, 0.5, 3.2, 2.2, 0.2, 89.4, 54.9, 45.1, 0.0,10.599999999999994,2.5 +14.577777777777776,5,a-cure-i1,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 2.4, 0.9, 2.8, 2.8, 0.2, 91.0, 50.2, 49.8, 0.0,9.0,8.2 +1,1,a-cure-i1,2020-21,Mashpee - Kenneth Coombs School,01720005, 3.6, 1.5, 5.2, 8.8, 11.8, 0.3, 68.8, 48.5, 51.5, 0.0,31.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Mashpee - Mashpee High,01720505, 6.1, 2.7, 5.4, 3.4, 5.7, 0.2, 76.5, 48.6, 51.4, 0.0,23.5,1.4 +4.155038759689923,4.16,a-cure-i1,2020-21,Mashpee - Mashpee Middle School,01720020, 6.3, 2.7, 4.3, 3.9, 8.6, 0.0, 74.2, 50.4, 49.6, 0.0,25.799999999999997,6.699999999999999 +1,1,a-cure-i1,2020-21,Mashpee - Quashnet School,01720035, 6.6, 1.1, 4.5, 6.8, 11.4, 0.0, 69.5, 48.6, 51.4, 0.0,30.5,0.0 +5.608915906788246,5,a-cure-i1,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.4, 0.5, 48.2, 46.7, 2.6, 0.2, 1.3, 51.7, 48.3, 0.0,98.7,34.599999999999994 +1,1,a-cure-i1,2020-21,Mattapoisett - Center,01730005, 0.0, 0.4, 0.0, 5.5, 6.4, 0.0, 87.7, 46.0, 54.0, 0.0,12.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.2, 0.6, 4.7, 4.7, 0.0, 88.8, 52.4, 47.6, 0.0,11.200000000000003,0.0 +8.502092050209203,5,a-cure-i1,2020-21,Maynard - Fowler School,01740305, 0.2, 0.9, 2.2, 15.6, 5.0, 0.0, 76.1, 48.2, 51.5, 0.2,23.900000000000006,12.7 +13.205240174672484,5,a-cure-i1,2020-21,Maynard - Green Meadow,01740010, 0.2, 2.4, 1.2, 14.1, 4.9, 0.0, 77.1, 46.6, 53.4, 0.0,22.900000000000006,18.9 +6.564102564102564,5,a-cure-i1,2020-21,Maynard - Maynard High,01740505, 0.3, 2.2, 1.3, 11.8, 3.8, 0.0, 80.5, 51.8, 47.9, 0.3,19.5,8.0 +1,1,a-cure-i1,2020-21,Medfield - Dale Street,01750005, 0.0, 4.7, 1.5, 4.7, 3.4, 0.0, 85.7, 46.9, 53.1, 0.0,14.299999999999997,2.8 +1,1,a-cure-i1,2020-21,Medfield - Medfield Senior High,01750505, 0.3, 4.9, 1.2, 2.2, 3.6, 0.0, 87.9, 49.8, 50.2, 0.0,12.099999999999994,3.4 +1,1,a-cure-i1,2020-21,Medfield - Memorial School,01750003, 0.3, 3.6, 1.8, 1.8, 3.9, 0.0, 88.6, 50.9, 49.1, 0.0,11.400000000000006,0.0 +8.065040650406505,5,a-cure-i1,2020-21,Medfield - Ralph Wheelock School,01750007, 0.3, 4.2, 1.6, 2.4, 3.9, 0.0, 87.7, 52.9, 47.1, 0.0,12.299999999999997,6.2 +1,1,a-cure-i1,2020-21,Medfield - Thomas Blake Middle,01750305, 0.5, 3.4, 0.5, 6.6, 4.3, 0.0, 84.6, 46.1, 53.9, 0.0,15.400000000000006,3.5 +1,1,a-cure-i1,2020-21,Medford - Brooks School,01760130, 0.6, 5.2, 5.8, 7.7, 6.2, 0.0, 74.5, 50.5, 49.5, 0.0,25.5,0.0 +1,1,a-cure-i1,2020-21,Medford - Christopher Columbus,01760140, 0.5, 5.6, 12.7, 21.4, 5.0, 0.0, 54.8, 45.5, 54.5, 0.0,45.2,3.5 +1,1,a-cure-i1,2020-21,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 16.7, 16.7, 8.3, 0.0, 58.3, 41.7, 58.3, 0.0,41.7,0.0 +2.206896551724138,2.21,a-cure-i1,2020-21,Medford - John J McGlynn Elementary School,01760068, 1.1, 15.4, 14.5, 16.1, 4.8, 0.2, 47.8, 53.3, 46.7, 0.0,52.2,7.2 +1,1,a-cure-i1,2020-21,Medford - John J. McGlynn Middle School,01760320, 0.2, 8.2, 18.4, 17.3, 4.3, 0.0, 51.6, 48.9, 51.1, 0.0,48.4,4.6 +1,1,a-cure-i1,2020-21,Medford - Madeleine Dugger Andrews,01760315, 0.7, 10.6, 9.7, 9.7, 7.3, 0.0, 62.0, 48.3, 51.7, 0.0,38.0,3.0 +1,1,a-cure-i1,2020-21,Medford - Medford High,01760505, 0.0, 9.8, 13.5, 13.9, 3.8, 0.2, 58.9, 45.9, 54.1, 0.0,41.1,3.8 +1,1,a-cure-i1,2020-21,Medford - Milton Fuller Roberts,01760150, 1.0, 11.2, 6.9, 11.0, 6.2, 0.0, 63.6, 45.1, 54.9, 0.0,36.4,0.0 +1,1,a-cure-i1,2020-21,Medway - Burke/Memorial Elementary School,01770015, 0.5, 1.8, 2.0, 5.6, 1.8, 0.0, 88.3, 49.0, 51.0, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Medway - John D Mc Govern Elementary,01770013, 0.0, 3.7, 1.2, 8.1, 4.7, 0.0, 82.3, 46.9, 53.1, 0.0,17.700000000000003,0.0 +7.750000000000001,5,a-cure-i1,2020-21,Medway - Medway High,01770505, 0.5, 4.3, 1.9, 4.9, 1.3, 0.0, 87.2, 52.3, 47.5, 0.2,12.799999999999997,6.199999999999999 +1,1,a-cure-i1,2020-21,Medway - Medway Middle,01770305, 0.0, 2.5, 1.6, 5.0, 3.2, 0.4, 87.2, 51.5, 48.5, 0.0,12.799999999999997,2.0 +1,1,a-cure-i1,2020-21,Melrose - Early Childhood Center,01780003, 1.3, 6.9, 8.2, 5.0, 8.2, 0.0, 70.4, 42.8, 57.2, 0.0,29.599999999999994,1.2 +1,1,a-cure-i1,2020-21,Melrose - Herbert Clark Hoover,01780017, 0.0, 10.0, 5.3, 8.3, 3.3, 0.0, 73.0, 50.0, 50.0, 0.0,27.0,3.5 +1,1,a-cure-i1,2020-21,Melrose - Horace Mann,01780025, 0.0, 0.0, 1.5, 3.3, 5.5, 0.0, 89.7, 54.2, 45.8, 0.0,10.299999999999997,2.0 +1,1,a-cure-i1,2020-21,Melrose - Lincoln,01780020, 0.0, 14.4, 8.7, 10.6, 8.7, 0.0, 57.7, 51.5, 48.5, 0.0,42.3,0.0 +4.514851485148514,4.51,a-cure-i1,2020-21,Melrose - Melrose High,01780505, 0.0, 4.7, 7.2, 4.2, 4.1, 0.0, 79.8, 51.6, 48.4, 0.0,20.200000000000003,5.7 +4.902127659574467,4.9,a-cure-i1,2020-21,Melrose - Melrose Middle,01780305, 0.0, 6.2, 7.4, 5.1, 4.9, 0.0, 76.5, 49.8, 50.2, 0.0,23.5,7.199999999999999 +1,1,a-cure-i1,2020-21,Melrose - Roosevelt,01780035, 0.0, 4.3, 4.5, 4.8, 6.2, 0.0, 80.3, 50.6, 49.4, 0.0,19.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Melrose - Winthrop,01780050, 0.0, 3.6, 2.0, 3.3, 6.9, 0.0, 84.2, 48.1, 51.7, 0.3,15.799999999999997,1.6 +42.10526315789477,5,a-cure-i1,2020-21,Mendon-Upton - Henry P Clough,07100179, 0.3, 0.0, 0.0, 2.9, 0.6, 0.0, 96.2, 52.0, 48.0, 0.0,3.799999999999997,10.0 +15.632183908045972,5,a-cure-i1,2020-21,Mendon-Upton - Memorial School,07100001, 0.0, 5.4, 1.5, 6.7, 3.7, 0.0, 82.6, 51.6, 48.4, 0.0,17.400000000000006,17.0 +1,1,a-cure-i1,2020-21,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 2.6, 0.1, 5.2, 2.1, 0.0, 89.9, 46.3, 53.7, 0.0,10.099999999999994,2.6 +1,1,a-cure-i1,2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 0.3, 2.2, 1.1, 4.9, 2.5, 0.0, 89.0, 52.6, 47.4, 0.0,11.0,2.5 +1,1,a-cure-i1,2020-21,Methuen - Comprehensive Grammar School,01810050, 0.0, 4.4, 5.1, 39.0, 4.5, 0.0, 47.2, 47.8, 52.2, 0.0,52.8,1.5 +1,1,a-cure-i1,2020-21,Methuen - Donald P Timony Grammar,01810060, 0.2, 3.7, 5.6, 48.7, 3.6, 0.2, 38.1, 45.5, 54.5, 0.0,61.9,0.0 +1,1,a-cure-i1,2020-21,Methuen - Marsh Grammar School,01810030, 0.0, 2.6, 3.2, 35.5, 3.6, 0.1, 55.0, 45.9, 54.1, 0.0,45.0,1.4 +1,1,a-cure-i1,2020-21,Methuen - Methuen High,01810505, 0.1, 4.3, 2.3, 42.2, 4.4, 0.0, 46.8, 48.6, 51.3, 0.1,53.2,3.0 +1,1,a-cure-i1,2020-21,Methuen - Tenney Grammar School,01810055, 0.0, 3.0, 3.9, 58.5, 3.5, 0.0, 31.1, 46.5, 53.5, 0.0,68.9,0.0 +1,1,a-cure-i1,2020-21,Middleborough - Henry B. Burkland Elementary School,01820008, 0.2, 0.8, 2.5, 2.9, 6.9, 0.0, 86.8, 49.0, 51.0, 0.0,13.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Middleborough - John T. Nichols Middle,01820305, 0.7, 0.4, 3.2, 2.8, 5.9, 0.0, 87.0, 48.6, 51.4, 0.0,13.0,0.0 +1,1,a-cure-i1,2020-21,Middleborough - Mary K. Goode Elementary School,01820010, 0.4, 0.9, 2.0, 1.2, 5.3, 0.0, 90.2, 49.6, 50.4, 0.0,9.799999999999997,2.8 +1,1,a-cure-i1,2020-21,Middleborough - Memorial Early Childhood Center,01820011, 0.8, 2.4, 2.0, 3.2, 3.6, 0.0, 88.0, 49.8, 50.2, 0.0,12.0,0.0 +1,1,a-cure-i1,2020-21,Middleborough - Middleborough High,01820505, 1.0, 1.7, 2.9, 4.1, 3.1, 0.0, 87.3, 48.9, 51.1, 0.0,12.700000000000003,1.7 +1,1,a-cure-i1,2020-21,Middleton - Fuller Meadow,01840003, 1.4, 4.5, 1.0, 5.9, 4.5, 0.0, 82.5, 49.0, 51.0, 0.0,17.5,0.0 +1,1,a-cure-i1,2020-21,Middleton - Howe-Manning,01840005, 0.0, 4.3, 1.5, 5.6, 3.1, 0.3, 85.2, 52.6, 47.4, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Milford - Brookside,01850065, 0.7, 1.6, 3.4, 30.2, 2.0, 0.0, 62.2, 47.0, 53.0, 0.0,37.8,3.4 +1,1,a-cure-i1,2020-21,Milford - Memorial,01850010, 0.9, 0.7, 2.1, 35.9, 2.1, 0.0, 58.4, 49.0, 51.0, 0.0,41.6,3.3 +1,1,a-cure-i1,2020-21,Milford - Milford High,01850505, 1.4, 1.8, 3.7, 30.4, 3.2, 0.0, 59.5, 46.1, 53.8, 0.2,40.5,4.0 +1,1,a-cure-i1,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, 1.1, 1.1, 26.1, 1.1, 0.0, 70.7, 31.5, 68.5, 0.0,29.299999999999997,0.0 +1.971014492753623,1.97,a-cure-i1,2020-21,Milford - Stacy Middle,01850305, 2.6, 1.6, 2.8, 29.7, 4.6, 0.1, 58.6, 47.4, 52.6, 0.0,41.4,5.1 +1,1,a-cure-i1,2020-21,Milford - Woodland,01850090, 0.7, 1.0, 3.5, 31.9, 3.5, 0.1, 59.3, 48.6, 51.4, 0.0,40.7,3.2 +1,1,a-cure-i1,2020-21,Millbury - Elmwood Street,01860017, 0.0, 3.7, 3.5, 7.1, 6.1, 0.0, 79.6, 46.0, 54.0, 0.0,20.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Millbury - Millbury Junior/Senior High,01860505, 0.0, 3.4, 3.8, 10.2, 5.2, 0.0, 77.4, 49.8, 49.8, 0.4,22.599999999999994,2.0 +1,1,a-cure-i1,2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 3.5, 3.8, 5.5, 6.1, 0.3, 80.9, 45.2, 54.8, 0.0,19.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Millis - Clyde F Brown,01870005, 0.7, 2.0, 1.1, 8.4, 3.8, 0.2, 83.8, 49.6, 50.4, 0.0,16.200000000000003,2.5 +1,1,a-cure-i1,2020-21,Millis - Millis High School,01870505, 0.0, 3.9, 1.5, 8.7, 3.0, 0.3, 82.5, 46.7, 53.3, 0.0,17.5,3.5 +1,1,a-cure-i1,2020-21,Millis - Millis Middle,01870020, 0.0, 1.1, 0.7, 8.0, 5.4, 0.0, 84.8, 51.1, 48.6, 0.4,15.200000000000003,3.9 +5.572413793103448,5,a-cure-i1,2020-21,Milton - Charles S Pierce Middle,01890410, 0.2, 6.4, 13.2, 4.9, 4.3, 0.1, 71.0, 50.3, 49.7, 0.0,29.0,10.1 +9.40740740740741,5,a-cure-i1,2020-21,Milton - Collicot,01890005, 0.0, 10.5, 2.8, 3.4, 4.9, 0.0, 78.4, 48.7, 51.3, 0.0,21.599999999999994,12.700000000000001 +4.589641434262949,4.59,a-cure-i1,2020-21,Milton - Cunningham School,01890007, 0.0, 11.2, 5.3, 4.3, 4.4, 0.0, 74.9, 52.4, 47.6, 0.0,25.099999999999994,7.199999999999999 +6.50467289719626,5,a-cure-i1,2020-21,Milton - Glover,01890010, 0.5, 4.6, 5.5, 3.8, 7.0, 0.0, 78.6, 52.8, 47.2, 0.0,21.400000000000006,8.7 +4.363636363636363,4.36,a-cure-i1,2020-21,Milton - Milton High,01890505, 0.1, 6.2, 17.3, 5.7, 3.5, 0.2, 67.0, 49.6, 50.3, 0.1,33.0,9.0 +3.951807228915662,3.95,a-cure-i1,2020-21,Milton - Tucker,01890020, 0.0, 7.8, 37.9, 8.1, 12.6, 0.0, 33.6, 52.0, 48.0, 0.0,66.4,16.4 +4.893203883495147,4.89,a-cure-i1,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.3, 3.8, 3.8, 7.7, 5.0, 0.0, 79.4, 37.8, 61.6, 0.6,20.599999999999994,6.3 +1,1,a-cure-i1,2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.4, 6.9, 4.1, 0.0, 88.6, 48.2, 51.8, 0.0,11.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 1.3, 2.5, 0.0, 0.0, 96.3, 47.5, 52.5, 0.0,3.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.4, 0.0, 4.2, 2.8, 0.0, 92.6, 51.4, 48.6, 0.0,7.400000000000006,3.8 +1,1,a-cure-i1,2020-21,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 3.1, 1.5, 0.0, 95.4, 50.8, 49.2, 0.0,4.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.6, 7.6, 13.9, 5.1, 0.6, 72.2, 48.1, 51.9, 0.0,27.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Monomoy Regional School District - Harwich Elementary School,07120002, 0.6, 1.5, 4.0, 8.2, 9.6, 0.0, 76.1, 46.3, 53.7, 0.0,23.900000000000006,3.0 +5.174129353233832,5,a-cure-i1,2020-21,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.4, 1.2, 6.6, 8.4, 3.1, 0.3, 79.9, 49.5, 50.5, 0.0,20.099999999999994,6.5 +1,1,a-cure-i1,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.9, 1.8, 5.8, 8.0, 6.7, 0.2, 76.7, 51.0, 49.0, 0.0,23.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Monson - Granite Valley School,01910030, 0.0, 0.5, 1.2, 6.3, 3.4, 0.2, 88.4, 52.3, 47.5, 0.2,11.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Monson - Monson High School,01910505, 0.0, 1.7, 1.4, 4.0, 2.0, 0.3, 90.5, 50.3, 49.4, 0.3,9.5,4.1 +1,1,a-cure-i1,2020-21,Monson - Quarry Hill Community School,01910010, 1.0, 3.1, 1.0, 3.1, 1.0, 0.0, 90.7, 53.6, 46.4, 0.0,9.299999999999997,0.0 +3.746031746031746,3.75,a-cure-i1,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.8, 2.0, 17.2, 4.1, 0.0, 74.8, 50.4, 48.8, 0.8,25.200000000000003,5.9 +1,1,a-cure-i1,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 1.6, 2.1, 4.8, 3.2, 0.0, 88.4, 57.7, 42.3, 0.0,11.599999999999994,0.0 +7.433070866141731,5,a-cure-i1,2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 2.5, 2.7, 4.2, 3.4, 0.0, 87.3, 52.5, 47.5, 0.0,12.700000000000003,5.9 +1,1,a-cure-i1,2020-21,Mount Greylock - Williamstown Elementary,07150010, 0.0, 1.1, 2.1, 5.9, 7.4, 0.0, 83.5, 45.5, 54.5, 0.0,16.5,3.3 +1.5384615384615383,1.54,a-cure-i1,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.2, 24.7, 17.7, 9.8, 4.7, 0.0, 42.8, 51.6, 48.4, 0.0,57.2,5.5 +1,1,a-cure-i1,2020-21,Nahant - Johnson,01960010, 0.0, 0.7, 0.0, 6.1, 6.8, 0.0, 86.4, 48.3, 51.7, 0.0,13.599999999999994,0.0 +1.9421965317919074,1.94,a-cure-i1,2020-21,Nantucket - Cyrus Peirce,01970010, 0.0, 1.2, 10.8, 35.8, 4.0, 0.0, 48.1, 50.2, 49.8, 0.0,51.9,6.3 +1.4910394265232976,1.49,a-cure-i1,2020-21,Nantucket - Nantucket Elementary,01970005, 0.0, 2.0, 6.3, 42.7, 4.8, 0.0, 44.2, 49.2, 50.8, 0.0,55.8,5.2 +3.2468619246861925,3.25,a-cure-i1,2020-21,Nantucket - Nantucket High,01970505, 0.4, 1.5, 12.3, 29.2, 4.4, 0.0, 52.2, 46.9, 53.1, 0.0,47.8,9.7 +1.702127659574468,1.7,a-cure-i1,2020-21,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.9, 6.3, 39.8, 4.7, 0.0, 48.3, 46.4, 53.6, 0.0,51.7,5.5 +1,1,a-cure-i1,2020-21,Narragansett - Narragansett Middle,07200305, 0.3, 0.6, 0.9, 6.5, 5.0, 0.0, 86.7, 47.2, 52.8, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.5, 8.6, 3.1, 0.2, 87.6, 47.5, 52.5, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Narragansett - Templeton Elementary School,07200020, 0.0, 0.4, 0.7, 7.4, 2.6, 0.0, 88.9, 48.3, 51.7, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Nashoba - Center School,07250020, 0.0, 4.9, 1.1, 6.6, 4.0, 0.0, 83.5, 50.0, 50.0, 0.0,16.5,4.1 +1,1,a-cure-i1,2020-21,Nashoba - Florence Sawyer School,07250025, 0.1, 3.5, 0.4, 4.5, 3.5, 0.1, 87.9, 50.3, 49.7, 0.0,12.099999999999994,0.0 +4.444444444444445,4.44,a-cure-i1,2020-21,Nashoba - Hale,07250310, 0.3, 6.3, 2.3, 5.0, 4.0, 0.0, 82.0, 46.7, 53.3, 0.0,18.0,5.0 +1,1,a-cure-i1,2020-21,Nashoba - Luther Burbank Middle School,07250305, 0.0, 1.3, 3.3, 12.6, 1.7, 0.0, 81.2, 51.5, 48.5, 0.0,18.799999999999997,2.6 +1,1,a-cure-i1,2020-21,Nashoba - Mary Rowlandson Elementary,07250010, 0.2, 1.6, 1.6, 12.3, 3.4, 0.0, 80.8, 45.9, 54.1, 0.0,19.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Nashoba - Nashoba Regional,07250505, 0.0, 4.0, 1.4, 3.8, 1.8, 0.2, 88.7, 49.2, 50.5, 0.2,11.299999999999997,1.6 +5.402597402597401,5,a-cure-i1,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.3, 1.9, 2.3, 7.6, 3.2, 0.1, 84.6, 39.0, 60.2, 0.8,15.400000000000006,5.2 +4.955223880597016,4.96,a-cure-i1,2020-21,Natick - Bennett-Hemenway,01980005, 0.0, 14.0, 2.4, 5.9, 4.5, 0.0, 73.2, 46.7, 53.3, 0.0,26.799999999999997,8.3 +1,1,a-cure-i1,2020-21,Natick - Brown,01980010, 0.2, 27.5, 1.3, 10.5, 4.9, 0.0, 55.5, 48.2, 51.8, 0.0,44.5,0.0 +3.264,3.26,a-cure-i1,2020-21,Natick - J F Kennedy Middle School,01980305, 0.0, 11.8, 1.0, 6.7, 5.5, 0.0, 75.0, 44.5, 55.5, 0.0,25.0,5.1 +1,1,a-cure-i1,2020-21,Natick - Johnson,01980031, 0.0, 4.8, 1.9, 9.1, 5.7, 0.0, 78.5, 47.8, 52.2, 0.0,21.5,0.0 +2.6752411575562705,2.68,a-cure-i1,2020-21,Natick - Lilja Elementary,01980035, 0.0, 13.4, 3.8, 8.6, 5.4, 0.0, 68.9, 49.9, 50.1, 0.0,31.099999999999994,5.2 +1,1,a-cure-i1,2020-21,Natick - Memorial,01980043, 0.0, 5.7, 1.7, 4.4, 5.9, 0.0, 82.3, 46.7, 53.1, 0.2,17.700000000000003,0.0 +5.785714285714286,5,a-cure-i1,2020-21,Natick - Natick High,01980505, 0.1, 7.3, 3.1, 6.3, 5.6, 0.1, 77.6, 49.3, 50.6, 0.2,22.400000000000006,8.100000000000001 +1,1,a-cure-i1,2020-21,Natick - Wilson Middle,01980310, 0.2, 7.5, 4.7, 5.5, 6.3, 0.1, 75.6, 49.7, 50.3, 0.0,24.400000000000006,0.3 +1,1,a-cure-i1,2020-21,Nauset - Nauset Regional High,06600505, 0.0, 2.7, 5.7, 4.8, 2.7, 0.1, 84.0, 55.2, 44.6, 0.2,16.0,4.0 +1,1,a-cure-i1,2020-21,Nauset - Nauset Regional Middle,06600305, 0.2, 1.6, 4.0, 6.3, 2.8, 0.0, 85.1, 49.9, 49.9, 0.2,14.900000000000006,1.9 +3.2218430034129697,3.22,a-cure-i1,2020-21,Needham - Broadmeadow,01990005, 0.0, 11.8, 2.9, 7.4, 7.2, 0.0, 70.7, 49.5, 50.5, 0.0,29.299999999999997,5.9 +1,1,a-cure-i1,2020-21,Needham - High Rock School,01990410, 0.0, 10.2, 5.6, 5.1, 4.6, 0.3, 74.4, 49.7, 50.3, 0.0,25.599999999999994,2.9 +1,1,a-cure-i1,2020-21,Needham - John Eliot,01990020, 0.0, 20.2, 5.9, 9.3, 7.1, 0.0, 57.6, 48.5, 51.5, 0.0,42.4,0.0 +7.547169811320754,5,a-cure-i1,2020-21,Needham - Needham High,01990505, 0.1, 8.6, 1.9, 5.5, 4.9, 0.1, 78.8, 50.9, 48.7, 0.4,21.200000000000003,10.0 +1,1,a-cure-i1,2020-21,Needham - Newman Elementary,01990050, 0.0, 9.6, 3.6, 4.6, 6.5, 0.0, 75.7, 49.6, 50.4, 0.0,24.299999999999997,3.5 +4.072727272727273,4.07,a-cure-i1,2020-21,Needham - Pollard Middle,01990405, 0.0, 7.0, 2.2, 8.2, 4.6, 0.0, 78.0, 51.2, 48.8, 0.0,22.0,5.6000000000000005 +1,1,a-cure-i1,2020-21,Needham - Sunita L. Williams Elementary,01990035, 0.2, 12.3, 3.9, 5.5, 6.6, 0.0, 71.5, 44.5, 55.5, 0.0,28.5,0.6 +9.094017094017092,5,a-cure-i1,2020-21,Needham - William Mitchell,01990040, 0.0, 10.7, 4.4, 3.3, 5.0, 0.0, 76.6, 48.9, 51.1, 0.0,23.400000000000006,13.299999999999999 +9.305747126436781,5,a-cure-i1,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.7, 2.5, 53.1, 25.6, 5.2, 0.0, 13.0, 48.5, 51.4, 0.1,87.0,50.6 +1.5018050541516246,1.5,a-cure-i1,2020-21,New Bedford - Abraham Lincoln,02010095, 0.1, 1.3, 11.4, 37.3, 5.2, 0.1, 44.6, 48.4, 51.6, 0.0,55.4,5.2 +3.298578199052132,3.3,a-cure-i1,2020-21,New Bedford - Alfred J Gomes,02010063, 0.8, 0.6, 13.0, 67.9, 2.2, 0.0, 15.6, 50.9, 49.1, 0.0,84.4,17.4 +1,1,a-cure-i1,2020-21,New Bedford - Betsey B Winslow,02010140, 0.5, 2.0, 8.3, 20.0, 6.3, 1.0, 62.0, 51.2, 48.8, 0.0,38.0,3.2 +1,1,a-cure-i1,2020-21,New Bedford - Carlos Pacheco,02010105, 0.5, 0.8, 17.9, 48.2, 3.9, 0.0, 28.7, 48.4, 51.6, 0.0,71.3,0.0 +3.848797250859107,3.85,a-cure-i1,2020-21,New Bedford - Casimir Pulaski,02010123, 0.5, 1.0, 6.3, 16.6, 4.7, 0.0, 70.9, 44.4, 55.6, 0.0,29.099999999999994,7.0 +3.409200968523003,3.41,a-cure-i1,2020-21,New Bedford - Charles S Ashley,02010010, 0.0, 1.0, 7.5, 27.9, 5.0, 0.0, 58.7, 51.2, 48.8, 0.0,41.3,8.8 +3.5194585448392552,3.52,a-cure-i1,2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 0.8, 0.8, 7.7, 41.3, 8.5, 0.0, 40.9, 47.8, 52.2, 0.0,59.1,13.0 +3.11864406779661,3.12,a-cure-i1,2020-21,New Bedford - Ellen R Hathaway,02010075, 0.0, 1.8, 16.9, 48.2, 3.5, 0.4, 29.2, 48.9, 51.1, 0.0,70.8,13.799999999999999 +1.5473887814313345,1.55,a-cure-i1,2020-21,New Bedford - Elwyn G Campbell,02010020, 0.4, 1.1, 12.1, 33.2, 4.9, 0.0, 48.3, 42.3, 57.7, 0.0,51.7,5.0 +1.8500635324015247,1.85,a-cure-i1,2020-21,New Bedford - Hayden/McFadden,02010078, 0.5, 0.2, 13.8, 61.0, 3.1, 0.2, 21.3, 48.9, 51.1, 0.0,78.7,9.1 +1,1,a-cure-i1,2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 10.0, 61.2, 1.5, 0.0, 27.4, 49.1, 50.9, 0.0,72.6,3.9 +1.5224913494809689,1.52,a-cure-i1,2020-21,New Bedford - James B Congdon,02010040, 0.7, 0.7, 14.1, 36.3, 6.2, 0.0, 42.2, 50.3, 49.7, 0.0,57.8,5.5 +1,1,a-cure-i1,2020-21,New Bedford - Jireh Swift,02010130, 0.0, 1.3, 9.6, 21.7, 7.0, 0.0, 60.5, 53.5, 46.5, 0.0,39.5,0.0 +4.290909090909092,4.29,a-cure-i1,2020-21,New Bedford - John Avery Parker,02010115, 0.5, 0.9, 18.9, 38.2, 7.5, 0.0, 34.0, 50.5, 49.5, 0.0,66.0,17.700000000000003 +1,1,a-cure-i1,2020-21,New Bedford - John B Devalles,02010050, 0.0, 0.0, 16.6, 51.3, 3.5, 0.0, 28.6, 48.4, 51.6, 0.0,71.4,4.7 +2.819165378670788,2.82,a-cure-i1,2020-21,New Bedford - Keith Middle School,02010405, 0.2, 0.9, 16.0, 39.6, 8.1, 0.0, 35.3, 45.6, 54.4, 0.0,64.7,11.399999999999999 +3.234042553191489,3.23,a-cure-i1,2020-21,New Bedford - New Bedford High,02010505, 0.5, 1.0, 15.3, 44.1, 4.8, 0.2, 34.2, 47.2, 52.8, 0.0,65.8,13.299999999999999 +2.499047619047619,2.5,a-cure-i1,2020-21,New Bedford - Normandin Middle School,02010410, 0.6, 0.7, 9.2, 37.2, 4.8, 0.0, 47.5, 48.9, 51.1, 0.0,52.5,8.2 +2.353522867737948,2.35,a-cure-i1,2020-21,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 18.0, 59.0, 3.9, 0.0, 19.1, 55.6, 44.4, 0.0,80.9,11.9 +2.1333333333333333,2.13,a-cure-i1,2020-21,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.3, 14.9, 45.4, 5.1, 0.3, 34.0, 48.9, 51.1, 0.0,66.0,8.8 +1.6481774960380349,1.65,a-cure-i1,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 1.2, 17.4, 35.6, 8.9, 0.0, 36.9, 42.5, 57.5, 0.0,63.1,6.5 +1,1,a-cure-i1,2020-21,New Bedford - Thomas R Rodman,02010125, 0.0, 2.5, 9.4, 35.0, 6.3, 0.0, 46.9, 44.4, 55.6, 0.0,53.1,0.0 +4.032733224222586,4.03,a-cure-i1,2020-21,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 16.8, 34.7, 9.5, 0.0, 38.9, 36.8, 63.2, 0.0,61.1,15.4 +1.9151515151515153,1.92,a-cure-i1,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.9, 0.0, 22.6, 34.0, 8.5, 0.0, 34.0, 34.0, 66.0, 0.0,66.0,7.9 +3.739130434782609,3.74,a-cure-i1,2020-21,New Bedford - William H Taylor,02010135, 0.0, 1.2, 9.3, 16.6, 9.7, 0.0, 63.2, 49.0, 51.0, 0.0,36.8,8.6 +8.105369807497468,5,a-cure-i1,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.4, 1.2, 87.2, 7.3, 2.6, 0.0, 1.3, 50.3, 49.7, 0.0,98.7,50.0 +86.06451612903223,5,a-cure-i1,2020-21,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 3.9, 8.5, 0.0, 87.6, 53.5, 46.5, 0.0,12.400000000000006,66.7 +1,1,a-cure-i1,2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.0, 0.7, 5.6, 1.7, 0.0, 91.0, 48.6, 51.4, 0.0,9.0,1.6 +1,1,a-cure-i1,2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.7, 1.1, 5.4, 2.8, 0.0, 89.1, 51.1, 48.9, 0.0,10.900000000000006,0.7 +1,1,a-cure-i1,2020-21,Newburyport - Newburyport High,02040505, 0.0, 2.1, 0.5, 3.4, 2.2, 0.0, 91.8, 50.7, 49.2, 0.1,8.200000000000003,0.0 +14.107526881720437,5,a-cure-i1,2020-21,Newburyport - Rupert A Nock Middle,02040305, 0.0, 2.2, 1.6, 3.0, 2.4, 0.0, 90.7, 49.1, 50.9, 0.0,9.299999999999997,8.200000000000001 +4.392156862745099,4.39,a-cure-i1,2020-21,Newton - A E Angier,02070005, 0.0, 14.0, 3.0, 4.7, 8.9, 0.0, 69.4, 50.0, 50.0, 0.0,30.599999999999994,8.4 +4.386422976501306,4.39,a-cure-i1,2020-21,Newton - Bigelow Middle,02070305, 0.0, 15.0, 5.9, 10.9, 6.5, 0.0, 61.7, 53.0, 47.0, 0.0,38.3,10.5 +9.96875,5,a-cure-i1,2020-21,Newton - Bowen,02070015, 0.0, 27.2, 5.3, 9.9, 8.8, 0.0, 48.8, 49.4, 50.3, 0.3,51.2,31.900000000000002 +11.041322314049587,5,a-cure-i1,2020-21,Newton - C C Burr,02070020, 0.0, 22.4, 6.2, 10.6, 9.1, 0.0, 51.6, 47.8, 52.2, 0.0,48.4,33.4 +3.9718969555035124,3.97,a-cure-i1,2020-21,Newton - Cabot,02070025, 0.0, 15.3, 6.3, 7.1, 13.5, 0.5, 57.3, 51.2, 48.8, 0.0,42.7,10.6 +3.165311653116531,3.17,a-cure-i1,2020-21,Newton - Charles E Brown Middle,02070310, 0.4, 21.9, 2.9, 6.0, 5.7, 0.0, 63.1, 49.1, 50.9, 0.0,36.9,7.3 +1.955193482688391,1.96,a-cure-i1,2020-21,Newton - Countryside,02070040, 0.0, 28.7, 4.9, 6.2, 9.2, 0.0, 50.9, 50.4, 49.6, 0.0,49.1,6.0 +2.639175257731959,2.64,a-cure-i1,2020-21,Newton - F A Day Middle,02070315, 0.3, 16.9, 4.7, 9.2, 7.4, 0.2, 61.2, 49.9, 50.0, 0.1,38.8,6.4 +1,1,a-cure-i1,2020-21,Newton - Franklin,02070055, 0.0, 14.2, 1.8, 8.7, 7.9, 0.3, 67.0, 57.0, 43.0, 0.0,33.0,0.0 +10.043795620437956,5,a-cure-i1,2020-21,Newton - Horace Mann,02070075, 0.0, 15.4, 4.8, 8.2, 12.7, 0.0, 58.9, 45.9, 54.1, 0.0,41.1,25.8 +7.568464730290459,5,a-cure-i1,2020-21,Newton - John Ward,02070120, 0.0, 12.5, 2.3, 3.2, 6.0, 0.0, 75.9, 52.3, 47.7, 0.0,24.099999999999994,11.4 +2.0840336134453783,2.08,a-cure-i1,2020-21,Newton - Lincoln-Eliot,02070070, 0.3, 19.5, 5.7, 12.2, 9.9, 0.0, 52.4, 45.9, 53.8, 0.3,47.6,6.2 +2.706948640483384,2.71,a-cure-i1,2020-21,Newton - Mason-Rice,02070080, 0.0, 19.1, 0.8, 3.8, 9.3, 0.0, 66.9, 48.1, 51.9, 0.0,33.099999999999994,5.6 +3.794871794871795,3.79,a-cure-i1,2020-21,Newton - Memorial Spaulding,02070105, 0.0, 27.7, 5.2, 8.2, 5.7, 0.0, 53.2, 51.5, 48.5, 0.0,46.8,11.1 +1,1,a-cure-i1,2020-21,Newton - Newton Early Childhood Program,02070108, 0.0, 27.2, 2.4, 6.4, 10.4, 0.0, 53.6, 35.2, 64.8, 0.0,46.4,0.0 +7.074550128534704,5,a-cure-i1,2020-21,Newton - Newton North High,02070505, 0.1, 15.3, 5.5, 10.9, 7.0, 0.0, 61.1, 48.4, 51.4, 0.2,38.9,17.2 +7.044776119402984,5,a-cure-i1,2020-21,Newton - Newton South High,02070510, 0.1, 23.1, 4.2, 6.4, 6.4, 0.1, 59.8, 47.6, 52.3, 0.2,40.2,17.7 +6.085642317380353,5,a-cure-i1,2020-21,Newton - Oak Hill Middle,02070320, 0.2, 23.5, 4.8, 5.4, 5.9, 0.0, 60.3, 47.4, 52.4, 0.2,39.7,15.100000000000001 +1,1,a-cure-i1,2020-21,Newton - Peirce,02070100, 0.0, 23.1, 3.4, 8.8, 7.6, 0.0, 57.1, 48.3, 51.7, 0.0,42.9,0.0 +1,1,a-cure-i1,2020-21,Newton - Underwood,02070115, 0.4, 20.4, 3.6, 12.4, 11.6, 0.0, 51.6, 55.6, 44.4, 0.0,48.4,0.0 +2.4732824427480917,2.47,a-cure-i1,2020-21,Newton - Williams,02070125, 0.0, 33.7, 5.3, 8.5, 4.9, 0.0, 47.6, 44.3, 55.7, 0.0,52.4,8.1 +2.168958742632613,2.17,a-cure-i1,2020-21,Newton - Zervas,02070130, 0.5, 22.9, 7.4, 9.7, 9.9, 0.5, 49.1, 48.3, 51.7, 0.0,50.9,6.9 +1,1,a-cure-i1,2020-21,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.5, 0.2, 3.3, 2.1, 0.0, 91.9, 45.0, 55.0, 0.0,8.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Norfolk - H Olive Day,02080015, 0.0, 2.6, 1.3, 3.0, 3.8, 0.0, 89.3, 49.5, 50.5, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.3, 1.2, 1.2, 1.4, 4.6, 0.3, 91.0, 71.8, 28.1, 0.2,9.0,0.0 +1,1,a-cure-i1,2020-21,North Adams - Brayton,02090035, 0.0, 0.9, 3.1, 10.2, 8.0, 0.0, 77.8, 39.6, 60.4, 0.0,22.200000000000003,4.5 +1,1,a-cure-i1,2020-21,North Adams - Colegrove Park Elementary,02090008, 0.8, 0.0, 1.5, 8.1, 9.7, 0.0, 79.9, 43.6, 56.4, 0.0,20.099999999999994,0.0 +1,1,a-cure-i1,2020-21,North Adams - Drury High,02090505, 0.0, 0.6, 3.7, 5.0, 7.5, 0.6, 82.7, 54.4, 45.6, 0.0,17.299999999999997,2.5 +1,1,a-cure-i1,2020-21,North Adams - Greylock,02090015, 0.0, 0.9, 0.0, 8.7, 11.4, 0.0, 79.0, 53.0, 47.0, 0.0,21.0,0.0 +1,1,a-cure-i1,2020-21,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.3, 8.7, 2.9, 16.6, 5.2, 0.0, 66.2, 44.6, 55.4, 0.0,33.8,0.0 +1,1,a-cure-i1,2020-21,North Andover - Annie L Sargent School,02110018, 0.0, 8.7, 1.1, 6.2, 3.9, 0.0, 80.1, 50.3, 49.7, 0.0,19.900000000000006,0.0 +1,1,a-cure-i1,2020-21,North Andover - Atkinson,02110001, 0.0, 7.4, 5.3, 25.1, 3.1, 0.0, 59.1, 47.1, 52.9, 0.0,40.9,0.0 +1,1,a-cure-i1,2020-21,North Andover - Franklin,02110010, 0.0, 12.1, 2.4, 8.9, 3.9, 0.0, 72.6, 47.6, 52.4, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2020-21,North Andover - Kittredge,02110015, 0.0, 2.6, 1.8, 10.1, 3.1, 0.4, 82.0, 45.2, 54.8, 0.0,18.0,0.0 +1,1,a-cure-i1,2020-21,North Andover - North Andover High,02110505, 0.1, 7.2, 3.3, 11.3, 2.0, 0.1, 76.1, 48.1, 51.9, 0.0,23.900000000000006,0.9 +1,1,a-cure-i1,2020-21,North Andover - North Andover Middle,02110305, 0.4, 8.1, 3.4, 13.6, 4.2, 0.0, 70.5, 50.5, 49.5, 0.0,29.5,0.0 +1,1,a-cure-i1,2020-21,North Andover - Thomson,02110020, 0.0, 4.7, 1.3, 16.7, 3.8, 0.0, 73.6, 49.7, 50.3, 0.0,26.400000000000006,0.0 +1,1,a-cure-i1,2020-21,North Attleborough - Amvet Boulevard,02120007, 0.7, 13.1, 4.8, 4.0, 3.8, 0.0, 73.6, 48.5, 51.5, 0.0,26.400000000000006,0.9 +2.4201680672268906,2.42,a-cure-i1,2020-21,North Attleborough - Community,02120030, 0.0, 11.5, 11.1, 7.2, 5.6, 0.3, 64.3, 52.1, 47.9, 0.0,35.7,5.4 +1,1,a-cure-i1,2020-21,North Attleborough - Falls,02120010, 0.0, 5.4, 3.2, 4.3, 4.3, 0.0, 82.7, 44.9, 55.1, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.3, 3.8, 3.6, 5.3, 4.6, 0.0, 82.4, 44.4, 55.6, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2020-21,North Attleborough - North Attleboro High,02120505, 0.1, 7.5, 4.5, 5.1, 3.1, 0.1, 79.6, 48.1, 51.6, 0.3,20.400000000000006,2.6 +1,1,a-cure-i1,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 17.7, 4.3, 7.8, 4.3, 0.0, 66.0, 35.5, 64.5, 0.0,34.0,0.0 +1,1,a-cure-i1,2020-21,North Attleborough - North Attleborough Middle,02120305, 0.1, 6.4, 3.7, 5.7, 4.5, 0.2, 79.3, 53.3, 46.7, 0.0,20.700000000000003,4.2 +10.962962962962967,5,a-cure-i1,2020-21,North Attleborough - Roosevelt Avenue,02120015, 0.5, 1.5, 4.1, 2.1, 2.6, 0.0, 89.2, 54.1, 45.9, 0.0,10.799999999999997,7.4 +8.069565217391304,5,a-cure-i1,2020-21,North Brookfield - North Brookfield Elementary,02150015, 0.0, 1.0, 1.4, 5.9, 3.1, 0.0, 88.5, 48.8, 51.2, 0.0,11.5,5.8 +12.059701492537307,5,a-cure-i1,2020-21,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.5, 7.9, 5.1, 0.0, 86.6, 46.8, 53.2, 0.0,13.400000000000006,10.1 +1,1,a-cure-i1,2020-21,North Middlesex - Ashby Elementary,07350010, 0.0, 0.6, 2.9, 8.1, 2.9, 0.0, 85.5, 43.0, 57.0, 0.0,14.5,0.0 +1,1,a-cure-i1,2020-21,North Middlesex - Hawthorne Brook,07350030, 0.0, 2.7, 1.2, 2.3, 3.1, 0.0, 90.8, 48.0, 52.0, 0.0,9.200000000000003,0.0 +1,1,a-cure-i1,2020-21,North Middlesex - Nissitissit Middle School,07350310, 0.2, 1.0, 2.2, 5.6, 3.8, 0.0, 87.2, 48.3, 51.7, 0.0,12.799999999999997,2.4 +1,1,a-cure-i1,2020-21,North Middlesex - North Middlesex Regional,07350505, 0.1, 1.9, 1.4, 4.5, 3.4, 0.1, 88.5, 50.6, 49.4, 0.0,11.5,1.9 +1,1,a-cure-i1,2020-21,North Middlesex - Spaulding Memorial,07350005, 0.3, 2.3, 1.8, 5.0, 2.3, 0.0, 88.4, 51.6, 48.4, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 2.1, 6.4, 2.1, 0.0, 0.0, 89.4, 29.8, 70.2, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2020-21,North Middlesex - Varnum Brook,07350035, 0.0, 1.8, 3.4, 7.1, 3.0, 0.0, 84.6, 48.1, 51.9, 0.0,15.400000000000006,0.0 +1,1,a-cure-i1,2020-21,North Reading - E Ethel Little School,02170003, 0.0, 3.9, 1.0, 3.2, 4.5, 0.0, 87.3, 47.7, 52.3, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2020-21,North Reading - J Turner Hood,02170010, 0.0, 5.3, 1.2, 5.6, 2.7, 0.3, 84.9, 47.3, 52.7, 0.0,15.099999999999994,0.0 +1,1,a-cure-i1,2020-21,North Reading - L D Batchelder,02170005, 0.0, 4.2, 0.4, 4.6, 3.8, 0.0, 86.9, 42.3, 57.7, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2020-21,North Reading - North Reading High,02170505, 0.3, 4.5, 0.6, 2.7, 3.0, 0.2, 88.7, 52.3, 47.7, 0.0,11.299999999999997,3.6 +1,1,a-cure-i1,2020-21,North Reading - North Reading Middle,02170305, 0.0, 4.4, 0.4, 4.7, 2.6, 0.0, 88.0, 50.3, 49.7, 0.0,12.0,0.0 +1,1,a-cure-i1,2020-21,Northampton - Bridge Street,02100005, 0.0, 3.3, 2.5, 29.2, 7.9, 0.0, 57.1, 47.5, 52.5, 0.0,42.9,0.0 +4.539944903581268,4.54,a-cure-i1,2020-21,Northampton - Jackson Street,02100020, 0.0, 5.8, 4.9, 15.2, 10.4, 0.0, 63.7, 48.8, 50.6, 0.6,36.3,10.3 +1,1,a-cure-i1,2020-21,Northampton - John F Kennedy Middle School,02100410, 0.2, 2.9, 3.9, 16.4, 7.5, 0.0, 69.2, 50.2, 49.1, 0.6,30.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Northampton - Leeds,02100025, 0.3, 1.7, 2.0, 17.4, 8.5, 0.0, 70.0, 43.0, 56.7, 0.3,30.0,0.0 +5.670886075949366,5,a-cure-i1,2020-21,Northampton - Northampton High,02100505, 0.3, 3.3, 2.2, 12.4, 5.5, 0.0, 76.3, 50.6, 49.0, 0.3,23.700000000000003,8.4 +1,1,a-cure-i1,2020-21,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 1.3, 3.8, 14.5, 4.7, 0.0, 75.6, 44.9, 54.3, 0.9,24.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.6, 1.5, 13.1, 1.5, 0.2, 83.1, 42.0, 57.8, 0.2,16.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Northboro-Southboro - Algonquin Regional High,07300505, 0.4, 12.4, 1.5, 6.3, 4.2, 0.4, 74.8, 51.4, 48.6, 0.0,25.200000000000003,0.9 +1,1,a-cure-i1,2020-21,Northborough - Fannie E Proctor,02130015, 0.0, 16.0, 2.9, 12.2, 2.9, 0.0, 66.0, 45.4, 54.6, 0.0,34.0,0.0 +1,1,a-cure-i1,2020-21,Northborough - Lincoln Street,02130003, 1.1, 11.1, 0.4, 2.3, 3.1, 1.1, 80.9, 48.5, 51.5, 0.0,19.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Northborough - Marguerite E Peaslee,02130014, 0.4, 5.8, 1.5, 8.7, 6.2, 10.5, 66.9, 46.2, 53.8, 0.0,33.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Northborough - Marion E Zeh,02130020, 0.4, 20.0, 1.3, 8.9, 2.1, 0.0, 67.2, 46.4, 53.6, 0.0,32.8,0.0 +1,1,a-cure-i1,2020-21,Northborough - Robert E. Melican Middle School,02130305, 0.6, 11.6, 1.4, 10.8, 3.5, 0.8, 71.4, 48.4, 51.6, 0.0,28.599999999999994,4.4 +1,1,a-cure-i1,2020-21,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.8, 9.9, 4.2, 0.0, 85.0, 46.2, 53.8, 0.0,15.0,0.0 +1,1,a-cure-i1,2020-21,Northbridge - Northbridge High,02140505, 0.0, 1.1, 1.3, 7.2, 4.0, 0.2, 86.1, 46.9, 53.1, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Northbridge - Northbridge Middle,02140305, 0.0, 0.9, 0.9, 9.7, 6.1, 0.0, 82.3, 53.0, 47.0, 0.0,17.700000000000003,2.4 +1,1,a-cure-i1,2020-21,Northbridge - W Edward Balmer,02140001, 0.3, 1.0, 0.3, 8.5, 5.4, 0.0, 84.6, 46.3, 53.7, 0.0,15.400000000000006,0.0 +2.447592067988669,2.45,a-cure-i1,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.2, 0.7, 2.5, 30.4, 1.4, 0.2, 64.7, 44.7, 55.1, 0.2,35.3,5.4 +1,1,a-cure-i1,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.6, 0.8, 1.4, 1.8, 0.0, 95.5, 40.9, 59.1, 0.0,4.5,0.0 +1,1,a-cure-i1,2020-21,Norton - Henri A. Yelle,02180060, 0.0, 0.9, 2.0, 4.3, 5.8, 0.3, 86.7, 50.9, 49.1, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Norton - J C Solmonese,02180015, 0.0, 1.1, 1.7, 2.8, 4.6, 0.0, 89.8, 52.7, 47.3, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Norton - L G Nourse Elementary,02180010, 0.4, 2.6, 2.6, 6.7, 3.0, 0.0, 84.8, 48.1, 51.9, 0.0,15.200000000000003,0.0 +8.470588235294114,5,a-cure-i1,2020-21,Norton - Norton High,02180505, 0.1, 2.5, 2.0, 3.8, 1.8, 0.0, 89.8, 49.4, 50.6, 0.0,10.200000000000003,5.3999999999999995 +1,1,a-cure-i1,2020-21,Norton - Norton Middle,02180305, 0.3, 2.3, 2.2, 3.9, 4.4, 0.0, 86.9, 51.1, 48.9, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Norwell - Grace Farrar Cole,02190005, 0.0, 2.1, 0.4, 0.6, 3.4, 0.0, 93.4, 45.7, 54.3, 0.0,6.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Norwell - Norwell High,02190505, 0.0, 2.5, 0.9, 2.6, 2.3, 0.2, 91.5, 52.3, 47.7, 0.0,8.5,0.0 +1,1,a-cure-i1,2020-21,Norwell - Norwell Middle School,02190405, 0.2, 2.0, 0.0, 1.0, 3.6, 0.0, 93.3, 45.1, 54.9, 0.0,6.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Norwell - William G Vinal,02190020, 0.0, 1.6, 0.4, 1.2, 5.0, 0.2, 91.7, 47.5, 52.3, 0.2,8.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Norwood - Balch,02200005, 0.0, 5.1, 12.9, 36.4, 1.0, 1.0, 43.5, 49.0, 51.0, 0.0,56.5,0.0 +1,1,a-cure-i1,2020-21,Norwood - Charles J Prescott,02200025, 0.4, 33.3, 5.0, 12.0, 2.3, 2.3, 44.6, 48.4, 51.6, 0.0,55.4,0.0 +4.795640326975477,4.8,a-cure-i1,2020-21,Norwood - Cornelius M Callahan,02200010, 0.0, 6.8, 14.5, 10.0, 5.0, 0.5, 63.3, 49.3, 50.7, 0.0,36.7,11.0 +1,1,a-cure-i1,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 4.7, 11.0, 17.5, 2.8, 0.1, 63.8, 50.3, 49.7, 0.0,36.2,0.0 +1,1,a-cure-i1,2020-21,Norwood - F A Cleveland,02200015, 0.0, 6.4, 6.1, 11.9, 3.6, 0.6, 71.4, 45.6, 54.4, 0.0,28.599999999999994,4.1 +1,1,a-cure-i1,2020-21,Norwood - George F. Willett,02200075, 0.0, 14.1, 6.9, 12.4, 2.3, 1.7, 62.6, 52.3, 47.7, 0.0,37.4,0.0 +1,1,a-cure-i1,2020-21,Norwood - John P Oldham,02200020, 0.0, 5.7, 13.4, 13.4, 1.6, 0.4, 65.4, 49.6, 50.4, 0.0,34.599999999999994,0.0 +2.5762711864406773,2.58,a-cure-i1,2020-21,Norwood - Norwood High,02200505, 0.0, 5.9, 11.0, 15.6, 2.7, 0.2, 64.6, 51.6, 48.4, 0.0,35.400000000000006,5.699999999999999 +1,1,a-cure-i1,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.0, 1.4, 2.7, 31.2, 6.5, 0.0, 57.2, 47.8, 52.2, 0.0,42.8,2.9 +1,1,a-cure-i1,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.2, 0.9, 0.5, 2.3, 2.7, 0.0, 93.4, 37.5, 62.3, 0.2,6.599999999999994,4.2 +1,1,a-cure-i1,2020-21,Old Rochester - Old Rochester Regional High,07400505, 0.1, 1.4, 2.7, 2.2, 4.2, 0.0, 89.4, 47.9, 52.1, 0.0,10.599999999999994,4.2 +1,1,a-cure-i1,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 1.4, 1.9, 1.2, 6.3, 0.0, 89.1, 44.2, 55.8, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 1.1, 4.6, 12.5, 1.1, 0.0, 80.7, 48.9, 51.1, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Orange - Dexter Park,02230010, 0.0, 0.4, 1.9, 9.8, 4.5, 0.0, 83.3, 47.7, 52.3, 0.0,16.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Orange - Fisher Hill,02230015, 0.5, 1.0, 0.5, 6.0, 6.0, 0.0, 86.1, 48.3, 51.7, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Orleans - Orleans Elementary,02240005, 0.6, 1.1, 3.4, 12.6, 4.0, 0.0, 78.3, 55.4, 44.6, 0.0,21.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Oxford - Alfred M Chaffee,02260010, 0.0, 1.5, 1.0, 12.9, 6.9, 0.0, 77.7, 51.0, 49.0, 0.0,22.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Oxford - Clara Barton,02260005, 0.3, 0.0, 2.5, 10.7, 3.7, 0.0, 82.9, 49.7, 50.3, 0.0,17.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Oxford - Oxford High,02260505, 0.2, 2.2, 1.7, 12.5, 3.9, 0.4, 79.2, 51.5, 48.3, 0.2,20.799999999999997,2.7 +1,1,a-cure-i1,2020-21,Oxford - Oxford Middle,02260405, 0.0, 0.0, 1.7, 11.2, 4.5, 0.0, 82.7, 46.9, 53.1, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Palmer - Old Mill Pond,02270008, 0.0, 2.4, 3.9, 14.8, 3.7, 0.0, 75.2, 50.0, 50.0, 0.0,24.799999999999997,2.6 +5.549549549549548,5,a-cure-i1,2020-21,Palmer - Palmer High,02270505, 0.2, 2.8, 2.7, 10.8, 5.7, 0.0, 77.8, 47.7, 52.2, 0.2,22.200000000000003,7.699999999999999 +1,1,a-cure-i1,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.7, 3.4, 2.8, 0.0, 93.1, 36.9, 62.5, 0.7,6.900000000000006,0.0 +7.078491335372071,5,a-cure-i1,2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.4, 8.4, 89.0, 0.0, 0.4, 1.9, 57.8, 42.2, 0.0,98.1,43.400000000000006 +1,1,a-cure-i1,2020-21,Peabody - Captain Samuel Brown,02290005, 0.0, 1.7, 4.6, 17.6, 1.7, 0.3, 74.0, 47.4, 52.6, 0.0,26.0,0.0 +1,1,a-cure-i1,2020-21,Peabody - Center,02290015, 0.2, 3.2, 7.5, 20.0, 2.2, 0.0, 66.8, 51.4, 48.6, 0.0,33.2,0.0 +1,1,a-cure-i1,2020-21,Peabody - J Henry Higgins Middle,02290305, 0.1, 1.7, 4.4, 17.0, 2.4, 0.1, 74.3, 49.4, 50.6, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Peabody - John E Burke,02290007, 0.0, 1.2, 0.4, 8.4, 1.6, 0.0, 88.4, 52.6, 47.4, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Peabody - John E. McCarthy,02290016, 0.0, 5.0, 5.0, 12.3, 4.0, 0.0, 73.8, 51.8, 48.2, 0.0,26.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Peabody - Peabody Veterans Memorial High,02290510, 0.1, 2.3, 3.6, 20.4, 1.5, 0.0, 72.1, 47.8, 52.1, 0.1,27.900000000000006,2.6 +1,1,a-cure-i1,2020-21,Peabody - South Memorial,02290035, 0.3, 2.3, 2.0, 11.3, 4.3, 0.0, 79.9, 54.3, 45.7, 0.0,20.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Peabody - Thomas Carroll,02290010, 0.2, 1.1, 3.4, 27.0, 1.4, 0.0, 67.0, 50.5, 49.5, 0.0,33.0,0.0 +1,1,a-cure-i1,2020-21,Peabody - West Memorial,02290045, 1.7, 0.9, 0.9, 3.4, 2.1, 0.0, 91.0, 47.0, 53.0, 0.0,9.0,0.0 +1,1,a-cure-i1,2020-21,Peabody - William A Welch Sr,02290027, 0.0, 0.9, 4.4, 37.4, 2.6, 0.0, 54.7, 48.5, 51.5, 0.0,45.3,0.0 +7.337931034482759,5,a-cure-i1,2020-21,Pelham - Pelham Elementary,02300005, 0.0, 4.7, 3.7, 15.0, 5.6, 0.0, 71.0, 39.3, 59.8, 0.9,29.0,13.3 +1,1,a-cure-i1,2020-21,Pembroke - Bryantville Elementary,02310003, 0.2, 0.2, 0.7, 1.8, 4.2, 0.0, 92.9, 45.8, 54.0, 0.2,7.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Pembroke - Hobomock Elementary,02310010, 0.0, 1.3, 0.3, 1.8, 2.8, 0.0, 94.0, 45.8, 54.2, 0.0,6.0,0.0 +1,1,a-cure-i1,2020-21,Pembroke - North Pembroke Elementary,02310015, 0.4, 0.8, 0.8, 2.5, 3.5, 0.0, 92.0, 47.9, 52.1, 0.0,8.0,0.0 +1,1,a-cure-i1,2020-21,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.7, 0.2, 1.4, 1.4, 0.0, 96.3, 47.1, 52.9, 0.0,3.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Pembroke - Pembroke High School,02310505, 0.0, 1.4, 0.6, 1.4, 1.1, 0.0, 95.5, 49.9, 50.0, 0.1,4.5,0.0 +1,1,a-cure-i1,2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.5, 0.5, 10.4, 3.0, 0.0, 85.6, 47.0, 53.0, 0.0,14.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Pentucket - Dr John C Page School,07450015, 0.0, 1.7, 0.7, 2.7, 2.7, 0.0, 92.3, 46.3, 53.7, 0.0,7.700000000000003,1.3 +1,1,a-cure-i1,2020-21,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.2, 8.0, 3.0, 0.0, 88.8, 46.0, 54.0, 0.0,11.200000000000003,1.1 +8.366972477064216,5,a-cure-i1,2020-21,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 7.6, 3.4, 0.0, 89.1, 46.2, 53.8, 0.0,10.900000000000006,5.7 +1,1,a-cure-i1,2020-21,Pentucket - Pentucket Regional Middle,07450405, 0.3, 0.9, 0.3, 6.3, 1.4, 0.0, 90.8, 49.7, 50.3, 0.0,9.200000000000003,0.5 +1,1,a-cure-i1,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 2.5, 0.7, 3.4, 1.5, 0.1, 91.7, 48.0, 52.0, 0.0,8.299999999999997,3.0999999999999996 +1,1,a-cure-i1,2020-21,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 8.1, 3.3, 0.0, 88.6, 51.2, 48.8, 0.0,11.400000000000006,0.0 +1.7075773745997864,1.71,a-cure-i1,2020-21,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, 0.0, 0.0, 93.7, 0.0, 0.0, 6.3, 37.1, 62.3, 0.6,93.7,10.0 +12.738853503184712,5,a-cure-i1,2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.5, 0.5, 12.5, 78.4, 1.9, 0.5, 5.8, 45.7, 54.3, 0.0,94.2,75.0 +10.839790575916231,5,a-cure-i1,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 1.4, 0.0, 11.3, 82.8, 0.0, 0.0, 4.5, 50.2, 49.8, 0.0,95.5,64.7 +3.065420560747663,3.07,a-cure-i1,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.5, 6.4, 24.9, 29.0, 2.4, 0.0, 35.8, 51.9, 48.1, 0.0,64.2,12.299999999999999 +8.200263504611328,5,a-cure-i1,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.5, 12.7, 35.4, 25.1, 2.2, 0.0, 24.1, 52.2, 47.8, 0.0,75.9,38.89999999999999 +1,1,a-cure-i1,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.5, 2.7, 0.5, 96.2, 58.2, 41.8, 0.0,3.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.6, 1.8, 4.7, 1.2, 91.7, 43.2, 56.8, 0.0,8.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 1.4, 1.1, 1.4, 4.3, 0.0, 91.8, 49.3, 50.7, 0.0,8.200000000000003,0.0 +16.093023255813954,5,a-cure-i1,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 19.6, 10.2, 8.9, 12.7, 0.2, 48.4, 50.4, 49.3, 0.4,51.6,51.900000000000006 +8.0,5,a-cure-i1,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 1.0, 8.4, 19.9, 7.2, 0.3, 63.2, 66.5, 33.5, 0.0,36.8,18.4 +2.0100502512562817,2.01,a-cure-i1,2020-21,Pittsfield - Allendale,02360010, 1.1, 1.9, 9.7, 16.0, 11.2, 0.0, 60.2, 51.3, 48.7, 0.0,39.8,5.0 +1,1,a-cure-i1,2020-21,Pittsfield - Crosby,02360065, 1.0, 0.3, 13.0, 28.7, 14.7, 0.0, 42.3, 43.0, 57.0, 0.0,57.7,3.8 +1,1,a-cure-i1,2020-21,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 9.5, 19.0, 14.3, 0.0, 57.1, 28.6, 71.4, 0.0,42.9,0.0 +1,1,a-cure-i1,2020-21,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 21.9, 21.9, 6.3, 0.0, 50.0, 25.0, 75.0, 0.0,50.0,0.0 +2.8186528497409324,2.82,a-cure-i1,2020-21,Pittsfield - Egremont,02360035, 0.0, 1.7, 8.7, 19.6, 8.7, 0.0, 61.4, 49.8, 50.2, 0.0,38.6,6.8 +2.8944723618090453,2.89,a-cure-i1,2020-21,Pittsfield - John T Reid Middle,02360305, 0.6, 1.1, 12.2, 14.7, 11.2, 0.0, 60.2, 47.2, 52.8, 0.0,39.8,7.199999999999999 +1,1,a-cure-i1,2020-21,Pittsfield - Morningside Community School,02360055, 0.3, 0.0, 15.6, 23.1, 16.1, 0.0, 45.0, 50.1, 49.9, 0.0,55.0,0.0 +4.564564564564565,4.56,a-cure-i1,2020-21,Pittsfield - Pittsfield High,02360505, 0.1, 2.1, 10.7, 14.4, 6.0, 0.0, 66.7, 48.5, 51.5, 0.0,33.3,9.5 +1,1,a-cure-i1,2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.6, 3.6, 8.4, 11.4, 0.0, 76.0, 55.7, 44.3, 0.0,24.0,0.0 +1,1,a-cure-i1,2020-21,Pittsfield - Silvio O Conte Community,02360105, 0.6, 0.3, 22.4, 24.5, 15.2, 0.0, 37.0, 51.9, 48.1, 0.0,63.0,3.8 +1,1,a-cure-i1,2020-21,Pittsfield - Stearns,02360090, 0.0, 1.0, 3.8, 10.1, 6.7, 0.0, 78.4, 41.8, 58.2, 0.0,21.599999999999994,0.0 +3.270718232044199,3.27,a-cure-i1,2020-21,Pittsfield - Taconic High,02360510, 0.1, 1.0, 13.7, 12.5, 8.9, 0.0, 63.8, 51.7, 48.2, 0.1,36.2,7.4 +1,1,a-cure-i1,2020-21,Pittsfield - Theodore Herberg Middle,02360310, 0.2, 1.3, 9.6, 15.5, 7.2, 0.2, 66.1, 46.9, 53.1, 0.0,33.900000000000006,4.1 +1,1,a-cure-i1,2020-21,Pittsfield - Williams,02360100, 0.0, 3.9, 7.5, 11.8, 5.9, 0.4, 70.5, 46.5, 53.5, 0.0,29.5,0.0 +1,1,a-cure-i1,2020-21,Plainville - Anna Ware Jackson,02380010, 0.0, 3.9, 5.8, 8.6, 3.3, 0.0, 78.5, 49.2, 50.8, 0.0,21.5,0.0 +1,1,a-cure-i1,2020-21,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 1.9, 4.6, 7.3, 3.8, 0.0, 82.4, 43.7, 56.3, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Plymouth - Cold Spring,02390005, 0.0, 3.2, 2.6, 11.6, 2.6, 0.0, 79.9, 57.7, 42.3, 0.0,20.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Plymouth - Federal Furnace School,02390011, 0.0, 0.9, 6.9, 5.4, 6.3, 0.0, 80.6, 46.9, 53.1, 0.0,19.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Plymouth - Hedge,02390010, 0.5, 1.6, 4.3, 29.9, 8.7, 0.0, 54.9, 46.7, 53.3, 0.0,45.1,0.0 +1,1,a-cure-i1,2020-21,Plymouth - Indian Brook,02390012, 0.0, 0.4, 0.6, 3.5, 4.8, 0.0, 90.7, 49.7, 50.3, 0.0,9.299999999999997,3.0 +1,1,a-cure-i1,2020-21,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 1.2, 3.6, 5.2, 0.0, 90.1, 51.6, 48.4, 0.0,9.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 0.2, 0.4, 1.4, 8.7, 5.1, 0.0, 84.2, 44.8, 55.2, 0.0,15.799999999999997,0.0 +4.731182795698926,4.73,a-cure-i1,2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 1.3, 3.2, 9.4, 4.7, 0.1, 81.4, 50.3, 49.7, 0.0,18.599999999999994,5.5 +1,1,a-cure-i1,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.7, 1.4, 0.7, 11.3, 2.1, 0.0, 83.8, 38.0, 62.0, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Plymouth - Plymouth North High,02390505, 0.2, 1.8, 2.3, 7.0, 4.7, 0.0, 84.0, 47.4, 52.6, 0.0,16.0,1.1 +1,1,a-cure-i1,2020-21,Plymouth - Plymouth South High,02390515, 0.4, 0.8, 0.8, 3.2, 3.8, 0.0, 91.0, 46.2, 53.8, 0.0,9.0,3.0 +1,1,a-cure-i1,2020-21,Plymouth - Plymouth South Middle,02390305, 0.2, 0.3, 2.0, 3.0, 2.7, 0.0, 91.9, 48.4, 51.6, 0.0,8.099999999999994,2.2 +1,1,a-cure-i1,2020-21,Plymouth - South Elementary,02390046, 0.7, 0.8, 1.5, 5.4, 6.1, 0.2, 85.4, 46.0, 54.0, 0.0,14.599999999999994,2.7 +1,1,a-cure-i1,2020-21,Plymouth - West Elementary,02390047, 0.0, 0.9, 3.1, 5.3, 9.4, 0.3, 80.8, 48.4, 51.6, 0.0,19.200000000000003,4.0 +1,1,a-cure-i1,2020-21,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 98.6, 47.4, 52.6, 0.0,1.4000000000000057,0.0 +6.2959641255605385,5,a-cure-i1,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 7.2, 56.9, 20.9, 4.0, 0.2, 10.8, 49.6, 50.4, 0.0,89.2,35.1 +4.446183953033268,4.45,a-cure-i1,2020-21,Provincetown - Provincetown Schools,02420020, 0.0, 0.8, 25.6, 14.3, 10.5, 0.0, 48.9, 53.4, 46.6, 0.0,51.1,14.2 +1,1,a-cure-i1,2020-21,Quabbin - Hardwick Elementary,07530005, 0.5, 0.5, 0.5, 11.7, 2.5, 0.0, 84.3, 41.6, 58.4, 0.0,15.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Quabbin - Hubbardston Center,07530010, 0.0, 1.6, 0.4, 6.2, 1.2, 0.0, 90.5, 46.1, 53.9, 0.0,9.5,0.0 +23.23076923076922,5,a-cure-i1,2020-21,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 4.2, 0.0, 6.3, 0.0, 89.6, 50.0, 50.0, 0.0,10.400000000000006,15.1 +1,1,a-cure-i1,2020-21,Quabbin - Oakham Center,07530025, 0.0, 1.6, 1.6, 7.3, 2.4, 0.0, 87.0, 53.7, 46.3, 0.0,13.0,0.0 +1,1,a-cure-i1,2020-21,Quabbin - Quabbin Regional High School,07530505, 0.2, 1.4, 0.8, 4.1, 2.1, 0.0, 91.5, 51.9, 47.6, 0.5,8.5,2.2 +1,1,a-cure-i1,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0.2, 1.2, 0.4, 7.0, 1.6, 0.2, 89.5, 52.2, 47.8, 0.0,10.5,0.7 +1,1,a-cure-i1,2020-21,Quabbin - Ruggles Lane,07530030, 0.0, 1.2, 1.5, 4.5, 2.7, 0.3, 89.9, 44.5, 55.5, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.3, 0.6, 6.4, 3.9, 0.0, 88.9, 51.2, 48.8, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 1.2, 6.9, 2.3, 0.0, 89.6, 50.3, 49.7, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.3, 0.3, 1.3, 7.2, 5.1, 0.0, 85.8, 46.9, 53.1, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.4, 0.0, 7.9, 5.5, 0.0, 86.2, 49.6, 50.0, 0.4,13.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 38.9, 9.4, 10.7, 7.4, 0.0, 33.6, 36.2, 63.8, 0.0,66.4,0.0 +1,1,a-cure-i1,2020-21,Quincy - Atherton Hough,02430040, 0.7, 16.4, 5.1, 8.0, 3.6, 0.4, 65.7, 43.8, 56.2, 0.0,34.3,1.2 +1.973875181422351,1.97,a-cure-i1,2020-21,Quincy - Atlantic Middle,02430305, 0.0, 55.1, 4.4, 6.8, 2.4, 0.2, 31.1, 46.5, 53.5, 0.0,68.9,8.5 +1,1,a-cure-i1,2020-21,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 57.1, 2.3, 2.0, 1.4, 0.3, 36.9, 48.3, 51.7, 0.0,63.1,0.3 +1,1,a-cure-i1,2020-21,Quincy - Broad Meadows Middle,02430310, 0.0, 17.8, 10.7, 8.3, 2.4, 0.0, 60.9, 49.1, 50.9, 0.0,39.1,1.5 +1,1,a-cure-i1,2020-21,Quincy - Central Middle,02430315, 0.0, 43.2, 2.8, 3.7, 2.9, 0.8, 46.6, 50.6, 49.4, 0.0,53.4,1.5 +1,1,a-cure-i1,2020-21,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 31.0, 3.1, 5.0, 6.2, 0.3, 54.5, 48.9, 51.1, 0.0,45.5,4.8 +1,1,a-cure-i1,2020-21,Quincy - Clifford H Marshall Elementary,02430055, 0.2, 46.3, 14.1, 13.0, 1.3, 0.2, 25.0, 55.8, 44.2, 0.0,75.0,0.0 +4.363636363636364,4.36,a-cure-i1,2020-21,Quincy - Francis W Parker,02430075, 0.0, 68.0, 3.3, 4.9, 2.0, 0.0, 21.9, 47.4, 52.6, 0.0,78.1,21.3 +2.878186968838527,2.88,a-cure-i1,2020-21,Quincy - Lincoln-Hancock Community School,02430035, 0.9, 40.3, 8.8, 14.2, 6.1, 0.4, 29.4, 51.5, 48.5, 0.0,70.6,12.7 +1,1,a-cure-i1,2020-21,Quincy - Merrymount,02430060, 0.3, 25.6, 3.9, 5.7, 5.4, 0.6, 58.6, 50.3, 49.7, 0.0,41.4,0.0 +1,1,a-cure-i1,2020-21,Quincy - Montclair,02430065, 0.0, 66.6, 2.7, 4.8, 4.1, 0.0, 21.7, 50.1, 49.9, 0.0,78.3,4.7 +2.8544600938967135,2.85,a-cure-i1,2020-21,Quincy - North Quincy High,02430510, 0.3, 52.6, 3.8, 3.8, 3.2, 0.2, 36.1, 46.4, 53.5, 0.1,63.9,11.399999999999999 +1,1,a-cure-i1,2020-21,Quincy - Point Webster Middle,02430325, 0.5, 40.0, 12.0, 14.9, 4.8, 1.4, 26.4, 46.5, 53.5, 0.0,73.6,4.8 +2.656126482213439,2.66,a-cure-i1,2020-21,Quincy - Quincy High,02430505, 0.3, 23.0, 10.5, 12.8, 3.7, 0.3, 49.4, 49.6, 50.2, 0.1,50.6,8.4 +1,1,a-cure-i1,2020-21,Quincy - Snug Harbor Community School,02430090, 0.3, 35.5, 9.1, 16.1, 6.3, 0.0, 32.7, 41.8, 58.2, 0.0,67.3,0.0 +1,1,a-cure-i1,2020-21,Quincy - South West Middle School,02430320, 0.3, 27.4, 13.8, 13.8, 5.6, 0.3, 38.9, 38.4, 61.6, 0.0,61.1,0.0 +1,1,a-cure-i1,2020-21,Quincy - Squantum,02430095, 0.3, 33.0, 4.4, 4.4, 3.2, 0.0, 54.6, 47.5, 52.5, 0.0,45.4,0.0 +1,1,a-cure-i1,2020-21,Quincy - Wollaston School,02430110, 0.0, 63.6, 2.7, 1.8, 2.1, 0.3, 29.6, 48.4, 51.6, 0.0,70.4,2.6 +6.5032258064516135,5,a-cure-i1,2020-21,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.2, 1.8, 1.6, 7.9, 3.9, 0.2, 84.5, 48.1, 51.7, 0.2,15.5,6.300000000000001 +1,1,a-cure-i1,2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 0.3, 11.8, 49.5, 12.1, 8.8, 0.0, 17.5, 46.1, 53.9, 0.0,82.5,2.5 +1.2027334851936218,1.2,a-cure-i1,2020-21,Randolph - J F Kennedy Elementary,02440018, 0.3, 13.6, 54.3, 14.7, 4.9, 0.0, 12.2, 46.7, 53.3, 0.0,87.8,6.6 +4.062639821029083,4.06,a-cure-i1,2020-21,Randolph - Margaret L Donovan,02440015, 0.7, 23.2, 47.7, 14.3, 3.5, 0.0, 10.6, 49.3, 50.5, 0.2,89.4,22.7 +1.773672055427252,1.77,a-cure-i1,2020-21,Randolph - Martin E Young Elementary,02440040, 1.2, 13.0, 41.9, 24.1, 6.3, 0.0, 13.4, 47.0, 53.0, 0.0,86.6,9.600000000000001 +6.2576966932725195,5,a-cure-i1,2020-21,Randolph - Randolph Community Middle,02440410, 0.1, 19.4, 46.3, 17.4, 4.2, 0.3, 12.3, 48.8, 51.2, 0.0,87.7,34.3 +4.157205240174673,4.16,a-cure-i1,2020-21,Randolph - Randolph High,02440505, 0.0, 18.7, 53.9, 15.9, 3.1, 0.0, 8.4, 41.7, 58.3, 0.0,91.6,23.8 +1,1,a-cure-i1,2020-21,Reading - Alice M Barrows,02460002, 0.0, 4.5, 1.1, 3.7, 3.1, 0.0, 87.6, 49.2, 50.8, 0.0,12.400000000000006,0.0 +16.45714285714286,5,a-cure-i1,2020-21,Reading - Arthur W Coolidge Middle,02460305, 0.0, 2.5, 1.5, 2.0, 1.0, 0.0, 93.0, 43.4, 56.6, 0.0,7.0,7.2 +1,1,a-cure-i1,2020-21,Reading - Birch Meadow,02460005, 0.0, 4.6, 2.9, 2.9, 2.3, 0.0, 87.2, 45.2, 54.8, 0.0,12.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Reading - J Warren Killam,02460017, 0.0, 6.3, 3.0, 2.3, 1.0, 0.0, 87.3, 45.3, 54.7, 0.0,12.700000000000003,0.0 +3.378486055776893,3.38,a-cure-i1,2020-21,Reading - Joshua Eaton,02460010, 0.3, 10.4, 2.0, 7.1, 5.3, 0.0, 74.9, 50.4, 49.6, 0.0,25.099999999999994,5.3 +1,1,a-cure-i1,2020-21,Reading - Reading Memorial High,02460505, 0.2, 5.5, 2.7, 2.5, 2.0, 0.1, 87.1, 48.9, 50.9, 0.2,12.900000000000006,1.9000000000000001 +1,1,a-cure-i1,2020-21,Reading - RISE PreSchool,02460001, 0.0, 6.2, 4.1, 4.1, 4.1, 0.0, 81.4, 32.0, 68.0, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Reading - Walter S Parker Middle,02460310, 0.0, 4.6, 3.2, 4.2, 2.8, 0.0, 85.1, 52.3, 47.5, 0.2,14.900000000000006,2.7 +1,1,a-cure-i1,2020-21,Reading - Wood End Elementary School,02460020, 0.0, 2.8, 2.4, 3.2, 3.6, 0.0, 88.0, 48.6, 51.4, 0.0,12.0,0.0 +1,1,a-cure-i1,2020-21,Revere - A. C. Whelan Elementary School,02480003, 0.1, 3.8, 2.6, 49.9, 1.9, 0.0, 41.8, 46.8, 53.2, 0.0,58.2,2.2 +1,1,a-cure-i1,2020-21,Revere - Abraham Lincoln,02480025, 0.2, 3.0, 4.3, 51.4, 2.0, 0.0, 39.1, 48.4, 51.6, 0.0,60.9,0.0 +1,1,a-cure-i1,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 2.6, 4.8, 54.8, 1.3, 0.0, 36.5, 42.6, 57.4, 0.0,63.5,0.0 +1,1,a-cure-i1,2020-21,Revere - Garfield Elementary School,02480056, 0.2, 5.0, 2.6, 65.8, 1.8, 0.0, 24.7, 48.7, 51.1, 0.2,75.3,1.9 +3.443631039531479,3.44,a-cure-i1,2020-21,Revere - Garfield Middle School,02480057, 0.2, 4.8, 3.5, 58.3, 1.6, 0.0, 31.7, 48.9, 51.1, 0.0,68.3,14.7 +1,1,a-cure-i1,2020-21,Revere - Paul Revere,02480050, 0.2, 5.8, 3.1, 48.0, 2.2, 0.0, 40.7, 52.0, 48.0, 0.0,59.3,0.0 +3.10413694721826,3.1,a-cure-i1,2020-21,Revere - Revere High,02480505, 0.7, 5.5, 4.0, 58.0, 1.7, 0.1, 29.9, 49.5, 50.5, 0.1,70.1,13.6 +1,1,a-cure-i1,2020-21,Revere - Rumney Marsh Academy,02480014, 0.2, 5.3, 3.3, 55.3, 2.7, 0.2, 33.0, 46.5, 53.5, 0.0,67.0,4.4 +1,1,a-cure-i1,2020-21,Revere - Seacoast School,02480520, 0.0, 0.0, 3.7, 60.5, 6.2, 0.0, 29.6, 38.3, 60.5, 1.2,70.4,0.0 +1,1,a-cure-i1,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.1, 3.9, 3.0, 67.4, 1.3, 0.0, 24.3, 49.0, 51.0, 0.0,75.7,2.5 +1,1,a-cure-i1,2020-21,Revere - Susan B. Anthony Middle School,02480305, 0.0, 2.1, 4.0, 62.6, 1.0, 0.0, 30.3, 57.4, 42.6, 0.0,69.7,2.4 +1,1,a-cure-i1,2020-21,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.3, 7.2, 3.9, 0.0, 87.5, 50.0, 50.0, 0.0,12.5,0.0 +11.428571428571429,5,a-cure-i1,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.1, 1.4, 0.9, 3.8, 6.9, 0.0, 86.0, 49.2, 50.6, 0.2,14.0,10.0 +1,1,a-cure-i1,2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 1.4, 0.3, 5.2, 4.5, 0.0, 88.2, 52.8, 47.2, 0.0,11.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.2, 2.5, 4.4, 0.0, 92.9, 48.3, 51.7, 0.0,7.099999999999994,3.6 +1,1,a-cure-i1,2020-21,Rockland - Jefferson Elementary School,02510060, 0.0, 1.7, 4.3, 19.2, 5.1, 0.0, 69.7, 47.4, 52.6, 0.0,30.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Rockland - John W Rogers Middle,02510305, 0.0, 1.4, 6.8, 16.3, 3.8, 0.0, 71.6, 48.4, 51.6, 0.0,28.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Rockland - Memorial Park,02510020, 0.0, 0.4, 3.5, 19.9, 6.6, 0.0, 69.5, 48.0, 52.0, 0.0,30.5,0.0 +4.136054421768707,4.14,a-cure-i1,2020-21,Rockland - R Stewart Esten,02510025, 0.0, 1.3, 7.9, 14.9, 5.4, 0.0, 70.6, 47.8, 52.2, 0.0,29.400000000000006,7.6 +3.7740863787375423,3.77,a-cure-i1,2020-21,Rockland - Rockland Senior High,02510505, 0.0, 1.3, 6.7, 17.8, 4.3, 0.0, 69.9, 49.2, 50.8, 0.0,30.099999999999994,7.1 +1,1,a-cure-i1,2020-21,Rockport - Rockport Elementary,02520005, 0.0, 1.3, 0.3, 3.0, 2.0, 0.0, 93.4, 47.2, 52.8, 0.0,6.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Rockport - Rockport High,02520510, 0.0, 1.2, 1.6, 4.7, 3.9, 0.0, 88.6, 43.1, 56.9, 0.0,11.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Rockport - Rockport Middle,02520305, 0.0, 3.5, 0.0, 3.5, 4.0, 0.0, 89.1, 53.5, 46.5, 0.0,10.900000000000006,0.0 +10.105263157894736,5,a-cure-i1,2020-21,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 4.8, 14.3, 0.0, 81.0, 49.2, 50.8, 0.0,19.0,12.0 +1,1,a-cure-i1,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.3, 0.6, 56.2, 40.3, 1.3, 0.1, 1.3, 46.9, 53.1, 0.1,98.7,0.0 +1,1,a-cure-i1,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 3.7, 28.0, 45.2, 5.5, 0.0, 17.7, 50.4, 49.6, 0.0,82.3,0.0 +1,1,a-cure-i1,2020-21,Salem - Bates,02580003, 0.0, 1.1, 7.2, 33.7, 4.4, 0.0, 53.6, 50.0, 50.0, 0.0,46.4,0.0 +1.0843989769820972,1.08,a-cure-i1,2020-21,Salem - Bentley Academy Innovation School,02580010, 0.0, 1.9, 11.2, 62.3, 2.8, 0.0, 21.8, 52.6, 47.4, 0.0,78.2,5.3 +1,1,a-cure-i1,2020-21,Salem - Carlton,02580015, 0.0, 1.2, 3.5, 35.5, 5.9, 0.0, 53.9, 48.4, 51.6, 0.0,46.1,0.0 +4.869565217391305,4.87,a-cure-i1,2020-21,Salem - Collins Middle,02580305, 0.0, 3.2, 7.4, 42.5, 4.3, 0.0, 42.5, 46.4, 53.6, 0.0,57.5,17.5 +1,1,a-cure-i1,2020-21,Salem - Horace Mann Laboratory,02580030, 0.0, 4.1, 7.0, 48.5, 3.7, 0.0, 36.7, 51.1, 48.9, 0.0,63.3,2.3000000000000003 +3.225806451612903,3.23,a-cure-i1,2020-21,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 2.0, 48.0, 12.0, 0.0, 38.0, 54.0, 46.0, 0.0,62.0,12.5 +1,1,a-cure-i1,2020-21,Salem - Salem Early Childhood,02580001, 0.0, 1.6, 11.5, 36.1, 4.9, 0.0, 45.9, 26.2, 73.8, 0.0,54.1,0.0 +2.046511627906977,2.05,a-cure-i1,2020-21,Salem - Salem High,02580505, 0.1, 3.0, 5.0, 47.6, 4.5, 0.0, 39.8, 44.7, 55.2, 0.1,60.2,7.7 +7.954285714285714,5,a-cure-i1,2020-21,Salem - Salem Prep High School,02580515, 0.0, 5.0, 0.0, 25.0, 5.0, 0.0, 65.0, 30.0, 70.0, 0.0,35.0,17.4 +1,1,a-cure-i1,2020-21,Salem - Saltonstall School,02580050, 0.0, 2.0, 5.1, 40.7, 4.9, 0.0, 47.3, 53.2, 46.8, 0.0,52.7,1.8 +1,1,a-cure-i1,2020-21,Salem - Witchcraft Heights,02580070, 0.0, 4.1, 8.1, 37.6, 4.5, 0.0, 45.7, 50.0, 50.0, 0.0,54.3,0.0 +3.7707006369426757,3.77,a-cure-i1,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 5.9, 11.1, 44.0, 1.8, 0.0, 37.2, 51.5, 48.1, 0.4,62.8,14.8 +1,1,a-cure-i1,2020-21,Sandwich - Forestdale School,02610002, 0.4, 3.0, 1.7, 4.3, 0.9, 0.2, 89.6, 50.8, 49.2, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Sandwich - Oak Ridge,02610025, 0.4, 2.7, 1.5, 4.9, 1.4, 0.3, 88.8, 49.9, 50.1, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Sandwich - Sandwich High,02610505, 1.1, 2.0, 0.0, 1.7, 0.6, 0.2, 94.4, 51.3, 48.5, 0.2,5.599999999999994,2.9 +11.157894736842113,5,a-cure-i1,2020-21,Sandwich - Sandwich STEM Academy,02610305, 0.7, 2.1, 1.8, 1.8, 1.2, 0.0, 92.4, 50.2, 49.5, 0.2,7.599999999999994,5.3 +1,1,a-cure-i1,2020-21,Saugus - Douglas Waybright,02620067, 1.2, 4.3, 1.2, 19.6, 3.1, 0.6, 69.9, 45.4, 54.6, 0.0,30.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Saugus - Lynnhurst,02620040, 1.4, 11.6, 4.6, 14.4, 0.0, 0.0, 68.1, 44.0, 56.0, 0.0,31.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Saugus - Oaklandvale,02620050, 0.5, 6.5, 6.5, 25.4, 5.0, 0.0, 56.2, 49.3, 50.7, 0.0,43.8,0.0 +3.4249201277955277,3.42,a-cure-i1,2020-21,Saugus - Saugus High,02620505, 0.6, 4.6, 5.7, 18.8, 1.5, 0.1, 68.7, 48.2, 51.6, 0.1,31.299999999999997,6.7 +1,1,a-cure-i1,2020-21,Saugus - Saugus Middle School,02620305, 1.1, 4.3, 5.8, 22.8, 2.7, 0.6, 62.6, 49.6, 50.4, 0.0,37.4,0.0 +1,1,a-cure-i1,2020-21,Saugus - Veterans Memorial,02620065, 0.5, 4.1, 5.3, 21.5, 4.3, 0.0, 64.3, 46.9, 53.1, 0.0,35.7,0.0 +1,1,a-cure-i1,2020-21,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 2.3, 2.3, 0.0, 0.0, 95.5, 43.2, 56.8, 0.0,4.5,0.0 +1,1,a-cure-i1,2020-21,Scituate - Cushing Elementary,02640007, 0.3, 0.9, 1.2, 0.9, 3.6, 0.3, 92.7, 50.8, 49.2, 0.0,7.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Scituate - Gates Middle School,02640305, 0.2, 0.6, 3.9, 2.7, 2.8, 0.0, 89.8, 47.3, 52.7, 0.0,10.200000000000003,2.2 +1,1,a-cure-i1,2020-21,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.6, 2.0, 1.6, 0.0, 94.9, 46.3, 53.7, 0.0,5.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 4.1, 3.1, 3.4, 0.0, 89.3, 52.0, 48.0, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Scituate - Scituate High School,02640505, 0.0, 1.2, 2.4, 1.4, 1.2, 0.0, 93.8, 51.7, 48.3, 0.0,6.200000000000003,3.0 +1,1,a-cure-i1,2020-21,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.8, 3.6, 2.1, 0.0, 92.6, 48.5, 51.5, 0.0,7.400000000000006,0.0 +5.780645161290322,5,a-cure-i1,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 4.0, 2.1, 5.2, 4.2, 0.0, 84.5, 46.2, 53.1, 0.6,15.5,5.6 +1,1,a-cure-i1,2020-21,Seekonk - George R Martin,02650007, 0.0, 3.1, 2.9, 6.9, 5.0, 0.0, 82.2, 55.1, 44.9, 0.0,17.799999999999997,0.0 +10.270270270270272,5,a-cure-i1,2020-21,Seekonk - Mildred Aitken School,02650015, 0.0, 2.6, 1.7, 6.8, 3.7, 0.0, 85.2, 45.6, 54.4, 0.0,14.799999999999997,9.5 +1,1,a-cure-i1,2020-21,Seekonk - Seekonk High,02650505, 0.0, 3.9, 2.7, 5.6, 3.2, 0.2, 84.4, 51.2, 48.6, 0.2,15.599999999999994,2.5 +1,1,a-cure-i1,2020-21,Sharon - Cottage Street,02660005, 0.0, 29.2, 4.7, 7.5, 8.5, 0.0, 50.1, 49.2, 50.8, 0.0,49.9,0.0 +1,1,a-cure-i1,2020-21,Sharon - East Elementary,02660010, 0.0, 27.8, 4.3, 7.1, 6.7, 0.0, 54.1, 48.0, 51.8, 0.2,45.9,1.0 +1,1,a-cure-i1,2020-21,Sharon - Heights Elementary,02660015, 0.2, 32.8, 5.7, 5.0, 6.3, 0.0, 50.1, 51.2, 48.8, 0.0,49.9,0.0 +1,1,a-cure-i1,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, 38.7, 0.0, 3.2, 6.5, 0.0, 51.6, 45.2, 54.8, 0.0,48.4,0.0 +2.385321100917431,2.39,a-cure-i1,2020-21,Sharon - Sharon High,02660505, 0.1, 28.1, 5.3, 5.6, 4.3, 0.2, 56.4, 46.8, 53.1, 0.1,43.6,6.5 +1.9070707070707071,1.91,a-cure-i1,2020-21,Sharon - Sharon Middle,02660305, 0.1, 32.3, 4.6, 5.4, 7.0, 0.1, 50.5, 50.6, 49.3, 0.1,49.5,5.9 +1,1,a-cure-i1,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.4, 0.8, 0.9, 5.8, 1.6, 0.0, 90.4, 39.4, 60.6, 0.0,9.599999999999994,1.3 +1,1,a-cure-i1,2020-21,Sherborn - Pine Hill,02690010, 0.0, 8.4, 3.1, 4.6, 5.9, 0.0, 78.0, 51.7, 48.3, 0.0,22.0,3.3 +1,1,a-cure-i1,2020-21,Shrewsbury - Beal School,02710005, 0.4, 51.4, 1.6, 10.0, 3.2, 0.0, 33.5, 49.8, 50.2, 0.0,66.5,1.0 +1,1,a-cure-i1,2020-21,Shrewsbury - Calvin Coolidge,02710015, 0.7, 34.9, 4.0, 14.4, 4.9, 0.0, 41.2, 47.0, 53.0, 0.0,58.8,0.0 +1.2941176470588236,1.29,a-cure-i1,2020-21,Shrewsbury - Floral Street School,02710020, 1.5, 50.7, 3.1, 8.4, 4.4, 0.0, 32.0, 47.3, 52.7, 0.0,68.0,5.5 +3.1111111111111116,3.11,a-cure-i1,2020-21,Shrewsbury - Oak Middle School,02710030, 0.3, 33.4, 3.0, 9.2, 4.4, 0.0, 49.6, 49.9, 50.1, 0.0,50.4,9.8 +1,1,a-cure-i1,2020-21,Shrewsbury - Parker Road Preschool,02710040, 0.0, 29.1, 9.1, 10.0, 9.1, 0.0, 42.7, 30.9, 69.1, 0.0,57.3,0.0 +1,1,a-cure-i1,2020-21,Shrewsbury - Sherwood Middle School,02710305, 0.3, 35.7, 3.1, 9.9, 4.1, 0.0, 46.9, 51.0, 49.0, 0.0,53.1,2.7 +2.7397260273972606,2.74,a-cure-i1,2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0.4, 27.2, 3.6, 8.8, 3.7, 0.0, 56.2, 53.3, 46.6, 0.1,43.8,7.5 +1,1,a-cure-i1,2020-21,Shrewsbury - Spring Street,02710035, 0.3, 26.5, 2.4, 5.4, 5.1, 0.0, 60.2, 49.1, 50.9, 0.0,39.8,0.0 +1,1,a-cure-i1,2020-21,Shrewsbury - Walter J Paton,02710025, 0.6, 19.4, 3.1, 6.6, 4.3, 0.0, 66.0, 51.4, 48.6, 0.0,34.0,0.0 +17.093167701863358,5,a-cure-i1,2020-21,Shutesbury - Shutesbury Elementary,02720005, 0.9, 0.9, 1.8, 8.9, 3.6, 0.0, 83.9, 57.1, 42.9, 0.0,16.099999999999994,17.2 +1,1,a-cure-i1,2020-21,Silver Lake - Silver Lake Regional High,07600505, 0.3, 1.2, 1.4, 2.4, 0.9, 0.0, 93.8, 46.2, 53.8, 0.0,6.200000000000003,3.5999999999999996 +1,1,a-cure-i1,2020-21,Silver Lake - Silver Lake Regional Middle School,07600405, 0.6, 0.6, 1.0, 3.4, 1.5, 0.0, 92.9, 50.7, 49.1, 0.2,7.099999999999994,0.0 +4.065573770491803,4.07,a-cure-i1,2020-21,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.5, 1.4, 6.3, 25.7, 2.7, 0.0, 63.4, 44.0, 55.7, 0.3,36.6,9.3 +1,1,a-cure-i1,2020-21,Somerset - Chace Street,02730005, 0.0, 2.2, 0.3, 4.0, 1.8, 0.0, 91.7, 48.0, 52.0, 0.0,8.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Somerset - North Elementary,02730008, 0.0, 0.9, 0.2, 4.5, 4.5, 0.0, 89.8, 46.1, 53.9, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Somerset - Somerset Middle School,02730305, 0.3, 2.0, 1.0, 5.0, 2.6, 0.0, 89.1, 48.9, 51.1, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Somerset - South,02730015, 0.8, 2.0, 0.8, 6.1, 3.3, 0.0, 86.9, 49.6, 50.4, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.2, 0.5, 1.0, 4.3, 1.4, 0.1, 92.6, 50.3, 49.7, 0.0,7.400000000000006,1.5 +1.9504761904761905,1.95,a-cure-i1,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.3, 8.1, 4.7, 34.4, 4.9, 0.0, 47.5, 48.8, 51.2, 0.0,52.5,6.4 +4.0,4.0,a-cure-i1,2020-21,Somerville - Arthur D Healey,02740075, 0.0, 4.5, 15.5, 48.2, 4.3, 0.0, 27.6, 50.2, 49.6, 0.2,72.4,18.1 +1,1,a-cure-i1,2020-21,Somerville - Benjamin G Brown,02740015, 0.0, 11.1, 4.9, 7.6, 12.0, 0.4, 64.0, 58.7, 40.9, 0.4,36.0,0.0 +1,1,a-cure-i1,2020-21,Somerville - Capuano Early Childhood Center,02740005, 0.0, 11.4, 8.9, 33.2, 8.4, 0.0, 38.1, 41.6, 58.4, 0.0,61.9,4.5 +3.994981179422836,3.99,a-cure-i1,2020-21,Somerville - E Somerville Community,02740111, 0.1, 3.8, 3.5, 69.9, 2.5, 0.0, 20.3, 45.4, 54.6, 0.0,79.7,19.900000000000002 +1,1,a-cure-i1,2020-21,Somerville - Full Circle High School,02740510, 0.0, 1.8, 16.1, 53.6, 0.0, 0.0, 28.6, 30.4, 69.6, 0.0,71.4,4.8 +8.784313725490199,5,a-cure-i1,2020-21,Somerville - John F Kennedy,02740083, 0.0, 5.3, 4.9, 14.2, 6.2, 0.0, 69.4, 47.9, 51.9, 0.2,30.599999999999994,16.8 +2.837653478854025,2.84,a-cure-i1,2020-21,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 60.0, 13.3, 0.0, 26.7, 13.3, 86.7, 0.0,73.3,13.0 +5.07197549770291,5,a-cure-i1,2020-21,Somerville - Somerville High,02740505, 0.1, 6.2, 10.9, 45.9, 2.1, 0.2, 34.7, 48.2, 51.5, 0.2,65.3,20.7 +5.971291866028709,5,a-cure-i1,2020-21,Somerville - West Somerville Neighborhood,02740115, 0.0, 5.8, 11.8, 12.9, 11.1, 0.3, 58.2, 46.6, 53.2, 0.3,41.8,15.600000000000001 +3.558073654390935,3.56,a-cure-i1,2020-21,Somerville - Winter Hill Community,02740120, 0.0, 5.6, 11.0, 51.4, 2.0, 0.5, 29.4, 45.5, 54.2, 0.3,70.6,15.7 +1,1,a-cure-i1,2020-21,South Hadley - Michael E. Smith Middle School,02780305, 0.2, 1.7, 1.3, 16.8, 1.0, 0.0, 79.0, 51.3, 48.7, 0.0,21.0,0.0 +1,1,a-cure-i1,2020-21,South Hadley - Mosier,02780020, 0.0, 1.7, 1.4, 16.5, 3.8, 0.0, 76.6, 51.0, 49.0, 0.0,23.400000000000006,3.8 +1,1,a-cure-i1,2020-21,South Hadley - Plains Elementary,02780015, 0.0, 2.7, 1.6, 17.3, 5.9, 0.0, 72.5, 49.8, 50.2, 0.0,27.5,0.0 +1,1,a-cure-i1,2020-21,South Hadley - South Hadley High,02780505, 0.0, 2.1, 2.5, 13.1, 3.2, 0.0, 79.2, 50.3, 49.6, 0.2,20.799999999999997,1.6 +1.7676190476190476,1.77,a-cure-i1,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 2.1, 1.3, 4.9, 41.1, 3.1, 0.0, 47.5, 42.1, 57.5, 0.4,52.5,5.8 +3.917137476459511,3.92,a-cure-i1,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.4, 5.6, 35.1, 5.9, 6.0, 0.0, 46.9, 48.6, 51.0, 0.4,53.1,13.000000000000002 +1,1,a-cure-i1,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.3, 1.1, 1.7, 4.6, 1.1, 0.0, 91.2, 32.4, 67.6, 0.0,8.799999999999997,2.0 +1,1,a-cure-i1,2020-21,Southampton - William E Norris,02750005, 0.0, 1.6, 0.2, 6.9, 3.3, 0.0, 87.9, 46.7, 53.3, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 13.4, 0.4, 4.3, 6.3, 0.0, 75.5, 49.8, 50.2, 0.0,24.5,0.0 +1,1,a-cure-i1,2020-21,Southborough - Margaret A Neary,02760020, 0.4, 18.3, 1.6, 3.2, 7.1, 0.0, 69.4, 48.4, 51.6, 0.0,30.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Southborough - Mary E Finn School,02760008, 0.3, 26.1, 3.3, 7.0, 2.7, 0.0, 60.6, 46.4, 53.6, 0.0,39.4,0.0 +2.56,2.56,a-cure-i1,2020-21,Southborough - P Brent Trottier,02760305, 0.0, 18.4, 1.3, 7.3, 5.5, 0.0, 67.5, 49.1, 50.9, 0.0,32.5,5.2 +1.4683544303797467,1.47,a-cure-i1,2020-21,Southbridge - Charlton Street,02770005, 0.4, 1.1, 1.5, 58.7, 1.1, 0.4, 36.8, 48.3, 51.7, 0.0,63.2,5.8 +1.1843575418994414,1.18,a-cure-i1,2020-21,Southbridge - Eastford Road,02770010, 0.0, 1.4, 1.4, 67.0, 1.7, 0.0, 28.4, 49.1, 50.9, 0.0,71.6,5.3 +3.856873822975518,3.86,a-cure-i1,2020-21,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 2.0, 44.9, 6.1, 0.0, 46.9, 32.7, 67.3, 0.0,53.1,12.8 +4.564841498559078,4.56,a-cure-i1,2020-21,Southbridge - Southbridge High School,02770515, 0.4, 1.5, 1.7, 64.7, 1.1, 0.0, 30.6, 43.5, 56.5, 0.0,69.4,19.8 +2.546546546546547,2.55,a-cure-i1,2020-21,Southbridge - Southbridge Middle School,02770315, 0.2, 1.7, 2.1, 59.2, 3.3, 0.0, 33.4, 49.6, 50.4, 0.0,66.6,10.6 +1,1,a-cure-i1,2020-21,Southbridge - West Street,02770020, 0.0, 0.6, 0.3, 66.5, 1.9, 0.0, 30.7, 53.7, 46.3, 0.0,69.3,0.0 +2.67595818815331,2.68,a-cure-i1,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 1.7, 35.8, 14.1, 5.7, 0.0, 42.6, 52.3, 47.6, 0.1,57.4,9.6 +7.656441717791413,5,a-cure-i1,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 0.6, 0.3, 2.2, 7.7, 5.5, 0.0, 83.7, 49.2, 50.8, 0.0,16.299999999999997,7.800000000000001 +24.408759124087588,5,a-cure-i1,2020-21,Southern Berkshire - New Marlborough Central,07650018, 2.7, 0.0, 0.0, 8.2, 2.7, 0.0, 86.3, 50.7, 49.3, 0.0,13.700000000000003,20.900000000000002 +16.955223880597007,5,a-cure-i1,2020-21,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 6.7, 0.0, 0.0, 0.0, 93.3, 53.3, 46.7, 0.0,6.700000000000003,7.1 +1,1,a-cure-i1,2020-21,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 11.6, 4.3, 0.0, 84.1, 50.0, 50.0, 0.0,15.900000000000006,3.4 +1,1,a-cure-i1,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.1, 0.7, 0.9, 11.4, 1.8, 0.0, 85.1, 42.0, 58.0, 0.0,14.900000000000006,2.7 +1,1,a-cure-i1,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.5, 0.9, 1.6, 5.2, 2.4, 0.0, 89.4, 47.5, 52.5, 0.0,10.599999999999994,0.0 +14.8910891089109,5,a-cure-i1,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.3, 1.2, 2.2, 4.6, 1.8, 0.0, 89.9, 51.7, 48.3, 0.0,10.099999999999994,9.4 +1,1,a-cure-i1,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.3, 0.7, 1.7, 6.4, 3.4, 0.0, 87.5, 47.5, 52.5, 0.0,12.5,0.0 +1,1,a-cure-i1,2020-21,Spencer-E Brookfield - David Prouty High,07670505, 0.3, 2.3, 3.7, 16.8, 3.0, 0.0, 73.8, 46.3, 53.7, 0.0,26.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.5, 0.0, 1.6, 10.5, 5.8, 0.0, 81.7, 46.6, 53.4, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.2, 2.0, 2.2, 13.6, 4.2, 0.0, 77.8, 48.4, 51.6, 0.0,22.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.7, 2.7, 19.9, 3.4, 0.0, 73.2, 44.6, 55.1, 0.2,26.799999999999997,0.0 +1.54,1.54,a-cure-i1,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.2, 0.0, 21.7, 53.9, 4.2, 0.0, 20.0, 55.6, 44.4, 0.0,80.0,7.7 +1.0571108622620382,1.06,a-cure-i1,2020-21,Springfield - Alice B Beal Elementary,02810175, 0.0, 10.7, 16.9, 58.1, 3.7, 0.0, 10.7, 54.0, 46.0, 0.0,89.3,5.9 +1,1,a-cure-i1,2020-21,Springfield - Arthur T Talmadge,02810165, 0.0, 0.4, 22.9, 61.4, 5.1, 0.0, 10.2, 47.5, 52.5, 0.0,89.8,0.0 +4.294736842105263,4.29,a-cure-i1,2020-21,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 40.0, 55.0, 0.0, 0.0, 5.0, 25.0, 75.0, 0.0,95.0,25.5 +2.6035015447991765,2.6,a-cure-i1,2020-21,Springfield - Brightwood,02810025, 0.0, 0.0, 16.7, 79.8, 0.6, 0.0, 2.9, 48.5, 51.2, 0.3,97.1,15.8 +0.8661899897854953,1,a-cure-i1,2020-21,Springfield - Chestnut Academy,02810365, 0.0, 1.1, 9.5, 87.4, 0.0, 0.0, 2.1, 48.4, 51.6, 0.0,97.9,5.3 +11.313131313131313,5,a-cure-i1,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 4.0, 19.6, 63.6, 1.9, 0.0, 10.9, 48.6, 51.4, 0.0,89.1,63.0 +9.142857142857142,5,a-cure-i1,2020-21,Springfield - Conservatory of the Arts,02810475, 0.0, 0.3, 16.0, 69.8, 1.8, 0.3, 11.8, 70.1, 29.9, 0.0,88.2,50.4 +1.4716981132075473,1.47,a-cure-i1,2020-21,Springfield - Daniel B Brunton,02810035, 0.2, 1.2, 18.6, 62.6, 2.1, 0.0, 15.2, 49.8, 50.2, 0.0,84.8,7.8 +3.391206313416009,3.39,a-cure-i1,2020-21,Springfield - Early Childhood Education Center,02810001, 0.0, 3.2, 16.1, 63.7, 5.6, 0.0, 11.3, 43.5, 56.5, 0.0,88.7,18.8 +2.5317545748116252,2.53,a-cure-i1,2020-21,Springfield - Edward P. Boland School,02810010, 0.2, 1.0, 9.8, 79.7, 2.2, 0.0, 7.1, 42.1, 57.9, 0.0,92.9,14.700000000000001 +6.0211416490486265,5,a-cure-i1,2020-21,Springfield - Elias Brookings,02810030, 0.7, 0.7, 19.9, 70.7, 2.7, 0.0, 5.4, 47.1, 52.9, 0.0,94.6,35.6 +1,1,a-cure-i1,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 30.8, 69.2, 0.0, 0.0, 0.0, 38.5, 61.5, 0.0,100.0,0.0 +1.5605573419078242,1.56,a-cure-i1,2020-21,Springfield - Forest Park Middle,02810325, 0.0, 4.4, 20.1, 66.0, 2.8, 0.0, 6.7, 47.0, 53.0, 0.0,93.3,9.1 +4.5438596491228065,4.54,a-cure-i1,2020-21,Springfield - Frank H Freedman,02810075, 0.7, 2.2, 23.2, 61.4, 3.7, 0.0, 8.8, 48.9, 51.1, 0.0,91.2,25.9 +3.120496894409938,3.12,a-cure-i1,2020-21,Springfield - Frederick Harris,02810080, 0.6, 4.0, 19.8, 51.0, 5.0, 0.0, 19.5, 49.4, 50.6, 0.0,80.5,15.7 +1,1,a-cure-i1,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 9.1, 84.8, 0.0, 0.0, 6.1, 75.8, 24.2, 0.0,93.9,0.0 +1,1,a-cure-i1,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 16.0, 40.0, 0.0, 0.0, 44.0, 68.0, 32.0, 0.0,56.0,0.0 +3.7327677624602336,3.73,a-cure-i1,2020-21,Springfield - German Gerena Community School,02810195, 0.3, 0.6, 16.6, 74.7, 2.0, 0.0, 5.7, 48.8, 51.2, 0.0,94.3,22.0 +0.9931034482758622,1,a-cure-i1,2020-21,Springfield - Glenwood,02810065, 0.0, 2.5, 5.4, 76.4, 2.5, 0.0, 13.0, 48.2, 51.8, 0.0,87.0,5.4 +3.2288613303269442,3.23,a-cure-i1,2020-21,Springfield - Glickman Elementary,02810068, 0.3, 2.4, 17.1, 64.4, 4.5, 0.0, 11.3, 44.2, 55.8, 0.0,88.7,17.9 +6.68528464017186,5,a-cure-i1,2020-21,Springfield - High School Of Commerce,02810510, 0.3, 1.6, 18.7, 71.1, 1.2, 0.2, 6.9, 49.5, 50.5, 0.0,93.1,38.900000000000006 +2.8629671574178936,2.86,a-cure-i1,2020-21,Springfield - Hiram L Dorman,02810050, 0.0, 2.1, 17.5, 65.0, 3.8, 0.0, 11.7, 49.2, 50.8, 0.0,88.3,15.8 +1,1,a-cure-i1,2020-21,Springfield - Homer Street,02810085, 0.0, 0.8, 22.1, 71.0, 2.0, 0.0, 4.1, 47.1, 52.9, 0.0,95.9,4.0 +11.291191709844558,5,a-cure-i1,2020-21,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 14.0, 81.2, 1.3, 0.0, 3.5, 47.2, 52.8, 0.0,96.5,68.1 +1,1,a-cure-i1,2020-21,Springfield - Indian Orchard Elementary,02810100, 0.3, 0.3, 17.4, 67.7, 2.6, 0.0, 11.6, 45.3, 54.7, 0.0,88.4,2.8 +7.153762268266084,5,a-cure-i1,2020-21,Springfield - John F Kennedy Middle,02810328, 0.0, 0.8, 19.5, 69.9, 1.5, 0.0, 8.3, 49.0, 51.0, 0.0,91.7,41.0 +7.027522935779816,5,a-cure-i1,2020-21,Springfield - John J Duggan Middle,02810320, 0.3, 2.4, 26.3, 56.9, 1.3, 0.0, 12.8, 47.3, 52.7, 0.0,87.2,38.3 +1.5472527472527473,1.55,a-cure-i1,2020-21,Springfield - Kensington International School,02810110, 0.8, 2.3, 12.0, 72.9, 3.0, 0.0, 9.0, 53.8, 46.2, 0.0,91.0,8.8 +4.924424972617744,4.92,a-cure-i1,2020-21,Springfield - Kiley Academy,02810316, 0.0, 0.0, 23.5, 66.1, 1.7, 0.0, 8.7, 43.5, 56.5, 0.0,91.3,28.1 +5.512459371614302,5,a-cure-i1,2020-21,Springfield - Kiley Prep,02810315, 0.0, 2.9, 24.0, 62.5, 2.9, 0.0, 7.7, 43.3, 56.7, 0.0,92.3,31.8 +0.9525909592061742,1,a-cure-i1,2020-21,Springfield - Liberty,02810115, 0.3, 1.4, 13.5, 74.7, 0.7, 0.0, 9.3, 51.6, 48.4, 0.0,90.7,5.4 +1,1,a-cure-i1,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 14.3, 14.3, 0.0, 0.0, 71.4, 0.0, 100.0, 0.0,28.599999999999994,0.0 +3.9958376690946933,4.0,a-cure-i1,2020-21,Springfield - Lincoln,02810120, 0.0, 0.2, 9.6, 84.1, 2.2, 0.0, 3.9, 52.5, 47.5, 0.0,96.1,24.0 +5.041540020263424,5,a-cure-i1,2020-21,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 9.4, 88.9, 0.3, 0.0, 1.3, 44.5, 55.5, 0.0,98.7,31.099999999999998 +6.56953642384106,5,a-cure-i1,2020-21,Springfield - M Marcus Kiley Middle,02810330, 0.2, 1.7, 21.6, 65.1, 2.1, 0.0, 9.4, 45.1, 54.9, 0.0,90.6,37.2 +3.4820457018498367,3.48,a-cure-i1,2020-21,Springfield - Margaret C Ells,02810060, 0.7, 1.5, 17.8, 67.4, 4.4, 0.0, 8.1, 38.5, 61.5, 0.0,91.9,20.0 +1.990049751243781,1.99,a-cure-i1,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.3, 8.7, 19.9, 48.2, 3.2, 0.0, 19.6, 48.6, 51.4, 0.0,80.4,10.0 +2.2857142857142856,2.29,a-cure-i1,2020-21,Springfield - Mary M Lynch,02810140, 0.0, 1.7, 21.5, 65.7, 2.1, 0.0, 9.0, 55.8, 44.2, 0.0,91.0,13.0 +5.630289532293987,5,a-cure-i1,2020-21,Springfield - Mary M Walsh,02810155, 0.4, 0.4, 18.6, 69.1, 1.4, 0.0, 10.2, 48.8, 51.2, 0.0,89.8,31.6 +3.5437430786268,3.54,a-cure-i1,2020-21,Springfield - Mary O Pottenger,02810145, 0.5, 2.4, 10.6, 73.5, 3.3, 0.0, 9.7, 48.2, 51.8, 0.0,90.3,20.0 +1.4196242171189979,1.42,a-cure-i1,2020-21,Springfield - Milton Bradley School,02810023, 0.0, 0.2, 17.9, 76.2, 1.5, 0.0, 4.2, 48.0, 52.0, 0.0,95.8,8.5 +4.368200836820083,4.37,a-cure-i1,2020-21,Springfield - Rebecca M Johnson,02810055, 0.3, 0.3, 25.5, 67.4, 2.1, 0.0, 4.4, 47.0, 53.0, 0.0,95.6,26.099999999999998 +4.064034151547492,4.06,a-cure-i1,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.7, 17.1, 73.0, 3.0, 0.0, 6.3, 43.1, 56.9, 0.0,93.7,23.8 +3.8782608695652168,3.88,a-cure-i1,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.1, 2.1, 17.9, 71.2, 0.7, 0.0, 8.0, 54.3, 45.7, 0.0,92.0,22.299999999999997 +2.8896321070234117,2.89,a-cure-i1,2020-21,Springfield - Samuel Bowles,02810020, 0.0, 0.4, 17.4, 71.1, 0.4, 0.4, 10.3, 49.6, 50.4, 0.0,89.7,16.200000000000003 +3.5446153846153847,3.54,a-cure-i1,2020-21,Springfield - South End Middle School,02810355, 0.0, 0.0, 16.5, 80.2, 0.8, 0.0, 2.5, 43.2, 56.4, 0.4,97.5,21.6 +3.2569521690767513,3.26,a-cure-i1,2020-21,Springfield - Springfield Central High,02810500, 0.1, 4.3, 21.8, 62.1, 1.6, 0.0, 10.1, 46.4, 53.6, 0.0,89.9,18.299999999999997 +5.099099099099099,5,a-cure-i1,2020-21,Springfield - Springfield High School,02810570, 0.5, 0.0, 18.4, 68.4, 1.5, 0.0, 11.2, 37.9, 62.1, 0.0,88.8,28.3 +4.899022801302932,4.9,a-cure-i1,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 0.1, 1.5, 19.0, 70.8, 0.6, 0.2, 7.9, 45.0, 55.0, 0.0,92.1,28.2 +1,1,a-cure-i1,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 37.5, 56.3, 0.0, 0.0, 6.3, 56.3, 43.8, 0.0,93.7,0.0 +6.08130081300813,5,a-cure-i1,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 1.6, 6.3, 90.6, 0.0, 0.0, 1.6, 23.4, 76.6, 0.0,98.4,37.4 +5.753943217665616,5,a-cure-i1,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 31.7, 61.0, 2.4, 0.0, 4.9, 17.1, 82.9, 0.0,95.1,34.2 +8.670391061452515,5,a-cure-i1,2020-21,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 19.8, 68.6, 1.2, 0.0, 10.5, 20.9, 79.1, 0.0,89.5,48.5 +2.265642151481888,2.27,a-cure-i1,2020-21,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 23.2, 64.3, 3.6, 0.0, 8.9, 12.5, 87.5, 0.0,91.1,12.9 +1,1,a-cure-i1,2020-21,Springfield - Springfield Vocational Academy,02810675, 0.0, 3.9, 21.3, 64.6, 0.0, 0.0, 10.2, 32.3, 67.7, 0.0,89.8,0.0 +4.382838283828383,4.38,a-cure-i1,2020-21,Springfield - STEM Middle Academy,02810350, 0.0, 3.5, 22.6, 62.4, 2.4, 0.0, 9.1, 43.9, 56.1, 0.0,90.9,24.9 +2.8677595628415298,2.87,a-cure-i1,2020-21,Springfield - Sumner Avenue,02810160, 0.0, 4.3, 20.9, 62.7, 3.6, 0.0, 8.5, 48.1, 51.9, 0.0,91.5,16.4 +4.332541567695962,4.33,a-cure-i1,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 1.1, 21.0, 60.5, 1.4, 0.2, 15.8, 52.4, 47.3, 0.3,84.2,22.8 +1.0328425821064553,1.03,a-cure-i1,2020-21,Springfield - Thomas M Balliet,02810015, 0.3, 2.9, 21.4, 57.3, 6.5, 0.0, 11.7, 45.3, 54.7, 0.0,88.3,5.7 +4.051948051948052,4.05,a-cure-i1,2020-21,Springfield - Van Sickle Academy,02810485, 0.0, 1.8, 7.6, 81.9, 1.1, 0.0, 7.6, 49.6, 50.4, 0.0,92.4,23.400000000000002 +1.8834285714285715,1.88,a-cure-i1,2020-21,Springfield - Warner,02810180, 0.0, 0.8, 19.2, 64.2, 3.3, 0.0, 12.5, 40.8, 59.2, 0.0,87.5,10.3 +1.149270482603816,1.15,a-cure-i1,2020-21,Springfield - Washington,02810185, 0.0, 7.7, 15.9, 60.6, 4.8, 0.0, 10.9, 49.3, 50.7, 0.0,89.1,6.4 +1.2972972972972971,1.3,a-cure-i1,2020-21,Springfield - White Street,02810190, 0.2, 4.3, 22.0, 66.6, 3.1, 0.0, 3.8, 46.7, 53.3, 0.0,96.2,7.8 +3.6340694006309153,3.63,a-cure-i1,2020-21,Springfield - William N. DeBerry,02810045, 0.0, 0.4, 15.5, 77.8, 1.4, 0.0, 4.9, 49.6, 50.4, 0.0,95.1,21.6 +10.25054945054945,5,a-cure-i1,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 2.4, 16.9, 69.8, 1.9, 0.0, 9.0, 47.9, 52.1, 0.0,91.0,58.3 +1,1,a-cure-i1,2020-21,Stoneham - Colonial Park,02840005, 0.4, 8.4, 0.8, 12.0, 4.8, 0.0, 73.7, 43.4, 56.6, 0.0,26.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Stoneham - Robin Hood,02840025, 0.0, 5.0, 2.2, 7.8, 5.6, 0.0, 79.3, 52.1, 47.9, 0.0,20.700000000000003,4.6 +1,1,a-cure-i1,2020-21,Stoneham - South,02840030, 0.0, 7.0, 3.4, 11.3, 4.0, 0.0, 74.4, 52.4, 47.6, 0.0,25.599999999999994,0.0 +5.171717171717173,5,a-cure-i1,2020-21,Stoneham - Stoneham Central Middle School,02840405, 0.3, 4.8, 2.0, 9.6, 3.1, 0.0, 80.2, 48.6, 51.3, 0.1,19.799999999999997,6.4 +1,1,a-cure-i1,2020-21,Stoneham - Stoneham High,02840505, 0.7, 5.7, 2.5, 8.9, 3.9, 0.0, 78.4, 49.0, 51.0, 0.0,21.599999999999994,1.7 +1,1,a-cure-i1,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 6.2, 30.8, 12.3, 7.7, 1.5, 41.5, 43.1, 56.9, 0.0,58.5,0.0 +1,1,a-cure-i1,2020-21,Stoughton - Helen Hansen Elementary,02850010, 0.4, 4.1, 19.1, 14.5, 7.5, 0.0, 54.4, 50.2, 49.8, 0.0,45.6,0.0 +1,1,a-cure-i1,2020-21,Stoughton - Joseph H Gibbons,02850025, 0.0, 3.7, 22.0, 15.7, 7.7, 0.0, 50.9, 46.6, 53.4, 0.0,49.1,0.0 +1,1,a-cure-i1,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 5.5, 26.5, 19.1, 4.9, 0.0, 44.0, 44.0, 56.0, 0.0,56.0,0.0 +2.227450980392157,2.23,a-cure-i1,2020-21,Stoughton - O'Donnell Middle School,02850405, 0.1, 5.2, 24.1, 15.1, 5.7, 0.7, 49.0, 50.1, 49.9, 0.0,51.0,7.1000000000000005 +1.7207062600321028,1.72,a-cure-i1,2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.4, 3.5, 27.8, 23.9, 6.7, 0.0, 37.7, 53.9, 46.1, 0.0,62.3,6.7 +1,1,a-cure-i1,2020-21,Stoughton - South Elementary,02850015, 0.0, 12.7, 19.4, 10.5, 8.0, 0.4, 48.9, 48.5, 51.5, 0.0,51.1,0.0 +1.744855967078189,1.74,a-cure-i1,2020-21,Stoughton - Stoughton High,02850505, 0.2, 7.4, 26.8, 10.1, 3.8, 0.3, 51.4, 46.8, 53.2, 0.0,48.6,5.299999999999999 +1,1,a-cure-i1,2020-21,Sturbridge - Burgess Elementary,02870005, 0.3, 1.5, 1.0, 7.1, 5.2, 0.0, 85.0, 46.7, 53.3, 0.0,15.0,0.0 +6.7175572519084,5,a-cure-i1,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.5, 2.9, 2.5, 4.5, 2.7, 0.1, 86.9, 57.3, 42.6, 0.1,13.099999999999994,5.5 +4.347169811320755,4.35,a-cure-i1,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 10.8, 3.3, 4.7, 7.4, 0.3, 73.5, 49.2, 50.7, 0.1,26.5,7.199999999999999 +5.57085020242915,5,a-cure-i1,2020-21,Sudbury - General John Nixon Elementary,02880025, 0.0, 8.7, 5.7, 4.0, 6.4, 0.0, 75.3, 53.8, 46.2, 0.0,24.700000000000003,8.600000000000001 +8.171428571428573,5,a-cure-i1,2020-21,Sudbury - Israel Loring School,02880015, 0.2, 8.4, 2.6, 9.8, 6.8, 0.2, 72.0, 49.3, 50.5, 0.2,28.0,14.3 +5.178743961352656,5,a-cure-i1,2020-21,Sudbury - Josiah Haynes,02880010, 0.0, 8.6, 2.4, 3.3, 6.5, 0.0, 79.3, 45.6, 54.4, 0.0,20.700000000000003,6.7 +1,1,a-cure-i1,2020-21,Sudbury - Peter Noyes,02880030, 0.0, 10.8, 2.2, 5.3, 10.1, 0.0, 71.6, 44.0, 56.0, 0.0,28.400000000000006,0.0 +2.5919003115264805,2.59,a-cure-i1,2020-21,Sunderland - Sunderland Elementary,02890005, 0.0, 9.2, 3.3, 10.9, 8.7, 0.0, 67.9, 47.8, 51.6, 0.5,32.099999999999994,5.2 +1,1,a-cure-i1,2020-21,Sutton - Sutton Early Learning,02900003, 0.0, 1.0, 1.3, 4.6, 2.3, 0.3, 90.5, 43.9, 56.1, 0.0,9.5,0.0 +1,1,a-cure-i1,2020-21,Sutton - Sutton Elementary,02900005, 0.0, 1.1, 0.4, 3.2, 2.8, 0.0, 92.6, 51.4, 48.6, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Sutton - Sutton High School,02900510, 0.0, 1.9, 1.9, 4.1, 4.1, 0.0, 88.0, 49.9, 50.1, 0.0,12.0,0.0 +1,1,a-cure-i1,2020-21,Sutton - Sutton Middle School,02900305, 0.0, 1.9, 0.9, 4.0, 5.3, 0.0, 87.9, 52.0, 48.0, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Swampscott - Clarke,02910005, 0.5, 1.9, 3.3, 18.7, 2.3, 0.0, 73.4, 45.3, 54.7, 0.0,26.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Swampscott - Hadley,02910010, 0.0, 4.4, 2.4, 12.5, 4.4, 0.0, 76.3, 48.5, 51.5, 0.0,23.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Swampscott - Stanley,02910020, 0.0, 2.3, 1.8, 5.4, 2.3, 0.0, 88.3, 45.0, 55.0, 0.0,11.700000000000003,0.0 +4.499999999999999,4.5,a-cure-i1,2020-21,Swampscott - Swampscott High,02910505, 0.0, 2.0, 5.6, 12.6, 2.3, 0.0, 77.6, 52.7, 47.1, 0.1,22.400000000000006,6.3 +1,1,a-cure-i1,2020-21,Swampscott - Swampscott Middle,02910305, 0.4, 2.9, 3.7, 11.4, 3.7, 0.0, 77.9, 48.1, 51.9, 0.0,22.099999999999994,1.2 +1,1,a-cure-i1,2020-21,Swansea - Elizabeth S Brown,02920006, 0.0, 0.7, 0.4, 1.1, 0.7, 0.0, 97.1, 46.4, 53.6, 0.0,2.9000000000000057,0.0 +1,1,a-cure-i1,2020-21,Swansea - Gardner,02920015, 0.4, 0.8, 0.4, 3.1, 1.6, 0.0, 93.7, 50.2, 49.8, 0.0,6.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Swansea - Joseph Case High,02920505, 0.0, 1.1, 1.1, 3.6, 0.9, 0.0, 93.3, 46.2, 53.8, 0.0,6.700000000000003,2.2 +1,1,a-cure-i1,2020-21,Swansea - Joseph Case Jr High,02920305, 0.6, 1.3, 1.1, 2.0, 2.0, 0.0, 93.0, 50.4, 49.6, 0.0,7.0,3.3 +1,1,a-cure-i1,2020-21,Swansea - Joseph G Luther,02920020, 0.0, 1.6, 1.0, 2.1, 2.1, 0.0, 93.2, 50.0, 50.0, 0.0,6.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 2.0, 1.0, 2.4, 3.4, 0.0, 91.2, 49.3, 50.7, 0.0,8.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 0.3, 0.9, 1.7, 6.0, 3.2, 0.2, 87.7, 47.4, 52.6, 0.0,12.299999999999997,2.7 +1,1,a-cure-i1,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 0.1, 1.7, 1.9, 6.6, 4.5, 0.0, 85.2, 55.5, 44.5, 0.0,14.799999999999997,2.2 +1,1,a-cure-i1,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.2, 0.2, 5.6, 2.4, 0.2, 91.4, 39.9, 60.1, 0.0,8.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Taunton - Benjamin Friedman Middle,02930315, 0.4, 0.9, 13.2, 10.2, 4.9, 0.0, 70.3, 47.6, 52.4, 0.0,29.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Taunton - East Taunton Elementary,02930010, 0.2, 0.7, 16.2, 8.6, 5.5, 0.0, 68.8, 50.4, 49.6, 0.0,31.200000000000003,4.5 +1,1,a-cure-i1,2020-21,Taunton - Edmund Hatch Bennett,02930007, 0.0, 1.0, 10.9, 11.3, 4.1, 0.0, 72.7, 49.8, 50.2, 0.0,27.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.7, 16.9, 15.5, 7.4, 0.0, 59.5, 41.2, 58.8, 0.0,40.5,0.0 +1.6339113680154143,1.63,a-cure-i1,2020-21,Taunton - Elizabeth Pole,02930027, 0.4, 2.0, 26.4, 13.4, 9.8, 0.0, 48.1, 49.7, 50.3, 0.0,51.9,5.3 +2.9306930693069306,2.93,a-cure-i1,2020-21,Taunton - H H Galligan,02930057, 0.4, 1.2, 30.7, 18.3, 9.2, 0.8, 39.4, 49.0, 51.0, 0.0,60.6,11.1 +2.2762886597938143,2.28,a-cure-i1,2020-21,Taunton - John F Parker Middle,02930305, 0.6, 0.2, 23.0, 17.4, 6.9, 0.4, 51.5, 49.8, 50.2, 0.0,48.5,6.9 +5.722627737226277,5,a-cure-i1,2020-21,Taunton - Joseph C Chamberlain,02930008, 0.0, 2.4, 11.4, 8.6, 5.0, 0.0, 72.6, 48.7, 51.3, 0.0,27.400000000000006,9.8 +1,1,a-cure-i1,2020-21,Taunton - Joseph H Martin,02930042, 0.0, 1.7, 18.8, 12.0, 5.3, 0.0, 62.3, 50.6, 49.4, 0.0,37.7,0.0 +2.2619542619542616,2.26,a-cure-i1,2020-21,Taunton - Mulcahey Elementary School,02930015, 0.1, 0.3, 23.9, 17.4, 6.2, 0.3, 51.9, 49.4, 50.6, 0.0,48.1,6.8 +1,1,a-cure-i1,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 25.0, 21.0, 5.0, 0.0, 49.0, 42.0, 58.0, 0.0,51.0,0.0 +2.8282828282828283,2.83,a-cure-i1,2020-21,Taunton - Taunton High,02930505, 0.4, 1.3, 19.1, 14.1, 4.6, 0.2, 60.4, 49.7, 50.3, 0.0,39.6,7.0 +1,1,a-cure-i1,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.2, 2.7, 8.0, 17.9, 6.8, 0.3, 64.0, 56.0, 43.9, 0.1,36.0,0.0 +1,1,a-cure-i1,2020-21,Tewksbury - Heath-Brook,02950010, 0.0, 1.9, 3.8, 6.1, 2.2, 0.0, 85.9, 45.7, 54.3, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Tewksbury - John F. Ryan,02950023, 0.0, 2.7, 3.6, 7.4, 2.1, 0.0, 84.2, 51.4, 48.6, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Tewksbury - John W. Wynn Middle,02950305, 0.2, 3.5, 3.9, 5.7, 1.2, 0.0, 85.5, 49.3, 50.7, 0.0,14.5,2.8 +1,1,a-cure-i1,2020-21,Tewksbury - L F Dewing,02950001, 0.0, 6.9, 4.2, 6.6, 2.9, 0.2, 79.2, 47.2, 52.8, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Tewksbury - Louise Davy Trahan,02950025, 0.0, 2.9, 1.6, 5.3, 1.2, 0.0, 88.9, 52.7, 47.3, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Tewksbury - North Street,02950020, 0.0, 4.5, 5.6, 8.2, 0.7, 0.4, 80.5, 51.7, 48.3, 0.0,19.5,0.0 +1,1,a-cure-i1,2020-21,Tewksbury - Tewksbury Memorial High,02950505, 0.1, 4.6, 3.8, 5.7, 1.5, 0.0, 84.4, 53.6, 46.2, 0.1,15.599999999999994,1.5 +1.9844961240310077,1.98,a-cure-i1,2020-21,Tisbury - Tisbury Elementary,02960005, 1.0, 0.7, 6.2, 38.4, 5.2, 0.0, 48.4, 49.1, 50.9, 0.0,51.6,6.4 +1,1,a-cure-i1,2020-21,Topsfield - Proctor Elementary,02980005, 1.2, 1.6, 0.0, 2.8, 1.6, 0.0, 92.9, 48.4, 51.6, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Topsfield - Steward Elementary,02980010, 0.6, 2.1, 0.3, 4.8, 3.6, 0.0, 88.6, 51.2, 48.8, 0.0,11.400000000000006,3.1 +1,1,a-cure-i1,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.1, 0.7, 1.0, 7.9, 4.7, 0.1, 85.4, 38.6, 61.0, 0.4,14.599999999999994,0.4 +1,1,a-cure-i1,2020-21,Triton - Newbury Elementary,07730020, 0.0, 1.4, 1.7, 2.8, 1.1, 0.3, 92.8, 46.5, 53.5, 0.0,7.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Triton - Pine Grove,07730025, 0.0, 1.8, 0.8, 1.3, 1.8, 0.0, 94.3, 50.0, 50.0, 0.0,5.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Triton - Salisbury Elementary,07730015, 0.5, 2.6, 3.3, 6.6, 3.1, 0.5, 83.6, 48.4, 51.6, 0.0,16.400000000000006,4.0 +1,1,a-cure-i1,2020-21,Triton - Triton Regional High School,07730505, 0.2, 2.0, 1.5, 4.0, 1.5, 0.2, 90.6, 50.6, 49.2, 0.2,9.400000000000006,4.2 +1,1,a-cure-i1,2020-21,Triton - Triton Regional Middle School,07730405, 0.0, 4.2, 0.6, 3.9, 1.9, 0.3, 89.1, 46.2, 53.8, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Truro - Truro Central,03000005, 0.0, 0.0, 8.0, 7.1, 17.7, 0.0, 67.3, 46.9, 53.1, 0.0,32.7,0.0 +1,1,a-cure-i1,2020-21,Tyngsborough - Tyngsborough Elementary,03010020, 0.3, 9.7, 5.3, 8.4, 3.6, 0.0, 72.8, 48.0, 52.0, 0.0,27.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Tyngsborough - Tyngsborough High School,03010505, 0.4, 7.2, 2.5, 5.8, 3.6, 0.0, 80.4, 54.6, 45.4, 0.0,19.599999999999994,3.1 +1,1,a-cure-i1,2020-21,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 8.4, 5.6, 5.6, 3.1, 0.0, 77.4, 44.8, 55.2, 0.0,22.599999999999994,3.7 +4.070030895983522,4.07,a-cure-i1,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.3, 3.2, 44.7, 47.9, 0.6, 0.6, 2.9, 47.3, 52.7, 0.0,97.1,24.7 +5.165991902834008,5,a-cure-i1,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.1, 0.3, 55.2, 40.9, 1.8, 0.6, 1.2, 50.2, 49.8, 0.0,98.8,31.900000000000002 +1,1,a-cure-i1,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 6.0, 6.0, 0.0, 0.0, 12.0, 0.0, 76.0, 50.0, 50.0, 0.0,24.0,0.0 +1,1,a-cure-i1,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 4.0, 0.0, 0.9, 10.6, 6.6, 0.0, 77.9, 46.6, 53.2, 0.3,22.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 1.0, 1.1, 3.2, 4.2, 7.2, 0.1, 83.2, 38.8, 61.2, 0.0,16.799999999999997,1.9 +1,1,a-cure-i1,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 2.4, 2.4, 17.1, 2.4, 0.0, 75.6, 58.5, 41.5, 0.0,24.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Uxbridge - Taft Early Learning Center,03040005, 0.8, 0.8, 0.6, 7.7, 1.6, 0.2, 88.3, 46.2, 53.8, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Uxbridge - Uxbridge High,03040505, 0.7, 2.0, 1.7, 5.7, 2.3, 0.0, 87.7, 46.5, 53.5, 0.0,12.299999999999997,2.6 +1,1,a-cure-i1,2020-21,Uxbridge - Whitin Intermediate,03040405, 0.2, 0.8, 1.0, 5.5, 2.6, 0.0, 89.8, 43.7, 56.3, 0.0,10.200000000000003,0.0 +7.807329842931936,5,a-cure-i1,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.7, 1.7, 20.0, 70.2, 2.6, 0.2, 4.5, 53.9, 46.1, 0.0,95.5,46.599999999999994 +1,1,a-cure-i1,2020-21,Wachusett - Central Tree Middle,07750310, 0.3, 2.9, 2.0, 5.8, 2.9, 0.0, 86.0, 50.0, 50.0, 0.0,14.0,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Chocksett Middle School,07750315, 0.0, 2.3, 1.0, 7.3, 1.7, 0.0, 87.7, 47.7, 52.3, 0.0,12.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Davis Hill Elementary,07750018, 0.7, 0.9, 3.5, 7.1, 2.8, 0.2, 84.7, 50.5, 49.5, 0.0,15.299999999999997,3.3 +1,1,a-cure-i1,2020-21,Wachusett - Dawson,07750020, 0.0, 5.4, 3.4, 7.0, 2.9, 0.0, 81.3, 50.3, 49.7, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Early Childhood Center,07750001, 0.0, 5.4, 2.2, 14.0, 2.2, 0.0, 76.3, 37.6, 62.4, 0.0,23.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Glenwood Elementary School,07750060, 0.3, 0.9, 2.1, 8.5, 2.1, 0.0, 86.2, 53.2, 46.8, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Houghton Elementary,07750027, 0.0, 2.9, 4.9, 8.5, 3.6, 0.0, 80.1, 43.8, 56.2, 0.0,19.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Leroy E.Mayo,07750032, 0.0, 3.8, 4.2, 6.3, 2.3, 0.0, 83.5, 47.6, 52.4, 0.0,16.5,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Mountview Middle,07750305, 0.0, 4.3, 3.9, 7.6, 3.1, 0.0, 81.2, 47.9, 52.1, 0.0,18.799999999999997,2.4 +1,1,a-cure-i1,2020-21,Wachusett - Naquag Elementary School,07750005, 0.0, 1.7, 0.7, 5.8, 3.1, 0.0, 88.8, 49.5, 50.5, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Paxton Center,07750040, 0.0, 3.9, 1.1, 7.3, 2.3, 0.0, 85.5, 52.5, 47.5, 0.0,14.5,0.0 +1,1,a-cure-i1,2020-21,Wachusett - Thomas Prince,07750045, 0.0, 1.8, 1.5, 2.9, 2.4, 0.0, 91.4, 45.7, 54.3, 0.0,8.599999999999994,4.6 +1,1,a-cure-i1,2020-21,Wachusett - Wachusett Regional High,07750505, 0.1, 3.5, 2.0, 5.3, 2.0, 0.0, 86.9, 52.5, 47.5, 0.0,13.099999999999994,0.7 +1,1,a-cure-i1,2020-21,Wakefield - Dolbeare,03050005, 0.2, 2.3, 2.0, 7.0, 2.7, 0.2, 85.6, 48.8, 51.2, 0.0,14.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 7.4, 5.9, 5.9, 4.4, 0.0, 76.5, 33.8, 66.2, 0.0,23.5,0.0 +1,1,a-cure-i1,2020-21,Wakefield - Galvin Middle School,03050310, 0.2, 3.3, 1.9, 7.8, 3.1, 0.1, 83.6, 49.0, 50.9, 0.1,16.400000000000006,1.1 +1,1,a-cure-i1,2020-21,Wakefield - Greenwood,03050020, 0.0, 5.1, 1.4, 4.7, 6.0, 0.5, 82.3, 42.3, 57.7, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Wakefield - Wakefield Memorial High,03050505, 0.2, 3.2, 3.8, 7.7, 1.6, 0.0, 83.4, 52.0, 48.0, 0.0,16.599999999999994,0.7 +1,1,a-cure-i1,2020-21,Wakefield - Walton,03050040, 0.0, 1.8, 3.6, 6.7, 2.2, 0.9, 84.8, 43.9, 56.1, 0.0,15.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Wakefield - Woodville School,03050015, 0.0, 6.1, 3.7, 10.3, 5.4, 0.2, 74.3, 52.3, 47.7, 0.0,25.700000000000003,4.4 +1,1,a-cure-i1,2020-21,Wales - Wales Elementary,03060005, 0.8, 0.0, 1.6, 0.8, 2.4, 0.0, 94.4, 47.6, 52.4, 0.0,5.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Walpole - Bird Middle,03070305, 0.0, 2.8, 5.3, 7.1, 2.3, 0.0, 82.6, 50.6, 49.4, 0.0,17.400000000000006,3.3 +1,1,a-cure-i1,2020-21,Walpole - Boyden,03070010, 0.6, 3.7, 6.3, 6.3, 2.6, 0.0, 80.6, 48.9, 51.1, 0.0,19.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 3.2, 3.2, 9.7, 1.6, 0.0, 82.3, 41.9, 58.1, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0.7, 11.6, 3.3, 6.4, 4.0, 0.0, 74.0, 45.4, 54.6, 0.0,26.0,3.9 +1,1,a-cure-i1,2020-21,Walpole - Elm Street School,03070005, 0.0, 6.2, 3.9, 4.1, 3.2, 0.0, 82.5, 53.2, 46.8, 0.0,17.5,0.0 +1,1,a-cure-i1,2020-21,Walpole - Fisher,03070015, 0.4, 13.8, 1.5, 6.6, 4.4, 0.4, 72.9, 50.5, 49.5, 0.0,27.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Walpole - Old Post Road,03070018, 0.2, 2.6, 2.9, 9.7, 5.5, 0.0, 79.1, 52.0, 48.0, 0.0,20.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Walpole - Walpole High,03070505, 0.4, 6.0, 3.0, 5.6, 2.2, 0.0, 82.8, 49.6, 50.4, 0.0,17.200000000000003,2.8 +1,1,a-cure-i1,2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 0.2, 10.5, 9.6, 12.9, 4.6, 0.0, 62.2, 46.7, 53.3, 0.0,37.8,1.3 +0.9589345172031077,1,a-cure-i1,2020-21,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.6, 7.5, 77.5, 1.5, 0.0, 9.9, 49.6, 50.4, 0.0,90.1,5.4 +1,1,a-cure-i1,2020-21,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 4.8, 4.0, 31.7, 5.6, 0.0, 53.8, 47.8, 52.2, 0.0,46.2,0.0 +4.829493087557604,4.83,a-cure-i1,2020-21,Waltham - John F Kennedy Middle,03080404, 0.0, 5.2, 8.8, 26.5, 2.8, 0.0, 56.6, 45.0, 55.0, 0.0,43.4,13.100000000000001 +1.348314606741573,1.35,a-cure-i1,2020-21,Waltham - John W. McDevitt Middle School,03080415, 0.0, 4.0, 7.8, 58.3, 1.0, 0.0, 28.8, 48.9, 51.1, 0.0,71.2,6.0 +1.808695652173913,1.81,a-cure-i1,2020-21,Waltham - Northeast Elementary School,03080040, 0.4, 8.1, 10.8, 35.9, 2.3, 0.0, 42.5, 50.8, 49.2, 0.0,57.5,6.5 +1,1,a-cure-i1,2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 5.6, 12.7, 38.7, 4.2, 0.0, 38.7, 48.5, 51.5, 0.0,61.3,0.7 +10.309278350515465,5,a-cure-i1,2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 4.0, 70.7, 2.9, 0.0, 22.4, 47.1, 52.9, 0.0,77.6,50.0 +2.1843003412969284,2.18,a-cure-i1,2020-21,Waltham - Waltham Sr High,03080505, 0.0, 3.8, 10.3, 43.0, 1.5, 0.1, 41.4, 47.6, 52.3, 0.1,58.6,8.0 +1,1,a-cure-i1,2020-21,Waltham - William F. Stanley Elementary School,03080005, 0.0, 8.1, 10.3, 44.0, 2.2, 0.0, 35.4, 43.2, 56.8, 0.0,64.6,4.2 +1,1,a-cure-i1,2020-21,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.3, 1.7, 5.0, 1.7, 0.0, 91.3, 51.6, 48.4, 0.0,8.700000000000003,0.0 +6.289655172413793,5,a-cure-i1,2020-21,Ware - Ware Junior/Senior High School,03090505, 0.2, 0.4, 1.9, 7.3, 4.2, 0.6, 85.5, 48.6, 51.4, 0.0,14.5,5.7 +1,1,a-cure-i1,2020-21,Ware - Ware Middle School,03090305, 0.4, 0.7, 0.4, 12.4, 5.1, 0.0, 81.0, 46.0, 54.0, 0.0,19.0,0.0 +1,1,a-cure-i1,2020-21,Wareham - John William Decas,03100003, 0.9, 0.9, 4.9, 9.1, 14.0, 0.0, 70.1, 52.1, 47.9, 0.0,29.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Wareham - Minot Forest,03100017, 1.0, 1.0, 8.3, 11.6, 12.3, 0.0, 65.8, 53.5, 46.5, 0.0,34.2,0.0 +1,1,a-cure-i1,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 18.2, 12.1, 12.1, 0.0, 57.6, 42.4, 57.6, 0.0,42.4,0.0 +3.519061583577713,3.52,a-cure-i1,2020-21,Wareham - Wareham Middle,03100305, 1.5, 0.9, 8.6, 9.6, 13.3, 0.2, 65.9, 49.2, 50.8, 0.0,34.099999999999994,7.5 +5.2198581560283674,5,a-cure-i1,2020-21,Wareham - Wareham Senior High,03100505, 1.7, 0.9, 7.7, 6.8, 11.1, 0.0, 71.8, 51.1, 48.7, 0.2,28.200000000000003,9.2 +8.53932584269663,5,a-cure-i1,2020-21,Watertown - Cunniff,03140015, 0.0, 6.4, 3.7, 20.6, 4.9, 0.0, 64.4, 49.8, 50.2, 0.0,35.599999999999994,19.0 +1,1,a-cure-i1,2020-21,Watertown - Hosmer,03140020, 0.3, 8.1, 4.2, 15.4, 6.3, 0.2, 65.5, 48.4, 51.6, 0.0,34.5,0.0 +12.332378223495699,5,a-cure-i1,2020-21,Watertown - James Russell Lowell,03140025, 0.2, 3.7, 5.5, 18.5, 7.0, 0.0, 65.1, 50.1, 49.9, 0.0,34.900000000000006,26.9 +1,1,a-cure-i1,2020-21,Watertown - Watertown High,03140505, 0.6, 7.9, 4.7, 22.0, 3.9, 0.0, 60.9, 47.2, 52.8, 0.0,39.1,0.7 +2.197802197802198,2.2,a-cure-i1,2020-21,Watertown - Watertown Middle,03140305, 0.3, 8.4, 3.3, 19.1, 5.2, 0.0, 63.6, 47.7, 52.3, 0.0,36.4,5.0 +1,1,a-cure-i1,2020-21,Wayland - Claypit Hill School,03150005, 0.0, 11.3, 4.4, 5.4, 6.2, 0.2, 72.6, 51.4, 48.6, 0.0,27.400000000000006,3.4 +5.270588235294118,5,a-cure-i1,2020-21,Wayland - Happy Hollow School,03150015, 0.0, 10.2, 3.9, 4.4, 6.9, 0.0, 74.5, 46.3, 53.7, 0.0,25.5,8.4 +7.438596491228069,5,a-cure-i1,2020-21,Wayland - Loker School,03150020, 0.0, 16.5, 4.2, 6.7, 6.7, 0.0, 65.8, 50.7, 49.3, 0.0,34.2,15.9 +1,1,a-cure-i1,2020-21,Wayland - Wayland High School,03150505, 0.0, 19.1, 4.8, 4.2, 6.3, 0.1, 65.4, 49.9, 50.1, 0.0,34.599999999999994,3.2 +6.693409742120344,5,a-cure-i1,2020-21,Wayland - Wayland Middle School,03150305, 0.0, 16.2, 7.0, 5.0, 6.5, 0.2, 65.1, 51.9, 48.1, 0.0,34.900000000000006,14.600000000000001 +1,1,a-cure-i1,2020-21,Webster - Bartlett High School,03160505, 0.3, 2.3, 7.2, 30.8, 7.7, 0.3, 51.5, 51.8, 47.9, 0.3,48.5,3.0 +1,1,a-cure-i1,2020-21,Webster - Park Avenue Elementary,03160015, 0.0, 1.2, 6.2, 33.1, 6.5, 0.0, 52.8, 46.7, 53.1, 0.1,47.2,0.0 +1,1,a-cure-i1,2020-21,Webster - Webster Middle School,03160315, 0.2, 1.8, 5.1, 33.3, 6.0, 0.0, 53.8, 46.4, 53.6, 0.0,46.2,0.0 +7.696202531645571,5,a-cure-i1,2020-21,Wellesley - Ernest F Upham,03170050, 0.0, 14.6, 8.9, 5.1, 3.2, 0.0, 68.4, 48.7, 51.3, 0.0,31.599999999999994,15.2 +7.293023255813954,5,a-cure-i1,2020-21,Wellesley - Hunnewell,03170025, 0.0, 5.7, 3.5, 7.0, 5.3, 0.0, 78.5, 50.9, 49.1, 0.0,21.5,9.8 +1.9384615384615385,1.94,a-cure-i1,2020-21,Wellesley - John D Hardy,03170020, 0.0, 27.4, 1.3, 10.3, 13.0, 0.0, 48.0, 52.0, 48.0, 0.0,52.0,6.3 +1,1,a-cure-i1,2020-21,Wellesley - Joseph E Fiske,03170015, 0.0, 18.6, 4.2, 6.4, 6.8, 0.0, 64.0, 49.6, 50.4, 0.0,36.0,0.0 +3.1877394636015333,3.19,a-cure-i1,2020-21,Wellesley - Katharine Lee Bates,03170005, 0.0, 10.6, 3.5, 2.1, 9.9, 0.0, 73.9, 50.4, 49.6, 0.0,26.099999999999994,5.2 +1,1,a-cure-i1,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 17.2, 1.6, 6.3, 7.8, 0.0, 67.2, 37.5, 62.5, 0.0,32.8,0.0 +4.439306358381503,4.44,a-cure-i1,2020-21,Wellesley - Schofield,03170045, 0.3, 18.8, 3.9, 3.6, 7.8, 0.3, 65.4, 54.0, 46.0, 0.0,34.599999999999994,9.6 +1.9484777517564402,1.95,a-cure-i1,2020-21,Wellesley - Sprague Elementary School,03170048, 0.0, 20.3, 2.8, 5.4, 14.2, 0.0, 57.3, 49.1, 50.9, 0.0,42.7,5.2 +4.184615384615385,4.18,a-cure-i1,2020-21,Wellesley - Wellesley Middle,03170305, 0.0, 16.4, 4.2, 5.3, 6.6, 0.0, 67.5, 54.1, 45.8, 0.1,32.5,8.5 +4.228571428571429,4.23,a-cure-i1,2020-21,Wellesley - Wellesley Sr High,03170505, 0.1, 13.1, 3.7, 5.4, 5.8, 0.0, 72.0, 48.8, 51.2, 0.0,28.0,7.4 +1,1,a-cure-i1,2020-21,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.0, 0.0, 3.9, 13.6, 0.0, 81.6, 42.7, 57.3, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2020-21,West Boylston - Major Edwards Elementary,03220005, 0.0, 1.8, 4.4, 11.4, 4.9, 0.3, 77.2, 45.3, 54.7, 0.0,22.799999999999997,0.0 +5.971291866028707,5,a-cure-i1,2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 0.2, 2.2, 3.2, 11.6, 3.6, 0.2, 79.1, 54.6, 45.4, 0.0,20.900000000000006,7.800000000000001 +1,1,a-cure-i1,2020-21,West Bridgewater - Howard School,03230305, 0.3, 1.4, 6.5, 4.8, 4.1, 0.0, 82.9, 50.2, 49.8, 0.0,17.099999999999994,0.0 +1,1,a-cure-i1,2020-21,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.7, 5.6, 5.6, 6.6, 0.0, 81.6, 47.2, 52.8, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2020-21,West Bridgewater - Spring Street School,03230005, 0.0, 0.6, 7.6, 7.0, 5.7, 0.0, 79.0, 49.7, 50.3, 0.0,21.0,0.0 +1,1,a-cure-i1,2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.2, 1.1, 6.3, 4.9, 4.2, 0.2, 83.2, 52.0, 48.0, 0.0,16.799999999999997,2.1 +1,1,a-cure-i1,2020-21,West Springfield - Cowing Early Childhood,03320001, 0.0, 9.8, 3.7, 36.6, 4.9, 0.0, 45.1, 25.6, 74.4, 0.0,54.9,0.0 +1,1,a-cure-i1,2020-21,West Springfield - John Ashley,03320005, 0.0, 6.2, 4.0, 25.2, 4.9, 0.0, 59.7, 47.3, 52.7, 0.0,40.3,0.0 +2.924137931034483,2.92,a-cure-i1,2020-21,West Springfield - John R Fausey,03320010, 0.0, 5.5, 1.7, 17.5, 4.3, 0.0, 71.0, 53.7, 46.3, 0.0,29.0,5.3 +1,1,a-cure-i1,2020-21,West Springfield - Memorial,03320025, 0.0, 10.3, 5.4, 37.0, 4.3, 0.0, 42.9, 50.5, 49.5, 0.0,57.1,0.0 +1,1,a-cure-i1,2020-21,West Springfield - Mittineague,03320030, 0.0, 4.3, 2.5, 23.5, 3.1, 0.0, 66.7, 50.0, 50.0, 0.0,33.3,0.0 +1,1,a-cure-i1,2020-21,West Springfield - Philip G Coburn,03320007, 0.2, 18.5, 4.7, 23.4, 3.2, 0.0, 50.1, 53.3, 46.7, 0.0,49.9,0.0 +1,1,a-cure-i1,2020-21,West Springfield - Tatham,03320040, 0.0, 4.3, 0.8, 11.8, 3.9, 0.0, 79.1, 46.9, 53.1, 0.0,20.900000000000006,0.0 +1,1,a-cure-i1,2020-21,West Springfield - West Springfield High,03320505, 0.2, 7.7, 3.8, 20.9, 2.1, 0.0, 65.3, 48.0, 52.0, 0.0,34.7,4.7 +1,1,a-cure-i1,2020-21,West Springfield - West Springfield Middle,03320305, 0.0, 9.1, 4.1, 18.9, 3.9, 0.1, 63.9, 47.4, 52.6, 0.0,36.1,2.7 +1,1,a-cure-i1,2020-21,Westborough - Annie E Fales,03210010, 0.0, 41.8, 1.9, 3.1, 2.8, 0.3, 50.0, 51.9, 48.1, 0.0,50.0,0.0 +1,1,a-cure-i1,2020-21,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 43.3, 2.4, 14.3, 3.1, 0.0, 36.9, 48.3, 51.7, 0.0,63.1,0.0 +1,1,a-cure-i1,2020-21,Westborough - J Harding Armstrong,03210005, 0.0, 39.4, 1.9, 9.9, 2.9, 0.0, 45.8, 45.6, 54.4, 0.0,54.2,0.0 +1,1,a-cure-i1,2020-21,Westborough - Mill Pond School,03210045, 0.2, 37.1, 2.4, 8.0, 2.7, 0.0, 49.6, 48.6, 51.4, 0.0,50.4,0.0 +1,1,a-cure-i1,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 34.4, 2.7, 6.8, 2.7, 0.0, 53.4, 52.7, 47.3, 0.0,46.6,4.6 +2.5769230769230766,2.58,a-cure-i1,2020-21,Westborough - Westborough High,03210505, 0.0, 28.2, 1.6, 7.8, 3.9, 0.2, 58.4, 49.7, 50.1, 0.2,41.6,6.699999999999999 +1,1,a-cure-i1,2020-21,Westfield - Abner Gibbs,03250020, 0.0, 9.0, 3.0, 24.0, 4.5, 0.0, 59.5, 44.5, 55.5, 0.0,40.5,0.0 +1,1,a-cure-i1,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 2.5, 4.2, 24.6, 5.9, 0.0, 62.7, 42.4, 57.6, 0.0,37.3,0.0 +2.3220675944333995,2.32,a-cure-i1,2020-21,Westfield - Franklin Ave,03250015, 0.0, 4.7, 3.1, 36.1, 6.3, 0.0, 49.7, 52.9, 47.1, 0.0,50.3,7.3 +1,1,a-cure-i1,2020-21,Westfield - Highland,03250025, 0.0, 3.1, 0.0, 11.3, 2.5, 0.0, 83.1, 50.2, 49.8, 0.0,16.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Westfield - Munger Hill,03250033, 0.0, 4.0, 2.8, 15.0, 2.3, 0.0, 76.0, 49.4, 50.6, 0.0,24.0,0.0 +1,1,a-cure-i1,2020-21,Westfield - Paper Mill,03250036, 0.0, 1.3, 3.8, 22.5, 7.9, 0.3, 64.1, 49.8, 50.2, 0.0,35.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Westfield - Southampton Road,03250040, 0.0, 3.5, 0.7, 14.2, 6.9, 0.0, 74.7, 46.9, 53.1, 0.0,25.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Westfield - Westfield High,03250505, 0.1, 3.2, 2.7, 16.0, 2.4, 0.0, 75.6, 53.4, 46.6, 0.0,24.400000000000006,1.2 +1,1,a-cure-i1,2020-21,Westfield - Westfield Intermediate School,03250075, 0.1, 3.3, 3.0, 17.3, 3.6, 0.0, 72.6, 47.6, 52.4, 0.0,27.400000000000006,1.9 +1,1,a-cure-i1,2020-21,Westfield - Westfield Middle School,03250310, 0.1, 3.1, 1.8, 18.8, 2.7, 0.0, 73.4, 49.0, 51.0, 0.0,26.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Westfield - Westfield Technical Academy,03250605, 0.2, 1.0, 1.4, 11.6, 1.7, 0.2, 83.9, 35.1, 64.9, 0.0,16.099999999999994,4.300000000000001 +1,1,a-cure-i1,2020-21,Westford - Abbot Elementary,03260004, 0.0, 26.1, 0.6, 1.1, 3.6, 0.0, 68.6, 47.9, 52.1, 0.0,31.400000000000006,0.0 +2.1333333333333333,2.13,a-cure-i1,2020-21,Westford - Blanchard Middle,03260310, 0.6, 33.0, 2.6, 3.0, 4.3, 0.0, 56.5, 51.2, 48.8, 0.0,43.5,5.8 +1,1,a-cure-i1,2020-21,Westford - Col John Robinson,03260025, 0.0, 32.6, 2.9, 1.4, 7.5, 0.0, 55.6, 48.0, 52.0, 0.0,44.4,0.0 +1,1,a-cure-i1,2020-21,Westford - Day Elementary,03260007, 0.0, 38.8, 1.8, 3.0, 6.1, 0.0, 50.3, 53.9, 46.1, 0.0,49.7,0.0 +1,1,a-cure-i1,2020-21,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 29.9, 0.9, 3.7, 3.7, 0.0, 61.8, 50.0, 50.0, 0.0,38.2,0.0 +1,1,a-cure-i1,2020-21,Westford - Nabnasset,03260015, 0.0, 17.2, 0.3, 0.6, 3.9, 0.0, 77.9, 52.9, 47.1, 0.0,22.099999999999994,0.0 +1.7254901960784315,1.73,a-cure-i1,2020-21,Westford - Rita E. Miller Elementary School,03260055, 0.0, 36.9, 2.1, 6.9, 5.2, 0.0, 49.0, 47.6, 52.4, 0.0,51.0,5.5 +1,1,a-cure-i1,2020-21,Westford - Stony Brook School,03260330, 0.2, 27.8, 0.7, 3.0, 3.7, 0.0, 64.7, 51.4, 48.3, 0.3,35.3,2.4 +3.313609467455622,3.31,a-cure-i1,2020-21,Westford - Westford Academy,03260505, 0.1, 27.4, 1.2, 1.8, 3.3, 0.1, 66.2, 49.2, 50.8, 0.0,33.8,7.0 +1,1,a-cure-i1,2020-21,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 5.8, 2.9, 0.0, 91.3, 40.4, 59.6, 0.0,8.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Weston - Country,03300010, 0.0, 16.4, 7.9, 5.5, 4.8, 0.0, 65.5, 53.6, 46.4, 0.0,34.5,3.9 +2.1610389610389613,2.16,a-cure-i1,2020-21,Weston - Field Elementary School,03300012, 0.0, 19.2, 7.0, 7.0, 4.9, 0.3, 61.5, 49.7, 50.3, 0.0,38.5,5.2 +7.594029850746269,5,a-cure-i1,2020-21,Weston - Weston High,03300505, 0.3, 18.1, 5.6, 4.0, 5.6, 0.0, 66.5, 48.9, 51.1, 0.0,33.5,15.9 +3.458333333333334,3.46,a-cure-i1,2020-21,Weston - Weston Middle,03300305, 0.0, 17.5, 6.3, 8.2, 6.5, 0.0, 61.6, 46.3, 53.7, 0.0,38.4,8.3 +1,1,a-cure-i1,2020-21,Weston - Woodland,03300015, 0.0, 13.8, 8.7, 10.2, 3.6, 0.0, 63.8, 48.0, 52.0, 0.0,36.2,0.0 +1,1,a-cure-i1,2020-21,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.6, 4.9, 2.0, 0.0, 92.5, 51.9, 48.1, 0.0,7.5,0.0 +1,1,a-cure-i1,2020-21,Westport - Westport Elementary,03310030, 0.2, 0.2, 0.7, 4.1, 3.9, 0.0, 90.9, 45.2, 54.8, 0.0,9.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Westport - Westport Junior/Senior High School,03310515, 0.2, 0.7, 0.4, 3.5, 4.9, 0.0, 90.4, 45.1, 54.7, 0.2,9.599999999999994,0.0 +7.194630872483223,5,a-cure-i1,2020-21,Westwood - Deerfield School,03350010, 0.0, 12.0, 4.2, 5.2, 8.4, 0.0, 70.2, 44.5, 55.5, 0.0,29.799999999999997,13.4 +5.19344262295082,5,a-cure-i1,2020-21,Westwood - Downey,03350012, 0.0, 19.7, 0.3, 4.7, 5.4, 0.3, 69.5, 42.7, 57.3, 0.0,30.5,9.9 +1,1,a-cure-i1,2020-21,Westwood - E W Thurston Middle,03350305, 0.1, 11.6, 2.0, 6.1, 3.8, 0.0, 76.3, 46.6, 53.4, 0.0,23.700000000000003,1.9 +1,1,a-cure-i1,2020-21,Westwood - Martha Jones,03350017, 0.0, 6.6, 0.4, 3.7, 9.6, 0.0, 79.7, 50.9, 49.1, 0.0,20.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Westwood - Paul Hanlon,03350015, 0.0, 16.7, 1.6, 6.8, 4.7, 0.0, 70.3, 49.0, 51.0, 0.0,29.700000000000003,0.0 +6.583732057416266,5,a-cure-i1,2020-21,Westwood - Westwood High,03350505, 0.0, 11.0, 3.3, 4.1, 2.5, 0.0, 79.1, 52.9, 47.0, 0.1,20.900000000000006,8.6 +1,1,a-cure-i1,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, 5.3, 2.6, 7.9, 0.0, 0.0, 84.2, 34.2, 65.8, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Westwood - William E Sheehan,03350025, 0.0, 9.7, 0.7, 3.8, 8.3, 0.0, 77.5, 47.8, 52.2, 0.0,22.5,0.0 +1,1,a-cure-i1,2020-21,Weymouth - Abigail Adams Middle School,03360310, 0.2, 6.6, 7.4, 14.0, 4.4, 0.1, 67.3, 52.6, 47.4, 0.0,32.7,3.2 +1,1,a-cure-i1,2020-21,Weymouth - Academy Avenue,03360005, 0.0, 9.1, 5.0, 9.1, 6.5, 0.6, 69.8, 48.7, 51.3, 0.0,30.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Weymouth - Frederick C Murphy,03360050, 0.0, 6.6, 5.2, 18.5, 4.1, 0.0, 65.7, 43.5, 56.5, 0.0,34.3,0.0 +3.6996996996997003,3.7,a-cure-i1,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 13.3, 5.0, 4.2, 10.8, 0.0, 66.7, 35.0, 65.0, 0.0,33.3,7.7 +1,1,a-cure-i1,2020-21,Weymouth - Lawrence W Pingree,03360065, 0.0, 3.2, 6.8, 9.1, 5.9, 0.0, 74.9, 53.9, 46.1, 0.0,25.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Weymouth - Ralph Talbot,03360085, 0.0, 6.0, 6.8, 12.0, 4.5, 0.0, 70.7, 49.6, 50.4, 0.0,29.299999999999997,0.0 +1,1,a-cure-i1,2020-21,Weymouth - Thomas V Nash,03360060, 0.0, 4.9, 4.4, 6.3, 5.4, 0.0, 79.0, 54.1, 45.9, 0.0,21.0,0.0 +1,1,a-cure-i1,2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.6, 18.5, 3.6, 12.9, 3.4, 0.0, 61.1, 47.9, 52.1, 0.0,38.9,0.0 +1,1,a-cure-i1,2020-21,Weymouth - Wessagusset,03360110, 0.7, 4.3, 3.7, 6.6, 4.3, 0.0, 80.4, 48.5, 51.5, 0.0,19.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Weymouth - Weymouth High School,03360505, 0.2, 5.1, 7.5, 11.2, 3.8, 0.1, 72.2, 50.3, 49.6, 0.1,27.799999999999997,2.4 +1,1,a-cure-i1,2020-21,Weymouth - William Seach,03360080, 0.0, 10.1, 18.3, 24.9, 7.1, 0.0, 39.7, 51.3, 48.7, 0.0,60.3,0.0 +1,1,a-cure-i1,2020-21,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.9, 3.4, 1.7, 0.0, 94.0, 50.0, 50.0, 0.0,6.0,0.0 +1,1,a-cure-i1,2020-21,Whitman-Hanson - Hanson Middle School,07800315, 0.4, 1.8, 0.7, 4.8, 2.4, 0.0, 89.9, 50.0, 50.0, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Whitman-Hanson - Indian Head,07800035, 0.2, 1.5, 1.5, 4.7, 3.0, 0.0, 89.1, 48.3, 51.7, 0.0,10.900000000000006,1.2 +1,1,a-cure-i1,2020-21,Whitman-Hanson - John H Duval,07800030, 0.2, 1.9, 4.3, 9.8, 4.6, 0.0, 79.1, 49.2, 50.8, 0.0,20.900000000000006,1.5 +1,1,a-cure-i1,2020-21,Whitman-Hanson - Louise A Conley,07800010, 0.6, 1.8, 3.4, 5.6, 3.2, 0.0, 85.3, 49.2, 50.8, 0.0,14.700000000000003,1.2 +1,1,a-cure-i1,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 3.8, 3.8, 5.0, 2.5, 0.0, 85.0, 31.3, 68.8, 0.0,15.0,0.0 +1,1,a-cure-i1,2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.5, 0.7, 3.6, 5.0, 2.4, 0.1, 87.6, 48.0, 52.0, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Whitman-Hanson - Whitman Middle,07800310, 0.7, 1.5, 5.1, 7.3, 3.3, 0.2, 82.0, 50.5, 49.5, 0.0,18.0,3.8 +1,1,a-cure-i1,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.5, 1.5, 2.9, 25.5, 3.4, 0.0, 66.3, 46.9, 53.1, 0.0,33.7,1.7 +1,1,a-cure-i1,2020-21,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 3.4, 5.0, 1.7, 0.0, 89.9, 48.7, 51.3, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Wilmington - Boutwell,03420005, 0.0, 10.7, 1.8, 1.8, 3.6, 0.0, 82.1, 50.0, 50.0, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Wilmington - North Intermediate,03420060, 0.0, 5.7, 1.2, 2.8, 4.1, 0.0, 86.2, 49.6, 50.4, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Wilmington - Shawsheen Elementary,03420025, 0.0, 7.3, 1.9, 5.0, 5.0, 0.3, 80.4, 46.1, 53.9, 0.0,19.599999999999994,0.0 +1,1,a-cure-i1,2020-21,Wilmington - West Intermediate,03420080, 0.5, 8.2, 0.9, 4.5, 2.3, 0.0, 83.6, 49.1, 50.9, 0.0,16.400000000000006,0.0 +8.847058823529412,5,a-cure-i1,2020-21,Wilmington - Wildwood,03420015, 1.0, 4.0, 0.0, 4.0, 8.0, 0.0, 83.0, 46.0, 54.0, 0.0,17.0,9.4 +1,1,a-cure-i1,2020-21,Wilmington - Wilmington High,03420505, 0.1, 5.4, 1.5, 4.2, 4.1, 0.0, 84.6, 51.4, 48.3, 0.3,15.400000000000006,4.6 +1,1,a-cure-i1,2020-21,Wilmington - Wilmington Middle School,03420330, 0.0, 5.2, 1.5, 5.5, 2.8, 0.0, 85.0, 49.4, 50.6, 0.0,15.0,0.0 +1,1,a-cure-i1,2020-21,Wilmington - Woburn Street,03420020, 0.0, 5.5, 1.9, 4.4, 5.2, 0.0, 83.0, 46.8, 53.2, 0.0,17.0,0.0 +1,1,a-cure-i1,2020-21,Winchendon - Memorial,03430040, 0.0, 1.2, 1.6, 4.3, 3.5, 0.0, 89.5, 50.0, 50.0, 0.0,10.5,0.0 +1,1,a-cure-i1,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 5.7, 0.0, 5.7, 0.0, 88.6, 45.7, 54.3, 0.0,11.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Winchendon - Murdock High School,03430515, 0.4, 2.3, 1.5, 7.3, 3.4, 0.4, 84.7, 49.2, 50.8, 0.0,15.299999999999997,3.2 +1,1,a-cure-i1,2020-21,Winchendon - Murdock Middle School,03430315, 0.0, 2.9, 3.6, 7.3, 2.2, 0.4, 83.6, 46.7, 53.3, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Winchendon - Toy Town Elementary,03430050, 0.0, 1.0, 0.3, 8.2, 4.8, 0.3, 85.3, 41.0, 58.7, 0.3,14.700000000000003,0.0 +1,1,a-cure-i1,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 1.8, 3.6, 3.6, 0.0, 91.1, 42.9, 57.1, 0.0,8.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Winchester - Ambrose Elementary,03440045, 0.0, 7.4, 0.0, 0.9, 6.8, 0.0, 84.9, 51.0, 49.0, 0.0,15.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Winchester - Lincoln Elementary,03440005, 0.0, 12.0, 0.0, 3.3, 8.1, 0.0, 76.6, 49.9, 50.1, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2020-21,Winchester - Lynch Elementary,03440020, 0.0, 31.4, 2.0, 4.9, 7.1, 0.0, 54.6, 43.0, 57.0, 0.0,45.4,0.3 +1,1,a-cure-i1,2020-21,Winchester - McCall Middle,03440305, 0.1, 17.8, 1.4, 3.6, 6.6, 0.0, 70.5, 49.2, 50.8, 0.0,29.5,3.9 +1,1,a-cure-i1,2020-21,Winchester - Muraco Elementary,03440040, 0.3, 21.8, 1.1, 2.2, 9.3, 0.0, 65.4, 51.8, 48.0, 0.3,34.599999999999994,0.6 +1,1,a-cure-i1,2020-21,Winchester - Vinson-Owen Elementary,03440025, 0.0, 22.3, 1.0, 3.0, 8.9, 0.0, 64.8, 51.6, 48.4, 0.0,35.2,2.9 +1,1,a-cure-i1,2020-21,Winchester - Winchester High School,03440505, 0.4, 18.0, 1.6, 3.6, 3.7, 0.1, 72.6, 51.6, 48.3, 0.1,27.400000000000006,1.2 +1,1,a-cure-i1,2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.5, 1.5, 17.1, 1.7, 0.0, 79.2, 50.9, 49.1, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.5, 1.1, 14.2, 1.1, 0.0, 83.1, 55.6, 44.4, 0.0,16.900000000000006,0.0 +4.244897959183675,4.24,a-cure-i1,2020-21,Winthrop - Winthrop High School,03460505, 0.0, 1.1, 0.9, 16.2, 1.4, 0.0, 80.4, 47.7, 52.3, 0.0,19.599999999999994,5.2 +1,1,a-cure-i1,2020-21,Winthrop - Winthrop Middle School,03460305, 0.2, 0.4, 2.0, 17.1, 1.5, 0.2, 78.5, 50.0, 50.0, 0.0,21.5,2.6 +1,1,a-cure-i1,2020-21,Woburn - Clyde Reeves,03470040, 1.1, 8.3, 7.5, 5.1, 4.6, 0.0, 73.4, 49.5, 50.5, 0.0,26.599999999999994,4.0 +3.5555555555555562,3.56,a-cure-i1,2020-21,Woburn - Daniel L Joyce Middle School,03470410, 0.6, 3.2, 6.5, 14.7, 3.8, 0.0, 71.2, 47.9, 52.1, 0.0,28.799999999999997,6.4 +1,1,a-cure-i1,2020-21,Woburn - Goodyear Elementary School,03470005, 0.4, 8.6, 5.4, 12.5, 4.7, 0.0, 68.5, 49.5, 50.5, 0.0,31.5,0.0 +1,1,a-cure-i1,2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 5.7, 2.2, 6.5, 2.7, 0.0, 82.8, 46.9, 53.1, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2020-21,Woburn - John F Kennedy Middle School,03470405, 0.0, 7.3, 9.6, 11.2, 4.3, 0.4, 67.3, 54.3, 45.7, 0.0,32.7,3.8 +1,1,a-cure-i1,2020-21,Woburn - Linscott-Rumford,03470025, 0.5, 18.8, 9.6, 5.1, 5.6, 0.5, 59.9, 54.3, 45.7, 0.0,40.1,0.0 +1,1,a-cure-i1,2020-21,Woburn - Malcolm White,03470055, 2.5, 4.2, 4.6, 18.4, 4.9, 0.4, 65.0, 51.9, 48.1, 0.0,35.0,0.0 +1,1,a-cure-i1,2020-21,Woburn - Mary D Altavesta,03470065, 0.4, 19.7, 10.9, 13.8, 3.8, 0.4, 51.0, 48.5, 51.5, 0.0,49.0,3.5 +2.237467018469657,2.24,a-cure-i1,2020-21,Woburn - Shamrock,03470043, 1.1, 5.5, 12.5, 15.8, 2.9, 0.0, 62.1, 47.4, 52.6, 0.0,37.9,5.3 +3.089655172413793,3.09,a-cure-i1,2020-21,Woburn - Woburn High,03470505, 0.4, 6.9, 6.5, 12.8, 2.3, 0.2, 71.0, 50.6, 49.3, 0.1,29.0,5.6 +1,1,a-cure-i1,2020-21,Worcester - Belmont Street Community,03480020, 0.0, 7.5, 19.1, 50.5, 3.6, 0.0, 19.3, 47.9, 52.1, 0.0,80.7,0.0 +2.9027576197387517,2.9,a-cure-i1,2020-21,Worcester - Burncoat Middle School,03480405, 0.0, 5.4, 15.7, 42.0, 5.8, 0.0, 31.1, 50.3, 49.7, 0.0,68.9,12.5 +2.716119828815977,2.72,a-cure-i1,2020-21,Worcester - Burncoat Senior High,03480503, 0.2, 3.4, 19.3, 42.6, 4.7, 0.0, 29.9, 49.3, 50.7, 0.0,70.1,11.899999999999999 +1,1,a-cure-i1,2020-21,Worcester - Burncoat Street,03480035, 0.0, 3.5, 13.1, 55.4, 4.2, 0.0, 23.8, 53.1, 46.9, 0.0,76.2,0.0 +1,1,a-cure-i1,2020-21,Worcester - Canterbury,03480045, 0.3, 14.0, 13.0, 52.3, 1.7, 0.0, 18.7, 48.0, 52.0, 0.0,81.3,0.0 +1,1,a-cure-i1,2020-21,Worcester - Chandler Elementary Community,03480050, 0.4, 6.4, 14.1, 60.5, 3.3, 0.0, 15.2, 47.7, 52.3, 0.0,84.8,0.0 +7.54066985645933,5,a-cure-i1,2020-21,Worcester - Chandler Magnet,03480052, 0.0, 2.1, 3.8, 76.2, 1.5, 0.0, 16.4, 51.6, 48.4, 0.0,83.6,39.4 +1,1,a-cure-i1,2020-21,Worcester - City View,03480053, 0.0, 2.8, 16.0, 51.3, 5.6, 0.0, 24.2, 49.6, 50.4, 0.0,75.8,4.0 +3.760683760683761,3.76,a-cure-i1,2020-21,Worcester - Claremont Academy,03480350, 0.2, 8.4, 12.1, 71.4, 1.5, 0.0, 6.4, 47.3, 52.7, 0.0,93.6,22.0 +2.5064782096584217,2.51,a-cure-i1,2020-21,Worcester - Clark St Community,03480055, 0.4, 5.9, 19.2, 54.8, 4.6, 0.0, 15.1, 54.0, 46.0, 0.0,84.9,13.3 +1.9225634178905207,1.92,a-cure-i1,2020-21,Worcester - Columbus Park,03480060, 1.3, 8.1, 12.8, 50.1, 2.6, 0.0, 25.1, 46.7, 53.3, 0.0,74.9,9.0 +2.1853658536585368,2.19,a-cure-i1,2020-21,Worcester - Doherty Memorial High,03480512, 0.3, 6.3, 14.2, 36.1, 4.6, 0.0, 38.5, 43.4, 56.6, 0.0,61.5,8.4 +1.9587628865979383,1.96,a-cure-i1,2020-21,Worcester - Elm Park Community,03480095, 0.0, 2.2, 13.5, 58.9, 3.0, 0.0, 22.4, 49.9, 50.1, 0.0,77.6,9.5 +1,1,a-cure-i1,2020-21,Worcester - Flagg Street,03480090, 0.3, 3.5, 6.1, 12.8, 4.6, 0.0, 72.8, 51.9, 48.1, 0.0,27.200000000000003,0.0 +3.0321489001692044,3.03,a-cure-i1,2020-21,Worcester - Forest Grove Middle,03480415, 0.2, 5.2, 14.3, 34.6, 4.9, 0.0, 40.9, 49.1, 50.9, 0.0,59.1,11.2 +1,1,a-cure-i1,2020-21,Worcester - Francis J McGrath Elementary,03480177, 0.0, 5.4, 20.5, 37.1, 8.9, 0.0, 28.1, 48.7, 51.3, 0.0,71.9,0.0 +1.4822888283378746,1.48,a-cure-i1,2020-21,Worcester - Gates Lane,03480110, 0.2, 13.2, 16.3, 38.6, 5.2, 0.0, 26.6, 43.4, 56.6, 0.0,73.4,6.8 +1.7233560090702946,1.72,a-cure-i1,2020-21,Worcester - Goddard School/Science Technical,03480100, 0.6, 9.8, 11.2, 62.4, 4.2, 0.0, 11.8, 50.3, 49.7, 0.0,88.2,9.5 +1.105606258148631,1.11,a-cure-i1,2020-21,Worcester - Grafton Street,03480115, 0.3, 4.0, 19.1, 49.3, 4.0, 0.0, 23.3, 46.9, 53.1, 0.0,76.7,5.3 +3.1439688715953307,3.14,a-cure-i1,2020-21,Worcester - Head Start,03480002, 2.8, 4.4, 33.2, 6.9, 4.1, 0.0, 48.6, 50.8, 49.2, 0.0,51.4,10.1 +4.086330935251798,4.09,a-cure-i1,2020-21,Worcester - Heard Street,03480136, 0.0, 7.7, 14.9, 27.0, 6.0, 0.0, 44.4, 52.0, 48.0, 0.0,55.6,14.2 +1,1,a-cure-i1,2020-21,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 3.1, 32.4, 47.5, 5.0, 0.0, 12.0, 52.2, 47.8, 0.0,88.0,0.0 +3.937608318890814,3.94,a-cure-i1,2020-21,Worcester - Lake View,03480145, 0.3, 7.8, 18.8, 22.9, 7.8, 0.0, 42.3, 48.6, 51.4, 0.0,57.7,14.2 +1,1,a-cure-i1,2020-21,Worcester - Lincoln Street,03480160, 0.0, 4.8, 22.1, 55.4, 2.8, 0.0, 14.9, 45.8, 54.2, 0.0,85.1,0.0 +1.9485420240137221,1.95,a-cure-i1,2020-21,Worcester - May Street,03480175, 0.0, 9.5, 14.1, 22.3, 12.0, 0.4, 41.7, 49.1, 50.9, 0.0,58.3,7.1 +2.8744588744588744,2.87,a-cure-i1,2020-21,Worcester - Midland Street,03480185, 0.0, 9.0, 7.1, 21.4, 8.6, 0.0, 53.8, 47.1, 52.9, 0.0,46.2,8.3 +1,1,a-cure-i1,2020-21,Worcester - Nelson Place,03480200, 0.0, 7.9, 14.8, 19.0, 7.0, 0.0, 51.3, 39.8, 60.2, 0.0,48.7,3.0 +4.431137724550898,4.43,a-cure-i1,2020-21,Worcester - Norrback Avenue,03480202, 0.2, 3.9, 26.6, 30.7, 5.4, 0.0, 33.2, 46.3, 53.7, 0.0,66.8,18.5 +4.952841596130592,4.95,a-cure-i1,2020-21,Worcester - North High,03480515, 0.1, 5.5, 20.6, 53.2, 3.3, 0.0, 17.3, 48.7, 51.3, 0.0,82.7,25.6 +1.8420348058902274,1.84,a-cure-i1,2020-21,Worcester - Quinsigamond,03480210, 0.4, 4.2, 18.0, 47.4, 4.7, 0.0, 25.3, 46.4, 53.6, 0.0,74.7,8.6 +4.601864181091878,4.6,a-cure-i1,2020-21,Worcester - Rice Square,03480215, 0.0, 6.7, 23.0, 41.1, 4.3, 0.0, 24.9, 50.8, 49.2, 0.0,75.1,21.6 +4.2683706070287535,4.27,a-cure-i1,2020-21,Worcester - Roosevelt,03480220, 0.3, 3.5, 23.8, 29.6, 5.3, 0.2, 37.4, 48.9, 51.1, 0.0,62.6,16.7 +3.0426908150064684,3.04,a-cure-i1,2020-21,Worcester - South High Community,03480520, 0.1, 11.4, 17.5, 45.1, 3.2, 0.0, 22.7, 49.3, 50.7, 0.0,77.3,14.7 +3.4802919708029196,3.48,a-cure-i1,2020-21,Worcester - Sullivan Middle,03480423, 0.2, 9.1, 15.3, 38.9, 5.0, 0.0, 31.5, 49.3, 50.7, 0.0,68.5,14.9 +1,1,a-cure-i1,2020-21,Worcester - Tatnuck,03480230, 0.3, 6.0, 20.4, 25.4, 5.0, 0.3, 42.6, 46.9, 53.1, 0.0,57.4,0.0 +3.603361344537815,3.6,a-cure-i1,2020-21,Worcester - Thorndyke Road,03480235, 0.0, 6.6, 18.5, 31.2, 3.2, 0.0, 40.5, 50.0, 50.0, 0.0,59.5,13.4 +0.9661835748792271,1,a-cure-i1,2020-21,Worcester - Union Hill School,03480240, 0.0, 1.8, 13.6, 64.0, 3.3, 0.0, 17.2, 52.4, 47.6, 0.0,82.8,5.0 +1.2538631346578366,1.25,a-cure-i1,2020-21,Worcester - University Pk Campus School,03480285, 0.9, 17.6, 12.4, 56.2, 3.4, 0.0, 9.4, 51.1, 48.9, 0.0,90.6,7.1 +1,1,a-cure-i1,2020-21,Worcester - Vernon Hill School,03480280, 0.2, 1.9, 25.7, 51.0, 2.8, 0.0, 18.4, 47.8, 52.2, 0.0,81.6,4.0 +1,1,a-cure-i1,2020-21,Worcester - Wawecus Road School,03480026, 0.0, 9.4, 11.8, 44.9, 4.7, 0.0, 29.1, 48.0, 52.0, 0.0,70.9,0.0 +1.9322033898305084,1.93,a-cure-i1,2020-21,Worcester - West Tatnuck,03480260, 0.9, 5.9, 12.2, 20.5, 7.7, 0.0, 52.8, 46.6, 53.4, 0.0,47.2,5.7 +2.5245202558635396,2.52,a-cure-i1,2020-21,Worcester - Woodland Academy,03480030, 0.4, 7.7, 9.7, 73.6, 2.4, 0.0, 6.2, 51.2, 48.8, 0.0,93.8,14.8 +1,1,a-cure-i1,2020-21,Worcester - Worcester Arts Magnet School,03480225, 0.3, 7.6, 20.1, 20.9, 5.2, 0.0, 45.9, 50.8, 49.2, 0.0,54.1,0.0 +4.758441558441558,4.76,a-cure-i1,2020-21,Worcester - Worcester East Middle,03480420, 0.0, 5.0, 19.2, 48.2, 4.5, 0.1, 23.0, 49.6, 50.4, 0.0,77.0,22.9 +1.6626506024096386,1.66,a-cure-i1,2020-21,Worcester - Worcester Technical High,03480605, 0.1, 7.8, 17.1, 37.9, 3.4, 0.1, 33.6, 55.2, 44.8, 0.0,66.4,6.9 +1,1,a-cure-i1,2020-21,Worthington - R. H. Conwell,03490010, 1.6, 0.0, 0.0, 4.8, 1.6, 0.0, 92.1, 54.0, 46.0, 0.0,7.900000000000006,0.0 +1,1,a-cure-i1,2020-21,Wrentham - Charles E Roderick,03500010, 0.8, 2.7, 1.6, 6.7, 4.0, 0.3, 83.9, 50.7, 49.3, 0.0,16.099999999999994,0.0 +1,1,a-cure-i1,2020-21,Wrentham - Delaney,03500003, 0.0, 3.1, 1.6, 3.9, 5.1, 0.0, 86.3, 49.7, 50.3, 0.0,13.700000000000003,0.0 +1.3930348258706466,1.39,a-cure-i1,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.4, 3.5, 52.4, 20.8, 3.2, 0.1, 19.6, 53.8, 46.2, 0.0,80.4,7.0 +1,1,a-cure-i1,2019-20,Abington - Abington Early Education Program,00010001, 0.0, 4.5, 10.2, 8.0, 0.0, 0.0, 77.3, 51.1, 48.9, 0.0,22.700000000000003,0.0 +4.977777777777778,4.98,a-cure-i1,2019-20,Abington - Abington High,00010505, 0.0, 2.9, 4.7, 9.1, 1.3, 0.0, 82.0, 50.6, 49.4, 0.0,18.0,5.6 +8.19753086419753,5,a-cure-i1,2019-20,Abington - Abington Middle School,00010405, 0.4, 2.3, 2.9, 9.0, 1.6, 0.0, 83.8, 44.9, 55.1, 0.0,16.200000000000003,8.3 +1,1,a-cure-i1,2019-20,Abington - Beaver Brook Elementary,00010020, 1.3, 2.5, 5.9, 8.7, 0.8, 0.0, 80.7, 51.0, 48.8, 0.2,19.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Abington - Woodsdale Elementary School,00010015, 0.0, 2.3, 4.3, 10.6, 1.0, 0.3, 81.4, 52.8, 47.2, 0.0,18.599999999999994,0.0 +9.71864776444929,5,a-cure-i1,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 1.1, 60.3, 28.7, 1.5, 0.0, 8.3, 49.3, 50.7, 0.0,91.7,55.699999999999996 +1,1,a-cure-i1,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.2, 33.4, 2.6, 4.4, 4.5, 0.0, 54.9, 48.5, 51.5, 0.1,45.1,3.8 +1,1,a-cure-i1,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 30.5, 1.9, 5.9, 3.8, 0.0, 57.8, 50.2, 49.8, 0.0,42.2,3.8 +1,1,a-cure-i1,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.3, 19.3, 2.3, 4.6, 7.9, 0.3, 65.4, 48.6, 51.4, 0.0,34.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 32.4, 4.9, 12.7, 8.8, 0.0, 41.2, 46.1, 53.9, 0.0,58.8,0.0 +1.8016085790884722,1.8,a-cure-i1,2019-20,Acton-Boxborough - Luther Conant School,06000030, 0.0, 59.9, 3.2, 8.1, 3.4, 0.0, 25.4, 46.9, 53.1, 0.0,74.6,8.4 +1,1,a-cure-i1,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0.6, 14.0, 3.5, 8.7, 6.8, 0.0, 66.4, 50.3, 49.7, 0.0,33.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Acton-Boxborough - Merriam School,06000010, 0.0, 20.6, 2.1, 5.9, 5.5, 0.2, 65.7, 47.6, 52.4, 0.0,34.3,0.0 +2.101010101010101,2.1,a-cure-i1,2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 56.9, 2.7, 5.1, 4.6, 0.0, 30.7, 48.2, 51.8, 0.0,69.3,9.1 +1,1,a-cure-i1,2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.5, 35.0, 2.8, 6.6, 4.1, 0.2, 50.8, 47.6, 52.4, 0.0,49.2,3.2 +1,1,a-cure-i1,2019-20,Acushnet - Acushnet Elementary School,00030025, 0.2, 0.9, 1.4, 4.2, 4.2, 0.0, 89.1, 47.6, 52.4, 0.0,10.900000000000006,3.2 +1,1,a-cure-i1,2019-20,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.9, 0.7, 4.1, 2.9, 0.0, 91.4, 48.1, 51.9, 0.0,8.599999999999994,0.0 +4.207951070336391,4.21,a-cure-i1,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.2, 16.9, 2.2, 6.7, 6.6, 0.0, 67.3, 48.0, 52.0, 0.0,32.7,8.600000000000001 +1,1,a-cure-i1,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, 9.4, 3.8, 11.3, 4.4, 0.0, 71.3, 41.9, 58.1, 0.0,28.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Agawam - Agawam High,00050505, 0.1, 2.4, 1.6, 7.3, 2.6, 0.0, 86.0, 49.8, 50.1, 0.1,14.0,1.1 +1,1,a-cure-i1,2019-20,Agawam - Agawam Junior High,00050405, 0.0, 2.9, 3.8, 6.8, 2.7, 0.0, 83.8, 47.9, 52.1, 0.0,16.200000000000003,1.7 +1,1,a-cure-i1,2019-20,Agawam - Benjamin J Phelps,00050020, 0.0, 2.9, 0.6, 5.6, 2.0, 0.0, 88.9, 46.5, 53.5, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Agawam - Clifford M Granger,00050010, 0.0, 4.7, 2.3, 14.5, 1.6, 0.4, 76.6, 52.0, 48.0, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Agawam - James Clark School,00050030, 0.0, 4.0, 1.7, 8.6, 4.3, 0.0, 81.4, 47.2, 52.8, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Agawam - Roberta G. Doering School,00050303, 0.0, 3.6, 2.4, 11.5, 3.6, 0.0, 78.9, 47.2, 52.8, 0.0,21.099999999999994,2.2 +1,1,a-cure-i1,2019-20,Agawam - Robinson Park,00050025, 0.0, 3.3, 2.6, 10.2, 4.1, 0.0, 79.8, 51.2, 48.8, 0.0,20.200000000000003,0.0 +3.0729833546734957,3.07,a-cure-i1,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.8, 0.2, 13.9, 60.2, 3.1, 0.0, 21.9, 53.1, 46.9, 0.0,78.1,15.0 +1,1,a-cure-i1,2019-20,Amesbury - Amesbury Elementary,00070005, 0.3, 0.3, 1.4, 5.2, 3.8, 0.0, 89.0, 45.4, 54.6, 0.0,11.0,0.0 +1,1,a-cure-i1,2019-20,Amesbury - Amesbury High,00070505, 0.0, 1.3, 1.5, 5.9, 3.8, 0.0, 87.5, 49.1, 50.9, 0.0,12.5,2.3 +1,1,a-cure-i1,2019-20,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 3.8, 7.5, 7.5, 0.0, 81.1, 41.5, 56.6, 1.9,18.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Amesbury - Amesbury Middle,00070013, 0.1, 1.6, 2.1, 9.9, 4.0, 0.3, 81.9, 48.2, 51.8, 0.0,18.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 1.2, 2.4, 13.9, 2.9, 0.2, 79.3, 46.4, 53.6, 0.0,20.700000000000003,0.0 +4.435643564356436,4.44,a-cure-i1,2019-20,Amherst - Crocker Farm Elementary,00080009, 0.5, 11.3, 8.0, 23.3, 7.5, 0.0, 49.5, 45.0, 54.3, 0.8,50.5,14.0 +6.193548387096773,5,a-cure-i1,2019-20,Amherst - Fort River Elementary,00080020, 0.0, 13.2, 7.7, 25.1, 6.4, 0.3, 47.3, 52.4, 47.6, 0.0,52.7,20.4 +12.604081632653061,5,a-cure-i1,2019-20,Amherst - Wildwood Elementary,00080050, 0.3, 13.1, 12.3, 16.8, 6.5, 0.0, 51.0, 49.7, 50.3, 0.0,49.0,38.6 +5.213483146067416,5,a-cure-i1,2019-20,Amherst-Pelham - Amherst Regional High,06050505, 0.1, 9.8, 8.2, 16.8, 9.5, 0.1, 55.5, 49.3, 50.3, 0.3,44.5,14.5 +7.898305084745762,5,a-cure-i1,2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.2, 8.7, 8.5, 20.2, 9.6, 0.0, 52.8, 46.9, 53.1, 0.0,47.2,23.3 +5.261016949152542,5,a-cure-i1,2019-20,Andover - Andover High,00090505, 0.3, 18.7, 2.1, 6.3, 2.2, 0.0, 70.5, 52.7, 47.2, 0.1,29.5,9.7 +1,1,a-cure-i1,2019-20,Andover - Andover West Middle,00090310, 0.0, 17.9, 4.7, 6.2, 2.6, 0.0, 68.6, 47.9, 52.1, 0.0,31.400000000000006,2.7 +1,1,a-cure-i1,2019-20,Andover - Bancroft Elementary,00090003, 0.0, 8.7, 1.8, 6.7, 6.2, 0.0, 76.7, 45.9, 54.1, 0.0,23.299999999999997,3.0 +5.522123893805311,5,a-cure-i1,2019-20,Andover - Doherty Middle,00090305, 0.2, 9.7, 1.7, 7.7, 3.1, 0.2, 77.4, 53.1, 46.9, 0.0,22.599999999999994,7.800000000000001 +2.934097421203438,2.93,a-cure-i1,2019-20,Andover - Henry C Sanborn Elementary,00090010, 0.0, 23.2, 2.5, 6.1, 3.1, 0.0, 65.1, 49.7, 50.3, 0.0,34.900000000000006,6.4 +1,1,a-cure-i1,2019-20,Andover - High Plain Elementary,00090004, 0.0, 30.6, 4.6, 7.8, 5.5, 0.2, 51.4, 45.0, 55.0, 0.0,48.6,1.5 +4.3763676148796495,4.38,a-cure-i1,2019-20,Andover - Shawsheen School,00090005, 0.0, 24.7, 0.0, 12.3, 8.6, 0.0, 54.3, 27.2, 72.8, 0.0,45.7,12.5 +1,1,a-cure-i1,2019-20,Andover - South Elementary,00090020, 0.2, 18.0, 1.0, 4.4, 2.9, 0.0, 73.5, 48.6, 51.4, 0.0,26.5,0.0 +1,1,a-cure-i1,2019-20,Andover - West Elementary,00090025, 0.0, 15.8, 2.7, 7.7, 2.9, 0.0, 70.9, 48.7, 51.3, 0.0,29.099999999999994,0.0 +2.375257731958763,2.38,a-cure-i1,2019-20,Andover - Wood Hill Middle School,00090350, 0.2, 33.5, 2.5, 8.9, 3.2, 0.2, 51.5, 48.3, 51.7, 0.0,48.5,7.2 +9.180327868852459,5,a-cure-i1,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.2, 2.1, 13.1, 22.7, 4.4, 0.2, 57.3, 46.7, 53.3, 0.0,42.7,24.5 +6.173228346456692,5,a-cure-i1,2019-20,Arlington - Arlington High,00100505, 0.0, 10.5, 4.0, 6.0, 4.8, 0.1, 74.6, 51.2, 48.5, 0.3,25.400000000000006,9.8 +8.861538461538462,5,a-cure-i1,2019-20,Arlington - Brackett,00100010, 0.0, 10.8, 1.3, 4.5, 9.2, 0.2, 74.0, 45.6, 54.4, 0.0,26.0,14.4 +4.535433070866141,4.54,a-cure-i1,2019-20,Arlington - Cyrus E Dallin,00100025, 0.0, 13.8, 1.5, 3.8, 6.4, 0.0, 74.6, 49.2, 50.8, 0.0,25.400000000000006,7.2 +1,1,a-cure-i1,2019-20,Arlington - Gibbs School,00100305, 0.0, 8.2, 4.1, 8.2, 6.2, 0.0, 73.3, 47.5, 52.5, 0.0,26.700000000000003,4.2 +6.430868167202574,5,a-cure-i1,2019-20,Arlington - Hardy,00100030, 0.2, 15.5, 3.2, 5.6, 6.5, 0.0, 68.9, 47.7, 52.3, 0.0,31.099999999999994,12.5 +1,1,a-cure-i1,2019-20,Arlington - John A Bishop,00100005, 0.0, 16.6, 3.0, 3.4, 9.5, 0.5, 67.0, 45.7, 54.3, 0.0,33.0,0.0 +1,1,a-cure-i1,2019-20,Arlington - M Norcross Stratton,00100055, 0.0, 18.4, 3.3, 6.4, 9.1, 0.0, 62.7, 49.8, 50.2, 0.0,37.3,4.0 +5.3583138173302105,5,a-cure-i1,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, 22.5, 4.5, 3.4, 12.4, 0.0, 57.3, 37.1, 62.9, 0.0,42.7,14.3 +4.086330935251799,4.09,a-cure-i1,2019-20,Arlington - Ottoson Middle,00100410, 0.1, 11.6, 3.0, 7.1, 5.8, 0.2, 72.2, 49.7, 50.1, 0.2,27.799999999999997,7.1 +6.863636363636363,5,a-cure-i1,2019-20,Arlington - Peirce,00100045, 0.3, 15.6, 5.5, 6.8, 6.8, 0.0, 64.8, 51.5, 48.5, 0.0,35.2,15.100000000000001 +1,1,a-cure-i1,2019-20,Arlington - Thompson,00100050, 0.4, 15.4, 4.3, 8.9, 7.8, 0.0, 63.2, 51.0, 48.8, 0.2,36.8,0.0 +13.13207547169812,5,a-cure-i1,2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 0.2, 1.1, 0.8, 4.9, 3.6, 0.0, 89.4, 50.7, 49.3, 0.0,10.599999999999994,8.7 +1,1,a-cure-i1,2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.5, 1.0, 6.5, 3.0, 0.0, 88.9, 49.7, 50.3, 0.0,11.099999999999994,0.0 +16.551724137931043,5,a-cure-i1,2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 1.5, 0.1, 2.5, 1.6, 0.0, 94.2, 50.4, 49.5, 0.1,5.799999999999997,6.0 +1,1,a-cure-i1,2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 0.2, 0.3, 1.2, 6.9, 2.9, 0.0, 88.5, 48.6, 51.4, 0.0,11.5,0.0 +1,1,a-cure-i1,2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.5, 0.8, 6.6, 2.7, 0.0, 89.4, 48.0, 52.0, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Ashland - Ashland High,00140505, 0.5, 13.2, 3.0, 12.1, 2.4, 0.0, 68.7, 52.2, 47.6, 0.1,31.299999999999997,1.9 +1,1,a-cure-i1,2019-20,Ashland - Ashland Middle,00140405, 0.9, 13.5, 2.3, 13.2, 3.6, 0.0, 66.4, 49.4, 50.6, 0.0,33.599999999999994,4.8 +1,1,a-cure-i1,2019-20,Ashland - David Mindess,00140015, 0.6, 14.6, 2.3, 13.4, 3.3, 0.0, 65.9, 50.8, 49.2, 0.0,34.099999999999994,2.6 +1,1,a-cure-i1,2019-20,Ashland - Henry E Warren Elementary,00140010, 0.2, 22.0, 3.1, 11.4, 4.1, 0.0, 59.3, 45.3, 54.7, 0.0,40.7,2.2 +1,1,a-cure-i1,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, 23.7, 5.4, 5.4, 0.0, 0.0, 65.6, 37.6, 62.4, 0.0,34.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.3, 0.5, 1.8, 18.8, 2.4, 0.0, 76.2, 39.3, 60.2, 0.5,23.799999999999997,3.3000000000000003 +1,1,a-cure-i1,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.0, 2.3, 11.0, 4.3, 0.0, 81.4, 47.0, 53.0, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Athol-Royalston - Athol High,06150505, 0.0, 0.3, 1.2, 6.7, 4.0, 0.0, 87.8, 45.4, 54.6, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.2, 1.8, 1.6, 11.2, 2.5, 0.0, 82.6, 44.7, 55.3, 0.0,17.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 2.0, 2.0, 6.1, 0.0, 89.8, 51.7, 48.3, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.2, 1.8, 5.5, 13.1, 4.1, 0.1, 75.3, 52.6, 47.4, 0.0,24.700000000000003,0.4 +1,1,a-cure-i1,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0.5, 2.4, 6.9, 14.8, 5.0, 0.3, 70.2, 50.1, 49.9, 0.0,29.799999999999997,4.2 +10.807947019867548,5,a-cure-i1,2019-20,Attleboro - Attleboro Community Academy,00160515, 1.9, 1.9, 7.5, 11.3, 7.5, 0.0, 69.8, 34.0, 66.0, 0.0,30.200000000000003,20.4 +4.215873015873016,4.22,a-cure-i1,2019-20,Attleboro - Attleboro High,00160505, 0.2, 4.5, 6.2, 16.2, 4.2, 0.2, 68.5, 46.6, 53.4, 0.1,31.5,8.3 +1,1,a-cure-i1,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0.2, 5.0, 5.6, 19.3, 6.8, 0.0, 63.1, 49.0, 51.0, 0.0,36.9,0.0 +1,1,a-cure-i1,2019-20,Attleboro - Early Learning Center,00160008, 0.0, 4.3, 4.3, 16.8, 2.7, 0.0, 71.7, 42.9, 57.1, 0.0,28.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 0.2, 5.9, 7.5, 12.5, 7.7, 0.0, 66.2, 48.2, 51.8, 0.0,33.8,0.0 +3.710144927536232,3.71,a-cure-i1,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 3.3, 4.3, 19.3, 7.6, 0.0, 65.5, 51.0, 49.0, 0.0,34.5,8.0 +1,1,a-cure-i1,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 0.2, 6.9, 11.1, 12.7, 9.3, 0.2, 59.6, 48.0, 52.0, 0.0,40.4,3.5 +1,1,a-cure-i1,2019-20,Attleboro - Robert J. Coelho Middle School,00160305, 0.3, 5.2, 6.9, 10.7, 6.7, 0.0, 70.2, 46.3, 53.7, 0.0,29.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 3.1, 6.2, 17.4, 7.9, 0.0, 65.4, 47.2, 52.8, 0.0,34.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Attleboro - Wamsutta Middle School,00160320, 0.0, 4.6, 5.9, 15.8, 7.3, 0.0, 66.4, 47.8, 52.2, 0.0,33.599999999999994,3.3 +1,1,a-cure-i1,2019-20,Auburn - Auburn Middle,00170305, 0.0, 4.1, 2.4, 9.6, 4.0, 0.0, 79.9, 50.6, 49.4, 0.0,20.099999999999994,4.1 +1,1,a-cure-i1,2019-20,Auburn - Auburn Senior High,00170505, 0.3, 4.2, 2.1, 8.9, 3.4, 0.0, 81.1, 52.9, 47.1, 0.0,18.900000000000006,2.7 +1,1,a-cure-i1,2019-20,Auburn - Bryn Mawr,00170010, 0.3, 3.5, 1.4, 11.5, 3.5, 0.0, 79.7, 46.5, 53.5, 0.0,20.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Auburn - Pakachoag School,00170025, 0.0, 3.6, 0.6, 9.4, 3.2, 0.0, 83.1, 49.0, 51.0, 0.0,16.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Auburn - Swanson Road Intermediate School,00170030, 0.0, 4.5, 3.1, 9.5, 3.1, 0.0, 79.9, 47.3, 52.7, 0.0,20.099999999999994,0.0 +4.273789649415693,4.27,a-cure-i1,2019-20,Avon - Avon Middle High School,00180510, 0.3, 5.5, 37.5, 9.7, 6.8, 0.0, 40.1, 46.0, 54.0, 0.0,59.9,16.0 +1,1,a-cure-i1,2019-20,Avon - Ralph D Butler,00180010, 0.2, 4.8, 24.5, 10.3, 6.7, 0.0, 53.4, 48.1, 51.9, 0.0,46.6,0.0 +1,1,a-cure-i1,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.9, 1.6, 5.1, 10.7, 7.5, 0.3, 73.0, 53.2, 46.8, 0.0,27.0,3.6 +10.406504065040652,5,a-cure-i1,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.7, 2.9, 3.4, 13.8, 3.2, 0.5, 75.4, 45.9, 54.1, 0.0,24.599999999999994,16.0 +1,1,a-cure-i1,2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.3, 1.2, 1.5, 7.9, 5.5, 0.3, 83.4, 44.0, 56.0, 0.0,16.599999999999994,4.6 +1,1,a-cure-i1,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.4, 4.1, 4.7, 10.4, 5.9, 0.2, 74.4, 47.1, 52.9, 0.0,25.599999999999994,0.0 +1.556420233463035,1.56,a-cure-i1,2019-20,Barnstable - Barnstable Community Innovation School,00200012, 1.4, 4.1, 11.3, 30.5, 4.1, 0.0, 48.6, 46.9, 53.1, 0.0,51.4,5.0 +3.7,3.7,a-cure-i1,2019-20,Barnstable - Barnstable High,00200505, 0.4, 1.8, 8.5, 16.7, 4.4, 0.2, 68.0, 51.2, 48.8, 0.1,32.0,7.4 +1,1,a-cure-i1,2019-20,Barnstable - Barnstable Intermediate School,00200315, 0.5, 2.2, 6.9, 17.3, 4.4, 0.4, 68.3, 48.1, 51.9, 0.0,31.700000000000003,2.2 +1,1,a-cure-i1,2019-20,Barnstable - Barnstable United Elementary School,00200050, 0.4, 1.4, 8.0, 18.2, 5.7, 0.0, 66.4, 46.8, 53.2, 0.0,33.599999999999994,4.4 +1,1,a-cure-i1,2019-20,Barnstable - Centerville Elementary,00200010, 0.0, 1.2, 7.0, 18.1, 9.1, 0.0, 64.6, 46.1, 53.9, 0.0,35.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 1.9, 5.6, 18.0, 16.1, 0.0, 58.4, 38.5, 61.5, 0.0,41.6,0.0 +2.014641288433382,2.01,a-cure-i1,2019-20,Barnstable - Hyannis West Elementary,00200025, 0.3, 1.9, 15.5, 38.5, 11.7, 0.3, 31.7, 56.6, 43.4, 0.0,68.3,8.6 +1,1,a-cure-i1,2019-20,Barnstable - West Barnstable Elementary,00200005, 0.0, 2.0, 2.9, 11.0, 9.8, 0.0, 74.3, 44.1, 55.9, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Barnstable - West Villages Elementary School,00200045, 0.0, 1.7, 0.9, 9.0, 7.8, 0.0, 80.7, 48.3, 51.4, 0.2,19.299999999999997,0.0 +5.522285714285715,5,a-cure-i1,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.6, 27.6, 57.0, 1.7, 0.4, 12.5, 47.7, 52.3, 0.0,87.5,30.200000000000003 +2.5474860335195535,2.55,a-cure-i1,2019-20,Bedford - Bedford High,00230505, 0.1, 14.1, 7.5, 9.6, 4.3, 0.1, 64.2, 50.5, 49.5, 0.0,35.8,5.7 +1,1,a-cure-i1,2019-20,Bedford - John Glenn Middle,00230305, 0.2, 18.0, 6.1, 5.6, 3.7, 0.0, 66.4, 45.9, 54.1, 0.0,33.599999999999994,0.4 +1,1,a-cure-i1,2019-20,Bedford - Lt Elezer Davis,00230010, 0.0, 23.8, 5.6, 4.8, 7.8, 0.0, 58.0, 45.9, 54.1, 0.0,42.0,4.3 +3.74468085106383,3.74,a-cure-i1,2019-20,Bedford - Lt Job Lane School,00230012, 0.0, 19.3, 6.4, 5.7, 6.2, 0.0, 62.4, 49.8, 50.2, 0.0,37.6,8.8 +1,1,a-cure-i1,2019-20,Belchertown - Belchertown High,00240505, 0.1, 1.4, 2.0, 2.9, 2.6, 0.3, 90.7, 48.1, 51.9, 0.0,9.299999999999997,2.1 +1,1,a-cure-i1,2019-20,Belchertown - Chestnut Hill Community School,00240006, 0.8, 1.0, 1.8, 5.2, 3.8, 0.0, 87.4, 47.5, 52.5, 0.0,12.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Belchertown - Cold Spring,00240005, 0.0, 1.6, 1.1, 7.9, 2.1, 0.0, 87.3, 43.4, 56.6, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Belchertown - Jabish Middle School,00240025, 0.0, 1.6, 3.0, 4.0, 2.4, 0.5, 88.4, 50.5, 49.5, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Belchertown - Swift River Elementary,00240018, 0.0, 1.0, 0.6, 6.1, 5.5, 0.0, 86.8, 51.8, 48.2, 0.0,13.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 10.2, 3.1, 3.1, 0.0, 0.0, 83.7, 46.9, 53.1, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Bellingham - Bellingham High School,00250505, 0.3, 3.4, 2.9, 5.1, 2.9, 0.0, 85.4, 49.3, 50.7, 0.0,14.599999999999994,3.6 +1,1,a-cure-i1,2019-20,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.6, 2.3, 5.3, 2.1, 0.0, 87.6, 53.0, 47.0, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 3.0, 1.5, 6.3, 2.7, 0.6, 85.9, 52.9, 47.1, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 21.9, 3.1, 0.0, 75.0, 50.0, 43.8, 6.3,25.0,0.0 +1,1,a-cure-i1,2019-20,Bellingham - Stall Brook,00250025, 0.0, 0.7, 1.8, 8.8, 4.4, 2.2, 82.1, 48.2, 51.8, 0.0,17.900000000000006,0.0 +5.097791798107255,5,a-cure-i1,2019-20,Belmont - Belmont High,00260505, 0.0, 18.3, 3.3, 4.2, 5.8, 0.0, 68.3, 50.7, 49.3, 0.0,31.700000000000003,10.1 +3.0742358078602625,3.07,a-cure-i1,2019-20,Belmont - Daniel Butler,00260015, 0.5, 27.9, 1.6, 3.6, 12.1, 0.0, 54.2, 48.2, 51.8, 0.0,45.8,8.8 +3.425790754257908,3.43,a-cure-i1,2019-20,Belmont - Mary Lee Burbank,00260010, 0.0, 22.1, 5.7, 2.3, 10.8, 0.2, 58.9, 48.7, 51.3, 0.0,41.1,8.8 +3.276450511945393,3.28,a-cure-i1,2019-20,Belmont - Roger E Wellington,00260035, 0.0, 15.4, 3.0, 1.8, 9.1, 0.0, 70.7, 49.5, 50.5, 0.0,29.299999999999997,6.0 +1,1,a-cure-i1,2019-20,Belmont - Winn Brook,00260005, 0.0, 29.0, 1.3, 4.5, 8.4, 0.0, 56.8, 48.6, 51.4, 0.0,43.2,0.0 +8.587570621468926,5,a-cure-i1,2019-20,Belmont - Winthrop L Chenery Middle,00260305, 0.1, 20.3, 3.1, 4.8, 6.9, 0.1, 64.6, 49.2, 50.8, 0.0,35.400000000000006,19.0 +6.901639344262295,5,a-cure-i1,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.3, 0.9, 82.4, 9.5, 3.9, 0.6, 2.4, 52.7, 47.3, 0.0,97.6,42.1 +1,1,a-cure-i1,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.4, 20.5, 3.2, 4.9, 4.7, 0.0, 66.2, 50.7, 49.3, 0.0,33.8,0.0 +1.1897435897435897,1.19,a-cure-i1,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 2.4, 13.0, 60.2, 2.4, 0.0, 22.0, 53.3, 46.7, 0.0,78.0,5.8 +1,1,a-cure-i1,2019-20,Berkley - Berkley Community School,00270010, 0.2, 0.6, 0.6, 1.3, 4.2, 0.2, 92.9, 48.9, 51.1, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.5, 2.8, 3.3, 0.0, 93.4, 48.9, 51.1, 0.0,6.599999999999994,0.0 +3.827242524916944,3.83,a-cure-i1,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.3, 2.7, 11.8, 10.5, 4.8, 0.0, 69.9, 44.9, 54.8, 0.3,30.099999999999994,7.2 +5.167701863354039,5,a-cure-i1,2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 0.2, 2.2, 0.8, 9.8, 2.6, 0.6, 83.9, 50.6, 49.4, 0.0,16.099999999999994,5.2 +1,1,a-cure-i1,2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.3, 3.7, 1.8, 9.8, 5.8, 0.0, 78.7, 45.4, 54.6, 0.0,21.299999999999997,2.7 +1,1,a-cure-i1,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 3.4, 0.9, 12.6, 9.2, 0.0, 73.9, 51.6, 48.4, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 1.1, 0.5, 6.0, 5.5, 0.0, 86.9, 48.1, 51.9, 0.0,13.099999999999994,0.0 +5.842696629213484,5,a-cure-i1,2019-20,Berlin-Boylston - Boylston Elementary School,06200010, 0.3, 4.0, 1.3, 7.7, 4.4, 0.0, 82.2, 48.3, 51.7, 0.0,17.799999999999997,6.5 +1,1,a-cure-i1,2019-20,Berlin-Boylston - Tahanto Regional High,06200505, 0.2, 4.2, 2.8, 4.6, 2.7, 0.4, 85.1, 48.3, 51.5, 0.2,14.900000000000006,1.9 +1,1,a-cure-i1,2019-20,Beverly - Ayers/Ryal Side School,00300055, 0.0, 2.1, 2.9, 11.2, 3.3, 0.0, 80.5, 48.6, 51.4, 0.0,19.5,0.0 +1,1,a-cure-i1,2019-20,Beverly - Beverly High,00300505, 0.1, 2.4, 3.5, 13.5, 3.5, 0.1, 76.9, 47.5, 52.4, 0.2,23.099999999999994,2.0 +4.7673469387755105,4.77,a-cure-i1,2019-20,Beverly - Beverly Middle School,00300305, 0.1, 2.5, 2.8, 16.0, 3.1, 0.1, 75.5, 47.9, 52.1, 0.0,24.5,7.300000000000001 +1,1,a-cure-i1,2019-20,Beverly - Centerville Elementary,00300010, 0.0, 1.3, 5.1, 16.2, 5.1, 0.0, 72.3, 50.6, 49.4, 0.0,27.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Beverly - Cove Elementary,00300015, 0.0, 1.9, 4.2, 13.3, 5.6, 0.0, 75.1, 47.1, 52.9, 0.0,24.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Beverly - Hannah Elementary,00300033, 0.0, 2.4, 4.2, 12.3, 5.4, 0.0, 75.7, 44.1, 55.9, 0.0,24.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Beverly - McKeown School,00300002, 0.9, 2.8, 7.4, 8.3, 2.8, 0.0, 77.8, 41.7, 58.3, 0.0,22.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Beverly - North Beverly Elementary,00300040, 0.0, 2.0, 2.0, 16.1, 3.5, 0.0, 76.3, 46.2, 53.8, 0.0,23.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Billerica - Billerica Memorial High School,00310505, 0.1, 8.5, 4.7, 6.3, 2.1, 0.1, 78.1, 49.1, 50.9, 0.0,21.900000000000006,1.0 +1,1,a-cure-i1,2019-20,Billerica - Frederick J Dutile,00310007, 0.0, 10.3, 3.3, 9.5, 2.9, 0.0, 74.1, 53.5, 46.5, 0.0,25.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Billerica - Hajjar Elementary,00310026, 0.3, 11.2, 4.9, 11.5, 2.3, 0.0, 69.8, 52.3, 47.7, 0.0,30.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Billerica - John F Kennedy,00310012, 0.0, 5.0, 2.2, 6.9, 4.4, 0.0, 81.6, 54.1, 45.9, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Billerica - Locke Middle,00310310, 0.0, 7.4, 2.8, 5.4, 5.2, 0.0, 79.2, 49.4, 50.6, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Billerica - Marshall Middle School,00310305, 0.2, 6.7, 7.4, 9.4, 3.0, 0.0, 73.4, 47.1, 52.9, 0.0,26.599999999999994,2.1 +1,1,a-cure-i1,2019-20,Billerica - Parker,00310015, 0.2, 13.2, 6.8, 9.4, 4.0, 0.0, 66.4, 47.3, 52.7, 0.0,33.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Billerica - Thomas Ditson,00310005, 0.0, 8.3, 5.3, 7.7, 3.9, 0.0, 74.8, 47.4, 52.6, 0.0,25.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.7, 1.0, 6.1, 2.0, 0.1, 89.1, 50.9, 48.9, 0.2,10.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.3, 2.8, 8.0, 6.9, 0.0, 82.0, 46.4, 53.6, 0.0,18.0,0.0 +1,1,a-cure-i1,2019-20,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.9, 1.6, 5.9, 2.3, 0.0, 89.2, 47.3, 52.7, 0.0,10.799999999999997,3.0 +1,1,a-cure-i1,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 1.2, 7.6, 4.2, 0.0, 86.1, 52.6, 47.4, 0.0,13.900000000000006,3.7 +1,1,a-cure-i1,2019-20,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.9, 9.0, 4.9, 0.0, 84.2, 50.0, 50.0, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.4, 7.1, 1.6, 0.0, 90.9, 45.3, 54.7, 0.0,9.099999999999994,0.0 +3.272727272727273,3.27,a-cure-i1,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.5, 1.8, 21.1, 15.0, 5.6, 0.1, 56.0, 44.7, 55.3, 0.0,44.0,9.0 +8.787746170678338,5,a-cure-i1,2019-20,Boston - Another Course To College,00350541, 0.4, 0.9, 49.1, 39.7, 1.3, 0.0, 8.6, 46.1, 53.9, 0.0,91.4,50.2 +13.70724191063174,5,a-cure-i1,2019-20,Boston - Baldwin Early Learning Center,00350003, 0.0, 23.4, 11.0, 26.0, 4.5, 0.0, 35.1, 40.9, 59.1, 0.0,64.9,55.6 +6.143790849673202,5,a-cure-i1,2019-20,Boston - Beethoven,00350021, 0.0, 3.0, 27.0, 25.7, 5.6, 0.0, 38.8, 52.6, 47.4, 0.0,61.2,23.5 +5.56887486855941,5,a-cure-i1,2019-20,Boston - Blackstone,00350390, 0.2, 2.9, 26.3, 63.4, 2.2, 0.2, 4.9, 44.2, 55.8, 0.0,95.1,33.099999999999994 +12.752,5,a-cure-i1,2019-20,Boston - Boston Adult Academy,00350548, 0.0, 4.4, 52.5, 40.4, 2.7, 0.0, 0.0, 45.4, 54.6, 0.0,100.0,79.7 +10.008810572687224,5,a-cure-i1,2019-20,Boston - Boston Arts Academy,00350546, 0.4, 2.5, 44.9, 38.8, 4.0, 0.2, 9.2, 66.5, 33.3, 0.2,90.8,56.8 +7.7272727272727275,5,a-cure-i1,2019-20,Boston - Boston Collaborative High School,00350755, 0.0, 1.7, 32.0, 51.4, 2.9, 0.0, 12.0, 46.9, 53.1, 0.0,88.0,42.5 +7.539267015706806,5,a-cure-i1,2019-20,Boston - Boston Community Leadership Academy,00350558, 0.2, 3.6, 33.0, 57.1, 1.4, 0.2, 4.5, 44.5, 55.5, 0.0,95.5,45.0 +6.715447154471544,5,a-cure-i1,2019-20,Boston - Boston International High School,00350507, 0.2, 7.7, 33.1, 57.1, 0.0, 0.2, 1.6, 46.4, 53.6, 0.0,98.4,41.3 +9.507246376811592,5,a-cure-i1,2019-20,Boston - Boston Latin,00350560, 0.1, 29.4, 7.6, 13.3, 4.6, 0.2, 44.8, 54.4, 45.5, 0.1,55.2,32.8 +9.198288159771757,5,a-cure-i1,2019-20,Boston - Boston Latin Academy,00350545, 0.2, 19.9, 21.0, 25.5, 3.4, 0.1, 29.9, 59.1, 40.8, 0.1,70.1,40.300000000000004 +10.009724473257696,5,a-cure-i1,2019-20,Boston - Boston Teachers Union School,00350012, 0.4, 2.2, 23.0, 29.9, 6.2, 0.0, 38.3, 49.6, 50.4, 0.0,61.7,38.599999999999994 +6.511041009463724,5,a-cure-i1,2019-20,Boston - Brighton High,00350505, 0.4, 4.1, 35.7, 52.5, 1.9, 0.6, 4.9, 42.4, 57.6, 0.0,95.1,38.7 +1,1,a-cure-i1,2019-20,Boston - Carter School,00350036, 0.0, 7.1, 50.0, 21.4, 0.0, 3.6, 17.9, 42.9, 57.1, 0.0,82.1,0.0 +9.837398373983739,5,a-cure-i1,2019-20,Boston - Charles H Taylor,00350054, 0.9, 0.9, 74.8, 19.2, 2.6, 0.0, 1.6, 47.0, 53.0, 0.0,98.4,60.5 +7.366626065773447,5,a-cure-i1,2019-20,Boston - Charles Sumner,00350052, 0.0, 1.5, 18.8, 57.0, 4.9, 0.0, 17.9, 46.4, 53.6, 0.0,82.1,37.8 +5.716666666666668,5,a-cure-i1,2019-20,Boston - Charlestown High,00350515, 0.2, 8.2, 29.9, 56.3, 1.4, 0.0, 4.0, 40.2, 59.8, 0.0,96.0,34.300000000000004 +7.634782608695652,5,a-cure-i1,2019-20,Boston - Clarence R Edwards Middle,00350430, 0.0, 7.2, 15.8, 67.0, 1.6, 0.3, 8.0, 46.9, 53.1, 0.0,92.0,43.9 +13.034623217922606,5,a-cure-i1,2019-20,Boston - Community Academy,00350518, 1.8, 0.0, 50.9, 43.9, 1.8, 0.0, 1.8, 49.1, 50.9, 0.0,98.2,80.0 +8.303589743589743,5,a-cure-i1,2019-20,Boston - Community Academy of Science and Health,00350581, 0.6, 3.1, 60.3, 29.4, 4.2, 0.0, 2.5, 45.3, 54.7, 0.0,97.5,50.6 +7.088861076345433,5,a-cure-i1,2019-20,Boston - Condon K-8,00350146, 0.4, 6.9, 31.4, 36.4, 4.5, 0.4, 20.1, 48.3, 51.7, 0.0,79.9,35.400000000000006 +7.4119278779472975,5,a-cure-i1,2019-20,Boston - Curley K-8 School,00350020, 0.0, 2.5, 17.6, 46.0, 5.9, 0.0, 27.9, 46.2, 53.8, 0.0,72.1,33.400000000000006 +6.908235294117648,5,a-cure-i1,2019-20,Boston - Curtis Guild,00350062, 0.0, 1.2, 1.6, 81.5, 0.8, 0.0, 15.0, 48.4, 51.6, 0.0,85.0,36.7 +7.670329670329671,5,a-cure-i1,2019-20,Boston - Dante Alighieri Montessori School,00350066, 0.0, 2.9, 1.9, 61.2, 6.8, 0.0, 27.2, 53.4, 46.6, 0.0,72.8,34.9 +10.519877675840979,5,a-cure-i1,2019-20,Boston - David A Ellis,00350072, 0.5, 0.0, 40.9, 54.7, 1.9, 0.0, 1.9, 49.9, 49.9, 0.2,98.1,64.5 +9.782299084435401,5,a-cure-i1,2019-20,Boston - Dearborn,00350074, 0.2, 1.2, 61.6, 30.5, 3.7, 1.2, 1.7, 50.2, 49.8, 0.0,98.3,60.099999999999994 +5.620457604306865,5,a-cure-i1,2019-20,Boston - Dennis C Haley,00350077, 0.0, 0.8, 31.3, 36.1, 5.9, 0.3, 25.7, 47.3, 52.7, 0.0,74.3,26.1 +4.449291166848418,4.45,a-cure-i1,2019-20,Boston - Donald Mckay,00350080, 0.0, 0.6, 1.9, 88.0, 1.2, 0.0, 8.3, 52.1, 47.9, 0.0,91.7,25.5 +5.929018789144051,5,a-cure-i1,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.5, 1.6, 55.0, 36.1, 2.6, 0.0, 4.2, 44.5, 55.5, 0.0,95.8,35.5 +7.0,5,a-cure-i1,2019-20,Boston - Dr. William Henderson Lower,00350266, 0.0, 11.3, 29.7, 17.0, 6.6, 0.9, 34.4, 52.8, 46.7, 0.5,65.6,28.7 +4.87218045112782,4.87,a-cure-i1,2019-20,Boston - Dr. William Henderson Upper,00350426, 0.7, 9.0, 42.3, 24.3, 3.5, 0.0, 20.2, 45.7, 54.3, 0.0,79.8,24.3 +15.864406779661016,5,a-cure-i1,2019-20,Boston - East Boston Early Childhood Center,00350009, 0.5, 1.9, 5.3, 61.2, 1.4, 0.5, 29.2, 51.7, 48.3, 0.0,70.8,70.19999999999999 +5.191583610188261,5,a-cure-i1,2019-20,Boston - East Boston High,00350530, 0.2, 2.0, 4.8, 81.9, 1.4, 0.0, 9.7, 41.4, 58.6, 0.0,90.3,29.3 +6.414918414918416,5,a-cure-i1,2019-20,Boston - Edison K-8,00350375, 0.7, 14.2, 15.7, 51.8, 3.2, 0.2, 14.2, 44.6, 55.4, 0.0,85.8,34.400000000000006 +5.405405405405405,5,a-cure-i1,2019-20,Boston - Edward Everett,00350088, 0.9, 18.4, 42.3, 30.3, 3.8, 0.4, 3.8, 51.3, 48.7, 0.0,96.2,32.5 +4.4689655172413785,4.47,a-cure-i1,2019-20,Boston - ELC - West Zone,00350006, 0.9, 11.1, 27.8, 41.7, 5.6, 0.0, 13.0, 49.1, 50.9, 0.0,87.0,24.299999999999997 +11.831265508684863,5,a-cure-i1,2019-20,Boston - Eliot Elementary,00350096, 0.0, 11.4, 5.5, 16.1, 7.2, 0.1, 59.7, 49.0, 51.0, 0.0,40.3,29.799999999999997 +13.609507640067912,5,a-cure-i1,2019-20,Boston - Ellis Mendell,00350100, 0.0, 1.5, 24.4, 24.4, 8.5, 0.0, 41.1, 49.6, 50.0, 0.4,58.9,50.1 +8.156521739130433,5,a-cure-i1,2019-20,Boston - Excel High School,00350522, 0.6, 18.2, 36.1, 35.7, 1.2, 0.2, 8.0, 37.5, 62.5, 0.0,92.0,46.89999999999999 +7.239289446185997,5,a-cure-i1,2019-20,Boston - Fenway High School,00350540, 0.3, 2.0, 30.6, 60.6, 2.0, 0.3, 4.3, 53.3, 46.7, 0.0,95.7,43.3 +1,1,a-cure-i1,2019-20,Boston - Franklin D Roosevelt,00350116, 0.5, 2.5, 39.5, 38.4, 5.7, 0.2, 13.1, 49.2, 50.8, 0.0,86.9,2.9 +6.87816091954023,5,a-cure-i1,2019-20,Boston - Gardner Pilot Academy,00350326, 0.0, 5.1, 11.2, 66.1, 4.6, 0.0, 13.0, 47.7, 52.3, 0.0,87.0,37.4 +7.3502538071066,5,a-cure-i1,2019-20,Boston - George H Conley,00350122, 0.0, 2.2, 34.8, 37.5, 3.8, 0.5, 21.2, 43.5, 56.5, 0.0,78.8,36.2 +8.258585858585858,5,a-cure-i1,2019-20,Boston - Greater Egleston Community High School,00350543, 1.0, 1.0, 50.0, 41.0, 6.0, 0.0, 1.0, 49.0, 51.0, 0.0,99.0,51.1 +6.7452948557089085,5,a-cure-i1,2019-20,Boston - Harvard-Kent,00350200, 0.3, 21.9, 23.0, 31.5, 3.0, 0.0, 20.3, 46.6, 53.4, 0.0,79.7,33.6 +11.113871635610765,5,a-cure-i1,2019-20,Boston - Haynes Early Education Center,00350010, 2.0, 5.4, 44.9, 41.5, 2.9, 0.0, 3.4, 47.3, 52.7, 0.0,96.6,67.1 +7.366515837104071,5,a-cure-i1,2019-20,Boston - Henry Grew,00350135, 0.4, 0.0, 38.4, 42.7, 6.9, 0.0, 11.6, 49.1, 50.9, 0.0,88.4,40.699999999999996 +7.772819472616634,5,a-cure-i1,2019-20,Boston - Higginson,00350015, 0.7, 1.4, 44.0, 50.4, 2.1, 0.0, 1.4, 46.1, 53.9, 0.0,98.6,47.900000000000006 +10.563580874872839,5,a-cure-i1,2019-20,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.9, 49.6, 41.7, 6.1, 0.0, 1.7, 43.0, 57.0, 0.0,98.3,64.9 +1.1977653631284917,1.2,a-cure-i1,2019-20,Boston - Horace Mann School for the Deaf,00350750, 0.0, 5.3, 34.2, 50.0, 0.0, 0.0, 10.5, 36.8, 63.2, 0.0,89.5,6.7 +2.7469342251950946,2.75,a-cure-i1,2019-20,Boston - Hugh Roe O'Donnell,00350141, 0.4, 2.7, 1.1, 84.8, 0.8, 0.0, 10.3, 51.7, 48.3, 0.0,89.7,15.4 +6.147091108671789,5,a-cure-i1,2019-20,Boston - Jackson Mann,00350013, 0.8, 12.9, 29.7, 45.7, 2.1, 0.0, 8.9, 41.4, 58.6, 0.0,91.1,35.0 +6.403343782654128,5,a-cure-i1,2019-20,Boston - James J Chittick,00350154, 0.0, 0.7, 63.9, 26.4, 4.6, 0.0, 4.3, 45.4, 54.6, 0.0,95.7,38.300000000000004 +3.9752781211372064,3.98,a-cure-i1,2019-20,Boston - James Otis,00350156, 0.3, 2.4, 5.0, 72.0, 1.3, 0.0, 19.1, 52.1, 47.9, 0.0,80.9,20.1 +9.848670756646218,5,a-cure-i1,2019-20,Boston - James P Timilty Middle,00350485, 0.0, 0.9, 35.6, 58.8, 2.5, 0.0, 2.2, 53.8, 46.3, 0.0,97.8,60.2 +7.3277310924369745,5,a-cure-i1,2019-20,Boston - James W Hennigan,00350153, 0.0, 3.5, 28.1, 61.6, 2.0, 0.0, 4.8, 50.2, 49.8, 0.0,95.2,43.6 +8.531120331950207,5,a-cure-i1,2019-20,Boston - Jeremiah E Burke High,00350525, 0.0, 1.2, 62.1, 29.3, 2.9, 1.0, 3.6, 43.4, 56.6, 0.0,96.4,51.4 +1,1,a-cure-i1,2019-20,Boston - John D Philbrick,00350172, 0.7, 0.7, 45.9, 32.2, 1.4, 0.0, 19.2, 42.5, 57.5, 0.0,80.8,0.0 +4.392857142857143,4.39,a-cure-i1,2019-20,Boston - John F Kennedy,00350166, 0.3, 1.8, 17.9, 67.5, 2.1, 0.0, 10.4, 46.5, 53.5, 0.0,89.6,24.6 +7.297071129707113,5,a-cure-i1,2019-20,Boston - John W McCormack,00350179, 0.3, 4.7, 28.7, 59.6, 2.2, 0.0, 4.4, 48.9, 51.1, 0.0,95.6,43.6 +4.372569089048107,4.37,a-cure-i1,2019-20,Boston - John Winthrop,00350180, 0.4, 0.0, 53.1, 38.8, 4.7, 0.8, 2.3, 55.8, 44.2, 0.0,97.7,26.700000000000003 +13.11960542540074,5,a-cure-i1,2019-20,Boston - Joseph J Hurley,00350182, 0.3, 1.4, 4.5, 72.7, 2.2, 0.0, 18.9, 51.5, 48.5, 0.0,81.1,66.5 +4.593220338983051,4.59,a-cure-i1,2019-20,Boston - Joseph Lee,00350183, 0.3, 5.0, 53.6, 29.4, 5.9, 0.2, 5.6, 44.1, 55.9, 0.0,94.4,27.1 +1,1,a-cure-i1,2019-20,Boston - Joseph P Manning,00350184, 0.0, 4.2, 13.2, 25.0, 9.0, 0.7, 47.9, 51.4, 48.6, 0.0,52.1,2.6 +9.539622641509435,5,a-cure-i1,2019-20,Boston - Joseph P Tynan,00350181, 0.0, 6.8, 41.5, 25.6, 5.6, 0.0, 20.5, 41.5, 58.5, 0.0,79.5,47.400000000000006 +10.342342342342343,5,a-cure-i1,2019-20,Boston - Josiah Quincy,00350286, 0.0, 62.3, 12.1, 10.2, 4.3, 0.0, 11.2, 50.2, 49.8, 0.0,88.8,57.4 +7.950718685831623,5,a-cure-i1,2019-20,Boston - Joyce Kilmer,00350190, 0.0, 8.3, 14.1, 21.2, 4.9, 0.2, 51.3, 43.3, 56.7, 0.0,48.7,24.200000000000003 +9.344262295081968,5,a-cure-i1,2019-20,Boston - King K-8,00350376, 0.7, 0.9, 57.3, 34.6, 4.1, 0.0, 2.4, 49.9, 50.1, 0.0,97.6,57.0 +3.7812177502579973,3.78,a-cure-i1,2019-20,Boston - Lee Academy,00350001, 0.0, 7.7, 45.9, 37.1, 6.2, 0.0, 3.1, 48.5, 51.5, 0.0,96.9,22.9 +9.273469387755101,5,a-cure-i1,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 8.6, 41.0, 44.7, 3.5, 0.2, 2.0, 43.2, 56.8, 0.0,98.0,56.8 +7.775700934579438,5,a-cure-i1,2019-20,Boston - Lyndon,00350262, 0.2, 2.9, 8.9, 25.2, 5.4, 0.2, 57.2, 47.2, 52.8, 0.0,42.8,20.799999999999997 +8.98723404255319,5,a-cure-i1,2019-20,Boston - Lyon K-8,00350004, 0.0, 9.1, 25.8, 27.3, 8.3, 0.0, 29.5, 40.9, 59.1, 0.0,70.5,39.599999999999994 +5.860082304526748,5,a-cure-i1,2019-20,Boston - Lyon Upper 9-12,00350655, 0.0, 8.3, 23.3, 36.1, 5.3, 0.0, 27.1, 38.3, 61.7, 0.0,72.9,26.7 +7.8028747433264884,5,a-cure-i1,2019-20,Boston - Madison Park High,00350537, 0.4, 1.4, 38.6, 54.9, 1.7, 0.4, 2.6, 41.6, 58.4, 0.0,97.4,47.5 +1.4478527607361964,1.45,a-cure-i1,2019-20,Boston - Manassah E Bradley,00350215, 0.0, 7.7, 7.0, 48.0, 2.2, 0.4, 34.8, 45.8, 54.2, 0.0,65.2,5.9 +8.766902119071647,5,a-cure-i1,2019-20,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 4.7, 93.4, 0.9, 0.0, 0.9, 51.7, 48.3, 0.0,99.1,54.300000000000004 +5.628997867803838,5,a-cure-i1,2019-20,Boston - Mario Umana Academy,00350656, 0.2, 1.9, 2.4, 88.0, 1.3, 0.0, 6.2, 47.8, 52.2, 0.0,93.8,33.0 +10.074074074074074,5,a-cure-i1,2019-20,Boston - Mather,00350227, 0.9, 32.5, 38.3, 16.9, 6.0, 0.0, 5.5, 49.2, 50.8, 0.0,94.5,59.5 +6.709677419354839,5,a-cure-i1,2019-20,Boston - Mattahunt Elementary School,00350016, 0.7, 1.2, 66.7, 23.4, 3.7, 0.2, 3.9, 42.1, 57.9, 0.0,96.1,40.3 +9.018789144050105,5,a-cure-i1,2019-20,Boston - Maurice J Tobin,00350229, 0.2, 2.6, 30.3, 61.3, 1.4, 0.0, 4.2, 50.5, 49.5, 0.0,95.8,54.0 +7.163337250293773,5,a-cure-i1,2019-20,Boston - Michael J Perkins,00350231, 0.0, 6.8, 40.4, 32.9, 5.0, 0.0, 14.9, 52.8, 47.2, 0.0,85.1,38.1 +8.736196319018404,5,a-cure-i1,2019-20,Boston - Mildred Avenue K-8,00350378, 0.7, 1.3, 65.8, 26.8, 3.1, 0.0, 2.2, 48.1, 51.9, 0.0,97.8,53.4 +11.273846153846154,5,a-cure-i1,2019-20,Boston - Mission Hill School,00350382, 0.0, 1.3, 23.3, 32.7, 7.2, 0.4, 35.0, 39.9, 59.6, 0.4,65.0,45.800000000000004 +11.160330578512397,5,a-cure-i1,2019-20,Boston - Mozart,00350237, 2.4, 3.6, 25.7, 22.2, 6.6, 0.0, 39.5, 40.1, 59.9, 0.0,60.5,42.2 +8.359255202628697,5,a-cure-i1,2019-20,Boston - Nathan Hale,00350243, 0.0, 7.4, 51.0, 31.5, 1.3, 0.0, 8.7, 53.0, 47.0, 0.0,91.3,47.7 +6.840816326530612,5,a-cure-i1,2019-20,Boston - New Mission High School,00350542, 0.2, 1.8, 51.2, 43.4, 1.3, 0.0, 2.0, 52.3, 47.7, 0.0,98.0,41.9 +6.2928870292887025,5,a-cure-i1,2019-20,Boston - O W Holmes,00350138, 0.0, 3.1, 56.1, 32.3, 4.1, 0.0, 4.4, 43.2, 56.8, 0.0,95.6,37.599999999999994 +9.936651583710406,5,a-cure-i1,2019-20,Boston - O'Bryant School Math/Science,00350575, 0.2, 20.4, 32.7, 33.0, 2.0, 0.2, 11.6, 56.5, 43.5, 0.0,88.4,54.9 +12.118993135011442,5,a-cure-i1,2019-20,Boston - Oliver Hazard Perry,00350255, 0.0, 2.8, 18.7, 18.7, 3.6, 0.0, 56.3, 50.4, 49.6, 0.0,43.7,33.1 +4.77079107505071,4.77,a-cure-i1,2019-20,Boston - Orchard Gardens,00350257, 0.9, 1.0, 53.4, 40.8, 1.9, 0.6, 1.4, 50.2, 49.8, 0.0,98.6,29.4 +5.575501583949314,5,a-cure-i1,2019-20,Boston - Patrick J Kennedy,00350264, 0.0, 2.3, 4.5, 87.2, 0.8, 0.0, 5.3, 44.0, 56.0, 0.0,94.7,33.0 +6.478214665249735,5,a-cure-i1,2019-20,Boston - Paul A Dever,00350268, 0.7, 4.2, 26.7, 59.9, 2.4, 0.2, 5.9, 46.5, 53.5, 0.0,94.1,38.1 +7.441860465116279,5,a-cure-i1,2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 2.3, 0.6, 68.4, 25.4, 2.3, 0.0, 1.1, 54.8, 45.2, 0.0,98.9,46.0 +9.0,5,a-cure-i1,2019-20,Boston - Phineas Bates,00350278, 0.4, 4.2, 29.2, 32.1, 4.6, 0.0, 29.6, 47.9, 52.1, 0.0,70.4,39.6 +9.922996878251821,5,a-cure-i1,2019-20,Boston - Quincy Upper School,00350565, 0.2, 49.2, 20.6, 23.5, 2.6, 0.0, 3.9, 46.9, 53.1, 0.0,96.1,59.599999999999994 +11.431034482758621,5,a-cure-i1,2019-20,Boston - Rafael Hernandez,00350691, 0.0, 0.2, 2.7, 87.5, 2.2, 0.0, 7.2, 53.1, 46.9, 0.0,92.8,66.3 +7.513513513513513,5,a-cure-i1,2019-20,Boston - Richard J Murphy,00350240, 0.3, 47.2, 16.8, 21.0, 3.4, 0.1, 11.2, 46.5, 53.5, 0.0,88.8,41.699999999999996 +6.061757719714964,5,a-cure-i1,2019-20,Boston - Roger Clap,00350298, 0.0, 8.8, 32.5, 39.5, 3.5, 0.0, 15.8, 50.9, 49.1, 0.0,84.2,31.9 +8.122786304604487,5,a-cure-i1,2019-20,Boston - Samuel Adams,00350302, 0.5, 0.9, 3.6, 79.3, 0.5, 0.0, 15.3, 50.5, 49.5, 0.0,84.7,43.0 +6.752916224814422,5,a-cure-i1,2019-20,Boston - Samuel W Mason,00350304, 0.9, 1.3, 52.6, 31.7, 7.8, 0.0, 5.7, 42.6, 57.0, 0.4,94.3,39.8 +8.987854251012147,5,a-cure-i1,2019-20,Boston - Sarah Greenwood,00350308, 0.0, 0.2, 18.4, 78.4, 1.5, 0.2, 1.2, 46.8, 53.2, 0.0,98.8,55.5 +6.976939203354297,5,a-cure-i1,2019-20,Boston - Snowden International School at Copley,00350690, 0.4, 6.1, 34.2, 52.3, 2.3, 0.0, 4.6, 47.3, 52.7, 0.0,95.4,41.599999999999994 +6.439425051334703,5,a-cure-i1,2019-20,Boston - TechBoston Academy,00350657, 0.3, 2.7, 62.5, 29.1, 2.8, 0.0, 2.6, 45.0, 55.0, 0.0,97.4,39.2 +7.488659793814433,5,a-cure-i1,2019-20,Boston - The English High,00350535, 0.2, 0.9, 36.4, 58.1, 1.2, 0.2, 3.0, 44.2, 55.7, 0.2,97.0,45.4 +6.505263157894737,5,a-cure-i1,2019-20,Boston - Thomas J Kenny,00350328, 0.7, 10.8, 34.1, 25.0, 5.4, 0.0, 24.0, 45.6, 54.4, 0.0,76.0,30.9 +5.425101214574899,5,a-cure-i1,2019-20,Boston - UP Academy Holland,00350167, 0.7, 3.4, 48.7, 43.1, 2.5, 0.4, 1.2, 51.6, 48.4, 0.0,98.8,33.5 +10.661190965092402,5,a-cure-i1,2019-20,Boston - Urban Science Academy,00350579, 0.0, 0.0, 51.3, 46.2, 0.0, 0.0, 2.6, 43.6, 56.4, 0.0,97.4,64.9 +8.236902050113894,5,a-cure-i1,2019-20,Boston - Warren-Prescott,00350346, 0.0, 4.0, 11.9, 21.9, 6.1, 0.0, 56.1, 49.3, 50.7, 0.0,43.9,22.599999999999998 +8.381760339342524,5,a-cure-i1,2019-20,Boston - Washington Irving Middle,00350445, 0.4, 0.8, 43.4, 46.7, 2.9, 0.0, 5.7, 49.6, 50.4, 0.0,94.3,49.4 +17.222820236813778,5,a-cure-i1,2019-20,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 57.1, 32.1, 3.6, 0.0, 7.1, 50.0, 50.0, 0.0,92.9,100.0 +8.808988764044942,5,a-cure-i1,2019-20,Boston - William E Russell,00350366, 0.3, 11.5, 26.5, 56.4, 2.6, 0.5, 2.1, 47.8, 52.2, 0.0,97.9,53.9 +6.041349292709467,5,a-cure-i1,2019-20,Boston - William Ellery Channing,00350360, 0.0, 2.2, 42.6, 43.9, 2.7, 0.4, 8.1, 43.9, 56.1, 0.0,91.9,34.7 +4.367509986684421,4.37,a-cure-i1,2019-20,Boston - William H Ohrenberger,00350258, 0.0, 3.8, 29.5, 37.7, 4.0, 0.0, 24.9, 48.2, 51.8, 0.0,75.1,20.5 +5.587852494577007,5,a-cure-i1,2019-20,Boston - William McKinley,00350363, 0.6, 1.6, 44.2, 42.6, 3.1, 0.0, 7.8, 23.5, 76.5, 0.0,92.2,32.2 +8.589303733602422,5,a-cure-i1,2019-20,Boston - William Monroe Trotter,00350370, 0.5, 0.5, 56.3, 37.0, 3.7, 1.2, 0.9, 49.3, 50.7, 0.0,99.1,53.2 +7.596180081855389,5,a-cure-i1,2019-20,Boston - Winship Elementary,00350374, 0.0, 17.1, 15.0, 33.3, 7.9, 0.0, 26.7, 52.9, 47.1, 0.0,73.3,34.8 +11.208040201005026,5,a-cure-i1,2019-20,Boston - Young Achievers,00350380, 0.2, 0.2, 48.0, 49.2, 2.0, 0.0, 0.5, 47.7, 52.3, 0.0,99.5,69.7 +11.136690647482013,5,a-cure-i1,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.3, 1.7, 32.6, 18.2, 2.7, 0.0, 44.4, 49.8, 50.2, 0.0,55.6,38.699999999999996 +7.94904458598726,5,a-cure-i1,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 1.0, 1.0, 48.1, 42.8, 1.4, 0.0, 5.8, 49.0, 50.7, 0.2,94.2,46.8 +7.012987012987012,5,a-cure-i1,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.2, 1.6, 43.0, 44.4, 2.8, 0.4, 7.6, 49.0, 51.0, 0.0,92.4,40.5 +5.197139938712973,5,a-cure-i1,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.2, 0.5, 66.6, 27.4, 3.1, 0.2, 2.1, 49.4, 50.6, 0.0,97.9,31.800000000000004 +2.1604060913705583,2.16,a-cure-i1,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.1, 0.2, 62.9, 31.6, 3.7, 0.0, 1.5, 52.7, 47.3, 0.0,98.5,13.3 +1,1,a-cure-i1,2019-20,Bourne - Bourne High School,00360505, 0.7, 2.8, 1.1, 4.8, 2.8, 0.2, 87.6, 56.8, 43.2, 0.0,12.400000000000006,3.1 +1,1,a-cure-i1,2019-20,Bourne - Bourne Intermediate School,00360030, 0.4, 0.8, 2.1, 7.2, 3.2, 0.4, 85.9, 52.3, 47.7, 0.0,14.099999999999994,0.0 +8.283687943262414,5,a-cure-i1,2019-20,Bourne - Bourne Middle School,00360325, 2.0, 1.6, 2.0, 5.7, 2.9, 0.0, 85.9, 49.1, 50.9, 0.0,14.099999999999994,7.3 +1,1,a-cure-i1,2019-20,Bourne - Bournedale Elementary School,00360005, 0.4, 1.7, 1.7, 5.9, 4.3, 0.0, 85.9, 49.9, 50.1, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Boxford - Harry Lee Cole,00380005, 0.0, 2.2, 0.0, 3.7, 6.8, 0.0, 87.3, 48.3, 51.7, 0.0,12.700000000000003,0.0 +8.912751677852347,5,a-cure-i1,2019-20,Boxford - Spofford Pond,00380013, 0.2, 5.2, 0.9, 2.6, 5.9, 0.0, 85.1, 46.7, 53.3, 0.0,14.900000000000006,8.3 +1,1,a-cure-i1,2019-20,Braintree - Archie T Morrison,00400033, 0.2, 17.0, 8.9, 5.4, 1.5, 0.0, 66.9, 50.4, 49.6, 0.0,33.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Braintree - Braintree High,00400505, 0.0, 19.4, 4.7, 4.5, 1.7, 0.2, 69.5, 50.5, 49.5, 0.1,30.5,4.5 +1,1,a-cure-i1,2019-20,Braintree - Donald Ross,00400050, 0.0, 24.4, 6.2, 5.4, 1.9, 0.0, 62.0, 47.3, 52.7, 0.0,38.0,0.0 +1,1,a-cure-i1,2019-20,Braintree - East Middle School,00400305, 0.0, 20.9, 7.7, 6.5, 0.9, 0.1, 63.8, 49.0, 51.0, 0.0,36.2,2.0 +1,1,a-cure-i1,2019-20,Braintree - Highlands,00400015, 0.5, 21.3, 2.2, 2.6, 1.0, 0.0, 72.5, 49.0, 51.0, 0.0,27.5,0.0 +1,1,a-cure-i1,2019-20,Braintree - Hollis,00400005, 0.2, 24.3, 1.1, 4.8, 2.5, 0.0, 67.0, 45.2, 54.8, 0.0,33.0,0.0 +1,1,a-cure-i1,2019-20,Braintree - Liberty,00400025, 0.0, 28.7, 2.2, 4.7, 3.0, 0.5, 60.8, 49.1, 50.9, 0.0,39.2,0.0 +1,1,a-cure-i1,2019-20,Braintree - Mary E Flaherty School,00400020, 0.0, 26.5, 3.2, 5.5, 3.2, 0.0, 61.6, 52.6, 47.4, 0.0,38.4,0.0 +1,1,a-cure-i1,2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 0.4, 26.3, 3.1, 4.7, 1.6, 0.0, 63.9, 43.9, 56.1, 0.0,36.1,0.0 +1,1,a-cure-i1,2019-20,Braintree - South Middle School,00400310, 0.3, 20.1, 4.2, 3.2, 0.6, 0.0, 71.6, 52.4, 47.5, 0.1,28.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Brewster - Eddy Elementary,00410010, 0.0, 0.8, 2.8, 7.3, 5.3, 0.0, 83.7, 47.6, 52.4, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.9, 10.3, 6.7, 0.0, 82.1, 46.9, 53.1, 0.0,17.900000000000006,0.0 +5.392712550607287,5,a-cure-i1,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.9, 68.3, 26.0, 3.3, 0.3, 1.2, 52.1, 47.9, 0.0,98.8,33.3 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.2, 1.1, 6.8, 1.6, 7.0, 0.2, 83.1, 47.9, 52.1, 0.0,16.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.1, 2.2, 5.8, 1.4, 4.8, 0.1, 85.6, 50.4, 49.6, 0.0,14.400000000000006,1.2 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 2.3, 8.0, 2.1, 3.2, 0.0, 84.4, 49.5, 50.5, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 3.0, 4.8, 3.6, 4.8, 0.0, 83.6, 48.2, 51.8, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.2, 2.7, 5.5, 4.7, 4.8, 0.2, 82.0, 45.4, 54.6, 0.0,18.0,0.0 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 0.1, 3.1, 7.3, 0.9, 3.3, 0.0, 85.2, 47.6, 52.4, 0.0,14.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 7.1, 0.0, 0.0, 0.0, 92.9, 35.7, 64.3, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 1.8, 7.0, 2.0, 4.8, 0.0, 84.4, 49.1, 50.9, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Brimfield - Brimfield Elementary,00430005, 0.3, 1.0, 1.3, 3.7, 0.3, 0.0, 93.3, 51.5, 48.5, 0.0,6.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.4, 1.6, 4.2, 1.3, 0.2, 92.2, 71.2, 28.4, 0.4,7.799999999999997,2.9 +1,1,a-cure-i1,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.6, 0.7, 2.9, 6.3, 3.8, 0.0, 85.7, 43.1, 56.8, 0.1,14.299999999999997,1.8 +1,1,a-cure-i1,2019-20,Brockton - Ashfield Middle School,00440421, 1.1, 3.9, 49.1, 12.5, 3.2, 0.4, 29.9, 50.0, 50.0, 0.0,70.1,0.0 +1,1,a-cure-i1,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 0.4, 0.8, 55.3, 18.6, 5.5, 0.4, 19.0, 43.9, 56.1, 0.0,81.0,0.0 +2.909090909090909,2.91,a-cure-i1,2019-20,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 43.7, 24.3, 5.8, 1.0, 25.2, 38.8, 61.2, 0.0,74.8,13.6 +3.5366430260047284,3.54,a-cure-i1,2019-20,Brockton - Brockton High,00440505, 0.4, 2.4, 63.3, 14.5, 3.8, 0.2, 15.4, 46.6, 53.4, 0.0,84.6,18.7 +2.204081632653061,2.2,a-cure-i1,2019-20,Brockton - Brookfield,00440010, 0.4, 1.3, 60.0, 10.1, 6.3, 0.2, 21.6, 49.7, 50.3, 0.0,78.4,10.8 +1,1,a-cure-i1,2019-20,Brockton - Downey,00440110, 0.5, 1.2, 55.8, 18.2, 6.3, 0.5, 17.5, 44.6, 55.4, 0.0,82.5,2.7 +1,1,a-cure-i1,2019-20,Brockton - Dr W Arnone Community School,00440001, 0.4, 0.4, 61.9, 19.8, 7.3, 0.0, 10.2, 42.5, 57.5, 0.0,89.8,2.3 +2.0861678004535147,2.09,a-cure-i1,2019-20,Brockton - East Middle School,00440405, 0.4, 1.2, 67.9, 15.0, 3.7, 0.0, 11.8, 47.8, 52.2, 0.0,88.2,11.5 +1.9658703071672354,1.97,a-cure-i1,2019-20,Brockton - Edgar B Davis,00440023, 0.4, 0.5, 66.1, 14.8, 5.8, 0.4, 12.1, 50.0, 50.0, 0.0,87.9,10.8 +10.31304347826087,5,a-cure-i1,2019-20,Brockton - Edison Academy,00440520, 0.0, 0.4, 69.9, 18.5, 2.8, 0.4, 8.0, 41.0, 59.0, 0.0,92.0,59.3 +3.4640943193997855,3.46,a-cure-i1,2019-20,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 53.3, 33.3, 6.7, 0.0, 6.7, 46.7, 53.3, 0.0,93.3,20.2 +1.9349593495934958,1.93,a-cure-i1,2019-20,Brockton - Gilmore Elementary School,00440055, 0.5, 0.5, 82.5, 11.7, 3.2, 0.0, 1.6, 50.8, 49.2, 0.0,98.4,11.9 +2.8751714677640603,2.88,a-cure-i1,2019-20,Brockton - Hancock,00440045, 0.2, 3.1, 49.6, 12.8, 6.8, 0.4, 27.1, 53.3, 46.7, 0.0,72.9,13.100000000000001 +1.1733333333333333,1.17,a-cure-i1,2019-20,Brockton - Huntington Therapeutic Day School,00440400, 1.6, 1.6, 46.9, 20.3, 4.7, 0.0, 25.0, 32.8, 67.2, 0.0,75.0,5.5 +2.294416243654822,2.29,a-cure-i1,2019-20,Brockton - John F Kennedy,00440017, 0.0, 3.0, 60.7, 8.8, 5.9, 0.3, 21.2, 50.3, 49.7, 0.0,78.8,11.299999999999999 +2.1026282853566958,2.1,a-cure-i1,2019-20,Brockton - Joseph F. Plouffe Academy,00440422, 0.4, 3.5, 41.3, 30.1, 4.6, 0.0, 20.1, 50.7, 49.3, 0.0,79.9,10.5 +1.3921815889029003,1.39,a-cure-i1,2019-20,Brockton - Louis F Angelo Elementary,00440065, 0.3, 5.3, 56.1, 13.7, 3.7, 0.1, 20.7, 47.0, 53.0, 0.0,79.3,6.8999999999999995 +3.633958103638368,3.63,a-cure-i1,2019-20,Brockton - Manthala George Jr. School,00440003, 0.3, 0.3, 42.5, 44.7, 2.8, 0.1, 9.3, 48.4, 51.6, 0.0,90.7,20.599999999999998 +2.2572614107883817,2.26,a-cure-i1,2019-20,Brockton - Mary E. Baker School,00440002, 0.1, 1.6, 48.8, 16.2, 5.2, 0.3, 27.7, 47.2, 52.8, 0.0,72.3,10.2 +3.6066298342541434,3.61,a-cure-i1,2019-20,Brockton - North Middle School,00440410, 0.6, 2.4, 66.7, 17.3, 3.6, 0.0, 9.5, 39.3, 60.7, 0.0,90.5,20.4 +1,1,a-cure-i1,2019-20,Brockton - Oscar F Raymond,00440078, 0.1, 0.9, 79.3, 10.9, 2.7, 0.1, 6.0, 46.8, 53.2, 0.0,94.0,4.6 +2.306805074971165,2.31,a-cure-i1,2019-20,Brockton - South Middle School,00440415, 0.0, 1.2, 64.8, 16.1, 4.7, 0.0, 13.3, 43.9, 56.1, 0.0,86.7,12.5 +1.3982521847690388,1.4,a-cure-i1,2019-20,Brockton - West Middle School,00440420, 0.6, 3.2, 60.1, 12.4, 3.7, 0.1, 19.9, 46.2, 53.8, 0.0,80.1,7.0 +5.695198329853863,5,a-cure-i1,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 0.2, 1.8, 54.0, 38.0, 1.9, 0.0, 4.2, 53.1, 46.9, 0.0,95.8,34.1 +1,1,a-cure-i1,2019-20,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.3, 5.2, 4.6, 0.0, 89.9, 46.6, 53.4, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 31.3, 2.1, 4.2, 14.6, 0.0, 47.9, 41.7, 58.3, 0.0,52.1,0.0 +10.071833648393195,5,a-cure-i1,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 29.4, 5.9, 11.8, 5.9, 0.0, 47.1, 47.1, 52.9, 0.0,52.9,33.3 +1,1,a-cure-i1,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 26.8, 3.6, 8.9, 7.1, 0.0, 53.6, 48.2, 51.8, 0.0,46.4,0.0 +5.6491228070175445,5,a-cure-i1,2019-20,Brookline - Brookline High,00460505, 0.0, 16.4, 7.9, 11.4, 9.8, 0.1, 54.4, 48.7, 50.9, 0.4,45.6,16.1 +3.5764705882352943,3.58,a-cure-i1,2019-20,Brookline - Coolidge Corner School,00460015, 0.0, 14.9, 5.3, 12.1, 10.2, 0.0, 57.5, 49.2, 50.6, 0.2,42.5,9.5 +3.6432637571157493,3.64,a-cure-i1,2019-20,Brookline - Edith C Baker,00460005, 0.1, 30.7, 5.5, 8.5, 7.9, 0.0, 47.3, 49.5, 50.5, 0.0,52.7,12.0 +3.7832512315270934,3.78,a-cure-i1,2019-20,Brookline - Heath,00460025, 0.0, 17.2, 4.2, 8.3, 10.9, 0.0, 59.4, 49.8, 50.2, 0.0,40.6,9.6 +5.561904761904763,5,a-cure-i1,2019-20,Brookline - John D Runkle,00460045, 0.0, 15.4, 3.2, 12.0, 11.4, 0.0, 58.0, 47.5, 52.5, 0.0,42.0,14.600000000000001 +5.0695970695970685,5,a-cure-i1,2019-20,Brookline - Lawrence,00460030, 0.0, 31.1, 4.9, 9.6, 8.8, 0.3, 45.4, 47.9, 52.1, 0.0,54.6,17.299999999999997 +6.986425339366514,5,a-cure-i1,2019-20,Brookline - Michael Driscoll,00460020, 0.0, 19.2, 3.8, 7.3, 13.8, 0.0, 55.8, 47.3, 52.7, 0.0,44.2,19.299999999999997 +7.585657370517928,5,a-cure-i1,2019-20,Brookline - Pierce,00460040, 0.0, 25.8, 4.3, 10.0, 10.2, 0.0, 49.8, 50.8, 49.0, 0.1,50.2,23.8 +1,1,a-cure-i1,2019-20,Brookline - The Lynch Center,00460060, 0.0, 19.3, 15.8, 8.8, 17.5, 0.0, 38.6, 42.1, 57.9, 0.0,61.4,0.0 +4.625,4.63,a-cure-i1,2019-20,Brookline - William H Lincoln,00460035, 0.2, 22.6, 10.8, 10.4, 7.3, 0.0, 48.8, 52.4, 47.6, 0.0,51.2,14.8 +3.1522388059701494,3.15,a-cure-i1,2019-20,Burlington - Burlington High,00480505, 0.5, 15.4, 6.7, 7.2, 3.7, 0.0, 66.5, 46.8, 53.2, 0.0,33.5,6.6000000000000005 +1,1,a-cure-i1,2019-20,Burlington - Fox Hill,00480007, 0.0, 22.0, 6.7, 6.1, 3.4, 0.0, 61.9, 48.9, 51.1, 0.0,38.1,0.0 +1,1,a-cure-i1,2019-20,Burlington - Francis Wyman Elementary,00480035, 0.2, 18.0, 10.5, 8.1, 4.7, 0.0, 58.6, 48.9, 51.1, 0.0,41.4,2.9 +1,1,a-cure-i1,2019-20,Burlington - Marshall Simonds Middle,00480303, 0.1, 17.1, 5.8, 5.8, 3.2, 0.0, 67.8, 52.1, 47.9, 0.0,32.2,0.0 +1,1,a-cure-i1,2019-20,Burlington - Memorial,00480015, 0.3, 18.8, 3.6, 9.2, 5.6, 0.0, 62.6, 49.1, 50.9, 0.0,37.4,3.6 +4.390243902439025,4.39,a-cure-i1,2019-20,Burlington - Pine Glen Elementary,00480020, 0.0, 17.5, 3.4, 5.6, 6.3, 0.0, 67.2, 46.9, 53.1, 0.0,32.8,9.0 +16.077544426494345,5,a-cure-i1,2019-20,Cambridge - Amigos School,00490006, 0.0, 3.5, 4.7, 45.3, 8.4, 0.0, 38.1, 54.0, 46.0, 0.0,61.9,62.199999999999996 +6.6796116504854375,5,a-cure-i1,2019-20,Cambridge - Cambridge Rindge and Latin,00490506, 0.4, 10.6, 27.9, 14.8, 7.7, 0.4, 38.2, 50.2, 49.8, 0.0,61.8,25.8 +10.713286713286712,5,a-cure-i1,2019-20,Cambridge - Cambridge Street Upper School,00490305, 0.7, 6.4, 23.0, 17.0, 10.2, 0.0, 42.8, 42.0, 58.0, 0.0,57.2,38.3 +9.963636363636365,5,a-cure-i1,2019-20,Cambridge - Cambridgeport,00490007, 0.0, 7.1, 16.6, 8.3, 12.0, 0.0, 56.0, 47.1, 52.3, 0.6,44.0,27.400000000000002 +4.074418604651163,4.07,a-cure-i1,2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 0.4, 9.8, 50.5, 18.2, 7.0, 0.0, 14.0, 45.3, 54.7, 0.0,86.0,21.9 +5.096774193548387,5,a-cure-i1,2019-20,Cambridge - Graham and Parks,00490080, 0.0, 16.8, 15.7, 10.5, 6.6, 0.0, 50.4, 47.2, 52.8, 0.0,49.6,15.8 +9.190082644628099,5,a-cure-i1,2019-20,Cambridge - Haggerty,00490020, 0.0, 18.6, 14.0, 7.8, 8.1, 0.0, 51.6, 52.7, 47.3, 0.0,48.4,27.799999999999997 +4.54249547920434,4.54,a-cure-i1,2019-20,Cambridge - John M Tobin,00490065, 0.6, 16.4, 19.6, 10.0, 8.7, 0.0, 44.7, 48.2, 51.8, 0.0,55.3,15.7 +4.263610315186247,4.26,a-cure-i1,2019-20,Cambridge - Kennedy-Longfellow,00490040, 0.0, 23.2, 20.9, 17.0, 8.4, 0.3, 30.2, 49.8, 50.2, 0.0,69.8,18.6 +10.512635379061372,5,a-cure-i1,2019-20,Cambridge - King Open,00490035, 0.3, 14.1, 18.8, 10.7, 11.5, 0.0, 44.6, 49.9, 50.1, 0.0,55.4,36.4 +11.294117647058824,5,a-cure-i1,2019-20,Cambridge - Maria L. Baldwin,00490005, 0.0, 8.0, 11.1, 10.3, 9.7, 0.0, 60.9, 47.4, 52.6, 0.0,39.1,27.6 +7.294117647058824,5,a-cure-i1,2019-20,Cambridge - Martin Luther King Jr.,00490030, 0.6, 28.2, 18.7, 5.8, 21.5, 0.0, 25.2, 48.8, 51.2, 0.0,74.8,34.1 +5.049742710120069,5,a-cure-i1,2019-20,Cambridge - Morse,00490045, 0.6, 14.1, 23.3, 12.3, 8.0, 0.0, 41.7, 45.1, 54.9, 0.0,58.3,18.4 +10.611909650924023,5,a-cure-i1,2019-20,Cambridge - Peabody,00490050, 0.0, 15.3, 20.3, 5.9, 7.2, 0.0, 51.3, 50.3, 49.7, 0.0,48.7,32.3 +12.858757062146895,5,a-cure-i1,2019-20,Cambridge - Putnam Avenue Upper School,00490310, 0.4, 15.2, 31.4, 14.8, 8.7, 0.4, 29.2, 52.7, 47.3, 0.0,70.8,56.900000000000006 +4.21792618629174,4.22,a-cure-i1,2019-20,Cambridge - Rindge Avenue Upper School,00490315, 0.4, 10.7, 27.0, 9.6, 9.3, 0.0, 43.1, 55.9, 44.1, 0.0,56.9,15.0 +8.94773519163763,5,a-cure-i1,2019-20,Cambridge - Vassal Lane Upper School,00490320, 0.0, 16.3, 25.9, 7.4, 7.8, 0.0, 42.6, 50.0, 49.6, 0.4,57.4,32.099999999999994 +4.178041543026707,4.18,a-cure-i1,2019-20,Canton - Canton High,00500505, 0.0, 11.5, 11.4, 6.2, 4.6, 0.0, 66.3, 53.0, 46.7, 0.3,33.7,8.8 +1,1,a-cure-i1,2019-20,Canton - Dean S Luce,00500020, 0.0, 12.3, 8.9, 5.5, 7.2, 0.0, 66.2, 50.3, 49.7, 0.0,33.8,0.0 +1,1,a-cure-i1,2019-20,Canton - John F Kennedy,00500017, 0.0, 8.1, 7.1, 5.3, 6.5, 0.4, 72.5, 48.3, 51.7, 0.0,27.5,0.0 +2.7199999999999998,2.72,a-cure-i1,2019-20,Canton - Lt Peter M Hansen,00500012, 0.0, 11.6, 12.4, 7.3, 8.4, 0.2, 60.0, 49.6, 50.4, 0.0,40.0,6.8 +1,1,a-cure-i1,2019-20,Canton - Rodman Early Childhood Center,00500010, 0.0, 14.9, 14.9, 11.5, 3.4, 0.0, 55.2, 37.9, 62.1, 0.0,44.8,0.0 +4.146341463414634,4.15,a-cure-i1,2019-20,Canton - Wm H Galvin Middle,00500305, 0.3, 9.5, 12.2, 4.7, 5.9, 0.3, 67.2, 52.0, 48.0, 0.0,32.8,8.5 +1,1,a-cure-i1,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.4, 2.5, 2.1, 5.0, 4.6, 0.0, 85.4, 51.5, 48.5, 0.0,14.599999999999994,2.5 +1,1,a-cure-i1,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.3, 0.5, 8.9, 13.6, 4.9, 0.2, 70.6, 35.2, 64.6, 0.2,29.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Carlisle - Carlisle School,00510025, 0.0, 11.2, 0.5, 5.0, 9.4, 0.3, 73.5, 47.6, 52.4, 0.0,26.5,1.4 +1,1,a-cure-i1,2019-20,Carver - Carver Elementary School,00520015, 0.1, 0.5, 2.3, 1.7, 1.2, 0.0, 94.1, 49.8, 50.2, 0.0,5.900000000000006,4.6 +20.52173913043481,5,a-cure-i1,2019-20,Carver - Carver Middle/High School,00520405, 0.5, 0.4, 1.2, 1.3, 1.0, 0.1, 95.4, 48.9, 51.1, 0.0,4.599999999999994,5.9 +1,1,a-cure-i1,2019-20,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 2.7, 4.4, 0.0, 92.9, 50.4, 49.6, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Central Berkshire - Craneville,06350025, 0.2, 0.9, 0.2, 8.7, 6.1, 0.0, 83.7, 44.6, 55.4, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.7, 1.3, 2.7, 0.0, 95.3, 56.0, 44.0, 0.0,4.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 0.5, 0.3, 3.7, 3.2, 0.0, 92.0, 47.2, 52.8, 0.0,8.0,0.0 +1,1,a-cure-i1,2019-20,Central Berkshire - Wahconah Regional High,06350505, 0.2, 0.8, 0.4, 3.4, 2.0, 0.0, 93.2, 47.7, 52.3, 0.0,6.799999999999997,0.5 +1,1,a-cure-i1,2019-20,Chelmsford - Byam School,00560030, 0.2, 11.8, 1.4, 8.4, 3.9, 0.0, 74.3, 49.4, 50.6, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Chelmsford - Center Elementary School,00560005, 0.0, 17.8, 2.7, 6.8, 3.7, 0.0, 69.1, 47.3, 52.7, 0.0,30.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Chelmsford - Charles D Harrington,00560025, 0.4, 18.2, 4.5, 9.9, 3.0, 0.0, 64.0, 50.8, 49.2, 0.0,36.0,0.0 +1,1,a-cure-i1,2019-20,Chelmsford - Chelmsford High,00560505, 0.0, 15.6, 3.4, 4.0, 2.3, 0.2, 74.5, 51.3, 48.7, 0.0,25.5,3.8 +1,1,a-cure-i1,2019-20,Chelmsford - Col Moses Parker School,00560305, 0.7, 14.7, 3.7, 7.8, 3.1, 0.0, 70.0, 42.8, 57.2, 0.0,30.0,0.0 +1,1,a-cure-i1,2019-20,Chelmsford - Community Education Center,00560001, 0.6, 23.5, 4.8, 9.0, 4.8, 0.0, 57.2, 37.3, 62.7, 0.0,42.8,0.0 +1,1,a-cure-i1,2019-20,Chelmsford - McCarthy Middle School,00560310, 0.0, 14.3, 3.5, 6.0, 4.7, 0.3, 71.2, 47.3, 52.7, 0.0,28.799999999999997,3.3 +1,1,a-cure-i1,2019-20,Chelmsford - South Row,00560015, 0.5, 15.3, 2.7, 6.3, 3.6, 0.0, 71.6, 49.9, 50.1, 0.0,28.400000000000006,0.0 +2.5801047120418845,2.58,a-cure-i1,2019-20,Chelsea - Chelsea High,00570505, 0.1, 0.3, 4.4, 89.0, 1.6, 0.1, 4.5, 44.3, 55.7, 0.0,95.5,15.399999999999999 +3.235591506572295,3.24,a-cure-i1,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 1.1, 96.8, 1.1, 0.0, 1.1, 37.9, 62.1, 0.0,98.9,20.0 +0.9925133689839571,1,a-cure-i1,2019-20,Chelsea - Clark Avenue School,00570050, 0.4, 0.6, 2.9, 88.5, 1.0, 0.1, 6.5, 47.0, 53.0, 0.0,93.5,5.8 +1,1,a-cure-i1,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 0.4, 0.0, 5.0, 81.7, 1.5, 0.0, 11.6, 50.6, 49.4, 0.0,88.4,3.7 +1.2636072572038421,1.26,a-cure-i1,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.2, 5.9, 85.8, 1.9, 0.0, 6.3, 49.0, 51.0, 0.0,93.7,7.4 +1.9697624190064793,1.97,a-cure-i1,2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.2, 3.0, 88.3, 1.1, 0.0, 7.4, 49.1, 50.9, 0.0,92.6,11.399999999999999 +2.345549738219895,2.35,a-cure-i1,2019-20,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.4, 4.3, 90.5, 0.2, 0.0, 4.5, 55.0, 45.0, 0.0,95.5,14.0 +2.7603833865814695,2.76,a-cure-i1,2019-20,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 4.0, 88.2, 1.6, 0.0, 6.1, 47.7, 52.3, 0.0,93.9,16.2 +1,1,a-cure-i1,2019-20,Chelsea - Shurtleff Early Childhood,00570003, 0.1, 0.0, 4.4, 87.7, 0.9, 0.0, 6.9, 48.4, 51.6, 0.0,93.1,2.4 +1.978494623655914,1.98,a-cure-i1,2019-20,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 5.4, 85.0, 2.6, 0.0, 7.0, 48.1, 51.9, 0.0,93.0,11.5 +1,1,a-cure-i1,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.6, 0.0, 0.8, 2.3, 0.0, 0.0, 95.3, 46.9, 53.1, 0.0,4.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Chicopee - Barry,00610003, 0.0, 2.6, 3.6, 32.1, 3.1, 0.0, 58.6, 44.8, 55.2, 0.0,41.4,0.5 +1,1,a-cure-i1,2019-20,Chicopee - Belcher,00610010, 0.0, 1.6, 9.4, 42.5, 2.8, 0.0, 43.7, 49.2, 50.8, 0.0,56.3,0.0 +1,1,a-cure-i1,2019-20,Chicopee - Bellamy Middle,00610305, 0.0, 2.0, 2.8, 42.6, 4.7, 0.0, 47.9, 47.2, 52.8, 0.0,52.1,1.5 +1,1,a-cure-i1,2019-20,Chicopee - Bowe,00610015, 0.0, 2.0, 6.3, 54.0, 5.9, 0.0, 31.8, 47.9, 52.1, 0.0,68.2,0.5 +2.8852459016393444,2.89,a-cure-i1,2019-20,Chicopee - Bowie,00610020, 0.3, 1.6, 3.2, 23.8, 1.3, 0.3, 69.5, 50.5, 49.5, 0.0,30.5,5.5 +1,1,a-cure-i1,2019-20,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 3.4, 66.1, 6.8, 0.0, 23.7, 35.6, 64.4, 0.0,76.3,0.7 +1,1,a-cure-i1,2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 0.3, 2.4, 2.4, 27.2, 2.2, 0.0, 65.6, 44.1, 55.9, 0.0,34.400000000000006,3.9000000000000004 +1.6703296703296704,1.67,a-cure-i1,2019-20,Chicopee - Chicopee High,00610505, 0.0, 2.5, 5.7, 44.6, 1.8, 0.0, 45.4, 49.5, 50.5, 0.0,54.6,5.7 +1,1,a-cure-i1,2019-20,Chicopee - Dupont Middle,00610310, 0.1, 2.5, 4.3, 43.5, 3.3, 0.0, 46.3, 44.8, 55.2, 0.0,53.7,3.7 +1,1,a-cure-i1,2019-20,Chicopee - Fairview Elementary,00610050, 0.0, 1.6, 5.0, 51.7, 3.0, 0.0, 38.7, 42.6, 57.4, 0.0,61.3,4.3 +1.093833780160858,1.09,a-cure-i1,2019-20,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.9, 5.5, 65.6, 2.6, 0.0, 25.4, 47.7, 52.3, 0.0,74.6,5.1 +1,1,a-cure-i1,2019-20,Chicopee - Lambert-Lavoie,00610040, 0.0, 1.4, 3.1, 25.0, 6.3, 0.0, 64.2, 44.8, 55.2, 0.0,35.8,0.6 +1,1,a-cure-i1,2019-20,Chicopee - Litwin,00610022, 0.0, 0.8, 5.5, 33.4, 1.8, 0.0, 58.4, 48.2, 51.8, 0.0,41.6,0.0 +3.3809523809523814,3.38,a-cure-i1,2019-20,Chicopee - Streiber Memorial School,00610065, 0.0, 2.9, 6.1, 18.4, 5.7, 0.4, 66.4, 45.9, 54.1, 0.0,33.599999999999994,7.1 +1,1,a-cure-i1,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 4.0, 3.2, 30.5, 5.6, 0.0, 56.6, 39.0, 61.0, 0.0,43.4,0.0 +4.984126984126984,4.98,a-cure-i1,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.2, 8.2, 7.0, 30.2, 4.7, 0.0, 49.6, 48.9, 50.9, 0.2,50.4,15.7 +6.289766970618034,5,a-cure-i1,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 65.8, 32.0, 0.9, 0.0, 1.3, 42.5, 57.5, 0.0,98.7,38.8 +4.853932584269662,4.85,a-cure-i1,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.5, 64.8, 31.1, 1.6, 0.0, 2.1, 48.7, 51.3, 0.0,97.9,29.7 +1,1,a-cure-i1,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.7, 2.0, 12.8, 47.0, 7.4, 0.0, 30.2, 44.3, 55.0, 0.7,69.8,0.0 +1,1,a-cure-i1,2019-20,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.5, 2.5, 3.0, 0.0, 93.9, 50.3, 49.7, 0.0,6.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Clinton - Clinton Elementary,00640050, 0.0, 1.1, 1.7, 25.2, 2.5, 0.0, 69.5, 48.9, 51.1, 0.0,30.5,3.7 +3.7253731343283585,3.73,a-cure-i1,2019-20,Clinton - Clinton Middle School,00640305, 0.0, 1.0, 3.3, 26.9, 2.2, 0.2, 66.5, 45.9, 54.1, 0.0,33.5,7.800000000000001 +2.297872340425532,2.3,a-cure-i1,2019-20,Clinton - Clinton Senior High,00640505, 0.0, 2.0, 4.8, 29.6, 1.3, 0.0, 62.4, 45.4, 54.6, 0.0,37.6,5.4 +7.62753036437247,5,a-cure-i1,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.3, 0.0, 76.1, 21.2, 1.2, 0.0, 1.2, 48.1, 51.9, 0.0,98.8,47.1 +1,1,a-cure-i1,2019-20,Cohasset - Cohasset High School,00650505, 0.4, 4.1, 2.8, 1.7, 0.9, 0.0, 90.2, 52.2, 47.8, 0.0,9.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Cohasset - Cohasset Middle School,00650305, 0.0, 1.4, 2.9, 1.2, 1.7, 0.0, 92.8, 47.0, 53.0, 0.0,7.200000000000003,3.6 +1,1,a-cure-i1,2019-20,Cohasset - Deer Hill,00650005, 0.0, 2.6, 2.9, 0.6, 2.9, 0.0, 91.1, 47.0, 53.0, 0.0,8.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Cohasset - Joseph Osgood,00650010, 0.0, 0.6, 3.6, 1.8, 2.1, 0.0, 91.9, 52.2, 47.8, 0.0,8.099999999999994,0.0 +2.802784222737819,2.8,a-cure-i1,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.1, 27.3, 20.1, 35.4, 3.3, 0.0, 13.8, 51.3, 48.7, 0.0,86.2,15.1 +8.125391849529779,5,a-cure-i1,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.6, 3.7, 70.2, 16.9, 4.0, 0.3, 4.3, 58.0, 42.0, 0.0,95.7,48.599999999999994 +2.112589559877175,2.11,a-cure-i1,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.3, 0.8, 1.0, 95.8, 0.0, 0.0, 2.3, 48.8, 51.3, 0.0,97.7,12.9 +5.588594704684317,5,a-cure-i1,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.5, 97.8, 0.0, 0.0, 1.8, 50.8, 49.3, 0.0,98.2,34.3 +2.166153846153846,2.17,a-cure-i1,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 1.0, 1.0, 95.0, 0.5, 0.0, 2.5, 50.4, 49.6, 0.0,97.5,13.2 +3.3467048710601714,3.35,a-cure-i1,2019-20,Concord - Alcott,00670005, 0.0, 8.0, 8.4, 9.9, 8.6, 0.0, 65.1, 48.9, 51.1, 0.0,34.900000000000006,7.3 +9.92481203007519,5,a-cure-i1,2019-20,Concord - Concord Middle,00670305, 0.3, 8.3, 5.3, 7.0, 5.8, 0.0, 73.4, 48.7, 51.3, 0.0,26.599999999999994,16.5 +1,1,a-cure-i1,2019-20,Concord - Thoreau,00670020, 0.0, 7.2, 1.8, 7.4, 8.1, 0.0, 75.6, 49.2, 50.8, 0.0,24.400000000000006,4.1 +14.036809815950921,5,a-cure-i1,2019-20,Concord - Willard,00670030, 0.0, 6.0, 1.0, 3.3, 6.0, 0.0, 83.7, 49.0, 51.0, 0.0,16.299999999999997,14.299999999999999 +4.581818181818182,4.58,a-cure-i1,2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 0.1, 8.1, 4.5, 4.7, 4.6, 0.0, 78.0, 51.9, 47.9, 0.2,22.0,6.300000000000001 +3.5146443514644354,3.51,a-cure-i1,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 2.0, 48.8, 42.4, 2.4, 0.0, 4.4, 52.3, 47.7, 0.0,95.6,21.0 +1,1,a-cure-i1,2019-20,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.5, 6.0, 1.5, 0.0, 91.0, 42.9, 57.1, 0.0,9.0,0.0 +1,1,a-cure-i1,2019-20,Danvers - Danvers High,00710505, 0.0, 2.9, 2.0, 8.3, 2.5, 0.0, 84.3, 49.4, 50.5, 0.1,15.700000000000003,0.3 +1,1,a-cure-i1,2019-20,Danvers - Great Oak,00710015, 0.0, 2.0, 2.0, 9.8, 3.9, 0.0, 82.4, 51.3, 48.7, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Danvers - Highlands,00710010, 0.0, 2.6, 2.6, 9.7, 3.4, 0.0, 81.7, 45.2, 54.8, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Danvers - Holten Richmond Middle School,00710305, 0.1, 2.5, 2.5, 9.6, 2.7, 0.0, 82.7, 47.4, 52.6, 0.0,17.299999999999997,3.4 +1,1,a-cure-i1,2019-20,Danvers - Ivan G Smith,00710032, 0.0, 2.3, 1.3, 9.4, 2.3, 0.7, 83.9, 53.2, 46.8, 0.0,16.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Danvers - Riverside,00710030, 0.3, 2.2, 1.9, 8.8, 1.1, 0.3, 85.4, 46.0, 54.0, 0.0,14.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Danvers - Willis E Thorpe,00710045, 0.0, 2.3, 0.6, 6.1, 0.6, 0.0, 90.3, 49.4, 50.6, 0.0,9.700000000000003,4.8 +1,1,a-cure-i1,2019-20,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.6, 0.6, 5.0, 7.5, 0.0, 86.3, 42.5, 57.5, 0.0,13.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Dartmouth - Dartmouth High,00720505, 0.0, 0.2, 2.2, 4.1, 7.9, 0.0, 85.6, 49.0, 51.0, 0.0,14.400000000000006,1.4 +1,1,a-cure-i1,2019-20,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.4, 1.2, 4.3, 5.1, 0.1, 88.7, 48.7, 51.3, 0.0,11.299999999999997,1.5 +1,1,a-cure-i1,2019-20,Dartmouth - George H Potter,00720030, 0.0, 0.8, 1.3, 3.5, 3.8, 0.0, 90.7, 46.2, 53.8, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Dartmouth - James M. Quinn School,00720040, 0.0, 1.3, 1.2, 5.3, 6.3, 0.0, 85.9, 46.7, 53.3, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Dartmouth - Joseph Demello,00720015, 0.0, 1.2, 1.2, 4.2, 7.6, 0.0, 85.7, 48.2, 51.8, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Dedham - Avery,00730010, 0.3, 3.1, 11.1, 30.1, 4.8, 0.3, 50.2, 54.3, 45.7, 0.0,49.8,0.0 +2.749140893470791,2.75,a-cure-i1,2019-20,Dedham - Dedham High,00730505, 0.0, 2.4, 9.6, 15.1, 2.1, 0.0, 70.9, 50.8, 49.0, 0.1,29.099999999999994,5.0 +1,1,a-cure-i1,2019-20,Dedham - Dedham Middle School,00730305, 0.1, 2.5, 6.7, 15.7, 4.3, 0.0, 70.6, 45.3, 54.7, 0.0,29.400000000000006,1.7 +1,1,a-cure-i1,2019-20,Dedham - Early Childhood Center,00730005, 0.0, 2.2, 5.6, 13.1, 8.7, 0.0, 70.4, 46.1, 53.9, 0.0,29.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Dedham - Greenlodge,00730025, 0.0, 0.8, 4.0, 8.8, 4.0, 0.0, 82.4, 42.8, 57.2, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Dedham - Oakdale,00730030, 0.0, 2.0, 7.1, 13.0, 7.9, 0.0, 70.1, 50.8, 49.2, 0.0,29.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Dedham - Riverdale,00730045, 0.0, 5.3, 6.3, 16.4, 4.8, 0.0, 67.2, 49.7, 50.3, 0.0,32.8,0.0 +1,1,a-cure-i1,2019-20,Deerfield - Deerfield Elementary,00740015, 0.0, 0.5, 0.3, 7.0, 7.8, 0.0, 84.5, 50.5, 49.5, 0.0,15.5,0.0 +1,1,a-cure-i1,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.8, 2.6, 10.4, 14.2, 5.1, 0.0, 66.0, 50.8, 49.2, 0.0,34.0,3.1 +1,1,a-cure-i1,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.6, 1.3, 11.0, 14.0, 7.5, 0.3, 64.3, 49.7, 50.3, 0.0,35.7,3.8 +1,1,a-cure-i1,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 2.4, 2.4, 11.2, 16.3, 4.8, 0.3, 62.6, 45.2, 54.8, 0.0,37.4,0.0 +4.317460317460318,4.32,a-cure-i1,2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 2.8, 2.1, 10.9, 17.1, 4.7, 0.2, 62.2, 50.4, 49.6, 0.0,37.8,10.200000000000001 +1,1,a-cure-i1,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 2.4, 2.2, 8.1, 9.9, 10.7, 0.0, 66.7, 46.9, 53.1, 0.0,33.3,3.2 +1,1,a-cure-i1,2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 1.5, 4.4, 8.5, 7.8, 4.6, 0.5, 72.7, 48.8, 51.2, 0.0,27.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 1.8, 1.8, 5.7, 5.9, 0.0, 84.8, 50.2, 49.8, 0.0,15.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.0, 2.0, 4.7, 4.2, 0.0, 88.2, 45.8, 54.2, 0.0,11.799999999999997,4.7 +1,1,a-cure-i1,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.1, 0.9, 1.4, 3.6, 2.1, 0.0, 91.8, 48.1, 51.9, 0.0,8.200000000000003,1.7 +1,1,a-cure-i1,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.5, 1.3, 4.0, 3.9, 0.0, 89.2, 50.1, 49.9, 0.0,10.799999999999997,3.1 +1,1,a-cure-i1,2019-20,Dighton-Rehoboth - Palmer River,06500010, 0.2, 1.9, 0.8, 4.2, 3.5, 0.0, 89.5, 48.6, 51.4, 0.0,10.5,0.0 +1,1,a-cure-i1,2019-20,Douglas - Douglas Elementary School,00770015, 0.0, 0.3, 0.3, 6.0, 4.4, 0.0, 89.0, 47.5, 52.5, 0.0,11.0,0.0 +1,1,a-cure-i1,2019-20,Douglas - Douglas High School,00770505, 0.0, 1.9, 1.4, 4.6, 1.6, 0.8, 89.6, 51.1, 48.9, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Douglas - Douglas Middle School,00770305, 0.0, 1.3, 0.3, 3.9, 3.3, 0.0, 91.1, 46.7, 53.3, 0.0,8.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Douglas - Douglas Primary School,00770005, 0.0, 0.8, 0.8, 7.3, 1.2, 0.0, 89.9, 48.8, 51.2, 0.0,10.099999999999994,0.0 +3.290780141843971,3.29,a-cure-i1,2019-20,Dover - Chickering,00780005, 0.0, 14.9, 3.5, 4.5, 5.1, 0.2, 71.8, 42.4, 57.6, 0.0,28.200000000000003,5.8 +7.004975124378112,5,a-cure-i1,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.3, 7.9, 2.9, 4.4, 4.6, 0.0, 79.9, 50.6, 49.3, 0.1,20.099999999999994,8.8 +4.747252747252747,4.75,a-cure-i1,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.2, 12.4, 3.4, 5.5, 5.7, 0.0, 72.7, 45.6, 54.4, 0.0,27.299999999999997,8.1 +1,1,a-cure-i1,2019-20,Dracut - Brookside Elementary,00790035, 0.0, 7.2, 11.6, 11.6, 0.9, 0.0, 68.6, 48.9, 51.1, 0.0,31.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Dracut - Dracut Senior High,00790505, 0.9, 8.0, 8.9, 6.6, 2.4, 0.0, 73.2, 49.1, 50.9, 0.0,26.799999999999997,1.8 +1,1,a-cure-i1,2019-20,Dracut - George H. Englesby Elementary School,00790045, 0.0, 8.0, 4.7, 16.3, 2.2, 0.0, 68.8, 46.9, 53.1, 0.0,31.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Dracut - Greenmont Avenue,00790030, 0.0, 4.6, 5.3, 14.8, 2.1, 0.0, 73.1, 44.9, 55.1, 0.0,26.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Dracut - Joseph A Campbell Elementary,00790020, 0.2, 5.2, 5.2, 7.2, 2.6, 0.0, 79.7, 45.8, 54.2, 0.0,20.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Dracut - Justus C. Richardson Middle School,00790410, 0.1, 7.4, 6.1, 12.1, 1.7, 0.0, 72.5, 50.4, 49.4, 0.2,27.5,4.2 +6.204756980351602,5,a-cure-i1,2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.4, 1.1, 59.8, 33.2, 1.8, 0.4, 3.3, 53.5, 46.5, 0.0,96.7,37.5 +1,1,a-cure-i1,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.6, 0.8, 9.3, 2.5, 0.0, 86.7, 47.7, 52.3, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.3, 1.0, 1.2, 8.3, 2.4, 0.1, 86.6, 47.5, 52.5, 0.0,13.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.5, 3.0, 11.0, 3.3, 0.0, 82.1, 49.5, 50.5, 0.0,17.900000000000006,4.2 +1,1,a-cure-i1,2019-20,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.2, 0.7, 1.8, 9.1, 2.9, 0.0, 85.3, 50.6, 49.4, 0.0,14.700000000000003,2.6 +1,1,a-cure-i1,2019-20,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.7, 0.9, 7.0, 3.5, 0.0, 87.9, 45.1, 54.9, 0.0,12.099999999999994,0.0 +5.617021276595745,5,a-cure-i1,2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 0.7, 0.4, 1.1, 12.3, 4.3, 0.0, 81.2, 44.9, 55.1, 0.0,18.799999999999997,6.6 +1,1,a-cure-i1,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.2, 1.6, 1.9, 9.1, 2.2, 0.1, 84.9, 51.1, 48.8, 0.1,15.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Duxbury - Alden School,00820004, 0.0, 0.8, 0.5, 2.8, 4.9, 0.0, 91.1, 50.4, 49.6, 0.0,8.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Duxbury - Chandler Elementary,00820006, 0.0, 0.8, 0.8, 3.0, 4.7, 0.0, 90.7, 46.2, 53.8, 0.0,9.299999999999997,3.2 +1,1,a-cure-i1,2019-20,Duxbury - Duxbury High,00820505, 0.1, 1.4, 0.3, 2.1, 3.0, 0.0, 93.1, 48.8, 51.2, 0.0,6.900000000000006,2.9 +1,1,a-cure-i1,2019-20,Duxbury - Duxbury Middle,00820305, 0.1, 1.5, 0.4, 2.4, 3.4, 0.0, 92.2, 50.6, 49.4, 0.0,7.799999999999997,0.0 +1,1,a-cure-i1,2019-20,East Bridgewater - Central,00830005, 0.2, 1.6, 3.5, 4.4, 3.0, 0.0, 87.3, 54.2, 45.8, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.4, 0.6, 2.8, 1.9, 2.0, 0.1, 92.3, 47.6, 52.4, 0.0,7.700000000000003,0.0 +1,1,a-cure-i1,2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 0.6, 1.1, 3.8, 2.5, 3.9, 0.0, 88.1, 45.9, 54.1, 0.0,11.900000000000006,0.0 +4.941176470588235,4.94,a-cure-i1,2019-20,East Longmeadow - Birchland Park,00870305, 0.0, 6.1, 4.3, 6.3, 3.8, 0.0, 79.6, 52.1, 47.9, 0.0,20.400000000000006,6.300000000000001 +9.723756906077352,5,a-cure-i1,2019-20,East Longmeadow - East Longmeadow High,00870505, 0.2, 6.2, 3.0, 7.6, 1.0, 0.1, 81.9, 46.9, 53.0, 0.1,18.099999999999994,11.0 +1,1,a-cure-i1,2019-20,East Longmeadow - Mapleshade,00870010, 0.0, 6.3, 3.5, 13.4, 3.5, 0.0, 73.2, 43.0, 56.7, 0.4,26.799999999999997,0.0 +1,1,a-cure-i1,2019-20,East Longmeadow - Meadow Brook,00870013, 0.2, 3.7, 2.6, 12.9, 3.6, 0.0, 77.0, 47.7, 52.3, 0.0,23.0,3.1 +1,1,a-cure-i1,2019-20,East Longmeadow - Mountain View,00870015, 0.4, 4.4, 2.2, 9.1, 5.1, 0.0, 78.9, 45.1, 54.9, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Eastham - Eastham Elementary,00850005, 0.0, 2.1, 8.8, 2.6, 4.6, 0.0, 82.0, 48.5, 51.5, 0.0,18.0,0.0 +1,1,a-cure-i1,2019-20,Easthampton - Center School,00860005, 0.5, 2.9, 0.0, 15.1, 3.9, 0.0, 77.6, 47.3, 52.7, 0.0,22.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Easthampton - Easthampton High,00860505, 0.0, 3.7, 2.0, 12.7, 2.9, 0.2, 78.5, 51.5, 47.8, 0.7,21.5,2.6 +1,1,a-cure-i1,2019-20,Easthampton - Maple,00860010, 0.4, 2.0, 0.4, 12.1, 5.5, 0.0, 79.7, 47.7, 52.3, 0.0,20.299999999999997,0.0 +4.043321299638989,4.04,a-cure-i1,2019-20,Easthampton - Neil A Pepin,00860020, 1.0, 2.1, 1.5, 15.9, 7.2, 0.0, 72.3, 45.1, 54.9, 0.0,27.700000000000003,7.0 +1,1,a-cure-i1,2019-20,Easthampton - White Brook Middle School,00860305, 0.2, 5.3, 1.6, 13.4, 1.6, 0.0, 77.8, 50.7, 49.3, 0.0,22.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Easton - Center School,00880003, 0.0, 3.7, 10.2, 8.2, 2.9, 0.0, 75.1, 45.3, 54.7, 0.0,24.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Easton - Easton Middle School,00880405, 0.0, 3.4, 6.3, 5.9, 3.0, 0.0, 81.4, 49.3, 50.7, 0.0,18.599999999999994,1.7 +1,1,a-cure-i1,2019-20,Easton - Moreau Hall,00880020, 0.5, 5.4, 8.6, 7.7, 3.2, 0.5, 74.3, 47.7, 52.3, 0.0,25.700000000000003,0.0 +5.9476439790575935,5,a-cure-i1,2019-20,Easton - Oliver Ames High,00880505, 0.3, 3.4, 7.4, 4.9, 3.1, 0.1, 80.9, 50.4, 49.6, 0.0,19.099999999999994,7.1 +1,1,a-cure-i1,2019-20,Easton - Parkview Elementary,00880015, 0.3, 2.2, 4.2, 6.7, 5.1, 0.0, 81.5, 48.9, 51.1, 0.0,18.5,2.2 +1,1,a-cure-i1,2019-20,Easton - Richardson Olmsted School,00880025, 0.7, 2.6, 7.4, 7.4, 3.6, 0.2, 78.0, 47.6, 52.4, 0.0,22.0,4.0 +1,1,a-cure-i1,2019-20,Edgartown - Edgartown Elementary,00890005, 2.6, 0.5, 3.6, 20.2, 4.3, 0.0, 68.8, 51.4, 48.6, 0.0,31.200000000000003,0.0 +7.9101123595505625,5,a-cure-i1,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, 0.3, 0.8, 38.7, 57.0, 1.3, 0.0, 2.1, 64.9, 35.1, 0.0,97.9,48.400000000000006 +1,1,a-cure-i1,2019-20,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.8, 5.3, 11.3, 0.0, 82.7, 42.1, 57.9, 0.0,17.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.3, 1.5, 1.2, 13.1, 3.8, 0.1, 80.1, 58.0, 41.9, 0.1,19.900000000000006,2.2 +1,1,a-cure-i1,2019-20,Everett - Adams School,00930003, 0.0, 7.9, 18.1, 52.8, 0.8, 0.0, 20.5, 48.8, 51.2, 0.0,79.5,0.0 +1.6371077762619373,1.64,a-cure-i1,2019-20,Everett - Devens School,00930030, 0.0, 0.0, 31.7, 36.7, 5.0, 0.0, 26.7, 21.7, 78.3, 0.0,73.3,7.5 +2.421185372005044,2.42,a-cure-i1,2019-20,Everett - Everett High,00930505, 0.5, 4.8, 19.6, 52.7, 1.6, 0.1, 20.7, 48.4, 51.6, 0.0,79.3,12.0 +1,1,a-cure-i1,2019-20,Everett - George Keverian School,00930028, 0.3, 5.4, 14.1, 60.2, 2.3, 0.1, 17.5, 49.2, 50.8, 0.0,82.5,4.2 +1,1,a-cure-i1,2019-20,Everett - Lafayette School,00930038, 0.3, 7.2, 17.4, 50.3, 2.2, 0.0, 22.6, 49.3, 50.7, 0.0,77.4,3.6 +1,1,a-cure-i1,2019-20,Everett - Madeline English School,00930018, 0.4, 6.5, 12.2, 51.6, 2.1, 0.1, 27.1, 49.8, 50.2, 0.0,72.9,0.0 +1,1,a-cure-i1,2019-20,Everett - Parlin School,00930058, 0.0, 2.7, 14.0, 71.1, 0.9, 0.0, 11.2, 54.0, 46.0, 0.0,88.8,0.0 +1.4744027303754264,1.47,a-cure-i1,2019-20,Everett - Sumner G. Whittier School,00930010, 0.8, 5.0, 10.0, 70.6, 1.6, 0.0, 12.1, 49.7, 50.3, 0.0,87.9,8.1 +1,1,a-cure-i1,2019-20,Everett - Webster Extension,00930001, 0.0, 10.9, 17.5, 51.2, 1.4, 0.0, 19.0, 51.2, 48.8, 0.0,81.0,0.0 +1,1,a-cure-i1,2019-20,Everett - Webster School,00930015, 0.0, 5.2, 12.6, 51.4, 1.1, 0.0, 29.8, 46.2, 53.8, 0.0,70.2,3.3 +5.418181818181818,5,a-cure-i1,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.7, 1.0, 6.1, 79.3, 0.6, 0.4, 12.0, 50.3, 49.7, 0.0,88.0,29.799999999999997 +1,1,a-cure-i1,2019-20,Fairhaven - East Fairhaven,00940010, 1.3, 1.5, 3.6, 6.4, 4.3, 0.0, 82.9, 48.2, 51.8, 0.0,17.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Fairhaven - Fairhaven High,00940505, 0.6, 2.4, 1.9, 5.6, 2.0, 0.0, 87.6, 53.8, 46.2, 0.0,12.400000000000006,0.0 +5.910828025477707,5,a-cure-i1,2019-20,Fairhaven - Hastings Middle,00940305, 0.7, 2.8, 2.0, 6.3, 3.9, 0.0, 84.3, 46.6, 53.4, 0.0,15.700000000000003,5.800000000000001 +1,1,a-cure-i1,2019-20,Fairhaven - Leroy Wood,00940030, 0.4, 1.4, 3.9, 3.9, 4.7, 0.0, 85.8, 49.4, 50.6, 0.0,14.200000000000003,0.0 +2.3297644539614564,2.33,a-cure-i1,2019-20,Fall River - B M C Durfee High,00950505, 0.2, 5.3, 8.9, 27.2, 5.0, 0.0, 53.3, 50.1, 49.8, 0.0,46.7,6.800000000000001 +1,1,a-cure-i1,2019-20,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 3.9, 8.4, 34.7, 9.5, 0.0, 43.4, 50.9, 49.1, 0.0,56.6,0.0 +3.409395973154362,3.41,a-cure-i1,2019-20,Fall River - Henry Lord Community School,00950017, 0.0, 3.7, 9.5, 37.1, 9.4, 0.0, 40.4, 46.3, 53.7, 0.0,59.6,12.7 +1,1,a-cure-i1,2019-20,Fall River - James Tansey,00950140, 0.0, 2.0, 2.6, 10.9, 9.2, 0.0, 75.3, 50.7, 49.3, 0.0,24.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Fall River - John J Doran,00950045, 0.0, 1.6, 8.7, 28.8, 12.4, 0.0, 48.5, 48.1, 51.9, 0.0,51.5,0.0 +1,1,a-cure-i1,2019-20,Fall River - Letourneau Elementary School,00950013, 0.0, 1.8, 6.6, 36.4, 8.6, 0.0, 46.5, 49.8, 50.2, 0.0,53.5,0.0 +2.4257274119448695,2.43,a-cure-i1,2019-20,Fall River - Mary Fonseca Elementary School,00950011, 0.3, 3.0, 9.6, 41.2, 11.1, 0.1, 34.7, 45.2, 54.8, 0.0,65.3,9.899999999999999 +2.7875894988066827,2.79,a-cure-i1,2019-20,Fall River - Matthew J Kuss Middle,00950320, 0.0, 5.0, 7.8, 21.6, 7.5, 0.0, 58.1, 54.2, 45.8, 0.0,41.9,7.3 +1,1,a-cure-i1,2019-20,Fall River - Morton Middle,00950315, 0.3, 3.8, 8.2, 23.0, 7.5, 0.2, 57.0, 45.8, 54.2, 0.0,43.0,2.5 +1,1,a-cure-i1,2019-20,Fall River - North End Elementary,00950005, 0.1, 1.4, 9.3, 23.9, 9.6, 0.0, 55.7, 47.4, 52.6, 0.0,44.3,2.8 +1,1,a-cure-i1,2019-20,Fall River - Resiliency Preparatory Academy,00950525, 0.5, 0.5, 14.5, 35.5, 7.0, 0.0, 42.1, 44.4, 55.1, 0.5,57.9,0.8 +1,1,a-cure-i1,2019-20,Fall River - Samuel Watson,00950145, 0.7, 2.9, 10.2, 23.7, 15.7, 0.0, 46.7, 52.9, 47.1, 0.0,53.3,0.0 +2.026666666666667,2.03,a-cure-i1,2019-20,Fall River - Spencer Borden,00950130, 0.0, 3.4, 8.7, 22.1, 10.8, 0.0, 55.0, 46.7, 53.3, 0.0,45.0,5.7 +1,1,a-cure-i1,2019-20,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 19.6, 23.2, 16.1, 0.0, 41.1, 23.2, 76.8, 0.0,58.9,4.1 +1.5914742451154529,1.59,a-cure-i1,2019-20,Fall River - Talbot Innovation School,00950305, 0.2, 3.7, 7.8, 35.1, 9.5, 0.0, 43.7, 46.5, 53.5, 0.0,56.3,5.6 +1.7707509881422923,1.77,a-cure-i1,2019-20,Fall River - William S Greene,00950065, 0.0, 6.2, 7.6, 28.3, 8.5, 0.0, 49.4, 50.2, 49.8, 0.0,50.6,5.6 +1,1,a-cure-i1,2019-20,Falmouth - East Falmouth Elementary,00960005, 2.0, 2.6, 4.3, 10.8, 5.9, 0.0, 74.4, 46.9, 53.1, 0.0,25.599999999999994,4.7 +1,1,a-cure-i1,2019-20,Falmouth - Falmouth High,00960505, 1.0, 2.0, 4.8, 4.9, 5.5, 0.0, 81.9, 50.1, 49.4, 0.5,18.099999999999994,4.199999999999999 +4.666666666666669,4.67,a-cure-i1,2019-20,Falmouth - Lawrence,00960405, 0.4, 2.9, 6.5, 5.7, 6.1, 0.0, 78.4, 47.9, 52.1, 0.0,21.599999999999994,6.300000000000001 +1,1,a-cure-i1,2019-20,Falmouth - Morse Pond School,00960305, 2.2, 1.5, 4.0, 5.1, 6.7, 0.0, 80.5, 49.2, 50.8, 0.0,19.5,2.7 +1,1,a-cure-i1,2019-20,Falmouth - Mullen-Hall,00960020, 0.7, 2.5, 2.9, 9.2, 9.0, 0.0, 75.8, 43.5, 56.5, 0.0,24.200000000000003,0.0 +9.375796178343947,5,a-cure-i1,2019-20,Falmouth - North Falmouth Elementary,00960030, 0.0, 1.3, 2.8, 6.6, 4.7, 0.3, 84.3, 52.2, 47.8, 0.0,15.700000000000003,9.2 +4.7119741100323616,4.71,a-cure-i1,2019-20,Falmouth - Teaticket,00960015, 0.7, 1.1, 10.8, 10.4, 7.8, 0.0, 69.1, 46.1, 53.9, 0.0,30.900000000000006,9.1 +1,1,a-cure-i1,2019-20,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 99.0, 42.9, 57.1, 0.0,1.0,0.0 +1.6919060052219321,1.69,a-cure-i1,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 3.8, 6.5, 58.8, 7.3, 0.2, 23.4, 48.2, 51.8, 0.0,76.6,8.1 +1.145945945945946,1.15,a-cure-i1,2019-20,Fitchburg - Crocker Elementary,00970016, 0.2, 3.4, 4.8, 57.8, 7.9, 0.0, 26.0, 46.7, 53.3, 0.0,74.0,5.3 +4.079320113314448,4.08,a-cure-i1,2019-20,Fitchburg - Fitchburg High,00970505, 0.0, 5.7, 7.6, 49.5, 7.8, 0.0, 29.4, 47.6, 52.4, 0.0,70.6,18.0 +6.943942133815552,5,a-cure-i1,2019-20,Fitchburg - Goodrich Academy,00970510, 0.0, 1.0, 5.6, 44.2, 4.6, 0.0, 44.7, 40.6, 59.4, 0.0,55.3,24.0 +1.5845942228335623,1.58,a-cure-i1,2019-20,Fitchburg - McKay Arts Academy,00970340, 0.0, 5.8, 6.1, 53.8, 7.0, 0.0, 27.3, 49.5, 50.5, 0.0,72.7,7.199999999999999 +1.4191702432045776,1.42,a-cure-i1,2019-20,Fitchburg - Memorial Middle School,00970048, 0.0, 6.1, 5.3, 50.9, 7.5, 0.1, 30.1, 53.5, 46.5, 0.0,69.9,6.199999999999999 +1.6446402349486051,1.64,a-cure-i1,2019-20,Fitchburg - Reingold Elementary,00970043, 0.0, 4.3, 4.3, 51.7, 7.8, 0.0, 31.9, 44.3, 55.7, 0.0,68.1,7.0 +1,1,a-cure-i1,2019-20,Fitchburg - South Street Elementary,00970060, 0.0, 3.2, 7.8, 58.4, 7.8, 0.0, 22.8, 45.9, 54.1, 0.0,77.2,0.0 +1,1,a-cure-i1,2019-20,Florida - Abbott Memorial,00980005, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 98.9, 47.4, 52.6, 0.0,1.0999999999999943,0.0 +20.770186335403732,5,a-cure-i1,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.9, 2.3, 0.5, 6.9, 5.5, 0.0, 83.9, 54.8, 44.7, 0.5,16.099999999999994,20.9 +1,1,a-cure-i1,2019-20,Foxborough - Charles Taylor Elementary,00990050, 0.8, 4.1, 3.3, 7.9, 5.0, 0.8, 78.0, 41.9, 58.1, 0.0,22.0,0.0 +1,1,a-cure-i1,2019-20,Foxborough - Foxborough High,00990505, 0.5, 2.9, 6.7, 5.5, 1.9, 0.0, 82.5, 50.1, 49.9, 0.0,17.5,0.0 +1,1,a-cure-i1,2019-20,Foxborough - John J Ahern,00990405, 0.4, 4.0, 5.6, 6.2, 3.0, 0.1, 80.7, 47.9, 51.9, 0.1,19.299999999999997,3.2 +4.398104265402845,4.4,a-cure-i1,2019-20,Foxborough - Mabelle M Burrell,00990015, 0.6, 6.3, 4.7, 6.6, 2.8, 0.0, 78.9, 50.0, 50.0, 0.0,21.099999999999994,5.8 +1,1,a-cure-i1,2019-20,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 8.2, 5.3, 6.8, 5.0, 0.3, 74.5, 48.9, 51.1, 0.0,25.5,0.0 +3.059490084985836,3.06,a-cure-i1,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.3, 10.1, 49.4, 5.4, 5.1, 0.2, 29.4, 51.8, 48.2, 0.0,70.6,13.5 +7.007299270072992,5,a-cure-i1,2019-20,Framingham - Barbieri Elementary,01000035, 0.0, 0.4, 3.0, 74.8, 3.9, 0.0, 17.8, 55.5, 44.3, 0.1,82.2,36.0 +3.373092926490985,3.37,a-cure-i1,2019-20,Framingham - Brophy,01000006, 0.2, 3.4, 6.2, 58.9, 3.4, 0.0, 27.9, 50.9, 49.1, 0.0,72.1,15.2 +3.7818181818181817,3.78,a-cure-i1,2019-20,Framingham - Cameron Middle School,01000302, 0.0, 2.7, 6.8, 19.7, 3.8, 0.0, 67.0, 49.7, 50.3, 0.0,33.0,7.8 +3.3072625698324027,3.31,a-cure-i1,2019-20,Framingham - Charlotte A Dunning,01000007, 0.0, 9.6, 7.6, 15.1, 3.4, 0.0, 64.2, 48.2, 51.8, 0.0,35.8,7.4 +4.208616780045351,4.21,a-cure-i1,2019-20,Framingham - Framingham High School,01000515, 0.1, 5.1, 7.0, 28.0, 3.9, 0.1, 55.9, 49.6, 50.3, 0.0,44.1,11.6 +5.15210355987055,5,a-cure-i1,2019-20,Framingham - Fuller Middle,01000305, 0.2, 2.1, 8.8, 47.8, 2.7, 0.2, 38.2, 45.4, 54.6, 0.0,61.8,19.9 +6.725848563968669,5,a-cure-i1,2019-20,Framingham - Hemenway,01000015, 0.2, 8.8, 7.0, 15.0, 7.3, 0.0, 61.7, 50.0, 50.0, 0.0,38.3,16.1 +1,1,a-cure-i1,2019-20,Framingham - Juniper Hill School,01000001, 0.3, 9.7, 5.8, 24.3, 2.6, 0.3, 57.0, 36.2, 63.8, 0.0,43.0,4.9 +1,1,a-cure-i1,2019-20,Framingham - King Elementary School,01000005, 0.0, 9.5, 4.8, 14.8, 6.9, 0.0, 64.0, 47.5, 52.5, 0.0,36.0,0.0 +3.1296703296703297,3.13,a-cure-i1,2019-20,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 6.2, 8.8, 24.3, 6.2, 0.0, 54.5, 42.5, 57.5, 0.0,45.5,8.9 +1,1,a-cure-i1,2019-20,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.0, 14.3, 36.0, 8.4, 0.2, 39.1, 51.1, 48.9, 0.0,60.9,2.6 +8.070796460176991,5,a-cure-i1,2019-20,Framingham - Potter Road,01000039, 0.0, 3.8, 8.2, 16.3, 5.4, 0.2, 66.1, 50.8, 49.2, 0.0,33.900000000000006,17.1 +6.0136674259681095,5,a-cure-i1,2019-20,Framingham - Walsh Middle,01000310, 0.1, 4.2, 3.5, 32.2, 3.9, 0.0, 56.1, 51.0, 49.0, 0.0,43.9,16.5 +2.142857142857143,2.14,a-cure-i1,2019-20,Framingham - Woodrow Wilson,01000055, 0.4, 0.2, 9.8, 32.2, 2.2, 0.0, 55.2, 46.8, 53.2, 0.0,44.8,6.0 +12.357723577235776,5,a-cure-i1,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.3, 2.0, 1.3, 3.0, 5.8, 0.0, 87.7, 53.1, 46.1, 0.8,12.299999999999997,9.5 +1,1,a-cure-i1,2019-20,Franklin - Annie Sullivan Middle School,01010040, 0.3, 3.9, 1.8, 7.3, 1.0, 0.3, 85.3, 47.4, 52.6, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Franklin - Davis Thayer,01010035, 0.0, 1.8, 1.3, 4.4, 2.2, 2.2, 88.1, 51.1, 48.9, 0.0,11.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 9.0, 1.8, 0.9, 4.5, 5.4, 78.4, 39.6, 60.4, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Franklin - Franklin High,01010505, 0.2, 6.5, 1.3, 3.1, 2.3, 0.3, 86.2, 49.9, 50.0, 0.1,13.799999999999997,1.0 +1,1,a-cure-i1,2019-20,Franklin - Helen Keller Elementary,01010012, 0.0, 3.8, 2.6, 2.3, 1.7, 0.6, 89.0, 47.7, 52.3, 0.0,11.0,0.0 +1,1,a-cure-i1,2019-20,Franklin - Horace Mann,01010405, 0.0, 6.9, 1.8, 4.2, 2.2, 0.4, 84.4, 44.9, 55.1, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Franklin - J F Kennedy Memorial,01010013, 0.3, 5.1, 0.6, 4.0, 1.7, 1.7, 86.6, 44.4, 55.6, 0.0,13.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Franklin - Jefferson Elementary,01010010, 0.0, 8.1, 1.2, 4.9, 1.7, 0.6, 83.5, 44.5, 55.5, 0.0,16.5,0.0 +6.375000000000001,5,a-cure-i1,2019-20,Franklin - Oak Street Elementary,01010030, 0.0, 3.9, 1.9, 3.6, 3.3, 0.0, 87.2, 49.6, 50.4, 0.0,12.799999999999997,5.1 +1,1,a-cure-i1,2019-20,Franklin - Parmenter,01010032, 0.0, 5.2, 7.2, 7.8, 1.2, 1.4, 77.1, 49.0, 51.0, 0.0,22.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Franklin - Remington Middle,01010310, 0.2, 5.7, 3.0, 3.0, 1.2, 0.0, 86.8, 47.6, 52.4, 0.0,13.200000000000003,0.7 +1,1,a-cure-i1,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.8, 4.8, 2.0, 0.0, 92.5, 35.4, 64.6, 0.0,7.5,1.8 +1,1,a-cure-i1,2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 1.0, 1.1, 2.3, 1.1, 0.3, 94.3, 50.4, 49.6, 0.0,5.700000000000003,4.0 +1,1,a-cure-i1,2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.4, 1.9, 3.4, 5.5, 0.0, 88.8, 48.7, 51.3, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.9, 0.7, 3.6, 2.0, 0.0, 92.8, 43.3, 56.7, 0.0,7.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.3, 0.8, 1.5, 1.1, 1.7, 0.0, 94.6, 50.9, 49.1, 0.0,5.400000000000006,4.8 +1,1,a-cure-i1,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.7, 2.3, 1.4, 2.3, 0.0, 93.3, 47.0, 53.0, 0.0,6.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Frontier - Frontier Regional,06700505, 0.0, 3.1, 2.3, 4.6, 3.4, 0.2, 86.6, 46.1, 53.9, 0.0,13.400000000000006,2.8 +3.067357512953368,3.07,a-cure-i1,2019-20,Gardner - Elm Street School,01030001, 0.2, 2.8, 2.4, 26.4, 6.7, 0.0, 61.4, 51.7, 48.3, 0.0,38.6,7.4 +1,1,a-cure-i1,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.8, 2.4, 11.9, 2.4, 0.0, 82.5, 50.0, 50.0, 0.0,17.5,0.0 +4.717325227963524,4.72,a-cure-i1,2019-20,Gardner - Gardner High,01030505, 0.3, 2.5, 3.3, 21.2, 5.7, 0.0, 67.1, 48.0, 52.0, 0.0,32.900000000000006,9.7 +2.56,2.56,a-cure-i1,2019-20,Gardner - Gardner Middle School,01030405, 0.2, 1.9, 1.5, 21.2, 10.2, 0.0, 65.0, 44.2, 55.8, 0.0,35.0,5.6 +1,1,a-cure-i1,2019-20,Gardner - Waterford Street,01030020, 0.0, 1.5, 3.4, 22.9, 7.5, 0.0, 64.7, 42.6, 57.4, 0.0,35.3,0.0 +1,1,a-cure-i1,2019-20,Gateway - Chester Elementary,06720059, 0.0, 2.5, 0.0, 5.0, 0.8, 0.0, 91.7, 43.3, 56.7, 0.0,8.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Gateway - Gateway Regional High,06720505, 0.5, 1.0, 0.0, 3.4, 3.9, 0.0, 91.2, 49.8, 50.2, 0.0,8.799999999999997,3.9 +8.212389380530976,5,a-cure-i1,2019-20,Gateway - Gateway Regional Middle School,06720405, 0.5, 0.0, 2.1, 7.2, 1.0, 0.5, 88.7, 47.9, 52.1, 0.0,11.299999999999997,5.8 +1,1,a-cure-i1,2019-20,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.6, 3.9, 1.9, 0.0, 93.5, 49.7, 50.3, 0.0,6.5,0.0 +1,1,a-cure-i1,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 1.3, 1.1, 2.6, 1.6, 0.0, 93.4, 49.5, 50.5, 0.0,6.599999999999994,4.5 +1,1,a-cure-i1,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 1.1, 1.1, 2.2, 0.0, 0.5, 95.1, 50.5, 49.5, 0.0,4.900000000000006,2.2 +1,1,a-cure-i1,2019-20,Georgetown - Penn Brook,01050010, 0.0, 0.8, 0.4, 1.9, 2.1, 0.1, 94.6, 49.2, 50.8, 0.0,5.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Georgetown - Perley Elementary,01050005, 0.0, 1.2, 0.0, 0.0, 8.2, 0.0, 90.6, 47.1, 52.9, 0.0,9.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.4, 4.3, 4.3, 0.0, 90.0, 50.7, 49.3, 0.0,10.0,0.0 +1,1,a-cure-i1,2019-20,Gill-Montague - Great Falls Middle,06740310, 0.4, 0.0, 0.4, 12.9, 10.3, 0.4, 75.4, 50.9, 49.1, 0.0,24.599999999999994,2.2 +1,1,a-cure-i1,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 1.3, 2.0, 19.6, 6.5, 0.0, 70.6, 43.1, 56.9, 0.0,29.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 13.4, 7.4, 0.5, 78.7, 46.3, 53.7, 0.0,21.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Gill-Montague - Turners Fall High,06740505, 0.5, 0.5, 2.0, 12.1, 4.0, 0.0, 80.8, 58.1, 41.9, 0.0,19.200000000000003,2.8 +1.5466666666666666,1.55,a-cure-i1,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.4, 1.0, 10.8, 43.4, 4.3, 0.0, 40.0, 51.9, 48.1, 0.0,60.0,5.8 +1,1,a-cure-i1,2019-20,Gloucester - Beeman Memorial,01070010, 0.3, 0.9, 2.1, 18.2, 4.0, 0.0, 74.5, 47.1, 52.9, 0.0,25.5,0.0 +6.87116564417178,5,a-cure-i1,2019-20,Gloucester - East Gloucester Elementary,01070020, 0.0, 1.5, 0.0, 10.4, 4.5, 0.0, 83.7, 47.0, 53.0, 0.0,16.299999999999997,7.0 +4.301075268817206,4.3,a-cure-i1,2019-20,Gloucester - Gloucester High,01070505, 0.1, 0.8, 1.7, 11.6, 3.6, 0.8, 81.4, 43.9, 56.1, 0.0,18.599999999999994,5.0 +1,1,a-cure-i1,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, 4.3, 1.7, 5.2, 5.2, 0.0, 83.6, 38.8, 61.2, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Gloucester - Plum Cove School,01070042, 0.0, 0.5, 2.4, 3.4, 4.4, 0.0, 89.3, 50.0, 50.0, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 0.6, 1.2, 1.4, 10.0, 2.6, 0.2, 84.0, 51.1, 48.9, 0.0,16.0,0.0 +1,1,a-cure-i1,2019-20,Gloucester - Veterans Memorial,01070045, 0.0, 2.4, 5.2, 21.7, 3.3, 1.4, 66.0, 53.8, 46.2, 0.0,34.0,0.0 +1,1,a-cure-i1,2019-20,Gloucester - West Parish,01070050, 0.0, 1.1, 0.8, 8.6, 5.0, 0.0, 84.5, 47.1, 52.9, 0.0,15.5,0.0 +1,1,a-cure-i1,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100.0,0.0 +1,1,a-cure-i1,2019-20,Grafton - Grafton High School,01100505, 0.0, 10.2, 1.9, 3.9, 2.8, 0.0, 81.2, 50.2, 49.8, 0.0,18.799999999999997,2.1 +1,1,a-cure-i1,2019-20,Grafton - Grafton Middle,01100305, 0.4, 10.2, 1.5, 6.2, 3.0, 0.4, 78.3, 47.2, 52.8, 0.0,21.700000000000003,3.1 +1,1,a-cure-i1,2019-20,Grafton - Millbury Street Elementary School,01100200, 0.0, 17.0, 1.0, 5.7, 2.3, 0.0, 73.9, 46.0, 54.0, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Grafton - North Grafton Elementary,01100025, 0.0, 16.7, 1.2, 3.9, 1.9, 0.0, 76.3, 52.1, 47.9, 0.0,23.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Grafton - North Street Elementary School,01100030, 0.4, 8.7, 1.2, 5.7, 4.6, 0.2, 79.3, 48.5, 51.5, 0.0,20.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Grafton - South Grafton Elementary,01100005, 0.0, 16.7, 2.7, 6.0, 2.3, 0.0, 72.3, 42.3, 57.7, 0.0,27.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Granby - East Meadow,01110004, 0.7, 1.2, 0.0, 12.1, 4.9, 0.0, 81.1, 49.8, 50.2, 0.0,18.900000000000006,0.9 +1,1,a-cure-i1,2019-20,Granby - Granby Jr Sr High School,01110505, 0.0, 1.2, 0.3, 7.6, 3.2, 0.0, 87.7, 44.0, 56.0, 0.0,12.299999999999997,4.2 +1,1,a-cure-i1,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.6, 2.3, 3.1, 12.3, 5.4, 0.1, 76.2, 44.6, 55.4, 0.0,23.799999999999997,2.8 +2.0488940628637953,2.05,a-cure-i1,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.2, 1.4, 1.0, 83.3, 0.1, 0.0, 14.1, 49.5, 50.5, 0.0,85.9,11.000000000000002 +1.5290102389078497,1.53,a-cure-i1,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.2, 16.2, 4.2, 35.2, 2.7, 0.0, 41.4, 46.9, 52.8, 0.3,58.6,5.6 +2.7346938775510203,2.73,a-cure-i1,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.2, 1.1, 8.5, 24.0, 5.4, 0.0, 60.8, 48.1, 51.9, 0.0,39.2,6.7 +6.423357664233575,5,a-cure-i1,2019-20,Greenfield - Discovery School at Four Corners,01140025, 0.0, 2.0, 0.4, 9.8, 1.6, 0.0, 86.3, 43.9, 56.1, 0.0,13.700000000000003,5.5 +1,1,a-cure-i1,2019-20,Greenfield - Federal Street School,01140010, 0.0, 1.3, 2.5, 23.2, 4.6, 0.0, 68.4, 51.1, 48.9, 0.0,31.599999999999994,0.0 +3.459459459459459,3.46,a-cure-i1,2019-20,Greenfield - Greenfield High,01140505, 0.2, 2.5, 2.7, 20.9, 7.0, 0.0, 66.7, 45.9, 53.9, 0.2,33.3,7.199999999999999 +3.9136690647482024,3.91,a-cure-i1,2019-20,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 2.6, 19.2, 5.0, 0.0, 72.2, 51.4, 48.6, 0.0,27.799999999999997,6.800000000000001 +1,1,a-cure-i1,2019-20,Greenfield - Newton School,01140035, 0.0, 0.8, 5.0, 30.4, 4.6, 0.0, 59.2, 49.6, 50.4, 0.0,40.8,0.0 +1,1,a-cure-i1,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.8, 1.7, 16.5, 4.1, 0.0, 76.9, 43.0, 57.0, 0.0,23.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.2, 5.0, 8.6, 18.7, 8.6, 0.2, 58.8, 56.1, 43.3, 0.6,41.2,0.0 +1,1,a-cure-i1,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, 13.8, 1.7, 3.4, 3.4, 0.0, 77.6, 43.1, 56.9, 0.0,22.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Groton-Dunstable - Florence Roche School,06730010, 0.4, 5.5, 0.9, 3.0, 5.9, 0.0, 84.3, 45.5, 54.5, 0.0,15.700000000000003,3.4 +1,1,a-cure-i1,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.1, 8.0, 0.7, 1.9, 1.1, 0.3, 87.9, 49.1, 50.8, 0.1,12.099999999999994,2.2 +1,1,a-cure-i1,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.1, 6.5, 1.6, 2.0, 2.1, 0.3, 87.4, 50.3, 49.7, 0.0,12.599999999999994,2.2 +1,1,a-cure-i1,2019-20,Groton-Dunstable - Swallow/Union School,06730005, 0.3, 7.7, 1.0, 5.9, 3.8, 0.0, 81.2, 46.0, 54.0, 0.0,18.799999999999997,0.0 +3.347280334728033,3.35,a-cure-i1,2019-20,Hadley - Hadley Elementary,01170015, 0.4, 4.6, 3.2, 10.4, 3.9, 1.4, 76.1, 48.6, 51.4, 0.0,23.900000000000006,5.0 +5.140562248995983,5,a-cure-i1,2019-20,Hadley - Hopkins Academy,01170505, 0.4, 5.6, 2.4, 10.0, 3.2, 3.2, 75.1, 47.0, 53.0, 0.0,24.900000000000006,8.0 +1,1,a-cure-i1,2019-20,Halifax - Halifax Elementary,01180005, 0.5, 0.0, 1.5, 4.6, 3.2, 0.0, 90.1, 47.8, 52.2, 0.0,9.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.7, 0.0, 8.6, 2.3, 0.0, 86.4, 43.6, 56.4, 0.0,13.599999999999994,0.0 +8.712871287128717,5,a-cure-i1,2019-20,Hamilton-Wenham - Cutler School,06750010, 0.0, 2.5, 0.7, 2.2, 3.6, 1.1, 89.9, 54.7, 45.3, 0.0,10.099999999999994,5.5 +13.379310344827593,5,a-cure-i1,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 4.0, 0.7, 4.5, 2.4, 0.0, 88.4, 53.9, 46.1, 0.0,11.599999999999994,9.7 +13.963636363636367,5,a-cure-i1,2019-20,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 4.1, 0.7, 4.1, 1.9, 0.2, 89.0, 54.8, 45.2, 0.0,11.0,9.600000000000001 +7.927927927927932,5,a-cure-i1,2019-20,Hamilton-Wenham - Winthrop School,06750015, 0.0, 4.2, 0.6, 4.8, 1.5, 0.0, 88.9, 52.4, 47.6, 0.0,11.099999999999994,5.5 +2.2164502164502164,2.22,a-cure-i1,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.2, 1.9, 31.7, 32.6, 2.9, 0.0, 30.7, 50.6, 49.4, 0.0,69.3,9.6 +4.497131931166348,4.5,a-cure-i1,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 1.5, 15.3, 33.6, 1.9, 0.0, 47.7, 48.5, 51.5, 0.0,52.3,14.7 +1,1,a-cure-i1,2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.3, 2.8, 10.9, 2.5, 0.0, 83.5, 51.6, 48.4, 0.0,16.5,0.0 +4.324324324324325,4.32,a-cure-i1,2019-20,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.3, 2.5, 1.9, 8.3, 5.0, 0.6, 81.5, 46.7, 53.3, 0.0,18.5,5.0 +1,1,a-cure-i1,2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.5, 4.2, 2.9, 6.7, 2.9, 0.0, 82.7, 51.7, 48.3, 0.0,17.299999999999997,1.6 +1,1,a-cure-i1,2019-20,Hampden-Wilbraham - Soule Road,06800030, 0.3, 2.2, 1.6, 9.7, 5.6, 0.0, 80.6, 45.9, 54.1, 0.0,19.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 2.8, 3.4, 5.6, 2.8, 0.0, 85.5, 52.2, 47.8, 0.0,14.5,0.0 +1,1,a-cure-i1,2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 2.1, 2.7, 7.7, 3.4, 0.0, 84.1, 50.2, 49.8, 0.0,15.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Hampshire - Hampshire Regional High,06830505, 0.0, 1.0, 0.3, 4.4, 2.9, 0.0, 91.6, 54.5, 45.4, 0.1,8.400000000000006,3.2 +1,1,a-cure-i1,2019-20,Hancock - Hancock Elementary,01210005, 0.0, 2.1, 2.1, 0.0, 0.0, 0.0, 95.7, 53.2, 46.8, 0.0,4.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Hanover - Cedar Elementary,01220004, 0.0, 2.3, 0.8, 2.1, 0.8, 0.0, 93.9, 48.5, 51.5, 0.0,6.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Hanover - Center Elementary,01220005, 0.0, 1.8, 0.7, 3.2, 0.7, 0.0, 93.7, 48.7, 51.3, 0.0,6.299999999999997,3.7 +1,1,a-cure-i1,2019-20,Hanover - Hanover High,01220505, 0.0, 2.9, 0.8, 1.2, 0.0, 0.0, 95.2, 48.6, 51.4, 0.0,4.799999999999997,1.8 +1,1,a-cure-i1,2019-20,Hanover - Hanover Middle,01220305, 0.0, 2.2, 2.2, 2.8, 0.8, 0.0, 92.1, 47.9, 52.1, 0.0,7.900000000000006,3.8 +3.849056603773584,3.85,a-cure-i1,2019-20,Harvard - Bromfield,01250505, 0.0, 11.3, 2.1, 4.7, 3.1, 0.0, 78.8, 52.3, 47.5, 0.2,21.200000000000003,5.1 +5.132075471698112,5,a-cure-i1,2019-20,Harvard - Hildreth Elementary School,01250005, 0.0, 10.5, 2.1, 4.4, 4.2, 0.0, 78.8, 49.7, 50.3, 0.0,21.200000000000003,6.8 +1,1,a-cure-i1,2019-20,Hatfield - Hatfield Elementary,01270005, 0.0, 0.8, 0.4, 4.9, 1.2, 0.0, 92.6, 50.2, 49.4, 0.4,7.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Hatfield - Smith Academy,01270505, 0.0, 1.1, 0.5, 2.7, 3.2, 0.0, 92.6, 49.5, 50.5, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Bradford Elementary,01280008, 0.0, 1.2, 3.3, 42.1, 3.1, 0.0, 50.4, 47.3, 52.7, 0.0,49.6,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 0.1, 1.9, 5.8, 22.4, 2.2, 0.1, 67.4, 47.9, 52.1, 0.0,32.599999999999994,0.9 +1,1,a-cure-i1,2019-20,Haverhill - Consentino Middle School,01280100, 0.4, 2.9, 4.3, 46.5, 1.2, 0.0, 44.7, 45.4, 54.6, 0.0,55.3,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 70.8, 0.0, 0.0, 29.2, 33.3, 66.7, 0.0,70.8,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.2, 2.2, 5.0, 47.8, 2.6, 0.3, 41.9, 48.1, 51.9, 0.0,58.1,2.6 +1,1,a-cure-i1,2019-20,Haverhill - Golden Hill,01280026, 0.2, 1.3, 3.6, 45.8, 2.3, 0.0, 46.8, 48.3, 51.7, 0.0,53.2,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 54.8, 3.2, 0.0, 41.9, 22.6, 77.4, 0.0,58.1,0.0 +3.5140186915887854,3.51,a-cure-i1,2019-20,Haverhill - Haverhill High,01280505, 0.1, 1.7, 5.0, 34.7, 1.2, 0.2, 57.2, 49.0, 51.0, 0.0,42.8,9.4 +1,1,a-cure-i1,2019-20,Haverhill - John G Whittier,01280085, 0.4, 1.6, 4.3, 33.9, 1.2, 0.2, 58.5, 48.9, 51.1, 0.0,41.5,4.3 +1,1,a-cure-i1,2019-20,Haverhill - Moody,01280045, 0.5, 2.4, 10.6, 31.4, 0.0, 0.0, 55.1, 38.2, 61.8, 0.0,44.9,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 0.5, 0.7, 5.5, 43.0, 2.6, 0.0, 47.6, 48.2, 51.8, 0.0,52.4,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Silver Hill Elementary School,01280067, 0.3, 2.2, 4.6, 37.6, 3.7, 0.0, 51.5, 49.8, 50.2, 0.0,48.5,0.0 +1,1,a-cure-i1,2019-20,Haverhill - TEACH,01280073, 3.4, 0.0, 3.4, 41.4, 10.3, 0.0, 41.4, 17.2, 82.8, 0.0,58.6,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Tilton,01280075, 0.0, 1.0, 4.6, 56.7, 2.0, 0.0, 35.7, 49.9, 50.1, 0.0,64.3,0.0 +1,1,a-cure-i1,2019-20,Haverhill - Tilton Upper Middle School,01280105, 0.6, 1.8, 3.6, 58.8, 1.2, 0.0, 33.9, 47.9, 52.1, 0.0,66.1,4.5 +1,1,a-cure-i1,2019-20,Haverhill - Walnut Square,01280080, 0.0, 0.7, 4.9, 35.4, 2.1, 0.0, 56.9, 54.9, 45.1, 0.0,43.1,0.0 +1,1,a-cure-i1,2019-20,Hawlemont - Hawlemont Regional,06850005, 0.7, 0.0, 0.0, 7.0, 3.5, 0.0, 88.8, 56.6, 43.4, 0.0,11.200000000000003,0.0 +14.352701325178387,5,a-cure-i1,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 79.7, 18.4, 0.0, 0.0, 1.9, 47.8, 52.2, 0.0,98.1,87.99999999999999 +5.5221238938053085,5,a-cure-i1,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.3, 5.9, 25.1, 2.6, 0.0, 66.1, 52.8, 47.2, 0.0,33.900000000000006,11.7 +1,1,a-cure-i1,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.3, 0.9, 5.0, 12.4, 0.0, 79.4, 50.5, 49.1, 0.5,20.599999999999994,3.6 +1,1,a-cure-i1,2019-20,Hingham - East Elementary School,01310005, 0.0, 0.8, 1.9, 2.9, 2.1, 0.0, 92.4, 47.0, 53.0, 0.0,7.599999999999994,3.5 +1,1,a-cure-i1,2019-20,Hingham - Hingham High,01310505, 0.0, 3.2, 1.2, 3.5, 2.6, 0.0, 89.6, 48.7, 51.3, 0.0,10.400000000000006,1.0 +8.904347826086957,5,a-cure-i1,2019-20,Hingham - Hingham Middle School,01310410, 0.0, 3.2, 1.5, 3.2, 3.6, 0.0, 88.5, 48.0, 52.0, 0.0,11.5,6.4 +1,1,a-cure-i1,2019-20,Hingham - Plymouth River,01310019, 0.2, 2.3, 2.3, 5.4, 2.6, 0.0, 87.1, 50.5, 49.5, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Hingham - South Elementary,01310020, 0.0, 3.3, 1.8, 1.6, 3.7, 0.0, 89.7, 51.3, 48.7, 0.0,10.299999999999997,3.5 +1,1,a-cure-i1,2019-20,Hingham - Wm L Foster Elementary,01310010, 0.0, 1.4, 0.8, 5.1, 5.5, 0.0, 87.3, 44.4, 55.6, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Holbrook - Holbrook Middle High School,01330505, 0.5, 6.0, 23.5, 13.8, 7.8, 0.0, 48.4, 50.5, 49.4, 0.2,51.6,0.0 +1,1,a-cure-i1,2019-20,Holbrook - John F Kennedy,01330018, 0.3, 4.1, 21.2, 14.0, 7.4, 0.0, 53.0, 45.8, 54.2, 0.0,47.0,0.0 +1,1,a-cure-i1,2019-20,Holland - Holland Elementary,01350005, 0.0, 2.2, 1.3, 6.9, 1.7, 0.0, 87.9, 47.4, 52.6, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Holliston - Holliston High,01360505, 0.6, 7.9, 1.1, 4.4, 1.8, 0.0, 84.2, 48.9, 51.1, 0.0,15.799999999999997,1.8 +5.35813953488372,5,a-cure-i1,2019-20,Holliston - Miller School,01360007, 0.4, 10.7, 1.3, 5.1, 3.8, 0.1, 78.5, 48.3, 51.7, 0.0,21.5,7.199999999999999 +1,1,a-cure-i1,2019-20,Holliston - Placentino Elementary,01360010, 0.4, 9.6, 1.0, 3.9, 3.4, 0.1, 81.5, 45.8, 54.1, 0.1,18.5,2.1 +1,1,a-cure-i1,2019-20,Holliston - Robert H. Adams Middle School,01360305, 0.1, 6.5, 0.9, 7.2, 2.3, 0.1, 82.8, 49.3, 50.7, 0.0,17.200000000000003,2.4 +5.4472361809045236,5,a-cure-i1,2019-20,Holyoke - E N White Elementary,01370045, 0.0, 0.5, 2.3, 74.8, 2.1, 0.0, 20.4, 45.5, 54.5, 0.0,79.6,27.1 +1.056105610561056,1.06,a-cure-i1,2019-20,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.8, 8.3, 78.5, 3.3, 0.0, 9.1, 52.1, 47.9, 0.0,90.9,6.0 +4.421052631578948,4.42,a-cure-i1,2019-20,Holyoke - Holyoke High,01370505, 0.1, 0.5, 2.2, 79.6, 1.1, 0.1, 16.4, 48.5, 51.4, 0.1,83.6,23.1 +1,1,a-cure-i1,2019-20,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.9, 5.9, 81.9, 1.4, 0.0, 10.0, 48.4, 51.6, 0.0,90.0,2.6 +10.689556509298999,5,a-cure-i1,2019-20,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 2.6, 64.7, 2.6, 0.0, 30.1, 55.5, 44.5, 0.0,69.9,46.7 +3.893660531697341,3.89,a-cure-i1,2019-20,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 2.0, 94.8, 0.5, 0.5, 2.2, 47.0, 53.0, 0.0,97.8,23.799999999999997 +2.914027149321267,2.91,a-cure-i1,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 1.2, 1.8, 84.4, 1.0, 0.0, 11.6, 47.2, 52.8, 0.0,88.4,16.1 +1.263157894736842,1.26,a-cure-i1,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.9, 3.4, 61.1, 1.9, 0.0, 31.6, 48.4, 51.6, 0.0,68.4,5.4 +2.8404494382022474,2.84,a-cure-i1,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.4, 3.1, 84.3, 1.0, 0.2, 11.0, 44.6, 55.4, 0.0,89.0,15.8 +1.0543933054393306,1.05,a-cure-i1,2019-20,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.6, 4.1, 88.1, 2.8, 0.0, 4.4, 49.4, 50.6, 0.0,95.6,6.3 +10.346113989637306,5,a-cure-i1,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.9, 5.2, 89.5, 0.9, 0.0, 3.5, 41.0, 59.0, 0.0,96.5,62.400000000000006 +3.9701810436634717,3.97,a-cure-i1,2019-20,Holyoke - William R. Peck School,01370030, 0.0, 0.4, 3.8, 89.3, 0.4, 0.0, 6.1, 42.1, 57.9, 0.0,93.9,23.3 +3.119496855345912,3.12,a-cure-i1,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.7, 1.1, 92.2, 1.4, 0.0, 4.6, 52.2, 47.8, 0.0,95.4,18.6 +1,1,a-cure-i1,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.3, 2.1, 2.6, 2.8, 0.0, 91.2, 47.3, 52.7, 0.0,8.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.6, 1.5, 5.9, 0.9, 0.3, 0.0, 90.9, 47.8, 52.2, 0.0,9.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 1.1, 4.8, 2.9, 1.6, 0.0, 89.6, 51.5, 48.5, 0.0,10.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0.4, 2.6, 1.5, 6.7, 1.3, 0.2, 87.3, 48.5, 51.5, 0.0,12.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Hopedale - Memorial,01380010, 0.0, 1.2, 1.0, 9.0, 4.8, 0.2, 83.8, 48.3, 51.7, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 6.4, 13.8, 0.0, 79.8, 47.9, 52.1, 0.0,20.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Hopkinton - Elmwood,01390010, 0.2, 26.4, 0.5, 3.9, 3.9, 0.0, 65.0, 49.6, 50.4, 0.0,35.0,3.1 +3.230283911671924,3.23,a-cure-i1,2019-20,Hopkinton - Hopkins Elementary School,01390015, 0.5, 22.8, 0.3, 3.1, 4.7, 0.2, 68.3, 49.6, 50.4, 0.0,31.700000000000003,6.4 +1,1,a-cure-i1,2019-20,Hopkinton - Hopkinton High,01390505, 0.4, 14.0, 1.1, 2.3, 2.0, 0.0, 80.2, 50.8, 49.2, 0.0,19.799999999999997,3.6 +3.2,3.2,a-cure-i1,2019-20,Hopkinton - Hopkinton Middle School,01390305, 0.2, 19.2, 1.0, 5.1, 4.3, 0.0, 70.0, 49.9, 50.1, 0.0,30.0,6.0 +1,1,a-cure-i1,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 26.3, 0.0, 7.5, 3.8, 0.0, 62.5, 37.5, 62.5, 0.0,37.5,0.0 +1,1,a-cure-i1,2019-20,Hopkinton - Marathon Elementary School,01390005, 0.0, 28.1, 0.4, 5.5, 5.5, 0.0, 60.6, 48.5, 51.5, 0.0,39.4,0.0 +1,1,a-cure-i1,2019-20,Hudson - C A Farley,01410030, 0.0, 2.6, 1.6, 20.0, 2.3, 0.0, 73.5, 49.3, 50.7, 0.0,26.5,0.0 +4.679245283018868,4.68,a-cure-i1,2019-20,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.6, 2.7, 13.9, 2.9, 0.0, 78.8, 50.5, 49.5, 0.0,21.200000000000003,6.2 +1,1,a-cure-i1,2019-20,Hudson - Forest Avenue Elementary,01410015, 0.6, 1.7, 1.4, 13.9, 5.0, 0.0, 77.4, 47.1, 52.9, 0.0,22.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Hudson - Hudson High,01410505, 0.2, 1.4, 2.0, 12.2, 1.8, 0.1, 82.2, 54.5, 45.5, 0.0,17.799999999999997,3.9000000000000004 +1,1,a-cure-i1,2019-20,Hudson - Mulready Elementary,01410007, 0.0, 1.9, 2.3, 13.9, 2.7, 0.0, 79.2, 50.2, 49.8, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Hull - Hull High,01420505, 0.0, 1.5, 1.8, 1.8, 1.5, 0.0, 93.4, 45.6, 54.4, 0.0,6.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Hull - Lillian M Jacobs,01420015, 0.2, 2.7, 2.0, 3.7, 3.0, 0.0, 88.3, 47.9, 52.1, 0.0,11.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Hull - Memorial Middle,01420305, 0.0, 0.6, 0.6, 1.7, 1.7, 0.0, 95.5, 49.2, 50.8, 0.0,4.5,0.0 +4.630225080385853,4.63,a-cure-i1,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.1, 8.6, 6.6, 10.0, 5.6, 0.0, 68.9, 52.0, 47.9, 0.1,31.099999999999994,9.0 +1,1,a-cure-i1,2019-20,Ipswich - Ipswich High,01440505, 0.0, 1.5, 0.7, 5.5, 4.2, 0.0, 88.1, 52.5, 47.3, 0.2,11.900000000000006,2.2 +1,1,a-cure-i1,2019-20,Ipswich - Ipswich Middle School,01440305, 0.3, 2.0, 1.0, 7.8, 2.3, 0.0, 86.7, 49.4, 50.6, 0.0,13.299999999999997,3.0 +1,1,a-cure-i1,2019-20,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 1.4, 0.0, 6.0, 1.9, 0.0, 90.7, 49.5, 50.5, 0.0,9.299999999999997,0.0 +5.446808510638299,5,a-cure-i1,2019-20,Ipswich - Winthrop,01440015, 0.0, 1.1, 1.4, 10.6, 5.7, 0.0, 81.2, 50.4, 49.6, 0.0,18.799999999999997,6.4 +1,1,a-cure-i1,2019-20,King Philip - King Philip Middle School,06900510, 0.3, 3.5, 1.8, 4.4, 1.9, 0.0, 88.2, 47.9, 52.1, 0.0,11.799999999999997,4.5 +1,1,a-cure-i1,2019-20,King Philip - King Philip Regional High,06900505, 0.1, 2.5, 2.1, 2.6, 2.7, 0.1, 90.0, 50.2, 49.8, 0.0,10.0,2.5 +1,1,a-cure-i1,2019-20,Kingston - Kingston Elementary,01450005, 0.2, 0.9, 0.4, 1.5, 1.5, 0.0, 95.4, 48.9, 51.1, 0.0,4.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Kingston - Kingston Intermediate,01450020, 0.5, 0.5, 1.3, 3.0, 0.2, 0.0, 94.6, 48.1, 51.7, 0.2,5.400000000000006,0.0 +9.436308926780342,5,a-cure-i1,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.3, 0.0, 67.0, 31.2, 1.2, 0.0, 0.3, 48.4, 51.6, 0.0,99.7,58.800000000000004 +5.305084745762712,5,a-cure-i1,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.2, 3.1, 19.5, 68.7, 2.7, 0.1, 5.6, 50.9, 49.1, 0.0,94.4,31.3 +1,1,a-cure-i1,2019-20,Lawrence - Alexander B Bruce,01490015, 0.0, 1.6, 1.0, 93.5, 0.2, 0.0, 3.7, 50.8, 49.0, 0.2,96.3,3.0 +0.924949290060852,1,a-cure-i1,2019-20,Lawrence - Arlington Middle School,01490017, 0.2, 0.0, 0.5, 97.8, 0.2, 0.0, 1.4, 48.7, 50.8, 0.5,98.6,5.7 +1,1,a-cure-i1,2019-20,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.8, 96.5, 0.2, 0.0, 2.5, 46.6, 52.2, 1.2,97.5,0.0 +1.3847758081334725,1.38,a-cure-i1,2019-20,Lawrence - Edward F. Parthum,01490053, 0.0, 0.3, 1.7, 93.8, 0.2, 0.0, 4.1, 45.9, 53.6, 0.5,95.9,8.3 +1,1,a-cure-i1,2019-20,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.3, 0.8, 93.2, 0.5, 0.0, 4.3, 50.9, 49.0, 0.2,95.7,2.4 +1,1,a-cure-i1,2019-20,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.9, 96.3, 0.2, 0.0, 2.6, 48.7, 51.1, 0.2,97.4,0.0 +1.3859649122807018,1.39,a-cure-i1,2019-20,Lawrence - Frost Middle School,01490525, 0.0, 3.4, 1.9, 84.5, 1.5, 0.0, 8.8, 48.0, 52.0, 0.0,91.2,7.9 +1,1,a-cure-i1,2019-20,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.8, 2.1, 94.8, 0.4, 0.0, 1.9, 47.2, 52.8, 0.0,98.1,3.4 +1.2622950819672132,1.26,a-cure-i1,2019-20,Lawrence - Guilmette Middle School,01490025, 0.0, 0.4, 1.8, 95.0, 0.4, 0.0, 2.4, 47.6, 52.4, 0.0,97.6,7.7 +1.2320162107396149,1.23,a-cure-i1,2019-20,Lawrence - High School Learning Center,01490536, 0.7, 0.7, 0.7, 96.7, 0.0, 0.0, 1.3, 43.3, 56.7, 0.0,98.7,7.6 +2.245614035087719,2.25,a-cure-i1,2019-20,Lawrence - James F Hennessey,01490020, 0.0, 0.9, 1.2, 94.7, 0.0, 0.0, 3.1, 45.8, 53.6, 0.6,96.9,13.6 +3.361344537815126,3.36,a-cure-i1,2019-20,Lawrence - John Breen School,01490003, 0.0, 2.9, 3.5, 88.2, 0.6, 0.0, 4.8, 49.7, 50.0, 0.3,95.2,20.0 +0.9662231320368475,1,a-cure-i1,2019-20,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.3, 97.0, 0.3, 0.0, 2.3, 42.2, 57.5, 0.3,97.7,5.9 +4.069175991861648,4.07,a-cure-i1,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.6, 97.7, 0.0, 0.0, 1.7, 48.8, 51.2, 0.0,98.3,25.0 +1.1639344262295082,1.16,a-cure-i1,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 1.2, 0.6, 95.8, 0.0, 0.0, 2.4, 50.3, 49.1, 0.6,97.6,7.1 +3.588477366255144,3.59,a-cure-i1,2019-20,Lawrence - Lawrence High School,01490515, 0.0, 1.6, 1.1, 94.3, 0.2, 0.0, 2.8, 46.2, 53.1, 0.7,97.2,21.8 +1.31551901336074,1.32,a-cure-i1,2019-20,Lawrence - Oliver Partnership School,01490048, 0.0, 0.6, 0.4, 96.3, 0.0, 0.0, 2.7, 46.5, 53.3, 0.2,97.3,8.0 +1.1501057082452433,1.15,a-cure-i1,2019-20,Lawrence - Parthum Middle School,01490027, 0.0, 0.5, 0.5, 93.1, 0.5, 0.0, 5.4, 54.0, 45.6, 0.3,94.6,6.8 +1.796976241900648,1.8,a-cure-i1,2019-20,Lawrence - Robert Frost,01490018, 0.0, 3.1, 2.6, 86.2, 0.7, 0.0, 7.4, 49.4, 49.9, 0.7,92.6,10.4 +1,1,a-cure-i1,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.5, 1.0, 93.3, 0.0, 0.0, 5.3, 44.5, 55.5, 0.0,94.7,0.0 +3.8249158249158253,3.82,a-cure-i1,2019-20,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 1.6, 86.7, 0.8, 0.0, 10.9, 18.0, 82.0, 0.0,89.1,21.3 +2.055958549222798,2.06,a-cure-i1,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 2.0, 1.9, 92.4, 0.1, 0.0, 3.5, 46.3, 53.6, 0.1,96.5,12.4 +3.3979381443298973,3.4,a-cure-i1,2019-20,Lawrence - Spark Academy,01490085, 0.0, 1.7, 1.5, 93.0, 0.8, 0.0, 3.0, 46.6, 53.4, 0.0,97.0,20.6 +5.224489795918367,5,a-cure-i1,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.3, 0.3, 97.0, 0.3, 0.0, 2.0, 48.2, 51.5, 0.3,98.0,32.0 +3.725128205128205,3.73,a-cure-i1,2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.3, 0.0, 96.6, 0.6, 0.0, 2.5, 48.5, 51.2, 0.3,97.5,22.7 +2.2626262626262625,2.26,a-cure-i1,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.1, 0.6, 98.2, 0.0, 0.0, 1.0, 55.5, 44.5, 0.0,99.0,14.0 +1,1,a-cure-i1,2019-20,Lee - Lee Elementary,01500025, 0.0, 3.3, 0.6, 10.0, 1.4, 0.0, 84.7, 46.4, 53.3, 0.3,15.299999999999997,2.9 +1,1,a-cure-i1,2019-20,Lee - Lee Middle/High School,01500505, 0.3, 2.5, 0.8, 9.1, 3.4, 0.0, 83.9, 50.7, 49.3, 0.0,16.099999999999994,2.8 +1,1,a-cure-i1,2019-20,Leicester - Leicester Elementary,01510005, 0.0, 3.5, 6.5, 10.0, 2.2, 0.0, 77.8, 45.4, 54.6, 0.0,22.200000000000003,0.0 +4.923076923076924,4.92,a-cure-i1,2019-20,Leicester - Leicester High,01510505, 0.2, 2.5, 4.7, 10.0, 3.2, 0.2, 79.2, 49.5, 50.1, 0.4,20.799999999999997,6.4 +1,1,a-cure-i1,2019-20,Leicester - Leicester Integrated Preschool,01510001, 0.0, 1.7, 3.3, 8.3, 1.7, 0.0, 85.0, 55.0, 45.0, 0.0,15.0,0.0 +1,1,a-cure-i1,2019-20,Leicester - Leicester Middle,01510015, 0.0, 3.0, 5.4, 11.2, 3.6, 0.0, 76.8, 44.0, 56.0, 0.0,23.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Lenox - Lenox Memorial High,01520505, 0.0, 4.4, 0.7, 8.9, 3.3, 0.0, 82.8, 49.7, 50.3, 0.0,17.200000000000003,2.3 +1,1,a-cure-i1,2019-20,Lenox - Morris,01520015, 0.0, 3.8, 0.3, 8.8, 8.2, 0.0, 78.9, 47.9, 52.1, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Leominster - Bennett,01530003, 0.0, 1.8, 8.0, 31.0, 9.7, 0.0, 49.6, 47.8, 52.2, 0.0,50.4,0.0 +1.7777777777777777,1.78,a-cure-i1,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, 2.9, 8.4, 35.2, 3.5, 0.4, 49.6, 33.8, 66.2, 0.0,50.4,5.6 +2.0721868365180467,2.07,a-cure-i1,2019-20,Leominster - Fall Brook,01530007, 0.0, 2.2, 7.4, 32.2, 5.3, 0.0, 52.9, 47.3, 52.7, 0.0,47.1,6.1 +1,1,a-cure-i1,2019-20,Leominster - Frances Drake School,01530010, 0.0, 4.1, 7.4, 45.0, 6.3, 0.0, 37.3, 45.8, 54.2, 0.0,62.7,3.1 +1,1,a-cure-i1,2019-20,Leominster - Johnny Appleseed,01530025, 0.1, 3.4, 10.2, 35.1, 4.5, 0.0, 46.6, 50.2, 49.8, 0.0,53.4,2.8 +9.8159509202454,5,a-cure-i1,2019-20,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 2.3, 27.9, 2.3, 0.0, 67.4, 51.2, 46.5, 2.3,32.599999999999994,20.0 +1.8350100603621726,1.84,a-cure-i1,2019-20,Leominster - Leominster High School,01530505, 0.2, 3.5, 9.9, 32.7, 3.4, 0.0, 50.3, 57.8, 42.0, 0.2,49.7,5.699999999999999 +1,1,a-cure-i1,2019-20,Leominster - Lincoln School,01530005, 0.0, 5.4, 2.7, 27.0, 5.4, 0.0, 59.5, 35.1, 64.9, 0.0,40.5,0.0 +1,1,a-cure-i1,2019-20,Leominster - Northwest,01530030, 0.0, 2.4, 5.4, 43.2, 6.3, 0.0, 42.7, 51.3, 48.7, 0.0,57.3,0.0 +1,1,a-cure-i1,2019-20,Leominster - Priest Street,01530040, 0.0, 2.6, 8.7, 46.1, 6.1, 0.0, 36.5, 54.8, 45.2, 0.0,63.5,0.0 +1,1,a-cure-i1,2019-20,Leominster - Samoset School,01530045, 0.4, 3.1, 6.4, 39.8, 1.9, 0.2, 48.2, 49.9, 49.7, 0.4,51.8,2.6 +1,1,a-cure-i1,2019-20,Leominster - Sky View Middle School,01530320, 0.1, 4.0, 9.8, 36.0, 3.7, 0.0, 46.3, 48.9, 51.1, 0.0,53.7,3.6 +9.552238805970145,5,a-cure-i1,2019-20,Leverett - Leverett Elementary,01540005, 0.0, 0.7, 0.0, 4.2, 8.5, 0.0, 86.6, 43.0, 57.0, 0.0,13.400000000000006,8.0 +8.045368620037808,5,a-cure-i1,2019-20,Lexington - Bowman,01550008, 0.0, 34.3, 4.5, 4.9, 9.2, 0.0, 47.1, 49.7, 50.3, 0.0,52.9,26.6 +1.8013245033112584,1.8,a-cure-i1,2019-20,Lexington - Bridge,01550006, 0.2, 42.3, 5.5, 6.7, 5.7, 0.0, 39.6, 50.5, 49.5, 0.0,60.4,6.8 +1,1,a-cure-i1,2019-20,Lexington - Fiske,01550015, 0.0, 32.6, 2.9, 4.0, 7.5, 0.0, 53.0, 44.1, 55.9, 0.0,47.0,0.0 +3.3113553113553116,3.31,a-cure-i1,2019-20,Lexington - Harrington,01550030, 0.2, 38.0, 5.1, 3.6, 7.6, 0.0, 45.4, 49.3, 50.7, 0.0,54.6,11.3 +3.8550724637681157,3.86,a-cure-i1,2019-20,Lexington - Jonas Clarke Middle,01550305, 0.1, 41.4, 4.2, 4.4, 5.0, 0.1, 44.8, 48.8, 51.1, 0.1,55.2,13.3 +1,1,a-cure-i1,2019-20,Lexington - Joseph Estabrook,01550010, 0.0, 44.9, 3.3, 5.4, 9.9, 0.0, 36.4, 47.7, 52.3, 0.0,63.6,0.2 +1,1,a-cure-i1,2019-20,Lexington - Lexington Children's Place,01550001, 1.5, 38.2, 1.5, 8.8, 4.4, 0.0, 45.6, 32.4, 67.6, 0.0,54.4,0.0 +3.1053604436229203,3.11,a-cure-i1,2019-20,Lexington - Lexington High,01550505, 0.1, 41.0, 3.4, 3.9, 5.7, 0.0, 45.9, 49.5, 50.4, 0.1,54.1,10.5 +5.844155844155844,5,a-cure-i1,2019-20,Lexington - Maria Hastings,01550035, 0.0, 46.9, 1.8, 4.3, 8.5, 0.0, 38.4, 47.4, 52.6, 0.0,61.6,22.5 +3.3084745762711862,3.31,a-cure-i1,2019-20,Lexington - Wm Diamond Middle,01550310, 0.0, 42.4, 3.9, 3.7, 9.1, 0.0, 41.0, 52.3, 47.7, 0.0,59.0,12.2 +3.995955510616785,4.0,a-cure-i1,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.7, 15.0, 81.3, 1.5, 0.4, 1.1, 48.7, 51.3, 0.0,98.9,24.700000000000003 +3.121076233183856,3.12,a-cure-i1,2019-20,Lincoln - Hanscom Middle,01570305, 0.0, 1.6, 8.1, 23.3, 10.1, 1.6, 55.4, 52.7, 47.3, 0.0,44.6,8.7 +2.238341968911917,2.24,a-cure-i1,2019-20,Lincoln - Hanscom Primary,01570006, 0.0, 1.0, 7.1, 19.3, 10.3, 1.0, 61.4, 51.8, 48.2, 0.0,38.6,5.4 +3.00507614213198,3.01,a-cure-i1,2019-20,Lincoln - Lincoln School,01570025, 0.2, 6.8, 10.8, 9.9, 11.7, 0.0, 60.6, 50.5, 49.5, 0.0,39.4,7.4 +5.308411214953271,5,a-cure-i1,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 5.2, 5.1, 4.8, 6.3, 0.0, 78.6, 48.7, 51.3, 0.0,21.400000000000006,7.100000000000001 +1,1,a-cure-i1,2019-20,Littleton - Littleton High School,01580505, 0.5, 8.4, 0.2, 3.2, 4.1, 0.0, 83.6, 55.7, 44.1, 0.2,16.400000000000006,3.7 +1,1,a-cure-i1,2019-20,Littleton - Littleton Middle School,01580305, 0.0, 8.5, 2.3, 3.3, 3.1, 0.0, 82.8, 52.8, 47.2, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Littleton - Russell St Elementary,01580015, 0.3, 12.1, 1.3, 2.6, 1.8, 0.3, 81.7, 50.5, 49.5, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Littleton - Shaker Lane Elementary,01580005, 0.0, 12.8, 0.2, 1.3, 0.9, 0.4, 84.3, 48.3, 51.7, 0.0,15.700000000000003,4.0 +1,1,a-cure-i1,2019-20,Longmeadow - Blueberry Hill,01590005, 0.0, 16.6, 1.5, 3.8, 5.8, 0.0, 72.4, 47.2, 52.8, 0.0,27.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Longmeadow - Center,01590010, 0.0, 3.5, 2.1, 6.6, 4.3, 0.0, 83.5, 45.6, 54.4, 0.0,16.5,0.0 +1,1,a-cure-i1,2019-20,Longmeadow - Glenbrook Middle,01590017, 0.0, 14.5, 3.0, 7.3, 2.7, 0.3, 72.1, 49.4, 50.6, 0.0,27.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Longmeadow - Longmeadow High,01590505, 0.1, 10.1, 2.4, 3.6, 3.1, 0.1, 80.6, 49.5, 50.5, 0.0,19.400000000000006,3.2 +1,1,a-cure-i1,2019-20,Longmeadow - Williams Middle,01590305, 0.0, 9.6, 0.6, 5.4, 5.4, 0.6, 78.5, 53.0, 47.0, 0.0,21.5,4.6 +1,1,a-cure-i1,2019-20,Longmeadow - Wolf Swamp Road,01590025, 0.0, 9.5, 3.5, 5.7, 7.0, 0.0, 74.3, 45.9, 54.1, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Lowell - Abraham Lincoln,01600020, 0.0, 46.7, 2.8, 32.0, 4.5, 0.0, 14.0, 46.5, 53.5, 0.0,86.0,3.8 +1.419867549668874,1.42,a-cure-i1,2019-20,Lowell - B.F. Butler Middle School,01600310, 0.0, 29.4, 7.0, 33.1, 6.0, 0.0, 24.5, 52.0, 48.0, 0.0,75.5,6.699999999999999 +1,1,a-cure-i1,2019-20,Lowell - Bartlett Community Partnership,01600090, 0.0, 39.3, 8.6, 34.0, 2.7, 0.0, 15.4, 49.4, 50.6, 0.0,84.6,4.6 +1,1,a-cure-i1,2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 23.9, 4.6, 39.4, 4.6, 0.0, 27.5, 34.9, 65.1, 0.0,72.5,0.0 +1,1,a-cure-i1,2019-20,Lowell - Charles W Morey,01600030, 0.0, 61.8, 5.0, 11.0, 4.6, 0.0, 17.5, 47.0, 53.0, 0.0,82.5,3.8 +1,1,a-cure-i1,2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 40.0, 6.3, 38.3, 2.5, 0.0, 12.8, 47.4, 52.6, 0.0,87.2,0.0 +1,1,a-cure-i1,2019-20,Lowell - Dr An Wang School,01600345, 0.0, 17.2, 8.3, 40.4, 5.3, 0.0, 28.8, 49.2, 50.8, 0.0,71.2,0.0 +1,1,a-cure-i1,2019-20,Lowell - Dr Gertrude Bailey,01600002, 0.0, 42.3, 5.3, 21.7, 4.1, 0.0, 26.6, 46.2, 53.8, 0.0,73.4,0.0 +2.1443298969072164,2.14,a-cure-i1,2019-20,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 18.9, 17.0, 28.3, 3.8, 0.0, 32.1, 24.5, 75.5, 0.0,67.9,9.1 +1.540106951871658,1.54,a-cure-i1,2019-20,Lowell - Greenhalge,01600015, 0.0, 11.0, 11.6, 48.2, 4.0, 0.0, 25.2, 47.4, 52.6, 0.0,74.8,7.2 +4.178477690288713,4.18,a-cure-i1,2019-20,Lowell - Henry J Robinson Middle,01600330, 0.0, 15.1, 8.7, 49.9, 2.5, 0.0, 23.8, 50.7, 49.3, 0.0,76.2,19.9 +1.8655692729766802,1.87,a-cure-i1,2019-20,Lowell - James S Daley Middle School,01600315, 0.0, 45.8, 3.9, 18.5, 4.7, 0.0, 27.1, 45.5, 54.5, 0.0,72.9,8.5 +1.7699115044247788,1.77,a-cure-i1,2019-20,Lowell - James Sullivan Middle School,01600340, 0.0, 13.2, 6.5, 42.8, 5.3, 0.0, 32.2, 47.8, 52.2, 0.0,67.8,7.5 +1,1,a-cure-i1,2019-20,Lowell - John J Shaughnessy,01600050, 0.0, 30.8, 5.2, 38.3, 2.7, 0.0, 23.1, 47.4, 52.6, 0.0,76.9,0.0 +1.514066496163683,1.51,a-cure-i1,2019-20,Lowell - Joseph McAvinnue,01600010, 0.0, 16.9, 7.6, 49.8, 3.8, 0.0, 21.8, 47.5, 52.5, 0.0,78.2,7.4 +1.9771167048054916,1.98,a-cure-i1,2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 47.4, 4.5, 31.7, 3.8, 0.0, 12.6, 47.1, 52.9, 0.0,87.4,10.799999999999999 +1,1,a-cure-i1,2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 9.5, 47.6, 9.5, 0.0, 33.3, 9.5, 90.5, 0.0,66.7,0.0 +1,1,a-cure-i1,2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 6.1, 3.0, 51.5, 9.1, 0.0, 30.3, 33.3, 66.7, 0.0,69.7,0.0 +2.4884038199181444,2.49,a-cure-i1,2019-20,Lowell - Lowell High,01600505, 0.0, 30.6, 12.0, 27.5, 3.2, 0.0, 26.7, 50.3, 49.7, 0.0,73.3,11.399999999999999 +3.851851851851851,3.85,a-cure-i1,2019-20,Lowell - Moody Elementary,01600027, 0.0, 16.9, 7.6, 44.4, 1.3, 0.0, 29.8, 55.6, 44.4, 0.0,70.2,16.9 +1,1,a-cure-i1,2019-20,Lowell - Pawtucketville Memorial,01600036, 0.0, 22.9, 9.8, 25.8, 4.7, 0.0, 36.8, 49.1, 50.9, 0.0,63.2,4.2 +3.3893129770992365,3.39,a-cure-i1,2019-20,Lowell - Peter W Reilly,01600040, 0.0, 8.5, 1.5, 38.1, 4.2, 0.2, 47.6, 52.2, 47.8, 0.0,52.4,11.1 +1.6156351791530943,1.62,a-cure-i1,2019-20,Lowell - Pyne Arts,01600018, 0.0, 12.5, 6.7, 38.2, 4.0, 0.0, 38.6, 45.1, 54.9, 0.0,61.4,6.199999999999999 +1.2493702770780855,1.25,a-cure-i1,2019-20,Lowell - Rogers STEM Academy,01600005, 0.0, 22.5, 11.2, 42.1, 3.6, 0.0, 20.6, 47.6, 52.4, 0.0,79.4,6.199999999999999 +2.738095238095238,2.74,a-cure-i1,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 9.0, 6.1, 49.7, 2.4, 0.0, 32.8, 52.3, 47.7, 0.0,67.2,11.5 +1,1,a-cure-i1,2019-20,Lowell - The Career Academy,01600515, 0.0, 16.5, 7.7, 50.5, 3.3, 0.0, 22.0, 30.8, 69.2, 0.0,78.0,0.0 +1,1,a-cure-i1,2019-20,Lowell - Washington,01600055, 0.0, 42.6, 6.8, 24.1, 7.6, 0.0, 19.0, 40.5, 59.5, 0.0,81.0,0.0 +3.0788643533123023,3.08,a-cure-i1,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 19.0, 25.6, 46.4, 4.1, 0.0, 4.9, 50.2, 49.7, 0.1,95.1,18.299999999999997 +7.343108504398827,5,a-cure-i1,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 17.6, 3.5, 36.5, 10.6, 0.0, 31.8, 44.7, 55.3, 0.0,68.2,31.3 +1,1,a-cure-i1,2019-20,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.3, 1.5, 14.1, 2.8, 0.0, 81.3, 46.3, 53.7, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Ludlow - East Street Elementary School,01610010, 0.0, 2.0, 1.8, 14.1, 3.5, 0.0, 78.5, 47.7, 52.3, 0.0,21.5,0.0 +7.164179104477609,5,a-cure-i1,2019-20,Ludlow - Ludlow Senior High,01610505, 0.2, 0.7, 2.2, 7.1, 3.1, 0.0, 86.6, 51.3, 48.5, 0.2,13.400000000000006,6.0 +1,1,a-cure-i1,2019-20,Ludlow - Paul R Baird Middle,01610305, 0.7, 0.2, 2.0, 12.3, 2.6, 0.0, 82.4, 47.5, 52.5, 0.0,17.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Ludlow - Veterans Park Elementary,01610023, 0.3, 1.2, 1.8, 14.3, 3.9, 0.0, 78.6, 55.1, 44.9, 0.0,21.400000000000006,2.1 +1,1,a-cure-i1,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 83.3, 16.7, 0.0,0.0,0.0 +1,1,a-cure-i1,2019-20,Lunenburg - Lunenburg High,01620505, 0.9, 1.8, 2.2, 6.4, 1.5, 0.4, 86.7, 48.9, 51.1, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Lunenburg - Lunenburg Middle School,01620305, 0.5, 1.2, 1.5, 7.6, 2.7, 0.5, 86.0, 48.0, 52.0, 0.0,14.0,0.0 +1,1,a-cure-i1,2019-20,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.4, 2.9, 9.8, 1.9, 0.2, 83.7, 48.0, 52.0, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 3.1, 1.9, 8.9, 3.3, 0.3, 82.5, 50.6, 49.4, 0.0,17.5,0.0 +1.8669574700109048,1.87,a-cure-i1,2019-20,Lynn - A Drewicz Elementary,01630016, 0.4, 14.0, 5.1, 69.6, 2.6, 0.0, 8.3, 51.1, 48.9, 0.0,91.7,10.7 +1,1,a-cure-i1,2019-20,Lynn - Aborn,01630011, 1.2, 11.3, 10.9, 39.5, 9.3, 0.0, 27.8, 50.4, 49.6, 0.0,72.2,0.8 +2.207505518763797,2.21,a-cure-i1,2019-20,Lynn - Breed Middle School,01630405, 0.1, 9.3, 8.9, 69.2, 3.1, 0.0, 9.4, 49.3, 50.7, 0.0,90.6,12.5 +1,1,a-cure-i1,2019-20,Lynn - Brickett Elementary,01630020, 0.6, 10.1, 8.0, 63.8, 4.5, 0.0, 13.1, 46.3, 53.7, 0.0,86.9,0.5 +1,1,a-cure-i1,2019-20,Lynn - Capt William G Shoemaker,01630090, 0.0, 6.6, 12.2, 31.3, 7.2, 0.0, 42.7, 37.0, 63.0, 0.0,57.3,0.0 +2.761321909424725,2.76,a-cure-i1,2019-20,Lynn - Classical High,01630505, 0.4, 9.4, 8.2, 61.0, 2.6, 0.0, 18.3, 47.4, 52.6, 0.0,81.7,14.100000000000001 +2.509803921568627,2.51,a-cure-i1,2019-20,Lynn - Cobbet Elementary,01630035, 0.0, 3.4, 6.9, 85.1, 1.5, 0.0, 3.1, 43.3, 56.7, 0.0,96.9,15.2 +1,1,a-cure-i1,2019-20,Lynn - E J Harrington,01630045, 0.0, 6.8, 8.7, 70.8, 2.9, 0.0, 10.8, 47.6, 52.4, 0.0,89.2,0.2 +1.7650429799426934,1.77,a-cure-i1,2019-20,Lynn - Edward A Sisson,01630095, 1.8, 10.2, 6.2, 45.8, 5.8, 0.0, 30.2, 50.0, 50.0, 0.0,69.8,7.7 +2.547908232118759,2.55,a-cure-i1,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 5.2, 11.2, 51.7, 6.0, 0.0, 25.9, 35.3, 64.7, 0.0,74.1,11.8 +1.3080568720379147,1.31,a-cure-i1,2019-20,Lynn - Hood,01630055, 0.0, 9.3, 6.3, 66.4, 2.5, 0.0, 15.6, 48.0, 52.0, 0.0,84.4,6.9 +1.6824034334763946,1.68,a-cure-i1,2019-20,Lynn - Ingalls,01630060, 0.4, 6.6, 7.9, 74.6, 3.5, 0.1, 6.8, 49.0, 51.0, 0.0,93.2,9.799999999999999 +1.4316807738814994,1.43,a-cure-i1,2019-20,Lynn - Julia F Callahan,01630030, 0.0, 7.5, 12.7, 56.9, 5.6, 0.0, 17.3, 47.9, 52.1, 0.0,82.7,7.4 +1,1,a-cure-i1,2019-20,Lynn - Lincoln-Thomson,01630070, 0.0, 9.8, 5.8, 59.1, 5.3, 0.0, 20.0, 47.1, 52.9, 0.0,80.0,0.0 +2.6486486486486487,2.65,a-cure-i1,2019-20,Lynn - Lynn English High,01630510, 0.4, 8.8, 9.5, 67.8, 2.3, 0.0, 11.2, 47.5, 52.5, 0.1,88.8,14.7 +2.0861466821885912,2.09,a-cure-i1,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 0.3, 5.2, 7.2, 69.9, 3.4, 0.0, 14.1, 43.1, 56.9, 0.1,85.9,11.2 +3.0039525691699605,3.0,a-cure-i1,2019-20,Lynn - Lynn Woods,01630075, 1.1, 5.0, 4.4, 32.2, 7.8, 0.0, 49.4, 54.4, 45.6, 0.0,50.6,9.5 +2.063768115942029,2.06,a-cure-i1,2019-20,Lynn - Pickering Middle,01630420, 0.8, 8.9, 6.9, 47.3, 5.2, 0.0, 31.0, 47.6, 52.4, 0.0,69.0,8.9 +1,1,a-cure-i1,2019-20,Lynn - Robert L Ford,01630050, 0.2, 7.0, 8.2, 76.1, 2.6, 0.0, 5.8, 49.5, 50.5, 0.0,94.2,0.3 +1.1681877444589308,1.17,a-cure-i1,2019-20,Lynn - Sewell-Anderson,01630085, 0.3, 6.5, 9.1, 57.0, 3.9, 0.0, 23.3, 46.9, 53.1, 0.0,76.7,5.6 +1.6052344601962925,1.61,a-cure-i1,2019-20,Lynn - Thurgood Marshall Mid,01630305, 0.1, 6.3, 10.2, 72.6, 2.6, 0.0, 8.3, 48.7, 51.3, 0.0,91.7,9.200000000000001 +1,1,a-cure-i1,2019-20,Lynn - Tracy,01630100, 0.2, 5.2, 9.7, 74.8, 3.6, 0.0, 6.4, 50.1, 49.9, 0.0,93.6,0.0 +1.2840549102428722,1.28,a-cure-i1,2019-20,Lynn - Washington Elementary School,01630005, 0.0, 6.0, 12.5, 74.4, 1.8, 0.0, 5.3, 51.3, 48.7, 0.0,94.7,7.6 +1,1,a-cure-i1,2019-20,Lynn - William R Fallon,01630080, 0.0, 3.0, 12.1, 63.6, 3.0, 0.0, 18.2, 12.1, 87.9, 0.0,81.8,0.0 +1,1,a-cure-i1,2019-20,Lynn - Wm P Connery,01630040, 0.0, 10.0, 6.2, 75.0, 2.2, 0.0, 6.7, 50.4, 49.6, 0.0,93.3,2.8 +1,1,a-cure-i1,2019-20,Lynnfield - Huckleberry Hill,01640010, 0.0, 8.9, 2.8, 6.5, 5.6, 0.0, 76.2, 55.0, 45.0, 0.0,23.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Lynnfield - Lynnfield High,01640505, 0.0, 4.6, 2.6, 4.6, 1.8, 0.0, 86.3, 52.2, 47.6, 0.2,13.700000000000003,2.2 +1,1,a-cure-i1,2019-20,Lynnfield - Lynnfield Middle School,01640405, 0.0, 7.1, 1.3, 6.0, 2.2, 0.0, 83.4, 47.6, 52.4, 0.0,16.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, 7.5, 2.5, 7.5, 7.5, 0.0, 75.0, 47.5, 52.5, 0.0,25.0,0.0 +1,1,a-cure-i1,2019-20,Lynnfield - Summer Street,01640020, 0.0, 5.4, 1.2, 5.1, 2.5, 0.0, 85.8, 47.3, 52.7, 0.0,14.200000000000003,0.0 +4.2683706070287535,4.27,a-cure-i1,2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 53.5, 3.0, 1.0, 5.1, 0.0, 37.4, 49.5, 49.5, 1.0,62.6,16.7 +1,1,a-cure-i1,2019-20,Malden - Beebe,01650003, 0.0, 36.1, 14.1, 14.8, 4.5, 0.1, 30.3, 48.6, 51.4, 0.0,69.7,2.4 +1.25,1.25,a-cure-i1,2019-20,Malden - Ferryway,01650013, 0.1, 18.3, 18.6, 34.3, 5.5, 0.0, 23.2, 49.8, 50.2, 0.0,76.8,6.0 +1,1,a-cure-i1,2019-20,Malden - Forestdale,01650027, 0.0, 10.9, 17.4, 23.2, 7.2, 0.2, 41.1, 45.5, 54.5, 0.0,58.9,3.6 +1,1,a-cure-i1,2019-20,Malden - Linden,01650047, 0.2, 24.6, 20.0, 17.3, 5.0, 0.0, 32.8, 47.2, 52.7, 0.1,67.2,4.0 +1,1,a-cure-i1,2019-20,Malden - Malden Early Learning Center,01650049, 0.0, 38.8, 10.9, 9.7, 4.8, 0.0, 35.8, 40.9, 59.1, 0.0,64.2,0.0 +3.195795006570303,3.2,a-cure-i1,2019-20,Malden - Malden High,01650505, 0.3, 23.5, 21.9, 27.9, 2.6, 0.0, 23.9, 49.2, 50.7, 0.1,76.1,15.200000000000001 +4.000000000000001,4.0,a-cure-i1,2019-20,Malden - Salemwood,01650057, 0.0, 15.4, 20.3, 38.4, 2.7, 0.0, 23.2, 50.0, 50.0, 0.0,76.8,19.200000000000003 +1,1,a-cure-i1,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.5, 4.1, 0.0, 0.0, 95.4, 51.6, 48.4, 0.0,4.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.4, 0.0, 1.4, 0.6, 0.0, 96.5, 50.3, 49.7, 0.0,3.5,2.7 +1,1,a-cure-i1,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.8, 0.0, 0.8, 1.1, 0.0, 97.2, 49.6, 50.4, 0.0,2.799999999999997,2.5 +1,1,a-cure-i1,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.3, 1.6, 1.0, 1.0, 0.0, 96.1, 45.0, 55.0, 0.0,3.9000000000000057,0.0 +1,1,a-cure-i1,2019-20,Mansfield - Everett W Robinson,01670007, 0.1, 7.2, 4.3, 4.2, 5.4, 0.0, 78.7, 47.6, 52.2, 0.1,21.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Mansfield - Harold L Qualters Middle,01670035, 0.1, 7.0, 3.8, 6.3, 2.3, 0.0, 80.4, 47.8, 52.2, 0.0,19.599999999999994,1.5 +1,1,a-cure-i1,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 8.6, 5.0, 5.5, 5.1, 0.0, 75.8, 46.4, 53.6, 0.0,24.200000000000003,2.4 +5.680473372781063,5,a-cure-i1,2019-20,Mansfield - Mansfield High,01670505, 0.0, 5.6, 3.6, 4.0, 3.8, 0.0, 83.1, 49.4, 50.6, 0.0,16.900000000000006,6.0 +1,1,a-cure-i1,2019-20,Mansfield - Roland Green School,01670003, 0.0, 8.1, 1.8, 7.2, 4.5, 0.0, 78.4, 45.0, 55.0, 0.0,21.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.6, 6.2, 19.3, 6.2, 0.6, 67.1, 36.6, 63.4, 0.0,32.900000000000006,0.0 +9.048275862068964,5,a-cure-i1,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 1.2, 8.4, 4.8, 0.0, 85.5, 54.2, 45.8, 0.0,14.5,8.2 +1,1,a-cure-i1,2019-20,Marblehead - Glover,01680020, 0.0, 0.8, 2.1, 3.6, 3.6, 0.0, 89.8, 48.7, 51.3, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Marblehead - L H Coffin,01680010, 0.0, 1.3, 2.2, 7.1, 4.0, 0.0, 85.4, 47.8, 52.2, 0.0,14.599999999999994,0.5 +1,1,a-cure-i1,2019-20,Marblehead - Marblehead High,01680505, 0.0, 1.7, 2.9, 5.7, 2.3, 0.0, 87.4, 51.5, 48.5, 0.0,12.599999999999994,4.8 +1,1,a-cure-i1,2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 0.4, 0.8, 3.3, 6.6, 2.7, 0.0, 86.3, 48.6, 51.4, 0.0,13.700000000000003,2.5 +1,1,a-cure-i1,2019-20,Marblehead - Village School,01680016, 0.0, 1.4, 3.1, 8.3, 4.6, 0.0, 82.6, 46.8, 53.2, 0.0,17.400000000000006,1.6 +1,1,a-cure-i1,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 2.9, 5.9, 6.3, 2.4, 0.0, 82.4, 44.9, 54.6, 0.5,17.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Marion - Sippican,01690005, 0.0, 0.7, 3.9, 3.9, 6.9, 0.0, 84.5, 47.6, 52.4, 0.0,15.5,0.0 +1,1,a-cure-i1,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.1, 2.2, 3.0, 54.6, 3.4, 0.0, 36.7, 49.4, 50.6, 0.0,63.3,3.5 +1,1,a-cure-i1,2019-20,Marlborough - Charles Jaworek School,01700030, 0.2, 7.2, 3.5, 43.5, 2.0, 0.1, 43.5, 49.0, 51.0, 0.0,56.5,2.0 +1,1,a-cure-i1,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, 9.7, 8.6, 34.3, 2.3, 0.6, 44.6, 42.9, 57.1, 0.0,55.4,0.0 +1,1,a-cure-i1,2019-20,Marlborough - Francis J Kane,01700008, 0.0, 2.8, 3.2, 47.9, 1.1, 0.0, 45.1, 47.2, 52.8, 0.0,54.9,0.0 +1.2820512820512822,1.28,a-cure-i1,2019-20,Marlborough - Marlborough High,01700505, 0.1, 1.9, 3.1, 55.3, 1.9, 0.0, 37.6, 47.9, 52.1, 0.0,62.4,5.0 +1,1,a-cure-i1,2019-20,Marlborough - Richer,01700025, 0.0, 3.5, 3.5, 58.9, 3.4, 0.0, 30.6, 46.7, 53.3, 0.0,69.4,2.5 +1,1,a-cure-i1,2019-20,Marshfield - Daniel Webster,01710015, 0.5, 2.4, 2.2, 3.2, 0.5, 0.8, 90.3, 46.4, 53.6, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.4, 0.9, 0.0, 98.7, 42.4, 57.6, 0.0,1.2999999999999972,0.0 +1,1,a-cure-i1,2019-20,Marshfield - Furnace Brook Middle,01710310, 0.2, 1.2, 0.6, 3.3, 2.2, 0.1, 92.4, 49.8, 50.2, 0.0,7.599999999999994,1.6 +1,1,a-cure-i1,2019-20,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.3, 0.0, 3.2, 1.9, 0.0, 94.7, 48.1, 51.9, 0.0,5.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Marshfield - Marshfield High,01710505, 0.0, 1.4, 0.4, 3.2, 1.1, 0.1, 93.9, 48.0, 52.0, 0.0,6.099999999999994,1.0 +1,1,a-cure-i1,2019-20,Marshfield - Martinson Elementary,01710025, 0.0, 1.5, 0.2, 4.1, 3.4, 0.0, 90.8, 46.5, 53.5, 0.0,9.200000000000003,3.8 +1,1,a-cure-i1,2019-20,Marshfield - South River,01710010, 0.0, 0.3, 0.3, 3.6, 3.6, 0.0, 92.2, 49.7, 50.3, 0.0,7.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.9, 1.2, 4.5, 19.4, 4.8, 0.3, 67.9, 47.5, 52.5, 0.0,32.099999999999994,3.3 +1,1,a-cure-i1,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 1.7, 0.6, 1.7, 9.9, 8.7, 0.0, 77.3, 55.2, 44.8, 0.0,22.700000000000003,4.5 +3.0825688073394493,3.08,a-cure-i1,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.8, 30.3, 64.4, 2.5, 0.0, 1.9, 49.2, 50.8, 0.0,98.1,18.9 +1,1,a-cure-i1,2019-20,Masconomet - Masconomet Regional High School,07050505, 0.1, 4.1, 0.3, 2.6, 2.1, 0.2, 90.6, 53.1, 46.9, 0.0,9.400000000000006,1.4 +23.76470588235295,5,a-cure-i1,2019-20,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 2.9, 0.3, 2.4, 1.0, 0.0, 93.2, 51.3, 48.7, 0.0,6.799999999999997,10.1 +1,1,a-cure-i1,2019-20,Mashpee - Kenneth Coombs School,01720005, 3.1, 1.5, 2.8, 8.4, 12.5, 0.3, 71.5, 42.7, 57.3, 0.0,28.5,0.0 +1,1,a-cure-i1,2019-20,Mashpee - Mashpee High,01720505, 5.7, 3.1, 5.5, 4.2, 5.3, 0.2, 76.0, 49.8, 50.2, 0.0,24.0,2.7 +4.672,4.67,a-cure-i1,2019-20,Mashpee - Mashpee Middle School,01720020, 5.5, 3.1, 3.9, 3.5, 9.0, 0.0, 75.0, 49.2, 50.8, 0.0,25.0,7.3 +1,1,a-cure-i1,2019-20,Mashpee - Quashnet School,01720035, 7.2, 1.5, 4.6, 6.1, 8.7, 0.0, 72.0, 51.3, 48.7, 0.0,28.0,0.0 +5.105691056910569,5,a-cure-i1,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.4, 0.5, 48.1, 46.9, 2.2, 0.2, 1.6, 52.2, 47.8, 0.0,98.4,31.4 +1,1,a-cure-i1,2019-20,Mattapoisett - Center,01730005, 0.0, 0.8, 0.0, 4.0, 6.4, 0.0, 88.8, 48.8, 51.2, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.6, 1.0, 4.2, 3.6, 0.0, 89.6, 45.8, 54.2, 0.0,10.400000000000006,0.0 +9.525581395348837,5,a-cure-i1,2019-20,Maynard - Fowler School,01740305, 0.2, 1.5, 2.4, 12.4, 4.9, 0.0, 78.5, 50.6, 49.1, 0.2,21.5,12.8 +12.16,5,a-cure-i1,2019-20,Maynard - Green Meadow,01740010, 0.0, 1.5, 1.5, 14.5, 5.0, 0.0, 77.5, 45.5, 54.5, 0.0,22.5,17.1 +1,1,a-cure-i1,2019-20,Maynard - Maynard High,01740505, 0.3, 3.3, 2.4, 11.3, 2.7, 0.0, 80.1, 48.7, 51.0, 0.3,19.900000000000006,4.2 +1,1,a-cure-i1,2019-20,Medfield - Dale Street,01750005, 0.8, 4.8, 1.8, 4.5, 2.8, 0.0, 85.4, 45.2, 54.8, 0.0,14.599999999999994,3.8 +1,1,a-cure-i1,2019-20,Medfield - Medfield Senior High,01750505, 0.1, 5.5, 1.0, 2.4, 3.1, 0.0, 87.9, 50.4, 49.6, 0.0,12.099999999999994,3.6 +1,1,a-cure-i1,2019-20,Medfield - Memorial School,01750003, 0.2, 2.8, 1.8, 2.3, 3.2, 0.0, 89.7, 50.2, 49.8, 0.0,10.299999999999997,1.4 +1,1,a-cure-i1,2019-20,Medfield - Ralph Wheelock School,01750007, 0.0, 2.8, 1.3, 4.1, 4.4, 0.0, 87.4, 50.0, 50.0, 0.0,12.599999999999994,1.4 +6.937062937062938,5,a-cure-i1,2019-20,Medfield - Thomas Blake Middle,01750305, 0.3, 3.7, 0.7, 5.0, 4.5, 0.0, 85.7, 48.0, 52.0, 0.0,14.299999999999997,6.2 +1,1,a-cure-i1,2019-20,Medford - Brooks School,01760130, 0.6, 4.5, 6.8, 9.0, 5.3, 0.0, 73.9, 49.5, 50.5, 0.0,26.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Medford - Christopher Columbus,01760140, 0.5, 7.2, 12.7, 20.2, 5.6, 0.0, 53.8, 44.6, 55.4, 0.0,46.2,0.0 +1,1,a-cure-i1,2019-20,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 21.4, 7.1, 14.3, 0.0, 57.1, 28.6, 71.4, 0.0,42.9,0.0 +2.1474480151228734,2.15,a-cure-i1,2019-20,Medford - John J McGlynn Elementary School,01760068, 1.0, 15.1, 15.1, 14.9, 6.6, 0.2, 47.1, 52.7, 47.3, 0.0,52.9,7.1 +1,1,a-cure-i1,2019-20,Medford - John J. McGlynn Middle School,01760320, 0.4, 10.1, 19.6, 17.0, 4.2, 0.2, 48.5, 47.6, 52.4, 0.0,51.5,4.300000000000001 +1,1,a-cure-i1,2019-20,Medford - Madeleine Dugger Andrews,01760315, 0.4, 7.9, 7.9, 9.2, 6.4, 0.0, 68.1, 45.8, 54.2, 0.0,31.900000000000006,2.9 +1,1,a-cure-i1,2019-20,Medford - Medford High,01760505, 0.1, 10.7, 14.0, 12.7, 3.9, 0.1, 58.6, 47.5, 52.5, 0.0,41.4,3.4 +1,1,a-cure-i1,2019-20,Medford - Milton Fuller Roberts,01760150, 1.2, 10.8, 9.5, 11.5, 4.8, 0.0, 62.2, 46.3, 53.7, 0.0,37.8,0.0 +1,1,a-cure-i1,2019-20,Medway - Burke/Memorial Elementary School,01770015, 0.2, 1.7, 2.5, 3.8, 2.1, 0.2, 89.5, 52.0, 48.0, 0.0,10.5,0.0 +1,1,a-cure-i1,2019-20,Medway - John D Mc Govern Elementary,01770013, 0.3, 2.1, 1.5, 7.2, 1.8, 0.0, 87.1, 45.5, 54.5, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Medway - Medway High,01770505, 0.3, 4.0, 1.0, 4.1, 1.3, 0.0, 89.3, 50.4, 49.6, 0.0,10.700000000000003,4.1 +1,1,a-cure-i1,2019-20,Medway - Medway Middle,01770305, 0.1, 2.9, 1.8, 6.0, 2.5, 0.3, 86.4, 52.6, 47.4, 0.0,13.599999999999994,4.4 +1,1,a-cure-i1,2019-20,Melrose - Early Childhood Center,01780003, 0.0, 7.4, 3.6, 3.9, 5.8, 0.0, 79.3, 45.0, 55.0, 0.0,20.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Melrose - Herbert Clark Hoover,01780017, 0.0, 8.2, 5.3, 7.2, 3.5, 0.0, 75.8, 50.0, 50.0, 0.0,24.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Melrose - Horace Mann,01780025, 0.0, 0.7, 1.4, 2.5, 6.0, 0.0, 89.4, 54.6, 45.4, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Melrose - Lincoln,01780020, 0.0, 15.0, 7.7, 8.5, 8.5, 0.0, 60.4, 53.6, 46.4, 0.0,39.6,0.0 +1,1,a-cure-i1,2019-20,Melrose - Melrose High,01780505, 0.0, 5.5, 6.1, 4.2, 4.2, 0.0, 80.1, 52.5, 47.5, 0.0,19.900000000000006,4.2 +4.343891402714934,4.34,a-cure-i1,2019-20,Melrose - Melrose Middle,01780305, 0.0, 5.0, 7.6, 5.6, 3.9, 0.0, 77.9, 49.5, 50.5, 0.0,22.099999999999994,6.0 +1,1,a-cure-i1,2019-20,Melrose - Roosevelt,01780035, 0.0, 5.3, 6.0, 4.6, 5.8, 0.0, 78.2, 49.3, 50.7, 0.0,21.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Melrose - Winthrop,01780050, 0.0, 4.3, 1.9, 3.6, 6.7, 0.0, 83.4, 48.3, 51.7, 0.0,16.599999999999994,0.0 +55.17241379310334,5,a-cure-i1,2019-20,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 2.1, 0.8, 0.0, 97.1, 53.4, 46.6, 0.0,2.9000000000000057,10.0 +21.565217391304355,5,a-cure-i1,2019-20,Mendon-Upton - Memorial School,07100001, 0.0, 4.2, 0.8, 5.1, 3.6, 0.0, 86.2, 48.7, 51.3, 0.0,13.799999999999997,18.6 +1,1,a-cure-i1,2019-20,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 2.5, 0.3, 5.5, 3.4, 0.0, 88.3, 45.7, 54.3, 0.0,11.700000000000003,2.9 +1,1,a-cure-i1,2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 0.3, 2.2, 1.2, 4.4, 2.5, 0.0, 89.4, 53.8, 46.2, 0.0,10.599999999999994,2.7 +1,1,a-cure-i1,2019-20,Methuen - Comprehensive Grammar School,01810050, 0.0, 4.2, 4.4, 38.7, 3.7, 0.0, 49.0, 50.0, 50.0, 0.0,51.0,0.5 +1,1,a-cure-i1,2019-20,Methuen - Donald P Timony Grammar,01810060, 0.2, 3.6, 4.2, 48.4, 4.1, 0.1, 39.5, 46.2, 53.8, 0.0,60.5,0.0 +1,1,a-cure-i1,2019-20,Methuen - Marsh Grammar School,01810030, 0.0, 3.2, 2.1, 33.6, 3.8, 0.1, 57.2, 46.1, 53.9, 0.0,42.8,1.4 +1,1,a-cure-i1,2019-20,Methuen - Methuen High,01810505, 0.1, 4.5, 1.8, 40.4, 4.7, 0.1, 48.4, 48.5, 51.5, 0.0,51.6,2.9 +1,1,a-cure-i1,2019-20,Methuen - Tenney Grammar School,01810055, 0.0, 2.9, 3.1, 56.9, 4.1, 0.1, 33.0, 45.6, 54.4, 0.0,67.0,0.2 +1,1,a-cure-i1,2019-20,Middleborough - Henry B. Burkland Elementary School,01820008, 0.6, 1.1, 1.5, 2.2, 7.6, 0.0, 87.0, 44.7, 55.3, 0.0,13.0,0.0 +1,1,a-cure-i1,2019-20,Middleborough - John T. Nichols Middle,01820305, 1.1, 0.9, 2.7, 3.1, 4.3, 0.0, 87.9, 49.3, 50.7, 0.0,12.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Middleborough - Mary K. Goode Elementary School,01820010, 0.5, 0.7, 2.1, 1.9, 5.4, 0.0, 89.5, 50.6, 49.4, 0.0,10.5,2.9 +1,1,a-cure-i1,2019-20,Middleborough - Memorial Early Childhood Center,01820011, 0.7, 0.0, 5.0, 2.8, 5.7, 0.0, 85.8, 47.9, 52.1, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Middleborough - Middleborough High,01820505, 1.2, 1.0, 2.8, 3.6, 3.1, 0.0, 88.2, 48.0, 52.0, 0.0,11.799999999999997,1.7 +1,1,a-cure-i1,2019-20,Middleton - Fuller Meadow,01840003, 0.7, 4.4, 1.1, 5.5, 4.4, 0.0, 84.0, 52.7, 47.3, 0.0,16.0,0.0 +1,1,a-cure-i1,2019-20,Middleton - Howe-Manning,01840005, 0.7, 3.9, 0.7, 5.9, 3.9, 0.2, 84.7, 51.1, 48.9, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Milford - Brookside,01850065, 0.2, 1.1, 3.3, 31.0, 2.4, 0.0, 62.0, 49.0, 51.0, 0.0,38.0,3.4 +1,1,a-cure-i1,2019-20,Milford - Memorial,01850010, 0.2, 0.6, 3.0, 32.5, 2.3, 0.0, 61.4, 49.2, 50.8, 0.0,38.6,3.2 +1,1,a-cure-i1,2019-20,Milford - Milford High,01850505, 1.6, 2.1, 2.8, 29.4, 3.6, 0.0, 60.4, 48.7, 51.1, 0.2,39.6,4.9 +1,1,a-cure-i1,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.5, 2.2, 3.8, 25.8, 2.2, 0.0, 65.4, 37.4, 62.1, 0.5,34.599999999999994,0.0 +2.1945137157107233,2.19,a-cure-i1,2019-20,Milford - Stacy Middle,01850305, 2.6, 1.8, 2.6, 29.9, 3.2, 0.0, 59.9, 45.8, 54.2, 0.0,40.1,5.5 +1,1,a-cure-i1,2019-20,Milford - Woodland,01850090, 1.0, 1.6, 3.6, 29.9, 4.0, 0.2, 59.8, 48.4, 51.6, 0.0,40.2,3.4 +1,1,a-cure-i1,2019-20,Millbury - Elmwood Street,01860017, 0.0, 3.3, 3.1, 6.9, 6.0, 0.0, 80.7, 47.3, 52.7, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Millbury - Millbury Junior/Senior High,01860505, 0.1, 3.2, 4.0, 9.7, 3.5, 0.0, 79.5, 50.9, 49.1, 0.0,20.5,1.8 +1,1,a-cure-i1,2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 4.0, 2.7, 7.7, 5.4, 0.2, 80.0, 47.7, 52.3, 0.0,20.0,0.0 +1,1,a-cure-i1,2019-20,Millis - Clyde F Brown,01870005, 0.7, 1.4, 0.5, 7.6, 3.5, 0.2, 86.1, 51.5, 48.5, 0.0,13.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Millis - Millis High School,01870505, 0.0, 3.3, 1.8, 7.8, 1.2, 0.3, 85.6, 49.5, 50.5, 0.0,14.400000000000006,3.4 +5.978021978021978,5,a-cure-i1,2019-20,Millis - Millis Middle,01870020, 0.0, 2.6, 0.7, 9.3, 5.6, 0.0, 81.8, 48.7, 51.3, 0.0,18.200000000000003,6.800000000000001 +6.421404682274246,5,a-cure-i1,2019-20,Milton - Charles S Pierce Middle,01890410, 0.0, 6.3, 13.9, 5.0, 4.6, 0.1, 70.1, 48.5, 51.5, 0.0,29.900000000000006,12.0 +14.585635359116027,5,a-cure-i1,2019-20,Milton - Collicot,01890005, 0.0, 8.7, 2.7, 3.0, 3.7, 0.0, 81.9, 48.6, 51.4, 0.0,18.099999999999994,16.5 +1,1,a-cure-i1,2019-20,Milton - Cunningham School,01890007, 0.3, 10.3, 5.8, 4.5, 4.2, 0.0, 74.8, 49.1, 50.9, 0.0,25.200000000000003,3.8 +7.963800904977377,5,a-cure-i1,2019-20,Milton - Glover,01890010, 0.2, 4.7, 6.5, 3.7, 7.0, 0.0, 77.9, 52.8, 47.2, 0.0,22.099999999999994,10.999999999999998 +4.3508771929824555,4.35,a-cure-i1,2019-20,Milton - Milton High,01890505, 0.2, 6.3, 19.2, 5.4, 3.0, 0.2, 65.8, 51.2, 48.7, 0.1,34.2,9.299999999999999 +4.658227848101266,4.66,a-cure-i1,2019-20,Milton - Tucker,01890020, 0.0, 7.0, 39.7, 6.5, 10.0, 0.0, 36.8, 51.4, 48.6, 0.0,63.2,18.400000000000002 +1,1,a-cure-i1,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.3, 4.5, 3.5, 6.4, 4.8, 0.0, 80.4, 36.8, 62.4, 0.8,19.599999999999994,4.7 +1,1,a-cure-i1,2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.4, 6.1, 3.7, 0.0, 89.8, 49.0, 51.0, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.9, 4.6, 0.0, 0.0, 94.5, 45.9, 54.1, 0.0,5.5,0.0 +1,1,a-cure-i1,2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.9, 0.3, 3.9, 3.0, 0.0, 92.0, 52.1, 47.6, 0.3,8.0,2.2 +1,1,a-cure-i1,2019-20,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 3.9, 1.9, 0.6, 93.5, 52.3, 47.7, 0.0,6.5,0.0 +1,1,a-cure-i1,2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 2.0, 6.4, 12.3, 3.9, 0.5, 75.0, 51.0, 49.0, 0.0,25.0,0.0 +1,1,a-cure-i1,2019-20,Monomoy Regional School District - Harwich Elementary School,07120002, 0.5, 2.0, 5.6, 8.0, 8.0, 0.0, 75.9, 44.9, 55.1, 0.0,24.099999999999994,2.8 +4.054298642533938,4.05,a-cure-i1,2019-20,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.6, 1.6, 8.0, 7.2, 4.4, 0.3, 77.9, 50.1, 49.9, 0.0,22.099999999999994,5.6000000000000005 +1,1,a-cure-i1,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.6, 0.8, 5.6, 7.3, 5.2, 0.2, 80.2, 51.1, 48.9, 0.0,19.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Monson - Granite Valley School,01910030, 0.0, 0.7, 1.4, 6.4, 2.8, 0.2, 88.5, 52.5, 47.3, 0.2,11.5,3.2 +1,1,a-cure-i1,2019-20,Monson - Monson High School,01910505, 0.0, 1.1, 1.1, 3.6, 2.2, 1.1, 90.9, 50.6, 49.4, 0.0,9.099999999999994,3.7 +1,1,a-cure-i1,2019-20,Monson - Quarry Hill Community School,01910010, 0.7, 0.7, 0.0, 2.9, 1.5, 0.0, 94.2, 51.8, 48.2, 0.0,5.799999999999997,0.0 +3.4754098360655736,3.48,a-cure-i1,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.8, 1.9, 17.1, 3.6, 0.0, 75.6, 50.3, 49.2, 0.4,24.400000000000006,5.300000000000001 +1,1,a-cure-i1,2019-20,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 1.5, 2.5, 2.5, 2.0, 0.0, 91.4, 53.0, 47.0, 0.0,8.599999999999994,0.0 +9.904761904761905,5,a-cure-i1,2019-20,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.8, 2.0, 3.4, 3.3, 0.0, 89.5, 52.6, 47.4, 0.0,10.5,6.5 +1,1,a-cure-i1,2019-20,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.5, 1.2, 6.1, 5.6, 0.0, 86.6, 47.4, 52.6, 0.0,13.400000000000006,3.2 +2.861313868613139,2.86,a-cure-i1,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.3, 22.8, 17.7, 9.4, 4.6, 0.0, 45.2, 51.2, 48.8, 0.0,54.8,9.8 +1,1,a-cure-i1,2019-20,Nahant - Johnson,01960010, 0.0, 0.6, 0.6, 6.5, 3.9, 0.0, 88.3, 50.6, 49.4, 0.0,11.700000000000003,0.0 +2.079664570230608,2.08,a-cure-i1,2019-20,Nantucket - Cyrus Peirce,01970010, 0.0, 2.5, 12.1, 30.6, 2.5, 0.0, 52.3, 50.0, 50.0, 0.0,47.7,6.2 +1,1,a-cure-i1,2019-20,Nantucket - Nantucket Elementary,01970005, 0.0, 2.2, 7.0, 42.8, 4.5, 0.0, 43.5, 49.5, 50.5, 0.0,56.5,2.8 +3.4385964912280698,3.44,a-cure-i1,2019-20,Nantucket - Nantucket High,01970505, 0.6, 1.5, 12.2, 26.5, 4.9, 0.0, 54.4, 48.8, 50.7, 0.6,45.6,9.799999999999999 +1,1,a-cure-i1,2019-20,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.9, 6.9, 39.5, 3.5, 0.0, 49.3, 47.6, 52.4, 0.0,50.7,1.3 +1,1,a-cure-i1,2019-20,Narragansett - Narragansett Middle,07200305, 0.3, 0.5, 1.1, 5.4, 3.5, 0.3, 89.0, 45.6, 54.4, 0.0,11.0,0.0 +10.352941176470583,5,a-cure-i1,2019-20,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.9, 8.6, 2.4, 0.0, 88.1, 48.3, 51.7, 0.0,11.900000000000006,7.7 +1,1,a-cure-i1,2019-20,Narragansett - Phillipston Memorial,07200003, 0.0, 0.9, 1.8, 5.3, 2.7, 0.0, 89.4, 34.5, 65.5, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Narragansett - Templeton Elementary School,07200020, 0.0, 0.2, 1.1, 6.3, 3.4, 0.0, 89.1, 49.5, 50.5, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Nashoba - Center School,07250020, 0.0, 4.3, 0.9, 5.5, 3.9, 0.0, 85.3, 51.5, 48.5, 0.0,14.700000000000003,2.0 +1,1,a-cure-i1,2019-20,Nashoba - Florence Sawyer School,07250025, 0.0, 5.1, 0.4, 3.7, 3.1, 0.1, 87.6, 50.6, 49.4, 0.0,12.400000000000006,0.0 +7.5520000000000005,5,a-cure-i1,2019-20,Nashoba - Hale,07250310, 0.3, 5.0, 0.7, 4.0, 2.6, 0.0, 87.5, 45.9, 54.1, 0.0,12.5,5.9 +1,1,a-cure-i1,2019-20,Nashoba - Luther Burbank Middle School,07250305, 0.0, 1.2, 0.8, 10.3, 3.3, 0.0, 84.4, 49.4, 50.6, 0.0,15.599999999999994,4.5 +1,1,a-cure-i1,2019-20,Nashoba - Mary Rowlandson Elementary,07250010, 0.4, 1.1, 2.8, 9.8, 2.3, 0.0, 83.6, 47.9, 52.1, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Nashoba - Nashoba Regional,07250505, 0.0, 3.3, 1.7, 3.5, 1.7, 0.2, 89.6, 49.9, 50.1, 0.0,10.400000000000006,2.8 +6.875000000000002,5,a-cure-i1,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.4, 1.6, 2.1, 6.5, 2.1, 0.1, 87.2, 38.8, 60.5, 0.7,12.799999999999997,5.5 +4.462151394422312,4.46,a-cure-i1,2019-20,Natick - Bennett-Hemenway,01980005, 0.2, 11.6, 1.8, 4.7, 6.7, 0.0, 74.9, 50.5, 49.5, 0.0,25.099999999999994,7.0 +1,1,a-cure-i1,2019-20,Natick - Brown,01980010, 0.2, 28.4, 1.0, 8.6, 5.3, 0.0, 56.4, 48.3, 51.7, 0.0,43.6,0.0 +3.947136563876651,3.95,a-cure-i1,2019-20,Natick - J F Kennedy Middle School,01980305, 0.0, 10.0, 1.3, 6.8, 4.5, 0.0, 77.3, 46.4, 53.6, 0.0,22.700000000000003,5.6 +1,1,a-cure-i1,2019-20,Natick - Johnson,01980031, 0.0, 3.9, 1.3, 8.6, 7.3, 0.0, 78.9, 47.0, 53.0, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Natick - Lilja Elementary,01980035, 0.0, 12.3, 3.9, 7.7, 6.5, 0.0, 69.6, 52.9, 47.1, 0.0,30.400000000000006,4.0 +1,1,a-cure-i1,2019-20,Natick - Memorial,01980043, 0.0, 6.0, 1.5, 4.0, 6.9, 0.0, 81.6, 43.9, 56.1, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Natick - Natick High,01980505, 0.1, 8.1, 3.4, 6.5, 4.9, 0.1, 76.9, 49.1, 50.7, 0.2,23.099999999999994,4.5 +1,1,a-cure-i1,2019-20,Natick - Wilson Middle,01980310, 0.2, 8.0, 4.0, 4.3, 5.3, 0.1, 78.1, 47.5, 52.5, 0.0,21.900000000000006,0.6 +1,1,a-cure-i1,2019-20,Nauset - Nauset Regional High,06600505, 0.1, 2.8, 6.2, 3.6, 3.7, 0.1, 83.6, 54.7, 45.1, 0.2,16.400000000000006,3.9 +1,1,a-cure-i1,2019-20,Nauset - Nauset Regional Middle,06600305, 0.2, 2.1, 3.8, 7.2, 2.4, 0.0, 84.3, 51.0, 48.8, 0.2,15.700000000000003,1.9 +1,1,a-cure-i1,2019-20,Needham - Broadmeadow,01990005, 0.0, 9.7, 2.9, 7.5, 6.4, 0.0, 73.5, 50.0, 50.0, 0.0,26.5,4.0 +1,1,a-cure-i1,2019-20,Needham - High Rock School,01990410, 0.0, 5.2, 2.8, 8.6, 4.0, 0.0, 79.4, 50.9, 49.1, 0.0,20.599999999999994,2.9 +1,1,a-cure-i1,2019-20,Needham - John Eliot,01990020, 0.0, 17.2, 5.8, 7.8, 5.8, 0.0, 63.3, 47.1, 52.9, 0.0,36.7,0.0 +7.207920792079206,5,a-cure-i1,2019-20,Needham - Needham High,01990505, 0.1, 8.3, 2.1, 5.0, 4.6, 0.1, 79.8, 50.3, 49.6, 0.1,20.200000000000003,9.1 +3.275590551181102,3.28,a-cure-i1,2019-20,Needham - Newman Elementary,01990050, 0.0, 10.3, 4.2, 4.3, 6.5, 0.1, 74.6, 48.9, 51.1, 0.0,25.400000000000006,5.2 +4.779220779220781,4.78,a-cure-i1,2019-20,Needham - Pollard Middle,01990405, 0.0, 8.6, 2.2, 7.0, 5.3, 0.0, 76.9, 51.3, 48.6, 0.1,23.099999999999994,6.9 +1,1,a-cure-i1,2019-20,Needham - Sunita L. Williams Elementary,01990035, 0.2, 12.4, 3.5, 4.6, 6.6, 0.0, 72.8, 44.8, 55.2, 0.0,27.200000000000003,4.6 +7.586854460093898,5,a-cure-i1,2019-20,Needham - William Mitchell,01990040, 0.0, 8.3, 2.3, 5.0, 5.8, 0.0, 78.7, 49.8, 50.2, 0.0,21.299999999999997,10.1 +8.660377358490566,5,a-cure-i1,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.6, 2.8, 53.5, 22.8, 5.1, 0.0, 15.2, 48.9, 50.8, 0.3,84.8,45.9 +1,1,a-cure-i1,2019-20,New Bedford - Abraham Lincoln,02010095, 0.1, 1.3, 11.0, 36.6, 5.6, 0.1, 45.2, 49.2, 50.8, 0.0,54.8,2.8 +2.9814814814814814,2.98,a-cure-i1,2019-20,New Bedford - Alfred J Gomes,02010063, 0.9, 0.6, 14.7, 68.0, 2.3, 0.0, 13.6, 49.5, 50.5, 0.0,86.4,16.1 +1,1,a-cure-i1,2019-20,New Bedford - Betsey B Winslow,02010140, 0.4, 1.8, 8.8, 20.5, 7.0, 0.7, 60.8, 48.7, 51.3, 0.0,39.2,3.6 +1,1,a-cure-i1,2019-20,New Bedford - Carlos Pacheco,02010105, 0.3, 0.6, 17.9, 51.7, 3.6, 0.0, 25.8, 48.9, 51.1, 0.0,74.2,0.0 +3.5852842809364542,3.59,a-cure-i1,2019-20,New Bedford - Casimir Pulaski,02010123, 0.1, 0.9, 6.5, 16.8, 5.6, 0.0, 70.1, 45.7, 54.3, 0.0,29.900000000000006,6.7 +4.384839650145773,4.38,a-cure-i1,2019-20,New Bedford - Charles S Ashley,02010010, 0.0, 1.9, 3.4, 25.7, 3.4, 0.0, 65.7, 52.5, 47.5, 0.0,34.3,9.4 +4.1374321880651,4.14,a-cure-i1,2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 1.0, 0.7, 8.9, 36.9, 7.8, 0.0, 44.7, 49.8, 50.2, 0.0,55.3,14.3 +3.452282157676349,3.45,a-cure-i1,2019-20,New Bedford - Ellen R Hathaway,02010075, 0.3, 3.1, 14.3, 50.5, 3.7, 0.3, 27.7, 47.7, 52.3, 0.0,72.3,15.600000000000001 +1.5779092702169624,1.58,a-cure-i1,2019-20,New Bedford - Elwyn G Campbell,02010020, 0.0, 1.1, 9.0, 33.8, 6.8, 0.0, 49.3, 42.4, 57.6, 0.0,50.7,5.0 +2.700507614213198,2.7,a-cure-i1,2019-20,New Bedford - Hayden/McFadden,02010078, 0.8, 0.2, 14.0, 60.4, 3.3, 0.2, 21.2, 47.3, 52.7, 0.0,78.8,13.3 +1.7516688918558074,1.75,a-cure-i1,2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.3, 11.5, 59.7, 3.3, 0.0, 25.1, 49.7, 50.3, 0.0,74.9,8.2 +1,1,a-cure-i1,2019-20,New Bedford - James B Congdon,02010040, 0.0, 0.7, 14.8, 36.8, 7.6, 0.3, 39.9, 53.3, 46.7, 0.0,60.1,0.0 +1,1,a-cure-i1,2019-20,New Bedford - Jireh Swift,02010130, 0.0, 0.6, 8.3, 17.3, 6.5, 0.0, 67.3, 52.4, 47.6, 0.0,32.7,0.0 +3.25686591276252,3.26,a-cure-i1,2019-20,New Bedford - John Avery Parker,02010115, 0.4, 1.3, 16.1, 35.9, 8.1, 0.0, 38.1, 52.5, 47.5, 0.0,61.9,12.6 +1,1,a-cure-i1,2019-20,New Bedford - John B Devalles,02010050, 0.0, 0.3, 15.8, 47.6, 3.4, 0.0, 33.0, 53.8, 46.2, 0.0,67.0,4.6 +2.561014263074485,2.56,a-cure-i1,2019-20,New Bedford - Keith Middle School,02010405, 0.4, 1.4, 15.4, 38.3, 7.7, 0.0, 36.9, 45.3, 54.7, 0.0,63.1,10.1 +3.0760059612518633,3.08,a-cure-i1,2019-20,New Bedford - New Bedford High,02010505, 0.7, 1.0, 16.1, 44.4, 4.8, 0.2, 32.9, 48.4, 51.6, 0.0,67.1,12.9 +2.2325581395348837,2.23,a-cure-i1,2019-20,New Bedford - Normandin Middle School,02010410, 0.3, 0.9, 8.9, 36.6, 4.8, 0.0, 48.4, 46.5, 53.5, 0.0,51.6,7.2 +2.477299185098952,2.48,a-cure-i1,2019-20,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 20.1, 62.0, 3.8, 0.0, 14.1, 52.7, 47.3, 0.0,85.9,13.3 +3.5061728395061733,3.51,a-cure-i1,2019-20,New Bedford - Roosevelt Middle School,02010415, 0.2, 0.0, 15.6, 43.8, 4.8, 0.3, 35.2, 48.8, 51.2, 0.0,64.8,14.200000000000001 +1.749603803486529,1.75,a-cure-i1,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 0.1, 0.9, 18.2, 35.4, 8.4, 0.0, 36.9, 41.6, 58.4, 0.0,63.1,6.8999999999999995 +1,1,a-cure-i1,2019-20,New Bedford - Thomas R Rodman,02010125, 0.0, 1.6, 8.4, 34.6, 4.2, 0.0, 51.3, 44.0, 56.0, 0.0,48.7,0.0 +3.8832116788321174,3.88,a-cure-i1,2019-20,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 12.9, 32.3, 9.7, 0.0, 45.2, 44.1, 55.9, 0.0,54.8,13.3 +1.5561643835616437,1.56,a-cure-i1,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.8, 0.8, 23.8, 41.3, 6.3, 0.0, 27.0, 27.8, 72.2, 0.0,73.0,7.1 +1,1,a-cure-i1,2019-20,New Bedford - William H Taylor,02010135, 0.0, 0.4, 7.8, 16.7, 9.3, 0.0, 65.9, 48.1, 51.9, 0.0,34.099999999999994,0.0 +3.6459816887080363,3.65,a-cure-i1,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.2, 0.8, 88.7, 7.5, 1.2, 0.0, 1.7, 51.5, 48.5, 0.0,98.3,22.4 +1,1,a-cure-i1,2019-20,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 5.5, 9.0, 0.0, 85.5, 51.0, 49.0, 0.0,14.5,0.0 +1,1,a-cure-i1,2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.0, 1.0, 6.4, 0.3, 0.0, 91.2, 49.5, 50.5, 0.0,8.799999999999997,1.5 +1,1,a-cure-i1,2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.7, 0.5, 5.7, 2.2, 0.0, 89.9, 51.3, 48.7, 0.0,10.099999999999994,0.4 +1,1,a-cure-i1,2019-20,Newburyport - Newburyport High,02040505, 0.1, 2.3, 0.3, 3.5, 2.4, 0.0, 91.5, 52.8, 47.1, 0.1,8.5,0.0 +12.215053763440865,5,a-cure-i1,2019-20,Newburyport - Rupert A Nock Middle,02040305, 0.0, 2.8, 1.7, 2.4, 2.4, 0.0, 90.7, 48.7, 51.3, 0.0,9.299999999999997,7.1000000000000005 +5.770491803278689,5,a-cure-i1,2019-20,Newton - A E Angier,02070005, 0.0, 14.3, 2.6, 5.4, 8.2, 0.0, 69.5, 51.2, 48.8, 0.0,30.5,11.0 +4.151351351351352,4.15,a-cure-i1,2019-20,Newton - Bigelow Middle,02070305, 0.2, 16.0, 4.9, 9.3, 6.7, 0.0, 63.0, 54.7, 44.9, 0.4,37.0,9.6 +12.21505376344086,5,a-cure-i1,2019-20,Newton - Bowen,02070015, 0.0, 25.8, 5.4, 7.8, 7.5, 0.0, 53.5, 51.1, 48.9, 0.0,46.5,35.5 +12.387096774193546,5,a-cure-i1,2019-20,Newton - C C Burr,02070020, 0.3, 19.1, 5.2, 10.4, 8.5, 0.0, 56.6, 46.7, 53.3, 0.0,43.4,33.599999999999994 +3.9045092838196283,3.9,a-cure-i1,2019-20,Newton - Cabot,02070025, 0.0, 13.2, 5.3, 6.4, 12.2, 0.5, 62.3, 47.6, 52.4, 0.0,37.7,9.2 +1,1,a-cure-i1,2019-20,Newton - Charles E Brown Middle,02070310, 0.3, 21.2, 2.8, 5.3, 4.9, 0.0, 65.6, 48.7, 51.3, 0.0,34.400000000000006,4.0 +1,1,a-cure-i1,2019-20,Newton - Countryside,02070040, 0.0, 28.3, 5.3, 5.3, 7.7, 0.0, 53.3, 47.9, 52.1, 0.0,46.7,4.4 +1,1,a-cure-i1,2019-20,Newton - F A Day Middle,02070315, 0.2, 16.9, 4.3, 9.1, 6.3, 0.0, 63.2, 49.3, 50.7, 0.0,36.8,4.9 +4.48,4.48,a-cure-i1,2019-20,Newton - Franklin,02070055, 0.0, 11.9, 2.7, 8.0, 6.8, 0.7, 70.0, 56.7, 43.3, 0.0,30.0,8.4 +8.73913043478261,5,a-cure-i1,2019-20,Newton - Horace Mann,02070075, 0.0, 14.6, 4.1, 6.9, 11.3, 0.0, 63.2, 46.0, 54.0, 0.0,36.8,20.099999999999998 +1,1,a-cure-i1,2019-20,Newton - John Ward,02070120, 0.0, 12.5, 2.4, 4.3, 5.9, 0.0, 74.9, 49.0, 51.0, 0.0,25.099999999999994,3.5 +3.084745762711864,3.08,a-cure-i1,2019-20,Newton - Lincoln-Eliot,02070070, 0.0, 18.2, 7.2, 12.4, 9.4, 0.0, 52.8, 47.0, 52.8, 0.3,47.2,9.1 +1,1,a-cure-i1,2019-20,Newton - Mason-Rice,02070080, 0.0, 19.3, 0.7, 4.3, 7.6, 0.0, 68.2, 49.1, 50.9, 0.0,31.799999999999997,4.0 +3.0513447432762835,3.05,a-cure-i1,2019-20,Newton - Memorial Spaulding,02070105, 0.0, 23.2, 4.3, 8.0, 5.4, 0.0, 59.1, 51.0, 49.0, 0.0,40.9,7.8 +1,1,a-cure-i1,2019-20,Newton - Newton Early Childhood Center,02070108, 0.0, 34.3, 2.8, 3.9, 7.2, 0.0, 51.9, 40.3, 59.7, 0.0,48.1,0.0 +6.772486772486772,5,a-cure-i1,2019-20,Newton - Newton North High,02070505, 0.1, 14.7, 6.4, 9.6, 7.0, 0.0, 62.2, 48.4, 51.4, 0.1,37.8,15.999999999999998 +6.945736434108525,5,a-cure-i1,2019-20,Newton - Newton South High,02070510, 0.0, 21.7, 4.9, 6.3, 5.8, 0.0, 61.3, 47.7, 52.1, 0.2,38.7,16.799999999999997 +5.583138173302108,5,a-cure-i1,2019-20,Newton - Oak Hill Middle,02070320, 0.2, 26.4, 5.5, 4.9, 5.5, 0.2, 57.3, 44.8, 55.2, 0.0,42.7,14.9 +4.947630922693267,4.95,a-cure-i1,2019-20,Newton - Peirce,02070100, 0.0, 21.1, 3.9, 9.2, 6.0, 0.0, 59.9, 52.1, 47.9, 0.0,40.1,12.4 +2.264501160092807,2.26,a-cure-i1,2019-20,Newton - Underwood,02070115, 0.0, 18.2, 3.3, 13.4, 8.2, 0.0, 56.9, 51.7, 48.3, 0.0,43.1,6.1 +5.1332082551594755,5,a-cure-i1,2019-20,Newton - Williams,02070125, 0.4, 34.1, 5.0, 8.0, 5.7, 0.0, 46.7, 46.0, 54.0, 0.0,53.3,17.1 +3.508771929824561,3.51,a-cure-i1,2019-20,Newton - Zervas,02070130, 0.5, 22.4, 5.5, 6.9, 9.9, 0.5, 54.4, 50.0, 49.8, 0.2,45.6,10.0 +1,1,a-cure-i1,2019-20,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.2, 0.2, 3.6, 2.6, 0.0, 91.4, 45.5, 54.5, 0.0,8.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Norfolk - H Olive Day,02080015, 0.0, 2.2, 0.4, 1.8, 1.6, 0.0, 94.0, 49.4, 50.6, 0.0,6.0,0.0 +1,1,a-cure-i1,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.2, 1.5, 1.3, 2.0, 4.4, 0.4, 90.4, 70.6, 29.4, 0.0,9.599999999999994,0.0 +7.836734693877553,5,a-cure-i1,2019-20,North Adams - Brayton,02090035, 0.0, 0.8, 4.3, 7.8, 6.7, 0.0, 80.4, 43.5, 56.5, 0.0,19.599999999999994,9.6 +1,1,a-cure-i1,2019-20,North Adams - Colegrove Park Elementary,02090008, 0.6, 0.0, 2.6, 7.4, 8.0, 0.0, 81.4, 45.7, 54.3, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2019-20,North Adams - Drury High,02090505, 0.2, 0.6, 2.4, 5.0, 6.6, 0.4, 84.9, 52.4, 47.6, 0.0,15.099999999999994,2.2 +1,1,a-cure-i1,2019-20,North Adams - Greylock,02090015, 0.0, 0.8, 0.8, 7.2, 10.4, 0.4, 80.4, 52.0, 48.0, 0.0,19.599999999999994,0.0 +1,1,a-cure-i1,2019-20,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.2, 8.5, 0.9, 15.7, 1.8, 0.0, 72.9, 47.0, 53.0, 0.0,27.099999999999994,0.0 +1,1,a-cure-i1,2019-20,North Andover - Annie L Sargent School,02110018, 0.2, 8.9, 1.9, 5.5, 4.3, 0.0, 79.1, 48.9, 51.1, 0.0,20.900000000000006,0.0 +1,1,a-cure-i1,2019-20,North Andover - Atkinson,02110001, 0.3, 9.0, 5.8, 23.8, 2.9, 0.0, 58.1, 51.7, 48.3, 0.0,41.9,0.0 +1,1,a-cure-i1,2019-20,North Andover - Franklin,02110010, 0.3, 12.8, 3.3, 7.7, 3.8, 0.0, 72.1, 43.2, 56.8, 0.0,27.900000000000006,0.0 +1,1,a-cure-i1,2019-20,North Andover - Kittredge,02110015, 0.0, 3.4, 3.0, 10.7, 4.3, 0.4, 78.2, 43.2, 56.8, 0.0,21.799999999999997,0.0 +1,1,a-cure-i1,2019-20,North Andover - North Andover High,02110505, 0.0, 7.2, 3.5, 10.2, 1.9, 0.1, 77.1, 49.9, 50.1, 0.0,22.900000000000006,0.9 +1,1,a-cure-i1,2019-20,North Andover - North Andover Middle,02110305, 0.5, 8.2, 3.3, 12.4, 3.2, 0.0, 72.3, 52.0, 48.0, 0.0,27.700000000000003,0.0 +1,1,a-cure-i1,2019-20,North Andover - Thomson,02110020, 0.0, 5.9, 1.9, 15.0, 3.4, 0.0, 73.8, 52.5, 47.5, 0.0,26.200000000000003,0.0 +1,1,a-cure-i1,2019-20,North Attleborough - Amvet Boulevard,02120007, 0.5, 13.4, 5.5, 3.4, 4.2, 0.0, 72.9, 49.2, 50.8, 0.0,27.099999999999994,0.0 +1,1,a-cure-i1,2019-20,North Attleborough - Community,02120030, 0.0, 6.5, 11.9, 8.5, 8.2, 0.3, 64.5, 45.7, 54.3, 0.0,35.5,0.0 +1,1,a-cure-i1,2019-20,North Attleborough - Falls,02120010, 0.0, 6.6, 3.7, 3.3, 7.0, 0.0, 79.3, 47.9, 52.1, 0.0,20.700000000000003,0.0 +1,1,a-cure-i1,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 4.8, 3.3, 4.0, 2.8, 0.0, 85.1, 45.9, 54.1, 0.0,14.900000000000006,0.0 +1,1,a-cure-i1,2019-20,North Attleborough - North Attleboro High,02120505, 0.3, 6.9, 4.5, 4.7, 2.9, 0.2, 80.6, 48.1, 51.7, 0.2,19.400000000000006,2.8 +1,1,a-cure-i1,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 15.7, 3.1, 5.7, 4.4, 0.0, 71.1, 39.6, 60.4, 0.0,28.900000000000006,0.0 +1,1,a-cure-i1,2019-20,North Attleborough - North Attleborough Middle,02120305, 0.1, 5.4, 3.2, 5.5, 4.1, 0.2, 81.5, 53.1, 46.9, 0.0,18.5,1.5 +1,1,a-cure-i1,2019-20,North Attleborough - Roosevelt Avenue,02120015, 0.0, 8.6, 1.9, 4.8, 3.0, 0.0, 81.8, 51.7, 48.3, 0.0,18.200000000000003,4.3 +1,1,a-cure-i1,2019-20,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.3, 1.3, 5.4, 3.2, 0.0, 89.9, 46.4, 53.6, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2019-20,North Brookfield - North Brookfield High,02150505, 0.0, 1.3, 0.0, 6.1, 4.8, 0.0, 87.7, 48.2, 51.8, 0.0,12.299999999999997,0.0 +1,1,a-cure-i1,2019-20,North Middlesex - Ashby Elementary,07350010, 0.0, 0.6, 1.2, 7.9, 0.0, 0.0, 90.3, 41.2, 58.8, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2019-20,North Middlesex - Hawthorne Brook,07350030, 0.0, 2.2, 1.4, 3.4, 3.4, 0.0, 89.7, 46.5, 53.5, 0.0,10.299999999999997,0.0 +7.504424778761064,5,a-cure-i1,2019-20,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.5, 1.9, 4.6, 3.3, 0.0, 88.7, 47.4, 52.6, 0.0,11.299999999999997,5.3 +1,1,a-cure-i1,2019-20,North Middlesex - North Middlesex Regional,07350505, 0.2, 1.3, 1.0, 4.9, 3.7, 0.1, 88.7, 52.1, 47.9, 0.0,11.299999999999997,1.8 +1,1,a-cure-i1,2019-20,North Middlesex - Spaulding Memorial,07350005, 0.2, 2.0, 1.6, 6.1, 4.3, 0.0, 85.7, 53.2, 46.8, 0.0,14.299999999999997,0.0 +1,1,a-cure-i1,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 1.1, 7.4, 1.1, 0.0, 0.0, 90.4, 37.2, 62.8, 0.0,9.599999999999994,0.0 +1,1,a-cure-i1,2019-20,North Middlesex - Varnum Brook,07350035, 0.2, 0.9, 2.4, 6.1, 3.5, 0.0, 86.9, 47.2, 52.8, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2019-20,North Reading - E Ethel Little School,02170003, 0.0, 4.4, 1.2, 2.4, 4.4, 0.0, 87.6, 44.2, 55.8, 0.0,12.400000000000006,0.0 +1,1,a-cure-i1,2019-20,North Reading - J Turner Hood,02170010, 0.0, 5.6, 0.9, 5.6, 1.8, 0.3, 85.8, 47.6, 52.4, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2019-20,North Reading - L D Batchelder,02170005, 0.0, 4.1, 0.0, 5.2, 3.8, 0.0, 86.9, 43.9, 56.1, 0.0,13.099999999999994,0.0 +1,1,a-cure-i1,2019-20,North Reading - North Reading High,02170505, 0.1, 3.8, 0.7, 2.4, 2.4, 0.1, 90.4, 51.4, 48.6, 0.0,9.599999999999994,3.9 +1,1,a-cure-i1,2019-20,North Reading - North Reading Middle,02170305, 0.2, 5.2, 0.2, 4.9, 2.4, 0.0, 87.1, 52.8, 47.2, 0.0,12.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Northampton - Bridge Street,02100005, 0.4, 2.8, 3.2, 25.5, 8.5, 0.0, 59.6, 45.0, 55.0, 0.0,40.4,0.0 +2.397694524495677,2.4,a-cure-i1,2019-20,Northampton - Jackson Street,02100020, 0.0, 5.4, 4.8, 15.0, 9.6, 0.0, 65.3, 47.5, 52.5, 0.0,34.7,5.2 +1,1,a-cure-i1,2019-20,Northampton - John F Kennedy Middle School,02100410, 0.0, 3.1, 3.2, 17.5, 6.8, 0.0, 69.5, 51.8, 47.9, 0.3,30.5,0.0 +1,1,a-cure-i1,2019-20,Northampton - Leeds,02100025, 0.0, 0.9, 1.5, 16.6, 7.7, 0.0, 73.2, 43.4, 56.6, 0.0,26.799999999999997,0.0 +4.131147540983606,4.13,a-cure-i1,2019-20,Northampton - Northampton High,02100505, 0.2, 3.1, 2.5, 13.2, 5.4, 0.0, 75.6, 50.2, 49.8, 0.0,24.400000000000006,6.3 +1,1,a-cure-i1,2019-20,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 2.5, 3.8, 12.2, 4.2, 0.0, 77.2, 46.0, 53.2, 0.8,22.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.4, 1.4, 13.1, 1.6, 0.0, 83.5, 43.5, 56.5, 0.0,16.5,0.0 +1,1,a-cure-i1,2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 0.4, 11.4, 1.2, 5.7, 3.6, 0.4, 77.3, 50.7, 49.3, 0.0,22.700000000000003,1.6 +1,1,a-cure-i1,2019-20,Northborough - Fannie E Proctor,02130015, 0.0, 15.5, 2.3, 14.3, 3.8, 0.4, 63.8, 44.9, 55.1, 0.0,36.2,0.0 +1,1,a-cure-i1,2019-20,Northborough - Lincoln Street,02130003, 0.8, 9.6, 0.4, 1.2, 3.8, 1.2, 83.1, 49.2, 50.8, 0.0,16.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Northborough - Marguerite E Peaslee,02130014, 0.7, 14.1, 1.1, 9.3, 5.6, 0.0, 69.1, 45.4, 54.6, 0.0,30.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Northborough - Marion E Zeh,02130020, 0.0, 16.3, 1.2, 8.9, 2.0, 0.0, 71.5, 41.5, 58.5, 0.0,28.5,0.0 +1,1,a-cure-i1,2019-20,Northborough - Robert E. Melican Middle School,02130305, 0.0, 11.9, 2.6, 7.7, 4.0, 1.1, 72.8, 52.7, 47.3, 0.0,27.200000000000003,2.8 +1,1,a-cure-i1,2019-20,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.3, 6.9, 5.3, 0.0, 87.5, 44.7, 55.3, 0.0,12.5,0.0 +1,1,a-cure-i1,2019-20,Northbridge - Northbridge High,02140505, 0.0, 1.1, 0.9, 6.3, 3.7, 0.2, 87.7, 47.0, 53.0, 0.0,12.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Northbridge - Northbridge Middle,02140305, 0.0, 0.7, 1.3, 7.8, 5.5, 0.1, 84.5, 51.0, 49.0, 0.0,15.5,2.3 +1,1,a-cure-i1,2019-20,Northbridge - W Edward Balmer,02140001, 0.2, 1.2, 0.0, 9.1, 4.9, 0.0, 84.5, 49.9, 50.1, 0.0,15.5,0.0 +1,1,a-cure-i1,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.1, 0.6, 2.6, 34.9, 1.9, 0.2, 59.7, 45.5, 54.5, 0.0,40.3,4.199999999999999 +1,1,a-cure-i1,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.4, 0.6, 1.4, 2.6, 0.0, 95.1, 39.8, 60.2, 0.0,4.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Norton - Henri A. Yelle,02180060, 0.6, 1.1, 1.7, 4.5, 5.3, 0.3, 86.5, 48.9, 51.1, 0.0,13.5,0.0 +1,1,a-cure-i1,2019-20,Norton - J C Solmonese,02180015, 0.2, 0.8, 1.0, 3.6, 5.6, 0.0, 88.8, 50.5, 49.5, 0.0,11.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Norton - L G Nourse Elementary,02180010, 0.0, 2.6, 3.7, 7.4, 2.6, 0.0, 83.8, 50.0, 50.0, 0.0,16.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Norton - Norton High,02180505, 0.0, 2.4, 1.6, 3.6, 1.7, 0.3, 90.5, 49.7, 50.3, 0.0,9.5,4.5 +1,1,a-cure-i1,2019-20,Norton - Norton Middle,02180305, 0.2, 2.5, 1.8, 3.8, 4.7, 0.0, 87.0, 51.0, 49.0, 0.0,13.0,0.0 +1,1,a-cure-i1,2019-20,Norwell - Grace Farrar Cole,02190005, 0.0, 2.2, 0.4, 1.0, 4.5, 0.0, 91.8, 45.9, 54.1, 0.0,8.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Norwell - Norwell High,02190505, 0.0, 2.4, 0.7, 2.1, 1.6, 0.3, 92.9, 55.8, 44.2, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Norwell - Norwell Middle School,02190405, 0.2, 2.3, 0.0, 1.2, 2.3, 0.2, 93.8, 43.0, 57.0, 0.0,6.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Norwell - William G Vinal,02190020, 0.0, 1.7, 0.0, 1.3, 3.6, 0.2, 93.3, 46.6, 53.4, 0.0,6.700000000000003,3.7 +2.694736842105263,2.69,a-cure-i1,2019-20,Norwood - Balch,02200005, 0.0, 5.1, 12.3, 36.4, 1.6, 1.6, 43.0, 51.6, 48.4, 0.0,57.0,9.6 +1,1,a-cure-i1,2019-20,Norwood - Charles J Prescott,02200025, 0.4, 31.8, 4.6, 11.9, 1.5, 1.1, 48.7, 49.8, 50.2, 0.0,51.3,3.4 +1,1,a-cure-i1,2019-20,Norwood - Cornelius M Callahan,02200010, 0.0, 5.3, 13.8, 8.4, 5.3, 0.0, 67.1, 48.0, 52.0, 0.0,32.900000000000006,3.4 +1,1,a-cure-i1,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 5.7, 12.1, 14.4, 2.8, 0.3, 64.7, 50.6, 49.4, 0.0,35.3,0.0 +1,1,a-cure-i1,2019-20,Norwood - F A Cleveland,02200015, 0.0, 7.5, 5.4, 9.9, 3.6, 0.3, 73.4, 42.5, 57.5, 0.0,26.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Norwood - George F. Willett,02200075, 0.0, 13.3, 6.9, 12.3, 1.5, 1.5, 64.4, 45.9, 54.1, 0.0,35.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Norwood - John P Oldham,02200020, 0.0, 7.6, 16.3, 10.8, 1.6, 0.0, 63.7, 51.4, 48.6, 0.0,36.3,0.0 +2.612244897959184,2.61,a-cure-i1,2019-20,Norwood - Norwood High,02200505, 0.0, 5.0, 12.8, 14.1, 2.3, 0.1, 65.7, 49.9, 49.9, 0.1,34.3,5.6 +2.1590361445783133,2.16,a-cure-i1,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.2, 1.6, 3.5, 28.9, 6.3, 0.0, 58.5, 50.5, 49.5, 0.0,41.5,5.6 +1,1,a-cure-i1,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.2, 0.9, 1.1, 2.3, 2.5, 0.0, 93.0, 35.4, 64.4, 0.2,7.0,2.2 +1,1,a-cure-i1,2019-20,Old Rochester - Old Rochester Regional High,07400505, 0.1, 1.5, 2.5, 2.1, 3.9, 0.0, 89.9, 49.1, 50.9, 0.0,10.099999999999994,2.2 +1,1,a-cure-i1,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 1.4, 2.1, 4.0, 5.6, 0.0, 87.0, 46.3, 53.7, 0.0,13.0,0.0 +12.982857142857142,5,a-cure-i1,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 1.3, 5.4, 10.4, 0.4, 0.0, 82.5, 49.6, 50.4, 0.0,17.5,14.2 +1,1,a-cure-i1,2019-20,Orange - Dexter Park,02230010, 0.0, 0.7, 2.0, 9.0, 3.3, 0.0, 85.0, 49.7, 50.3, 0.0,15.0,0.0 +1,1,a-cure-i1,2019-20,Orange - Fisher Hill,02230015, 0.4, 0.4, 0.9, 7.7, 4.7, 0.0, 85.9, 47.4, 52.6, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Orleans - Orleans Elementary,02240005, 0.5, 1.0, 5.1, 9.1, 3.0, 0.0, 81.2, 52.8, 47.2, 0.0,18.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Oxford - ACE Program,02260305, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 75.0, 0.0, 100.0, 0.0,25.0,0.0 +1,1,a-cure-i1,2019-20,Oxford - Alfred M Chaffee,02260010, 0.4, 0.8, 0.8, 15.0, 4.6, 0.0, 78.5, 51.5, 48.5, 0.0,21.5,0.0 +1,1,a-cure-i1,2019-20,Oxford - Clara Barton,02260005, 0.0, 0.0, 2.4, 11.3, 5.0, 0.0, 81.3, 47.5, 52.5, 0.0,18.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Oxford - Oxford High,02260505, 0.2, 2.0, 2.0, 11.7, 4.5, 0.4, 79.2, 53.0, 46.8, 0.2,20.799999999999997,2.4 +1,1,a-cure-i1,2019-20,Oxford - Oxford Middle,02260405, 0.0, 0.8, 1.8, 12.7, 4.7, 0.0, 80.1, 46.0, 54.0, 0.0,19.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Palmer - Old Mill Pond,02270008, 0.0, 3.0, 3.0, 14.0, 4.8, 0.0, 75.2, 50.9, 49.1, 0.0,24.799999999999997,0.0 +4.266666666666667,4.27,a-cure-i1,2019-20,Palmer - Palmer High,02270505, 0.3, 2.4, 2.6, 10.6, 5.1, 0.0, 79.0, 47.9, 52.1, 0.0,21.0,5.6 +1,1,a-cure-i1,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.2, 0.3, 1.1, 4.6, 3.0, 0.0, 90.7, 39.0, 60.5, 0.5,9.299999999999997,0.0 +5.435793731041456,5,a-cure-i1,2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 6.5, 92.1, 0.4, 0.0, 1.1, 55.0, 45.0, 0.0,98.9,33.6 +1,1,a-cure-i1,2019-20,Peabody - Captain Samuel Brown,02290005, 0.0, 1.4, 3.1, 14.0, 2.2, 0.3, 78.9, 44.4, 55.3, 0.3,21.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Peabody - Center,02290015, 0.0, 3.1, 7.3, 17.7, 2.1, 0.0, 69.7, 51.8, 48.2, 0.0,30.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Peabody - J Henry Higgins Middle,02290305, 0.0, 1.8, 3.6, 15.9, 2.1, 0.1, 76.6, 49.3, 50.7, 0.0,23.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Peabody - John E Burke,02290007, 0.0, 1.2, 0.4, 7.4, 1.6, 0.0, 89.5, 53.3, 46.7, 0.0,10.5,0.0 +1,1,a-cure-i1,2019-20,Peabody - John E. McCarthy,02290016, 0.0, 3.4, 3.4, 8.6, 2.3, 0.0, 82.3, 47.1, 52.9, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 2.1, 3.7, 18.7, 1.7, 0.0, 73.7, 47.2, 52.7, 0.1,26.299999999999997,2.6 +1,1,a-cure-i1,2019-20,Peabody - South Memorial,02290035, 0.0, 2.7, 1.6, 10.7, 2.2, 0.0, 82.8, 54.1, 45.9, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Peabody - Thomas Carroll,02290010, 0.0, 1.0, 4.8, 22.5, 1.2, 0.0, 70.5, 51.6, 48.4, 0.0,29.5,0.0 +1,1,a-cure-i1,2019-20,Peabody - West Memorial,02290045, 0.4, 2.3, 1.1, 3.4, 1.5, 0.0, 91.3, 47.0, 53.0, 0.0,8.700000000000003,0.0 +2.024330900243309,2.02,a-cure-i1,2019-20,Peabody - William A Welch Sr,02290027, 0.0, 1.3, 4.1, 33.4, 2.3, 0.0, 58.9, 49.0, 50.8, 0.3,41.1,5.2 +7.222222222222223,5,a-cure-i1,2019-20,Pelham - Pelham Elementary,02300005, 0.0, 4.8, 3.2, 13.6, 7.2, 0.0, 71.2, 44.8, 55.2, 0.0,28.799999999999997,13.0 +1,1,a-cure-i1,2019-20,Pembroke - Bryantville Elementary,02310003, 0.2, 0.2, 0.2, 0.8, 4.5, 0.0, 94.0, 48.5, 51.3, 0.2,6.0,0.0 +1,1,a-cure-i1,2019-20,Pembroke - Hobomock Elementary,02310010, 0.0, 1.2, 0.5, 0.7, 1.7, 0.0, 95.8, 43.1, 56.7, 0.2,4.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Pembroke - North Pembroke Elementary,02310015, 0.2, 0.9, 0.5, 1.4, 2.5, 0.0, 94.5, 48.8, 51.1, 0.2,5.5,0.0 +1,1,a-cure-i1,2019-20,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.9, 0.2, 1.1, 0.7, 0.2, 96.9, 45.2, 54.8, 0.0,3.0999999999999943,0.0 +1,1,a-cure-i1,2019-20,Pembroke - Pembroke High School,02310505, 0.0, 1.7, 0.7, 1.3, 0.9, 0.1, 95.2, 51.8, 48.0, 0.1,4.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.5, 13.6, 3.2, 0.0, 82.8, 48.4, 51.6, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Pentucket - Dr John C Page School,07450015, 0.0, 2.2, 0.6, 2.8, 2.2, 0.0, 92.3, 46.0, 54.0, 0.0,7.700000000000003,1.4 +1,1,a-cure-i1,2019-20,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.6, 5.6, 3.9, 0.0, 89.9, 45.7, 54.1, 0.2,10.099999999999994,0.9 +1,1,a-cure-i1,2019-20,Pentucket - Helen R Donaghue School,07450010, 0.4, 0.0, 0.0, 7.0, 3.9, 0.0, 88.6, 44.5, 55.5, 0.0,11.400000000000006,1.9 +1,1,a-cure-i1,2019-20,Pentucket - Pentucket Regional Middle,07450405, 0.0, 1.0, 0.5, 4.6, 1.3, 0.0, 92.6, 51.9, 48.1, 0.0,7.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 2.3, 0.8, 3.2, 1.2, 0.0, 92.5, 46.0, 54.0, 0.0,7.5,2.6 +1,1,a-cure-i1,2019-20,Petersham - Petersham Center,02340005, 0.0, 1.5, 0.0, 5.3, 4.6, 0.0, 88.5, 55.0, 45.0, 0.0,11.5,0.0 +6.3966942148760335,5,a-cure-i1,2019-20,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 35.5, 64.5, 0.0,96.8,38.7 +9.58968850698174,5,a-cure-i1,2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 1.1, 0.5, 12.8, 76.6, 2.1, 0.0, 6.9, 54.3, 45.7, 0.0,93.1,55.8 +7.702479338842974,5,a-cure-i1,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 1.4, 0.0, 10.6, 84.7, 0.0, 0.0, 3.2, 50.9, 49.1, 0.0,96.8,46.599999999999994 +3.0928462709284625,3.09,a-cure-i1,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.8, 7.4, 24.8, 30.0, 1.6, 0.0, 34.3, 51.5, 48.5, 0.0,65.7,12.7 +7.137789904502047,5,a-cure-i1,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.3, 11.9, 35.6, 23.9, 1.7, 0.0, 26.7, 53.6, 46.4, 0.0,73.3,32.7 +1,1,a-cure-i1,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 1.6, 1.6, 0.5, 96.2, 56.5, 43.5, 0.0,3.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 1.2, 3.5, 0.0, 95.4, 45.7, 54.3, 0.0,4.599999999999994,0.0 +16.62337662337662,5,a-cure-i1,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 1.0, 1.3, 2.0, 3.4, 0.0, 92.3, 52.0, 48.0, 0.0,7.700000000000003,8.0 +1,1,a-cure-i1,2019-20,Pioneer Valley - Warwick Community School,07500009, 0.0, 6.7, 0.0, 2.2, 0.0, 0.0, 91.1, 44.4, 55.6, 0.0,8.900000000000006,0.0 +15.443762781186095,5,a-cure-i1,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 19.3, 9.3, 7.4, 12.8, 0.2, 51.1, 51.5, 48.1, 0.4,48.9,47.2 +7.361702127659575,5,a-cure-i1,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 1.8, 9.1, 18.9, 7.6, 0.3, 62.4, 67.4, 32.1, 0.5,37.6,17.3 +1,1,a-cure-i1,2019-20,Pittsfield - Allendale,02360010, 0.3, 2.2, 9.8, 16.7, 11.4, 0.0, 59.6, 52.4, 47.6, 0.0,40.4,4.7 +1,1,a-cure-i1,2019-20,Pittsfield - Crosby,02360065, 1.0, 0.3, 13.1, 24.9, 12.9, 0.0, 47.8, 42.4, 57.6, 0.0,52.2,3.1 +2.7675675675675677,2.77,a-cure-i1,2019-20,Pittsfield - Egremont,02360035, 0.0, 1.6, 7.8, 17.7, 9.9, 0.0, 63.0, 48.5, 51.5, 0.0,37.0,6.4 +1,1,a-cure-i1,2019-20,Pittsfield - John T Reid Middle,02360305, 0.4, 0.8, 13.1, 11.8, 9.7, 0.0, 64.2, 49.0, 51.0, 0.0,35.8,3.7 +1,1,a-cure-i1,2019-20,Pittsfield - Morningside Community School,02360055, 0.3, 0.0, 12.8, 28.8, 15.8, 0.0, 42.4, 51.1, 48.9, 0.0,57.6,0.0 +4.37299035369775,4.37,a-cure-i1,2019-20,Pittsfield - Pittsfield High,02360505, 0.1, 2.1, 10.9, 13.4, 4.6, 0.0, 68.9, 49.3, 50.7, 0.0,31.099999999999994,8.5 +1,1,a-cure-i1,2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.5, 1.0, 3.1, 6.2, 10.9, 0.0, 78.2, 50.8, 49.2, 0.0,21.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Pittsfield - Silvio O Conte Community,02360105, 0.3, 0.6, 19.7, 25.9, 15.3, 0.0, 38.2, 48.5, 51.5, 0.0,61.8,3.4 +1,1,a-cure-i1,2019-20,Pittsfield - Stearns,02360090, 0.4, 0.9, 2.6, 8.3, 8.3, 0.0, 79.6, 43.0, 57.0, 0.0,20.400000000000006,0.0 +4.208219178082191,4.21,a-cure-i1,2019-20,Pittsfield - Taconic High,02360510, 0.1, 1.1, 14.0, 12.4, 8.9, 0.0, 63.5, 49.6, 50.2, 0.1,36.5,9.6 +3.790769230769231,3.79,a-cure-i1,2019-20,Pittsfield - Theodore Herberg Middle,02360310, 0.2, 1.5, 10.6, 13.9, 6.3, 0.0, 67.5, 50.6, 49.4, 0.0,32.5,7.7 +1,1,a-cure-i1,2019-20,Pittsfield - Williams,02360100, 0.0, 4.3, 7.6, 7.6, 5.4, 0.7, 74.3, 48.6, 51.4, 0.0,25.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Plainville - Anna Ware Jackson,02380010, 0.0, 4.1, 4.8, 6.4, 3.3, 0.0, 81.4, 47.5, 52.5, 0.0,18.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Plainville - Beatrice H Wood Elementary,02380005, 0.3, 3.4, 3.8, 10.0, 2.4, 0.0, 80.0, 50.3, 49.7, 0.0,20.0,0.0 +1,1,a-cure-i1,2019-20,Plymouth - Cold Spring,02390005, 0.0, 3.3, 2.4, 12.4, 3.3, 0.0, 78.5, 53.1, 46.9, 0.0,21.5,0.0 +1,1,a-cure-i1,2019-20,Plymouth - Federal Furnace School,02390011, 0.0, 0.8, 6.4, 6.7, 5.8, 0.0, 80.2, 50.1, 49.9, 0.0,19.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Plymouth - Hedge,02390010, 0.0, 2.3, 2.9, 25.3, 7.5, 0.0, 62.1, 44.8, 55.2, 0.0,37.9,0.0 +1,1,a-cure-i1,2019-20,Plymouth - Indian Brook,02390012, 0.0, 0.4, 1.1, 3.3, 4.4, 0.0, 90.9, 49.7, 50.3, 0.0,9.099999999999994,3.1 +1,1,a-cure-i1,2019-20,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 1.1, 2.6, 4.4, 0.0, 92.0, 50.4, 49.6, 0.0,8.0,0.0 +1,1,a-cure-i1,2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 0.2, 0.9, 0.9, 6.7, 5.8, 0.0, 85.6, 48.3, 51.7, 0.0,14.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 0.1, 1.5, 2.7, 8.9, 4.4, 0.1, 82.3, 50.0, 50.0, 0.0,17.700000000000003,3.8 +1,1,a-cure-i1,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.5, 1.6, 2.1, 5.3, 4.2, 0.0, 86.2, 41.8, 58.2, 0.0,13.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Plymouth - Plymouth North High,02390505, 0.2, 1.7, 2.6, 6.7, 4.2, 0.0, 84.7, 47.7, 52.3, 0.0,15.299999999999997,1.1 +1,1,a-cure-i1,2019-20,Plymouth - Plymouth South High,02390515, 0.3, 1.0, 1.1, 3.2, 3.4, 0.0, 90.8, 46.9, 53.1, 0.0,9.200000000000003,2.5 +1,1,a-cure-i1,2019-20,Plymouth - Plymouth South Middle,02390305, 0.3, 0.4, 1.0, 3.3, 3.0, 0.0, 92.0, 47.1, 52.9, 0.0,8.0,2.4 +1,1,a-cure-i1,2019-20,Plymouth - South Elementary,02390046, 0.6, 0.5, 1.6, 4.8, 5.9, 0.2, 86.4, 44.9, 55.1, 0.0,13.599999999999994,2.6 +1,1,a-cure-i1,2019-20,Plymouth - West Elementary,02390047, 0.0, 1.1, 3.4, 5.7, 6.6, 0.0, 83.0, 47.1, 52.9, 0.0,17.0,3.6 +1,1,a-cure-i1,2019-20,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.4, 0.9, 0.5, 97.3, 46.8, 53.2, 0.0,2.700000000000003,0.0 +5.076746849942726,5,a-cure-i1,2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.3, 7.9, 55.5, 20.1, 3.3, 0.2, 12.7, 49.9, 50.1, 0.0,87.3,27.7 +2.0634920634920637,2.06,a-cure-i1,2019-20,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 26.0, 16.0, 8.4, 0.0, 49.6, 57.3, 42.7, 0.0,50.4,6.5 +1,1,a-cure-i1,2019-20,Quabbin - Hardwick Elementary,07530005, 1.0, 0.0, 0.0, 11.3, 1.0, 0.0, 86.7, 40.9, 59.1, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Quabbin - Hubbardston Center,07530010, 0.0, 1.3, 0.3, 4.5, 1.0, 0.0, 92.9, 50.5, 49.5, 0.0,7.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 2.2, 6.5, 2.2, 0.0, 89.1, 50.0, 50.0, 0.0,10.900000000000006,0.0 +22.970297029702984,5,a-cure-i1,2019-20,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.7, 8.1, 1.3, 0.0, 89.9, 57.7, 42.3, 0.0,10.099999999999994,14.5 +1,1,a-cure-i1,2019-20,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.0, 1.0, 3.9, 2.4, 0.0, 91.8, 53.0, 47.0, 0.0,8.200000000000003,4.5 +1,1,a-cure-i1,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0.3, 1.6, 1.4, 5.2, 1.4, 0.0, 90.2, 51.9, 48.1, 0.0,9.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Quabbin - Ruggles Lane,07530030, 0.0, 0.9, 1.3, 5.1, 2.4, 0.4, 89.9, 44.7, 55.3, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.3, 0.6, 7.1, 3.1, 0.0, 88.9, 50.9, 48.9, 0.3,11.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 1.1, 5.0, 4.4, 0.0, 89.4, 46.1, 53.9, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.2, 1.0, 8.4, 6.0, 0.0, 84.4, 49.4, 50.6, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.4, 0.0, 6.8, 3.2, 0.0, 89.7, 47.0, 53.0, 0.0,10.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.5, 41.5, 8.7, 9.8, 5.5, 0.0, 33.9, 40.4, 59.6, 0.0,66.1,0.0 +1,1,a-cure-i1,2019-20,Quincy - Atherton Hough,02430040, 0.0, 16.2, 4.0, 6.5, 2.9, 0.0, 70.5, 43.9, 56.1, 0.0,29.5,0.9 +2.211180124223602,2.21,a-cure-i1,2019-20,Quincy - Atlantic Middle,02430305, 0.0, 54.1, 3.5, 3.7, 2.5, 0.5, 35.6, 47.1, 52.9, 0.0,64.4,8.9 +1,1,a-cure-i1,2019-20,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 50.3, 2.5, 2.0, 1.4, 0.3, 43.5, 52.0, 48.0, 0.0,56.5,4.5 +1,1,a-cure-i1,2019-20,Quincy - Broad Meadows Middle,02430310, 0.6, 15.9, 9.9, 8.5, 2.3, 0.0, 62.8, 47.4, 52.6, 0.0,37.2,1.4 +1,1,a-cure-i1,2019-20,Quincy - Central Middle,02430315, 0.0, 42.2, 2.6, 3.7, 3.0, 0.8, 47.8, 52.4, 47.6, 0.0,52.2,0.0 +1,1,a-cure-i1,2019-20,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 30.1, 3.3, 5.1, 6.3, 0.3, 55.1, 50.0, 50.0, 0.0,44.9,0.0 +1,1,a-cure-i1,2019-20,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 42.6, 15.3, 11.4, 0.9, 0.0, 29.8, 53.5, 46.5, 0.0,70.2,0.0 +5.171503957783641,5,a-cure-i1,2019-20,Quincy - Francis W Parker,02430075, 0.0, 62.4, 5.6, 5.6, 1.9, 0.3, 24.2, 40.7, 59.3, 0.0,75.8,24.5 +1,1,a-cure-i1,2019-20,Quincy - Lincoln-Hancock Community School,02430035, 0.9, 36.2, 10.7, 8.8, 5.8, 0.4, 37.1, 50.1, 49.9, 0.0,62.9,3.3 +2.0594059405940595,2.06,a-cure-i1,2019-20,Quincy - Merrymount,02430060, 0.3, 26.1, 4.9, 5.7, 2.6, 0.9, 59.6, 48.1, 51.9, 0.0,40.4,5.2 +1.431578947368421,1.43,a-cure-i1,2019-20,Quincy - Montclair,02430065, 0.0, 64.2, 2.7, 6.1, 2.9, 0.0, 24.0, 51.7, 48.3, 0.0,76.0,6.8 +2.804878048780488,2.8,a-cure-i1,2019-20,Quincy - North Quincy High,02430510, 0.2, 55.6, 3.6, 4.1, 2.0, 0.1, 34.4, 47.9, 52.1, 0.1,65.6,11.5 +1,1,a-cure-i1,2019-20,Quincy - Point Webster Middle,02430325, 0.0, 39.7, 13.6, 12.1, 4.7, 1.2, 28.7, 47.7, 52.3, 0.0,71.3,3.2 +2.7061310782241015,2.71,a-cure-i1,2019-20,Quincy - Quincy High,02430505, 0.3, 23.3, 11.5, 8.4, 3.6, 0.3, 52.7, 49.4, 50.6, 0.1,47.3,8.0 +1,1,a-cure-i1,2019-20,Quincy - Snug Harbor Community School,02430090, 0.2, 37.6, 8.4, 14.9, 5.9, 0.0, 32.9, 42.6, 57.4, 0.0,67.1,0.6 +1,1,a-cure-i1,2019-20,Quincy - South West Middle School,02430320, 0.3, 27.8, 12.0, 12.2, 5.4, 0.5, 41.8, 39.3, 60.7, 0.0,58.2,0.0 +1,1,a-cure-i1,2019-20,Quincy - Squantum,02430095, 0.3, 30.0, 4.7, 3.0, 2.5, 0.0, 59.5, 48.5, 51.5, 0.0,40.5,0.0 +1,1,a-cure-i1,2019-20,Quincy - Wollaston School,02430110, 0.0, 60.8, 1.5, 1.7, 2.3, 0.6, 33.1, 50.6, 49.4, 0.0,66.9,0.0 +5.211428571428571,5,a-cure-i1,2019-20,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.3, 1.6, 2.4, 8.6, 4.5, 0.2, 82.5, 47.5, 52.5, 0.0,17.5,5.699999999999999 +1.02291917973462,1.02,a-cure-i1,2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 0.3, 10.2, 50.7, 12.8, 8.9, 0.0, 17.1, 44.7, 55.3, 0.0,82.9,5.3 +1.1021814006888635,1.1,a-cure-i1,2019-20,Randolph - J F Kennedy Elementary,02440018, 0.2, 14.8, 51.2, 14.3, 6.4, 0.2, 12.9, 46.2, 53.8, 0.0,87.1,6.0 +3.152348224513173,3.15,a-cure-i1,2019-20,Randolph - Margaret L Donovan,02440015, 0.5, 23.8, 47.1, 13.6, 2.5, 0.0, 12.7, 49.1, 50.9, 0.0,87.3,17.2 +0.9799554565701559,1,a-cure-i1,2019-20,Randolph - Martin E Young Elementary,02440040, 1.1, 13.3, 40.9, 28.4, 6.1, 0.0, 10.2, 44.3, 55.7, 0.0,89.8,5.5 +4.716763005780347,4.72,a-cure-i1,2019-20,Randolph - Randolph Community Middle,02440410, 0.2, 16.9, 47.9, 17.0, 4.3, 0.2, 13.5, 46.6, 53.4, 0.0,86.5,25.500000000000004 +3.860262008733625,3.86,a-cure-i1,2019-20,Randolph - Randolph High,02440505, 0.0, 18.8, 55.1, 13.7, 3.5, 0.5, 8.4, 41.8, 58.2, 0.0,91.6,22.1 +1,1,a-cure-i1,2019-20,Reading - Alice M Barrows,02460002, 0.0, 3.9, 1.3, 2.6, 2.9, 0.0, 89.4, 49.4, 50.6, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Reading - Arthur W Coolidge Middle,02460305, 0.0, 2.6, 1.9, 1.7, 2.6, 0.2, 91.0, 46.2, 53.8, 0.0,9.0,3.5 +1,1,a-cure-i1,2019-20,Reading - Birch Meadow,02460005, 0.0, 3.9, 2.1, 3.1, 1.8, 0.0, 89.1, 44.5, 55.5, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Reading - J Warren Killam,02460017, 0.0, 7.0, 1.9, 2.7, 1.4, 0.0, 87.0, 45.1, 54.9, 0.0,13.0,0.0 +1,1,a-cure-i1,2019-20,Reading - Joshua Eaton,02460010, 0.2, 8.2, 3.2, 5.4, 5.4, 0.0, 77.5, 50.0, 50.0, 0.0,22.5,4.8 +1,1,a-cure-i1,2019-20,Reading - Reading Memorial High,02460505, 0.2, 5.4, 2.2, 2.4, 1.6, 0.0, 88.2, 49.8, 50.1, 0.2,11.799999999999997,2.7 +1,1,a-cure-i1,2019-20,Reading - RISE PreSchool,02460001, 0.0, 3.8, 1.0, 3.8, 4.8, 0.0, 86.7, 36.2, 63.8, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Reading - Walter S Parker Middle,02460310, 0.2, 7.0, 4.0, 4.6, 2.2, 0.0, 82.0, 49.2, 50.8, 0.0,18.0,2.7 +1,1,a-cure-i1,2019-20,Reading - Wood End Elementary School,02460020, 0.0, 3.3, 2.6, 2.6, 3.6, 0.0, 87.8, 49.0, 51.0, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Revere - A. C. Whelan Elementary School,02480003, 0.0, 4.3, 2.5, 48.5, 2.0, 0.1, 42.6, 46.3, 53.7, 0.0,57.4,0.0 +1,1,a-cure-i1,2019-20,Revere - Abraham Lincoln,02480025, 0.2, 3.5, 4.0, 50.5, 1.3, 0.0, 40.5, 47.6, 52.4, 0.0,59.5,0.0 +1,1,a-cure-i1,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 0.3, 2.9, 3.4, 52.3, 1.1, 0.0, 40.0, 41.4, 58.6, 0.0,60.0,0.0 +1,1,a-cure-i1,2019-20,Revere - Garfield Elementary School,02480056, 0.1, 5.2, 2.7, 66.5, 2.2, 0.0, 23.2, 48.4, 51.4, 0.1,76.8,0.0 +2.1872213967310548,2.19,a-cure-i1,2019-20,Revere - Garfield Middle School,02480057, 0.2, 4.5, 3.7, 57.8, 1.2, 0.0, 32.7, 47.9, 52.1, 0.0,67.3,9.2 +1,1,a-cure-i1,2019-20,Revere - Paul Revere,02480050, 0.2, 5.6, 2.6, 49.5, 2.4, 0.0, 39.7, 52.1, 47.9, 0.0,60.3,0.0 +3.250720461095101,3.25,a-cure-i1,2019-20,Revere - Revere High,02480505, 0.7, 5.5, 3.6, 57.6, 2.0, 0.0, 30.6, 48.7, 51.1, 0.1,69.4,14.100000000000001 +1,1,a-cure-i1,2019-20,Revere - Rumney Marsh Academy,02480014, 0.3, 5.0, 4.0, 54.7, 3.4, 0.0, 32.6, 46.6, 53.4, 0.0,67.4,4.4 +1,1,a-cure-i1,2019-20,Revere - Seacoast School,02480520, 0.0, 0.0, 3.1, 61.5, 1.5, 0.0, 33.8, 36.9, 63.1, 0.0,66.2,0.0 +1,1,a-cure-i1,2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.1, 4.2, 2.4, 66.5, 1.9, 0.0, 24.9, 50.7, 49.3, 0.0,75.1,0.0 +1,1,a-cure-i1,2019-20,Revere - Susan B. Anthony Middle School,02480305, 0.0, 2.3, 3.2, 63.8, 0.8, 0.0, 30.0, 54.8, 45.2, 0.0,70.0,0.0 +1,1,a-cure-i1,2019-20,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.2, 7.6, 5.8, 0.0, 85.4, 48.5, 51.5, 0.0,14.599999999999994,0.0 +15.999999999999996,5,a-cure-i1,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 1.1, 1.5, 0.9, 3.7, 6.5, 0.0, 86.3, 51.4, 48.6, 0.0,13.700000000000003,13.7 +1,1,a-cure-i1,2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 2.8, 0.7, 4.9, 3.8, 0.0, 87.5, 55.6, 44.1, 0.3,12.5,0.0 +1,1,a-cure-i1,2019-20,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.4, 2.4, 4.9, 0.2, 92.1, 48.1, 51.9, 0.0,7.900000000000006,3.3 +1,1,a-cure-i1,2019-20,Rockland - Jefferson Elementary School,02510060, 0.0, 2.6, 6.2, 16.1, 5.1, 0.0, 70.0, 50.9, 49.1, 0.0,30.0,0.0 +1,1,a-cure-i1,2019-20,Rockland - John W Rogers Middle,02510305, 0.0, 1.2, 6.8, 16.9, 3.5, 0.0, 71.5, 49.8, 50.2, 0.0,28.5,0.0 +1,1,a-cure-i1,2019-20,Rockland - Memorial Park,02510020, 0.0, 0.3, 4.5, 20.3, 5.2, 0.0, 69.7, 52.1, 47.9, 0.0,30.299999999999997,0.0 +5.079365079365079,5,a-cure-i1,2019-20,Rockland - R Stewart Esten,02510025, 0.0, 0.9, 8.7, 11.8, 3.7, 0.0, 74.8, 43.9, 56.1, 0.0,25.200000000000003,8.0 +1,1,a-cure-i1,2019-20,Rockland - Rockland Senior High,02510505, 0.0, 0.9, 4.6, 14.0, 4.4, 0.0, 76.1, 48.8, 51.2, 0.0,23.900000000000006,4.6 +1,1,a-cure-i1,2019-20,Rockport - Rockport Elementary,02520005, 0.0, 1.9, 1.3, 0.3, 0.0, 0.0, 96.5, 49.3, 50.7, 0.0,3.5,0.0 +1,1,a-cure-i1,2019-20,Rockport - Rockport High,02520510, 0.0, 1.5, 1.5, 2.7, 0.4, 0.0, 93.9, 48.5, 51.5, 0.0,6.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Rockport - Rockport Middle,02520305, 0.0, 1.9, 1.4, 1.9, 0.0, 0.0, 94.9, 46.3, 53.7, 0.0,5.099999999999994,0.0 +14.014598540145982,5,a-cure-i1,2019-20,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 4.1, 9.6, 0.0, 86.3, 45.2, 54.8, 0.0,13.700000000000003,12.0 +6.905775075987841,5,a-cure-i1,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.3, 0.7, 57.7, 39.2, 0.4, 0.4, 1.3, 47.3, 52.7, 0.0,98.7,42.599999999999994 +2.229346485819976,2.23,a-cure-i1,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 4.1, 28.1, 42.9, 5.8, 0.0, 18.9, 50.3, 49.7, 0.0,81.1,11.3 +1.7627118644067794,1.76,a-cure-i1,2019-20,Salem - Bates,02580003, 0.0, 1.8, 7.9, 32.9, 4.6, 0.0, 52.8, 49.7, 50.3, 0.0,47.2,5.199999999999999 +8.36697247706422,5,a-cure-i1,2019-20,Salem - Carlton,02580015, 0.0, 0.4, 4.0, 32.8, 6.4, 0.0, 56.4, 50.4, 49.6, 0.0,43.6,22.8 +4.478920741989882,4.48,a-cure-i1,2019-20,Salem - Collins Middle,02580305, 0.0, 3.6, 7.8, 43.8, 4.2, 0.0, 40.7, 47.8, 52.2, 0.0,59.3,16.6 +1.4930015552099534,1.49,a-cure-i1,2019-20,Salem - Horace Mann Laboratory,02580030, 0.0, 4.5, 5.5, 49.4, 4.9, 0.0, 35.7, 47.7, 52.3, 0.0,64.3,6.0 +1,1,a-cure-i1,2019-20,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 6.1, 51.0, 4.1, 0.0, 38.8, 55.1, 44.9, 0.0,61.2,0.0 +1,1,a-cure-i1,2019-20,Salem - Salem Early Childhood,02580001, 0.0, 8.3, 6.3, 20.8, 3.1, 0.0, 61.5, 30.2, 69.8, 0.0,38.5,0.0 +1.9112627986348123,1.91,a-cure-i1,2019-20,Salem - Salem High,02580505, 0.1, 2.8, 5.1, 46.2, 4.4, 0.0, 41.4, 45.7, 54.3, 0.0,58.6,7.0 +7.594936708860761,5,a-cure-i1,2019-20,Salem - Salem Prep High School,02580515, 0.0, 5.3, 0.0, 26.3, 0.0, 0.0, 68.4, 26.3, 73.7, 0.0,31.599999999999994,15.0 +1,1,a-cure-i1,2019-20,Salem - Saltonstall School,02580050, 0.0, 2.9, 5.1, 39.5, 4.9, 0.0, 47.6, 51.5, 48.5, 0.0,52.4,2.9000000000000004 +1.9402460456942006,1.94,a-cure-i1,2019-20,Salem - Witchcraft Heights,02580070, 0.0, 4.4, 8.1, 38.8, 5.5, 0.0, 43.1, 50.5, 49.5, 0.0,56.9,6.9 +3.789473684210526,3.79,a-cure-i1,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 5.7, 10.1, 43.0, 2.0, 0.0, 39.2, 51.1, 48.7, 0.2,60.8,14.399999999999999 +1,1,a-cure-i1,2019-20,Sandwich - Forestdale School,02610002, 0.3, 2.9, 1.2, 4.9, 1.2, 0.2, 89.4, 51.9, 48.1, 0.0,10.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Sandwich - Oak Ridge,02610025, 0.4, 2.5, 1.2, 3.0, 1.0, 0.3, 91.6, 49.3, 50.7, 0.0,8.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Sandwich - Sandwich High,02610505, 1.1, 2.1, 0.6, 1.7, 0.2, 0.2, 94.2, 51.4, 48.6, 0.0,5.799999999999997,3.7 +23.510204081632626,5,a-cure-i1,2019-20,Sandwich - Sandwich STEM Academy,02610305, 0.2, 1.1, 1.1, 1.3, 1.1, 0.0, 95.1, 50.9, 48.9, 0.2,4.900000000000006,7.2 +1,1,a-cure-i1,2019-20,Saugus - Belmonte Saugus Middle,02620305, 0.5, 4.4, 5.5, 20.9, 2.0, 0.8, 66.0, 49.1, 50.9, 0.0,34.0,2.0 +1,1,a-cure-i1,2019-20,Saugus - Douglas Waybright,02620067, 0.5, 4.8, 3.2, 18.0, 3.7, 0.0, 69.8, 45.0, 55.0, 0.0,30.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Saugus - Lynnhurst,02620040, 1.4, 10.0, 3.8, 22.8, 0.0, 0.3, 61.7, 47.6, 52.4, 0.0,38.3,0.0 +1,1,a-cure-i1,2019-20,Saugus - Oaklandvale,02620050, 2.3, 6.3, 5.9, 25.0, 5.5, 0.0, 55.1, 50.0, 50.0, 0.0,44.9,0.0 +3.9075907590759082,3.91,a-cure-i1,2019-20,Saugus - Saugus High,02620505, 0.6, 4.5, 5.7, 17.9, 1.6, 0.1, 69.7, 48.2, 51.7, 0.1,30.299999999999997,7.4 +3.1999999999999997,3.2,a-cure-i1,2019-20,Saugus - Veterans Memorial,02620065, 0.6, 3.9, 4.8, 16.8, 3.0, 0.0, 71.0, 48.2, 51.8, 0.0,29.0,5.8 +1,1,a-cure-i1,2019-20,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 3.4, 3.4, 0.0, 0.0, 93.1, 44.8, 55.2, 0.0,6.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Scituate - Cushing Elementary,02640007, 0.6, 0.9, 2.1, 1.5, 3.2, 0.0, 91.7, 49.3, 50.7, 0.0,8.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Scituate - Gates Middle School,02640305, 0.0, 0.8, 2.7, 2.0, 1.2, 0.0, 93.4, 49.1, 50.9, 0.0,6.599999999999994,2.2 +1,1,a-cure-i1,2019-20,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.1, 1.9, 2.6, 0.0, 94.4, 44.8, 55.2, 0.0,5.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 2.6, 4.1, 3.2, 0.0, 90.0, 50.3, 49.7, 0.0,10.0,0.0 +1,1,a-cure-i1,2019-20,Scituate - Scituate High School,02640505, 0.0, 1.7, 2.8, 1.0, 1.4, 0.0, 93.1, 51.7, 48.2, 0.1,6.900000000000006,2.7 +1,1,a-cure-i1,2019-20,Scituate - Wampatuck Elementary,02640020, 0.0, 0.2, 2.3, 3.0, 2.5, 0.0, 91.9, 48.8, 51.2, 0.0,8.099999999999994,0.0 +5.3975903614457845,5,a-cure-i1,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 4.5, 2.3, 5.3, 4.5, 0.0, 83.4, 46.8, 53.2, 0.0,16.599999999999994,5.6 +1,1,a-cure-i1,2019-20,Seekonk - George R Martin,02650007, 0.0, 3.0, 2.6, 5.5, 4.7, 0.0, 84.2, 54.0, 46.0, 0.0,15.799999999999997,3.7 +1,1,a-cure-i1,2019-20,Seekonk - Mildred Aitken School,02650015, 0.0, 2.6, 1.7, 5.9, 3.0, 0.0, 86.7, 46.7, 53.3, 0.0,13.299999999999997,4.3 +1,1,a-cure-i1,2019-20,Seekonk - Seekonk High,02650505, 0.0, 3.5, 1.8, 5.0, 2.5, 0.2, 87.0, 50.0, 50.0, 0.0,13.0,2.5 +2.9989350372736956,3.0,a-cure-i1,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.1, 46.2, 45.1, 2.4, 0.0, 6.1, 51.1, 48.9, 0.0,93.9,17.6 +1,1,a-cure-i1,2019-20,Sharon - Cottage Street,02660005, 0.2, 28.1, 5.2, 6.4, 8.5, 0.2, 51.4, 49.1, 50.9, 0.0,48.6,0.0 +1,1,a-cure-i1,2019-20,Sharon - East Elementary,02660010, 0.0, 28.9, 5.3, 5.6, 7.3, 0.0, 52.8, 49.4, 50.6, 0.0,47.2,0.0 +1,1,a-cure-i1,2019-20,Sharon - Heights Elementary,02660015, 0.0, 32.4, 3.6, 5.6, 7.0, 0.0, 51.4, 50.9, 49.1, 0.0,48.6,3.2 +1,1,a-cure-i1,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, 40.4, 6.4, 2.1, 4.3, 0.0, 46.8, 40.4, 59.6, 0.0,53.2,0.0 +2.0091324200913245,2.01,a-cure-i1,2019-20,Sharon - Sharon High,02660505, 0.1, 27.8, 6.0, 5.5, 4.2, 0.2, 56.2, 47.5, 52.5, 0.1,43.8,5.5 +1.9285714285714288,1.93,a-cure-i1,2019-20,Sharon - Sharon Middle,02660305, 0.1, 30.5, 3.9, 4.9, 5.4, 0.0, 55.2, 49.2, 50.8, 0.0,44.8,5.4 +1,1,a-cure-i1,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.2, 0.9, 1.0, 5.3, 1.8, 0.0, 90.8, 40.3, 59.7, 0.0,9.200000000000003,1.8 +1,1,a-cure-i1,2019-20,Sherborn - Pine Hill,02690010, 0.0, 8.2, 2.7, 3.1, 4.4, 0.0, 81.6, 47.7, 52.3, 0.0,18.400000000000006,3.0 +1,1,a-cure-i1,2019-20,Shrewsbury - Beal School,02710005, 0.9, 53.2, 3.8, 6.0, 3.5, 0.0, 32.6, 48.1, 51.9, 0.0,67.4,2.5 +1,1,a-cure-i1,2019-20,Shrewsbury - Calvin Coolidge,02710015, 1.0, 33.9, 4.1, 15.4, 4.9, 0.0, 40.7, 49.8, 50.2, 0.0,59.3,0.0 +1,1,a-cure-i1,2019-20,Shrewsbury - Floral Street School,02710020, 1.0, 48.2, 3.9, 8.0, 4.1, 0.0, 34.8, 46.6, 53.4, 0.0,65.2,3.0 +2.546236559139785,2.55,a-cure-i1,2019-20,Shrewsbury - Oak Middle School,02710030, 0.2, 29.9, 3.5, 9.4, 3.5, 0.0, 53.5, 47.8, 52.2, 0.0,46.5,7.4 +1.8394160583941606,1.84,a-cure-i1,2019-20,Shrewsbury - Parker Road Preschool,02710040, 0.9, 42.2, 3.9, 4.8, 3.0, 0.0, 45.2, 43.0, 57.0, 0.0,54.8,6.3 +1,1,a-cure-i1,2019-20,Shrewsbury - Sherwood Middle School,02710305, 0.4, 33.5, 2.3, 9.5, 4.4, 0.0, 50.0, 50.1, 49.9, 0.0,50.0,3.5999999999999996 +2.357487922705314,2.36,a-cure-i1,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 0.4, 26.3, 3.0, 8.5, 3.3, 0.0, 58.6, 52.6, 47.3, 0.1,41.4,6.1 +1,1,a-cure-i1,2019-20,Shrewsbury - Spring Street,02710035, 0.3, 26.1, 2.0, 4.5, 6.0, 0.0, 61.1, 48.6, 51.4, 0.0,38.9,0.0 +2.706948640483384,2.71,a-cure-i1,2019-20,Shrewsbury - Walter J Paton,02710025, 0.3, 20.6, 2.3, 6.8, 3.1, 0.0, 66.9, 52.3, 47.7, 0.0,33.099999999999994,5.6 +12.521739130434788,5,a-cure-i1,2019-20,Shutesbury - Shutesbury Elementary,02720005, 0.8, 0.8, 0.0, 8.1, 6.5, 0.0, 83.9, 58.9, 41.1, 0.0,16.099999999999994,12.600000000000001 +1,1,a-cure-i1,2019-20,Silver Lake - Silver Lake Regional High,07600505, 0.2, 1.1, 1.7, 1.8, 0.6, 0.1, 94.6, 47.4, 52.6, 0.0,5.400000000000006,2.4 +1,1,a-cure-i1,2019-20,Silver Lake - Silver Lake Regional Middle School,07600405, 0.4, 1.2, 1.4, 3.2, 1.8, 0.2, 91.9, 49.4, 50.6, 0.0,8.099999999999994,0.0 +5.08868501529052,5,a-cure-i1,2019-20,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.3, 1.4, 5.4, 22.8, 2.5, 0.3, 67.3, 44.5, 55.2, 0.3,32.7,10.4 +1,1,a-cure-i1,2019-20,Somerset - Chace Street,02730005, 0.0, 2.3, 0.3, 4.3, 2.3, 0.0, 90.8, 44.7, 55.3, 0.0,9.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Somerset - North Elementary,02730008, 0.0, 0.8, 0.4, 3.7, 3.5, 0.0, 91.5, 48.0, 52.0, 0.0,8.5,0.0 +1,1,a-cure-i1,2019-20,Somerset - Somerset Middle School,02730305, 0.3, 0.5, 1.4, 5.7, 1.8, 0.0, 90.3, 50.0, 50.0, 0.0,9.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Somerset - South,02730015, 0.8, 2.7, 1.5, 3.9, 1.9, 0.0, 89.2, 52.5, 47.5, 0.0,10.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.2, 1.2, 1.3, 4.3, 1.2, 0.2, 91.7, 48.6, 51.4, 0.0,8.299999999999997,1.3 +2.0,2.0,a-cure-i1,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.3, 8.6, 4.3, 38.2, 4.5, 0.0, 44.0, 49.9, 50.1, 0.0,56.0,7.0 +4.791208791208792,4.79,a-cure-i1,2019-20,Somerville - Arthur D Healey,02740075, 0.0, 6.3, 15.2, 47.5, 3.8, 0.0, 27.2, 50.0, 49.8, 0.2,72.8,21.8 +1,1,a-cure-i1,2019-20,Somerville - Benjamin G Brown,02740015, 0.0, 11.2, 4.8, 6.8, 10.0, 0.4, 66.7, 56.6, 43.4, 0.0,33.3,0.0 +1,1,a-cure-i1,2019-20,Somerville - Capuano Early Childhood Center,02740005, 0.0, 12.8, 8.5, 33.3, 6.7, 0.0, 38.7, 45.0, 55.0, 0.0,61.3,4.4 +5.796226415094339,5,a-cure-i1,2019-20,Somerville - E Somerville Community,02740111, 0.1, 3.7, 4.0, 69.5, 2.1, 0.1, 20.5, 46.3, 53.7, 0.0,79.5,28.799999999999997 +1.7045454545454544,1.7,a-cure-i1,2019-20,Somerville - Full Circle High School,02740510, 0.0, 1.9, 16.7, 51.9, 0.0, 0.0, 29.6, 29.6, 70.4, 0.0,70.4,7.5 +7.562700964630226,5,a-cure-i1,2019-20,Somerville - John F Kennedy,02740083, 0.0, 4.0, 6.3, 15.7, 5.1, 0.0, 68.9, 45.2, 54.8, 0.0,31.099999999999994,14.7 +1.972132904608789,1.97,a-cure-i1,2019-20,Somerville - Next Wave Junior High,02740410, 0.0, 6.7, 13.3, 73.3, 0.0, 0.0, 6.7, 13.3, 86.7, 0.0,93.3,11.5 +4.980910425844347,4.98,a-cure-i1,2019-20,Somerville - Somerville High,02740505, 0.0, 6.2, 12.7, 47.2, 1.8, 0.2, 31.9, 47.2, 52.5, 0.2,68.1,21.2 +4.116504854368932,4.12,a-cure-i1,2019-20,Somerville - West Somerville Neighborhood,02740115, 0.0, 4.3, 12.4, 15.7, 8.6, 0.3, 58.8, 48.2, 51.5, 0.3,41.2,10.6 +3.3799725651577504,3.38,a-cure-i1,2019-20,Somerville - Winter Hill Community,02740120, 0.0, 6.6, 12.5, 51.9, 1.8, 0.0, 27.1, 44.4, 55.4, 0.2,72.9,15.4 +1,1,a-cure-i1,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0.2, 2.5, 1.6, 15.5, 1.4, 0.0, 78.8, 49.9, 50.1, 0.0,21.200000000000003,0.0 +1,1,a-cure-i1,2019-20,South Hadley - Mosier,02780020, 0.0, 1.2, 1.2, 15.8, 2.1, 0.0, 79.7, 49.6, 50.4, 0.0,20.299999999999997,4.2 +1,1,a-cure-i1,2019-20,South Hadley - Plains Elementary,02780015, 0.0, 2.8, 3.1, 16.2, 3.4, 0.0, 74.4, 49.1, 50.9, 0.0,25.599999999999994,0.0 +1,1,a-cure-i1,2019-20,South Hadley - South Hadley High,02780505, 0.0, 2.3, 2.1, 11.8, 2.6, 0.2, 81.0, 52.5, 47.2, 0.4,19.0,2.1 +1,1,a-cure-i1,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 2.0, 0.9, 5.9, 43.4, 3.4, 0.0, 44.4, 40.4, 59.6, 0.0,55.6,4.5 +4.071005917159763,4.07,a-cure-i1,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.3, 5.6, 32.2, 4.1, 8.4, 0.2, 49.3, 48.0, 51.7, 0.3,50.7,12.9 +1,1,a-cure-i1,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.3, 1.1, 1.7, 5.2, 2.4, 0.0, 89.3, 31.2, 68.8, 0.0,10.700000000000003,2.0 +1,1,a-cure-i1,2019-20,Southampton - William E Norris,02750005, 0.2, 1.6, 0.2, 4.7, 3.5, 0.0, 89.8, 50.6, 49.4, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Southborough - Albert S. Woodward Memorial School,02760050, 0.4, 20.5, 0.4, 3.5, 7.4, 0.0, 67.8, 50.8, 49.2, 0.0,32.2,0.0 +1,1,a-cure-i1,2019-20,Southborough - Margaret A Neary,02760020, 0.0, 18.3, 1.5, 4.5, 7.1, 0.0, 68.7, 47.8, 52.2, 0.0,31.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Southborough - Mary E Finn School,02760008, 0.9, 20.9, 2.4, 5.0, 3.2, 0.6, 67.0, 43.7, 56.3, 0.0,33.0,0.0 +2.983922829581994,2.98,a-cure-i1,2019-20,Southborough - P Brent Trottier,02760305, 0.0, 17.1, 0.7, 7.7, 5.5, 0.0, 68.9, 47.7, 52.3, 0.0,31.099999999999994,5.8 +2.5925925925925926,2.59,a-cure-i1,2019-20,Southbridge - Charlton Street,02770005, 0.4, 0.7, 2.9, 59.3, 1.5, 0.0, 35.2, 50.9, 49.1, 0.0,64.8,10.5 +3.2721804511278196,3.27,a-cure-i1,2019-20,Southbridge - Eastford Road,02770010, 0.3, 1.9, 0.8, 62.1, 1.1, 0.3, 33.5, 50.5, 49.5, 0.0,66.5,13.6 +1,1,a-cure-i1,2019-20,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 51.6, 9.7, 0.0, 38.7, 32.3, 67.7, 0.0,61.3,0.0 +1.7856093979441998,1.79,a-cure-i1,2019-20,Southbridge - Southbridge High School,02770515, 0.2, 1.3, 1.8, 63.4, 1.1, 0.2, 31.9, 46.3, 53.7, 0.0,68.1,7.6 +1.8199052132701423,1.82,a-cure-i1,2019-20,Southbridge - Southbridge Middle School,02770315, 0.2, 2.1, 2.8, 55.5, 2.8, 0.0, 36.7, 48.3, 51.7, 0.0,63.3,7.2 +2.2641509433962264,2.26,a-cure-i1,2019-20,Southbridge - West Street,02770020, 0.0, 0.6, 1.3, 60.8, 0.9, 0.0, 36.4, 49.7, 50.3, 0.0,63.6,9.0 +2.3315118397085612,2.33,a-cure-i1,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 1.5, 34.5, 12.8, 6.1, 0.0, 45.1, 51.2, 48.8, 0.1,54.9,8.0 +8.16551724137931,5,a-cure-i1,2019-20,Southern Berkshire - Mt Everett Regional,07650505, 0.9, 0.0, 1.7, 6.7, 5.2, 0.0, 85.5, 50.6, 49.1, 0.3,14.5,7.4 +17.84615384615384,5,a-cure-i1,2019-20,Southern Berkshire - New Marlborough Central,07650018, 2.6, 0.0, 0.0, 10.4, 5.2, 0.0, 81.8, 48.1, 51.9, 0.0,18.200000000000003,20.299999999999997 +6.241758241758241,5,a-cure-i1,2019-20,Southern Berkshire - South Egremont,07650030, 0.0, 9.1, 0.0, 9.1, 0.0, 0.0, 81.8, 54.5, 45.5, 0.0,18.200000000000003,7.1 +1,1,a-cure-i1,2019-20,Southern Berkshire - Undermountain,07650035, 0.4, 0.0, 1.2, 9.9, 3.3, 0.0, 85.2, 46.5, 53.5, 0.0,14.799999999999997,2.6 +1,1,a-cure-i1,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.2, 0.6, 1.0, 10.7, 1.1, 0.0, 86.4, 41.7, 58.3, 0.0,13.599999999999994,2.7 +1,1,a-cure-i1,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.2, 0.6, 2.4, 4.7, 3.0, 0.0, 89.1, 49.6, 50.4, 0.0,10.900000000000006,0.0 +16.432432432432417,5,a-cure-i1,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.3, 0.9, 1.5, 3.4, 1.3, 0.0, 92.6, 50.1, 49.9, 0.0,7.400000000000006,7.6 +1,1,a-cure-i1,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.9, 0.9, 2.0, 5.3, 2.0, 0.0, 88.9, 45.9, 54.1, 0.0,11.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Spencer-E Brookfield - David Prouty High,07670505, 0.8, 2.7, 3.4, 12.6, 1.5, 0.0, 78.9, 47.1, 52.9, 0.0,21.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 1.7, 7.9, 4.6, 0.0, 85.8, 49.6, 50.4, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.2, 1.6, 2.7, 12.6, 3.7, 0.0, 79.2, 46.1, 53.9, 0.0,20.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.2, 2.5, 17.0, 4.3, 0.0, 76.0, 45.8, 54.0, 0.2,24.0,0.0 +2.98989898989899,2.99,a-cure-i1,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.2, 0.0, 21.5, 53.2, 4.2, 0.0, 20.8, 56.0, 44.0, 0.0,79.2,14.8 +1.1262569832402234,1.13,a-cure-i1,2019-20,Springfield - Alice B Beal Elementary,02810175, 0.0, 11.7, 19.1, 55.5, 3.1, 0.0, 10.5, 53.1, 46.9, 0.0,89.5,6.3 +1,1,a-cure-i1,2019-20,Springfield - Arthur T Talmadge,02810165, 0.0, 0.9, 25.8, 57.9, 3.4, 0.0, 12.0, 46.4, 53.6, 0.0,88.0,0.0 +4.046936114732724,4.05,a-cure-i1,2019-20,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 26.7, 50.0, 0.0, 0.0, 23.3, 20.0, 80.0, 0.0,76.7,19.4 +1.9484004127966976,1.95,a-cure-i1,2019-20,Springfield - Brightwood,02810025, 0.0, 0.0, 16.5, 79.6, 0.8, 0.0, 3.1, 49.9, 50.1, 0.0,96.9,11.8 +2.269151138716356,2.27,a-cure-i1,2019-20,Springfield - Chestnut Academy,02810365, 0.0, 0.6, 9.4, 86.6, 0.0, 0.0, 3.4, 42.9, 57.1, 0.0,96.6,13.7 +10.248009101251421,5,a-cure-i1,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 3.8, 21.1, 61.3, 1.6, 0.0, 12.1, 51.1, 48.9, 0.0,87.9,56.3 +7.634703196347032,5,a-cure-i1,2019-20,Springfield - Conservatory of the Arts,02810475, 0.3, 0.0, 14.5, 70.6, 2.1, 0.0, 12.4, 69.7, 30.3, 0.0,87.6,41.8 +1,1,a-cure-i1,2019-20,Springfield - Daniel B Brunton,02810035, 0.5, 0.5, 20.9, 59.8, 3.5, 0.2, 14.6, 52.9, 47.1, 0.0,85.4,4.2 +4.139860139860141,4.14,a-cure-i1,2019-20,Springfield - Early Childhood Education Center,02810001, 0.6, 3.0, 17.2, 62.7, 2.4, 0.0, 14.2, 40.8, 59.2, 0.0,85.8,22.200000000000003 +2.103448275862069,2.1,a-cure-i1,2019-20,Springfield - Edward P. Boland School,02810010, 0.1, 1.7, 10.2, 78.9, 1.7, 0.1, 7.2, 40.0, 60.0, 0.0,92.8,12.2 +5.350052246603971,5,a-cure-i1,2019-20,Springfield - Elias Brookings,02810030, 0.6, 0.6, 20.9, 71.1, 2.5, 0.0, 4.3, 44.6, 55.4, 0.0,95.7,32.0 +1.867237687366167,1.87,a-cure-i1,2019-20,Springfield - Forest Park Middle,02810325, 0.0, 6.6, 21.4, 63.7, 1.7, 0.0, 6.6, 46.4, 53.6, 0.0,93.4,10.9 +5.146608315098468,5,a-cure-i1,2019-20,Springfield - Frank H Freedman,02810075, 1.0, 2.8, 21.7, 62.8, 3.1, 0.0, 8.6, 48.6, 51.4, 0.0,91.4,29.4 +2.7868453105968336,2.79,a-cure-i1,2019-20,Springfield - Frederick Harris,02810080, 0.3, 3.2, 17.3, 56.3, 5.0, 0.0, 17.9, 49.5, 50.5, 0.0,82.1,14.3 +18.285714285714285,5,a-cure-i1,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 3.1, 12.5, 71.9, 0.0, 0.0, 12.5, 75.0, 25.0, 0.0,87.5,100.0 +6.446376811594203,5,a-cure-i1,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 23.8, 42.9, 2.4, 0.0, 31.0, 69.0, 31.0, 0.0,69.0,27.8 +3.0605738575982997,3.06,a-cure-i1,2019-20,Springfield - German Gerena Community School,02810195, 0.4, 0.9, 14.2, 76.8, 1.7, 0.0, 5.9, 49.5, 50.5, 0.0,94.1,18.0 +0.9625425652667424,1,a-cure-i1,2019-20,Springfield - Glenwood,02810065, 0.0, 2.3, 9.2, 75.5, 1.1, 0.0, 11.9, 45.6, 54.4, 0.0,88.1,5.3 +3.141884222474461,3.14,a-cure-i1,2019-20,Springfield - Glickman Elementary,02810068, 0.6, 2.5, 17.9, 64.2, 2.8, 0.0, 11.9, 42.1, 57.9, 0.0,88.1,17.3 +6.1287553648068664,5,a-cure-i1,2019-20,Springfield - High School Of Commerce,02810510, 0.3, 1.5, 19.3, 70.8, 1.2, 0.2, 6.8, 48.5, 51.5, 0.0,93.2,35.699999999999996 +1,1,a-cure-i1,2019-20,Springfield - Hiram L Dorman,02810050, 0.0, 2.3, 17.6, 64.9, 2.7, 1.1, 11.5, 49.6, 50.4, 0.0,88.5,0.0 +1,1,a-cure-i1,2019-20,Springfield - Homer Street,02810085, 0.0, 0.7, 25.1, 66.1, 2.9, 0.0, 5.2, 47.4, 52.6, 0.0,94.8,4.1 +8.64367816091954,5,a-cure-i1,2019-20,Springfield - Impact Prep at Chestnut,02810366, 0.3, 0.0, 12.1, 82.8, 0.5, 0.0, 4.3, 46.0, 54.0, 0.0,95.7,51.7 +1,1,a-cure-i1,2019-20,Springfield - Indian Orchard Elementary,02810100, 0.2, 0.6, 20.5, 64.4, 3.1, 0.0, 11.2, 46.3, 53.7, 0.0,88.8,2.9 +7.857777777777779,5,a-cure-i1,2019-20,Springfield - John F Kennedy Middle,02810328, 0.0, 0.6, 20.6, 67.6, 1.2, 0.0, 10.0, 46.4, 53.6, 0.0,90.0,44.2 +5.947065592635212,5,a-cure-i1,2019-20,Springfield - John J Duggan Middle,02810320, 0.4, 1.9, 27.1, 56.2, 1.3, 0.0, 13.1, 47.2, 52.8, 0.0,86.9,32.3 +1.76017601760176,1.76,a-cure-i1,2019-20,Springfield - Kensington International School,02810110, 0.4, 1.4, 16.1, 70.9, 2.1, 0.0, 9.1, 51.9, 48.1, 0.0,90.9,10.0 +1,1,a-cure-i1,2019-20,Springfield - Liberty,02810115, 0.0, 2.2, 12.1, 75.1, 0.7, 0.0, 9.9, 51.6, 48.4, 0.0,90.1,0.0 +12.823970037453181,5,a-cure-i1,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 20.0, 6.7, 0.0, 73.3, 6.7, 93.3, 0.0,26.700000000000003,21.4 +2.7025906735751293,2.7,a-cure-i1,2019-20,Springfield - Lincoln,02810120, 0.3, 0.3, 9.3, 85.0, 1.8, 0.0, 3.5, 52.8, 47.3, 0.0,96.5,16.299999999999997 +6.16061606160616,5,a-cure-i1,2019-20,Springfield - M Marcus Kiley Middle,02810330, 0.1, 1.9, 20.9, 65.8, 2.2, 0.0, 9.1, 44.1, 55.9, 0.0,90.9,35.0 +1.275626423690205,1.28,a-cure-i1,2019-20,Springfield - Margaret C Ells,02810060, 0.5, 1.6, 19.7, 62.2, 3.7, 0.0, 12.2, 47.3, 52.7, 0.0,87.8,7.0 +1.064087061668682,1.06,a-cure-i1,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.3, 6.8, 17.6, 54.2, 3.9, 0.0, 17.3, 50.0, 50.0, 0.0,82.7,5.5 +2.3848720800889875,2.38,a-cure-i1,2019-20,Springfield - Mary M Lynch,02810140, 0.0, 1.2, 19.4, 67.6, 1.6, 0.0, 10.1, 53.8, 46.2, 0.0,89.9,13.4 +4.345454545454545,4.35,a-cure-i1,2019-20,Springfield - Mary M Walsh,02810155, 0.4, 0.0, 18.5, 67.4, 1.8, 0.0, 12.0, 50.0, 50.0, 0.0,88.0,23.9 +2.6905829596412554,2.69,a-cure-i1,2019-20,Springfield - Mary O Pottenger,02810145, 0.4, 2.1, 10.6, 74.2, 1.9, 0.0, 10.8, 48.8, 51.2, 0.0,89.2,15.0 +2.5560165975103732,2.56,a-cure-i1,2019-20,Springfield - Milton Bradley School,02810023, 0.0, 0.2, 16.3, 78.2, 1.7, 0.0, 3.6, 46.7, 53.3, 0.0,96.4,15.4 +4.622222222222223,4.62,a-cure-i1,2019-20,Springfield - Rebecca M Johnson,02810055, 0.3, 0.0, 26.0, 66.3, 2.0, 0.0, 5.5, 48.4, 51.6, 0.0,94.5,27.3 +2.55863539445629,2.56,a-cure-i1,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.3, 16.0, 73.9, 3.6, 0.0, 6.2, 45.0, 55.0, 0.0,93.8,15.0 +3.929824561403509,3.93,a-cure-i1,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 1.7, 19.0, 70.0, 0.6, 0.0, 8.8, 54.6, 45.4, 0.0,91.2,22.400000000000002 +1.9034792368125701,1.9,a-cure-i1,2019-20,Springfield - Samuel Bowles,02810020, 0.0, 0.3, 13.0, 75.2, 0.6, 0.0, 10.9, 48.1, 51.9, 0.0,89.1,10.6 +4.59244126659857,4.59,a-cure-i1,2019-20,Springfield - South End Middle School,02810355, 0.0, 0.0, 13.8, 83.3, 0.8, 0.0, 2.1, 50.2, 49.8, 0.0,97.9,28.1 +3.2325056433408577,3.23,a-cure-i1,2019-20,Springfield - Springfield Central High,02810500, 0.1, 4.7, 23.5, 58.9, 1.4, 0.0, 11.4, 46.5, 53.5, 0.0,88.6,17.9 +4.013745704467354,4.01,a-cure-i1,2019-20,Springfield - Springfield High School,02810570, 0.0, 0.0, 21.5, 63.9, 2.0, 0.0, 12.7, 44.4, 55.6, 0.0,87.3,21.9 +4.424043715846994,4.42,a-cure-i1,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 0.1, 1.7, 17.6, 70.8, 1.1, 0.2, 8.5, 44.3, 55.7, 0.0,91.5,25.3 +1,1,a-cure-i1,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 40.0, 48.0, 0.0, 0.0, 12.0, 56.0, 44.0, 0.0,88.0,0.0 +4.669387755102041,4.67,a-cure-i1,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 3.9, 5.9, 88.2, 0.0, 0.0, 2.0, 19.6, 80.4, 0.0,98.0,28.6 +6.442477876106194,5,a-cure-i1,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 19.2, 71.2, 0.0, 0.0, 9.6, 13.5, 86.5, 0.0,90.4,36.4 +7.1912087912087905,5,a-cure-i1,2019-20,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 20.5, 70.5, 0.0, 0.0, 9.0, 19.2, 80.8, 0.0,91.0,40.9 +1,1,a-cure-i1,2019-20,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 23.4, 66.0, 4.3, 0.0, 6.4, 14.9, 85.1, 0.0,93.6,0.0 +1,1,a-cure-i1,2019-20,Springfield - Springfield Vocational Academy,02810675, 0.0, 3.7, 20.6, 65.4, 0.9, 0.0, 9.3, 39.3, 60.7, 0.0,90.7,3.5 +2.9454545454545453,2.95,a-cure-i1,2019-20,Springfield - STEM Middle Academy,02810350, 0.0, 2.6, 17.5, 65.7, 2.2, 0.0, 12.0, 43.1, 56.9, 0.0,88.0,16.2 +2.734739178690344,2.73,a-cure-i1,2019-20,Springfield - Sumner Avenue,02810160, 0.2, 4.6, 20.6, 61.3, 3.5, 0.0, 9.9, 47.1, 52.9, 0.0,90.1,15.4 +4.571428571428572,4.57,a-cure-i1,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 1.7, 24.5, 54.6, 1.7, 0.2, 17.4, 48.9, 51.1, 0.0,82.6,23.6 +2.068027210884354,2.07,a-cure-i1,2019-20,Springfield - Thomas M Balliet,02810015, 0.3, 2.5, 22.3, 57.3, 5.9, 0.0, 11.8, 48.6, 51.4, 0.0,88.2,11.4 +4.3620873269435565,4.36,a-cure-i1,2019-20,Springfield - Van Sickle Academy,02810485, 0.0, 1.6, 8.1, 83.8, 0.4, 0.0, 6.1, 43.3, 56.7, 0.0,93.9,25.599999999999998 +1,1,a-cure-i1,2019-20,Springfield - Warner,02810180, 0.0, 0.8, 22.1, 58.8, 4.2, 0.0, 14.2, 45.8, 54.2, 0.0,85.8,4.8 +1.2,1.2,a-cure-i1,2019-20,Springfield - Washington,02810185, 0.0, 6.1, 18.4, 59.9, 3.6, 0.0, 12.0, 48.5, 51.5, 0.0,88.0,6.6 +1.945031712473573,1.95,a-cure-i1,2019-20,Springfield - White Street,02810190, 0.2, 3.4, 20.3, 68.5, 2.3, 0.0, 5.4, 48.2, 51.8, 0.0,94.6,11.5 +3.149473684210526,3.15,a-cure-i1,2019-20,Springfield - William N. DeBerry,02810045, 0.0, 0.4, 19.9, 72.4, 2.3, 0.0, 5.0, 47.5, 52.5, 0.0,95.0,18.7 +5.739130434782608,5,a-cure-i1,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 2.2, 17.9, 69.8, 2.2, 0.0, 8.0, 46.6, 53.4, 0.0,92.0,33.0 +1,1,a-cure-i1,2019-20,Stoneham - Colonial Park,02840005, 0.0, 6.1, 1.5, 11.0, 4.2, 0.0, 77.3, 43.2, 56.8, 0.0,22.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Stoneham - Robin Hood,02840025, 0.0, 5.1, 2.3, 8.4, 6.3, 0.0, 77.9, 52.0, 48.0, 0.0,22.099999999999994,2.3 +1,1,a-cure-i1,2019-20,Stoneham - South,02840030, 0.3, 6.2, 2.3, 8.7, 5.4, 0.0, 77.2, 52.4, 47.6, 0.0,22.799999999999997,2.3 +6.019801980198019,5,a-cure-i1,2019-20,Stoneham - Stoneham Central Middle School,02840405, 0.3, 4.9, 2.7, 9.4, 2.9, 0.0, 79.8, 49.6, 50.4, 0.0,20.200000000000003,7.6 +1,1,a-cure-i1,2019-20,Stoneham - Stoneham High,02840505, 0.3, 5.1, 2.0, 8.4, 3.4, 0.0, 80.8, 47.4, 52.6, 0.0,19.200000000000003,1.7 +1,1,a-cure-i1,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 3.8, 32.9, 11.4, 5.1, 1.3, 45.6, 41.8, 58.2, 0.0,54.4,0.0 +1,1,a-cure-i1,2019-20,Stoughton - Helen Hansen Elementary,02850010, 0.0, 3.6, 14.9, 14.1, 8.0, 0.0, 59.4, 50.6, 49.4, 0.0,40.6,0.0 +1,1,a-cure-i1,2019-20,Stoughton - Joseph H Gibbons,02850025, 0.0, 2.7, 19.5, 14.9, 6.5, 0.0, 56.5, 45.4, 54.6, 0.0,43.5,0.0 +1,1,a-cure-i1,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 6.7, 27.4, 17.8, 4.4, 0.0, 43.7, 46.4, 53.6, 0.0,56.3,0.0 +2.3053763440860218,2.31,a-cure-i1,2019-20,Stoughton - O'Donnell Middle School,02850405, 0.1, 6.0, 21.9, 12.4, 5.3, 0.8, 53.5, 46.9, 53.1, 0.0,46.5,6.7 +1,1,a-cure-i1,2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.6, 4.6, 29.2, 20.1, 6.4, 0.3, 38.9, 51.7, 48.3, 0.0,61.1,4.2 +1,1,a-cure-i1,2019-20,Stoughton - South Elementary,02850015, 0.4, 10.3, 21.4, 11.5, 6.8, 0.0, 49.6, 49.6, 50.4, 0.0,50.4,0.0 +1,1,a-cure-i1,2019-20,Stoughton - Stoughton High,02850505, 0.2, 6.9, 26.6, 9.5, 3.1, 0.2, 53.4, 48.2, 51.8, 0.0,46.6,4.3 +1,1,a-cure-i1,2019-20,Sturbridge - Burgess Elementary,02870005, 0.3, 1.6, 1.1, 6.9, 4.4, 0.0, 85.7, 46.0, 54.0, 0.0,14.299999999999997,0.0 +6.309859154929576,5,a-cure-i1,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.4, 3.7, 2.3, 5.5, 2.3, 0.0, 85.8, 54.7, 45.0, 0.4,14.200000000000003,5.6 +3.768595041322313,3.77,a-cure-i1,2019-20,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 9.1, 4.3, 3.8, 6.8, 0.2, 75.8, 51.9, 48.1, 0.0,24.200000000000003,5.699999999999999 +3.126436781609196,3.13,a-cure-i1,2019-20,Sudbury - General John Nixon Elementary,02880025, 0.0, 8.7, 6.0, 4.8, 6.6, 0.0, 73.9, 49.5, 50.5, 0.0,26.099999999999994,5.1 +3.9024390243902434,3.9,a-cure-i1,2019-20,Sudbury - Israel Loring School,02880015, 0.2, 8.7, 3.8, 8.7, 6.9, 0.4, 71.3, 48.1, 51.9, 0.0,28.700000000000003,7.0 +4.748858447488583,4.75,a-cure-i1,2019-20,Sudbury - Josiah Haynes,02880010, 0.0, 8.8, 2.4, 4.0, 6.7, 0.0, 78.1, 43.2, 56.8, 0.0,21.900000000000006,6.5 +1,1,a-cure-i1,2019-20,Sudbury - Peter Noyes,02880030, 0.0, 10.8, 2.1, 3.5, 9.9, 0.0, 73.6, 45.5, 54.5, 0.0,26.400000000000006,0.0 +2.692063492063492,2.69,a-cure-i1,2019-20,Sunderland - Sunderland Elementary,02890005, 0.0, 9.0, 2.7, 10.4, 9.5, 0.0, 68.5, 47.7, 52.3, 0.0,31.5,5.3 +1,1,a-cure-i1,2019-20,Sutton - Sutton Early Learning,02900003, 0.3, 2.1, 1.2, 4.5, 1.8, 0.3, 89.9, 43.3, 56.7, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Sutton - Sutton Elementary,02900005, 0.0, 2.0, 1.0, 1.7, 3.3, 0.0, 92.1, 49.7, 50.3, 0.0,7.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Sutton - Sutton High School,02900510, 0.0, 1.1, 1.6, 3.5, 4.5, 0.0, 89.3, 50.1, 49.9, 0.0,10.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Sutton - Sutton Middle School,02900305, 0.0, 1.7, 1.2, 3.8, 5.5, 0.0, 87.8, 51.0, 49.0, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Swampscott - Clarke,02910005, 0.9, 2.3, 3.8, 16.4, 1.9, 0.0, 74.6, 46.0, 54.0, 0.0,25.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Swampscott - Hadley,02910010, 0.3, 3.7, 2.2, 11.7, 4.6, 0.0, 77.5, 49.1, 50.9, 0.0,22.5,0.0 +1,1,a-cure-i1,2019-20,Swampscott - Stanley,02910020, 0.0, 1.7, 1.2, 5.0, 1.7, 0.0, 90.5, 43.2, 56.8, 0.0,9.5,0.0 +5.030567685589519,5,a-cure-i1,2019-20,Swampscott - Swampscott High,02910505, 0.0, 2.0, 5.3, 13.9, 1.7, 0.0, 77.1, 53.5, 46.5, 0.0,22.900000000000006,7.2 +1,1,a-cure-i1,2019-20,Swampscott - Swampscott Middle,02910305, 0.3, 2.4, 3.8, 11.5, 3.1, 0.0, 78.8, 48.0, 51.8, 0.1,21.200000000000003,1.2 +1,1,a-cure-i1,2019-20,Swansea - Elizabeth S Brown,02920006, 0.4, 0.7, 0.7, 1.4, 1.1, 0.0, 95.7, 50.7, 49.3, 0.0,4.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Swansea - Gardner,02920015, 0.4, 0.7, 0.7, 1.8, 1.8, 0.0, 94.6, 47.3, 52.7, 0.0,5.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Swansea - Joseph Case High,02920505, 0.0, 1.3, 0.9, 3.0, 1.1, 0.0, 93.5, 48.8, 51.2, 0.0,6.5,2.2 +1,1,a-cure-i1,2019-20,Swansea - Joseph Case Jr High,02920305, 0.2, 0.9, 0.7, 2.3, 0.7, 0.0, 95.2, 48.9, 51.1, 0.0,4.799999999999997,2.8 +1,1,a-cure-i1,2019-20,Swansea - Joseph G Luther,02920020, 0.5, 1.0, 1.0, 2.9, 3.9, 0.0, 90.7, 50.2, 49.8, 0.0,9.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 2.4, 0.8, 1.6, 4.4, 0.0, 90.9, 50.4, 49.6, 0.0,9.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 0.2, 0.3, 1.2, 6.1, 2.9, 0.2, 89.1, 46.5, 53.5, 0.0,10.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 0.1, 1.7, 1.4, 5.6, 4.5, 0.0, 86.7, 57.5, 42.5, 0.0,13.299999999999997,3.0 +1,1,a-cure-i1,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.2, 0.2, 5.5, 3.1, 0.2, 90.6, 42.2, 57.8, 0.0,9.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Taunton - Benjamin Friedman Middle,02930315, 0.5, 0.9, 12.1, 11.3, 4.3, 0.0, 70.9, 49.8, 50.2, 0.0,29.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Taunton - East Taunton Elementary,02930010, 0.0, 0.7, 15.9, 10.2, 5.6, 0.0, 67.6, 51.7, 48.3, 0.0,32.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Taunton - Edmund Hatch Bennett,02930007, 0.0, 1.3, 10.0, 11.3, 5.1, 0.0, 72.3, 49.8, 50.2, 0.0,27.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 2.2, 13.3, 11.2, 5.0, 0.0, 68.3, 42.1, 57.9, 0.0,31.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Taunton - Elizabeth Pole,02930027, 0.2, 1.2, 24.1, 13.5, 8.6, 0.0, 52.4, 47.7, 52.3, 0.0,47.6,3.3 +2.010471204188482,2.01,a-cure-i1,2019-20,Taunton - H H Galligan,02930057, 0.8, 1.5, 28.2, 18.7, 7.3, 0.8, 42.7, 51.1, 48.9, 0.0,57.3,7.2 +2.1241970021413277,2.12,a-cure-i1,2019-20,Taunton - Hopewell,02930035, 0.0, 0.0, 21.2, 14.6, 10.9, 0.0, 53.3, 56.6, 43.4, 0.0,46.7,6.2 +1,1,a-cure-i1,2019-20,Taunton - John F Parker Middle,02930305, 0.6, 0.6, 20.8, 17.4, 5.1, 0.6, 54.9, 50.6, 49.4, 0.0,45.1,3.7 +1,1,a-cure-i1,2019-20,Taunton - Joseph C Chamberlain,02930008, 0.0, 1.8, 10.3, 6.5, 3.7, 0.0, 77.7, 45.4, 54.6, 0.0,22.299999999999997,3.7 +1,1,a-cure-i1,2019-20,Taunton - Joseph H Martin,02930042, 0.1, 1.4, 17.8, 10.2, 4.5, 0.1, 65.8, 49.4, 50.6, 0.0,34.2,4.1 +1,1,a-cure-i1,2019-20,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.8, 21.6, 16.0, 5.5, 0.0, 56.0, 49.5, 50.5, 0.0,44.0,3.9 +1,1,a-cure-i1,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 16.3, 23.3, 3.5, 0.0, 57.0, 38.4, 61.6, 0.0,43.0,0.0 +2.554973821989529,2.55,a-cure-i1,2019-20,Taunton - Taunton High,02930505, 0.2, 1.6, 18.9, 13.1, 4.2, 0.2, 61.8, 50.4, 49.6, 0.0,38.2,6.1000000000000005 +1,1,a-cure-i1,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.2, 2.7, 7.7, 17.4, 7.0, 0.4, 64.7, 58.4, 41.6, 0.0,35.3,0.0 +1,1,a-cure-i1,2019-20,Tewksbury - Heath-Brook,02950010, 0.0, 1.2, 3.9, 4.2, 1.8, 0.0, 89.0, 53.9, 46.1, 0.0,11.0,0.0 +1,1,a-cure-i1,2019-20,Tewksbury - John F. Ryan,02950023, 0.2, 2.0, 3.7, 5.7, 1.4, 0.0, 87.1, 50.1, 49.9, 0.0,12.900000000000006,0.7 +1,1,a-cure-i1,2019-20,Tewksbury - John W. Wynn Middle,02950305, 0.0, 4.6, 4.8, 4.1, 0.6, 0.0, 85.9, 46.7, 53.3, 0.0,14.099999999999994,2.6 +1,1,a-cure-i1,2019-20,Tewksbury - L F Dewing,02950001, 0.0, 7.4, 5.6, 5.3, 1.8, 0.2, 79.8, 47.2, 52.8, 0.0,20.200000000000003,3.2 +1,1,a-cure-i1,2019-20,Tewksbury - Louise Davy Trahan,02950025, 0.0, 3.8, 1.3, 4.7, 2.5, 0.0, 87.7, 53.0, 47.0, 0.0,12.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Tewksbury - North Street,02950020, 0.0, 3.0, 5.0, 8.7, 1.3, 0.3, 81.7, 47.0, 53.0, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Tewksbury - Tewksbury Memorial High,02950505, 0.1, 3.9, 3.2, 4.4, 0.8, 0.0, 87.6, 53.0, 46.9, 0.1,12.400000000000006,1.7 +2.3053763440860218,2.31,a-cure-i1,2019-20,Tisbury - Tisbury Elementary,02960005, 1.7, 0.7, 4.7, 31.8, 7.7, 0.0, 53.5, 48.2, 51.8, 0.0,46.5,6.7 +1,1,a-cure-i1,2019-20,Topsfield - Proctor Elementary,02980005, 0.7, 1.5, 0.4, 1.8, 2.6, 0.0, 93.0, 50.6, 49.4, 0.0,7.0,0.0 +1,1,a-cure-i1,2019-20,Topsfield - Steward Elementary,02980010, 0.8, 1.3, 0.3, 4.0, 2.9, 0.0, 90.7, 51.7, 48.3, 0.0,9.299999999999997,3.1 +1,1,a-cure-i1,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.3, 0.9, 1.0, 6.6, 4.3, 0.1, 86.7, 40.2, 59.5, 0.2,13.299999999999997,1.4 +1,1,a-cure-i1,2019-20,Triton - Newbury Elementary,07730020, 0.0, 1.5, 1.0, 1.8, 1.5, 0.5, 93.6, 45.0, 55.0, 0.0,6.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Triton - Pine Grove,07730025, 0.0, 1.8, 0.9, 0.9, 2.1, 0.0, 94.3, 50.1, 49.9, 0.0,5.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Triton - Salisbury Elementary,07730015, 0.2, 2.3, 2.9, 6.8, 3.1, 0.0, 84.7, 48.7, 51.3, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Triton - Triton Regional High School,07730505, 0.3, 1.9, 1.3, 3.7, 1.3, 0.1, 91.3, 49.7, 50.1, 0.1,8.700000000000003,4.6 +1,1,a-cure-i1,2019-20,Triton - Triton Regional Middle School,07730405, 0.0, 2.8, 0.6, 3.3, 2.5, 0.0, 90.9, 45.7, 54.3, 0.0,9.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Truro - Truro Central,03000005, 0.0, 0.0, 6.2, 6.2, 16.8, 0.0, 70.8, 47.8, 52.2, 0.0,29.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 0.3, 8.6, 5.4, 5.9, 3.8, 0.0, 76.1, 48.5, 51.5, 0.0,23.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Tyngsborough - Tyngsborough High School,03010505, 0.2, 7.1, 1.8, 4.7, 3.6, 0.0, 82.7, 53.8, 46.2, 0.0,17.299999999999997,3.0 +1,1,a-cure-i1,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 7.0, 5.4, 6.0, 2.3, 0.0, 79.3, 45.9, 54.1, 0.0,20.700000000000003,3.1 +4.151174668028601,4.15,a-cure-i1,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 5.2, 43.5, 48.0, 1.0, 0.2, 2.1, 48.2, 51.8, 0.0,97.9,25.4 +6.206060606060606,5,a-cure-i1,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.3, 0.6, 55.3, 40.8, 1.4, 0.7, 1.0, 49.5, 50.5, 0.0,99.0,38.4 +1,1,a-cure-i1,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 3.7, 0.0, 0.0, 1.9, 13.0, 0.0, 81.5, 48.1, 51.9, 0.0,18.5,0.0 +1,1,a-cure-i1,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 4.5, 0.3, 0.3, 7.8, 6.1, 0.0, 81.0, 45.0, 55.0, 0.0,19.0,3.1 +1,1,a-cure-i1,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.8, 1.7, 4.4, 2.8, 6.1, 0.1, 84.0, 36.8, 63.2, 0.0,16.0,1.8 +1,1,a-cure-i1,2019-20,Uxbridge - Gateway to College,03040515, 2.8, 5.6, 0.0, 8.3, 5.6, 2.8, 75.0, 58.3, 41.7, 0.0,25.0,0.0 +1,1,a-cure-i1,2019-20,Uxbridge - Taft Early Learning Center,03040005, 0.3, 0.9, 0.7, 7.3, 0.9, 0.2, 89.7, 47.5, 52.5, 0.0,10.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Uxbridge - Uxbridge High,03040505, 0.5, 1.7, 1.5, 5.1, 2.7, 0.0, 88.5, 45.1, 54.9, 0.0,11.5,0.0 +1,1,a-cure-i1,2019-20,Uxbridge - Whitin Intermediate,03040405, 1.0, 1.2, 1.4, 4.8, 1.9, 0.0, 89.7, 46.4, 53.6, 0.0,10.299999999999997,0.0 +4.868835257082896,4.87,a-cure-i1,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.5, 1.4, 17.0, 74.2, 2.2, 0.0, 4.7, 53.7, 46.3, 0.0,95.3,29.0 +1,1,a-cure-i1,2019-20,Wachusett - Central Tree Middle,07750310, 0.0, 3.0, 2.2, 3.9, 3.0, 0.0, 87.8, 51.8, 48.2, 0.0,12.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Chocksett Middle School,07750315, 0.0, 1.5, 0.9, 6.0, 2.1, 0.0, 89.5, 47.6, 52.4, 0.0,10.5,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Davis Hill Elementary,07750018, 0.6, 1.5, 3.4, 7.8, 3.2, 0.2, 83.3, 49.4, 50.6, 0.0,16.700000000000003,3.8 +1,1,a-cure-i1,2019-20,Wachusett - Dawson,07750020, 0.0, 4.9, 4.3, 6.1, 2.5, 0.0, 82.2, 50.0, 50.0, 0.0,17.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Early Childhood Center,07750001, 0.0, 4.4, 1.3, 7.5, 2.5, 0.0, 84.3, 40.3, 59.7, 0.0,15.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Glenwood Elementary School,07750060, 0.8, 1.1, 2.5, 6.1, 1.9, 0.0, 87.5, 50.7, 49.3, 0.0,12.5,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Houghton Elementary,07750027, 0.0, 2.5, 3.7, 6.8, 2.3, 0.0, 84.7, 46.6, 53.4, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Leroy E.Mayo,07750032, 0.0, 4.6, 3.5, 5.0, 2.3, 0.2, 84.4, 48.5, 51.5, 0.0,15.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Mountview Middle,07750305, 0.1, 3.8, 3.0, 6.2, 2.4, 0.0, 84.4, 51.1, 48.9, 0.0,15.599999999999994,2.2 +1,1,a-cure-i1,2019-20,Wachusett - Naquag Elementary School,07750005, 0.0, 1.0, 1.0, 6.1, 2.0, 0.0, 89.9, 50.8, 49.2, 0.0,10.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Paxton Center,07750040, 0.0, 3.8, 1.6, 7.3, 2.0, 0.0, 85.3, 48.7, 51.3, 0.0,14.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Thomas Prince,07750045, 0.0, 1.6, 0.5, 4.4, 2.2, 0.0, 91.3, 49.9, 50.1, 0.0,8.700000000000003,0.0 +1,1,a-cure-i1,2019-20,Wachusett - Wachusett Regional High,07750505, 0.1, 3.4, 2.1, 5.0, 2.2, 0.0, 87.2, 50.3, 49.7, 0.0,12.799999999999997,0.7 +1,1,a-cure-i1,2019-20,Wakefield - Dolbeare,03050005, 0.4, 1.9, 1.7, 7.3, 2.2, 0.4, 86.0, 48.4, 51.6, 0.0,14.0,0.0 +1,1,a-cure-i1,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 2.9, 1.4, 7.1, 6.4, 0.0, 82.1, 37.1, 62.9, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Wakefield - Galvin Middle School,03050310, 0.3, 3.0, 2.6, 8.0, 2.8, 0.0, 83.4, 49.6, 50.4, 0.0,16.599999999999994,1.1 +1,1,a-cure-i1,2019-20,Wakefield - Greenwood,03050020, 0.0, 5.4, 0.4, 5.8, 6.3, 0.4, 81.7, 42.0, 58.0, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Wakefield - Wakefield Memorial High,03050505, 0.1, 3.2, 3.8, 6.4, 1.7, 0.1, 84.7, 52.1, 47.8, 0.1,15.299999999999997,2.8 +1,1,a-cure-i1,2019-20,Wakefield - Walton,03050040, 0.0, 1.8, 3.5, 6.6, 3.1, 0.9, 84.2, 45.2, 54.8, 0.0,15.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Wakefield - Woodville School,03050015, 0.3, 5.5, 2.8, 10.3, 6.5, 0.3, 74.3, 51.4, 48.4, 0.3,25.700000000000003,4.6 +1,1,a-cure-i1,2019-20,Wales - Wales Elementary,03060005, 0.7, 0.7, 2.1, 0.7, 2.1, 0.0, 93.8, 47.6, 52.4, 0.0,6.200000000000003,0.0 +5.727272727272729,5,a-cure-i1,2019-20,Walpole - Bird Middle,03070305, 0.2, 3.6, 5.2, 7.0, 1.6, 0.0, 82.4, 49.5, 50.5, 0.0,17.599999999999994,6.3 +1,1,a-cure-i1,2019-20,Walpole - Boyden,03070010, 0.6, 4.7, 6.7, 5.2, 3.2, 0.0, 79.6, 51.0, 49.0, 0.0,20.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 9.2, 2.6, 2.6, 0.0, 0.0, 85.5, 40.8, 59.2, 0.0,14.5,0.0 +1,1,a-cure-i1,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0.5, 11.6, 2.1, 5.8, 3.5, 0.0, 76.6, 47.2, 52.8, 0.0,23.400000000000006,3.6 +1,1,a-cure-i1,2019-20,Walpole - Elm Street School,03070005, 0.2, 6.2, 4.3, 3.6, 2.9, 0.0, 82.8, 48.7, 51.3, 0.0,17.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Walpole - Fisher,03070015, 0.0, 14.0, 1.6, 7.7, 4.1, 0.0, 72.6, 48.0, 52.0, 0.0,27.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Walpole - Old Post Road,03070018, 0.2, 2.0, 3.1, 8.3, 4.3, 0.0, 82.1, 50.1, 49.9, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Walpole - Walpole High,03070505, 0.5, 5.3, 3.1, 5.7, 2.3, 0.0, 83.2, 49.3, 50.7, 0.0,16.799999999999997,2.8 +1,1,a-cure-i1,2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 0.2, 8.8, 9.5, 13.1, 4.3, 0.0, 64.0, 45.0, 55.0, 0.0,36.0,1.5 +1,1,a-cure-i1,2019-20,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.5, 7.3, 76.2, 1.4, 0.2, 11.3, 50.8, 49.2, 0.0,88.7,4.7 +1,1,a-cure-i1,2019-20,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 4.2, 5.0, 29.9, 4.7, 0.0, 56.2, 45.0, 55.0, 0.0,43.8,0.3 +4.689038031319911,4.69,a-cure-i1,2019-20,Waltham - John F Kennedy Middle,03080404, 0.0, 5.2, 10.1, 27.4, 2.0, 0.0, 55.3, 45.4, 54.6, 0.0,44.7,13.100000000000001 +1.7537537537537538,1.75,a-cure-i1,2019-20,Waltham - John W. McDevitt Middle School,03080415, 0.0, 4.1, 7.9, 53.2, 1.5, 0.0, 33.4, 50.2, 49.8, 0.0,66.6,7.3 +1.6991150442477876,1.7,a-cure-i1,2019-20,Waltham - Northeast Elementary School,03080040, 0.2, 8.3, 11.9, 33.8, 2.3, 0.0, 43.5, 49.7, 50.3, 0.0,56.5,6.0 +1,1,a-cure-i1,2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 5.3, 12.8, 40.6, 3.5, 0.3, 37.6, 49.6, 50.4, 0.0,62.4,0.7 +8.568527918781728,5,a-cure-i1,2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.7, 4.1, 70.5, 3.4, 0.0, 21.2, 43.8, 56.2, 0.0,78.8,42.2 +2.1052631578947367,2.11,a-cure-i1,2019-20,Waltham - Waltham Sr High,03080505, 0.1, 3.7, 10.1, 45.0, 1.9, 0.0, 39.2, 45.2, 54.8, 0.1,60.8,8.0 +1,1,a-cure-i1,2019-20,Waltham - William F. Stanley Elementary School,03080005, 0.0, 7.4, 8.1, 46.0, 2.5, 0.0, 36.0, 45.5, 54.5, 0.0,64.0,3.1 +1,1,a-cure-i1,2019-20,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.5, 0.5, 2.1, 1.3, 0.0, 95.5, 48.1, 51.9, 0.0,4.5,0.0 +6.769230769230769,5,a-cure-i1,2019-20,Ware - Ware Junior/Senior High School,03090505, 0.2, 0.9, 2.1, 4.9, 4.5, 0.4, 87.0, 48.7, 51.3, 0.0,13.0,5.5 +1,1,a-cure-i1,2019-20,Ware - Ware Middle School,03090305, 0.3, 0.3, 0.7, 10.1, 4.9, 0.0, 83.7, 46.9, 53.1, 0.0,16.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Wareham - John William Decas,03100003, 1.1, 1.0, 6.3, 8.9, 12.7, 0.0, 70.0, 48.3, 51.7, 0.0,30.0,0.0 +1,1,a-cure-i1,2019-20,Wareham - Minot Forest,03100017, 1.9, 0.9, 7.1, 12.1, 11.5, 0.0, 66.6, 51.4, 48.6, 0.0,33.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 11.4, 11.4, 13.6, 0.0, 63.6, 38.6, 61.4, 0.0,36.4,0.0 +3.68,3.68,a-cure-i1,2019-20,Wareham - Wareham Middle,03100305, 1.1, 0.8, 8.8, 6.7, 12.4, 0.2, 70.0, 49.1, 50.9, 0.0,30.0,6.9 +3.622641509433963,3.62,a-cure-i1,2019-20,Wareham - Wareham Senior High,03100505, 1.6, 1.3, 9.6, 7.5, 11.7, 0.0, 68.2, 49.8, 50.1, 0.2,31.799999999999997,7.2 +4.611764705882353,4.61,a-cure-i1,2019-20,Watertown - Cunniff,03140015, 0.0, 6.8, 3.6, 18.1, 5.5, 0.0, 66.0, 50.5, 49.5, 0.0,34.0,9.8 +1,1,a-cure-i1,2019-20,Watertown - Hosmer,03140020, 0.3, 7.3, 4.0, 15.9, 8.4, 0.1, 63.9, 48.7, 51.3, 0.0,36.1,0.0 +6.324483775811209,5,a-cure-i1,2019-20,Watertown - James Russell Lowell,03140025, 0.2, 5.8, 3.2, 16.7, 7.9, 0.0, 66.1, 51.5, 48.5, 0.0,33.900000000000006,13.4 +1,1,a-cure-i1,2019-20,Watertown - Watertown High,03140505, 1.0, 7.5, 4.6, 20.1, 3.8, 0.0, 62.9, 48.4, 51.6, 0.0,37.1,0.4 +1,1,a-cure-i1,2019-20,Watertown - Watertown Middle,03140305, 0.3, 8.5, 3.8, 18.7, 4.0, 0.0, 64.8, 46.1, 53.9, 0.0,35.2,1.9 +1,1,a-cure-i1,2019-20,Wayland - Claypit Hill School,03150005, 0.0, 10.1, 5.1, 4.3, 5.3, 0.4, 74.7, 51.2, 48.8, 0.0,25.299999999999997,3.3 +5.333333333333334,5,a-cure-i1,2019-20,Wayland - Happy Hollow School,03150015, 0.0, 9.9, 5.5, 4.4, 6.0, 0.0, 74.2, 47.5, 52.5, 0.0,25.799999999999997,8.6 +5.093093093093094,5,a-cure-i1,2019-20,Wayland - Loker School,03150020, 0.0, 17.9, 3.1, 6.5, 5.9, 0.0, 66.7, 50.3, 49.7, 0.0,33.3,10.6 +1,1,a-cure-i1,2019-20,Wayland - Wayland High School,03150505, 0.0, 17.9, 4.4, 4.8, 6.7, 0.1, 66.0, 49.8, 50.2, 0.0,34.0,4.7 +7.268436578171089,5,a-cure-i1,2019-20,Wayland - Wayland Middle School,03150305, 0.2, 16.9, 6.2, 4.6, 5.9, 0.2, 66.1, 51.4, 48.6, 0.0,33.900000000000006,15.399999999999999 +1,1,a-cure-i1,2019-20,Webster - Bartlett High School,03160505, 0.2, 2.5, 7.6, 28.0, 6.7, 0.2, 54.6, 52.3, 47.5, 0.2,45.4,2.9 +1,1,a-cure-i1,2019-20,Webster - Park Avenue Elementary,03160015, 0.1, 1.5, 5.6, 31.1, 6.6, 0.0, 55.1, 45.6, 54.4, 0.0,44.9,0.0 +1,1,a-cure-i1,2019-20,Webster - Webster Middle School,03160315, 0.2, 2.2, 5.1, 30.3, 6.9, 0.2, 55.2, 49.2, 50.8, 0.0,44.8,0.0 +10.666666666666666,5,a-cure-i1,2019-20,Wellesley - Ernest F Upham,03170050, 0.0, 12.0, 4.9, 2.7, 2.7, 0.0, 77.8, 48.4, 51.6, 0.0,22.200000000000003,14.8 +8.533333333333333,5,a-cure-i1,2019-20,Wellesley - Hunnewell,03170025, 0.0, 4.7, 3.5, 7.1, 8.7, 0.0, 76.0, 49.6, 50.4, 0.0,24.0,12.8 +1.9281183932346724,1.93,a-cure-i1,2019-20,Wellesley - John D Hardy,03170020, 0.0, 25.8, 1.6, 7.4, 12.5, 0.0, 52.7, 53.1, 46.9, 0.0,47.3,5.7 +1,1,a-cure-i1,2019-20,Wellesley - Joseph E Fiske,03170015, 0.0, 17.3, 3.7, 7.8, 6.8, 0.0, 64.4, 50.5, 49.5, 0.0,35.599999999999994,0.0 +9.182608695652174,5,a-cure-i1,2019-20,Wellesley - Katharine Lee Bates,03170005, 0.0, 9.9, 3.9, 2.4, 6.9, 0.0, 77.0, 50.4, 49.6, 0.0,23.0,13.200000000000001 +1,1,a-cure-i1,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 19.2, 2.0, 10.1, 5.1, 0.0, 63.6, 51.5, 48.5, 0.0,36.4,0.0 +1,1,a-cure-i1,2019-20,Wellesley - Schofield,03170045, 0.3, 18.4, 3.5, 5.1, 7.2, 0.0, 65.5, 52.9, 47.1, 0.0,34.5,4.1 +1,1,a-cure-i1,2019-20,Wellesley - Sprague Elementary School,03170048, 0.0, 18.0, 3.1, 4.5, 13.2, 0.0, 61.1, 50.4, 49.6, 0.0,38.9,4.5 +2.999999999999999,3.0,a-cure-i1,2019-20,Wellesley - Wellesley Middle,03170305, 0.1, 14.8, 4.2, 5.4, 5.8, 0.0, 69.6, 53.6, 46.4, 0.1,30.400000000000006,5.699999999999999 +5.333333333333334,5,a-cure-i1,2019-20,Wellesley - Wellesley Sr High,03170505, 0.0, 12.5, 3.9, 4.4, 5.3, 0.0, 73.9, 49.1, 50.8, 0.1,26.099999999999994,8.7 +1,1,a-cure-i1,2019-20,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.9, 1.9, 2.8, 12.3, 0.0, 82.1, 47.2, 52.8, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2019-20,West Boylston - Major Edwards Elementary,03220005, 0.0, 2.5, 3.4, 11.8, 5.1, 0.0, 77.2, 47.3, 52.7, 0.0,22.799999999999997,0.0 +9.224489795918371,5,a-cure-i1,2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 0.2, 1.6, 2.6, 12.2, 3.0, 0.0, 80.4, 54.3, 45.7, 0.0,19.599999999999994,11.3 +1,1,a-cure-i1,2019-20,West Bridgewater - Howard School,03230305, 0.3, 1.4, 5.6, 2.8, 5.9, 0.3, 83.6, 51.6, 48.4, 0.0,16.400000000000006,0.0 +1,1,a-cure-i1,2019-20,West Bridgewater - Rose L Macdonald,03230003, 0.3, 0.7, 4.0, 5.7, 4.7, 0.0, 84.5, 50.2, 49.8, 0.0,15.5,0.0 +1,1,a-cure-i1,2019-20,West Bridgewater - Spring Street School,03230005, 0.0, 0.6, 3.8, 3.8, 9.5, 0.0, 82.3, 46.8, 53.2, 0.0,17.700000000000003,0.0 +1,1,a-cure-i1,2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.3, 1.3, 5.9, 4.4, 3.0, 0.0, 85.1, 52.8, 47.2, 0.0,14.900000000000006,2.1 +1,1,a-cure-i1,2019-20,West Springfield - Cowing Early Childhood,03320001, 0.0, 10.5, 7.3, 32.3, 2.4, 0.0, 47.6, 42.7, 57.3, 0.0,52.4,0.0 +1,1,a-cure-i1,2019-20,West Springfield - John Ashley,03320005, 0.0, 7.3, 3.9, 24.9, 6.4, 0.0, 57.5, 51.5, 48.5, 0.0,42.5,0.0 +3.393939393939393,3.39,a-cure-i1,2019-20,West Springfield - John R Fausey,03320010, 0.0, 4.3, 1.7, 16.8, 3.6, 0.0, 73.6, 49.6, 50.4, 0.0,26.400000000000006,5.6 +1,1,a-cure-i1,2019-20,West Springfield - Memorial,03320025, 0.0, 8.9, 3.3, 33.3, 4.7, 0.0, 49.8, 48.8, 51.2, 0.0,50.2,0.0 +1,1,a-cure-i1,2019-20,West Springfield - Mittineague,03320030, 0.0, 3.3, 3.3, 22.0, 3.3, 0.0, 68.1, 53.3, 46.7, 0.0,31.900000000000006,0.0 +1,1,a-cure-i1,2019-20,West Springfield - Philip G Coburn,03320007, 0.2, 17.3, 4.0, 21.6, 1.3, 0.0, 55.5, 53.0, 47.0, 0.0,44.5,0.0 +1,1,a-cure-i1,2019-20,West Springfield - Tatham,03320040, 0.0, 3.8, 0.4, 11.1, 3.8, 0.0, 80.9, 46.2, 53.8, 0.0,19.099999999999994,0.0 +1,1,a-cure-i1,2019-20,West Springfield - West Springfield High,03320505, 0.2, 7.3, 4.2, 20.0, 2.2, 0.0, 66.2, 47.6, 52.4, 0.0,33.8,3.9 +1,1,a-cure-i1,2019-20,West Springfield - West Springfield Middle,03320305, 0.0, 8.1, 3.5, 19.6, 3.7, 0.1, 64.9, 49.2, 50.8, 0.0,35.099999999999994,2.8 +1,1,a-cure-i1,2019-20,Westborough - Annie E Fales,03210010, 0.3, 42.0, 0.9, 2.9, 2.9, 0.3, 50.7, 50.7, 49.3, 0.0,49.3,0.0 +1,1,a-cure-i1,2019-20,Westborough - Elsie A Hastings Elementary,03210025, 0.8, 44.3, 2.0, 14.7, 2.4, 0.0, 35.8, 49.7, 50.3, 0.0,64.2,0.0 +1,1,a-cure-i1,2019-20,Westborough - J Harding Armstrong,03210005, 0.0, 37.7, 1.7, 9.3, 4.1, 0.0, 47.3, 45.6, 54.4, 0.0,52.7,0.0 +1,1,a-cure-i1,2019-20,Westborough - Mill Pond School,03210045, 0.1, 35.3, 3.4, 5.7, 2.2, 0.0, 53.4, 48.3, 51.7, 0.0,46.6,0.0 +1,1,a-cure-i1,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 32.5, 0.9, 7.9, 3.3, 0.2, 55.3, 50.9, 49.1, 0.0,44.7,4.4 +1,1,a-cure-i1,2019-20,Westborough - Westborough High,03210505, 0.1, 27.0, 1.6, 7.0, 3.5, 0.1, 60.8, 49.1, 50.8, 0.1,39.2,4.6 +1,1,a-cure-i1,2019-20,Westfield - Abner Gibbs,03250020, 0.0, 8.7, 4.3, 27.4, 3.8, 0.0, 55.8, 46.6, 53.4, 0.0,44.2,0.0 +1,1,a-cure-i1,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 1.8, 1.8, 21.6, 4.1, 0.0, 70.8, 47.4, 52.6, 0.0,29.200000000000003,0.0 +2.8932461873638347,2.89,a-cure-i1,2019-20,Westfield - Franklin Ave,03250015, 0.0, 5.3, 3.4, 33.3, 3.9, 0.0, 54.1, 54.1, 45.9, 0.0,45.9,8.3 +1,1,a-cure-i1,2019-20,Westfield - Highland,03250025, 0.0, 2.2, 0.3, 10.1, 2.7, 0.0, 84.7, 51.5, 48.5, 0.0,15.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Westfield - Munger Hill,03250033, 0.0, 3.8, 2.1, 12.3, 2.7, 0.0, 79.1, 47.7, 52.3, 0.0,20.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Westfield - Paper Mill,03250036, 0.0, 2.5, 3.2, 21.5, 4.7, 0.3, 67.8, 46.4, 53.6, 0.0,32.2,0.0 +1,1,a-cure-i1,2019-20,Westfield - Southampton Road,03250040, 0.0, 3.0, 0.6, 13.1, 5.2, 0.0, 78.1, 46.5, 53.5, 0.0,21.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Westfield - Westfield High,03250505, 0.2, 3.2, 2.3, 15.0, 2.4, 0.0, 76.9, 52.8, 47.0, 0.2,23.099999999999994,1.0 +1,1,a-cure-i1,2019-20,Westfield - Westfield Intermediate School,03250075, 0.3, 3.6, 2.7, 16.9, 3.0, 0.0, 73.5, 47.3, 52.7, 0.0,26.5,1.6 +1,1,a-cure-i1,2019-20,Westfield - Westfield Middle School,03250310, 0.0, 2.4, 1.8, 16.5, 2.5, 0.0, 76.8, 49.9, 50.1, 0.0,23.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Westfield - Westfield Technical Academy,03250605, 0.2, 1.4, 1.4, 10.7, 1.9, 0.2, 84.2, 35.2, 64.8, 0.0,15.799999999999997,1.3 +1,1,a-cure-i1,2019-20,Westford - Abbot Elementary,03260004, 0.0, 23.8, 0.3, 1.1, 3.8, 0.0, 71.1, 52.4, 47.6, 0.0,28.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Westford - Blanchard Middle,03260310, 0.6, 30.2, 1.7, 3.5, 3.9, 0.0, 60.1, 48.8, 51.2, 0.0,39.9,2.6 +1,1,a-cure-i1,2019-20,Westford - Col John Robinson,03260025, 0.0, 31.4, 0.7, 1.5, 6.6, 0.0, 59.9, 47.8, 52.2, 0.0,40.1,0.0 +1,1,a-cure-i1,2019-20,Westford - Day Elementary,03260007, 0.0, 41.2, 1.2, 3.5, 6.4, 0.0, 47.8, 52.2, 47.8, 0.0,52.2,0.0 +1,1,a-cure-i1,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 28.5, 0.8, 2.8, 4.0, 0.0, 63.8, 50.8, 49.2, 0.0,36.2,0.0 +1,1,a-cure-i1,2019-20,Westford - Millennium Elementary,03260013, 0.0, 34.3, 2.9, 1.4, 10.0, 0.0, 51.4, 48.6, 51.4, 0.0,48.6,0.0 +1,1,a-cure-i1,2019-20,Westford - Nabnasset,03260015, 0.0, 17.0, 0.6, 0.6, 2.7, 0.0, 79.0, 47.1, 52.9, 0.0,21.0,0.0 +1,1,a-cure-i1,2019-20,Westford - Rita E. Miller Elementary School,03260055, 0.3, 37.1, 2.0, 2.0, 4.8, 0.0, 53.9, 48.9, 51.1, 0.0,46.1,4.9 +1,1,a-cure-i1,2019-20,Westford - Stony Brook School,03260330, 0.2, 25.9, 1.0, 2.3, 3.0, 0.0, 67.6, 52.2, 47.8, 0.0,32.400000000000006,1.9 +3.909967845659165,3.91,a-cure-i1,2019-20,Westford - Westford Academy,03260505, 0.1, 25.0, 1.0, 1.5, 3.5, 0.1, 68.9, 47.9, 52.1, 0.0,31.099999999999994,7.6000000000000005 +1,1,a-cure-i1,2019-20,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 5.0, 1.7, 0.0, 93.3, 45.8, 54.2, 0.0,6.700000000000003,0.0 +2.5777777777777775,2.58,a-cure-i1,2019-20,Weston - Country,03300010, 0.0, 16.5, 7.1, 7.1, 5.4, 0.0, 64.0, 51.5, 48.5, 0.0,36.0,5.8 +5.278350515463918,5,a-cure-i1,2019-20,Weston - Field Elementary School,03300012, 0.0, 17.6, 6.5, 7.5, 7.2, 0.0, 61.2, 52.4, 47.6, 0.0,38.8,12.8 +8.312312312312313,5,a-cure-i1,2019-20,Weston - Weston High,03300505, 0.5, 18.7, 6.3, 3.5, 4.4, 0.0, 66.7, 48.1, 51.9, 0.0,33.3,17.3 +5.647058823529411,5,a-cure-i1,2019-20,Weston - Weston Middle,03300305, 0.0, 17.5, 6.6, 6.8, 6.6, 0.0, 62.6, 46.4, 53.6, 0.0,37.4,13.2 +1,1,a-cure-i1,2019-20,Weston - Woodland,03300015, 0.0, 16.1, 7.7, 8.4, 3.2, 0.4, 64.2, 48.1, 51.9, 0.0,35.8,0.6 +1,1,a-cure-i1,2019-20,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.8, 3.2, 2.2, 0.0, 93.8, 52.0, 48.0, 0.0,6.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Westport - Westport Elementary,03310030, 0.2, 0.2, 0.2, 3.9, 5.0, 0.0, 90.5, 43.9, 56.1, 0.0,9.5,0.0 +1,1,a-cure-i1,2019-20,Westport - Westport Junior/Senior High School,03310515, 0.5, 0.9, 0.5, 3.5, 3.4, 0.0, 91.1, 44.5, 55.5, 0.0,8.900000000000006,2.2 +5.408450704225351,5,a-cure-i1,2019-20,Westwood - Deerfield School,03350010, 0.0, 12.9, 2.1, 5.2, 8.2, 0.0, 71.6, 45.9, 54.1, 0.0,28.400000000000006,9.6 +5.572413793103449,5,a-cure-i1,2019-20,Westwood - Downey,03350012, 0.0, 17.5, 0.3, 4.5, 6.3, 0.3, 71.0, 43.0, 57.0, 0.0,29.0,10.100000000000001 +1,1,a-cure-i1,2019-20,Westwood - E W Thurston Middle,03350305, 0.1, 12.3, 2.3, 5.3, 3.4, 0.0, 76.5, 46.4, 53.6, 0.0,23.5,1.7 +1,1,a-cure-i1,2019-20,Westwood - Martha Jones,03350017, 0.0, 6.3, 0.4, 4.5, 8.2, 0.0, 80.7, 49.8, 50.2, 0.0,19.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Westwood - Paul Hanlon,03350015, 0.0, 17.2, 0.5, 5.7, 4.8, 0.0, 71.8, 46.4, 53.6, 0.0,28.200000000000003,0.0 +6.963730569948188,5,a-cure-i1,2019-20,Westwood - Westwood High,03350505, 0.0, 10.1, 3.7, 3.4, 2.1, 0.0, 80.7, 55.0, 45.0, 0.0,19.299999999999997,8.4 +1,1,a-cure-i1,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, 12.5, 2.5, 5.0, 7.5, 0.0, 72.5, 42.5, 57.5, 0.0,27.5,0.0 +1,1,a-cure-i1,2019-20,Westwood - William E Sheehan,03350025, 0.0, 8.4, 0.6, 3.5, 7.4, 0.0, 80.0, 49.7, 50.3, 0.0,20.0,0.0 +1,1,a-cure-i1,2019-20,Weymouth - Abigail Adams Middle School,03360310, 0.2, 6.5, 7.0, 12.0, 4.7, 0.1, 69.4, 51.4, 48.6, 0.0,30.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Weymouth - Academy Avenue,03360005, 0.0, 9.0, 3.5, 11.9, 7.7, 0.6, 67.1, 50.0, 50.0, 0.0,32.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Weymouth - Frederick C Murphy,03360050, 0.0, 3.5, 5.4, 13.9, 3.5, 0.0, 73.8, 43.6, 56.4, 0.0,26.200000000000003,0.0 +3.0537634408602146,3.05,a-cure-i1,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 19.1, 5.0, 5.0, 8.0, 0.0, 62.8, 39.2, 60.3, 0.5,37.2,7.1 +1,1,a-cure-i1,2019-20,Weymouth - Lawrence W Pingree,03360065, 0.0, 2.5, 5.5, 8.0, 5.0, 0.0, 78.9, 54.3, 45.7, 0.0,21.099999999999994,0.0 +2.747474747474747,2.75,a-cure-i1,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0.3, 5.1, 8.6, 11.8, 3.8, 0.1, 70.3, 51.5, 48.5, 0.0,29.700000000000003,5.1 +1,1,a-cure-i1,2019-20,Weymouth - Ralph Talbot,03360085, 0.0, 7.8, 4.5, 12.7, 3.7, 0.0, 71.4, 50.2, 49.8, 0.0,28.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Weymouth - Thomas V Nash,03360060, 0.0, 2.6, 3.2, 5.2, 3.9, 0.0, 85.1, 56.5, 43.5, 0.0,14.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.7, 13.3, 4.6, 10.2, 4.6, 0.0, 66.7, 47.0, 53.0, 0.0,33.3,0.0 +1,1,a-cure-i1,2019-20,Weymouth - Wessagusset,03360110, 0.0, 4.7, 2.8, 7.1, 4.3, 0.0, 81.0, 45.5, 54.5, 0.0,19.0,0.0 +1,1,a-cure-i1,2019-20,Weymouth - Weymouth High School,03360505, 0.2, 5.0, 5.8, 9.0, 3.8, 0.1, 76.2, 48.9, 50.9, 0.2,23.799999999999997,2.9000000000000004 +1,1,a-cure-i1,2019-20,Weymouth - William Seach,03360080, 0.0, 11.8, 17.0, 22.5, 7.2, 0.0, 41.5, 52.3, 47.7, 0.0,58.5,0.0 +1,1,a-cure-i1,2019-20,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.8, 3.9, 1.6, 0.0, 93.7, 49.6, 50.4, 0.0,6.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Whitman-Hanson - Hanson Middle School,07800315, 0.2, 1.7, 1.1, 4.9, 1.9, 0.0, 90.1, 50.2, 49.8, 0.0,9.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Whitman-Hanson - Indian Head,07800035, 0.2, 1.6, 1.2, 4.4, 2.2, 0.0, 90.4, 49.0, 51.0, 0.0,9.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Whitman-Hanson - John H Duval,07800030, 0.4, 1.8, 3.6, 7.8, 4.9, 0.2, 81.2, 46.9, 53.1, 0.0,18.799999999999997,4.4 +1,1,a-cure-i1,2019-20,Whitman-Hanson - Louise A Conley,07800010, 0.6, 1.0, 2.2, 6.4, 3.4, 0.0, 86.5, 47.7, 52.3, 0.0,13.5,0.0 +1,1,a-cure-i1,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 2.8, 2.8, 4.6, 6.4, 0.0, 83.5, 38.5, 61.5, 0.0,16.5,0.0 +1,1,a-cure-i1,2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.6, 1.1, 3.2, 4.1, 2.2, 0.3, 88.4, 49.4, 50.6, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Whitman-Hanson - Whitman Middle,07800310, 0.7, 1.0, 5.9, 6.7, 3.6, 0.0, 82.0, 50.8, 49.2, 0.0,18.0,3.4 +1,1,a-cure-i1,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.5, 1.3, 2.5, 23.8, 2.8, 0.0, 69.1, 46.0, 53.8, 0.2,30.900000000000006,1.7 +1,1,a-cure-i1,2019-20,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 2.2, 2.2, 2.2, 0.0, 0.0, 93.4, 51.8, 48.2, 0.0,6.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Wilmington - Boutwell,03420005, 0.0, 7.9, 0.7, 5.0, 6.5, 0.0, 79.9, 43.2, 56.8, 0.0,20.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Wilmington - North Intermediate,03420060, 0.0, 6.1, 0.4, 3.7, 4.1, 0.0, 85.8, 50.0, 50.0, 0.0,14.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Wilmington - Shawsheen Elementary,03420025, 0.3, 7.2, 0.9, 5.2, 4.0, 0.3, 82.1, 50.0, 50.0, 0.0,17.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Wilmington - West Intermediate,03420080, 0.0, 5.1, 1.7, 7.7, 2.1, 0.0, 83.4, 48.1, 51.9, 0.0,16.599999999999994,0.0 +7.9999999999999964,5,a-cure-i1,2019-20,Wilmington - Wildwood,03420015, 0.0, 4.4, 1.6, 4.4, 6.0, 0.0, 83.6, 39.9, 60.1, 0.0,16.400000000000006,8.2 +1,1,a-cure-i1,2019-20,Wilmington - Wilmington High,03420505, 0.0, 5.4, 1.5, 4.3, 3.0, 0.0, 85.8, 51.5, 48.3, 0.2,14.200000000000003,4.8 +1,1,a-cure-i1,2019-20,Wilmington - Wilmington Middle School,03420330, 0.1, 4.2, 1.6, 4.6, 3.1, 0.1, 86.3, 48.7, 51.3, 0.0,13.700000000000003,0.2 +1,1,a-cure-i1,2019-20,Wilmington - Woburn Street,03420020, 0.5, 4.1, 1.8, 4.1, 4.6, 0.0, 84.9, 47.6, 52.4, 0.0,15.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Winchendon - Memorial,03430040, 0.0, 1.7, 0.7, 5.9, 3.3, 0.0, 88.4, 48.8, 51.2, 0.0,11.599999999999994,0.0 +1,1,a-cure-i1,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 5.9, 0.0, 5.9, 0.0, 88.2, 50.0, 50.0, 0.0,11.799999999999997,0.0 +1,1,a-cure-i1,2019-20,Winchendon - Murdock High School,03430515, 0.4, 5.0, 1.1, 7.7, 2.7, 0.0, 83.1, 47.9, 52.1, 0.0,16.900000000000006,4.8 +6.675496688741724,5,a-cure-i1,2019-20,Winchendon - Murdock Middle School,03430315, 0.0, 2.3, 1.5, 7.5, 3.4, 0.4, 84.9, 50.9, 49.1, 0.0,15.099999999999994,6.3 +1,1,a-cure-i1,2019-20,Winchendon - Toy Town Elementary,03430050, 0.0, 1.4, 1.1, 8.0, 3.6, 0.0, 85.9, 39.5, 60.5, 0.0,14.099999999999994,0.0 +1,1,a-cure-i1,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 2.4, 0.0, 3.5, 0.0, 94.1, 48.2, 51.8, 0.0,5.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Winchester - Ambrose Elementary,03440045, 0.0, 6.0, 0.0, 1.3, 6.0, 0.0, 86.7, 47.9, 52.1, 0.0,13.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Winchester - Lincoln Elementary,03440005, 0.0, 10.7, 0.0, 4.0, 7.1, 0.0, 78.1, 51.0, 49.0, 0.0,21.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Winchester - Lynch Elementary,03440020, 0.0, 28.8, 1.7, 4.4, 6.5, 0.0, 58.6, 44.7, 55.3, 0.0,41.4,0.0 +1,1,a-cure-i1,2019-20,Winchester - McCall Middle,03440305, 0.3, 17.7, 1.1, 3.1, 6.9, 0.0, 71.0, 49.8, 50.1, 0.1,29.0,3.6 +1,1,a-cure-i1,2019-20,Winchester - Muraco Elementary,03440040, 0.3, 19.9, 1.0, 2.6, 8.4, 0.0, 67.8, 50.6, 49.4, 0.0,32.2,0.0 +4.550898203592814,4.55,a-cure-i1,2019-20,Winchester - Vinson-Owen Elementary,03440025, 0.0, 20.4, 0.7, 3.1, 9.2, 0.0, 66.6, 50.9, 49.1, 0.0,33.400000000000006,9.5 +1,1,a-cure-i1,2019-20,Winchester - Winchester High School,03440505, 0.3, 18.9, 1.5, 3.9, 3.7, 0.1, 71.7, 51.3, 48.6, 0.1,28.299999999999997,1.3 +1,1,a-cure-i1,2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 1.2, 15.7, 1.9, 0.0, 81.1, 47.7, 52.3, 0.0,18.900000000000006,0.0 +1,1,a-cure-i1,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 1.2, 1.2, 15.0, 0.8, 0.0, 81.7, 55.6, 44.4, 0.0,18.299999999999997,0.0 +1,1,a-cure-i1,2019-20,Winthrop - Winthrop High School,03460505, 0.0, 1.0, 1.2, 15.4, 0.5, 0.0, 81.9, 49.7, 50.3, 0.0,18.099999999999994,2.6 +1,1,a-cure-i1,2019-20,Winthrop - Winthrop Middle School,03460305, 0.2, 1.0, 1.7, 18.8, 1.5, 0.0, 76.9, 49.8, 50.2, 0.0,23.099999999999994,2.6 +1,1,a-cure-i1,2019-20,Woburn - Clyde Reeves,03470040, 1.3, 8.0, 8.0, 4.1, 4.9, 0.0, 73.6, 50.5, 49.5, 0.0,26.400000000000006,0.0 +3.3239436619718306,3.32,a-cure-i1,2019-20,Woburn - Daniel L Joyce Middle School,03470410, 0.2, 4.1, 7.6, 13.4, 3.2, 0.0, 71.6, 47.1, 52.9, 0.0,28.400000000000006,5.9 +1,1,a-cure-i1,2019-20,Woburn - Goodyear Elementary School,03470005, 1.0, 6.8, 7.4, 14.5, 3.9, 0.0, 66.6, 48.6, 51.4, 0.0,33.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 6.8, 1.8, 7.3, 2.4, 0.0, 81.6, 49.6, 50.4, 0.0,18.400000000000006,0.0 +1,1,a-cure-i1,2019-20,Woburn - John F Kennedy Middle School,03470405, 0.2, 7.8, 8.0, 9.1, 3.4, 0.4, 71.0, 52.0, 48.0, 0.0,29.0,3.6 +1,1,a-cure-i1,2019-20,Woburn - Linscott-Rumford,03470025, 0.5, 14.3, 9.9, 8.2, 6.0, 0.5, 60.4, 57.1, 42.9, 0.0,39.6,0.0 +1,1,a-cure-i1,2019-20,Woburn - Malcolm White,03470055, 0.6, 4.5, 4.5, 20.5, 5.8, 0.3, 63.8, 53.2, 46.8, 0.0,36.2,0.0 +2.281124497991968,2.28,a-cure-i1,2019-20,Woburn - Mary D Altavesta,03470065, 0.4, 19.2, 7.1, 17.6, 5.0, 0.4, 50.2, 49.4, 50.6, 0.0,49.8,7.1 +1,1,a-cure-i1,2019-20,Woburn - Shamrock,03470043, 0.3, 6.6, 10.3, 14.8, 3.1, 0.0, 65.0, 48.4, 51.6, 0.0,35.0,0.0 +1,1,a-cure-i1,2019-20,Woburn - Woburn High,03470505, 0.5, 6.3, 6.7, 13.1, 1.5, 0.1, 71.7, 51.6, 48.3, 0.1,28.299999999999997,4.0 +1,1,a-cure-i1,2019-20,Worcester - Belmont Street Community,03480020, 0.0, 6.6, 19.2, 50.2, 4.0, 0.0, 20.0, 46.7, 53.3, 0.0,80.0,0.0 +2.820809248554913,2.82,a-cure-i1,2019-20,Worcester - Burncoat Middle School,03480405, 0.1, 4.4, 18.3, 42.1, 4.2, 0.0, 30.8, 47.6, 52.4, 0.0,69.2,12.2 +2.9090909090909096,2.91,a-cure-i1,2019-20,Worcester - Burncoat Senior High,03480503, 0.1, 3.6, 18.6, 42.4, 4.6, 0.0, 30.7, 47.6, 52.4, 0.0,69.3,12.600000000000001 +1.309090909090909,1.31,a-cure-i1,2019-20,Worcester - Burncoat Street,03480035, 0.0, 2.1, 15.6, 55.0, 3.9, 0.4, 23.0, 52.1, 47.9, 0.0,77.0,6.3 +1,1,a-cure-i1,2019-20,Worcester - Canterbury,03480045, 0.3, 11.7, 12.8, 57.7, 3.6, 0.0, 13.9, 45.4, 54.6, 0.0,86.1,0.0 +1,1,a-cure-i1,2019-20,Worcester - Chandler Elementary Community,03480050, 0.2, 7.1, 12.2, 61.1, 2.8, 0.0, 16.6, 46.7, 53.3, 0.0,83.4,4.1 +6.042352941176471,5,a-cure-i1,2019-20,Worcester - Chandler Magnet,03480052, 0.0, 1.8, 2.9, 79.3, 1.0, 0.0, 15.0, 52.8, 47.2, 0.0,85.0,32.1 +1,1,a-cure-i1,2019-20,Worcester - City View,03480053, 0.0, 2.3, 16.4, 50.7, 6.1, 0.0, 24.5, 48.8, 51.2, 0.0,75.5,4.3 +3.479744136460554,3.48,a-cure-i1,2019-20,Worcester - Claremont Academy,03480350, 0.2, 8.3, 10.7, 73.1, 1.5, 0.0, 6.2, 48.9, 51.1, 0.0,93.8,20.4 +2.4821002386634845,2.48,a-cure-i1,2019-20,Worcester - Clark St Community,03480055, 0.4, 4.2, 20.4, 55.1, 3.8, 0.0, 16.2, 50.9, 49.1, 0.0,83.8,13.0 +1,1,a-cure-i1,2019-20,Worcester - Columbus Park,03480060, 0.9, 8.2, 13.3, 52.2, 2.6, 0.0, 22.7, 48.5, 51.5, 0.0,77.3,4.3 +2.226537216828479,2.23,a-cure-i1,2019-20,Worcester - Doherty Memorial High,03480512, 0.2, 5.9, 16.7, 34.4, 4.5, 0.1, 38.2, 45.1, 54.9, 0.0,61.8,8.6 +3.8507078507078503,3.85,a-cure-i1,2019-20,Worcester - Elm Park Community,03480095, 0.0, 2.1, 16.2, 56.6, 2.8, 0.0, 22.3, 49.1, 50.9, 0.0,77.7,18.7 +1,1,a-cure-i1,2019-20,Worcester - Flagg Street,03480090, 0.5, 3.6, 6.2, 13.8, 3.6, 0.0, 72.2, 51.2, 48.8, 0.0,27.799999999999997,0.0 +2.953451043338684,2.95,a-cure-i1,2019-20,Worcester - Forest Grove Middle,03480415, 0.3, 6.3, 14.4, 36.7, 4.6, 0.0, 37.7, 47.3, 52.7, 0.0,62.3,11.5 +1,1,a-cure-i1,2019-20,Worcester - Francis J McGrath Elementary,03480177, 0.0, 3.8, 17.7, 37.6, 8.4, 0.0, 32.5, 51.9, 48.1, 0.0,67.5,0.0 +1.5069252077562325,1.51,a-cure-i1,2019-20,Worcester - Gates Lane,03480110, 0.2, 12.8, 15.7, 38.3, 5.2, 0.0, 27.8, 45.5, 54.5, 0.0,72.2,6.8 +2.341034103410341,2.34,a-cure-i1,2019-20,Worcester - Goddard School/Science Technical,03480100, 1.3, 11.5, 11.5, 63.6, 2.9, 0.0, 9.1, 47.9, 52.1, 0.0,90.9,13.3 +1.5287958115183247,1.53,a-cure-i1,2019-20,Worcester - Grafton Street,03480115, 0.0, 5.1, 19.2, 47.7, 4.3, 0.0, 23.6, 48.5, 51.5, 0.0,76.4,7.300000000000001 +7.865168539325844,5,a-cure-i1,2019-20,Worcester - Head Start,03480002, 0.8, 3.3, 21.9, 5.9, 3.8, 0.0, 64.4, 51.4, 48.6, 0.0,35.599999999999994,17.5 +4.035523978685613,4.04,a-cure-i1,2019-20,Worcester - Heard Street,03480136, 0.0, 8.0, 13.3, 26.6, 8.4, 0.0, 43.7, 49.0, 51.0, 0.0,56.3,14.2 +1,1,a-cure-i1,2019-20,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 1.9, 32.8, 47.8, 4.9, 0.0, 12.6, 50.7, 49.3, 0.0,87.4,2.6 +4.093693693693694,4.09,a-cure-i1,2019-20,Worcester - Lake View,03480145, 0.3, 8.0, 18.1, 22.4, 6.7, 0.0, 44.5, 47.2, 52.8, 0.0,55.5,14.2 +1,1,a-cure-i1,2019-20,Worcester - Lincoln Street,03480160, 0.0, 6.6, 21.4, 54.6, 3.1, 0.0, 14.4, 46.3, 53.7, 0.0,85.6,0.0 +2.0213523131672595,2.02,a-cure-i1,2019-20,Worcester - May Street,03480175, 0.0, 8.6, 12.8, 23.3, 11.2, 0.3, 43.8, 50.5, 49.5, 0.0,56.2,7.1 +4.484304932735426,4.48,a-cure-i1,2019-20,Worcester - Midland Street,03480185, 0.0, 8.1, 7.7, 19.4, 9.5, 0.0, 55.4, 45.5, 54.5, 0.0,44.6,12.5 +1,1,a-cure-i1,2019-20,Worcester - Nelson Place,03480200, 0.0, 5.8, 13.0, 19.3, 7.0, 0.0, 55.0, 38.7, 61.3, 0.0,45.0,3.1 +3.060240963855421,3.06,a-cure-i1,2019-20,Worcester - Norrback Avenue,03480202, 0.0, 4.6, 26.3, 31.3, 4.3, 0.0, 33.6, 47.1, 52.9, 0.0,66.4,12.7 +5.053658536585366,5,a-cure-i1,2019-20,Worcester - North High,03480515, 0.1, 5.7, 22.2, 50.8, 3.1, 0.0, 18.0, 47.7, 52.3, 0.0,82.0,25.900000000000002 +2.139154160982265,2.14,a-cure-i1,2019-20,Worcester - Quinsigamond,03480210, 0.1, 5.1, 17.3, 46.6, 4.0, 0.0, 26.7, 46.2, 53.8, 0.0,73.3,9.8 +4.894117647058823,4.89,a-cure-i1,2019-20,Worcester - Rice Square,03480215, 0.0, 6.1, 21.2, 44.4, 4.8, 0.0, 23.5, 49.3, 50.7, 0.0,76.5,23.4 +4.929159802306424,4.93,a-cure-i1,2019-20,Worcester - Roosevelt,03480220, 0.3, 4.7, 20.7, 29.6, 5.3, 0.1, 39.3, 49.2, 50.8, 0.0,60.7,18.7 +3.240506329113924,3.24,a-cure-i1,2019-20,Worcester - South High Community,03480520, 0.1, 11.0, 18.1, 46.7, 3.0, 0.0, 21.0, 48.4, 51.6, 0.0,79.0,16.0 +2.7570621468926553,2.76,a-cure-i1,2019-20,Worcester - Sullivan Middle,03480423, 0.2, 9.5, 15.4, 41.4, 4.3, 0.0, 29.2, 49.9, 50.1, 0.0,70.8,12.2 +1,1,a-cure-i1,2019-20,Worcester - Tatnuck,03480230, 0.2, 6.4, 21.9, 26.1, 4.7, 0.2, 40.5, 49.2, 50.8, 0.0,59.5,0.0 +1.7464788732394367,1.75,a-cure-i1,2019-20,Worcester - Thorndyke Road,03480235, 0.0, 7.1, 16.7, 29.1, 4.0, 0.0, 43.2, 49.2, 50.8, 0.0,56.8,6.2 +1,1,a-cure-i1,2019-20,Worcester - Union Hill School,03480240, 0.0, 1.6, 12.5, 64.4, 2.6, 0.0, 19.0, 49.6, 50.4, 0.0,81.0,4.8 +1.4529540481400438,1.45,a-cure-i1,2019-20,Worcester - University Pk Campus School,03480285, 0.4, 18.8, 13.5, 53.9, 4.9, 0.0, 8.6, 51.4, 48.6, 0.0,91.4,8.3 +1.8673218673218672,1.87,a-cure-i1,2019-20,Worcester - Vernon Hill School,03480280, 0.2, 1.9, 25.4, 50.0, 3.9, 0.0, 18.6, 46.6, 53.4, 0.0,81.4,9.5 +1,1,a-cure-i1,2019-20,Worcester - Wawecus Road School,03480026, 0.0, 9.1, 11.7, 40.3, 5.2, 0.0, 33.8, 49.4, 50.6, 0.0,66.2,0.0 +2.1032863849765255,2.1,a-cure-i1,2019-20,Worcester - West Tatnuck,03480260, 0.3, 5.7, 9.1, 19.9, 7.7, 0.0, 57.4, 49.7, 50.3, 0.0,42.6,5.6 +1.2427184466019416,1.24,a-cure-i1,2019-20,Worcester - Woodland Academy,03480030, 0.5, 8.0, 10.3, 71.9, 2.0, 0.0, 7.3, 49.4, 50.6, 0.0,92.7,7.2 +1,1,a-cure-i1,2019-20,Worcester - Worcester Arts Magnet School,03480225, 0.2, 5.9, 19.8, 21.5, 4.4, 0.0, 48.3, 50.5, 49.5, 0.0,51.7,0.0 +4.58809234507898,4.59,a-cure-i1,2019-20,Worcester - Worcester East Middle,03480420, 0.1, 7.6, 19.5, 50.8, 4.1, 0.1, 17.7, 51.1, 48.9, 0.0,82.3,23.6 +1.4545454545454546,1.45,a-cure-i1,2019-20,Worcester - Worcester Technical High,03480605, 0.1, 8.0, 16.6, 36.7, 3.3, 0.1, 35.1, 56.0, 44.0, 0.0,64.9,5.9 +1,1,a-cure-i1,2019-20,Worthington - R. H. Conwell,03490010, 2.3, 0.0, 0.0, 4.5, 3.4, 0.0, 89.8, 51.1, 48.9, 0.0,10.200000000000003,0.0 +1,1,a-cure-i1,2019-20,Wrentham - Charles E Roderick,03500010, 1.0, 2.8, 1.0, 5.0, 5.0, 0.3, 85.0, 48.8, 51.3, 0.0,15.0,0.0 +1,1,a-cure-i1,2019-20,Wrentham - Delaney,03500003, 0.0, 2.7, 1.6, 5.1, 5.1, 0.0, 85.5, 48.7, 51.3, 0.0,14.5,0.0 +1.1556662515566627,1.16,a-cure-i1,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.2, 3.4, 51.3, 22.7, 2.5, 0.1, 19.7, 52.5, 47.5,80.3,5.800000000000001 +1,1,a-cure-i1,2018-19,Abington - Abington Early Education Program,00010001, 0.0, 1.1, 10.0, 10.0, 0.0, 0.0, 78.9, 50.0, 50.0,21.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Abington - Abington High,00010505, 0.0, 2.4, 3.9, 7.9, 0.7, 0.2, 85.0, 51.0, 49.0,15.0,3.9 +12.698412698412705,5,a-cure-i1,2018-19,Abington - Abington Middle School,00010405, 0.4, 1.8, 2.1, 7.1, 1.2, 0.0, 87.4, 47.6, 52.4,12.599999999999994,10.0 +1,1,a-cure-i1,2018-19,Abington - Beaver Brook Elementary,00010020, 1.1, 2.4, 4.8, 7.3, 0.4, 0.0, 84.0, 49.5, 50.5,16.0,0.0 +1,1,a-cure-i1,2018-19,Abington - Woodsdale Elementary School,00010015, 0.0, 3.1, 2.7, 7.1, 1.4, 0.3, 85.4, 49.7, 50.3,14.599999999999994,0.0 +9.43139407244786,5,a-cure-i1,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 1.1, 60.5, 27.0, 2.3, 0.2, 8.9, 49.2, 50.8,91.1,53.7 +1,1,a-cure-i1,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.2, 32.5, 2.0, 3.8, 4.7, 0.0, 56.8, 48.5, 51.5,43.2,3.0 +1,1,a-cure-i1,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 0.4, 31.5, 1.3, 5.0, 3.2, 0.0, 58.6, 51.9, 48.1,41.4,3.8 +1,1,a-cure-i1,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.2, 20.5, 1.5, 2.2, 7.7, 0.5, 67.4, 46.9, 53.1,32.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 34.3, 5.7, 7.6, 9.5, 0.0, 42.9, 45.7, 54.3,57.1,0.0 +1.4913448735019974,1.49,a-cure-i1,2018-19,Acton-Boxborough - Luther Conant School,06000030, 0.0, 61.5, 2.7, 7.1, 3.6, 0.2, 24.9, 48.6, 51.4,75.1,7.0 +1,1,a-cure-i1,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0.4, 12.3, 3.5, 10.0, 6.7, 0.0, 67.1, 49.4, 50.6,32.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Acton-Boxborough - Merriam School,06000010, 0.0, 20.9, 2.0, 6.5, 3.9, 0.2, 66.5, 48.8, 51.2,33.5,3.9 +1,1,a-cure-i1,2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.5, 55.6, 2.9, 5.1, 2.9, 0.0, 33.0, 45.2, 54.8,67.0,0.0 +1,1,a-cure-i1,2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.3, 35.0, 2.9, 4.7, 3.4, 0.0, 53.7, 45.7, 54.3,46.3,3.4 +1,1,a-cure-i1,2018-19,Acushnet - Acushnet Elementary School,00030025, 0.2, 0.4, 0.7, 4.1, 3.4, 0.0, 91.3, 50.1, 49.9,8.700000000000003,3.1 +1,1,a-cure-i1,2018-19,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.5, 0.9, 2.3, 1.6, 0.0, 94.8, 46.9, 53.1,5.200000000000003,3.4 +1,1,a-cure-i1,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.8, 2.1, 2.4, 4.3, 0.0, 90.4, 48.8, 51.2,9.599999999999994,0.0 +9.230769230769226,5,a-cure-i1,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0.3, 1.8, 4.9, 2.6, 0.8, 0.0, 89.6, 47.7, 52.3,10.400000000000006,6.0 +1,1,a-cure-i1,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.2, 0.2, 4.2, 3.7, 2.0, 0.2, 89.3, 49.0, 51.0,10.700000000000003,0.9 +4.160990712074304,4.16,a-cure-i1,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.3, 17.4, 1.8, 5.7, 7.1, 0.0, 67.7, 48.0, 52.0,32.3,8.4 +1,1,a-cure-i1,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, 8.0, 1.9, 7.4, 1.9, 0.0, 80.9, 51.2, 48.8,19.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Agawam - Agawam High,00050505, 0.1, 2.0, 1.6, 6.4, 2.2, 0.0, 87.7, 49.9, 50.1,12.299999999999997,1.1 +1,1,a-cure-i1,2018-19,Agawam - Agawam Junior High,00050405, 0.0, 4.4, 2.4, 7.3, 2.7, 0.0, 83.2, 46.2, 53.8,16.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Agawam - Benjamin J Phelps,00050020, 0.0, 2.3, 1.7, 4.6, 2.9, 0.0, 88.5, 42.0, 58.0,11.5,0.0 +1,1,a-cure-i1,2018-19,Agawam - Clifford M Granger,00050010, 0.0, 2.7, 1.9, 14.7, 1.6, 0.4, 78.7, 49.6, 50.4,21.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Agawam - James Clark School,00050030, 0.0, 3.8, 3.2, 9.5, 2.8, 0.0, 80.7, 46.5, 53.5,19.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Agawam - Roberta G. Doering School,00050303, 0.0, 2.9, 2.5, 8.6, 3.7, 0.0, 82.3, 51.5, 48.5,17.700000000000003,2.0 +1,1,a-cure-i1,2018-19,Agawam - Robinson Park,00050025, 0.0, 4.1, 3.3, 10.1, 3.8, 0.0, 78.6, 49.9, 50.1,21.400000000000006,0.0 +3.9524438573315717,3.95,a-cure-i1,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.7, 0.0, 15.9, 59.0, 0.2, 0.0, 24.3, 55.6, 44.4,75.7,18.7 +1,1,a-cure-i1,2018-19,Amesbury - Amesbury Elementary,00070005, 0.3, 0.8, 1.3, 6.7, 5.6, 0.3, 85.0, 46.5, 53.5,15.0,0.0 +1,1,a-cure-i1,2018-19,Amesbury - Amesbury High,00070505, 0.0, 1.6, 1.6, 6.4, 4.1, 0.0, 86.4, 48.1, 51.9,13.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 3.9, 9.8, 5.9, 0.0, 80.4, 37.3, 62.7,19.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Amesbury - Amesbury Middle,00070013, 0.0, 0.8, 2.0, 8.7, 3.7, 0.3, 84.5, 49.2, 50.8,15.5,1.8 +1,1,a-cure-i1,2018-19,Amesbury - Charles C Cashman Elementary,00070010, 0.2, 1.7, 2.1, 9.2, 2.4, 0.0, 84.4, 45.3, 54.7,15.599999999999994,0.0 +2.053475935828877,2.05,a-cure-i1,2018-19,Amherst - Crocker Farm Elementary,00080009, 0.5, 12.9, 9.4, 24.9, 8.4, 0.0, 43.9, 45.2, 54.6,56.1,7.2 +5.727626459143969,5,a-cure-i1,2018-19,Amherst - Fort River Elementary,00080020, 0.0, 15.2, 7.3, 21.6, 7.3, 0.0, 48.6, 49.8, 50.2,51.4,18.4 +12.0625,5,a-cure-i1,2018-19,Amherst - Wildwood Elementary,00080050, 0.2, 15.2, 9.0, 18.0, 8.8, 0.0, 48.8, 47.4, 52.6,51.2,38.6 +5.966101694915254,5,a-cure-i1,2018-19,Amherst-Pelham - Amherst Regional High,06050505, 0.1, 9.5, 6.8, 16.0, 8.8, 0.1, 58.7, 50.0, 49.8,41.3,15.399999999999999 +8.897025171624714,5,a-cure-i1,2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.2, 8.2, 8.9, 18.3, 8.2, 0.0, 56.3, 47.4, 52.6,43.7,24.3 +6.865454545454546,5,a-cure-i1,2018-19,Andover - Andover High,00090505, 0.1, 17.5, 2.2, 5.6, 2.1, 0.0, 72.5, 52.6, 47.3,27.5,11.8 +1,1,a-cure-i1,2018-19,Andover - Andover West Middle,00090310, 0.2, 15.1, 2.7, 4.8, 3.3, 0.0, 73.9, 48.7, 51.3,26.099999999999994,2.7 +1,1,a-cure-i1,2018-19,Andover - Bancroft Elementary,00090003, 0.0, 9.0, 2.2, 6.8, 5.9, 0.0, 76.1, 47.7, 52.3,23.900000000000006,0.0 +8.0,5,a-cure-i1,2018-19,Andover - Doherty Middle,00090305, 0.5, 11.9, 1.6, 5.4, 2.6, 0.2, 77.8, 52.0, 48.0,22.200000000000003,11.100000000000001 +2.429799426934097,2.43,a-cure-i1,2018-19,Andover - Henry C Sanborn Elementary,00090010, 0.0, 22.9, 2.9, 6.3, 2.9, 0.0, 65.1, 47.4, 52.6,34.900000000000006,5.3 +1,1,a-cure-i1,2018-19,Andover - High Plain Elementary,00090004, 0.2, 28.4, 3.3, 7.7, 5.5, 0.2, 54.6, 47.0, 52.8,45.4,0.0 +4.395604395604396,4.4,a-cure-i1,2018-19,Andover - Shawsheen School,00090005, 0.0, 34.8, 1.5, 4.5, 4.5, 0.0, 54.5, 27.3, 72.7,45.5,12.5 +1,1,a-cure-i1,2018-19,Andover - South Elementary,00090020, 0.4, 16.6, 0.8, 3.5, 1.7, 0.0, 76.9, 49.7, 50.3,23.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Andover - West Elementary,00090025, 0.0, 17.3, 2.7, 6.8, 2.2, 0.0, 71.0, 52.7, 47.3,29.0,0.0 +1,1,a-cure-i1,2018-19,Andover - Wood Hill Middle School,00090350, 0.2, 32.1, 2.2, 10.5, 2.2, 0.0, 52.8, 49.1, 50.9,47.2,3.6 +11.533875338753388,5,a-cure-i1,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.2, 1.7, 10.7, 18.7, 5.6, 0.0, 63.1, 46.8, 53.2,36.9,26.6 +5.992277992277991,5,a-cure-i1,2018-19,Arlington - Arlington High,00100505, 0.0, 11.3, 3.7, 6.3, 4.6, 0.1, 74.1, 51.0, 48.8,25.900000000000006,9.7 +9.967213114754095,5,a-cure-i1,2018-19,Arlington - Brackett,00100010, 0.0, 9.7, 1.2, 4.4, 8.9, 0.2, 75.6, 47.0, 53.0,24.400000000000006,15.2 +1,1,a-cure-i1,2018-19,Arlington - Cyrus E Dallin,00100025, 0.0, 12.4, 1.9, 4.5, 5.4, 0.0, 75.8, 48.6, 51.4,24.200000000000003,3.7 +2.657980456026058,2.66,a-cure-i1,2018-19,Arlington - Gibbs School,00100305, 0.2, 13.2, 3.2, 7.3, 6.5, 0.2, 69.3, 46.0, 54.0,30.700000000000003,5.1 +6.287539936102236,5,a-cure-i1,2018-19,Arlington - Hardy,00100030, 0.2, 14.9, 5.1, 5.8, 5.1, 0.2, 68.7, 45.2, 54.8,31.299999999999997,12.299999999999999 +1,1,a-cure-i1,2018-19,Arlington - John A Bishop,00100005, 0.0, 16.6, 3.8, 2.9, 7.1, 0.4, 69.2, 45.1, 54.9,30.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Arlington - M Norcross Stratton,00100055, 0.0, 16.4, 3.3, 5.4, 8.2, 0.0, 66.7, 49.1, 50.9,33.3,4.3 +4.995633187772927,5.0,a-cure-i1,2018-19,Arlington - Menotomy Preschool,00100038, 0.0, 24.0, 5.2, 8.3, 8.3, 0.0, 54.2, 32.3, 67.7,45.8,14.3 +3.0418250950570345,3.04,a-cure-i1,2018-19,Arlington - Ottoson Middle,00100410, 0.0, 11.0, 3.3, 5.8, 6.0, 0.2, 73.7, 54.5, 45.5,26.299999999999997,5.0 +6.440251572327045,5,a-cure-i1,2018-19,Arlington - Peirce,00100045, 0.0, 13.3, 4.5, 8.4, 5.5, 0.0, 68.2, 49.4, 50.6,31.799999999999997,12.8 +1,1,a-cure-i1,2018-19,Arlington - Thompson,00100050, 0.4, 14.2, 4.7, 11.0, 7.1, 0.0, 62.5, 50.3, 49.7,37.5,2.2 +13.692307692307685,5,a-cure-i1,2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.9, 0.4, 5.3, 3.8, 0.0, 89.6, 51.1, 48.9,10.400000000000006,8.9 +1,1,a-cure-i1,2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 1.1, 0.5, 4.9, 1.6, 0.0, 91.8, 50.8, 49.2,8.200000000000003,0.0 +17.03225806451612,5,a-cure-i1,2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 1.6, 0.3, 2.7, 1.6, 0.0, 93.8, 50.1, 49.8,6.200000000000003,6.6000000000000005 +1,1,a-cure-i1,2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 0.2, 0.5, 0.5, 4.5, 1.9, 0.0, 92.3, 49.6, 50.4,7.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.3, 1.5, 8.2, 4.1, 0.0, 85.9, 46.0, 54.0,14.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Ashland - Ashland High,00140505, 0.2, 11.4, 2.6, 11.4, 2.5, 0.0, 71.8, 53.5, 46.5,28.200000000000003,1.8 +3.017964071856287,3.02,a-cure-i1,2018-19,Ashland - Ashland Middle,00140405, 0.5, 14.6, 2.1, 13.5, 2.6, 0.0, 66.6, 50.5, 49.5,33.400000000000006,6.3 +1,1,a-cure-i1,2018-19,Ashland - David Mindess,00140015, 1.6, 13.9, 1.8, 11.9, 3.2, 0.0, 67.7, 50.5, 49.5,32.3,0.0 +1,1,a-cure-i1,2018-19,Ashland - Henry E Warren Elementary,00140010, 0.3, 18.2, 2.6, 12.4, 5.0, 0.0, 61.6, 48.9, 51.1,38.4,0.0 +1,1,a-cure-i1,2018-19,Ashland - William Pittaway Elementary,00140005, 0.9, 25.9, 7.8, 0.0, 1.7, 0.0, 63.8, 41.4, 58.6,36.2,0.0 +1,1,a-cure-i1,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.3, 0.5, 1.0, 16.5, 2.6, 0.0, 79.1, 40.0, 59.9,20.900000000000006,4.300000000000001 +1,1,a-cure-i1,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 2.1, 1.6, 10.2, 3.7, 0.0, 82.4, 46.9, 53.1,17.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Athol-Royalston - Athol High,06150505, 0.0, 0.9, 1.8, 7.1, 2.9, 0.0, 87.3, 46.9, 53.1,12.700000000000003,3.9 +1,1,a-cure-i1,2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 1.0, 1.2, 12.0, 2.9, 0.0, 82.9, 47.2, 52.8,17.099999999999994,4.2 +1,1,a-cure-i1,2018-19,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.7, 0.7, 2.2, 4.3, 0.0, 92.0, 49.3, 50.7,8.0,0.0 +1,1,a-cure-i1,2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.2, 1.8, 5.6, 10.7, 3.8, 0.1, 77.9, 52.2, 47.8,22.099999999999994,1.4 +1,1,a-cure-i1,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 3.5, 5.1, 17.2, 5.8, 0.3, 68.2, 49.0, 51.0,31.799999999999997,4.4 +5.171270718232043,5,a-cure-i1,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 13.8, 20.7, 1.7, 0.0, 63.8, 39.7, 60.3,36.2,11.7 +4.180645161290323,4.18,a-cure-i1,2018-19,Attleboro - Attleboro High,00160505, 0.3, 4.6, 6.6, 14.7, 4.6, 0.2, 69.0, 47.3, 52.7,31.0,8.1 +1,1,a-cure-i1,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0.3, 4.9, 5.4, 19.5, 6.1, 0.0, 63.8, 48.5, 51.2,36.2,0.0 +1,1,a-cure-i1,2018-19,Attleboro - Early Learning Center,00160008, 0.0, 3.9, 5.0, 10.6, 6.1, 0.0, 74.3, 40.2, 59.8,25.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 0.2, 5.7, 6.6, 12.6, 6.8, 0.0, 68.1, 46.9, 53.1,31.900000000000006,0.0 +6.22754491017964,5,a-cure-i1,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 4.3, 4.8, 16.1, 8.2, 0.0, 66.6, 50.8, 49.2,33.400000000000006,13.0 +1,1,a-cure-i1,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 0.5, 6.4, 10.1, 10.8, 10.1, 0.0, 62.1, 47.3, 52.7,37.9,3.4 +1,1,a-cure-i1,2018-19,Attleboro - Robert J. Coelho Middle School,00160305, 0.3, 4.8, 5.8, 10.8, 7.1, 0.0, 71.3, 46.7, 53.3,28.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.7, 6.9, 16.8, 7.9, 0.0, 65.6, 47.5, 52.5,34.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Attleboro - Wamsutta Middle School,00160320, 0.0, 5.9, 5.4, 16.4, 4.5, 0.0, 67.8, 46.4, 53.6,32.2,3.1 +1,1,a-cure-i1,2018-19,Auburn - Auburn Middle,00170305, 0.0, 3.7, 1.4, 10.3, 3.2, 0.0, 81.4, 46.7, 53.3,18.599999999999994,4.8 +1,1,a-cure-i1,2018-19,Auburn - Auburn Senior High,00170505, 0.3, 4.3, 2.0, 6.7, 4.0, 0.0, 82.7, 53.5, 46.5,17.299999999999997,2.8000000000000003 +1,1,a-cure-i1,2018-19,Auburn - Bryn Mawr,00170010, 0.0, 3.7, 0.7, 9.0, 3.7, 0.0, 82.9, 46.5, 53.5,17.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Auburn - Pakachoag School,00170025, 0.3, 2.9, 2.0, 9.2, 3.9, 0.0, 81.7, 45.4, 54.6,18.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Auburn - Swanson Road Intermediate School,00170030, 0.0, 3.8, 2.3, 10.0, 2.8, 0.0, 81.1, 50.7, 49.3,18.900000000000006,0.0 +4.115107913669065,4.12,a-cure-i1,2018-19,Avon - Avon Middle High School,00180510, 0.3, 4.7, 38.2, 7.1, 5.3, 0.0, 44.4, 46.6, 53.4,55.6,14.3 +1,1,a-cure-i1,2018-19,Avon - Ralph D Butler,00180010, 0.2, 4.9, 24.4, 10.3, 6.2, 0.0, 53.9, 48.0, 52.0,46.1,0.0 +1,1,a-cure-i1,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.8, 2.3, 5.7, 9.8, 9.5, 0.3, 70.7, 52.7, 47.3,29.299999999999997,0.0 +8.57142857142857,5,a-cure-i1,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.2, 2.2, 3.4, 12.0, 2.9, 0.7, 77.6, 48.6, 51.4,22.400000000000006,12.0 +1,1,a-cure-i1,2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 1.1, 1.9, 8.8, 4.0, 0.3, 84.1, 44.0, 56.0,15.900000000000006,4.3 +1,1,a-cure-i1,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.4, 5.1, 4.9, 11.1, 5.7, 0.2, 72.6, 47.7, 52.3,27.400000000000006,0.0 +4.450704225352111,4.45,a-cure-i1,2018-19,Barnstable - Barnstable High,00200505, 0.4, 2.0, 8.4, 12.9, 4.1, 0.4, 71.6, 51.8, 48.2,28.400000000000006,7.8999999999999995 +1,1,a-cure-i1,2018-19,Barnstable - Barnstable Intermediate School,00200315, 0.0, 2.3, 7.4, 15.5, 3.8, 0.3, 70.7, 47.8, 52.2,29.299999999999997,4.6 +1,1,a-cure-i1,2018-19,Barnstable - Barnstable United Elementary School,00200050, 0.7, 1.9, 6.9, 15.7, 4.7, 0.1, 70.0, 47.3, 52.7,30.0,4.4 +1,1,a-cure-i1,2018-19,Barnstable - Centerville Elementary,00200010, 0.0, 1.2, 7.6, 12.7, 5.6, 0.0, 72.9, 45.0, 55.0,27.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.7, 0.7, 10.3, 20.5, 14.4, 0.0, 53.4, 39.7, 60.3,46.6,0.0 +1.9141104294478526,1.91,a-cure-i1,2018-19,Barnstable - Hyannis West Elementary,00200025, 0.6, 2.2, 14.6, 37.9, 9.6, 0.3, 34.8, 52.2, 47.8,65.2,7.8 +1,1,a-cure-i1,2018-19,Barnstable - West Barnstable Elementary,00200005, 0.0, 2.7, 5.0, 8.1, 8.1, 0.0, 76.0, 41.9, 58.1,24.0,0.0 +1,1,a-cure-i1,2018-19,Barnstable - West Villages Elementary School,00200045, 0.0, 1.2, 2.9, 7.4, 6.2, 0.0, 82.4, 48.0, 51.8,17.599999999999994,0.0 +1.4678899082568808,1.47,a-cure-i1,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.3, 3.4, 17.9, 28.6, 4.1, 0.0, 45.5, 50.0, 50.0,54.5,5.0 +3.873684210526316,3.87,a-cure-i1,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.6, 24.6, 68.4, 1.2, 0.2, 5.0, 50.2, 49.8,95.0,23.0 +2.935779816513761,2.94,a-cure-i1,2018-19,Bedford - Bedford High,00230505, 0.0, 12.7, 6.6, 8.1, 5.0, 0.2, 67.3, 49.1, 50.9,32.7,6.0 +1,1,a-cure-i1,2018-19,Bedford - John Glenn Middle,00230305, 0.2, 16.8, 6.4, 5.3, 3.9, 0.0, 67.5, 45.9, 54.1,32.5,0.4 +2.5304136253041363,2.53,a-cure-i1,2018-19,Bedford - Lt Elezer Davis,00230010, 0.0, 21.9, 6.3, 4.7, 8.2, 0.0, 58.9, 49.6, 50.4,41.1,6.5 +4.455089820359281,4.46,a-cure-i1,2018-19,Bedford - Lt Job Lane School,00230012, 0.0, 18.9, 5.3, 4.0, 5.2, 0.0, 66.6, 50.7, 49.3,33.400000000000006,9.3 +1,1,a-cure-i1,2018-19,Belchertown - Belchertown High,00240505, 0.1, 1.5, 2.2, 2.9, 2.0, 0.1, 91.1, 48.6, 51.4,8.900000000000006,4.2 +1,1,a-cure-i1,2018-19,Belchertown - Chestnut Hill Community School,00240006, 0.4, 2.0, 2.4, 5.2, 3.1, 0.2, 86.7, 48.0, 52.0,13.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Belchertown - Cold Spring,00240005, 0.0, 1.1, 1.7, 6.7, 5.6, 0.0, 84.9, 52.5, 47.5,15.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Belchertown - Jabish Middle School,00240025, 0.0, 1.6, 2.1, 4.4, 2.6, 0.5, 88.8, 51.7, 48.3,11.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Belchertown - Swift River Elementary,00240018, 0.4, 1.5, 1.3, 5.0, 4.4, 0.0, 87.4, 49.2, 50.8,12.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 3.1, 2.0, 3.1, 2.0, 0.0, 89.8, 44.9, 55.1,10.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Bellingham - Bellingham High School,00250505, 0.1, 2.8, 2.4, 3.6, 2.0, 0.0, 89.0, 48.8, 51.2,11.0,3.6 +1,1,a-cure-i1,2018-19,Bellingham - Bellingham Memorial School,00250315, 0.1, 3.7, 2.0, 5.2, 2.4, 0.0, 86.6, 51.9, 48.1,13.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 1.7, 1.4, 4.6, 0.6, 0.6, 91.0, 50.1, 49.9,9.0,0.0 +1,1,a-cure-i1,2018-19,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 8.6, 2.9, 0.0, 88.6, 48.6, 42.9,11.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Bellingham - Stall Brook,00250025, 0.0, 1.7, 1.4, 5.2, 3.4, 2.4, 85.9, 46.9, 53.1,14.099999999999994,0.0 +3.92258064516129,3.92,a-cure-i1,2018-19,Belmont - Belmont High,00260505, 0.1, 18.0, 3.7, 4.2, 5.0, 0.0, 69.0, 50.9, 49.1,31.0,7.6 +2.8256070640176603,2.83,a-cure-i1,2018-19,Belmont - Daniel Butler,00260015, 0.5, 27.3, 2.3, 4.9, 10.2, 0.0, 54.7, 45.6, 54.4,45.3,8.0 +3.966197183098592,3.97,a-cure-i1,2018-19,Belmont - Mary Lee Burbank,00260010, 0.0, 18.9, 5.0, 2.6, 8.6, 0.2, 64.5, 48.2, 51.8,35.5,8.8 +1,1,a-cure-i1,2018-19,Belmont - Roger E Wellington,00260035, 0.0, 14.3, 2.4, 2.5, 9.2, 0.0, 71.6, 47.8, 52.2,28.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Belmont - Winn Brook,00260005, 0.0, 29.5, 1.3, 3.0, 7.6, 0.0, 58.6, 46.2, 53.8,41.4,0.0 +6.725274725274726,5,a-cure-i1,2018-19,Belmont - Winthrop L Chenery Middle,00260305, 0.1, 19.9, 3.9, 5.5, 6.8, 0.1, 63.6, 49.8, 50.2,36.4,15.3 +6.416326530612245,5,a-cure-i1,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.3, 0.8, 83.3, 11.0, 2.0, 0.6, 2.0, 50.8, 49.2,98.0,39.3 +1,1,a-cure-i1,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 22.7, 2.4, 3.5, 4.4, 0.0, 67.1, 52.9, 47.1,32.900000000000006,0.0 +1.2654155495978554,1.27,a-cure-i1,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 2.4, 11.8, 57.5, 2.9, 0.0, 25.4, 53.4, 46.6,74.6,5.9 +1,1,a-cure-i1,2018-19,Berkley - Berkley Community School,00270010, 0.2, 0.2, 0.4, 1.4, 3.4, 0.2, 94.2, 51.5, 48.5,5.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.3, 2.0, 4.3, 0.0, 93.4, 50.6, 49.4,6.599999999999994,0.0 +3.814569536423841,3.81,a-cure-i1,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.3, 2.9, 11.9, 9.3, 5.8, 0.0, 69.8, 47.4, 52.6,30.200000000000003,7.2 +1,1,a-cure-i1,2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 0.2, 1.9, 2.1, 7.2, 3.2, 0.4, 85.1, 49.4, 50.6,14.900000000000006,3.8 +4.525252525252526,4.53,a-cure-i1,2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.3, 3.8, 1.5, 9.3, 4.9, 0.0, 80.2, 46.8, 53.2,19.799999999999997,5.6 +1,1,a-cure-i1,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 3.0, 1.2, 10.6, 8.8, 0.0, 76.3, 49.5, 50.5,23.700000000000003,0.4 +1,1,a-cure-i1,2018-19,Berlin - Berlin Memorial,00280005, 0.0, 2.2, 0.5, 4.4, 4.4, 0.0, 88.5, 44.3, 55.7,11.5,0.0 +1,1,a-cure-i1,2018-19,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 3.6, 2.4, 3.4, 2.6, 0.2, 87.8, 46.5, 53.5,12.200000000000003,1.9 +1,1,a-cure-i1,2018-19,Beverly - Ayers/Ryal Side School,00300055, 0.0, 4.5, 4.7, 10.8, 2.8, 0.0, 77.2, 49.3, 50.7,22.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Beverly - Beverly High,00300505, 0.0, 2.5, 3.8, 13.0, 2.8, 0.2, 77.7, 48.4, 51.6,22.299999999999997,2.0 +1,1,a-cure-i1,2018-19,Beverly - Beverly Middle School,00300305, 0.0, 2.5, 2.7, 13.7, 3.2, 0.0, 77.8, 48.0, 52.0,22.200000000000003,3.7 +1,1,a-cure-i1,2018-19,Beverly - Centerville Elementary,00300010, 0.0, 0.7, 4.4, 16.6, 5.4, 0.0, 73.0, 49.7, 50.3,27.0,0.0 +1,1,a-cure-i1,2018-19,Beverly - Cove Elementary,00300015, 0.0, 1.4, 2.8, 12.8, 5.0, 0.0, 78.0, 49.4, 50.6,22.0,0.0 +1,1,a-cure-i1,2018-19,Beverly - Hannah Elementary,00300033, 0.0, 1.8, 2.4, 13.7, 6.4, 0.0, 75.7, 45.9, 54.1,24.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Beverly - McKeown School,00300002, 0.8, 4.1, 7.3, 8.1, 1.6, 0.0, 78.0, 36.6, 63.4,22.0,0.0 +1,1,a-cure-i1,2018-19,Beverly - North Beverly Elementary,00300040, 0.3, 1.3, 2.6, 16.3, 3.2, 0.0, 76.4, 48.2, 51.8,23.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Billerica - Billerica Memorial High School,00310505, 0.2, 7.6, 4.8, 4.7, 2.5, 0.1, 80.1, 49.0, 51.0,19.900000000000006,1.3 +1,1,a-cure-i1,2018-19,Billerica - Eugene C Vining,00310030, 0.0, 6.1, 3.3, 10.0, 6.7, 0.0, 73.9, 42.2, 57.8,26.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Billerica - Frederick J Dutile,00310007, 0.0, 9.0, 4.3, 6.5, 2.5, 0.0, 77.7, 53.2, 46.8,22.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Billerica - Hajjar Elementary,00310026, 0.2, 9.4, 6.5, 10.3, 2.7, 0.0, 70.9, 50.3, 49.7,29.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Billerica - John F Kennedy,00310012, 0.0, 4.4, 1.3, 5.4, 4.1, 0.0, 84.9, 49.5, 50.5,15.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Billerica - Locke Middle,00310310, 0.0, 6.2, 3.1, 6.6, 3.1, 0.6, 80.5, 49.1, 50.9,19.5,0.0 +1,1,a-cure-i1,2018-19,Billerica - Marshall Middle School,00310305, 0.3, 6.7, 4.3, 6.0, 1.4, 0.2, 81.1, 48.6, 51.4,18.900000000000006,2.0 +1,1,a-cure-i1,2018-19,Billerica - Parker,00310015, 0.2, 11.8, 5.6, 8.6, 3.8, 0.0, 70.1, 44.4, 55.6,29.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Billerica - Thomas Ditson,00310005, 0.0, 9.0, 4.7, 6.7, 4.5, 0.0, 75.0, 50.1, 49.9,25.0,0.0 +1,1,a-cure-i1,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 2.0, 0.9, 4.4, 1.4, 0.0, 91.4, 50.4, 49.6,8.599999999999994,1.0 +1,1,a-cure-i1,2018-19,Blackstone-Millville - A F Maloney,06220015, 0.0, 1.0, 1.6, 7.6, 5.4, 0.0, 84.4, 45.2, 54.8,15.599999999999994,0.0 +7.926605504587152,5,a-cure-i1,2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.8, 0.7, 6.8, 1.6, 0.0, 89.1, 48.7, 51.3,10.900000000000006,5.4 +1,1,a-cure-i1,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.5, 1.7, 5.3, 3.9, 0.0, 88.6, 49.4, 50.4,11.400000000000006,3.7 +1,1,a-cure-i1,2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.1, 10.3, 6.1, 0.0, 82.4, 49.6, 50.4,17.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.7, 0.4, 5.2, 4.8, 0.0, 88.9, 45.4, 54.6,11.099999999999994,0.0 +3.5513126491646783,3.55,a-cure-i1,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.6, 1.4, 22.7, 12.7, 4.4, 0.1, 58.1, 43.9, 56.1,41.9,9.3 +7.851366120218579,5,a-cure-i1,2018-19,Boston - Another Course To College,00350541, 0.0, 1.8, 46.0, 42.0, 1.8, 0.0, 8.5, 49.1, 50.9,91.5,44.9 +18.745428973277075,5,a-cure-i1,2018-19,Boston - Baldwin Early Learning Center,00350003, 0.6, 25.2, 10.1, 29.6, 5.7, 0.0, 28.9, 41.5, 58.5,71.1,83.3 +5.782178217821782,5,a-cure-i1,2018-19,Boston - Beethoven,00350021, 0.0, 3.6, 26.7, 26.4, 3.9, 0.0, 39.4, 54.4, 45.6,60.6,21.9 +3.8983050847457625,3.9,a-cure-i1,2018-19,Boston - Blackstone,00350390, 0.4, 2.2, 24.9, 64.4, 2.5, 0.0, 5.6, 47.0, 53.0,94.4,23.0 +12.36511156186613,5,a-cure-i1,2018-19,Boston - Boston Adult Academy,00350548, 0.0, 4.2, 44.4, 47.9, 2.1, 0.0, 1.4, 49.3, 50.7,98.6,76.20000000000002 +10.150731158605174,5,a-cure-i1,2018-19,Boston - Boston Arts Academy,00350546, 0.4, 3.6, 42.0, 38.4, 4.3, 0.2, 11.1, 67.2, 32.8,88.9,56.4 +10.715096481271285,5,a-cure-i1,2018-19,Boston - Boston Collaborative High School,00350755, 0.6, 3.1, 40.0, 42.5, 1.9, 0.0, 11.9, 53.8, 46.3,88.1,59.00000000000001 +9.22372528616025,5,a-cure-i1,2018-19,Boston - Boston Community Leadership Academy,00350558, 0.0, 3.7, 36.1, 54.6, 1.6, 0.0, 3.9, 47.0, 53.0,96.1,55.4 +7.034764826175869,5,a-cure-i1,2018-19,Boston - Boston International High School,00350507, 0.0, 5.7, 37.4, 53.9, 0.5, 0.3, 2.2, 48.2, 51.8,97.8,43.0 +10.13533834586466,5,a-cure-i1,2018-19,Boston - Boston Latin,00350560, 0.1, 28.6, 7.5, 12.5, 4.3, 0.2, 46.8, 54.3, 45.7,53.2,33.699999999999996 +9.794076163610718,5,a-cure-i1,2018-19,Boston - Boston Latin Academy,00350545, 0.2, 21.0, 20.9, 25.5, 3.2, 0.1, 29.1, 59.1, 40.8,70.9,43.4 +10.085889570552148,5,a-cure-i1,2018-19,Boston - Boston Teachers Union School,00350012, 0.0, 0.7, 25.9, 33.7, 4.8, 0.0, 34.8, 48.5, 51.5,65.2,41.1 +7.144654088050315,5,a-cure-i1,2018-19,Boston - Brighton High,00350505, 0.3, 4.9, 40.4, 47.8, 1.7, 0.2, 4.6, 36.5, 63.5,95.4,42.6 +1,1,a-cure-i1,2018-19,Boston - Carter School,00350036, 0.0, 6.9, 58.6, 17.2, 0.0, 3.4, 13.8, 41.4, 58.6,86.2,0.0 +10.758064516129032,5,a-cure-i1,2018-19,Boston - Charles H Taylor,00350054, 0.6, 1.7, 77.6, 16.8, 2.5, 0.0, 0.8, 48.5, 51.5,99.2,66.7 +7.277842907385697,5,a-cure-i1,2018-19,Boston - Charles Sumner,00350052, 0.0, 0.7, 18.7, 60.4, 5.3, 0.2, 14.7, 45.4, 54.6,85.3,38.8 +6.768586387434555,5,a-cure-i1,2018-19,Boston - Charlestown High,00350515, 0.1, 10.8, 29.6, 53.7, 1.2, 0.0, 4.5, 41.8, 58.1,95.5,40.4 +8.0,5,a-cure-i1,2018-19,Boston - Clarence R Edwards Middle,00350430, 0.0, 8.3, 14.4, 65.7, 1.4, 0.0, 10.2, 43.1, 56.9,89.8,44.9 +12.72454448017149,5,a-cure-i1,2018-19,Boston - Community Academy,00350518, 0.0, 0.0, 62.2, 26.7, 4.4, 0.0, 6.7, 40.0, 60.0,93.3,74.2 +8.481141692150867,5,a-cure-i1,2018-19,Boston - Community Academy of Science and Health,00350581, 0.3, 1.9, 66.0, 27.7, 2.2, 0.0, 1.9, 46.5, 53.5,98.1,52.0 +7.2799013563501855,5,a-cure-i1,2018-19,Boston - Condon K-8,00350146, 0.2, 7.4, 34.0, 35.5, 3.6, 0.4, 18.9, 47.7, 52.3,81.1,36.9 +8.936170212765957,5,a-cure-i1,2018-19,Boston - Curley K-8 School,00350020, 0.1, 2.7, 18.6, 48.0, 5.7, 0.1, 24.8, 47.7, 52.3,75.2,42.0 +7.113300492610837,5,a-cure-i1,2018-19,Boston - Curtis Guild,00350062, 0.0, 0.8, 1.9, 78.1, 0.4, 0.0, 18.8, 48.1, 51.9,81.2,36.1 +6.4941176470588236,5,a-cure-i1,2018-19,Boston - Dante Alighieri Montessori School,00350066, 0.0, 2.1, 2.1, 59.8, 4.1, 0.0, 32.0, 56.7, 43.3,68.0,27.6 +11.346351490236383,5,a-cure-i1,2018-19,Boston - David A Ellis,00350072, 0.7, 0.5, 40.0, 54.2, 1.9, 0.0, 2.7, 50.6, 49.4,97.3,69.0 +8.371717171717172,5,a-cure-i1,2018-19,Boston - Dearborn,00350074, 0.0, 1.2, 65.9, 27.7, 3.1, 1.2, 1.0, 49.2, 50.8,99.0,51.800000000000004 +10.07891156462585,5,a-cure-i1,2018-19,Boston - Dennis C Haley,00350077, 0.2, 0.7, 28.9, 37.9, 5.5, 0.2, 26.5, 46.9, 53.1,73.5,46.3 +4.064864864864865,4.06,a-cure-i1,2018-19,Boston - Donald Mckay,00350080, 0.0, 0.7, 1.6, 89.1, 1.0, 0.0, 7.5, 49.8, 50.2,92.5,23.5 +9.201225740551584,5,a-cure-i1,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.5, 1.0, 55.0, 38.7, 2.6, 0.0, 2.1, 45.5, 54.5,97.9,56.300000000000004 +8.166934189406101,5,a-cure-i1,2018-19,Boston - Dr. William Henderson Lower,00350266, 0.0, 14.9, 26.0, 15.3, 5.6, 0.5, 37.7, 53.0, 47.0,62.3,31.8 +2.6262626262626263,2.63,a-cure-i1,2018-19,Boston - Dr. William Henderson Upper,00350426, 0.5, 8.3, 40.0, 26.2, 4.3, 0.0, 20.8, 45.1, 54.9,79.2,13.0 +17.136231884057974,5,a-cure-i1,2018-19,Boston - East Boston Early Childhood Center,00350009, 0.5, 1.6, 6.0, 59.8, 0.5, 0.5, 31.0, 52.7, 47.3,69.0,73.9 +5.633295838020247,5,a-cure-i1,2018-19,Boston - East Boston High,00350530, 0.3, 1.9, 5.8, 79.3, 1.6, 0.0, 11.1, 43.9, 56.1,88.9,31.3 +6.688221709006929,5,a-cure-i1,2018-19,Boston - Edison K-8,00350375, 0.8, 15.3, 19.2, 48.4, 2.7, 0.2, 13.4, 44.1, 55.9,86.6,36.2 +5.837837837837838,5,a-cure-i1,2018-19,Boston - Edward Everett,00350088, 0.8, 17.8, 45.8, 26.9, 4.9, 0.0, 3.8, 48.1, 51.9,96.2,35.1 +2.2688039457459928,2.27,a-cure-i1,2018-19,Boston - ELC - West Zone,00350006, 0.0, 8.1, 29.7, 41.4, 1.8, 0.0, 18.9, 45.0, 55.0,81.1,11.5 +14.511627906976742,5,a-cure-i1,2018-19,Boston - Eliot Elementary,00350096, 0.0, 9.5, 5.2, 17.5, 6.4, 0.1, 61.3, 47.4, 52.6,38.7,35.099999999999994 +6.7253414264036415,5,a-cure-i1,2018-19,Boston - Ellis Mendell,00350100, 0.0, 1.5, 25.3, 30.4, 8.8, 0.0, 34.1, 50.2, 49.8,65.9,27.7 +9.716171617161715,5,a-cure-i1,2018-19,Boston - Excel High School,00350522, 0.4, 17.8, 38.0, 33.4, 1.4, 0.0, 9.1, 40.2, 59.8,90.9,55.199999999999996 +8.950000000000001,5,a-cure-i1,2018-19,Boston - Fenway High School,00350540, 0.3, 3.4, 28.6, 62.3, 1.1, 0.3, 4.0, 52.3, 47.7,96.0,53.7 +3.9755201958384334,3.98,a-cure-i1,2018-19,Boston - Franklin D Roosevelt,00350116, 0.5, 1.6, 39.0, 37.4, 3.0, 0.2, 18.3, 48.2, 51.8,81.7,20.3 +6.928987194412107,5,a-cure-i1,2018-19,Boston - Gardner Pilot Academy,00350326, 0.0, 4.2, 11.7, 65.5, 4.4, 0.0, 14.1, 48.0, 52.0,85.9,37.2 +7.336585365853659,5,a-cure-i1,2018-19,Boston - George H Conley,00350122, 0.0, 3.0, 37.5, 37.0, 4.0, 0.5, 18.0, 45.0, 55.0,82.0,37.6 +11.701736465781408,5,a-cure-i1,2018-19,Boston - Greater Egleston Community High School,00350543, 2.1, 1.1, 36.8, 52.6, 5.3, 0.0, 2.1, 52.6, 47.4,97.9,71.6 +5.688888888888889,5,a-cure-i1,2018-19,Boston - Harvard-Kent,00350200, 0.2, 25.7, 22.8, 33.7, 2.9, 0.2, 14.5, 46.0, 54.0,85.5,30.400000000000002 +10.148760330578513,5,a-cure-i1,2018-19,Boston - Haynes Early Education Center,00350010, 1.1, 4.3, 52.1, 38.3, 1.1, 0.0, 3.2, 44.7, 55.3,96.8,61.4 +7.946902654867257,5,a-cure-i1,2018-19,Boston - Henry Grew,00350135, 0.4, 1.7, 39.7, 42.3, 6.3, 0.0, 9.6, 50.6, 49.4,90.4,44.900000000000006 +8.0,5,a-cure-i1,2018-19,Boston - Higginson,00350015, 0.6, 0.6, 37.5, 56.0, 3.6, 0.0, 1.8, 44.6, 55.4,98.2,49.1 +7.02123356926188,5,a-cure-i1,2018-19,Boston - Higginson/Lewis K-8,00350377, 0.4, 0.4, 50.6, 42.9, 4.6, 0.0, 1.1, 42.5, 57.5,98.9,43.4 +1.5725714285714285,1.57,a-cure-i1,2018-19,Boston - Horace Mann School for the Deaf,00350750, 0.0, 5.7, 30.7, 50.0, 1.1, 0.0, 12.5, 36.4, 63.6,87.5,8.6 +1.3029315960912053,1.3,a-cure-i1,2018-19,Boston - Hugh Roe O'Donnell,00350141, 0.0, 2.3, 1.5, 87.2, 1.1, 0.0, 7.9, 50.9, 49.1,92.1,7.5 +4.80709534368071,4.81,a-cure-i1,2018-19,Boston - Jackson Mann,00350013, 0.7, 13.3, 32.3, 41.6, 2.3, 0.0, 9.8, 42.6, 57.4,90.2,27.1 +5.095435684647302,5,a-cure-i1,2018-19,Boston - James J Chittick,00350154, 0.0, 1.4, 62.2, 27.0, 5.8, 0.0, 3.6, 42.4, 57.6,96.4,30.699999999999996 +4.352644836272041,4.35,a-cure-i1,2018-19,Boston - James Otis,00350156, 0.0, 2.5, 5.3, 70.0, 1.5, 0.0, 20.6, 50.9, 49.1,79.4,21.6 +10.341463414634147,5,a-cure-i1,2018-19,Boston - James P Timilty Middle,00350485, 0.0, 0.6, 37.3, 59.4, 0.6, 0.3, 1.6, 54.5, 45.5,98.4,63.6 +7.455497382198953,5,a-cure-i1,2018-19,Boston - James W Hennigan,00350153, 0.0, 2.9, 30.1, 60.9, 1.4, 0.2, 4.5, 53.2, 46.8,95.5,44.5 +9.619631901840492,5,a-cure-i1,2018-19,Boston - Jeremiah E Burke High,00350525, 0.0, 0.5, 71.2, 24.3, 1.2, 0.5, 2.2, 45.7, 54.3,97.8,58.800000000000004 +9.985111662531018,5,a-cure-i1,2018-19,Boston - John D Philbrick,00350172, 0.0, 0.6, 48.8, 28.8, 2.5, 0.0, 19.4, 46.9, 53.1,80.6,50.3 +7.387308533916849,5,a-cure-i1,2018-19,Boston - John F Kennedy,00350166, 0.0, 1.6, 15.6, 70.6, 3.5, 0.0, 8.6, 50.1, 49.9,91.4,42.2 +6.749213011542497,5,a-cure-i1,2018-19,Boston - John W McCormack,00350179, 0.5, 3.8, 28.5, 58.9, 3.3, 0.3, 4.7, 50.4, 49.6,95.3,40.199999999999996 +4.449021627188466,4.45,a-cure-i1,2018-19,Boston - John Winthrop,00350180, 0.6, 1.0, 57.8, 33.8, 3.2, 0.6, 2.9, 56.5, 43.5,97.1,27.0 +13.395807644882863,5,a-cure-i1,2018-19,Boston - Joseph J Hurley,00350182, 0.3, 0.9, 5.7, 72.0, 2.3, 0.0, 18.9, 50.0, 50.0,81.1,67.9 +5.556270096463022,5,a-cure-i1,2018-19,Boston - Joseph Lee,00350183, 0.3, 5.4, 54.1, 27.7, 5.5, 0.3, 6.7, 45.0, 55.0,93.3,32.4 +1,1,a-cure-i1,2018-19,Boston - Joseph P Manning,00350184, 0.0, 5.4, 15.0, 26.5, 8.2, 0.7, 44.2, 49.7, 50.3,55.8,3.0 +7.722007722007722,5,a-cure-i1,2018-19,Boston - Joseph P Tynan,00350181, 0.4, 9.6, 36.2, 26.2, 5.2, 0.0, 22.3, 41.5, 58.5,77.7,37.5 +9.668161434977577,5,a-cure-i1,2018-19,Boston - Josiah Quincy,00350286, 0.1, 59.9, 13.9, 11.2, 4.0, 0.0, 10.8, 50.6, 49.4,89.2,53.9 +4.008281573498965,4.01,a-cure-i1,2018-19,Boston - Joyce Kilmer,00350190, 0.0, 8.0, 16.4, 17.3, 6.4, 0.2, 51.7, 46.5, 53.5,48.3,12.1 +8.03265306122449,5,a-cure-i1,2018-19,Boston - King K-8,00350376, 0.6, 0.6, 57.1, 36.0, 3.5, 0.2, 2.0, 49.5, 50.5,98.0,49.2 +4.814891416752844,4.81,a-cure-i1,2018-19,Boston - Lee Academy,00350001, 0.5, 9.9, 50.7, 31.5, 4.2, 0.0, 3.3, 48.4, 51.6,96.7,29.1 +8.170212765957448,5,a-cure-i1,2018-19,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 7.1, 45.0, 43.3, 3.1, 0.2, 1.3, 44.6, 55.4,98.7,50.400000000000006 +6.97716894977169,5,a-cure-i1,2018-19,Boston - Lyndon,00350262, 0.0, 2.7, 9.4, 27.3, 4.4, 0.0, 56.2, 47.2, 52.8,43.8,19.1 +7.174690508940853,5,a-cure-i1,2018-19,Boston - Lyon K-8,00350004, 0.0, 11.4, 24.2, 28.0, 9.1, 0.0, 27.3, 47.7, 52.3,72.7,32.6 +5.146198830409356,5,a-cure-i1,2018-19,Boston - Lyon Upper 9-12,00350655, 0.8, 8.3, 18.0, 36.8, 4.5, 0.0, 31.6, 43.6, 56.4,68.4,22.0 +8.724313326551375,5,a-cure-i1,2018-19,Boston - Madison Park High,00350537, 0.5, 1.2, 36.8, 57.7, 1.9, 0.2, 1.7, 41.3, 58.7,98.3,53.60000000000001 +2.945397815912637,2.95,a-cure-i1,2018-19,Boston - Manassah E Bradley,00350215, 0.0, 6.9, 5.8, 48.6, 2.9, 0.0, 35.9, 47.1, 52.9,64.1,11.8 +8.797583081570998,5,a-cure-i1,2018-19,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 3.1, 95.6, 0.7, 0.0, 0.7, 54.6, 45.4,99.3,54.6 +5.40724946695096,5,a-cure-i1,2018-19,Boston - Mario Umana Academy,00350656, 0.1, 1.7, 2.8, 88.3, 0.7, 0.1, 6.2, 47.7, 52.3,93.8,31.7 +11.033898305084746,5,a-cure-i1,2018-19,Boston - Mather,00350227, 0.5, 33.3, 38.7, 15.9, 6.1, 0.0, 5.6, 51.6, 48.4,94.4,65.10000000000001 +8.672268907563025,5,a-cure-i1,2018-19,Boston - Mattahunt Elementary School,00350016, 0.3, 0.8, 66.5, 25.7, 1.6, 0.3, 4.8, 40.5, 59.5,95.2,51.599999999999994 +8.582564102564103,5,a-cure-i1,2018-19,Boston - Maurice J Tobin,00350229, 0.2, 1.8, 30.4, 64.1, 0.9, 0.0, 2.5, 54.2, 45.8,97.5,52.300000000000004 +9.119453924914675,5,a-cure-i1,2018-19,Boston - Michael J Perkins,00350231, 0.5, 4.4, 42.9, 35.2, 4.9, 0.0, 12.1, 49.5, 50.5,87.9,50.1 +10.228160328879753,5,a-cure-i1,2018-19,Boston - Mildred Avenue K-8,00350378, 1.0, 0.5, 64.5, 28.9, 2.4, 0.0, 2.7, 48.9, 51.1,97.3,62.199999999999996 +12.313146233382568,5,a-cure-i1,2018-19,Boston - Mission Hill School,00350382, 0.5, 0.9, 21.8, 37.3, 6.8, 0.5, 32.3, 41.4, 58.6,67.7,52.099999999999994 +11.544303797468354,5,a-cure-i1,2018-19,Boston - Mozart,00350237, 1.2, 4.7, 25.7, 25.1, 6.4, 0.0, 36.8, 40.9, 59.1,63.2,45.6 +11.308016877637131,5,a-cure-i1,2018-19,Boston - Nathan Hale,00350243, 0.0, 7.1, 52.3, 32.9, 2.6, 0.0, 5.2, 57.4, 42.6,94.8,67.0 +8.672131147540982,5,a-cure-i1,2018-19,Boston - New Mission High School,00350542, 0.2, 1.1, 55.6, 39.8, 0.9, 0.0, 2.4, 53.2, 46.8,97.6,52.89999999999999 +6.478931140801644,5,a-cure-i1,2018-19,Boston - O W Holmes,00350138, 0.0, 2.4, 57.6, 31.0, 6.3, 0.0, 2.7, 48.1, 51.9,97.3,39.4 +9.227323628219485,5,a-cure-i1,2018-19,Boston - O'Bryant School Math/Science,00350575, 0.3, 20.4, 33.6, 32.5, 2.3, 0.2, 10.7, 56.6, 43.4,89.3,51.5 +9.8252427184466,5,a-cure-i1,2018-19,Boston - Oliver Hazard Perry,00350255, 0.4, 1.6, 22.9, 13.5, 2.9, 0.0, 58.8, 46.5, 53.5,41.2,25.299999999999997 +5.037037037037036,5,a-cure-i1,2018-19,Boston - Orchard Gardens,00350257, 0.8, 1.4, 50.0, 42.0, 2.4, 0.6, 2.8, 47.9, 52.1,97.2,30.599999999999998 +4.839190628328009,4.84,a-cure-i1,2018-19,Boston - Patrick J Kennedy,00350264, 0.0, 3.1, 4.1, 86.3, 0.3, 0.0, 6.1, 46.4, 53.6,93.9,28.400000000000002 +6.828240252897786,5,a-cure-i1,2018-19,Boston - Paul A Dever,00350268, 0.5, 4.4, 25.6, 62.9, 1.5, 0.0, 5.1, 48.3, 51.7,94.9,40.5 +6.49746192893401,5,a-cure-i1,2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 1.5, 71.2, 22.7, 3.0, 0.0, 1.5, 51.5, 48.5,98.5,40.0 +8.137384412153237,5,a-cure-i1,2018-19,Boston - Phineas Bates,00350278, 0.4, 4.8, 30.3, 36.3, 4.0, 0.0, 24.3, 51.8, 48.2,75.7,38.5 +10.267650158061118,5,a-cure-i1,2018-19,Boston - Quincy Upper School,00350565, 0.2, 49.9, 19.5, 22.2, 3.1, 0.0, 5.1, 45.0, 55.0,94.9,60.900000000000006 +13.197837837837838,5,a-cure-i1,2018-19,Boston - Rafael Hernandez,00350691, 0.0, 0.3, 2.8, 87.0, 2.5, 0.0, 7.5, 51.9, 48.1,92.5,76.3 +6.2727272727272725,5,a-cure-i1,2018-19,Boston - Richard J Murphy,00350240, 0.4, 45.2, 17.1, 21.3, 3.7, 0.2, 12.0, 45.5, 54.5,88.0,34.5 +5.740166865315852,5,a-cure-i1,2018-19,Boston - Roger Clap,00350298, 0.0, 10.9, 38.7, 32.1, 2.2, 0.0, 16.1, 54.7, 45.3,83.9,30.1 +8.628992628992629,5,a-cure-i1,2018-19,Boston - Samuel Adams,00350302, 0.4, 2.7, 3.5, 73.6, 1.2, 0.0, 18.6, 47.3, 52.7,81.4,43.900000000000006 +7.880085653104924,5,a-cure-i1,2018-19,Boston - Samuel W Mason,00350304, 1.2, 1.7, 46.5, 36.1, 7.5, 0.4, 6.6, 44.8, 55.2,93.4,46.0 +10.052525252525252,5,a-cure-i1,2018-19,Boston - Sarah Greenwood,00350308, 0.0, 0.3, 21.3, 75.3, 2.1, 0.0, 1.0, 48.3, 51.7,99.0,62.199999999999996 +6.538542766631468,5,a-cure-i1,2018-19,Boston - Snowden International School at Copley,00350690, 0.2, 6.5, 35.6, 49.7, 2.2, 0.4, 5.3, 52.1, 47.9,94.7,38.7 +6.847736625514402,5,a-cure-i1,2018-19,Boston - TechBoston Academy,00350657, 0.2, 3.1, 63.8, 26.8, 3.2, 0.1, 2.8, 45.0, 55.0,97.2,41.599999999999994 +7.617497456765006,5,a-cure-i1,2018-19,Boston - The English High,00350535, 0.4, 1.0, 37.4, 58.5, 0.8, 0.2, 1.7, 40.5, 59.5,98.3,46.800000000000004 +6.630630630630631,5,a-cure-i1,2018-19,Boston - Thomas J Kenny,00350328, 0.0, 14.9, 35.8, 21.3, 5.7, 0.0, 22.3, 46.3, 53.7,77.7,32.2 +7.080366225839268,5,a-cure-i1,2018-19,Boston - UP Academy Holland,00350167, 0.4, 4.8, 46.3, 43.6, 2.9, 0.4, 1.7, 51.6, 48.4,98.3,43.5 +7.655913978494624,5,a-cure-i1,2018-19,Boston - Urban Science Academy,00350579, 0.3, 1.2, 51.2, 36.9, 3.4, 0.0, 7.0, 42.4, 57.3,93.0,44.5 +4.5571725571725565,4.56,a-cure-i1,2018-19,Boston - Warren-Prescott,00350346, 0.2, 5.3, 11.9, 25.0, 5.7, 0.0, 51.9, 47.8, 52.2,48.1,13.7 +8.108672936259143,5,a-cure-i1,2018-19,Boston - Washington Irving Middle,00350445, 1.0, 1.3, 43.8, 47.8, 1.7, 0.0, 4.3, 50.8, 49.2,95.7,48.5 +1,1,a-cure-i1,2018-19,Boston - West Roxbury Academy,00350658, 0.5, 1.2, 48.0, 41.4, 1.5, 0.5, 6.9, 40.4, 59.6,93.1,0.0 +7.0288065843621395,5,a-cure-i1,2018-19,Boston - William E Russell,00350366, 0.5, 11.1, 28.5, 54.7, 2.3, 0.3, 2.8, 50.6, 49.4,97.2,42.699999999999996 +9.323110624315444,5,a-cure-i1,2018-19,Boston - William Ellery Channing,00350360, 0.0, 1.9, 44.7, 41.8, 2.4, 0.5, 8.7, 48.1, 51.9,91.3,53.199999999999996 +5.587301587301587,5,a-cure-i1,2018-19,Boston - William H Ohrenberger,00350258, 0.0, 3.8, 30.4, 38.1, 3.3, 0.0, 24.4, 46.8, 53.2,75.6,26.4 +4.969696969696969,4.97,a-cure-i1,2018-19,Boston - William McKinley,00350363, 0.6, 1.8, 46.8, 40.1, 3.1, 0.0, 7.6, 24.8, 75.2,92.4,28.7 +8.881632653061224,5,a-cure-i1,2018-19,Boston - William Monroe Trotter,00350370, 0.4, 0.6, 56.7, 35.6, 3.8, 1.0, 2.0, 49.7, 50.3,98.0,54.4 +6.60631001371742,5,a-cure-i1,2018-19,Boston - Winship Elementary,00350374, 0.5, 16.1, 17.6, 31.7, 7.0, 0.0, 27.1, 49.7, 50.3,72.9,30.099999999999998 +11.583417593528816,5,a-cure-i1,2018-19,Boston - Young Achievers,00350380, 0.4, 0.0, 50.4, 45.9, 2.3, 0.0, 1.1, 45.7, 54.3,98.9,71.6 +9.945155393053016,5,a-cure-i1,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.1, 2.3, 31.7, 18.3, 2.2, 0.0, 45.3, 50.1, 49.9,54.7,34.0 +6.294803817603394,5,a-cure-i1,2018-19,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.5, 1.0, 47.3, 43.0, 2.6, 0.0, 5.7, 50.8, 48.9,94.3,37.1 +7.648351648351649,5,a-cure-i1,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.2, 2.7, 45.0, 40.1, 2.5, 0.4, 9.0, 49.2, 50.8,91.0,43.5 +4.448938321536906,4.45,a-cure-i1,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.2, 1.7, 65.0, 28.9, 2.9, 0.2, 1.1, 50.8, 49.2,98.9,27.5 +2.5306122448979593,2.53,a-cure-i1,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.3, 62.6, 31.3, 3.8, 0.0, 2.0, 51.5, 48.5,98.0,15.5 +1,1,a-cure-i1,2018-19,Bourne - Bourne High School,00360505, 0.6, 2.3, 2.1, 5.7, 2.3, 0.2, 86.8, 54.4, 45.6,13.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Bourne - Bourne Middle School,00360325, 1.3, 1.7, 0.9, 4.5, 3.9, 0.0, 87.6, 50.6, 49.4,12.400000000000006,4.2 +1,1,a-cure-i1,2018-19,Bourne - Bournedale Elementary School,00360005, 1.2, 0.7, 1.4, 6.2, 3.0, 0.2, 87.3, 45.5, 54.5,12.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Bourne - Peebles Elementary School,00360010, 0.0, 1.5, 2.1, 8.6, 3.0, 0.3, 84.6, 54.4, 45.6,15.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Boxford - Harry Lee Cole,00380005, 0.0, 3.6, 0.0, 3.0, 8.5, 0.0, 84.9, 45.6, 54.4,15.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Boxford - Spofford Pond,00380013, 0.2, 5.1, 1.0, 1.7, 3.4, 0.0, 88.6, 47.7, 52.3,11.400000000000006,0.0 +6.000000000000001,5,a-cure-i1,2018-19,Boylston - Boylston Elementary,00390005, 0.3, 5.4, 1.3, 6.0, 3.7, 0.0, 83.2, 48.3, 51.7,16.799999999999997,6.3 +1,1,a-cure-i1,2018-19,Braintree - Archie T Morrison,00400033, 0.2, 14.6, 8.9, 5.4, 1.4, 0.2, 69.2, 49.3, 50.7,30.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Braintree - Braintree High,00400505, 0.1, 17.8, 5.2, 4.6, 1.3, 0.1, 70.8, 49.6, 50.4,29.200000000000003,4.6 +1,1,a-cure-i1,2018-19,Braintree - Donald Ross,00400050, 0.0, 21.5, 5.9, 5.9, 0.7, 0.0, 65.9, 48.5, 51.5,34.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Braintree - East Middle School,00400305, 0.1, 18.7, 8.2, 6.2, 1.1, 0.1, 65.5, 49.0, 50.9,34.5,2.0 +1,1,a-cure-i1,2018-19,Braintree - Highlands,00400015, 0.5, 17.7, 2.2, 3.0, 0.7, 0.0, 75.8, 50.9, 49.1,24.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Braintree - Hollis,00400005, 0.2, 22.0, 2.1, 5.5, 3.0, 0.0, 67.3, 46.5, 53.5,32.7,0.0 +1,1,a-cure-i1,2018-19,Braintree - Liberty,00400025, 0.0, 30.1, 2.8, 4.2, 2.5, 0.5, 60.0, 49.1, 50.9,40.0,0.0 +1,1,a-cure-i1,2018-19,Braintree - Mary E Flaherty School,00400020, 0.3, 24.5, 3.2, 5.3, 3.2, 0.0, 63.6, 51.1, 48.9,36.4,0.0 +1,1,a-cure-i1,2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 25.0, 1.8, 4.4, 1.5, 0.0, 67.3, 49.6, 50.4,32.7,0.0 +1,1,a-cure-i1,2018-19,Braintree - South Middle School,00400310, 0.1, 17.5, 3.8, 4.1, 0.6, 0.0, 73.9, 52.4, 47.6,26.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Brewster - Eddy Elementary,00410010, 0.0, 1.2, 1.6, 6.1, 4.9, 0.0, 86.1, 48.4, 51.6,13.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 2.1, 6.8, 5.6, 0.0, 85.5, 47.4, 52.6,14.5,0.0 +4.391523713420788,4.39,a-cure-i1,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 1.2, 65.2, 29.2, 3.2, 0.3, 0.9, 49.6, 50.4,99.1,27.2 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.2, 1.4, 5.5, 0.6, 4.4, 0.0, 87.9, 45.5, 54.5,12.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 2.0, 4.4, 0.5, 5.0, 0.2, 88.0, 50.4, 49.6,12.0,1.0 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.2, 2.7, 7.1, 1.5, 3.1, 0.0, 85.3, 51.9, 48.1,14.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 1.8, 4.5, 2.4, 3.0, 0.0, 88.4, 45.7, 54.3,11.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 2.3, 4.4, 2.0, 3.9, 0.1, 87.3, 46.6, 53.4,12.700000000000003,1.8 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 2.4, 5.7, 0.7, 4.6, 0.1, 86.4, 45.2, 54.8,13.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 5.6, 0.0, 5.6, 0.0, 88.9, 50.0, 50.0,11.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.1, 1.7, 6.0, 1.0, 5.6, 0.3, 85.4, 51.4, 48.6,14.599999999999994,2.2 +1,1,a-cure-i1,2018-19,Brimfield - Brimfield Elementary,00430005, 1.0, 1.4, 1.7, 2.0, 0.0, 0.0, 93.9, 51.5, 48.5,6.099999999999994,0.0 +15.29411764705883,5,a-cure-i1,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.3, 4.0, 1.3, 0.2, 93.2, 72.0, 27.5,6.799999999999997,6.5 +1,1,a-cure-i1,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.7, 0.6, 3.2, 6.7, 3.4, 0.0, 85.4, 41.6, 58.2,14.599999999999994,1.6 +1,1,a-cure-i1,2018-19,Brockton - Ashfield Middle School,00440421, 0.5, 3.0, 51.8, 12.1, 3.2, 0.2, 29.2, 49.2, 50.8,70.8,3.3 +1,1,a-cure-i1,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.5, 51.7, 15.9, 3.9, 0.5, 27.5, 47.3, 52.7,72.5,0.0 +2.655509065550906,2.66,a-cure-i1,2018-19,Brockton - Brockton Champion High School,00440515, 0.7, 0.7, 33.3, 31.2, 5.8, 0.0, 28.3, 42.8, 57.2,71.7,11.899999999999999 +3.8048780487804876,3.8,a-cure-i1,2018-19,Brockton - Brockton High,00440505, 0.3, 2.3, 62.6, 12.7, 3.8, 0.2, 18.0, 48.4, 51.6,82.0,19.5 +2.25531914893617,2.26,a-cure-i1,2018-19,Brockton - Brookfield,00440010, 0.0, 1.2, 58.6, 9.6, 5.6, 0.2, 24.8, 46.3, 53.7,75.2,10.6 +1,1,a-cure-i1,2018-19,Brockton - Downey,00440110, 1.0, 1.1, 55.1, 17.6, 5.7, 0.3, 19.2, 43.4, 56.6,80.8,2.9 +1,1,a-cure-i1,2018-19,Brockton - Dr W Arnone Community School,00440001, 0.5, 0.0, 65.1, 17.6, 7.0, 0.0, 9.8, 43.8, 56.2,90.2,2.5 +3.398568019093079,3.4,a-cure-i1,2018-19,Brockton - East Middle School,00440405, 0.3, 0.8, 68.7, 10.7, 3.4, 0.0, 16.2, 49.3, 50.7,83.8,17.8 +1.5614236509758899,1.56,a-cure-i1,2018-19,Brockton - Edgar B Davis,00440023, 0.3, 0.6, 64.3, 14.7, 6.8, 0.5, 12.9, 50.9, 49.1,87.1,8.5 +9.696969696969697,5,a-cure-i1,2018-19,Brockton - Edison Academy,00440520, 0.4, 0.8, 75.6, 11.3, 3.4, 0.8, 7.6, 45.8, 54.2,92.4,56.0 +1,1,a-cure-i1,2018-19,Brockton - Frederick Douglass Academy,00440080, 5.6, 0.0, 44.4, 44.4, 5.6, 0.0, 0.0, 22.2, 77.8,100.0,0.0 +2.3329886246122027,2.33,a-cure-i1,2018-19,Brockton - Gilmore Elementary School,00440055, 0.4, 0.4, 80.3, 11.3, 4.3, 0.0, 3.3, 47.2, 52.8,96.7,14.100000000000001 +4.28696925329429,4.29,a-cure-i1,2018-19,Brockton - Hancock,00440045, 0.4, 2.7, 50.6, 8.1, 6.0, 0.5, 31.7, 54.0, 46.0,68.3,18.299999999999997 +1.7726618705035972,1.77,a-cure-i1,2018-19,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 40.7, 20.3, 8.5, 0.0, 30.5, 27.1, 72.9,69.5,7.7 +2.4791666666666665,2.48,a-cure-i1,2018-19,Brockton - John F Kennedy,00440017, 0.2, 3.4, 56.6, 10.3, 6.4, 0.0, 23.2, 49.9, 50.1,76.8,11.899999999999999 +2.144329896907217,2.14,a-cure-i1,2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 0.3, 3.2, 41.2, 28.3, 4.7, 0.0, 22.4, 51.8, 48.2,77.6,10.4 +1.3299748110831235,1.33,a-cure-i1,2018-19,Brockton - Louis F Angelo Elementary,00440065, 0.9, 6.4, 56.4, 12.1, 3.4, 0.1, 20.6, 48.3, 51.7,79.4,6.6000000000000005 +1.7009966777408638,1.7,a-cure-i1,2018-19,Brockton - Manthala George Jr. School,00440003, 0.7, 0.5, 40.9, 44.8, 3.4, 0.1, 9.7, 48.2, 51.8,90.3,9.6 +2.717808219178082,2.72,a-cure-i1,2018-19,Brockton - Mary E. Baker School,00440002, 0.1, 1.7, 50.3, 14.7, 6.0, 0.1, 27.0, 47.1, 52.9,73.0,12.4 +1.6951351351351354,1.7,a-cure-i1,2018-19,Brockton - North Middle School,00440410, 0.3, 2.6, 65.9, 17.9, 5.5, 0.3, 7.5, 42.2, 57.8,92.5,9.8 +1,1,a-cure-i1,2018-19,Brockton - Oscar F Raymond,00440078, 0.1, 1.0, 76.7, 10.0, 3.5, 0.0, 8.6, 47.7, 52.3,91.4,4.8 +1.4311926605504586,1.43,a-cure-i1,2018-19,Brockton - South Middle School,00440415, 0.0, 1.4, 65.8, 15.8, 4.2, 0.0, 12.8, 45.9, 54.1,87.2,7.8 +1.5614702154626106,1.56,a-cure-i1,2018-19,Brockton - West Middle School,00440420, 0.6, 3.1, 58.0, 13.9, 3.0, 0.3, 21.1, 47.7, 52.3,78.9,7.699999999999999 +5.796858638743456,5,a-cure-i1,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 0.1, 1.8, 53.4, 38.5, 1.6, 0.0, 4.5, 51.6, 48.4,95.5,34.6 +1,1,a-cure-i1,2018-19,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.3, 6.0, 3.5, 0.0, 90.2, 49.4, 50.6,9.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 28.1, 0.0, 8.8, 15.8, 0.0, 47.4, 50.9, 49.1,52.6,0.0 +7.677543186180422,5,a-cure-i1,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 2.1, 25.0, 6.3, 12.5, 6.3, 0.0, 47.9, 39.6, 60.4,52.1,25.0 +6.050113895216402,5,a-cure-i1,2018-19,Brookline - Brookline High,00460505, 0.0, 16.4, 6.8, 11.9, 8.7, 0.1, 56.1, 48.5, 51.1,43.9,16.6 +3.568075117370892,3.57,a-cure-i1,2018-19,Brookline - Coolidge Corner School,00460015, 0.0, 13.9, 5.4, 12.9, 10.4, 0.0, 57.4, 49.4, 50.4,42.6,9.5 +4.8152380952380955,4.82,a-cure-i1,2018-19,Brookline - Edith C Baker,00460005, 0.0, 29.7, 6.2, 8.3, 8.4, 0.0, 47.5, 47.8, 52.2,52.5,15.8 +7.37844611528822,5,a-cure-i1,2018-19,Brookline - Heath,00460025, 0.0, 16.9, 4.2, 8.9, 10.0, 0.0, 60.1, 49.7, 50.3,39.9,18.4 +5.167958656330749,5,a-cure-i1,2018-19,Brookline - John D Runkle,00460045, 0.0, 13.9, 3.7, 10.6, 10.6, 0.0, 61.3, 47.1, 52.9,38.7,12.5 +5.186813186813186,5,a-cure-i1,2018-19,Brookline - Lawrence,00460030, 0.0, 30.9, 5.5, 10.1, 7.9, 0.1, 45.4, 48.9, 51.1,54.6,17.7 +7.177570093457944,5,a-cure-i1,2018-19,Brookline - Michael Driscoll,00460020, 0.0, 16.2, 4.8, 8.1, 13.8, 0.0, 57.2, 46.9, 53.1,42.8,19.2 +7.144032921810699,5,a-cure-i1,2018-19,Brookline - Pierce,00460040, 0.0, 24.6, 4.3, 10.8, 8.9, 0.0, 51.4, 51.6, 48.4,48.6,21.7 +1,1,a-cure-i1,2018-19,Brookline - The Lynch Center,00460060, 0.0, 23.6, 10.9, 10.9, 16.4, 0.0, 38.2, 56.4, 43.6,61.8,0.0 +3.862068965517241,3.86,a-cure-i1,2018-19,Brookline - William H Lincoln,00460035, 0.2, 22.7, 9.8, 11.5, 7.9, 0.0, 47.8, 53.2, 46.8,52.2,12.6 +3.0451612903225804,3.05,a-cure-i1,2018-19,Burlington - Burlington High,00480505, 0.6, 14.6, 6.3, 5.9, 3.6, 0.0, 69.0, 49.5, 50.5,31.0,5.8999999999999995 +1,1,a-cure-i1,2018-19,Burlington - Fox Hill,00480007, 0.0, 22.5, 5.6, 5.6, 3.5, 0.0, 62.7, 50.7, 49.3,37.3,0.0 +1,1,a-cure-i1,2018-19,Burlington - Francis Wyman Elementary,00480035, 0.2, 18.2, 11.5, 6.8, 4.1, 0.0, 59.2, 47.4, 52.6,40.8,2.7 +1,1,a-cure-i1,2018-19,Burlington - Marshall Simonds Middle,00480303, 0.1, 15.9, 5.5, 6.2, 3.8, 0.0, 68.5, 50.2, 49.8,31.5,3.7 +1,1,a-cure-i1,2018-19,Burlington - Memorial,00480015, 0.3, 18.8, 3.0, 7.3, 5.3, 0.0, 65.3, 50.8, 49.2,34.7,3.2 +1,1,a-cure-i1,2018-19,Burlington - Pine Glen Elementary,00480020, 0.0, 16.0, 2.5, 5.3, 5.3, 0.0, 70.8, 47.6, 52.4,29.200000000000003,4.2 +13.033112582781456,5,a-cure-i1,2018-19,Cambridge - Amigos School,00490006, 0.0, 2.6, 4.5, 43.4, 9.8, 0.0, 39.6, 54.2, 45.8,60.4,49.199999999999996 +6.683870967741936,5,a-cure-i1,2018-19,Cambridge - Cambridge Rindge and Latin,00490506, 0.5, 11.0, 29.1, 14.2, 6.9, 0.3, 38.0, 48.8, 51.2,62.0,25.900000000000002 +8.825622775800712,5,a-cure-i1,2018-19,Cambridge - Cambridge Street Upper School,00490305, 0.4, 6.6, 22.3, 18.0, 8.6, 0.4, 43.8, 48.0, 52.0,56.2,31.0 +8.7437641723356,5,a-cure-i1,2018-19,Cambridge - Cambridgeport,00490007, 0.0, 8.3, 16.9, 7.1, 11.8, 0.0, 55.9, 46.4, 53.6,44.1,24.1 +3.6790419161676646,3.68,a-cure-i1,2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 0.3, 10.4, 50.5, 16.5, 5.7, 0.0, 16.5, 47.1, 52.9,83.5,19.2 +5.680297397769517,5,a-cure-i1,2018-19,Cambridge - Graham and Parks,00490080, 0.0, 20.8, 18.7, 8.7, 5.5, 0.0, 46.2, 50.9, 49.1,53.8,19.1 +7.184313725490195,5,a-cure-i1,2018-19,Cambridge - Haggerty,00490020, 0.0, 17.2, 16.1, 7.3, 10.3, 0.0, 49.0, 51.3, 48.7,51.0,22.9 +5.407279029462738,5,a-cure-i1,2018-19,Cambridge - John M Tobin,00490065, 0.7, 17.3, 21.8, 9.1, 8.8, 0.0, 42.3, 45.0, 55.0,57.7,19.5 +3.2237037037037037,3.22,a-cure-i1,2018-19,Cambridge - Kennedy-Longfellow,00490040, 0.0, 23.7, 17.0, 19.4, 7.1, 0.4, 32.5, 47.7, 52.3,67.5,13.6 +9.861456483126112,5,a-cure-i1,2018-19,Cambridge - King Open,00490035, 0.6, 12.0, 19.5, 13.9, 10.3, 0.0, 43.7, 47.9, 52.1,56.3,34.7 +6.813397129186604,5,a-cure-i1,2018-19,Cambridge - Maria L. Baldwin,00490005, 0.3, 7.8, 13.0, 11.1, 9.7, 0.0, 58.2, 50.1, 49.9,41.8,17.8 +7.573187414500685,5,a-cure-i1,2018-19,Cambridge - Martin Luther King Jr.,00490030, 0.3, 25.4, 22.3, 5.2, 19.9, 0.0, 26.9, 49.5, 50.5,73.1,34.6 +4.013201320132013,4.01,a-cure-i1,2018-19,Cambridge - Morse,00490045, 0.7, 15.5, 24.6, 10.1, 9.8, 0.0, 39.4, 46.1, 53.9,60.6,15.2 +7.627118644067796,5,a-cure-i1,2018-19,Cambridge - Peabody,00490050, 0.0, 12.6, 19.9, 7.7, 7.1, 0.0, 52.8, 51.8, 48.2,47.2,22.5 +11.493261455525605,5,a-cure-i1,2018-19,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 14.0, 36.2, 14.0, 9.6, 0.4, 25.8, 51.7, 48.3,74.2,53.3 +6.00359066427289,5,a-cure-i1,2018-19,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 8.7, 30.1, 8.7, 8.0, 0.3, 44.3, 55.4, 44.6,55.7,20.9 +6.872665534804754,5,a-cure-i1,2018-19,Cambridge - Vassal Lane Upper School,00490320, 0.0, 17.1, 25.4, 8.4, 7.7, 0.3, 41.1, 52.8, 47.2,58.9,25.3 +3.949367088607596,3.95,a-cure-i1,2018-19,Canton - Canton High,00500505, 0.0, 11.5, 10.8, 5.0, 4.3, 0.0, 68.4, 52.4, 47.3,31.599999999999994,7.800000000000001 +1,1,a-cure-i1,2018-19,Canton - Dean S Luce,00500020, 0.0, 12.5, 9.0, 4.7, 5.7, 0.8, 67.1, 50.3, 49.7,32.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Canton - John F Kennedy,00500017, 0.0, 8.8, 6.7, 4.4, 6.9, 0.0, 73.1, 47.2, 52.8,26.900000000000006,0.0 +2.8481675392670156,2.85,a-cure-i1,2018-19,Canton - Lt Peter M Hansen,00500012, 0.2, 11.0, 13.0, 6.6, 7.2, 0.2, 61.8, 48.3, 51.7,38.2,6.8 +1,1,a-cure-i1,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, 12.6, 11.5, 10.3, 3.4, 0.0, 62.1, 32.2, 67.8,37.9,0.0 +3.2911392405063298,3.29,a-cure-i1,2018-19,Canton - Wm H Galvin Middle,00500305, 0.0, 9.8, 12.1, 4.3, 5.2, 0.1, 68.4, 52.4, 47.6,31.599999999999994,6.5 +1,1,a-cure-i1,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.4, 2.1, 2.5, 4.5, 5.0, 0.0, 85.5, 54.5, 45.5,14.5,0.0 +1,1,a-cure-i1,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.9, 0.7, 7.9, 12.1, 4.4, 0.5, 72.5, 34.7, 65.3,27.5,0.0 +1,1,a-cure-i1,2018-19,Carlisle - Carlisle School,00510025, 0.0, 11.2, 0.7, 4.5, 10.0, 0.0, 73.7, 46.8, 53.2,26.299999999999997,1.8 +1,1,a-cure-i1,2018-19,Carver - Carver Elementary School,00520015, 0.3, 0.5, 1.6, 1.5, 1.6, 0.0, 94.5, 51.3, 48.7,5.5,4.8 +27.80952380952379,5,a-cure-i1,2018-19,Carver - Carver Middle/High School,00520405, 0.1, 0.4, 0.9, 1.6, 0.9, 0.3, 95.8, 47.2, 52.8,4.200000000000003,7.3 +1,1,a-cure-i1,2018-19,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 3.2, 3.2, 0.0, 93.6, 47.2, 52.8,6.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Central Berkshire - Craneville,06350025, 0.5, 1.0, 0.3, 6.0, 4.5, 0.0, 87.8, 46.0, 54.0,12.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Central Berkshire - Kittredge,06350035, 0.0, 0.7, 0.7, 4.7, 2.7, 0.0, 91.3, 57.7, 42.3,8.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.5, 1.1, 2.9, 3.5, 0.0, 92.0, 48.7, 51.3,8.0,0.0 +1,1,a-cure-i1,2018-19,Central Berkshire - Wahconah Regional High,06350505, 0.2, 1.1, 0.8, 3.0, 2.4, 0.0, 92.5, 48.2, 51.8,7.5,0.5 +1,1,a-cure-i1,2018-19,Chelmsford - Byam School,00560030, 0.4, 11.7, 1.7, 6.9, 4.2, 0.0, 75.1, 49.7, 50.3,24.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Chelmsford - Center Elementary School,00560005, 0.0, 17.3, 3.6, 6.1, 3.4, 0.2, 69.4, 49.6, 50.4,30.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Chelmsford - Charles D Harrington,00560025, 0.0, 17.6, 4.9, 9.9, 3.2, 0.0, 64.4, 48.8, 51.2,35.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Chelmsford - Chelmsford High,00560505, 0.0, 14.1, 3.5, 3.8, 2.1, 0.1, 76.3, 50.1, 49.9,23.700000000000003,2.8 +1,1,a-cure-i1,2018-19,Chelmsford - Col Moses Parker School,00560305, 0.4, 14.8, 2.6, 5.7, 2.0, 0.0, 74.5, 44.6, 55.4,25.5,0.0 +1,1,a-cure-i1,2018-19,Chelmsford - Community Education Center,00560001, 0.7, 25.8, 1.3, 6.0, 4.6, 0.0, 61.6, 39.1, 60.9,38.4,0.0 +1,1,a-cure-i1,2018-19,Chelmsford - McCarthy Middle School,00560310, 0.1, 14.4, 3.2, 5.1, 3.6, 0.1, 73.5, 47.2, 52.8,26.5,3.1 +1,1,a-cure-i1,2018-19,Chelmsford - South Row,00560015, 0.5, 15.1, 1.9, 6.5, 4.3, 0.0, 71.6, 45.4, 54.6,28.400000000000006,0.0 +2.448637316561845,2.45,a-cure-i1,2018-19,Chelsea - Chelsea High,00570505, 0.1, 1.6, 5.8, 87.4, 0.4, 0.1, 4.6, 46.5, 53.5,95.4,14.600000000000001 +1,1,a-cure-i1,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 1.9, 96.2, 0.0, 0.0, 1.9, 32.7, 67.3,98.1,0.0 +1.0519618239660657,1.05,a-cure-i1,2018-19,Chelsea - Clark Avenue School,00570050, 0.6, 0.6, 3.6, 88.4, 0.9, 0.2, 5.7, 47.9, 52.1,94.3,6.2 +1.9977502812148482,2.0,a-cure-i1,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 0.2, 0.6, 6.5, 80.1, 1.7, 0.0, 11.1, 46.3, 53.7,88.9,11.100000000000001 +1,1,a-cure-i1,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 1.2, 6.3, 84.2, 1.6, 0.0, 6.7, 47.8, 52.2,93.3,3.8 +1.9570815450643775,1.96,a-cure-i1,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.8, 5.7, 85.5, 1.3, 0.0, 6.8, 49.1, 50.9,93.2,11.399999999999999 +2.0934579439252334,2.09,a-cure-i1,2018-19,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.4, 3.3, 92.1, 0.6, 0.0, 3.7, 52.1, 47.9,96.3,12.6 +2.416050686378036,2.42,a-cure-i1,2018-19,Chelsea - Joseph A. Browne School,00570055, 0.0, 1.4, 4.1, 89.0, 0.2, 0.0, 5.3, 48.5, 51.5,94.7,14.3 +1,1,a-cure-i1,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.7, 4.5, 85.3, 0.6, 0.0, 9.0, 50.9, 49.1,91.0,4.7 +1.9848975188781013,1.98,a-cure-i1,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 0.2, 1.7, 5.4, 85.0, 0.4, 0.0, 7.3, 47.2, 52.8,92.7,11.5 +1,1,a-cure-i1,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.6, 0.0, 1.6, 1.6, 0.0, 0.0, 95.3, 50.4, 49.6,4.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Chicopee - Barry,00610003, 0.0, 2.6, 3.2, 32.9, 2.3, 0.2, 58.7, 43.2, 56.8,41.3,0.0 +1,1,a-cure-i1,2018-19,Chicopee - Belcher,00610010, 0.0, 1.5, 8.3, 37.9, 1.9, 0.0, 50.4, 49.6, 50.4,49.6,0.0 +1,1,a-cure-i1,2018-19,Chicopee - Bellamy Middle,00610305, 0.0, 1.9, 3.0, 40.7, 4.2, 0.0, 50.2, 48.6, 51.4,49.8,1.9 +1,1,a-cure-i1,2018-19,Chicopee - Bowe,00610015, 0.0, 1.8, 6.4, 54.8, 5.6, 0.0, 31.4, 49.4, 50.6,68.6,0.0 +2.778135048231512,2.78,a-cure-i1,2018-19,Chicopee - Bowie,00610020, 0.3, 1.2, 4.7, 22.0, 2.5, 0.3, 68.9, 48.1, 51.9,31.099999999999994,5.4 +1,1,a-cure-i1,2018-19,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 3.3, 71.1, 3.3, 0.0, 22.2, 37.8, 62.2,77.8,0.0 +1,1,a-cure-i1,2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 0.2, 2.8, 2.2, 25.9, 2.2, 0.0, 66.6, 45.9, 54.1,33.400000000000006,4.2 +1.9137254901960785,1.91,a-cure-i1,2018-19,Chicopee - Chicopee High,00610505, 0.0, 2.8, 5.2, 41.7, 1.3, 0.0, 49.0, 49.5, 50.4,51.0,6.1000000000000005 +1,1,a-cure-i1,2018-19,Chicopee - Dupont Middle,00610310, 0.1, 2.7, 4.5, 40.8, 3.6, 0.0, 48.3, 44.8, 55.2,51.7,3.2 +1,1,a-cure-i1,2018-19,Chicopee - Fairview Elementary,00610050, 0.2, 1.8, 2.9, 50.0, 3.1, 0.0, 42.0, 44.4, 55.6,58.0,4.0 +1,1,a-cure-i1,2018-19,Chicopee - Gen John J Stefanik,00610090, 0.0, 1.0, 5.7, 67.1, 3.7, 0.0, 22.5, 47.5, 52.5,77.5,4.3 +1,1,a-cure-i1,2018-19,Chicopee - Lambert-Lavoie,00610040, 0.0, 2.4, 3.1, 24.7, 3.4, 0.0, 66.4, 44.2, 55.8,33.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Chicopee - Litwin,00610022, 0.0, 0.3, 5.5, 32.0, 1.5, 0.0, 60.8, 46.0, 54.0,39.2,0.0 +1,1,a-cure-i1,2018-19,Chicopee - Streiber Memorial School,00610065, 0.0, 4.1, 5.3, 23.6, 5.7, 0.4, 61.0, 47.6, 52.4,39.0,1.2 +1,1,a-cure-i1,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.9, 4.4, 28.8, 6.1, 0.0, 59.8, 35.8, 64.2,40.2,0.0 +10.601626016260163,5,a-cure-i1,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.3, 4.0, 2.5, 12.8, 5.0, 0.0, 75.4, 49.0, 51.0,24.599999999999994,16.299999999999997 +4.904276985743381,4.9,a-cure-i1,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 67.9, 29.9, 0.4, 0.0, 1.8, 47.6, 52.4,98.2,30.1 +1.9349593495934958,1.93,a-cure-i1,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 2.4, 67.8, 26.9, 1.2, 0.0, 1.6, 51.8, 48.2,98.4,11.9 +3.6981132075471694,3.7,a-cure-i1,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.9, 0.9, 11.1, 45.6, 5.1, 0.0, 36.4, 47.5, 52.1,63.6,14.7 +1,1,a-cure-i1,2018-19,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.5, 3.2, 0.0, 96.2, 50.8, 49.2,3.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 2.5, 25.0, 2.5, 0.0, 68.9, 49.4, 50.6,31.099999999999994,1.9 +1,1,a-cure-i1,2018-19,Clinton - Clinton Middle School,00640305, 0.0, 1.2, 3.8, 23.4, 1.6, 0.2, 69.9, 44.5, 55.5,30.099999999999994,4.8 +2.4000000000000004,2.4,a-cure-i1,2018-19,Clinton - Clinton Senior High,00640505, 0.0, 2.6, 4.6, 27.0, 1.8, 0.0, 64.0, 50.0, 50.0,36.0,5.4 +8.611670020120725,5,a-cure-i1,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.3, 0.0, 75.7, 21.9, 0.9, 0.6, 0.6, 51.2, 48.8,99.4,53.50000000000001 +1,1,a-cure-i1,2018-19,Cohasset - Cohasset Middle/High School,00650505, 0.2, 3.1, 3.0, 1.4, 1.1, 0.0, 91.1, 48.6, 51.4,8.900000000000006,1.4 +1,1,a-cure-i1,2018-19,Cohasset - Deer Hill,00650005, 0.0, 1.9, 3.7, 0.5, 1.6, 0.0, 92.3, 48.3, 51.7,7.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Cohasset - Joseph Osgood,00650010, 0.0, 1.1, 2.3, 2.0, 1.4, 0.0, 93.1, 51.0, 49.0,6.900000000000006,0.0 +3.7257683215130024,3.73,a-cure-i1,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.1, 25.1, 18.8, 36.1, 4.6, 0.0, 15.4, 50.9, 49.1,84.6,19.7 +8.083507306889354,5,a-cure-i1,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.6, 4.8, 65.1, 20.8, 4.2, 0.3, 4.2, 55.4, 44.6,95.8,48.400000000000006 +1.6902564102564104,1.69,a-cure-i1,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.3, 0.6, 1.1, 95.6, 0.0, 0.0, 2.5, 48.1, 51.9,97.5,10.3 +4.522448979591837,4.52,a-cure-i1,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.3, 0.5, 97.2, 0.0, 0.0, 2.0, 50.9, 49.1,98.0,27.700000000000003 +2.1908713692946056,2.19,a-cure-i1,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 1.1, 1.1, 93.6, 0.6, 0.0, 3.6, 51.9, 48.1,96.4,13.2 +3.1807228915662646,3.18,a-cure-i1,2018-19,Concord - Alcott,00670005, 0.0, 8.4, 8.8, 10.0, 6.1, 0.0, 66.8, 47.4, 52.6,33.2,6.6 +8.949152542372882,5,a-cure-i1,2018-19,Concord - Concord Middle,00670305, 0.4, 7.6, 4.9, 5.0, 5.6, 0.0, 76.4, 49.5, 50.3,23.599999999999994,13.2 +4.413793103448276,4.41,a-cure-i1,2018-19,Concord - Thoreau,00670020, 0.0, 6.9, 1.3, 6.5, 8.6, 0.0, 76.8, 48.2, 51.8,23.200000000000003,6.4 +13.493975903614462,5,a-cure-i1,2018-19,Concord - Willard,00670030, 0.0, 5.7, 1.2, 4.3, 5.5, 0.0, 83.4, 47.0, 53.0,16.599999999999994,14.0 +4.857142857142856,4.86,a-cure-i1,2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 0.1, 8.7, 4.2, 4.6, 4.8, 0.0, 77.6, 52.5, 47.3,22.400000000000006,6.8 +5.042016806722689,5,a-cure-i1,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 3.2, 48.8, 40.8, 2.5, 0.0, 4.8, 55.3, 44.7,95.2,30.0 +1,1,a-cure-i1,2018-19,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.5, 5.2, 0.7, 0.0, 92.6, 47.4, 52.6,7.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Danvers - Danvers High,00710505, 0.1, 2.9, 2.3, 7.1, 1.9, 0.0, 85.7, 49.0, 51.0,14.299999999999997,1.6 +1,1,a-cure-i1,2018-19,Danvers - Great Oak,00710015, 0.3, 2.2, 2.4, 8.4, 4.9, 0.0, 81.9, 48.8, 51.2,18.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Danvers - Highlands,00710010, 0.5, 2.6, 3.1, 10.4, 3.6, 0.0, 79.7, 47.7, 52.3,20.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Danvers - Holten Richmond Middle School,00710305, 0.1, 2.4, 2.5, 8.3, 3.1, 0.0, 83.6, 50.1, 49.9,16.400000000000006,4.5 +1,1,a-cure-i1,2018-19,Danvers - Ivan G Smith,00710032, 0.0, 2.4, 1.7, 8.2, 2.7, 0.7, 84.2, 55.1, 44.9,15.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Danvers - Riverside,00710030, 0.3, 2.3, 2.6, 8.0, 2.0, 0.0, 84.9, 43.2, 56.8,15.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Danvers - Willis E Thorpe,00710045, 0.3, 2.8, 0.9, 4.7, 0.3, 0.0, 90.9, 48.3, 51.7,9.099999999999994,4.5 +1,1,a-cure-i1,2018-19,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.7, 1.4, 5.0, 6.5, 0.0, 86.3, 48.9, 51.1,13.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Dartmouth - Dartmouth High,00720505, 0.0, 0.4, 1.6, 3.5, 7.0, 0.0, 87.6, 50.1, 49.8,12.400000000000006,1.4 +1,1,a-cure-i1,2018-19,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.3, 1.6, 3.8, 6.2, 0.1, 88.0, 43.6, 56.4,12.0,1.4 +1,1,a-cure-i1,2018-19,Dartmouth - George H Potter,00720030, 0.0, 0.5, 1.5, 4.2, 4.2, 0.0, 89.6, 45.7, 54.3,10.400000000000006,4.4 +1,1,a-cure-i1,2018-19,Dartmouth - James M. Quinn School,00720040, 0.0, 1.2, 1.2, 5.0, 5.9, 0.0, 86.6, 48.0, 52.0,13.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Dartmouth - Joseph Demello,00720015, 0.0, 0.9, 0.7, 4.7, 6.2, 0.0, 87.4, 48.8, 51.2,12.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Dedham - Avery,00730010, 1.0, 2.3, 9.8, 29.5, 6.2, 0.0, 51.1, 52.1, 47.9,48.9,0.0 +4.185430463576159,4.19,a-cure-i1,2018-19,Dedham - Dedham High,00730505, 0.0, 2.8, 9.6, 15.6, 2.1, 0.0, 69.8, 49.6, 50.4,30.200000000000003,7.9 +1,1,a-cure-i1,2018-19,Dedham - Dedham Middle School,00730305, 0.3, 3.4, 6.5, 15.5, 3.6, 0.0, 70.8, 47.6, 52.4,29.200000000000003,2.0 +1,1,a-cure-i1,2018-19,Dedham - Early Childhood Center,00730005, 0.0, 3.3, 3.7, 14.7, 7.4, 0.0, 70.9, 46.2, 53.8,29.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Dedham - Greenlodge,00730025, 0.0, 1.6, 4.5, 6.9, 2.8, 0.0, 84.2, 42.5, 57.5,15.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Dedham - Oakdale,00730030, 0.0, 1.1, 5.9, 13.0, 7.1, 0.0, 72.9, 49.4, 50.6,27.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Dedham - Riverdale,00730045, 0.0, 2.3, 8.1, 15.7, 5.8, 0.0, 68.0, 45.3, 54.7,32.0,0.0 +1,1,a-cure-i1,2018-19,Deerfield - Deerfield Elementary,00740015, 0.0, 0.8, 0.3, 6.1, 7.1, 0.0, 85.7, 50.8, 49.2,14.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.8, 2.7, 10.3, 12.5, 5.3, 0.1, 67.4, 51.1, 48.9,32.599999999999994,2.9000000000000004 +1,1,a-cure-i1,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.3, 1.0, 10.2, 12.1, 8.6, 0.3, 66.6, 46.8, 53.2,33.400000000000006,3.8 +1,1,a-cure-i1,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 3.3, 2.0, 12.3, 14.6, 5.3, 0.3, 62.1, 42.5, 57.5,37.9,0.0 +5.017751479289941,5,a-cure-i1,2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 2.4, 2.4, 8.0, 14.9, 6.0, 0.0, 66.2, 51.1, 48.9,33.8,10.6 +1,1,a-cure-i1,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 2.9, 1.2, 9.2, 13.1, 8.8, 0.0, 64.8, 49.4, 50.6,35.2,3.6 +1,1,a-cure-i1,2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 1.6, 3.2, 6.4, 8.0, 6.4, 0.5, 73.9, 48.9, 51.1,26.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 2.0, 2.0, 5.2, 5.0, 0.0, 85.7, 47.6, 52.4,14.299999999999997,0.0 +8.648648648648653,5,a-cure-i1,2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.0, 1.4, 4.6, 4.1, 0.0, 88.9, 45.5, 54.5,11.099999999999994,6.0 +1,1,a-cure-i1,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.1, 0.8, 1.1, 3.9, 1.9, 0.0, 92.1, 46.6, 53.4,7.900000000000006,2.1 +1,1,a-cure-i1,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.0, 0.3, 4.3, 3.8, 0.0, 90.3, 51.3, 48.7,9.700000000000003,3.8 +1,1,a-cure-i1,2018-19,Dighton-Rehoboth - Palmer River,06500010, 0.2, 1.9, 0.9, 4.8, 3.4, 0.0, 88.9, 49.5, 50.5,11.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Douglas - Douglas Elementary School,00770015, 0.0, 0.6, 0.3, 4.2, 4.2, 0.0, 90.7, 48.2, 51.8,9.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Douglas - Douglas High School,00770505, 0.0, 1.8, 0.8, 2.8, 2.0, 0.8, 91.9, 50.1, 49.9,8.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Douglas - Douglas Middle School,00770305, 0.0, 1.2, 0.6, 3.4, 2.5, 0.0, 92.2, 47.2, 52.8,7.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Douglas - Douglas Primary School,00770005, 0.0, 0.5, 0.0, 5.4, 3.6, 0.0, 90.5, 46.4, 53.6,9.5,0.0 +3.3163636363636364,3.32,a-cure-i1,2018-19,Dover - Chickering,00780005, 0.0, 14.8, 3.4, 4.2, 4.8, 0.2, 72.5, 43.9, 56.1,27.5,5.7 +5.875706214689265,5,a-cure-i1,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.1, 7.1, 2.5, 4.0, 3.9, 0.0, 82.3, 48.4, 51.5,17.700000000000003,6.5 +4.210526315789474,4.21,a-cure-i1,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.2, 10.7, 3.4, 4.0, 4.4, 0.0, 77.2, 46.9, 53.1,22.799999999999997,6.0 +1,1,a-cure-i1,2018-19,Dracut - Brookside Elementary,00790035, 0.0, 5.9, 11.4, 9.8, 0.7, 0.0, 72.2, 48.3, 51.7,27.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Dracut - Dracut Senior High,00790505, 0.5, 8.1, 8.0, 6.7, 2.3, 0.0, 74.4, 48.8, 51.2,25.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Dracut - George H. Englesby Elementary School,00790045, 0.0, 7.4, 4.8, 14.4, 1.3, 0.0, 72.2, 48.1, 51.9,27.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Dracut - Greenmont Avenue,00790030, 0.0, 3.0, 6.0, 12.5, 1.9, 0.0, 76.6, 47.2, 52.8,23.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 5.0, 3.8, 5.2, 3.6, 0.2, 82.3, 45.1, 54.9,17.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Dracut - Justus C. Richardson Middle School,00790410, 0.2, 7.2, 5.8, 10.8, 1.2, 0.0, 74.8, 49.4, 50.6,25.200000000000003,2.1 +8.179591836734692,5,a-cure-i1,2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.4, 0.0, 62.5, 34.8, 0.4, 0.0, 2.0, 52.3, 47.7,98.0,50.099999999999994 +1,1,a-cure-i1,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.3, 0.3, 0.9, 9.2, 4.0, 0.0, 85.3, 47.3, 52.7,14.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.3, 1.5, 0.6, 7.2, 1.6, 0.3, 88.5, 49.3, 50.7,11.5,0.0 +8.7,5,a-cure-i1,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.3, 2.4, 10.0, 3.3, 0.0, 84.0, 45.5, 54.5,16.0,8.7 +1,1,a-cure-i1,2018-19,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 1.1, 2.0, 7.8, 3.2, 0.0, 85.9, 54.0, 46.0,14.099999999999994,2.4 +1,1,a-cure-i1,2018-19,Dudley-Charlton Reg - Heritage School,06580030, 0.2, 0.7, 1.6, 7.1, 3.3, 0.0, 87.1, 44.8, 55.2,12.900000000000006,0.0 +6.3276836158192085,5,a-cure-i1,2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 0.4, 0.7, 1.1, 11.3, 4.2, 0.0, 82.3, 44.9, 55.1,17.700000000000003,7.0 +1,1,a-cure-i1,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.2, 2.1, 2.0, 8.3, 2.5, 0.0, 84.9, 51.1, 48.8,15.099999999999994,1.4 +1,1,a-cure-i1,2018-19,Duxbury - Alden School,00820004, 0.0, 0.8, 0.3, 3.0, 4.6, 0.0, 91.3, 47.9, 52.1,8.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Duxbury - Chandler Elementary,00820006, 0.0, 0.6, 0.5, 2.1, 3.7, 0.0, 93.2, 49.4, 50.6,6.799999999999997,3.5 +1,1,a-cure-i1,2018-19,Duxbury - Duxbury High,00820505, 0.1, 1.8, 0.3, 2.2, 2.2, 0.0, 93.4, 49.9, 50.1,6.599999999999994,2.8 +1,1,a-cure-i1,2018-19,Duxbury - Duxbury Middle,00820305, 0.1, 1.5, 0.1, 2.0, 3.6, 0.0, 92.7, 50.0, 50.0,7.299999999999997,2.1 +1,1,a-cure-i1,2018-19,East Bridgewater - Central,00830005, 0.3, 0.9, 2.4, 3.4, 3.6, 0.0, 89.4, 52.6, 47.4,10.599999999999994,0.0 +1,1,a-cure-i1,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.3, 0.7, 2.4, 1.6, 1.6, 0.0, 93.5, 50.7, 49.3,6.5,1.5 +1,1,a-cure-i1,2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 0.6, 0.8, 3.8, 1.8, 3.7, 0.2, 89.2, 43.7, 56.3,10.799999999999997,0.0 +6.271356783919597,5,a-cure-i1,2018-19,East Longmeadow - Birchland Park,00870305, 0.0, 4.3, 4.8, 7.8, 3.0, 0.0, 80.1, 48.1, 51.9,19.900000000000006,7.800000000000001 +10.482758620689651,5,a-cure-i1,2018-19,East Longmeadow - East Longmeadow High,00870505, 0.4, 6.3, 3.4, 6.3, 0.8, 0.2, 82.6, 49.8, 50.2,17.400000000000006,11.399999999999999 +1,1,a-cure-i1,2018-19,East Longmeadow - Mapleshade,00870010, 0.0, 8.4, 4.0, 10.7, 2.7, 0.0, 74.2, 49.7, 50.3,25.799999999999997,0.0 +1,1,a-cure-i1,2018-19,East Longmeadow - Meadow Brook,00870013, 0.2, 3.9, 2.1, 11.7, 4.6, 0.0, 77.5, 47.9, 52.1,22.5,3.2 +1,1,a-cure-i1,2018-19,East Longmeadow - Mountain View,00870015, 0.4, 4.0, 2.9, 8.8, 4.8, 0.0, 79.1, 44.7, 55.3,20.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Eastham - Eastham Elementary,00850005, 0.0, 3.5, 8.2, 1.8, 2.9, 0.0, 83.6, 48.0, 52.0,16.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Easthampton - Center School,00860005, 1.0, 2.5, 0.5, 13.7, 3.9, 0.0, 78.4, 47.5, 52.5,21.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Easthampton - Easthampton High,00860505, 0.0, 3.2, 1.7, 12.4, 2.3, 0.2, 80.2, 53.2, 46.6,19.799999999999997,3.1 +1,1,a-cure-i1,2018-19,Easthampton - Maple,00860010, 0.4, 3.2, 0.8, 10.0, 3.6, 0.0, 82.0, 46.4, 53.6,18.0,0.0 +4.081632653061224,4.08,a-cure-i1,2018-19,Easthampton - Neil A Pepin,00860020, 0.5, 3.9, 1.0, 17.2, 6.9, 0.0, 70.6, 48.0, 52.0,29.400000000000006,7.5 +1,1,a-cure-i1,2018-19,Easthampton - White Brook Middle School,00860305, 0.2, 4.6, 1.0, 13.6, 1.0, 0.0, 79.7, 47.7, 52.3,20.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Easton - Center School,00880003, 0.4, 2.0, 8.6, 8.6, 3.5, 0.4, 76.5, 43.9, 56.1,23.5,0.0 +1,1,a-cure-i1,2018-19,Easton - Easton Middle School,00880405, 0.0, 2.9, 5.3, 4.6, 2.3, 0.0, 84.9, 48.8, 51.2,15.099999999999994,3.2 +1,1,a-cure-i1,2018-19,Easton - Moreau Hall,00880020, 1.8, 4.0, 8.9, 6.7, 2.7, 0.4, 75.6, 47.1, 52.9,24.400000000000006,0.0 +6.054054054054054,5,a-cure-i1,2018-19,Easton - Oliver Ames High,00880505, 0.4, 3.6, 6.6, 4.9, 3.1, 0.0, 81.5, 52.9, 47.1,18.5,7.0 +1,1,a-cure-i1,2018-19,Easton - Parkview Elementary,00880015, 0.6, 2.6, 3.2, 6.8, 3.9, 0.0, 82.8, 53.2, 46.8,17.200000000000003,2.1 +1,1,a-cure-i1,2018-19,Easton - Richardson Olmsted School,00880025, 0.2, 3.3, 6.4, 5.3, 3.7, 0.1, 80.9, 47.7, 52.3,19.099999999999994,3.9 +1,1,a-cure-i1,2018-19,Edgartown - Edgartown Elementary,00890005, 2.4, 0.3, 3.5, 19.7, 6.2, 0.0, 67.8, 51.6, 48.4,32.2,0.0 +8.556593977154725,5,a-cure-i1,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, 0.5, 0.8, 40.7, 51.4, 2.9, 0.0, 3.7, 62.7, 37.3,96.3,51.5 +1,1,a-cure-i1,2018-19,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.8, 3.1, 11.7, 0.0, 84.4, 46.1, 53.9,15.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.4, 1.6, 1.1, 12.0, 3.0, 0.0, 81.8, 57.8, 42.0,18.200000000000003,1.1 +1,1,a-cure-i1,2018-19,Everett - Adams School,00930003, 0.0, 6.7, 18.6, 50.0, 2.1, 0.0, 22.7, 41.2, 58.8,77.3,0.0 +3.52,3.52,a-cure-i1,2018-19,Everett - Devens School,00930030, 0.0, 1.4, 28.6, 35.7, 4.3, 0.0, 30.0, 15.7, 84.3,70.0,15.4 +2.600262123197903,2.6,a-cure-i1,2018-19,Everett - Everett High,00930505, 0.4, 4.9, 19.8, 49.6, 1.5, 0.2, 23.7, 48.6, 51.4,76.3,12.399999999999999 +1.510204081632653,1.51,a-cure-i1,2018-19,Everett - George Keverian School,00930028, 0.2, 5.1, 15.7, 55.2, 2.1, 0.1, 21.6, 49.5, 50.5,78.4,7.4 +1,1,a-cure-i1,2018-19,Everett - Lafayette School,00930038, 0.5, 5.9, 18.5, 48.9, 2.7, 0.0, 23.5, 49.5, 50.5,76.5,2.2 +1,1,a-cure-i1,2018-19,Everett - Madeline English School,00930018, 0.3, 5.9, 12.2, 51.5, 1.8, 0.1, 28.2, 50.8, 49.2,71.8,0.0 +1,1,a-cure-i1,2018-19,Everett - Parlin School,00930058, 0.0, 2.6, 14.7, 69.3, 1.0, 0.0, 12.4, 51.4, 48.6,87.6,0.0 +1.6410256410256412,1.64,a-cure-i1,2018-19,Everett - Sumner G. Whittier School,00930010, 1.3, 5.2, 10.7, 66.8, 1.9, 0.0, 14.2, 48.8, 51.2,85.8,8.8 +1.278236914600551,1.28,a-cure-i1,2018-19,Everett - Webster School,00930015, 0.1, 6.7, 15.7, 49.4, 0.6, 0.1, 27.4, 48.1, 51.9,72.6,5.8 +2.961625282167043,2.96,a-cure-i1,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.8, 1.2, 6.4, 79.3, 0.5, 0.3, 11.4, 51.0, 49.0,88.6,16.4 +1,1,a-cure-i1,2018-19,Fairhaven - East Fairhaven,00940010, 1.0, 1.0, 2.2, 7.0, 4.6, 0.0, 84.2, 48.8, 51.2,15.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Fairhaven - Fairhaven High,00940505, 0.3, 1.8, 1.2, 5.4, 2.0, 0.0, 89.3, 53.3, 46.7,10.700000000000003,0.0 +7.880597014925369,5,a-cure-i1,2018-19,Fairhaven - Hastings Middle,00940305, 0.8, 2.5, 1.9, 4.8, 3.4, 0.0, 86.6, 47.3, 52.7,13.400000000000006,6.6 +1,1,a-cure-i1,2018-19,Fairhaven - Leroy Wood,00940030, 0.6, 1.9, 4.0, 4.8, 4.8, 0.0, 83.8, 50.2, 49.8,16.200000000000003,0.0 +2.2806236080178177,2.28,a-cure-i1,2018-19,Fall River - B M C Durfee High,00950505, 0.2, 5.3, 8.3, 26.0, 4.9, 0.1, 55.1, 49.1, 50.9,44.9,6.4 +1,1,a-cure-i1,2018-19,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.3, 4.3, 8.7, 31.7, 9.9, 0.0, 45.2, 49.3, 50.7,54.8,0.0 +3.172881355932203,3.17,a-cure-i1,2018-19,Fall River - Henry Lord Community School,00950017, 0.1, 3.7, 10.2, 34.4, 10.4, 0.1, 41.0, 46.4, 53.6,59.0,11.7 +1,1,a-cure-i1,2018-19,Fall River - James Tansey,00950140, 0.0, 0.6, 3.5, 9.6, 9.0, 0.0, 77.2, 50.6, 49.4,22.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Fall River - John J Doran,00950045, 0.2, 1.2, 9.2, 31.9, 10.2, 0.0, 47.4, 47.9, 52.1,52.6,3.3 +1.5969289827255277,1.6,a-cure-i1,2018-19,Fall River - Letourneau Elementary School,00950013, 0.0, 2.6, 6.3, 35.0, 8.2, 0.0, 47.9, 49.7, 50.3,52.1,5.2 +2.1219512195121952,2.12,a-cure-i1,2018-19,Fall River - Mary Fonseca Elementary School,00950011, 0.3, 4.4, 10.2, 38.9, 11.7, 0.1, 34.4, 48.5, 51.5,65.6,8.7 +3.504761904761905,3.5,a-cure-i1,2018-19,Fall River - Matthew J Kuss Middle,00950320, 0.0, 4.2, 9.5, 21.1, 7.2, 0.0, 58.0, 53.9, 46.1,42.0,9.200000000000001 +2.55125284738041,2.55,a-cure-i1,2018-19,Fall River - Morton Middle,00950315, 0.3, 4.7, 7.6, 22.2, 8.9, 0.2, 56.1, 47.9, 52.1,43.9,7.0 +1.908256880733945,1.91,a-cure-i1,2018-19,Fall River - North End Elementary,00950005, 0.0, 2.4, 8.4, 22.3, 10.5, 0.0, 56.4, 47.3, 52.7,43.6,5.2 +1,1,a-cure-i1,2018-19,Fall River - Resiliency Preparatory Academy,00950525, 1.0, 0.0, 13.6, 28.3, 5.8, 0.0, 51.3, 51.8, 48.2,48.7,1.3 +1,1,a-cure-i1,2018-19,Fall River - Samuel Watson,00950145, 1.3, 1.7, 8.7, 24.1, 15.4, 0.0, 48.8, 51.5, 48.5,51.2,0.0 +2.269503546099291,2.27,a-cure-i1,2018-19,Fall River - Spencer Borden,00950130, 0.0, 4.8, 7.5, 19.4, 10.7, 0.0, 57.7, 45.2, 54.8,42.3,6.0 +1,1,a-cure-i1,2018-19,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 18.0, 26.0, 14.0, 0.0, 42.0, 22.0, 78.0,58.0,0.0 +1,1,a-cure-i1,2018-19,Fall River - Talbot Innovation School,00950305, 0.0, 4.9, 7.0, 34.7, 8.0, 0.0, 45.4, 44.0, 56.0,54.6,0.0 +1,1,a-cure-i1,2018-19,Fall River - William S Greene,00950065, 0.0, 4.9, 7.0, 27.9, 9.1, 0.0, 51.1, 50.7, 49.3,48.9,2.5 +3.1760299625468162,3.18,a-cure-i1,2018-19,Falmouth - East Falmouth Elementary,00960005, 2.1, 2.1, 5.0, 8.8, 8.8, 0.0, 73.3, 51.3, 48.8,26.700000000000003,5.3 +1,1,a-cure-i1,2018-19,Falmouth - Falmouth High,00960505, 1.4, 3.1, 4.5, 4.2, 5.1, 0.0, 81.7, 52.1, 47.6,18.299999999999997,4.8 +5.478260869565216,5,a-cure-i1,2018-19,Falmouth - Lawrence,00960405, 0.5, 1.4, 5.9, 5.2, 5.1, 0.2, 81.6, 51.2, 48.8,18.400000000000006,6.300000000000001 +1,1,a-cure-i1,2018-19,Falmouth - Morse Pond School,00960305, 2.5, 2.7, 4.3, 5.2, 6.8, 0.0, 78.4, 47.9, 52.1,21.599999999999994,2.6 +1,1,a-cure-i1,2018-19,Falmouth - Mullen-Hall,00960020, 0.5, 2.1, 3.2, 8.7, 7.1, 0.0, 78.4, 46.6, 53.4,21.599999999999994,0.0 +8.855345911949684,5,a-cure-i1,2018-19,Falmouth - North Falmouth Elementary,00960030, 0.0, 1.4, 3.2, 6.4, 4.6, 0.3, 84.1, 52.9, 47.1,15.900000000000006,8.8 +5.292307692307692,5,a-cure-i1,2018-19,Falmouth - Teaticket,00960015, 0.8, 1.7, 8.0, 8.9, 6.6, 0.0, 74.0, 44.6, 55.4,26.0,8.6 +1,1,a-cure-i1,2018-19,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 99.1, 39.1, 60.9,0.9000000000000057,0.0 +2.810810810810811,2.81,a-cure-i1,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 4.2, 8.0, 54.3, 7.4, 0.2, 26.0, 46.7, 53.3,74.0,13.0 +1.3714285714285714,1.37,a-cure-i1,2018-19,Fitchburg - Crocker Elementary,00970016, 0.2, 3.1, 4.5, 54.1, 7.9, 0.2, 30.0, 46.0, 54.0,70.0,6.0 +3.869132290184922,3.87,a-cure-i1,2018-19,Fitchburg - Fitchburg High,00970505, 0.0, 5.6, 7.8, 48.9, 8.0, 0.0, 29.7, 47.6, 52.4,70.3,17.0 +9.582577132486389,5,a-cure-i1,2018-19,Fitchburg - Goodrich Academy,00970510, 0.0, 1.0, 5.8, 42.0, 6.3, 0.0, 44.9, 45.4, 54.6,55.1,33.0 +1.649717514124294,1.65,a-cure-i1,2018-19,Fitchburg - McKay Arts Academy,00970340, 0.0, 7.1, 6.1, 50.6, 7.0, 0.0, 29.2, 51.5, 48.5,70.8,7.3 +1,1,a-cure-i1,2018-19,Fitchburg - Memorial Middle School,00970048, 0.0, 6.4, 5.2, 52.3, 5.7, 0.1, 30.2, 51.1, 48.9,69.8,4.3 +2.0530973451327434,2.05,a-cure-i1,2018-19,Fitchburg - Reingold Elementary,00970043, 0.0, 2.9, 5.7, 51.4, 7.7, 0.0, 32.2, 45.7, 54.3,67.8,8.7 +1,1,a-cure-i1,2018-19,Fitchburg - South Street Elementary,00970060, 0.2, 4.5, 7.2, 56.3, 7.0, 0.0, 24.8, 49.3, 50.7,75.2,0.0 +1,1,a-cure-i1,2018-19,Florida - Abbott Memorial,00980005, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 98.9, 50.6, 49.4,1.0999999999999943,0.0 +10.146341463414629,5,a-cure-i1,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.5, 1.8, 2.3, 7.3, 4.6, 0.0, 83.6, 51.6, 48.4,16.400000000000006,10.399999999999999 +1,1,a-cure-i1,2018-19,Foxborough - Charles Taylor Elementary,00990050, 0.9, 4.9, 4.0, 8.5, 3.6, 0.4, 77.7, 46.4, 53.6,22.299999999999997,3.9 +1,1,a-cure-i1,2018-19,Foxborough - Foxborough High,00990505, 0.2, 3.2, 5.4, 4.4, 1.7, 0.0, 85.0, 47.7, 52.3,15.0,0.0 +1,1,a-cure-i1,2018-19,Foxborough - John J Ahern,00990405, 0.5, 3.6, 5.2, 5.3, 2.6, 0.1, 82.7, 49.3, 50.6,17.299999999999997,3.1 +4.936170212765958,4.94,a-cure-i1,2018-19,Foxborough - Mabelle M Burrell,00990015, 0.3, 5.8, 4.5, 4.9, 3.2, 0.0, 81.2, 46.8, 53.2,18.799999999999997,5.8 +1,1,a-cure-i1,2018-19,Foxborough - Vincent M Igo Elementary,00990020, 0.5, 7.1, 3.3, 6.6, 4.1, 0.3, 78.1, 48.6, 51.4,21.900000000000006,1.3 +3.099850968703428,3.1,a-cure-i1,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.3, 9.8, 46.7, 4.8, 5.3, 0.2, 32.9, 51.8, 48.2,67.1,13.0 +6.375939849624061,5,a-cure-i1,2018-19,Framingham - Barbieri Elementary,01000035, 0.1, 0.6, 3.7, 72.0, 3.3, 0.0, 20.2, 55.2, 44.8,79.8,31.8 +3.8438438438438443,3.84,a-cure-i1,2018-19,Framingham - Brophy,01000006, 0.0, 5.0, 7.5, 51.9, 2.2, 0.0, 33.4, 49.6, 50.4,66.6,16.0 +3.9000000000000004,3.9,a-cure-i1,2018-19,Framingham - Cameron Middle School,01000302, 0.0, 3.3, 7.4, 17.7, 3.6, 0.0, 68.0, 49.9, 50.1,32.0,7.800000000000001 +3.152238805970149,3.15,a-cure-i1,2018-19,Framingham - Charlotte A Dunning,01000007, 0.0, 12.0, 8.3, 10.7, 2.4, 0.0, 66.5, 46.8, 53.2,33.5,6.6 +4.401913875598086,4.4,a-cure-i1,2018-19,Framingham - Framingham High School,01000515, 0.1, 5.8, 8.0, 23.8, 4.1, 0.1, 58.2, 49.3, 50.7,41.8,11.5 +3.1941923774954626,3.19,a-cure-i1,2018-19,Framingham - Fuller Middle,01000305, 0.0, 2.0, 10.8, 38.1, 3.8, 0.4, 44.9, 46.0, 54.0,55.1,11.0 +5.866666666666666,5,a-cure-i1,2018-19,Framingham - Hemenway,01000015, 0.2, 9.2, 5.3, 11.4, 6.7, 0.2, 67.0, 49.6, 50.4,33.0,12.1 +1.6842105263157894,1.68,a-cure-i1,2018-19,Framingham - Juniper Hill School,01000001, 0.0, 11.6, 6.2, 25.0, 4.3, 0.4, 52.5, 42.4, 57.6,47.5,5.0 +1,1,a-cure-i1,2018-19,Framingham - King Elementary School,01000005, 0.0, 9.6, 4.0, 11.1, 8.7, 0.0, 66.6, 46.4, 53.6,33.400000000000006,2.6 +1,1,a-cure-i1,2018-19,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 3.6, 7.7, 20.2, 5.7, 0.0, 62.8, 43.8, 56.3,37.2,2.6 +2.6424682395644283,2.64,a-cure-i1,2018-19,Framingham - Miriam F McCarthy School,01000050, 0.0, 1.7, 13.1, 33.3, 6.6, 0.4, 44.9, 49.1, 50.9,55.1,9.1 +12.075471698113208,5,a-cure-i1,2018-19,Framingham - Potter Road,01000039, 0.0, 3.9, 8.8, 8.3, 5.3, 0.2, 73.5, 48.2, 51.8,26.5,20.0 +7.214953271028038,5,a-cure-i1,2018-19,Framingham - Walsh Middle,01000310, 0.0, 4.4, 4.1, 31.0, 3.4, 0.0, 57.2, 48.6, 51.3,42.8,19.3 +1,1,a-cure-i1,2018-19,Framingham - Woodrow Wilson,01000055, 0.2, 0.2, 10.0, 19.7, 2.4, 0.0, 67.5, 50.6, 49.4,32.5,2.8 +24.712871287128728,5,a-cure-i1,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 1.8, 1.0, 2.3, 5.0, 0.0, 89.9, 52.4, 46.6,10.099999999999994,15.6 +1,1,a-cure-i1,2018-19,Franklin - Annie Sullivan Middle School,01010040, 0.2, 3.9, 1.2, 3.2, 1.2, 0.5, 89.7, 44.7, 55.0,10.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Franklin - Davis Thayer,01010035, 0.0, 2.5, 2.0, 4.1, 1.6, 0.8, 88.9, 51.6, 48.4,11.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.9, 1.9, 0.9, 3.7, 4.7, 10.3, 77.6, 43.0, 57.0,22.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Franklin - Franklin High,01010505, 0.2, 6.4, 1.8, 2.7, 2.2, 0.4, 86.3, 50.0, 49.9,13.700000000000003,1.6 +1,1,a-cure-i1,2018-19,Franklin - Helen Keller Elementary,01010012, 0.0, 3.1, 2.1, 2.3, 1.3, 0.5, 90.7, 48.3, 51.7,9.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Franklin - Horace Mann,01010405, 0.0, 6.8, 0.9, 3.6, 2.4, 0.0, 86.3, 48.7, 51.3,13.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Franklin - J F Kennedy Memorial,01010013, 0.3, 4.9, 0.5, 3.6, 1.6, 1.9, 87.1, 47.1, 52.9,12.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Franklin - Jefferson Elementary,01010010, 0.0, 8.6, 0.9, 4.3, 1.7, 1.1, 83.4, 45.3, 54.7,16.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Franklin - Oak Street Elementary,01010030, 0.0, 6.0, 1.4, 3.8, 3.0, 0.3, 85.6, 49.1, 50.9,14.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Franklin - Parmenter,01010032, 0.3, 5.3, 6.2, 7.1, 1.2, 1.2, 78.8, 49.3, 50.7,21.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Franklin - Remington Middle,01010310, 0.0, 5.8, 2.9, 3.1, 1.7, 0.2, 86.2, 49.8, 50.2,13.799999999999997,2.7 +1,1,a-cure-i1,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 1.6, 3.6, 2.4, 0.0, 92.3, 34.4, 65.6,7.700000000000003,1.9 +1,1,a-cure-i1,2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 0.3, 1.1, 1.1, 2.9, 1.9, 0.3, 92.4, 50.2, 49.8,7.599999999999994,4.3 +1,1,a-cure-i1,2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.6, 1.9, 1.3, 5.8, 0.0, 90.3, 48.4, 51.6,9.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.7, 0.7, 2.3, 0.9, 0.0, 95.3, 46.5, 53.5,4.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.3, 0.8, 1.6, 1.3, 1.3, 0.0, 94.7, 50.3, 49.7,5.299999999999997,2.4 +1,1,a-cure-i1,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.7, 1.6, 0.0, 1.2, 0.0, 96.5, 45.7, 54.3,3.5,0.0 +1,1,a-cure-i1,2018-19,Frontier - Frontier Regional,06700505, 0.0, 2.8, 1.4, 4.2, 3.1, 0.2, 88.4, 45.7, 54.3,11.599999999999994,2.3000000000000003 +3.402298850574713,3.4,a-cure-i1,2018-19,Gardner - Elm Street School,01030001, 0.2, 1.6, 2.3, 21.1, 9.6, 0.0, 65.2, 48.6, 51.4,34.8,7.4 +1,1,a-cure-i1,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 1.7, 0.0, 5.0, 11.7, 8.3, 1.7, 71.7, 33.3, 63.3,28.299999999999997,0.0 +6.501587301587302,5,a-cure-i1,2018-19,Gardner - Gardner High,01030505, 0.3, 3.3, 2.6, 19.8, 5.5, 0.0, 68.5, 48.3, 51.5,31.5,12.8 +1,1,a-cure-i1,2018-19,Gardner - Gardner Middle School,01030405, 0.0, 1.7, 2.2, 20.6, 8.7, 0.0, 66.8, 47.8, 52.2,33.2,2.2 +1,1,a-cure-i1,2018-19,Gardner - Waterford Street,01030020, 0.0, 1.6, 3.4, 21.9, 6.8, 0.0, 66.2, 45.2, 54.8,33.8,0.0 +1,1,a-cure-i1,2018-19,Gateway - Chester Elementary,06720059, 0.8, 0.0, 0.8, 5.1, 0.8, 0.0, 92.4, 42.4, 57.6,7.599999999999994,0.0 +21.89473684210528,5,a-cure-i1,2018-19,Gateway - Gateway Regional High,06720505, 0.0, 1.5, 0.0, 3.5, 2.5, 0.0, 92.4, 52.5, 47.5,7.599999999999994,10.4 +12.289855072463757,5,a-cure-i1,2018-19,Gateway - Gateway Regional Middle School,06720405, 1.0, 0.0, 1.5, 3.5, 1.0, 0.0, 93.1, 47.5, 52.5,6.900000000000006,5.3 +1,1,a-cure-i1,2018-19,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 4.9, 3.6, 0.3, 90.2, 51.8, 48.2,9.799999999999997,0.0 +12.553846153846154,5,a-cure-i1,2018-19,Georgetown - Georgetown High School,01050505, 0.0, 1.5, 0.3, 3.3, 1.5, 0.0, 93.5, 51.8, 48.2,6.5,5.1 +26.046511627906995,5,a-cure-i1,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 0.5, 1.9, 1.4, 0.5, 0.0, 95.7, 45.7, 54.3,4.299999999999997,7.0 +1,1,a-cure-i1,2018-19,Georgetown - Penn Brook,01050010, 0.0, 1.1, 0.6, 1.7, 2.0, 0.3, 94.4, 48.7, 51.3,5.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Georgetown - Perley Elementary,01050005, 0.0, 2.2, 0.0, 1.1, 5.6, 0.0, 91.0, 46.1, 53.9,9.0,0.0 +1,1,a-cure-i1,2018-19,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 2.3, 3.9, 7.0, 0.0, 86.7, 50.0, 50.0,13.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Gill-Montague - Great Falls Middle,06740310, 0.4, 0.0, 2.1, 10.5, 9.2, 0.0, 77.8, 47.3, 52.7,22.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 1.3, 1.3, 16.8, 5.8, 0.0, 74.8, 39.4, 60.6,25.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 14.7, 8.1, 0.9, 76.3, 45.0, 55.0,23.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Gill-Montague - Turners Fall High,06740505, 0.5, 1.0, 1.0, 9.9, 3.0, 0.0, 84.7, 56.9, 43.1,15.299999999999997,0.0 +1.7122807017543862,1.71,a-cure-i1,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.6, 1.0, 10.3, 40.8, 4.4, 0.0, 43.0, 50.9, 49.1,57.0,6.1000000000000005 +1,1,a-cure-i1,2018-19,Gloucester - Beeman Memorial,01070010, 0.6, 1.5, 1.5, 16.0, 3.0, 0.0, 77.3, 45.3, 54.7,22.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.5, 0.0, 9.1, 4.3, 0.0, 86.1, 49.3, 50.7,13.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Gloucester - Gloucester High,01070505, 0.2, 0.9, 1.7, 11.4, 1.7, 0.4, 83.7, 45.7, 54.3,16.299999999999997,2.0 +1,1,a-cure-i1,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, 1.6, 4.1, 4.9, 5.7, 0.0, 83.7, 42.3, 57.7,16.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Gloucester - Plum Cove School,01070042, 0.0, 0.5, 1.9, 4.3, 1.4, 0.0, 91.8, 47.6, 52.4,8.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0.6, 1.6, 1.9, 7.3, 3.9, 0.3, 84.4, 49.5, 50.5,15.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Gloucester - Veterans Memorial,01070045, 0.0, 1.4, 2.8, 20.3, 4.6, 0.5, 70.5, 55.8, 44.2,29.5,0.0 +1,1,a-cure-i1,2018-19,Gloucester - West Parish,01070050, 0.0, 1.4, 1.4, 6.6, 5.7, 0.3, 84.5, 48.9, 51.1,15.5,0.0 +1,1,a-cure-i1,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0,0.0,0.0 +1,1,a-cure-i1,2018-19,Grafton - Grafton High School,01100505, 0.0, 10.4, 2.2, 3.4, 3.0, 0.1, 80.9, 50.5, 49.5,19.099999999999994,2.5 +1,1,a-cure-i1,2018-19,Grafton - Grafton Middle,01100305, 0.4, 11.7, 2.1, 4.7, 2.3, 0.4, 78.4, 50.8, 49.2,21.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Grafton - Millbury Street Elementary School,01100200, 0.0, 15.2, 1.3, 5.8, 2.5, 0.0, 75.2, 46.4, 53.6,24.799999999999997,3.1 +1,1,a-cure-i1,2018-19,Grafton - North Grafton Elementary,01100025, 0.0, 14.8, 1.3, 3.0, 2.1, 0.0, 78.9, 49.8, 50.2,21.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Grafton - North Street Elementary School,01100030, 0.3, 8.9, 0.7, 5.6, 4.5, 0.2, 79.7, 46.5, 53.5,20.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Grafton - South Grafton Elementary,01100005, 0.0, 14.6, 2.0, 5.0, 3.3, 0.0, 75.1, 42.9, 57.1,24.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Granby - East Meadow,01110004, 0.5, 1.3, 0.0, 11.0, 3.3, 0.0, 83.8, 50.8, 49.2,16.200000000000003,2.8 +1,1,a-cure-i1,2018-19,Granby - Granby Jr Sr High School,01110505, 0.3, 1.8, 0.3, 7.7, 1.5, 0.0, 88.4, 44.2, 55.8,11.599999999999994,4.5 +1,1,a-cure-i1,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.4, 1.8, 2.6, 11.5, 5.8, 0.1, 77.7, 45.6, 54.4,22.299999999999997,4.3 +2.0754716981132075,2.08,a-cure-i1,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.1, 1.3, 1.1, 82.3, 0.0, 0.0, 15.2, 50.2, 49.8,84.8,11.0 +1.6928327645051195,1.69,a-cure-i1,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.3, 15.8, 4.3, 34.4, 3.8, 0.0, 41.4, 46.0, 53.9,58.6,6.2 +2.8773841961852855,2.88,a-cure-i1,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.4, 0.9, 8.3, 22.6, 4.3, 0.0, 63.3, 49.6, 50.4,36.7,6.6 +1,1,a-cure-i1,2018-19,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.8, 0.4, 9.7, 1.3, 0.0, 87.8, 47.1, 52.9,12.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Greenfield - Federal Street School,01140010, 0.0, 1.6, 3.3, 24.4, 5.3, 0.0, 65.4, 47.6, 52.4,34.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Greenfield - Greenfield High,01140505, 0.2, 2.5, 2.1, 20.9, 6.2, 0.0, 68.2, 44.6, 55.2,31.799999999999997,4.6 +1,1,a-cure-i1,2018-19,Greenfield - Greenfield Middle,01140305, 0.0, 0.8, 2.3, 16.7, 6.7, 0.0, 73.6, 49.0, 51.0,26.400000000000006,0.0 +2.0970873786407767,2.1,a-cure-i1,2018-19,Greenfield - Newton School,01140035, 0.0, 1.2, 5.6, 28.4, 6.0, 0.0, 58.8, 48.8, 51.2,41.2,5.4 +1,1,a-cure-i1,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.8, 1.7, 9.1, 2.5, 0.0, 86.0, 47.1, 52.9,14.0,0.0 +1,1,a-cure-i1,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.3, 4.2, 11.0, 17.8, 5.9, 0.7, 60.0, 53.9, 46.1,40.0,0.0 +1,1,a-cure-i1,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, 12.1, 0.0, 3.4, 1.7, 0.0, 82.8, 51.7, 48.3,17.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Groton-Dunstable - Florence Roche School,06730010, 0.6, 6.3, 0.9, 2.6, 4.4, 0.2, 85.1, 47.8, 52.2,14.900000000000006,4.0 +1,1,a-cure-i1,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 7.7, 1.0, 1.7, 1.3, 0.1, 88.1, 51.4, 48.6,11.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.3, 5.0, 1.4, 2.0, 2.0, 0.3, 88.9, 47.9, 52.1,11.099999999999994,4.4 +1,1,a-cure-i1,2018-19,Groton-Dunstable - Swallow/Union School,06730005, 0.3, 6.3, 1.0, 4.6, 3.0, 0.0, 84.9, 49.7, 50.3,15.099999999999994,0.0 +3.6529680365296793,3.65,a-cure-i1,2018-19,Hadley - Hadley Elementary,01170015, 0.4, 3.9, 3.5, 10.2, 2.8, 1.1, 78.1, 47.3, 52.7,21.900000000000006,5.0 +1,1,a-cure-i1,2018-19,Hadley - Hopkins Academy,01170505, 0.4, 5.5, 0.8, 8.7, 3.2, 3.6, 77.9, 49.8, 50.2,22.099999999999994,4.0 +1,1,a-cure-i1,2018-19,Halifax - Halifax Elementary,01180005, 0.3, 0.2, 1.3, 4.3, 2.6, 0.0, 91.3, 48.8, 51.2,8.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.0, 0.0, 9.0, 2.0, 0.0, 86.9, 44.5, 55.5,13.099999999999994,0.0 +10.469135802469143,5,a-cure-i1,2018-19,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.2, 0.0, 1.4, 2.5, 1.1, 91.9, 50.9, 49.1,8.099999999999994,5.3 +13.166666666666675,5,a-cure-i1,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 3.7, 0.4, 3.6, 2.0, 0.0, 90.4, 51.0, 49.0,9.599999999999994,7.9 +18.306306306306315,5,a-cure-i1,2018-19,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 3.5, 0.5, 4.6, 2.0, 0.5, 88.9, 56.2, 43.8,11.099999999999994,12.7 +7.500000000000002,5,a-cure-i1,2018-19,Hamilton-Wenham - Winthrop School,06750015, 0.4, 5.7, 1.4, 3.9, 1.4, 0.0, 87.2, 51.2, 48.8,12.799999999999997,6.0 +2.0995475113122177,2.1,a-cure-i1,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.2, 2.0, 29.5, 32.5, 2.2, 0.0, 33.7, 52.2, 47.8,66.3,8.700000000000001 +5.902222222222223,5,a-cure-i1,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.5, 1.4, 12.4, 28.2, 2.4, 0.0, 55.0, 48.8, 51.2,45.0,16.6 +1,1,a-cure-i1,2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.6, 2.6, 11.2, 2.6, 0.0, 83.0, 50.0, 50.0,17.0,0.0 +5.298701298701296,5,a-cure-i1,2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 2.5, 1.9, 7.4, 3.0, 0.6, 84.6, 49.6, 50.4,15.400000000000006,5.1 +1,1,a-cure-i1,2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.3, 3.9, 2.5, 6.1, 3.1, 0.0, 84.2, 51.9, 48.1,15.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Hampden-Wilbraham - Soule Road,06800030, 0.0, 1.5, 2.9, 8.2, 4.1, 0.0, 83.2, 49.1, 50.9,16.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 0.3, 2.5, 2.2, 6.9, 4.4, 0.0, 83.8, 48.0, 52.0,16.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.3, 2.6, 2.6, 6.4, 2.6, 0.0, 85.5, 49.7, 50.3,14.5,0.0 +1,1,a-cure-i1,2018-19,Hampshire - Hampshire Regional High,06830505, 0.0, 0.8, 0.6, 2.8, 2.5, 0.0, 93.3, 52.9, 47.0,6.700000000000003,1.5 +67.86206896551711,5,a-cure-i1,2018-19,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 2.9, 0.0, 0.0, 0.0, 97.1, 47.1, 52.9,2.9000000000000057,12.3 +1,1,a-cure-i1,2018-19,Hanover - Cedar Elementary,01220004, 0.0, 1.5, 1.1, 2.2, 0.0, 0.0, 95.2, 45.1, 54.9,4.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Hanover - Center Elementary,01220005, 0.0, 0.6, 0.6, 4.7, 2.1, 0.0, 92.1, 46.3, 53.7,7.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Hanover - Hanover High,01220505, 0.0, 3.0, 0.6, 1.2, 0.1, 0.1, 94.9, 47.3, 52.6,5.099999999999994,1.8 +1,1,a-cure-i1,2018-19,Hanover - Hanover Middle,01220305, 0.0, 2.5, 1.5, 2.6, 0.5, 0.0, 92.9, 48.2, 51.8,7.099999999999994,1.9 +17.753424657534254,5,a-cure-i1,2018-19,Hanover - Sylvester,01220015, 0.0, 2.8, 0.4, 2.0, 2.0, 0.0, 92.7, 52.8, 47.2,7.299999999999997,8.1 +1,1,a-cure-i1,2018-19,Harvard - Bromfield,01250505, 0.0, 12.8, 2.1, 4.6, 1.9, 0.0, 78.6, 50.2, 49.6,21.400000000000006,3.8 +6.264550264550263,5,a-cure-i1,2018-19,Harvard - Hildreth Elementary School,01250005, 0.0, 8.9, 2.1, 3.2, 4.8, 0.0, 81.1, 51.4, 48.6,18.900000000000006,7.4 +1,1,a-cure-i1,2018-19,Hatfield - Hatfield Elementary,01270005, 0.0, 0.4, 0.4, 5.3, 2.4, 0.0, 91.5, 46.2, 53.4,8.5,0.0 +1,1,a-cure-i1,2018-19,Hatfield - Smith Academy,01270505, 0.0, 2.6, 0.5, 4.2, 2.6, 0.0, 89.9, 50.8, 48.7,10.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Bradford Elementary,01280008, 0.0, 1.1, 3.7, 28.1, 2.3, 0.0, 64.8, 47.4, 52.6,35.2,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 0.1, 1.7, 4.9, 21.8, 2.4, 0.1, 69.0, 47.1, 52.9,31.0,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.8, 4.9, 53.7, 5.7, 0.0, 35.0, 54.5, 45.5,65.0,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Consentino Middle School,01280100, 0.3, 2.5, 3.7, 48.2, 1.5, 0.1, 43.7, 47.5, 52.5,56.3,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Crowell,01280020, 0.0, 5.3, 4.2, 48.4, 1.1, 0.0, 41.1, 46.3, 53.7,58.9,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Dr Paul Nettle,01280050, 0.2, 2.4, 4.3, 43.1, 2.2, 0.4, 47.4, 47.6, 52.4,52.6,3.7 +1,1,a-cure-i1,2018-19,Haverhill - Golden Hill,01280026, 0.2, 1.6, 3.4, 49.7, 3.0, 0.0, 42.1, 50.7, 49.3,57.9,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 5.1, 62.0, 2.5, 0.0, 30.4, 40.5, 59.5,69.6,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 8.3, 61.1, 2.8, 0.0, 27.8, 16.7, 83.3,72.2,0.0 +2.713216957605985,2.71,a-cure-i1,2018-19,Haverhill - Haverhill High,01280505, 0.1, 1.8, 4.9, 31.9, 1.4, 0.1, 59.9, 49.9, 50.1,40.1,6.8 +1,1,a-cure-i1,2018-19,Haverhill - John G Whittier,01280085, 0.2, 2.1, 4.2, 30.1, 1.1, 0.4, 61.9, 49.5, 50.5,38.1,2.2 +1,1,a-cure-i1,2018-19,Haverhill - Moody,01280045, 1.5, 2.0, 10.5, 32.0, 0.0, 1.0, 53.0, 37.0, 63.0,47.0,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0.8, 0.8, 4.8, 39.8, 2.7, 0.0, 51.1, 46.6, 53.4,48.9,0.4 +1,1,a-cure-i1,2018-19,Haverhill - Silver Hill Elementary School,01280067, 0.0, 1.2, 3.2, 31.5, 3.9, 0.0, 60.2, 49.9, 50.1,39.8,0.0 +1,1,a-cure-i1,2018-19,Haverhill - TEACH,01280073, 2.1, 0.0, 2.1, 48.9, 8.5, 0.0, 38.3, 10.6, 89.4,61.7,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Tilton,01280075, 0.2, 1.1, 3.7, 58.0, 1.5, 0.0, 35.4, 50.7, 49.3,64.6,0.0 +1,1,a-cure-i1,2018-19,Haverhill - Walnut Square,01280080, 0.0, 1.5, 3.0, 22.2, 4.4, 0.0, 68.9, 51.1, 48.9,31.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Hawlemont - Hawlemont Regional,06850005, 0.7, 0.0, 0.7, 9.3, 4.6, 0.0, 84.8, 58.3, 41.7,15.200000000000003,0.0 +12.365829145728645,5,a-cure-i1,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.5, 0.5, 71.7, 26.2, 0.0, 0.5, 0.5, 48.2, 51.8,99.5,76.9 +2.8717948717948714,2.87,a-cure-i1,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.3, 5.3, 23.4, 2.3, 0.0, 68.8, 53.9, 46.1,31.200000000000003,5.6 +1,1,a-cure-i1,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.9, 0.9, 4.1, 12.4, 0.0, 81.6, 47.5, 52.1,18.400000000000006,3.5 +15.360000000000001,5,a-cure-i1,2018-19,Hingham - East Elementary School,01310005, 0.0, 1.7, 1.3, 2.5, 1.9, 0.0, 92.5, 47.5, 52.5,7.5,7.2 +1,1,a-cure-i1,2018-19,Hingham - Hingham High,01310505, 0.0, 2.2, 1.2, 3.0, 2.3, 0.0, 91.3, 49.9, 50.1,8.700000000000003,1.0 +1,1,a-cure-i1,2018-19,Hingham - Hingham Middle School,01310410, 0.0, 3.3, 1.1, 2.6, 3.4, 0.0, 89.5, 48.3, 51.7,10.5,4.800000000000001 +1,1,a-cure-i1,2018-19,Hingham - Plymouth River,01310019, 0.2, 2.4, 1.8, 5.1, 2.9, 0.0, 87.6, 49.6, 50.4,12.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Hingham - South Elementary,01310020, 0.0, 3.9, 1.5, 1.2, 3.7, 0.0, 89.8, 48.6, 51.4,10.200000000000003,3.6 +1,1,a-cure-i1,2018-19,Hingham - Wm L Foster Elementary,01310010, 0.0, 2.1, 0.4, 5.6, 4.0, 0.0, 87.9, 46.5, 53.5,12.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Holbrook - Holbrook Middle High School,01330505, 0.2, 5.7, 23.4, 13.5, 7.1, 0.0, 50.2, 51.2, 48.7,49.8,0.0 +1,1,a-cure-i1,2018-19,Holbrook - John F Kennedy,01330018, 0.3, 4.2, 18.8, 13.4, 8.7, 0.0, 54.6, 44.8, 55.2,45.4,0.0 +1,1,a-cure-i1,2018-19,Holland - Holland Elementary,01350005, 0.0, 1.3, 1.3, 7.1, 0.9, 0.0, 89.4, 49.6, 50.4,10.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Holliston - Holliston High,01360505, 0.2, 7.5, 0.8, 3.0, 1.9, 0.0, 86.4, 50.3, 49.7,13.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Holliston - Miller School,01360007, 0.1, 10.0, 1.3, 5.6, 3.7, 0.0, 79.2, 48.9, 51.1,20.799999999999997,4.699999999999999 +1,1,a-cure-i1,2018-19,Holliston - Placentino Elementary,01360010, 0.0, 8.5, 1.0, 5.0, 4.4, 0.1, 81.0, 45.1, 54.8,19.0,1.0 +1,1,a-cure-i1,2018-19,Holliston - Robert H. Adams Middle School,01360305, 0.4, 7.3, 0.9, 7.0, 2.0, 0.0, 82.4, 48.0, 52.0,17.599999999999994,2.4 +3.6730769230769234,3.67,a-cure-i1,2018-19,Holyoke - E N White Elementary,01370045, 0.0, 0.7, 3.7, 77.0, 1.7, 0.0, 16.8, 45.9, 54.1,83.2,19.1 +2.139130434782609,2.14,a-cure-i1,2018-19,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.4, 5.2, 85.7, 0.8, 0.0, 8.0, 47.0, 53.0,92.0,12.3 +3.7725118483412317,3.77,a-cure-i1,2018-19,Holyoke - Holyoke High,01370505, 0.2, 0.6, 2.5, 79.8, 1.2, 0.1, 15.6, 48.4, 51.5,84.4,19.9 +1.282107574094402,1.28,a-cure-i1,2018-19,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.4, 5.4, 83.7, 1.6, 0.0, 8.9, 50.0, 50.0,91.1,7.3 +8.16024653312789,5,a-cure-i1,2018-19,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.4, 3.1, 58.8, 2.7, 0.0, 35.1, 56.1, 43.9,64.9,33.1 +5.366666666666667,5,a-cure-i1,2018-19,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 1.3, 93.9, 0.8, 0.0, 4.0, 45.2, 54.8,96.0,32.2 +2.3113101903695408,2.31,a-cure-i1,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 2.1, 2.5, 83.9, 0.8, 0.0, 10.7, 49.4, 50.6,89.3,12.899999999999999 +1,1,a-cure-i1,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.8, 2.4, 62.8, 2.1, 0.0, 30.9, 45.9, 54.1,69.1,4.3 +1,1,a-cure-i1,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 1.1, 2.8, 82.9, 0.9, 0.2, 12.2, 43.3, 56.7,87.8,4.5 +1,1,a-cure-i1,2018-19,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.7, 4.9, 89.5, 1.6, 0.0, 3.3, 49.0, 51.0,96.7,0.0 +10.224948875255624,5,a-cure-i1,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 5.8, 91.4, 0.7, 0.0, 2.2, 43.2, 56.8,97.8,62.5 +5.134720700985761,5,a-cure-i1,2018-19,Holyoke - William R. Peck School,01370030, 0.0, 0.4, 2.9, 87.7, 0.4, 0.0, 8.7, 40.1, 59.9,91.3,29.299999999999997 +3.615062761506276,3.62,a-cure-i1,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.6, 1.4, 92.0, 1.6, 0.0, 4.4, 53.8, 46.2,95.6,21.599999999999998 +1,1,a-cure-i1,2018-19,Hopedale - Hopedale Jr Sr High,01380505, 1.3, 2.7, 1.0, 4.6, 2.1, 0.2, 88.1, 49.4, 50.6,11.900000000000006,1.2 +1,1,a-cure-i1,2018-19,Hopedale - Memorial,01380010, 0.0, 0.6, 1.0, 7.3, 4.8, 0.2, 86.2, 46.4, 53.6,13.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Hopedale - Park Street School,01380003, 1.1, 1.1, 0.0, 2.3, 11.5, 0.0, 83.9, 52.9, 47.1,16.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Hopkinton - Elmwood,01390010, 0.4, 22.2, 0.4, 3.6, 2.9, 0.0, 70.5, 49.2, 50.8,29.5,3.1 +1,1,a-cure-i1,2018-19,Hopkinton - Hopkins Elementary School,01390015, 0.4, 18.0, 0.5, 4.0, 5.1, 0.2, 71.9, 47.2, 52.8,28.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Hopkinton - Hopkinton High,01390505, 0.3, 11.7, 0.8, 2.9, 1.9, 0.0, 82.5, 50.6, 49.4,17.5,3.3 +4.571428571428571,4.57,a-cure-i1,2018-19,Hopkinton - Hopkinton Middle School,01390305, 0.1, 16.3, 1.2, 3.7, 3.3, 0.0, 75.5, 50.6, 49.4,24.5,7.0 +1,1,a-cure-i1,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 21.7, 0.0, 2.9, 4.3, 0.0, 71.0, 30.4, 69.6,29.0,0.0 +1,1,a-cure-i1,2018-19,Hopkinton - Marathon Elementary School,01390005, 0.0, 24.3, 0.4, 4.1, 5.6, 0.0, 65.6, 51.4, 48.6,34.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Hudson - C A Farley,01410030, 0.0, 2.9, 1.2, 15.6, 1.9, 0.0, 78.3, 50.1, 49.9,21.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.9, 1.3, 11.8, 2.8, 0.0, 82.3, 52.3, 47.7,17.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Hudson - Forest Avenue Elementary,01410015, 0.3, 1.7, 1.4, 12.7, 4.8, 0.0, 79.2, 46.2, 53.8,20.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Hudson - Hudson High,01410505, 0.1, 1.3, 2.3, 9.5, 1.8, 0.1, 84.8, 51.9, 48.1,15.200000000000003,2.5 +1,1,a-cure-i1,2018-19,Hudson - Mulready Elementary,01410007, 0.0, 2.8, 2.4, 13.0, 3.2, 0.0, 78.5, 50.6, 49.4,21.5,0.0 +1,1,a-cure-i1,2018-19,Hull - Hull High,01420505, 0.0, 1.4, 1.4, 2.4, 2.1, 0.0, 92.7, 47.4, 52.6,7.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Hull - Lillian M Jacobs,01420015, 0.0, 2.2, 1.7, 1.7, 2.2, 0.0, 92.3, 45.8, 54.2,7.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Hull - Memorial Middle,01420305, 0.0, 0.5, 0.5, 1.6, 1.6, 0.0, 95.7, 47.0, 53.0,4.299999999999997,0.0 +6.559386973180078,5,a-cure-i1,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.1, 7.7, 5.8, 7.5, 5.0, 0.0, 73.9, 53.1, 46.9,26.099999999999994,10.7 +1,1,a-cure-i1,2018-19,Ipswich - Ipswich High,01440505, 0.2, 2.0, 0.7, 4.4, 3.7, 0.0, 88.9, 52.3, 47.5,11.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Ipswich - Ipswich Middle School,01440305, 0.2, 1.7, 1.0, 5.4, 3.7, 0.0, 88.0, 50.6, 49.4,12.0,3.0 +1,1,a-cure-i1,2018-19,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 1.5, 0.5, 4.6, 2.3, 0.0, 91.1, 49.1, 50.9,8.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Ipswich - Winthrop,01440015, 0.0, 1.6, 2.7, 8.2, 7.1, 0.0, 80.3, 49.9, 50.1,19.700000000000003,3.5 +10.352941176470587,5,a-cure-i1,2018-19,King Philip - King Philip Middle School,06900510, 0.1, 2.3, 1.6, 4.1, 1.9, 0.0, 89.8, 48.7, 51.3,10.200000000000003,6.6000000000000005 +1,1,a-cure-i1,2018-19,King Philip - King Philip Regional High,06900505, 0.0, 2.2, 2.1, 2.3, 1.9, 0.1, 91.4, 47.6, 52.3,8.599999999999994,2.4 +1,1,a-cure-i1,2018-19,Kingston - Kingston Elementary,01450005, 0.2, 0.5, 0.2, 1.6, 0.9, 0.0, 96.6, 49.3, 50.7,3.4000000000000057,0.0 +1,1,a-cure-i1,2018-19,Kingston - Kingston Intermediate,01450020, 0.7, 0.3, 1.0, 3.2, 0.5, 0.0, 94.3, 48.8, 51.0,5.700000000000003,0.0 +9.051153460381142,5,a-cure-i1,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.2, 0.5, 67.7, 30.0, 1.3, 0.0, 0.3, 47.5, 52.5,99.7,56.39999999999999 +5.81509032943677,5,a-cure-i1,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.1, 3.2, 20.3, 67.4, 3.0, 0.1, 5.9, 51.0, 49.0,94.1,34.2 +1,1,a-cure-i1,2018-19,Lawrence - Alexander B Bruce,01490015, 0.0, 2.1, 0.9, 92.4, 0.2, 0.0, 4.3, 53.3, 46.7,95.7,4.8 +0.8644240570846076,1,a-cure-i1,2018-19,Lawrence - Arlington Middle School,01490017, 0.2, 0.0, 0.3, 97.2, 0.3, 0.0, 1.9, 48.0, 51.5,98.1,5.3 +0.883435582822086,1,a-cure-i1,2018-19,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 1.0, 96.5, 0.3, 0.0, 2.2, 46.5, 53.5,97.8,5.4 +1.4438614900314795,1.44,a-cure-i1,2018-19,Lawrence - Edward F. Parthum,01490053, 0.0, 0.5, 1.2, 93.5, 0.2, 0.0, 4.7, 47.7, 52.3,95.3,8.6 +1,1,a-cure-i1,2018-19,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.5, 0.3, 93.1, 0.8, 0.0, 4.3, 52.8, 47.2,95.7,0.0 +1,1,a-cure-i1,2018-19,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.6, 96.6, 0.0, 0.0, 2.8, 49.9, 50.1,97.2,4.3 +1.9241603466955584,1.92,a-cure-i1,2018-19,Lawrence - Frost Middle School,01490525, 0.0, 3.5, 3.3, 84.1, 1.4, 0.0, 7.7, 46.0, 54.0,92.3,11.100000000000001 +1,1,a-cure-i1,2018-19,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.8, 2.3, 92.8, 0.4, 0.0, 3.7, 47.0, 53.0,96.3,3.8 +1.685071574642127,1.69,a-cure-i1,2018-19,Lawrence - Guilmette Middle School,01490025, 0.0, 0.4, 1.6, 95.3, 0.4, 0.0, 2.2, 50.3, 49.7,97.8,10.3 +1.2845528455284552,1.28,a-cure-i1,2018-19,Lawrence - High School Learning Center,01490536, 0.0, 0.5, 1.1, 96.8, 0.0, 0.0, 1.6, 42.2, 57.8,98.4,7.9 +2.7755102040816326,2.78,a-cure-i1,2018-19,Lawrence - James F Hennessey,01490020, 0.0, 0.6, 1.4, 95.7, 0.3, 0.0, 2.0, 42.3, 57.4,98.0,17.0 +2.261603375527426,2.26,a-cure-i1,2018-19,Lawrence - John Breen School,01490003, 0.0, 3.7, 2.4, 88.4, 0.3, 0.0, 5.2, 43.4, 56.0,94.8,13.4 +0.8626653102746694,1,a-cure-i1,2018-19,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.3, 97.6, 0.3, 0.0, 1.7, 43.6, 56.4,98.3,5.3 +3.646817248459959,3.65,a-cure-i1,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.6, 95.8, 0.0, 0.0, 2.6, 43.7, 55.3,97.4,22.2 +1.2648870636550307,1.26,a-cure-i1,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.5, 2.1, 94.3, 0.5, 0.0, 2.6, 43.2, 56.3,97.4,7.7 +3.4144329896907215,3.41,a-cure-i1,2018-19,Lawrence - Lawrence High School,01490515, 0.1, 1.7, 1.2, 93.8, 0.2, 0.0, 3.0, 46.6, 53.0,97.0,20.7 +1.3690721649484536,1.37,a-cure-i1,2018-19,Lawrence - Oliver Partnership School,01490048, 0.0, 0.6, 0.4, 96.0, 0.0, 0.0, 3.0, 49.7, 50.1,97.0,8.3 +1,1,a-cure-i1,2018-19,Lawrence - Parthum Middle School,01490027, 0.0, 0.5, 1.0, 93.0, 0.5, 0.0, 5.0, 50.7, 49.1,95.0,3.3 +1.7259978425026967,1.73,a-cure-i1,2018-19,Lawrence - Robert Frost,01490018, 0.0, 3.0, 2.6, 86.5, 0.7, 0.0, 7.3, 50.8, 48.8,92.7,10.0 +1.393494228751312,1.39,a-cure-i1,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.6, 1.7, 93.0, 0.0, 0.0, 4.7, 41.3, 58.1,95.3,8.3 +4.026966292134831,4.03,a-cure-i1,2018-19,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 2.1, 86.2, 0.7, 0.0, 11.0, 17.2, 82.8,89.0,22.4 +1.4621848739495797,1.46,a-cure-i1,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 1.7, 0.8, 92.3, 0.4, 0.0, 4.8, 47.3, 52.7,95.2,8.7 +3.588477366255144,3.59,a-cure-i1,2018-19,Lawrence - Spark Academy,01490085, 0.0, 2.0, 1.3, 93.2, 0.7, 0.0, 2.8, 48.7, 51.1,97.2,21.8 +4.202839756592292,4.2,a-cure-i1,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.7, 0.7, 96.9, 0.3, 0.0, 1.4, 45.5, 54.5,98.6,25.9 +4.503092783505154,4.5,a-cure-i1,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.3, 96.7, 0.0, 0.0, 3.0, 46.7, 53.3,97.0,27.299999999999997 +2.7017189079878663,2.7,a-cure-i1,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.7, 98.3, 0.0, 0.0, 1.1, 55.3, 44.7,98.9,16.7 +1,1,a-cure-i1,2018-19,Lee - Lee Elementary,01500025, 0.0, 3.8, 0.3, 11.1, 2.3, 0.0, 82.5, 49.6, 50.4,17.5,2.9 +1,1,a-cure-i1,2018-19,Lee - Lee Middle/High School,01500505, 0.3, 3.1, 0.8, 6.1, 2.8, 0.0, 86.9, 50.0, 50.0,13.099999999999994,2.8 +5.36312849162011,5,a-cure-i1,2018-19,Leicester - Leicester High,01510505, 0.2, 2.6, 4.0, 7.9, 2.8, 0.4, 82.1, 48.1, 51.5,17.900000000000006,6.0 +1,1,a-cure-i1,2018-19,Leicester - Leicester Memorial Elementary,01510005, 0.6, 2.7, 7.0, 8.8, 1.8, 0.0, 79.0, 42.2, 57.8,21.0,0.0 +1,1,a-cure-i1,2018-19,Leicester - Leicester Middle,01510015, 0.0, 3.2, 5.1, 10.0, 4.3, 0.0, 77.3, 44.9, 55.1,22.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Leicester - Leicester Primary School,01510010, 0.0, 1.9, 6.0, 9.3, 1.6, 0.0, 81.2, 46.9, 53.1,18.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Lenox - Lenox Memorial High,01520505, 0.0, 4.2, 0.5, 9.3, 2.6, 0.0, 83.5, 51.3, 48.7,16.5,2.1 +1,1,a-cure-i1,2018-19,Lenox - Morris,01520015, 0.0, 4.6, 0.3, 7.4, 5.5, 0.0, 82.2, 48.3, 51.7,17.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Leominster - Bennett,01530003, 0.0, 3.0, 10.9, 29.7, 5.9, 0.0, 50.5, 37.6, 62.4,49.5,0.0 +1,1,a-cure-i1,2018-19,Leominster - Center For Technical Education Innovation,01530605, 0.0, 2.6, 7.2, 34.8, 3.5, 0.4, 51.5, 31.5, 68.5,48.5,4.9 +2.1688888888888886,2.17,a-cure-i1,2018-19,Leominster - Fall Brook,01530007, 0.2, 1.9, 6.0, 32.0, 4.9, 0.0, 55.0, 45.5, 54.4,45.0,6.1 +1,1,a-cure-i1,2018-19,Leominster - Frances Drake School,01530010, 0.0, 4.1, 9.0, 42.7, 6.6, 0.0, 37.6, 48.9, 51.1,62.4,0.0 +1,1,a-cure-i1,2018-19,Leominster - Johnny Appleseed,01530025, 0.3, 3.9, 11.0, 33.6, 4.5, 0.0, 46.7, 50.7, 49.3,53.3,2.7 +7.038696537678208,5,a-cure-i1,2018-19,Leominster - Leominster Center for Excellence,01530515, 0.0, 1.8, 5.3, 35.1, 7.0, 0.0, 50.9, 56.1, 43.9,49.1,21.6 +1,1,a-cure-i1,2018-19,Leominster - Leominster High School,01530505, 0.3, 3.6, 10.7, 29.6, 2.5, 0.0, 53.3, 57.3, 42.7,46.7,4.5 +1,1,a-cure-i1,2018-19,Leominster - Lincoln School,01530005, 0.0, 12.8, 2.6, 28.2, 2.6, 0.0, 53.8, 41.0, 59.0,46.2,0.0 +1,1,a-cure-i1,2018-19,Leominster - Northwest,01530030, 0.0, 2.1, 4.6, 38.4, 6.1, 0.0, 48.8, 48.4, 51.6,51.2,0.0 +1,1,a-cure-i1,2018-19,Leominster - Priest Street,01530040, 0.0, 3.5, 8.4, 44.1, 3.5, 0.0, 40.6, 46.2, 53.8,59.4,0.0 +1,1,a-cure-i1,2018-19,Leominster - Samoset School,01530045, 0.2, 2.6, 5.8, 32.8, 2.8, 0.2, 55.5, 48.5, 51.3,44.5,2.8 +1.5139146567717996,1.51,a-cure-i1,2018-19,Leominster - Sky View Middle School,01530320, 0.0, 4.0, 9.2, 37.2, 3.5, 0.0, 46.1, 48.8, 51.2,53.9,5.1 +8.512820512820516,5,a-cure-i1,2018-19,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 5.9, 9.6, 0.0, 84.4, 41.5, 58.5,15.599999999999994,8.3 +7.65079365079365,5,a-cure-i1,2018-19,Lexington - Bowman,01550008, 0.0, 32.2, 5.7, 2.9, 9.5, 0.0, 49.6, 47.1, 52.9,50.4,24.099999999999998 +1.9756521739130435,1.98,a-cure-i1,2018-19,Lexington - Bridge,01550006, 0.2, 43.1, 5.4, 5.2, 3.7, 0.0, 42.5, 50.3, 49.7,57.5,7.1 +1,1,a-cure-i1,2018-19,Lexington - Fiske,01550015, 0.0, 30.6, 2.9, 3.3, 8.8, 0.0, 54.4, 47.3, 52.7,45.6,0.6 +2.3225806451612905,2.32,a-cure-i1,2018-19,Lexington - Harrington,01550030, 0.4, 40.4, 4.3, 4.1, 6.7, 0.0, 44.2, 47.9, 52.1,55.8,8.1 +3.7122302158273377,3.71,a-cure-i1,2018-19,Lexington - Jonas Clarke Middle,01550305, 0.0, 42.2, 4.0, 4.4, 4.9, 0.0, 44.4, 49.6, 50.4,55.6,12.899999999999999 +1,1,a-cure-i1,2018-19,Lexington - Joseph Estabrook,01550010, 0.0, 41.9, 5.2, 4.7, 9.7, 0.0, 38.6, 47.1, 52.9,61.4,0.5 +1,1,a-cure-i1,2018-19,Lexington - Lexington Children's Place,01550001, 1.4, 49.3, 2.9, 7.2, 7.2, 0.0, 31.9, 36.2, 63.8,68.1,0.0 +2.7401574803149606,2.74,a-cure-i1,2018-19,Lexington - Lexington High,01550505, 0.1, 38.0, 3.7, 3.7, 5.3, 0.0, 49.2, 49.8, 50.2,50.8,8.7 +4.797319932998325,4.8,a-cure-i1,2018-19,Lexington - Maria Hastings,01550035, 0.0, 44.5, 1.8, 4.4, 9.0, 0.0, 40.3, 46.7, 53.3,59.7,17.9 +3.6221033868092696,3.62,a-cure-i1,2018-19,Lexington - Wm Diamond Middle,01550310, 0.0, 40.4, 3.4, 3.8, 8.6, 0.0, 43.9, 52.3, 47.7,56.1,12.700000000000001 +5.550356052899288,5,a-cure-i1,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 12.4, 84.8, 1.1, 0.0, 1.7, 44.4, 55.6,98.3,34.1 +3.5732009925558317,3.57,a-cure-i1,2018-19,Lincoln - Hanscom Middle,01570305, 0.7, 1.4, 8.5, 20.0, 9.2, 0.7, 59.7, 51.2, 48.8,40.3,9.0 +2.031180400890869,2.03,a-cure-i1,2018-19,Lincoln - Hanscom Primary,01570006, 0.0, 2.0, 6.6, 23.9, 11.8, 0.7, 55.1, 51.5, 48.5,44.9,5.7 +4.0,4.0,a-cure-i1,2018-19,Lincoln - Lincoln School,01570025, 0.2, 5.6, 10.3, 9.8, 10.1, 0.0, 64.0, 49.2, 50.8,36.0,9.0 +5.465346534653466,5,a-cure-i1,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 6.2, 4.8, 4.6, 4.4, 0.1, 79.8, 47.2, 52.8,20.200000000000003,6.900000000000001 +5.859154929577463,5,a-cure-i1,2018-19,Littleton - Littleton High School,01580505, 0.4, 7.6, 0.2, 2.2, 3.6, 0.2, 85.8, 56.7, 43.1,14.200000000000003,5.199999999999999 +1,1,a-cure-i1,2018-19,Littleton - Littleton Middle School,01580305, 0.3, 6.0, 1.6, 2.2, 4.4, 0.0, 85.4, 51.6, 48.4,14.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Littleton - Russell St Elementary,01580015, 0.3, 11.5, 1.8, 1.8, 2.0, 0.5, 82.2, 49.9, 50.1,17.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Littleton - Shaker Lane Elementary,01580005, 0.0, 11.6, 0.2, 0.9, 1.4, 0.2, 85.7, 50.0, 50.0,14.299999999999997,4.1 +1,1,a-cure-i1,2018-19,Longmeadow - Blueberry Hill,01590005, 0.0, 18.5, 0.9, 4.6, 4.8, 0.5, 70.8, 49.5, 50.5,29.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Longmeadow - Center,01590010, 0.0, 3.3, 2.6, 5.7, 4.8, 0.0, 83.5, 47.1, 52.9,16.5,0.0 +1,1,a-cure-i1,2018-19,Longmeadow - Glenbrook Middle,01590017, 0.0, 13.5, 3.8, 6.2, 3.2, 0.3, 72.9, 50.3, 49.7,27.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Longmeadow - Longmeadow High,01590505, 0.1, 8.5, 2.5, 4.1, 2.9, 0.0, 81.9, 50.4, 49.6,18.099999999999994,3.1 +1,1,a-cure-i1,2018-19,Longmeadow - Williams Middle,01590305, 0.0, 7.6, 1.0, 4.8, 3.2, 0.0, 83.4, 49.0, 51.0,16.599999999999994,4.7 +1,1,a-cure-i1,2018-19,Longmeadow - Wolf Swamp Road,01590025, 0.0, 9.5, 3.9, 6.4, 4.9, 0.0, 75.3, 46.0, 54.0,24.700000000000003,0.0 +1.3454545454545455,1.35,a-cure-i1,2018-19,Lowell - Abraham Lincoln,01600020, 0.2, 49.9, 3.1, 30.8, 3.9, 0.0, 12.0, 46.0, 54.0,88.0,7.4 +1.358904109589041,1.36,a-cure-i1,2018-19,Lowell - B.F. Butler Middle School,01600310, 0.0, 26.3, 7.2, 33.5, 6.0, 0.0, 27.0, 51.1, 48.9,73.0,6.2 +1.7906137184115527,1.79,a-cure-i1,2018-19,Lowell - Bartlett Community Partnership,01600090, 0.2, 40.9, 8.2, 31.0, 2.7, 0.0, 16.9, 48.7, 51.3,83.1,9.3 +1,1,a-cure-i1,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 25.0, 6.7, 45.2, 3.8, 0.0, 19.2, 32.7, 67.3,80.8,0.0 +1,1,a-cure-i1,2018-19,Lowell - Charles W Morey,01600030, 0.4, 62.4, 4.9, 10.8, 4.3, 0.0, 17.2, 51.3, 48.7,82.8,3.6 +1,1,a-cure-i1,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 42.8, 4.7, 33.8, 4.3, 0.0, 14.3, 45.0, 55.0,85.7,0.0 +1,1,a-cure-i1,2018-19,Lowell - Dr An Wang School,01600345, 0.0, 15.8, 7.6, 42.0, 4.8, 0.0, 29.8, 48.0, 52.0,70.2,0.0 +1,1,a-cure-i1,2018-19,Lowell - Dr Gertrude Bailey,01600002, 0.2, 38.0, 4.3, 21.5, 4.7, 0.0, 31.3, 46.7, 53.3,68.7,0.0 +2.2315202231520224,2.23,a-cure-i1,2018-19,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 17.4, 17.4, 32.6, 4.3, 0.0, 28.3, 21.7, 78.3,71.7,10.0 +2.363885088919289,2.36,a-cure-i1,2018-19,Lowell - Greenhalge,01600015, 0.0, 13.5, 12.4, 43.8, 3.2, 0.2, 26.9, 47.2, 52.8,73.1,10.8 +1,1,a-cure-i1,2018-19,Lowell - Henry J Robinson Middle,01600330, 0.0, 16.8, 10.0, 45.8, 3.4, 0.0, 24.0, 50.0, 50.0,76.0,4.8 +1.2540540540540541,1.25,a-cure-i1,2018-19,Lowell - James S Daley Middle School,01600315, 0.0, 45.8, 4.2, 19.0, 5.0, 0.0, 26.0, 44.6, 55.4,74.0,5.8 +1,1,a-cure-i1,2018-19,Lowell - James Sullivan Middle School,01600340, 0.0, 15.6, 8.3, 41.5, 4.7, 0.0, 30.0, 49.2, 50.8,70.0,3.5 +1,1,a-cure-i1,2018-19,Lowell - John J Shaughnessy,01600050, 0.4, 27.6, 6.7, 34.9, 2.6, 0.0, 27.8, 50.5, 49.5,72.2,0.0 +1.5599472990777339,1.56,a-cure-i1,2018-19,Lowell - Joseph McAvinnue,01600010, 0.0, 17.7, 5.5, 49.9, 2.8, 0.0, 24.1, 48.8, 51.2,75.9,7.4 +2.1454545454545455,2.15,a-cure-i1,2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 48.4, 5.0, 30.7, 3.9, 0.0, 12.0, 49.2, 50.8,88.0,11.8 +2.0,2.0,a-cure-i1,2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 15.0, 45.0, 0.0, 0.0, 40.0, 5.0, 95.0,60.0,7.5 +1,1,a-cure-i1,2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 8.6, 0.0, 54.3, 11.4, 0.0, 25.7, 34.3, 65.7,74.3,0.0 +2.418862690707351,2.42,a-cure-i1,2018-19,Lowell - Lowell High,01600505, 0.0, 30.6, 12.3, 26.3, 2.9, 0.0, 27.9, 50.8, 49.2,72.1,10.9 +3.437037037037037,3.44,a-cure-i1,2018-19,Lowell - Moody Elementary,01600027, 0.0, 17.7, 6.9, 40.8, 2.2, 0.0, 32.5, 53.4, 46.6,67.5,14.5 +1,1,a-cure-i1,2018-19,Lowell - Pawtucketville Memorial,01600036, 0.0, 23.2, 9.5, 26.2, 4.6, 0.0, 36.5, 47.0, 53.0,63.5,3.8 +2.786355475763016,2.79,a-cure-i1,2018-19,Lowell - Peter W Reilly,01600040, 0.0, 9.4, 2.1, 39.8, 4.3, 0.0, 44.3, 48.9, 51.1,55.7,9.7 +1.6842105263157896,1.68,a-cure-i1,2018-19,Lowell - Pyne Arts,01600018, 0.0, 12.1, 5.7, 39.2, 3.7, 0.0, 39.2, 47.4, 52.6,60.8,6.4 +1,1,a-cure-i1,2018-19,Lowell - Rogers STEM Academy,01600005, 0.0, 23.3, 9.3, 39.4, 4.7, 0.0, 23.2, 47.0, 53.0,76.8,4.9 +2.878048780487805,2.88,a-cure-i1,2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 8.3, 6.5, 48.0, 2.8, 0.0, 34.4, 51.8, 48.2,65.6,11.8 +1.1323722149410225,1.13,a-cure-i1,2018-19,Lowell - The Career Academy,01600515, 0.0, 15.3, 10.2, 46.6, 4.2, 0.0, 23.7, 33.1, 66.9,76.3,5.4 +1,1,a-cure-i1,2018-19,Lowell - Washington,01600055, 0.0, 46.3, 4.2, 22.1, 7.9, 0.0, 19.6, 42.9, 57.1,80.4,0.0 +2.8196037539103234,2.82,a-cure-i1,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 19.1, 25.2, 47.7, 3.8, 0.0, 4.1, 50.0, 49.9,95.9,16.900000000000002 +6.29137199434229,5,a-cure-i1,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 28.0, 3.7, 34.1, 4.9, 0.0, 29.3, 43.9, 56.1,70.7,27.799999999999997 +1,1,a-cure-i1,2018-19,Ludlow - Chapin Street Elementary School,01610020, 0.3, 0.3, 2.1, 14.5, 2.1, 0.0, 80.6, 48.5, 51.5,19.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Ludlow - East Street Elementary School,01610010, 0.3, 1.0, 1.0, 12.5, 3.1, 0.0, 82.1, 48.7, 51.3,17.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Ludlow - Ludlow Senior High,01610505, 0.2, 0.8, 2.6, 8.1, 2.9, 0.0, 85.4, 49.5, 50.3,14.599999999999994,4.5 +1,1,a-cure-i1,2018-19,Ludlow - Paul R Baird Middle,01610305, 0.7, 0.5, 2.3, 9.3, 2.0, 0.0, 85.2, 49.0, 51.0,14.799999999999997,1.3 +1,1,a-cure-i1,2018-19,Ludlow - Veterans Park Elementary,01610023, 0.8, 0.5, 1.3, 14.3, 3.0, 0.0, 80.1, 51.8, 48.2,19.900000000000006,1.7 +1,1,a-cure-i1,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 12.5, 0.0, 87.5, 50.0, 50.0,12.5,0.0 +1,1,a-cure-i1,2018-19,Lunenburg - Lunenburg High,01620505, 1.1, 3.1, 2.0, 4.6, 0.9, 0.7, 87.8, 50.4, 49.6,12.200000000000003,2.7 +1,1,a-cure-i1,2018-19,Lunenburg - Lunenburg Middle School,01620305, 0.5, 0.8, 1.5, 9.4, 2.3, 0.0, 85.5, 46.1, 53.9,14.5,0.6 +1,1,a-cure-i1,2018-19,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.9, 3.3, 7.9, 1.9, 0.0, 84.9, 49.8, 50.2,15.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 2.2, 1.3, 6.7, 3.5, 0.5, 85.8, 47.8, 52.2,14.200000000000003,0.0 +1.8793103448275863,1.88,a-cure-i1,2018-19,Lynn - A Drewicz Elementary,01630016, 0.4, 15.2, 7.0, 67.5, 2.6, 0.0, 7.2, 51.1, 48.9,92.8,10.9 +1,1,a-cure-i1,2018-19,Lynn - Aborn,01630011, 1.6, 9.4, 11.3, 39.1, 10.2, 0.0, 28.5, 51.6, 48.4,71.5,0.7 +2.3825887743413516,2.38,a-cure-i1,2018-19,Lynn - Breed Middle School,01630405, 0.1, 9.4, 9.0, 65.4, 3.3, 0.0, 12.7, 48.1, 51.9,87.3,13.0 +1,1,a-cure-i1,2018-19,Lynn - Brickett Elementary,01630020, 0.6, 11.0, 8.9, 59.9, 5.0, 0.0, 14.5, 45.7, 54.3,85.5,0.6 +1,1,a-cure-i1,2018-19,Lynn - Capt William G Shoemaker,01630090, 0.0, 6.3, 13.5, 29.9, 6.6, 0.0, 43.7, 40.6, 59.4,56.3,0.0 +2.391752577319588,2.39,a-cure-i1,2018-19,Lynn - Classical High,01630505, 0.4, 9.9, 9.3, 55.5, 2.5, 0.1, 22.4, 47.8, 52.2,77.6,11.600000000000001 +1.3388429752066118,1.34,a-cure-i1,2018-19,Lynn - Cobbet Elementary,01630035, 0.0, 5.1, 8.1, 81.4, 2.2, 0.0, 3.2, 45.9, 54.1,96.8,8.100000000000001 +1,1,a-cure-i1,2018-19,Lynn - E J Harrington,01630045, 0.0, 6.5, 8.7, 72.9, 3.2, 0.0, 8.7, 47.2, 52.8,91.3,2.8 +1,1,a-cure-i1,2018-19,Lynn - Early Childhood Center,01630004, 0.7, 8.6, 13.0, 64.4, 2.7, 0.0, 10.6, 40.1, 59.9,89.4,0.0 +1,1,a-cure-i1,2018-19,Lynn - Edward A Sisson,01630095, 1.4, 10.8, 6.3, 43.2, 5.2, 0.0, 33.1, 48.0, 52.0,66.9,4.1 +1.565217391304348,1.57,a-cure-i1,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 1.1, 4.4, 9.9, 50.5, 7.7, 0.0, 26.4, 38.5, 61.5,73.6,7.2 +1,1,a-cure-i1,2018-19,Lynn - Hood,01630055, 0.2, 9.3, 8.0, 64.8, 2.5, 0.0, 15.2, 51.1, 48.9,84.8,4.4 +1.0980392156862746,1.1,a-cure-i1,2018-19,Lynn - Ingalls,01630060, 0.5, 8.2, 10.4, 70.0, 2.5, 0.2, 8.2, 48.3, 51.7,91.8,6.3 +1.4265060240963856,1.43,a-cure-i1,2018-19,Lynn - Julia F Callahan,01630030, 0.0, 7.3, 15.9, 53.9, 5.9, 0.0, 17.0, 47.7, 52.3,83.0,7.4 +1,1,a-cure-i1,2018-19,Lynn - Lincoln-Thomson,01630070, 0.0, 8.0, 5.9, 57.4, 7.2, 0.0, 21.5, 45.6, 54.0,78.5,0.0 +2.383371824480369,2.38,a-cure-i1,2018-19,Lynn - Lynn English High,01630510, 0.4, 8.7, 10.0, 65.1, 2.4, 0.0, 13.4, 46.2, 53.8,86.6,12.899999999999999 +3.20372526193248,3.2,a-cure-i1,2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 0.4, 6.1, 7.2, 68.8, 3.4, 0.0, 14.1, 43.2, 56.7,85.9,17.200000000000003 +4.773892773892774,4.77,a-cure-i1,2018-19,Lynn - Lynn Woods,01630075, 1.1, 4.5, 2.3, 25.4, 9.6, 0.0, 57.1, 53.7, 46.3,42.9,12.8 +2.2358078602620086,2.24,a-cure-i1,2018-19,Lynn - Pickering Middle,01630420, 0.6, 9.7, 7.7, 45.0, 5.7, 0.0, 31.3, 48.3, 51.7,68.7,9.6 +1,1,a-cure-i1,2018-19,Lynn - Robert L Ford,01630050, 0.2, 8.0, 7.6, 74.5, 3.3, 0.0, 6.4, 50.6, 49.4,93.6,0.4 +1,1,a-cure-i1,2018-19,Lynn - Sewell-Anderson,01630085, 0.7, 5.7, 9.6, 49.5, 3.9, 0.0, 30.6, 45.9, 54.1,69.4,4.5 +1.4945054945054945,1.49,a-cure-i1,2018-19,Lynn - Thurgood Marshall Mid,01630305, 0.1, 7.0, 10.6, 70.8, 2.6, 0.0, 9.0, 49.8, 50.2,91.0,8.5 +1,1,a-cure-i1,2018-19,Lynn - Tracy,01630100, 0.0, 6.8, 10.3, 70.5, 4.2, 0.0, 8.2, 51.5, 48.5,91.8,2.5 +1,1,a-cure-i1,2018-19,Lynn - Washington Elementary School,01630005, 0.0, 6.0, 13.3, 73.3, 3.1, 0.0, 4.2, 48.0, 52.0,95.8,4.0 +1,1,a-cure-i1,2018-19,Lynn - William R Fallon,01630080, 0.0, 4.3, 6.4, 66.0, 2.1, 0.0, 21.3, 12.8, 87.2,78.7,0.0 +1.7435897435897436,1.74,a-cure-i1,2018-19,Lynn - Wm P Connery,01630040, 0.2, 12.2, 5.7, 73.5, 2.1, 0.0, 6.4, 51.3, 48.7,93.6,10.2 +1,1,a-cure-i1,2018-19,Lynnfield - Huckleberry Hill,01640010, 0.0, 8.8, 2.1, 6.5, 5.5, 0.0, 77.2, 56.0, 44.0,22.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Lynnfield - Lynnfield High,01640505, 0.0, 4.0, 1.7, 3.5, 1.6, 0.0, 89.2, 52.6, 47.4,10.799999999999997,2.3 +1,1,a-cure-i1,2018-19,Lynnfield - Lynnfield Middle School,01640405, 0.0, 7.2, 1.7, 6.2, 2.0, 0.0, 83.0, 46.1, 53.9,17.0,0.0 +1,1,a-cure-i1,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, 2.4, 2.4, 2.4, 11.9, 0.0, 81.0, 42.9, 57.1,19.0,0.0 +1,1,a-cure-i1,2018-19,Lynnfield - Summer Street,01640020, 0.0, 4.9, 1.4, 5.6, 1.9, 0.0, 86.3, 47.2, 52.8,13.700000000000003,0.0 +4.155520995334371,4.16,a-cure-i1,2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 50.0, 2.0, 4.1, 8.2, 0.0, 35.7, 46.9, 53.1,64.3,16.7 +1.4439592430858803,1.44,a-cure-i1,2018-19,Malden - Beebe,01650003, 0.0, 37.0, 13.6, 13.7, 4.2, 0.1, 31.3, 49.1, 50.9,68.7,6.199999999999999 +1,1,a-cure-i1,2018-19,Malden - Ferryway,01650013, 0.1, 19.0, 19.0, 33.0, 5.7, 0.0, 23.3, 49.3, 50.7,76.7,2.3 +1,1,a-cure-i1,2018-19,Malden - Forestdale,01650027, 0.0, 10.0, 17.5, 25.8, 5.9, 0.2, 40.6, 46.5, 53.5,59.4,3.7 +1,1,a-cure-i1,2018-19,Malden - Linden,01650047, 0.4, 24.2, 20.2, 16.1, 5.3, 0.0, 34.0, 48.7, 51.2,66.0,2.3 +1,1,a-cure-i1,2018-19,Malden - Malden Early Learning Center,01650049, 0.0, 36.1, 15.7, 7.8, 5.3, 0.0, 35.1, 39.2, 60.8,64.9,0.0 +3.0067114093959733,3.01,a-cure-i1,2018-19,Malden - Malden High,01650505, 0.2, 23.0, 21.9, 26.3, 3.0, 0.1, 25.5, 48.6, 51.4,74.5,14.0 +2.069857697283312,2.07,a-cure-i1,2018-19,Malden - Salemwood,01650057, 0.0, 18.6, 20.9, 34.7, 3.2, 0.0, 22.7, 49.2, 50.8,77.3,10.0 +1,1,a-cure-i1,2018-19,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.9, 1.8, 1.8, 0.0, 95.5, 48.2, 51.8,4.5,0.0 +1,1,a-cure-i1,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.5, 0.0, 1.7, 0.6, 0.0, 96.2, 55.4, 44.6,3.799999999999997,2.3 +21.46341463414637,5,a-cure-i1,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.6, 0.0, 0.8, 1.6, 0.0, 95.9, 48.1, 51.9,4.099999999999994,5.5 +1,1,a-cure-i1,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 1.8, 0.9, 0.6, 0.0, 96.6, 49.1, 50.9,3.4000000000000057,0.0 +1,1,a-cure-i1,2018-19,Mansfield - Everett W Robinson,01670007, 0.1, 7.5, 4.0, 5.1, 5.8, 0.0, 77.4, 47.1, 52.9,22.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Mansfield - Harold L Qualters Middle,01670035, 0.1, 6.2, 3.2, 5.1, 3.1, 0.0, 82.3, 47.6, 52.4,17.700000000000003,2.6 +1,1,a-cure-i1,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 7.9, 3.5, 5.5, 4.4, 0.0, 78.6, 45.9, 54.1,21.400000000000006,3.8 +7.263157894736841,5,a-cure-i1,2018-19,Mansfield - Mansfield High,01670505, 0.0, 5.1, 3.8, 3.3, 2.9, 0.1, 84.8, 49.6, 50.4,15.200000000000003,6.9 +1,1,a-cure-i1,2018-19,Mansfield - Roland Green School,01670003, 0.0, 9.6, 2.6, 7.9, 3.5, 0.0, 76.3, 39.5, 60.5,23.700000000000003,0.0 +9.812154696132595,5,a-cure-i1,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.8, 0.0, 7.7, 20.0, 6.2, 1.5, 63.8, 36.9, 63.1,36.2,22.2 +1,1,a-cure-i1,2018-19,Marblehead - Glover,01680020, 0.0, 0.8, 1.9, 4.1, 4.9, 0.0, 88.4, 46.5, 53.5,11.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Marblehead - L H Coffin,01680010, 0.0, 1.4, 0.9, 9.3, 4.6, 0.5, 83.3, 46.8, 53.2,16.700000000000003,4.4 +1,1,a-cure-i1,2018-19,Marblehead - Malcolm L Bell,01680005, 0.0, 1.7, 2.0, 9.6, 4.6, 0.0, 82.2, 47.9, 52.1,17.799999999999997,1.1 +7.458646616541356,5,a-cure-i1,2018-19,Marblehead - Marblehead High,01680505, 0.1, 1.9, 2.6, 6.5, 2.2, 0.0, 86.7, 52.3, 47.7,13.299999999999997,6.2 +1,1,a-cure-i1,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0.4, 1.3, 4.5, 6.9, 1.9, 0.0, 85.0, 51.1, 48.9,15.0,2.4 +1,1,a-cure-i1,2018-19,Marblehead - Village School,01680016, 0.0, 1.7, 3.3, 7.2, 3.7, 0.0, 84.1, 46.6, 53.4,15.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.9, 2.7, 6.2, 3.1, 2.2, 0.0, 85.0, 44.7, 55.3,15.0,0.0 +1,1,a-cure-i1,2018-19,Marion - Sippican,01690005, 0.4, 1.3, 3.1, 2.9, 5.1, 0.0, 87.0, 46.1, 53.9,13.0,0.0 +1.3661740558292284,1.37,a-cure-i1,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.1, 2.4, 3.3, 52.2, 2.9, 0.0, 39.1, 47.9, 52.1,60.9,5.2 +1,1,a-cure-i1,2018-19,Marlborough - Charles Jaworek School,01700030, 0.3, 7.6, 3.3, 40.4, 1.8, 0.0, 46.6, 48.1, 51.9,53.4,2.0 +1,1,a-cure-i1,2018-19,Marlborough - Early Childhood Center,01700006, 0.0, 11.4, 6.9, 24.0, 4.0, 1.7, 52.0, 45.7, 54.3,48.0,0.0 +1,1,a-cure-i1,2018-19,Marlborough - Francis J Kane,01700008, 0.0, 2.9, 4.4, 46.1, 2.0, 0.0, 44.6, 50.2, 49.8,55.4,0.0 +1.5836177474402733,1.58,a-cure-i1,2018-19,Marlborough - Marlborough High,01700505, 0.1, 1.8, 3.6, 50.8, 2.3, 0.0, 41.4, 47.3, 52.7,58.6,5.800000000000001 +1,1,a-cure-i1,2018-19,Marlborough - Richer,01700025, 0.0, 2.4, 2.8, 59.1, 3.8, 0.0, 31.9, 48.4, 51.6,68.1,2.5 +1,1,a-cure-i1,2018-19,Marshfield - Daniel Webster,01710015, 0.5, 1.9, 0.5, 3.8, 1.4, 1.1, 90.7, 48.2, 51.8,9.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 1.2, 1.2, 0.0, 97.5, 38.8, 61.2,2.5,0.0 +1,1,a-cure-i1,2018-19,Marshfield - Furnace Brook Middle,01710310, 0.2, 1.0, 0.5, 2.1, 1.9, 0.1, 94.2, 50.0, 50.0,5.799999999999997,1.6 +1,1,a-cure-i1,2018-19,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.5, 0.2, 3.4, 1.0, 0.0, 94.9, 50.4, 49.6,5.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Marshfield - Marshfield High,01710505, 0.1, 1.3, 0.5, 2.9, 1.0, 0.1, 94.2, 49.7, 50.3,5.799999999999997,2.1 +1,1,a-cure-i1,2018-19,Marshfield - Martinson Elementary,01710025, 0.0, 2.4, 0.7, 4.7, 3.1, 0.0, 89.1, 47.8, 52.2,10.900000000000006,4.1 +1,1,a-cure-i1,2018-19,Marshfield - South River,01710010, 0.0, 0.3, 0.0, 3.1, 4.0, 0.0, 92.6, 49.4, 50.6,7.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 2.5, 1.1, 4.8, 15.7, 3.4, 0.6, 71.8, 44.7, 55.1,28.200000000000003,3.5 +1,1,a-cure-i1,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.2, 0.5, 2.7, 12.1, 8.8, 0.0, 73.6, 54.9, 45.1,26.400000000000006,4.5 +5.480122324159021,5,a-cure-i1,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 1.1, 34.7, 58.3, 4.0, 0.0, 1.9, 50.8, 49.2,98.1,33.599999999999994 +1,1,a-cure-i1,2018-19,Masconomet - Masconomet Regional High School,07050505, 0.3, 3.9, 0.4, 2.5, 2.1, 0.2, 90.5, 52.8, 47.2,9.5,1.4 +10.341463414634145,5,a-cure-i1,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 3.4, 0.3, 2.3, 2.2, 0.0, 91.8, 51.0, 49.0,8.200000000000003,5.300000000000001 +1,1,a-cure-i1,2018-19,Mashpee - Kenneth Coombs School,01720005, 4.7, 2.2, 3.7, 7.4, 13.2, 0.5, 68.4, 45.8, 54.2,31.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Mashpee - Mashpee High,01720505, 5.9, 2.6, 5.3, 4.8, 5.5, 0.2, 75.6, 46.9, 53.1,24.400000000000006,0.9 +1,1,a-cure-i1,2018-19,Mashpee - Mashpee Middle School,01720020, 7.6, 2.8, 5.6, 1.6, 5.2, 0.0, 77.3, 50.2, 49.8,22.700000000000003,3.2 +1,1,a-cure-i1,2018-19,Mashpee - Quashnet School,01720035, 6.8, 1.6, 3.4, 5.0, 8.2, 0.0, 75.1, 51.7, 48.3,24.900000000000006,0.0 +5.257142857142856,5,a-cure-i1,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.5, 0.6, 46.3, 48.4, 2.1, 0.2, 2.0, 52.8, 47.2,98.0,32.199999999999996 +1,1,a-cure-i1,2018-19,Mattapoisett - Center,01730005, 0.0, 1.2, 0.4, 5.6, 6.0, 0.0, 86.7, 48.2, 51.8,13.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Mattapoisett - Old Hammondtown,01730010, 0.0, 2.1, 1.0, 2.6, 3.1, 0.0, 91.1, 46.4, 53.6,8.900000000000006,0.0 +9.464788732394368,5,a-cure-i1,2018-19,Maynard - Fowler School,01740305, 0.0, 1.7, 2.9, 11.4, 5.4, 0.0, 78.7, 49.8, 50.2,21.299999999999997,12.6 +9.98165137614679,5,a-cure-i1,2018-19,Maynard - Green Meadow,01740010, 0.0, 1.2, 2.2, 13.2, 5.1, 0.0, 78.2, 46.4, 53.6,21.799999999999997,13.6 +1,1,a-cure-i1,2018-19,Maynard - Maynard High,01740505, 0.3, 3.5, 2.7, 10.9, 3.5, 0.0, 79.2, 52.0, 48.0,20.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Medfield - Dale Street,01750005, 0.8, 3.2, 0.8, 7.2, 2.7, 0.0, 85.4, 44.8, 55.2,14.599999999999994,2.6 +1,1,a-cure-i1,2018-19,Medfield - Medfield Senior High,01750505, 0.0, 5.5, 0.9, 2.3, 2.9, 0.0, 88.5, 49.7, 50.3,11.5,3.2 +1,1,a-cure-i1,2018-19,Medfield - Memorial School,01750003, 0.5, 2.6, 1.2, 3.1, 3.1, 0.0, 89.6, 51.5, 48.5,10.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Medfield - Ralph Wheelock School,01750007, 0.0, 4.2, 1.2, 5.0, 3.5, 0.0, 86.1, 46.9, 53.1,13.900000000000006,1.7 +1,1,a-cure-i1,2018-19,Medfield - Thomas Blake Middle,01750305, 0.5, 4.3, 1.0, 3.8, 4.2, 0.0, 86.1, 49.0, 51.0,13.900000000000006,4.6 +1,1,a-cure-i1,2018-19,Medford - Brooks School,01760130, 0.4, 4.6, 7.4, 9.1, 6.0, 0.0, 72.5, 48.2, 51.8,27.5,0.0 +1,1,a-cure-i1,2018-19,Medford - Christopher Columbus,01760140, 0.7, 5.4, 15.8, 19.3, 5.7, 0.0, 53.1, 44.2, 55.8,46.9,4.9 +1,1,a-cure-i1,2018-19,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 7.1, 14.3, 0.0, 0.0, 78.6, 42.9, 57.1,21.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Medford - John J McGlynn Elementary School,01760068, 1.1, 15.9, 13.3, 14.4, 6.3, 0.2, 48.8, 53.9, 46.1,51.2,3.8 +1.7313432835820897,1.73,a-cure-i1,2018-19,Medford - John J. McGlynn Middle School,01760320, 0.0, 12.7, 19.4, 17.6, 3.6, 0.2, 46.4, 48.7, 51.3,53.6,5.800000000000001 +1,1,a-cure-i1,2018-19,Medford - Madeleine Dugger Andrews,01760315, 0.2, 5.5, 7.6, 7.2, 5.7, 0.0, 73.7, 45.3, 54.7,26.299999999999997,2.8 +1,1,a-cure-i1,2018-19,Medford - Medford High,01760505, 0.1, 10.5, 14.5, 12.2, 3.7, 0.1, 58.8, 48.6, 51.4,41.2,4.4 +1,1,a-cure-i1,2018-19,Medford - Milton Fuller Roberts,01760150, 1.1, 10.7, 10.3, 11.9, 4.4, 0.0, 61.6, 48.1, 51.9,38.4,0.0 +1,1,a-cure-i1,2018-19,Medway - Burke/Memorial Elementary School,01770015, 0.0, 1.6, 2.0, 3.0, 2.2, 0.0, 91.1, 50.6, 49.4,8.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Medway - John D Mc Govern Elementary,01770013, 0.0, 2.1, 0.3, 3.7, 2.1, 0.3, 91.5, 45.4, 54.6,8.5,0.0 +10.621848739495794,5,a-cure-i1,2018-19,Medway - Medway High,01770505, 0.1, 4.1, 1.7, 4.1, 1.7, 0.1, 88.1, 49.3, 50.7,11.900000000000006,7.9 +1,1,a-cure-i1,2018-19,Medway - Medway Middle,01770305, 0.1, 2.7, 1.6, 4.5, 2.9, 0.0, 88.2, 53.6, 46.4,11.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Melrose - Early Childhood Center,01780003, 0.0, 5.0, 2.2, 5.0, 6.9, 0.0, 80.9, 47.3, 52.7,19.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Melrose - Herbert Clark Hoover,01780017, 0.0, 9.3, 4.5, 6.2, 4.1, 0.0, 75.9, 50.3, 49.7,24.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Melrose - Horace Mann,01780025, 0.0, 1.1, 2.2, 2.5, 5.4, 0.0, 88.8, 54.9, 45.1,11.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Melrose - Lincoln,01780020, 0.0, 13.3, 6.3, 9.8, 8.9, 0.0, 61.8, 52.7, 47.3,38.2,0.0 +1,1,a-cure-i1,2018-19,Melrose - Melrose High,01780505, 0.0, 4.6, 6.4, 3.9, 3.6, 0.0, 81.5, 53.6, 46.4,18.5,4.2 +1,1,a-cure-i1,2018-19,Melrose - Melrose Middle,01780305, 0.0, 4.7, 7.3, 4.8, 3.8, 0.0, 79.4, 49.9, 50.1,20.599999999999994,4.2 +1,1,a-cure-i1,2018-19,Melrose - Roosevelt,01780035, 0.0, 6.2, 4.5, 4.1, 5.5, 0.0, 79.7, 48.9, 51.1,20.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Melrose - Winthrop,01780050, 0.0, 3.9, 4.1, 3.4, 5.1, 0.0, 83.5, 48.4, 51.6,16.5,4.5 +1,1,a-cure-i1,2018-19,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.3, 0.0, 2.2, 0.5, 0.0, 97.0, 51.9, 48.1,3.0,0.0 +20.771929824561393,5,a-cure-i1,2018-19,Mendon-Upton - Memorial School,07100001, 0.0, 3.9, 0.2, 4.3, 2.9, 0.0, 88.6, 46.9, 53.1,11.400000000000006,14.8 +1,1,a-cure-i1,2018-19,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 2.6, 0.1, 5.2, 3.3, 0.0, 88.8, 47.8, 52.2,11.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 0.3, 1.5, 1.5, 4.3, 2.1, 0.0, 90.3, 53.6, 46.4,9.700000000000003,2.5 +1,1,a-cure-i1,2018-19,Methuen - Comprehensive Grammar School,01810050, 0.1, 5.1, 2.8, 35.5, 3.6, 0.0, 52.8, 50.9, 49.1,47.2,0.0 +1,1,a-cure-i1,2018-19,Methuen - Donald P Timony Grammar,01810060, 0.1, 3.6, 2.7, 49.3, 4.9, 0.1, 39.3, 45.9, 54.1,60.7,1.5 +1,1,a-cure-i1,2018-19,Methuen - Marsh Grammar School,01810030, 0.0, 3.4, 1.3, 31.0, 4.2, 0.2, 59.8, 48.3, 51.7,40.2,1.5 +1,1,a-cure-i1,2018-19,Methuen - Methuen High,01810505, 0.2, 4.0, 1.3, 37.3, 5.1, 0.2, 52.0, 47.8, 52.2,48.0,2.3 +1,1,a-cure-i1,2018-19,Methuen - Tenney Grammar School,01810055, 0.0, 3.4, 2.2, 52.6, 5.4, 0.0, 36.3, 46.1, 53.9,63.7,0.0 +1,1,a-cure-i1,2018-19,Middleborough - Henry B. Burkland Elementary School,01820008, 0.4, 1.1, 1.5, 2.4, 6.0, 0.2, 88.5, 45.3, 54.7,11.5,0.0 +1,1,a-cure-i1,2018-19,Middleborough - John T. Nichols Middle,01820305, 1.7, 1.7, 2.9, 3.4, 3.9, 0.0, 86.4, 50.1, 49.9,13.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Middleborough - Mary K. Goode Elementary School,01820010, 0.3, 0.3, 2.9, 2.6, 3.1, 0.0, 90.7, 51.2, 48.8,9.299999999999997,3.0 +1,1,a-cure-i1,2018-19,Middleborough - Memorial Early Childhood Center,01820011, 0.4, 1.9, 1.2, 2.3, 3.1, 0.0, 91.1, 44.4, 55.6,8.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Middleborough - Middleborough High,01820505, 1.2, 0.9, 2.7, 3.9, 2.9, 0.0, 88.4, 48.4, 51.6,11.599999999999994,1.8 +1,1,a-cure-i1,2018-19,Middleton - Fuller Meadow,01840003, 0.7, 5.2, 1.1, 4.9, 3.7, 0.0, 84.3, 52.2, 47.8,15.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Middleton - Howe-Manning,01840005, 1.2, 4.4, 0.5, 2.5, 3.7, 0.2, 87.5, 48.8, 51.2,12.5,0.0 +1,1,a-cure-i1,2018-19,Milford - Brookside,01850065, 0.2, 0.9, 4.5, 30.4, 3.0, 0.2, 60.9, 47.7, 52.3,39.1,0.0 +1,1,a-cure-i1,2018-19,Milford - Memorial,01850010, 0.4, 1.6, 2.0, 32.7, 4.0, 0.0, 59.3, 49.1, 50.9,40.7,3.2 +3.235457063711911,3.24,a-cure-i1,2018-19,Milford - Milford High,01850505, 1.8, 2.3, 2.6, 26.2, 3.1, 0.0, 63.9, 49.1, 50.9,36.1,7.3 +1,1,a-cure-i1,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 2.5, 1.2, 20.5, 0.6, 0.0, 75.2, 45.3, 54.0,24.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Milford - Stacy Middle,01850305, 2.2, 2.3, 2.5, 29.2, 3.4, 0.0, 60.4, 46.6, 53.4,39.6,3.0 +1.9662650602409637,1.97,a-cure-i1,2018-19,Milford - Woodland,01850090, 1.9, 2.4, 3.7, 28.7, 4.6, 0.1, 58.5, 46.9, 53.1,41.5,5.1 +1,1,a-cure-i1,2018-19,Millbury - Elmwood Street,01860017, 0.0, 3.8, 2.2, 5.5, 5.5, 0.0, 83.0, 46.9, 53.1,17.0,0.0 +1,1,a-cure-i1,2018-19,Millbury - Millbury Junior/Senior High,01860505, 0.0, 2.1, 3.4, 9.1, 3.3, 0.0, 82.1, 51.9, 48.1,17.900000000000006,0.9 +1,1,a-cure-i1,2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 5.0, 2.7, 7.2, 7.2, 0.2, 77.7, 51.0, 49.0,22.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Millis - Clyde F Brown,01870005, 0.4, 1.2, 0.8, 7.7, 5.1, 0.0, 84.7, 51.7, 48.3,15.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Millis - Millis High School,01870505, 0.3, 3.4, 1.4, 6.2, 1.1, 0.3, 87.4, 49.7, 50.3,12.599999999999994,3.6 +4.950276243093924,4.95,a-cure-i1,2018-19,Millis - Millis Middle,01870020, 0.0, 2.4, 1.1, 9.8, 4.8, 0.0, 81.9, 48.7, 51.3,18.099999999999994,5.6 +6.07457627118644,5,a-cure-i1,2018-19,Milton - Charles S Pierce Middle,01890410, 0.0, 6.3, 15.5, 4.8, 2.8, 0.1, 70.5, 51.1, 48.9,29.5,11.2 +12.851063829787236,5,a-cure-i1,2018-19,Milton - Collicot,01890005, 0.0, 8.7, 3.0, 3.0, 4.0, 0.2, 81.2, 46.0, 54.0,18.799999999999997,15.1 +1,1,a-cure-i1,2018-19,Milton - Cunningham School,01890007, 0.3, 10.0, 5.5, 3.7, 3.5, 0.0, 77.0, 52.2, 47.8,23.0,2.6 +11.106796116504857,5,a-cure-i1,2018-19,Milton - Glover,01890010, 0.2, 4.0, 6.7, 3.2, 6.5, 0.0, 79.4, 50.2, 49.8,20.599999999999994,14.299999999999999 +4.971751412429378,4.97,a-cure-i1,2018-19,Milton - Milton High,01890505, 0.2, 6.6, 18.5, 5.8, 4.1, 0.3, 64.6, 49.9, 50.0,35.400000000000006,11.0 +5.961783439490445,5,a-cure-i1,2018-19,Milton - Tucker,01890020, 0.0, 8.4, 40.2, 4.8, 9.4, 0.0, 37.2, 49.1, 50.9,62.8,23.4 +1,1,a-cure-i1,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.2, 5.4, 3.3, 7.2, 4.7, 0.0, 79.2, 36.1, 63.5,20.799999999999997,2.4000000000000004 +1,1,a-cure-i1,2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.3, 0.3, 5.2, 3.1, 0.0, 90.9, 48.8, 51.2,9.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 1.9, 5.7, 0.0, 0.0, 92.5, 50.9, 49.1,7.5,0.0 +1,1,a-cure-i1,2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.9, 0.3, 4.0, 4.0, 0.0, 90.9, 54.0, 45.7,9.099999999999994,1.9 +1,1,a-cure-i1,2018-19,Mohawk Trail - Sanderson Academy,07170020, 0.6, 0.0, 0.0, 3.8, 1.9, 0.6, 93.1, 45.9, 54.1,6.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 1.7, 6.6, 8.7, 3.5, 0.4, 79.0, 54.1, 45.9,21.0,0.0 +1,1,a-cure-i1,2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 0.7, 1.3, 4.7, 7.7, 8.3, 0.0, 77.3, 46.2, 53.8,22.700000000000003,0.0 +4.979591836734696,4.98,a-cure-i1,2018-19,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.6, 1.7, 7.3, 5.5, 4.4, 0.2, 80.4, 49.8, 50.2,19.599999999999994,6.1000000000000005 +1,1,a-cure-i1,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.6, 1.1, 7.8, 8.4, 5.0, 0.4, 76.7, 49.4, 50.6,23.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Monson - Granite Valley Middle,01910310, 0.4, 2.4, 0.8, 4.8, 2.0, 0.8, 88.8, 51.0, 49.0,11.200000000000003,4.6 +1,1,a-cure-i1,2018-19,Monson - Monson High School,01910505, 0.0, 0.4, 1.1, 1.5, 2.7, 0.8, 93.6, 50.4, 49.6,6.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Monson - Quarry Hill Community School,01910025, 0.0, 0.7, 0.7, 4.5, 2.0, 0.2, 91.8, 50.7, 49.3,8.200000000000003,3.7 +1,1,a-cure-i1,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.1, 1.5, 2.0, 16.2, 3.8, 0.0, 76.4, 49.1, 50.4,23.599999999999994,4.5 +1,1,a-cure-i1,2018-19,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.5, 2.4, 1.9, 1.4, 0.0, 93.8, 53.4, 46.6,6.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 2.2, 1.6, 2.7, 3.6, 0.0, 89.9, 53.8, 46.2,10.099999999999994,4.5 +1,1,a-cure-i1,2018-19,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 5.5, 6.7, 0.0, 87.8, 45.6, 54.4,12.200000000000003,3.2 +2.5199240986717264,2.52,a-cure-i1,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.3, 21.1, 17.8, 9.3, 4.3, 0.0, 47.3, 50.6, 49.4,52.7,8.299999999999999 +1,1,a-cure-i1,2018-19,Nahant - Johnson,01960010, 0.0, 0.7, 0.0, 4.6, 2.0, 0.0, 92.7, 51.7, 48.3,7.299999999999997,0.0 +3.0125523012552304,3.01,a-cure-i1,2018-19,Nantucket - Cyrus Peirce,01970010, 0.0, 1.8, 10.8, 31.5, 3.7, 0.0, 52.2, 48.8, 51.2,47.8,9.0 +1,1,a-cure-i1,2018-19,Nantucket - Nantucket Elementary,01970005, 0.0, 2.1, 6.3, 41.0, 4.5, 0.0, 46.0, 50.3, 49.5,54.0,0.0 +4.3999999999999995,4.4,a-cure-i1,2018-19,Nantucket - Nantucket High,01970505, 0.2, 1.9, 13.7, 23.5, 4.7, 0.0, 56.0, 47.0, 52.8,44.0,12.099999999999998 +1,1,a-cure-i1,2018-19,Nantucket - Nantucket Intermediate School,01970020, 0.0, 1.6, 9.5, 34.0, 2.6, 0.0, 52.2, 47.5, 52.5,47.8,1.2 +1,1,a-cure-i1,2018-19,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.4, 1.8, 5.0, 3.6, 0.4, 88.9, 48.2, 51.8,11.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Narragansett - Narragansett Middle,07200305, 0.2, 0.4, 1.0, 5.2, 3.1, 0.2, 89.7, 45.4, 54.6,10.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Narragansett - Narragansett Regional High,07200505, 0.0, 0.3, 0.9, 8.0, 2.2, 0.0, 88.6, 48.1, 51.5,11.400000000000006,3.8 +1,1,a-cure-i1,2018-19,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 2.5, 5.6, 4.3, 0.0, 87.7, 41.4, 58.6,12.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.5, 6.6, 3.3, 0.0, 89.6, 48.4, 51.6,10.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Nashoba - Center School,07250020, 0.0, 3.6, 0.7, 4.9, 4.0, 0.0, 86.7, 49.6, 50.4,13.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Nashoba - Florence Sawyer School,07250025, 0.0, 4.6, 0.3, 2.9, 3.5, 0.1, 88.6, 49.1, 50.9,11.400000000000006,0.0 +11.308270676691732,5,a-cure-i1,2018-19,Nashoba - Hale,07250310, 0.0, 5.4, 1.1, 4.3, 2.5, 0.0, 86.7, 49.8, 50.2,13.299999999999997,9.4 +6.111111111111109,5,a-cure-i1,2018-19,Nashoba - Luther Burbank Middle School,07250305, 0.0, 2.9, 1.6, 7.8, 2.1, 0.0, 85.6, 45.3, 54.7,14.400000000000006,5.5 +1,1,a-cure-i1,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 0.4, 0.9, 1.9, 9.9, 2.6, 0.0, 84.2, 48.6, 51.4,15.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Nashoba - Nashoba Regional,07250505, 0.0, 2.6, 1.9, 3.0, 2.7, 0.2, 89.7, 52.2, 47.8,10.299999999999997,2.7 +8.072072072072075,5,a-cure-i1,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.4, 1.8, 1.6, 4.8, 2.5, 0.0, 88.9, 38.3, 61.4,11.099999999999994,5.6 +4.462151394422312,4.46,a-cure-i1,2018-19,Natick - Bennett-Hemenway,01980005, 0.4, 12.2, 2.3, 3.5, 6.5, 0.2, 74.9, 49.6, 50.4,25.099999999999994,7.0 +1,1,a-cure-i1,2018-19,Natick - Brown,01980010, 0.4, 26.5, 0.8, 8.9, 5.5, 0.0, 57.8, 49.3, 50.7,42.2,0.0 +3.6239316239316235,3.62,a-cure-i1,2018-19,Natick - J F Kennedy Middle School,01980305, 0.0, 12.0, 1.4, 6.4, 3.6, 0.0, 76.6, 48.9, 51.1,23.400000000000006,5.300000000000001 +1,1,a-cure-i1,2018-19,Natick - Johnson,01980031, 0.0, 4.2, 0.8, 8.5, 8.1, 0.0, 78.4, 43.2, 56.8,21.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Natick - Lilja Elementary,01980035, 0.0, 11.7, 2.8, 7.6, 5.7, 0.0, 72.2, 50.5, 49.5,27.799999999999997,3.7 +1,1,a-cure-i1,2018-19,Natick - Memorial,01980043, 0.0, 5.4, 1.2, 4.5, 6.4, 0.0, 82.5, 45.3, 54.7,17.5,0.0 +3.8371040723981915,3.84,a-cure-i1,2018-19,Natick - Natick High,01980505, 0.1, 7.7, 3.5, 6.3, 4.4, 0.1, 77.9, 49.8, 50.1,22.099999999999994,5.300000000000001 +1,1,a-cure-i1,2018-19,Natick - Wilson Middle,01980310, 0.1, 6.9, 4.4, 4.5, 5.6, 0.0, 78.5, 48.3, 51.7,21.5,0.6 +1,1,a-cure-i1,2018-19,Nauset - Nauset Regional High,06600505, 0.2, 2.7, 5.2, 3.5, 3.7, 0.1, 84.5, 54.4, 45.4,15.5,4.0 +1,1,a-cure-i1,2018-19,Nauset - Nauset Regional Middle,06600305, 0.2, 2.1, 4.7, 6.1, 3.0, 0.0, 83.9, 51.8, 48.0,16.099999999999994,2.3 +1,1,a-cure-i1,2018-19,Needham - Broadmeadow,01990005, 0.0, 7.8, 2.1, 6.9, 5.1, 0.0, 78.1, 51.6, 48.4,21.900000000000006,4.0 +1,1,a-cure-i1,2018-19,Needham - High Rock School,01990410, 0.0, 6.7, 2.0, 6.2, 5.3, 0.0, 79.8, 50.2, 49.8,20.200000000000003,3.4 +1,1,a-cure-i1,2018-19,Needham - Hillside Elementary,01990035, 0.2, 11.8, 3.4, 5.6, 6.6, 0.0, 72.5, 48.6, 51.4,27.5,4.4 +1,1,a-cure-i1,2018-19,Needham - John Eliot,01990020, 0.0, 12.9, 6.7, 7.2, 5.2, 0.0, 67.9, 45.3, 54.7,32.099999999999994,0.0 +7.093596059113302,5,a-cure-i1,2018-19,Needham - Needham High,01990505, 0.1, 8.7, 2.6, 4.5, 4.3, 0.0, 79.7, 50.2, 49.8,20.299999999999997,9.0 +3.288537549407115,3.29,a-cure-i1,2018-19,Needham - Newman Elementary,01990050, 0.0, 8.3, 4.5, 5.8, 6.5, 0.1, 74.7, 50.3, 49.7,25.299999999999997,5.2 +3.6428571428571415,3.64,a-cure-i1,2018-19,Needham - Pollard Middle,01990405, 0.0, 8.1, 1.9, 7.5, 4.9, 0.0, 77.6, 52.3, 47.7,22.400000000000006,5.1 +10.34254143646409,5,a-cure-i1,2018-19,Needham - William Mitchell,01990040, 0.0, 7.7, 1.6, 4.2, 4.6, 0.0, 81.9, 49.0, 51.0,18.099999999999994,11.7 +5.525872442839952,5,a-cure-i1,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.5, 2.9, 53.4, 21.5, 4.8, 0.0, 16.9, 50.0, 50.0,83.1,28.7 +1,1,a-cure-i1,2018-19,New Bedford - Abraham Lincoln,02010095, 0.3, 0.9, 10.3, 32.7, 5.2, 0.1, 50.4, 47.4, 52.6,49.6,2.8 +1.8375870069605564,1.84,a-cure-i1,2018-19,New Bedford - Alfred J Gomes,02010063, 0.5, 0.4, 15.5, 67.6, 2.2, 0.0, 13.8, 48.3, 51.7,86.2,9.899999999999999 +1,1,a-cure-i1,2018-19,New Bedford - Betsey B Winslow,02010140, 0.4, 2.1, 8.9, 18.8, 7.8, 0.7, 61.3, 49.6, 50.4,38.7,3.0 +1,1,a-cure-i1,2018-19,New Bedford - Carlos Pacheco,02010105, 0.3, 0.9, 19.2, 53.2, 2.7, 0.0, 23.7, 44.7, 55.3,76.3,0.0 +3.846153846153846,3.85,a-cure-i1,2018-19,New Bedford - Casimir Pulaski,02010123, 0.1, 1.0, 7.3, 17.8, 5.0, 0.0, 68.8, 44.7, 55.3,31.200000000000003,7.5 +4.436578171091445,4.44,a-cure-i1,2018-19,New Bedford - Charles S Ashley,02010010, 0.0, 1.4, 5.5, 22.8, 4.2, 0.0, 66.1, 49.8, 50.2,33.900000000000006,9.4 +1,1,a-cure-i1,2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 1.0, 1.0, 9.6, 35.8, 7.2, 0.0, 45.4, 46.1, 53.9,54.6,0.0 +3.318822023047376,3.32,a-cure-i1,2018-19,New Bedford - Ellen R Hathaway,02010075, 0.3, 2.2, 14.3, 56.2, 4.8, 0.3, 21.9, 50.2, 49.8,78.1,16.200000000000003 +1.7815845824411134,1.78,a-cure-i1,2018-19,New Bedford - Elwyn G Campbell,02010020, 0.4, 1.9, 7.8, 30.7, 5.9, 0.0, 53.3, 43.7, 56.3,46.7,5.2 +3.378238341968912,3.38,a-cure-i1,2018-19,New Bedford - Hayden/McFadden,02010078, 0.7, 0.3, 12.1, 60.6, 3.4, 0.0, 22.8, 48.9, 51.1,77.2,16.3 +1,1,a-cure-i1,2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 11.4, 61.0, 3.1, 0.0, 24.5, 50.1, 49.9,75.5,4.1 +1,1,a-cure-i1,2018-19,New Bedford - James B Congdon,02010040, 0.3, 0.6, 15.2, 36.2, 8.4, 0.3, 39.0, 52.6, 47.4,61.0,0.0 +1,1,a-cure-i1,2018-19,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 6.1, 16.8, 7.6, 0.0, 69.5, 51.8, 48.2,30.5,0.0 +1.539967373572594,1.54,a-cure-i1,2018-19,New Bedford - John Avery Parker,02010115, 0.4, 0.4, 16.5, 35.1, 8.5, 0.4, 38.7, 50.4, 49.6,61.3,5.9 +1,1,a-cure-i1,2018-19,New Bedford - John B Devalles,02010050, 0.0, 0.8, 14.1, 44.2, 2.5, 0.0, 38.3, 53.8, 46.2,61.7,0.0 +1.9900497512437811,1.99,a-cure-i1,2018-19,New Bedford - Keith Middle School,02010405, 0.3, 1.4, 15.3, 37.5, 5.7, 0.2, 39.7, 48.3, 51.7,60.3,7.5 +3.0364963503649633,3.04,a-cure-i1,2018-19,New Bedford - New Bedford High,02010505, 0.6, 1.3, 17.3, 44.4, 4.6, 0.3, 31.5, 47.3, 52.7,68.5,13.0 +2.502970297029703,2.5,a-cure-i1,2018-19,New Bedford - Normandin Middle School,02010410, 0.5, 1.2, 7.9, 35.4, 5.5, 0.0, 49.5, 47.5, 52.5,50.5,7.8999999999999995 +2.644628099173554,2.64,a-cure-i1,2018-19,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 18.9, 61.7, 4.1, 0.0, 15.3, 56.1, 43.9,84.7,14.0 +3.664516129032258,3.66,a-cure-i1,2018-19,New Bedford - Roosevelt Middle School,02010415, 0.2, 0.0, 15.6, 40.7, 5.5, 0.1, 38.0, 49.2, 50.8,62.0,14.2 +2.3446054750402574,2.34,a-cure-i1,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.8, 17.8, 34.3, 9.2, 0.0, 37.9, 43.1, 56.9,62.1,9.1 +1,1,a-cure-i1,2018-19,New Bedford - Thomas R Rodman,02010125, 0.0, 1.0, 7.5, 38.0, 3.5, 0.0, 50.0, 43.5, 56.5,50.0,0.0 +4.653992395437262,4.65,a-cure-i1,2018-19,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 8.4, 35.8, 8.4, 0.0, 47.4, 42.1, 57.9,52.6,15.3 +1.5937090432503276,1.59,a-cure-i1,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.9, 20.2, 46.5, 8.8, 0.0, 23.7, 22.8, 77.2,76.3,7.6 +1,1,a-cure-i1,2018-19,New Bedford - William H Taylor,02010135, 0.0, 0.0, 10.1, 20.6, 9.4, 0.0, 59.9, 49.1, 50.9,40.1,0.0 +3.1705822267620016,3.17,a-cure-i1,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.2, 0.9, 89.5, 7.0, 0.4, 0.0, 2.1, 50.4, 49.6,97.9,19.4 +1,1,a-cure-i1,2018-19,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 6.0, 8.1, 0.0, 85.9, 51.7, 48.3,14.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.9, 1.3, 1.6, 0.6, 0.0, 94.5, 50.3, 49.7,5.5,0.0 +1,1,a-cure-i1,2018-19,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.5, 1.0, 4.7, 1.9, 0.0, 90.9, 50.5, 49.5,9.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Newburyport - Newburyport High,02040505, 0.1, 2.2, 0.8, 3.3, 2.1, 0.0, 91.4, 52.4, 47.4,8.599999999999994,0.0 +12.387096774193552,5,a-cure-i1,2018-19,Newburyport - Rupert A Nock Middle,02040305, 0.0, 2.0, 1.1, 3.7, 2.6, 0.0, 90.7, 49.0, 51.0,9.299999999999997,7.199999999999999 +4.248275862068966,4.25,a-cure-i1,2018-19,Newton - A E Angier,02070005, 0.0, 14.7, 3.0, 5.0, 6.4, 0.0, 71.0, 52.1, 47.9,29.0,7.7 +3.4550128534704374,3.46,a-cure-i1,2018-19,Newton - Bigelow Middle,02070305, 0.2, 14.8, 5.0, 12.0, 7.0, 0.0, 61.1, 53.3, 46.7,38.9,8.4 +13.117782909930717,5,a-cure-i1,2018-19,Newton - Bowen,02070015, 0.0, 26.2, 6.3, 5.0, 5.8, 0.0, 56.7, 48.1, 51.9,43.3,35.5 +11.088036117381492,5,a-cure-i1,2018-19,Newton - C C Burr,02070020, 0.3, 19.3, 6.8, 9.9, 8.1, 0.0, 55.7, 47.4, 52.6,44.3,30.700000000000003 +4.59880239520958,4.6,a-cure-i1,2018-19,Newton - Cabot,02070025, 0.0, 15.3, 4.1, 3.9, 10.1, 0.0, 66.6, 51.0, 49.0,33.400000000000006,9.6 +1,1,a-cure-i1,2018-19,Newton - Charles E Brown Middle,02070310, 0.1, 20.2, 2.6, 6.3, 6.2, 0.0, 64.7, 50.5, 49.5,35.3,4.0 +1,1,a-cure-i1,2018-19,Newton - Countryside,02070040, 0.2, 24.9, 4.6, 7.3, 7.3, 0.0, 55.7, 50.1, 49.9,44.3,4.4 +2.823529411764706,2.82,a-cure-i1,2018-19,Newton - F A Day Middle,02070315, 0.2, 14.7, 4.2, 8.9, 6.0, 0.0, 66.0, 46.3, 53.7,34.0,6.0 +2.683544303797469,2.68,a-cure-i1,2018-19,Newton - Franklin,02070055, 0.2, 13.3, 2.8, 7.7, 6.8, 0.7, 68.4, 57.6, 42.4,31.599999999999994,5.3 +8.288659793814432,5,a-cure-i1,2018-19,Newton - Horace Mann,02070075, 0.0, 17.0, 4.3, 7.5, 10.0, 0.0, 61.2, 44.1, 55.9,38.8,20.099999999999998 +1,1,a-cure-i1,2018-19,Newton - John Ward,02070120, 0.0, 12.8, 2.4, 3.0, 6.8, 0.0, 75.0, 48.0, 52.0,25.0,3.2 +3.2653061224489797,3.27,a-cure-i1,2018-19,Newton - Lincoln-Eliot,02070070, 0.0, 17.5, 8.2, 11.8, 6.6, 0.0, 55.9, 49.3, 50.4,44.1,9.0 +4.421818181818182,4.42,a-cure-i1,2018-19,Newton - Mason-Rice,02070080, 0.0, 15.8, 0.6, 3.7, 7.4, 0.0, 72.5, 48.5, 51.5,27.5,7.6 +3.0384615384615383,3.04,a-cure-i1,2018-19,Newton - Memorial Spaulding,02070105, 0.0, 23.5, 3.9, 8.4, 5.8, 0.0, 58.4, 50.9, 49.1,41.6,7.9 +1,1,a-cure-i1,2018-19,Newton - Newton Early Childhood Center,02070108, 0.0, 25.9, 4.2, 5.7, 7.5, 0.0, 56.6, 40.6, 59.4,43.4,0.0 +6.739130434782609,5,a-cure-i1,2018-19,Newton - Newton North High,02070505, 0.4, 15.3, 6.0, 9.4, 5.7, 0.0, 63.2, 49.2, 50.6,36.8,15.5 +6.875,5,a-cure-i1,2018-19,Newton - Newton South High,02070510, 0.1, 21.5, 6.0, 6.0, 4.9, 0.0, 61.6, 47.8, 52.0,38.4,16.5 +5.381818181818182,5,a-cure-i1,2018-19,Newton - Oak Hill Middle,02070320, 0.2, 26.0, 4.3, 6.5, 6.8, 0.2, 56.0, 47.0, 53.0,44.0,14.799999999999999 +2.600985221674877,2.6,a-cure-i1,2018-19,Newton - Peirce,02070100, 0.0, 22.5, 4.4, 8.1, 5.5, 0.0, 59.4, 49.8, 50.2,40.6,6.6 +2.2273781902552203,2.23,a-cure-i1,2018-19,Newton - Underwood,02070115, 0.0, 20.7, 3.4, 12.1, 6.9, 0.0, 56.9, 55.2, 44.8,43.1,6.0 +3.5976331360946743,3.6,a-cure-i1,2018-19,Newton - Williams,02070125, 0.4, 32.7, 3.6, 8.6, 5.4, 0.0, 49.3, 45.3, 54.7,50.7,11.4 +3.3607305936073057,3.36,a-cure-i1,2018-19,Newton - Zervas,02070130, 0.2, 21.8, 5.6, 7.5, 8.7, 0.0, 56.2, 49.4, 50.4,43.8,9.2 +1,1,a-cure-i1,2018-19,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.5, 0.6, 4.6, 2.7, 0.0, 89.6, 46.1, 53.9,10.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Norfolk - H Olive Day,02080015, 0.0, 2.9, 1.1, 1.1, 2.5, 0.0, 92.3, 47.5, 52.5,7.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.4, 1.3, 1.3, 2.7, 3.8, 0.2, 90.5, 72.5, 27.5,9.5,0.0 +1,1,a-cure-i1,2018-19,North Adams - Brayton,02090035, 0.0, 0.0, 3.1, 7.8, 5.5, 0.0, 83.6, 46.9, 53.1,16.400000000000006,0.0 +1,1,a-cure-i1,2018-19,North Adams - Colegrove Park Elementary,02090008, 0.6, 0.3, 2.7, 6.1, 8.5, 0.0, 81.8, 50.8, 49.2,18.200000000000003,0.0 +1,1,a-cure-i1,2018-19,North Adams - Drury High,02090505, 0.2, 0.6, 2.9, 5.2, 7.3, 0.0, 84.0, 52.5, 47.5,16.0,2.5 +1,1,a-cure-i1,2018-19,North Adams - Greylock,02090015, 0.0, 0.8, 1.2, 7.8, 9.4, 0.8, 80.1, 50.0, 50.0,19.900000000000006,0.0 +1,1,a-cure-i1,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 10.6, 2.5, 13.2, 4.2, 0.0, 69.4, 49.3, 50.7,30.599999999999994,0.0 +1,1,a-cure-i1,2018-19,North Andover - Annie L Sargent School,02110018, 0.2, 9.3, 1.5, 6.4, 4.0, 0.0, 78.6, 49.7, 50.3,21.400000000000006,0.0 +1,1,a-cure-i1,2018-19,North Andover - Atkinson,02110001, 0.6, 8.6, 6.1, 22.6, 3.6, 0.0, 58.5, 51.3, 48.7,41.5,0.0 +1,1,a-cure-i1,2018-19,North Andover - Franklin,02110010, 0.5, 13.3, 2.1, 7.8, 3.9, 0.0, 72.4, 42.2, 57.8,27.599999999999994,0.0 +1,1,a-cure-i1,2018-19,North Andover - Kittredge,02110015, 0.0, 4.7, 3.4, 8.5, 6.0, 0.4, 77.0, 43.4, 56.6,23.0,0.0 +1,1,a-cure-i1,2018-19,North Andover - North Andover High,02110505, 0.1, 7.0, 3.6, 9.5, 1.4, 0.3, 78.1, 51.3, 48.6,21.900000000000006,2.6 +1,1,a-cure-i1,2018-19,North Andover - North Andover Middle,02110305, 0.5, 7.0, 3.4, 10.6, 2.7, 0.1, 75.8, 49.0, 51.0,24.200000000000003,0.0 +1,1,a-cure-i1,2018-19,North Andover - Thomson,02110020, 0.0, 5.6, 2.4, 16.7, 4.5, 0.0, 70.8, 51.0, 49.0,29.200000000000003,0.0 +1,1,a-cure-i1,2018-19,North Attleborough - Amvet Boulevard,02120007, 0.8, 12.2, 5.0, 4.2, 4.2, 0.0, 73.5, 49.7, 50.3,26.5,1.4 +1,1,a-cure-i1,2018-19,North Attleborough - Community,02120030, 0.0, 4.4, 12.4, 8.9, 6.7, 0.3, 67.3, 44.8, 55.2,32.7,0.0 +1,1,a-cure-i1,2018-19,North Attleborough - Falls,02120010, 0.0, 6.1, 3.2, 4.5, 6.5, 0.0, 79.8, 42.9, 57.1,20.200000000000003,0.0 +1,1,a-cure-i1,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 4.6, 3.4, 3.4, 3.6, 0.0, 85.0, 49.3, 50.7,15.0,0.0 +1,1,a-cure-i1,2018-19,North Attleborough - North Attleboro High,02120505, 0.3, 6.9, 3.3, 4.9, 3.0, 0.1, 81.6, 47.7, 52.0,18.400000000000006,4.0 +1,1,a-cure-i1,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 14.2, 3.7, 6.0, 4.5, 0.0, 71.6, 34.3, 65.7,28.400000000000006,0.0 +1,1,a-cure-i1,2018-19,North Attleborough - North Attleborough Middle,02120305, 0.2, 5.4, 2.7, 4.7, 3.6, 0.3, 83.0, 52.7, 47.3,17.0,4.5 +1,1,a-cure-i1,2018-19,North Attleborough - Roosevelt Avenue,02120015, 0.4, 8.9, 1.2, 2.7, 2.3, 0.0, 84.5, 55.4, 44.6,15.5,4.0 +1,1,a-cure-i1,2018-19,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.9, 4.4, 2.5, 0.0, 92.1, 47.2, 52.8,7.900000000000006,0.0 +1,1,a-cure-i1,2018-19,North Brookfield - North Brookfield High,02150505, 0.0, 0.4, 0.4, 5.9, 5.1, 0.0, 88.2, 48.8, 51.2,11.799999999999997,0.0 +1,1,a-cure-i1,2018-19,North Middlesex - Ashby Elementary,07350010, 0.0, 0.6, 0.6, 4.6, 0.6, 0.0, 93.6, 39.9, 60.1,6.400000000000006,0.0 +1,1,a-cure-i1,2018-19,North Middlesex - Hawthorne Brook,07350030, 0.0, 2.7, 1.0, 2.4, 3.1, 0.0, 90.8, 48.2, 51.8,9.200000000000003,0.0 +1,1,a-cure-i1,2018-19,North Middlesex - Nissitissit Middle School,07350310, 0.0, 2.1, 1.5, 3.8, 2.9, 0.0, 89.7, 46.8, 53.2,10.299999999999997,2.6 +1,1,a-cure-i1,2018-19,North Middlesex - North Middlesex Regional,07350505, 0.2, 1.1, 1.2, 4.5, 3.6, 0.1, 89.3, 54.0, 46.0,10.700000000000003,1.8 +1,1,a-cure-i1,2018-19,North Middlesex - Spaulding Memorial,07350005, 0.0, 1.4, 2.1, 6.3, 5.2, 0.0, 85.0, 51.9, 48.1,15.0,0.0 +1,1,a-cure-i1,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 1.1, 0.0, 4.5, 3.4, 0.0, 1.1, 89.9, 39.3, 60.7,10.099999999999994,0.0 +1,1,a-cure-i1,2018-19,North Middlesex - Varnum Brook,07350035, 0.2, 1.3, 2.2, 4.9, 3.5, 0.0, 87.9, 48.1, 51.9,12.099999999999994,0.0 +1,1,a-cure-i1,2018-19,North Reading - E Ethel Little School,02170003, 0.0, 4.6, 1.2, 3.7, 4.3, 0.0, 86.1, 46.7, 53.3,13.900000000000006,0.0 +1,1,a-cure-i1,2018-19,North Reading - J Turner Hood,02170010, 0.0, 6.3, 0.9, 2.9, 1.7, 0.3, 88.0, 47.7, 52.3,12.0,0.0 +1,1,a-cure-i1,2018-19,North Reading - L D Batchelder,02170005, 0.0, 3.7, 0.2, 5.5, 4.4, 0.0, 86.1, 48.0, 52.0,13.900000000000006,0.0 +1,1,a-cure-i1,2018-19,North Reading - North Reading High,02170505, 0.0, 3.2, 0.5, 1.9, 2.0, 0.1, 92.3, 50.5, 49.5,7.700000000000003,4.2 +1,1,a-cure-i1,2018-19,North Reading - North Reading Middle,02170305, 0.4, 3.9, 0.4, 4.1, 2.6, 0.0, 88.7, 51.7, 48.3,11.299999999999997,0.0 +2.1714285714285717,2.17,a-cure-i1,2018-19,Northampton - Bridge Street,02100005, 0.4, 3.9, 1.2, 27.6, 8.9, 0.0, 58.0, 42.0, 58.0,42.0,5.7 +6.60387811634349,5,a-cure-i1,2018-19,Northampton - Jackson Street,02100020, 0.0, 6.8, 5.4, 14.8, 9.1, 0.0, 63.9, 50.3, 49.7,36.1,14.9 +1,1,a-cure-i1,2018-19,Northampton - John F Kennedy Middle School,02100410, 0.3, 3.6, 2.9, 19.5, 6.4, 0.0, 67.3, 49.5, 50.5,32.7,2.8 +1,1,a-cure-i1,2018-19,Northampton - Leeds,02100025, 0.0, 1.5, 1.2, 16.3, 7.5, 0.0, 73.5, 46.7, 53.3,26.5,0.0 +3.7760000000000002,3.78,a-cure-i1,2018-19,Northampton - Northampton High,02100505, 0.1, 4.0, 2.6, 13.3, 4.9, 0.0, 75.0, 49.9, 50.1,25.0,5.9 +1,1,a-cure-i1,2018-19,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 3.6, 3.6, 13.1, 5.9, 0.0, 73.9, 45.9, 53.6,26.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.4, 1.2, 14.5, 2.0, 0.0, 81.8, 45.3, 54.7,18.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 0.4, 11.1, 1.2, 5.1, 3.3, 0.2, 78.6, 51.4, 48.6,21.400000000000006,2.6 +1,1,a-cure-i1,2018-19,Northborough - Fannie E Proctor,02130015, 0.0, 9.7, 2.5, 16.4, 3.8, 0.4, 67.2, 44.1, 55.9,32.8,0.0 +1,1,a-cure-i1,2018-19,Northborough - Lincoln Street,02130003, 0.8, 12.0, 1.2, 0.4, 3.6, 1.2, 80.7, 53.0, 47.0,19.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Northborough - Marguerite E Peaslee,02130014, 0.0, 14.4, 0.7, 11.9, 5.1, 0.0, 67.9, 44.0, 56.0,32.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Northborough - Marion E Zeh,02130020, 0.0, 17.6, 1.2, 6.6, 3.3, 0.0, 71.3, 42.2, 57.8,28.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Northborough - Robert E. Melican Middle School,02130305, 0.2, 10.7, 2.6, 7.1, 4.7, 0.9, 73.9, 51.1, 48.9,26.099999999999994,1.3 +1,1,a-cure-i1,2018-19,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.6, 12.2, 6.9, 0.0, 80.4, 42.0, 58.0,19.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Northbridge - Northbridge High,02140505, 0.0, 1.1, 0.9, 5.7, 2.9, 0.2, 89.2, 47.9, 52.1,10.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Northbridge - Northbridge Middle,02140305, 0.0, 0.6, 1.4, 8.2, 4.3, 0.1, 85.4, 49.2, 50.6,14.599999999999994,2.3 +1,1,a-cure-i1,2018-19,Northbridge - W Edward Balmer,02140001, 0.2, 1.1, 0.6, 8.5, 5.7, 0.0, 83.9, 53.3, 46.7,16.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.1, 1.2, 2.9, 33.2, 2.1, 0.2, 60.4, 45.9, 54.1,39.6,3.6 +1,1,a-cure-i1,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.2, 0.6, 1.8, 2.6, 0.0, 94.8, 38.1, 61.9,5.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Norton - Henri A. Yelle,02180060, 0.8, 2.4, 2.6, 3.4, 4.5, 0.0, 86.4, 50.5, 49.5,13.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Norton - J C Solmonese,02180015, 0.0, 1.2, 0.8, 4.5, 6.4, 0.0, 87.1, 49.2, 50.8,12.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Norton - L G Nourse Elementary,02180010, 0.0, 1.5, 4.2, 6.4, 3.0, 0.4, 84.5, 49.4, 50.6,15.5,0.0 +1,1,a-cure-i1,2018-19,Norton - Norton High,02180505, 0.0, 2.0, 2.1, 2.5, 2.0, 0.3, 91.2, 47.8, 52.2,8.799999999999997,4.8 +1,1,a-cure-i1,2018-19,Norton - Norton Middle,02180305, 0.2, 1.9, 1.5, 4.1, 4.8, 0.0, 87.6, 52.6, 47.4,12.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Norwell - Grace Farrar Cole,02190005, 0.2, 2.1, 1.3, 1.3, 4.0, 0.0, 91.2, 43.5, 56.5,8.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Norwell - Norwell High,02190505, 0.0, 2.2, 0.7, 2.5, 1.6, 0.3, 92.7, 54.7, 45.3,7.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Norwell - Norwell Middle School,02190405, 0.2, 2.7, 0.0, 1.2, 2.2, 0.2, 93.5, 45.3, 54.7,6.5,0.0 +1,1,a-cure-i1,2018-19,Norwell - William G Vinal,02190020, 0.0, 1.7, 0.0, 1.2, 2.9, 0.2, 94.0, 46.9, 53.1,6.0,3.6 +3.076923076923077,3.08,a-cure-i1,2018-19,Norwood - Balch,02200005, 0.0, 4.3, 11.5, 32.9, 2.6, 0.7, 48.0, 50.3, 49.7,52.0,10.0 +1,1,a-cure-i1,2018-19,Norwood - Charles J Prescott,02200025, 0.0, 27.2, 5.3, 7.0, 3.3, 1.2, 56.0, 50.2, 49.8,44.0,0.0 +1,1,a-cure-i1,2018-19,Norwood - Cornelius M Callahan,02200010, 0.0, 6.8, 11.7, 7.8, 6.3, 0.0, 67.5, 48.5, 51.5,32.5,0.0 +1,1,a-cure-i1,2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 5.3, 12.3, 13.1, 2.3, 0.3, 66.8, 50.3, 49.7,33.2,1.8 +1,1,a-cure-i1,2018-19,Norwood - F A Cleveland,02200015, 0.0, 7.0, 8.6, 8.0, 3.7, 0.6, 72.2, 45.9, 54.1,27.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Norwood - George F. Willett,02200075, 0.3, 14.6, 9.5, 7.6, 1.1, 1.9, 65.0, 43.4, 56.6,35.0,0.0 +1,1,a-cure-i1,2018-19,Norwood - John P Oldham,02200020, 0.0, 8.0, 13.4, 8.0, 1.7, 0.0, 68.9, 49.2, 50.8,31.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Norwood - Norwood High,02200505, 0.0, 4.5, 12.4, 13.1, 2.5, 0.1, 67.4, 49.9, 50.1,32.599999999999994,4.5 +1,1,a-cure-i1,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.6, 1.4, 3.7, 24.6, 7.1, 0.0, 61.6, 51.0, 49.0,38.4,2.7 +1,1,a-cure-i1,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.2, 0.7, 2.0, 2.5, 2.4, 0.0, 92.2, 37.3, 62.7,7.799999999999997,2.3 +1,1,a-cure-i1,2018-19,Old Rochester - Old Rochester Regional High,07400505, 0.1, 1.9, 2.5, 1.5, 3.1, 0.0, 90.8, 50.7, 49.3,9.200000000000003,2.2 +1,1,a-cure-i1,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 1.4, 0.9, 3.2, 4.3, 0.0, 90.2, 45.3, 54.7,9.799999999999997,0.0 +8.0,5,a-cure-i1,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 1.5, 5.5, 11.5, 0.5, 0.0, 81.0, 48.0, 52.0,19.0,9.5 +1,1,a-cure-i1,2018-19,Orange - Dexter Park,02230010, 0.0, 0.9, 1.2, 8.3, 4.6, 0.0, 85.0, 48.2, 51.8,15.0,0.0 +1,1,a-cure-i1,2018-19,Orange - Fisher Hill,02230015, 0.4, 0.0, 2.3, 7.6, 3.4, 0.0, 86.3, 46.6, 53.4,13.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Orleans - Orleans Elementary,02240005, 0.5, 1.4, 1.8, 7.3, 2.8, 0.0, 86.2, 48.6, 51.4,13.799999999999997,2.7 +1,1,a-cure-i1,2018-19,Oxford - Alfred M Chaffee,02260010, 0.4, 0.4, 1.2, 12.9, 3.5, 0.0, 81.6, 47.7, 52.3,18.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Oxford - Clara Barton,02260005, 0.0, 1.0, 2.7, 11.4, 5.9, 0.0, 79.0, 46.8, 53.2,21.0,0.0 +1,1,a-cure-i1,2018-19,Oxford - Oxford High,02260505, 0.0, 3.0, 3.2, 11.3, 3.6, 0.4, 78.6, 51.9, 47.9,21.400000000000006,3.0 +1,1,a-cure-i1,2018-19,Oxford - Oxford Middle,02260405, 0.0, 1.6, 1.2, 11.7, 5.6, 0.2, 79.7, 46.0, 54.0,20.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 26.3, 0.0, 0.0, 73.7, 5.3, 94.7,26.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Palmer - Old Mill Pond,02270008, 0.0, 2.4, 2.9, 12.5, 5.5, 0.0, 76.7, 48.9, 51.1,23.299999999999997,2.2 +1,1,a-cure-i1,2018-19,Palmer - Palmer High,02270505, 0.0, 2.2, 3.2, 9.3, 4.1, 0.0, 81.1, 50.8, 49.2,18.900000000000006,1.9 +1,1,a-cure-i1,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.5, 0.3, 1.1, 5.7, 3.1, 0.0, 89.4, 36.4, 63.1,10.599999999999994,0.0 +7.029288702928871,5,a-cure-i1,2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.4, 3.6, 91.6, 0.0, 0.0, 4.4, 57.5, 42.5,95.6,42.0 +1,1,a-cure-i1,2018-19,Peabody - Captain Samuel Brown,02290005, 0.0, 2.0, 3.1, 12.8, 1.1, 0.6, 80.4, 44.1, 55.9,19.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Peabody - Center,02290015, 0.0, 2.1, 7.3, 12.8, 1.6, 0.0, 76.3, 52.6, 47.4,23.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Peabody - J Henry Higgins Middle,02290305, 0.0, 1.6, 4.0, 15.1, 1.8, 0.0, 77.5, 48.9, 51.1,22.5,0.0 +1,1,a-cure-i1,2018-19,Peabody - John E Burke,02290007, 0.0, 1.5, 0.4, 6.8, 2.3, 0.0, 89.0, 50.4, 49.6,11.0,0.0 +1,1,a-cure-i1,2018-19,Peabody - John E. McCarthy,02290016, 0.0, 1.7, 2.2, 9.1, 3.0, 0.0, 84.0, 43.4, 56.6,16.0,0.0 +1,1,a-cure-i1,2018-19,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 2.3, 3.6, 17.1, 1.9, 0.0, 75.1, 47.0, 52.8,24.900000000000006,1.6 +1,1,a-cure-i1,2018-19,Peabody - South Memorial,02290035, 0.0, 3.0, 2.3, 7.4, 2.1, 0.0, 85.1, 58.8, 41.2,14.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Peabody - Thomas Carroll,02290010, 0.0, 1.0, 4.2, 19.0, 1.1, 0.0, 74.7, 52.4, 47.6,25.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Peabody - West Memorial,02290045, 0.0, 0.8, 1.5, 5.7, 1.1, 0.0, 90.8, 46.0, 54.0,9.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Peabody - William A Welch Sr,02290027, 0.0, 1.3, 3.4, 24.9, 2.1, 0.0, 68.3, 50.3, 49.7,31.700000000000003,4.7 +7.5826086956521745,5,a-cure-i1,2018-19,Pelham - Pelham Elementary,02300005, 0.0, 2.2, 4.4, 11.1, 5.2, 0.0, 77.0, 48.1, 51.9,23.0,10.9 +1,1,a-cure-i1,2018-19,Pembroke - Bryantville Elementary,02310003, 0.2, 0.6, 0.2, 0.0, 4.0, 0.0, 95.0, 47.4, 52.6,5.0,0.0 +1,1,a-cure-i1,2018-19,Pembroke - Hobomock Elementary,02310010, 0.0, 0.7, 0.7, 0.2, 0.9, 0.0, 97.4, 45.6, 54.4,2.5999999999999943,0.0 +1,1,a-cure-i1,2018-19,Pembroke - North Pembroke Elementary,02310015, 0.2, 1.1, 0.4, 0.5, 2.7, 0.0, 95.2, 46.3, 53.7,4.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Pembroke - Pembroke Community Middle School,02310305, 0.0, 1.1, 0.9, 0.2, 0.2, 0.2, 97.4, 45.0, 55.0,2.5999999999999943,0.0 +1,1,a-cure-i1,2018-19,Pembroke - Pembroke High School,02310505, 0.0, 1.5, 0.8, 0.6, 0.7, 0.1, 96.2, 52.8, 47.1,3.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.4, 0.0, 9.6, 4.3, 0.0, 85.7, 41.3, 58.7,14.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Pentucket - Dr John C Page School,07450015, 0.0, 2.3, 0.6, 3.8, 2.1, 0.0, 91.2, 49.0, 51.0,8.799999999999997,1.4 +1,1,a-cure-i1,2018-19,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.2, 0.6, 4.5, 3.0, 0.0, 91.7, 45.2, 54.8,8.299999999999997,1.1 +1,1,a-cure-i1,2018-19,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.4, 0.4, 6.8, 3.0, 0.0, 89.4, 47.7, 52.3,10.599999999999994,2.1 +1,1,a-cure-i1,2018-19,Pentucket - Pentucket Regional Middle,07450405, 0.0, 1.3, 0.3, 3.3, 0.8, 0.0, 94.5, 46.5, 53.5,5.5,0.0 +1,1,a-cure-i1,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 2.2, 0.7, 3.5, 1.2, 0.0, 92.4, 48.2, 51.8,7.599999999999994,2.5 +1,1,a-cure-i1,2018-19,Petersham - Petersham Center,02340005, 0.0, 0.9, 0.0, 6.1, 3.5, 0.0, 89.6, 51.3, 48.7,10.400000000000006,0.0 +3.961742826780021,3.96,a-cure-i1,2018-19,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.8, 0.0, 0.0, 93.3, 0.0, 0.0, 5.9, 34.5, 65.5,94.1,23.299999999999997 +11.676148796498905,5,a-cure-i1,2018-19,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 0.5, 17.7, 70.2, 3.0, 0.0, 8.6, 50.5, 49.5,91.4,66.7 +7.370212765957446,5,a-cure-i1,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 1.0, 0.0, 13.9, 79.1, 0.0, 0.0, 6.0, 48.3, 51.7,94.0,43.3 +2.1927710843373496,2.19,a-cure-i1,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 2.0, 7.7, 26.2, 29.3, 1.1, 0.0, 33.6, 51.3, 48.7,66.4,9.100000000000001 +6.41782729805014,5,a-cure-i1,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 13.5, 32.6, 24.0, 1.7, 0.0, 28.2, 50.8, 49.2,71.8,28.8 +1,1,a-cure-i1,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 1.3, 4.4, 0.0, 94.3, 54.7, 45.3,5.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 1.1, 3.8, 0.0, 95.1, 47.8, 52.2,4.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 9.4, 0.0, 0.0, 90.6, 53.1, 46.9,9.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 0.3, 1.0, 1.0, 1.6, 3.2, 0.0, 92.9, 50.8, 49.2,7.099999999999994,4.2 +1,1,a-cure-i1,2018-19,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 3.5, 5.3, 0.0, 91.2, 40.4, 59.6,8.799999999999997,0.0 +17.7,5,a-cure-i1,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 17.8, 8.3, 7.2, 14.7, 0.0, 52.0, 52.6, 47.3,48.0,53.1 +8.213649851632047,5,a-cure-i1,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.3, 1.8, 8.3, 15.8, 7.8, 0.0, 66.3, 69.3, 30.8,33.7,17.3 +1,1,a-cure-i1,2018-19,Pittsfield - Allendale,02360010, 0.3, 2.2, 10.5, 15.7, 12.5, 0.0, 58.8, 52.7, 47.3,41.2,4.3 +2.089795918367347,2.09,a-cure-i1,2018-19,Pittsfield - Crosby,02360065, 1.2, 0.7, 13.4, 21.8, 11.9, 0.0, 51.0, 38.6, 61.4,49.0,6.4 +1,1,a-cure-i1,2018-19,Pittsfield - Egremont,02360035, 0.0, 1.2, 6.7, 12.3, 8.8, 0.0, 71.1, 49.1, 50.9,28.900000000000006,3.5 +2.5722070844686646,2.57,a-cure-i1,2018-19,Pittsfield - John T Reid Middle,02360305, 0.4, 0.9, 14.2, 11.4, 9.6, 0.2, 63.3, 51.2, 48.6,36.7,5.9 +1,1,a-cure-i1,2018-19,Pittsfield - Morningside Community School,02360055, 0.6, 0.8, 11.3, 25.9, 13.0, 0.0, 48.5, 50.7, 49.3,51.5,0.0 +4.5,4.5,a-cure-i1,2018-19,Pittsfield - Pittsfield High,02360505, 0.1, 1.9, 9.8, 12.2, 4.7, 0.0, 71.2, 49.8, 50.2,28.799999999999997,8.1 +1,1,a-cure-i1,2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.5, 3.3, 6.2, 11.4, 0.0, 78.7, 51.7, 48.3,21.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Pittsfield - Silvio O Conte Community,02360105, 0.8, 1.1, 17.0, 28.9, 15.1, 0.0, 37.0, 48.9, 51.1,63.0,0.0 +1,1,a-cure-i1,2018-19,Pittsfield - Stearns,02360090, 0.4, 0.9, 2.1, 8.6, 8.2, 0.0, 79.8, 42.1, 57.9,20.200000000000003,0.0 +2.6976744186046506,2.7,a-cure-i1,2018-19,Pittsfield - Taconic High,02360510, 0.1, 0.9, 14.0, 11.7, 7.7, 0.0, 65.6, 49.8, 50.2,34.400000000000006,5.8 +1,1,a-cure-i1,2018-19,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.2, 11.9, 13.3, 6.7, 0.0, 66.8, 49.6, 50.4,33.2,1.3 +1,1,a-cure-i1,2018-19,Pittsfield - Williams,02360100, 0.0, 4.4, 7.7, 7.1, 5.7, 0.7, 74.4, 46.5, 53.5,25.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Plainville - Anna Ware Jackson,02380010, 0.0, 4.5, 4.2, 7.3, 2.8, 0.0, 81.1, 49.3, 50.7,18.900000000000006,2.4 +1,1,a-cure-i1,2018-19,Plainville - Beatrice H Wood Elementary,02380005, 0.7, 3.8, 3.5, 8.7, 2.4, 0.0, 80.8, 49.1, 50.9,19.200000000000003,2.5 +1,1,a-cure-i1,2018-19,Plymouth - Cold Spring,02390005, 0.0, 3.6, 1.4, 11.3, 5.0, 0.0, 78.7, 53.4, 46.6,21.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Plymouth - Federal Furnace School,02390011, 0.0, 0.8, 6.4, 7.2, 4.4, 0.0, 81.2, 49.4, 50.6,18.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Plymouth - Hedge,02390010, 0.0, 2.2, 1.7, 23.2, 8.3, 0.0, 64.6, 43.6, 56.4,35.400000000000006,0.0 +11.428571428571429,5,a-cure-i1,2018-19,Plymouth - Indian Brook,02390012, 0.0, 0.2, 1.2, 2.5, 3.2, 0.0, 93.0, 50.4, 49.6,7.0,5.0 +1,1,a-cure-i1,2018-19,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.8, 3.4, 3.4, 0.0, 92.5, 51.1, 48.9,7.5,0.0 +1,1,a-cure-i1,2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 0.2, 1.4, 0.9, 4.8, 5.7, 0.0, 86.9, 46.1, 53.9,13.099999999999994,0.0 +5.333333333333333,5,a-cure-i1,2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 0.4, 1.8, 2.4, 6.5, 3.8, 0.1, 85.0, 47.2, 52.6,15.0,5.0 +1,1,a-cure-i1,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.6, 1.3, 3.9, 7.1, 0.0, 87.1, 39.4, 60.6,12.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Plymouth - Plymouth North High,02390505, 0.2, 1.8, 2.4, 5.2, 4.5, 0.0, 86.0, 49.2, 50.8,14.0,2.0 +1,1,a-cure-i1,2018-19,Plymouth - Plymouth South High,02390515, 0.3, 1.1, 1.4, 2.4, 3.7, 0.1, 91.0, 47.4, 52.6,9.0,2.5 +1,1,a-cure-i1,2018-19,Plymouth - Plymouth South Middle,02390305, 0.6, 0.7, 0.6, 3.3, 3.3, 0.0, 91.6, 47.2, 52.8,8.400000000000006,2.6 +1,1,a-cure-i1,2018-19,Plymouth - South Elementary,02390046, 0.3, 0.3, 1.7, 4.7, 5.9, 0.2, 86.9, 45.4, 54.6,13.099999999999994,2.8 +1,1,a-cure-i1,2018-19,Plymouth - West Elementary,02390047, 0.0, 1.1, 2.6, 6.3, 5.4, 0.0, 84.7, 48.6, 51.4,15.299999999999997,4.3 +1,1,a-cure-i1,2018-19,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 2.0, 0.5, 0.0, 97.5, 46.7, 53.3,2.5,0.0 +4.94712643678161,4.95,a-cure-i1,2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.3, 8.3, 53.8, 21.0, 3.6, 0.1, 13.0, 49.2, 50.8,87.0,26.900000000000002 +2.1311475409836067,2.13,a-cure-i1,2018-19,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 27.2, 14.4, 7.2, 0.0, 51.2, 55.2, 44.8,48.8,6.5 +1,1,a-cure-i1,2018-19,Quabbin - Hardwick Elementary,07530005, 1.1, 0.0, 0.6, 10.3, 0.0, 0.0, 87.9, 39.1, 60.9,12.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Quabbin - Hubbardston Center,07530010, 0.0, 1.3, 1.0, 3.9, 1.0, 0.0, 92.9, 51.8, 48.2,7.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 9.8, 3.3, 0.0, 86.9, 47.5, 52.5,13.099999999999994,0.0 +29.164556962025298,5,a-cure-i1,2018-19,Quabbin - Oakham Center,07530025, 0.0, 0.0, 2.4, 4.7, 0.8, 0.0, 92.1, 63.8, 36.2,7.900000000000006,14.4 +1,1,a-cure-i1,2018-19,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.8, 0.6, 4.2, 3.2, 0.2, 91.1, 51.6, 48.4,8.900000000000006,4.3 +1,1,a-cure-i1,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 1.1, 0.3, 3.6, 1.9, 0.0, 93.0, 54.6, 45.4,7.0,0.8 +1,1,a-cure-i1,2018-19,Quabbin - Ruggles Lane,07530030, 0.0, 0.9, 0.9, 4.5, 1.7, 0.4, 91.6, 46.5, 53.5,8.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.3, 1.4, 7.1, 2.3, 0.0, 88.9, 49.4, 50.0,11.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.5, 6.3, 3.6, 0.0, 89.6, 46.8, 53.2,10.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.9, 7.1, 4.8, 0.0, 87.1, 49.9, 50.1,12.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.3, 0.3, 6.1, 4.1, 0.0, 89.2, 49.3, 50.7,10.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 1.7, 49.7, 8.5, 6.2, 4.5, 0.6, 28.8, 39.5, 60.5,71.2,0.0 +1,1,a-cure-i1,2018-19,Quincy - Atherton Hough,02430040, 0.0, 14.8, 4.1, 7.4, 2.6, 0.0, 71.2, 45.0, 55.0,28.799999999999997,0.0 +2.373205741626794,2.37,a-cure-i1,2018-19,Quincy - Atlantic Middle,02430305, 0.0, 50.6, 4.1, 4.3, 3.2, 0.6, 37.3, 48.9, 51.1,62.7,9.3 +1,1,a-cure-i1,2018-19,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 46.4, 1.5, 1.2, 1.5, 0.3, 48.9, 48.6, 51.4,51.1,4.4 +1,1,a-cure-i1,2018-19,Quincy - Broad Meadows Middle,02430310, 0.8, 14.8, 8.9, 8.6, 2.7, 0.3, 63.9, 48.0, 52.0,36.1,0.0 +1,1,a-cure-i1,2018-19,Quincy - Central Middle,02430315, 0.0, 40.0, 2.8, 3.1, 3.2, 0.5, 50.4, 52.0, 48.0,49.6,0.0 +1,1,a-cure-i1,2018-19,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 28.5, 3.7, 5.8, 6.3, 0.0, 55.6, 51.6, 48.4,44.4,4.5 +1,1,a-cure-i1,2018-19,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 44.8, 13.5, 10.6, 1.3, 1.1, 28.7, 53.9, 46.1,71.3,0.0 +4.147368421052631,4.15,a-cure-i1,2018-19,Quincy - Francis W Parker,02430075, 0.0, 63.7, 4.3, 5.5, 2.2, 0.3, 24.0, 40.3, 59.7,76.0,19.7 +1,1,a-cure-i1,2018-19,Quincy - Lincoln-Hancock Community School,02430035, 1.2, 36.2, 10.1, 9.3, 5.0, 0.6, 37.6, 45.7, 54.3,62.4,3.4 +1,1,a-cure-i1,2018-19,Quincy - Merrymount,02430060, 0.3, 26.4, 8.4, 4.3, 1.4, 0.8, 58.4, 47.3, 52.7,41.6,4.4 +1,1,a-cure-i1,2018-19,Quincy - Montclair,02430065, 0.0, 64.8, 2.6, 5.5, 2.6, 0.2, 24.3, 52.1, 47.9,75.7,2.9 +2.44822256568779,2.45,a-cure-i1,2018-19,Quincy - North Quincy High,02430510, 0.2, 56.8, 3.3, 2.6, 1.7, 0.1, 35.3, 46.1, 53.9,64.7,9.9 +1,1,a-cure-i1,2018-19,Quincy - Point Webster Middle,02430325, 0.0, 41.6, 11.6, 8.6, 4.0, 0.3, 34.0, 47.4, 52.6,66.0,3.6 +3.0630630630630633,3.06,a-cure-i1,2018-19,Quincy - Quincy High,02430505, 0.2, 22.3, 10.2, 8.0, 3.3, 0.4, 55.6, 48.7, 51.2,44.4,8.5 +1,1,a-cure-i1,2018-19,Quincy - Snug Harbor Community School,02430090, 0.2, 36.4, 11.4, 9.8, 6.4, 0.0, 35.7, 44.6, 55.4,64.3,0.0 +1,1,a-cure-i1,2018-19,Quincy - South West Middle School,02430320, 0.3, 25.1, 14.2, 12.3, 5.8, 0.6, 41.8, 41.8, 58.2,58.2,3.7 +1,1,a-cure-i1,2018-19,Quincy - Squantum,02430095, 0.3, 30.1, 4.0, 3.2, 2.3, 0.0, 60.1, 51.7, 48.3,39.9,2.4 +1,1,a-cure-i1,2018-19,Quincy - Wollaston School,02430110, 0.0, 62.0, 0.9, 1.2, 1.5, 0.3, 34.1, 50.1, 49.9,65.9,1.9 +1,1,a-cure-i1,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 5.7, 0.0, 5.7, 0.0, 0.0, 88.6, 57.1, 42.9,11.400000000000006,0.0 +6.559006211180126,5,a-cure-i1,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.6, 2.4, 8.2, 3.9, 0.0, 83.9, 47.8, 52.2,16.099999999999994,6.6 +1,1,a-cure-i1,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 2.7, 2.7, 20.5, 5.5, 0.0, 68.5, 63.0, 37.0,31.5,0.0 +1.0124069478908189,1.01,a-cure-i1,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0.7, 12.5, 46.4, 12.8, 8.2, 0.0, 19.4, 48.4, 51.6,80.6,5.1 +1.1298405466970387,1.13,a-cure-i1,2018-19,Randolph - J F Kennedy Elementary,02440018, 0.2, 13.8, 53.3, 13.6, 6.3, 0.5, 12.2, 44.2, 55.8,87.8,6.2 +4.439511653718092,4.44,a-cure-i1,2018-19,Randolph - Margaret L Donovan,02440015, 0.2, 23.0, 49.4, 12.6, 4.4, 0.4, 9.9, 47.9, 52.1,90.1,25.0 +1,1,a-cure-i1,2018-19,Randolph - Martin E Young Elementary,02440040, 1.1, 16.4, 44.3, 23.2, 4.3, 0.0, 10.7, 43.6, 56.4,89.3,2.8 +5.376294591484464,5,a-cure-i1,2018-19,Randolph - Randolph Community Middle,02440410, 0.3, 16.6, 47.5, 17.1, 5.4, 0.0, 13.1, 45.8, 54.2,86.9,29.199999999999996 +4.273615635179153,4.27,a-cure-i1,2018-19,Randolph - Randolph High,02440505, 0.3, 19.7, 54.3, 13.0, 4.2, 0.6, 7.9, 43.5, 56.5,92.1,24.599999999999998 +1,1,a-cure-i1,2018-19,Reading - Alice M Barrows,02460002, 0.0, 4.3, 1.6, 1.9, 2.9, 0.0, 89.3, 47.6, 52.4,10.700000000000003,2.9 +1,1,a-cure-i1,2018-19,Reading - Arthur W Coolidge Middle,02460305, 0.2, 3.4, 1.6, 2.7, 2.7, 0.2, 89.2, 46.0, 54.0,10.799999999999997,3.4 +1,1,a-cure-i1,2018-19,Reading - Birch Meadow,02460005, 0.0, 4.5, 1.3, 2.4, 2.1, 0.0, 89.7, 44.0, 56.0,10.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Reading - J Warren Killam,02460017, 0.0, 8.0, 3.2, 2.4, 2.2, 0.0, 84.2, 44.9, 55.1,15.799999999999997,0.0 +4.491228070175438,4.49,a-cure-i1,2018-19,Reading - Joshua Eaton,02460010, 0.3, 6.0, 4.1, 6.7, 5.7, 0.0, 77.2, 51.8, 48.2,22.799999999999997,6.3999999999999995 +1,1,a-cure-i1,2018-19,Reading - Reading Memorial High,02460505, 0.2, 5.3, 2.7, 1.9, 1.1, 0.0, 88.8, 50.4, 49.6,11.200000000000003,3.6 +1,1,a-cure-i1,2018-19,Reading - RISE PreSchool,02460001, 0.9, 7.8, 1.7, 2.6, 1.7, 0.0, 85.2, 38.3, 61.7,14.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Reading - Walter S Parker Middle,02460310, 0.2, 6.2, 3.1, 3.8, 2.0, 0.0, 84.6, 49.9, 50.1,15.400000000000006,2.8 +1,1,a-cure-i1,2018-19,Reading - Wood End Elementary School,02460020, 0.0, 3.3, 2.3, 2.3, 3.0, 0.0, 89.2, 49.2, 50.8,10.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Revere - A. C. Whelan Elementary School,02480003, 0.0, 4.2, 2.2, 46.2, 1.5, 0.1, 45.8, 46.7, 53.2,54.2,0.0 +1,1,a-cure-i1,2018-19,Revere - Abraham Lincoln,02480025, 0.0, 3.1, 4.0, 51.3, 1.2, 0.0, 40.4, 48.0, 52.0,59.6,0.0 +1,1,a-cure-i1,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 1.8, 3.1, 51.2, 1.5, 0.0, 42.3, 43.6, 56.4,57.7,0.0 +1,1,a-cure-i1,2018-19,Revere - Garfield Elementary School,02480056, 0.1, 5.5, 2.9, 63.1, 1.6, 0.0, 26.8, 48.1, 51.9,73.2,2.5 +2.3748125937031483,2.37,a-cure-i1,2018-19,Revere - Garfield Middle School,02480057, 0.2, 5.2, 3.2, 56.7, 1.4, 0.0, 33.3, 50.1, 49.9,66.7,9.9 +1,1,a-cure-i1,2018-19,Revere - Paul Revere,02480050, 0.2, 6.5, 3.8, 43.5, 2.9, 0.0, 43.1, 50.0, 50.0,56.9,0.0 +2.60844250363901,2.61,a-cure-i1,2018-19,Revere - Revere High,02480505, 0.8, 6.1, 3.8, 55.9, 2.1, 0.0, 31.3, 49.2, 50.8,68.7,11.200000000000001 +2.1829457364341085,2.18,a-cure-i1,2018-19,Revere - Rumney Marsh Academy,02480014, 0.5, 4.9, 3.9, 52.4, 2.6, 0.2, 35.5, 49.1, 50.9,64.5,8.8 +1,1,a-cure-i1,2018-19,Revere - Seacoast School,02480520, 0.0, 0.0, 6.7, 56.7, 4.4, 0.0, 32.2, 33.3, 66.7,67.8,0.0 +1,1,a-cure-i1,2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.3, 3.3, 3.3, 64.7, 2.1, 0.0, 26.3, 50.4, 49.6,73.7,0.0 +1,1,a-cure-i1,2018-19,Revere - Susan B. Anthony Middle School,02480305, 0.2, 3.2, 3.2, 61.9, 1.2, 0.0, 30.4, 52.6, 47.4,69.6,2.4 +11.317073170731708,5,a-cure-i1,2018-19,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.1, 7.3, 3.9, 0.0, 87.7, 51.4, 48.6,12.299999999999997,8.7 +14.591999999999999,5,a-cure-i1,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.5, 2.4, 1.1, 3.4, 5.2, 0.0, 87.5, 51.7, 48.3,12.5,11.399999999999999 +1,1,a-cure-i1,2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 3.1, 0.7, 3.8, 3.8, 0.0, 88.2, 54.9, 45.1,11.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 1.0, 2.3, 5.7, 0.0, 91.0, 48.5, 51.5,9.0,3.2 +1,1,a-cure-i1,2018-19,Rockland - Jefferson Elementary School,02510060, 0.0, 2.2, 4.1, 10.9, 5.6, 0.0, 77.2, 53.6, 46.4,22.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Rockland - John W Rogers Middle,02510305, 0.0, 1.3, 5.7, 14.6, 3.0, 0.0, 75.4, 49.7, 50.3,24.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Rockland - Memorial Park,02510020, 0.0, 0.7, 3.8, 17.3, 4.8, 0.0, 73.4, 51.9, 48.1,26.599999999999994,0.0 +5.554716981132075,5,a-cure-i1,2018-19,Rockland - R Stewart Esten,02510025, 0.0, 0.9, 8.1, 13.9, 3.6, 0.0, 73.5, 44.9, 55.1,26.5,9.2 +3.780590717299577,3.78,a-cure-i1,2018-19,Rockland - Rockland Senior High,02510505, 0.0, 0.6, 4.6, 14.3, 4.2, 0.0, 76.3, 52.0, 48.0,23.700000000000003,5.6 +1,1,a-cure-i1,2018-19,Rockport - Rockport Elementary,02520005, 0.0, 2.0, 0.5, 0.8, 0.0, 0.0, 96.7, 50.1, 49.9,3.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Rockport - Rockport High,02520510, 0.0, 1.8, 1.1, 2.5, 0.7, 0.0, 93.9, 47.1, 52.9,6.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Rockport - Rockport Middle,02520305, 0.0, 0.9, 1.9, 2.3, 0.0, 0.0, 94.9, 50.2, 49.8,5.099999999999994,0.0 +15.86776859504133,5,a-cure-i1,2018-19,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 4.5, 7.6, 0.0, 87.9, 48.5, 51.5,12.099999999999994,12.0 +6.681496461071789,5,a-cure-i1,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.3, 0.6, 57.4, 39.9, 0.5, 0.3, 1.1, 49.4, 50.6,98.9,41.3 +2.32,2.32,a-cure-i1,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 4.1, 29.4, 41.0, 5.5, 0.0, 20.0, 49.5, 50.5,80.0,11.6 +1.7548387096774192,1.75,a-cure-i1,2018-19,Salem - Bates,02580003, 0.0, 2.1, 8.7, 30.3, 5.4, 0.0, 53.5, 49.6, 50.4,46.5,5.1 +8.807692307692308,5,a-cure-i1,2018-19,Salem - Carlton,02580015, 0.0, 0.4, 4.3, 30.8, 6.1, 0.0, 58.4, 52.7, 47.3,41.6,22.900000000000002 +3.5555555555555554,3.56,a-cure-i1,2018-19,Salem - Collins Middle,02580305, 0.1, 3.1, 7.6, 40.1, 3.8, 0.0, 45.1, 47.4, 52.6,54.9,12.2 +2.0473933649289098,2.05,a-cure-i1,2018-19,Salem - Horace Mann Laboratory,02580030, 0.0, 4.3, 5.0, 48.3, 5.7, 0.0, 36.7, 51.7, 48.3,63.3,8.1 +12.536912751677853,5,a-cure-i1,2018-19,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 5.8, 48.1, 5.8, 0.0, 40.4, 55.8, 44.2,59.6,46.7 +1,1,a-cure-i1,2018-19,Salem - Salem Early Childhood,02580001, 0.0, 5.5, 6.6, 30.8, 3.3, 0.0, 53.8, 31.9, 68.1,46.2,0.0 +1,1,a-cure-i1,2018-19,Salem - Salem High,02580505, 0.1, 3.1, 6.8, 45.1, 4.6, 0.0, 40.4, 45.3, 54.7,59.6,4.9 +6.593406593406594,5,a-cure-i1,2018-19,Salem - Salem Prep High School,02580515, 0.0, 4.5, 0.0, 31.8, 0.0, 0.0, 63.6, 36.4, 63.6,36.4,15.0 +1,1,a-cure-i1,2018-19,Salem - Saltonstall School,02580050, 0.0, 2.9, 5.6, 38.8, 4.6, 0.0, 48.0, 50.7, 49.3,52.0,3.0 +2.4868913857677906,2.49,a-cure-i1,2018-19,Salem - Witchcraft Heights,02580070, 0.0, 4.5, 7.3, 36.1, 5.5, 0.0, 46.6, 48.9, 51.1,53.4,8.3 +3.552447552447552,3.55,a-cure-i1,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 6.1, 9.6, 39.7, 1.8, 0.0, 42.8, 53.4, 46.6,57.2,12.7 +1,1,a-cure-i1,2018-19,Sandwich - Forestdale School,02610002, 0.3, 3.1, 1.5, 5.4, 1.1, 0.0, 88.5, 48.9, 51.1,11.5,0.0 +1,1,a-cure-i1,2018-19,Sandwich - Oak Ridge,02610025, 0.4, 2.3, 1.8, 2.0, 1.0, 0.2, 92.3, 49.2, 50.8,7.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Sandwich - Sandwich High,02610505, 0.9, 2.0, 0.8, 0.8, 0.3, 0.2, 95.0, 49.2, 50.8,5.0,2.2 +1,1,a-cure-i1,2018-19,Sandwich - Sandwich STEM Academy,02610305, 0.7, 1.8, 0.4, 0.9, 0.7, 0.0, 95.5, 51.8, 48.0,4.5,2.2 +1,1,a-cure-i1,2018-19,Saugus - Belmonte Saugus Middle,02620305, 0.5, 4.6, 5.0, 21.5, 2.1, 0.3, 66.1, 48.7, 51.3,33.900000000000006,4.1 +1,1,a-cure-i1,2018-19,Saugus - Douglas Waybright,02620067, 0.4, 5.2, 5.2, 14.4, 3.9, 0.0, 70.7, 44.5, 55.5,29.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Saugus - Lynnhurst,02620040, 0.4, 12.1, 3.5, 18.1, 0.4, 0.4, 65.2, 47.5, 52.5,34.8,0.0 +1,1,a-cure-i1,2018-19,Saugus - Oaklandvale,02620050, 1.7, 4.6, 5.0, 21.2, 7.1, 0.0, 60.6, 52.7, 47.3,39.4,0.0 +4.347826086956522,4.35,a-cure-i1,2018-19,Saugus - Saugus High,02620505, 0.4, 4.3, 4.7, 17.5, 0.7, 0.0, 72.4, 48.6, 51.2,27.599999999999994,7.5 +2.844444444444444,2.84,a-cure-i1,2018-19,Saugus - Veterans Memorial,02620065, 0.6, 3.4, 5.3, 18.3, 3.8, 0.0, 68.5, 47.3, 52.7,31.5,5.6 +1,1,a-cure-i1,2018-19,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 4.8, 3.2, 0.0, 0.0, 92.1, 47.6, 52.4,7.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Scituate - Cushing Elementary,02640007, 0.3, 0.9, 1.8, 0.6, 1.8, 0.0, 94.5, 46.0, 54.0,5.5,0.0 +1,1,a-cure-i1,2018-19,Scituate - Gates Middle School,02640305, 0.0, 0.9, 2.6, 1.9, 1.0, 0.0, 93.5, 51.3, 48.7,6.5,2.3 +1,1,a-cure-i1,2018-19,Scituate - Hatherly Elementary,02640010, 0.0, 0.4, 1.9, 2.3, 1.9, 0.0, 93.5, 46.7, 53.3,6.5,0.0 +1,1,a-cure-i1,2018-19,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 2.6, 2.0, 3.1, 0.0, 92.3, 46.9, 53.1,7.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Scituate - Scituate High School,02640505, 0.0, 1.7, 3.2, 0.7, 1.3, 0.0, 93.1, 51.4, 48.5,6.900000000000006,3.7 +1,1,a-cure-i1,2018-19,Scituate - Wampatuck Elementary,02640020, 0.0, 1.0, 2.2, 2.4, 1.7, 0.0, 92.7, 48.7, 51.3,7.299999999999997,0.0 +6.686567164179102,5,a-cure-i1,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.2, 3.1, 1.4, 4.3, 4.1, 0.2, 86.6, 47.5, 52.5,13.400000000000006,5.6 +1,1,a-cure-i1,2018-19,Seekonk - George R Martin,02650007, 0.0, 4.0, 2.4, 5.8, 3.6, 0.0, 84.2, 53.5, 46.5,15.799999999999997,3.8 +1,1,a-cure-i1,2018-19,Seekonk - Mildred Aitken School,02650015, 0.0, 2.9, 1.8, 5.9, 3.7, 0.0, 85.7, 47.8, 52.2,14.299999999999997,4.3 +1,1,a-cure-i1,2018-19,Seekonk - Seekonk High,02650505, 0.0, 2.9, 2.2, 4.2, 2.6, 0.0, 88.2, 52.0, 48.0,11.799999999999997,0.0 +2.5263157894736845,2.53,a-cure-i1,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 45.7, 44.6, 2.8, 0.0, 6.9, 49.9, 50.1,93.1,14.700000000000001 +1,1,a-cure-i1,2018-19,Sharon - Cottage Street,02660005, 0.2, 29.3, 3.9, 4.2, 7.5, 0.2, 54.7, 48.7, 51.3,45.3,0.0 +1,1,a-cure-i1,2018-19,Sharon - East Elementary,02660010, 0.0, 29.8, 4.5, 6.9, 4.5, 0.0, 54.3, 51.4, 48.6,45.7,0.0 +1,1,a-cure-i1,2018-19,Sharon - Heights Elementary,02660015, 0.0, 35.2, 3.4, 4.8, 7.4, 0.2, 49.0, 47.9, 52.1,51.0,3.7 +1,1,a-cure-i1,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, 24.5, 6.1, 12.2, 10.2, 0.0, 46.9, 30.6, 69.4,53.1,0.0 +2.470588235294118,2.47,a-cure-i1,2018-19,Sharon - Sharon High,02660505, 0.2, 25.7, 6.3, 5.3, 3.2, 0.1, 59.2, 46.7, 53.3,40.8,6.300000000000001 +1,1,a-cure-i1,2018-19,Sharon - Sharon Middle,02660305, 0.1, 28.9, 4.2, 4.7, 4.5, 0.1, 57.5, 50.1, 49.9,42.5,3.0 +1,1,a-cure-i1,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.2, 1.2, 1.1, 4.9, 2.0, 0.0, 90.6, 41.8, 58.2,9.400000000000006,2.0 +1,1,a-cure-i1,2018-19,Sherborn - Pine Hill,02690010, 0.0, 7.5, 2.4, 3.6, 6.5, 0.0, 79.9, 49.6, 50.4,20.099999999999994,2.8 +1,1,a-cure-i1,2018-19,Shrewsbury - Beal School,02710005, 1.7, 41.8, 4.4, 8.2, 4.4, 0.0, 39.5, 42.9, 57.1,60.5,0.0 +1,1,a-cure-i1,2018-19,Shrewsbury - Calvin Coolidge,02710015, 0.2, 32.3, 2.9, 16.1, 5.4, 0.0, 43.0, 49.6, 50.4,57.0,0.0 +1,1,a-cure-i1,2018-19,Shrewsbury - Floral Street School,02710020, 1.0, 51.9, 3.3, 6.7, 3.5, 0.0, 33.6, 48.1, 51.9,66.4,2.8 +3.5555555555555554,3.56,a-cure-i1,2018-19,Shrewsbury - Oak Middle School,02710030, 0.2, 27.1, 3.8, 7.6, 2.8, 0.0, 58.6, 49.1, 50.9,41.4,9.2 +2.3854545454545453,2.39,a-cure-i1,2018-19,Shrewsbury - Parker Road Preschool,02710040, 0.4, 43.8, 3.7, 4.5, 2.5, 0.0, 45.0, 47.9, 52.1,55.0,8.2 +1,1,a-cure-i1,2018-19,Shrewsbury - Sherwood Middle School,02710305, 0.2, 32.7, 2.6, 9.4, 4.0, 0.0, 51.1, 48.4, 51.6,48.9,1.7999999999999998 +2.081632653061224,2.08,a-cure-i1,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 0.3, 25.4, 2.5, 8.0, 3.0, 0.1, 60.8, 52.9, 46.9,39.2,5.1 +1,1,a-cure-i1,2018-19,Shrewsbury - Spring Street,02710035, 0.3, 25.3, 2.2, 6.3, 6.0, 0.0, 59.9, 47.5, 52.5,40.1,0.0 +2.4327485380116958,2.43,a-cure-i1,2018-19,Shrewsbury - Walter J Paton,02710025, 0.5, 20.8, 2.4, 6.8, 3.7, 0.0, 65.8, 50.3, 49.7,34.2,5.2 +15.069767441860462,5,a-cure-i1,2018-19,Shutesbury - Shutesbury Elementary,02720005, 0.8, 0.8, 1.6, 8.6, 5.5, 0.0, 82.8, 53.9, 46.1,17.200000000000003,16.2 +1,1,a-cure-i1,2018-19,Silver Lake - Silver Lake Regional High,07600505, 0.1, 0.9, 1.6, 1.7, 0.6, 0.1, 95.1, 47.5, 52.5,4.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Silver Lake - Silver Lake Regional Middle School,07600405, 0.4, 1.6, 1.2, 2.1, 0.8, 0.2, 93.8, 47.7, 52.3,6.200000000000003,0.0 +4.882175226586104,4.88,a-cure-i1,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.3, 1.1, 6.0, 23.6, 2.2, 0.0, 66.9, 46.1, 53.4,33.099999999999994,10.1 +1,1,a-cure-i1,2018-19,Somerset - Chace Street,02730005, 0.0, 2.6, 1.2, 4.0, 1.9, 0.0, 90.4, 47.1, 52.9,9.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Somerset - North Elementary,02730008, 0.0, 0.4, 0.6, 2.6, 3.9, 0.0, 92.4, 48.1, 51.9,7.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Somerset - Somerset Middle School,02730305, 0.2, 0.5, 1.3, 5.0, 1.9, 0.0, 91.1, 48.3, 51.7,8.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Somerset - South,02730015, 1.1, 1.5, 1.5, 4.2, 1.9, 0.0, 89.8, 51.7, 48.3,10.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.1, 1.4, 1.1, 3.7, 1.1, 0.3, 92.5, 50.2, 49.8,7.5,1.3 +3.1127272727272723,3.11,a-cure-i1,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.3, 8.6, 5.4, 37.0, 3.7, 0.0, 45.0, 47.2, 52.8,55.0,10.7 +3.169188445667125,3.17,a-cure-i1,2018-19,Somerville - Arthur D Healey,02740075, 0.0, 7.6, 16.4, 44.0, 4.4, 0.2, 27.3, 50.2, 49.8,72.7,14.4 +1,1,a-cure-i1,2018-19,Somerville - Benjamin G Brown,02740015, 0.4, 10.9, 3.5, 8.7, 9.6, 0.4, 66.4, 57.6, 42.4,33.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Somerville - Capuano Early Childhood Center,02740005, 0.0, 8.1, 6.6, 37.0, 9.0, 0.0, 39.2, 43.7, 56.3,60.8,4.5 +6.525798525798526,5,a-cure-i1,2018-19,Somerville - E Somerville Community,02740111, 0.0, 3.9, 3.5, 71.9, 2.1, 0.0, 18.6, 48.5, 51.5,81.4,33.2 +1,1,a-cure-i1,2018-19,Somerville - Full Circle High School,02740510, 0.0, 2.1, 20.8, 50.0, 0.0, 0.0, 27.1, 35.4, 64.6,72.9,1.7 +5.095238095238096,5,a-cure-i1,2018-19,Somerville - John F Kennedy,02740083, 0.0, 4.1, 8.6, 15.0, 5.7, 0.2, 66.4, 46.0, 54.0,33.599999999999994,10.7 +1,1,a-cure-i1,2018-19,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 21.4, 57.1, 0.0, 0.0, 21.4, 21.4, 78.6,78.6,0.0 +4.201780415430267,4.2,a-cure-i1,2018-19,Somerville - Somerville High,02740505, 0.1, 7.2, 12.6, 45.6, 1.8, 0.1, 32.6, 45.6, 54.3,67.4,17.700000000000003 +3.6538461538461537,3.65,a-cure-i1,2018-19,Somerville - West Somerville Neighborhood,02740115, 0.0, 4.6, 13.0, 16.8, 7.3, 0.0, 58.4, 47.3, 52.4,41.6,9.5 +3.1471801925722147,3.15,a-cure-i1,2018-19,Somerville - Winter Hill Community,02740120, 0.0, 5.7, 15.3, 49.7, 2.1, 0.0, 27.3, 43.5, 56.3,72.7,14.3 +1,1,a-cure-i1,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 1.9, 2.3, 13.7, 2.3, 0.0, 79.9, 50.6, 49.4,20.099999999999994,0.0 +1,1,a-cure-i1,2018-19,South Hadley - Mosier,02780020, 0.2, 1.4, 1.4, 17.1, 2.1, 0.0, 77.9, 48.4, 51.6,22.099999999999994,4.1 +1,1,a-cure-i1,2018-19,South Hadley - Plains Elementary,02780015, 0.0, 2.8, 1.4, 17.3, 3.1, 0.0, 75.3, 51.7, 48.3,24.700000000000003,0.0 +1,1,a-cure-i1,2018-19,South Hadley - South Hadley High,02780505, 0.0, 2.9, 2.0, 9.0, 1.8, 0.2, 84.2, 50.8, 49.0,15.799999999999997,2.2 +1,1,a-cure-i1,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.9, 0.4, 5.2, 42.8, 3.6, 0.0, 46.1, 40.0, 60.0,53.9,4.4 +2.707692307692308,2.71,a-cure-i1,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.4, 5.1, 29.3, 3.8, 6.8, 0.1, 54.5, 49.8, 50.0,45.5,7.7 +1,1,a-cure-i1,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 1.4, 2.0, 5.6, 3.6, 0.0, 87.4, 32.7, 67.3,12.599999999999994,1.8 +1,1,a-cure-i1,2018-19,Southampton - William E Norris,02750005, 0.2, 1.4, 0.2, 5.8, 2.2, 0.0, 90.2, 49.1, 50.9,9.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 0.4, 17.8, 1.6, 3.5, 6.6, 0.4, 69.8, 47.7, 52.3,30.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Southborough - Margaret A Neary,02760020, 0.0, 18.6, 1.2, 6.6, 6.6, 0.0, 67.1, 50.8, 49.2,32.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Southborough - Mary E Finn School,02760008, 0.6, 21.5, 0.9, 3.7, 4.9, 0.0, 68.4, 49.1, 50.9,31.599999999999994,0.0 +3.165467625899281,3.17,a-cure-i1,2018-19,Southborough - P Brent Trottier,02760305, 0.0, 17.6, 0.2, 5.3, 4.6, 0.0, 72.2, 48.0, 52.0,27.799999999999997,5.5 +5.349845201238391,5,a-cure-i1,2018-19,Southbridge - Charlton Street,02770005, 0.3, 1.0, 3.1, 56.7, 3.4, 0.0, 35.4, 52.9, 47.1,64.6,21.6 +1.5225806451612904,1.52,a-cure-i1,2018-19,Southbridge - Eastford Road,02770010, 0.3, 0.8, 1.9, 57.3, 1.4, 0.3, 38.0, 51.1, 48.9,62.0,5.9 +1,1,a-cure-i1,2018-19,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 3.1, 37.5, 6.3, 0.0, 53.1, 25.0, 75.0,46.9,0.0 +2.948717948717949,2.95,a-cure-i1,2018-19,Southbridge - Southbridge High School,02770515, 0.4, 1.0, 1.0, 58.5, 1.2, 0.2, 37.6, 48.1, 51.9,62.4,11.5 +1.8520900321543408,1.85,a-cure-i1,2018-19,Southbridge - Southbridge Middle School,02770315, 0.2, 2.8, 2.8, 55.1, 1.2, 0.0, 37.8, 46.5, 53.5,62.2,7.2 +1.6074188562596599,1.61,a-cure-i1,2018-19,Southbridge - West Street,02770020, 0.0, 0.9, 1.2, 61.1, 1.5, 0.0, 35.3, 50.0, 50.0,64.7,6.5 +2.3867403314917133,2.39,a-cure-i1,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.1, 1.7, 34.5, 12.4, 5.6, 0.0, 45.7, 49.7, 50.2,54.3,8.100000000000001 +9.802816901408448,5,a-cure-i1,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 0.6, 0.0, 1.6, 6.5, 5.5, 0.0, 85.8, 54.4, 45.6,14.200000000000003,8.7 +27.412587412587417,5,a-cure-i1,2018-19,Southern Berkshire - New Marlborough Central,07650018, 2.6, 0.0, 0.0, 6.5, 5.2, 0.0, 85.7, 51.9, 48.1,14.299999999999997,24.5 +7.376623376623374,5,a-cure-i1,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 7.7, 0.0, 7.7, 0.0, 0.0, 84.6, 69.2, 30.8,15.400000000000006,7.1 +1,1,a-cure-i1,2018-19,Southern Berkshire - Undermountain,07650035, 0.3, 0.0, 0.3, 8.0, 4.5, 0.0, 86.9, 43.6, 56.4,13.099999999999994,2.4 +1,1,a-cure-i1,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.3, 0.6, 1.1, 9.5, 1.4, 0.0, 87.0, 41.7, 58.3,13.0,0.9 +1,1,a-cure-i1,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.2, 0.7, 2.0, 3.7, 2.4, 0.0, 91.0, 50.4, 49.6,9.0,0.0 +14.476190476190466,5,a-cure-i1,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.3, 0.8, 1.8, 3.8, 1.7, 0.0, 91.6, 49.7, 50.3,8.400000000000006,7.6 +1,1,a-cure-i1,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.6, 1.2, 1.5, 6.5, 2.3, 0.0, 88.0, 45.5, 54.5,12.0,0.0 +1,1,a-cure-i1,2018-19,Spencer-E Brookfield - David Prouty High,07670505, 0.7, 1.8, 1.8, 10.9, 2.6, 0.0, 82.1, 44.5, 55.5,17.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.4, 0.0, 2.5, 10.7, 3.3, 0.0, 83.1, 46.1, 53.9,16.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.2, 1.8, 1.8, 13.7, 3.2, 0.0, 79.2, 44.1, 55.9,20.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.2, 2.1, 15.8, 1.9, 0.0, 80.0, 47.2, 52.6,20.0,0.0 +4.666666666666667,4.67,a-cure-i1,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 24.2, 50.7, 4.3, 0.0, 20.8, 53.7, 46.3,79.2,23.1 +2.2211764705882353,2.22,a-cure-i1,2018-19,Springfield - Alice B Beal Elementary,02810175, 0.0, 11.9, 15.8, 54.5, 2.8, 0.0, 15.0, 51.0, 49.0,85.0,11.8 +1.153664302600473,1.15,a-cure-i1,2018-19,Springfield - Arthur T Talmadge,02810165, 0.0, 0.8, 25.8, 55.0, 2.9, 0.0, 15.4, 46.7, 53.3,84.6,6.1 +2.7986798679867984,2.8,a-cure-i1,2018-19,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 18.2, 66.7, 6.1, 0.0, 9.1, 39.4, 60.6,90.9,15.9 +1.842323651452282,1.84,a-cure-i1,2018-19,Springfield - Brightwood,02810025, 0.0, 0.0, 13.6, 82.2, 0.6, 0.0, 3.6, 49.3, 50.7,96.4,11.1 +2.734902763561924,2.73,a-cure-i1,2018-19,Springfield - Chestnut Academy,02810365, 0.3, 0.3, 9.9, 86.5, 0.7, 0.0, 2.3, 47.4, 52.6,97.7,16.7 +6.998851894374283,5,a-cure-i1,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.6, 3.7, 21.8, 58.6, 2.1, 0.3, 12.9, 55.2, 44.8,87.1,38.1 +7.3027522935779805,5,a-cure-i1,2018-19,Springfield - Conservatory of the Arts,02810475, 0.3, 0.0, 19.5, 66.0, 1.5, 0.0, 12.8, 70.1, 29.9,87.2,39.8 +1.4611872146118723,1.46,a-cure-i1,2018-19,Springfield - Daniel B Brunton,02810035, 0.0, 0.4, 22.7, 61.3, 2.9, 0.2, 12.4, 53.7, 46.3,87.6,8.0 +1.8604651162790697,1.86,a-cure-i1,2018-19,Springfield - Early Childhood Education Center,02810001, 1.3, 2.6, 16.8, 66.5, 3.2, 0.0, 9.7, 32.3, 67.7,90.3,10.5 +1.9164835164835166,1.92,a-cure-i1,2018-19,Springfield - Edward P. Boland School,02810010, 0.3, 1.6, 9.7, 77.6, 1.8, 0.0, 9.0, 41.0, 59.0,91.0,10.9 +5.012875536480687,5,a-cure-i1,2018-19,Springfield - Elias Brookings,02810030, 1.2, 0.3, 21.1, 67.3, 3.3, 0.0, 6.8, 46.1, 53.9,93.2,29.2 +1.91044776119403,1.91,a-cure-i1,2018-19,Springfield - Forest Park Middle,02810325, 0.1, 7.4, 17.7, 66.8, 1.8, 0.0, 6.2, 48.3, 51.7,93.8,11.200000000000001 +5.55826859045505,5,a-cure-i1,2018-19,Springfield - Frank H Freedman,02810075, 0.6, 1.5, 22.5, 62.0, 3.4, 0.0, 9.9, 47.2, 52.8,90.1,31.3 +1.8766626360338572,1.88,a-cure-i1,2018-19,Springfield - Frederick Harris,02810080, 0.3, 3.7, 17.8, 55.7, 5.3, 0.0, 17.3, 47.5, 52.5,82.7,9.7 +1,1,a-cure-i1,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 18.2, 54.5, 0.0, 0.0, 27.3, 86.4, 13.6,72.7,0.0 +1,1,a-cure-i1,2018-19,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 31.3, 53.1, 0.0, 0.0, 15.6, 62.5, 37.5,84.4,0.0 +2.403361344537815,2.4,a-cure-i1,2018-19,Springfield - German Gerena Community School,02810195, 0.1, 0.8, 13.5, 79.8, 1.0, 0.0, 4.8, 50.4, 49.6,95.2,14.3 +0.997772828507795,1,a-cure-i1,2018-19,Springfield - Glenwood,02810065, 0.0, 1.8, 10.9, 75.1, 2.1, 0.0, 10.2, 47.4, 52.6,89.8,5.6 +2.7241770715096485,2.72,a-cure-i1,2018-19,Springfield - Glickman Elementary,02810068, 0.9, 2.4, 24.0, 57.8, 3.0, 0.0, 11.9, 43.2, 56.8,88.1,15.0 +5.147826086956522,5,a-cure-i1,2018-19,Springfield - High School Of Commerce,02810510, 0.1, 1.9, 18.7, 69.9, 1.4, 0.1, 8.0, 49.6, 50.4,92.0,29.6 +1,1,a-cure-i1,2018-19,Springfield - Hiram L Dorman,02810050, 0.0, 1.1, 24.0, 63.6, 1.4, 0.0, 9.9, 51.6, 48.4,90.1,0.0 +1,1,a-cure-i1,2018-19,Springfield - Homer Street,02810085, 0.0, 1.5, 27.3, 62.3, 2.5, 0.0, 6.3, 48.9, 51.1,93.7,0.0 +6.988505747126436,5,a-cure-i1,2018-19,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 13.6, 81.9, 0.3, 0.0, 4.3, 50.8, 49.2,95.7,41.8 +1,1,a-cure-i1,2018-19,Springfield - Indian Orchard Elementary,02810100, 0.5, 1.8, 18.1, 64.9, 2.3, 0.0, 12.3, 47.4, 52.6,87.7,2.8 +7.521064301552106,5,a-cure-i1,2018-19,Springfield - John F Kennedy Middle,02810328, 0.2, 0.6, 20.6, 66.8, 2.0, 0.0, 9.8, 45.0, 55.0,90.2,42.4 +4.046620046620046,4.05,a-cure-i1,2018-19,Springfield - John J Duggan Middle,02810320, 0.4, 2.4, 27.1, 54.5, 1.3, 0.0, 14.2, 47.8, 52.2,85.8,21.7 +1.0689289501590669,1.07,a-cure-i1,2018-19,Springfield - Kensington International School,02810110, 0.3, 2.9, 16.6, 71.3, 3.2, 0.0, 5.7, 52.2, 47.8,94.3,6.3 +1,1,a-cure-i1,2018-19,Springfield - Liberty,02810115, 0.0, 2.1, 11.0, 75.5, 1.8, 0.0, 9.6, 51.4, 48.6,90.4,0.0 +9.122302158273381,5,a-cure-i1,2018-19,Springfield - Liberty Preparatory Academy,02810560, 11.1, 0.0, 0.0, 44.4, 0.0, 0.0, 44.4, 22.2, 77.8,55.6,31.7 +4.062176165803109,4.06,a-cure-i1,2018-19,Springfield - Lincoln,02810120, 0.0, 0.3, 9.0, 85.0, 2.3, 0.0, 3.5, 49.4, 50.6,96.5,24.5 +5.719376391982183,5,a-cure-i1,2018-19,Springfield - M Marcus Kiley Middle,02810330, 0.0, 2.3, 21.8, 65.2, 0.4, 0.0, 10.2, 44.4, 55.6,89.8,32.1 +2.3121387283236996,2.31,a-cure-i1,2018-19,Springfield - Margaret C Ells,02810060, 1.3, 1.7, 22.3, 59.4, 1.7, 0.0, 13.5, 41.0, 59.0,86.5,12.5 +1.0012515644555693,1.0,a-cure-i1,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 5.9, 15.4, 55.0, 3.6, 0.0, 20.1, 51.5, 48.5,79.9,5.0 +2.2550335570469797,2.26,a-cure-i1,2018-19,Springfield - Mary M Lynch,02810140, 0.0, 1.1, 18.9, 67.9, 1.5, 0.0, 10.6, 55.5, 44.5,89.4,12.6 +2.7536557930258714,2.75,a-cure-i1,2018-19,Springfield - Mary M Walsh,02810155, 0.3, 0.0, 18.2, 67.9, 2.4, 0.0, 11.1, 49.7, 50.3,88.9,15.299999999999999 +2.8340807174887894,2.83,a-cure-i1,2018-19,Springfield - Mary O Pottenger,02810145, 0.2, 3.0, 10.5, 73.7, 1.8, 0.0, 10.8, 50.6, 49.4,89.2,15.8 +0.9189743589743589,1,a-cure-i1,2018-19,Springfield - Milton Bradley School,02810023, 0.0, 0.4, 16.5, 79.3, 1.4, 0.0, 2.5, 50.1, 49.9,97.5,5.6 +5.503184713375796,5,a-cure-i1,2018-19,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 24.9, 66.7, 2.6, 0.0, 5.8, 48.2, 51.8,94.2,32.4 +5.309967141292443,5,a-cure-i1,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.3, 14.0, 74.8, 2.2, 0.0, 8.7, 45.8, 54.2,91.3,30.3 +3.1539313399778512,3.15,a-cure-i1,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 1.3, 18.0, 70.3, 0.6, 0.0, 9.7, 54.3, 45.7,90.3,17.799999999999997 +2.966292134831461,2.97,a-cure-i1,2018-19,Springfield - Samuel Bowles,02810020, 0.0, 0.6, 16.5, 71.3, 0.6, 0.0, 11.0, 49.8, 50.2,89.0,16.5 +3.161094224924012,3.16,a-cure-i1,2018-19,Springfield - South End Middle School,02810355, 0.0, 0.0, 9.6, 88.2, 0.9, 0.0, 1.3, 52.8, 47.2,98.7,19.5 +3.1779563719862223,3.18,a-cure-i1,2018-19,Springfield - Springfield Central High,02810500, 0.0, 5.4, 23.9, 56.7, 1.0, 0.1, 12.9, 46.2, 53.8,87.1,17.299999999999997 +4.107351225204201,4.11,a-cure-i1,2018-19,Springfield - Springfield High School,02810570, 0.0, 0.0, 26.4, 58.9, 0.4, 0.0, 14.3, 44.2, 55.8,85.7,22.0 +4.485651214128035,4.49,a-cure-i1,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 0.1, 1.8, 17.7, 70.0, 0.9, 0.1, 9.4, 41.5, 58.5,90.6,25.4 +1,1,a-cure-i1,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 4.0, 40.0, 32.0, 0.0, 0.0, 24.0, 56.0, 44.0,76.0,0.0 +4.901072705601907,4.9,a-cure-i1,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 9.7, 0.0, 74.2, 0.0, 0.0, 16.1, 22.6, 77.4,83.9,25.7 +6.580790960451977,5,a-cure-i1,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 21.3, 67.2, 0.0, 0.0, 11.5, 9.8, 90.2,88.5,36.4 +8.026696329254726,5,a-cure-i1,2018-19,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 18.2, 70.7, 1.0, 0.0, 10.1, 25.3, 74.7,89.9,45.099999999999994 +1,1,a-cure-i1,2018-19,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 24.5, 69.4, 2.0, 0.0, 4.1, 16.3, 83.7,95.9,0.0 +1,1,a-cure-i1,2018-19,Springfield - Springfield Vocational Academy,02810675, 0.0, 4.1, 18.6, 67.0, 1.0, 0.0, 9.3, 42.3, 57.7,90.7,0.0 +4.202764976958525,4.2,a-cure-i1,2018-19,Springfield - STEM Middle Academy,02810350, 0.0, 2.4, 16.2, 67.2, 1.0, 0.0, 13.2, 40.9, 59.1,86.8,22.799999999999997 +2.751369112814896,2.75,a-cure-i1,2018-19,Springfield - Sumner Avenue,02810160, 0.0, 5.1, 18.9, 64.7, 2.6, 0.0, 8.7, 45.5, 54.5,91.3,15.7 +3.279012345679013,3.28,a-cure-i1,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 1.6, 24.9, 53.1, 1.3, 0.1, 19.0, 47.5, 52.5,81.0,16.6 +1,1,a-cure-i1,2018-19,Springfield - Thomas M Balliet,02810015, 0.0, 1.5, 23.8, 60.2, 3.7, 0.0, 10.8, 46.3, 53.7,89.2,0.0 +4.161044613710555,4.16,a-cure-i1,2018-19,Springfield - Van Sickle Academy,02810485, 0.0, 1.5, 11.2, 78.5, 0.8, 0.0, 8.1, 43.8, 56.2,91.9,23.9 +1.8007033997655335,1.8,a-cure-i1,2018-19,Springfield - Warner,02810180, 0.4, 2.3, 18.8, 59.4, 4.5, 0.0, 14.7, 46.6, 53.4,85.3,9.6 +1.2972972972972974,1.3,a-cure-i1,2018-19,Springfield - Washington,02810185, 0.0, 7.4, 12.6, 66.2, 2.6, 0.0, 11.2, 46.4, 53.6,88.8,7.2 +1.6427807486631016,1.64,a-cure-i1,2018-19,Springfield - White Street,02810190, 0.2, 3.1, 20.0, 67.9, 2.2, 0.0, 6.5, 49.2, 50.8,93.5,9.6 +2.8305084745762707,2.83,a-cure-i1,2018-19,Springfield - William N. DeBerry,02810045, 0.4, 0.4, 20.1, 72.6, 0.9, 0.0, 5.6, 42.7, 57.3,94.4,16.7 +3.9598662207357855,3.96,a-cure-i1,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 2.2, 21.4, 63.8, 2.2, 0.0, 10.3, 48.7, 51.3,89.7,22.2 +1,1,a-cure-i1,2018-19,Stoneham - Colonial Park,02840005, 0.0, 6.5, 1.5, 9.5, 3.6, 0.0, 78.9, 43.6, 56.4,21.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Stoneham - Robin Hood,02840025, 0.0, 6.6, 2.8, 8.6, 5.6, 0.0, 76.4, 49.5, 50.5,23.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Stoneham - South,02840030, 0.6, 4.5, 3.0, 8.4, 4.2, 0.0, 79.2, 50.9, 49.1,20.799999999999997,0.0 +5.619512195121952,5,a-cure-i1,2018-19,Stoneham - Stoneham Central Middle School,02840405, 0.4, 5.1, 2.3, 9.4, 3.3, 0.0, 79.5, 49.9, 50.1,20.5,7.2 +1,1,a-cure-i1,2018-19,Stoneham - Stoneham High,02840505, 0.0, 4.2, 2.7, 7.0, 2.7, 0.0, 83.4, 51.1, 48.9,16.599999999999994,3.8 +1,1,a-cure-i1,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 4.4, 23.1, 14.3, 5.5, 1.1, 51.6, 52.7, 47.3,48.4,0.0 +1,1,a-cure-i1,2018-19,Stoughton - Helen Hansen Elementary,02850010, 0.0, 4.1, 18.0, 12.2, 8.1, 0.0, 57.7, 49.5, 50.5,42.3,0.0 +1,1,a-cure-i1,2018-19,Stoughton - Joseph H Gibbons,02850025, 0.0, 3.6, 17.1, 12.0, 5.3, 0.0, 61.9, 47.3, 52.7,38.1,0.0 +1,1,a-cure-i1,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 8.6, 28.5, 13.8, 5.8, 0.3, 42.9, 47.0, 53.0,57.1,0.0 +2.735930735930736,2.74,a-cure-i1,2018-19,Stoughton - O'Donnell Middle School,02850405, 0.2, 6.4, 22.2, 11.1, 5.7, 0.7, 53.8, 48.5, 51.5,46.2,7.9 +1,1,a-cure-i1,2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.3, 4.6, 24.4, 21.5, 6.6, 0.0, 42.7, 49.0, 51.0,57.3,4.4 +1,1,a-cure-i1,2018-19,Stoughton - South Elementary,02850015, 0.4, 11.7, 20.2, 11.7, 6.1, 0.8, 49.0, 48.2, 51.8,51.0,0.0 +1,1,a-cure-i1,2018-19,Stoughton - Stoughton High,02850505, 0.0, 6.1, 25.7, 7.8, 2.8, 0.2, 57.5, 48.7, 51.3,42.5,2.7 +1,1,a-cure-i1,2018-19,Sturbridge - Burgess Elementary,02870005, 0.5, 1.6, 1.2, 5.9, 4.7, 0.1, 86.0, 44.4, 55.6,14.0,0.0 +1,1,a-cure-i1,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.5, 3.5, 2.5, 5.5, 2.6, 0.1, 85.3, 55.6, 44.4,14.700000000000003,4.6 +1,1,a-cure-i1,2018-19,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 8.4, 3.7, 3.8, 6.8, 0.1, 77.2, 52.9, 47.1,22.799999999999997,3.4 +1,1,a-cure-i1,2018-19,Sudbury - General John Nixon Elementary,02880025, 0.0, 10.7, 5.4, 3.6, 5.4, 0.3, 74.7, 45.5, 54.5,25.299999999999997,4.8 +5.090909090909092,5,a-cure-i1,2018-19,Sudbury - Israel Loring School,02880015, 0.2, 11.6, 3.6, 6.3, 6.5, 0.4, 71.4, 47.8, 52.2,28.599999999999994,9.1 +1,1,a-cure-i1,2018-19,Sudbury - Josiah Haynes,02880010, 0.0, 9.2, 2.2, 2.8, 6.7, 0.0, 79.1, 45.0, 55.0,20.900000000000006,2.2 +1,1,a-cure-i1,2018-19,Sudbury - Peter Noyes,02880030, 0.0, 11.1, 3.0, 3.5, 8.1, 0.0, 74.3, 47.3, 52.7,25.700000000000003,0.0 +2.476780185758514,2.48,a-cure-i1,2018-19,Sunderland - Sunderland Elementary,02890005, 0.0, 8.2, 3.4, 10.8, 9.9, 0.0, 67.7, 45.3, 54.7,32.3,5.0 +1,1,a-cure-i1,2018-19,Sutton - Sutton Early Learning,02900003, 0.3, 0.7, 1.0, 1.7, 2.0, 0.0, 94.2, 48.3, 51.7,5.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Sutton - Sutton Elementary,02900005, 0.0, 2.2, 0.6, 1.6, 5.7, 0.0, 89.8, 48.7, 51.3,10.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Sutton - Sutton High School,02900510, 0.0, 0.3, 0.5, 3.1, 4.4, 0.0, 91.7, 51.6, 48.4,8.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Sutton - Sutton Middle School,02900305, 0.0, 2.2, 1.7, 2.2, 3.6, 0.0, 90.3, 48.9, 51.1,9.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Swampscott - Clarke,02910005, 0.5, 3.8, 1.9, 17.4, 2.3, 0.0, 74.2, 47.4, 52.6,25.799999999999997,0.7 +1,1,a-cure-i1,2018-19,Swampscott - Hadley,02910010, 0.0, 3.1, 2.5, 10.0, 4.0, 0.0, 80.4, 45.5, 54.5,19.599999999999994,4.2 +11.000000000000005,5,a-cure-i1,2018-19,Swampscott - Stanley,02910020, 0.0, 2.1, 0.4, 5.9, 1.3, 0.0, 90.4, 43.5, 56.5,9.599999999999994,6.6 +6.5753424657534225,5,a-cure-i1,2018-19,Swampscott - Swampscott High,02910505, 0.0, 2.7, 4.8, 12.4, 1.8, 0.1, 78.1, 53.6, 46.4,21.900000000000006,9.0 +1,1,a-cure-i1,2018-19,Swampscott - Swampscott Middle,02910305, 0.5, 2.2, 3.6, 10.2, 2.7, 0.0, 80.7, 47.8, 52.2,19.299999999999997,1.9 +1,1,a-cure-i1,2018-19,Swansea - Elizabeth S Brown,02920006, 0.4, 1.1, 0.7, 0.7, 0.4, 0.0, 96.7, 54.2, 45.8,3.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Swansea - Gardner,02920015, 0.0, 1.1, 0.4, 2.3, 1.5, 0.0, 94.7, 47.3, 52.7,5.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Swansea - Joseph Case High,02920505, 0.2, 1.7, 1.1, 2.8, 0.9, 0.0, 93.3, 47.9, 52.1,6.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Swansea - Joseph Case Jr High,02920305, 0.0, 0.2, 0.9, 2.0, 0.9, 0.0, 96.0, 47.3, 52.7,4.0,2.7 +1,1,a-cure-i1,2018-19,Swansea - Joseph G Luther,02920020, 1.0, 1.0, 0.5, 4.0, 3.5, 0.0, 90.1, 53.5, 46.5,9.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 1.9, 0.8, 1.9, 1.9, 0.0, 93.5, 49.6, 50.4,6.5,0.0 +1,1,a-cure-i1,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 0.2, 0.8, 0.7, 4.9, 3.2, 0.0, 90.2, 47.5, 52.5,9.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 0.1, 1.5, 1.1, 5.3, 2.7, 0.0, 89.2, 56.3, 43.6,10.799999999999997,2.3 +1,1,a-cure-i1,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.4, 0.2, 5.3, 2.3, 0.0, 91.6, 41.6, 58.4,8.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.8, 9.7, 9.1, 5.0, 0.1, 75.3, 48.3, 51.7,24.700000000000003,2.4 +1,1,a-cure-i1,2018-19,Taunton - East Taunton Elementary,02930010, 0.0, 0.8, 14.2, 8.6, 5.6, 0.0, 70.7, 52.3, 47.7,29.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Taunton - Edmund Hatch Bennett,02930007, 0.3, 1.0, 10.0, 9.0, 3.9, 0.0, 75.9, 49.8, 50.2,24.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 2.8, 12.4, 14.5, 3.2, 0.0, 67.0, 39.4, 60.6,33.0,0.0 +1,1,a-cure-i1,2018-19,Taunton - Elizabeth Pole,02930027, 0.0, 1.6, 21.3, 16.2, 9.0, 0.0, 52.0, 46.4, 53.6,48.0,3.3 +1.91044776119403,1.91,a-cure-i1,2018-19,Taunton - H H Galligan,02930057, 0.4, 0.8, 31.8, 18.2, 8.3, 0.8, 39.7, 47.1, 52.9,60.3,7.2 +2.3496503496503496,2.35,a-cure-i1,2018-19,Taunton - Hopewell,02930035, 0.4, 0.7, 20.2, 12.4, 9.2, 0.0, 57.1, 55.3, 44.7,42.9,6.3 +1,1,a-cure-i1,2018-19,Taunton - John F Parker Middle,02930305, 0.8, 1.0, 23.0, 16.0, 6.2, 0.2, 52.7, 54.1, 45.9,47.3,2.0 +1,1,a-cure-i1,2018-19,Taunton - Joseph C Chamberlain,02930008, 0.2, 2.2, 10.8, 5.6, 3.8, 0.0, 77.4, 47.2, 52.8,22.599999999999994,3.7 +1,1,a-cure-i1,2018-19,Taunton - Joseph H Martin,02930042, 0.3, 0.9, 15.4, 10.2, 5.0, 0.1, 68.1, 45.9, 54.1,31.900000000000006,4.1 +1,1,a-cure-i1,2018-19,Taunton - Mulcahey Elementary School,02930015, 0.2, 1.3, 19.5, 17.4, 5.3, 0.0, 56.3, 49.6, 50.4,43.7,4.0 +1,1,a-cure-i1,2018-19,Taunton - Taunton Alternative High School,02930525, 1.0, 0.0, 10.9, 14.9, 8.9, 0.0, 64.4, 33.7, 66.3,35.599999999999994,0.0 +2.4021447721179623,2.4,a-cure-i1,2018-19,Taunton - Taunton High,02930505, 0.2, 1.9, 17.5, 13.6, 3.9, 0.2, 62.7, 50.2, 49.8,37.3,5.6 +1,1,a-cure-i1,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.4, 2.8, 8.2, 15.0, 7.5, 0.2, 65.9, 57.5, 42.5,34.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Tewksbury - Heath-Brook,02950010, 0.0, 2.9, 2.3, 3.8, 1.2, 0.0, 89.9, 52.0, 48.0,10.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Tewksbury - John F. Ryan,02950023, 0.2, 2.9, 4.1, 3.7, 0.6, 0.0, 88.5, 50.3, 49.7,11.5,1.4 +1,1,a-cure-i1,2018-19,Tewksbury - John W. Wynn Middle,02950305, 0.2, 3.5, 3.3, 3.3, 1.1, 0.0, 88.7, 46.3, 53.7,11.299999999999997,2.4 +1,1,a-cure-i1,2018-19,Tewksbury - L F Dewing,02950001, 0.0, 5.4, 4.7, 6.9, 1.5, 0.2, 81.3, 47.5, 52.5,18.700000000000003,3.1 +1,1,a-cure-i1,2018-19,Tewksbury - Louise Davy Trahan,02950025, 0.0, 1.0, 1.5, 3.9, 3.4, 0.0, 90.1, 54.7, 45.3,9.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Tewksbury - North Street,02950020, 0.0, 3.5, 4.9, 7.1, 1.1, 0.0, 83.4, 47.7, 52.3,16.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 3.7, 2.7, 3.9, 1.1, 0.0, 88.5, 50.4, 49.6,11.5,1.6 +4.385786802030458,4.39,a-cure-i1,2018-19,Tisbury - Tisbury Elementary,02960005, 1.3, 0.3, 5.1, 25.9, 6.7, 0.0, 60.6, 46.5, 53.5,39.4,10.8 +1,1,a-cure-i1,2018-19,Topsfield - Proctor Elementary,02980005, 0.4, 1.5, 0.7, 1.1, 3.0, 0.0, 93.3, 53.7, 46.3,6.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Topsfield - Steward Elementary,02980010, 1.1, 0.8, 0.3, 3.2, 2.7, 0.0, 91.9, 48.2, 51.8,8.099999999999994,3.0 +1,1,a-cure-i1,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.3, 1.0, 0.7, 5.7, 4.2, 0.3, 87.9, 41.5, 58.3,12.099999999999994,1.3 +1,1,a-cure-i1,2018-19,Triton - Newbury Elementary,07730020, 0.0, 1.5, 0.5, 1.9, 1.5, 0.7, 93.9, 46.2, 53.8,6.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Triton - Pine Grove,07730025, 0.0, 1.2, 0.5, 1.2, 2.6, 0.0, 94.7, 48.5, 51.5,5.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Triton - Salisbury Elementary,07730015, 0.0, 2.7, 2.3, 5.2, 3.3, 0.0, 86.4, 48.7, 51.3,13.599999999999994,0.0 +12.421052631578958,5,a-cure-i1,2018-19,Triton - Triton Regional High School,07730505, 0.3, 1.5, 0.9, 3.8, 1.0, 0.1, 92.4, 49.6, 50.4,7.599999999999994,5.9 +1,1,a-cure-i1,2018-19,Triton - Triton Regional Middle School,07730405, 0.0, 1.0, 0.8, 2.1, 1.3, 0.0, 94.8, 48.8, 51.2,5.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Truro - Truro Central,03000005, 0.0, 0.0, 7.5, 10.4, 17.9, 0.0, 64.2, 51.9, 48.1,35.8,0.0 +1,1,a-cure-i1,2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 0.1, 7.1, 5.0, 4.6, 3.5, 0.0, 79.6, 47.1, 52.9,20.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Tyngsborough - Tyngsborough High School,03010505, 0.4, 5.6, 1.9, 4.2, 3.6, 0.0, 84.3, 52.5, 47.5,15.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Tyngsborough - Tyngsborough Middle,03010305, 0.3, 7.4, 3.3, 4.9, 1.9, 0.0, 82.1, 47.5, 52.5,17.900000000000006,3.4 +3.3805128205128208,3.38,a-cure-i1,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 6.0, 44.1, 44.7, 2.5, 0.2, 2.5, 47.6, 52.4,97.5,20.6 +5.096056622851365,5,a-cure-i1,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.4, 0.8, 54.8, 40.5, 1.7, 0.7, 1.1, 49.6, 50.4,98.9,31.500000000000004 +1,1,a-cure-i1,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 3.3, 0.0, 0.0, 1.7, 10.0, 0.0, 85.0, 48.3, 51.7,15.0,0.0 +1,1,a-cure-i1,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 4.8, 0.8, 1.1, 6.5, 6.7, 0.0, 80.1, 46.1, 53.9,19.900000000000006,3.1 +1,1,a-cure-i1,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.7, 1.7, 4.7, 2.7, 5.4, 0.0, 84.8, 35.8, 64.2,15.200000000000003,1.8 +1,1,a-cure-i1,2018-19,Uxbridge - Gateway to College,03040515, 4.5, 6.8, 2.3, 20.5, 0.0, 2.3, 63.6, 56.8, 43.2,36.4,0.0 +1,1,a-cure-i1,2018-19,Uxbridge - Taft Early Learning Center,03040005, 0.2, 1.1, 1.2, 4.1, 1.8, 0.0, 91.6, 47.1, 52.9,8.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Uxbridge - Uxbridge High,03040505, 0.3, 1.2, 2.2, 4.6, 2.7, 0.0, 89.0, 44.3, 55.7,11.0,0.0 +1,1,a-cure-i1,2018-19,Uxbridge - Whitin Intermediate,03040405, 0.8, 1.5, 0.8, 3.8, 1.7, 0.0, 91.5, 46.0, 54.0,8.5,0.0 +5.215562565720295,5,a-cure-i1,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.3, 1.4, 17.0, 74.1, 2.3, 0.0, 4.9, 53.6, 46.4,95.1,31.0 +1,1,a-cure-i1,2018-19,Wachusett - Central Tree Middle,07750310, 0.0, 3.1, 1.3, 3.1, 3.7, 0.0, 88.8, 51.4, 48.6,11.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Chocksett Middle School,07750315, 0.0, 1.7, 1.1, 6.6, 2.2, 0.0, 88.4, 49.0, 51.0,11.599999999999994,3.3 +1,1,a-cure-i1,2018-19,Wachusett - Davis Hill Elementary,07750018, 0.7, 0.9, 3.3, 8.6, 4.0, 0.0, 82.6, 49.5, 50.5,17.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Dawson,07750020, 0.0, 4.6, 4.2, 4.8, 2.3, 0.0, 84.1, 49.9, 50.1,15.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Early Childhood Center,07750001, 0.0, 2.6, 3.2, 8.4, 2.6, 0.0, 83.1, 39.0, 61.0,16.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Glenwood Elementary School,07750060, 0.8, 2.0, 2.5, 4.8, 3.1, 0.0, 86.8, 50.4, 49.6,13.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Houghton Elementary,07750027, 0.0, 1.9, 2.5, 6.1, 2.2, 0.0, 87.3, 46.5, 53.5,12.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Leroy E.Mayo,07750032, 0.0, 4.0, 3.8, 5.2, 1.7, 0.2, 85.2, 47.6, 52.4,14.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Mountview Middle,07750305, 0.1, 4.3, 2.3, 5.0, 2.2, 0.0, 86.1, 50.2, 49.8,13.900000000000006,2.2 +1,1,a-cure-i1,2018-19,Wachusett - Naquag Elementary School,07750005, 0.0, 1.6, 1.0, 3.8, 1.6, 0.0, 92.0, 51.0, 49.0,8.0,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Paxton Center,07750040, 0.0, 2.6, 1.8, 7.7, 1.8, 0.0, 86.2, 46.6, 53.4,13.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Thomas Prince,07750045, 0.0, 1.3, 1.0, 4.7, 2.1, 0.0, 90.9, 50.7, 49.3,9.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Wachusett - Wachusett Regional High,07750505, 0.1, 3.1, 1.8, 4.8, 1.8, 0.0, 88.5, 51.6, 48.3,11.5,0.7 +1,1,a-cure-i1,2018-19,Wakefield - Dolbeare,03050005, 0.4, 2.2, 1.3, 6.1, 2.2, 0.0, 87.7, 48.8, 51.2,12.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 5.6, 2.1, 10.6, 3.5, 1.4, 76.8, 40.1, 59.9,23.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Wakefield - Galvin Middle School,03050310, 0.2, 2.8, 3.5, 7.4, 2.9, 0.2, 83.1, 48.9, 51.1,16.900000000000006,1.2 +1,1,a-cure-i1,2018-19,Wakefield - Greenwood,03050020, 0.0, 6.4, 0.9, 6.4, 6.4, 0.0, 80.0, 47.7, 52.3,20.0,0.0 +1,1,a-cure-i1,2018-19,Wakefield - Wakefield Memorial High,03050505, 0.2, 3.3, 3.7, 5.0, 1.8, 0.1, 85.8, 53.0, 47.0,14.200000000000003,2.9000000000000004 +1,1,a-cure-i1,2018-19,Wakefield - Walton,03050040, 0.0, 3.0, 2.2, 5.6, 2.2, 1.3, 85.7, 44.2, 55.8,14.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Wakefield - Woodville School,03050015, 0.0, 5.7, 3.2, 9.7, 6.4, 0.2, 74.8, 48.8, 51.0,25.200000000000003,4.4 +1,1,a-cure-i1,2018-19,Wales - Wales Elementary,03060005, 0.7, 0.7, 2.0, 1.4, 2.7, 0.0, 92.5, 45.6, 54.4,7.5,0.0 +6.4,5,a-cure-i1,2018-19,Walpole - Bird Middle,03070305, 0.4, 3.6, 3.1, 7.3, 1.6, 0.0, 84.0, 50.1, 49.9,16.0,6.4 +1,1,a-cure-i1,2018-19,Walpole - Boyden,03070010, 0.6, 4.7, 7.3, 5.3, 2.3, 0.0, 79.8, 52.0, 48.0,20.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 7.8, 3.1, 3.1, 6.3, 0.0, 79.7, 48.4, 51.6,20.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0.9, 8.9, 2.1, 4.1, 3.0, 0.0, 81.0, 48.7, 51.3,19.0,0.0 +1,1,a-cure-i1,2018-19,Walpole - Elm Street School,03070005, 0.2, 7.5, 4.2, 3.3, 3.1, 0.0, 81.7, 49.5, 50.5,18.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Walpole - Fisher,03070015, 0.0, 14.5, 2.0, 6.5, 3.7, 0.0, 73.3, 45.1, 54.9,26.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Walpole - Old Post Road,03070018, 0.0, 1.6, 2.5, 6.7, 3.1, 0.0, 86.1, 51.6, 48.4,13.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Walpole - Walpole High,03070505, 0.3, 5.1, 3.6, 5.1, 1.9, 0.0, 84.1, 51.2, 48.7,15.900000000000006,3.8 +1,1,a-cure-i1,2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 0.2, 8.4, 9.5, 12.5, 4.3, 0.0, 65.1, 44.6, 55.4,34.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.1, 6.0, 77.1, 1.4, 0.0, 12.3, 46.6, 53.4,87.7,4.1000000000000005 +1,1,a-cure-i1,2018-19,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 4.8, 4.8, 30.6, 4.3, 0.0, 55.4, 48.4, 51.6,44.6,0.3 +3.8046709129511678,3.8,a-cure-i1,2018-19,Waltham - John F Kennedy Middle,03080404, 0.0, 4.3, 11.0, 30.4, 1.3, 0.0, 52.9, 45.0, 55.0,47.1,11.200000000000001 +1,1,a-cure-i1,2018-19,Waltham - John W. McDevitt Middle School,03080415, 0.0, 4.1, 9.6, 47.7, 1.8, 0.0, 36.8, 52.6, 47.4,63.2,3.0 +2.2567811934900543,2.26,a-cure-i1,2018-19,Waltham - Northeast Elementary School,03080040, 0.2, 10.0, 13.6, 29.5, 2.0, 0.0, 44.7, 48.9, 51.1,55.3,7.8 +1,1,a-cure-i1,2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 5.6, 11.9, 42.5, 2.8, 0.0, 37.1, 49.1, 50.9,62.9,1.5 +10.211055276381911,5,a-cure-i1,2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 1.8, 4.4, 70.8, 2.7, 0.0, 20.4, 39.8, 60.2,79.6,50.800000000000004 +2.2319327731092433,2.23,a-cure-i1,2018-19,Waltham - Waltham Sr High,03080505, 0.1, 4.2, 11.1, 41.9, 2.1, 0.1, 40.5, 46.5, 53.4,59.5,8.299999999999999 +1,1,a-cure-i1,2018-19,Waltham - William F. Stanley Elementary School,03080005, 0.0, 5.8, 6.5, 47.0, 1.6, 0.0, 39.1, 45.4, 54.6,60.9,3.1 +1,1,a-cure-i1,2018-19,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.5, 0.8, 3.0, 1.8, 0.0, 93.9, 50.1, 49.9,6.099999999999994,0.0 +6.296774193548386,5,a-cure-i1,2018-19,Ware - Ware Junior/Senior High School,03090505, 0.0, 1.1, 2.5, 6.9, 4.6, 0.4, 84.5, 50.0, 50.0,15.5,6.1 +1,1,a-cure-i1,2018-19,Ware - Ware Middle School,03090305, 0.3, 0.3, 1.6, 7.2, 5.0, 0.0, 85.5, 49.7, 50.3,14.5,0.0 +1,1,a-cure-i1,2018-19,Wareham - John William Decas,03100003, 1.0, 1.0, 8.1, 9.3, 10.9, 0.0, 69.7, 49.9, 50.1,30.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Wareham - Minot Forest,03100017, 2.0, 0.6, 9.2, 9.5, 12.3, 0.3, 66.2, 44.7, 55.3,33.8,0.0 +1,1,a-cure-i1,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 12.1, 12.1, 13.8, 0.0, 62.1, 48.3, 51.7,37.9,0.0 +3.420689655172414,3.42,a-cure-i1,2018-19,Wareham - Wareham Middle,03100305, 1.0, 1.2, 7.4, 7.7, 11.6, 0.2, 71.0, 48.9, 51.1,29.0,6.2 +5.275362318840581,5,a-cure-i1,2018-19,Wareham - Wareham Senior High,03100505, 1.4, 1.7, 9.5, 5.6, 9.3, 0.2, 72.4, 49.3, 50.5,27.599999999999994,9.1 +1,1,a-cure-i1,2018-19,Watertown - Cunniff,03140015, 0.3, 7.3, 2.7, 18.5, 4.8, 0.0, 66.4, 47.6, 52.4,33.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Watertown - Hosmer,03140020, 0.3, 8.7, 3.5, 18.9, 8.7, 0.2, 59.7, 48.7, 51.3,40.3,0.0 +1,1,a-cure-i1,2018-19,Watertown - James Russell Lowell,03140025, 0.2, 7.7, 2.0, 17.1, 6.9, 0.0, 66.1, 49.3, 50.7,33.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Watertown - Watertown High,03140505, 0.8, 7.6, 4.9, 19.0, 3.6, 0.0, 64.2, 48.6, 51.4,35.8,0.0 +1,1,a-cure-i1,2018-19,Watertown - Watertown Middle,03140305, 0.7, 7.7, 4.8, 12.3, 4.3, 0.2, 70.0, 48.2, 51.8,30.0,0.0 +3.7433962264150944,3.74,a-cure-i1,2018-19,Wayland - Claypit Hill School,03150005, 0.0, 10.3, 5.6, 5.6, 4.7, 0.4, 73.5, 50.8, 49.2,26.5,6.2 +4.918727915194347,4.92,a-cure-i1,2018-19,Wayland - Happy Hollow School,03150015, 0.0, 12.5, 5.6, 3.5, 6.4, 0.3, 71.7, 49.1, 50.9,28.299999999999997,8.7 +2.8957055214723932,2.9,a-cure-i1,2018-19,Wayland - Loker School,03150020, 0.0, 19.6, 3.0, 5.2, 4.4, 0.4, 67.4, 47.8, 52.2,32.599999999999994,5.9 +2.567901234567901,2.57,a-cure-i1,2018-19,Wayland - Wayland High School,03150505, 0.0, 17.6, 4.4, 4.6, 5.7, 0.1, 67.6, 48.1, 51.9,32.400000000000006,5.2 +6.017910447761195,5,a-cure-i1,2018-19,Wayland - Wayland Middle School,03150305, 0.1, 17.0, 6.3, 3.9, 6.0, 0.1, 66.5, 51.9, 48.1,33.5,12.600000000000001 +2.4427480916030535,2.44,a-cure-i1,2018-19,Webster - Bartlett High School,03160505, 0.0, 2.8, 5.2, 23.6, 7.4, 0.2, 60.7, 49.6, 50.2,39.3,6.0 +1,1,a-cure-i1,2018-19,Webster - Park Avenue Elementary,03160015, 0.2, 1.7, 5.4, 28.0, 6.6, 0.0, 58.0, 49.1, 50.9,42.0,0.0 +1,1,a-cure-i1,2018-19,Webster - Webster Middle School,03160315, 0.0, 2.1, 5.6, 28.9, 6.8, 0.2, 56.3, 53.0, 47.0,43.7,2.6 +10.666666666666666,5,a-cure-i1,2018-19,Wellesley - Ernest F Upham,03170050, 0.0, 11.6, 2.6, 3.4, 3.0, 0.0, 79.3, 47.0, 53.0,20.700000000000003,13.8 +12.46753246753247,5,a-cure-i1,2018-19,Wellesley - Hunnewell,03170025, 0.0, 4.2, 4.2, 5.8, 8.8, 0.0, 76.9, 50.8, 49.2,23.099999999999994,18.0 +2.0928270042194095,2.09,a-cure-i1,2018-19,Wellesley - John D Hardy,03170020, 0.0, 25.8, 1.4, 8.0, 12.2, 0.0, 52.6, 50.2, 49.8,47.4,6.2 +1,1,a-cure-i1,2018-19,Wellesley - Joseph E Fiske,03170015, 0.3, 19.6, 3.4, 7.6, 6.2, 0.0, 62.9, 52.2, 47.8,37.1,0.0 +6.428571428571427,5,a-cure-i1,2018-19,Wellesley - Katharine Lee Bates,03170005, 0.0, 9.2, 3.9, 2.2, 7.0, 0.0, 77.6, 53.8, 46.2,22.400000000000006,9.0 +1,1,a-cure-i1,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 25.0, 2.0, 11.0, 7.0, 0.0, 55.0, 44.0, 56.0,45.0,0.0 +1,1,a-cure-i1,2018-19,Wellesley - Schofield,03170045, 0.3, 16.2, 4.5, 5.0, 7.3, 0.0, 66.8, 52.9, 47.1,33.2,4.7 +1,1,a-cure-i1,2018-19,Wellesley - Sprague Elementary School,03170048, 0.0, 18.9, 3.0, 3.8, 11.7, 0.0, 62.6, 51.1, 48.9,37.4,0.0 +3.167235494880546,3.17,a-cure-i1,2018-19,Wellesley - Wellesley Middle,03170305, 0.1, 14.0, 3.6, 5.5, 6.1, 0.0, 70.7, 50.6, 49.4,29.299999999999997,5.8 +5.517241379310346,5,a-cure-i1,2018-19,Wellesley - Wellesley Sr High,03170505, 0.0, 12.2, 4.3, 4.6, 4.9, 0.1, 73.9, 51.2, 48.8,26.099999999999994,9.0 +1,1,a-cure-i1,2018-19,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.0, 2.9, 2.9, 10.5, 0.0, 82.9, 44.8, 55.2,17.099999999999994,0.0 +1,1,a-cure-i1,2018-19,West Boylston - Major Edwards Elementary,03220005, 0.0, 2.5, 3.5, 10.9, 5.2, 0.0, 78.0, 47.8, 52.2,22.0,0.0 +9.00546448087432,5,a-cure-i1,2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 0.2, 1.2, 2.7, 10.7, 3.5, 0.0, 81.7, 54.5, 45.5,18.299999999999997,10.3 +1,1,a-cure-i1,2018-19,West Bridgewater - Howard School,03230305, 0.4, 0.7, 5.7, 2.1, 5.3, 0.4, 85.5, 53.4, 46.6,14.5,0.0 +1,1,a-cure-i1,2018-19,West Bridgewater - Rose L Macdonald,03230003, 0.4, 1.1, 3.8, 3.1, 5.3, 0.0, 86.3, 50.0, 50.0,13.700000000000003,0.0 +1,1,a-cure-i1,2018-19,West Bridgewater - Spring Street School,03230005, 0.0, 0.6, 3.3, 5.5, 6.6, 0.0, 84.0, 47.5, 52.5,16.0,0.0 +1,1,a-cure-i1,2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.5, 1.1, 5.0, 3.4, 2.7, 0.0, 87.4, 51.6, 48.4,12.599999999999994,0.0 +1,1,a-cure-i1,2018-19,West Springfield - Cowing Early Childhood,03320001, 0.0, 15.5, 7.8, 24.1, 2.6, 0.0, 50.0, 36.2, 63.8,50.0,0.0 +1,1,a-cure-i1,2018-19,West Springfield - John Ashley,03320005, 0.0, 5.2, 1.6, 22.9, 4.0, 0.0, 66.3, 52.6, 47.4,33.7,0.0 +1,1,a-cure-i1,2018-19,West Springfield - John R Fausey,03320010, 0.0, 4.1, 2.6, 15.5, 3.5, 0.0, 74.3, 49.2, 50.8,25.700000000000003,0.0 +1,1,a-cure-i1,2018-19,West Springfield - Memorial,03320025, 0.0, 10.3, 2.3, 31.8, 3.3, 0.0, 52.3, 49.5, 50.5,47.7,0.0 +1,1,a-cure-i1,2018-19,West Springfield - Mittineague,03320030, 0.0, 1.8, 3.5, 17.6, 5.9, 0.0, 71.2, 55.9, 44.1,28.799999999999997,0.0 +1,1,a-cure-i1,2018-19,West Springfield - Philip G Coburn,03320007, 0.2, 17.4, 5.4, 18.8, 2.1, 0.0, 56.0, 51.9, 48.1,44.0,0.0 +1,1,a-cure-i1,2018-19,West Springfield - Tatham,03320040, 0.0, 3.5, 1.2, 11.0, 4.7, 0.0, 79.6, 50.2, 49.8,20.400000000000006,0.0 +2.557993730407523,2.56,a-cure-i1,2018-19,West Springfield - West Springfield High,03320505, 0.1, 7.5, 3.5, 18.8, 2.0, 0.0, 68.1, 48.3, 51.7,31.900000000000006,5.1 +1,1,a-cure-i1,2018-19,West Springfield - West Springfield Middle,03320305, 0.1, 7.8, 3.7, 19.8, 2.2, 0.1, 66.3, 46.2, 53.8,33.7,2.5 +1,1,a-cure-i1,2018-19,Westborough - Annie E Fales,03210010, 0.0, 43.2, 0.6, 2.8, 2.3, 0.3, 50.8, 53.7, 46.3,49.2,0.0 +1,1,a-cure-i1,2018-19,Westborough - Elsie A Hastings Elementary,03210025, 0.6, 44.6, 2.4, 12.2, 2.8, 0.0, 37.5, 48.8, 51.2,62.5,0.0 +1,1,a-cure-i1,2018-19,Westborough - J Harding Armstrong,03210005, 0.0, 38.1, 1.9, 5.8, 1.9, 0.0, 52.3, 45.5, 54.5,47.7,0.0 +1,1,a-cure-i1,2018-19,Westborough - Mill Pond School,03210045, 0.2, 37.6, 2.5, 5.4, 2.3, 0.0, 52.0, 51.0, 49.0,48.0,0.0 +1,1,a-cure-i1,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 29.3, 1.0, 7.3, 3.9, 0.2, 58.3, 49.2, 50.8,41.7,2.8 +1,1,a-cure-i1,2018-19,Westborough - Westborough High,03210505, 0.0, 25.2, 2.0, 6.0, 3.3, 0.1, 63.5, 49.5, 50.4,36.5,4.1 +1,1,a-cure-i1,2018-19,Westfield - Abner Gibbs,03250020, 0.0, 11.5, 3.7, 24.3, 3.7, 0.0, 56.9, 49.1, 50.9,43.1,0.0 +1,1,a-cure-i1,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 5.5, 1.6, 19.7, 1.6, 0.0, 71.6, 49.7, 50.3,28.400000000000006,0.0 +3.056179775280899,3.06,a-cure-i1,2018-19,Westfield - Franklin Ave,03250015, 0.5, 4.7, 2.8, 32.7, 3.8, 0.0, 55.5, 52.6, 47.4,44.5,8.5 +1,1,a-cure-i1,2018-19,Westfield - Highland,03250025, 0.0, 2.9, 2.1, 11.5, 0.9, 0.0, 82.6, 51.2, 48.8,17.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Westfield - Munger Hill,03250033, 0.0, 2.8, 2.5, 11.9, 2.2, 0.0, 80.6, 49.3, 50.7,19.400000000000006,0.0 +2.909090909090909,2.91,a-cure-i1,2018-19,Westfield - Paper Mill,03250036, 0.0, 1.5, 3.0, 22.6, 3.4, 0.3, 69.2, 44.8, 55.2,30.799999999999997,5.6 +1,1,a-cure-i1,2018-19,Westfield - Southampton Road,03250040, 0.0, 2.5, 0.9, 9.3, 4.9, 0.0, 82.4, 46.6, 53.4,17.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Westfield - Westfield High,03250505, 0.2, 3.7, 2.4, 13.5, 2.0, 0.0, 78.1, 52.8, 47.1,21.900000000000006,1.1 +1,1,a-cure-i1,2018-19,Westfield - Westfield Intermediate School,03250075, 0.2, 3.5, 2.4, 17.0, 2.5, 0.0, 74.4, 49.7, 50.3,25.599999999999994,2.0 +1,1,a-cure-i1,2018-19,Westfield - Westfield Middle School,03250310, 0.0, 2.4, 2.5, 14.7, 2.7, 0.0, 77.7, 50.1, 49.9,22.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Westfield - Westfield Technical Academy,03250605, 0.2, 1.3, 1.3, 10.2, 1.3, 0.2, 85.4, 36.2, 63.8,14.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Westford - Abbot Elementary,03260004, 0.3, 23.6, 0.3, 1.0, 3.4, 0.0, 71.4, 54.6, 45.4,28.599999999999994,0.0 +2.127659574468085,2.13,a-cure-i1,2018-19,Westford - Blanchard Middle,03260310, 0.4, 31.3, 1.1, 2.0, 2.9, 0.0, 62.4, 47.4, 52.6,37.6,5.0 +1,1,a-cure-i1,2018-19,Westford - Col John Robinson,03260025, 0.0, 29.0, 0.7, 1.7, 5.6, 0.0, 63.0, 48.5, 51.5,37.0,0.0 +1,1,a-cure-i1,2018-19,Westford - Day Elementary,03260007, 0.0, 40.1, 0.6, 3.2, 5.7, 0.0, 50.4, 51.9, 48.1,49.6,0.0 +1,1,a-cure-i1,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0.3, 28.7, 2.0, 2.9, 3.4, 0.0, 62.6, 51.7, 48.3,37.4,0.0 +1,1,a-cure-i1,2018-19,Westford - Millennium Elementary,03260013, 0.9, 36.2, 1.7, 2.6, 7.8, 0.0, 50.9, 42.2, 57.8,49.1,0.0 +1,1,a-cure-i1,2018-19,Westford - Nabnasset,03260015, 0.0, 18.7, 0.3, 1.9, 2.8, 0.0, 76.3, 47.8, 52.2,23.700000000000003,0.0 +2.1782178217821784,2.18,a-cure-i1,2018-19,Westford - Rita E. Miller Elementary School,03260055, 0.0, 33.6, 1.3, 2.0, 3.6, 0.0, 59.6, 46.3, 53.7,40.4,5.5 +1,1,a-cure-i1,2018-19,Westford - Stony Brook School,03260330, 0.0, 25.8, 0.6, 1.1, 2.9, 0.0, 69.7, 47.1, 52.9,30.299999999999997,2.2 +3.835616438356164,3.84,a-cure-i1,2018-19,Westford - Westford Academy,03260505, 0.1, 22.7, 0.9, 1.7, 3.8, 0.1, 70.8, 48.1, 51.9,29.200000000000003,7.0 +1,1,a-cure-i1,2018-19,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.8, 0.0, 4.1, 0.8, 0.0, 94.2, 47.1, 52.9,5.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Weston - Country,03300010, 0.0, 16.4, 6.4, 8.7, 8.0, 0.0, 60.5, 54.3, 45.7,39.5,0.0 +4.446866485013623,4.45,a-cure-i1,2018-19,Weston - Field Elementary School,03300012, 0.0, 17.3, 6.0, 8.0, 5.3, 0.0, 63.3, 51.0, 49.0,36.7,10.2 +8.374269005847953,5,a-cure-i1,2018-19,Weston - Weston High,03300505, 0.6, 18.8, 5.8, 4.7, 4.4, 0.0, 65.8, 50.1, 49.9,34.2,17.900000000000002 +7.116279069767441,5,a-cure-i1,2018-19,Weston - Weston Middle,03300305, 0.0, 15.9, 6.8, 5.0, 6.6, 0.0, 65.6, 44.3, 55.7,34.400000000000006,15.3 +3.4179566563467496,3.42,a-cure-i1,2018-19,Weston - Woodland,03300015, 0.0, 16.0, 6.9, 6.9, 2.1, 0.3, 67.7, 47.9, 52.1,32.3,6.9 +1,1,a-cure-i1,2018-19,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.5, 4.1, 3.6, 0.0, 91.8, 47.9, 52.1,8.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Westport - Westport Elementary,03310030, 0.2, 0.4, 0.0, 3.4, 6.1, 0.0, 89.9, 43.1, 56.9,10.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Westport - Westport Junior/Senior High School,03310515, 0.5, 1.2, 0.3, 3.2, 3.0, 0.0, 91.8, 45.7, 54.3,8.200000000000003,0.0 +6.386831275720166,5,a-cure-i1,2018-19,Westwood - Deerfield School,03350010, 0.0, 9.4, 1.1, 5.5, 8.3, 0.0, 75.7, 44.8, 55.2,24.299999999999997,9.700000000000001 +6.007017543859649,5,a-cure-i1,2018-19,Westwood - Downey,03350012, 0.0, 17.8, 0.7, 4.3, 5.7, 0.0, 71.5, 42.3, 57.7,28.5,10.7 +1,1,a-cure-i1,2018-19,Westwood - E W Thurston Middle,03350305, 0.0, 11.1, 2.8, 4.2, 3.4, 0.0, 78.6, 47.9, 52.1,21.400000000000006,1.6 +1,1,a-cure-i1,2018-19,Westwood - Martha Jones,03350017, 0.0, 9.2, 0.0, 3.9, 7.4, 0.0, 79.5, 51.9, 48.1,20.5,0.0 +1,1,a-cure-i1,2018-19,Westwood - Paul Hanlon,03350015, 0.0, 16.8, 1.3, 4.9, 3.1, 0.0, 73.9, 48.2, 51.8,26.099999999999994,0.0 +6.243902439024388,5,a-cure-i1,2018-19,Westwood - Westwood High,03350505, 0.0, 9.0, 3.4, 2.6, 1.4, 0.0, 83.6, 53.7, 46.2,16.400000000000006,6.3999999999999995 +1,1,a-cure-i1,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, 17.1, 2.4, 2.4, 7.3, 0.0, 70.7, 31.7, 68.3,29.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Westwood - William E Sheehan,03350025, 0.0, 6.6, 1.3, 3.8, 5.7, 0.0, 82.6, 48.9, 51.1,17.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Weymouth - Abigail Adams Middle School,03360310, 0.2, 5.6, 7.0, 10.8, 4.2, 0.0, 72.1, 49.0, 51.0,27.900000000000006,1.8 +1,1,a-cure-i1,2018-19,Weymouth - Academy Avenue,03360005, 0.0, 8.9, 4.4, 10.2, 4.8, 0.0, 71.7, 47.8, 52.2,28.299999999999997,0.0 +4.731517509727626,4.73,a-cure-i1,2018-19,Weymouth - Frederick C Murphy,03360050, 0.0, 2.8, 7.0, 12.1, 3.7, 0.0, 74.3, 46.7, 53.3,25.700000000000003,7.6 +4.655518394648828,4.66,a-cure-i1,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 11.9, 5.2, 6.2, 6.7, 0.0, 70.1, 45.9, 54.1,29.900000000000006,8.7 +1,1,a-cure-i1,2018-19,Weymouth - Lawrence W Pingree,03360065, 0.0, 4.1, 6.7, 5.7, 4.7, 0.0, 78.8, 57.0, 43.0,21.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0.3, 5.0, 7.4, 9.6, 3.2, 0.2, 74.3, 48.9, 51.1,25.700000000000003,3.4 +1,1,a-cure-i1,2018-19,Weymouth - Ralph Talbot,03360085, 0.0, 7.8, 9.0, 10.2, 3.3, 0.4, 69.4, 49.4, 50.6,30.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Weymouth - Thomas V Nash,03360060, 0.0, 6.3, 3.4, 7.4, 3.4, 0.0, 79.4, 57.1, 42.9,20.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.6, 11.5, 3.2, 9.9, 5.4, 0.3, 69.1, 48.1, 51.9,30.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Weymouth - Wessagusset,03360110, 0.0, 4.7, 3.3, 6.5, 5.5, 0.0, 80.0, 45.1, 54.9,20.0,0.0 +1,1,a-cure-i1,2018-19,Weymouth - Weymouth High School,03360505, 0.1, 5.1, 5.2, 7.9, 3.5, 0.1, 78.2, 48.6, 51.3,21.799999999999997,3.0999999999999996 +1,1,a-cure-i1,2018-19,Weymouth - William Seach,03360080, 0.9, 11.1, 21.4, 16.4, 5.0, 0.0, 45.2, 50.8, 49.2,54.8,0.0 +1,1,a-cure-i1,2018-19,Whately - Whately Elementary,03370005, 0.0, 0.7, 0.7, 5.0, 2.2, 0.0, 91.4, 49.6, 50.4,8.599999999999994,0.0 +1,1,a-cure-i1,2018-19,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 1.0, 0.8, 3.5, 1.5, 0.0, 93.1, 45.3, 54.7,6.900000000000006,3.5 +1,1,a-cure-i1,2018-19,Whitman-Hanson - Indian Head,07800035, 0.2, 1.4, 0.8, 3.9, 2.9, 0.0, 90.9, 47.4, 52.6,9.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Whitman-Hanson - John H Duval,07800030, 0.9, 1.4, 1.8, 6.5, 3.8, 0.2, 85.3, 47.2, 52.8,14.700000000000003,0.0 +1,1,a-cure-i1,2018-19,Whitman-Hanson - Louise A Conley,07800010, 0.4, 0.8, 2.7, 6.8, 2.7, 0.0, 86.7, 47.5, 52.5,13.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.4, 1.2, 2.8, 3.3, 2.7, 0.2, 89.4, 51.0, 49.0,10.599999999999994,0.0 +5.783132530120484,5,a-cure-i1,2018-19,Whitman-Hanson - Whitman Middle,07800310, 0.9, 1.4, 4.7, 6.2, 3.3, 0.2, 83.4, 47.9, 52.1,16.599999999999994,6.0 +1,1,a-cure-i1,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.3, 1.0, 2.3, 20.9, 3.5, 0.0, 71.9, 46.0, 54.0,28.099999999999994,1.1 +1,1,a-cure-i1,2018-19,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 1.4, 2.0, 4.8, 0.0, 0.0, 91.8, 50.3, 49.7,8.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Wilmington - Boutwell,03420005, 0.0, 6.7, 0.7, 1.5, 4.4, 0.0, 86.7, 45.9, 54.1,13.299999999999997,0.0 +1,1,a-cure-i1,2018-19,Wilmington - North Intermediate,03420060, 0.0, 3.4, 0.8, 3.0, 3.8, 0.0, 89.1, 46.0, 54.0,10.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Wilmington - Shawsheen Elementary,03420025, 0.0, 6.6, 1.1, 5.5, 2.8, 0.0, 83.9, 50.4, 49.6,16.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Wilmington - West Intermediate,03420080, 0.0, 5.5, 1.3, 8.9, 3.4, 0.0, 80.9, 49.2, 50.8,19.099999999999994,0.0 +9.012658227848103,5,a-cure-i1,2018-19,Wilmington - Wildwood,03420015, 0.0, 5.8, 1.2, 3.5, 5.3, 0.0, 84.2, 38.6, 61.4,15.799999999999997,8.9 +1,1,a-cure-i1,2018-19,Wilmington - Wilmington High,03420505, 0.1, 5.4, 1.7, 3.9, 2.5, 0.0, 86.4, 51.1, 48.7,13.599999999999994,4.6 +1,1,a-cure-i1,2018-19,Wilmington - Wilmington Middle School,03420330, 0.3, 4.1, 1.3, 4.6, 3.6, 0.0, 86.2, 49.9, 50.1,13.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Wilmington - Woburn Street,03420020, 0.2, 5.3, 1.7, 2.6, 4.3, 0.0, 85.9, 51.3, 48.7,14.099999999999994,0.0 +1,1,a-cure-i1,2018-19,Winchendon - Memorial,03430040, 0.0, 1.7, 0.7, 5.0, 4.6, 0.0, 88.1, 44.2, 55.8,11.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 2.6, 0.0, 5.1, 0.0, 92.3, 41.0, 59.0,7.700000000000003,0.0 +7.0508474576271185,5,a-cure-i1,2018-19,Winchendon - Murdock High School,03430515, 0.3, 3.3, 2.0, 9.7, 2.3, 0.0, 82.3, 46.3, 53.7,17.700000000000003,7.800000000000001 +1,1,a-cure-i1,2018-19,Winchendon - Murdock Middle School,03430315, 0.0, 3.5, 2.1, 6.7, 4.6, 0.4, 82.6, 48.2, 51.8,17.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Winchendon - Toy Town Elementary,03430050, 0.0, 1.5, 1.1, 9.5, 3.0, 0.0, 84.8, 43.7, 56.3,15.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 1.3, 5.1, 5.1, 0.0, 88.5, 50.0, 50.0,11.5,0.0 +1,1,a-cure-i1,2018-19,Winchester - Ambrose Elementary,03440045, 0.0, 5.8, 0.3, 1.3, 4.6, 0.0, 88.1, 45.7, 54.3,11.900000000000006,0.0 +1,1,a-cure-i1,2018-19,Winchester - Lincoln Elementary,03440005, 0.0, 9.5, 0.5, 2.3, 8.1, 0.0, 79.6, 49.0, 51.0,20.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Winchester - Lynch Elementary,03440020, 0.0, 27.5, 1.7, 4.5, 7.7, 0.0, 58.7, 43.7, 56.3,41.3,0.0 +2.9672727272727273,2.97,a-cure-i1,2018-19,Winchester - McCall Middle,03440305, 0.4, 17.5, 1.0, 3.3, 5.4, 0.0, 72.5, 50.7, 49.1,27.5,5.1 +1,1,a-cure-i1,2018-19,Winchester - Muraco Elementary,03440040, 0.0, 22.9, 1.3, 1.9, 7.7, 0.0, 66.2, 50.3, 49.7,33.8,0.0 +1,1,a-cure-i1,2018-19,Winchester - Vinson-Owen Elementary,03440025, 0.0, 18.2, 0.5, 3.0, 9.8, 0.0, 68.6, 50.0, 50.0,31.400000000000006,0.0 +1,1,a-cure-i1,2018-19,Winchester - Winchester High School,03440505, 0.2, 17.4, 1.2, 4.6, 3.8, 0.1, 72.6, 51.5, 48.5,27.400000000000006,1.4 +1,1,a-cure-i1,2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.2, 0.2, 1.8, 17.0, 2.2, 0.0, 78.5, 46.0, 54.0,21.5,0.0 +1,1,a-cure-i1,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.8, 1.5, 15.2, 1.7, 0.0, 80.8, 54.2, 45.8,19.200000000000003,0.0 +1,1,a-cure-i1,2018-19,Winthrop - Winthrop High School,03460505, 0.0, 1.0, 1.7, 14.5, 1.0, 0.0, 81.8, 48.2, 51.8,18.200000000000003,0.0 +5.1692307692307695,5,a-cure-i1,2018-19,Winthrop - Winthrop Middle School,03460305, 0.0, 1.1, 0.6, 16.2, 1.5, 0.0, 80.5, 48.9, 51.1,19.5,6.3 +1,1,a-cure-i1,2018-19,Woburn - Clyde Reeves,03470040, 0.7, 6.9, 6.6, 4.2, 4.9, 0.0, 76.7, 50.9, 49.1,23.299999999999997,0.0 +3.555555555555555,3.56,a-cure-i1,2018-19,Woburn - Daniel L Joyce Middle School,03470410, 0.2, 4.4, 7.4, 10.3, 2.5, 0.4, 74.8, 50.6, 49.4,25.200000000000003,5.6 +1,1,a-cure-i1,2018-19,Woburn - Goodyear Elementary School,03470005, 1.0, 5.9, 7.2, 7.9, 4.6, 0.3, 73.0, 46.1, 53.9,27.0,0.0 +1,1,a-cure-i1,2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 8.7, 3.3, 4.8, 1.0, 0.0, 82.2, 49.6, 50.4,17.799999999999997,0.0 +3.529411764705882,3.53,a-cure-i1,2018-19,Woburn - John F Kennedy Middle School,03470405, 0.8, 7.0, 6.2, 10.4, 2.8, 0.0, 72.8, 52.4, 47.6,27.200000000000003,6.0 +1,1,a-cure-i1,2018-19,Woburn - Linscott-Rumford,03470025, 0.5, 15.8, 13.3, 10.8, 4.9, 0.0, 54.7, 58.1, 41.9,45.3,0.0 +1,1,a-cure-i1,2018-19,Woburn - Malcolm White,03470055, 0.9, 4.3, 5.9, 12.1, 5.6, 0.3, 70.8, 55.0, 45.0,29.200000000000003,0.0 +1.8294010889292196,1.83,a-cure-i1,2018-19,Woburn - Mary D Altavesta,03470065, 3.1, 21.5, 11.7, 12.5, 5.5, 0.8, 44.9, 44.9, 55.1,55.1,6.3 +1,1,a-cure-i1,2018-19,Woburn - Shamrock,03470043, 0.3, 6.1, 11.4, 15.2, 2.9, 0.0, 64.1, 44.9, 55.1,35.900000000000006,0.0 +2.9520295202952034,2.95,a-cure-i1,2018-19,Woburn - Woburn High,03470505, 0.2, 6.1, 6.9, 12.0, 1.8, 0.2, 72.9, 52.3, 47.7,27.099999999999994,5.0 +1,1,a-cure-i1,2018-19,Worcester - Belmont Street Community,03480020, 0.2, 7.7, 18.9, 48.8, 5.1, 0.2, 19.2, 46.1, 53.9,80.8,0.0 +2.974512743628186,2.97,a-cure-i1,2018-19,Worcester - Burncoat Middle School,03480405, 0.1, 3.4, 18.5, 41.6, 3.1, 0.0, 33.3, 51.7, 48.3,66.7,12.4 +2.489391796322489,2.49,a-cure-i1,2018-19,Worcester - Burncoat Senior High,03480503, 0.3, 4.9, 19.1, 41.4, 5.0, 0.0, 29.3, 45.5, 54.5,70.7,11.0 +1,1,a-cure-i1,2018-19,Worcester - Burncoat Street,03480035, 0.0, 2.9, 15.2, 54.4, 3.9, 0.0, 23.6, 51.1, 48.9,76.4,0.9 +1,1,a-cure-i1,2018-19,Worcester - Canterbury,03480045, 0.5, 15.6, 14.8, 55.9, 3.6, 0.0, 9.6, 48.2, 51.8,90.4,0.0 +1.2037037037037037,1.2,a-cure-i1,2018-19,Worcester - Chandler Elementary Community,03480050, 0.0, 6.1, 14.4, 63.7, 2.2, 0.0, 13.6, 46.0, 54.0,86.4,6.5 +5.780885780885781,5,a-cure-i1,2018-19,Worcester - Chandler Magnet,03480052, 0.0, 2.5, 2.8, 79.2, 1.3, 0.0, 14.2, 51.8, 48.2,85.8,31.0 +1.1890482398956974,1.19,a-cure-i1,2018-19,Worcester - City View,03480053, 0.2, 1.7, 14.2, 56.2, 4.4, 0.0, 23.3, 50.3, 49.7,76.7,5.7 +3.5063829787234044,3.51,a-cure-i1,2018-19,Worcester - Claremont Academy,03480350, 0.0, 8.4, 9.2, 74.9, 1.5, 0.0, 6.0, 49.5, 50.5,94.0,20.6 +1,1,a-cure-i1,2018-19,Worcester - Clark St Community,03480055, 0.4, 3.6, 23.7, 52.9, 3.6, 0.0, 15.7, 47.8, 52.2,84.3,0.0 +1.1231788079470197,1.12,a-cure-i1,2018-19,Worcester - Columbus Park,03480060, 0.6, 8.4, 11.8, 51.8, 2.8, 0.0, 24.5, 48.4, 51.6,75.5,5.3 +2.870431893687708,2.87,a-cure-i1,2018-19,Worcester - Doherty Memorial High,03480512, 0.1, 6.5, 17.1, 32.1, 4.3, 0.0, 39.8, 46.4, 53.6,60.2,10.8 +3.386565272496831,3.39,a-cure-i1,2018-19,Worcester - Elm Park Community,03480095, 0.0, 3.1, 12.9, 60.1, 2.9, 0.0, 21.1, 46.9, 53.1,78.9,16.7 +1,1,a-cure-i1,2018-19,Worcester - Flagg Street,03480090, 0.3, 4.6, 5.9, 14.2, 3.9, 0.0, 71.1, 52.8, 47.2,28.900000000000006,0.0 +5.066666666666666,5,a-cure-i1,2018-19,Worcester - Forest Grove Middle,03480415, 0.2, 5.8, 14.9, 34.5, 4.6, 0.0, 40.0, 49.9, 50.1,60.0,19.0 +3.4085850556438793,3.41,a-cure-i1,2018-19,Worcester - Francis J McGrath Elementary,03480177, 0.0, 4.5, 17.6, 33.1, 7.8, 0.0, 37.1, 51.0, 49.0,62.9,13.4 +1,1,a-cure-i1,2018-19,Worcester - Gates Lane,03480110, 1.1, 12.7, 15.7, 37.3, 5.4, 0.0, 27.8, 41.4, 58.6,72.2,1.7 +3.477456647398844,3.48,a-cure-i1,2018-19,Worcester - Goddard School/Science Technical,03480100, 1.0, 11.8, 10.1, 60.2, 3.4, 0.0, 13.5, 47.4, 52.6,86.5,18.8 +1.0376134889753568,1.04,a-cure-i1,2018-19,Worcester - Grafton Street,03480115, 0.2, 4.7, 14.2, 52.5, 5.5, 0.0, 22.9, 47.0, 53.0,77.1,5.0 +6.862385321100917,5,a-cure-i1,2018-19,Worcester - Head Start,03480002, 0.7, 1.6, 19.4, 18.0, 3.8, 0.0, 56.4, 52.6, 47.4,43.6,18.7 +5.6895306859205785,5,a-cure-i1,2018-19,Worcester - Heard Street,03480136, 0.0, 9.1, 12.6, 28.1, 5.6, 0.0, 44.6, 50.2, 49.8,55.4,19.700000000000003 +1,1,a-cure-i1,2018-19,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 3.4, 30.0, 49.3, 4.6, 0.0, 12.7, 51.0, 49.0,87.3,1.0 +6.282398452611218,5,a-cure-i1,2018-19,Worcester - Lake View,03480145, 0.3, 7.3, 16.7, 20.4, 7.0, 0.0, 48.3, 48.0, 52.0,51.7,20.3 +1,1,a-cure-i1,2018-19,Worcester - Lincoln Street,03480160, 0.4, 5.1, 23.9, 54.5, 2.0, 0.0, 14.1, 49.8, 50.2,85.9,0.0 +1.5746924428822495,1.57,a-cure-i1,2018-19,Worcester - May Street,03480175, 0.3, 9.6, 13.9, 23.5, 9.3, 0.3, 43.1, 53.0, 47.0,56.9,5.6 +1,1,a-cure-i1,2018-19,Worcester - Midland Street,03480185, 0.0, 10.0, 5.7, 15.2, 8.7, 0.0, 60.4, 50.4, 49.6,39.6,3.4000000000000004 +1,1,a-cure-i1,2018-19,Worcester - Nelson Place,03480200, 0.0, 6.0, 11.8, 19.5, 6.2, 0.0, 56.5, 41.2, 58.8,43.5,3.4 +2.6582278481012658,2.66,a-cure-i1,2018-19,Worcester - Norrback Avenue,03480202, 0.0, 4.3, 24.0, 29.7, 5.2, 0.0, 36.8, 47.0, 53.0,63.2,10.5 +4.607228915662651,4.61,a-cure-i1,2018-19,Worcester - North High,03480515, 0.2, 6.7, 21.7, 50.7, 3.5, 0.0, 17.0, 46.4, 53.6,83.0,23.9 +1.9538670284938942,1.95,a-cure-i1,2018-19,Worcester - Quinsigamond,03480210, 0.0, 7.0, 18.9, 43.6, 4.2, 0.0, 26.3, 48.1, 51.9,73.7,9.0 +6.647444298820446,5,a-cure-i1,2018-19,Worcester - Rice Square,03480215, 0.0, 5.7, 18.3, 46.8, 5.5, 0.0, 23.7, 48.9, 51.1,76.3,31.7 +4.638078902229846,4.64,a-cure-i1,2018-19,Worcester - Roosevelt,03480220, 0.0, 5.1, 19.3, 28.8, 4.9, 0.1, 41.7, 51.3, 48.7,58.3,16.9 +3.9593908629441628,3.96,a-cure-i1,2018-19,Worcester - South High Community,03480520, 0.1, 12.2, 16.9, 46.2, 3.4, 0.0, 21.2, 49.7, 50.3,78.8,19.5 +3.094039735099338,3.09,a-cure-i1,2018-19,Worcester - Sullivan Middle,03480423, 0.2, 9.2, 15.1, 46.7, 4.3, 0.0, 24.5, 49.7, 50.3,75.5,14.6 +2.957983193277311,2.96,a-cure-i1,2018-19,Worcester - Tatnuck,03480230, 0.0, 6.1, 22.9, 25.9, 4.4, 0.2, 40.5, 51.0, 49.0,59.5,11.0 +1,1,a-cure-i1,2018-19,Worcester - Thorndyke Road,03480235, 0.0, 5.6, 18.8, 28.0, 3.2, 0.0, 44.4, 46.2, 53.8,55.6,0.9 +1.1571072319201994,1.16,a-cure-i1,2018-19,Worcester - Union Hill School,03480240, 0.0, 1.7, 10.8, 64.8, 2.9, 0.0, 19.8, 50.4, 49.6,80.2,5.8 +1.3039647577092512,1.3,a-cure-i1,2018-19,Worcester - University Pk Campus School,03480285, 0.4, 20.8, 12.1, 53.3, 4.2, 0.0, 9.2, 50.0, 50.0,90.8,7.4 +1,1,a-cure-i1,2018-19,Worcester - Vernon Hill School,03480280, 0.0, 2.7, 23.2, 48.0, 4.6, 0.0, 21.5, 48.2, 51.8,78.5,4.699999999999999 +1,1,a-cure-i1,2018-19,Worcester - Wawecus Road School,03480026, 0.0, 6.9, 9.7, 41.0, 4.9, 0.0, 37.5, 49.3, 50.7,62.5,0.0 +2.515970515970516,2.52,a-cure-i1,2018-19,Worcester - West Tatnuck,03480260, 0.3, 5.7, 8.6, 18.3, 7.8, 0.0, 59.3, 49.6, 50.4,40.7,6.4 +1,1,a-cure-i1,2018-19,Worcester - Woodland Academy,03480030, 0.3, 7.0, 8.8, 73.5, 2.2, 0.0, 8.2, 49.0, 51.0,91.8,0.0 +1,1,a-cure-i1,2018-19,Worcester - Worcester Arts Magnet School,03480225, 0.2, 5.9, 17.2, 21.2, 6.2, 0.0, 49.3, 49.3, 50.7,50.7,0.0 +3.882352941176471,3.88,a-cure-i1,2018-19,Worcester - Worcester East Middle,03480420, 0.1, 7.3, 19.1, 50.4, 4.7, 0.0, 18.4, 50.5, 49.5,81.6,19.8 +2.2025316455696204,2.2,a-cure-i1,2018-19,Worcester - Worcester Technical High,03480605, 0.1, 7.1, 16.3, 36.0, 3.5, 0.1, 36.8, 54.6, 45.4,63.2,8.700000000000001 +1,1,a-cure-i1,2018-19,Worthington - R. H. Conwell,03490010, 2.7, 0.0, 0.0, 4.1, 4.1, 0.0, 89.2, 52.7, 47.3,10.799999999999997,0.0 +1,1,a-cure-i1,2018-19,Wrentham - Charles E Roderick,03500010, 0.7, 2.0, 1.4, 3.6, 4.3, 0.0, 88.0, 45.2, 54.8,12.0,0.0 +1,1,a-cure-i1,2018-19,Wrentham - Delaney,03500003, 0.0, 3.0, 1.6, 4.4, 4.8, 0.2, 86.1, 49.2, 50.8,13.900000000000006,0.0 +1.393939393939394,1.39,a-cure-i1,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.1, 4.1, 49.8, 22.3, 2.8, 0.1, 20.8, 53.5, 46.5,79.2,6.9 +1,1,a-cure-i1,2017-18,Abington - Abington Early Education Program,00010001, 0.0, 4.8, 10.7, 1.2, 0.0, 0.0, 83.3, 46.4, 53.6,16.700000000000003,0.0 +5.236363636363636,5,a-cure-i1,2017-18,Abington - Abington High,00010505, 0.4, 1.9, 3.3, 9.8, 1.0, 0.2, 83.5, 52.1, 47.9,16.5,5.4 +14.857142857142854,5,a-cure-i1,2017-18,Abington - Abington Middle School,00010405, 0.1, 1.9, 2.2, 6.1, 0.9, 0.0, 88.8, 48.3, 51.7,11.200000000000003,10.4 +1,1,a-cure-i1,2017-18,Abington - Beaver Brook Elementary,00010020, 0.5, 2.1, 3.5, 9.0, 0.2, 0.2, 84.4, 50.9, 49.1,15.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Abington - Woodsdale Elementary School,00010015, 0.3, 1.6, 2.5, 8.8, 0.6, 0.0, 86.2, 46.4, 53.6,13.799999999999997,0.0 +6.859649122807018,5,a-cure-i1,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 1.3, 59.7, 27.9, 2.1, 0.2, 8.8, 50.8, 49.2,91.2,39.1 +1,1,a-cure-i1,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.2, 30.6, 2.0, 3.2, 4.4, 0.0, 59.6, 48.5, 51.5,40.4,3.8 +1,1,a-cure-i1,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0.4, 32.7, 1.6, 3.4, 3.6, 0.0, 58.4, 49.2, 50.8,41.6,0.0 +1,1,a-cure-i1,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.2, 21.8, 0.5, 3.0, 7.0, 0.5, 67.0, 48.2, 51.8,33.0,0.0 +1,1,a-cure-i1,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 43.2, 7.2, 5.4, 4.5, 0.0, 39.6, 42.3, 57.7,60.4,0.0 +1,1,a-cure-i1,2017-18,Acton-Boxborough - Luther Conant School,06000030, 0.0, 62.7, 2.9, 6.1, 3.6, 0.2, 24.4, 49.5, 50.5,75.6,4.1 +1,1,a-cure-i1,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0.6, 10.5, 3.5, 9.7, 5.1, 0.0, 70.6, 48.0, 52.0,29.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Acton-Boxborough - Merriam School,06000010, 0.0, 19.7, 2.2, 6.2, 3.2, 0.2, 68.5, 47.6, 52.4,31.5,3.9 +1,1,a-cure-i1,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.5, 55.0, 3.0, 5.2, 3.0, 0.0, 33.3, 47.3, 52.7,66.7,0.0 +1,1,a-cure-i1,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 34.4, 2.3, 3.5, 3.8, 0.0, 55.9, 48.2, 51.8,44.1,1.8 +1,1,a-cure-i1,2017-18,Acushnet - Acushnet Elementary School,00030025, 0.2, 0.2, 0.7, 4.4, 2.5, 0.0, 92.0, 48.0, 52.0,8.0,3.4 +1,1,a-cure-i1,2017-18,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 1.0, 1.9, 0.7, 0.0, 96.4, 46.5, 53.5,3.5999999999999943,3.5 +1,1,a-cure-i1,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.5, 3.5, 2.5, 3.5, 0.2, 89.8, 49.6, 50.4,10.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0.2, 2.2, 5.8, 2.2, 0.2, 0.0, 89.4, 50.4, 49.6,10.599999999999994,3.3 +1,1,a-cure-i1,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.2, 0.0, 4.0, 3.0, 1.0, 0.0, 91.8, 48.6, 51.4,8.200000000000003,0.0 +4.830188679245284,4.83,a-cure-i1,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.2, 17.4, 1.9, 5.4, 6.8, 0.0, 68.2, 47.6, 52.4,31.799999999999997,9.600000000000001 +1,1,a-cure-i1,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, 8.6, 1.8, 13.5, 1.8, 0.0, 74.2, 46.0, 54.0,25.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Agawam - Agawam High,00050505, 0.0, 1.8, 1.5, 5.4, 2.0, 0.1, 89.3, 48.3, 51.7,10.700000000000003,1.0 +1,1,a-cure-i1,2017-18,Agawam - Agawam Junior High,00050405, 0.0, 3.5, 2.3, 8.7, 3.0, 0.0, 82.5, 48.9, 51.1,17.5,0.0 +1,1,a-cure-i1,2017-18,Agawam - Benjamin J Phelps,00050020, 0.0, 3.6, 1.5, 5.4, 2.6, 0.0, 86.9, 43.3, 56.7,13.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Agawam - Clifford M Granger,00050010, 0.0, 0.7, 1.1, 12.5, 3.6, 0.4, 81.8, 51.1, 48.9,18.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Agawam - James Clark School,00050030, 0.0, 3.5, 3.5, 10.9, 2.4, 0.0, 79.7, 46.8, 53.2,20.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Agawam - Roberta G. Doering School,00050303, 0.0, 3.3, 3.3, 5.6, 2.6, 0.0, 85.1, 47.4, 52.6,14.900000000000006,2.1 +1,1,a-cure-i1,2017-18,Agawam - Robinson Park,00050025, 0.0, 3.5, 4.0, 10.7, 3.8, 0.0, 78.0, 50.7, 49.3,22.0,0.0 +2.263083451202263,2.26,a-cure-i1,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.7, 0.5, 12.8, 50.8, 5.8, 0.0, 29.3, 54.5, 45.5,70.7,10.0 +1,1,a-cure-i1,2017-18,Amesbury - Amesbury Elementary,00070005, 0.3, 0.8, 2.0, 7.3, 5.1, 0.3, 84.3, 44.1, 55.9,15.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Amesbury - Amesbury High,00070505, 0.2, 1.4, 1.5, 6.3, 3.5, 0.0, 87.2, 45.8, 54.2,12.799999999999997,2.4 +1,1,a-cure-i1,2017-18,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 2.5, 2.5, 10.0, 0.0, 85.0, 40.0, 60.0,15.0,0.0 +1,1,a-cure-i1,2017-18,Amesbury - Amesbury Middle,00070013, 0.1, 0.7, 1.2, 7.4, 3.4, 0.3, 86.9, 50.2, 49.8,13.099999999999994,1.9 +1,1,a-cure-i1,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 0.2, 1.8, 1.8, 8.6, 1.8, 0.0, 85.8, 44.5, 55.5,14.200000000000003,0.0 +2.0204778156996586,2.02,a-cure-i1,2017-18,Amherst - Crocker Farm Elementary,00080009, 0.5, 16.9, 7.6, 24.0, 9.6, 0.0, 41.4, 47.5, 52.2,58.6,7.4 +5.333333333333334,5,a-cure-i1,2017-18,Amherst - Fort River Elementary,00080020, 0.0, 14.6, 10.1, 22.4, 5.7, 0.0, 47.2, 52.2, 47.8,52.8,17.6 +12.806262230919767,5,a-cure-i1,2017-18,Amherst - Wildwood Elementary,00080050, 0.2, 11.7, 11.9, 19.1, 8.2, 0.0, 48.9, 47.1, 52.9,51.1,40.900000000000006 +5.920374707259953,5,a-cure-i1,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 0.1, 9.1, 7.0, 16.6, 9.6, 0.2, 57.3, 49.0, 50.9,42.7,15.8 +8.603015075376884,5,a-cure-i1,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 9.5, 7.3, 15.1, 7.6, 0.2, 60.2, 47.8, 52.2,39.8,21.4 +5.858267716535432,5,a-cure-i1,2017-18,Andover - Andover High,00090505, 0.1, 16.4, 2.2, 4.7, 2.1, 0.0, 74.6, 52.8, 47.1,25.400000000000006,9.3 +1,1,a-cure-i1,2017-18,Andover - Andover West Middle,00090310, 0.4, 15.4, 2.3, 5.0, 2.7, 0.0, 74.3, 52.6, 47.4,25.700000000000003,2.7 +1,1,a-cure-i1,2017-18,Andover - Bancroft Elementary,00090003, 0.3, 9.0, 3.1, 5.9, 5.0, 0.0, 76.6, 47.6, 52.4,23.400000000000006,3.2 +6.4587155963302765,5,a-cure-i1,2017-18,Andover - Doherty Middle,00090305, 0.5, 12.4, 1.1, 5.0, 2.7, 0.0, 78.2, 50.0, 50.0,21.799999999999997,8.8 +1,1,a-cure-i1,2017-18,Andover - Henry C Sanborn Elementary,00090010, 0.3, 27.1, 1.5, 6.2, 2.3, 0.0, 62.6, 48.2, 51.8,37.4,4.4 +1,1,a-cure-i1,2017-18,Andover - High Plain Elementary,00090004, 0.0, 29.4, 2.6, 6.8, 3.6, 0.0, 57.6, 46.0, 54.0,42.4,0.0 +5.118568232662192,5,a-cure-i1,2017-18,Andover - Shawsheen School,00090005, 0.0, 31.8, 2.4, 8.2, 2.4, 0.0, 55.3, 28.2, 71.8,44.7,14.3 +1,1,a-cure-i1,2017-18,Andover - South Elementary,00090020, 0.2, 17.5, 0.6, 2.9, 1.0, 0.2, 77.6, 49.1, 50.9,22.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Andover - West Elementary,00090025, 0.3, 17.1, 2.5, 6.3, 2.3, 0.0, 71.5, 49.5, 50.5,28.5,0.0 +1,1,a-cure-i1,2017-18,Andover - Wood Hill Middle School,00090350, 0.2, 29.4, 2.2, 8.5, 2.4, 0.0, 57.2, 49.9, 50.1,42.8,4.0 +3.883905013192612,3.88,a-cure-i1,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.5, 2.0, 10.6, 18.8, 5.5, 0.5, 62.1, 47.0, 53.0,37.9,9.2 +5.16535433070866,5,a-cure-i1,2017-18,Arlington - Arlington High,00100505, 0.0, 10.6, 4.4, 6.4, 3.8, 0.2, 74.6, 50.6, 49.1,25.400000000000006,8.2 +5.423728813559324,5,a-cure-i1,2017-18,Arlington - Brackett,00100010, 0.0, 10.5, 1.2, 4.9, 6.8, 0.2, 76.4, 47.1, 52.9,23.599999999999994,8.0 +1,1,a-cure-i1,2017-18,Arlington - Cyrus E Dallin,00100025, 0.0, 13.5, 1.5, 4.4, 4.0, 0.2, 76.5, 48.2, 51.8,23.5,4.0 +4.095238095238096,4.1,a-cure-i1,2017-18,Arlington - Hardy,00100030, 0.2, 14.4, 4.8, 8.7, 5.2, 0.2, 66.4, 45.6, 54.1,33.599999999999994,8.6 +1,1,a-cure-i1,2017-18,Arlington - John A Bishop,00100005, 0.0, 15.7, 3.8, 3.3, 5.5, 0.7, 71.0, 46.2, 53.8,29.0,0.0 +1,1,a-cure-i1,2017-18,Arlington - M Norcross Stratton,00100055, 0.0, 15.2, 2.7, 5.0, 6.7, 0.0, 70.4, 49.3, 50.7,29.599999999999994,4.4 +1,1,a-cure-i1,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, 21.2, 4.7, 9.4, 8.2, 0.0, 56.5, 31.8, 68.2,43.5,0.0 +5.31297709923664,5,a-cure-i1,2017-18,Arlington - Ottoson Middle,00100410, 0.0, 10.7, 3.9, 5.7, 5.9, 0.1, 73.8, 53.9, 46.1,26.200000000000003,8.7 +3.4539682539682537,3.45,a-cure-i1,2017-18,Arlington - Peirce,00100045, 0.0, 13.1, 3.9, 9.5, 4.9, 0.0, 68.5, 49.2, 50.8,31.5,6.8 +1,1,a-cure-i1,2017-18,Arlington - Thompson,00100050, 0.6, 14.9, 5.1, 10.4, 5.1, 0.2, 63.6, 48.5, 51.5,36.4,0.0 +15.101123595505605,5,a-cure-i1,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 1.1, 0.2, 4.9, 2.7, 0.0, 91.1, 50.5, 49.5,8.900000000000006,8.399999999999999 +1,1,a-cure-i1,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.6, 0.6, 6.2, 0.6, 0.0, 92.0, 50.0, 50.0,8.0,0.0 +1,1,a-cure-i1,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 1.4, 0.6, 2.6, 1.4, 0.0, 94.0, 51.3, 48.7,6.0,4.4 +1,1,a-cure-i1,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 0.2, 0.5, 0.5, 4.2, 1.2, 0.0, 93.4, 50.6, 49.4,6.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.6, 5.0, 2.4, 0.0, 91.0, 45.4, 54.6,9.0,0.0 +1,1,a-cure-i1,2017-18,Ashland - Ashland High,00140505, 0.3, 9.9, 2.3, 10.9, 2.7, 0.0, 73.9, 51.6, 48.2,26.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Ashland - Ashland Middle,00140405, 0.5, 14.1, 2.2, 12.0, 2.8, 0.0, 68.4, 50.6, 49.4,31.599999999999994,2.5 +1,1,a-cure-i1,2017-18,Ashland - David Mindess,00140015, 1.5, 13.9, 2.2, 9.9, 3.7, 0.0, 68.8, 49.6, 50.4,31.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Ashland - Henry E Warren Elementary,00140010, 0.0, 16.8, 2.1, 12.4, 4.6, 0.2, 63.9, 50.7, 49.3,36.1,0.0 +7.936507936507936,5,a-cure-i1,2017-18,Ashland - William Pittaway Elementary,00140005, 0.8, 22.0, 2.4, 0.0, 0.0, 0.0, 74.8, 43.3, 56.7,25.200000000000003,12.5 +1,1,a-cure-i1,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.4, 0.4, 0.6, 14.1, 2.3, 0.0, 82.2, 40.4, 59.5,17.799999999999997,3.2 +1,1,a-cure-i1,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.5, 1.0, 9.5, 4.5, 0.0, 83.6, 46.7, 53.3,16.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Athol-Royalston - Athol High,06150505, 0.0, 0.8, 2.2, 8.2, 1.9, 0.0, 87.0, 47.6, 52.4,13.0,0.0 +1,1,a-cure-i1,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.8, 1.8, 10.2, 4.6, 0.0, 82.6, 48.6, 51.4,17.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.7, 1.4, 2.2, 2.9, 0.0, 92.8, 49.6, 50.4,7.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.1, 1.7, 5.0, 10.8, 4.0, 0.0, 78.4, 53.1, 46.9,21.599999999999994,4.0 +1,1,a-cure-i1,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.3, 3.9, 4.4, 17.2, 7.3, 0.3, 66.7, 47.7, 52.3,33.3,4.2 +4.94308943089431,4.94,a-cure-i1,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 1.6, 4.9, 14.8, 3.3, 0.0, 75.4, 42.6, 57.4,24.599999999999994,7.6 +4.067796610169491,4.07,a-cure-i1,2017-18,Attleboro - Attleboro High,00160505, 0.4, 4.4, 5.8, 13.6, 5.0, 0.3, 70.5, 47.0, 53.0,29.5,7.5 +1,1,a-cure-i1,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.3, 4.5, 6.0, 19.6, 5.8, 0.0, 63.7, 46.4, 53.6,36.3,0.0 +1,1,a-cure-i1,2017-18,Attleboro - Early Learning Center,00160008, 0.0, 3.8, 5.4, 10.9, 7.1, 0.0, 72.8, 40.2, 59.8,27.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 0.9, 6.1, 5.9, 11.1, 8.1, 0.0, 67.9, 47.8, 52.2,32.099999999999994,0.0 +6.4797507788162,5,a-cure-i1,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 5.4, 4.1, 14.5, 8.1, 0.0, 67.9, 49.9, 50.1,32.099999999999994,13.0 +1,1,a-cure-i1,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 0.5, 6.7, 5.7, 11.7, 9.0, 0.0, 66.4, 48.8, 51.2,33.599999999999994,3.8 +1,1,a-cure-i1,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 3.3, 3.6, 11.3, 6.3, 0.0, 75.5, 48.5, 51.5,24.5,0.0 +1,1,a-cure-i1,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 3.9, 7.6, 14.1, 9.9, 0.0, 64.4, 49.0, 51.0,35.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Attleboro - Wamsutta Middle School,00160320, 0.2, 6.1, 6.3, 17.0, 3.3, 0.2, 67.0, 46.7, 53.3,33.0,2.3 +1,1,a-cure-i1,2017-18,Auburn - Auburn Middle,00170305, 0.0, 3.5, 1.4, 7.9, 3.2, 0.0, 84.0, 46.4, 53.6,16.0,4.6 +1,1,a-cure-i1,2017-18,Auburn - Auburn Senior High,00170505, 0.2, 5.0, 2.0, 6.2, 3.2, 0.0, 83.3, 53.4, 46.6,16.700000000000003,1.9000000000000001 +1,1,a-cure-i1,2017-18,Auburn - Bryn Mawr,00170010, 0.0, 2.0, 1.0, 10.7, 3.3, 0.0, 82.9, 48.8, 51.2,17.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Auburn - Pakachoag School,00170025, 0.0, 4.3, 2.3, 8.0, 4.3, 0.0, 81.1, 46.2, 53.8,18.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Auburn - Swanson Road Intermediate School,00170030, 0.0, 4.5, 1.9, 9.9, 3.3, 0.0, 80.4, 52.0, 48.0,19.599999999999994,0.0 +6.292490118577074,5,a-cure-i1,2017-18,Avon - Avon Middle High School,00180510, 0.0, 4.5, 35.3, 6.7, 4.2, 0.0, 49.4, 47.1, 52.2,50.6,19.9 +1,1,a-cure-i1,2017-18,Avon - Ralph D Butler,00180010, 1.0, 4.3, 23.4, 8.9, 4.6, 0.0, 57.7, 45.7, 54.3,42.3,0.0 +1,1,a-cure-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.0, 2.2, 7.3, 9.5, 8.3, 0.0, 71.6, 51.1, 48.9,28.400000000000006,3.4 +11.689497716894975,5,a-cure-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.1, 2.4, 3.8, 10.0, 3.5, 1.1, 78.1, 48.1, 51.9,21.900000000000006,16.0 +1,1,a-cure-i1,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 1.8, 1.8, 9.0, 3.8, 0.3, 83.5, 46.8, 53.3,16.5,4.3 +1,1,a-cure-i1,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.2, 3.6, 4.9, 12.1, 5.5, 0.2, 73.4, 47.1, 52.9,26.599999999999994,0.0 +4.851985559566787,4.85,a-cure-i1,2017-18,Barnstable - Barnstable High,00200505, 0.6, 2.3, 8.8, 11.8, 3.7, 0.4, 72.3, 50.1, 49.9,27.700000000000003,8.4 +1,1,a-cure-i1,2017-18,Barnstable - Barnstable Intermediate School,00200315, 0.3, 1.9, 7.7, 13.0, 5.8, 0.0, 71.2, 50.3, 49.7,28.799999999999997,2.3 +1,1,a-cure-i1,2017-18,Barnstable - Barnstable United Elementary School,00200050, 0.4, 2.2, 6.0, 13.5, 3.4, 0.5, 74.1, 48.3, 51.7,25.900000000000006,4.4 +1,1,a-cure-i1,2017-18,Barnstable - Centerville Elementary,00200010, 0.0, 1.5, 5.4, 8.1, 5.8, 0.0, 79.2, 47.1, 52.9,20.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 1.5, 0.7, 8.1, 19.3, 7.4, 0.0, 63.0, 44.4, 55.6,37.0,0.0 +1.8734177215189873,1.87,a-cure-i1,2017-18,Barnstable - Hyannis West Elementary,00200025, 0.3, 3.3, 16.5, 32.6, 10.5, 0.0, 36.8, 46.1, 53.9,63.2,7.4 +1,1,a-cure-i1,2017-18,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.8, 5.0, 7.3, 4.6, 0.0, 82.3, 44.6, 55.4,17.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Barnstable - West Villages Elementary School,00200045, 0.2, 0.2, 2.8, 5.3, 4.4, 0.0, 87.0, 48.5, 51.5,13.0,0.0 +1,1,a-cure-i1,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.7, 3.3, 17.3, 24.1, 4.9, 0.0, 49.8, 48.9, 50.8,50.2,0.0 +3.6962025316455693,3.7,a-cure-i1,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.9, 25.8, 66.7, 1.1, 0.2, 5.2, 49.2, 50.8,94.8,21.9 +4.0,4.0,a-cure-i1,2017-18,Bedford - Bedford High,00230505, 0.0, 12.0, 7.1, 7.8, 5.6, 0.2, 67.2, 49.4, 50.3,32.8,8.2 +1,1,a-cure-i1,2017-18,Bedford - John Glenn Middle,00230305, 0.0, 16.6, 6.0, 5.3, 4.3, 0.0, 67.8, 48.5, 51.5,32.2,0.4 +2.75,2.75,a-cure-i1,2017-18,Bedford - Lt Elezer Davis,00230010, 0.0, 18.9, 5.5, 5.5, 8.4, 0.0, 61.6, 51.8, 48.2,38.4,6.6 +1,1,a-cure-i1,2017-18,Bedford - Lt Job Lane School,00230012, 0.0, 17.7, 5.3, 3.9, 3.0, 0.0, 70.1, 47.5, 52.5,29.900000000000006,3.1 +1,1,a-cure-i1,2017-18,Belchertown - Belchertown High,00240505, 0.3, 1.7, 2.1, 3.5, 1.7, 0.1, 90.6, 48.2, 51.8,9.400000000000006,2.2 +1,1,a-cure-i1,2017-18,Belchertown - Chestnut Hill Community School,00240006, 0.2, 2.2, 2.2, 4.3, 1.6, 0.4, 89.2, 51.8, 48.2,10.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Belchertown - Cold Spring,00240005, 0.0, 2.1, 0.5, 8.3, 3.6, 0.0, 85.5, 50.8, 49.2,14.5,0.0 +1,1,a-cure-i1,2017-18,Belchertown - Jabish Middle School,00240025, 0.0, 2.0, 1.0, 1.8, 2.8, 0.5, 92.0, 47.5, 52.5,8.0,0.0 +1,1,a-cure-i1,2017-18,Belchertown - Swift River Elementary,00240018, 0.6, 1.1, 2.4, 4.9, 4.7, 0.0, 86.3, 48.6, 51.4,13.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 2.7, 2.7, 1.8, 2.7, 0.9, 89.1, 46.4, 53.6,10.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Bellingham - Bellingham High School,00250505, 0.3, 3.0, 2.4, 4.7, 2.2, 0.0, 87.4, 47.8, 52.2,12.599999999999994,3.9 +1,1,a-cure-i1,2017-18,Bellingham - Bellingham Memorial School,00250315, 0.3, 3.9, 1.9, 4.2, 1.9, 0.0, 87.8, 50.9, 49.1,12.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 11.8, 0.0, 0.0, 88.2, 41.2, 55.9,11.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Bellingham - South Elementary,00250020, 0.0, 1.2, 1.2, 4.5, 1.2, 0.6, 91.3, 48.7, 51.3,8.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Bellingham - Stall Brook,00250025, 0.0, 1.6, 3.1, 3.7, 2.8, 2.2, 86.6, 48.8, 51.2,13.400000000000006,0.0 +5.3156146179402,5,a-cure-i1,2017-18,Belmont - Belmont High,00260505, 0.1, 17.5, 4.2, 3.7, 4.6, 0.1, 69.9, 51.5, 48.5,30.099999999999994,10.0 +4.986547085201793,4.99,a-cure-i1,2017-18,Belmont - Daniel Butler,00260015, 0.5, 26.0, 3.1, 7.2, 7.7, 0.0, 55.4, 45.6, 54.4,44.6,13.899999999999999 +1,1,a-cure-i1,2017-18,Belmont - Mary Lee Burbank,00260010, 0.0, 19.5, 3.2, 4.0, 9.4, 0.5, 63.4, 49.2, 50.8,36.6,4.6 +1,1,a-cure-i1,2017-18,Belmont - Roger E Wellington,00260035, 0.0, 15.5, 1.9, 3.2, 9.4, 0.0, 69.9, 46.4, 53.6,30.099999999999994,2.7 +1,1,a-cure-i1,2017-18,Belmont - Winn Brook,00260005, 0.2, 25.9, 2.0, 3.7, 7.6, 0.0, 60.6, 46.5, 53.5,39.4,0.9 +7.207207207207208,5,a-cure-i1,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 0.1, 17.8, 3.9, 4.9, 6.5, 0.1, 66.7, 50.9, 49.1,33.3,15.0 +5.4367346938775505,5,a-cure-i1,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.8, 84.7, 11.0, 1.4, 0.0, 2.0, 50.6, 49.4,98.0,33.3 +1,1,a-cure-i1,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 22.6, 2.3, 3.6, 4.1, 0.0, 67.5, 51.5, 48.5,32.5,0.0 +1.3236574746008707,1.32,a-cure-i1,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 3.7, 14.5, 48.6, 2.0, 0.0, 31.1, 49.3, 50.7,68.9,5.7 +1,1,a-cure-i1,2017-18,Berkley - Berkley Community School,00270010, 0.2, 0.2, 0.4, 0.9, 3.2, 0.0, 95.1, 51.4, 48.6,4.900000000000006,3.6 +1,1,a-cure-i1,2017-18,Berkley - Berkley Middle School,00270305, 0.0, 0.5, 0.5, 2.0, 2.8, 0.0, 94.1, 49.9, 50.1,5.900000000000006,0.0 +3.7006802721088428,3.7,a-cure-i1,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.3, 3.4, 12.4, 8.8, 4.2, 0.3, 70.6, 50.0, 50.0,29.400000000000006,6.8 +5.6598639455782305,5,a-cure-i1,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 1.9, 2.1, 6.5, 3.8, 0.4, 85.3, 46.8, 53.2,14.700000000000003,5.2 +4.558659217877093,4.56,a-cure-i1,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.3, 3.7, 1.9, 7.8, 4.3, 0.0, 82.1, 50.5, 49.5,17.900000000000006,5.1 +1,1,a-cure-i1,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 2.6, 0.9, 11.2, 8.6, 0.0, 76.7, 47.1, 52.9,23.299999999999997,0.2 +1,1,a-cure-i1,2017-18,Berlin - Berlin Memorial,00280005, 0.0, 1.6, 0.0, 4.9, 2.7, 0.0, 90.7, 43.7, 56.3,9.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 3.0, 1.9, 3.5, 2.5, 0.0, 89.1, 45.8, 54.2,10.900000000000006,2.0 +1,1,a-cure-i1,2017-18,Beverly - Ayers/Ryal Side School,00300055, 0.0, 4.2, 3.0, 13.0, 3.2, 0.0, 76.6, 46.5, 53.5,23.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Beverly - Beverly High,00300505, 0.0, 2.9, 3.2, 12.1, 3.0, 0.2, 78.6, 50.5, 49.4,21.400000000000006,2.1 +1,1,a-cure-i1,2017-18,Beverly - Briscoe Middle,00300305, 0.0, 2.4, 3.4, 11.2, 3.1, 0.0, 79.8, 46.4, 53.6,20.200000000000003,3.4 +1,1,a-cure-i1,2017-18,Beverly - Centerville Elementary,00300010, 0.0, 0.8, 3.6, 16.3, 4.4, 0.0, 74.9, 48.9, 51.1,25.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Beverly - Cove Elementary,00300015, 0.0, 1.4, 2.4, 12.8, 5.5, 0.2, 77.6, 47.8, 52.2,22.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Beverly - Hannah Elementary,00300033, 0.0, 1.5, 2.0, 13.6, 4.3, 0.0, 78.5, 46.0, 54.0,21.5,0.0 +1,1,a-cure-i1,2017-18,Beverly - McKeown School,00300002, 0.0, 5.3, 3.5, 13.2, 6.1, 0.0, 71.9, 38.6, 61.4,28.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Beverly - North Beverly Elementary,00300040, 0.3, 2.3, 2.5, 15.0, 3.0, 0.0, 76.9, 49.9, 50.1,23.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Billerica - Billerica Memorial High School,00310505, 0.1, 7.2, 3.4, 5.1, 2.0, 0.2, 81.9, 49.3, 50.7,18.099999999999994,2.0 +1,1,a-cure-i1,2017-18,Billerica - Eugene C Vining,00310030, 0.0, 5.6, 2.6, 12.3, 7.2, 0.0, 72.3, 43.1, 56.9,27.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Billerica - Frederick J Dutile,00310007, 0.0, 4.0, 4.8, 5.1, 1.8, 0.0, 84.2, 50.5, 49.5,15.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Billerica - Hajjar Elementary,00310026, 0.2, 9.3, 6.1, 9.1, 2.2, 0.0, 73.2, 49.1, 50.9,26.799999999999997,3.6 +1,1,a-cure-i1,2017-18,Billerica - John F Kennedy,00310012, 0.0, 3.5, 1.3, 4.2, 2.2, 0.0, 88.8, 52.4, 47.6,11.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Billerica - Locke Middle,00310310, 0.0, 6.3, 3.0, 4.7, 3.0, 0.6, 82.4, 47.8, 52.2,17.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Billerica - Marshall Middle School,00310305, 0.3, 6.3, 3.5, 4.9, 1.1, 0.2, 83.7, 49.7, 50.3,16.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Billerica - Parker,00310015, 0.2, 10.8, 5.4, 7.4, 3.2, 0.0, 73.1, 46.0, 54.0,26.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Billerica - Thomas Ditson,00310005, 0.0, 10.3, 5.8, 6.2, 5.2, 0.0, 72.6, 50.6, 49.4,27.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 1.4, 0.4, 3.4, 1.8, 0.0, 93.0, 49.9, 50.1,7.0,2.1 +1,1,a-cure-i1,2017-18,Blackstone-Millville - A F Maloney,06220015, 0.0, 1.7, 1.7, 6.7, 5.4, 0.0, 84.6, 50.8, 49.2,15.400000000000006,0.0 +14.451612903225811,5,a-cure-i1,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.7, 1.0, 5.9, 0.7, 0.0, 90.7, 48.9, 51.1,9.299999999999997,8.4 +9.821782178217827,5,a-cure-i1,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.2, 0.5, 1.9, 3.8, 3.8, 0.0, 89.9, 49.5, 50.5,10.099999999999994,6.2 +1,1,a-cure-i1,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.3, 1.7, 9.1, 5.7, 0.0, 83.1, 43.6, 56.4,16.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Blackstone-Millville - Millville Elementary,06220010, 0.0, 1.4, 0.0, 6.0, 3.2, 0.0, 89.5, 50.5, 49.5,10.5,0.0 +3.3103448275862064,3.31,a-cure-i1,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.7, 0.9, 22.0, 12.4, 4.4, 0.1, 59.4, 44.6, 55.4,40.6,8.399999999999999 +7.078260869565218,5,a-cure-i1,2017-18,Boston - Another Course To College,00350541, 0.0, 4.0, 45.1, 40.2, 2.2, 0.4, 8.0, 45.1, 54.9,92.0,40.7 +12.697050938337803,5,a-cure-i1,2017-18,Boston - Baldwin Early Learning Center,00350003, 0.0, 28.9, 9.2, 31.2, 5.2, 0.0, 25.4, 39.9, 60.1,74.6,59.2 +6.442953020134228,5,a-cure-i1,2017-18,Boston - Beethoven,00350021, 0.0, 2.5, 27.8, 25.9, 3.4, 0.0, 40.4, 51.5, 48.5,59.6,24.0 +4.741968911917098,4.74,a-cure-i1,2017-18,Boston - Blackstone,00350390, 0.2, 1.7, 25.4, 66.8, 2.3, 0.2, 3.5, 46.8, 53.2,96.5,28.6 +12.3302752293578,5,a-cure-i1,2017-18,Boston - Boston Adult Academy,00350548, 0.0, 5.2, 51.3, 40.3, 0.6, 0.6, 1.9, 48.7, 51.3,98.1,75.60000000000001 +9.603686635944701,5,a-cure-i1,2017-18,Boston - Boston Arts Academy,00350546, 0.4, 4.1, 40.3, 37.5, 4.3, 0.2, 13.2, 66.3, 33.7,86.8,52.1 +9.583068783068782,5,a-cure-i1,2017-18,Boston - Boston Collaborative High School,00350755, 0.5, 3.8, 44.0, 45.1, 1.1, 0.0, 5.5, 45.1, 54.9,94.5,56.599999999999994 +8.345626975763961,5,a-cure-i1,2017-18,Boston - Boston Community Leadership Academy,00350558, 0.4, 5.3, 34.8, 52.7, 1.7, 0.0, 5.1, 48.1, 51.9,94.9,49.5 +7.909743589743591,5,a-cure-i1,2017-18,Boston - Boston International High School,00350507, 0.0, 4.1, 43.4, 48.4, 0.8, 0.8, 2.5, 44.5, 55.5,97.5,48.2 +8.902033271719036,5,a-cure-i1,2017-18,Boston - Boston Latin,00350560, 0.1, 29.1, 7.9, 12.7, 4.0, 0.2, 45.9, 55.4, 44.6,54.1,30.099999999999994 +9.065155807365441,5,a-cure-i1,2017-18,Boston - Boston Latin Academy,00350545, 0.3, 21.8, 21.8, 23.5, 3.1, 0.2, 29.4, 57.7, 42.2,70.6,40.00000000000001 +9.632653061224492,5,a-cure-i1,2017-18,Boston - Boston Teachers Union School,00350012, 0.0, 1.7, 25.4, 37.6, 3.8, 0.0, 31.4, 44.9, 55.1,68.6,41.300000000000004 +5.623430962343097,5,a-cure-i1,2017-18,Boston - Brighton High,00350505, 0.7, 4.0, 42.2, 47.7, 0.9, 0.1, 4.4, 38.6, 61.4,95.6,33.6 +1,1,a-cure-i1,2017-18,Boston - Carter Developmental Center,00350036, 0.0, 10.3, 51.7, 20.7, 0.0, 3.4, 13.8, 37.9, 62.1,86.2,0.0 +11.782696177062373,5,a-cure-i1,2017-18,Boston - Charles H Taylor,00350054, 0.9, 0.8, 76.5, 18.8, 2.5, 0.0, 0.6, 48.4, 51.6,99.4,73.2 +8.75261324041812,5,a-cure-i1,2017-18,Boston - Charles Sumner,00350052, 0.0, 1.7, 19.4, 59.9, 4.8, 0.2, 13.9, 46.3, 53.7,86.1,47.1 +7.353620146904512,5,a-cure-i1,2017-18,Boston - Charlestown High,00350515, 0.1, 13.2, 32.6, 48.4, 1.1, 0.0, 4.7, 41.6, 58.3,95.3,43.8 +7.303974221267455,5,a-cure-i1,2017-18,Boston - Clarence R Edwards Middle,00350430, 0.0, 7.5, 13.1, 70.3, 2.3, 0.0, 6.9, 43.8, 56.2,93.1,42.5 +15.182662538699693,5,a-cure-i1,2017-18,Boston - Community Academy,00350518, 0.0, 0.0, 41.8, 21.5, 1.3, 0.0, 35.4, 46.8, 53.2,64.6,61.300000000000004 +8.580183861082737,5,a-cure-i1,2017-18,Boston - Community Academy of Science and Health,00350581, 0.3, 3.1, 66.8, 25.4, 2.3, 0.0, 2.1, 46.3, 53.7,97.9,52.5 +9.250317662007623,5,a-cure-i1,2017-18,Boston - Curley K-8 School,00350020, 0.1, 2.4, 19.3, 51.4, 5.4, 0.1, 21.3, 48.5, 51.5,78.7,45.5 +5.795121951219513,5,a-cure-i1,2017-18,Boston - Curtis Guild,00350062, 0.0, 0.7, 1.0, 80.0, 0.3, 0.0, 18.0, 49.5, 50.5,82.0,29.700000000000003 +2.5709828393135727,2.57,a-cure-i1,2017-18,Boston - Dante Alighieri Montessori School,00350066, 0.0, 1.1, 2.2, 56.5, 4.3, 0.0, 35.9, 58.7, 41.3,64.1,10.3 +10.546201232032853,5,a-cure-i1,2017-18,Boston - David A Ellis,00350072, 0.7, 0.0, 39.6, 54.9, 2.2, 0.0, 2.6, 49.7, 50.3,97.4,64.2 +9.480283114256824,5,a-cure-i1,2017-18,Boston - Dearborn,00350074, 0.3, 0.3, 66.7, 28.0, 3.1, 0.6, 1.1, 48.9, 51.1,98.9,58.599999999999994 +3.3315649867374004,3.33,a-cure-i1,2017-18,Boston - Dennis C Haley,00350077, 0.2, 1.1, 30.6, 37.6, 5.6, 0.2, 24.6, 48.8, 51.2,75.4,15.700000000000001 +3.7016216216216216,3.7,a-cure-i1,2017-18,Boston - Donald Mckay,00350080, 0.1, 0.5, 2.1, 88.9, 0.9, 0.0, 7.5, 50.6, 49.4,92.5,21.4 +14.143646408839778,5,a-cure-i1,2017-18,Boston - Dorchester Academy,00350651, 0.0, 2.4, 69.0, 19.0, 0.0, 0.0, 9.5, 52.4, 47.6,90.5,80.0 +8.629213483146067,5,a-cure-i1,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.5, 1.1, 51.9, 42.9, 1.6, 0.0, 2.1, 47.6, 52.4,97.9,52.8 +8.565413533834585,5,a-cure-i1,2017-18,Boston - Dr. William Henderson Lower,00350266, 0.0, 14.6, 31.6, 16.0, 3.8, 0.5, 33.5, 51.4, 48.6,66.5,35.599999999999994 +7.419689119170985,5,a-cure-i1,2017-18,Boston - Dr. William Henderson Upper,00350426, 0.3, 7.1, 41.4, 25.4, 3.0, 0.0, 22.8, 46.2, 53.8,77.2,35.800000000000004 +16.922252010723863,5,a-cure-i1,2017-18,Boston - East Boston Early Childhood Center,00350009, 0.0, 2.5, 9.6, 59.9, 2.0, 0.5, 25.4, 50.3, 49.7,74.6,78.9 +5.5613048368953875,5,a-cure-i1,2017-18,Boston - East Boston High,00350530, 0.4, 1.6, 7.0, 78.8, 1.2, 0.0, 11.1, 42.8, 57.2,88.9,30.9 +5.916279069767441,5,a-cure-i1,2017-18,Boston - Edison K-8,00350375, 1.4, 16.5, 19.8, 45.5, 2.5, 0.2, 14.0, 46.0, 54.0,86.0,31.799999999999997 +4.236760124610592,4.24,a-cure-i1,2017-18,Boston - Edward Everett,00350088, 0.4, 18.4, 41.5, 30.5, 5.5, 0.0, 3.7, 50.7, 49.3,96.3,25.5 +7.213282247765006,5,a-cure-i1,2017-18,Boston - ELC - West Zone,00350006, 0.9, 7.0, 28.7, 38.3, 3.5, 0.0, 21.7, 42.6, 57.4,78.3,35.3 +13.399014778325123,5,a-cure-i1,2017-18,Boston - Eliot Elementary,00350096, 0.2, 9.3, 7.4, 17.2, 6.5, 0.2, 59.4, 49.6, 50.4,40.6,34.0 +7.9750000000000005,5,a-cure-i1,2017-18,Boston - Ellis Mendell,00350100, 0.4, 0.7, 22.8, 31.8, 8.2, 0.0, 36.0, 49.1, 50.9,64.0,31.900000000000002 +8.785329018338727,5,a-cure-i1,2017-18,Boston - Excel High School,00350522, 0.0, 23.0, 37.3, 30.5, 1.8, 0.0, 7.3, 38.7, 61.3,92.7,50.9 +8.80917622523462,5,a-cure-i1,2017-18,Boston - Fenway High School,00350540, 0.0, 3.3, 31.0, 59.9, 1.4, 0.3, 4.1, 50.8, 49.2,95.9,52.800000000000004 +6.976857490864799,5,a-cure-i1,2017-18,Boston - Franklin D Roosevelt,00350116, 0.4, 1.5, 37.1, 39.7, 3.1, 0.2, 17.9, 47.2, 52.8,82.1,35.8 +7.262672811059909,5,a-cure-i1,2017-18,Boston - Gardner Pilot Academy,00350326, 0.0, 4.5, 11.7, 65.6, 4.7, 0.2, 13.2, 47.4, 52.6,86.8,39.400000000000006 +5.997604790419162,5,a-cure-i1,2017-18,Boston - George H Conley,00350122, 0.0, 3.3, 36.8, 40.1, 3.3, 0.0, 16.5, 47.2, 52.8,83.5,31.3 +12.476767676767677,5,a-cure-i1,2017-18,Boston - Greater Egleston Community High School,00350543, 1.0, 0.0, 36.2, 60.0, 1.9, 0.0, 1.0, 51.4, 48.6,99.0,77.2 +6.158075601374571,5,a-cure-i1,2017-18,Boston - Harvard-Kent,00350200, 0.2, 27.1, 23.5, 33.4, 3.0, 0.2, 12.7, 42.1, 57.9,87.3,33.6 +10.48559670781893,5,a-cure-i1,2017-18,Boston - Haynes Early Education Center,00350010, 0.0, 4.2, 49.5, 38.7, 4.7, 0.0, 2.8, 46.7, 53.3,97.2,63.7 +7.447661469933186,5,a-cure-i1,2017-18,Boston - Henry Grew,00350135, 0.0, 2.0, 40.9, 41.3, 5.1, 0.4, 10.2, 55.5, 44.5,89.8,41.800000000000004 +9.441295546558704,5,a-cure-i1,2017-18,Boston - Higginson,00350015, 0.6, 0.6, 37.4, 57.9, 2.3, 0.0, 1.2, 47.4, 52.6,98.8,58.3 +11.024390243902438,5,a-cure-i1,2017-18,Boston - Higginson/Lewis K-8,00350377, 0.3, 0.3, 49.7, 42.5, 5.5, 0.0, 1.6, 46.1, 53.9,98.4,67.8 +1.0033594624860023,1.0,a-cure-i1,2017-18,Boston - Horace Mann School for the Deaf,00350750, 0.0, 4.8, 33.3, 47.6, 3.6, 0.0, 10.7, 40.5, 59.5,89.3,5.6 +1.5543822597676873,1.55,a-cure-i1,2017-18,Boston - Hugh Roe O'Donnell,00350141, 0.0, 2.0, 1.6, 89.9, 1.2, 0.0, 5.3, 49.0, 51.0,94.7,9.2 +5.466811751904243,5,a-cure-i1,2017-18,Boston - Jackson Mann,00350013, 0.3, 11.6, 37.5, 39.9, 2.6, 0.0, 8.1, 43.3, 56.7,91.9,31.399999999999995 +6.624843161856964,5,a-cure-i1,2017-18,Boston - James Condon Elementary,00350146, 0.1, 7.4, 35.0, 32.9, 3.9, 0.3, 20.3, 48.5, 51.5,79.7,33.0 +6.343975283213183,5,a-cure-i1,2017-18,Boston - James J Chittick,00350154, 0.0, 1.3, 64.4, 26.8, 4.6, 0.0, 2.9, 45.1, 54.9,97.1,38.5 +5.0625,5,a-cure-i1,2017-18,Boston - James Otis,00350156, 0.0, 2.0, 4.4, 68.9, 1.5, 0.0, 23.2, 47.9, 52.1,76.8,24.3 +10.103553299492384,5,a-cure-i1,2017-18,Boston - James P Timilty Middle,00350485, 0.0, 0.6, 30.8, 64.4, 2.1, 0.6, 1.5, 52.6, 47.4,98.5,62.199999999999996 +7.174139728884253,5,a-cure-i1,2017-18,Boston - James W Hennigan,00350153, 0.0, 2.6, 28.5, 63.1, 1.7, 0.0, 4.1, 53.3, 46.7,95.9,42.99999999999999 +9.63914373088685,5,a-cure-i1,2017-18,Boston - Jeremiah E Burke High,00350525, 0.2, 0.6, 71.0, 24.4, 1.7, 0.2, 1.9, 44.9, 55.1,98.1,59.1 +12.251207729468598,5,a-cure-i1,2017-18,Boston - John D Philbrick,00350172, 0.0, 1.2, 47.2, 32.5, 1.8, 0.0, 17.2, 47.9, 52.1,82.8,63.4 +6.3589743589743595,5,a-cure-i1,2017-18,Boston - John F Kennedy,00350166, 0.0, 1.8, 18.1, 71.7, 2.0, 0.0, 6.4, 51.0, 49.0,93.6,37.2 +7.369085173501578,5,a-cure-i1,2017-18,Boston - John W McCormack,00350179, 0.0, 4.9, 29.1, 58.8, 2.4, 0.0, 4.9, 46.1, 53.9,95.1,43.8 +5.5234215885947044,5,a-cure-i1,2017-18,Boston - John Winthrop,00350180, 0.3, 1.8, 59.3, 33.3, 2.1, 1.2, 1.8, 51.4, 48.6,98.2,33.9 +12.587202007528232,5,a-cure-i1,2017-18,Boston - Joseph J Hurley,00350182, 0.3, 1.1, 6.9, 68.9, 2.5, 0.0, 20.3, 48.9, 51.1,79.7,62.7 +4.6849894291754755,4.68,a-cure-i1,2017-18,Boston - Joseph Lee,00350183, 0.2, 5.7, 54.8, 27.7, 5.9, 0.3, 5.4, 45.8, 54.2,94.6,27.7 +4.407345575959933,4.41,a-cure-i1,2017-18,Boston - Joseph P Manning,00350184, 0.0, 3.9, 20.4, 27.0, 7.9, 0.7, 40.1, 52.6, 47.4,59.9,16.5 +6.676691729323308,5,a-cure-i1,2017-18,Boston - Joseph P Tynan,00350181, 0.0, 9.4, 39.1, 27.0, 4.3, 0.0, 20.2, 40.3, 59.7,79.8,33.3 +10.260089686098654,5,a-cure-i1,2017-18,Boston - Josiah Quincy,00350286, 0.1, 58.5, 14.7, 12.1, 3.7, 0.0, 10.8, 50.4, 49.6,89.2,57.199999999999996 +4.993839835728952,4.99,a-cure-i1,2017-18,Boston - Joyce Kilmer,00350190, 0.0, 8.6, 15.2, 19.5, 5.2, 0.2, 51.3, 49.6, 50.4,48.7,15.2 +8.601441812564367,5,a-cure-i1,2017-18,Boston - King K-8,00350376, 0.2, 0.6, 61.2, 31.2, 3.7, 0.2, 2.9, 50.9, 49.1,97.1,52.199999999999996 +5.771611526147278,5,a-cure-i1,2017-18,Boston - Lee Academy,00350001, 0.9, 7.6, 52.5, 27.8, 4.5, 0.4, 6.3, 46.2, 53.8,93.7,33.8 +7.3373737373737375,5,a-cure-i1,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 7.9, 44.1, 43.9, 3.0, 0.0, 1.0, 44.1, 55.9,99.0,45.4 +8.665168539325842,5,a-cure-i1,2017-18,Boston - Lyndon,00350262, 0.0, 2.2, 8.9, 29.6, 3.8, 0.0, 55.5, 47.9, 52.1,44.5,24.099999999999998 +6.061971830985916,5,a-cure-i1,2017-18,Boston - Lyon K-8,00350004, 0.0, 9.9, 20.6, 32.8, 7.6, 0.0, 29.0, 44.3, 55.7,71.0,26.900000000000002 +6.086455331412104,5,a-cure-i1,2017-18,Boston - Lyon Upper 9-12,00350655, 0.8, 6.5, 20.2, 35.5, 6.5, 0.0, 30.6, 44.4, 55.6,69.4,26.400000000000002 +8.048979591836735,5,a-cure-i1,2017-18,Boston - Madison Park High,00350537, 0.2, 1.3, 36.7, 57.5, 2.1, 0.2, 2.0, 42.0, 58.0,98.0,49.300000000000004 +4.281345565749235,4.28,a-cure-i1,2017-18,Boston - Manassah E Bradley,00350215, 0.0, 6.4, 4.1, 52.2, 2.7, 0.0, 34.6, 46.8, 53.2,65.4,17.5 +9.777777777777779,5,a-cure-i1,2017-18,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 2.3, 96.3, 0.3, 0.0, 1.0, 57.7, 42.3,99.0,60.5 +6.029978586723768,5,a-cure-i1,2017-18,Boston - Mario Umana Academy,00350656, 0.0, 2.3, 3.2, 87.3, 0.6, 0.1, 6.6, 47.4, 52.6,93.4,35.199999999999996 +10.729011689691818,5,a-cure-i1,2017-18,Boston - Mather,00350227, 0.5, 32.6, 38.7, 16.3, 6.1, 0.0, 5.9, 50.2, 49.8,94.1,63.1 +7.260361317747079,5,a-cure-i1,2017-18,Boston - Mattapan Early Elementary School,00350016, 0.7, 0.3, 65.2, 26.2, 1.7, 0.0, 5.9, 38.3, 61.7,94.1,42.7 +5.911975435005118,5,a-cure-i1,2017-18,Boston - Maurice J Tobin,00350229, 0.2, 1.2, 32.4, 61.1, 2.6, 0.2, 2.3, 52.2, 47.8,97.7,36.1 +8.300884955752212,5,a-cure-i1,2017-18,Boston - Michael J Perkins,00350231, 0.9, 2.8, 42.7, 39.9, 4.1, 0.0, 9.6, 56.0, 44.0,90.4,46.9 +9.224489795918368,5,a-cure-i1,2017-18,Boston - Mildred Avenue K-8,00350378, 1.5, 0.9, 67.5, 25.8, 2.4, 0.0, 2.0, 49.3, 50.7,98.0,56.5 +1,1,a-cure-i1,2017-18,Boston - Mission Hill School,00350382, 0.4, 0.8, 23.2, 35.7, 5.4, 0.4, 34.0, 41.5, 58.5,66.0,4.3 +10.958540630182423,5,a-cure-i1,2017-18,Boston - Mozart,00350237, 1.1, 3.9, 24.0, 24.0, 7.3, 0.0, 39.7, 40.8, 59.2,60.3,41.300000000000004 +10.057630736392742,5,a-cure-i1,2017-18,Boston - Nathan Hale,00350243, 0.0, 6.3, 49.4, 31.6, 6.3, 0.0, 6.3, 53.8, 46.2,93.7,58.9 +9.007164790174002,5,a-cure-i1,2017-18,Boston - New Mission High School,00350542, 0.0, 1.0, 59.9, 35.2, 1.5, 0.0, 2.3, 47.7, 52.3,97.7,55.0 +7.826982492276005,5,a-cure-i1,2017-18,Boston - O W Holmes,00350138, 0.0, 3.2, 58.8, 28.8, 5.8, 0.6, 2.9, 49.0, 51.0,97.1,47.5 +10.185061315496096,5,a-cure-i1,2017-18,Boston - O'Bryant School Math/Science,00350575, 0.3, 21.2, 33.2, 32.5, 2.3, 0.2, 10.3, 56.3, 43.7,89.7,57.099999999999994 +11.017721518987342,5,a-cure-i1,2017-18,Boston - Oliver Hazard Perry,00350255, 0.0, 0.9, 21.4, 14.5, 2.7, 0.0, 60.5, 43.2, 56.8,39.5,27.2 +5.773700305810397,5,a-cure-i1,2017-18,Boston - Orchard Gardens,00350257, 0.8, 1.3, 50.9, 42.3, 2.3, 0.4, 1.9, 49.0, 51.0,98.1,35.4 +6.002125398512221,5,a-cure-i1,2017-18,Boston - Patrick J Kennedy,00350264, 0.0, 2.6, 2.6, 88.5, 0.3, 0.0, 5.9, 45.6, 54.4,94.1,35.3 +9.171759747102213,5,a-cure-i1,2017-18,Boston - Paul A Dever,00350268, 0.6, 6.2, 25.3, 61.0, 1.7, 0.3, 5.1, 47.2, 52.8,94.9,54.4 +6.051387461459403,5,a-cure-i1,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 2.3, 64.5, 24.6, 5.9, 0.0, 2.7, 49.6, 50.4,97.3,36.8 +3.580562659846547,3.58,a-cure-i1,2017-18,Boston - Phineas Bates,00350278, 0.0, 5.7, 31.7, 37.4, 3.4, 0.0, 21.8, 49.2, 50.8,78.2,17.5 +8.96740273396425,5,a-cure-i1,2017-18,Boston - Quincy Upper School,00350565, 0.2, 48.1, 21.3, 22.9, 2.6, 0.0, 4.9, 47.9, 52.1,95.1,53.300000000000004 +10.166311300639657,5,a-cure-i1,2017-18,Boston - Rafael Hernandez,00350691, 0.0, 0.3, 3.1, 88.4, 2.1, 0.0, 6.2, 52.4, 47.6,93.8,59.599999999999994 +5.507584597432905,5,a-cure-i1,2017-18,Boston - Richard J Murphy,00350240, 0.5, 41.9, 18.4, 21.6, 3.0, 0.3, 14.3, 46.8, 53.2,85.7,29.5 +5.644617380025941,5,a-cure-i1,2017-18,Boston - Roger Clap,00350298, 0.0, 5.1, 38.2, 31.2, 2.5, 0.0, 22.9, 52.9, 47.1,77.1,27.2 +7.522533495736907,5,a-cure-i1,2017-18,Boston - Samuel Adams,00350302, 0.3, 1.4, 4.1, 75.6, 0.7, 0.0, 17.9, 50.5, 49.5,82.1,38.6 +8.392324093816631,5,a-cure-i1,2017-18,Boston - Samuel W Mason,00350304, 2.1, 2.1, 48.3, 34.7, 5.8, 0.8, 6.2, 43.8, 56.2,93.8,49.2 +9.651560926485397,5,a-cure-i1,2017-18,Boston - Sarah Greenwood,00350308, 0.0, 0.2, 23.6, 72.9, 2.2, 0.2, 0.7, 46.0, 54.0,99.3,59.89999999999999 +5.720384204909284,5,a-cure-i1,2017-18,Boston - Snowden International School at Copley,00350690, 0.5, 6.5, 34.0, 49.5, 2.5, 0.7, 6.3, 51.4, 48.6,93.7,33.5 +6.49795918367347,5,a-cure-i1,2017-18,Boston - TechBoston Academy,00350657, 0.3, 3.3, 64.9, 26.3, 3.1, 0.2, 2.0, 44.1, 55.9,98.0,39.800000000000004 +7.943262411347518,5,a-cure-i1,2017-18,Boston - The English High,00350535, 0.0, 1.5, 41.7, 54.9, 0.6, 0.0, 1.3, 42.7, 57.3,98.7,49.0 +5.7,5,a-cure-i1,2017-18,Boston - Thomas J Kenny,00350328, 0.3, 15.4, 36.9, 22.5, 4.9, 0.0, 20.0, 47.7, 52.3,80.0,28.5 +6.917599186164802,5,a-cure-i1,2017-18,Boston - UP Academy Holland,00350167, 0.3, 6.7, 44.5, 43.4, 3.4, 0.0, 1.7, 50.4, 49.6,98.3,42.5 +9.863247863247864,5,a-cure-i1,2017-18,Boston - Urban Science Academy,00350579, 0.5, 0.0, 51.3, 39.3, 2.6, 0.0, 6.4, 38.5, 61.2,93.6,57.699999999999996 +4.73469387755102,4.73,a-cure-i1,2017-18,Boston - Warren-Prescott,00350346, 0.0, 5.3, 12.1, 26.9, 4.5, 0.2, 51.0, 46.3, 53.7,49.0,14.5 +7.617428267800213,5,a-cure-i1,2017-18,Boston - Washington Irving Middle,00350445, 0.9, 1.6, 42.4, 47.0, 2.2, 0.0, 5.9, 51.1, 48.9,94.1,44.800000000000004 +6.396570203644158,5,a-cure-i1,2017-18,Boston - West Roxbury Academy,00350658, 0.4, 2.7, 49.9, 37.9, 1.9, 0.4, 6.7, 45.7, 54.3,93.3,37.3 +7.269743589743589,5,a-cure-i1,2017-18,Boston - William E Russell,00350366, 0.7, 13.2, 31.9, 49.5, 2.0, 0.2, 2.5, 49.8, 50.2,97.5,44.3 +9.889361702127662,5,a-cure-i1,2017-18,Boston - William Ellery Channing,00350360, 0.0, 2.3, 49.1, 39.4, 2.8, 0.5, 6.0, 52.8, 47.2,94.0,58.10000000000001 +5.035110533159948,5,a-cure-i1,2017-18,Boston - William H Ohrenberger,00350258, 0.0, 4.0, 28.2, 41.4, 3.2, 0.0, 23.1, 47.1, 52.9,76.9,24.2 +4.466310160427808,4.47,a-cure-i1,2017-18,Boston - William McKinley,00350363, 0.6, 1.7, 53.8, 34.9, 2.5, 0.0, 6.5, 24.5, 75.5,93.5,26.1 +8.451282051282051,5,a-cure-i1,2017-18,Boston - William Monroe Trotter,00350370, 0.0, 0.8, 57.5, 34.3, 4.2, 0.8, 2.5, 47.8, 52.2,97.5,51.5 +9.67760342368046,5,a-cure-i1,2017-18,Boston - Winship Elementary,00350374, 0.0, 14.5, 17.2, 32.6, 5.9, 0.0, 29.9, 45.2, 54.8,70.1,42.400000000000006 +9.133603238866398,5,a-cure-i1,2017-18,Boston - Young Achievers,00350380, 0.2, 0.0, 50.6, 45.8, 2.1, 0.0, 1.2, 45.5, 54.5,98.8,56.400000000000006 +10.190114068441064,5,a-cure-i1,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.6, 2.0, 29.4, 18.3, 2.3, 0.0, 47.4, 51.3, 48.7,52.6,33.5 +4.904862579281184,4.9,a-cure-i1,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.5, 1.2, 45.0, 43.6, 4.2, 0.0, 5.4, 53.5, 46.5,94.6,29.0 +6.120689655172414,5,a-cure-i1,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.4, 2.3, 50.3, 37.6, 2.1, 0.0, 7.2, 47.1, 52.9,92.8,35.5 +5.4638124362895,5,a-cure-i1,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.9, 67.0, 28.1, 1.9, 0.2, 1.9, 48.2, 51.8,98.1,33.5 +4.499492385786802,4.5,a-cure-i1,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.1, 0.3, 62.3, 32.2, 3.6, 0.0, 1.5, 52.1, 47.9,98.5,27.7 +1,1,a-cure-i1,2017-18,Bourne - Bourne High School,00360505, 0.2, 1.7, 2.5, 5.0, 2.5, 0.2, 87.9, 52.9, 47.1,12.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Bourne - Bourne Middle School,00360325, 1.2, 2.0, 1.3, 3.1, 2.5, 0.0, 89.9, 50.4, 49.6,10.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Bourne - Bournedale Elementary School,00360005, 1.3, 0.2, 2.0, 4.0, 3.1, 0.2, 89.1, 47.0, 53.0,10.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Bourne - Peebles Elementary School,00360010, 1.2, 2.4, 2.4, 7.4, 4.1, 0.3, 82.3, 52.5, 47.5,17.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Boxford - Harry Lee Cole,00380005, 0.3, 3.3, 0.0, 2.4, 6.0, 0.0, 87.9, 46.2, 53.8,12.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Boxford - Spofford Pond,00380013, 0.0, 4.6, 0.8, 1.5, 2.3, 0.0, 90.7, 50.5, 49.5,9.299999999999997,0.0 +5.517241379310343,5,a-cure-i1,2017-18,Boylston - Boylston Elementary,00390005, 0.3, 5.0, 2.0, 5.4, 4.7, 0.0, 82.6, 52.8, 47.2,17.400000000000006,6.0 +1,1,a-cure-i1,2017-18,Braintree - Archie T Morrison,00400033, 0.2, 15.3, 9.8, 4.5, 1.7, 0.2, 68.2, 49.0, 51.0,31.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Braintree - Braintree High,00400505, 0.1, 15.2, 5.6, 4.3, 0.9, 0.0, 73.9, 49.4, 50.6,26.099999999999994,3.6999999999999997 +1,1,a-cure-i1,2017-18,Braintree - Donald Ross,00400050, 0.7, 19.3, 7.0, 9.1, 1.4, 0.0, 62.5, 48.1, 51.9,37.5,0.0 +1,1,a-cure-i1,2017-18,Braintree - East Middle School,00400305, 0.6, 14.8, 5.7, 5.0, 1.7, 0.0, 72.2, 49.1, 50.8,27.799999999999997,2.0 +1,1,a-cure-i1,2017-18,Braintree - Highlands,00400015, 0.5, 15.8, 2.4, 2.1, 0.2, 0.0, 79.0, 52.4, 47.6,21.0,0.0 +1,1,a-cure-i1,2017-18,Braintree - Hollis,00400005, 0.2, 19.9, 3.5, 5.3, 2.3, 0.0, 68.8, 50.2, 49.8,31.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Braintree - Liberty,00400025, 0.0, 25.7, 2.2, 3.9, 2.0, 0.2, 66.1, 50.0, 50.0,33.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Braintree - Mary E Flaherty School,00400020, 0.5, 23.3, 3.7, 4.0, 2.7, 0.0, 65.8, 52.0, 48.0,34.2,0.0 +1,1,a-cure-i1,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 18.4, 4.4, 5.2, 1.6, 0.4, 70.0, 40.4, 59.6,30.0,0.0 +1,1,a-cure-i1,2017-18,Braintree - South Middle School,00400310, 0.2, 16.1, 2.9, 4.5, 0.6, 0.0, 75.8, 51.2, 48.8,24.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Brewster - Eddy Elementary,00410010, 0.0, 2.1, 2.1, 6.2, 3.7, 0.0, 86.0, 51.2, 48.8,14.0,0.0 +1,1,a-cure-i1,2017-18,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 3.0, 5.1, 5.1, 0.0, 86.8, 48.7, 51.3,13.200000000000003,0.0 +2.961770623742455,2.96,a-cure-i1,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 1.3, 64.9, 29.9, 2.9, 0.3, 0.6, 51.3, 48.7,99.4,18.400000000000002 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.2, 1.4, 2.7, 0.0, 3.7, 0.2, 91.8, 44.1, 55.9,8.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 2.2, 4.4, 0.1, 4.2, 0.2, 89.0, 51.9, 48.1,11.0,3.5 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.2, 2.4, 6.3, 0.0, 3.1, 0.0, 88.0, 50.2, 49.8,12.0,4.0 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 1.9, 4.5, 0.0, 2.6, 0.0, 91.0, 48.4, 51.6,9.0,0.0 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.4, 5.0, 0.0, 3.1, 0.1, 90.3, 46.3, 53.7,9.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 2.0, 3.3, 2.1, 3.8, 0.2, 88.7, 46.5, 53.5,11.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 6.3, 0.0, 6.3, 0.0, 87.5, 43.8, 56.3,12.5,0.0 +1,1,a-cure-i1,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.1, 1.1, 5.6, 0.0, 5.9, 0.2, 87.0, 47.1, 52.9,13.0,0.0 +1,1,a-cure-i1,2017-18,Brimfield - Brimfield Elementary,00430005, 0.3, 1.4, 2.4, 1.4, 0.0, 0.0, 94.4, 49.3, 50.7,5.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.1, 4.2, 2.6, 0.0, 92.1, 70.8, 28.7,7.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.5, 0.7, 3.4, 7.0, 2.9, 0.0, 85.5, 43.2, 56.6,14.5,1.7 +1,1,a-cure-i1,2017-18,Brockton - Ashfield Middle School,00440421, 0.4, 2.2, 45.6, 12.3, 3.6, 0.2, 35.7, 47.8, 52.2,64.3,3.4 +1,1,a-cure-i1,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.8, 55.3, 9.7, 6.3, 0.0, 27.8, 39.7, 60.3,72.2,0.0 +2.8167388167388165,2.82,a-cure-i1,2017-18,Brockton - Brockton Champion High School,00440515, 0.6, 0.6, 41.5, 22.7, 4.0, 0.0, 30.7, 43.8, 56.3,69.3,12.2 +3.5403422982885084,3.54,a-cure-i1,2017-18,Brockton - Brockton High,00440505, 0.4, 2.6, 62.4, 12.5, 3.7, 0.2, 18.2, 48.1, 51.9,81.8,18.099999999999998 +1,1,a-cure-i1,2017-18,Brockton - Brookfield,00440010, 0.2, 1.7, 58.4, 9.4, 4.2, 0.3, 25.8, 46.4, 53.6,74.2,3.4 +1,1,a-cure-i1,2017-18,Brockton - Downey,00440110, 0.6, 1.3, 52.8, 18.3, 6.4, 0.3, 20.3, 43.6, 56.4,79.7,2.9 +1,1,a-cure-i1,2017-18,Brockton - Dr W Arnone Community School,00440001, 0.8, 0.1, 64.0, 16.7, 7.2, 0.0, 11.1, 44.0, 56.0,88.9,3.7 +3.753554502369668,3.75,a-cure-i1,2017-18,Brockton - East Middle School,00440405, 0.0, 1.2, 69.9, 9.6, 3.5, 0.2, 15.6, 45.9, 54.1,84.4,19.8 +2.056603773584906,2.06,a-cure-i1,2017-18,Brockton - Edgar B Davis,00440023, 0.5, 0.3, 62.6, 15.2, 5.9, 0.4, 15.2, 50.4, 49.6,84.8,10.9 +10.004357298474947,5,a-cure-i1,2017-18,Brockton - Edison Academy,00440520, 0.0, 0.5, 79.6, 10.2, 1.5, 0.0, 8.2, 47.4, 52.6,91.8,57.400000000000006 +1,1,a-cure-i1,2017-18,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 76.5, 14.7, 2.9, 0.0, 5.9, 29.4, 70.6,94.1,0.0 +2.097251585623679,2.1,a-cure-i1,2017-18,Brockton - Gilmore Elementary School,00440055, 0.5, 0.2, 76.7, 12.7, 4.5, 0.0, 5.4, 48.0, 52.0,94.6,12.4 +3.895223420647149,3.9,a-cure-i1,2017-18,Brockton - Hancock,00440045, 0.5, 3.3, 48.6, 7.3, 5.0, 0.3, 35.1, 51.6, 48.4,64.9,15.8 +1.855072463768116,1.86,a-cure-i1,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 43.1, 19.0, 6.9, 0.0, 31.0, 27.6, 72.4,69.0,8.0 +2.0056338028169014,2.01,a-cure-i1,2017-18,Brockton - John F Kennedy,00440017, 0.0, 3.9, 48.7, 10.6, 7.8, 0.0, 29.0, 49.9, 50.1,71.0,8.9 +2.8136482939632543,2.81,a-cure-i1,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 0.1, 2.8, 38.9, 28.6, 5.7, 0.1, 23.8, 54.4, 45.6,76.2,13.399999999999999 +1.3886792452830188,1.39,a-cure-i1,2017-18,Brockton - Louis F Angelo Elementary,00440065, 0.8, 7.0, 55.2, 12.3, 4.0, 0.1, 20.5, 48.3, 51.7,79.5,6.8999999999999995 +2.8031854379977243,2.8,a-cure-i1,2017-18,Brockton - Manthala George Jr. School,00440003, 1.0, 0.7, 36.6, 45.2, 4.3, 0.1, 12.1, 49.5, 50.5,87.9,15.4 +2.239130434782609,2.24,a-cure-i1,2017-18,Brockton - Mary E. Baker School,00440002, 0.1, 1.5, 53.5, 14.5, 4.0, 0.0, 26.4, 47.7, 52.3,73.6,10.3 +1.9367502726281354,1.94,a-cure-i1,2017-18,Brockton - North Middle School,00440410, 0.3, 2.2, 72.2, 13.7, 3.0, 0.3, 8.3, 45.0, 55.0,91.7,11.100000000000001 +1,1,a-cure-i1,2017-18,Brockton - Oscar F Raymond,00440078, 0.4, 0.9, 76.1, 9.1, 4.2, 0.0, 9.3, 49.8, 50.2,90.7,2.8 +1.644110275689223,1.64,a-cure-i1,2017-18,Brockton - South Middle School,00440415, 0.0, 2.2, 51.7, 18.6, 7.0, 0.2, 20.2, 48.5, 51.5,79.8,8.2 +1.6615384615384619,1.66,a-cure-i1,2017-18,Brockton - West Middle School,00440420, 0.2, 3.5, 54.8, 15.1, 4.2, 0.3, 22.0, 48.5, 51.5,78.0,8.100000000000001 +4.432318992654774,4.43,a-cure-i1,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 0.2, 1.8, 54.3, 37.4, 1.6, 0.0, 4.7, 51.4, 48.6,95.3,26.4 +1,1,a-cure-i1,2017-18,Brookfield - Brookfield Elementary,00450005, 0.3, 0.0, 0.3, 4.5, 4.2, 0.0, 90.7, 50.2, 49.8,9.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 26.7, 3.3, 5.0, 15.0, 0.0, 50.0, 55.0, 45.0,50.0,0.0 +1,1,a-cure-i1,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 26.7, 8.3, 11.7, 11.7, 0.0, 41.7, 43.3, 56.7,58.3,0.0 +4.648648648648649,4.65,a-cure-i1,2017-18,Brookline - Brookline High,00460505, 0.0, 17.1, 7.0, 11.6, 8.7, 0.1, 55.6, 49.7, 50.2,44.4,12.9 +4.062015503875969,4.06,a-cure-i1,2017-18,Brookline - Edith C Baker,00460005, 0.0, 27.4, 5.9, 9.4, 8.7, 0.1, 48.4, 48.6, 51.4,51.6,13.1 +2.802919708029197,2.8,a-cure-i1,2017-18,Brookline - Edward Devotion,00460015, 0.0, 12.7, 5.2, 13.0, 10.1, 0.0, 58.9, 47.2, 52.8,41.1,7.2 +7.419689119170983,5,a-cure-i1,2017-18,Brookline - Heath,00460025, 0.0, 16.1, 3.9, 9.2, 9.4, 0.0, 61.4, 50.8, 49.2,38.6,17.9 +3.714285714285714,3.71,a-cure-i1,2017-18,Brookline - John D Runkle,00460045, 0.0, 15.5, 2.7, 10.2, 10.8, 0.0, 60.8, 46.9, 53.1,39.2,9.1 +3.4821763602251408,3.48,a-cure-i1,2017-18,Brookline - Lawrence,00460030, 0.0, 30.2, 6.1, 8.9, 8.0, 0.1, 46.7, 47.4, 52.6,53.3,11.6 +6.222222222222222,5,a-cure-i1,2017-18,Brookline - Michael Driscoll,00460020, 0.0, 16.2, 5.2, 8.1, 13.7, 0.0, 56.8, 46.6, 53.4,43.2,16.8 +8.242424242424244,5,a-cure-i1,2017-18,Brookline - Pierce,00460040, 0.0, 23.2, 4.1, 10.1, 8.8, 0.0, 53.8, 50.9, 49.1,46.2,23.800000000000004 +1,1,a-cure-i1,2017-18,Brookline - The Lynch Center,00460060, 0.0, 19.0, 12.1, 19.0, 22.4, 0.0, 27.6, 46.6, 53.4,72.4,0.0 +3.6827852998065764,3.68,a-cure-i1,2017-18,Brookline - William H Lincoln,00460035, 0.2, 22.5, 10.2, 11.9, 6.9, 0.0, 48.3, 51.4, 48.6,51.7,11.9 +3.466666666666667,3.47,a-cure-i1,2017-18,Burlington - Burlington High,00480505, 0.6, 14.9, 5.5, 5.6, 3.2, 0.1, 70.0, 50.3, 49.7,30.0,6.5 +1,1,a-cure-i1,2017-18,Burlington - Fox Hill,00480007, 0.0, 24.8, 5.8, 5.5, 4.3, 0.0, 59.6, 48.4, 51.6,40.4,0.0 +1,1,a-cure-i1,2017-18,Burlington - Francis Wyman Elementary,00480035, 0.2, 20.0, 10.2, 7.6, 3.7, 0.0, 58.3, 49.0, 51.0,41.7,2.8 +1,1,a-cure-i1,2017-18,Burlington - Marshall Simonds Middle,00480303, 0.4, 13.4, 6.0, 5.7, 3.5, 0.0, 71.0, 48.9, 51.1,29.0,4.3 +1,1,a-cure-i1,2017-18,Burlington - Memorial,00480015, 0.2, 18.2, 4.2, 6.4, 6.4, 0.0, 64.6, 50.6, 49.4,35.400000000000006,4.1 +1,1,a-cure-i1,2017-18,Burlington - Pine Glen Elementary,00480020, 0.0, 15.2, 2.6, 4.8, 4.8, 0.0, 72.6, 51.9, 48.1,27.400000000000006,3.9 +10.224390243902441,5,a-cure-i1,2017-18,Cambridge - Amigos School,00490006, 0.0, 3.5, 4.8, 43.8, 9.3, 0.0, 38.5, 55.2, 44.8,61.5,39.300000000000004 +6.29126213592233,5,a-cure-i1,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 0.5, 11.5, 30.2, 13.7, 5.8, 0.2, 38.2, 47.9, 52.1,61.8,24.299999999999997 +6.2556390977443606,5,a-cure-i1,2017-18,Cambridge - Cambridge Street Upper School,00490305, 0.4, 6.5, 28.2, 21.8, 8.9, 0.8, 33.5, 50.0, 50.0,66.5,26.0 +4.846473029045643,4.85,a-cure-i1,2017-18,Cambridge - Cambridgeport,00490007, 0.3, 9.4, 19.6, 8.2, 10.8, 0.0, 51.8, 46.5, 53.5,48.2,14.6 +3.3830845771144276,3.38,a-cure-i1,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 0.3, 8.4, 49.3, 15.5, 6.8, 0.0, 19.6, 46.3, 53.7,80.4,17.0 +5.723849372384938,5,a-cure-i1,2017-18,Cambridge - Graham and Parks,00490080, 0.0, 19.6, 19.1, 4.4, 4.7, 0.0, 52.2, 51.4, 48.6,47.8,17.1 +6.877959927140256,5,a-cure-i1,2017-18,Cambridge - Haggerty,00490020, 0.0, 16.0, 20.6, 7.0, 11.3, 0.0, 45.1, 48.6, 51.4,54.9,23.6 +3.0526315789473686,3.05,a-cure-i1,2017-18,Cambridge - John M Tobin,00490065, 0.7, 15.0, 26.3, 9.2, 9.6, 0.0, 39.2, 46.8, 53.2,60.8,11.6 +5.166429587482219,5,a-cure-i1,2017-18,Cambridge - Kennedy-Longfellow,00490040, 0.0, 24.2, 20.1, 17.4, 8.2, 0.3, 29.7, 46.1, 53.9,70.3,22.7 +10.043165467625899,5,a-cure-i1,2017-18,Cambridge - King Open,00490035, 0.6, 10.6, 19.8, 15.8, 8.8, 0.0, 44.4, 47.7, 52.3,55.6,34.9 +6.837894736842104,5,a-cure-i1,2017-18,Cambridge - Maria L. Baldwin,00490005, 0.3, 9.6, 14.8, 11.8, 11.0, 0.0, 52.5, 49.2, 50.8,47.5,20.299999999999997 +7.659090909090909,5,a-cure-i1,2017-18,Cambridge - Martin Luther King Jr.,00490030, 0.0, 22.0, 24.4, 5.8, 18.3, 0.0, 29.6, 50.3, 49.7,70.4,33.7 +3.993162393162393,3.99,a-cure-i1,2017-18,Cambridge - Morse,00490045, 0.7, 12.4, 22.5, 12.1, 10.5, 0.3, 41.5, 46.4, 53.6,58.5,14.6 +5.544554455445544,5,a-cure-i1,2017-18,Cambridge - Peabody,00490050, 0.0, 13.0, 23.5, 6.8, 7.1, 0.0, 49.5, 51.7, 48.3,50.5,17.5 +10.170040485829961,5,a-cure-i1,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 0.4, 10.6, 35.0, 17.9, 9.9, 0.4, 25.9, 49.0, 51.0,74.1,47.10000000000001 +6.272232304900181,5,a-cure-i1,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 0.4, 9.7, 29.2, 7.5, 7.9, 0.4, 44.9, 52.1, 47.9,55.1,21.6 +5.0820244328097735,5,a-cure-i1,2017-18,Cambridge - Vassal Lane Upper School,00490320, 0.0, 15.7, 25.6, 8.5, 7.1, 0.4, 42.7, 58.7, 41.3,57.3,18.2 +5.553264604810998,5,a-cure-i1,2017-18,Canton - Canton High,00500505, 0.0, 10.5, 10.1, 4.4, 4.1, 0.1, 70.9, 50.7, 49.0,29.099999999999994,10.100000000000001 +1,1,a-cure-i1,2017-18,Canton - Dean S Luce,00500020, 0.0, 12.0, 9.0, 5.2, 5.8, 0.8, 67.1, 50.3, 49.7,32.900000000000006,3.4 +1,1,a-cure-i1,2017-18,Canton - John F Kennedy,00500017, 0.0, 11.9, 6.0, 4.2, 4.7, 0.0, 73.2, 47.0, 53.0,26.799999999999997,0.0 +2.8463611859838274,2.85,a-cure-i1,2017-18,Canton - Lt Peter M Hansen,00500012, 0.0, 11.6, 13.5, 5.7, 6.1, 0.2, 62.9, 50.1, 49.9,37.1,6.6 +1,1,a-cure-i1,2017-18,Canton - Rodman Early Childhood Center,00500010, 0.0, 9.1, 10.2, 10.2, 6.8, 0.0, 63.6, 36.4, 63.6,36.4,0.0 +4.8108108108108105,4.81,a-cure-i1,2017-18,Canton - Wm H Galvin Middle,00500305, 0.0, 8.6, 11.5, 5.3, 4.1, 0.1, 70.4, 51.4, 48.6,29.599999999999994,8.899999999999999 +1,1,a-cure-i1,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.8, 2.9, 4.1, 5.8, 0.0, 86.4, 54.5, 45.5,13.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.9, 0.7, 6.3, 9.7, 5.1, 0.2, 76.3, 35.9, 64.1,23.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Carlisle - Carlisle School,00510025, 0.0, 11.4, 0.5, 3.6, 8.9, 0.0, 75.6, 45.4, 54.6,24.400000000000006,1.7 +1,1,a-cure-i1,2017-18,Carver - Carver Elementary School,00520015, 0.3, 0.5, 1.1, 1.4, 0.6, 0.0, 96.0, 51.1, 48.9,4.0,2.4 +25.09090909090906,5,a-cure-i1,2017-18,Carver - Carver Middle/High School,00520405, 0.1, 0.3, 1.1, 1.3, 1.5, 0.1, 95.6, 49.5, 50.5,4.400000000000006,6.9 +1,1,a-cure-i1,2017-18,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.6, 3.2, 0.0, 95.2, 46.4, 53.6,4.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Central Berkshire - Craneville,06350025, 0.5, 2.4, 0.2, 4.1, 4.4, 0.0, 88.3, 45.1, 54.9,11.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Central Berkshire - Kittredge,06350035, 0.0, 1.3, 1.3, 3.3, 3.3, 0.0, 90.7, 52.0, 48.0,9.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.5, 0.5, 1.8, 3.9, 0.0, 93.2, 47.5, 52.5,6.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Central Berkshire - Wahconah Regional High,06350505, 0.2, 1.1, 1.1, 3.9, 2.2, 0.0, 91.4, 50.8, 49.2,8.599999999999994,0.5 +1,1,a-cure-i1,2017-18,Chelmsford - Byam School,00560030, 0.6, 11.1, 1.8, 5.9, 4.5, 0.0, 76.1, 47.8, 52.2,23.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Chelmsford - Center Elementary School,00560005, 0.2, 15.1, 2.9, 5.1, 3.8, 0.2, 72.7, 52.3, 47.7,27.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Chelmsford - Charles D Harrington,00560025, 0.0, 18.6, 4.5, 9.9, 3.6, 0.0, 63.4, 45.3, 54.7,36.6,0.0 +1,1,a-cure-i1,2017-18,Chelmsford - Chelmsford High,00560505, 0.0, 12.6, 2.9, 3.4, 2.0, 0.1, 79.0, 50.5, 49.5,21.0,1.8 +1,1,a-cure-i1,2017-18,Chelmsford - Col Moses Parker School,00560305, 0.1, 15.9, 1.8, 5.6, 1.5, 0.0, 75.0, 47.7, 52.3,25.0,0.0 +1,1,a-cure-i1,2017-18,Chelmsford - Community Education Center,00560001, 0.8, 23.5, 3.0, 6.8, 2.3, 0.0, 63.6, 39.4, 60.6,36.4,0.0 +1,1,a-cure-i1,2017-18,Chelmsford - McCarthy Middle School,00560310, 0.0, 13.5, 3.6, 5.1, 3.1, 0.2, 74.5, 47.8, 52.2,25.5,4.4 +1,1,a-cure-i1,2017-18,Chelmsford - South Row,00560015, 0.0, 17.0, 2.7, 6.2, 3.7, 0.0, 70.3, 46.4, 53.6,29.700000000000003,0.0 +2.5660377358490565,2.57,a-cure-i1,2017-18,Chelsea - Chelsea High,00570505, 0.0, 2.1, 6.0, 86.7, 0.4, 0.1, 4.6, 46.6, 53.4,95.4,15.299999999999999 +1,1,a-cure-i1,2017-18,Chelsea - Clark Avenue School,00570050, 0.5, 0.9, 3.1, 90.1, 0.9, 0.0, 4.5, 45.8, 54.2,95.5,3.8 +1,1,a-cure-i1,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 0.3, 0.7, 6.9, 80.5, 1.4, 0.0, 10.2, 45.9, 54.1,89.8,4.2 +1.373913043478261,1.37,a-cure-i1,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.2, 0.9, 5.4, 83.7, 1.7, 0.0, 8.0, 46.9, 53.1,92.0,7.9 +1,1,a-cure-i1,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.9, 6.2, 84.3, 1.6, 0.0, 7.0, 46.8, 53.2,93.0,4.5 +2.8790072388831436,2.88,a-cure-i1,2017-18,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.5, 2.7, 92.5, 0.9, 0.0, 3.3, 49.9, 50.1,96.7,17.4 +1.8396624472573841,1.84,a-cure-i1,2017-18,Chelsea - Joseph A. Browne School,00570055, 0.0, 1.8, 3.9, 88.8, 0.3, 0.0, 5.2, 49.9, 50.1,94.8,10.9 +1.6648411829134722,1.66,a-cure-i1,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 1.0, 4.8, 84.7, 0.7, 0.0, 8.7, 50.3, 49.7,91.3,9.5 +2.265795206971678,2.27,a-cure-i1,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 1.0, 5.3, 84.9, 0.4, 0.2, 8.2, 44.5, 55.5,91.8,13.0 +1,1,a-cure-i1,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.5, 0.0, 0.7, 2.2, 0.0, 0.0, 95.6, 50.7, 49.3,4.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Barry,00610003, 0.0, 2.8, 3.0, 26.8, 2.5, 0.3, 64.7, 42.1, 57.9,35.3,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Belcher,00610010, 0.0, 0.7, 8.1, 36.5, 2.6, 0.0, 52.0, 47.6, 52.4,48.0,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Bellamy Middle,00610305, 0.0, 1.5, 2.8, 37.8, 3.3, 0.0, 54.7, 49.6, 50.4,45.3,1.7 +1,1,a-cure-i1,2017-18,Chicopee - Bowe,00610015, 0.2, 1.0, 5.6, 55.6, 5.4, 0.0, 32.0, 48.5, 51.5,68.0,0.0 +3.383512544802867,3.38,a-cure-i1,2017-18,Chicopee - Bowie,00610020, 0.3, 1.2, 4.2, 19.2, 2.7, 0.3, 72.1, 49.5, 50.5,27.900000000000006,5.9 +1,1,a-cure-i1,2017-18,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 4.9, 61.0, 2.4, 0.0, 31.7, 26.8, 73.2,68.3,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 0.1, 2.7, 2.5, 27.0, 2.1, 0.0, 65.5, 46.3, 53.7,34.5,4.5 +1,1,a-cure-i1,2017-18,Chicopee - Chicopee High,00610505, 0.1, 1.7, 3.9, 39.1, 2.0, 0.1, 53.2, 50.5, 49.5,46.8,4.1 +1,1,a-cure-i1,2017-18,Chicopee - Dupont Middle,00610310, 0.1, 0.8, 4.5, 40.4, 3.2, 0.0, 50.9, 44.3, 55.7,49.1,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Fairview Elementary,00610050, 0.0, 1.7, 3.3, 47.7, 4.1, 0.0, 43.2, 49.0, 51.0,56.8,4.9 +1,1,a-cure-i1,2017-18,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.7, 7.2, 68.0, 2.5, 0.0, 21.6, 47.1, 52.9,78.4,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Lambert-Lavoie,00610040, 0.0, 1.3, 3.5, 25.6, 3.8, 0.0, 65.9, 46.7, 53.3,34.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Litwin,00610022, 0.2, 0.5, 4.3, 33.7, 1.9, 0.0, 59.3, 48.1, 51.9,40.7,0.0 +1,1,a-cure-i1,2017-18,Chicopee - Streiber Memorial School,00610065, 0.0, 3.2, 2.2, 29.0, 4.3, 0.4, 60.9, 47.3, 52.7,39.1,1.4 +1,1,a-cure-i1,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 1.7, 4.6, 24.1, 6.2, 0.0, 63.5, 40.2, 59.8,36.5,0.0 +5.24,5,a-cure-i1,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.8, 5.6, 4.6, 21.3, 7.6, 0.3, 60.0, 47.1, 52.9,40.0,13.1 +4.954732510288066,4.95,a-cure-i1,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 68.9, 27.2, 1.1, 0.0, 2.8, 51.6, 47.7,97.2,30.1 +3.630522088353414,3.63,a-cure-i1,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 2.6, 69.9, 25.0, 1.8, 0.4, 0.4, 54.4, 45.6,99.6,22.6 +2.8249619482496198,2.82,a-cure-i1,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 1.3, 13.6, 46.2, 4.7, 0.0, 34.3, 53.4, 46.2,65.7,11.600000000000001 +1,1,a-cure-i1,2017-18,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 0.0, 1.0, 4.7, 0.0, 93.8, 50.8, 49.2,6.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 2.9, 24.3, 2.5, 0.0, 69.3, 48.1, 51.9,30.700000000000003,1.6 +1,1,a-cure-i1,2017-18,Clinton - Clinton Middle School,00640305, 0.0, 1.2, 4.0, 21.7, 1.6, 0.1, 71.3, 43.2, 56.8,28.700000000000003,2.0 +1,1,a-cure-i1,2017-18,Clinton - Clinton Senior High,00640505, 0.2, 2.2, 5.7, 28.4, 1.1, 0.0, 62.4, 50.1, 49.9,37.6,2.4 +6.7402206619859575,5,a-cure-i1,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.3, 0.0, 76.8, 21.2, 0.9, 0.6, 0.3, 49.0, 51.0,99.7,42.0 +1,1,a-cure-i1,2017-18,Cohasset - Cohasset Middle/High School,00650505, 0.4, 3.0, 3.2, 1.7, 0.7, 0.0, 91.1, 48.9, 51.1,8.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Cohasset - Deer Hill,00650005, 0.0, 1.8, 3.1, 0.5, 2.1, 0.0, 92.6, 46.7, 53.3,7.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Cohasset - Joseph Osgood,00650010, 0.0, 1.7, 2.6, 0.9, 1.4, 0.0, 93.4, 49.4, 50.6,6.599999999999994,0.0 +4.544378698224852,4.54,a-cure-i1,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.1, 22.9, 18.8, 37.2, 5.4, 0.0, 15.5, 50.3, 49.7,84.5,24.0 +9.215189873417723,5,a-cure-i1,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.8, 4.1, 63.3, 22.5, 4.1, 0.0, 5.2, 50.7, 49.3,94.8,54.6 +3.790769230769231,3.79,a-cure-i1,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.6, 1.3, 95.6, 0.0, 0.0, 2.5, 48.8, 51.3,97.5,23.1 +6.584362139917696,5,a-cure-i1,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.5, 0.5, 96.3, 0.0, 0.0, 2.8, 50.5, 49.5,97.2,40.0 +5.672575599582898,5,a-cure-i1,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 1.3, 1.6, 93.1, 0.0, 0.0, 4.1, 50.9, 49.1,95.9,34.0 +1,1,a-cure-i1,2017-18,Concord - Alcott,00670005, 0.0, 7.5, 8.6, 9.8, 6.3, 0.0, 67.8, 47.0, 53.0,32.2,0.0 +7.629629629629632,5,a-cure-i1,2017-18,Concord - Concord Middle,00670305, 0.3, 5.5, 4.7, 5.2, 5.9, 0.0, 78.4, 53.9, 46.1,21.599999999999994,10.3 +4.350877192982457,4.35,a-cure-i1,2017-18,Concord - Thoreau,00670020, 0.0, 7.9, 0.9, 5.3, 8.8, 0.0, 77.2, 46.0, 54.0,22.799999999999997,6.2 +6.104046242774567,5,a-cure-i1,2017-18,Concord - Willard,00670030, 0.2, 6.4, 1.1, 4.1, 5.5, 0.0, 82.7, 48.1, 51.9,17.299999999999997,6.6 +4.281690140845071,4.28,a-cure-i1,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 8.9, 4.1, 4.5, 3.8, 0.0, 78.7, 52.0, 47.9,21.299999999999997,5.7 +4.533627342888645,4.53,a-cure-i1,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 2.9, 49.1, 35.6, 3.1, 0.0, 9.3, 54.7, 45.3,90.7,25.700000000000003 +1,1,a-cure-i1,2017-18,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 4.3, 1.4, 0.0, 94.2, 44.2, 55.8,5.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Danvers - Danvers High,00710505, 0.0, 2.4, 1.9, 5.7, 1.8, 0.0, 88.1, 50.1, 49.9,11.900000000000006,0.4 +1,1,a-cure-i1,2017-18,Danvers - Great Oak,00710015, 0.3, 2.1, 2.9, 9.5, 5.3, 0.0, 79.9, 45.9, 54.1,20.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Danvers - Highlands,00710010, 0.0, 2.9, 2.7, 8.3, 4.6, 0.0, 81.5, 48.5, 51.5,18.5,0.0 +5.405405405405406,5,a-cure-i1,2017-18,Danvers - Holten Richmond Middle School,00710305, 0.2, 2.9, 1.7, 7.2, 2.8, 0.0, 85.2, 49.8, 50.2,14.799999999999997,5.0 +1,1,a-cure-i1,2017-18,Danvers - Ivan G Smith,00710032, 0.0, 2.8, 2.1, 7.8, 1.8, 0.7, 84.8, 55.5, 44.5,15.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Danvers - Riverside,00710030, 0.6, 3.4, 2.3, 9.6, 2.3, 0.0, 81.9, 41.8, 58.2,18.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Danvers - Willis E Thorpe,00710045, 0.3, 2.6, 1.0, 4.5, 0.3, 0.0, 91.3, 46.8, 53.2,8.700000000000003,4.6 +1,1,a-cure-i1,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 1.4, 0.0, 2.1, 7.1, 0.0, 89.3, 48.6, 51.4,10.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Dartmouth - Dartmouth High,00720505, 0.0, 0.4, 1.5, 2.6, 5.8, 0.0, 89.7, 49.1, 50.9,10.299999999999997,1.6 +1,1,a-cure-i1,2017-18,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.1, 1.4, 3.6, 6.0, 0.0, 88.8, 45.7, 54.3,11.200000000000003,1.0 +1,1,a-cure-i1,2017-18,Dartmouth - George H Potter,00720030, 0.0, 0.2, 1.6, 3.7, 4.7, 0.0, 89.8, 43.5, 56.5,10.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Dartmouth - James M. Quinn School,00720040, 0.0, 1.6, 1.4, 3.3, 6.3, 0.2, 87.2, 46.8, 53.2,12.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Dartmouth - Joseph Demello,00720015, 0.0, 0.5, 0.9, 3.7, 5.6, 0.0, 89.4, 48.4, 51.6,10.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Dedham - Avery,00730010, 0.9, 2.8, 9.7, 26.2, 7.5, 0.0, 53.0, 51.7, 48.3,47.0,0.0 +4.2593856655290105,4.26,a-cure-i1,2017-18,Dedham - Dedham High,00730505, 0.0, 4.0, 9.9, 13.4, 2.0, 0.0, 70.7, 49.3, 50.7,29.299999999999997,7.8 +1,1,a-cure-i1,2017-18,Dedham - Dedham Middle School,00730305, 0.2, 2.7, 6.0, 14.9, 3.0, 0.0, 73.3, 48.1, 51.9,26.700000000000003,4.800000000000001 +1,1,a-cure-i1,2017-18,Dedham - Early Childhood Center,00730005, 0.4, 1.9, 4.1, 14.1, 5.6, 0.0, 74.1, 45.9, 54.1,25.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Dedham - Greenlodge,00730025, 0.0, 1.9, 3.8, 7.1, 3.4, 0.0, 83.8, 44.4, 55.6,16.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Dedham - Oakdale,00730030, 0.0, 2.1, 6.7, 10.9, 7.0, 0.0, 73.3, 50.2, 49.8,26.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Dedham - Riverdale,00730045, 0.0, 1.1, 5.6, 15.6, 4.5, 0.0, 73.2, 45.8, 54.2,26.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Deerfield - Deerfield Elementary,00740015, 0.0, 1.2, 0.5, 6.5, 6.5, 0.0, 85.3, 51.4, 48.6,14.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.8, 2.9, 10.0, 11.5, 5.1, 0.1, 68.6, 49.3, 50.7,31.400000000000006,3.3 +1,1,a-cure-i1,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.1, 1.7, 8.6, 8.3, 9.7, 0.3, 70.2, 44.7, 55.3,29.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 4.0, 1.8, 9.2, 15.4, 7.0, 0.4, 62.1, 43.4, 56.6,37.9,0.0 +3.032679738562092,3.03,a-cure-i1,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 2.2, 2.0, 9.2, 11.6, 5.6, 0.0, 69.4, 49.4, 50.6,30.599999999999994,5.8 +1,1,a-cure-i1,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 2.4, 1.8, 9.2, 13.5, 5.7, 0.0, 67.3, 49.7, 50.3,32.7,3.1 +1,1,a-cure-i1,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 1.9, 2.2, 7.9, 6.2, 7.7, 0.5, 73.6, 48.7, 51.3,26.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 1.5, 1.7, 6.0, 5.2, 0.0, 85.5, 46.4, 53.6,14.5,0.0 +1,1,a-cure-i1,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.3, 1.5, 4.8, 4.1, 0.0, 88.3, 47.4, 52.6,11.700000000000003,4.8 +1,1,a-cure-i1,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.9, 1.1, 4.1, 2.4, 0.0, 91.5, 45.0, 55.0,8.5,3.4 +1,1,a-cure-i1,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 1.0, 0.2, 3.3, 2.9, 0.0, 92.5, 50.9, 49.1,7.5,0.0 +1,1,a-cure-i1,2017-18,Dighton-Rehoboth - Palmer River,06500010, 0.4, 1.8, 1.3, 4.5, 3.1, 0.0, 89.0, 51.7, 48.3,11.0,0.0 +1,1,a-cure-i1,2017-18,Douglas - Douglas Elementary School,00770015, 0.0, 1.3, 0.0, 3.2, 2.9, 0.0, 92.5, 51.7, 48.3,7.5,0.0 +1,1,a-cure-i1,2017-18,Douglas - Douglas High School,00770505, 0.0, 1.3, 0.5, 2.4, 1.0, 0.5, 94.2, 51.3, 48.7,5.799999999999997,2.9 +1,1,a-cure-i1,2017-18,Douglas - Douglas Middle School,00770305, 0.0, 1.4, 0.3, 3.7, 1.7, 0.3, 92.5, 44.0, 56.0,7.5,0.0 +1,1,a-cure-i1,2017-18,Douglas - Douglas Primary School,00770005, 0.4, 0.4, 0.0, 4.9, 4.5, 0.0, 89.7, 47.3, 52.7,10.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Dover - Chickering,00780005, 0.0, 15.4, 3.7, 3.9, 4.3, 0.2, 72.6, 44.5, 55.5,27.400000000000006,2.9 +6.339622641509432,5,a-cure-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.2, 7.2, 2.0, 2.7, 3.9, 0.0, 84.1, 49.6, 50.4,15.900000000000006,6.3 +4.296296296296298,4.3,a-cure-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.2, 10.8, 2.8, 3.2, 4.6, 0.0, 78.4, 49.3, 50.7,21.599999999999994,5.8 +1,1,a-cure-i1,2017-18,Dracut - Brookside Elementary,00790035, 0.0, 6.3, 9.2, 9.6, 0.9, 0.0, 74.0, 47.3, 52.7,26.0,0.0 +1,1,a-cure-i1,2017-18,Dracut - Dracut Senior High,00790505, 0.4, 7.1, 6.1, 5.9, 2.0, 0.1, 78.5, 50.0, 50.0,21.5,0.0 +1,1,a-cure-i1,2017-18,Dracut - George H. Englesby Elementary School,00790045, 0.0, 6.0, 5.0, 11.7, 1.9, 0.0, 75.3, 50.5, 49.5,24.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Dracut - Greenmont Avenue,00790030, 0.0, 5.4, 4.4, 16.7, 0.7, 0.0, 72.8, 46.9, 53.1,27.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 3.0, 4.4, 4.2, 3.0, 0.2, 85.3, 45.1, 54.9,14.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 0.2, 7.4, 6.0, 7.9, 1.6, 0.0, 76.9, 51.7, 48.3,23.099999999999994,2.1 +8.07250755287009,5,a-cure-i1,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, 0.0, 62.3, 35.9, 1.1, 0.0, 0.7, 52.5, 47.5,99.3,50.099999999999994 +1,1,a-cure-i1,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.6, 0.9, 6.4, 5.2, 0.0, 87.0, 47.0, 53.0,13.0,0.0 +1,1,a-cure-i1,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.1, 1.2, 0.6, 6.8, 1.4, 0.3, 89.6, 47.3, 52.7,10.400000000000006,0.0 +8.520710059171595,5,a-cure-i1,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.3, 3.1, 10.2, 3.3, 0.0, 83.1, 48.1, 51.9,16.900000000000006,9.0 +1,1,a-cure-i1,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 1.4, 1.7, 7.3, 2.1, 0.0, 87.5, 52.6, 47.4,12.5,2.4 +1,1,a-cure-i1,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 0.4, 1.5, 1.5, 7.9, 2.3, 0.0, 86.5, 44.6, 55.4,13.5,0.0 +5.977011494252872,5,a-cure-i1,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 0.4, 0.7, 2.2, 12.0, 2.2, 0.0, 82.6, 44.9, 55.1,17.400000000000006,6.5 +1,1,a-cure-i1,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.4, 2.0, 2.1, 7.9, 2.9, 0.1, 84.7, 52.3, 47.6,15.299999999999997,1.4 +1,1,a-cure-i1,2017-18,Duxbury - Alden School,00820004, 0.1, 1.3, 0.1, 2.5, 4.4, 0.0, 91.4, 50.7, 49.3,8.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Duxbury - Chandler Elementary,00820006, 0.0, 0.8, 0.8, 2.4, 3.0, 0.0, 93.0, 50.2, 49.8,7.0,2.8 +1,1,a-cure-i1,2017-18,Duxbury - Duxbury High,00820505, 0.0, 1.6, 0.3, 2.3, 1.4, 0.0, 94.4, 50.0, 50.0,5.599999999999994,0.5 +1,1,a-cure-i1,2017-18,Duxbury - Duxbury Middle,00820305, 0.1, 1.5, 0.1, 1.9, 4.0, 0.0, 92.3, 48.0, 52.0,7.700000000000003,1.7 +1,1,a-cure-i1,2017-18,East Bridgewater - Central,00830005, 0.3, 1.0, 2.3, 3.3, 4.8, 0.0, 88.2, 51.9, 48.1,11.799999999999997,0.9 +1,1,a-cure-i1,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.3, 0.7, 3.0, 1.6, 1.4, 0.1, 93.0, 52.2, 47.8,7.0,0.0 +1,1,a-cure-i1,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 0.6, 0.3, 3.5, 2.3, 3.5, 0.2, 89.7, 43.1, 56.9,10.299999999999997,0.0 +1,1,a-cure-i1,2017-18,East Longmeadow - Birchland Park,00870305, 0.0, 5.3, 2.9, 7.5, 1.4, 0.0, 83.0, 46.6, 53.4,17.0,4.4 +8.101265822784812,5,a-cure-i1,2017-18,East Longmeadow - East Longmeadow High,00870505, 0.4, 5.7, 3.7, 4.8, 1.0, 0.2, 84.2, 50.2, 49.8,15.799999999999997,8.0 +1,1,a-cure-i1,2017-18,East Longmeadow - Mapleshade,00870010, 0.0, 7.8, 5.0, 8.2, 3.5, 0.0, 75.5, 49.3, 50.7,24.5,0.0 +1,1,a-cure-i1,2017-18,East Longmeadow - Meadow Brook,00870013, 0.0, 4.3, 1.2, 9.2, 4.3, 0.0, 81.0, 47.2, 52.8,19.0,3.2 +1,1,a-cure-i1,2017-18,East Longmeadow - Mountain View,00870015, 0.3, 4.1, 2.4, 7.8, 4.1, 0.0, 81.2, 48.8, 51.2,18.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Eastham - Eastham Elementary,00850005, 0.6, 2.3, 5.8, 1.7, 2.3, 0.0, 87.2, 50.6, 49.4,12.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Easthampton - Center School,00860005, 1.0, 1.5, 0.0, 12.7, 4.6, 0.0, 80.2, 44.2, 55.8,19.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Easthampton - Easthampton High,00860505, 0.0, 3.9, 2.4, 11.2, 1.9, 0.2, 80.5, 53.0, 47.0,19.5,3.2 +1,1,a-cure-i1,2017-18,Easthampton - Maple,00860010, 0.4, 4.0, 2.0, 11.7, 3.6, 0.0, 78.2, 45.6, 54.4,21.799999999999997,0.0 +4.659003831417626,4.66,a-cure-i1,2017-18,Easthampton - Neil A Pepin,00860020, 0.6, 4.4, 1.1, 15.0, 5.0, 0.0, 73.9, 42.8, 57.2,26.099999999999994,7.6 +1,1,a-cure-i1,2017-18,Easthampton - White Brook Middle School,00860305, 0.0, 4.2, 0.9, 12.2, 1.3, 0.0, 81.3, 51.3, 48.7,18.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Easton - Center School,00880003, 0.4, 2.2, 8.2, 3.7, 3.0, 0.0, 82.4, 42.3, 57.7,17.599999999999994,0.0 +5.621621621621623,5,a-cure-i1,2017-18,Easton - Easton Middle School,00880405, 0.1, 3.3, 5.1, 3.7, 2.6, 0.0, 85.2, 48.6, 51.4,14.799999999999997,5.2 +1,1,a-cure-i1,2017-18,Easton - Moreau Hall,00880020, 1.8, 3.1, 6.2, 8.4, 1.3, 0.4, 78.9, 45.4, 54.6,21.099999999999994,0.0 +5.517241379310343,5,a-cure-i1,2017-18,Easton - Oliver Ames High,00880505, 0.3, 3.6, 5.6, 4.9, 3.1, 0.0, 82.6, 53.9, 46.1,17.400000000000006,6.0 +1,1,a-cure-i1,2017-18,Easton - Parkview Elementary,00880015, 0.6, 1.6, 3.8, 6.9, 5.3, 0.0, 81.8, 48.9, 51.1,18.200000000000003,2.1 +1,1,a-cure-i1,2017-18,Easton - Richardson Olmsted School,00880025, 0.0, 3.0, 6.6, 3.8, 2.9, 0.1, 83.6, 50.2, 49.8,16.400000000000006,4.0 +1,1,a-cure-i1,2017-18,Edgartown - Edgartown Elementary,00890005, 2.6, 0.3, 3.2, 19.6, 4.4, 0.0, 69.8, 52.5, 47.5,30.200000000000003,0.0 +9.873048907388137,5,a-cure-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, 0.3, 1.8, 42.4, 48.7, 2.9, 0.0, 3.9, 61.6, 38.4,96.1,59.3 +1,1,a-cure-i1,2017-18,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 3.5, 10.6, 0.0, 85.9, 49.3, 50.7,14.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.3, 1.4, 1.2, 11.6, 3.0, 0.1, 82.3, 58.2, 41.6,17.700000000000003,1.3 +1,1,a-cure-i1,2017-18,Everett - Adams School,00930003, 0.0, 5.5, 19.9, 38.8, 3.5, 0.0, 32.3, 40.3, 59.7,67.7,0.0 +2.3808000000000002,2.38,a-cure-i1,2017-18,Everett - Devens School,00930030, 0.0, 0.0, 23.2, 35.7, 3.6, 0.0, 37.5, 30.4, 69.6,62.5,9.3 +2.503401360544218,2.5,a-cure-i1,2017-18,Everett - Everett High,00930505, 0.3, 5.1, 19.5, 47.3, 1.3, 0.2, 26.5, 48.8, 51.2,73.5,11.5 +1.321100917431193,1.32,a-cure-i1,2017-18,Everett - George Keverian School,00930028, 0.5, 5.1, 15.1, 53.4, 2.2, 0.1, 23.7, 48.1, 51.9,76.3,6.300000000000001 +1,1,a-cure-i1,2017-18,Everett - Lafayette School,00930038, 0.5, 5.3, 18.3, 47.0, 2.6, 0.0, 26.2, 50.8, 49.2,73.8,3.8 +1,1,a-cure-i1,2017-18,Everett - Madeline English School,00930018, 0.4, 5.0, 12.4, 51.3, 1.6, 0.1, 29.2, 50.1, 49.9,70.8,1.9 +1.5501730103806228,1.55,a-cure-i1,2017-18,Everett - Parlin School,00930058, 0.2, 3.0, 15.3, 67.1, 1.1, 0.0, 13.3, 50.8, 49.2,86.7,8.4 +0.9512485136741975,1,a-cure-i1,2017-18,Everett - Sumner G. Whittier School,00930010, 1.0, 5.5, 12.2, 63.9, 1.6, 0.0, 15.9, 50.2, 49.8,84.1,5.0 +1.1157601115760112,1.12,a-cure-i1,2017-18,Everett - Webster School,00930015, 0.1, 5.6, 15.6, 49.3, 1.1, 0.0, 28.3, 44.3, 55.7,71.7,5.0 +2.7413213885778274,2.74,a-cure-i1,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 1.0, 1.4, 6.9, 79.1, 0.5, 0.4, 10.7, 50.8, 49.2,89.3,15.299999999999999 +1,1,a-cure-i1,2017-18,Fairhaven - East Fairhaven,00940010, 1.0, 1.2, 1.9, 6.9, 3.8, 0.0, 85.2, 46.3, 53.7,14.799999999999997,0.0 +7.737704918032786,5,a-cure-i1,2017-18,Fairhaven - Fairhaven High,00940505, 0.6, 1.7, 0.5, 6.3, 3.2, 0.0, 87.8, 52.3, 47.7,12.200000000000003,5.9 +1,1,a-cure-i1,2017-18,Fairhaven - Hastings Middle,00940305, 0.2, 2.6, 1.5, 5.3, 3.0, 0.0, 87.4, 47.9, 52.1,12.599999999999994,2.9 +1,1,a-cure-i1,2017-18,Fairhaven - Leroy Wood,00940030, 0.4, 1.8, 2.5, 4.9, 4.3, 0.0, 86.1, 52.1, 47.9,13.900000000000006,0.0 +2.6285714285714286,2.63,a-cure-i1,2017-18,Fall River - B M C Durfee High,00950505, 0.2, 5.4, 8.1, 23.7, 4.4, 0.2, 58.0, 49.5, 50.5,42.0,6.9 +1,1,a-cure-i1,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.1, 4.2, 7.7, 31.8, 10.1, 0.0, 46.0, 46.8, 53.2,54.0,0.0 +1,1,a-cure-i1,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 0.0,0.0,0.0 +1,1,a-cure-i1,2017-18,Fall River - Henry Lord Community School,00950017, 0.3, 4.6, 10.6, 32.9, 10.4, 0.0, 41.2, 46.2, 53.8,58.8,4.3 +1,1,a-cure-i1,2017-18,Fall River - James Tansey,00950140, 0.0, 0.6, 2.5, 7.0, 8.9, 0.0, 81.0, 51.7, 48.3,19.0,0.0 +1,1,a-cure-i1,2017-18,Fall River - John J Doran,00950045, 0.4, 1.1, 9.0, 29.5, 9.5, 0.0, 50.5, 47.8, 52.2,49.5,3.5 +2.88,2.88,a-cure-i1,2017-18,Fall River - Letourneau Elementary School,00950013, 0.0, 2.1, 5.8, 34.1, 7.9, 0.0, 50.0, 51.1, 48.9,50.0,9.0 +1.692068429237947,1.69,a-cure-i1,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 0.4, 4.9, 9.3, 37.5, 12.0, 0.1, 35.7, 49.2, 50.8,64.3,6.8 +1,1,a-cure-i1,2017-18,Fall River - Matthew J Kuss Middle,00950320, 0.1, 4.7, 8.9, 20.5, 6.7, 0.0, 59.1, 52.3, 47.7,40.9,4.8 +2.797202797202797,2.8,a-cure-i1,2017-18,Fall River - Morton Middle,00950315, 0.5, 5.1, 8.5, 23.0, 5.6, 0.2, 57.1, 44.1, 55.9,42.9,7.5 +1,1,a-cure-i1,2017-18,Fall River - North End Elementary,00950005, 0.1, 3.1, 6.4, 19.6, 10.5, 0.1, 60.1, 48.4, 51.6,39.9,2.6 +6.32808988764045,5,a-cure-i1,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 0.5, 1.6, 10.4, 25.3, 5.5, 1.1, 55.5, 49.5, 50.5,44.5,17.6 +1,1,a-cure-i1,2017-18,Fall River - Samuel Watson,00950145, 1.4, 2.1, 13.1, 21.6, 12.4, 0.0, 49.5, 49.8, 50.2,50.5,0.0 +2.645994832041344,2.65,a-cure-i1,2017-18,Fall River - Spencer Borden,00950130, 0.0, 4.8, 5.3, 19.0, 9.6, 0.0, 61.3, 44.9, 55.1,38.7,6.4 +3.646817248459959,3.65,a-cure-i1,2017-18,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 12.8, 23.1, 12.8, 0.0, 51.3, 15.4, 84.6,48.7,11.1 +1,1,a-cure-i1,2017-18,Fall River - Talbot Innovation School,00950305, 0.0, 4.7, 8.1, 33.4, 8.5, 0.0, 45.3, 43.7, 56.3,54.7,0.0 +1,1,a-cure-i1,2017-18,Fall River - William S Greene,00950065, 0.1, 5.1, 4.8, 25.6, 9.6, 0.0, 54.7, 51.8, 48.2,45.3,2.4 +3.925925925925927,3.93,a-cure-i1,2017-18,Falmouth - East Falmouth Elementary,00960005, 2.7, 1.1, 4.5, 5.3, 8.0, 0.0, 78.4, 48.5, 51.5,21.599999999999994,5.3 +5.221052631578947,5,a-cure-i1,2017-18,Falmouth - Falmouth High,00960505, 1.0, 3.7, 4.2, 4.2, 6.1, 0.0, 81.0, 52.3, 47.6,19.0,6.199999999999999 +7.280423280423278,5,a-cure-i1,2017-18,Falmouth - Lawrence,00960405, 0.7, 1.8, 5.5, 5.0, 5.7, 0.2, 81.1, 48.1, 51.9,18.900000000000006,8.6 +4.356435643564356,4.36,a-cure-i1,2017-18,Falmouth - Morse Pond School,00960305, 0.7, 2.2, 5.9, 5.6, 5.6, 0.2, 79.8, 49.7, 50.3,20.200000000000003,5.5 +1,1,a-cure-i1,2017-18,Falmouth - Mullen-Hall,00960020, 1.4, 2.8, 2.3, 7.1, 7.6, 0.0, 78.8, 42.6, 57.4,21.200000000000003,0.0 +10.448979591836732,5,a-cure-i1,2017-18,Falmouth - North Falmouth Elementary,00960030, 0.0, 1.3, 3.1, 5.9, 4.4, 0.0, 85.3, 52.2, 47.8,14.700000000000003,9.6 +1,1,a-cure-i1,2017-18,Falmouth - Teaticket,00960015, 2.7, 0.8, 8.5, 8.2, 6.6, 0.0, 73.2, 45.5, 54.5,26.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.8, 0.0, 1.7, 0.8, 0.0, 96.7, 39.7, 60.3,3.299999999999997,0.0 +3.2797783933518008,3.28,a-cure-i1,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 4.2, 6.1, 54.6, 7.1, 0.2, 27.8, 45.4, 54.6,72.2,14.8 +1,1,a-cure-i1,2017-18,Fitchburg - Crocker Elementary,00970016, 0.2, 2.9, 3.3, 51.1, 8.4, 0.2, 34.0, 46.2, 53.8,66.0,3.2 +3.12992700729927,3.13,a-cure-i1,2017-18,Fitchburg - Fitchburg High,00970505, 0.0, 5.4, 8.4, 47.4, 7.3, 0.1, 31.5, 48.5, 51.5,68.5,13.4 +10.134357005758156,5,a-cure-i1,2017-18,Fitchburg - Goodrich Academy,00970510, 0.0, 1.2, 5.9, 40.2, 4.7, 0.0, 47.9, 49.7, 50.3,52.1,33.0 +1.8892128279883382,1.89,a-cure-i1,2017-18,Fitchburg - McKay Arts Academy,00970340, 0.0, 7.6, 4.6, 49.9, 6.5, 0.0, 31.4, 53.7, 46.3,68.6,8.1 +1.518413597733711,1.52,a-cure-i1,2017-18,Fitchburg - Memorial Intermediate,00970048, 0.0, 6.6, 4.5, 53.0, 6.5, 0.0, 29.4, 50.0, 50.0,70.6,6.699999999999999 +1.498489425981873,1.5,a-cure-i1,2017-18,Fitchburg - Reingold Elementary,00970043, 0.0, 2.9, 5.6, 49.6, 8.0, 0.2, 33.8, 47.8, 52.2,66.2,6.2 +1,1,a-cure-i1,2017-18,Fitchburg - South Street Elementary,00970060, 0.2, 5.3, 6.9, 53.6, 6.8, 0.0, 27.3, 48.8, 51.2,72.7,0.0 +1,1,a-cure-i1,2017-18,Florida - Abbott Memorial,00980005, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 98.8, 50.0, 50.0,1.2000000000000028,0.0 +1,1,a-cure-i1,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 1.4, 0.5, 7.7, 5.0, 0.0, 85.6, 50.0, 50.0,14.400000000000006,3.0 +1,1,a-cure-i1,2017-18,Foxborough - Charles Taylor Elementary,00990050, 1.3, 4.6, 3.4, 4.6, 3.4, 0.4, 82.3, 45.6, 54.4,17.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Foxborough - Foxborough High,00990505, 0.0, 3.0, 5.1, 3.2, 1.4, 0.1, 87.2, 47.8, 52.2,12.799999999999997,1.6 +1,1,a-cure-i1,2017-18,Foxborough - John J Ahern,00990405, 0.6, 2.4, 4.9, 5.2, 1.9, 0.0, 85.1, 47.7, 52.3,14.900000000000006,3.0 +4.833333333333332,4.83,a-cure-i1,2017-18,Foxborough - Mabelle M Burrell,00990015, 0.3, 6.3, 3.5, 6.3, 2.5, 0.3, 80.8, 47.6, 52.4,19.200000000000003,5.8 +1,1,a-cure-i1,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 0.5, 7.1, 3.1, 6.1, 4.1, 0.0, 79.1, 49.4, 50.6,20.900000000000006,0.0 +3.388535031847134,3.39,a-cure-i1,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.3, 10.2, 42.1, 4.9, 5.2, 0.1, 37.2, 52.9, 47.1,62.8,13.3 +6.998709677419354,5,a-cure-i1,2017-18,Framingham - Barbieri Elementary,01000035, 0.1, 0.6, 3.7, 69.9, 3.2, 0.0, 22.5, 54.8, 45.2,77.5,33.9 +2.480243161094225,2.48,a-cure-i1,2017-18,Framingham - Brophy,01000006, 0.0, 3.8, 6.1, 54.0, 1.9, 0.0, 34.2, 52.1, 47.9,65.8,10.2 +3.9745222929936297,3.97,a-cure-i1,2017-18,Framingham - Cameron Middle School,01000302, 0.2, 2.8, 6.5, 17.8, 4.1, 0.0, 68.6, 49.2, 50.8,31.400000000000006,7.8 +1,1,a-cure-i1,2017-18,Framingham - Charlotte A Dunning,01000007, 0.0, 12.7, 6.8, 11.9, 3.4, 0.0, 65.2, 46.3, 53.7,34.8,4.6 +6.424870466321243,5,a-cure-i1,2017-18,Framingham - Framingham High School,01000515, 0.0, 5.8, 7.3, 22.2, 3.2, 0.0, 61.4, 49.7, 50.3,38.6,15.5 +5.294332723948812,5,a-cure-i1,2017-18,Framingham - Fuller Middle,01000305, 0.0, 2.4, 9.4, 38.9, 3.4, 0.6, 45.3, 48.9, 51.1,54.7,18.1 +3.0067114093959733,3.01,a-cure-i1,2017-18,Framingham - Hemenway,01000015, 0.2, 8.1, 5.3, 10.9, 5.3, 0.0, 70.2, 50.0, 50.0,29.799999999999997,5.6 +1.8167330677290836,1.82,a-cure-i1,2017-18,Framingham - Juniper Hill School,01000001, 0.0, 11.0, 7.0, 25.6, 6.2, 0.4, 49.8, 47.6, 52.4,50.2,5.7 +2.5142857142857142,2.51,a-cure-i1,2017-18,Framingham - King Elementary School,01000005, 0.0, 9.9, 5.7, 11.7, 7.8, 0.0, 65.0, 45.2, 54.8,35.0,5.5 +1,1,a-cure-i1,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 4.3, 7.9, 16.8, 4.1, 0.0, 66.9, 47.2, 52.8,33.099999999999994,0.0 +4.153846153846154,4.15,a-cure-i1,2017-18,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.7, 12.6, 30.1, 6.0, 0.5, 48.0, 50.7, 49.3,52.0,13.5 +4.015936254980081,4.02,a-cure-i1,2017-18,Framingham - Potter Road,01000039, 0.0, 5.5, 7.0, 7.2, 5.5, 0.0, 74.9, 48.9, 51.1,25.099999999999994,6.300000000000001 +4.299559471365638,4.3,a-cure-i1,2017-18,Framingham - Walsh Middle,01000310, 0.0, 5.8, 4.5, 32.7, 2.5, 0.0, 54.6, 46.6, 53.4,45.4,12.2 +8.231213872832372,5,a-cure-i1,2017-18,Framingham - Woodrow Wilson,01000055, 0.2, 0.7, 9.5, 22.1, 2.1, 0.0, 65.4, 48.6, 51.4,34.599999999999994,17.8 +15.346938775510207,5,a-cure-i1,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 1.8, 0.5, 2.8, 4.8, 0.0, 90.2, 53.8, 46.0,9.799999999999997,9.399999999999999 +1,1,a-cure-i1,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, 3.8, 0.2, 3.1, 1.1, 0.7, 91.0, 47.1, 52.9,9.0,0.0 +1,1,a-cure-i1,2017-18,Franklin - Davis Thayer,01010035, 0.4, 1.7, 2.2, 5.2, 0.9, 0.0, 89.6, 47.6, 52.4,10.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 1.0, 1.0, 2.9, 7.7, 3.8, 2.9, 80.8, 39.4, 60.6,19.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Franklin - Franklin High,01010505, 0.2, 5.6, 1.7, 2.0, 2.0, 0.2, 88.2, 49.9, 50.1,11.799999999999997,1.8 +1,1,a-cure-i1,2017-18,Franklin - Helen Keller Elementary,01010012, 0.0, 3.5, 1.5, 1.2, 1.5, 0.5, 91.8, 47.8, 52.2,8.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Franklin - Horace Mann,01010405, 0.0, 6.9, 1.1, 3.0, 2.4, 0.0, 86.6, 50.9, 49.1,13.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Franklin - J F Kennedy Memorial,01010013, 0.3, 6.3, 0.3, 3.5, 1.6, 1.6, 86.4, 46.3, 53.7,13.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Franklin - Jefferson Elementary,01010010, 0.0, 8.3, 1.5, 3.0, 0.9, 1.2, 85.1, 44.9, 55.1,14.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Franklin - Oak Street Elementary,01010030, 0.0, 4.1, 1.5, 4.4, 2.3, 0.3, 87.4, 45.6, 54.4,12.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Franklin - Parmenter,01010032, 0.3, 5.6, 4.6, 3.4, 1.9, 1.2, 83.0, 47.7, 52.3,17.0,0.0 +1,1,a-cure-i1,2017-18,Franklin - Remington Middle,01010310, 0.0, 5.2, 1.6, 2.7, 2.3, 0.0, 88.2, 49.9, 50.1,11.799999999999997,2.8 +1,1,a-cure-i1,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.2, 1.2, 2.7, 0.2, 0.0, 95.7, 30.6, 69.4,4.299999999999997,2.1 +1,1,a-cure-i1,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 0.1, 1.7, 1.2, 1.9, 1.7, 0.1, 93.3, 48.9, 51.1,6.700000000000003,4.1 +1,1,a-cure-i1,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.7, 2.5, 0.9, 3.0, 0.0, 92.9, 46.3, 53.7,7.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.2, 1.0, 1.5, 1.0, 0.0, 96.4, 49.3, 50.7,3.5999999999999943,0.0 +1,1,a-cure-i1,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.3, 0.5, 0.8, 2.5, 1.6, 0.1, 94.1, 51.1, 48.9,5.900000000000006,2.4 +1,1,a-cure-i1,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.2, 1.1, 1.8, 0.5, 1.8, 0.0, 94.5, 50.9, 49.1,5.5,0.0 +1,1,a-cure-i1,2017-18,Frontier - Frontier Regional,06700505, 0.0, 2.7, 1.6, 5.0, 2.7, 0.2, 87.8, 46.2, 53.8,12.200000000000003,4.2 +3.6363636363636362,3.64,a-cure-i1,2017-18,Gardner - Elm Street School,01030001, 0.2, 1.4, 2.5, 18.3, 10.5, 0.0, 67.0, 47.5, 52.5,33.0,7.5 +1,1,a-cure-i1,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 1.4, 1.4, 2.7, 8.2, 9.6, 0.0, 76.7, 49.3, 49.3,23.299999999999997,0.0 +7.143911439114394,5,a-cure-i1,2017-18,Gardner - Gardner High,01030505, 0.3, 2.3, 3.3, 15.7, 5.5, 0.0, 72.9, 46.5, 53.5,27.099999999999994,12.100000000000001 +1,1,a-cure-i1,2017-18,Gardner - Gardner Middle School,01030405, 0.0, 1.8, 2.2, 19.0, 8.8, 0.0, 68.1, 49.5, 50.5,31.900000000000006,2.5 +1,1,a-cure-i1,2017-18,Gardner - Waterford Street,01030020, 0.0, 1.1, 2.6, 19.4, 6.4, 0.0, 70.5, 49.4, 50.6,29.5,4.0 +1,1,a-cure-i1,2017-18,Gateway - Chester Elementary,06720059, 1.7, 0.0, 0.8, 3.4, 2.5, 0.0, 91.6, 38.7, 61.3,8.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Gateway - Gateway Regional High,06720505, 0.0, 0.9, 0.5, 4.2, 1.9, 0.0, 92.6, 52.6, 47.4,7.400000000000006,4.5 +1,1,a-cure-i1,2017-18,Gateway - Gateway Regional Middle School,06720405, 0.5, 0.0, 1.0, 4.5, 1.0, 0.0, 92.9, 48.0, 52.0,7.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 3.3, 3.0, 0.3, 92.3, 48.8, 51.2,7.700000000000003,0.0 +11.428571428571429,5,a-cure-i1,2017-18,Georgetown - Georgetown High School,01050505, 0.0, 1.2, 0.7, 3.0, 2.0, 0.0, 93.0, 51.9, 48.1,7.0,5.0 +1,1,a-cure-i1,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 1.3, 1.3, 1.3, 0.9, 0.0, 95.2, 44.8, 55.2,4.799999999999997,0.2 +1,1,a-cure-i1,2017-18,Georgetown - Penn Brook,01050010, 0.0, 1.2, 1.0, 1.9, 1.2, 0.3, 94.5, 48.8, 51.2,5.5,0.0 +1,1,a-cure-i1,2017-18,Georgetown - Perley Elementary,01050005, 0.8, 0.8, 0.0, 0.0, 0.8, 0.0, 97.5, 52.1, 47.9,2.5,0.0 +1,1,a-cure-i1,2017-18,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.5, 2.2, 7.5, 0.0, 88.8, 47.8, 52.2,11.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Gill-Montague - Great Falls Middle,06740310, 0.4, 0.4, 2.0, 9.4, 5.3, 0.0, 82.4, 48.2, 51.8,17.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.6, 0.0, 16.7, 8.0, 0.6, 74.1, 40.7, 59.3,25.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 0.5, 0.0, 0.0, 17.1, 8.8, 0.5, 73.1, 48.6, 51.4,26.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Gill-Montague - Turners Fall High,06740505, 0.0, 0.5, 1.4, 7.8, 4.6, 0.0, 85.8, 58.9, 41.1,14.200000000000003,0.0 +1.8181818181818183,1.82,a-cure-i1,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.8, 0.8, 10.2, 36.0, 5.1, 0.0, 47.2, 49.7, 50.3,52.8,6.0 +1,1,a-cure-i1,2017-18,Gloucester - Beeman Memorial,01070010, 0.6, 1.8, 0.9, 15.6, 2.4, 0.0, 78.8, 51.3, 48.7,21.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 9.3, 4.2, 0.0, 86.5, 47.4, 52.6,13.5,0.0 +1,1,a-cure-i1,2017-18,Gloucester - Gloucester High,01070505, 0.4, 1.4, 2.1, 10.9, 1.8, 0.6, 82.8, 46.5, 53.5,17.200000000000003,1.9 +1,1,a-cure-i1,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, 1.9, 3.7, 7.5, 6.5, 0.0, 80.4, 42.1, 57.9,19.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Gloucester - Plum Cove School,01070042, 0.0, 0.5, 3.3, 4.7, 1.9, 0.0, 89.6, 49.5, 50.5,10.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 0.1, 1.5, 2.1, 7.2, 4.5, 0.4, 84.2, 46.6, 53.4,15.799999999999997,2.4 +1,1,a-cure-i1,2017-18,Gloucester - Veterans Memorial,01070045, 0.0, 1.9, 1.4, 19.3, 2.4, 0.0, 74.9, 54.1, 45.9,25.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Gloucester - West Parish,01070050, 0.8, 2.0, 1.4, 5.9, 4.2, 0.3, 85.4, 50.0, 50.0,14.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 50.0, 50.0,0.0,0.0 +1,1,a-cure-i1,2017-18,Grafton - Grafton High School,01100505, 0.0, 9.2, 1.4, 3.5, 2.6, 0.1, 83.1, 50.7, 49.3,16.900000000000006,3.1999999999999997 +1,1,a-cure-i1,2017-18,Grafton - Grafton Middle,01100305, 0.0, 10.5, 1.7, 3.1, 2.7, 0.0, 82.1, 51.9, 48.1,17.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Grafton - Millbury Street Elementary School,01100200, 0.0, 16.0, 1.8, 5.8, 1.8, 0.0, 74.5, 47.9, 52.1,25.5,3.1 +1,1,a-cure-i1,2017-18,Grafton - North Grafton Elementary,01100025, 0.4, 11.8, 1.2, 3.5, 3.9, 0.0, 79.1, 48.0, 52.0,20.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Grafton - North Street Elementary School,01100030, 0.5, 8.0, 0.7, 6.3, 4.8, 0.5, 79.1, 45.7, 54.3,20.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Grafton - South Grafton Elementary,01100005, 0.0, 16.6, 0.0, 4.6, 3.6, 0.0, 75.2, 41.1, 58.9,24.799999999999997,0.0 +10.814814814814817,5,a-cure-i1,2017-18,Granby - East Meadow,01110004, 0.0, 1.4, 0.0, 6.8, 2.7, 0.0, 89.2, 43.2, 56.8,10.799999999999997,7.3 +1,1,a-cure-i1,2017-18,Granby - Granby Jr Sr High School,01110505, 0.3, 2.6, 0.3, 8.8, 1.2, 0.0, 86.8, 44.6, 55.4,13.200000000000003,4.2 +1,1,a-cure-i1,2017-18,Granby - West Street,01110010, 0.9, 1.4, 0.0, 9.0, 6.1, 0.0, 82.5, 52.8, 47.2,17.5,0.0 +1,1,a-cure-i1,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.5, 1.7, 2.3, 9.8, 6.1, 0.1, 79.5, 44.2, 55.8,20.5,4.3 +1.9002375296912113,1.9,a-cure-i1,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.1, 1.2, 0.9, 82.0, 0.0, 0.0, 15.8, 50.1, 49.9,84.2,10.0 +1.6344086021505375,1.63,a-cure-i1,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.3, 16.3, 3.7, 32.2, 3.3, 0.0, 44.2, 44.6, 55.4,55.8,5.699999999999999 +3.4383954154727783,3.44,a-cure-i1,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.5, 0.8, 8.1, 21.6, 3.9, 0.0, 65.1, 49.7, 50.3,34.900000000000006,7.499999999999999 +8.543689320388351,5,a-cure-i1,2017-18,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.8, 9.1, 0.4, 0.0, 89.7, 49.2, 50.8,10.299999999999997,5.5 +1,1,a-cure-i1,2017-18,Greenfield - Federal Street School,01140010, 0.0, 0.8, 4.5, 17.0, 7.3, 0.0, 70.4, 50.2, 49.8,29.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Greenfield - Greenfield High,01140505, 0.0, 2.8, 2.8, 18.8, 6.7, 0.0, 68.8, 45.7, 54.1,31.200000000000003,4.6 +1,1,a-cure-i1,2017-18,Greenfield - Greenfield Middle,01140305, 0.0, 1.6, 1.1, 17.7, 6.6, 0.0, 73.1, 47.2, 52.8,26.900000000000006,3.1 +1,1,a-cure-i1,2017-18,Greenfield - Newton School,01140035, 0.0, 0.8, 2.5, 31.0, 7.4, 0.0, 58.3, 49.2, 50.8,41.7,0.0 +1,1,a-cure-i1,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.7, 1.7, 12.0, 2.6, 0.0, 82.1, 47.9, 52.1,17.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Groton-Dunstable - Boutwell School,06730001, 1.6, 4.8, 0.0, 9.5, 4.8, 0.0, 79.4, 52.4, 47.6,20.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Groton-Dunstable - Florence Roche School,06730010, 0.2, 5.8, 0.4, 1.4, 3.7, 0.2, 88.3, 49.3, 50.7,11.700000000000003,4.0 +1,1,a-cure-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.1, 6.4, 1.0, 1.0, 0.6, 0.0, 90.8, 50.4, 49.6,9.200000000000003,2.1 +1,1,a-cure-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.3, 6.0, 1.0, 1.8, 1.8, 0.3, 88.8, 48.9, 51.1,11.200000000000003,4.2 +7.157894736842101,5,a-cure-i1,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 6.6, 0.0, 2.8, 2.1, 0.0, 88.6, 46.2, 53.8,11.400000000000006,5.1 +1,1,a-cure-i1,2017-18,Hadley - Hadley Elementary,01170015, 0.3, 1.0, 3.1, 9.4, 4.2, 2.4, 79.4, 46.7, 53.3,20.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Hadley - Hopkins Academy,01170505, 0.4, 2.5, 1.7, 8.3, 3.3, 2.9, 81.0, 47.9, 52.1,19.0,0.0 +1,1,a-cure-i1,2017-18,Halifax - Halifax Elementary,01180005, 0.3, 0.5, 1.5, 2.2, 2.5, 0.2, 92.8, 49.4, 50.6,7.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 3.1, 0.0, 6.6, 2.3, 0.0, 87.9, 45.9, 54.1,12.099999999999994,0.0 +9.237113402061853,5,a-cure-i1,2017-18,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.5, 0.0, 2.4, 2.8, 1.0, 90.3, 49.8, 50.2,9.700000000000003,5.6 +12.8,5,a-cure-i1,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 3.6, 0.4, 3.6, 2.5, 0.0, 90.0, 50.7, 49.3,10.0,8.0 +9.846153846153852,5,a-cure-i1,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.9, 0.8, 3.7, 1.3, 0.5, 90.9, 55.1, 44.9,9.099999999999994,5.6 +5.999999999999998,5,a-cure-i1,2017-18,Hamilton-Wenham - Winthrop School,06750015, 1.0, 4.8, 2.7, 4.5, 1.4, 0.0, 85.6, 52.6, 47.4,14.400000000000006,5.4 +3.488151658767773,3.49,a-cure-i1,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 2.4, 27.5, 31.8, 1.6, 0.0, 36.7, 51.9, 48.1,63.3,13.8 +1,1,a-cure-i1,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 1.2, 1.2, 6.0, 3.6, 0.0, 88.0, 51.2, 48.8,12.0,0.0 +6.803149606299211,5,a-cure-i1,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 2.3, 2.0, 4.6, 3.2, 0.6, 87.3, 51.6, 48.4,12.700000000000003,5.4 +1,1,a-cure-i1,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.2, 3.4, 2.4, 5.2, 2.9, 0.2, 85.7, 51.1, 48.9,14.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Hampden-Wilbraham - Soule Road,06800030, 0.0, 1.5, 4.4, 7.0, 2.9, 0.0, 84.3, 50.6, 49.4,15.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 1.7, 1.7, 8.8, 5.1, 0.0, 82.8, 45.1, 54.9,17.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 1.9, 1.9, 3.8, 8.6, 2.9, 0.0, 81.0, 47.6, 52.4,19.0,0.0 +1,1,a-cure-i1,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.3, 2.8, 2.5, 5.3, 2.3, 0.0, 86.8, 51.0, 49.0,13.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Hampshire - Hampshire Regional High,06830505, 0.0, 0.7, 0.6, 3.3, 2.3, 0.0, 93.2, 54.5, 45.5,6.799999999999997,1.4 +97.99999999999976,5,a-cure-i1,2017-18,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0, 97.6, 38.1, 61.9,2.4000000000000057,14.7 +1,1,a-cure-i1,2017-18,Hanover - Cedar Elementary,01220004, 0.0, 1.9, 1.0, 1.4, 0.0, 0.0, 95.7, 45.7, 54.3,4.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Hanover - Center Elementary,01220005, 0.0, 0.9, 0.3, 2.7, 1.2, 0.0, 94.9, 47.8, 52.2,5.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Hanover - Hanover High,01220505, 0.0, 2.4, 0.6, 1.1, 0.1, 0.0, 95.8, 46.1, 53.4,4.200000000000003,1.7 +1,1,a-cure-i1,2017-18,Hanover - Hanover Middle,01220305, 0.0, 2.8, 1.1, 2.2, 0.5, 0.0, 93.5, 48.1, 51.9,6.5,1.6 +24.92307692307691,5,a-cure-i1,2017-18,Hanover - Sylvester,01220015, 0.0, 1.7, 0.4, 1.7, 1.3, 0.0, 94.8, 49.3, 50.7,5.200000000000003,8.1 +1,1,a-cure-i1,2017-18,Harvard - Bromfield,01250505, 0.0, 12.8, 2.0, 4.3, 1.7, 0.0, 79.2, 48.9, 51.0,20.799999999999997,3.6 +5.619512195121952,5,a-cure-i1,2017-18,Harvard - Hildreth Elementary School,01250005, 0.0, 8.6, 3.0, 5.0, 3.9, 0.0, 79.5, 50.7, 49.3,20.5,7.2 +1,1,a-cure-i1,2017-18,Hatfield - Hatfield Elementary,01270005, 0.0, 0.4, 0.8, 4.0, 0.8, 0.0, 93.9, 47.0, 52.6,6.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Hatfield - Smith Academy,01270505, 0.0, 2.6, 1.1, 3.2, 3.7, 0.0, 89.4, 48.1, 51.9,10.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Bradford Elementary,01280008, 0.3, 1.6, 4.1, 19.9, 1.9, 0.0, 72.2, 46.5, 53.5,27.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 0.1, 1.6, 3.9, 20.4, 2.0, 0.1, 72.0, 48.6, 51.4,28.0,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 4.7, 43.9, 3.7, 0.0, 47.7, 48.6, 51.4,52.3,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Consentino Middle School,01280100, 0.1, 1.8, 4.4, 47.5, 1.3, 0.1, 44.7, 50.3, 49.7,55.3,0.0 +5.442176870748299,5,a-cure-i1,2017-18,Haverhill - Crowell,01280020, 1.0, 2.1, 3.1, 51.5, 1.0, 0.0, 41.2, 48.5, 51.5,58.8,20.0 +1,1,a-cure-i1,2017-18,Haverhill - Dr Paul Nettle,01280050, 0.2, 3.2, 5.0, 36.6, 1.4, 0.2, 53.4, 50.8, 49.2,46.6,3.6 +1,1,a-cure-i1,2017-18,Haverhill - Golden Hill,01280026, 0.0, 1.8, 2.6, 44.3, 3.6, 0.0, 47.7, 48.9, 51.1,52.3,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 3.7, 3.7, 57.4, 3.7, 0.0, 31.5, 51.9, 48.1,68.5,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 10.9, 43.5, 0.0, 0.0, 45.7, 23.9, 76.1,54.3,0.0 +2.5806451612903225,2.58,a-cure-i1,2017-18,Haverhill - Haverhill High,01280505, 0.1, 1.7, 4.2, 29.8, 1.3, 0.1, 62.8, 49.0, 51.0,37.2,6.0 +1,1,a-cure-i1,2017-18,Haverhill - John G Whittier,01280085, 0.4, 1.8, 3.9, 24.4, 0.7, 0.4, 68.5, 48.5, 51.5,31.5,2.2 +1,1,a-cure-i1,2017-18,Haverhill - Moody,01280045, 0.0, 1.8, 6.3, 28.5, 0.5, 0.5, 62.4, 36.2, 63.8,37.6,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0.8, 2.2, 5.6, 42.3, 2.0, 0.2, 47.0, 45.2, 54.8,53.0,0.0 +1,1,a-cure-i1,2017-18,Haverhill - TEACH,01280073, 0.0, 2.0, 4.0, 44.0, 4.0, 0.0, 46.0, 20.0, 80.0,54.0,0.0 +1,1,a-cure-i1,2017-18,Haverhill - Tilton,01280075, 0.4, 0.9, 2.2, 56.1, 2.0, 0.0, 38.4, 49.3, 50.7,61.6,2.8 +1,1,a-cure-i1,2017-18,Haverhill - Walnut Square,01280080, 0.0, 0.7, 2.1, 20.0, 5.0, 0.0, 72.1, 55.0, 45.0,27.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Hawlemont - Hawlemont Regional,06850005, 0.6, 0.0, 0.6, 9.2, 5.5, 0.0, 84.0, 58.3, 41.7,16.0,0.0 +13.80423814328961,5,a-cure-i1,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.5, 0.5, 76.6, 21.0, 0.0, 0.5, 0.9, 45.3, 54.7,99.1,85.50000000000001 +1,1,a-cure-i1,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.7, 5.6, 21.5, 3.0, 0.0, 69.3, 57.4, 42.6,30.700000000000003,4.5 +1,1,a-cure-i1,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 1.4, 0.5, 6.0, 11.5, 0.0, 80.7, 46.3, 53.7,19.299999999999997,3.7 +16.0,5,a-cure-i1,2017-18,Hingham - East Elementary School,01310005, 0.0, 1.9, 0.8, 2.1, 2.3, 0.0, 93.0, 43.5, 56.5,7.0,7.0 +1,1,a-cure-i1,2017-18,Hingham - Hingham High,01310505, 0.0, 2.5, 1.3, 2.7, 2.1, 0.0, 91.4, 50.5, 49.5,8.599999999999994,1.0 +1,1,a-cure-i1,2017-18,Hingham - Hingham Middle School,01310410, 0.0, 2.6, 1.3, 2.4, 3.1, 0.1, 90.5, 47.4, 52.6,9.5,4.800000000000001 +1,1,a-cure-i1,2017-18,Hingham - Plymouth River,01310019, 0.0, 2.8, 1.7, 4.5, 2.1, 0.0, 88.9, 51.3, 48.7,11.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Hingham - South Elementary,01310020, 0.0, 3.8, 1.9, 1.5, 4.7, 0.0, 88.0, 49.3, 50.7,12.0,3.6 +1,1,a-cure-i1,2017-18,Hingham - Wm L Foster Elementary,01310010, 0.0, 2.0, 0.7, 4.5, 3.8, 0.0, 89.0, 46.4, 53.6,11.0,0.0 +1,1,a-cure-i1,2017-18,Holbrook - Holbrook Middle High School,01330505, 0.0, 4.6, 23.8, 11.9, 7.0, 0.0, 52.8, 50.1, 49.9,47.2,0.0 +1,1,a-cure-i1,2017-18,Holbrook - John F Kennedy,01330018, 0.2, 4.5, 16.1, 12.8, 9.6, 0.0, 56.9, 47.4, 52.6,43.1,0.0 +1,1,a-cure-i1,2017-18,Holland - Holland Elementary,01350005, 0.4, 1.7, 2.1, 5.2, 0.4, 0.0, 90.1, 48.1, 51.9,9.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Holliston - Holliston High,01360505, 0.3, 6.1, 0.9, 2.4, 2.4, 0.0, 88.0, 48.4, 51.4,12.0,0.0 +4.4347826086956506,4.43,a-cure-i1,2017-18,Holliston - Miller School,01360007, 0.1, 8.0, 0.9, 6.0, 3.4, 0.0, 81.6, 48.5, 51.5,18.400000000000006,5.1 +1,1,a-cure-i1,2017-18,Holliston - Placentino Elementary,01360010, 0.1, 8.7, 1.1, 4.8, 4.8, 0.0, 80.4, 46.9, 53.1,19.599999999999994,3.1999999999999997 +1,1,a-cure-i1,2017-18,Holliston - Robert H. Adams Middle School,01360305, 0.6, 8.0, 1.2, 4.7, 1.9, 0.0, 83.6, 50.8, 49.2,16.400000000000006,2.3 +1.3008130081300815,1.3,a-cure-i1,2017-18,Holyoke - E N White Elementary,01370045, 0.0, 0.4, 3.4, 80.7, 1.6, 0.0, 13.9, 50.2, 49.8,86.1,7.0 +2.649350649350649,2.65,a-cure-i1,2017-18,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.7, 3.6, 86.3, 1.8, 0.0, 7.6, 47.5, 52.5,92.4,15.299999999999999 +2.4242424242424243,2.42,a-cure-i1,2017-18,Holyoke - Holyoke High,01370505, 0.1, 0.8, 2.4, 74.5, 1.3, 0.1, 20.8, 48.4, 51.5,79.2,12.0 +7.279620853080569,5,a-cure-i1,2017-18,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.4, 5.8, 54.1, 3.1, 0.0, 36.7, 53.3, 46.7,63.3,28.8 +3.5298969072164947,3.53,a-cure-i1,2017-18,Holyoke - Kelly Elementary,01370040, 0.0, 0.2, 1.1, 95.2, 0.5, 0.0, 3.0, 46.6, 53.4,97.0,21.4 +2.622950819672131,2.62,a-cure-i1,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 1.7, 3.5, 79.1, 1.1, 0.0, 14.6, 49.7, 50.3,85.4,14.0 +2.1238938053097347,2.12,a-cure-i1,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.4, 1.9, 61.6, 2.6, 0.2, 32.2, 43.2, 56.8,67.8,9.0 +1.2137931034482758,1.21,a-cure-i1,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.6, 4.3, 81.4, 0.4, 0.2, 13.0, 43.7, 56.3,87.0,6.6 +1.9082568807339448,1.91,a-cure-i1,2017-18,Holyoke - Morgan Full Service Community School,01370025, 0.0, 1.4, 4.3, 91.1, 1.2, 0.0, 1.9, 49.5, 50.5,98.1,11.7 +3.7747077577045705,3.77,a-cure-i1,2017-18,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 4.4, 88.2, 0.9, 0.6, 5.9, 44.2, 55.8,94.1,22.200000000000003 +3.2803347280334734,3.28,a-cure-i1,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.5, 2.2, 92.3, 0.5, 0.0, 4.4, 47.0, 53.0,95.6,19.6 +4.446315789473684,4.45,a-cure-i1,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.4, 1.7, 91.2, 1.7, 0.0, 5.0, 57.5, 42.5,95.0,26.4 +1,1,a-cure-i1,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 1.0, 2.4, 0.8, 3.2, 1.6, 0.2, 90.9, 50.7, 49.3,9.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Hopedale - Memorial,01380010, 0.2, 0.6, 1.1, 6.4, 2.9, 0.2, 88.6, 45.5, 54.5,11.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Hopedale - Park Street School,01380003, 1.2, 2.4, 0.0, 1.2, 14.5, 0.0, 80.7, 49.4, 50.6,19.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Hopkinton - Center,01390005, 0.2, 19.2, 0.4, 2.2, 2.6, 0.0, 75.3, 49.8, 50.2,24.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Hopkinton - Elmwood,01390010, 0.4, 17.4, 0.8, 2.6, 4.6, 0.2, 74.1, 47.9, 52.1,25.900000000000006,3.4 +1,1,a-cure-i1,2017-18,Hopkinton - Hopkins Elementary School,01390015, 0.2, 15.9, 0.7, 3.3, 4.3, 0.0, 75.6, 48.3, 51.7,24.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Hopkinton - Hopkinton High,01390505, 0.3, 10.6, 0.8, 2.2, 1.2, 0.0, 85.0, 49.8, 50.2,15.0,3.4 +4.851063829787235,4.85,a-cure-i1,2017-18,Hopkinton - Hopkinton Middle School,01390305, 0.2, 11.9, 1.1, 2.4, 3.1, 0.0, 81.2, 51.4, 48.6,18.799999999999997,5.7 +1,1,a-cure-i1,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 10.2, 0.0, 6.8, 0.0, 0.0, 83.1, 40.7, 59.3,16.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Hudson - C A Farley,01410030, 0.0, 2.6, 1.5, 15.4, 1.5, 0.0, 79.0, 51.4, 48.6,21.0,0.0 +1,1,a-cure-i1,2017-18,Hudson - David J. Quinn Middle School,01410410, 0.0, 2.2, 1.5, 10.5, 3.5, 0.0, 82.3, 52.5, 47.5,17.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Hudson - Forest Avenue Elementary,01410015, 0.3, 2.3, 2.0, 11.3, 4.5, 0.0, 79.7, 48.3, 51.7,20.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Hudson - Hudson High,01410505, 0.2, 1.4, 1.9, 8.4, 1.6, 0.1, 86.4, 51.0, 49.0,13.599999999999994,2.6 +1,1,a-cure-i1,2017-18,Hudson - Mulready Elementary,01410007, 0.0, 2.5, 1.7, 8.9, 3.8, 0.0, 83.1, 49.2, 50.8,16.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Hull - Hull High,01420505, 0.0, 0.7, 1.4, 1.7, 2.0, 0.0, 94.2, 47.3, 52.7,5.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Hull - Lillian M Jacobs,01420015, 0.0, 1.0, 2.4, 1.0, 1.7, 0.0, 93.9, 46.3, 53.7,6.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Hull - Memorial Middle,01420305, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 98.4, 44.1, 55.9,1.5999999999999943,0.0 +6.025974025974027,5,a-cure-i1,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 7.4, 4.1, 7.2, 4.4, 0.0, 76.9, 52.0, 48.0,23.099999999999994,8.7 +1,1,a-cure-i1,2017-18,Ipswich - Ipswich High,01440505, 0.0, 2.3, 0.6, 4.7, 2.9, 0.0, 89.5, 49.8, 50.0,10.5,0.0 +1,1,a-cure-i1,2017-18,Ipswich - Ipswich Middle School,01440305, 0.0, 0.9, 0.9, 5.0, 5.0, 0.0, 88.2, 51.6, 48.4,11.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 2.0, 0.7, 3.0, 2.0, 0.0, 92.3, 48.6, 51.4,7.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Ipswich - Winthrop,01440015, 0.0, 0.8, 2.9, 7.7, 5.3, 0.0, 83.3, 49.5, 50.5,16.700000000000003,3.4 +1,1,a-cure-i1,2017-18,King Philip - King Philip Middle School,06900510, 0.0, 1.8, 2.0, 3.1, 2.4, 0.0, 90.7, 47.2, 52.7,9.299999999999997,0.0 +1,1,a-cure-i1,2017-18,King Philip - King Philip Regional High,06900505, 0.0, 1.8, 1.8, 1.5, 2.0, 0.1, 92.8, 47.9, 52.1,7.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Kingston - Kingston Elementary,01450005, 0.4, 0.4, 0.7, 2.9, 0.0, 0.0, 95.6, 46.8, 53.2,4.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Kingston - Kingston Intermediate,01450020, 0.5, 0.5, 1.0, 3.3, 0.7, 0.0, 93.9, 49.0, 50.8,6.099999999999994,0.0 +7.630522088353414,5,a-cure-i1,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.4, 69.2, 28.9, 1.3, 0.0, 0.4, 46.6, 53.4,99.6,47.5 +6.940170940170941,5,a-cure-i1,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.2, 3.2, 20.5, 66.6, 3.1, 0.0, 6.4, 50.1, 49.9,93.6,40.6 +1,1,a-cure-i1,2017-18,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 2.4, 1.9, 1.4, 0.0, 94.3, 54.8, 45.2,5.700000000000003,0.0 +0.9056603773584906,1,a-cure-i1,2017-18,Lawrence - Alexander B Bruce,01490015, 0.0, 1.7, 0.8, 92.8, 0.0, 0.0, 4.6, 53.4, 46.6,95.4,5.4 +1.2695829094608342,1.27,a-cure-i1,2017-18,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.7, 97.4, 0.2, 0.0, 1.7, 49.5, 50.5,98.3,7.8 +2.1322482197355037,2.13,a-cure-i1,2017-18,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.9, 96.9, 0.5, 0.0, 1.7, 48.9, 51.1,98.3,13.1 +2.037894736842105,2.04,a-cure-i1,2017-18,Lawrence - Edward F. Parthum,01490053, 0.2, 0.5, 1.0, 93.0, 0.5, 0.0, 5.0, 48.6, 51.4,95.0,12.1 +1,1,a-cure-i1,2017-18,Lawrence - Emily G Wetherbee,01490080, 0.0, 2.7, 0.6, 91.6, 0.9, 0.0, 4.3, 52.6, 47.4,95.7,2.6 +1,1,a-cure-i1,2017-18,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.4, 96.7, 0.2, 0.0, 2.7, 48.8, 51.2,97.3,4.2 +1,1,a-cure-i1,2017-18,Lawrence - Frost Middle School,01490525, 0.0, 4.1, 2.2, 83.8, 1.0, 0.0, 8.9, 46.5, 53.5,91.1,3.8 +1,1,a-cure-i1,2017-18,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.6, 2.7, 93.6, 0.2, 0.0, 2.9, 47.1, 52.9,97.1,4.8 +1.3648509763617678,1.36,a-cure-i1,2017-18,Lawrence - Guilmette Middle School,01490025, 0.0, 0.6, 1.9, 94.7, 0.2, 0.0, 2.7, 52.7, 47.3,97.3,8.3 +2.022988505747126,2.02,a-cure-i1,2017-18,Lawrence - High School Learning Center,01490536, 0.0, 0.5, 0.0, 95.2, 0.0, 0.0, 4.3, 37.4, 62.6,95.7,12.1 +1.8455200823892894,1.85,a-cure-i1,2017-18,Lawrence - James F Hennessey,01490020, 0.0, 0.9, 1.4, 94.2, 0.6, 0.0, 2.9, 48.4, 51.6,97.1,11.2 +1.1296101159114857,1.13,a-cure-i1,2017-18,Lawrence - John Breen School,01490003, 0.0, 3.6, 2.4, 88.7, 0.3, 0.0, 5.1, 47.2, 52.8,94.9,6.7 +1.852459016393443,1.85,a-cure-i1,2017-18,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.3, 96.3, 0.9, 0.0, 2.4, 46.8, 53.2,97.6,11.3 +2.0242914979757085,2.02,a-cure-i1,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.2, 96.9, 0.6, 0.0, 1.2, 46.6, 53.4,98.8,12.5 +1.118997912317328,1.12,a-cure-i1,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.9, 1.4, 93.4, 0.0, 0.0, 4.2, 42.0, 58.0,95.8,6.7 +3.9504132231404956,3.95,a-cure-i1,2017-18,Lawrence - Lawrence High School,01490515, 0.1, 1.8, 1.5, 93.3, 0.2, 0.0, 3.2, 48.2, 51.8,96.8,23.9 +1.5103734439834022,1.51,a-cure-i1,2017-18,Lawrence - Oliver Partnership School,01490048, 0.0, 0.7, 0.9, 94.6, 0.2, 0.0, 3.6, 48.1, 51.9,96.4,9.1 +1,1,a-cure-i1,2017-18,Lawrence - Parthum Middle School,01490027, 0.0, 0.3, 1.5, 91.2, 0.7, 0.0, 6.2, 49.7, 50.3,93.8,3.4 +2.1176470588235294,2.12,a-cure-i1,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.8, 1.6, 92.8, 0.0, 0.0, 4.8, 38.4, 61.6,95.2,12.6 +1.1553610503282274,1.16,a-cure-i1,2017-18,Lawrence - Robert Frost,01490018, 0.0, 2.5, 2.5, 85.1, 1.2, 0.0, 8.6, 49.3, 50.7,91.4,6.6 +1.1920251836306401,1.19,a-cure-i1,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.5, 1.6, 93.2, 0.0, 0.0, 4.7, 40.5, 59.5,95.3,7.1 +2.8224513172966783,2.82,a-cure-i1,2017-18,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.7, 1.3, 84.7, 0.7, 0.0, 12.7, 18.7, 81.3,87.3,15.4 +4.811777076761304,4.81,a-cure-i1,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 1.9, 1.2, 91.3, 0.7, 0.0, 4.9, 45.3, 54.7,95.1,28.599999999999998 +4.583162217659137,4.58,a-cure-i1,2017-18,Lawrence - Spark Academy,01490085, 0.0, 2.2, 1.5, 93.5, 0.2, 0.0, 2.6, 52.4, 47.6,97.4,27.9 +5.453061224489796,5,a-cure-i1,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.3, 1.0, 96.6, 0.0, 0.0, 2.0, 44.8, 55.2,98.0,33.4 +2.7689119170984453,2.77,a-cure-i1,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.6, 95.9, 0.0, 0.0, 3.5, 46.1, 53.9,96.5,16.7 +3.3387096774193545,3.34,a-cure-i1,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.8, 98.4, 0.0, 0.0, 0.8, 54.3, 45.7,99.2,20.7 +1,1,a-cure-i1,2017-18,Lee - Lee Elementary,01500025, 0.0, 2.6, 0.6, 9.6, 2.9, 0.0, 84.3, 48.7, 51.3,15.700000000000003,2.9 +1,1,a-cure-i1,2017-18,Lee - Lee Middle/High School,01500505, 0.3, 2.0, 0.6, 6.6, 3.4, 0.0, 87.1, 50.1, 49.9,12.900000000000006,2.8 +8.233918128654974,5,a-cure-i1,2017-18,Leicester - Leicester High,01510505, 0.7, 2.6, 3.9, 7.2, 2.4, 0.4, 82.9, 46.9, 53.1,17.099999999999994,8.8 +1,1,a-cure-i1,2017-18,Leicester - Leicester Memorial Elementary,01510005, 0.6, 2.1, 5.7, 9.0, 3.0, 0.0, 79.6, 45.9, 54.1,20.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Leicester - Leicester Middle,01510015, 0.0, 2.9, 4.1, 8.7, 3.6, 0.0, 80.6, 50.0, 50.0,19.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Leicester - Leicester Primary School,01510010, 0.0, 3.0, 5.5, 9.4, 1.4, 0.0, 80.7, 41.3, 58.7,19.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Lenox - Lenox Memorial High,01520505, 0.0, 5.2, 0.5, 7.4, 2.3, 0.0, 84.7, 51.1, 48.9,15.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Lenox - Morris,01520015, 0.0, 5.5, 0.6, 7.4, 4.2, 0.0, 82.3, 49.2, 50.8,17.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Leominster - Bennett,01530003, 0.0, 4.7, 9.3, 30.2, 1.2, 0.0, 54.7, 32.6, 67.4,45.3,0.0 +1,1,a-cure-i1,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, 3.9, 7.0, 33.1, 3.1, 0.4, 52.6, 36.0, 64.0,47.4,0.0 +1,1,a-cure-i1,2017-18,Leominster - Fall Brook,01530007, 0.3, 1.7, 5.6, 32.4, 5.2, 0.0, 54.8, 49.0, 51.0,45.2,3.1 +1,1,a-cure-i1,2017-18,Leominster - Frances Drake School,01530010, 0.0, 3.9, 6.8, 41.0, 6.3, 0.0, 42.1, 47.4, 52.6,57.9,0.0 +1,1,a-cure-i1,2017-18,Leominster - Johnny Appleseed,01530025, 0.3, 4.1, 10.8, 30.6, 4.3, 0.0, 49.9, 51.0, 49.0,50.1,2.9 +1,1,a-cure-i1,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 4.0, 32.0, 4.0, 0.0, 60.0, 62.0, 38.0,40.0,0.0 +2.102189781021898,2.1,a-cure-i1,2017-18,Leominster - Leominster High School,01530505, 0.2, 3.0, 9.7, 25.9, 2.3, 0.0, 58.9, 54.0, 46.0,41.1,5.4 +1,1,a-cure-i1,2017-18,Leominster - Lincoln School,01530005, 0.0, 4.2, 4.2, 27.1, 2.1, 0.0, 62.5, 29.2, 70.8,37.5,0.0 +1,1,a-cure-i1,2017-18,Leominster - Northwest,01530030, 0.0, 1.9, 6.3, 36.9, 5.4, 0.0, 49.5, 48.9, 51.1,50.5,0.0 +1,1,a-cure-i1,2017-18,Leominster - Priest Street,01530040, 0.0, 2.4, 6.4, 45.6, 8.0, 0.0, 37.6, 44.0, 56.0,62.4,0.0 +1,1,a-cure-i1,2017-18,Leominster - Samoset School,01530045, 0.0, 2.0, 6.1, 32.0, 2.4, 0.0, 57.4, 47.9, 51.9,42.6,2.9 +1,1,a-cure-i1,2017-18,Leominster - Sky View Middle School,01530320, 0.2, 5.6, 8.6, 33.0, 3.6, 0.0, 49.1, 48.0, 52.0,50.9,3.7 +1,1,a-cure-i1,2017-18,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 6.4, 11.2, 0.0, 82.4, 41.6, 58.4,17.599999999999994,0.0 +8.578313253012048,5,a-cure-i1,2017-18,Lexington - Bowman,01550008, 0.0, 32.0, 5.5, 2.7, 9.6, 0.0, 50.2, 48.9, 51.1,49.8,26.7 +2.098859315589354,2.1,a-cure-i1,2017-18,Lexington - Bridge,01550006, 0.2, 41.4, 4.9, 4.0, 1.9, 0.2, 47.4, 50.7, 49.3,52.6,6.9 +1,1,a-cure-i1,2017-18,Lexington - Fiske,01550015, 0.0, 29.5, 2.6, 2.8, 9.0, 0.0, 56.2, 45.6, 54.4,43.8,0.4 +2.273534635879219,2.27,a-cure-i1,2017-18,Lexington - Harrington,01550030, 0.4, 43.3, 3.3, 2.9, 6.3, 0.0, 43.7, 48.5, 51.5,56.3,8.0 +3.36231884057971,3.36,a-cure-i1,2017-18,Lexington - Jonas Clarke Middle,01550305, 0.0, 41.6, 5.1, 3.9, 4.6, 0.0, 44.8, 47.3, 52.7,55.2,11.6 +1,1,a-cure-i1,2017-18,Lexington - Joseph Estabrook,01550010, 0.0, 42.1, 4.9, 3.5, 9.6, 0.0, 39.9, 50.7, 49.3,60.1,0.3 +1,1,a-cure-i1,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, 42.3, 5.6, 7.0, 7.0, 0.0, 38.0, 42.3, 57.7,62.0,0.0 +2.4793388429752063,2.48,a-cure-i1,2017-18,Lexington - Lexington High,01550505, 0.1, 36.3, 3.4, 3.6, 5.0, 0.0, 51.6, 49.3, 50.7,48.4,7.499999999999999 +6.508474576271187,5,a-cure-i1,2017-18,Lexington - Maria Hastings,01550035, 0.0, 43.8, 2.6, 3.9, 8.8, 0.0, 41.0, 47.9, 52.1,59.0,24.0 +2.786692759295499,2.79,a-cure-i1,2017-18,Lexington - Wm Diamond Middle,01550310, 0.0, 37.0, 3.8, 2.7, 7.6, 0.0, 48.9, 51.5, 48.5,51.1,8.9 +12.057259713701432,5,a-cure-i1,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 12.2, 84.4, 1.1, 0.0, 2.2, 45.6, 54.4,97.8,73.7 +2.944309927360775,2.94,a-cure-i1,2017-18,Lincoln - Hanscom Middle,01570305, 0.0, 1.8, 9.6, 20.3, 9.6, 0.0, 58.7, 47.6, 52.4,41.3,7.6 +3.813267813267813,3.81,a-cure-i1,2017-18,Lincoln - Hanscom Primary,01570006, 0.3, 1.5, 5.1, 24.4, 8.7, 0.6, 59.3, 47.6, 52.4,40.7,9.7 +2.141732283464567,2.14,a-cure-i1,2017-18,Lincoln - Lincoln School,01570025, 0.2, 5.6, 12.3, 10.8, 9.2, 0.0, 61.9, 49.5, 50.5,38.1,5.1000000000000005 +4.640000000000001,4.64,a-cure-i1,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 6.2, 4.6, 4.6, 4.4, 0.1, 80.0, 48.5, 51.4,20.0,5.800000000000001 +1,1,a-cure-i1,2017-18,Littleton - Littleton High School,01580505, 0.4, 5.6, 0.4, 1.9, 3.2, 0.4, 87.9, 55.1, 44.9,12.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Littleton - Littleton Middle School,01580305, 0.3, 5.8, 2.2, 1.7, 3.9, 0.0, 86.2, 54.4, 45.6,13.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Littleton - Russell St Elementary,01580015, 0.3, 10.6, 1.6, 2.3, 2.1, 0.0, 83.2, 47.4, 52.6,16.799999999999997,0.0 +10.495999999999999,5,a-cure-i1,2017-18,Littleton - Shaker Lane Elementary,01580005, 0.0, 8.9, 0.4, 1.3, 1.6, 0.2, 87.5, 51.9, 48.1,12.5,8.2 +1,1,a-cure-i1,2017-18,Longmeadow - Blueberry Hill,01590005, 0.2, 17.3, 0.7, 3.2, 4.8, 0.7, 73.1, 48.3, 51.7,26.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Longmeadow - Center,01590010, 0.0, 3.7, 2.5, 4.5, 5.7, 0.0, 83.7, 48.5, 51.5,16.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Longmeadow - Glenbrook Middle,01590017, 0.3, 10.8, 3.5, 5.6, 3.2, 0.0, 76.6, 50.0, 50.0,23.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Longmeadow - Longmeadow High,01590505, 0.1, 9.1, 2.7, 3.9, 2.3, 0.1, 81.8, 49.9, 50.1,18.200000000000003,3.0 +1,1,a-cure-i1,2017-18,Longmeadow - Williams Middle,01590305, 0.0, 6.7, 1.5, 4.5, 2.7, 0.0, 84.5, 46.7, 53.3,15.5,4.4 +1,1,a-cure-i1,2017-18,Longmeadow - Wolf Swamp Road,01590025, 0.0, 9.2, 3.5, 6.2, 5.4, 0.0, 75.7, 47.3, 52.7,24.299999999999997,0.0 +1.4069898534385568,1.41,a-cure-i1,2017-18,Lowell - Abraham Lincoln,01600020, 0.2, 50.5, 5.1, 29.2, 3.7, 0.0, 11.3, 43.5, 56.5,88.7,7.8 +1.32398316970547,1.32,a-cure-i1,2017-18,Lowell - B.F. Butler Middle School,01600310, 0.0, 27.3, 8.1, 30.3, 5.6, 0.0, 28.7, 49.6, 50.4,71.3,5.9 +1.6941176470588235,1.69,a-cure-i1,2017-18,Lowell - Bartlett Community Partnership,01600090, 0.2, 39.7, 9.4, 32.8, 2.9, 0.0, 15.0, 48.9, 51.1,85.0,9.0 +1,1,a-cure-i1,2017-18,Lowell - Charles W Morey,01600030, 0.4, 61.6, 4.9, 9.7, 4.3, 0.0, 19.2, 49.3, 50.7,80.8,3.7 +1,1,a-cure-i1,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 45.1, 5.0, 31.7, 5.6, 0.0, 12.6, 45.9, 54.1,87.4,0.0 +1,1,a-cure-i1,2017-18,Lowell - Dr An Wang School,01600345, 0.0, 17.9, 8.1, 39.6, 3.3, 0.0, 31.1, 49.6, 50.4,68.9,2.4 +1,1,a-cure-i1,2017-18,Lowell - Dr Gertrude Bailey,01600002, 0.2, 34.8, 4.3, 21.1, 5.7, 0.0, 33.8, 47.7, 52.3,66.2,0.0 +1.5796897038081803,1.58,a-cure-i1,2017-18,Lowell - Greenhalge,01600015, 0.0, 13.3, 10.4, 42.6, 4.4, 0.2, 29.1, 49.4, 50.6,70.9,7.0 +2.916776750330251,2.92,a-cure-i1,2017-18,Lowell - Henry J Robinson Middle,01600330, 0.0, 17.3, 11.3, 42.6, 4.5, 0.0, 24.3, 48.2, 51.8,75.7,13.799999999999999 +1.5759233926128593,1.58,a-cure-i1,2017-18,Lowell - James S Daley Middle School,01600315, 0.0, 44.7, 3.7, 19.9, 4.9, 0.0, 26.9, 46.7, 53.3,73.1,7.2 +2.493192133131619,2.49,a-cure-i1,2017-18,Lowell - James Sullivan Middle School,01600340, 0.0, 14.0, 9.0, 39.0, 4.0, 0.0, 33.9, 48.5, 51.5,66.1,10.3 +1,1,a-cure-i1,2017-18,Lowell - John J Shaughnessy,01600050, 0.2, 29.0, 5.4, 33.3, 3.5, 0.0, 28.6, 50.4, 49.6,71.4,0.0 +1.632214765100671,1.63,a-cure-i1,2017-18,Lowell - Joseph McAvinnue,01600010, 0.0, 15.2, 6.0, 50.3, 3.1, 0.0, 25.5, 46.4, 53.6,74.5,7.6 +1.8537682789651293,1.85,a-cure-i1,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 49.6, 6.4, 29.7, 3.2, 0.0, 11.1, 48.8, 51.2,88.9,10.3 +1.6551724137931034,1.66,a-cure-i1,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 4.3, 13.0, 60.9, 8.7, 0.0, 13.0, 4.3, 95.7,87.0,9.0 +1,1,a-cure-i1,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 5.6, 5.6, 63.9, 5.6, 0.0, 19.4, 19.4, 80.6,80.6,0.0 +2.6215864759427827,2.62,a-cure-i1,2017-18,Lowell - Lowell Day School on Broadway,01600605, 0.0, 26.9, 26.9, 23.1, 0.0, 0.0, 23.1, 26.9, 73.1,76.9,12.6 +2.6104078762306613,2.61,a-cure-i1,2017-18,Lowell - Lowell High,01600505, 0.1, 31.7, 11.4, 25.3, 2.6, 0.0, 28.9, 50.3, 49.7,71.1,11.6 +3.219076005961252,3.22,a-cure-i1,2017-18,Lowell - Moody Elementary,01600027, 0.0, 18.5, 4.5, 40.3, 3.7, 0.0, 32.9, 50.2, 49.4,67.1,13.5 +1,1,a-cure-i1,2017-18,Lowell - Pawtucketville Memorial,01600036, 0.0, 22.3, 8.0, 28.2, 5.7, 0.0, 35.8, 49.1, 50.9,64.2,0.0 +3.00187617260788,3.0,a-cure-i1,2017-18,Lowell - Peter W Reilly,01600040, 0.0, 8.3, 3.9, 36.9, 4.2, 0.0, 46.7, 49.3, 50.7,53.3,10.0 +2.6941580756013748,2.69,a-cure-i1,2017-18,Lowell - Pyne Arts,01600018, 0.0, 12.9, 4.5, 36.3, 4.5, 0.0, 41.8, 45.3, 54.7,58.2,9.8 +1,1,a-cure-i1,2017-18,Lowell - Rogers STEM Academy,01600005, 0.0, 24.4, 8.8, 39.3, 3.5, 0.0, 24.1, 47.6, 52.4,75.9,2.4 +4.032520325203252,4.03,a-cure-i1,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 8.1, 6.6, 44.3, 2.5, 0.0, 38.5, 51.3, 48.7,61.5,15.5 +1,1,a-cure-i1,2017-18,Lowell - The Career Academy,01600515, 0.0, 15.0, 9.7, 46.9, 4.4, 0.0, 23.9, 28.3, 71.7,76.1,1.3 +1.1712158808933004,1.17,a-cure-i1,2017-18,Lowell - Washington,01600055, 0.0, 45.2, 4.8, 22.6, 8.1, 0.0, 19.4, 43.1, 56.9,80.6,5.9 +1.7997936016511864,1.8,a-cure-i1,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 19.9, 26.8, 46.8, 3.4, 0.0, 3.1, 51.0, 49.0,96.9,10.899999999999999 +5.591776798825258,5,a-cure-i1,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 23.1, 2.2, 37.4, 5.5, 0.0, 31.9, 45.1, 54.9,68.1,23.8 +1,1,a-cure-i1,2017-18,Ludlow - Chapin Street Elementary School,01610020, 0.6, 0.6, 0.9, 12.4, 4.0, 0.0, 81.4, 54.7, 45.3,18.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Ludlow - East Street Elementary School,01610010, 0.2, 0.2, 1.5, 9.5, 2.2, 0.0, 86.3, 44.9, 55.1,13.700000000000003,0.0 +8.231884057971016,5,a-cure-i1,2017-18,Ludlow - Ludlow Senior High,01610505, 0.3, 0.3, 1.8, 8.6, 2.7, 0.0, 86.2, 50.6, 49.4,13.799999999999997,7.1 +1,1,a-cure-i1,2017-18,Ludlow - Paul R Baird Middle,01610305, 0.3, 0.5, 2.2, 8.3, 2.4, 0.0, 86.4, 49.4, 50.6,13.599999999999994,2.1 +1,1,a-cure-i1,2017-18,Ludlow - Veterans Park Elementary,01610023, 1.0, 0.0, 2.3, 10.9, 2.8, 0.0, 83.0, 46.7, 53.3,17.0,0.0 +1,1,a-cure-i1,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 11.1, 0.0, 88.9, 66.7, 33.3,11.099999999999994,0.0 +8.000000000000004,5,a-cure-i1,2017-18,Lunenburg - Lunenburg High,01620505, 0.7, 3.6, 2.3, 2.9, 0.9, 0.2, 89.4, 49.1, 50.9,10.599999999999994,5.3 +1,1,a-cure-i1,2017-18,Lunenburg - Lunenburg Middle School,01620305, 0.9, 1.2, 1.9, 8.0, 1.4, 0.7, 85.8, 45.2, 54.8,14.200000000000003,0.6 +1,1,a-cure-i1,2017-18,Lunenburg - Lunenburg Primary School,01620010, 0.0, 3.3, 3.0, 6.6, 1.8, 0.0, 85.3, 49.2, 50.8,14.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 0.3, 0.8, 0.8, 7.5, 4.6, 0.5, 85.5, 50.7, 49.3,14.5,0.0 +1,1,a-cure-i1,2017-18,Lynn - A Drewicz Elementary,01630016, 0.4, 15.9, 9.6, 64.8, 3.7, 0.0, 5.7, 52.4, 47.6,94.3,4.3 +1,1,a-cure-i1,2017-18,Lynn - Aborn,01630011, 1.6, 7.5, 13.8, 39.5, 8.3, 0.0, 29.2, 51.8, 48.2,70.8,0.9 +2.1666666666666665,2.17,a-cure-i1,2017-18,Lynn - Breed Middle School,01630405, 0.4, 10.7, 9.2, 62.7, 3.5, 0.0, 13.6, 47.2, 52.8,86.4,11.700000000000001 +1,1,a-cure-i1,2017-18,Lynn - Brickett Elementary,01630020, 0.3, 13.3, 10.3, 54.5, 5.3, 0.0, 16.3, 48.2, 51.8,83.7,0.8 +1,1,a-cure-i1,2017-18,Lynn - Capt William G Shoemaker,01630090, 0.0, 6.4, 14.6, 25.2, 8.2, 0.0, 45.6, 40.1, 59.9,54.4,0.0 +2.5241730279898222,2.52,a-cure-i1,2017-18,Lynn - Classical High,01630505, 0.4, 10.6, 9.9, 55.4, 2.3, 0.1, 21.4, 45.8, 54.2,78.6,12.4 +1,1,a-cure-i1,2017-18,Lynn - Cobbet Elementary,01630035, 0.2, 5.5, 8.8, 79.3, 2.5, 0.0, 3.8, 48.0, 52.0,96.2,3.3 +1,1,a-cure-i1,2017-18,Lynn - E J Harrington,01630045, 0.0, 7.4, 8.4, 70.7, 3.5, 0.0, 10.0, 49.6, 50.4,90.0,3.5 +1,1,a-cure-i1,2017-18,Lynn - Early Childhood Center,01630004, 0.0, 11.4, 10.4, 65.9, 2.0, 0.0, 10.4, 44.1, 55.9,89.6,1.2 +1,1,a-cure-i1,2017-18,Lynn - Edward A Sisson,01630095, 1.4, 11.1, 7.1, 42.9, 4.8, 0.0, 32.7, 48.8, 51.2,67.3,4.8 +1.6908850726552178,1.69,a-cure-i1,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.9, 2.8, 12.1, 55.1, 4.7, 0.0, 24.3, 41.1, 58.9,75.7,8.0 +1,1,a-cure-i1,2017-18,Lynn - Hood,01630055, 0.0, 7.8, 9.0, 63.4, 2.7, 0.0, 17.0, 50.5, 49.5,83.0,4.7 +1,1,a-cure-i1,2017-18,Lynn - Ingalls,01630060, 0.2, 9.2, 9.5, 69.1, 3.4, 0.2, 8.6, 47.6, 52.4,91.4,0.4 +1.450980392156863,1.45,a-cure-i1,2017-18,Lynn - Julia F Callahan,01630030, 0.0, 8.5, 16.8, 49.7, 6.6, 0.0, 18.4, 47.7, 52.3,81.6,7.4 +1,1,a-cure-i1,2017-18,Lynn - Lincoln-Thomson,01630070, 0.0, 7.5, 7.5, 55.8, 5.4, 0.0, 23.8, 47.5, 52.5,76.2,0.0 +2.7238095238095235,2.72,a-cure-i1,2017-18,Lynn - Lynn English High,01630510, 0.1, 8.2, 9.6, 63.3, 2.8, 0.0, 16.0, 44.8, 55.2,84.0,14.299999999999999 +3.4635294117647057,3.46,a-cure-i1,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 0.1, 6.1, 7.6, 68.4, 2.9, 0.0, 15.0, 42.3, 57.7,85.0,18.4 +4.589473684210526,4.59,a-cure-i1,2017-18,Lynn - Lynn Woods,01630075, 1.2, 4.3, 1.2, 22.1, 9.2, 0.0, 62.0, 52.1, 47.9,38.0,10.9 +2.3730886850152904,2.37,a-cure-i1,2017-18,Lynn - Pickering Middle,01630420, 0.8, 8.9, 6.7, 42.6, 6.3, 0.0, 34.6, 48.6, 51.4,65.4,9.7 +1,1,a-cure-i1,2017-18,Lynn - Robert L Ford,01630050, 0.4, 8.3, 7.9, 73.8, 2.2, 0.0, 7.3, 51.8, 48.2,92.7,4.8 +1,1,a-cure-i1,2017-18,Lynn - Sewell-Anderson,01630085, 0.3, 5.2, 9.0, 48.7, 4.2, 0.0, 32.6, 43.9, 56.1,67.4,0.0 +1.937219730941704,1.94,a-cure-i1,2017-18,Lynn - Thurgood Marshall Mid,01630305, 0.5, 8.0, 9.7, 67.8, 3.3, 0.0, 10.8, 49.6, 50.4,89.2,10.8 +1,1,a-cure-i1,2017-18,Lynn - Tracy,01630100, 0.0, 5.8, 10.4, 72.8, 3.7, 0.0, 7.4, 51.4, 48.6,92.6,3.5 +1,1,a-cure-i1,2017-18,Lynn - Washington Elementary School,01630005, 0.2, 6.4, 13.4, 71.7, 3.8, 0.0, 4.5, 49.6, 50.4,95.5,4.5 +1,1,a-cure-i1,2017-18,Lynn - William R Fallon,01630080, 0.0, 2.0, 4.0, 68.0, 6.0, 0.0, 20.0, 12.0, 88.0,80.0,0.0 +1,1,a-cure-i1,2017-18,Lynn - Wm P Connery,01630040, 0.2, 15.0, 6.3, 72.0, 1.9, 0.0, 4.7, 49.4, 50.6,95.3,3.5 +1,1,a-cure-i1,2017-18,Lynnfield - Huckleberry Hill,01640010, 0.0, 8.4, 1.6, 7.5, 4.2, 0.0, 78.2, 54.3, 45.7,21.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Lynnfield - Lynnfield High,01640505, 0.0, 3.7, 1.7, 4.6, 1.7, 0.0, 88.3, 51.1, 48.9,11.700000000000003,2.2 +1,1,a-cure-i1,2017-18,Lynnfield - Lynnfield Middle School,01640405, 0.0, 5.0, 1.5, 4.6, 2.1, 0.0, 86.9, 47.9, 52.1,13.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, 7.9, 0.0, 2.6, 5.3, 0.0, 84.2, 52.6, 47.4,15.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Lynnfield - Summer Street,01640020, 0.0, 4.6, 1.9, 5.3, 1.6, 0.0, 86.5, 43.2, 56.8,13.5,0.0 +4.498316498316498,4.5,a-cure-i1,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 45.8, 1.0, 3.1, 9.4, 0.0, 40.6, 50.0, 50.0,59.4,16.7 +1.3391053391053391,1.34,a-cure-i1,2017-18,Malden - Beebe,01650003, 0.0, 39.1, 13.3, 12.5, 4.3, 0.1, 30.7, 49.5, 50.5,69.3,5.8 +1,1,a-cure-i1,2017-18,Malden - Ferryway,01650013, 0.2, 19.2, 20.5, 30.2, 5.0, 0.0, 24.9, 52.3, 47.7,75.1,0.0 +1.6223776223776223,1.62,a-cure-i1,2017-18,Malden - Forestdale,01650027, 0.0, 8.8, 17.7, 25.6, 4.9, 0.2, 42.8, 48.6, 51.4,57.2,5.8 +1,1,a-cure-i1,2017-18,Malden - Linden,01650047, 0.3, 22.7, 21.5, 16.5, 4.5, 0.0, 34.4, 48.6, 51.4,65.6,3.3000000000000003 +1,1,a-cure-i1,2017-18,Malden - Malden Early Learning Center,01650049, 0.0, 37.9, 15.0, 6.7, 5.4, 0.0, 35.0, 40.4, 59.6,65.0,0.0 +3.027624309392265,3.03,a-cure-i1,2017-18,Malden - Malden High,01650505, 0.3, 23.7, 20.0, 24.9, 3.5, 0.0, 27.6, 47.9, 52.0,72.4,13.7 +2.085161290322581,2.09,a-cure-i1,2017-18,Malden - Salemwood,01650057, 0.1, 19.4, 23.2, 31.5, 3.4, 0.0, 22.5, 47.7, 52.3,77.5,10.100000000000001 +1,1,a-cure-i1,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.9, 0.9, 2.2, 0.0, 96.1, 50.4, 49.6,3.9000000000000057,0.0 +1,1,a-cure-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.1, 0.0, 1.1, 0.2, 0.0, 97.5, 57.1, 42.9,2.5,4.8 +22.325581395348852,5,a-cure-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.6, 0.0, 1.3, 1.3, 0.0, 95.7, 46.5, 53.5,4.299999999999997,6.0 +1,1,a-cure-i1,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.3, 1.2, 0.9, 0.3, 0.0, 97.4, 47.2, 52.8,2.5999999999999943,0.0 +1,1,a-cure-i1,2017-18,Mansfield - Everett W Robinson,01670007, 0.1, 9.5, 2.5, 5.7, 6.0, 0.0, 76.1, 45.9, 54.1,23.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Mansfield - Harold L Qualters Middle,01670035, 0.1, 5.8, 2.8, 4.1, 3.8, 0.0, 83.3, 47.5, 52.5,16.700000000000003,2.6 +1,1,a-cure-i1,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0.1, 6.0, 3.6, 4.8, 2.5, 0.0, 83.0, 47.1, 52.9,17.0,3.6 +6.22222222222222,5,a-cure-i1,2017-18,Mansfield - Mansfield High,01670505, 0.2, 4.4, 3.6, 3.5, 2.7, 0.1, 85.6, 50.5, 49.5,14.400000000000006,5.6 +1,1,a-cure-i1,2017-18,Mansfield - Roland Green School,01670003, 0.0, 7.2, 3.1, 6.2, 4.1, 0.0, 79.4, 45.4, 54.6,20.599999999999994,0.0 +4.790419161676646,4.79,a-cure-i1,2017-18,Marblehead - Elbridge Gerry,01680015, 0.0, 1.4, 0.7, 11.6, 2.9, 0.0, 83.3, 44.2, 55.8,16.700000000000003,5.0 +1,1,a-cure-i1,2017-18,Marblehead - Glover,01680020, 0.0, 1.1, 1.9, 4.6, 3.0, 0.0, 89.5, 46.2, 53.8,10.5,0.0 +1,1,a-cure-i1,2017-18,Marblehead - L H Coffin,01680010, 0.0, 3.3, 1.3, 8.5, 5.9, 0.7, 80.4, 46.4, 53.6,19.599999999999994,4.3 +1,1,a-cure-i1,2017-18,Marblehead - Malcolm L Bell,01680005, 0.0, 2.2, 2.6, 11.0, 2.9, 0.0, 81.3, 44.0, 56.0,18.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Marblehead - Marblehead High,01680505, 0.1, 2.3, 3.5, 5.7, 1.8, 0.0, 86.6, 52.9, 47.1,13.400000000000006,2.5 +1,1,a-cure-i1,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.0, 3.5, 4.7, 1.8, 0.0, 89.0, 51.1, 48.9,11.0,2.8 +1,1,a-cure-i1,2017-18,Marblehead - Village School,01680016, 0.3, 1.3, 3.0, 6.9, 3.1, 0.0, 85.4, 46.9, 53.1,14.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.9, 4.4, 4.4, 1.3, 2.6, 0.0, 86.5, 39.3, 60.7,13.5,0.0 +1,1,a-cure-i1,2017-18,Marion - Sippican,01690005, 0.4, 1.3, 2.2, 3.5, 4.6, 0.0, 87.9, 46.0, 54.0,12.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 2.0, 3.1, 49.5, 3.3, 0.0, 42.1, 47.9, 52.1,57.9,4.2 +1,1,a-cure-i1,2017-18,Marlborough - Charles Jaworek School,01700030, 0.1, 6.8, 3.0, 42.8, 1.8, 0.0, 45.3, 46.3, 53.7,54.7,0.0 +1,1,a-cure-i1,2017-18,Marlborough - Early Childhood Center,01700006, 0.0, 17.2, 3.4, 14.9, 3.4, 1.1, 59.8, 37.9, 62.1,40.2,0.0 +1,1,a-cure-i1,2017-18,Marlborough - Francis J Kane,01700008, 0.0, 3.2, 4.5, 43.2, 2.9, 0.0, 46.1, 49.8, 50.2,53.9,0.0 +1,1,a-cure-i1,2017-18,Marlborough - Marlborough High,01700505, 0.1, 2.6, 3.2, 46.8, 1.4, 0.0, 45.9, 49.1, 50.9,54.1,3.9 +1,1,a-cure-i1,2017-18,Marlborough - Richer,01700025, 0.2, 2.2, 3.8, 58.9, 3.1, 0.0, 31.8, 49.7, 50.3,68.2,0.0 +1,1,a-cure-i1,2017-18,Marshfield - Daniel Webster,01710015, 0.5, 2.0, 0.5, 4.0, 1.0, 0.7, 91.3, 51.4, 48.6,8.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.4, 0.8, 2.1, 0.0, 96.7, 37.4, 62.6,3.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.9, 0.1, 2.6, 1.5, 0.1, 94.7, 46.6, 53.3,5.299999999999997,1.5 +1,1,a-cure-i1,2017-18,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.5, 0.5, 2.2, 1.9, 0.0, 94.9, 49.4, 50.6,5.099999999999994,4.3 +1,1,a-cure-i1,2017-18,Marshfield - Marshfield High,01710505, 0.2, 1.2, 0.7, 2.8, 0.7, 0.1, 94.3, 51.0, 49.0,5.700000000000003,2.0 +1,1,a-cure-i1,2017-18,Marshfield - Martinson Elementary,01710025, 0.7, 2.8, 0.0, 4.7, 2.8, 0.0, 89.1, 49.3, 50.7,10.900000000000006,3.9 +1,1,a-cure-i1,2017-18,Marshfield - South River,01710010, 0.0, 0.3, 0.5, 3.2, 3.5, 0.0, 92.5, 50.4, 49.6,7.5,0.0 +1,1,a-cure-i1,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 2.1, 1.4, 3.6, 13.1, 4.6, 0.3, 74.9, 48.9, 50.9,25.099999999999994,1.9 +1,1,a-cure-i1,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.2, 1.1, 3.3, 10.3, 9.2, 0.0, 73.9, 54.3, 45.7,26.099999999999994,4.5 +4.545641025641026,4.55,a-cure-i1,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 1.7, 37.1, 53.7, 5.0, 0.0, 2.5, 52.1, 47.9,97.5,27.700000000000003 +1,1,a-cure-i1,2017-18,Masconomet - Masconomet Regional High School,07050505, 0.3, 3.9, 0.4, 2.3, 1.9, 0.1, 91.1, 51.8, 48.2,8.900000000000006,1.4 +10.329113924050624,5,a-cure-i1,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 2.7, 0.5, 2.3, 2.4, 0.0, 92.1, 50.8, 49.2,7.900000000000006,5.1 +1,1,a-cure-i1,2017-18,Mashpee - Kenneth Coombs School,01720005, 6.5, 1.4, 3.6, 7.0, 12.0, 0.2, 69.2, 45.7, 54.3,30.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Mashpee - Mashpee High,01720505, 5.5, 1.6, 5.5, 4.2, 5.8, 0.0, 77.4, 48.8, 51.2,22.599999999999994,1.3 +1,1,a-cure-i1,2017-18,Mashpee - Mashpee Middle School,01720020, 7.0, 2.6, 5.2, 2.2, 5.2, 0.4, 77.4, 52.2, 47.8,22.599999999999994,2.5 +1,1,a-cure-i1,2017-18,Mashpee - Quashnet School,01720035, 6.8, 1.6, 2.9, 3.5, 8.0, 0.0, 77.1, 49.9, 50.1,22.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 0.2, 1.2, 9.9, 20.0, 7.7, 0.7, 60.3, 52.8, 47.2,39.7,0.0 +5.868852459016394,5,a-cure-i1,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.6, 0.9, 47.0, 46.9, 2.1, 0.1, 2.4, 52.2, 47.8,97.6,35.800000000000004 +1,1,a-cure-i1,2017-18,Mattapoisett - Center,01730005, 0.0, 1.7, 0.4, 3.8, 4.6, 0.0, 89.5, 51.0, 49.0,10.5,0.0 +1,1,a-cure-i1,2017-18,Mattapoisett - Old Hammondtown,01730010, 0.0, 2.0, 2.4, 2.4, 4.4, 0.0, 88.8, 45.9, 54.1,11.200000000000003,0.0 +5.065326633165828,5,a-cure-i1,2017-18,Maynard - Fowler School,01740305, 0.2, 1.1, 3.1, 11.5, 4.0, 0.0, 80.1, 49.4, 50.6,19.900000000000006,6.3 +7.626168224299063,5,a-cure-i1,2017-18,Maynard - Green Meadow,01740010, 0.0, 1.2, 1.2, 12.6, 6.4, 0.0, 78.6, 46.1, 53.9,21.400000000000006,10.2 +1,1,a-cure-i1,2017-18,Maynard - Maynard High,01740505, 0.3, 4.1, 3.6, 12.3, 4.1, 0.0, 75.6, 53.1, 46.9,24.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Medfield - Dale Street,01750005, 0.0, 2.7, 0.5, 7.4, 4.1, 0.0, 85.2, 47.9, 52.1,14.799999999999997,2.8 +1,1,a-cure-i1,2017-18,Medfield - Medfield Senior High,01750505, 0.0, 5.9, 1.3, 2.2, 2.7, 0.2, 87.7, 51.0, 49.0,12.299999999999997,3.4 +1,1,a-cure-i1,2017-18,Medfield - Memorial School,01750003, 0.2, 2.3, 1.1, 5.3, 3.9, 0.0, 87.2, 50.5, 49.5,12.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Medfield - Ralph Wheelock School,01750007, 0.8, 3.7, 1.9, 5.0, 2.4, 0.0, 86.2, 46.0, 54.0,13.799999999999997,2.2 +1,1,a-cure-i1,2017-18,Medfield - Thomas Blake Middle,01750305, 0.5, 4.5, 0.8, 2.4, 3.5, 0.0, 88.3, 49.2, 50.8,11.700000000000003,4.4 +1,1,a-cure-i1,2017-18,Medford - Brooks School,01760130, 0.2, 6.2, 7.4, 6.8, 6.0, 0.0, 73.5, 47.6, 52.4,26.5,0.0 +1.8802660753880265,1.88,a-cure-i1,2017-18,Medford - Christopher Columbus,01760140, 0.0, 4.5, 18.3, 15.6, 6.6, 0.0, 54.9, 47.2, 52.8,45.1,5.3 +1,1,a-cure-i1,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 30.8, 15.4, 0.0, 0.0, 53.8, 38.5, 61.5,46.2,0.0 +1,1,a-cure-i1,2017-18,Medford - John J McGlynn Elementary School,01760068, 1.0, 13.7, 14.3, 11.6, 7.8, 0.2, 51.3, 51.9, 48.1,48.7,0.0 +2.096774193548387,2.1,a-cure-i1,2017-18,Medford - John J. McGlynn Middle School,01760320, 0.2, 15.0, 16.3, 14.3, 3.7, 0.0, 50.4, 46.5, 53.5,49.6,6.5 +1,1,a-cure-i1,2017-18,Medford - Madeleine Dugger Andrews,01760315, 0.0, 4.8, 10.2, 7.6, 5.4, 0.0, 72.0, 47.4, 52.6,28.0,2.8 +2.3778337531486144,2.38,a-cure-i1,2017-18,Medford - Medford High,01760505, 0.1, 9.6, 15.3, 11.7, 2.9, 0.1, 60.3, 50.1, 49.9,39.7,5.9 +2.255874673629243,2.26,a-cure-i1,2017-18,Medford - Milton Fuller Roberts,01760150, 0.7, 12.2, 9.8, 10.7, 4.8, 0.0, 61.7, 47.8, 52.2,38.3,5.4 +1,1,a-cure-i1,2017-18,Medway - Burke/Memorial Elementary School,01770015, 0.0, 1.4, 2.0, 2.2, 2.8, 0.0, 91.7, 52.9, 47.1,8.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Medway - John D Mc Govern Elementary,01770013, 0.0, 1.8, 0.9, 3.6, 1.2, 0.3, 92.2, 49.9, 50.1,7.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Medway - Medway High,01770505, 0.1, 3.3, 1.6, 3.6, 1.5, 0.1, 89.7, 47.8, 52.2,10.299999999999997,2.3 +1,1,a-cure-i1,2017-18,Medway - Medway Middle,01770305, 0.3, 3.1, 1.1, 3.8, 2.6, 0.0, 89.0, 50.8, 49.2,11.0,2.0 +1,1,a-cure-i1,2017-18,Melrose - Early Childhood Center,01780003, 0.0, 4.4, 1.9, 4.1, 7.5, 0.0, 82.1, 48.1, 51.9,17.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Melrose - Herbert Clark Hoover,01780017, 0.0, 4.5, 3.0, 7.1, 5.2, 0.0, 80.3, 47.6, 52.4,19.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Melrose - Horace Mann,01780025, 0.0, 1.1, 2.1, 1.8, 4.6, 0.0, 90.4, 54.1, 45.9,9.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Melrose - Lincoln,01780020, 0.2, 11.4, 7.1, 10.0, 7.6, 0.0, 63.7, 52.7, 47.3,36.3,0.0 +1,1,a-cure-i1,2017-18,Melrose - Melrose High,01780505, 0.0, 4.0, 8.5, 4.5, 2.8, 0.0, 80.2, 53.0, 47.0,19.799999999999997,4.3 +1,1,a-cure-i1,2017-18,Melrose - Melrose Middle,01780305, 0.3, 4.2, 8.0, 4.1, 4.0, 0.0, 79.4, 50.2, 49.8,20.599999999999994,4.0 +1,1,a-cure-i1,2017-18,Melrose - Roosevelt,01780035, 0.0, 5.3, 6.9, 5.5, 5.0, 0.0, 77.3, 47.2, 52.8,22.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Melrose - Winthrop,01780050, 0.5, 3.5, 4.4, 2.5, 5.9, 0.0, 83.2, 48.9, 51.1,16.799999999999997,4.5 +1,1,a-cure-i1,2017-18,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.5, 0.0, 3.5, 1.1, 0.0, 94.9, 50.4, 49.6,5.099999999999994,4.5 +11.302752293577976,5,a-cure-i1,2017-18,Mendon-Upton - Memorial School,07100001, 0.0, 3.6, 0.0, 4.2, 3.1, 0.0, 89.1, 45.7, 54.3,10.900000000000006,7.7 +1,1,a-cure-i1,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 2.7, 0.4, 4.8, 2.8, 0.0, 89.3, 49.4, 50.6,10.700000000000003,1.4 +1,1,a-cure-i1,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 1.6, 1.3, 3.2, 3.2, 0.0, 90.9, 54.6, 45.4,9.099999999999994,2.4 +1,1,a-cure-i1,2017-18,Methuen - Comprehensive Grammar School,01810050, 0.0, 5.6, 2.3, 33.4, 4.0, 0.1, 54.7, 50.9, 49.1,45.3,0.0 +1,1,a-cure-i1,2017-18,Methuen - Donald P Timony Grammar,01810060, 0.1, 3.5, 1.6, 48.2, 5.0, 0.0, 41.7, 47.6, 52.4,58.3,0.3 +1,1,a-cure-i1,2017-18,Methuen - Marsh Grammar School,01810030, 0.0, 2.8, 0.9, 28.1, 4.1, 0.2, 63.9, 47.5, 52.5,36.1,0.0 +1,1,a-cure-i1,2017-18,Methuen - Methuen High,01810505, 0.2, 4.2, 0.7, 35.6, 5.2, 0.1, 54.0, 47.2, 52.8,46.0,3.0 +1,1,a-cure-i1,2017-18,Methuen - Tenney Grammar School,01810055, 0.0, 3.1, 1.1, 50.9, 5.7, 0.0, 39.2, 45.9, 54.1,60.8,0.3 +1,1,a-cure-i1,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 0.2, 0.9, 2.1, 3.4, 6.4, 0.2, 86.8, 48.1, 51.9,13.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Middleborough - John T. Nichols Middle,01820305, 1.1, 1.9, 2.4, 4.2, 3.3, 0.0, 87.0, 49.8, 50.2,13.0,0.0 +1,1,a-cure-i1,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 0.5, 0.3, 3.4, 2.4, 2.7, 0.0, 90.7, 49.0, 51.0,9.299999999999997,2.9 +1,1,a-cure-i1,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 0.7, 0.3, 2.4, 4.8, 3.4, 0.0, 88.3, 49.8, 50.2,11.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Middleborough - Middleborough High,01820505, 0.7, 0.7, 2.6, 3.5, 3.2, 0.0, 89.3, 49.2, 50.8,10.700000000000003,1.7 +1,1,a-cure-i1,2017-18,Middleton - Fuller Meadow,01840003, 0.4, 3.9, 0.9, 2.6, 3.9, 0.0, 88.2, 50.4, 49.6,11.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Middleton - Howe-Manning,01840005, 0.2, 4.8, 0.4, 2.8, 3.5, 0.0, 88.2, 48.4, 51.6,11.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Milford - Brookside,01850065, 0.2, 1.7, 4.2, 28.2, 3.6, 0.2, 62.0, 48.3, 51.7,38.0,3.5 +1,1,a-cure-i1,2017-18,Milford - Memorial,01850010, 0.4, 2.3, 2.8, 30.9, 3.4, 0.0, 60.1, 48.2, 51.8,39.9,3.1 +4.434285714285714,4.43,a-cure-i1,2017-18,Milford - Milford High,01850505, 2.2, 2.6, 3.0, 25.0, 2.2, 0.1, 65.0, 51.0, 49.0,35.0,9.7 +1,1,a-cure-i1,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.7, 4.9, 0.7, 18.8, 0.7, 0.0, 74.3, 45.1, 54.9,25.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Milford - Stacy Middle,01850305, 1.3, 2.7, 2.7, 26.1, 2.9, 0.0, 64.4, 46.9, 53.1,35.599999999999994,1.9000000000000001 +2.407766990291262,2.41,a-cure-i1,2017-18,Milford - Woodland,01850090, 3.0, 2.0, 3.0, 28.7, 4.5, 0.1, 58.8, 47.0, 53.0,41.2,6.2 +1,1,a-cure-i1,2017-18,Millbury - Elmwood Street,01860017, 0.0, 3.1, 2.6, 4.1, 5.2, 0.0, 85.0, 47.4, 52.6,15.0,0.0 +1,1,a-cure-i1,2017-18,Millbury - Millbury Junior/Senior High,01860505, 0.3, 1.7, 2.5, 7.9, 2.6, 0.0, 85.0, 51.7, 48.3,15.0,1.7 +1,1,a-cure-i1,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 3.7, 1.6, 10.3, 6.7, 0.0, 77.8, 50.5, 49.5,22.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Millis - Clyde F Brown,01870005, 0.2, 1.6, 1.0, 9.0, 4.0, 0.0, 84.3, 51.6, 48.4,15.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Millis - Millis High School,01870505, 0.5, 3.1, 1.8, 4.8, 1.3, 0.3, 88.3, 49.6, 50.4,11.700000000000003,3.8 +1,1,a-cure-i1,2017-18,Millis - Millis Middle,01870020, 0.2, 2.0, 2.0, 8.8, 3.9, 0.0, 83.0, 46.7, 53.3,17.0,4.6 +4.75085324232082,4.75,a-cure-i1,2017-18,Milton - Charles S Pierce Middle,01890410, 0.2, 5.9, 14.8, 4.9, 3.3, 0.2, 70.7, 49.9, 50.1,29.299999999999997,8.7 +8.98876404494382,5,a-cure-i1,2017-18,Milton - Collicot,01890005, 0.0, 8.4, 3.1, 2.9, 3.2, 0.1, 82.2, 45.4, 54.6,17.799999999999997,10.0 +1,1,a-cure-i1,2017-18,Milton - Cunningham School,01890007, 0.2, 8.1, 7.9, 4.3, 3.2, 0.0, 76.2, 49.1, 50.9,23.799999999999997,3.7 +4.528301886792452,4.53,a-cure-i1,2017-18,Milton - Glover,01890010, 0.0, 4.4, 7.2, 3.2, 6.3, 0.0, 78.8, 49.7, 50.3,21.200000000000003,6.0 +4.527472527472527,4.53,a-cure-i1,2017-18,Milton - Milton High,01890505, 0.0, 7.0, 20.0, 5.1, 3.9, 0.4, 63.6, 50.4, 49.5,36.4,10.299999999999999 +5.281803542673107,5,a-cure-i1,2017-18,Milton - Tucker,01890020, 0.0, 6.3, 41.7, 5.9, 8.2, 0.0, 37.9, 49.0, 51.0,62.1,20.5 +1,1,a-cure-i1,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.2, 4.3, 4.1, 9.1, 3.0, 0.0, 79.4, 36.6, 63.0,20.599999999999994,1.2 +1,1,a-cure-i1,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.7, 0.0, 6.2, 3.7, 0.0, 89.4, 49.5, 50.5,10.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 1.9, 4.7, 0.9, 0.0, 92.5, 52.8, 47.2,7.5,0.0 +1,1,a-cure-i1,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 1.0, 0.3, 3.9, 3.9, 0.0, 91.0, 52.5, 47.5,9.0,2.9 +1,1,a-cure-i1,2017-18,Mohawk Trail - Sanderson Academy,07170020, 1.3, 0.0, 0.0, 3.8, 2.5, 0.6, 91.8, 40.9, 59.1,8.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.4, 5.8, 8.7, 4.1, 0.4, 80.6, 56.6, 43.4,19.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 0.9, 0.7, 4.9, 6.9, 8.0, 0.0, 78.5, 46.7, 53.3,21.5,0.0 +5.2486772486772475,5,a-cure-i1,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.8, 1.9, 6.8, 4.8, 4.4, 0.2, 81.1, 48.2, 51.8,18.900000000000006,6.2 +1,1,a-cure-i1,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.2, 0.7, 7.9, 6.6, 2.2, 0.4, 81.9, 50.7, 49.3,18.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Monson - Granite Valley Middle,01910310, 0.4, 1.4, 0.7, 3.2, 2.2, 1.4, 90.6, 50.4, 49.6,9.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Monson - Monson High School,01910505, 0.0, 0.4, 1.2, 1.6, 1.9, 0.4, 94.6, 50.8, 49.2,5.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Monson - Quarry Hill Community School,01910025, 0.3, 0.8, 0.8, 3.1, 2.3, 0.3, 92.6, 48.3, 51.7,7.400000000000006,3.8 +4.076923076923078,4.08,a-cure-i1,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.1, 1.1, 1.7, 14.3, 3.6, 0.0, 79.2, 47.1, 52.5,20.799999999999997,5.300000000000001 +14.383838383838377,5,a-cure-i1,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.9, 1.1, 2.6, 4.3, 0.0, 90.1, 51.9, 48.1,9.900000000000006,8.9 +2.272189349112426,2.27,a-cure-i1,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.3, 19.6, 17.3, 9.3, 4.3, 0.0, 49.3, 50.1, 49.9,50.7,7.2 +1,1,a-cure-i1,2017-18,Nahant - Johnson,01960010, 0.0, 0.7, 0.0, 4.8, 0.7, 0.0, 93.9, 51.0, 49.0,6.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Nantucket - Cyrus Peirce,01970010, 0.0, 1.1, 10.9, 27.0, 4.9, 0.0, 56.0, 52.0, 48.0,44.0,4.0 +1,1,a-cure-i1,2017-18,Nantucket - Nantucket Elementary,01970005, 0.0, 1.4, 7.4, 38.3, 3.9, 0.0, 49.0, 48.2, 51.8,51.0,0.0 +3.1079136690647484,3.11,a-cure-i1,2017-18,Nantucket - Nantucket High,01970505, 0.4, 1.5, 13.7, 22.9, 3.0, 0.2, 58.3, 48.4, 51.6,41.7,8.100000000000001 +1,1,a-cure-i1,2017-18,Nantucket - Nantucket Intermediate School,01970020, 0.0, 1.9, 9.1, 37.1, 2.7, 0.0, 49.3, 47.2, 52.8,50.7,0.0 +1,1,a-cure-i1,2017-18,Narragansett - Baldwinville Elementary,07200005, 0.3, 0.3, 1.0, 6.2, 3.8, 0.0, 88.2, 43.9, 56.1,11.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.9, 6.6, 2.8, 0.2, 89.5, 48.6, 51.4,10.5,0.0 +7.932773109243694,5,a-cure-i1,2017-18,Narragansett - Narragansett Regional High,07200505, 0.0, 0.3, 1.2, 7.8, 2.6, 0.0, 88.1, 51.6, 48.4,11.900000000000006,5.9 +1,1,a-cure-i1,2017-18,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 2.4, 3.6, 3.6, 0.0, 90.5, 39.6, 60.4,9.5,0.0 +1,1,a-cure-i1,2017-18,Narragansett - Templeton Center,07200020, 0.0, 0.6, 0.0, 8.2, 3.5, 0.0, 87.6, 45.9, 54.1,12.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Nashoba - Center School,07250020, 0.4, 5.5, 0.5, 4.1, 2.3, 0.0, 87.3, 48.0, 52.0,12.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Nashoba - Florence Sawyer School,07250025, 0.0, 4.3, 0.3, 3.5, 3.3, 0.1, 88.5, 51.2, 48.8,11.5,0.0 +10.526315789473692,5,a-cure-i1,2017-18,Nashoba - Hale,07250310, 0.0, 2.0, 1.0, 3.0, 1.7, 0.0, 92.4, 54.5, 45.5,7.599999999999994,5.0 +1,1,a-cure-i1,2017-18,Nashoba - Luther Burbank Middle School,07250305, 0.0, 2.4, 2.4, 6.0, 4.0, 0.8, 84.3, 46.6, 53.4,15.700000000000003,4.4 +1,1,a-cure-i1,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 0.4, 0.6, 1.3, 9.6, 2.5, 0.0, 85.6, 49.3, 50.7,14.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Nashoba - Nashoba Regional,07250505, 0.0, 2.8, 1.4, 3.7, 2.9, 0.0, 89.1, 49.9, 50.1,10.900000000000006,2.7 +1,1,a-cure-i1,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.6, 1.6, 1.1, 5.0, 2.3, 0.0, 89.4, 41.7, 58.3,10.599999999999994,2.5 +4.743362831858408,4.74,a-cure-i1,2017-18,Natick - Bennett-Hemenway,01980005, 0.0, 11.6, 2.5, 2.5, 5.7, 0.2, 77.4, 49.0, 51.0,22.599999999999994,6.7 +1,1,a-cure-i1,2017-18,Natick - Brown,01980010, 0.4, 26.3, 0.8, 8.4, 5.7, 0.0, 58.4, 48.3, 51.7,41.6,0.0 +4.256880733944954,4.26,a-cure-i1,2017-18,Natick - J F Kennedy Middle School,01980305, 0.2, 10.6, 2.2, 5.0, 3.9, 0.0, 78.2, 49.1, 50.9,21.799999999999997,5.8 +1,1,a-cure-i1,2017-18,Natick - Johnson,01980031, 0.0, 4.4, 1.3, 7.4, 7.0, 0.0, 79.9, 41.9, 58.1,20.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Natick - Lilja Elementary,01980035, 0.0, 10.2, 2.1, 8.8, 5.1, 0.0, 73.8, 52.9, 47.1,26.200000000000003,4.2 +1,1,a-cure-i1,2017-18,Natick - Memorial,01980043, 0.0, 5.6, 1.0, 5.6, 4.8, 0.0, 83.1, 47.0, 53.0,16.900000000000006,0.0 +4.413793103448277,4.41,a-cure-i1,2017-18,Natick - Natick High,01980505, 0.0, 7.2, 3.2, 5.7, 4.0, 0.2, 79.7, 50.3, 49.7,20.299999999999997,5.6000000000000005 +1,1,a-cure-i1,2017-18,Natick - Wilson Middle,01980310, 0.1, 5.8, 3.7, 5.6, 7.2, 0.1, 77.5, 48.9, 51.1,22.5,0.6 +1,1,a-cure-i1,2017-18,Nauset - Nauset Regional High,06600505, 0.2, 2.7, 5.2, 3.5, 3.3, 0.1, 85.0, 54.6, 45.4,15.0,1.4 +1,1,a-cure-i1,2017-18,Nauset - Nauset Regional Middle,06600305, 0.0, 2.5, 3.8, 4.3, 3.4, 0.2, 85.7, 48.7, 51.3,14.299999999999997,2.7 +1,1,a-cure-i1,2017-18,Needham - Broadmeadow,01990005, 0.0, 6.6, 1.3, 6.4, 5.9, 0.0, 79.7, 53.0, 47.0,20.299999999999997,3.9 +1,1,a-cure-i1,2017-18,Needham - High Rock School,01990410, 0.0, 10.0, 2.4, 6.7, 5.6, 0.0, 75.3, 50.9, 49.1,24.700000000000003,3.4 +1,1,a-cure-i1,2017-18,Needham - Hillside Elementary,01990035, 0.2, 10.7, 3.3, 5.7, 6.6, 0.0, 73.5, 47.4, 52.6,26.5,4.1 +1,1,a-cure-i1,2017-18,Needham - John Eliot,01990020, 0.0, 12.7, 6.9, 7.9, 3.8, 0.0, 68.7, 48.6, 51.4,31.299999999999997,0.0 +6.020618556701029,5,a-cure-i1,2017-18,Needham - Needham High,01990505, 0.0, 8.2, 2.9, 4.9, 3.3, 0.1, 80.6, 49.4, 50.5,19.400000000000006,7.3 +3.065134099616859,3.07,a-cure-i1,2017-18,Needham - Newman Elementary,01990050, 0.0, 9.3, 4.4, 5.7, 6.6, 0.1, 73.9, 48.7, 51.3,26.099999999999994,5.0 +1,1,a-cure-i1,2017-18,Needham - Pollard Middle,01990405, 0.2, 8.5, 1.9, 5.5, 5.4, 0.0, 78.5, 52.9, 47.1,21.5,2.6 +6.832432432432433,5,a-cure-i1,2017-18,Needham - William Mitchell,01990040, 0.0, 8.0, 1.4, 4.4, 4.6, 0.0, 81.5, 51.2, 48.8,18.5,7.9 +6.964467005076143,5,a-cure-i1,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.8, 2.4, 52.9, 17.1, 5.6, 0.0, 21.2, 49.7, 50.3,78.8,34.300000000000004 +1,1,a-cure-i1,2017-18,New Bedford - Abraham Lincoln,02010095, 0.1, 0.4, 10.5, 33.2, 5.7, 0.1, 49.9, 48.4, 51.6,50.1,2.7 +1.2941176470588236,1.29,a-cure-i1,2017-18,New Bedford - Alfred J Gomes,02010063, 0.4, 0.4, 12.5, 64.6, 3.8, 0.0, 18.4, 47.9, 52.1,81.6,6.6 +2.0671834625322996,2.07,a-cure-i1,2017-18,New Bedford - Betsey B Winslow,02010140, 0.3, 3.2, 7.7, 18.1, 9.0, 0.3, 61.3, 50.3, 49.7,38.7,5.0 +1,1,a-cure-i1,2017-18,New Bedford - Carlos Pacheco,02010105, 0.3, 0.6, 18.4, 50.3, 2.8, 0.0, 27.7, 44.4, 55.6,72.3,0.0 +4.0,4.0,a-cure-i1,2017-18,New Bedford - Casimir Pulaski,02010123, 0.1, 1.1, 6.0, 17.7, 5.1, 0.0, 70.0, 42.6, 57.4,30.0,7.5 +1,1,a-cure-i1,2017-18,New Bedford - Charles S Ashley,02010010, 0.0, 0.7, 6.4, 21.6, 5.3, 0.0, 66.0, 48.2, 51.8,34.0,3.0 +1,1,a-cure-i1,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 1.3, 1.7, 9.7, 31.5, 4.7, 0.3, 50.7, 48.7, 51.3,49.3,0.0 +3.6047430830039526,3.6,a-cure-i1,2017-18,New Bedford - Ellen R Hathaway,02010075, 0.3, 1.3, 10.9, 58.1, 5.3, 0.0, 24.1, 48.5, 51.5,75.9,17.1 +2.0286298568507157,2.03,a-cure-i1,2017-18,New Bedford - Elwyn G Campbell,02010020, 0.4, 1.5, 6.2, 34.3, 6.6, 0.0, 51.1, 51.5, 48.5,48.9,6.2 +3.983849259757739,3.98,a-cure-i1,2017-18,New Bedford - Hayden/McFadden,02010078, 0.7, 0.1, 12.9, 56.6, 4.0, 0.0, 25.7, 47.7, 52.3,74.3,18.5 +2.5863013698630137,2.59,a-cure-i1,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.6, 0.0, 12.2, 56.5, 3.8, 0.0, 27.0, 52.5, 47.5,73.0,11.8 +1,1,a-cure-i1,2017-18,New Bedford - James B Congdon,02010040, 0.6, 0.6, 13.7, 40.2, 7.7, 0.3, 36.9, 52.4, 47.6,63.1,0.0 +1,1,a-cure-i1,2017-18,New Bedford - Jireh Swift,02010130, 0.0, 1.9, 2.8, 18.1, 4.2, 0.0, 73.0, 52.1, 47.9,27.0,0.0 +1,1,a-cure-i1,2017-18,New Bedford - John Avery Parker,02010115, 0.4, 0.7, 15.8, 35.1, 8.4, 0.4, 39.3, 46.0, 54.0,60.7,0.0 +2.1903171953255423,2.19,a-cure-i1,2017-18,New Bedford - John B Devalles,02010050, 0.0, 0.8, 11.6, 44.7, 2.8, 0.0, 40.1, 49.6, 50.4,59.9,8.2 +4.1421319796954315,4.14,a-cure-i1,2017-18,New Bedford - Keith Middle School,02010405, 0.7, 1.1, 15.7, 35.7, 5.7, 0.2, 40.9, 48.8, 51.2,59.1,15.3 +2.928257686676427,2.93,a-cure-i1,2017-18,New Bedford - New Bedford High,02010505, 0.7, 1.3, 15.1, 46.7, 4.2, 0.3, 31.7, 45.9, 54.1,68.3,12.499999999999998 +1.9793814432989691,1.98,a-cure-i1,2017-18,New Bedford - Normandin Middle School,02010410, 0.3, 1.8, 6.7, 34.4, 5.3, 0.0, 51.5, 48.5, 51.5,48.5,6.0 +2.727056019070322,2.73,a-cure-i1,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 17.9, 62.3, 3.6, 0.0, 16.1, 55.2, 44.8,83.9,14.3 +3.117552334943639,3.12,a-cure-i1,2017-18,New Bedford - Roosevelt Middle School,02010415, 0.4, 0.4, 17.0, 39.1, 5.0, 0.2, 37.9, 48.0, 52.0,62.1,12.1 +2.350710900473934,2.35,a-cure-i1,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 0.1, 0.8, 20.1, 31.7, 10.6, 0.0, 36.7, 43.4, 56.6,63.3,9.3 +1,1,a-cure-i1,2017-18,New Bedford - Thomas R Rodman,02010125, 0.0, 2.6, 5.6, 40.5, 2.6, 0.0, 48.7, 43.6, 56.4,51.3,0.0 +8.356275303643725,5,a-cure-i1,2017-18,New Bedford - Trinity Day Academy,02010510, 1.3, 0.0, 5.1, 35.4, 6.3, 1.3, 50.6, 39.2, 60.8,49.4,25.8 +5.457534246575342,5,a-cure-i1,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 20.0, 43.0, 10.0, 0.0, 27.0, 32.0, 68.0,73.0,24.9 +1,1,a-cure-i1,2017-18,New Bedford - William H Taylor,02010135, 0.4, 0.0, 9.2, 19.1, 6.1, 0.0, 65.3, 50.0, 50.0,34.7,0.0 +4.3947100712105795,4.39,a-cure-i1,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.2, 1.2, 88.4, 8.1, 0.5, 0.0, 1.7, 50.2, 49.8,98.3,27.0 +1,1,a-cure-i1,2017-18,New Salem-Wendell - Swift River,07280015, 0.0, 2.0, 0.0, 5.3, 5.3, 0.0, 87.5, 51.3, 48.7,12.5,4.2 +1,1,a-cure-i1,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.2, 2.5, 1.2, 1.2, 0.0, 93.8, 50.2, 49.8,6.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 2.0, 1.1, 4.4, 1.8, 0.0, 90.7, 48.9, 51.1,9.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Newburyport - Newburyport High,02040505, 0.0, 1.8, 0.8, 4.0, 2.3, 0.0, 91.1, 53.5, 46.5,8.900000000000006,0.0 +16.457142857142856,5,a-cure-i1,2017-18,Newburyport - Rupert A Nock Middle,02040305, 0.0, 1.6, 0.7, 2.9, 1.8, 0.0, 93.0, 46.3, 53.7,7.0,7.199999999999999 +4.522968197879859,4.52,a-cure-i1,2017-18,Newton - A E Angier,02070005, 0.0, 14.3, 3.2, 5.1, 5.6, 0.0, 71.7, 52.7, 47.3,28.299999999999997,8.0 +4.272479564032698,4.27,a-cure-i1,2017-18,Newton - Bigelow Middle,02070305, 0.4, 15.2, 5.6, 9.2, 6.3, 0.0, 63.3, 52.8, 47.2,36.7,9.8 +13.730232558139534,5,a-cure-i1,2017-18,Newton - Bowen,02070015, 0.0, 25.4, 7.6, 4.8, 5.2, 0.0, 57.0, 47.5, 52.5,43.0,36.9 +7.6489607390300245,5,a-cure-i1,2017-18,Newton - C C Burr,02070020, 0.3, 20.2, 5.7, 9.8, 7.3, 0.0, 56.7, 50.5, 49.5,43.3,20.700000000000003 +7.057239057239056,5,a-cure-i1,2017-18,Newton - Cabot,02070025, 0.0, 12.8, 3.6, 4.1, 9.2, 0.0, 70.3, 52.7, 47.3,29.700000000000003,13.1 +2.860103626943005,2.86,a-cure-i1,2017-18,Newton - Charles E Brown Middle,02070310, 0.0, 22.0, 3.6, 6.6, 6.4, 0.0, 61.4, 47.1, 52.9,38.6,6.9 +1,1,a-cure-i1,2017-18,Newton - Countryside,02070040, 0.2, 21.7, 4.4, 7.8, 9.0, 0.0, 56.8, 51.7, 48.3,43.2,3.8 +3.9344262295081966,3.93,a-cure-i1,2017-18,Newton - F A Day Middle,02070315, 0.2, 14.8, 5.8, 9.0, 6.7, 0.0, 63.4, 44.9, 55.1,36.6,9.0 +2.928104575163399,2.93,a-cure-i1,2017-18,Newton - Franklin,02070055, 0.2, 12.2, 3.5, 9.0, 5.5, 0.2, 69.4, 55.5, 44.5,30.599999999999994,5.6 +7.94044665012407,5,a-cure-i1,2017-18,Newton - Horace Mann,02070075, 0.0, 19.1, 4.0, 8.2, 9.2, 0.0, 59.7, 44.1, 55.9,40.3,20.0 +1,1,a-cure-i1,2017-18,Newton - John Ward,02070120, 0.0, 12.3, 2.6, 3.9, 8.1, 0.0, 73.1, 50.5, 49.5,26.900000000000006,3.2 +2.6828282828282832,2.68,a-cure-i1,2017-18,Newton - Lincoln-Eliot,02070070, 0.0, 17.1, 9.4, 16.3, 6.7, 0.0, 50.5, 51.6, 48.1,49.5,8.3 +4.6412213740458,4.64,a-cure-i1,2017-18,Newton - Mason-Rice,02070080, 0.0, 13.7, 1.6, 3.7, 7.2, 0.0, 73.8, 47.5, 52.5,26.200000000000003,7.6 +5.821428571428572,5,a-cure-i1,2017-18,Newton - Memorial Spaulding,02070105, 0.0, 26.5, 4.0, 8.6, 5.7, 0.0, 55.2, 47.5, 52.5,44.8,16.3 +1.979035639412998,1.98,a-cure-i1,2017-18,Newton - Newton Early Childhood Center,02070108, 0.0, 21.8, 5.6, 9.1, 11.2, 0.0, 52.3, 35.5, 64.5,47.7,5.9 +7.542857142857143,5,a-cure-i1,2017-18,Newton - Newton North High,02070505, 0.3, 14.8, 5.9, 8.9, 4.9, 0.1, 65.0, 49.6, 50.2,35.0,16.5 +9.187675070028012,5,a-cure-i1,2017-18,Newton - Newton South High,02070510, 0.1, 19.9, 5.2, 6.0, 4.4, 0.0, 64.3, 48.5, 51.3,35.7,20.500000000000004 +7.2544080604534,5,a-cure-i1,2017-18,Newton - Oak Hill Middle,02070320, 0.2, 22.1, 4.4, 5.2, 7.7, 0.2, 60.3, 50.5, 49.5,39.7,18.0 +2.365914786967419,2.37,a-cure-i1,2017-18,Newton - Peirce,02070100, 0.0, 21.4, 4.3, 7.2, 5.8, 1.1, 60.1, 49.6, 50.4,39.9,5.9 +4.497297297297297,4.5,a-cure-i1,2017-18,Newton - Underwood,02070115, 0.4, 18.0, 3.2, 11.3, 4.2, 0.0, 63.0, 53.9, 46.1,37.0,10.399999999999999 +1.9914163090128754,1.99,a-cure-i1,2017-18,Newton - Williams,02070125, 0.3, 28.4, 4.1, 8.8, 5.1, 0.0, 53.4, 45.3, 54.7,46.6,5.8 +3.674641148325359,3.67,a-cure-i1,2017-18,Newton - Zervas,02070130, 0.2, 22.4, 4.9, 6.4, 7.9, 0.0, 58.2, 50.1, 49.6,41.8,9.6 +1,1,a-cure-i1,2017-18,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.0, 0.8, 4.1, 3.5, 0.0, 89.6, 45.0, 55.0,10.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Norfolk - H Olive Day,02080015, 0.0, 3.0, 0.9, 2.2, 2.8, 0.0, 91.1, 45.9, 54.1,8.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.7, 1.5, 1.3, 3.3, 3.1, 0.0, 90.2, 69.3, 30.7,9.799999999999997,0.0 +1,1,a-cure-i1,2017-18,North Adams - Brayton,02090035, 0.0, 0.0, 3.5, 6.2, 6.2, 0.0, 84.2, 51.2, 48.8,15.799999999999997,0.0 +1,1,a-cure-i1,2017-18,North Adams - Colegrove Park Elementary,02090008, 0.6, 0.3, 3.9, 6.4, 5.8, 0.0, 83.1, 49.0, 51.0,16.900000000000006,0.0 +1,1,a-cure-i1,2017-18,North Adams - Drury High,02090505, 0.2, 0.0, 3.4, 5.0, 7.1, 0.0, 84.3, 53.8, 46.2,15.700000000000003,2.5 +1,1,a-cure-i1,2017-18,North Adams - Greylock,02090015, 0.0, 1.4, 1.7, 8.4, 7.4, 0.7, 80.4, 48.6, 51.4,19.599999999999994,0.0 +1,1,a-cure-i1,2017-18,North Andover - Annie L Sargent School,02110018, 0.5, 8.8, 2.1, 5.2, 4.5, 0.0, 78.9, 49.2, 50.8,21.099999999999994,0.0 +1,1,a-cure-i1,2017-18,North Andover - Atkinson,02110001, 0.5, 11.4, 4.8, 20.1, 3.9, 0.0, 59.3, 48.9, 51.1,40.7,0.0 +1,1,a-cure-i1,2017-18,North Andover - Franklin,02110010, 0.4, 14.6, 1.5, 7.1, 3.3, 0.0, 73.0, 43.8, 56.2,27.0,0.0 +1,1,a-cure-i1,2017-18,North Andover - Kittredge,02110015, 0.0, 5.2, 3.8, 6.6, 4.9, 0.3, 79.2, 43.4, 56.6,20.799999999999997,0.0 +1,1,a-cure-i1,2017-18,North Andover - North Andover High,02110505, 0.2, 6.8, 3.1, 8.9, 1.3, 0.4, 79.4, 52.0, 48.0,20.599999999999994,2.6 +1,1,a-cure-i1,2017-18,North Andover - North Andover Middle,02110305, 0.2, 7.2, 3.4, 9.5, 1.8, 0.1, 77.7, 48.8, 51.2,22.299999999999997,0.0 +1,1,a-cure-i1,2017-18,North Andover - Thomson,02110020, 0.0, 4.9, 2.3, 17.1, 4.6, 0.0, 71.0, 52.5, 47.5,29.0,0.0 +1,1,a-cure-i1,2017-18,North Attleborough - Amvet Boulevard,02120007, 0.5, 11.6, 3.3, 5.8, 4.5, 0.0, 74.4, 51.3, 48.7,25.599999999999994,0.0 +1,1,a-cure-i1,2017-18,North Attleborough - Community,02120030, 0.0, 3.8, 6.3, 9.4, 7.8, 0.0, 72.8, 42.8, 57.2,27.200000000000003,0.0 +1,1,a-cure-i1,2017-18,North Attleborough - Falls,02120010, 0.0, 5.1, 2.9, 6.2, 2.9, 0.4, 82.5, 48.4, 51.6,17.5,0.0 +1,1,a-cure-i1,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.2, 4.4, 3.3, 2.2, 5.2, 0.2, 84.6, 49.5, 50.5,15.400000000000006,0.0 +1,1,a-cure-i1,2017-18,North Attleborough - North Attleboro High,02120505, 0.3, 6.1, 3.1, 5.5, 2.5, 0.1, 82.3, 50.4, 49.5,17.700000000000003,2.4 +1,1,a-cure-i1,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 0.8, 11.9, 2.4, 5.6, 3.2, 0.8, 75.4, 37.3, 62.7,24.599999999999994,0.0 +1,1,a-cure-i1,2017-18,North Attleborough - North Attleborough Middle,02120305, 0.2, 6.3, 2.2, 4.5, 3.4, 0.1, 83.3, 48.7, 51.3,16.700000000000003,4.1 +5.7379310344827585,5,a-cure-i1,2017-18,North Attleborough - Roosevelt Avenue,02120015, 0.0, 6.4, 1.1, 2.8, 4.2, 0.0, 85.5, 55.1, 44.9,14.5,5.2 +1,1,a-cure-i1,2017-18,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.9, 3.9, 3.0, 0.0, 92.1, 47.0, 53.0,7.900000000000006,0.0 +1,1,a-cure-i1,2017-18,North Brookfield - North Brookfield High,02150505, 0.0, 0.9, 0.9, 5.3, 3.1, 0.0, 89.9, 49.3, 50.7,10.099999999999994,0.0 +1,1,a-cure-i1,2017-18,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.5, 2.7, 0.0, 0.0, 96.7, 42.4, 57.6,3.299999999999997,0.0 +1,1,a-cure-i1,2017-18,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.2, 1.0, 3.2, 2.8, 0.2, 91.6, 50.6, 49.4,8.400000000000006,0.0 +1,1,a-cure-i1,2017-18,North Middlesex - Nissitissit Middle School,07350310, 0.0, 2.1, 1.5, 3.6, 2.3, 0.0, 90.5, 47.8, 52.2,9.5,2.8 +1,1,a-cure-i1,2017-18,North Middlesex - North Middlesex Regional,07350505, 0.3, 0.8, 1.3, 3.0, 3.5, 0.0, 91.2, 53.5, 46.5,8.799999999999997,1.8 +1,1,a-cure-i1,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 5.6, 0.0, 94.4, 38.9, 61.1,5.599999999999994,0.0 +1,1,a-cure-i1,2017-18,North Middlesex - Spaulding Memorial,07350005, 0.0, 1.9, 1.7, 5.7, 4.5, 0.0, 86.3, 50.0, 50.0,13.700000000000003,0.0 +1,1,a-cure-i1,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 1.1, 1.1, 2.2, 3.3, 0.0, 0.0, 92.2, 40.0, 60.0,7.799999999999997,0.0 +1,1,a-cure-i1,2017-18,North Middlesex - Varnum Brook,07350035, 0.2, 0.4, 2.4, 4.3, 5.0, 0.0, 87.7, 46.6, 53.4,12.299999999999997,3.1 +1,1,a-cure-i1,2017-18,North Reading - E Ethel Little School,02170003, 0.0, 4.2, 1.2, 3.6, 4.5, 0.0, 86.4, 46.2, 53.8,13.599999999999994,0.0 +1,1,a-cure-i1,2017-18,North Reading - J Turner Hood,02170010, 0.0, 5.4, 0.6, 2.4, 2.7, 0.3, 88.7, 47.3, 52.7,11.299999999999997,0.0 +1,1,a-cure-i1,2017-18,North Reading - L D Batchelder,02170005, 0.0, 3.4, 0.2, 5.6, 3.7, 0.0, 87.1, 49.6, 50.4,12.900000000000006,0.0 +1,1,a-cure-i1,2017-18,North Reading - North Reading High,02170505, 0.0, 3.1, 0.6, 2.1, 1.4, 0.2, 92.6, 52.0, 48.0,7.400000000000006,4.0 +1,1,a-cure-i1,2017-18,North Reading - North Reading Middle,02170305, 0.0, 3.6, 0.5, 2.9, 3.6, 0.2, 89.1, 51.1, 48.9,10.900000000000006,0.0 +3.6170212765957444,3.62,a-cure-i1,2017-18,Northampton - Bridge Street,02100005, 0.4, 5.1, 2.6, 21.9, 7.7, 0.0, 62.4, 46.0, 54.0,37.6,8.5 +5.9749373433583965,5,a-cure-i1,2017-18,Northampton - Jackson Street,02100020, 0.0, 8.1, 5.6, 17.6, 8.7, 0.0, 60.1, 56.7, 43.3,39.9,14.9 +1,1,a-cure-i1,2017-18,Northampton - John F Kennedy Middle School,02100410, 0.5, 2.9, 1.8, 17.7, 6.5, 0.0, 70.6, 47.8, 52.2,29.400000000000006,2.0 +1,1,a-cure-i1,2017-18,Northampton - Leeds,02100025, 0.0, 2.2, 0.9, 14.3, 8.1, 0.0, 74.5, 46.7, 53.3,25.5,0.0 +1,1,a-cure-i1,2017-18,Northampton - Northampton High,02100505, 0.1, 4.3, 3.0, 12.9, 4.1, 0.0, 75.6, 51.4, 48.6,24.400000000000006,3.9 +1,1,a-cure-i1,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 3.6, 1.4, 15.4, 4.5, 0.0, 75.1, 46.6, 53.4,24.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.8, 1.2, 15.5, 1.8, 0.0, 80.7, 42.0, 58.0,19.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0.3, 10.7, 1.2, 5.6, 2.9, 0.2, 79.1, 51.7, 48.3,20.900000000000006,2.4 +1,1,a-cure-i1,2017-18,Northborough - Fannie E Proctor,02130015, 0.0, 11.2, 3.6, 14.5, 3.2, 0.4, 67.1, 49.0, 51.0,32.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Northborough - Lincoln Street,02130003, 1.2, 14.1, 1.6, 0.8, 3.9, 0.8, 77.6, 53.3, 46.7,22.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Northborough - Marguerite E Peaslee,02130014, 0.0, 13.5, 0.4, 10.2, 4.0, 0.4, 71.6, 44.4, 55.6,28.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Northborough - Marion E Zeh,02130020, 0.0, 16.5, 1.2, 7.0, 3.3, 0.0, 72.0, 45.3, 54.7,28.0,0.0 +1,1,a-cure-i1,2017-18,Northborough - Robert E. Melican Middle School,02130305, 0.5, 9.3, 2.2, 5.6, 4.5, 1.1, 76.8, 48.1, 51.9,23.200000000000003,1.3 +1,1,a-cure-i1,2017-18,Northbridge - Northbridge Elementary,02140005, 0.5, 1.1, 0.0, 11.1, 4.7, 0.0, 82.6, 43.2, 56.8,17.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Northbridge - Northbridge High,02140505, 0.0, 0.9, 0.5, 7.1, 2.5, 0.2, 88.9, 49.4, 50.6,11.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Northbridge - Northbridge Middle,02140305, 0.0, 1.0, 1.0, 6.5, 4.6, 0.1, 86.9, 49.0, 51.0,13.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Northbridge - W Edward Balmer,02140001, 0.0, 0.4, 0.4, 8.5, 4.2, 0.0, 86.5, 51.3, 48.7,13.5,0.0 +2.323287671232877,2.32,a-cure-i1,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.4, 2.7, 30.3, 1.9, 0.2, 63.5, 46.5, 53.5,36.5,5.300000000000001 +1,1,a-cure-i1,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.2, 0.0, 0.8, 1.6, 3.3, 0.0, 94.1, 37.1, 62.9,5.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Norton - Henri A. Yelle,02180060, 0.0, 2.8, 2.0, 3.3, 5.1, 0.0, 86.8, 48.6, 51.4,13.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Norton - J C Solmonese,02180015, 0.6, 1.1, 0.9, 3.2, 5.8, 0.0, 88.3, 48.5, 51.5,11.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Norton - L G Nourse Elementary,02180010, 0.0, 2.1, 3.2, 6.3, 3.5, 0.0, 84.9, 48.1, 51.9,15.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Norton - Norton High,02180505, 0.0, 2.2, 1.9, 2.3, 1.3, 0.3, 92.1, 47.0, 53.0,7.900000000000006,4.6 +1,1,a-cure-i1,2017-18,Norton - Norton Middle,02180305, 0.2, 1.9, 2.0, 3.7, 3.7, 0.0, 88.4, 52.8, 47.2,11.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Norwell - Grace Farrar Cole,02190005, 0.2, 1.7, 0.6, 1.5, 2.9, 0.0, 93.1, 41.8, 58.2,6.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Norwell - Norwell High,02190505, 0.0, 1.7, 0.4, 2.2, 1.7, 0.3, 93.7, 51.1, 48.9,6.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Norwell - Norwell Middle School,02190405, 0.0, 3.0, 0.6, 1.8, 2.0, 0.2, 92.5, 51.7, 48.3,7.5,0.0 +1,1,a-cure-i1,2017-18,Norwell - William G Vinal,02190020, 0.0, 1.7, 0.2, 1.2, 2.9, 0.2, 93.8, 46.6, 53.4,6.200000000000003,3.9 +3.533333333333333,3.53,a-cure-i1,2017-18,Norwood - Balch,02200005, 0.0, 3.7, 11.1, 30.4, 2.7, 0.0, 52.0, 50.0, 50.0,48.0,10.6 +1,1,a-cure-i1,2017-18,Norwood - Charles J Prescott,02200025, 0.0, 25.7, 6.0, 4.0, 3.6, 0.0, 60.6, 49.4, 50.6,39.4,0.0 +1,1,a-cure-i1,2017-18,Norwood - Cornelius M Callahan,02200010, 0.0, 5.5, 9.6, 8.7, 5.5, 0.0, 70.8, 47.5, 52.5,29.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 5.2, 11.9, 12.2, 2.0, 0.1, 68.5, 48.4, 51.6,31.5,1.9 +1,1,a-cure-i1,2017-18,Norwood - F A Cleveland,02200015, 0.0, 9.8, 6.7, 6.1, 2.1, 0.6, 74.7, 49.1, 50.9,25.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Norwood - George F. Willett,02200075, 0.0, 14.4, 8.5, 11.3, 1.8, 1.5, 62.5, 48.3, 51.7,37.5,0.0 +1,1,a-cure-i1,2017-18,Norwood - John P Oldham,02200020, 0.0, 5.7, 12.8, 8.4, 0.4, 0.0, 72.7, 52.9, 47.1,27.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Norwood - Norwood High,02200505, 0.0, 4.3, 12.0, 11.0, 2.6, 0.0, 70.1, 49.0, 51.0,29.900000000000006,3.0 +1,1,a-cure-i1,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.6, 1.6, 4.9, 23.7, 6.8, 0.5, 60.8, 50.7, 49.3,39.2,2.7 +1,1,a-cure-i1,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.2, 0.7, 1.9, 1.9, 1.3, 0.0, 94.1, 36.6, 63.4,5.900000000000006,1.9 +1,1,a-cure-i1,2017-18,Old Rochester - Old Rochester Regional High,07400505, 0.1, 2.4, 2.2, 1.2, 2.6, 0.0, 91.5, 52.4, 47.6,8.5,2.2 +1,1,a-cure-i1,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 1.5, 1.5, 1.9, 3.8, 0.0, 91.4, 46.1, 53.9,8.599999999999994,0.0 +9.281767955801108,5,a-cure-i1,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.6, 6.9, 10.6, 0.0, 0.0, 81.9, 46.3, 53.8,18.099999999999994,10.5 +1,1,a-cure-i1,2017-18,Orange - Dexter Park,02230010, 0.0, 0.6, 1.0, 6.7, 3.5, 0.0, 88.2, 42.2, 57.8,11.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Orange - Fisher Hill,02230015, 0.7, 0.4, 1.8, 8.6, 2.5, 0.0, 86.0, 48.7, 51.3,14.0,0.0 +1,1,a-cure-i1,2017-18,Orleans - Orleans Elementary,02240005, 0.0, 2.2, 3.1, 5.8, 1.3, 0.0, 87.4, 48.0, 52.0,12.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Oxford - Alfred M Chaffee,02260010, 0.3, 0.7, 1.7, 10.7, 4.5, 0.0, 82.0, 45.0, 55.0,18.0,0.0 +1,1,a-cure-i1,2017-18,Oxford - Clara Barton,02260005, 0.0, 0.5, 2.6, 9.4, 5.2, 0.0, 82.2, 46.5, 53.5,17.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Oxford - Oxford High,02260505, 0.6, 2.2, 3.1, 10.1, 4.6, 0.4, 79.0, 53.2, 46.8,21.0,0.0 +1,1,a-cure-i1,2017-18,Oxford - Oxford Middle,02260405, 0.0, 1.6, 1.8, 11.7, 4.7, 0.0, 80.1, 47.6, 52.4,19.900000000000006,3.9 +1,1,a-cure-i1,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 18.5, 3.7, 0.0, 77.8, 11.1, 88.9,22.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Palmer - Old Mill Pond,02270008, 0.0, 2.6, 3.3, 13.5, 4.9, 0.0, 75.5, 51.5, 48.5,24.5,3.7 +1,1,a-cure-i1,2017-18,Palmer - Palmer High,02270505, 0.0, 2.2, 2.7, 8.7, 3.6, 0.1, 82.6, 48.5, 51.5,17.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.2, 0.7, 0.5, 5.5, 3.3, 0.0, 89.9, 37.6, 62.4,10.099999999999994,1.6 +9.494130202774814,5,a-cure-i1,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 3.7, 89.6, 0.0, 0.4, 6.3, 54.8, 45.2,93.7,55.6 +1,1,a-cure-i1,2017-18,Peabody - Captain Samuel Brown,02290005, 0.0, 1.4, 2.0, 14.5, 2.0, 0.0, 80.2, 44.4, 55.6,19.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Peabody - Center,02290015, 0.0, 2.3, 8.1, 11.7, 1.5, 0.0, 76.4, 51.3, 48.7,23.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Peabody - J Henry Higgins Middle,02290305, 0.0, 1.8, 3.9, 15.4, 1.7, 0.0, 77.3, 48.2, 51.8,22.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Peabody - John E Burke,02290007, 0.0, 1.1, 1.1, 5.7, 3.1, 0.0, 88.9, 50.2, 49.8,11.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Peabody - John E. McCarthy,02290016, 0.0, 2.0, 2.0, 9.9, 3.1, 0.0, 83.1, 42.4, 57.6,16.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 2.2, 3.4, 15.9, 2.0, 0.0, 76.5, 48.2, 51.8,23.5,1.6 +1,1,a-cure-i1,2017-18,Peabody - South Memorial,02290035, 0.0, 2.1, 2.8, 6.0, 2.4, 0.0, 86.7, 55.9, 44.1,13.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Peabody - Thomas Carroll,02290010, 0.0, 0.8, 5.1, 16.5, 1.3, 0.0, 76.2, 52.6, 47.4,23.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Peabody - West Memorial,02290045, 0.0, 0.8, 1.2, 4.0, 0.8, 0.0, 93.1, 44.4, 55.6,6.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Peabody - William A Welch Sr,02290027, 0.0, 1.4, 4.2, 27.2, 2.2, 0.0, 65.0, 48.9, 51.1,35.0,0.0 +10.519337016574589,5,a-cure-i1,2017-18,Pelham - Pelham Elementary,02300005, 0.0, 3.9, 0.8, 9.4, 3.9, 0.0, 81.9, 48.0, 52.0,18.099999999999994,11.9 +1,1,a-cure-i1,2017-18,Pembroke - Bryantville Elementary,02310003, 0.2, 0.6, 0.4, 0.0, 3.4, 0.2, 95.2, 48.4, 51.6,4.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Pembroke - Hobomock Elementary,02310010, 0.0, 0.5, 0.7, 0.2, 0.5, 0.0, 98.1, 43.5, 56.5,1.9000000000000057,0.0 +1,1,a-cure-i1,2017-18,Pembroke - North Pembroke Elementary,02310015, 0.2, 0.9, 0.7, 0.5, 2.7, 0.0, 94.9, 46.6, 53.2,5.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Pembroke - Pembroke Community Middle School,02310305, 0.0, 1.4, 0.6, 0.8, 0.6, 0.0, 96.6, 50.6, 49.4,3.4000000000000057,0.0 +1,1,a-cure-i1,2017-18,Pembroke - Pembroke High School,02310505, 0.0, 1.1, 1.0, 0.4, 0.5, 0.3, 96.6, 50.1, 49.6,3.4000000000000057,0.0 +1,1,a-cure-i1,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 10.1, 2.8, 0.0, 87.2, 46.3, 53.7,12.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Pentucket - Dr John C Page School,07450015, 0.0, 2.9, 0.3, 1.8, 2.1, 0.0, 93.0, 49.3, 50.7,7.0,1.5 +1,1,a-cure-i1,2017-18,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.4, 0.6, 4.6, 2.2, 0.0, 92.3, 44.2, 55.8,7.700000000000003,1.1 +1,1,a-cure-i1,2017-18,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.8, 0.4, 6.2, 2.1, 0.0, 90.5, 49.8, 50.2,9.5,2.1 +1,1,a-cure-i1,2017-18,Pentucket - Pentucket Regional Middle,07450405, 0.0, 2.1, 0.2, 2.8, 1.2, 0.0, 93.6, 43.4, 56.6,6.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 2.0, 0.7, 2.6, 0.7, 0.0, 94.1, 50.0, 50.0,5.900000000000006,0.6 +1,1,a-cure-i1,2017-18,Petersham - Petersham Center,02340005, 0.0, 0.9, 0.0, 4.3, 4.3, 0.0, 90.5, 48.3, 51.7,9.5,0.0 +10.343096234309623,5,a-cure-i1,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.5, 1.5, 24.1, 64.0, 5.4, 0.0, 4.4, 47.8, 52.2,95.6,61.8 +6.440894568690095,5,a-cure-i1,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.5, 1.0, 13.7, 78.7, 0.0, 0.0, 6.1, 45.7, 54.3,93.9,37.8 +3.0420899854862116,3.04,a-cure-i1,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.6, 8.8, 28.0, 29.6, 0.6, 0.1, 31.1, 52.2, 47.8,68.9,13.1 +8.130790190735693,5,a-cure-i1,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.3, 14.3, 33.3, 23.5, 2.0, 0.0, 26.6, 53.2, 46.8,73.4,37.3 +1,1,a-cure-i1,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.6, 0.0, 4.5, 0.0, 94.9, 52.9, 47.1,5.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 2.2, 3.8, 0.0, 94.1, 49.5, 50.5,5.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 12.1, 0.0, 0.0, 87.9, 57.6, 42.4,12.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 0.3, 0.8, 1.1, 1.4, 3.1, 0.0, 93.3, 50.0, 50.0,6.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 5.1, 8.5, 0.0, 86.4, 44.1, 55.9,13.599999999999994,0.0 +14.145454545454545,5,a-cure-i1,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 18.1, 7.3, 5.5, 13.2, 0.0, 56.0, 53.1, 46.7,44.0,38.9 +9.932721712538227,5,a-cure-i1,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.2, 2.2, 9.5, 14.2, 6.5, 0.0, 67.3, 68.8, 30.9,32.7,20.3 +1,1,a-cure-i1,2017-18,Pittsfield - Allendale,02360010, 0.7, 2.1, 8.3, 12.2, 11.8, 0.0, 64.9, 49.7, 50.3,35.099999999999994,4.7 +1,1,a-cure-i1,2017-18,Pittsfield - Crosby,02360065, 0.9, 0.9, 13.2, 19.5, 11.7, 0.0, 53.8, 40.4, 59.6,46.2,3.0 +1,1,a-cure-i1,2017-18,Pittsfield - Egremont,02360035, 0.0, 0.9, 7.3, 10.4, 6.1, 0.0, 75.2, 50.1, 49.9,24.799999999999997,3.4 +3.023255813953488,3.02,a-cure-i1,2017-18,Pittsfield - John T Reid Middle,02360305, 0.4, 0.9, 11.3, 12.0, 9.6, 0.2, 65.6, 50.5, 49.5,34.400000000000006,6.5 +1,1,a-cure-i1,2017-18,Pittsfield - Morningside Community School,02360055, 0.3, 0.5, 13.7, 21.4, 12.1, 0.0, 51.9, 49.9, 50.1,48.1,0.0 +3.0501672240802664,3.05,a-cure-i1,2017-18,Pittsfield - Pittsfield High,02360505, 0.1, 2.0, 10.7, 12.6, 4.6, 0.0, 70.1, 48.8, 51.1,29.900000000000006,5.699999999999999 +1,1,a-cure-i1,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 3.7, 7.9, 10.2, 0.0, 78.2, 54.6, 45.4,21.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Pittsfield - Silvio O Conte Community,02360105, 0.8, 1.1, 18.5, 24.3, 15.2, 0.0, 40.1, 50.3, 49.7,59.9,0.0 +1,1,a-cure-i1,2017-18,Pittsfield - Stearns,02360090, 0.0, 1.6, 2.4, 8.6, 6.9, 0.0, 80.4, 45.3, 54.7,19.599999999999994,0.0 +2.56,2.56,a-cure-i1,2017-18,Pittsfield - Taconic High,02360510, 0.1, 1.1, 13.2, 10.2, 7.8, 0.0, 67.5, 49.4, 50.6,32.5,5.2 +1,1,a-cure-i1,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.2, 10.7, 11.5, 7.5, 0.0, 69.1, 51.0, 49.0,30.900000000000006,0.8 +1,1,a-cure-i1,2017-18,Pittsfield - Williams,02360100, 0.0, 4.4, 5.0, 5.3, 7.2, 0.6, 77.4, 48.3, 51.7,22.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Plainville - Anna Ware Jackson,02380010, 0.0, 4.7, 3.2, 5.0, 1.7, 0.0, 85.4, 46.2, 53.8,14.599999999999994,2.5 +1,1,a-cure-i1,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 1.0, 4.6, 2.0, 8.3, 1.3, 0.0, 82.8, 50.8, 49.2,17.200000000000003,2.3 +1,1,a-cure-i1,2017-18,Plymouth - Cold Spring,02390005, 0.0, 2.7, 1.2, 12.5, 5.1, 0.0, 78.4, 53.3, 46.7,21.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Plymouth - Federal Furnace School,02390011, 0.0, 0.5, 6.5, 6.7, 4.1, 0.0, 82.1, 47.9, 52.1,17.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Plymouth - Hedge,02390010, 0.0, 3.2, 3.2, 7.8, 10.4, 0.0, 75.3, 41.6, 58.4,24.700000000000003,0.0 +13.373134328358203,5,a-cure-i1,2017-18,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.4, 2.6, 2.6, 0.0, 93.3, 49.2, 50.8,6.700000000000003,5.6 +1,1,a-cure-i1,2017-18,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.7, 3.5, 4.2, 0.0, 91.6, 51.6, 48.4,8.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 0.2, 1.1, 0.9, 4.2, 5.3, 0.0, 88.3, 48.3, 51.7,11.700000000000003,3.5 +1,1,a-cure-i1,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 0.2, 2.1, 2.3, 5.0, 3.8, 0.0, 86.7, 44.5, 55.4,13.299999999999997,3.3 +1,1,a-cure-i1,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 1.4, 2.9, 2.1, 7.1, 0.0, 86.4, 50.0, 50.0,13.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Plymouth - Plymouth North High,02390505, 0.2, 1.7, 2.7, 6.1, 3.7, 0.1, 85.6, 50.5, 49.5,14.400000000000006,2.0 +1,1,a-cure-i1,2017-18,Plymouth - Plymouth South High,02390515, 0.4, 1.5, 1.6, 2.6, 3.6, 0.1, 90.3, 47.0, 53.0,9.700000000000003,2.4 +1,1,a-cure-i1,2017-18,Plymouth - Plymouth South Middle,02390305, 0.4, 0.8, 0.6, 2.3, 3.6, 0.0, 92.3, 47.7, 52.3,7.700000000000003,2.0 +1,1,a-cure-i1,2017-18,Plymouth - South Elementary,02390046, 0.5, 0.3, 1.2, 4.7, 5.4, 0.2, 87.7, 46.7, 53.3,12.299999999999997,2.9 +1,1,a-cure-i1,2017-18,Plymouth - West Elementary,02390047, 0.0, 1.3, 2.5, 8.6, 4.3, 0.0, 83.2, 47.7, 52.3,16.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Plympton - Dennett Elementary,02400010, 0.5, 0.5, 0.0, 1.9, 1.9, 0.0, 95.2, 49.8, 50.2,4.799999999999997,0.0 +5.875288683602772,5,a-cure-i1,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.4, 7.8, 54.7, 20.7, 2.8, 0.2, 13.4, 48.8, 51.2,86.6,31.8 +2.186335403726708,2.19,a-cure-i1,2017-18,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 25.8, 15.0, 7.5, 0.0, 51.7, 50.8, 49.2,48.3,6.6 +11.038759689922475,5,a-cure-i1,2017-18,Quabbin - Hardwick Elementary,07530005, 1.5, 0.0, 0.5, 9.8, 1.0, 0.0, 87.1, 46.4, 53.6,12.900000000000006,8.9 +1,1,a-cure-i1,2017-18,Quabbin - Hubbardston Center,07530010, 0.0, 0.9, 0.9, 3.4, 0.3, 0.0, 94.4, 50.8, 49.2,5.599999999999994,0.0 +19.42857142857142,5,a-cure-i1,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 7.7, 7.7, 0.0, 0.0, 84.6, 76.9, 23.1,15.400000000000006,18.7 +1,1,a-cure-i1,2017-18,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 1.9, 7.4, 1.9, 0.0, 88.9, 40.7, 59.3,11.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Quabbin - Oakham Center,07530025, 0.0, 0.0, 1.6, 3.9, 0.8, 0.0, 93.8, 58.9, 41.1,6.200000000000003,0.0 +11.744680851063823,5,a-cure-i1,2017-18,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.9, 0.6, 4.0, 4.0, 0.0, 90.6, 53.4, 46.6,9.400000000000006,6.9 +1,1,a-cure-i1,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.5, 0.0, 4.8, 2.5, 0.0, 92.2, 50.8, 49.2,7.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Quabbin - Ruggles Lane,07530030, 0.0, 0.9, 0.0, 5.0, 1.7, 0.4, 92.0, 45.9, 54.1,8.0,0.0 +1,1,a-cure-i1,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 1.4, 6.5, 1.6, 0.0, 90.5, 49.3, 50.7,9.5,0.0 +1,1,a-cure-i1,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.4, 0.0, 9.7, 3.0, 0.0, 86.9, 50.8, 49.2,13.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 1.1, 6.7, 2.7, 0.0, 89.4, 49.9, 50.1,10.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.3, 0.3, 4.9, 3.9, 0.0, 90.5, 47.4, 52.6,9.5,0.0 +1,1,a-cure-i1,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 44.6, 7.8, 8.3, 3.6, 0.0, 35.8, 44.6, 55.4,64.2,0.0 +1,1,a-cure-i1,2017-18,Quincy - Atherton Hough,02430040, 0.0, 12.0, 3.6, 6.0, 2.8, 0.0, 75.7, 43.8, 56.2,24.299999999999997,4.4 +2.369426751592357,2.37,a-cure-i1,2017-18,Quincy - Atlantic Middle,02430305, 0.0, 50.7, 4.0, 3.0, 4.6, 0.4, 37.2, 48.9, 51.1,62.8,9.3 +1,1,a-cure-i1,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 44.2, 1.1, 1.4, 2.0, 0.0, 51.3, 50.4, 49.6,48.7,4.1 +1,1,a-cure-i1,2017-18,Quincy - Broad Meadows Middle,02430310, 0.8, 16.5, 7.1, 7.1, 2.9, 0.3, 65.4, 45.8, 54.2,34.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Quincy - Central Middle,02430315, 0.0, 39.7, 2.4, 3.0, 2.7, 0.3, 51.9, 50.0, 50.0,48.1,0.0 +1,1,a-cure-i1,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 28.8, 3.0, 5.2, 5.5, 0.0, 57.6, 51.8, 48.2,42.4,3.8 +1,1,a-cure-i1,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 45.1, 12.2, 8.1, 1.9, 1.8, 30.8, 49.4, 50.6,69.2,0.0 +4.082474226804124,4.08,a-cure-i1,2017-18,Quincy - Francis W Parker,02430075, 0.0, 68.7, 2.9, 4.5, 1.3, 0.3, 22.4, 40.6, 59.4,77.6,19.8 +1,1,a-cure-i1,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 0.4, 33.7, 12.8, 8.9, 5.8, 0.6, 37.9, 47.4, 52.6,62.1,0.0 +1,1,a-cure-i1,2017-18,Quincy - Merrymount,02430060, 0.3, 24.2, 5.8, 4.3, 1.4, 0.9, 63.1, 48.1, 51.9,36.9,4.6 +1,1,a-cure-i1,2017-18,Quincy - Montclair,02430065, 0.0, 61.4, 3.9, 4.4, 2.9, 0.5, 26.9, 51.9, 48.1,73.1,3.2 +2.5224111282843893,2.52,a-cure-i1,2017-18,Quincy - North Quincy High,02430510, 0.4, 57.2, 2.8, 3.3, 1.0, 0.0, 35.3, 48.8, 51.2,64.7,10.2 +1,1,a-cure-i1,2017-18,Quincy - Point Webster Middle,02430325, 0.3, 36.5, 11.8, 9.3, 3.7, 0.3, 38.2, 48.3, 51.7,61.8,3.7 +3.1925754060324825,3.19,a-cure-i1,2017-18,Quincy - Quincy High,02430505, 0.3, 21.9, 10.1, 7.1, 3.2, 0.5, 56.9, 47.4, 52.5,43.1,8.6 +1,1,a-cure-i1,2017-18,Quincy - Reay E Sterling Middle,02430320, 0.3, 26.5, 13.0, 12.4, 4.7, 0.6, 42.5, 45.3, 54.7,57.5,3.8 +1,1,a-cure-i1,2017-18,Quincy - Snug Harbor Community School,02430090, 0.0, 38.1, 10.6, 8.8, 3.9, 0.0, 38.6, 44.0, 56.0,61.4,0.0 +1,1,a-cure-i1,2017-18,Quincy - Squantum,02430095, 0.0, 31.0, 3.5, 5.2, 3.8, 0.0, 56.5, 50.1, 49.9,43.5,2.4 +1,1,a-cure-i1,2017-18,Quincy - Wollaston School,02430110, 0.0, 62.5, 0.9, 1.8, 1.2, 0.3, 33.3, 50.2, 49.8,66.7,1.7 +1,1,a-cure-i1,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 5.6, 0.0, 5.6, 5.6, 0.0, 83.3, 72.2, 27.8,16.700000000000003,0.0 +7.146666666666666,5,a-cure-i1,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.6, 2.2, 7.5, 3.7, 0.0, 85.0, 49.5, 50.5,15.0,6.699999999999999 +1,1,a-cure-i1,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 1.2, 1.2, 18.1, 3.6, 0.0, 75.9, 61.4, 38.6,24.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 0.7, 12.8, 43.3, 15.1, 8.1, 0.0, 20.1, 44.0, 56.0,79.9,0.0 +1,1,a-cure-i1,2017-18,Randolph - J F Kennedy Elementary,02440018, 0.6, 13.1, 52.3, 15.7, 6.2, 0.9, 11.2, 46.7, 53.3,88.8,2.9 +3.9862227324913895,3.99,a-cure-i1,2017-18,Randolph - Margaret L Donovan,02440015, 0.2, 24.2, 45.7, 11.5, 5.4, 0.0, 12.9, 47.7, 52.3,87.1,21.7 +1.5357142857142858,1.54,a-cure-i1,2017-18,Randolph - Martin E Young Elementary,02440040, 0.0, 16.9, 47.1, 20.8, 4.9, 0.0, 10.4, 44.8, 55.2,89.6,8.6 +6.616113744075829,5,a-cure-i1,2017-18,Randolph - Randolph Community Middle,02440410, 0.2, 14.8, 51.3, 12.8, 5.1, 0.2, 15.6, 47.0, 53.0,84.4,34.9 +5.006564551422319,5,a-cure-i1,2017-18,Randolph - Randolph High,02440505, 0.6, 18.8, 54.8, 12.7, 4.1, 0.4, 8.6, 43.5, 56.5,91.4,28.6 +1,1,a-cure-i1,2017-18,Reading - Alice M Barrows,02460002, 0.0, 4.2, 1.6, 1.6, 3.2, 0.0, 89.4, 49.9, 50.1,10.599999999999994,3.0 +1,1,a-cure-i1,2017-18,Reading - Arthur W Coolidge Middle,02460305, 0.0, 4.6, 1.9, 2.5, 2.1, 0.2, 88.7, 46.0, 54.0,11.299999999999997,3.6 +1,1,a-cure-i1,2017-18,Reading - Birch Meadow,02460005, 0.0, 3.8, 1.1, 0.8, 2.7, 0.0, 91.6, 43.8, 56.2,8.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Reading - J Warren Killam,02460017, 0.0, 6.9, 3.3, 1.2, 1.7, 0.0, 86.9, 44.3, 55.7,13.099999999999994,0.0 +4.666666666666668,4.67,a-cure-i1,2017-18,Reading - Joshua Eaton,02460010, 0.3, 6.2, 4.9, 5.2, 5.2, 0.0, 78.4, 49.5, 50.5,21.599999999999994,6.3 +1,1,a-cure-i1,2017-18,Reading - Reading Memorial High,02460505, 0.2, 4.7, 2.6, 1.8, 1.0, 0.0, 89.7, 50.4, 49.6,10.299999999999997,1.5 +1,1,a-cure-i1,2017-18,Reading - RISE PreSchool,02460001, 0.0, 7.4, 2.1, 7.4, 2.1, 0.0, 80.9, 37.2, 62.8,19.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Reading - Walter S Parker Middle,02460310, 0.2, 6.6, 3.0, 2.7, 2.0, 0.0, 85.6, 49.7, 50.3,14.400000000000006,2.8 +1,1,a-cure-i1,2017-18,Reading - Wood End Elementary School,02460020, 0.0, 3.4, 2.4, 2.8, 2.1, 0.0, 89.3, 47.2, 52.8,10.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Revere - A. C. Whelan Elementary School,02480003, 0.1, 5.2, 3.5, 43.6, 1.7, 0.1, 45.8, 46.7, 53.3,54.2,0.0 +1,1,a-cure-i1,2017-18,Revere - Abraham Lincoln,02480025, 0.0, 4.3, 4.0, 48.2, 1.4, 0.0, 42.0, 47.9, 52.1,58.0,0.0 +1,1,a-cure-i1,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 1.9, 3.7, 48.4, 1.3, 0.0, 44.7, 45.2, 54.8,55.3,0.0 +1,1,a-cure-i1,2017-18,Revere - Garfield Elementary School,02480056, 0.0, 6.6, 2.7, 62.9, 1.4, 0.0, 26.3, 49.0, 51.0,73.7,2.6 +1.3153961136023915,1.32,a-cure-i1,2017-18,Revere - Garfield Middle School,02480057, 0.2, 5.9, 2.8, 56.1, 1.9, 0.0, 33.1, 49.1, 50.9,66.9,5.5 +1,1,a-cure-i1,2017-18,Revere - Paul Revere,02480050, 0.0, 5.7, 3.4, 43.2, 4.4, 0.0, 43.2, 50.6, 49.4,56.8,0.0 +2.318840579710145,2.32,a-cure-i1,2017-18,Revere - Revere High,02480505, 0.6, 6.2, 4.0, 56.3, 1.9, 0.0, 31.0, 49.3, 50.7,69.0,10.0 +1,1,a-cure-i1,2017-18,Revere - Rumney Marsh Academy,02480014, 0.7, 4.2, 4.0, 46.4, 2.7, 0.2, 41.9, 46.7, 53.3,58.1,4.3 +1,1,a-cure-i1,2017-18,Revere - Seacoast School,02480520, 0.0, 1.2, 8.5, 58.5, 4.9, 0.0, 26.8, 32.9, 67.1,73.2,1.0 +1,1,a-cure-i1,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.4, 2.7, 4.9, 61.9, 2.9, 0.0, 27.1, 52.9, 47.1,72.9,0.0 +1,1,a-cure-i1,2017-18,Revere - Susan B. Anthony Middle School,02480305, 0.2, 4.7, 3.3, 57.0, 1.4, 0.0, 33.3, 52.6, 47.4,66.7,2.5 +1,1,a-cure-i1,2017-18,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.1, 6.1, 2.8, 0.0, 89.9, 53.1, 46.9,10.099999999999994,0.0 +13.217391304347826,5,a-cure-i1,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.3, 2.6, 1.4, 2.4, 4.8, 0.0, 88.5, 49.8, 50.0,11.5,9.5 +1,1,a-cure-i1,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 2.8, 0.7, 2.4, 4.2, 0.0, 89.6, 58.7, 41.3,10.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 1.6, 1.4, 6.4, 0.0, 90.6, 47.2, 52.8,9.400000000000006,3.2 +1,1,a-cure-i1,2017-18,Rockland - Jefferson Elementary School,02510060, 0.0, 1.6, 4.9, 11.1, 4.6, 0.0, 77.7, 52.1, 47.9,22.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Rockland - John W Rogers Middle,02510305, 0.0, 1.5, 4.8, 13.1, 3.7, 0.0, 76.9, 49.3, 50.7,23.099999999999994,2.0 +1,1,a-cure-i1,2017-18,Rockland - Memorial Park,02510020, 0.0, 0.7, 3.9, 15.2, 2.5, 0.0, 77.7, 51.6, 48.4,22.299999999999997,0.0 +2.9304029304029307,2.93,a-cure-i1,2017-18,Rockland - R Stewart Esten,02510025, 0.0, 1.3, 8.4, 15.4, 2.3, 0.0, 72.7, 44.4, 55.6,27.299999999999997,5.0 +1,1,a-cure-i1,2017-18,Rockland - Rockland Senior High,02510505, 0.0, 0.5, 4.2, 11.6, 3.7, 0.0, 80.0, 49.9, 50.1,20.0,3.8 +1,1,a-cure-i1,2017-18,Rockport - Rockport Elementary,02520005, 0.0, 2.0, 0.0, 0.3, 0.0, 0.0, 97.7, 47.8, 52.2,2.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Rockport - Rockport High,02520510, 0.0, 1.0, 1.0, 1.7, 0.3, 0.0, 95.8, 49.0, 51.0,4.200000000000003,3.9 +1,1,a-cure-i1,2017-18,Rockport - Rockport Middle,02520305, 0.0, 0.9, 0.0, 2.2, 0.0, 0.0, 96.9, 45.8, 54.2,3.0999999999999943,0.0 +17.699115044247794,5,a-cure-i1,2017-18,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 5.6, 5.6, 0.0, 88.7, 52.1, 47.9,11.299999999999997,12.5 +6.924165824064712,5,a-cure-i1,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.2, 0.8, 57.2, 39.5, 0.9, 0.1, 1.1, 49.1, 50.9,98.9,42.800000000000004 +3.5578144853875475,3.56,a-cure-i1,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 4.1, 30.0, 39.4, 5.2, 0.0, 21.3, 49.3, 50.7,78.7,17.5 +1.958429561200924,1.96,a-cure-i1,2017-18,Salem - Bates,02580003, 0.3, 2.0, 7.0, 27.2, 6.7, 0.0, 56.7, 48.5, 51.5,43.3,5.3 +10.864721485411138,5,a-cure-i1,2017-18,Salem - Carlton,02580015, 0.0, 0.4, 3.6, 28.2, 5.6, 0.0, 62.3, 53.2, 46.8,37.7,25.599999999999998 +2.78118609406953,2.78,a-cure-i1,2017-18,Salem - Collins Middle,02580305, 0.0, 3.4, 7.3, 33.8, 4.5, 0.0, 51.1, 46.8, 53.2,48.9,8.5 +2.3823529411764706,2.38,a-cure-i1,2017-18,Salem - Horace Mann Laboratory,02580030, 0.0, 1.5, 6.3, 40.4, 6.3, 0.0, 45.6, 50.0, 50.0,54.4,8.1 +3.616038882138518,3.62,a-cure-i1,2017-18,Salem - Nathaniel Bowditch,02580025, 0.3, 2.4, 6.9, 69.6, 3.2, 0.0, 17.7, 48.4, 51.6,82.3,18.6 +1,1,a-cure-i1,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 6.7, 46.7, 2.2, 0.0, 44.4, 51.1, 46.7,55.6,0.0 +1,1,a-cure-i1,2017-18,Salem - Salem Early Childhood,02580001, 0.0, 3.2, 14.0, 22.6, 7.5, 0.0, 52.7, 43.0, 57.0,47.3,0.0 +1,1,a-cure-i1,2017-18,Salem - Salem High,02580505, 0.0, 2.9, 7.5, 43.9, 4.1, 0.0, 41.5, 47.2, 52.7,58.5,3.7 +1,1,a-cure-i1,2017-18,Salem - Salem Prep High School,02580515, 0.0, 3.8, 3.8, 26.9, 3.8, 0.0, 61.5, 34.6, 65.4,38.5,0.0 +1,1,a-cure-i1,2017-18,Salem - Saltonstall School,02580050, 0.0, 3.0, 5.4, 33.6, 6.2, 0.0, 51.9, 51.3, 48.7,48.1,3.0 +1,1,a-cure-i1,2017-18,Salem - Witchcraft Heights,02580070, 0.0, 5.5, 6.6, 27.1, 4.4, 0.0, 56.6, 45.0, 55.0,43.4,0.8 +5.464098073555166,5,a-cure-i1,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 5.1, 8.6, 40.8, 2.5, 0.0, 42.9, 54.1, 45.9,57.1,19.5 +1,1,a-cure-i1,2017-18,Sandwich - Forestdale School,02610002, 0.3, 2.8, 1.3, 5.9, 1.1, 0.2, 88.4, 50.2, 49.8,11.599999999999994,2.7 +1,1,a-cure-i1,2017-18,Sandwich - Oak Ridge,02610025, 0.4, 1.7, 1.3, 2.3, 1.0, 0.0, 93.3, 50.5, 49.5,6.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Sandwich - Sandwich High,02610505, 0.6, 2.4, 1.0, 1.3, 0.1, 0.1, 94.3, 50.8, 49.2,5.700000000000003,1.9 +1,1,a-cure-i1,2017-18,Sandwich - Sandwich STEM Academy,02610305, 1.3, 2.2, 0.7, 0.4, 0.2, 0.2, 95.0, 48.3, 51.7,5.0,4.0 +1,1,a-cure-i1,2017-18,Saugus - Belmonte Saugus Middle,02620305, 0.5, 3.5, 4.8, 16.6, 1.4, 0.3, 72.9, 48.8, 51.2,27.099999999999994,3.5 +1,1,a-cure-i1,2017-18,Saugus - Douglas Waybright,02620067, 0.4, 6.1, 3.5, 9.1, 3.5, 0.0, 77.5, 47.6, 52.4,22.5,0.0 +1,1,a-cure-i1,2017-18,Saugus - Lynnhurst,02620040, 0.0, 10.0, 2.2, 16.7, 0.7, 0.4, 70.0, 50.4, 49.6,30.0,0.0 +1,1,a-cure-i1,2017-18,Saugus - Oaklandvale,02620050, 1.3, 6.7, 3.8, 18.3, 6.7, 0.0, 63.3, 47.5, 52.5,36.7,0.0 +3.5968992248062017,3.6,a-cure-i1,2017-18,Saugus - Saugus High,02620505, 0.6, 4.9, 4.3, 15.1, 0.9, 0.0, 74.2, 49.7, 50.3,25.799999999999997,5.8 +2.734177215189874,2.73,a-cure-i1,2017-18,Saugus - Veterans Memorial,02620065, 0.6, 3.3, 5.0, 19.4, 3.3, 0.0, 68.4, 48.1, 51.9,31.599999999999994,5.4 +1,1,a-cure-i1,2017-18,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 3.3, 3.3, 0.0, 0.0, 93.3, 50.0, 50.0,6.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Scituate - Cushing Elementary,02640007, 0.3, 1.0, 1.9, 0.3, 1.3, 0.0, 95.2, 44.2, 55.8,4.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Scituate - Gates Middle School,02640305, 0.0, 1.7, 2.8, 1.0, 1.1, 0.0, 93.5, 52.8, 47.2,6.5,2.3 +1,1,a-cure-i1,2017-18,Scituate - Hatherly Elementary,02640010, 0.0, 0.4, 2.6, 3.0, 1.5, 0.0, 92.6, 44.8, 55.2,7.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 2.8, 1.9, 2.2, 0.0, 93.1, 44.7, 55.3,6.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Scituate - Scituate High School,02640505, 0.0, 1.1, 2.7, 0.7, 1.5, 0.0, 94.0, 52.3, 47.7,6.0,3.5 +1,1,a-cure-i1,2017-18,Scituate - Wampatuck Elementary,02640020, 0.0, 1.5, 3.3, 2.0, 2.0, 0.0, 91.3, 48.3, 51.8,8.700000000000003,0.0 +6.500000000000002,5,a-cure-i1,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.2, 3.6, 1.8, 4.4, 2.8, 0.0, 87.2, 49.9, 50.1,12.799999999999997,5.2 +1,1,a-cure-i1,2017-18,Seekonk - George R Martin,02650007, 0.0, 2.3, 2.3, 5.2, 4.6, 0.0, 85.6, 50.1, 49.9,14.400000000000006,4.0 +1,1,a-cure-i1,2017-18,Seekonk - Mildred Aitken School,02650015, 0.0, 3.0, 1.9, 4.2, 2.3, 0.0, 88.6, 47.4, 52.6,11.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Seekonk - Seekonk High,02650505, 0.0, 2.5, 1.3, 3.4, 2.2, 0.0, 90.6, 52.2, 47.6,9.400000000000006,0.0 +2.813376483279396,2.81,a-cure-i1,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 46.5, 43.2, 3.0, 0.0, 7.3, 47.5, 52.5,92.7,16.3 +1,1,a-cure-i1,2017-18,Sharon - Cottage Street,02660005, 0.2, 29.4, 3.1, 3.7, 7.3, 0.2, 56.2, 47.7, 52.3,43.8,0.0 +1,1,a-cure-i1,2017-18,Sharon - East Elementary,02660010, 0.0, 28.9, 5.1, 5.5, 5.5, 0.0, 55.0, 50.1, 49.9,45.0,0.0 +1,1,a-cure-i1,2017-18,Sharon - Heights Elementary,02660015, 0.0, 35.4, 2.9, 4.6, 7.8, 0.0, 49.3, 49.9, 50.1,50.7,3.5 +1,1,a-cure-i1,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, 18.0, 6.0, 10.0, 8.0, 0.0, 58.0, 42.0, 58.0,42.0,0.0 +1,1,a-cure-i1,2017-18,Sharon - Sharon High,02660505, 0.0, 25.1, 7.3, 4.5, 3.0, 0.1, 60.0, 47.5, 52.5,40.0,4.300000000000001 +1,1,a-cure-i1,2017-18,Sharon - Sharon Middle,02660305, 0.2, 28.1, 4.0, 4.7, 4.5, 0.1, 58.4, 49.0, 51.0,41.6,4.6 +1,1,a-cure-i1,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.2, 0.8, 1.4, 4.7, 1.8, 0.0, 91.1, 41.9, 58.1,8.900000000000006,2.3 +1,1,a-cure-i1,2017-18,Sherborn - Pine Hill,02690010, 0.0, 7.6, 2.9, 3.3, 6.2, 0.0, 80.0, 48.0, 52.0,20.0,2.8 +1,1,a-cure-i1,2017-18,Shrewsbury - Beal School,02710005, 1.6, 43.0, 3.9, 7.8, 5.5, 0.0, 38.2, 48.5, 51.5,61.8,0.8 +1,1,a-cure-i1,2017-18,Shrewsbury - Calvin Coolidge,02710015, 0.2, 34.4, 2.4, 14.5, 5.1, 0.0, 43.3, 51.3, 48.7,56.7,4.0 +1,1,a-cure-i1,2017-18,Shrewsbury - Floral Street School,02710020, 0.7, 47.7, 2.4, 6.8, 3.5, 0.0, 38.9, 47.9, 52.1,61.1,3.0 +2.9273182957393487,2.93,a-cure-i1,2017-18,Shrewsbury - Oak Middle School,02710030, 0.2, 25.9, 2.2, 8.6, 3.1, 0.0, 60.1, 50.2, 49.8,39.9,7.300000000000001 +3.1157894736842104,3.12,a-cure-i1,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.9, 40.4, 3.4, 8.1, 4.3, 0.0, 43.0, 49.8, 50.2,57.0,11.1 +1,1,a-cure-i1,2017-18,Shrewsbury - Sherwood Middle School,02710305, 0.1, 29.8, 2.8, 8.8, 3.6, 0.0, 54.9, 47.4, 52.6,45.1,4.6 +2.8523676880222837,2.85,a-cure-i1,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 0.2, 22.8, 2.3, 7.9, 2.7, 0.1, 64.1, 53.4, 46.5,35.900000000000006,6.4 +1,1,a-cure-i1,2017-18,Shrewsbury - Spring Street,02710035, 0.3, 23.7, 1.7, 5.9, 5.9, 0.0, 62.6, 49.2, 50.8,37.4,0.0 +2.9419354838709677,2.94,a-cure-i1,2017-18,Shrewsbury - Walter J Paton,02710025, 0.3, 19.3, 0.3, 7.3, 3.8, 0.0, 69.0, 44.7, 55.3,31.0,5.7 +11.534883720930232,5,a-cure-i1,2017-18,Shutesbury - Shutesbury Elementary,02720005, 0.8, 0.8, 1.6, 7.4, 6.6, 0.0, 82.8, 55.7, 44.3,17.200000000000003,12.4 +1,1,a-cure-i1,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 2.0, 3.9, 23.2, 2.0, 0.0, 68.9, 50.4, 49.6,31.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Silver Lake - Silver Lake Regional High,07600505, 0.0, 1.0, 1.4, 0.9, 0.5, 0.2, 96.0, 48.0, 52.0,4.0,0.0 +1,1,a-cure-i1,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.9, 1.3, 1.3, 0.6, 0.0, 95.9, 46.9, 53.1,4.099999999999994,0.0 +3.5555555555555562,3.56,a-cure-i1,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 1.4, 5.3, 20.9, 3.1, 0.0, 69.4, 46.8, 53.2,30.599999999999994,6.8 +1,1,a-cure-i1,2017-18,Somerset - Chace Street,02730005, 0.0, 0.0, 1.2, 5.0, 3.6, 0.0, 90.2, 45.8, 54.2,9.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Somerset - North Elementary,02730008, 0.0, 1.4, 1.4, 3.3, 1.8, 0.0, 92.0, 49.4, 50.6,8.0,0.0 +1,1,a-cure-i1,2017-18,Somerset - Somerset Middle School,02730305, 0.0, 0.2, 0.8, 4.1, 1.8, 0.0, 93.1, 46.7, 53.3,6.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Somerset - South,02730015, 0.0, 0.4, 1.5, 5.8, 3.6, 0.0, 88.7, 52.9, 47.1,11.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.1, 0.1, 1.3, 3.0, 2.7, 0.0, 92.8, 50.8, 49.2,7.200000000000003,4.7 +2.5454545454545454,2.55,a-cure-i1,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.3, 9.1, 5.8, 38.4, 3.6, 0.0, 42.8, 47.6, 52.4,57.2,9.1 +3.8492753623188407,3.85,a-cure-i1,2017-18,Somerville - Arthur D Healey,02740075, 0.0, 7.3, 14.0, 44.3, 3.3, 0.0, 31.0, 49.4, 50.6,69.0,16.6 +1,1,a-cure-i1,2017-18,Somerville - Benjamin G Brown,02740015, 0.4, 9.5, 1.3, 7.8, 9.1, 0.0, 71.9, 52.8, 47.2,28.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Somerville - Capuano Early Childhood Center,02740005, 0.0, 10.2, 5.1, 42.7, 8.9, 0.0, 33.1, 46.2, 53.8,66.9,4.8 +5.878345498783455,5,a-cure-i1,2017-18,Somerville - E Somerville Community,02740111, 0.0, 3.6, 4.3, 71.8, 2.4, 0.1, 17.8, 49.3, 50.7,82.2,30.2 +1,1,a-cure-i1,2017-18,Somerville - Full Circle High School,02740510, 0.0, 1.9, 21.2, 44.2, 0.0, 0.0, 32.7, 38.5, 61.5,67.3,0.0 +3.9261213720316626,3.93,a-cure-i1,2017-18,Somerville - John F Kennedy,02740083, 0.0, 5.0, 9.6, 16.0, 7.2, 0.0, 62.1, 45.0, 55.0,37.9,9.3 +1,1,a-cure-i1,2017-18,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 40.0, 13.3, 86.7,60.0,0.0 +4.321167883211679,4.32,a-cure-i1,2017-18,Somerville - Somerville High,02740505, 0.0, 8.2, 13.6, 45.2, 1.5, 0.0, 31.5, 45.3, 54.7,68.5,18.5 +2.337078651685393,2.34,a-cure-i1,2017-18,Somerville - West Somerville Neighborhood,02740115, 0.0, 4.6, 14.6, 19.1, 6.2, 0.0, 55.5, 47.4, 52.0,44.5,6.5 +2.9762532981530345,2.98,a-cure-i1,2017-18,Somerville - Winter Hill Community,02740120, 0.0, 8.3, 14.4, 50.3, 2.8, 0.0, 24.2, 42.5, 57.3,75.8,14.100000000000001 +1,1,a-cure-i1,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 2.1, 1.4, 14.3, 2.6, 0.0, 79.5, 52.6, 47.4,20.5,0.0 +1,1,a-cure-i1,2017-18,South Hadley - Mosier,02780020, 0.2, 1.9, 1.2, 15.7, 1.4, 0.0, 79.5, 46.9, 53.1,20.5,0.0 +1,1,a-cure-i1,2017-18,South Hadley - Plains Elementary,02780015, 0.0, 2.9, 1.2, 15.6, 3.2, 0.0, 77.1, 53.5, 46.5,22.900000000000006,0.0 +1,1,a-cure-i1,2017-18,South Hadley - South Hadley High,02780505, 0.0, 2.7, 2.7, 7.6, 0.9, 0.4, 85.8, 50.1, 49.9,14.200000000000003,2.2 +1,1,a-cure-i1,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.1, 0.1, 6.0, 43.4, 3.1, 0.0, 46.2, 40.4, 59.6,53.8,2.8 +2.8304668304668303,2.83,a-cure-i1,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.4, 4.6, 26.4, 2.7, 6.4, 0.1, 59.3, 50.8, 49.2,40.7,7.2 +1,1,a-cure-i1,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 1.1, 1.8, 4.6, 2.8, 0.0, 89.7, 33.5, 66.5,10.299999999999997,1.7 +1,1,a-cure-i1,2017-18,Southampton - William E Norris,02750005, 0.2, 1.0, 0.2, 5.3, 2.3, 0.2, 90.8, 47.9, 52.1,9.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 19.2, 1.5, 5.3, 6.0, 0.4, 67.7, 46.2, 53.8,32.3,0.0 +1,1,a-cure-i1,2017-18,Southborough - Margaret A Neary,02760020, 0.0, 15.5, 1.2, 7.4, 5.4, 0.0, 70.5, 52.7, 47.3,29.5,0.0 +1,1,a-cure-i1,2017-18,Southborough - Mary E Finn School,02760008, 0.6, 19.9, 0.3, 3.6, 6.3, 0.0, 69.3, 49.7, 50.3,30.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Southborough - P Brent Trottier,02760305, 0.0, 17.0, 0.4, 5.4, 3.9, 0.2, 73.0, 49.1, 50.9,27.0,2.9 +1,1,a-cure-i1,2017-18,Southbridge - Charlton Street,02770005, 0.3, 1.6, 4.2, 48.7, 4.2, 0.0, 41.0, 47.4, 52.6,59.0,0.0 +1,1,a-cure-i1,2017-18,Southbridge - Eastford Road,02770010, 0.3, 1.0, 2.5, 56.2, 0.8, 0.0, 39.2, 57.0, 43.0,60.8,4.2 +3.353951890034364,3.35,a-cure-i1,2017-18,Southbridge - Southbridge High School,02770515, 0.4, 1.4, 1.6, 53.6, 1.0, 0.2, 41.8, 47.0, 53.0,58.2,12.2 +1,1,a-cure-i1,2017-18,Southbridge - Southbridge Middle School,02770315, 0.4, 1.4, 1.0, 58.2, 1.4, 0.0, 37.5, 46.2, 53.8,62.5,4.4 +1,1,a-cure-i1,2017-18,Southbridge - West Street,02770020, 0.0, 2.8, 0.3, 54.9, 2.2, 0.0, 39.7, 50.5, 49.5,60.3,0.0 +2.950570342205323,2.95,a-cure-i1,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 1.5, 34.1, 11.8, 5.1, 0.0, 47.4, 48.6, 51.3,52.6,9.7 +8.463768115942031,5,a-cure-i1,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 0.7, 0.0, 2.0, 5.9, 5.3, 0.0, 86.2, 51.3, 48.7,13.799999999999997,7.300000000000001 +48.599999999999994,5,a-cure-i1,2017-18,Southern Berkshire - New Marlborough Central,07650018, 2.3, 0.0, 0.0, 2.3, 3.4, 0.0, 92.0, 47.1, 52.9,8.0,24.299999999999997 +1,1,a-cure-i1,2017-18,Southern Berkshire - Undermountain,07650035, 0.3, 0.0, 0.7, 7.6, 4.5, 0.0, 86.9, 45.5, 54.5,13.099999999999994,0.9 +1,1,a-cure-i1,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.1, 0.6, 0.7, 9.2, 1.2, 0.0, 88.2, 41.1, 58.9,11.799999999999997,0.9 +1,1,a-cure-i1,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.2, 0.5, 1.8, 5.2, 3.4, 0.0, 88.9, 49.8, 50.2,11.099999999999994,0.0 +15.146666666666667,5,a-cure-i1,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 1.0, 1.8, 3.6, 1.1, 0.0, 92.5, 49.9, 50.1,7.5,7.1 +1,1,a-cure-i1,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.3, 0.8, 2.0, 5.9, 2.2, 0.0, 88.8, 44.8, 55.2,11.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 0.7, 1.7, 1.7, 9.2, 4.1, 0.0, 82.6, 49.1, 50.9,17.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.4, 0.0, 2.2, 6.5, 3.5, 0.0, 87.4, 45.0, 55.0,12.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 1.4, 1.2, 10.6, 4.1, 0.0, 82.7, 44.1, 55.9,17.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.7, 1.6, 9.9, 1.9, 0.0, 85.9, 50.1, 49.6,14.099999999999994,0.0 +3.3493064312736447,3.35,a-cure-i1,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 24.9, 50.9, 3.5, 0.0, 20.7, 53.2, 46.8,79.3,16.6 +2.35705368289638,2.36,a-cure-i1,2017-18,Springfield - Alice B Beal Elementary,02810175, 0.0, 8.4, 16.5, 51.7, 3.4, 0.0, 19.9, 52.5, 47.5,80.1,11.8 +1.1294117647058823,1.13,a-cure-i1,2017-18,Springfield - Arthur T Talmadge,02810165, 0.0, 1.6, 26.0, 53.5, 3.9, 0.0, 15.0, 46.5, 53.5,85.0,6.0 +3.1346938775510202,3.13,a-cure-i1,2017-18,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 19.6, 76.5, 2.0, 0.0, 2.0, 39.2, 60.8,98.0,19.2 +2.224948875255624,2.22,a-cure-i1,2017-18,Springfield - Brightwood,02810025, 0.0, 0.0, 16.7, 80.8, 0.3, 0.0, 2.2, 49.2, 50.8,97.8,13.6 +2.928645294725957,2.93,a-cure-i1,2017-18,Springfield - Chestnut Academy,02810365, 0.2, 0.2, 10.7, 84.2, 1.2, 0.0, 3.3, 50.1, 49.9,96.7,17.700000000000003 +6.9074074074074066,5,a-cure-i1,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 2.2, 23.1, 59.2, 1.6, 0.3, 13.6, 53.8, 46.2,86.4,37.3 +5.3090909090909095,5,a-cure-i1,2017-18,Springfield - Conservatory of the Arts,02810475, 0.3, 0.0, 23.4, 63.0, 1.4, 0.0, 12.0, 69.8, 30.2,88.0,29.200000000000003 +1.4988290398126463,1.5,a-cure-i1,2017-18,Springfield - Daniel B Brunton,02810035, 0.0, 0.9, 19.5, 62.4, 2.4, 0.2, 14.6, 51.9, 48.1,85.4,8.0 +1.7543859649122806,1.75,a-cure-i1,2017-18,Springfield - Early Childhood Education Center,02810001, 0.6, 0.0, 20.0, 68.8, 1.8, 0.0, 8.8, 35.3, 64.7,91.2,10.0 +1.170731707317073,1.17,a-cure-i1,2017-18,Springfield - Edward P. Boland School,02810010, 0.1, 1.8, 10.2, 76.3, 1.8, 0.0, 9.8, 43.1, 56.9,90.2,6.6 +5.23010752688172,5,a-cure-i1,2017-18,Springfield - Elias Brookings,02810030, 0.9, 0.3, 23.0, 67.1, 1.7, 0.0, 7.0, 47.8, 52.2,93.0,30.4 +1.9687174139728885,1.97,a-cure-i1,2017-18,Springfield - Forest Park Middle,02810325, 0.1, 9.1, 18.1, 67.6, 0.8, 0.1, 4.1, 49.2, 50.8,95.9,11.8 +6.828603859250852,5,a-cure-i1,2017-18,Springfield - Frank H Freedman,02810075, 0.3, 0.9, 25.0, 58.5, 3.4, 0.0, 11.9, 43.2, 56.8,88.1,37.6 +2.1202453987730063,2.12,a-cure-i1,2017-18,Springfield - Frederick Harris,02810080, 0.2, 4.4, 19.7, 53.0, 4.3, 0.0, 18.5, 49.1, 50.9,81.5,10.8 +20.806241872561767,5,a-cure-i1,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 30.8, 46.2, 0.0, 0.0, 23.1, 61.5, 38.5,76.9,100.0 +17.99775028121485,5,a-cure-i1,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 31.1, 57.8, 0.0, 0.0, 11.1, 71.1, 28.9,88.9,100.0 +2.942528735632184,2.94,a-cure-i1,2017-18,Springfield - German Gerena Community School,02810195, 0.0, 0.7, 14.3, 79.4, 1.3, 0.0, 4.3, 52.1, 47.9,95.7,17.6 +1,1,a-cure-i1,2017-18,Springfield - Glenwood,02810065, 0.0, 2.3, 10.7, 71.1, 2.3, 0.0, 13.4, 46.0, 54.0,86.6,0.0 +4.158083832335329,4.16,a-cure-i1,2017-18,Springfield - Glickman Elementary,02810068, 0.3, 2.7, 21.0, 56.2, 3.3, 0.0, 16.5, 49.2, 50.8,83.5,21.7 +5.744493392070484,5,a-cure-i1,2017-18,Springfield - High School Of Commerce,02810510, 0.0, 1.7, 19.0, 68.8, 1.3, 0.1, 9.2, 47.4, 52.6,90.8,32.599999999999994 +1.0,1.0,a-cure-i1,2017-18,Springfield - Hiram L Dorman,02810050, 0.0, 1.0, 25.7, 61.9, 1.0, 0.0, 10.4, 49.8, 50.2,89.6,5.6 +1,1,a-cure-i1,2017-18,Springfield - Homer Street,02810085, 0.0, 1.4, 26.8, 62.6, 1.6, 0.0, 7.7, 47.1, 52.9,92.3,4.8 +6.598963730569948,5,a-cure-i1,2017-18,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 15.3, 80.8, 0.4, 0.0, 3.5, 52.0, 48.0,96.5,39.8 +1,1,a-cure-i1,2017-18,Springfield - Indian Orchard Elementary,02810100, 0.2, 1.7, 17.4, 64.6, 2.5, 0.0, 13.6, 47.0, 53.0,86.4,0.0 +6.87750556792873,5,a-cure-i1,2017-18,Springfield - John F Kennedy Middle,02810328, 0.2, 1.1, 21.1, 65.6, 1.8, 0.0, 10.2, 43.6, 56.4,89.8,38.599999999999994 +3.7788018433179724,3.78,a-cure-i1,2017-18,Springfield - John J Duggan Middle,02810320, 0.3, 2.0, 28.3, 55.0, 1.3, 0.0, 13.2, 43.7, 56.3,86.8,20.5 +2.228272251308901,2.23,a-cure-i1,2017-18,Springfield - Kensington International School,02810110, 0.0, 3.2, 19.4, 70.6, 2.3, 0.0, 4.5, 51.6, 48.4,95.5,13.3 +1,1,a-cure-i1,2017-18,Springfield - Liberty,02810115, 0.0, 1.1, 9.5, 75.6, 0.7, 0.0, 13.1, 50.2, 49.8,86.9,0.0 +12.086330935251798,5,a-cure-i1,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, 8.3, 8.3, 8.3, 16.7, 0.0, 58.3, 16.7, 83.3,41.7,31.5 +2.644628099173554,2.64,a-cure-i1,2017-18,Springfield - Lincoln,02810120, 0.2, 0.5, 9.4, 85.6, 1.0, 0.0, 3.2, 43.8, 56.2,96.8,16.0 +6.119235095613048,5,a-cure-i1,2017-18,Springfield - M Marcus Kiley Middle,02810330, 0.2, 2.4, 22.2, 63.4, 0.6, 0.2, 11.1, 44.3, 55.7,88.9,34.0 +1.1911111111111112,1.19,a-cure-i1,2017-18,Springfield - Margaret C Ells,02810060, 0.4, 1.7, 23.3, 62.5, 2.1, 0.0, 10.0, 37.9, 62.1,90.0,6.7 +1,1,a-cure-i1,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 7.0, 13.5, 52.8, 3.2, 0.3, 23.2, 50.4, 49.6,76.8,0.0 +2.4062850729517398,2.41,a-cure-i1,2017-18,Springfield - Mary M Lynch,02810140, 0.0, 1.5, 20.3, 65.4, 1.9, 0.0, 10.9, 53.8, 46.2,89.1,13.4 +2.7968217934165724,2.8,a-cure-i1,2017-18,Springfield - Mary M Walsh,02810155, 0.3, 0.3, 15.9, 69.8, 1.7, 0.0, 11.9, 45.8, 54.2,88.1,15.4 +3.0354285714285716,3.04,a-cure-i1,2017-18,Springfield - Mary O Pottenger,02810145, 0.2, 2.4, 12.9, 70.4, 1.6, 0.0, 12.5, 47.5, 52.5,87.5,16.6 +1.8688524590163935,1.87,a-cure-i1,2017-18,Springfield - Milton Bradley School,02810023, 0.0, 0.6, 18.2, 77.8, 1.1, 0.0, 2.4, 49.2, 50.8,97.6,11.4 +6.174553101997898,5,a-cure-i1,2017-18,Springfield - Rebecca M Johnson,02810055, 0.0, 0.3, 26.4, 66.1, 2.3, 0.0, 4.9, 48.5, 51.5,95.1,36.7 +3.6036036036036037,3.6,a-cure-i1,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.9, 16.3, 69.8, 1.9, 0.0, 11.2, 44.7, 55.3,88.8,20.0 +3.751972942502818,3.75,a-cure-i1,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.1, 1.4, 19.7, 66.9, 0.7, 0.0, 11.3, 54.1, 45.9,88.7,20.799999999999997 +3.2218430034129697,3.22,a-cure-i1,2017-18,Springfield - Samuel Bowles,02810020, 0.0, 0.3, 16.3, 69.2, 2.1, 0.0, 12.1, 50.6, 49.4,87.9,17.700000000000003 +3.7752808988764044,3.78,a-cure-i1,2017-18,Springfield - South End Middle School,02810355, 0.0, 0.0, 13.3, 82.5, 2.1, 0.0, 2.1, 48.3, 51.7,97.9,23.1 +3.5995288574793873,3.6,a-cure-i1,2017-18,Springfield - Springfield Central High,02810500, 0.0, 6.2, 23.8, 53.5, 1.2, 0.1, 15.1, 46.7, 53.3,84.9,19.1 +4.50521436848204,4.51,a-cure-i1,2017-18,Springfield - Springfield High School,02810570, 0.0, 0.0, 25.6, 59.2, 1.4, 0.0, 13.7, 44.5, 55.5,86.3,24.3 +5.130726256983241,5,a-cure-i1,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 0.1, 1.8, 17.3, 69.3, 0.9, 0.1, 10.5, 42.3, 57.7,89.5,28.700000000000003 +8.191387559808613,5,a-cure-i1,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 20.5, 63.0, 0.0, 0.0, 16.4, 15.1, 84.9,83.6,42.8 +9.747343565525382,5,a-cure-i1,2017-18,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 22.4, 60.2, 2.0, 0.0, 15.3, 28.6, 71.4,84.7,51.599999999999994 +4.034042553191489,4.03,a-cure-i1,2017-18,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 20.0, 74.0, 0.0, 0.0, 6.0, 12.0, 88.0,94.0,23.7 +1,1,a-cure-i1,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, 2.2, 16.3, 68.5, 0.0, 0.0, 13.0, 39.1, 60.9,87.0,0.0 +6.418390804597701,5,a-cure-i1,2017-18,Springfield - STEM Middle Academy,02810350, 0.0, 3.1, 19.8, 63.5, 0.7, 0.0, 13.0, 38.2, 61.8,87.0,34.9 +2.892857142857143,2.89,a-cure-i1,2017-18,Springfield - Sumner Avenue,02810160, 0.2, 5.9, 19.5, 60.6, 3.4, 0.0, 10.4, 45.2, 54.8,89.6,16.2 +2.5426356589147283,2.54,a-cure-i1,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 1.7, 24.6, 49.3, 1.6, 0.1, 22.6, 47.8, 52.2,77.4,12.299999999999999 +1,1,a-cure-i1,2017-18,Springfield - Thomas M Balliet,02810015, 0.0, 1.3, 24.5, 59.7, 3.1, 0.0, 11.3, 49.4, 50.6,88.7,0.0 +4.486486486486486,4.49,a-cure-i1,2017-18,Springfield - Van Sickle Academy,02810485, 0.0, 1.7, 11.7, 74.2, 1.2, 0.0, 11.2, 44.7, 55.3,88.8,24.9 +1,1,a-cure-i1,2017-18,Springfield - Warner,02810180, 0.3, 2.1, 22.1, 56.6, 3.4, 0.3, 15.2, 48.6, 51.4,84.8,4.9 +2.3502824858757063,2.35,a-cure-i1,2017-18,Springfield - Washington,02810185, 0.0, 7.2, 17.3, 60.4, 3.4, 0.2, 11.5, 44.8, 55.2,88.5,13.0 +1.6750272628135223,1.68,a-cure-i1,2017-18,Springfield - White Street,02810190, 0.0, 3.7, 20.4, 65.4, 2.2, 0.0, 8.3, 50.9, 49.1,91.7,9.6 +4.701902748414376,4.7,a-cure-i1,2017-18,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 20.3, 73.9, 0.4, 0.0, 5.4, 46.4, 53.6,94.6,27.799999999999997 +4.141176470588235,4.14,a-cure-i1,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 2.3, 23.7, 65.6, 1.9, 0.0, 6.5, 50.7, 49.3,93.5,24.2 +1,1,a-cure-i1,2017-18,Stoneham - Colonial Park,02840005, 0.0, 4.0, 3.2, 7.2, 3.6, 0.0, 82.0, 43.2, 56.8,18.0,0.0 +1,1,a-cure-i1,2017-18,Stoneham - Robin Hood,02840025, 0.3, 6.8, 1.6, 8.9, 3.4, 0.0, 79.1, 49.2, 50.8,20.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Stoneham - South,02840030, 0.6, 4.1, 2.8, 8.1, 5.3, 0.0, 79.1, 50.3, 49.7,20.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Stoneham - Stoneham Central Middle School,02840405, 0.1, 4.7, 1.6, 7.9, 3.2, 0.1, 82.4, 51.1, 48.9,17.599999999999994,3.4 +1,1,a-cure-i1,2017-18,Stoneham - Stoneham High,02840505, 0.1, 4.4, 2.5, 6.5, 3.0, 0.0, 83.4, 53.7, 46.3,16.599999999999994,2.0 +1,1,a-cure-i1,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 3.9, 17.5, 10.7, 8.7, 0.0, 59.2, 45.6, 54.4,40.8,0.0 +1,1,a-cure-i1,2017-18,Stoughton - Helen Hansen Elementary,02850010, 0.0, 3.5, 17.3, 12.6, 7.8, 0.9, 58.0, 51.9, 48.1,42.0,0.0 +1,1,a-cure-i1,2017-18,Stoughton - Joseph H Gibbons,02850025, 0.0, 3.6, 12.6, 9.5, 7.3, 0.0, 66.9, 51.3, 48.7,33.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 8.1, 26.3, 12.9, 5.0, 0.3, 47.3, 47.3, 52.7,52.7,0.0 +1,1,a-cure-i1,2017-18,Stoughton - O'Donnell Middle School,02850405, 0.2, 7.5, 21.8, 10.1, 5.2, 0.4, 54.8, 45.2, 54.8,45.2,3.2 +1,1,a-cure-i1,2017-18,Stoughton - South Elementary,02850015, 0.4, 9.7, 19.8, 9.3, 4.8, 2.0, 54.0, 50.0, 50.0,46.0,0.0 +1,1,a-cure-i1,2017-18,Stoughton - Stoughton High,02850505, 0.1, 6.4, 24.0, 7.0, 1.9, 0.1, 60.5, 48.4, 51.6,39.5,4.4 +1,1,a-cure-i1,2017-18,Stoughton - West Elementary,02850020, 0.5, 4.3, 22.5, 23.1, 5.9, 0.0, 43.7, 51.2, 48.8,56.3,4.3 +1,1,a-cure-i1,2017-18,Sturbridge - Burgess Elementary,02870005, 0.4, 1.3, 0.9, 4.8, 3.4, 0.1, 89.0, 44.4, 55.6,11.0,0.0 +6.145695364238413,5,a-cure-i1,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.5, 3.6, 2.3, 4.7, 4.0, 0.0, 84.9, 57.6, 42.4,15.099999999999994,5.8 +1,1,a-cure-i1,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 7.4, 2.7, 3.2, 6.1, 0.0, 80.7, 49.0, 51.0,19.299999999999997,3.4 +1,1,a-cure-i1,2017-18,Sudbury - General John Nixon Elementary,02880025, 0.0, 9.7, 5.3, 2.6, 6.5, 0.3, 75.6, 48.2, 51.8,24.400000000000006,4.6 +3.7410071942446046,3.74,a-cure-i1,2017-18,Sudbury - Israel Loring School,02880015, 0.2, 10.9, 4.1, 6.0, 5.8, 0.9, 72.2, 46.4, 53.6,27.799999999999997,6.5 +1,1,a-cure-i1,2017-18,Sudbury - Josiah Haynes,02880010, 0.0, 8.4, 2.4, 1.3, 6.3, 0.0, 81.6, 46.1, 53.9,18.400000000000006,1.3 +1,1,a-cure-i1,2017-18,Sudbury - Peter Noyes,02880030, 0.0, 10.8, 2.5, 3.9, 8.8, 0.0, 74.1, 48.1, 51.9,25.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Sunderland - Sunderland Elementary,02890005, 0.0, 9.2, 5.0, 9.2, 10.1, 0.0, 66.4, 42.4, 57.6,33.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Sutton - Sutton Early Learning,02900003, 0.3, 0.6, 0.6, 2.4, 2.4, 0.0, 93.6, 50.6, 49.4,6.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Sutton - Sutton Elementary,02900005, 0.0, 1.8, 0.6, 1.8, 6.4, 0.0, 89.4, 49.8, 50.2,10.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Sutton - Sutton High School,02900510, 0.3, 0.8, 0.8, 2.3, 4.5, 0.0, 91.5, 51.6, 48.4,8.5,0.0 +1,1,a-cure-i1,2017-18,Sutton - Sutton Middle School,02900305, 0.0, 1.9, 0.8, 1.6, 3.0, 0.0, 92.6, 49.0, 51.0,7.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Swampscott - Clarke,02910005, 0.5, 4.6, 1.0, 10.7, 0.5, 0.0, 82.7, 47.2, 52.8,17.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Swampscott - Hadley,02910010, 0.0, 4.2, 3.5, 10.8, 4.5, 0.0, 76.9, 48.6, 51.4,23.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Swampscott - Stanley,02910020, 0.0, 2.0, 0.7, 6.4, 2.4, 0.0, 88.5, 47.3, 52.7,11.5,0.0 +6.0,5,a-cure-i1,2017-18,Swampscott - Swampscott High,02910505, 0.0, 2.2, 4.9, 10.8, 1.8, 0.3, 80.0, 51.1, 48.9,20.0,7.5 +1,1,a-cure-i1,2017-18,Swampscott - Swampscott Middle,02910305, 0.5, 3.2, 3.5, 10.5, 2.3, 0.0, 80.1, 48.6, 51.4,19.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Swansea - Elizabeth S Brown,02920006, 0.4, 1.1, 0.4, 0.0, 0.4, 0.0, 97.8, 51.1, 48.9,2.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Swansea - Gardner,02920015, 0.0, 0.4, 0.4, 1.1, 1.1, 0.0, 96.9, 47.5, 52.5,3.0999999999999943,0.0 +1,1,a-cure-i1,2017-18,Swansea - Joseph Case High,02920505, 0.2, 1.7, 1.5, 1.9, 1.5, 0.0, 93.3, 47.5, 52.5,6.700000000000003,2.1 +1,1,a-cure-i1,2017-18,Swansea - Joseph Case Jr High,02920305, 0.0, 0.4, 0.6, 2.3, 0.6, 0.0, 96.2, 46.3, 53.7,3.799999999999997,2.8 +1,1,a-cure-i1,2017-18,Swansea - Joseph G Luther,02920020, 0.9, 0.9, 0.9, 3.5, 3.9, 0.0, 89.9, 51.3, 48.7,10.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 1.6, 1.2, 2.0, 2.7, 0.0, 92.5, 48.2, 51.8,7.5,0.0 +1,1,a-cure-i1,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 0.2, 1.4, 0.8, 4.6, 4.1, 0.0, 89.0, 50.3, 49.7,11.0,0.0 +1,1,a-cure-i1,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 0.3, 1.0, 1.0, 4.9, 1.6, 0.0, 91.2, 54.0, 46.0,8.799999999999997,2.0999999999999996 +1,1,a-cure-i1,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.2, 0.2, 0.2, 6.0, 1.9, 0.0, 91.5, 41.5, 58.5,8.5,0.0 +1,1,a-cure-i1,2017-18,Taunton - Benjamin Friedman Middle,02930315, 0.3, 0.8, 9.7, 10.0, 5.0, 0.3, 74.0, 48.6, 51.4,26.0,0.0 +1,1,a-cure-i1,2017-18,Taunton - East Taunton Elementary,02930010, 0.3, 0.3, 12.0, 8.4, 5.2, 0.0, 73.8, 50.2, 49.8,26.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Taunton - Edmund Hatch Bennett,02930007, 0.3, 0.9, 7.8, 8.4, 2.7, 0.0, 79.8, 47.9, 52.1,20.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 3.0, 11.8, 13.6, 5.0, 0.0, 66.6, 42.9, 57.1,33.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Taunton - Elizabeth Pole,02930027, 0.0, 1.6, 20.3, 15.0, 8.8, 0.0, 54.3, 47.3, 52.7,45.7,0.0 +3.8081180811808117,3.81,a-cure-i1,2017-18,Taunton - H H Galligan,02930057, 0.4, 0.4, 24.6, 20.4, 7.1, 1.3, 45.8, 49.6, 50.4,54.2,12.9 +4.50761421319797,4.51,a-cure-i1,2017-18,Taunton - Hopewell,02930035, 0.0, 0.7, 18.2, 11.3, 9.1, 0.0, 60.6, 53.3, 46.7,39.4,11.1 +1,1,a-cure-i1,2017-18,Taunton - John F Parker Middle,02930305, 0.4, 1.0, 24.7, 15.1, 6.6, 0.0, 52.1, 50.3, 49.7,47.9,2.8 +7.30964467005076,5,a-cure-i1,2017-18,Taunton - Joseph C Chamberlain,02930008, 0.2, 1.5, 9.1, 4.8, 3.9, 0.2, 80.3, 49.5, 50.5,19.700000000000003,9.0 +1,1,a-cure-i1,2017-18,Taunton - Joseph H Martin,02930042, 0.4, 1.3, 14.6, 10.9, 3.8, 0.1, 68.6, 46.6, 53.4,31.400000000000006,3.5 +2.773869346733669,2.77,a-cure-i1,2017-18,Taunton - Mulcahey Elementary School,02930015, 0.2, 0.6, 18.7, 14.2, 6.2, 0.0, 60.2, 50.1, 49.9,39.8,6.9 +1,1,a-cure-i1,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 10.5, 9.5, 9.5, 0.0, 70.5, 38.9, 61.1,29.5,0.0 +1,1,a-cure-i1,2017-18,Taunton - Taunton High,02930505, 0.0, 2.0, 15.7, 12.6, 3.9, 0.2, 65.5, 50.3, 49.7,34.5,4.8999999999999995 +1,1,a-cure-i1,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.5, 2.9, 5.6, 13.9, 6.8, 0.3, 70.0, 58.4, 41.5,30.0,0.0 +1,1,a-cure-i1,2017-18,Tewksbury - Heath-Brook,02950010, 0.0, 2.6, 0.9, 2.3, 1.7, 0.0, 92.6, 50.4, 49.6,7.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Tewksbury - John F. Ryan,02950023, 0.0, 4.5, 3.5, 2.9, 1.0, 0.2, 87.9, 47.7, 52.3,12.099999999999994,2.7 +1,1,a-cure-i1,2017-18,Tewksbury - John W. Wynn Middle,02950305, 0.2, 2.9, 2.2, 2.4, 0.7, 0.0, 91.6, 52.8, 47.2,8.400000000000006,2.3 +6.965986394557822,5,a-cure-i1,2017-18,Tewksbury - L F Dewing,02950001, 0.0, 4.1, 4.0, 5.8, 0.7, 0.2, 85.3, 48.2, 51.8,14.700000000000003,6.4 +1,1,a-cure-i1,2017-18,Tewksbury - Louise Davy Trahan,02950025, 0.0, 1.3, 0.9, 2.6, 1.7, 0.0, 93.6, 54.7, 45.3,6.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Tewksbury - North Street,02950020, 0.0, 3.2, 5.4, 5.8, 0.7, 0.0, 84.8, 45.8, 54.2,15.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 3.3, 2.5, 3.6, 1.0, 0.2, 89.4, 48.1, 51.9,10.599999999999994,1.3 +4.338308457711443,4.34,a-cure-i1,2017-18,Tisbury - Tisbury Elementary,02960005, 2.3, 0.7, 3.3, 25.5, 8.5, 0.0, 59.8, 47.1, 52.9,40.2,10.9 +1,1,a-cure-i1,2017-18,Topsfield - Proctor Elementary,02980005, 0.0, 2.0, 1.2, 1.6, 3.1, 0.0, 92.1, 52.8, 47.2,7.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Topsfield - Steward Elementary,02980010, 1.0, 1.3, 0.3, 1.6, 1.8, 0.0, 94.0, 49.3, 50.7,6.0,3.0 +1,1,a-cure-i1,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.2, 0.7, 0.5, 5.3, 4.3, 0.1, 88.9, 42.9, 56.9,11.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Triton - Newbury Elementary,07730020, 0.0, 1.3, 0.9, 2.0, 0.9, 0.7, 94.2, 46.3, 53.7,5.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Triton - Pine Grove,07730025, 0.0, 0.9, 0.0, 1.3, 2.9, 0.0, 94.9, 48.1, 51.9,5.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Triton - Salisbury Elementary,07730015, 0.2, 3.2, 2.3, 4.5, 2.7, 0.4, 86.7, 48.5, 51.5,13.299999999999997,0.0 +14.117647058823536,5,a-cure-i1,2017-18,Triton - Triton Regional High School,07730505, 0.3, 1.7, 1.0, 3.1, 0.8, 0.0, 93.2, 50.2, 49.8,6.799999999999997,6.0 +1,1,a-cure-i1,2017-18,Triton - Triton Regional Middle School,07730405, 0.2, 1.2, 1.4, 3.1, 1.7, 0.2, 92.1, 49.5, 50.5,7.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Truro - Truro Central,03000005, 0.0, 0.0, 3.9, 12.6, 14.6, 0.0, 68.9, 56.3, 43.7,31.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 6.4, 4.5, 5.1, 3.3, 0.0, 80.7, 45.1, 54.9,19.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Tyngsborough - Tyngsborough High School,03010505, 0.4, 5.3, 1.5, 3.4, 3.2, 0.0, 86.3, 50.6, 49.4,13.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 0.2, 6.6, 2.9, 4.4, 2.7, 0.0, 83.1, 49.6, 50.4,16.900000000000006,2.0 +3.559251559251559,3.56,a-cure-i1,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.2, 6.6, 45.4, 41.2, 2.2, 0.6, 3.8, 48.0, 52.0,96.2,21.4 +3.174089068825911,3.17,a-cure-i1,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.4, 2.0, 54.0, 40.3, 2.0, 0.0, 1.2, 48.4, 51.6,98.8,19.6 +1,1,a-cure-i1,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 3.8, 0.0, 0.0, 3.8, 11.5, 0.0, 80.8, 46.2, 53.8,19.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 3.4, 0.9, 1.1, 7.1, 6.5, 0.0, 81.0, 45.5, 54.5,19.0,3.1 +1,1,a-cure-i1,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.6, 2.1, 4.5, 2.1, 5.2, 0.0, 85.6, 37.9, 62.1,14.400000000000006,1.9 +1,1,a-cure-i1,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 26.1, 4.3, 2.2, 67.4, 67.4, 32.6,32.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.2, 2.5, 1.0, 4.7, 2.5, 0.0, 89.1, 45.2, 54.8,10.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.9, 1.8, 4.4, 2.2, 0.0, 90.7, 47.5, 52.5,9.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Uxbridge - Uxbridge High,03040505, 0.4, 1.2, 2.1, 2.7, 1.9, 0.2, 91.5, 45.9, 54.1,8.5,0.0 +1,1,a-cure-i1,2017-18,Uxbridge - Whitin Elementary School,03040020, 0.8, 0.8, 0.8, 3.1, 1.6, 0.0, 93.0, 47.0, 52.7,7.0,0.0 +3.8453500522466038,3.85,a-cure-i1,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.6, 16.8, 76.7, 1.6, 0.0, 4.3, 53.4, 46.6,95.7,23.0 +1,1,a-cure-i1,2017-18,Wachusett - Central Tree Middle,07750310, 0.0, 2.2, 1.1, 3.2, 4.6, 0.8, 88.2, 49.2, 50.8,11.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Chocksett Middle School,07750315, 0.0, 2.5, 1.4, 6.0, 1.9, 0.0, 88.2, 50.0, 50.0,11.799999999999997,1.0 +1,1,a-cure-i1,2017-18,Wachusett - Davis Hill Elementary,07750018, 0.4, 1.1, 2.9, 7.1, 4.0, 0.0, 84.5, 47.5, 52.5,15.5,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Dawson,07750020, 0.0, 3.9, 2.4, 5.0, 3.0, 0.0, 85.7, 49.3, 50.7,14.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Early Childhood Center,07750001, 0.0, 4.9, 1.9, 7.4, 2.5, 0.6, 82.7, 42.0, 58.0,17.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Glenwood Elementary School,07750060, 0.6, 2.9, 2.0, 5.0, 3.5, 0.0, 86.0, 50.4, 49.6,14.0,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Houghton Elementary,07750027, 0.0, 1.9, 1.9, 5.9, 2.7, 0.0, 87.7, 46.4, 53.6,12.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Leroy E.Mayo,07750032, 0.0, 4.8, 2.7, 5.2, 1.7, 0.0, 85.5, 47.4, 52.6,14.5,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Mountview Middle,07750305, 0.2, 3.7, 2.0, 5.1, 2.1, 0.0, 86.8, 49.1, 50.9,13.200000000000003,2.3 +1,1,a-cure-i1,2017-18,Wachusett - Naquag Elementary School,07750005, 0.3, 1.2, 1.2, 6.4, 1.8, 0.0, 89.2, 53.2, 46.8,10.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Paxton Center,07750040, 0.0, 2.6, 2.1, 7.3, 1.5, 0.0, 86.5, 46.8, 53.2,13.5,0.0 +1,1,a-cure-i1,2017-18,Wachusett - Thomas Prince,07750045, 0.0, 1.2, 0.7, 4.0, 2.0, 0.0, 92.0, 51.6, 48.4,8.0,3.3 +1,1,a-cure-i1,2017-18,Wachusett - Wachusett Regional High,07750505, 0.0, 3.6, 2.2, 4.2, 1.7, 0.1, 88.2, 53.1, 46.9,11.799999999999997,0.7 +1,1,a-cure-i1,2017-18,Wakefield - Dolbeare,03050005, 0.2, 2.2, 0.9, 5.6, 2.0, 0.0, 89.1, 48.4, 51.6,10.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 6.3, 0.0, 9.5, 4.0, 0.8, 79.4, 46.8, 53.2,20.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Wakefield - Galvin Middle School,03050310, 0.1, 3.1, 2.8, 6.9, 2.7, 0.1, 84.4, 48.7, 51.3,15.599999999999994,1.1 +1,1,a-cure-i1,2017-18,Wakefield - Greenwood,03050020, 0.0, 5.0, 1.4, 5.4, 6.8, 0.0, 81.4, 48.9, 51.1,18.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Wakefield - Wakefield Memorial High,03050505, 0.2, 3.2, 3.3, 3.5, 1.8, 0.2, 87.7, 52.2, 47.8,12.299999999999997,4.2 +1,1,a-cure-i1,2017-18,Wakefield - Walton,03050040, 0.0, 2.4, 2.0, 4.4, 2.0, 0.5, 88.8, 45.9, 54.1,11.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Wakefield - Woodville School,03050015, 0.5, 4.8, 3.5, 8.8, 5.5, 0.5, 76.4, 47.8, 52.0,23.599999999999994,4.1 +1,1,a-cure-i1,2017-18,Wales - Wales Elementary,03060005, 0.6, 0.6, 1.2, 3.1, 3.1, 0.0, 91.3, 42.9, 57.1,8.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Walpole - Bird Middle,03070305, 1.0, 3.5, 2.9, 6.7, 1.8, 0.0, 84.1, 50.1, 49.9,15.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Walpole - Boyden,03070010, 0.6, 5.1, 6.5, 5.9, 2.0, 0.0, 80.1, 53.9, 46.1,19.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 13.7, 2.7, 5.5, 6.8, 0.0, 71.2, 42.5, 57.5,28.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 9.6, 1.8, 3.1, 3.6, 0.0, 81.9, 49.1, 50.9,18.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Walpole - Elm Street School,03070005, 0.0, 7.7, 2.8, 4.9, 3.2, 0.0, 81.4, 48.7, 51.3,18.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Walpole - Fisher,03070015, 0.0, 13.0, 2.4, 4.8, 3.7, 0.0, 76.0, 46.3, 53.7,24.0,0.0 +1,1,a-cure-i1,2017-18,Walpole - Old Post Road,03070018, 0.5, 2.1, 2.6, 6.0, 2.9, 0.0, 85.9, 50.6, 49.4,14.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Walpole - Walpole High,03070505, 0.1, 4.1, 4.3, 5.1, 1.1, 0.0, 85.2, 51.1, 48.9,14.799999999999997,2.2 +1,1,a-cure-i1,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 0.2, 6.4, 9.5, 15.0, 4.5, 0.0, 64.3, 44.3, 55.7,35.7,0.0 +1,1,a-cure-i1,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.5, 4.2, 75.5, 1.6, 0.0, 15.2, 46.9, 53.1,84.8,3.3 +1,1,a-cure-i1,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 5.0, 6.6, 30.1, 3.9, 0.0, 54.3, 49.8, 50.2,45.7,3.1 +3.8177874186550973,3.82,a-cure-i1,2017-18,Waltham - John F Kennedy Middle,03080404, 0.0, 5.3, 10.7, 28.7, 1.4, 0.0, 53.9, 48.6, 51.4,46.1,11.0 +1,1,a-cure-i1,2017-18,Waltham - John W. McDevitt Middle School,03080415, 0.0, 3.6, 8.9, 45.6, 2.1, 0.2, 39.6, 50.6, 49.4,60.4,3.4 +1.9439252336448598,1.94,a-cure-i1,2017-18,Waltham - Northeast Elementary School,03080040, 0.3, 11.1, 12.0, 27.8, 2.2, 0.0, 46.5, 47.2, 52.8,53.5,6.5 +1,1,a-cure-i1,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 4.5, 11.6, 42.2, 2.4, 0.0, 39.3, 47.9, 52.1,60.7,0.5 +13.386880856760374,5,a-cure-i1,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 2.5, 2.5, 68.4, 1.3, 0.0, 25.3, 39.2, 60.8,74.7,62.5 +1.9028475711892798,1.9,a-cure-i1,2017-18,Waltham - Waltham Sr High,03080505, 0.2, 4.7, 11.3, 41.0, 2.3, 0.2, 40.3, 45.8, 54.2,59.7,7.1000000000000005 +1.3980582524271845,1.4,a-cure-i1,2017-18,Waltham - William F. Stanley Elementary School,03080005, 0.0, 8.1, 6.9, 45.4, 1.4, 0.0, 38.2, 45.6, 54.4,61.8,5.4 +1,1,a-cure-i1,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.5, 0.7, 5.8, 4.4, 0.0, 88.6, 49.8, 50.2,11.400000000000006,0.0 +6.4,5,a-cure-i1,2017-18,Ware - Ware Junior/Senior High School,03090505, 0.2, 0.9, 2.6, 7.7, 3.4, 0.6, 84.5, 49.8, 50.2,15.5,6.2 +1,1,a-cure-i1,2017-18,Ware - Ware Middle School,03090305, 0.0, 0.0, 2.4, 6.3, 4.5, 0.3, 86.6, 50.7, 49.3,13.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Wareham - John William Decas,03100003, 1.6, 0.7, 6.2, 7.8, 11.8, 0.0, 71.9, 49.2, 50.8,28.099999999999994,1.4 +1,1,a-cure-i1,2017-18,Wareham - Minot Forest,03100017, 0.6, 1.4, 8.8, 6.5, 11.0, 0.0, 71.6, 49.6, 50.4,28.400000000000006,3.2 +1,1,a-cure-i1,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 7.9, 9.5, 4.8, 0.0, 77.8, 39.7, 60.3,22.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Wareham - Wareham Middle,03100305, 1.0, 0.6, 7.6, 6.2, 8.4, 0.1, 76.2, 47.8, 52.2,23.799999999999997,4.6 +3.607843137254903,3.61,a-cure-i1,2017-18,Wareham - Wareham Senior High,03100505, 1.5, 2.2, 8.7, 7.6, 10.3, 0.2, 69.4, 47.2, 52.8,30.599999999999994,6.9 +1,1,a-cure-i1,2017-18,Watertown - Cunniff,03140015, 0.3, 8.8, 3.6, 16.9, 2.9, 0.0, 67.4, 46.6, 53.4,32.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Watertown - Hosmer,03140020, 0.4, 9.2, 3.4, 14.6, 8.1, 0.1, 64.1, 48.6, 51.4,35.900000000000006,2.1 +1,1,a-cure-i1,2017-18,Watertown - James Russell Lowell,03140025, 0.2, 8.9, 2.4, 13.9, 7.4, 0.0, 67.1, 49.6, 50.4,32.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Watertown - Watertown High,03140505, 1.0, 6.7, 3.9, 15.4, 2.7, 0.0, 70.3, 50.7, 49.3,29.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Watertown - Watertown Middle,03140305, 0.4, 8.7, 4.9, 14.4, 4.9, 0.2, 66.4, 49.3, 50.7,33.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Wayland - Claypit Hill School,03150005, 0.0, 10.9, 5.4, 4.4, 5.4, 0.6, 73.4, 50.7, 49.3,26.599999999999994,3.1 +4.630225080385853,4.63,a-cure-i1,2017-18,Wayland - Happy Hollow School,03150015, 0.0, 14.5, 5.7, 4.7, 6.0, 0.3, 68.9, 46.1, 53.9,31.099999999999994,9.0 +2.6035502958579886,2.6,a-cure-i1,2017-18,Wayland - Loker School,03150020, 0.0, 20.3, 4.3, 4.6, 4.3, 0.4, 66.2, 45.2, 54.8,33.8,5.5 +2.814332247557003,2.81,a-cure-i1,2017-18,Wayland - Wayland High School,03150505, 0.0, 16.0, 4.7, 4.4, 5.5, 0.1, 69.3, 48.0, 52.0,30.700000000000003,5.4 +5.775147928994083,5,a-cure-i1,2017-18,Wayland - Wayland Middle School,03150305, 0.0, 17.7, 6.1, 3.8, 6.0, 0.2, 66.2, 50.1, 49.9,33.8,12.2 +1,1,a-cure-i1,2017-18,Webster - Bartlett High School,03160505, 0.0, 2.7, 3.9, 21.2, 7.5, 0.0, 64.7, 45.3, 54.7,35.3,2.8 +1,1,a-cure-i1,2017-18,Webster - Park Avenue Elementary,03160015, 0.4, 1.3, 4.2, 27.1, 5.7, 0.1, 61.2, 46.2, 53.8,38.8,0.0 +1,1,a-cure-i1,2017-18,Webster - Webster Middle School,03160315, 0.0, 2.5, 6.1, 26.3, 7.0, 0.5, 57.6, 54.7, 45.3,42.4,0.0 +10.42051282051282,5,a-cure-i1,2017-18,Wellesley - Ernest F Upham,03170050, 0.0, 10.2, 3.4, 1.7, 4.2, 0.0, 80.5, 47.0, 53.0,19.5,12.7 +13.109243697478993,5,a-cure-i1,2017-18,Wellesley - Hunnewell,03170025, 0.0, 5.2, 3.6, 4.8, 10.1, 0.0, 76.2, 51.2, 48.8,23.799999999999997,19.5 +2.473067915690866,2.47,a-cure-i1,2017-18,Wellesley - John D Hardy,03170020, 0.0, 24.4, 2.4, 6.1, 9.8, 0.0, 57.3, 49.5, 50.2,42.7,6.6 +1,1,a-cure-i1,2017-18,Wellesley - Joseph E Fiske,03170015, 0.3, 21.6, 3.0, 7.8, 6.5, 0.0, 60.8, 51.8, 48.2,39.2,0.0 +1,1,a-cure-i1,2017-18,Wellesley - Katharine Lee Bates,03170005, 0.0, 8.1, 4.0, 2.7, 6.7, 0.0, 78.5, 55.1, 44.9,21.5,4.8 +1,1,a-cure-i1,2017-18,Wellesley - Schofield,03170045, 0.3, 16.2, 5.6, 4.5, 8.0, 0.0, 65.5, 53.8, 46.2,34.5,0.0 +1,1,a-cure-i1,2017-18,Wellesley - Sprague Elementary School,03170048, 0.0, 17.0, 3.9, 5.5, 11.2, 0.0, 62.4, 48.0, 52.0,37.6,4.7 +3.9277978339350175,3.93,a-cure-i1,2017-18,Wellesley - Wellesley Middle,03170305, 0.0, 12.1, 3.5, 6.0, 6.1, 0.0, 72.3, 49.1, 50.9,27.700000000000003,6.8 +5.033707865168539,5,a-cure-i1,2017-18,Wellesley - Wellesley Sr High,03170505, 0.0, 12.2, 5.1, 4.5, 4.8, 0.1, 73.3, 51.0, 49.0,26.700000000000003,8.4 +1,1,a-cure-i1,2017-18,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.8, 0.9, 5.4, 8.0, 0.0, 83.9, 50.0, 50.0,16.099999999999994,0.0 +1,1,a-cure-i1,2017-18,West Boylston - Major Edwards Elementary,03220005, 0.0, 2.6, 2.4, 12.1, 5.9, 0.0, 77.0, 50.1, 49.9,23.0,0.0 +14.027397260273979,5,a-cure-i1,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 0.2, 1.0, 2.1, 8.4, 2.9, 0.0, 85.4, 52.5, 47.5,14.599999999999994,12.8 +1,1,a-cure-i1,2017-18,West Bridgewater - Howard School,03230305, 0.7, 0.7, 5.9, 2.4, 6.9, 0.3, 83.0, 53.5, 46.5,17.0,0.0 +1,1,a-cure-i1,2017-18,West Bridgewater - Rose L Macdonald,03230003, 0.0, 1.2, 4.9, 2.4, 3.6, 0.0, 87.9, 49.4, 50.6,12.099999999999994,0.0 +1,1,a-cure-i1,2017-18,West Bridgewater - Spring Street School,03230005, 0.0, 1.4, 1.4, 5.7, 7.1, 0.0, 84.4, 45.4, 54.6,15.599999999999994,0.0 +1,1,a-cure-i1,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.2, 1.1, 4.2, 2.9, 2.1, 0.2, 89.5, 52.6, 47.4,10.5,0.0 +1,1,a-cure-i1,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 75.0, 50.0, 50.0,25.0,0.0 +1,1,a-cure-i1,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, 10.7, 7.4, 19.7, 4.1, 0.0, 58.2, 39.3, 60.7,41.8,0.0 +1,1,a-cure-i1,2017-18,West Springfield - John Ashley,03320005, 0.0, 6.4, 1.7, 17.9, 3.0, 0.0, 70.9, 53.8, 46.2,29.099999999999994,0.0 +1,1,a-cure-i1,2017-18,West Springfield - John R Fausey,03320010, 0.2, 5.0, 3.5, 16.3, 3.9, 0.2, 70.9, 47.8, 52.2,29.099999999999994,0.0 +1,1,a-cure-i1,2017-18,West Springfield - Memorial,03320025, 0.0, 9.6, 4.6, 27.6, 4.2, 0.0, 54.0, 44.4, 55.6,46.0,0.0 +1,1,a-cure-i1,2017-18,West Springfield - Mittineague,03320030, 0.0, 1.2, 4.3, 18.6, 4.3, 0.0, 71.4, 55.3, 44.7,28.599999999999994,0.0 +1,1,a-cure-i1,2017-18,West Springfield - Philip G Coburn,03320007, 0.0, 15.8, 5.4, 16.0, 2.7, 0.0, 60.0, 51.7, 48.3,40.0,0.0 +1,1,a-cure-i1,2017-18,West Springfield - Tatham,03320040, 0.0, 2.9, 0.8, 8.4, 4.6, 0.0, 83.3, 51.5, 48.5,16.700000000000003,0.0 +1,1,a-cure-i1,2017-18,West Springfield - West Springfield High,03320505, 0.0, 7.3, 3.7, 16.5, 1.8, 0.0, 70.7, 48.5, 51.5,29.299999999999997,4.6 +1,1,a-cure-i1,2017-18,West Springfield - West Springfield Middle,03320305, 0.2, 7.2, 3.3, 18.7, 2.1, 0.0, 68.4, 45.7, 54.3,31.599999999999994,1.4 +1,1,a-cure-i1,2017-18,Westborough - Annie E Fales,03210010, 0.6, 38.5, 0.6, 3.0, 3.6, 0.0, 53.8, 51.5, 48.5,46.2,0.0 +1,1,a-cure-i1,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 0.2, 45.6, 1.6, 10.2, 2.2, 0.0, 40.2, 49.4, 50.6,59.8,0.0 +1,1,a-cure-i1,2017-18,Westborough - J Harding Armstrong,03210005, 0.0, 41.0, 2.4, 5.2, 1.9, 0.0, 49.5, 46.0, 54.0,50.5,0.0 +1,1,a-cure-i1,2017-18,Westborough - Mill Pond School,03210045, 0.0, 34.5, 2.0, 5.7, 2.8, 0.1, 54.9, 51.8, 48.2,45.1,0.0 +1,1,a-cure-i1,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 29.2, 1.2, 6.7, 4.8, 0.0, 58.2, 48.3, 51.7,41.8,2.6 +2.85,2.85,a-cure-i1,2017-18,Westborough - Westborough High,03210505, 0.0, 22.3, 2.4, 4.6, 2.7, 0.1, 68.0, 49.2, 50.8,32.0,5.7 +1,1,a-cure-i1,2017-18,Westfield - Abner Gibbs,03250020, 0.0, 8.1, 4.0, 18.4, 3.1, 0.0, 66.4, 52.0, 48.0,33.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 8.7, 0.5, 23.0, 1.5, 0.0, 66.3, 39.3, 60.7,33.7,0.0 +2.766917293233083,2.77,a-cure-i1,2017-18,Westfield - Franklin Ave,03250015, 0.4, 3.2, 4.4, 30.2, 1.6, 0.0, 60.1, 52.0, 48.0,39.9,6.9 +1,1,a-cure-i1,2017-18,Westfield - Highland,03250025, 0.0, 8.6, 2.4, 14.5, 1.3, 0.0, 73.2, 46.1, 53.9,26.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Westfield - Munger Hill,03250033, 0.3, 1.8, 2.9, 10.8, 1.8, 0.0, 82.3, 49.6, 50.4,17.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Westfield - North Middle School,03250305, 0.0, 1.9, 1.6, 11.4, 3.0, 0.1, 82.0, 49.6, 50.4,18.0,0.0 +1,1,a-cure-i1,2017-18,Westfield - Paper Mill,03250036, 0.2, 0.5, 3.2, 23.1, 3.6, 0.2, 69.2, 47.6, 52.4,30.799999999999997,3.7 +1,1,a-cure-i1,2017-18,Westfield - Russell Elementary School,03250055, 0.0, 0.6, 2.5, 6.8, 0.6, 0.0, 89.4, 47.2, 52.8,10.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Westfield - South Middle School,03250310, 0.0, 3.4, 2.2, 17.5, 0.5, 0.0, 76.4, 47.1, 52.9,23.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Westfield - Southampton Road,03250040, 0.0, 2.1, 0.9, 11.3, 3.3, 0.0, 82.4, 50.4, 49.6,17.599999999999994,3.7 +1,1,a-cure-i1,2017-18,Westfield - Westfield High,03250505, 0.2, 3.8, 2.6, 12.5, 1.7, 0.0, 79.2, 53.9, 46.0,20.799999999999997,2.4 +1,1,a-cure-i1,2017-18,Westfield - Westfield Technical Academy,03250605, 0.2, 1.1, 1.8, 7.6, 1.7, 0.2, 87.4, 37.2, 62.8,12.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Westford - Abbot Elementary,03260004, 0.0, 19.1, 0.3, 1.4, 3.0, 0.0, 76.3, 50.4, 49.6,23.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Westford - Blanchard Middle,03260310, 0.2, 30.0, 0.8, 1.4, 1.4, 0.2, 66.1, 47.3, 52.7,33.900000000000006,4.6 +1,1,a-cure-i1,2017-18,Westford - Col John Robinson,03260025, 0.0, 26.8, 1.0, 0.7, 2.4, 0.0, 69.1, 48.5, 51.5,30.900000000000006,0.0 +1,1,a-cure-i1,2017-18,Westford - Day Elementary,03260007, 0.0, 38.8, 1.1, 1.7, 4.8, 0.0, 53.7, 49.7, 50.3,46.3,0.0 +1,1,a-cure-i1,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 27.7, 2.3, 2.6, 5.2, 0.0, 62.1, 52.8, 47.2,37.9,0.0 +1,1,a-cure-i1,2017-18,Westford - Millennium Elementary,03260013, 0.0, 34.5, 2.7, 2.7, 7.3, 0.0, 52.7, 40.9, 59.1,47.3,0.0 +1,1,a-cure-i1,2017-18,Westford - Nabnasset,03260015, 0.0, 21.9, 0.3, 2.4, 4.3, 0.0, 71.1, 48.0, 52.0,28.900000000000006,0.0 +2.004728132387707,2.0,a-cure-i1,2017-18,Westford - Rita E. Miller Elementary School,03260055, 0.0, 31.0, 0.9, 3.7, 6.7, 0.0, 57.7, 50.6, 49.4,42.3,5.3 +1,1,a-cure-i1,2017-18,Westford - Stony Brook School,03260330, 0.0, 26.6, 1.1, 0.6, 2.8, 0.0, 68.9, 47.6, 52.4,31.099999999999994,2.2 +3.750915750915751,3.75,a-cure-i1,2017-18,Westford - Westford Academy,03260505, 0.0, 21.3, 0.8, 1.5, 3.7, 0.0, 72.7, 49.3, 50.7,27.299999999999997,6.3999999999999995 +1,1,a-cure-i1,2017-18,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.8, 0.0, 4.1, 1.6, 0.0, 93.4, 46.7, 53.3,6.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Weston - Country,03300010, 0.0, 15.9, 6.3, 11.3, 7.3, 0.0, 59.3, 55.0, 45.0,40.7,0.0 +3.035230352303523,3.04,a-cure-i1,2017-18,Weston - Field Elementary School,03300012, 0.0, 15.4, 7.7, 7.4, 6.5, 0.0, 63.1, 47.1, 52.9,36.9,7.0 +8.169184290030213,5,a-cure-i1,2017-18,Weston - Weston High,03300505, 0.4, 16.9, 6.1, 5.0, 4.8, 0.0, 66.9, 47.6, 52.4,33.099999999999994,16.9 +6.419753086419752,5,a-cure-i1,2017-18,Weston - Weston Middle,03300305, 0.4, 16.5, 6.4, 4.1, 5.0, 0.0, 67.6, 50.2, 49.8,32.400000000000006,13.0 +1,1,a-cure-i1,2017-18,Weston - Woodland,03300015, 0.0, 14.4, 5.7, 6.4, 2.3, 0.3, 70.8, 47.3, 52.7,29.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.8, 2.7, 4.0, 0.0, 92.5, 45.3, 54.7,7.5,0.0 +1,1,a-cure-i1,2017-18,Westport - Westport Elementary,03310030, 0.2, 0.4, 0.0, 3.9, 6.3, 0.0, 89.2, 46.2, 53.8,10.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Westport - Westport Junior/Senior High School,03310515, 0.5, 1.5, 0.7, 2.7, 3.5, 0.0, 91.1, 45.1, 54.9,8.900000000000006,0.0 +5.309090909090909,5,a-cure-i1,2017-18,Westwood - Deerfield School,03350010, 0.0, 9.0, 1.0, 5.0, 7.0, 0.0, 78.0, 40.0, 60.0,22.0,7.3 +1,1,a-cure-i1,2017-18,Westwood - Downey,03350012, 0.4, 17.2, 0.4, 3.2, 4.4, 0.0, 74.4, 42.4, 57.6,25.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Westwood - E W Thurston Middle,03350305, 0.0, 11.1, 4.0, 3.9, 3.2, 0.0, 77.8, 50.4, 49.6,22.200000000000003,3.4 +1,1,a-cure-i1,2017-18,Westwood - Martha Jones,03350017, 0.0, 10.2, 0.7, 3.4, 4.8, 0.0, 80.9, 49.5, 50.5,19.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Westwood - Paul Hanlon,03350015, 0.0, 13.6, 0.9, 3.6, 3.2, 0.0, 78.6, 47.7, 52.3,21.400000000000006,0.0 +6.028985507246378,5,a-cure-i1,2017-18,Westwood - Westwood High,03350505, 0.0, 6.5, 3.3, 2.4, 1.6, 0.0, 86.2, 53.5, 46.4,13.799999999999997,5.2 +1,1,a-cure-i1,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, 15.2, 0.0, 6.5, 6.5, 0.0, 71.7, 28.3, 71.7,28.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Westwood - William E Sheehan,03350025, 0.0, 6.3, 0.6, 4.7, 5.0, 0.0, 83.3, 47.8, 52.2,16.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Weymouth - Abigail Adams Middle School,03360310, 0.3, 4.3, 7.2, 10.0, 3.3, 0.1, 74.7, 51.1, 48.9,25.299999999999997,1.7 +1,1,a-cure-i1,2017-18,Weymouth - Academy Avenue,03360005, 0.0, 7.2, 3.6, 10.1, 4.2, 0.0, 74.9, 48.5, 51.5,25.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Weymouth - Frederick C Murphy,03360050, 0.0, 1.2, 6.5, 8.9, 7.3, 0.0, 76.0, 47.6, 52.4,24.0,0.0 +4.305647840531562,4.31,a-cure-i1,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 0.5, 13.5, 4.7, 6.7, 4.7, 0.0, 69.9, 43.5, 56.5,30.099999999999994,8.1 +1,1,a-cure-i1,2017-18,Weymouth - Lawrence W Pingree,03360065, 0.5, 4.7, 5.7, 5.2, 4.1, 0.0, 79.8, 53.4, 46.6,20.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0.2, 4.9, 6.1, 7.3, 3.9, 0.2, 77.4, 47.1, 52.8,22.599999999999994,2.6 +1,1,a-cure-i1,2017-18,Weymouth - Ralph Talbot,03360085, 0.0, 8.9, 7.3, 10.5, 2.0, 0.4, 71.0, 44.8, 55.2,29.0,0.0 +1,1,a-cure-i1,2017-18,Weymouth - Thomas V Nash,03360060, 0.0, 4.9, 4.4, 5.9, 4.4, 0.0, 80.3, 56.7, 43.3,19.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 1.1, 12.3, 3.4, 11.4, 5.1, 0.0, 66.7, 49.6, 50.4,33.3,0.0 +1,1,a-cure-i1,2017-18,Weymouth - Wessagusset,03360110, 0.4, 5.7, 1.8, 7.2, 4.7, 0.0, 80.3, 46.2, 53.8,19.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Weymouth - Weymouth High School,03360505, 0.1, 4.9, 5.2, 7.9, 2.7, 0.0, 79.2, 48.5, 51.5,20.799999999999997,2.5 +1,1,a-cure-i1,2017-18,Weymouth - William Seach,03360080, 0.3, 9.4, 20.1, 16.4, 5.3, 0.0, 48.4, 47.8, 52.2,51.6,0.0 +1,1,a-cure-i1,2017-18,Whately - Whately Elementary,03370005, 0.0, 0.7, 0.0, 5.7, 3.6, 0.0, 90.0, 51.4, 48.6,10.0,0.0 +1,1,a-cure-i1,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.8, 1.0, 2.5, 1.0, 0.0, 94.7, 44.0, 56.0,5.299999999999997,4.5 +1,1,a-cure-i1,2017-18,Whitman-Hanson - Indian Head,07800035, 0.3, 1.2, 0.3, 4.3, 1.5, 0.0, 92.3, 49.1, 50.9,7.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Whitman-Hanson - John H Duval,07800030, 0.2, 1.6, 1.4, 7.0, 3.6, 0.2, 86.0, 50.0, 50.0,14.0,4.4 +1,1,a-cure-i1,2017-18,Whitman-Hanson - Louise A Conley,07800010, 0.9, 0.9, 3.2, 5.7, 2.3, 0.0, 87.0, 50.4, 49.6,13.0,0.0 +1,1,a-cure-i1,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 0.2, 0.7, 1.1, 3.9, 4.1, 0.0, 89.9, 44.5, 55.5,10.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.3, 1.4, 2.2, 2.8, 2.4, 0.2, 90.7, 52.2, 47.8,9.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Whitman-Hanson - Whitman Middle,07800310, 0.9, 1.0, 4.2, 5.6, 3.0, 0.2, 85.2, 43.1, 56.9,14.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.2, 1.0, 1.4, 18.9, 3.1, 0.0, 75.3, 45.5, 54.5,24.700000000000003,1.2 +1,1,a-cure-i1,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 1.2, 1.8, 3.7, 0.0, 0.0, 93.3, 50.3, 49.7,6.700000000000003,0.0 +4.758974358974359,4.76,a-cure-i1,2017-18,Williamstown - Williamstown Elementary,03410010, 0.0, 3.3, 1.8, 6.3, 8.1, 0.0, 80.5, 47.7, 52.3,19.5,5.8 +1,1,a-cure-i1,2017-18,Wilmington - Boutwell,03420005, 0.0, 8.1, 0.6, 3.8, 3.1, 0.0, 84.4, 52.5, 47.5,15.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Wilmington - North Intermediate,03420060, 0.0, 3.0, 1.0, 1.7, 3.6, 0.0, 90.8, 48.2, 51.8,9.200000000000003,4.9 +1,1,a-cure-i1,2017-18,Wilmington - Shawsheen Elementary,03420025, 0.0, 5.8, 1.7, 6.1, 3.5, 0.0, 82.9, 49.0, 51.0,17.099999999999994,4.2 +1,1,a-cure-i1,2017-18,Wilmington - West Intermediate,03420080, 0.0, 6.1, 0.8, 9.3, 2.4, 0.0, 81.4, 49.8, 50.2,18.599999999999994,0.0 +11.940298507462682,5,a-cure-i1,2017-18,Wilmington - Wildwood,03420015, 0.0, 4.1, 3.1, 2.6, 3.1, 0.5, 86.6, 46.4, 53.6,13.400000000000006,10.0 +1,1,a-cure-i1,2017-18,Wilmington - Wilmington High,03420505, 0.1, 5.9, 2.3, 3.2, 2.3, 0.1, 86.0, 51.0, 49.0,14.0,4.6 +1,1,a-cure-i1,2017-18,Wilmington - Wilmington Middle School,03420330, 0.2, 3.1, 1.7, 4.2, 3.3, 0.0, 87.4, 47.5, 52.5,12.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Wilmington - Woburn Street,03420020, 0.3, 5.0, 2.1, 3.7, 3.7, 0.0, 85.4, 48.6, 51.4,14.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Winchendon - Memorial,03430040, 0.0, 2.0, 0.7, 4.2, 5.5, 0.0, 87.6, 44.6, 55.4,12.400000000000006,0.0 +1,1,a-cure-i1,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 6.9, 6.9, 0.0, 86.2, 41.4, 58.6,13.799999999999997,0.0 +5.763975155279505,5,a-cure-i1,2017-18,Winchendon - Murdock High School,03430515, 0.7, 3.0, 1.6, 8.2, 2.6, 0.0, 83.9, 47.4, 52.6,16.099999999999994,5.8 +1,1,a-cure-i1,2017-18,Winchendon - Murdock Middle School,03430315, 0.4, 2.6, 1.8, 7.7, 4.4, 0.0, 83.2, 47.6, 52.4,16.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Winchendon - Toy Town Elementary,03430050, 0.0, 4.1, 2.0, 7.1, 3.1, 0.3, 83.3, 46.6, 53.4,16.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 1.3, 1.3, 2.5, 0.0, 94.9, 49.4, 50.6,5.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Winchester - Ambrose Elementary,03440045, 0.0, 5.0, 0.2, 1.7, 3.1, 0.0, 90.0, 45.8, 54.2,10.0,0.0 +1,1,a-cure-i1,2017-18,Winchester - Lincoln Elementary,03440005, 0.0, 9.7, 1.0, 3.0, 8.2, 0.0, 78.2, 50.9, 49.1,21.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Winchester - Lynch Elementary,03440020, 0.0, 26.5, 2.0, 5.2, 5.7, 0.0, 60.6, 46.3, 53.7,39.4,0.0 +5.007633587786259,5,a-cure-i1,2017-18,Winchester - McCall Middle,03440305, 0.4, 17.1, 0.9, 3.7, 4.1, 0.1, 73.8, 50.7, 49.3,26.200000000000003,8.2 +1,1,a-cure-i1,2017-18,Winchester - Muraco Elementary,03440040, 0.3, 23.9, 0.8, 0.8, 7.6, 0.0, 66.7, 49.1, 50.9,33.3,0.0 +2.7532467532467533,2.75,a-cure-i1,2017-18,Winchester - Vinson-Owen Elementary,03440025, 0.0, 19.3, 0.2, 3.1, 8.1, 0.0, 69.2, 49.5, 50.5,30.799999999999997,5.3 +1,1,a-cure-i1,2017-18,Winchester - Winchester High School,03440505, 0.1, 16.8, 1.6, 4.1, 3.5, 0.0, 73.9, 50.0, 50.0,26.099999999999994,2.2 +1,1,a-cure-i1,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.2, 0.4, 2.0, 16.7, 1.8, 0.0, 78.9, 46.9, 53.1,21.099999999999994,0.0 +1,1,a-cure-i1,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.6, 0.6, 14.9, 2.1, 0.0, 81.7, 51.8, 48.2,18.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Winthrop - Winthrop High School,03460505, 0.5, 1.8, 1.6, 12.8, 2.4, 0.0, 80.8, 49.4, 50.6,19.200000000000003,0.0 +1,1,a-cure-i1,2017-18,Winthrop - Winthrop Middle School,03460305, 0.0, 1.0, 0.4, 17.2, 1.7, 0.0, 79.7, 45.6, 54.4,20.299999999999997,0.0 +1,1,a-cure-i1,2017-18,Woburn - Clyde Reeves,03470040, 0.2, 5.6, 7.2, 4.7, 4.4, 0.0, 77.9, 51.0, 49.0,22.099999999999994,0.0 +3.8787878787878793,3.88,a-cure-i1,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 0.6, 4.8, 6.1, 8.8, 2.7, 0.2, 76.9, 49.8, 50.2,23.099999999999994,5.6 +1,1,a-cure-i1,2017-18,Woburn - Daniel P Hurld,03470020, 0.0, 5.1, 2.3, 1.9, 1.4, 0.0, 89.3, 51.2, 48.8,10.700000000000003,0.0 +1,1,a-cure-i1,2017-18,Woburn - Goodyear Elementary School,03470005, 1.0, 3.9, 8.8, 5.5, 4.2, 0.3, 76.2, 44.0, 56.0,23.799999999999997,0.0 +1,1,a-cure-i1,2017-18,Woburn - John F Kennedy Middle School,03470405, 0.8, 7.5, 6.4, 9.1, 2.1, 0.0, 74.1, 53.4, 46.6,25.900000000000006,3.5 +1,1,a-cure-i1,2017-18,Woburn - Linscott-Rumford,03470025, 0.5, 18.8, 9.2, 4.3, 4.3, 0.0, 62.8, 55.1, 44.9,37.2,0.0 +1,1,a-cure-i1,2017-18,Woburn - Malcolm White,03470055, 0.9, 4.3, 6.8, 10.5, 4.9, 0.3, 72.2, 55.2, 44.8,27.799999999999997,0.0 +2.088235294117647,2.09,a-cure-i1,2017-18,Woburn - Mary D Altavesta,03470065, 2.4, 21.0, 11.7, 14.5, 4.0, 0.8, 45.6, 46.0, 54.0,54.4,7.1 +1,1,a-cure-i1,2017-18,Woburn - Shamrock,03470043, 0.3, 5.5, 10.8, 14.6, 3.9, 0.0, 64.9, 48.1, 51.9,35.099999999999994,0.0 +2.941176470588235,2.94,a-cure-i1,2017-18,Woburn - Woburn High,03470505, 0.1, 6.0, 7.2, 12.5, 1.4, 0.1, 72.8, 50.8, 49.2,27.200000000000003,5.0 +1,1,a-cure-i1,2017-18,Woburn - Wyman,03470060, 0.0, 9.3, 1.1, 9.3, 2.2, 0.0, 78.0, 52.2, 47.8,22.0,0.0 +2.640586797066015,2.64,a-cure-i1,2017-18,Worcester - Belmont Street Community,03480020, 0.2, 7.2, 21.3, 49.2, 3.8, 0.0, 18.2, 47.2, 52.8,81.8,13.5 +2.932935916542474,2.93,a-cure-i1,2017-18,Worcester - Burncoat Middle School,03480405, 0.0, 3.7, 15.6, 42.2, 5.6, 0.0, 32.9, 50.1, 49.9,67.1,12.299999999999999 +2.3873744619799138,2.39,a-cure-i1,2017-18,Worcester - Burncoat Senior High,03480503, 0.1, 5.4, 19.1, 40.5, 4.5, 0.0, 30.3, 48.7, 51.3,69.7,10.4 +1.533954727030626,1.53,a-cure-i1,2017-18,Worcester - Burncoat Street,03480035, 0.0, 3.4, 16.7, 50.9, 4.1, 0.0, 24.9, 47.1, 52.9,75.1,7.2 +1.1346153846153846,1.13,a-cure-i1,2017-18,Worcester - Canterbury,03480045, 0.5, 15.2, 12.2, 52.9, 2.4, 0.0, 16.8, 45.7, 54.3,83.2,5.9 +0.9324009324009325,1,a-cure-i1,2017-18,Worcester - Chandler Elementary Community,03480050, 0.0, 7.6, 14.0, 61.8, 2.4, 0.0, 14.2, 45.6, 54.4,85.8,5.0 +5.851851851851852,5,a-cure-i1,2017-18,Worcester - Chandler Magnet,03480052, 0.0, 4.1, 3.2, 77.4, 1.6, 0.0, 13.6, 52.8, 47.2,86.4,31.6 +2.1091877496671105,2.11,a-cure-i1,2017-18,Worcester - City View,03480053, 0.0, 3.8, 15.2, 51.5, 4.6, 0.0, 24.9, 47.9, 52.1,75.1,9.9 +3.4737967914438497,3.47,a-cure-i1,2017-18,Worcester - Claremont Academy,03480350, 0.0, 8.5, 8.7, 75.2, 1.1, 0.0, 6.5, 49.5, 50.5,93.5,20.299999999999997 +1.7691373025516404,1.77,a-cure-i1,2017-18,Worcester - Clark St Community,03480055, 0.4, 3.8, 21.2, 52.7, 4.2, 0.0, 17.7, 48.5, 51.5,82.3,9.1 +1,1,a-cure-i1,2017-18,Worcester - Columbus Park,03480060, 0.6, 9.3, 13.6, 49.1, 3.6, 0.0, 23.9, 45.2, 54.8,76.1,4.9 +3.1292517006802725,3.13,a-cure-i1,2017-18,Worcester - Doherty Memorial High,03480512, 0.3, 7.5, 16.2, 30.6, 4.2, 0.0, 41.2, 45.9, 54.1,58.8,11.5 +4.363636363636364,4.36,a-cure-i1,2017-18,Worcester - Elm Park Community,03480095, 0.0, 2.1, 15.3, 58.9, 2.9, 0.0, 20.8, 43.8, 56.2,79.2,21.6 +1,1,a-cure-i1,2017-18,Worcester - Flagg Street,03480090, 0.0, 5.6, 5.9, 12.5, 4.9, 0.0, 71.1, 48.2, 51.8,28.900000000000006,0.0 +3.785837651122625,3.79,a-cure-i1,2017-18,Worcester - Forest Grove Middle,03480415, 0.1, 5.1, 12.5, 35.4, 4.8, 0.0, 42.1, 49.2, 50.8,57.9,13.7 +5.036565977742448,5,a-cure-i1,2017-18,Worcester - Francis J McGrath Elementary,03480177, 0.4, 4.2, 18.6, 32.5, 7.2, 0.0, 37.1, 49.4, 50.6,62.9,19.8 +1.4986225895316805,1.5,a-cure-i1,2017-18,Worcester - Gates Lane,03480110, 0.4, 12.3, 17.2, 37.6, 5.1, 0.0, 27.4, 40.8, 59.2,72.6,6.8 +4.837209302325581,4.84,a-cure-i1,2017-18,Worcester - Goddard School/Science Technical,03480100, 0.9, 11.0, 9.0, 61.9, 3.2, 0.0, 14.0, 48.2, 51.8,86.0,26.0 +1,1,a-cure-i1,2017-18,Worcester - Grafton Street,03480115, 0.3, 7.2, 15.5, 47.3, 4.4, 0.0, 25.3, 48.6, 51.4,74.7,0.0 +2.550435865504359,2.55,a-cure-i1,2017-18,Worcester - Head Start,03480002, 0.0, 2.3, 20.2, 54.8, 3.0, 0.0, 19.7, 52.0, 48.0,80.3,12.8 +2.4411764705882355,2.44,a-cure-i1,2017-18,Worcester - Heard Street,03480136, 0.3, 11.1, 11.8, 26.7, 4.4, 0.0, 45.6, 48.6, 51.4,54.4,8.3 +1,1,a-cure-i1,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 3.0, 28.8, 51.4, 4.5, 0.0, 12.4, 49.9, 50.1,87.6,0.3 +5.397590361445784,5,a-cure-i1,2017-18,Worcester - Lake View,03480145, 0.4, 9.5, 15.4, 19.6, 4.9, 0.0, 50.2, 48.4, 51.6,49.8,16.8 +1,1,a-cure-i1,2017-18,Worcester - Lincoln Street,03480160, 0.7, 3.7, 20.7, 57.0, 3.3, 0.0, 14.4, 48.9, 51.1,85.6,0.0 +2.5009416195856877,2.5,a-cure-i1,2017-18,Worcester - May Street,03480175, 0.0, 8.6, 11.8, 22.4, 10.0, 0.3, 46.9, 50.7, 49.3,53.1,8.3 +3.682864450127877,3.68,a-cure-i1,2017-18,Worcester - Midland Street,03480185, 0.0, 10.4, 7.8, 11.7, 9.1, 0.0, 60.9, 47.8, 52.2,39.1,9.0 +1,1,a-cure-i1,2017-18,Worcester - Nelson Place,03480200, 0.0, 7.1, 10.3, 17.2, 5.2, 0.0, 60.2, 43.1, 56.9,39.8,0.0 +2.9834983498349836,2.98,a-cure-i1,2017-18,Worcester - Norrback Avenue,03480202, 0.0, 3.4, 24.6, 28.0, 4.6, 0.0, 39.4, 46.8, 53.2,60.6,11.3 +5.0,5.0,a-cure-i1,2017-18,Worcester - North High,03480515, 0.3, 7.1, 22.4, 48.1, 3.6, 0.0, 18.4, 48.6, 51.4,81.6,25.5 +2.4598337950138505,2.46,a-cure-i1,2017-18,Worcester - Quinsigamond,03480210, 0.1, 7.7, 20.8, 39.3, 4.3, 0.0, 27.8, 49.9, 50.1,72.2,11.100000000000001 +2.417582417582418,2.42,a-cure-i1,2017-18,Worcester - Rice Square,03480215, 0.0, 7.0, 16.9, 43.3, 5.6, 0.0, 27.2, 44.7, 55.3,72.8,11.0 +4.865671641791045,4.87,a-cure-i1,2017-18,Worcester - Roosevelt,03480220, 0.0, 4.9, 15.9, 28.1, 4.6, 0.1, 46.4, 51.3, 48.7,53.6,16.3 +3.8292367399741267,3.83,a-cure-i1,2017-18,Worcester - South High Community,03480520, 0.1, 13.3, 16.0, 45.1, 2.8, 0.0, 22.7, 48.0, 52.0,77.3,18.5 +3.35935397039031,3.36,a-cure-i1,2017-18,Worcester - Sullivan Middle,03480423, 0.2, 10.8, 14.6, 44.4, 4.4, 0.0, 25.7, 48.3, 51.7,74.3,15.600000000000001 +1.826887661141805,1.83,a-cure-i1,2017-18,Worcester - Tatnuck,03480230, 0.0, 6.6, 19.4, 23.0, 4.8, 0.5, 45.7, 52.6, 47.4,54.3,6.2 +1.9566074950690335,1.96,a-cure-i1,2017-18,Worcester - Thorndyke Road,03480235, 0.0, 5.5, 16.0, 25.2, 3.9, 0.0, 49.3, 48.3, 51.7,50.7,6.2 +1.3403141361256545,1.34,a-cure-i1,2017-18,Worcester - Union Hill School,03480240, 0.2, 2.2, 11.9, 58.4, 3.7, 0.0, 23.6, 44.9, 55.1,76.4,6.4 +1,1,a-cure-i1,2017-18,Worcester - University Pk Campus School,03480285, 0.4, 23.0, 11.7, 51.9, 2.9, 0.0, 10.0, 46.4, 53.6,90.0,3.7 +2.8430609597924774,2.84,a-cure-i1,2017-18,Worcester - Vernon Hill School,03480280, 0.0, 3.4, 21.3, 46.6, 5.8, 0.0, 22.9, 47.8, 52.2,77.1,13.7 +1,1,a-cure-i1,2017-18,Worcester - Wawecus Road School,03480026, 0.0, 5.9, 9.9, 43.4, 4.6, 0.0, 36.2, 52.0, 48.0,63.8,0.0 +2.724324324324324,2.72,a-cure-i1,2017-18,Worcester - West Tatnuck,03480260, 0.0, 5.7, 8.4, 15.7, 7.3, 0.0, 63.0, 50.5, 49.5,37.0,6.3 +1,1,a-cure-i1,2017-18,Worcester - Woodland Academy,03480030, 0.3, 8.4, 8.1, 72.1, 2.0, 0.0, 9.1, 49.8, 50.2,90.9,4.6 +1,1,a-cure-i1,2017-18,Worcester - Worcester Arts Magnet School,03480225, 0.0, 6.4, 17.1, 19.6, 6.9, 0.0, 50.0, 50.2, 49.8,50.0,0.0 +4.121212121212121,4.12,a-cure-i1,2017-18,Worcester - Worcester East Middle,03480420, 0.1, 6.2, 17.9, 51.2, 3.8, 0.0, 20.8, 49.8, 50.2,79.2,20.4 +1,1,a-cure-i1,2017-18,Worcester - Worcester Technical High,03480605, 0.1, 6.1, 16.3, 37.1, 3.6, 0.0, 36.9, 54.6, 45.4,63.1,4.300000000000001 +1,1,a-cure-i1,2017-18,Worthington - R. H. Conwell,03490010, 1.6, 0.0, 0.0, 1.6, 3.2, 0.0, 93.5, 61.3, 38.7,6.5,0.0 +1,1,a-cure-i1,2017-18,Wrentham - Charles E Roderick,03500010, 0.0, 2.4, 1.5, 3.9, 3.9, 0.0, 88.4, 44.4, 55.6,11.599999999999994,0.0 +1,1,a-cure-i1,2017-18,Wrentham - Delaney,03500003, 0.5, 3.3, 1.2, 4.7, 5.0, 0.2, 85.2, 51.2, 48.8,14.799999999999997,0.0 +1.8677042801556423,1.87,a-cure-i1,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.1, 4.0, 48.5, 22.0, 2.3, 0.1, 22.9, 52.7, 47.3,77.1,9.0 +1,1,a-cure-i1,2016-17,Abington - Abington High,00010505, 0.2, 1.5, 2.2, 9.1, 0.9, 0.2, 85.8, 54.4, 45.6,14.200000000000003,4.199999999999999 +1,1,a-cure-i1,2016-17,Abington - Beaver Brook Elementary School,00010003, 0.5, 1.9, 1.9, 6.7, 0.3, 0.2, 88.4, 49.8, 50.2,11.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Abington - Center Elementary School,00010002, 0.0, 3.0, 3.9, 8.4, 0.0, 0.0, 84.7, 45.8, 54.2,15.299999999999997,0.0 +17.644859813084107,5,a-cure-i1,2016-17,Abington - Frolio Middle School,00010405, 0.0, 1.8, 2.4, 6.1, 0.3, 0.0, 89.3, 46.6, 53.4,10.700000000000003,11.799999999999999 +14.177215189873408,5,a-cure-i1,2016-17,Abington - Woodsdale Elementary School,00010015, 0.0, 1.4, 2.0, 4.2, 0.3, 0.0, 92.1, 49.3, 50.7,7.900000000000006,7.0 +4.375,4.38,a-cure-i1,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.9, 58.1, 27.3, 3.0, 0.2, 10.4, 52.6, 47.4,89.6,24.499999999999996 +1,1,a-cure-i1,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.2, 28.2, 1.5, 3.4, 3.7, 0.0, 63.0, 49.4, 50.6,37.0,3.8 +1,1,a-cure-i1,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.5, 33.2, 1.7, 3.1, 2.9, 0.0, 58.6, 48.2, 51.8,41.4,4.4 +1,1,a-cure-i1,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.2, 24.3, 0.2, 3.3, 6.1, 0.0, 65.8, 48.0, 52.0,34.2,0.0 +1,1,a-cure-i1,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 3.1, 40.2, 5.2, 3.1, 2.1, 0.0, 46.4, 40.2, 59.8,53.6,0.0 +1,1,a-cure-i1,2016-17,Acton-Boxborough - Luther Conant School,06000030, 0.0, 60.8, 2.9, 4.2, 2.7, 0.0, 29.5, 49.9, 50.1,70.5,4.3 +1,1,a-cure-i1,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0.6, 11.4, 3.4, 9.1, 5.5, 0.0, 70.1, 48.8, 51.2,29.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Acton-Boxborough - Merriam School,06000010, 0.0, 20.5, 2.5, 5.4, 3.3, 0.2, 68.1, 46.2, 53.8,31.900000000000006,3.8 +1,1,a-cure-i1,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 1.0, 51.0, 1.7, 3.5, 2.7, 0.2, 39.9, 47.5, 52.5,60.1,0.0 +1,1,a-cure-i1,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.1, 31.8, 2.0, 3.7, 5.6, 0.0, 56.8, 47.7, 52.3,43.2,0.0 +1,1,a-cure-i1,2016-17,Acushnet - Acushnet Elementary School,00030025, 0.2, 0.2, 0.7, 3.3, 2.8, 0.0, 92.8, 46.8, 53.2,7.200000000000003,2.9 +1,1,a-cure-i1,2016-17,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.2, 0.7, 1.0, 0.7, 0.0, 97.4, 49.2, 50.8,2.5999999999999943,3.2 +1,1,a-cure-i1,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 0.0, 0.4, 4.1, 1.2, 0.8, 0.0, 93.4, 52.9, 47.1,6.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0.2, 1.3, 5.1, 1.4, 0.2, 0.0, 91.8, 50.0, 50.0,8.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0.2, 0.2, 4.0, 2.2, 3.3, 0.2, 89.8, 47.7, 52.3,10.200000000000003,0.0 +6.477341389728097,5,a-cure-i1,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.3, 19.2, 2.4, 5.8, 5.4, 0.0, 66.9, 48.3, 51.7,33.099999999999994,13.399999999999999 +1,1,a-cure-i1,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.0, 8.6, 4.6, 12.6, 2.6, 0.0, 71.5, 42.4, 57.6,28.5,0.0 +1,1,a-cure-i1,2016-17,Agawam - Agawam High,00050505, 0.0, 2.2, 1.2, 5.8, 1.9, 0.1, 88.8, 48.0, 52.0,11.200000000000003,1.0 +1,1,a-cure-i1,2016-17,Agawam - Agawam Junior High,00050405, 0.0, 1.4, 1.4, 7.1, 3.0, 0.0, 87.0, 52.1, 47.9,13.0,0.0 +1,1,a-cure-i1,2016-17,Agawam - Benjamin J Phelps,00050020, 0.0, 2.9, 2.1, 4.9, 2.1, 0.0, 88.1, 47.3, 52.7,11.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Agawam - Clifford M Granger,00050010, 0.0, 1.0, 1.4, 9.6, 2.7, 0.3, 85.0, 49.8, 50.2,15.0,0.0 +1,1,a-cure-i1,2016-17,Agawam - James Clark School,00050030, 0.0, 3.3, 3.0, 9.4, 1.8, 0.0, 82.4, 46.8, 53.2,17.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Agawam - Roberta G. Doering School,00050303, 0.0, 4.2, 2.5, 7.0, 3.0, 0.0, 83.3, 46.6, 53.4,16.700000000000003,2.2 +1,1,a-cure-i1,2016-17,Agawam - Robinson Park,00050025, 0.0, 2.9, 2.7, 8.0, 3.4, 0.0, 83.0, 48.3, 51.7,17.0,0.0 +3.096774193548387,3.1,a-cure-i1,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.3, 0.6, 14.2, 47.2, 5.9, 0.0, 31.8, 53.7, 46.3,68.2,13.2 +1,1,a-cure-i1,2016-17,Amesbury - Amesbury Elementary,00070005, 0.5, 0.5, 4.1, 6.2, 4.4, 0.0, 84.3, 47.7, 52.3,15.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Amesbury - Amesbury High,00070505, 0.0, 1.2, 1.3, 4.2, 2.5, 0.0, 90.7, 46.5, 53.5,9.299999999999997,2.6 +1,1,a-cure-i1,2016-17,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 6.5, 6.5, 0.0, 87.1, 35.5, 64.5,12.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Amesbury - Amesbury Middle,00070013, 0.3, 1.0, 1.2, 6.6, 3.8, 0.1, 86.9, 48.9, 51.1,13.099999999999994,2.1 +1,1,a-cure-i1,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 0.4, 2.0, 2.2, 8.7, 2.4, 0.2, 84.1, 46.5, 53.5,15.900000000000006,0.0 +2.937062937062937,2.94,a-cure-i1,2016-17,Amherst - Crocker Farm Elementary,00080009, 0.0, 15.8, 7.2, 25.7, 8.4, 0.0, 42.8, 49.5, 50.5,57.2,10.5 +5.545454545454545,5,a-cure-i1,2016-17,Amherst - Fort River Elementary,00080020, 0.0, 14.0, 11.3, 22.1, 5.4, 0.0, 47.2, 50.4, 49.6,52.8,18.299999999999997 +10.309751434034418,5,a-cure-i1,2016-17,Amherst - Wildwood Elementary,00080050, 0.2, 13.7, 10.3, 20.5, 7.6, 0.0, 47.7, 47.4, 52.6,52.3,33.7 +5.785536159600998,5,a-cure-i1,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 0.1, 9.5, 7.0, 14.3, 9.2, 0.0, 59.9, 47.9, 52.1,40.1,14.500000000000002 +6.9875930521091805,5,a-cure-i1,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 7.9, 6.9, 16.7, 8.3, 0.5, 59.7, 52.3, 47.7,40.3,17.599999999999998 +5.4683544303797476,5,a-cure-i1,2016-17,Andover - Andover High,00090505, 0.1, 14.5, 1.9, 5.0, 2.2, 0.0, 76.3, 51.1, 48.9,23.700000000000003,8.100000000000001 +1,1,a-cure-i1,2016-17,Andover - Andover West Middle,00090310, 0.0, 15.6, 1.1, 3.6, 2.4, 0.0, 77.3, 53.8, 46.2,22.700000000000003,2.8 +1,1,a-cure-i1,2016-17,Andover - Bancroft Elementary,00090003, 0.3, 6.6, 3.2, 5.9, 5.6, 0.0, 78.4, 48.2, 51.8,21.599999999999994,3.0 +6.552380952380952,5,a-cure-i1,2016-17,Andover - Doherty Middle,00090305, 0.5, 13.5, 0.5, 3.7, 2.7, 0.0, 79.0, 49.2, 50.8,21.0,8.6 +2.1621621621621623,2.16,a-cure-i1,2016-17,Andover - Henry C Sanborn Elementary,00090010, 0.8, 28.1, 1.6, 4.5, 2.1, 0.0, 63.0, 45.1, 54.9,37.0,5.0 +1,1,a-cure-i1,2016-17,Andover - High Plain Elementary,00090004, 0.0, 29.1, 2.7, 6.6, 3.3, 0.0, 58.3, 46.4, 53.6,41.7,0.0 +7.8128654970760225,5,a-cure-i1,2016-17,Andover - Shawsheen School,00090005, 1.4, 27.4, 2.7, 2.7, 0.0, 0.0, 65.8, 46.6, 53.4,34.2,16.7 +1,1,a-cure-i1,2016-17,Andover - South Elementary,00090020, 0.2, 18.5, 0.0, 4.9, 0.6, 0.2, 75.7, 49.1, 50.9,24.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Andover - West Elementary,00090025, 0.2, 14.6, 3.0, 6.8, 3.0, 0.0, 72.5, 48.3, 51.7,27.5,0.0 +1,1,a-cure-i1,2016-17,Andover - Wood Hill Middle School,00090350, 0.0, 26.5, 3.1, 6.2, 2.4, 0.0, 61.8, 54.2, 45.8,38.2,3.7 +8.259927797833935,5,a-cure-i1,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.3, 2.0, 9.4, 11.1, 4.2, 0.7, 72.3, 45.9, 54.1,27.700000000000003,14.3 +5.901639344262294,5,a-cure-i1,2016-17,Arlington - Arlington High,00100505, 0.0, 10.7, 4.1, 5.7, 3.7, 0.2, 75.6, 50.9, 49.1,24.400000000000006,9.0 +15.790393013100434,5,a-cure-i1,2016-17,Arlington - Brackett,00100010, 0.0, 10.3, 1.5, 4.6, 6.3, 0.2, 77.1, 47.9, 52.1,22.900000000000006,22.6 +1,1,a-cure-i1,2016-17,Arlington - Cyrus E Dallin,00100025, 0.0, 12.4, 1.7, 4.5, 3.2, 0.2, 77.9, 48.1, 51.9,22.099999999999994,3.8 +4.5642633228840115,4.56,a-cure-i1,2016-17,Arlington - Hardy,00100030, 0.2, 15.7, 4.9, 7.3, 3.3, 0.4, 68.1, 45.7, 54.3,31.900000000000006,9.1 +5.8450184501845035,5,a-cure-i1,2016-17,Arlington - John A Bishop,00100005, 0.0, 14.6, 4.2, 3.1, 4.5, 0.7, 72.9, 50.6, 49.4,27.099999999999994,9.9 +6.734177215189875,5,a-cure-i1,2016-17,Arlington - M Norcross Stratton,00100055, 0.0, 18.2, 2.5, 6.3, 4.5, 0.0, 68.4, 50.3, 49.7,31.599999999999994,13.3 +1,1,a-cure-i1,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, 12.9, 0.0, 5.7, 2.9, 0.0, 78.6, 37.1, 62.9,21.400000000000006,0.0 +8.226720647773279,5,a-cure-i1,2016-17,Arlington - Ottoson Middle,00100410, 0.0, 10.0, 4.2, 5.5, 5.0, 0.0, 75.3, 53.0, 47.0,24.700000000000003,12.7 +4.294117647058823,4.29,a-cure-i1,2016-17,Arlington - Peirce,00100045, 0.0, 12.3, 4.0, 8.3, 2.5, 0.0, 72.8, 50.4, 49.6,27.200000000000003,7.3 +5.3052631578947365,5,a-cure-i1,2016-17,Arlington - Thompson,00100050, 0.6, 16.1, 5.4, 10.7, 4.9, 0.2, 62.0, 48.1, 51.9,38.0,12.6 +16.842105263157908,5,a-cure-i1,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.4, 0.2, 5.8, 1.3, 0.0, 92.4, 47.9, 52.1,7.599999999999994,8.0 +1,1,a-cure-i1,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.3, 4.4, 0.6, 0.0, 93.8, 45.6, 54.4,6.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 1.0, 0.6, 2.3, 1.7, 0.0, 94.4, 50.1, 49.9,5.599999999999994,2.5 +1,1,a-cure-i1,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.9, 0.0, 3.3, 1.2, 0.0, 94.6, 50.9, 49.1,5.400000000000006,3.0 +1,1,a-cure-i1,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 0.3, 0.3, 1.6, 7.0, 2.4, 0.0, 88.4, 47.3, 52.7,11.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Ashland - Ashland High,00140505, 0.3, 9.0, 2.0, 9.4, 2.2, 0.0, 77.2, 51.2, 48.8,22.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Ashland - Ashland Middle,00140405, 0.3, 12.1, 2.4, 11.2, 2.9, 0.0, 71.0, 51.3, 48.7,29.0,2.4 +1,1,a-cure-i1,2016-17,Ashland - David Mindess,00140015, 1.0, 13.5, 2.1, 9.5, 3.4, 0.0, 70.5, 49.4, 50.6,29.5,2.6 +1,1,a-cure-i1,2016-17,Ashland - Henry E Warren Elementary,00140010, 0.6, 14.1, 1.8, 10.7, 3.6, 0.2, 69.1, 50.2, 49.8,30.900000000000006,2.6 +7.49063670411985,5,a-cure-i1,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, 17.6, 1.5, 3.8, 3.8, 0.0, 73.3, 48.1, 51.9,26.700000000000003,12.5 +1,1,a-cure-i1,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.5, 0.7, 0.9, 14.6, 2.3, 0.0, 81.1, 42.4, 57.6,18.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 0.2, 1.2, 0.7, 9.9, 3.1, 0.2, 84.7, 49.7, 50.3,15.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Athol-Royalston - Athol High,06150505, 0.0, 0.8, 2.8, 5.6, 1.1, 0.0, 89.7, 45.8, 54.2,10.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.3, 0.0, 1.8, 9.3, 3.4, 0.0, 85.3, 47.3, 52.7,14.700000000000003,4.6 +1,1,a-cure-i1,2016-17,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.7, 2.1, 2.8, 0.7, 0.0, 93.8, 50.7, 49.3,6.200000000000003,0.0 +5.6,5,a-cure-i1,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.1, 1.9, 4.7, 9.9, 3.4, 0.0, 80.0, 53.3, 46.7,20.0,7.0 +1,1,a-cure-i1,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0.2, 1.8, 3.9, 27.9, 6.8, 0.2, 59.2, 47.4, 52.6,40.8,0.0 +7.798319327731093,5,a-cure-i1,2016-17,Attleboro - Attleboro Community Academy,00160515, 1.6, 1.6, 1.6, 11.1, 7.9, 0.0, 76.2, 46.0, 54.0,23.799999999999997,11.6 +1,1,a-cure-i1,2016-17,Attleboro - Attleboro High,00160505, 0.3, 4.1, 5.5, 12.5, 3.8, 0.2, 73.6, 45.8, 54.2,26.400000000000006,4.2 +1,1,a-cure-i1,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0.4, 4.9, 4.2, 18.1, 7.2, 0.4, 64.9, 46.7, 53.3,35.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Attleboro - Early Learning Center,00160008, 0.0, 3.7, 3.7, 10.7, 5.9, 0.0, 75.9, 38.5, 61.5,24.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 0.9, 3.9, 6.0, 12.8, 8.1, 0.0, 68.3, 45.0, 55.0,31.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 6.3, 4.3, 12.6, 6.1, 0.0, 70.7, 52.8, 47.2,29.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 6.1, 3.8, 11.7, 9.6, 0.0, 68.8, 46.2, 53.8,31.200000000000003,4.5 +1,1,a-cure-i1,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 3.6, 3.6, 10.6, 5.4, 0.0, 76.8, 49.0, 51.0,23.200000000000003,3.3 +1,1,a-cure-i1,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 9.4, 6.2, 9.8, 9.6, 0.0, 65.0, 47.7, 52.3,35.0,0.0 +1,1,a-cure-i1,2016-17,Attleboro - Wamsutta Middle School,00160320, 0.0, 5.9, 6.0, 18.7, 4.3, 0.2, 64.9, 46.3, 53.7,35.099999999999994,2.5 +1,1,a-cure-i1,2016-17,Auburn - Auburn Middle,00170305, 0.3, 4.2, 1.8, 5.4, 2.7, 0.0, 85.6, 49.4, 50.6,14.400000000000006,3.9 +1,1,a-cure-i1,2016-17,Auburn - Auburn Senior High,00170505, 0.4, 4.3, 2.1, 6.4, 2.8, 0.0, 84.0, 51.9, 48.1,16.0,2.0 +1,1,a-cure-i1,2016-17,Auburn - Bryn Mawr,00170010, 0.7, 3.1, 1.4, 10.1, 3.5, 0.0, 81.1, 47.9, 52.1,18.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Auburn - Pakachoag School,00170025, 0.0, 3.9, 2.8, 8.2, 3.9, 0.0, 81.1, 47.7, 52.3,18.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Auburn - Swanson Road Intermediate School,00170030, 0.0, 3.4, 1.5, 7.6, 3.5, 0.0, 84.0, 50.7, 49.3,16.0,0.0 +2.8781431334622827,2.88,a-cure-i1,2016-17,Avon - Avon Middle High School,00180510, 0.6, 5.6, 37.3, 4.7, 3.4, 0.0, 48.3, 51.4, 48.3,51.7,9.3 +1,1,a-cure-i1,2016-17,Avon - Ralph D Butler,00180010, 1.3, 3.8, 23.3, 6.8, 5.8, 0.0, 59.0, 47.8, 52.2,41.0,0.0 +1,1,a-cure-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.2, 2.4, 7.8, 10.5, 5.9, 0.2, 72.9, 49.6, 50.4,27.099999999999994,4.0 +9.548387096774196,5,a-cure-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.8, 2.0, 4.8, 10.6, 5.8, 0.8, 75.2, 52.9, 47.1,24.799999999999997,14.8 +1,1,a-cure-i1,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 2.6, 2.1, 9.8, 4.1, 0.3, 81.2, 47.3, 52.7,18.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.2, 3.8, 3.2, 11.7, 4.2, 0.4, 76.5, 46.0, 54.0,23.5,0.0 +4.316546762589929,4.32,a-cure-i1,2016-17,Barnstable - Barnstable High,00200505, 0.9, 2.8, 8.4, 11.5, 3.7, 0.4, 72.2, 51.3, 48.7,27.799999999999997,7.5 +1,1,a-cure-i1,2016-17,Barnstable - Barnstable Intermediate School,00200315, 0.5, 1.7, 8.0, 9.9, 5.2, 0.0, 74.7, 51.3, 48.7,25.299999999999997,2.1 +1,1,a-cure-i1,2016-17,Barnstable - Barnstable United Elementary School,00200050, 0.0, 2.1, 6.7, 11.7, 3.5, 0.4, 75.6, 48.0, 52.0,24.400000000000006,1.6 +1,1,a-cure-i1,2016-17,Barnstable - Centerville Elementary,00200010, 0.3, 1.4, 4.8, 8.5, 2.7, 0.0, 82.3, 46.1, 53.9,17.700000000000003,2.7 +1,1,a-cure-i1,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 2.4, 5.6, 11.1, 7.9, 0.0, 73.0, 45.2, 54.8,27.0,0.0 +2.2338568935427574,2.23,a-cure-i1,2016-17,Barnstable - Hyannis West Elementary,00200025, 0.3, 2.5, 17.1, 27.5, 9.6, 0.3, 42.7, 45.2, 54.8,57.3,8.0 +1,1,a-cure-i1,2016-17,Barnstable - West Barnstable Elementary,00200005, 0.0, 1.9, 4.6, 6.5, 3.5, 0.0, 83.5, 43.5, 56.5,16.5,0.0 +1,1,a-cure-i1,2016-17,Barnstable - West Villages Elementary School,00200045, 0.5, 0.7, 2.0, 5.2, 3.6, 0.0, 88.0, 49.7, 50.3,12.0,0.0 +1,1,a-cure-i1,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 1.0, 3.1, 17.9, 20.7, 5.2, 0.3, 51.7, 48.3, 51.7,48.3,0.0 +4.335812964930925,4.34,a-cure-i1,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.8, 27.6, 65.3, 0.5, 0.0, 5.9, 49.5, 50.5,94.1,25.500000000000004 +4.447284345047923,4.45,a-cure-i1,2016-17,Bedford - Bedford High,00230505, 0.0, 11.4, 7.8, 6.4, 5.2, 0.6, 68.7, 49.4, 50.6,31.299999999999997,8.7 +1,1,a-cure-i1,2016-17,Bedford - John Glenn Middle,00230305, 0.0, 15.5, 5.8, 5.9, 3.6, 0.0, 69.2, 49.8, 50.2,30.799999999999997,1.8 +3.03448275862069,3.03,a-cure-i1,2016-17,Bedford - Lt Elezer Davis,00230010, 0.0, 16.7, 5.0, 6.2, 6.9, 0.0, 65.2, 49.8, 50.2,34.8,6.6 +1,1,a-cure-i1,2016-17,Bedford - Lt Job Lane School,00230012, 0.0, 15.7, 5.7, 4.4, 3.9, 0.0, 70.3, 46.6, 53.4,29.700000000000003,3.2 +1,1,a-cure-i1,2016-17,Belchertown - Belchertown High,00240505, 0.1, 2.0, 2.0, 4.1, 1.4, 0.1, 90.3, 49.7, 50.3,9.700000000000003,2.1 +1,1,a-cure-i1,2016-17,Belchertown - Chestnut Hill Community School,00240006, 0.0, 2.4, 2.6, 4.0, 2.2, 0.3, 88.4, 49.5, 50.5,11.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Belchertown - Cold Spring,00240005, 0.0, 1.8, 1.2, 5.3, 5.3, 0.0, 86.5, 55.3, 44.7,13.5,0.0 +1,1,a-cure-i1,2016-17,Belchertown - Jabish Middle School,00240025, 0.0, 1.5, 2.3, 1.5, 2.3, 0.3, 92.2, 48.1, 51.9,7.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Belchertown - Swift River Elementary,00240018, 0.6, 1.2, 2.0, 5.0, 2.6, 0.0, 88.6, 47.9, 52.1,11.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 3.1, 2.1, 0.0, 1.0, 2.1, 91.7, 42.7, 57.3,8.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Bellingham - Bellingham High School,00250505, 0.3, 3.1, 1.8, 5.3, 1.2, 0.0, 88.4, 45.5, 54.5,11.599999999999994,4.4 +1,1,a-cure-i1,2016-17,Bellingham - Bellingham Memorial School,00250315, 0.3, 4.2, 1.7, 3.5, 1.4, 0.0, 88.9, 50.1, 49.9,11.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 11.8, 2.9, 0.0, 85.3, 32.4, 64.7,14.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Bellingham - South Elementary,00250020, 0.0, 1.2, 1.8, 2.1, 0.6, 2.4, 91.9, 49.9, 50.1,8.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Bellingham - Stall Brook,00250025, 0.0, 2.0, 1.8, 3.5, 3.8, 1.5, 87.4, 53.2, 46.8,12.599999999999994,0.0 +4.943521594684387,4.94,a-cure-i1,2016-17,Belmont - Belmont High,00260505, 0.0, 16.8, 4.6, 3.5, 5.2, 0.1, 69.9, 53.1, 46.9,30.099999999999994,9.3 +4.988452655889146,4.99,a-cure-i1,2016-17,Belmont - Daniel Butler,00260015, 0.6, 23.7, 4.4, 8.8, 5.8, 0.0, 56.7, 47.4, 52.6,43.3,13.5 +6.601719197707736,5,a-cure-i1,2016-17,Belmont - Mary Lee Burbank,00260010, 0.0, 20.6, 2.1, 4.3, 7.5, 0.3, 65.1, 50.4, 49.6,34.900000000000006,14.4 +1,1,a-cure-i1,2016-17,Belmont - Roger E Wellington,00260035, 0.0, 15.3, 3.1, 2.2, 10.5, 0.0, 69.0, 44.9, 55.1,31.0,3.1 +1,1,a-cure-i1,2016-17,Belmont - Winn Brook,00260005, 0.2, 24.8, 1.7, 3.4, 6.8, 0.0, 63.0, 48.7, 51.3,37.0,0.0 +7.713355048859935,5,a-cure-i1,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 0.1, 16.1, 3.5, 4.9, 6.0, 0.1, 69.3, 50.3, 49.7,30.700000000000003,14.8 +3.2854209445585214,3.29,a-cure-i1,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.9, 2.6, 79.5, 13.3, 1.2, 0.0, 2.6, 48.1, 51.9,97.4,20.0 +1,1,a-cure-i1,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.2, 23.0, 1.6, 2.7, 3.1, 0.0, 69.4, 48.3, 51.7,30.599999999999994,0.0 +1.8068350668647846,1.81,a-cure-i1,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 3.1, 12.5, 48.6, 3.1, 0.0, 32.7, 48.6, 51.4,67.3,7.6 +1,1,a-cure-i1,2016-17,Berkley - Berkley Community School,00270010, 0.0, 0.2, 0.0, 0.9, 2.8, 0.0, 96.1, 50.5, 49.5,3.9000000000000057,3.3 +1,1,a-cure-i1,2016-17,Berkley - Berkley Middle School,00270305, 0.0, 0.8, 1.0, 1.5, 2.6, 0.0, 94.1, 52.0, 48.0,5.900000000000006,4.3 +1,1,a-cure-i1,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 2.5, 14.6, 6.7, 3.9, 0.3, 71.9, 51.7, 48.0,28.099999999999994,3.4 +1,1,a-cure-i1,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 0.2, 1.8, 2.2, 4.8, 2.4, 0.2, 88.5, 48.6, 51.4,11.5,0.0 +1,1,a-cure-i1,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.3, 3.1, 1.6, 7.2, 3.4, 0.5, 84.0, 53.7, 46.3,16.0,3.5 +1,1,a-cure-i1,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 3.1, 1.7, 11.1, 6.8, 0.0, 77.3, 43.8, 56.3,22.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Berlin - Berlin Memorial,00280005, 0.5, 2.1, 0.5, 3.7, 4.2, 0.0, 88.9, 42.6, 57.4,11.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 3.1, 1.0, 2.6, 2.1, 0.0, 91.3, 47.8, 52.2,8.700000000000003,2.5 +1,1,a-cure-i1,2016-17,Beverly - Ayers/Ryal Side School,00300055, 0.0, 4.4, 3.4, 17.0, 2.1, 0.0, 73.1, 48.0, 52.0,26.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Beverly - Beverly High,00300505, 0.0, 2.7, 3.0, 10.8, 2.2, 0.2, 81.2, 50.2, 49.8,18.799999999999997,4.4 +1,1,a-cure-i1,2016-17,Beverly - Briscoe Middle,00300305, 0.0, 2.4, 3.0, 9.5, 3.0, 0.0, 82.2, 46.1, 53.9,17.799999999999997,4.9 +1,1,a-cure-i1,2016-17,Beverly - Centerville Elementary,00300010, 0.0, 0.6, 3.9, 15.4, 3.9, 0.0, 76.3, 47.8, 52.2,23.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Beverly - Cove Elementary,00300015, 0.0, 1.3, 3.0, 11.4, 6.7, 0.2, 77.4, 47.8, 52.2,22.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Beverly - Hannah Elementary,00300033, 0.0, 1.3, 1.3, 11.8, 4.7, 0.0, 80.8, 48.6, 51.4,19.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Beverly - McKeown School,00300002, 0.0, 0.9, 5.4, 11.6, 8.0, 0.0, 74.1, 36.6, 63.4,25.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Beverly - North Beverly Elementary,00300040, 0.3, 2.0, 2.0, 10.5, 2.6, 0.0, 82.6, 48.1, 51.9,17.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Billerica - Billerica Memorial High School,00310505, 0.1, 6.4, 2.3, 4.6, 2.0, 0.3, 84.3, 50.1, 49.9,15.700000000000003,2.2 +1,1,a-cure-i1,2016-17,Billerica - Eugene C Vining,00310030, 0.0, 4.6, 2.0, 10.2, 6.1, 0.5, 76.6, 46.2, 53.8,23.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Billerica - Frederick J Dutile,00310007, 0.0, 3.3, 4.3, 5.6, 2.3, 0.0, 84.5, 49.8, 50.2,15.5,0.0 +1,1,a-cure-i1,2016-17,Billerica - Hajjar Elementary,00310026, 0.4, 8.6, 4.6, 8.4, 1.0, 0.0, 76.9, 46.8, 53.2,23.099999999999994,3.4 +1,1,a-cure-i1,2016-17,Billerica - John F Kennedy,00310012, 0.0, 2.8, 1.6, 2.8, 2.2, 0.0, 90.7, 49.5, 50.5,9.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Billerica - Locke Middle,00310310, 0.0, 6.2, 2.2, 3.4, 2.6, 0.2, 85.4, 48.9, 51.1,14.599999999999994,2.5 +1,1,a-cure-i1,2016-17,Billerica - Marshall Middle School,00310305, 0.2, 5.5, 3.2, 3.9, 1.3, 0.2, 85.9, 50.4, 49.6,14.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Billerica - Parker,00310015, 0.4, 10.5, 5.9, 6.9, 3.2, 0.0, 73.2, 44.2, 55.8,26.799999999999997,3.5 +1,1,a-cure-i1,2016-17,Billerica - Thomas Ditson,00310005, 0.0, 9.0, 5.0, 6.1, 4.4, 0.0, 75.5, 51.1, 48.9,24.5,0.0 +1,1,a-cure-i1,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.8, 0.6, 2.9, 1.6, 0.0, 94.1, 51.8, 48.2,5.900000000000006,1.5 +1,1,a-cure-i1,2016-17,Blackstone-Millville - A F Maloney,06220015, 0.3, 1.4, 2.4, 5.5, 4.1, 0.0, 86.3, 52.7, 47.3,13.700000000000003,0.0 +12.108108108108098,5,a-cure-i1,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 1.8, 0.9, 3.6, 1.1, 0.0, 92.6, 51.3, 48.7,7.400000000000006,5.6 +1,1,a-cure-i1,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.2, 1.2, 5.1, 2.5, 0.0, 90.0, 50.7, 49.3,10.0,3.2 +1,1,a-cure-i1,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.7, 1.7, 7.5, 4.8, 0.0, 85.3, 43.2, 56.8,14.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Blackstone-Millville - Millville Elementary,06220010, 0.0, 1.4, 0.4, 6.7, 2.1, 0.0, 89.4, 44.9, 55.1,10.599999999999994,0.0 +3.1056511056511056,3.11,a-cure-i1,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.8, 0.7, 22.7, 11.9, 4.5, 0.1, 59.3, 44.5, 55.5,40.7,7.9 +6.517241379310344,5,a-cure-i1,2016-17,Boston - Another Course To College,00350541, 0.4, 5.8, 43.0, 39.9, 3.1, 0.4, 7.2, 50.7, 49.3,92.8,37.8 +11.286821705426355,5,a-cure-i1,2016-17,Boston - Baldwin Early Learning Center,00350003, 0.0, 25.8, 15.1, 32.1, 4.4, 0.0, 22.6, 40.3, 59.7,77.4,54.6 +7.322033898305085,5,a-cure-i1,2016-17,Boston - Beethoven,00350021, 0.0, 3.6, 23.4, 29.2, 2.7, 0.0, 41.0, 50.5, 49.5,59.0,27.0 +4.979253112033195,4.98,a-cure-i1,2016-17,Boston - Blackstone,00350390, 0.0, 1.5, 24.1, 69.4, 1.2, 0.2, 3.6, 47.4, 52.6,96.4,30.0 +13.268703898840883,5,a-cure-i1,2016-17,Boston - Boston Adult Academy,00350548, 0.0, 2.0, 53.8, 37.1, 1.0, 1.0, 5.1, 51.3, 48.7,94.9,78.69999999999999 +10.642285714285714,5,a-cure-i1,2016-17,Boston - Boston Arts Academy,00350546, 0.0, 4.5, 40.5, 39.4, 3.1, 0.0, 12.5, 63.8, 36.2,87.5,58.2 +18.71345029239766,5,a-cure-i1,2016-17,Boston - Boston Collaborative High School,00350755, 1.0, 1.0, 43.0, 39.4, 1.0, 0.0, 14.5, 48.2, 51.8,85.5,100.0 +7.745222929936305,5,a-cure-i1,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.4, 4.8, 36.0, 51.2, 1.8, 0.0, 5.8, 48.8, 51.2,94.2,45.599999999999994 +6.850152905198777,5,a-cure-i1,2016-17,Boston - Boston International High School,00350507, 0.0, 3.4, 47.4, 45.5, 1.1, 0.8, 1.9, 48.1, 51.9,98.1,42.0 +9.069679849340865,5,a-cure-i1,2016-17,Boston - Boston Latin,00350560, 0.1, 29.0, 8.0, 12.1, 3.8, 0.0, 46.9, 54.9, 45.1,53.1,30.099999999999998 +9.98019801980198,5,a-cure-i1,2016-17,Boston - Boston Latin Academy,00350545, 0.4, 21.9, 22.7, 22.6, 2.9, 0.2, 29.3, 58.1, 41.9,70.7,44.1 +10.264150943396226,5,a-cure-i1,2016-17,Boston - Boston Teachers Union School,00350012, 0.3, 2.7, 23.0, 39.5, 3.4, 0.0, 31.1, 48.6, 51.4,68.9,44.2 +5.970401691331925,5,a-cure-i1,2016-17,Boston - Brighton High,00350505, 0.4, 3.1, 44.3, 45.7, 1.0, 0.1, 5.4, 39.7, 60.3,94.6,35.300000000000004 +1,1,a-cure-i1,2016-17,Boston - Carter Developmental Center,00350036, 0.0, 13.8, 51.7, 17.2, 0.0, 3.4, 13.8, 37.9, 62.1,86.2,0.0 +10.910569105691055,5,a-cure-i1,2016-17,Boston - Charles H Taylor,00350054, 1.0, 1.2, 75.1, 18.1, 2.8, 0.2, 1.6, 48.9, 51.1,98.4,67.1 +8.037296037296038,5,a-cure-i1,2016-17,Boston - Charles Sumner,00350052, 0.0, 1.4, 19.2, 60.8, 4.3, 0.2, 14.2, 46.8, 53.2,85.8,43.1 +7.578059071729958,5,a-cure-i1,2016-17,Boston - Charlestown High,00350515, 0.1, 17.0, 33.1, 43.5, 1.1, 0.0, 5.2, 39.9, 60.1,94.8,44.9 +8.194690265486726,5,a-cure-i1,2016-17,Boston - Clarence R Edwards Middle,00350430, 0.0, 7.5, 13.1, 68.1, 1.8, 0.0, 9.6, 45.7, 54.3,90.4,46.300000000000004 +11.51279426816786,5,a-cure-i1,2016-17,Boston - Community Academy,00350518, 0.0, 0.0, 68.2, 25.0, 4.5, 0.0, 2.3, 11.4, 88.6,97.7,70.3 +8.441717791411044,5,a-cure-i1,2016-17,Boston - Community Academy of Science and Health,00350581, 0.0, 3.3, 69.6, 23.3, 1.6, 0.0, 2.2, 46.0, 54.0,97.8,51.60000000000001 +8.430538172715895,5,a-cure-i1,2016-17,Boston - Curley K-8 School,00350020, 0.0, 2.5, 18.7, 53.8, 4.7, 0.1, 20.1, 50.4, 49.6,79.9,42.1 +4.2155688622754495,4.22,a-cure-i1,2016-17,Boston - Curtis Guild,00350062, 0.0, 0.6, 1.0, 81.2, 0.6, 0.0, 16.5, 47.6, 52.4,83.5,22.0 +1.2378223495702008,1.24,a-cure-i1,2016-17,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 1.0, 62.5, 6.3, 0.0, 30.2, 51.0, 49.0,69.8,5.4 +12.980512820512821,5,a-cure-i1,2016-17,Boston - David A Ellis,00350072, 0.2, 0.2, 35.8, 59.6, 1.6, 0.0, 2.5, 50.2, 49.8,97.5,79.10000000000001 +9.382113821138212,5,a-cure-i1,2016-17,Boston - Dearborn,00350074, 0.6, 0.3, 67.3, 26.5, 3.6, 0.0, 1.6, 45.0, 55.0,98.4,57.7 +5.957446808510639,5,a-cure-i1,2016-17,Boston - Dennis C Haley,00350077, 0.2, 1.1, 30.8, 36.9, 5.8, 0.4, 24.8, 51.5, 48.5,75.2,28.000000000000004 +4.051724137931036,4.05,a-cure-i1,2016-17,Boston - Donald Mckay,00350080, 0.0, 0.5, 2.2, 89.2, 0.8, 0.0, 7.2, 48.8, 51.2,92.8,23.500000000000004 +7.816666666666666,5,a-cure-i1,2016-17,Boston - Dorchester Academy,00350651, 0.0, 1.0, 61.6, 32.3, 1.0, 0.0, 4.0, 54.5, 45.5,96.0,46.9 +11.454545454545455,5,a-cure-i1,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 1.1, 1.1, 50.3, 42.9, 1.6, 0.0, 3.2, 44.4, 55.6,96.8,69.3 +8.974958263772956,5,a-cure-i1,2016-17,Boston - Dr. William Henderson Lower,00350266, 0.0, 13.8, 25.8, 17.5, 2.3, 0.5, 40.1, 52.1, 47.9,59.9,33.6 +7.7346938775510194,5,a-cure-i1,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.2, 6.7, 43.2, 25.7, 2.4, 0.2, 21.6, 45.3, 54.7,78.4,37.9 +16.779944289693592,5,a-cure-i1,2016-17,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.2, 5.9, 62.4, 2.4, 0.0, 28.2, 44.7, 55.3,71.8,75.3 +4.807339449541284,4.81,a-cure-i1,2016-17,Boston - East Boston High,00350530, 0.6, 1.3, 6.9, 77.7, 0.8, 0.0, 12.8, 43.3, 56.7,87.2,26.2 +6.58600237247924,5,a-cure-i1,2016-17,Boston - Edison K-8,00350375, 0.6, 15.7, 19.9, 45.3, 2.6, 0.1, 15.7, 45.6, 54.4,84.3,34.699999999999996 +4.166666666666667,4.17,a-cure-i1,2016-17,Boston - Edward Everett,00350088, 0.4, 19.1, 42.8, 30.6, 3.2, 0.0, 4.0, 47.1, 52.9,96.0,25.0 +9.30232558139535,5,a-cure-i1,2016-17,Boston - ELC - West Zone,00350006, 0.9, 7.9, 22.8, 49.1, 5.3, 0.0, 14.0, 45.6, 54.4,86.0,50.0 +12.639618138424822,5,a-cure-i1,2016-17,Boston - Eliot Elementary,00350096, 0.2, 6.8, 9.5, 19.7, 5.6, 0.2, 58.1, 49.3, 50.7,41.9,33.1 +5.809076682316119,5,a-cure-i1,2016-17,Boston - Ellis Mendell,00350100, 0.0, 0.4, 22.5, 33.6, 7.4, 0.0, 36.1, 47.5, 52.5,63.9,23.2 +9.125138427464007,5,a-cure-i1,2016-17,Boston - Excel High School,00350522, 0.4, 21.9, 37.7, 28.8, 1.1, 0.4, 9.7, 38.1, 61.9,90.3,51.49999999999999 +9.461457233368533,5,a-cure-i1,2016-17,Boston - Fenway High School,00350540, 0.0, 3.6, 33.9, 55.3, 1.7, 0.3, 5.3, 52.8, 47.2,94.7,56.0 +6.4080100125156445,5,a-cure-i1,2016-17,Boston - Franklin D Roosevelt,00350116, 0.0, 2.2, 33.1, 43.0, 1.3, 0.2, 20.1, 51.0, 49.0,79.9,32.0 +8.61965317919075,5,a-cure-i1,2016-17,Boston - Gardner Pilot Academy,00350326, 0.0, 5.2, 12.0, 64.8, 4.0, 0.5, 13.5, 46.9, 53.1,86.5,46.599999999999994 +6.293464858199753,5,a-cure-i1,2016-17,Boston - George H Conley,00350122, 0.0, 2.7, 36.5, 39.2, 2.7, 0.0, 18.9, 43.7, 56.3,81.1,31.9 +15.125131440588856,5,a-cure-i1,2016-17,Boston - Greater Egleston Community High School,00350543, 0.9, 0.0, 30.7, 61.8, 1.8, 0.0, 4.9, 46.2, 53.8,95.1,89.9 +4.591768631813125,4.59,a-cure-i1,2016-17,Boston - Harvard-Kent,00350200, 0.2, 29.1, 23.0, 34.5, 2.8, 0.2, 10.1, 44.2, 55.8,89.9,25.799999999999997 +8.661899897854953,5,a-cure-i1,2016-17,Boston - Haynes Early Education Center,00350010, 1.1, 2.1, 52.4, 38.5, 3.7, 0.0, 2.1, 47.1, 52.9,97.9,53.0 +7.47470398277718,5,a-cure-i1,2016-17,Boston - Henry Grew,00350135, 0.0, 2.1, 42.7, 42.7, 5.0, 0.4, 7.1, 50.2, 49.8,92.9,43.400000000000006 +7.400809716599191,5,a-cure-i1,2016-17,Boston - Higginson,00350015, 0.0, 0.6, 41.0, 53.8, 2.9, 0.6, 1.2, 45.7, 54.3,98.8,45.7 +11.393692777212614,5,a-cure-i1,2016-17,Boston - Higginson/Lewis K-8,00350377, 0.6, 0.8, 51.5, 40.3, 5.1, 0.0, 1.7, 44.8, 55.2,98.3,70.0 +1.043869516310461,1.04,a-cure-i1,2016-17,Boston - Horace Mann School for the Deaf,00350750, 0.0, 6.7, 37.8, 41.1, 3.3, 0.0, 11.1, 38.9, 61.1,88.9,5.8 +2.6666666666666665,2.67,a-cure-i1,2016-17,Boston - Hugh Roe O'Donnell,00350141, 0.0, 2.6, 0.7, 91.2, 1.5, 0.0, 4.0, 48.5, 51.5,96.0,16.0 +5.362350380848748,5,a-cure-i1,2016-17,Boston - Jackson Mann,00350013, 0.3, 11.0, 38.4, 39.1, 3.1, 0.0, 8.1, 42.5, 57.5,91.9,30.8 +7.432258064516129,5,a-cure-i1,2016-17,Boston - James Condon Elementary,00350146, 0.1, 7.4, 34.9, 31.6, 3.1, 0.5, 22.5, 49.5, 50.5,77.5,36.0 +6.446521287642784,5,a-cure-i1,2016-17,Boston - James J Chittick,00350154, 0.0, 1.7, 64.2, 26.7, 3.7, 0.0, 3.7, 44.9, 55.1,96.3,38.800000000000004 +4.680412371134022,4.68,a-cure-i1,2016-17,Boston - James Otis,00350156, 0.0, 2.0, 5.0, 69.1, 1.5, 0.0, 22.4, 51.5, 48.5,77.6,22.700000000000003 +10.323618090452262,5,a-cure-i1,2016-17,Boston - James P Timilty Middle,00350485, 0.0, 1.6, 29.4, 65.8, 2.4, 0.3, 0.5, 46.9, 53.1,99.5,64.2 +6.151224707135249,5,a-cure-i1,2016-17,Boston - James W Hennigan,00350153, 0.0, 2.2, 27.7, 62.1, 1.7, 0.2, 6.1, 49.7, 50.3,93.9,36.099999999999994 +8.918304033092037,5,a-cure-i1,2016-17,Boston - Jeremiah E Burke High,00350525, 0.0, 0.6, 72.8, 22.5, 0.8, 0.0, 3.3, 48.1, 51.9,96.7,53.9 +10.474967907573811,5,a-cure-i1,2016-17,Boston - John D Philbrick,00350172, 0.0, 1.2, 40.7, 32.6, 2.9, 0.6, 22.1, 47.1, 52.9,77.9,51.0 +6.1112277019937045,5,a-cure-i1,2016-17,Boston - John F Kennedy,00350166, 0.0, 1.0, 20.4, 71.5, 2.4, 0.0, 4.7, 50.0, 50.0,95.3,36.4 +8.286315789473685,5,a-cure-i1,2016-17,Boston - John W McCormack,00350179, 0.0, 7.2, 32.0, 55.0, 0.9, 0.0, 5.0, 48.6, 51.4,95.0,49.2 +4.779011099899092,4.78,a-cure-i1,2016-17,Boston - John Winthrop,00350180, 0.6, 2.7, 58.4, 31.9, 4.0, 1.5, 0.9, 53.5, 46.5,99.1,29.6 +12.757020757020756,5,a-cure-i1,2016-17,Boston - Joseph J Hurley,00350182, 0.0, 0.6, 6.2, 72.5, 2.5, 0.0, 18.1, 50.7, 49.3,81.9,65.3 +3.9786552828175026,3.98,a-cure-i1,2016-17,Boston - Joseph Lee,00350183, 0.0, 6.3, 53.4, 28.8, 5.0, 0.3, 6.3, 44.0, 56.0,93.7,23.3 +4.292020373514432,4.29,a-cure-i1,2016-17,Boston - Joseph P Manning,00350184, 0.0, 3.8, 19.0, 27.8, 7.6, 0.6, 41.1, 46.8, 53.2,58.9,15.8 +6.888068880688807,5,a-cure-i1,2016-17,Boston - Joseph P Tynan,00350181, 0.0, 8.2, 39.2, 27.6, 6.3, 0.0, 18.7, 41.8, 58.2,81.3,35.0 +10.046511627906977,5,a-cure-i1,2016-17,Boston - Josiah Quincy,00350286, 0.1, 57.1, 15.7, 13.5, 3.9, 0.0, 9.7, 49.8, 50.2,90.3,56.699999999999996 +6.882483370288248,5,a-cure-i1,2016-17,Boston - Joyce Kilmer,00350190, 0.0, 8.7, 13.6, 17.5, 5.1, 0.2, 54.9, 45.7, 54.3,45.1,19.4 +7.919028340080971,5,a-cure-i1,2016-17,Boston - King K-8,00350376, 0.2, 0.8, 63.3, 30.0, 4.1, 0.4, 1.2, 48.6, 51.4,98.8,48.9 +2.7863247863247866,2.79,a-cure-i1,2016-17,Boston - Lee Academy,00350001, 2.1, 7.0, 56.1, 24.6, 3.2, 0.5, 6.4, 47.1, 52.9,93.6,16.3 +7.829787234042553,5,a-cure-i1,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 9.2, 45.9, 40.7, 2.7, 0.2, 1.3, 47.0, 53.0,98.7,48.3 +9.064377682403432,5,a-cure-i1,2016-17,Boston - Lyndon,00350262, 0.0, 2.1, 8.8, 33.0, 2.7, 0.0, 53.4, 48.3, 51.7,46.6,26.4 +8.05,5,a-cure-i1,2016-17,Boston - Lyon K-8,00350004, 0.0, 10.1, 15.8, 30.9, 7.2, 0.0, 36.0, 44.6, 55.4,64.0,32.2 +5.936962750716332,5,a-cure-i1,2016-17,Boston - Lyon Upper 9-12,00350655, 0.0, 6.3, 24.6, 34.1, 4.8, 0.0, 30.2, 50.0, 50.0,69.8,25.9 +7.8933333333333335,5,a-cure-i1,2016-17,Boston - Madison Park High,00350537, 0.5, 0.8, 39.2, 53.9, 3.0, 0.1, 2.5, 43.5, 56.5,97.5,48.1 +4.344827586206897,4.34,a-cure-i1,2016-17,Boston - Manassah E Bradley,00350215, 0.0, 6.3, 4.9, 54.9, 3.5, 0.0, 30.4, 50.0, 50.0,69.6,18.9 +10.969574036511156,5,a-cure-i1,2016-17,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 4.2, 93.3, 1.1, 0.0, 1.4, 59.9, 40.1,98.6,67.6 +6.19522776572668,5,a-cure-i1,2016-17,Boston - Mario Umana Academy,00350656, 0.0, 1.8, 3.6, 85.8, 0.9, 0.1, 7.8, 47.5, 52.5,92.2,35.699999999999996 +11.066381156316915,5,a-cure-i1,2016-17,Boston - Mather,00350227, 0.5, 31.3, 37.8, 18.0, 5.8, 0.0, 6.6, 50.9, 49.1,93.4,64.6 +7.8691206543967285,5,a-cure-i1,2016-17,Boston - Mattahunt,00350226, 0.2, 0.2, 71.5, 23.7, 2.4, 0.0, 2.2, 49.8, 50.2,97.8,48.1 +9.11722731906218,5,a-cure-i1,2016-17,Boston - Maurice J Tobin,00350229, 0.2, 0.2, 31.8, 63.7, 1.9, 0.2, 1.9, 49.5, 50.5,98.1,55.9 +8.369785794813978,5,a-cure-i1,2016-17,Boston - Michael J Perkins,00350231, 1.3, 2.1, 42.9, 38.7, 3.8, 0.0, 11.3, 53.8, 46.2,88.7,46.4 +8.83435582822086,5,a-cure-i1,2016-17,Boston - Mildred Avenue K-8,00350378, 1.8, 1.2, 66.3, 26.5, 2.0, 0.0, 2.2, 49.5, 50.5,97.8,54.0 +9.642228739002933,5,a-cure-i1,2016-17,Boston - Mission Hill School,00350382, 0.5, 0.5, 20.7, 39.2, 6.9, 0.5, 31.8, 41.5, 58.5,68.2,41.1 +10.40381558028617,5,a-cure-i1,2016-17,Boston - Mozart,00350237, 0.6, 5.7, 26.9, 21.1, 8.6, 0.0, 37.1, 42.3, 57.7,62.9,40.9 +8.253164556962025,5,a-cure-i1,2016-17,Boston - Nathan Hale,00350243, 0.0, 2.9, 50.6, 36.8, 4.6, 0.0, 5.2, 54.0, 46.0,94.8,48.9 +9.710233029381966,5,a-cure-i1,2016-17,Boston - New Mission High School,00350542, 0.6, 0.3, 65.0, 31.6, 1.3, 0.0, 1.3, 49.1, 50.9,98.7,59.900000000000006 +6.873586844809866,5,a-cure-i1,2016-17,Boston - O W Holmes,00350138, 0.3, 2.7, 60.3, 27.7, 5.7, 0.5, 2.7, 46.7, 53.3,97.3,41.8 +9.754780652418448,5,a-cure-i1,2016-17,Boston - O'Bryant School Math/Science,00350575, 0.4, 22.5, 32.8, 30.8, 2.2, 0.1, 11.1, 55.7, 44.3,88.9,54.2 +8.03864734299517,5,a-cure-i1,2016-17,Boston - Oliver Hazard Perry,00350255, 0.0, 3.2, 17.1, 17.1, 3.6, 0.5, 58.6, 42.8, 57.2,41.4,20.8 +5.453061224489796,5,a-cure-i1,2016-17,Boston - Orchard Gardens,00350257, 0.5, 1.5, 46.8, 46.7, 2.1, 0.3, 2.0, 48.8, 51.2,98.0,33.4 +5.418803418803419,5,a-cure-i1,2016-17,Boston - Patrick J Kennedy,00350264, 0.0, 2.0, 2.4, 88.6, 0.7, 0.0, 6.4, 46.8, 53.2,93.6,31.7 +7.506792058516197,5,a-cure-i1,2016-17,Boston - Paul A Dever,00350268, 0.2, 5.5, 22.9, 64.3, 2.4, 0.2, 4.3, 46.5, 53.5,95.7,44.900000000000006 +7.7690721649484535,5,a-cure-i1,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 3.0, 65.5, 25.1, 3.4, 0.0, 3.0, 46.3, 53.7,97.0,47.1 +4.4152431011826545,4.42,a-cure-i1,2016-17,Boston - Phineas Bates,00350278, 0.4, 5.7, 27.5, 37.1, 5.4, 0.0, 23.9, 48.9, 51.1,76.1,21.0 +8.560083594566354,5,a-cure-i1,2016-17,Boston - Quincy Upper School,00350565, 0.2, 51.0, 21.3, 20.4, 2.6, 0.2, 4.3, 44.9, 55.1,95.7,51.2 +10.604651162790699,5,a-cure-i1,2016-17,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 2.2, 90.4, 2.0, 0.0, 5.4, 54.5, 45.5,94.6,62.7 +5.659730722154222,5,a-cure-i1,2016-17,Boston - Richard J Murphy,00350240, 0.3, 38.9, 18.7, 20.0, 3.4, 0.4, 18.3, 46.5, 53.5,81.7,28.9 +8.56760374832664,5,a-cure-i1,2016-17,Boston - Roger Clap,00350298, 0.6, 5.9, 37.6, 28.8, 1.8, 0.0, 25.3, 52.9, 47.1,74.7,40.0 +9.326829268292682,5,a-cure-i1,2016-17,Boston - Samuel Adams,00350302, 0.7, 0.3, 4.1, 75.5, 1.4, 0.0, 18.0, 46.9, 53.1,82.0,47.8 +9.013844515441958,5,a-cure-i1,2016-17,Boston - Samuel W Mason,00350304, 0.4, 1.7, 49.4, 37.2, 4.3, 0.9, 6.1, 43.3, 56.7,93.9,52.9 +5.931313131313132,5,a-cure-i1,2016-17,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 23.6, 73.7, 1.5, 0.3, 1.0, 48.4, 51.6,99.0,36.7 +7.341772151898734,5,a-cure-i1,2016-17,Boston - Snowden International School at Copley,00350690, 0.5, 6.6, 35.3, 49.7, 2.1, 0.7, 5.2, 52.6, 47.4,94.8,43.5 +6.113285272914523,5,a-cure-i1,2016-17,Boston - TechBoston Academy,00350657, 0.4, 3.8, 65.9, 24.2, 2.6, 0.2, 2.9, 44.5, 55.5,97.1,37.10000000000001 +8.048979591836735,5,a-cure-i1,2016-17,Boston - The English High,00350535, 0.4, 1.6, 41.6, 53.9, 0.5, 0.0, 2.0, 44.3, 55.7,98.0,49.300000000000004 +3.510791366906474,3.51,a-cure-i1,2016-17,Boston - Thomas J Kenny,00350328, 0.3, 17.2, 41.3, 20.5, 4.2, 0.0, 16.6, 46.1, 53.9,83.4,18.299999999999997 +6.5062240663900415,5,a-cure-i1,2016-17,Boston - UP Academy Holland,00350167, 0.0, 4.6, 43.5, 41.8, 6.5, 0.1, 3.6, 49.1, 50.9,96.4,39.2 +8.985823336968375,5,a-cure-i1,2016-17,Boston - Urban Science Academy,00350579, 0.2, 1.4, 50.9, 36.3, 2.8, 0.0, 8.3, 40.0, 60.0,91.7,51.5 +4.510288065843621,4.51,a-cure-i1,2016-17,Boston - Warren-Prescott,00350346, 0.3, 5.3, 13.7, 24.4, 4.6, 0.2, 51.4, 46.4, 53.6,48.6,13.7 +7.594390507011866,5,a-cure-i1,2016-17,Boston - Washington Irving Middle,00350445, 0.6, 1.2, 41.3, 47.4, 2.3, 0.0, 7.3, 48.3, 51.7,92.7,44.0 +6.346368715083799,5,a-cure-i1,2016-17,Boston - West Roxbury Academy,00350658, 0.6, 2.0, 47.4, 37.7, 1.6, 0.2, 10.5, 46.6, 53.4,89.5,35.5 +5.932584269662921,5,a-cure-i1,2016-17,Boston - William E Russell,00350366, 0.8, 11.9, 29.9, 51.7, 3.4, 0.3, 2.1, 49.1, 50.9,97.9,36.3 +12.702819956616052,5,a-cure-i1,2016-17,Boston - William Ellery Channing,00350360, 0.0, 1.6, 48.8, 38.9, 2.5, 0.4, 7.8, 54.1, 45.9,92.2,73.2 +4.732984293193717,4.73,a-cure-i1,2016-17,Boston - William H Ohrenberger,00350258, 0.2, 4.7, 23.4, 44.0, 3.8, 0.3, 23.6, 44.0, 56.0,76.4,22.6 +3.928571428571429,3.93,a-cure-i1,2016-17,Boston - William McKinley,00350363, 0.3, 0.9, 47.8, 37.4, 3.3, 0.0, 10.4, 27.6, 72.4,89.6,22.0 +8.11522633744856,5,a-cure-i1,2016-17,Boston - William Monroe Trotter,00350370, 0.0, 0.6, 59.9, 32.5, 3.5, 0.7, 2.8, 47.9, 52.1,97.2,49.3 +8.31111111111111,5,a-cure-i1,2016-17,Boston - Winship Elementary,00350374, 0.0, 12.3, 18.5, 36.2, 4.5, 0.4, 28.0, 45.3, 54.7,72.0,37.4 +9.226395939086295,5,a-cure-i1,2016-17,Boston - Young Achievers,00350380, 0.2, 0.0, 52.6, 44.2, 1.5, 0.0, 1.5, 48.6, 51.4,98.5,56.800000000000004 +10.91047619047619,5,a-cure-i1,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.7, 2.2, 27.5, 19.7, 2.4, 0.0, 47.5, 51.9, 48.1,52.5,35.8 +3.611814345991561,3.61,a-cure-i1,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 1.0, 2.0, 48.3, 40.1, 3.2, 0.2, 5.2, 57.7, 42.3,94.8,21.4 +6.842332613390929,5,a-cure-i1,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.8, 54.8, 32.6, 4.4, 0.0, 7.4, 48.5, 51.5,92.6,39.6 +5.491803278688525,5,a-cure-i1,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.5, 1.0, 69.2, 24.8, 1.9, 0.2, 2.4, 48.2, 51.8,97.6,33.5 +4.824365482233502,4.82,a-cure-i1,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.1, 0.3, 64.1, 31.0, 3.0, 0.0, 1.5, 50.7, 49.3,98.5,29.7 +1,1,a-cure-i1,2016-17,Bourne - Bourne High School,00360505, 0.0, 2.1, 1.6, 4.4, 4.1, 0.2, 87.6, 49.5, 50.5,12.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Bourne - Bourne Middle School,00360325, 0.8, 2.4, 1.4, 3.0, 3.0, 0.0, 89.5, 50.9, 49.1,10.5,0.0 +1,1,a-cure-i1,2016-17,Bourne - Bournedale Elementary School,00360005, 0.9, 0.7, 1.6, 3.7, 3.2, 0.2, 89.6, 46.7, 53.3,10.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Bourne - Peebles Elementary School,00360010, 2.0, 1.4, 2.3, 3.7, 3.9, 0.3, 86.5, 49.9, 50.1,13.5,0.0 +1,1,a-cure-i1,2016-17,Boxford - Harry Lee Cole,00380005, 0.3, 4.6, 0.0, 3.1, 4.9, 0.0, 87.2, 44.6, 55.4,12.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Boxford - Spofford Pond,00380013, 0.0, 3.3, 0.2, 2.6, 2.3, 0.2, 91.4, 49.1, 50.9,8.599999999999994,0.0 +6.857142857142857,5,a-cure-i1,2016-17,Boylston - Boylston Elementary,00390005, 0.7, 4.8, 1.4, 3.4, 3.8, 0.0, 86.0, 51.9, 48.1,14.0,6.0 +1,1,a-cure-i1,2016-17,Braintree - Archie T Morrison,00400033, 0.0, 13.3, 8.6, 5.2, 1.9, 0.2, 70.8, 50.6, 49.4,29.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Braintree - Braintree High,00400505, 0.1, 13.1, 5.9, 3.7, 0.8, 0.1, 76.3, 50.0, 50.0,23.700000000000003,3.6999999999999997 +1,1,a-cure-i1,2016-17,Braintree - Donald Ross,00400050, 1.4, 17.7, 7.1, 7.8, 1.4, 0.0, 64.5, 45.0, 55.0,35.5,0.0 +1,1,a-cure-i1,2016-17,Braintree - East Middle School,00400305, 0.4, 13.5, 6.8, 3.8, 1.9, 0.0, 73.5, 48.6, 51.4,26.5,3.8 +1,1,a-cure-i1,2016-17,Braintree - Highlands,00400015, 0.5, 13.6, 2.6, 2.6, 0.2, 0.0, 80.5, 50.8, 49.2,19.5,0.0 +1,1,a-cure-i1,2016-17,Braintree - Hollis,00400005, 0.5, 17.2, 2.8, 4.8, 1.4, 0.0, 73.3, 46.9, 53.1,26.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Braintree - Liberty,00400025, 0.0, 24.3, 1.6, 5.1, 1.3, 0.2, 67.4, 52.2, 47.8,32.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Braintree - Mary E Flaherty School,00400020, 0.3, 22.4, 2.2, 5.1, 1.9, 0.0, 68.2, 50.4, 49.6,31.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 0.4, 16.8, 5.0, 4.6, 2.7, 0.0, 70.6, 48.9, 51.1,29.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Braintree - South Middle School,00400310, 0.1, 16.1, 2.2, 3.8, 1.0, 0.0, 76.7, 51.3, 48.7,23.299999999999997,2.6 +1,1,a-cure-i1,2016-17,Brewster - Eddy Elementary,00410010, 0.0, 1.3, 2.6, 4.7, 3.0, 0.0, 88.4, 49.4, 50.6,11.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Brewster - Stony Brook Elementary,00410005, 0.0, 0.8, 2.7, 8.1, 5.8, 0.0, 82.6, 51.7, 48.3,17.400000000000006,0.0 +1.5582329317269077,1.56,a-cure-i1,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.7, 1.5, 60.7, 33.0, 3.7, 0.0, 0.4, 53.6, 46.4,99.6,9.7 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.8, 3.6, 2.0, 3.8, 0.2, 89.7, 45.8, 54.2,10.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.2, 2.3, 3.9, 2.7, 3.4, 0.1, 87.4, 50.0, 50.0,12.599999999999994,3.3000000000000003 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.4, 1.8, 4.6, 2.0, 2.2, 0.0, 89.0, 45.8, 54.2,11.0,4.1 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 2.8, 5.9, 0.3, 1.9, 0.0, 89.2, 49.7, 50.3,10.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.6, 6.0, 2.7, 3.5, 0.1, 86.1, 47.1, 52.9,13.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 2.3, 2.7, 2.7, 3.5, 0.1, 88.6, 50.5, 49.5,11.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 9.1, 0.0, 90.9, 45.5, 54.5,9.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.4, 1.1, 3.5, 3.0, 5.1, 0.3, 86.6, 46.7, 53.3,13.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Brimfield - Brimfield Elementary,00430005, 0.0, 1.8, 3.5, 0.4, 0.0, 0.0, 94.4, 50.9, 49.1,5.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.2, 0.2, 0.2, 2.6, 1.3, 0.0, 95.5, 71.4, 28.2,4.5,0.0 +1,1,a-cure-i1,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.5, 0.7, 2.9, 6.4, 3.1, 0.0, 86.4, 42.1, 57.7,13.599999999999994,1.9 +1,1,a-cure-i1,2016-17,Brockton - Ashfield Middle School,00440421, 0.2, 1.6, 42.7, 9.2, 4.1, 0.4, 41.7, 49.3, 50.7,58.3,3.4 +1.2404494382022473,1.24,a-cure-i1,2016-17,Brockton - Barrett Russell School,00440007, 0.5, 1.8, 58.9, 19.2, 8.7, 0.0, 11.0, 46.6, 53.4,89.0,6.9 +3.3707865168539324,3.37,a-cure-i1,2016-17,Brockton - Brockton Champion High School,00440515, 0.6, 0.6, 38.4, 24.9, 6.2, 0.6, 28.8, 39.0, 61.0,71.2,15.0 +3.270935960591133,3.27,a-cure-i1,2016-17,Brockton - Brockton High,00440505, 0.4, 2.6, 62.2, 12.5, 3.4, 0.2, 18.8, 49.5, 50.5,81.2,16.6 +1.5620641562064155,1.56,a-cure-i1,2016-17,Brockton - Brookfield,00440010, 0.2, 1.7, 55.4, 10.4, 3.6, 0.3, 28.3, 47.5, 52.5,71.7,7.0 +1.1034482758620692,1.1,a-cure-i1,2016-17,Brockton - Downey,00440110, 0.9, 2.1, 51.5, 16.8, 6.6, 0.5, 21.7, 43.4, 56.6,78.3,5.4 +1.186516853932584,1.19,a-cure-i1,2016-17,Brockton - Dr W Arnone Community School,00440001, 1.0, 0.2, 62.0, 18.2, 7.5, 0.0, 11.0, 45.8, 54.2,89.0,6.6 +3.440462427745665,3.44,a-cure-i1,2016-17,Brockton - East Middle School,00440405, 0.0, 0.7, 69.8, 11.3, 4.1, 0.6, 13.5, 44.8, 55.2,86.5,18.6 +1.9098660170523751,1.91,a-cure-i1,2016-17,Brockton - Edgar B Davis,00440023, 0.2, 0.3, 60.9, 14.7, 5.5, 0.5, 17.9, 50.4, 49.6,82.1,9.799999999999999 +9.307068366164543,5,a-cure-i1,2016-17,Brockton - Edison Academy,00440520, 0.0, 1.3, 71.9, 11.8, 1.3, 0.0, 13.7, 47.7, 52.3,86.3,50.2 +1,1,a-cure-i1,2016-17,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 77.1, 14.3, 2.9, 0.0, 5.7, 20.0, 80.0,94.3,0.0 +1,1,a-cure-i1,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 0.3, 1.7, 57.3, 9.4, 4.2, 0.0, 27.1, 36.5, 63.5,72.9,0.0 +1.536878216123499,1.54,a-cure-i1,2016-17,Brockton - Goddard Alternative School,00440400, 0.0, 0.0, 41.7, 14.6, 2.1, 0.0, 41.7, 33.3, 66.7,58.3,5.6 +4.081377151799686,4.08,a-cure-i1,2016-17,Brockton - Hancock,00440045, 0.4, 3.6, 46.0, 8.7, 4.8, 0.3, 36.1, 49.6, 50.4,63.9,16.299999999999997 +1.8612593383137674,1.86,a-cure-i1,2016-17,Brockton - Huntington,00440055, 0.4, 0.2, 76.4, 12.9, 3.8, 0.0, 6.3, 48.4, 51.6,93.7,10.9 +1.772594752186589,1.77,a-cure-i1,2016-17,Brockton - John F Kennedy,00440017, 0.0, 5.1, 44.6, 11.1, 7.8, 0.0, 31.4, 49.9, 50.1,68.6,7.6 +3.4773333333333327,3.48,a-cure-i1,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 0.4, 2.6, 39.2, 26.7, 5.9, 0.1, 25.0, 51.8, 48.2,75.0,16.299999999999997 +2.1566110397946083,2.16,a-cure-i1,2016-17,Brockton - Louis F Angelo Elementary,00440065, 0.8, 6.3, 53.2, 13.1, 4.3, 0.1, 22.1, 48.2, 51.8,77.9,10.5 +2.6878547105561865,2.69,a-cure-i1,2016-17,Brockton - Manthala George Jr. School,00440003, 0.8, 0.4, 36.4, 46.5, 4.0, 0.0, 11.9, 49.5, 50.5,88.1,14.8 +2.991304347826087,2.99,a-cure-i1,2016-17,Brockton - Mary E. Baker School,00440002, 0.1, 1.7, 50.2, 12.9, 4.0, 0.0, 31.0, 48.2, 51.8,69.0,12.9 +2.265642151481888,2.27,a-cure-i1,2016-17,Brockton - North Middle School,00440410, 0.2, 2.1, 70.9, 14.5, 3.0, 0.4, 8.9, 47.0, 53.0,91.1,12.9 +1.3333333333333333,1.33,a-cure-i1,2016-17,Brockton - Oscar F Raymond,00440078, 0.5, 0.7, 76.5, 8.9, 3.5, 0.0, 10.0, 46.9, 53.1,90.0,7.5 +1.3056994818652852,1.31,a-cure-i1,2016-17,Brockton - South Middle School,00440415, 0.0, 3.1, 51.3, 16.0, 6.4, 0.4, 22.8, 47.2, 52.8,77.2,6.300000000000001 +1.574468085106383,1.57,a-cure-i1,2016-17,Brockton - West Middle School,00440420, 0.3, 3.5, 50.6, 14.9, 5.4, 0.5, 24.8, 50.2, 49.8,75.2,7.4 +1,1,a-cure-i1,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.4, 1.9, 54.5, 35.8, 2.0, 0.0, 5.4, 51.2, 48.8,94.6,0.0 +1,1,a-cure-i1,2016-17,Brookfield - Brookfield Elementary,00450005, 0.3, 0.0, 0.3, 4.1, 4.7, 0.0, 90.6, 50.6, 49.4,9.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 15.0, 3.3, 8.3, 15.0, 0.0, 58.3, 50.0, 50.0,41.7,0.0 +1,1,a-cure-i1,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 29.7, 4.7, 7.8, 15.6, 0.0, 42.2, 39.1, 60.9,57.8,0.0 +4.785046728971962,4.79,a-cure-i1,2016-17,Brookline - Brookline High,00460505, 0.0, 16.7, 7.6, 10.4, 8.0, 0.0, 57.2, 49.8, 50.2,42.8,12.799999999999999 +4.336755646817248,4.34,a-cure-i1,2016-17,Brookline - Edith C Baker,00460005, 0.0, 25.4, 5.1, 10.1, 7.9, 0.3, 51.3, 49.2, 50.8,48.7,13.2 +2.6019417475728153,2.6,a-cure-i1,2016-17,Brookline - Edward Devotion,00460015, 0.0, 12.9, 4.9, 13.4, 10.0, 0.0, 58.8, 48.1, 51.9,41.2,6.699999999999999 +6.915601023017902,5,a-cure-i1,2016-17,Brookline - Heath,00460025, 0.0, 17.6, 3.8, 9.0, 8.7, 0.0, 60.9, 50.7, 49.1,39.1,16.9 +2.9387755102040813,2.94,a-cure-i1,2016-17,Brookline - John D Runkle,00460045, 0.0, 15.2, 3.1, 10.1, 10.8, 0.0, 60.8, 48.1, 51.9,39.2,7.199999999999999 +3.7699443413729132,3.77,a-cure-i1,2016-17,Brookline - Lawrence,00460030, 0.0, 31.5, 5.8, 8.4, 8.0, 0.1, 46.1, 48.2, 51.8,53.9,12.700000000000001 +5.00473933649289,5,a-cure-i1,2016-17,Brookline - Michael Driscoll,00460020, 0.2, 14.7, 5.3, 7.5, 14.5, 0.0, 57.8, 48.8, 51.2,42.2,13.2 +8.37752808988764,5,a-cure-i1,2016-17,Brookline - Pierce,00460040, 0.0, 20.7, 5.2, 10.3, 8.3, 0.0, 55.5, 51.2, 48.8,44.5,23.3 +1,1,a-cure-i1,2016-17,Brookline - The Lynch Center,00460060, 0.0, 17.6, 8.8, 13.2, 11.8, 0.0, 48.5, 39.7, 60.3,51.5,0.0 +4.217054263565891,4.22,a-cure-i1,2016-17,Brookline - William H Lincoln,00460035, 0.0, 22.2, 9.9, 12.0, 7.5, 0.0, 48.4, 50.5, 49.5,51.6,13.6 +3.210702341137123,3.21,a-cure-i1,2016-17,Burlington - Burlington High,00480505, 0.5, 16.4, 4.4, 5.7, 2.8, 0.1, 70.1, 48.6, 51.4,29.900000000000006,6.0 +1,1,a-cure-i1,2016-17,Burlington - Fox Hill,00480007, 0.0, 21.1, 5.7, 4.9, 3.9, 0.0, 64.4, 46.4, 53.6,35.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Burlington - Francis Wyman Elementary,00480035, 0.2, 19.8, 9.8, 7.2, 2.8, 0.0, 60.1, 50.9, 49.1,39.9,1.9 +1,1,a-cure-i1,2016-17,Burlington - Marshall Simonds Middle,00480303, 0.4, 11.3, 5.6, 4.6, 4.1, 0.0, 73.9, 46.9, 53.0,26.099999999999994,3.9 +3.2094395280235983,3.21,a-cure-i1,2016-17,Burlington - Memorial,00480015, 0.5, 18.1, 5.2, 4.4, 5.7, 0.0, 66.1, 47.9, 52.1,33.900000000000006,6.8 +1,1,a-cure-i1,2016-17,Burlington - Pine Glen Elementary,00480020, 0.0, 16.0, 3.1, 6.5, 3.7, 0.0, 70.7, 54.4, 45.6,29.299999999999997,0.0 +12.164203612479474,5,a-cure-i1,2016-17,Cambridge - Amigos School,00490006, 0.0, 3.4, 5.0, 43.3, 9.2, 0.0, 39.1, 55.7, 44.3,60.9,46.3 +5.970540098199673,5,a-cure-i1,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 0.6, 11.9, 30.3, 13.5, 4.7, 0.2, 38.9, 48.2, 51.8,61.1,22.8 +5.506172839506173,5,a-cure-i1,2016-17,Cambridge - Cambridge Street Upper School,00490305, 1.1, 9.6, 30.3, 17.6, 5.7, 0.4, 35.2, 50.2, 49.8,64.8,22.3 +5.843478260869565,5,a-cure-i1,2016-17,Cambridge - Cambridgeport,00490007, 0.0, 8.0, 19.9, 10.0, 8.0, 0.0, 54.0, 45.0, 55.0,46.0,16.8 +2.5728643216080407,2.57,a-cure-i1,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 0.4, 8.8, 49.6, 15.4, 5.4, 0.0, 20.4, 48.5, 51.5,79.6,12.8 +3.7480314960629926,3.75,a-cure-i1,2016-17,Cambridge - Graham and Parks,00490080, 0.0, 20.9, 18.9, 5.9, 5.1, 0.0, 49.2, 49.0, 51.0,50.8,11.9 +6.929368029739778,5,a-cure-i1,2016-17,Cambridge - Haggerty,00490020, 0.0, 13.4, 22.5, 6.3, 11.5, 0.0, 46.2, 50.2, 49.8,53.8,23.3 +3.0178861788617883,3.02,a-cure-i1,2016-17,Cambridge - John M Tobin,00490065, 0.7, 15.1, 25.1, 11.0, 9.6, 0.0, 38.5, 49.1, 50.9,61.5,11.6 +4.254777070063694,4.25,a-cure-i1,2016-17,Cambridge - Kennedy-Longfellow,00490040, 0.0, 19.9, 18.4, 17.7, 6.8, 0.0, 37.2, 47.7, 52.3,62.8,16.7 +9.653136531365314,5,a-cure-i1,2016-17,Cambridge - King Open,00490035, 0.3, 8.9, 18.2, 16.6, 10.2, 0.0, 45.8, 47.4, 52.6,54.2,32.7 +5.1050583657587545,5,a-cure-i1,2016-17,Cambridge - Maria L. Baldwin,00490005, 0.3, 9.6, 17.4, 12.9, 11.2, 0.0, 48.6, 51.1, 48.9,51.4,16.4 +8.74931129476584,5,a-cure-i1,2016-17,Cambridge - Martin Luther King Jr.,00490030, 0.0, 22.4, 26.2, 6.6, 17.4, 0.0, 27.4, 49.5, 50.5,72.6,39.699999999999996 +3.282051282051282,3.28,a-cure-i1,2016-17,Cambridge - Morse,00490045, 0.7, 13.1, 23.2, 10.8, 10.5, 0.3, 41.5, 47.1, 52.9,58.5,12.0 +4.903732809430256,4.9,a-cure-i1,2016-17,Cambridge - Peabody,00490050, 0.0, 12.3, 24.4, 6.6, 7.6, 0.0, 49.1, 52.2, 47.8,50.9,15.600000000000001 +8.043010752688172,5,a-cure-i1,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 0.4, 10.7, 35.9, 17.6, 8.8, 1.1, 25.6, 52.3, 47.7,74.4,37.400000000000006 +4.96,4.96,a-cure-i1,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 0.7, 9.8, 30.9, 10.5, 7.6, 0.4, 40.0, 47.3, 52.7,60.0,18.6 +2.9142857142857146,2.91,a-cure-i1,2016-17,Cambridge - Vassal Lane Upper School,00490320, 0.7, 14.2, 26.1, 6.7, 7.8, 0.4, 44.0, 51.5, 48.5,56.0,10.200000000000001 +4.99290780141844,4.99,a-cure-i1,2016-17,Canton - Canton High,00500505, 0.0, 9.1, 10.8, 4.2, 3.9, 0.1, 71.8, 51.0, 48.8,28.200000000000003,8.8 +1,1,a-cure-i1,2016-17,Canton - Dean S Luce,00500020, 0.2, 12.6, 10.0, 4.7, 6.3, 0.8, 65.4, 52.0, 48.0,34.599999999999994,3.7 +1,1,a-cure-i1,2016-17,Canton - John F Kennedy,00500017, 0.0, 11.5, 5.4, 3.4, 4.2, 0.0, 75.6, 46.4, 53.6,24.400000000000006,0.0 +3.261707988980717,3.26,a-cure-i1,2016-17,Canton - Lt Peter M Hansen,00500012, 0.0, 10.8, 13.7, 5.8, 6.0, 0.0, 63.7, 51.6, 48.4,36.3,7.4 +1,1,a-cure-i1,2016-17,Canton - Rodman Early Childhood Center,00500010, 0.0, 7.8, 21.1, 6.7, 5.6, 0.0, 58.9, 43.3, 56.7,41.1,0.0 +5.403973509933775,5,a-cure-i1,2016-17,Canton - Wm H Galvin Middle,00500305, 0.0, 10.1, 11.3, 4.7, 3.9, 0.1, 69.8, 50.8, 49.2,30.200000000000003,10.200000000000001 +1,1,a-cure-i1,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 1.2, 1.2, 4.5, 5.3, 0.0, 87.7, 57.2, 42.8,12.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 2.1, 1.0, 5.1, 10.4, 5.0, 0.2, 76.2, 37.6, 62.4,23.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Carlisle - Carlisle School,00510025, 0.0, 11.5, 0.5, 3.2, 8.6, 0.0, 76.1, 45.1, 54.9,23.900000000000006,1.4 +1,1,a-cure-i1,2016-17,Carver - Carver Elementary School,00520015, 0.0, 0.3, 1.3, 1.0, 1.0, 0.1, 96.3, 49.6, 50.4,3.700000000000003,2.1 +23.272727272727245,5,a-cure-i1,2016-17,Carver - Carver Middle/High School,00520405, 0.1, 0.2, 1.3, 1.1, 1.6, 0.1, 95.6, 49.3, 50.7,4.400000000000006,6.4 +1,1,a-cure-i1,2016-17,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 3.2, 0.0, 96.8, 44.0, 56.0,3.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Central Berkshire - Craneville,06350025, 0.0, 2.1, 0.2, 3.8, 4.0, 0.0, 89.8, 46.4, 53.6,10.200000000000003,4.1 +1,1,a-cure-i1,2016-17,Central Berkshire - Kittredge,06350035, 0.0, 0.7, 1.5, 3.0, 3.0, 0.0, 91.8, 47.0, 53.0,8.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 1.0, 1.0, 2.8, 3.8, 0.0, 91.2, 47.7, 52.3,8.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.7, 1.1, 4.1, 1.8, 0.0, 92.3, 50.6, 49.4,7.700000000000003,0.5 +1,1,a-cure-i1,2016-17,Chelmsford - Byam School,00560030, 0.8, 9.7, 2.0, 5.5, 3.0, 0.0, 79.0, 43.2, 56.8,21.0,0.0 +1,1,a-cure-i1,2016-17,Chelmsford - Center Elementary School,00560005, 0.0, 14.3, 2.5, 4.4, 3.5, 0.2, 75.1, 50.7, 49.3,24.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Chelmsford - Charles D Harrington,00560025, 0.0, 16.1, 4.2, 7.9, 4.2, 0.0, 67.5, 44.8, 55.2,32.5,0.0 +1,1,a-cure-i1,2016-17,Chelmsford - Chelmsford High,00560505, 0.0, 11.9, 2.6, 3.8, 1.8, 0.1, 79.9, 51.1, 48.9,20.099999999999994,2.7 +1,1,a-cure-i1,2016-17,Chelmsford - Col Moses Parker School,00560305, 0.0, 14.6, 2.2, 4.8, 1.9, 0.0, 76.4, 49.5, 50.5,23.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Chelmsford - Community Education Center,00560001, 1.5, 19.9, 3.7, 8.8, 4.4, 0.0, 61.8, 42.6, 57.4,38.2,0.0 +1,1,a-cure-i1,2016-17,Chelmsford - McCarthy Middle School,00560310, 0.0, 13.2, 3.1, 4.0, 2.1, 0.4, 77.3, 49.2, 50.8,22.700000000000003,2.7 +1,1,a-cure-i1,2016-17,Chelmsford - South Row,00560015, 0.0, 17.4, 1.1, 6.3, 3.7, 0.0, 71.5, 43.8, 56.2,28.5,0.0 +2.6779661016949152,2.68,a-cure-i1,2016-17,Chelsea - Chelsea High,00570505, 0.0, 2.3, 6.6, 85.0, 0.5, 0.1, 5.6, 48.0, 52.0,94.4,15.8 +1,1,a-cure-i1,2016-17,Chelsea - Clark Avenue School,00570050, 0.4, 1.3, 3.3, 89.4, 0.9, 0.0, 4.8, 44.6, 55.4,95.2,3.9 +1,1,a-cure-i1,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 0.5, 1.0, 7.1, 80.7, 1.7, 0.0, 9.0, 45.2, 54.8,91.0,4.5 +1,1,a-cure-i1,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.6, 1.5, 6.2, 83.0, 1.3, 0.0, 7.3, 43.2, 56.8,92.7,4.0 +1.4887700534759356,1.49,a-cure-i1,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 1.2, 5.5, 84.7, 2.2, 0.0, 6.5, 48.6, 51.4,93.5,8.7 +2.906054279749478,2.91,a-cure-i1,2016-17,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.7, 2.1, 91.6, 1.4, 0.0, 4.2, 49.6, 50.4,95.8,17.4 +4.135021097046414,4.14,a-cure-i1,2016-17,Chelsea - Joseph A. Browne School,00570055, 0.0, 2.1, 5.9, 86.6, 0.2, 0.0, 5.2, 51.2, 48.8,94.8,24.5 +1,1,a-cure-i1,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 0.1, 0.5, 6.6, 85.5, 0.7, 0.0, 6.6, 48.3, 51.7,93.4,4.8 +1.4625550660792954,1.46,a-cure-i1,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 1.1, 5.9, 82.8, 0.7, 0.2, 9.2, 46.2, 53.8,90.8,8.3 +1,1,a-cure-i1,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.4, 0.0, 0.7, 2.9, 0.0, 0.0, 95.0, 51.4, 48.6,5.0,0.0 +1,1,a-cure-i1,2016-17,Chicopee - Barry,00610003, 0.0, 3.5, 1.9, 29.2, 2.6, 0.2, 62.6, 42.8, 57.2,37.4,0.0 +1,1,a-cure-i1,2016-17,Chicopee - Belcher,00610010, 0.0, 0.0, 7.4, 34.9, 2.2, 0.0, 55.4, 47.2, 52.8,44.6,4.7 +1,1,a-cure-i1,2016-17,Chicopee - Bellamy Middle,00610305, 0.4, 2.0, 2.7, 33.8, 2.8, 0.0, 58.4, 49.1, 50.9,41.6,0.5 +1,1,a-cure-i1,2016-17,Chicopee - Bowe,00610015, 0.2, 0.7, 4.9, 52.2, 4.9, 0.0, 37.2, 51.5, 48.5,62.8,0.0 +3.9083969465648853,3.91,a-cure-i1,2016-17,Chicopee - Bowie,00610020, 0.0, 0.8, 4.1, 18.0, 3.0, 0.3, 73.8, 51.1, 48.9,26.200000000000003,6.4 +1,1,a-cure-i1,2016-17,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 4.7, 63.2, 4.7, 0.0, 27.4, 24.5, 75.5,72.6,0.0 +2.948640483383686,2.95,a-cure-i1,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 0.1, 2.5, 2.3, 26.2, 1.8, 0.2, 66.9, 46.5, 53.5,33.099999999999994,6.1 +1,1,a-cure-i1,2016-17,Chicopee - Chicopee High,00610505, 0.0, 2.0, 4.6, 37.4, 1.4, 0.1, 54.5, 50.9, 49.1,45.5,4.199999999999999 +1,1,a-cure-i1,2016-17,Chicopee - Dupont Middle,00610310, 0.1, 1.6, 4.3, 36.2, 3.3, 0.1, 54.5, 44.7, 55.3,45.5,0.0 +3.426497277676951,3.43,a-cure-i1,2016-17,Chicopee - Fairview Elementary,00610050, 0.0, 2.0, 2.7, 46.4, 4.0, 0.0, 44.9, 49.8, 50.2,55.1,11.8 +1,1,a-cure-i1,2016-17,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.3, 5.9, 70.8, 2.6, 0.0, 20.5, 48.1, 51.9,79.5,0.7 +1,1,a-cure-i1,2016-17,Chicopee - Lambert-Lavoie,00610040, 0.0, 2.0, 3.0, 23.3, 3.3, 0.0, 68.5, 49.2, 50.8,31.5,0.0 +1,1,a-cure-i1,2016-17,Chicopee - Litwin,00610022, 0.0, 0.5, 4.5, 32.7, 2.6, 0.0, 59.7, 47.6, 52.4,40.3,0.0 +1,1,a-cure-i1,2016-17,Chicopee - Streiber Memorial School,00610065, 0.0, 2.5, 3.5, 24.3, 4.6, 0.4, 64.8, 48.9, 51.1,35.2,4.1 +1,1,a-cure-i1,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 4.6, 4.6, 24.6, 3.9, 0.0, 62.3, 39.9, 60.1,37.7,0.0 +5.954430379746836,5,a-cure-i1,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 1.0, 6.1, 5.6, 21.0, 5.6, 0.3, 60.5, 47.6, 52.4,39.5,14.700000000000001 +4.383110195674563,4.38,a-cure-i1,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.4, 0.0, 65.2, 29.7, 1.4, 0.4, 2.9, 54.8, 45.2,97.1,26.6 +6.479338842975207,5,a-cure-i1,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 1.8, 71.2, 22.8, 1.1, 0.0, 3.2, 57.7, 42.3,96.8,39.2 +1,1,a-cure-i1,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.6, 10.7, 49.2, 5.1, 0.0, 34.5, 53.1, 46.9,65.5,4.8 +1,1,a-cure-i1,2016-17,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.6, 0.6, 1.2, 1.7, 0.0, 96.0, 53.8, 46.2,4.0,0.0 +1,1,a-cure-i1,2016-17,Clinton - Clinton Elementary,00640050, 0.0, 1.1, 3.0, 22.0, 2.0, 0.0, 72.0, 47.3, 52.7,28.0,1.1 +1,1,a-cure-i1,2016-17,Clinton - Clinton Middle School,00640305, 0.0, 1.1, 4.7, 22.0, 1.3, 0.0, 70.9, 44.6, 55.4,29.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Clinton - Clinton Senior High,00640505, 0.2, 2.6, 4.1, 28.8, 0.9, 0.0, 63.5, 45.9, 54.1,36.5,2.6 +7.436619718309859,5,a-cure-i1,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.3, 0.0, 80.5, 17.5, 0.6, 0.6, 0.6, 50.1, 49.9,99.4,46.2 +1,1,a-cure-i1,2016-17,Cohasset - Cohasset Middle/High School,00650505, 0.4, 2.6, 3.2, 1.2, 0.5, 0.0, 92.1, 49.3, 50.7,7.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Cohasset - Deer Hill,00650005, 0.0, 1.3, 2.4, 0.5, 0.8, 0.0, 95.0, 45.0, 55.0,5.0,0.0 +1,1,a-cure-i1,2016-17,Cohasset - Joseph Osgood,00650010, 0.0, 2.7, 2.7, 1.1, 2.7, 0.0, 90.7, 48.4, 51.6,9.299999999999997,0.0 +2.419512195121951,2.42,a-cure-i1,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.2, 20.3, 19.8, 37.2, 4.6, 0.0, 18.0, 51.1, 48.9,82.0,12.4 +8.109589041095889,5,a-cure-i1,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 1.6, 3.5, 62.0, 24.3, 3.2, 0.3, 5.1, 52.7, 47.3,94.9,48.099999999999994 +1.6343207354443308,1.63,a-cure-i1,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.7, 0.7, 96.4, 0.0, 0.0, 2.1, 48.6, 51.4,97.9,10.0 +6.1054808686659765,5,a-cure-i1,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.5, 0.5, 95.8, 0.0, 0.0, 3.3, 49.5, 50.5,96.7,36.9 +6.269592476489028,5,a-cure-i1,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 1.1, 1.1, 93.6, 0.0, 0.0, 4.3, 51.1, 48.9,95.7,37.5 +1,1,a-cure-i1,2016-17,Concord - Alcott,00670005, 0.2, 7.4, 7.8, 9.9, 6.8, 0.0, 67.9, 50.1, 49.9,32.099999999999994,0.0 +9.072164948453606,5,a-cure-i1,2016-17,Concord - Concord Middle,00670305, 0.1, 5.9, 4.8, 4.2, 4.5, 0.0, 80.6, 52.3, 47.7,19.400000000000006,11.0 +5.170305676855894,5,a-cure-i1,2016-17,Concord - Thoreau,00670020, 0.0, 7.3, 1.5, 5.1, 9.0, 0.0, 77.1, 46.3, 53.7,22.900000000000006,7.4 +1,1,a-cure-i1,2016-17,Concord - Willard,00670030, 0.2, 5.5, 1.5, 5.1, 4.9, 0.0, 82.8, 45.7, 54.3,17.200000000000003,3.4 +4.241860465116279,4.24,a-cure-i1,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 9.5, 4.3, 4.0, 3.7, 0.0, 78.5, 52.1, 47.8,21.5,5.7 +8.035714285714286,5,a-cure-i1,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 2.9, 50.9, 32.0, 3.8, 0.0, 10.4, 55.1, 44.9,89.6,45.0 +1,1,a-cure-i1,2016-17,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 3.5, 1.4, 0.0, 95.0, 44.0, 56.0,5.0,0.0 +1,1,a-cure-i1,2016-17,Danvers - Danvers High,00710505, 0.2, 2.7, 1.7, 4.8, 1.3, 0.0, 89.2, 51.1, 48.9,10.799999999999997,2.0 +1,1,a-cure-i1,2016-17,Danvers - Great Oak,00710015, 0.0, 0.0, 2.3, 9.6, 5.6, 0.0, 82.5, 46.7, 53.3,17.5,0.0 +1,1,a-cure-i1,2016-17,Danvers - Highlands,00710010, 0.3, 3.7, 3.7, 6.7, 4.8, 0.5, 80.2, 50.3, 49.7,19.799999999999997,0.0 +5.746478873239435,5,a-cure-i1,2016-17,Danvers - Holten Richmond Middle School,00710305, 0.1, 2.1, 1.6, 7.4, 3.0, 0.0, 85.8, 48.9, 51.1,14.200000000000003,5.1 +1,1,a-cure-i1,2016-17,Danvers - Ivan G Smith,00710032, 0.0, 4.2, 1.7, 8.7, 1.4, 0.0, 83.9, 52.8, 47.2,16.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Danvers - Riverside,00710030, 0.4, 3.2, 2.5, 7.6, 2.2, 0.0, 84.2, 44.2, 55.8,15.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Danvers - Willis E Thorpe,00710045, 0.9, 2.1, 1.8, 5.8, 0.3, 0.0, 89.0, 46.5, 53.5,11.0,4.6 +1,1,a-cure-i1,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 1.9, 1.2, 3.1, 7.5, 0.0, 86.3, 42.2, 57.8,13.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Dartmouth - Dartmouth High,00720505, 0.0, 0.4, 1.1, 2.4, 5.3, 0.2, 90.6, 49.5, 50.5,9.400000000000006,1.6 +1,1,a-cure-i1,2016-17,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.4, 1.7, 2.6, 5.3, 0.0, 90.1, 48.4, 51.6,9.900000000000006,3.3 +1,1,a-cure-i1,2016-17,Dartmouth - George H Potter,00720030, 0.0, 0.2, 1.9, 4.4, 4.7, 0.0, 88.8, 45.9, 54.1,11.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Dartmouth - James M. Quinn School,00720040, 0.0, 1.6, 1.0, 3.1, 7.0, 0.0, 87.4, 45.4, 54.6,12.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Dartmouth - Joseph Demello,00720015, 0.0, 0.5, 0.7, 3.8, 4.8, 0.0, 90.2, 50.1, 49.9,9.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Dedham - Avery,00730010, 0.6, 3.6, 9.4, 24.0, 5.8, 0.0, 56.5, 47.7, 52.3,43.5,0.0 +4.37785016286645,4.38,a-cure-i1,2016-17,Dedham - Dedham High,00730505, 0.0, 3.8, 11.6, 13.9, 1.4, 0.0, 69.3, 50.1, 49.9,30.700000000000003,8.4 +1,1,a-cure-i1,2016-17,Dedham - Dedham Middle School,00730305, 0.3, 2.4, 6.8, 14.3, 3.2, 0.0, 73.1, 48.7, 51.3,26.900000000000006,3.4 +1,1,a-cure-i1,2016-17,Dedham - Early Childhood Center,00730005, 0.7, 1.4, 5.0, 14.9, 8.9, 0.0, 69.1, 47.9, 52.1,30.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Dedham - Greenlodge,00730025, 0.0, 1.8, 3.2, 6.1, 4.0, 0.0, 84.9, 45.7, 54.3,15.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Dedham - Oakdale,00730030, 0.0, 1.8, 7.0, 9.6, 7.7, 0.0, 73.9, 53.3, 46.7,26.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Dedham - Riverdale,00730045, 0.0, 2.2, 6.6, 14.2, 2.7, 0.0, 74.3, 42.6, 57.4,25.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Deerfield - Deerfield Elementary,00740015, 0.0, 1.7, 0.2, 6.7, 6.0, 0.0, 85.3, 49.6, 50.4,14.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.6, 2.9, 10.0, 10.3, 5.0, 0.1, 70.2, 49.3, 50.7,29.799999999999997,3.1 +1,1,a-cure-i1,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.8, 1.4, 9.9, 9.6, 8.8, 0.0, 69.4, 45.9, 54.1,30.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 4.9, 1.6, 7.5, 17.6, 8.8, 0.3, 59.2, 40.5, 59.5,40.8,0.0 +1,1,a-cure-i1,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 2.1, 1.9, 10.2, 8.5, 3.8, 0.0, 73.5, 48.5, 51.5,26.5,3.5 +1,1,a-cure-i1,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 2.3, 2.9, 7.4, 11.5, 5.3, 0.0, 70.6, 50.6, 49.4,29.400000000000006,3.1 +1,1,a-cure-i1,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 2.8, 1.6, 6.6, 5.9, 8.0, 0.2, 74.8, 48.7, 51.3,25.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 1.4, 0.2, 6.2, 4.5, 0.0, 87.6, 50.2, 49.8,12.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.8, 1.0, 3.8, 3.0, 0.0, 91.4, 45.2, 54.8,8.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 1.1, 1.0, 4.3, 2.0, 0.0, 91.6, 44.4, 55.6,8.400000000000006,1.9 +1,1,a-cure-i1,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.2, 0.9, 0.5, 4.0, 2.6, 0.0, 91.8, 49.6, 50.4,8.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Dighton-Rehoboth - Palmer River,06500010, 0.4, 1.8, 1.2, 3.9, 2.8, 0.0, 89.9, 51.4, 48.6,10.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Douglas - Douglas Elementary School,00770015, 0.0, 1.5, 0.5, 1.5, 3.0, 0.0, 93.6, 46.8, 53.2,6.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Douglas - Douglas High School,00770505, 0.0, 1.0, 0.5, 2.5, 1.3, 0.3, 94.4, 52.8, 47.2,5.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Douglas - Douglas Middle School,00770305, 0.0, 1.9, 0.6, 4.2, 1.7, 0.6, 91.1, 49.4, 50.6,8.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Douglas - Douglas Primary School,00770005, 0.0, 0.9, 0.0, 4.3, 2.6, 0.0, 92.2, 46.1, 53.9,7.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Dover - Chickering,00780005, 0.0, 12.8, 2.9, 4.6, 4.8, 0.2, 74.7, 45.1, 54.9,25.299999999999997,4.9 +7.384615384615386,5,a-cure-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 6.1, 2.3, 2.6, 3.2, 0.0, 85.7, 51.4, 48.6,14.299999999999997,6.6 +6.930481283422458,5,a-cure-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.4, 8.6, 3.1, 2.7, 4.0, 0.0, 81.3, 49.3, 50.7,18.700000000000003,8.1 +1,1,a-cure-i1,2016-17,Dracut - Brookside Elementary,00790035, 0.2, 6.5, 10.2, 8.0, 0.4, 0.0, 74.7, 48.4, 51.6,25.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Dracut - Dracut Senior High,00790505, 0.0, 5.5, 5.7, 6.1, 2.1, 0.2, 80.3, 52.3, 47.7,19.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Dracut - George H. Englesby Elementary School,00790045, 0.0, 6.1, 4.5, 11.0, 2.4, 0.0, 76.0, 50.8, 49.2,24.0,0.0 +1,1,a-cure-i1,2016-17,Dracut - Greenmont Avenue,00790030, 0.0, 4.6, 3.9, 11.8, 1.1, 0.0, 78.6, 48.6, 51.4,21.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 2.9, 3.1, 4.8, 1.6, 0.0, 87.5, 45.6, 54.4,12.5,0.0 +1,1,a-cure-i1,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 0.2, 6.2, 5.8, 7.5, 1.7, 0.0, 78.6, 49.2, 50.8,21.400000000000006,2.1 +9.574036511156187,5,a-cure-i1,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.7, 0.0, 61.0, 36.6, 0.3, 0.0, 1.4, 54.8, 45.2,98.6,59.0 +1,1,a-cure-i1,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 1.1, 0.6, 8.3, 3.7, 0.0, 86.2, 42.8, 57.2,13.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 1.0, 0.6, 6.0, 1.8, 0.1, 90.5, 49.0, 51.0,9.5,1.9 +8.517985611510788,5,a-cure-i1,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.3, 2.7, 8.3, 2.7, 0.0, 86.1, 47.7, 52.3,13.900000000000006,7.4 +1,1,a-cure-i1,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 1.9, 1.8, 8.8, 2.3, 0.0, 85.3, 51.4, 48.6,14.700000000000003,2.6 +1,1,a-cure-i1,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 1.0, 1.0, 8.7, 2.6, 0.2, 86.5, 45.8, 54.2,13.5,0.0 +5.303370786516855,5,a-cure-i1,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 0.4, 0.0, 2.7, 13.1, 1.5, 0.0, 82.2, 50.6, 49.4,17.799999999999997,5.9 +1,1,a-cure-i1,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.3, 2.2, 1.7, 6.7, 1.8, 0.2, 87.0, 51.8, 48.2,13.0,1.5 +1,1,a-cure-i1,2016-17,Duxbury - Alden School,00820004, 0.1, 1.4, 0.1, 2.4, 3.1, 0.0, 92.8, 50.8, 49.2,7.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Duxbury - Chandler Elementary,00820006, 0.0, 1.2, 0.7, 2.1, 4.4, 0.0, 91.6, 48.9, 51.1,8.400000000000006,2.9 +1,1,a-cure-i1,2016-17,Duxbury - Duxbury High,00820505, 0.0, 1.2, 0.3, 1.3, 1.2, 0.0, 95.9, 48.8, 51.2,4.099999999999994,0.3 +1,1,a-cure-i1,2016-17,Duxbury - Duxbury Middle,00820305, 0.1, 1.5, 0.1, 2.3, 3.1, 0.0, 92.9, 46.9, 53.1,7.099999999999994,1.8 +1,1,a-cure-i1,2016-17,East Bridgewater - Central,00830005, 0.4, 0.7, 2.1, 1.8, 5.2, 0.2, 89.7, 49.6, 50.4,10.299999999999997,0.0 +1,1,a-cure-i1,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.2, 0.3, 2.8, 1.9, 1.4, 0.2, 93.2, 51.2, 48.6,6.799999999999997,0.0 +1,1,a-cure-i1,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 0.3, 0.7, 3.2, 2.0, 3.3, 0.0, 90.4, 44.9, 54.9,9.599999999999994,0.0 +1,1,a-cure-i1,2016-17,East Longmeadow - Birchland Park,00870305, 0.0, 5.9, 2.2, 5.4, 0.8, 0.2, 85.5, 47.6, 52.4,14.5,2.2 +6.781456953642387,5,a-cure-i1,2016-17,East Longmeadow - East Longmeadow High,00870505, 0.2, 6.0, 3.6, 4.6, 0.6, 0.1, 84.9, 51.3, 48.7,15.099999999999994,6.4 +1,1,a-cure-i1,2016-17,East Longmeadow - Mapleshade,00870010, 0.0, 5.9, 3.3, 5.6, 2.6, 0.0, 82.5, 55.4, 44.6,17.5,0.0 +1,1,a-cure-i1,2016-17,East Longmeadow - Meadow Brook,00870013, 0.0, 4.8, 1.1, 8.7, 3.2, 0.0, 82.2, 44.8, 55.2,17.799999999999997,3.6 +1,1,a-cure-i1,2016-17,East Longmeadow - Mountain View,00870015, 0.0, 3.0, 1.7, 5.3, 3.7, 0.0, 86.3, 48.3, 51.7,13.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Eastham - Eastham Elementary,00850005, 1.1, 1.6, 5.5, 3.8, 2.2, 0.0, 85.7, 51.6, 48.4,14.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Easthampton - Center School,00860005, 0.5, 2.1, 1.0, 13.4, 3.6, 0.0, 79.4, 41.2, 58.8,20.599999999999994,0.0 +4.656084656084655,4.66,a-cure-i1,2016-17,Easthampton - Easthampton High,00860505, 0.0, 4.0, 2.3, 11.7, 0.6, 0.2, 81.1, 52.9, 47.1,18.900000000000006,5.5 +1,1,a-cure-i1,2016-17,Easthampton - Maple,00860010, 0.8, 3.5, 1.6, 9.8, 2.7, 0.0, 81.6, 46.1, 53.9,18.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Easthampton - Neil A Pepin,00860020, 0.5, 5.7, 1.0, 13.0, 4.7, 0.0, 75.0, 44.8, 55.2,25.0,0.0 +1,1,a-cure-i1,2016-17,Easthampton - White Brook Middle School,00860305, 0.0, 3.6, 1.8, 10.5, 1.8, 0.0, 82.4, 51.7, 48.3,17.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Easton - Center School,00880003, 0.4, 2.8, 8.3, 0.4, 0.8, 0.4, 87.0, 43.1, 56.9,13.0,0.0 +1,1,a-cure-i1,2016-17,Easton - Easton Middle School,00880405, 0.1, 3.4, 5.4, 3.5, 2.5, 0.0, 85.1, 50.7, 49.3,14.900000000000006,3.6 +1,1,a-cure-i1,2016-17,Easton - Moreau Hall,00880020, 1.3, 2.1, 5.6, 5.6, 1.3, 0.0, 84.1, 49.4, 50.6,15.900000000000006,0.0 +5.641618497109827,5,a-cure-i1,2016-17,Easton - Oliver Ames High,00880505, 0.2, 4.1, 4.8, 5.0, 3.3, 0.1, 82.7, 52.8, 47.2,17.299999999999997,6.1 +1,1,a-cure-i1,2016-17,Easton - Parkview Elementary,00880015, 0.3, 1.7, 3.8, 4.4, 5.5, 0.0, 84.3, 47.2, 52.8,15.700000000000003,2.4 +1,1,a-cure-i1,2016-17,Easton - Richardson Olmsted School,00880025, 0.0, 3.2, 4.0, 4.0, 2.6, 0.0, 86.2, 49.0, 51.0,13.799999999999997,4.2 +1,1,a-cure-i1,2016-17,Edgartown - Edgartown Elementary,00890005, 2.3, 0.3, 3.2, 18.1, 5.2, 0.0, 71.0, 54.3, 45.7,29.0,0.0 +8.645026178010472,5,a-cure-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, 0.0, 1.9, 44.6, 46.8, 2.2, 0.0, 4.5, 65.7, 34.3,95.5,51.6 +1,1,a-cure-i1,2016-17,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 3.7, 9.6, 0.0, 86.8, 47.1, 52.9,13.200000000000003,0.0 +5.217391304347824,5,a-cure-i1,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.1, 1.5, 1.3, 12.3, 3.1, 0.1, 81.6, 57.0, 43.0,18.400000000000006,6.0 +1,1,a-cure-i1,2016-17,Everett - Adams School,00930003, 0.0, 8.1, 16.3, 44.0, 1.9, 0.0, 29.7, 42.6, 57.4,70.3,0.0 +3.1695721077654517,3.17,a-cure-i1,2016-17,Everett - Devens School,00930030, 0.0, 0.0, 20.0, 38.5, 4.6, 0.0, 36.9, 23.1, 76.9,63.1,12.5 +3.140401146131805,3.14,a-cure-i1,2016-17,Everett - Everett High,00930505, 0.3, 4.4, 19.9, 43.9, 1.1, 0.1, 30.2, 48.0, 52.0,69.8,13.7 +1,1,a-cure-i1,2016-17,Everett - George Keverian School,00930028, 0.5, 5.6, 16.5, 48.0, 2.4, 0.1, 26.9, 47.2, 52.8,73.1,4.2 +1,1,a-cure-i1,2016-17,Everett - Lafayette School,00930038, 0.5, 4.6, 19.2, 44.1, 2.8, 0.0, 28.7, 52.2, 47.8,71.3,4.0 +1,1,a-cure-i1,2016-17,Everett - Madeline English School,00930018, 0.6, 5.0, 13.1, 46.8, 1.6, 0.2, 32.7, 50.3, 49.7,67.3,0.0 +1,1,a-cure-i1,2016-17,Everett - Parlin School,00930058, 0.2, 3.0, 18.8, 60.2, 1.6, 0.0, 16.2, 51.0, 49.0,83.8,0.0 +1.3796407185628743,1.38,a-cure-i1,2016-17,Everett - Sumner G. Whittier School,00930010, 1.0, 6.4, 13.4, 61.0, 1.7, 0.0, 16.5, 52.4, 47.6,83.5,7.2 +1,1,a-cure-i1,2016-17,Everett - Webster School,00930015, 0.0, 6.9, 15.8, 41.0, 2.0, 0.0, 34.4, 43.3, 56.7,65.6,3.3 +2.9365962180200222,2.94,a-cure-i1,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 1.3, 1.5, 7.3, 79.2, 0.3, 0.3, 10.1, 50.6, 49.4,89.9,16.5 +1,1,a-cure-i1,2016-17,Fairhaven - East Fairhaven,00940010, 0.5, 1.6, 1.6, 6.2, 4.1, 0.0, 86.0, 47.7, 52.3,14.0,0.0 +1,1,a-cure-i1,2016-17,Fairhaven - Fairhaven High,00940505, 0.2, 1.6, 0.8, 5.8, 2.4, 0.0, 89.1, 52.1, 47.9,10.900000000000006,2.0 +1,1,a-cure-i1,2016-17,Fairhaven - Hastings Middle,00940305, 0.7, 2.6, 1.1, 4.1, 2.0, 0.0, 89.5, 47.4, 52.6,10.5,2.9 +1,1,a-cure-i1,2016-17,Fairhaven - Leroy Wood,00940030, 0.2, 2.1, 1.6, 5.6, 5.1, 0.0, 85.4, 50.2, 49.8,14.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Fall River - B M C Durfee High,00950505, 0.2, 5.5, 8.3, 23.4, 4.3, 0.2, 58.2, 49.2, 50.8,41.8,4.9 +1,1,a-cure-i1,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.3, 3.9, 7.4, 29.4, 9.9, 0.0, 49.1, 46.5, 53.5,50.9,0.0 +1,1,a-cure-i1,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 4.0, 8.0, 8.0, 0.0, 0.0, 80.0, 64.0, 36.0,20.0,0.0 +1.7112299465240641,1.71,a-cure-i1,2016-17,Fall River - Henry Lord Community School,00950017, 0.2, 5.3, 9.9, 30.3, 9.8, 0.6, 43.9, 46.8, 53.2,56.1,6.0 +1,1,a-cure-i1,2016-17,Fall River - James Tansey,00950140, 0.0, 1.0, 1.4, 8.9, 7.8, 0.0, 80.9, 52.2, 47.8,19.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Fall River - John J Doran,00950045, 0.4, 1.8, 7.7, 28.0, 8.8, 0.0, 53.3, 48.4, 51.6,46.7,0.0 +3.704280155642023,3.7,a-cure-i1,2016-17,Fall River - Letourneau Elementary School,00950013, 0.0, 2.0, 7.5, 36.0, 5.9, 0.0, 48.6, 50.4, 49.6,51.4,11.899999999999999 +1,1,a-cure-i1,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 0.6, 5.6, 8.7, 33.5, 11.1, 0.0, 40.5, 49.5, 50.5,59.5,0.0 +2.6524064171122994,2.65,a-cure-i1,2016-17,Fall River - Matthew J Kuss Middle,00950320, 0.3, 3.8, 6.5, 21.0, 5.8, 0.0, 62.6, 51.0, 49.0,37.4,6.199999999999999 +1,1,a-cure-i1,2016-17,Fall River - Morton Middle,00950315, 0.2, 4.7, 7.7, 21.7, 6.3, 0.3, 59.2, 43.9, 56.1,40.8,4.7 +2.2541436464088394,2.25,a-cure-i1,2016-17,Fall River - North End Elementary,00950005, 0.0, 3.8, 5.6, 18.0, 8.7, 0.1, 63.8, 45.9, 54.1,36.2,5.1 +1,1,a-cure-i1,2016-17,Fall River - Resiliency Middle School,00950335, 3.7, 0.0, 11.1, 37.0, 7.4, 0.0, 40.7, 44.4, 55.6,59.3,0.0 +4.176842105263158,4.18,a-cure-i1,2016-17,Fall River - Resiliency Preparatory School,00950325, 0.0, 1.2, 13.6, 27.2, 4.3, 1.2, 52.5, 42.0, 58.0,47.5,12.4 +1,1,a-cure-i1,2016-17,Fall River - Samuel Watson,00950145, 1.3, 2.0, 11.8, 23.4, 12.2, 0.0, 49.3, 53.3, 46.7,50.7,0.0 +2.961194029850746,2.96,a-cure-i1,2016-17,Fall River - Spencer Borden,00950130, 0.0, 4.4, 5.4, 15.5, 8.2, 0.0, 66.5, 44.4, 55.6,33.5,6.2 +1,1,a-cure-i1,2016-17,Fall River - Stone Day School,00950340, 0.0, 0.0, 12.5, 25.0, 15.6, 0.0, 46.9, 9.4, 90.6,53.1,0.9 +1,1,a-cure-i1,2016-17,Fall River - Talbot Innovation School,00950305, 0.2, 5.1, 7.1, 31.7, 5.5, 0.0, 50.4, 47.8, 52.2,49.6,0.0 +1,1,a-cure-i1,2016-17,Fall River - William S Greene,00950065, 0.1, 5.3, 4.9, 23.2, 8.9, 0.0, 57.6, 50.0, 50.0,42.4,0.0 +1,1,a-cure-i1,2016-17,Falmouth - East Falmouth Elementary,00960005, 2.3, 0.9, 5.1, 6.0, 6.8, 0.0, 78.9, 45.9, 54.1,21.099999999999994,4.3 +1,1,a-cure-i1,2016-17,Falmouth - Falmouth High,00960505, 0.7, 3.5, 4.9, 4.0, 4.8, 0.1, 82.1, 49.0, 51.0,17.900000000000006,4.6 +7.302564102564103,5,a-cure-i1,2016-17,Falmouth - Lawrence,00960405, 1.4, 3.0, 4.6, 3.9, 6.7, 0.0, 80.5, 48.8, 51.2,19.5,8.9 +5.219251336898394,5,a-cure-i1,2016-17,Falmouth - Morse Pond School,00960305, 0.5, 1.4, 6.5, 5.1, 4.9, 0.3, 81.3, 50.8, 49.2,18.700000000000003,6.1 +1,1,a-cure-i1,2016-17,Falmouth - Mullen-Hall,00960020, 1.5, 3.4, 3.0, 6.0, 7.3, 0.0, 78.7, 46.1, 53.9,21.299999999999997,0.0 +11.130434782608697,5,a-cure-i1,2016-17,Falmouth - North Falmouth Elementary,00960030, 0.0, 1.9, 2.2, 5.4, 4.2, 0.0, 86.2, 51.0, 49.0,13.799999999999997,9.6 +4.928,4.93,a-cure-i1,2016-17,Falmouth - Teaticket,00960015, 2.7, 2.0, 8.3, 5.3, 6.7, 0.0, 75.0, 47.7, 52.3,25.0,7.699999999999999 +1,1,a-cure-i1,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.9, 0.9, 0.0, 98.2, 47.4, 52.6,1.7999999999999972,0.0 +2.2298850574712645,2.23,a-cure-i1,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.2, 4.7, 5.9, 51.3, 7.5, 0.0, 30.4, 44.9, 55.1,69.6,9.7 +1,1,a-cure-i1,2016-17,Fitchburg - Crocker Elementary,00970016, 0.3, 2.5, 4.5, 51.4, 7.0, 0.2, 34.1, 47.5, 52.5,65.9,3.2 +3.152941176470588,3.15,a-cure-i1,2016-17,Fitchburg - Fitchburg High,00970505, 0.0, 6.1, 7.3, 48.3, 6.1, 0.1, 32.0, 47.9, 52.1,68.0,13.4 +12.291390728476822,5,a-cure-i1,2016-17,Fitchburg - Goodrich Academy,00970510, 0.0, 1.2, 7.0, 34.9, 2.3, 0.0, 54.7, 44.8, 55.2,45.3,34.8 +1,1,a-cure-i1,2016-17,Fitchburg - McKay Arts Academy,00970340, 0.0, 6.7, 4.6, 48.1, 8.0, 0.0, 32.5, 52.9, 47.1,67.5,4.8 +2.0998573466476462,2.1,a-cure-i1,2016-17,Fitchburg - Memorial Intermediate,00970048, 0.0, 5.4, 5.6, 52.2, 6.8, 0.0, 29.9, 49.7, 50.3,70.1,9.2 +1,1,a-cure-i1,2016-17,Fitchburg - Reingold Elementary,00970043, 0.0, 3.1, 5.8, 44.9, 8.0, 0.2, 38.1, 48.1, 51.9,61.9,2.9 +1,1,a-cure-i1,2016-17,Fitchburg - South Street Elementary,00970060, 0.1, 5.6, 6.1, 53.3, 7.4, 0.1, 27.3, 50.1, 49.9,72.7,2.5 +1,1,a-cure-i1,2016-17,Florida - Abbott Memorial,00980005, 0.0, 0.0, 1.2, 0.0, 1.2, 1.2, 96.3, 55.6, 44.4,3.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 2.7, 0.5, 7.3, 4.5, 0.0, 85.0, 52.7, 47.3,15.0,0.0 +1,1,a-cure-i1,2016-17,Foxborough - Charles Taylor Elementary,00990050, 0.8, 4.1, 4.1, 4.1, 2.1, 0.4, 84.4, 42.8, 57.2,15.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Foxborough - Foxborough High,00990505, 0.1, 2.7, 5.3, 3.0, 0.8, 0.1, 87.9, 46.8, 53.2,12.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Foxborough - John J Ahern,00990405, 0.5, 2.3, 4.5, 4.2, 1.7, 0.0, 86.8, 49.0, 51.0,13.200000000000003,3.2 +5.1736526946107775,5,a-cure-i1,2016-17,Foxborough - Mabelle M Burrell,00990015, 0.3, 6.1, 2.6, 3.5, 3.9, 0.3, 83.3, 44.4, 55.6,16.700000000000003,5.4 +1,1,a-cure-i1,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 0.5, 5.3, 3.6, 4.1, 3.0, 0.0, 83.5, 49.2, 50.8,16.5,0.0 +3.670753064798599,3.67,a-cure-i1,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.1, 10.0, 36.6, 4.4, 5.9, 0.1, 42.9, 52.6, 47.4,57.1,13.1 +7.078534031413612,5,a-cure-i1,2016-17,Framingham - Barbieri Elementary,01000035, 0.1, 0.6, 3.3, 69.4, 3.0, 0.0, 23.6, 53.8, 46.2,76.4,33.8 +3.2189349112426036,3.22,a-cure-i1,2016-17,Framingham - Brophy,01000006, 0.0, 4.5, 7.6, 53.4, 2.1, 0.0, 32.4, 51.1, 48.9,67.6,13.6 +1,1,a-cure-i1,2016-17,Framingham - Cameron Middle School,01000302, 0.2, 2.0, 7.1, 18.3, 3.1, 0.0, 69.2, 49.8, 50.2,30.799999999999997,4.1 +1,1,a-cure-i1,2016-17,Framingham - Charlotte A Dunning,01000007, 0.0, 13.4, 5.0, 11.3, 3.8, 0.0, 66.6, 45.5, 54.5,33.400000000000006,0.0 +4.168421052631579,4.17,a-cure-i1,2016-17,Framingham - Framingham High School,01000515, 0.1, 6.1, 6.9, 22.0, 2.7, 0.0, 62.0, 48.6, 51.4,38.0,9.899999999999999 +3.962476547842402,3.96,a-cure-i1,2016-17,Framingham - Fuller Middle,01000305, 0.0, 2.4, 9.0, 38.3, 3.2, 0.4, 46.7, 48.0, 52.0,53.3,13.200000000000001 +2.9520295202952034,2.95,a-cure-i1,2016-17,Framingham - Hemenway,01000015, 0.0, 7.5, 3.8, 11.5, 4.2, 0.0, 72.9, 48.9, 51.1,27.099999999999994,5.0 +2.135831381733021,2.14,a-cure-i1,2016-17,Framingham - Juniper Hill School,01000001, 0.0, 6.0, 7.3, 23.9, 5.6, 0.0, 57.3, 47.0, 53.0,42.7,5.7 +1,1,a-cure-i1,2016-17,Framingham - King Elementary School,01000005, 0.0, 11.2, 6.4, 13.6, 7.6, 0.0, 61.2, 43.2, 56.8,38.8,4.9 +1,1,a-cure-i1,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 0.3, 4.3, 6.6, 19.1, 5.1, 0.0, 64.6, 47.8, 52.2,35.400000000000006,0.0 +3.3138075313807533,3.31,a-cure-i1,2016-17,Framingham - Miriam F McCarthy School,01000050, 0.0, 2.3, 11.5, 28.0, 5.6, 0.4, 52.2, 50.3, 49.7,47.8,9.9 +4.35680751173709,4.36,a-cure-i1,2016-17,Framingham - Potter Road,01000039, 0.0, 4.4, 5.2, 7.2, 4.6, 0.0, 78.7, 47.7, 52.3,21.299999999999997,5.8 +4.95067264573991,4.95,a-cure-i1,2016-17,Framingham - Walsh Middle,01000310, 0.0, 7.9, 4.7, 29.3, 2.8, 0.0, 55.4, 49.0, 51.0,44.6,13.8 +6.625766871165645,5,a-cure-i1,2016-17,Framingham - Woodrow Wilson,01000055, 0.2, 0.3, 8.5, 21.5, 2.1, 0.0, 67.4, 50.3, 49.7,32.599999999999994,13.5 +19.047619047619033,5,a-cure-i1,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 1.5, 0.5, 2.8, 3.5, 0.0, 91.6, 54.2, 45.6,8.400000000000006,10.0 +1,1,a-cure-i1,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, 3.7, 0.6, 1.7, 0.6, 0.4, 92.9, 47.2, 52.8,7.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Franklin - Davis Thayer,01010035, 0.4, 1.5, 1.5, 4.8, 1.1, 0.4, 90.4, 46.7, 53.3,9.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 4.6, 1.5, 5.3, 1.5, 6.1, 80.9, 37.4, 62.6,19.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Franklin - Franklin High,01010505, 0.2, 4.5, 1.7, 2.1, 2.0, 0.2, 89.4, 50.8, 49.2,10.599999999999994,3.0 +1,1,a-cure-i1,2016-17,Franklin - Helen Keller Elementary,01010012, 0.0, 3.9, 1.5, 0.7, 1.7, 0.5, 91.8, 46.2, 53.8,8.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Franklin - Horace Mann,01010405, 0.2, 7.7, 1.3, 2.1, 1.7, 0.0, 86.9, 52.8, 47.2,13.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Franklin - J F Kennedy Memorial,01010013, 0.0, 7.8, 0.8, 2.8, 1.9, 0.6, 86.1, 48.3, 51.7,13.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Franklin - Jefferson Elementary,01010010, 0.0, 7.9, 2.4, 1.2, 1.2, 0.6, 86.6, 45.3, 54.7,13.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Franklin - Oak Street Elementary,01010030, 0.2, 4.4, 1.0, 4.8, 2.7, 0.2, 86.7, 46.7, 53.3,13.299999999999997,4.6 +1,1,a-cure-i1,2016-17,Franklin - Parmenter,01010032, 0.3, 6.6, 3.8, 2.7, 1.4, 0.8, 84.4, 47.7, 52.3,15.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Franklin - Remington Middle,01010310, 0.2, 5.0, 1.5, 3.7, 2.2, 0.0, 87.4, 48.0, 52.0,12.599999999999994,2.9 +1,1,a-cure-i1,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.2, 1.0, 2.5, 0.4, 0.0, 95.9, 32.2, 67.8,4.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 0.3, 1.5, 1.4, 1.8, 1.2, 0.1, 93.7, 50.5, 49.5,6.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.2, 1.0, 2.2, 0.2, 2.6, 0.0, 93.8, 48.0, 52.0,6.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.3, 1.0, 1.5, 0.8, 0.0, 96.5, 49.0, 51.0,3.5,0.0 +1,1,a-cure-i1,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.3, 0.9, 0.7, 1.8, 1.5, 0.1, 94.7, 50.1, 49.9,5.299999999999997,2.4 +1,1,a-cure-i1,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.4, 0.6, 1.7, 0.8, 1.5, 0.0, 94.9, 52.2, 47.8,5.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Frontier - Frontier Regional,06700505, 0.0, 3.1, 1.3, 4.4, 2.5, 0.3, 88.4, 46.0, 54.0,11.599999999999994,2.1 +1,1,a-cure-i1,2016-17,Gardner - Elm Street School,01030001, 0.2, 1.0, 2.4, 17.3, 10.5, 0.0, 68.6, 44.2, 55.8,31.400000000000006,3.5 +1,1,a-cure-i1,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 1.1, 1.1, 5.4, 12.9, 6.5, 0.0, 73.1, 41.9, 58.1,26.900000000000006,0.0 +7.367441860465116,5,a-cure-i1,2016-17,Gardner - Gardner High,01030505, 0.4, 2.1, 2.7, 12.5, 3.8, 0.0, 78.5, 46.4, 53.6,21.5,9.9 +1,1,a-cure-i1,2016-17,Gardner - Gardner Middle School,01030405, 0.2, 1.8, 2.6, 15.2, 10.2, 0.0, 70.0, 50.6, 49.4,30.0,3.0 +4.677740863787377,4.68,a-cure-i1,2016-17,Gardner - Waterford Street,01030020, 0.2, 1.1, 2.2, 18.5, 8.1, 0.0, 69.9, 53.6, 46.4,30.099999999999994,8.8 +1,1,a-cure-i1,2016-17,Gateway - Chester Elementary,06720059, 1.7, 0.0, 1.7, 3.4, 1.7, 0.0, 91.4, 46.6, 53.4,8.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Gateway - Gateway Regional High,06720505, 0.0, 0.9, 0.5, 2.7, 1.8, 0.0, 94.1, 55.9, 44.1,5.900000000000006,4.6 +1,1,a-cure-i1,2016-17,Gateway - Gateway Regional Middle School,06720405, 0.5, 0.5, 0.0, 5.8, 1.4, 0.0, 91.8, 42.8, 57.2,8.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.3, 3.7, 2.7, 0.3, 91.9, 46.8, 53.2,8.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Georgetown - Georgetown High School,01050505, 0.0, 1.0, 0.7, 2.7, 2.4, 0.0, 93.2, 52.3, 47.7,6.799999999999997,4.9 +1,1,a-cure-i1,2016-17,Georgetown - Georgetown Middle School,01050305, 0.0, 1.3, 0.4, 0.4, 0.9, 0.0, 97.0, 45.9, 54.1,3.0,2.9 +1,1,a-cure-i1,2016-17,Georgetown - Penn Brook,01050010, 0.0, 1.1, 1.1, 1.7, 1.0, 0.3, 94.7, 47.9, 52.1,5.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Georgetown - Perley Elementary,01050005, 0.0, 0.9, 0.0, 0.9, 0.0, 0.0, 98.1, 48.1, 51.9,1.9000000000000057,0.0 +1,1,a-cure-i1,2016-17,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 3.4, 1.7, 6.8, 0.0, 88.0, 47.9, 52.1,12.0,0.0 +1,1,a-cure-i1,2016-17,Gill-Montague - Great Falls Middle,06740310, 0.4, 0.4, 2.1, 8.0, 5.0, 0.0, 84.0, 51.3, 48.7,16.0,0.0 +1,1,a-cure-i1,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.7, 0.0, 16.9, 8.1, 0.7, 73.6, 48.6, 51.4,26.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 0.5, 0.0, 0.0, 17.1, 11.1, 0.5, 71.0, 49.8, 50.2,29.0,0.0 +1,1,a-cure-i1,2016-17,Gill-Montague - Turners Fall High,06740505, 0.0, 0.4, 1.7, 7.4, 4.3, 0.0, 86.1, 50.2, 49.8,13.900000000000006,0.0 +2.247379454926625,2.25,a-cure-i1,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 1.0, 1.0, 10.7, 29.8, 5.3, 0.0, 52.3, 48.3, 51.7,47.7,6.7 +1,1,a-cure-i1,2016-17,Gloucester - Beeman Memorial,01070010, 0.6, 2.5, 1.1, 14.4, 1.7, 0.0, 79.7, 50.1, 49.9,20.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 6.8, 5.1, 0.0, 88.1, 44.7, 55.3,11.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Gloucester - Gloucester High,01070505, 0.2, 1.7, 2.2, 7.5, 2.0, 0.7, 85.7, 48.9, 51.1,14.299999999999997,1.4 +1,1,a-cure-i1,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, 3.1, 3.1, 2.1, 6.3, 0.0, 85.4, 47.9, 52.1,14.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Gloucester - Plum Cove School,01070042, 0.0, 0.9, 2.8, 2.8, 1.4, 0.0, 92.0, 48.8, 51.2,8.0,0.0 +1,1,a-cure-i1,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 0.5, 0.9, 1.6, 8.6, 4.4, 0.3, 83.7, 48.5, 51.5,16.299999999999997,2.4 +1,1,a-cure-i1,2016-17,Gloucester - Veterans Memorial,01070045, 0.0, 0.9, 0.9, 12.3, 0.9, 0.0, 85.0, 50.9, 49.1,15.0,0.0 +1,1,a-cure-i1,2016-17,Gloucester - West Parish,01070050, 0.8, 1.7, 1.7, 5.1, 2.0, 0.0, 88.8, 52.0, 48.0,11.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 50.0, 50.0,0.0,0.0 +1,1,a-cure-i1,2016-17,Grafton - Grafton High School,01100505, 0.0, 8.9, 1.2, 3.5, 2.3, 0.1, 84.1, 51.6, 48.4,15.900000000000006,2.4 +1,1,a-cure-i1,2016-17,Grafton - Grafton Middle,01100305, 0.0, 10.1, 1.4, 3.9, 3.3, 0.0, 81.2, 50.3, 49.7,18.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Grafton - Millbury Street Elementary School,01100200, 0.0, 15.6, 1.9, 6.3, 2.1, 0.0, 74.1, 48.6, 51.4,25.900000000000006,0.5 +1,1,a-cure-i1,2016-17,Grafton - North Grafton Elementary,01100025, 0.4, 13.3, 0.4, 4.9, 6.7, 0.4, 74.0, 48.1, 51.9,26.0,0.0 +1,1,a-cure-i1,2016-17,Grafton - North Street Elementary School,01100030, 0.5, 7.2, 0.8, 5.4, 3.2, 0.3, 82.6, 48.1, 51.9,17.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Grafton - South Grafton Elementary,01100005, 0.0, 18.2, 1.3, 3.2, 3.2, 0.0, 74.0, 44.2, 55.8,26.0,0.0 +1,1,a-cure-i1,2016-17,Granby - East Meadow,01110004, 0.0, 0.6, 0.0, 7.7, 2.4, 0.0, 89.3, 42.0, 58.0,10.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Granby - Granby Jr Sr High School,01110505, 0.0, 3.1, 1.0, 6.0, 1.3, 0.0, 88.5, 45.7, 54.3,11.5,3.6 +1,1,a-cure-i1,2016-17,Granby - West Street,01110010, 1.5, 2.9, 0.0, 7.8, 3.9, 0.0, 84.0, 50.0, 50.0,16.0,0.0 +1,1,a-cure-i1,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.4, 1.4, 1.6, 8.4, 4.7, 0.1, 83.4, 44.2, 55.8,16.599999999999994,4.3 +1.7820823244552062,1.78,a-cure-i1,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.1, 1.0, 0.8, 80.6, 0.1, 0.0, 17.4, 50.8, 49.2,82.6,9.200000000000001 +1,1,a-cure-i1,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.5, 16.4, 3.4, 31.8, 3.6, 0.0, 44.3, 44.8, 55.2,55.7,4.4 +3.315315315315315,3.32,a-cure-i1,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.4, 0.7, 8.7, 19.9, 3.6, 0.0, 66.7, 50.4, 49.6,33.3,6.8999999999999995 +1,1,a-cure-i1,2016-17,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 1.2, 8.6, 0.0, 0.0, 90.1, 51.0, 49.0,9.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Greenfield - Federal Street School,01140010, 0.0, 1.3, 2.6, 13.7, 6.8, 0.0, 75.6, 51.7, 48.3,24.400000000000006,0.0 +Infinity,5,a-cure-i1,2016-17,Greenfield - Green River,01140030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 66.7, 33.3,0.0,20.0 +3.088803088803088,3.09,a-cure-i1,2016-17,Greenfield - Greenfield High,01140505, 0.0, 3.1, 3.1, 14.7, 4.9, 0.0, 74.1, 46.0, 54.0,25.900000000000006,5.0 +3.4545454545454533,3.45,a-cure-i1,2016-17,Greenfield - Greenfield Middle,01140305, 0.0, 2.3, 1.5, 16.5, 6.1, 0.0, 73.6, 48.5, 51.5,26.400000000000006,5.699999999999999 +1,1,a-cure-i1,2016-17,Greenfield - Newton School,01140035, 0.0, 1.4, 2.8, 26.0, 9.3, 0.0, 60.5, 50.7, 49.3,39.5,0.0 +1,1,a-cure-i1,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.6, 0.8, 10.7, 0.8, 0.0, 86.1, 45.1, 54.9,13.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Groton-Dunstable - Boutwell School,06730001, 1.6, 3.1, 0.0, 12.5, 3.1, 0.0, 79.7, 39.1, 60.9,20.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Groton-Dunstable - Florence Roche School,06730010, 0.2, 6.3, 0.8, 1.7, 4.2, 0.0, 86.8, 51.9, 48.1,13.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.1, 5.9, 0.7, 0.9, 0.5, 0.1, 91.7, 49.8, 50.2,8.299999999999997,2.0 +1,1,a-cure-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.3, 7.1, 0.9, 1.6, 1.4, 0.3, 88.5, 47.8, 52.2,11.5,4.2 +1,1,a-cure-i1,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 5.0, 0.4, 1.8, 1.4, 0.0, 91.4, 44.6, 55.4,8.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Hadley - Hadley Elementary,01170015, 0.3, 1.0, 2.0, 6.9, 3.3, 4.3, 82.2, 48.4, 51.6,17.799999999999997,4.8 +1,1,a-cure-i1,2016-17,Hadley - Hopkins Academy,01170505, 0.4, 2.3, 3.9, 8.1, 3.5, 1.2, 80.6, 50.0, 50.0,19.400000000000006,4.5 +1,1,a-cure-i1,2016-17,Halifax - Halifax Elementary,01180005, 0.3, 0.7, 1.0, 1.9, 1.7, 0.0, 94.4, 47.6, 52.4,5.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.7, 0.4, 5.9, 1.2, 0.0, 89.8, 48.6, 51.4,10.200000000000003,0.0 +12.68965517241379,5,a-cure-i1,2016-17,Hamilton-Wenham - Cutler School,06750010, 0.0, 3.1, 0.0, 1.2, 2.8, 1.6, 91.3, 52.4, 47.6,8.700000000000003,6.9 +9.528089887640443,5,a-cure-i1,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 4.0, 0.2, 2.3, 2.3, 0.2, 91.1, 53.1, 46.9,8.900000000000006,5.3 +13.953488372093032,5,a-cure-i1,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.9, 0.7, 2.7, 2.0, 0.2, 91.4, 48.9, 51.1,8.599999999999994,7.5 +6.686567164179102,5,a-cure-i1,2016-17,Hamilton-Wenham - Winthrop School,06750015, 1.0, 6.2, 3.1, 1.4, 1.7, 0.0, 86.6, 53.4, 46.6,13.400000000000006,5.6 +4.623973727422004,4.62,a-cure-i1,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 0.0, 2.7, 24.9, 30.5, 2.7, 0.0, 39.1, 49.8, 50.2,60.9,17.6 +1,1,a-cure-i1,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 1.2, 2.0, 6.9, 3.2, 0.0, 86.6, 49.8, 50.2,13.400000000000006,0.0 +7.0136986301369895,5,a-cure-i1,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 1.9, 2.5, 5.7, 4.4, 0.0, 85.4, 49.8, 50.2,14.599999999999994,6.4 +1,1,a-cure-i1,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.1, 3.0, 2.7, 5.2, 2.2, 0.2, 86.7, 49.8, 50.2,13.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Hampden-Wilbraham - Soule Road,06800030, 0.3, 3.2, 3.2, 5.6, 3.2, 0.0, 84.4, 50.4, 49.6,15.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 2.6, 3.6, 7.6, 4.3, 0.0, 81.8, 49.8, 50.2,18.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 0.9, 1.4, 3.6, 5.0, 2.3, 0.0, 86.9, 50.0, 50.0,13.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.4, 3.7, 2.1, 5.8, 2.4, 0.0, 85.6, 51.1, 48.9,14.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Hampshire - Hampshire Regional High,06830505, 0.1, 0.5, 0.7, 2.8, 2.3, 0.0, 93.5, 55.1, 44.9,6.5,1.6 +1,1,a-cure-i1,2016-17,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 50.0, 50.0,0.0,0.0 +1,1,a-cure-i1,2016-17,Hanover - Cedar Elementary,01220004, 0.0, 1.4, 1.4, 1.9, 0.0, 0.0, 95.3, 49.8, 50.2,4.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Hanover - Center Elementary,01220005, 0.0, 1.1, 0.3, 1.7, 1.1, 0.0, 95.7, 50.1, 49.9,4.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Hanover - Hanover High,01220505, 0.0, 2.0, 0.6, 0.9, 0.4, 0.0, 96.1, 46.8, 52.9,3.9000000000000057,2.0 +1,1,a-cure-i1,2016-17,Hanover - Hanover Middle,01220305, 0.0, 2.3, 0.6, 1.6, 0.1, 0.0, 95.4, 46.9, 53.1,4.599999999999994,2.0 +24.421052631578934,5,a-cure-i1,2016-17,Hanover - Sylvester,01220015, 0.0, 0.9, 0.0, 3.5, 1.3, 0.0, 94.3, 51.3, 48.7,5.700000000000003,8.7 +1,1,a-cure-i1,2016-17,Harvard - Bromfield,01250505, 0.0, 12.1, 1.9, 3.2, 1.8, 0.0, 81.0, 49.3, 50.7,19.0,3.6 +5.978021978021977,5,a-cure-i1,2016-17,Harvard - Hildreth Elementary School,01250005, 0.0, 9.7, 2.5, 3.9, 2.1, 0.0, 81.8, 48.0, 52.0,18.200000000000003,6.8 +1,1,a-cure-i1,2016-17,Hatfield - Hatfield Elementary,01270005, 0.0, 0.4, 0.4, 5.7, 0.8, 0.0, 92.6, 47.1, 52.9,7.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Hatfield - Smith Academy,01270505, 0.0, 2.5, 1.5, 3.5, 3.5, 0.0, 88.9, 48.0, 52.0,11.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 0.0, 0.7, 4.6, 57.6, 0.7, 0.0, 36.4, 41.7, 58.3,63.6,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Bradford Elementary,01280008, 0.2, 1.8, 3.9, 16.2, 0.8, 0.0, 77.1, 48.7, 51.3,22.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 0.0, 1.7, 4.1, 17.8, 1.2, 0.0, 75.2, 49.8, 50.2,24.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Consentino Middle School,01280100, 0.0, 1.7, 2.8, 45.5, 1.1, 0.1, 48.9, 49.1, 50.9,51.1,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Crowell,01280020, 0.7, 0.7, 4.0, 56.7, 2.7, 0.0, 35.3, 46.7, 53.3,64.7,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Dr Paul Nettle,01280050, 0.0, 2.2, 3.8, 38.0, 0.4, 0.2, 55.3, 50.1, 49.9,44.7,3.6 +1,1,a-cure-i1,2016-17,Haverhill - Golden Hill,01280026, 0.2, 2.1, 3.1, 38.0, 3.1, 0.0, 53.6, 49.7, 50.3,46.4,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Greenleaf,01280027, 0.0, 1.2, 0.8, 27.8, 3.6, 0.0, 66.5, 46.8, 53.2,33.5,0.0 +4.786610878661088,4.79,a-cure-i1,2016-17,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 6.5, 41.3, 0.0, 0.0, 52.2, 23.9, 76.1,47.8,14.3 +1,1,a-cure-i1,2016-17,Haverhill - Haverhill High,01280505, 0.1, 2.2, 3.5, 30.9, 0.9, 0.0, 62.4, 47.2, 52.8,37.6,4.9 +2.5838509316770186,2.58,a-cure-i1,2016-17,Haverhill - John G Whittier,01280085, 0.2, 1.4, 3.3, 26.7, 0.4, 0.2, 67.8, 48.3, 51.7,32.2,5.2 +1,1,a-cure-i1,2016-17,Haverhill - Moody,01280045, 0.0, 1.0, 7.9, 24.1, 1.0, 0.0, 66.0, 37.9, 62.1,34.0,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0.6, 2.5, 3.9, 34.1, 1.6, 0.2, 57.1, 43.5, 56.5,42.9,0.2 +1,1,a-cure-i1,2016-17,Haverhill - TEACH,01280073, 0.0, 2.0, 2.0, 39.2, 2.0, 0.0, 54.9, 23.5, 76.5,45.1,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Tilton,01280075, 0.6, 1.1, 2.8, 48.9, 1.7, 0.0, 45.0, 47.6, 52.4,55.0,0.0 +1,1,a-cure-i1,2016-17,Haverhill - Walnut Square,01280080, 0.0, 1.3, 0.0, 14.6, 5.3, 0.0, 78.8, 47.0, 53.0,21.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Hawlemont - Hawlemont Regional,06850005, 1.9, 1.0, 0.0, 7.6, 3.8, 0.0, 85.7, 55.2, 44.8,14.299999999999997,0.0 +13.583999999999998,5,a-cure-i1,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.5, 0.5, 79.7, 17.5, 0.0, 1.8, 0.0, 41.9, 58.1,100.0,84.89999999999999 +1,1,a-cure-i1,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.3, 0.7, 5.2, 18.3, 2.9, 0.0, 72.5, 57.5, 42.5,27.5,0.0 +1,1,a-cure-i1,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 1.4, 0.5, 7.3, 9.2, 0.0, 81.7, 46.8, 53.2,18.299999999999997,0.0 +15.999999999999995,5,a-cure-i1,2016-17,Hingham - East Elementary School,01310005, 0.0, 2.2, 0.7, 2.0, 2.2, 0.0, 92.8, 42.5, 57.5,7.200000000000003,7.2 +1,1,a-cure-i1,2016-17,Hingham - Hingham High,01310505, 0.0, 2.1, 0.9, 2.8, 2.8, 0.0, 91.4, 49.1, 50.9,8.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Hingham - Hingham Middle School,01310410, 0.0, 3.0, 1.0, 2.4, 2.6, 0.1, 91.0, 49.2, 50.8,9.0,4.800000000000001 +1,1,a-cure-i1,2016-17,Hingham - Plymouth River,01310019, 0.0, 1.9, 1.5, 3.4, 3.0, 0.0, 90.2, 52.6, 47.4,9.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Hingham - South Elementary,01310020, 0.0, 2.7, 2.1, 1.8, 3.9, 0.0, 89.5, 50.2, 49.8,10.5,3.5 +1,1,a-cure-i1,2016-17,Hingham - Wm L Foster Elementary,01310010, 0.0, 1.9, 1.3, 3.6, 3.0, 0.0, 90.2, 46.0, 54.0,9.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 0.0, 4.9, 23.2, 11.0, 6.0, 0.0, 54.8, 49.5, 50.5,45.2,2.9 +1,1,a-cure-i1,2016-17,Holbrook - John F Kennedy,01330018, 0.0, 3.0, 13.8, 12.4, 9.4, 0.0, 61.4, 46.4, 53.6,38.6,0.0 +1,1,a-cure-i1,2016-17,Holbrook - South,01330025, 0.0, 4.3, 17.6, 12.6, 9.0, 0.0, 56.5, 52.2, 47.8,43.5,0.0 +1,1,a-cure-i1,2016-17,Holland - Holland Elementary,01350005, 0.4, 2.1, 2.1, 3.4, 0.4, 0.0, 91.6, 47.3, 52.7,8.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Holliston - Holliston High,01360505, 0.0, 5.2, 0.6, 2.1, 2.5, 0.0, 89.6, 48.5, 51.5,10.400000000000006,0.0 +5.721854304635764,5,a-cure-i1,2016-17,Holliston - Miller School,01360007, 0.3, 5.9, 0.7, 5.9, 2.3, 0.0, 84.9, 48.7, 51.3,15.099999999999994,5.4 +1,1,a-cure-i1,2016-17,Holliston - Placentino Elementary,01360010, 0.1, 8.2, 1.0, 4.6, 4.5, 0.0, 81.6, 47.1, 52.9,18.400000000000006,3.6 +1,1,a-cure-i1,2016-17,Holliston - Robert H. Adams Middle School,01360305, 0.8, 7.7, 0.5, 3.9, 2.3, 0.0, 84.9, 51.0, 49.0,15.099999999999994,2.5 +1.8113207547169812,1.81,a-cure-i1,2016-17,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 3.0, 80.0, 1.8, 0.0, 15.2, 47.5, 52.5,84.8,9.6 +2.756815703380589,2.76,a-cure-i1,2016-17,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.3, 1.0, 89.3, 0.7, 0.3, 8.3, 45.3, 54.7,91.7,15.8 +2.939197930142303,2.94,a-cure-i1,2016-17,Holyoke - Holyoke High,01370505, 0.0, 1.0, 2.6, 72.1, 1.4, 0.1, 22.7, 48.1, 51.9,77.3,14.2 +5.053857350800582,5,a-cure-i1,2016-17,Holyoke - Joseph Metcalf School,01370003, 0.0, 1.1, 5.7, 59.9, 1.5, 0.4, 31.3, 47.3, 52.7,68.7,21.7 +3.110651499482937,3.11,a-cure-i1,2016-17,Holyoke - Kelly Elementary,01370040, 0.0, 0.7, 0.9, 94.5, 0.6, 0.0, 3.3, 48.3, 51.7,96.7,18.8 +3.1320754716981134,3.13,a-cure-i1,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 1.8, 3.2, 78.0, 1.6, 0.2, 15.2, 49.9, 50.1,84.8,16.6 +1,1,a-cure-i1,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.2, 1.9, 1.7, 60.6, 1.9, 0.0, 33.6, 43.2, 56.8,66.4,4.4 +1.199063231850117,1.2,a-cure-i1,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 1.3, 3.9, 79.1, 1.1, 0.0, 14.6, 42.7, 57.3,85.4,6.4 +1.5457348406988696,1.55,a-cure-i1,2016-17,Holyoke - Morgan Full Service Community School,01370025, 0.0, 1.5, 3.9, 91.3, 0.7, 0.0, 2.7, 48.7, 51.3,97.3,9.4 +3.7737459978655283,3.77,a-cure-i1,2016-17,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 1.9, 91.0, 0.5, 0.3, 6.3, 45.6, 54.4,93.7,22.1 +4.372990353697749,4.37,a-cure-i1,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.4, 2.0, 90.9, 0.0, 0.0, 6.7, 41.7, 58.3,93.3,25.5 +4.021208907741252,4.02,a-cure-i1,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.4, 1.9, 89.7, 2.3, 0.0, 5.7, 56.7, 43.3,94.3,23.700000000000003 +1,1,a-cure-i1,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 1.0, 1.9, 1.1, 2.9, 0.8, 0.0, 92.4, 51.7, 48.3,7.599999999999994,2.9 +1,1,a-cure-i1,2016-17,Hopedale - Memorial,01380010, 0.2, 1.6, 0.7, 5.1, 3.6, 0.5, 88.2, 44.1, 55.9,11.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Hopedale - Park Street School,01380003, 0.0, 0.0, 1.6, 0.0, 4.7, 0.0, 93.8, 48.4, 51.6,6.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Hopkinton - Center,01390005, 0.4, 16.0, 0.2, 2.2, 2.9, 0.0, 78.2, 51.3, 48.7,21.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Hopkinton - Elmwood,01390010, 0.4, 13.1, 0.6, 3.3, 4.7, 0.2, 77.7, 46.1, 53.9,22.299999999999997,4.9 +1,1,a-cure-i1,2016-17,Hopkinton - Hopkins Elementary School,01390015, 0.2, 13.7, 0.8, 2.4, 3.4, 0.0, 79.5, 49.1, 50.9,20.5,1.7 +1,1,a-cure-i1,2016-17,Hopkinton - Hopkinton High,01390505, 0.3, 7.6, 0.5, 1.4, 1.2, 0.0, 89.1, 51.5, 48.5,10.900000000000006,3.0999999999999996 +1,1,a-cure-i1,2016-17,Hopkinton - Hopkinton Middle School,01390305, 0.2, 11.5, 0.9, 1.4, 2.0, 0.0, 84.0, 52.3, 47.7,16.0,4.3 +1,1,a-cure-i1,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 4.6, 1.5, 0.0, 0.0, 0.0, 93.8, 40.0, 60.0,6.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Hudson - C A Farley,01410030, 0.0, 2.9, 1.0, 12.5, 2.1, 0.0, 81.5, 53.0, 47.0,18.5,0.0 +1,1,a-cure-i1,2016-17,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.4, 1.3, 7.8, 3.0, 0.2, 86.4, 52.4, 47.6,13.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Hudson - Forest Avenue Elementary,01410015, 0.0, 2.5, 1.2, 9.2, 5.2, 0.0, 81.8, 46.8, 53.2,18.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Hudson - Hudson High,01410505, 0.3, 2.1, 1.7, 5.8, 1.5, 0.0, 88.5, 51.1, 48.9,11.5,2.6 +1,1,a-cure-i1,2016-17,Hudson - Mulready Elementary,01410007, 0.0, 2.0, 1.2, 8.4, 6.0, 0.0, 82.4, 50.0, 50.0,17.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Hull - Hull High,01420505, 0.0, 1.0, 1.0, 3.2, 2.6, 0.3, 92.0, 43.4, 56.6,8.0,0.0 +1,1,a-cure-i1,2016-17,Hull - Lillian M Jacobs,01420015, 0.0, 0.7, 2.9, 1.0, 1.0, 0.0, 94.5, 45.1, 54.9,5.5,0.0 +1,1,a-cure-i1,2016-17,Hull - Memorial Middle,01420305, 0.0, 0.5, 1.0, 0.5, 1.5, 0.0, 96.6, 46.1, 53.9,3.4000000000000057,0.0 +4.972972972972973,4.97,a-cure-i1,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 7.4, 3.5, 6.6, 4.7, 0.0, 77.8, 51.6, 48.4,22.200000000000003,6.9 +1,1,a-cure-i1,2016-17,Ipswich - Ipswich High,01440505, 0.0, 2.0, 0.7, 3.5, 2.9, 0.0, 90.8, 50.3, 49.7,9.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Ipswich - Ipswich Middle School,01440305, 0.0, 1.3, 0.7, 3.9, 4.8, 0.0, 89.3, 51.5, 48.5,10.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 2.3, 1.0, 5.3, 1.8, 0.0, 89.6, 49.7, 50.3,10.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Ipswich - Winthrop,01440015, 0.3, 0.8, 3.4, 6.8, 5.7, 0.0, 83.0, 48.3, 51.7,17.0,3.7 +1,1,a-cure-i1,2016-17,King Philip - King Philip Middle School,06900510, 0.0, 1.8, 1.9, 2.7, 1.7, 0.0, 91.9, 47.4, 52.4,8.099999999999994,0.0 +1,1,a-cure-i1,2016-17,King Philip - King Philip Regional High,06900505, 0.0, 1.7, 1.3, 1.5, 1.9, 0.1, 93.5, 47.0, 53.0,6.5,1.2 +1,1,a-cure-i1,2016-17,Kingston - Kingston Elementary,01450005, 0.2, 0.0, 1.4, 1.6, 0.2, 0.0, 96.6, 48.4, 51.6,3.4000000000000057,0.0 +1,1,a-cure-i1,2016-17,Kingston - Kingston Intermediate,01450020, 0.3, 0.7, 1.2, 3.6, 0.9, 0.0, 93.3, 48.1, 51.9,6.700000000000003,0.0 +8.642570281124499,5,a-cure-i1,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.4, 68.1, 29.7, 1.4, 0.0, 0.4, 45.5, 54.5,99.6,53.800000000000004 +5.799573560767591,5,a-cure-i1,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.2, 2.3, 22.9, 65.6, 2.9, 0.0, 6.2, 50.9, 49.1,93.8,34.0 +1,1,a-cure-i1,2016-17,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 2.4, 1.5, 0.0, 0.0, 96.1, 54.4, 45.6,3.9000000000000057,0.0 +1.2900523560209423,1.29,a-cure-i1,2016-17,Lawrence - Alexander B Bruce,01490015, 0.0, 1.9, 1.4, 92.2, 0.0, 0.0, 4.5, 50.0, 50.0,95.5,7.699999999999999 +1.2545824847250509,1.25,a-cure-i1,2016-17,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.7, 97.4, 0.2, 0.0, 1.8, 50.4, 49.6,98.2,7.7 +1.9591836734693877,1.96,a-cure-i1,2016-17,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.5, 97.3, 0.2, 0.0, 2.0, 51.3, 48.7,98.0,12.0 +1.6241900647948166,1.62,a-cure-i1,2016-17,Lawrence - Edward F. Parthum,01490053, 0.2, 0.5, 0.8, 90.5, 0.8, 0.0, 7.4, 49.1, 50.9,92.6,9.4 +1,1,a-cure-i1,2016-17,Lawrence - Emily G Wetherbee,01490080, 0.0, 3.1, 0.7, 90.8, 0.8, 0.0, 4.7, 49.8, 50.2,95.3,0.0 +1,1,a-cure-i1,2016-17,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.4, 95.9, 0.2, 0.0, 2.5, 47.7, 52.3,97.5,4.1 +2.0650953984287317,2.07,a-cure-i1,2016-17,Lawrence - Frost Middle School,01490525, 0.0, 4.2, 1.9, 82.1, 0.8, 0.0, 10.9, 47.1, 52.9,89.1,11.5 +2.1300309597523217,2.13,a-cure-i1,2016-17,Lawrence - Gerard A. Guilmette,01490022, 0.2, 1.0, 1.5, 93.7, 0.6, 0.0, 3.1, 49.2, 50.8,96.9,12.9 +1,1,a-cure-i1,2016-17,Lawrence - Guilmette Middle School,01490025, 0.0, 1.4, 2.2, 94.0, 0.6, 0.0, 1.8, 51.4, 48.6,98.2,2.8 +3.242798353909465,3.24,a-cure-i1,2016-17,Lawrence - High School Learning Center,01490536, 0.0, 0.6, 1.1, 95.5, 0.0, 0.0, 2.8, 35.2, 64.8,97.2,19.7 +0.9451476793248945,1,a-cure-i1,2016-17,Lawrence - James F Hennessey,01490020, 0.0, 1.6, 1.3, 91.4, 0.5, 0.0, 5.2, 46.1, 53.9,94.8,5.6 +1.087378640776699,1.09,a-cure-i1,2016-17,Lawrence - John Breen School,01490003, 0.0, 4.6, 0.9, 86.2, 0.9, 0.0, 7.3, 44.0, 56.0,92.7,6.3 +2.539165818921669,2.54,a-cure-i1,2016-17,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.3, 97.0, 0.8, 0.3, 1.7, 47.4, 52.6,98.3,15.600000000000001 +2.028397565922921,2.03,a-cure-i1,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.7, 0.7, 96.4, 0.7, 0.0, 1.4, 48.2, 51.8,98.6,12.5 +1,1,a-cure-i1,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.6, 1.7, 91.9, 0.6, 0.0, 5.2, 41.9, 58.1,94.8,0.0 +4.929460580912862,4.93,a-cure-i1,2016-17,Lawrence - Lawrence High School,01490515, 0.1, 1.4, 1.6, 93.1, 0.2, 0.0, 3.6, 47.7, 52.3,96.4,29.7 +1,1,a-cure-i1,2016-17,Lawrence - Oliver Partnership School,01490048, 0.0, 0.4, 1.2, 92.8, 0.6, 0.0, 5.0, 48.4, 51.6,95.0,4.5 +1.095187165775401,1.1,a-cure-i1,2016-17,Lawrence - Parthum Middle School,01490027, 0.0, 0.2, 0.9, 91.7, 0.8, 0.0, 6.5, 47.8, 52.2,93.5,6.4 +5.6680851063829785,5,a-cure-i1,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.7, 2.6, 90.7, 0.0, 0.0, 6.0, 41.7, 58.3,94.0,33.3 +1.902222222222222,1.9,a-cure-i1,2016-17,Lawrence - Robert Frost,01490018, 0.0, 3.0, 2.2, 83.1, 1.7, 0.0, 10.0, 47.9, 52.1,90.0,10.7 +1.221505376344086,1.22,a-cure-i1,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 1.2, 4.7, 87.2, 0.0, 0.0, 7.0, 37.2, 62.8,93.0,7.1 +3.9409761634506246,3.94,a-cure-i1,2016-17,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.6, 2.3, 84.7, 0.6, 0.0, 11.9, 21.0, 79.0,88.1,21.7 +2.292887029288703,2.29,a-cure-i1,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 2.4, 1.7, 91.0, 0.6, 0.0, 4.4, 46.6, 53.4,95.6,13.7 +3.1900311526479754,3.19,a-cure-i1,2016-17,Lawrence - Spark Academy,01490085, 0.0, 2.4, 1.3, 92.1, 0.4, 0.0, 3.7, 53.3, 46.7,96.3,19.200000000000003 +5.069143446852426,5,a-cure-i1,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.9, 96.0, 0.0, 0.0, 3.1, 47.5, 52.5,96.9,30.700000000000003 +3.9064089521871823,3.91,a-cure-i1,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.3, 1.2, 96.8, 0.0, 0.0, 1.7, 47.0, 53.0,98.3,24.0 +3.365015166835187,3.37,a-cure-i1,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.8, 98.0, 0.0, 0.0, 1.1, 53.3, 46.7,98.9,20.8 +1,1,a-cure-i1,2016-17,Lee - Lee Elementary,01500025, 0.0, 2.4, 0.6, 10.7, 4.2, 0.0, 82.1, 52.1, 47.9,17.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Lee - Lee Middle/High School,01500505, 0.0, 2.0, 0.0, 8.9, 2.0, 0.0, 87.1, 50.1, 49.9,12.900000000000006,2.9 +6.526315789473683,5,a-cure-i1,2016-17,Leicester - Leicester High,01510505, 0.7, 3.1, 4.6, 4.8, 1.5, 0.4, 84.8, 49.5, 50.5,15.200000000000003,6.2 +1,1,a-cure-i1,2016-17,Leicester - Leicester Memorial Elementary,01510005, 0.0, 2.8, 5.3, 8.1, 3.1, 0.0, 80.8, 44.3, 55.7,19.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Leicester - Leicester Middle,01510015, 0.0, 2.0, 4.0, 10.2, 2.7, 0.0, 81.1, 49.5, 50.5,18.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Leicester - Leicester Primary School,01510010, 0.6, 3.1, 6.1, 7.8, 1.1, 0.0, 81.3, 41.9, 58.1,18.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Lenox - Lenox Memorial High,01520505, 0.2, 5.3, 0.7, 6.4, 2.2, 0.0, 85.3, 54.5, 45.5,14.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Lenox - Morris,01520015, 0.0, 5.2, 0.6, 6.5, 2.3, 0.0, 85.5, 45.2, 54.8,14.5,0.0 +1,1,a-cure-i1,2016-17,Leominster - Bennett,01530003, 0.0, 1.9, 4.8, 33.3, 1.9, 0.0, 58.1, 41.9, 58.1,41.9,0.0 +1,1,a-cure-i1,2016-17,Leominster - Center For Technical Education Innovation,01530605, 0.0, 3.6, 7.8, 31.5, 3.2, 0.4, 53.6, 37.2, 62.8,46.4,3.1 +1,1,a-cure-i1,2016-17,Leominster - Fall Brook,01530007, 0.3, 1.2, 5.5, 37.3, 3.9, 0.0, 51.8, 49.3, 50.7,48.2,2.9 +1,1,a-cure-i1,2016-17,Leominster - Frances Drake School,01530010, 0.0, 4.9, 7.4, 40.4, 4.8, 0.0, 42.5, 48.5, 51.5,57.5,0.0 +1,1,a-cure-i1,2016-17,Leominster - Johnny Appleseed,01530025, 0.6, 4.4, 11.3, 27.3, 3.7, 0.0, 52.7, 47.9, 52.1,47.3,2.8 +1,1,a-cure-i1,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 7.7, 30.8, 10.3, 0.0, 51.3, 56.4, 43.6,48.7,0.0 +1,1,a-cure-i1,2016-17,Leominster - Leominster High School,01530505, 0.4, 3.3, 9.1, 26.0, 1.8, 0.0, 59.4, 53.1, 46.9,40.6,4.6000000000000005 +1,1,a-cure-i1,2016-17,Leominster - Lincoln School,01530005, 0.0, 0.0, 12.2, 28.6, 4.1, 0.0, 55.1, 28.6, 71.4,44.9,0.0 +1,1,a-cure-i1,2016-17,Leominster - Northwest,01530030, 0.0, 1.6, 5.3, 36.4, 4.6, 0.0, 52.0, 48.6, 51.4,48.0,0.0 +1,1,a-cure-i1,2016-17,Leominster - Priest Street,01530040, 0.0, 4.6, 3.1, 39.2, 6.2, 0.0, 46.9, 49.2, 50.8,53.1,0.0 +1,1,a-cure-i1,2016-17,Leominster - Samoset School,01530045, 0.0, 1.9, 7.5, 29.0, 2.3, 0.0, 59.3, 46.9, 53.1,40.7,2.8 +1,1,a-cure-i1,2016-17,Leominster - Sky View Middle School,01530320, 0.2, 5.0, 7.9, 30.0, 3.5, 0.0, 53.4, 48.0, 52.0,46.6,2.3 +1,1,a-cure-i1,2016-17,Leverett - Leverett Elementary,01540005, 0.0, 3.7, 1.5, 5.9, 7.4, 0.0, 81.6, 41.9, 58.1,18.400000000000006,0.0 +7.6000000000000005,5,a-cure-i1,2016-17,Lexington - Bowman,01550008, 0.0, 32.1, 4.6, 2.5, 8.8, 0.0, 52.0, 48.7, 51.3,48.0,22.8 +2.1538461538461537,2.15,a-cure-i1,2016-17,Lexington - Bridge,01550006, 0.2, 40.9, 5.3, 3.0, 2.5, 0.2, 48.0, 48.3, 51.7,52.0,7.0 +1,1,a-cure-i1,2016-17,Lexington - Fiske,01550015, 0.0, 29.4, 2.7, 2.3, 7.7, 0.0, 57.8, 46.3, 53.7,42.2,0.4 +2.5174825174825175,2.52,a-cure-i1,2016-17,Lexington - Harrington,01550030, 0.2, 43.9, 3.9, 3.2, 6.0, 0.0, 42.8, 49.9, 50.1,57.2,9.0 +3.071017274472169,3.07,a-cure-i1,2016-17,Lexington - Jonas Clarke Middle,01550305, 0.1, 38.9, 5.5, 3.6, 3.9, 0.0, 47.9, 48.6, 51.4,52.1,10.0 +1,1,a-cure-i1,2016-17,Lexington - Joseph Estabrook,01550010, 0.0, 41.5, 6.4, 3.4, 8.2, 0.0, 40.6, 52.9, 47.1,59.4,0.3 +1,1,a-cure-i1,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, 41.0, 1.3, 7.7, 9.0, 0.0, 41.0, 33.3, 66.7,59.0,0.0 +2.6218487394957983,2.62,a-cure-i1,2016-17,Lexington - Lexington High,01550505, 0.0, 36.2, 3.5, 3.6, 4.2, 0.0, 52.4, 49.8, 50.2,47.6,7.8 +3.92831541218638,3.93,a-cure-i1,2016-17,Lexington - Maria Hastings,01550035, 0.0, 40.2, 3.1, 4.0, 8.6, 0.0, 44.2, 47.7, 52.3,55.8,13.7 +2.2174840085287846,2.22,a-cure-i1,2016-17,Lexington - Wm Diamond Middle,01550310, 0.1, 34.9, 3.2, 2.5, 6.3, 0.0, 53.1, 50.9, 49.1,46.9,6.5 +2.8193832599118944,2.82,a-cure-i1,2016-17,Lincoln - Hanscom Middle,01570305, 0.0, 2.4, 12.4, 19.7, 10.4, 0.4, 54.6, 48.6, 51.0,45.4,8.0 +4.8275862068965525,4.83,a-cure-i1,2016-17,Lincoln - Hanscom Primary,01570006, 0.0, 4.0, 7.5, 18.6, 4.3, 0.3, 65.2, 49.4, 50.6,34.8,10.5 +3.1038251366120218,3.1,a-cure-i1,2016-17,Lincoln - Lincoln School,01570025, 0.2, 6.0, 12.6, 9.1, 8.7, 0.0, 63.4, 51.5, 48.5,36.6,7.1000000000000005 +7.422680412371132,5,a-cure-i1,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.1, 6.1, 4.3, 4.2, 4.7, 0.1, 80.6, 50.3, 49.7,19.400000000000006,9.0 +1,1,a-cure-i1,2016-17,Littleton - Littleton High School,01580505, 0.0, 4.9, 0.4, 1.5, 2.8, 0.6, 89.7, 51.0, 49.0,10.299999999999997,0.7 +1,1,a-cure-i1,2016-17,Littleton - Littleton Middle School,01580305, 0.6, 7.1, 0.6, 1.7, 2.8, 0.0, 87.2, 53.3, 46.7,12.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Littleton - Russell St Elementary,01580015, 0.0, 8.8, 2.1, 2.8, 2.8, 0.3, 83.2, 51.9, 48.1,16.799999999999997,0.0 +11.338582677165352,5,a-cure-i1,2016-17,Littleton - Shaker Lane Elementary,01580005, 0.2, 7.5, 1.4, 2.0, 1.4, 0.2, 87.3, 46.7, 53.3,12.700000000000003,9.0 +1,1,a-cure-i1,2016-17,Longmeadow - Blueberry Hill,01590005, 0.0, 18.5, 1.2, 3.3, 4.2, 0.7, 72.1, 49.5, 50.5,27.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Longmeadow - Center,01590010, 0.0, 5.2, 1.7, 5.2, 4.2, 0.0, 83.7, 48.3, 51.7,16.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Longmeadow - Glenbrook Middle,01590017, 0.3, 9.9, 4.2, 5.1, 3.3, 0.0, 77.2, 47.3, 52.7,22.799999999999997,2.3 +1,1,a-cure-i1,2016-17,Longmeadow - Longmeadow High,01590505, 0.0, 8.7, 2.4, 3.8, 2.1, 0.1, 82.9, 50.2, 49.8,17.099999999999994,1.5 +6.890510948905108,5,a-cure-i1,2016-17,Longmeadow - Williams Middle,01590305, 0.3, 5.8, 0.6, 4.1, 2.9, 0.0, 86.3, 44.8, 55.2,13.700000000000003,5.9 +1,1,a-cure-i1,2016-17,Longmeadow - Wolf Swamp Road,01590025, 0.0, 11.4, 2.8, 7.5, 6.0, 0.0, 72.3, 47.4, 52.6,27.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Lowell - Abraham Lincoln,01600020, 0.2, 48.2, 4.8, 29.9, 4.8, 0.0, 12.2, 45.2, 54.8,87.8,3.7 +1,1,a-cure-i1,2016-17,Lowell - B.F. Butler Middle School,01600310, 0.0, 26.2, 7.7, 28.4, 4.4, 0.0, 33.2, 51.4, 48.6,66.8,2.3 +1.6094674556213018,1.61,a-cure-i1,2016-17,Lowell - Bartlett Community Partnership,01600090, 0.2, 36.8, 9.4, 33.8, 4.3, 0.0, 15.5, 49.1, 50.9,84.5,8.5 +1,1,a-cure-i1,2016-17,Lowell - Charles W Morey,01600030, 0.4, 59.7, 3.6, 12.3, 4.4, 0.0, 19.7, 47.0, 53.0,80.3,3.7 +1,1,a-cure-i1,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 0.2, 48.0, 4.2, 32.3, 5.6, 0.0, 9.7, 46.0, 54.0,90.3,4.0 +1,1,a-cure-i1,2016-17,Lowell - Dr An Wang School,01600345, 0.0, 16.4, 7.5, 42.0, 3.0, 0.0, 31.1, 48.6, 51.4,68.9,1.3 +1,1,a-cure-i1,2016-17,Lowell - Dr Gertrude Bailey,01600002, 0.2, 34.3, 4.4, 21.6, 5.1, 0.0, 34.5, 42.6, 57.4,65.5,0.0 +1,1,a-cure-i1,2016-17,Lowell - Greenhalge,01600015, 0.0, 14.2, 10.2, 40.1, 4.0, 0.2, 31.3, 48.7, 51.3,68.7,3.7 +2.772486772486773,2.77,a-cure-i1,2016-17,Lowell - Henry J Robinson Middle,01600330, 0.0, 19.4, 11.7, 41.3, 3.2, 0.0, 24.4, 47.1, 52.9,75.6,13.100000000000001 +2.519148936170213,2.52,a-cure-i1,2016-17,Lowell - James S Daley Middle School,01600315, 0.0, 43.2, 3.9, 18.2, 5.2, 0.0, 29.5, 48.6, 51.4,70.5,11.1 +2.401263823064771,2.4,a-cure-i1,2016-17,Lowell - James Sullivan Middle School,01600340, 0.0, 12.7, 9.1, 38.7, 2.8, 0.0, 36.7, 48.7, 51.3,63.3,9.5 +1,1,a-cure-i1,2016-17,Lowell - John J Shaughnessy,01600050, 0.2, 29.5, 4.3, 36.0, 4.1, 0.0, 25.8, 48.6, 51.4,74.2,0.0 +1,1,a-cure-i1,2016-17,Lowell - Joseph McAvinnue,01600010, 0.0, 14.1, 5.6, 54.4, 3.6, 0.0, 22.2, 47.2, 52.8,77.8,4.0 +1.6355555555555554,1.64,a-cure-i1,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 53.8, 4.3, 29.1, 2.8, 0.0, 10.0, 47.5, 52.5,90.0,9.2 +1.8710644677661168,1.87,a-cure-i1,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 16.7, 38.9, 11.1, 0.0, 33.3, 0.0, 100.0,66.7,7.8 +1,1,a-cure-i1,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 6.1, 12.1, 60.6, 3.0, 0.0, 18.2, 27.3, 72.7,81.8,0.0 +2.312138728323699,2.31,a-cure-i1,2016-17,Lowell - Lowell High,01600505, 0.1, 32.0, 11.3, 23.8, 1.9, 0.0, 30.8, 50.0, 50.0,69.2,10.0 +3.170506912442397,3.17,a-cure-i1,2016-17,Lowell - Moody Elementary,01600027, 0.0, 16.5, 3.6, 38.2, 6.8, 0.0, 34.9, 51.0, 49.0,65.1,12.9 +1,1,a-cure-i1,2016-17,Lowell - Pawtucketville Memorial,01600036, 0.0, 21.6, 6.5, 26.9, 4.4, 0.0, 40.6, 45.0, 55.0,59.4,0.0 +2.955223880597015,2.96,a-cure-i1,2016-17,Lowell - Peter W Reilly,01600040, 0.0, 7.8, 4.4, 37.7, 3.6, 0.0, 46.4, 51.5, 48.5,53.6,9.9 +2.6956521739130435,2.7,a-cure-i1,2016-17,Lowell - Pyne Arts,01600018, 0.0, 13.1, 6.0, 32.3, 3.8, 0.0, 44.8, 46.4, 53.6,55.2,9.3 +1,1,a-cure-i1,2016-17,Lowell - Rogers STEM Academy,01600005, 0.0, 23.9, 9.4, 37.9, 4.1, 0.0, 24.7, 47.0, 53.0,75.3,3.0 +2.8571428571428568,2.86,a-cure-i1,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 11.6, 5.3, 44.3, 3.3, 0.0, 35.6, 51.6, 48.4,64.4,11.5 +1,1,a-cure-i1,2016-17,Lowell - The Career Academy,01600515, 0.0, 14.3, 9.2, 48.7, 3.4, 0.0, 24.4, 34.5, 65.5,75.6,1.6 +1,1,a-cure-i1,2016-17,Lowell - Washington,01600055, 0.0, 47.7, 5.0, 21.7, 7.0, 0.0, 18.6, 44.2, 55.8,81.4,0.0 +1.140495867768595,1.14,a-cure-i1,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 20.1, 27.5, 45.9, 3.3, 0.0, 3.2, 51.2, 48.8,96.8,6.8999999999999995 +5.418439716312057,5,a-cure-i1,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 14.9, 1.1, 34.0, 6.4, 0.0, 43.6, 55.3, 43.6,56.4,19.1 +1,1,a-cure-i1,2016-17,Ludlow - Chapin Street Elementary School,01610020, 0.9, 0.3, 0.9, 12.1, 2.6, 0.0, 83.2, 54.0, 46.0,16.799999999999997,2.0 +1,1,a-cure-i1,2016-17,Ludlow - East Street Elementary School,01610010, 0.5, 0.3, 1.4, 11.4, 2.4, 0.0, 84.1, 47.6, 52.4,15.900000000000006,0.0 +7.295999999999999,5,a-cure-i1,2016-17,Ludlow - Ludlow Senior High,01610505, 0.2, 0.6, 2.0, 7.8, 1.9, 0.0, 87.5, 50.5, 49.5,12.5,5.699999999999999 +1,1,a-cure-i1,2016-17,Ludlow - Paul R Baird Middle,01610305, 0.3, 0.6, 1.9, 6.4, 2.3, 0.0, 88.5, 51.5, 48.5,11.5,1.9 +1,1,a-cure-i1,2016-17,Ludlow - Veterans Park Elementary,01610023, 0.5, 0.0, 3.0, 7.9, 3.0, 0.0, 85.5, 43.7, 56.3,14.5,0.0 +1,1,a-cure-i1,2016-17,Lunenburg - Lunenburg High,01620505, 0.5, 4.3, 3.2, 2.7, 1.4, 0.2, 87.7, 51.7, 48.3,12.299999999999997,4.8 +1,1,a-cure-i1,2016-17,Lunenburg - Lunenburg Middle School,01620305, 0.8, 1.0, 1.5, 7.7, 0.8, 0.8, 87.4, 43.6, 56.4,12.599999999999994,1.3 +1,1,a-cure-i1,2016-17,Lunenburg - Lunenburg Primary School,01620010, 0.0, 2.1, 1.0, 7.3, 3.6, 0.3, 85.8, 46.9, 53.1,14.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 0.8, 1.3, 1.0, 7.3, 2.5, 0.8, 86.5, 49.3, 50.8,13.5,0.0 +1,1,a-cure-i1,2016-17,Lynn - A Drewicz Elementary,01630016, 0.4, 16.5, 8.1, 65.1, 4.1, 0.0, 5.8, 50.6, 49.4,94.2,4.3 +2.084772370486656,2.08,a-cure-i1,2016-17,Lynn - Aborn,01630011, 0.8, 5.4, 15.8, 33.6, 8.1, 0.0, 36.3, 52.1, 47.9,63.7,8.3 +2.3717647058823528,2.37,a-cure-i1,2016-17,Lynn - Breed Middle School,01630405, 0.5, 11.0, 9.9, 60.1, 3.4, 0.0, 15.0, 47.7, 52.3,85.0,12.6 +1,1,a-cure-i1,2016-17,Lynn - Brickett Elementary,01630020, 0.4, 12.1, 10.6, 55.0, 5.7, 0.0, 16.3, 48.9, 51.1,83.7,0.7 +1,1,a-cure-i1,2016-17,Lynn - Capt William G Shoemaker,01630090, 0.0, 6.4, 14.1, 24.4, 9.6, 0.0, 45.5, 38.5, 61.5,54.5,0.0 +2.528497409326425,2.53,a-cure-i1,2016-17,Lynn - Classical High,01630505, 0.2, 11.7, 11.9, 50.9, 2.4, 0.1, 22.8, 47.1, 52.9,77.2,12.200000000000001 +1,1,a-cure-i1,2016-17,Lynn - Cobbet Elementary,01630035, 0.0, 6.9, 10.0, 76.9, 2.1, 0.0, 4.2, 49.3, 50.7,95.8,3.4 +1,1,a-cure-i1,2016-17,Lynn - E J Harrington,01630045, 0.0, 6.9, 9.3, 72.6, 2.2, 0.0, 9.0, 47.4, 52.6,91.0,0.4 +1,1,a-cure-i1,2016-17,Lynn - Early Childhood Center,01630004, 0.7, 9.7, 10.7, 61.7, 3.7, 0.0, 13.4, 46.3, 53.7,86.6,0.0 +1,1,a-cure-i1,2016-17,Lynn - Edward A Sisson,01630095, 0.9, 10.5, 6.6, 40.5, 5.0, 0.0, 36.4, 46.5, 53.5,63.6,0.0 +2.6546275395033865,2.65,a-cure-i1,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.3, 1.6, 5.2, 79.5, 1.9, 0.0, 11.4, 38.0, 62.0,88.6,14.700000000000001 +1,1,a-cure-i1,2016-17,Lynn - Hood,01630055, 0.0, 7.8, 8.8, 63.6, 2.5, 0.0, 17.3, 49.9, 50.1,82.7,4.5 +1,1,a-cure-i1,2016-17,Lynn - Ingalls,01630060, 0.1, 10.3, 10.6, 67.0, 3.3, 0.1, 8.5, 50.1, 49.9,91.5,0.4 +1,1,a-cure-i1,2016-17,Lynn - Julia F Callahan,01630030, 0.0, 8.4, 16.9, 46.0, 7.0, 0.0, 21.7, 45.6, 54.4,78.3,3.9 +1,1,a-cure-i1,2016-17,Lynn - Lincoln-Thomson,01630070, 0.0, 10.1, 6.5, 55.2, 7.7, 0.0, 20.6, 50.0, 50.0,79.4,0.0 +2.916256157635468,2.92,a-cure-i1,2016-17,Lynn - Lynn English High,01630510, 0.1, 8.1, 9.7, 60.3, 2.9, 0.0, 18.8, 47.6, 52.4,81.2,14.8 +3.272294887039239,3.27,a-cure-i1,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 0.2, 6.0, 8.6, 66.9, 2.5, 0.0, 15.9, 42.1, 57.9,84.1,17.2 +1,1,a-cure-i1,2016-17,Lynn - Lynn Woods,01630075, 1.8, 2.5, 1.2, 17.8, 11.0, 0.0, 65.6, 50.9, 49.1,34.400000000000006,0.0 +2.3466666666666667,2.35,a-cure-i1,2016-17,Lynn - Pickering Middle,01630420, 0.8, 9.7, 7.0, 37.5, 5.0, 0.0, 40.0, 47.6, 52.4,60.0,8.8 +1,1,a-cure-i1,2016-17,Lynn - Robert L Ford,01630050, 0.2, 7.5, 6.9, 77.4, 2.4, 0.0, 5.7, 48.8, 51.2,94.3,4.5 +1,1,a-cure-i1,2016-17,Lynn - Sewell-Anderson,01630085, 0.0, 4.9, 8.7, 49.0, 3.5, 0.0, 33.9, 42.7, 57.3,66.1,0.0 +1.5711060948081264,1.57,a-cure-i1,2016-17,Lynn - Thurgood Marshall Mid,01630305, 0.5, 8.6, 9.5, 66.9, 3.1, 0.0, 11.4, 47.7, 52.3,88.6,8.7 +1,1,a-cure-i1,2016-17,Lynn - Tracy,01630100, 0.0, 6.1, 9.9, 72.2, 4.7, 0.0, 7.1, 50.7, 49.3,92.9,0.0 +1,1,a-cure-i1,2016-17,Lynn - Washington Elementary School,01630005, 0.2, 6.2, 12.0, 74.4, 3.4, 0.0, 3.8, 50.2, 49.8,96.2,4.7 +1,1,a-cure-i1,2016-17,Lynn - William R Fallon,01630080, 0.0, 2.1, 10.4, 60.4, 2.1, 0.0, 25.0, 10.4, 89.6,75.0,1.4 +1,1,a-cure-i1,2016-17,Lynn - Wm P Connery,01630040, 0.0, 13.3, 6.0, 73.2, 2.9, 0.0, 4.6, 49.4, 50.6,95.4,3.8 +1,1,a-cure-i1,2016-17,Lynnfield - Huckleberry Hill,01640010, 0.0, 9.7, 1.7, 6.5, 2.9, 0.0, 79.2, 54.0, 46.0,20.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Lynnfield - Lynnfield High,01640505, 0.0, 3.0, 2.1, 3.5, 1.3, 0.0, 90.1, 51.1, 48.9,9.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Lynnfield - Lynnfield Middle School,01640405, 0.0, 3.7, 1.3, 4.0, 2.4, 0.0, 88.5, 48.9, 51.1,11.5,0.0 +1,1,a-cure-i1,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, 4.3, 0.0, 6.4, 8.5, 0.0, 80.9, 44.7, 55.3,19.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Lynnfield - Summer Street,01640020, 0.0, 4.3, 2.4, 4.3, 0.7, 0.0, 88.4, 41.3, 58.7,11.599999999999994,0.0 +4.894514767932489,4.89,a-cure-i1,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 42.3, 1.0, 0.0, 4.1, 0.0, 52.6, 45.4, 54.6,47.4,14.5 +1.552941176470588,1.55,a-cure-i1,2016-17,Malden - Beebe,01650003, 0.1, 37.5, 14.5, 11.6, 4.1, 0.2, 32.0, 51.1, 48.9,68.0,6.6 +1.4035087719298247,1.4,a-cure-i1,2016-17,Malden - Ferryway,01650013, 0.3, 19.0, 20.8, 29.4, 4.6, 0.0, 25.9, 50.9, 49.1,74.1,6.5 +1,1,a-cure-i1,2016-17,Malden - Forestdale,01650027, 0.0, 9.6, 19.4, 24.4, 5.0, 0.3, 41.2, 49.3, 50.7,58.8,0.0 +2.25,2.25,a-cure-i1,2016-17,Malden - Linden,01650047, 0.3, 21.9, 20.7, 17.2, 3.9, 0.0, 36.0, 46.8, 53.2,64.0,9.0 +1,1,a-cure-i1,2016-17,Malden - Malden Early Learning Center,01650049, 0.0, 37.5, 14.0, 7.4, 5.4, 0.0, 35.8, 44.5, 55.5,64.2,0.0 +3.047619047619048,3.05,a-cure-i1,2016-17,Malden - Malden High,01650505, 0.4, 23.4, 21.2, 22.9, 3.4, 0.1, 28.6, 49.4, 50.6,71.4,13.600000000000001 +1.6292428198433422,1.63,a-cure-i1,2016-17,Malden - Salemwood,01650057, 0.2, 19.3, 22.8, 31.0, 3.2, 0.0, 23.4, 48.0, 52.0,76.6,7.8 +1,1,a-cure-i1,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.4, 0.0, 1.3, 2.7, 0.0, 95.6, 49.8, 50.2,4.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.7, 0.2, 0.7, 0.5, 0.0, 97.9, 56.1, 43.9,2.0999999999999943,4.2 +29.777777777777825,5,a-cure-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 2.1, 0.0, 0.8, 0.8, 0.0, 96.4, 48.7, 51.3,3.5999999999999943,6.7 +1,1,a-cure-i1,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.3, 1.1, 0.6, 0.0, 98.1, 48.2, 51.8,1.9000000000000057,0.0 +1,1,a-cure-i1,2016-17,Mansfield - Everett W Robinson,01670007, 0.1, 7.7, 3.0, 5.4, 4.8, 0.0, 79.0, 46.8, 53.2,21.0,0.0 +1,1,a-cure-i1,2016-17,Mansfield - Harold L Qualters Middle,01670035, 0.0, 4.9, 2.9, 3.8, 4.0, 0.0, 84.5, 48.2, 51.8,15.5,2.4 +1,1,a-cure-i1,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0.1, 5.9, 3.4, 5.4, 2.0, 0.0, 83.2, 46.8, 53.2,16.799999999999997,3.6 +7.404958677685953,5,a-cure-i1,2016-17,Mansfield - Mansfield High,01670505, 0.3, 3.6, 2.5, 3.3, 2.2, 0.2, 87.9, 50.6, 49.4,12.099999999999994,5.6 +1,1,a-cure-i1,2016-17,Mansfield - Roland Green School,01670003, 0.0, 9.3, 4.7, 5.8, 4.7, 0.0, 75.6, 45.3, 54.7,24.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Marblehead - Elbridge Gerry,01680015, 0.0, 2.0, 0.7, 9.5, 2.7, 0.7, 84.4, 45.6, 54.4,15.599999999999994,4.2 +1,1,a-cure-i1,2016-17,Marblehead - Glover,01680020, 0.0, 1.5, 1.2, 5.9, 2.9, 0.0, 88.6, 43.4, 56.6,11.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Marblehead - L H Coffin,01680010, 0.0, 3.0, 1.2, 9.6, 5.4, 0.0, 80.8, 49.1, 50.9,19.200000000000003,4.2 +1,1,a-cure-i1,2016-17,Marblehead - Malcolm L Bell,01680005, 0.0, 2.2, 2.6, 10.9, 3.7, 0.0, 80.5, 44.6, 55.4,19.5,0.0 +8.715447154471546,5,a-cure-i1,2016-17,Marblehead - Marblehead High,01680505, 0.1, 1.6, 3.7, 5.4, 1.4, 0.0, 87.7, 53.9, 46.1,12.299999999999997,6.699999999999999 +1,1,a-cure-i1,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.2, 2.6, 5.6, 2.8, 0.0, 87.9, 52.5, 47.5,12.099999999999994,2.9 +1,1,a-cure-i1,2016-17,Marblehead - Village School,01680016, 0.3, 1.3, 4.0, 5.7, 2.5, 0.0, 86.1, 47.2, 52.8,13.900000000000006,3.7 +1,1,a-cure-i1,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.9, 2.6, 2.6, 2.2, 1.7, 0.0, 90.0, 42.6, 57.4,10.0,0.0 +1,1,a-cure-i1,2016-17,Marion - Sippican,01690005, 0.2, 1.7, 2.4, 2.0, 6.1, 0.0, 87.6, 48.5, 51.5,12.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 2.8, 2.9, 46.1, 3.7, 0.0, 44.5, 48.2, 51.8,55.5,4.5 +1,1,a-cure-i1,2016-17,Marlborough - Charles Jaworek School,01700030, 0.5, 7.4, 2.3, 42.1, 1.8, 0.0, 45.9, 48.4, 51.6,54.1,0.0 +1,1,a-cure-i1,2016-17,Marlborough - Early Childhood Center,01700006, 0.0, 15.9, 6.1, 18.9, 4.9, 0.0, 54.3, 42.1, 57.9,45.7,0.0 +1,1,a-cure-i1,2016-17,Marlborough - Francis J Kane,01700008, 0.0, 2.3, 5.0, 40.4, 3.1, 0.0, 49.3, 47.3, 52.7,50.7,0.0 +1.7211155378486056,1.72,a-cure-i1,2016-17,Marlborough - Marlborough High,01700505, 0.1, 3.8, 3.3, 41.8, 1.3, 0.0, 49.8, 48.9, 51.1,50.2,5.4 +1,1,a-cure-i1,2016-17,Marlborough - Richer,01700025, 0.2, 2.5, 4.2, 54.0, 4.0, 0.0, 35.2, 50.4, 49.6,64.8,0.0 +1,1,a-cure-i1,2016-17,Marshfield - Daniel Webster,01710015, 0.3, 1.8, 0.5, 3.2, 1.3, 0.8, 92.1, 50.4, 49.6,7.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 97.6, 38.2, 61.8,2.4000000000000057,0.0 +1,1,a-cure-i1,2016-17,Marshfield - Furnace Brook Middle,01710310, 0.1, 1.0, 0.1, 2.7, 1.2, 0.1, 94.9, 47.3, 52.7,5.099999999999994,1.5 +1,1,a-cure-i1,2016-17,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.2, 0.5, 2.6, 3.1, 0.0, 93.6, 50.4, 49.6,6.400000000000006,4.1 +1,1,a-cure-i1,2016-17,Marshfield - Marshfield High,01710505, 0.2, 0.8, 0.9, 2.2, 0.7, 0.1, 95.1, 50.2, 49.8,4.900000000000006,1.0 +1,1,a-cure-i1,2016-17,Marshfield - Martinson Elementary,01710025, 0.9, 2.9, 0.5, 4.5, 1.6, 0.0, 89.6, 49.1, 50.9,10.400000000000006,3.9 +1,1,a-cure-i1,2016-17,Marshfield - South River,01710010, 0.0, 0.3, 0.6, 3.0, 3.6, 0.0, 92.5, 49.3, 50.7,7.5,0.0 +1,1,a-cure-i1,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.8, 1.2, 3.3, 10.3, 4.5, 0.2, 78.7, 47.8, 52.2,21.299999999999997,1.9 +3.8545454545454545,3.85,a-cure-i1,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 1.7, 4.6, 4.6, 11.0, 0.0, 78.0, 56.6, 43.4,22.0,5.3 +7.714576962283385,5,a-cure-i1,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 1.9, 41.8, 48.9, 5.5, 0.0, 1.9, 48.9, 51.1,98.1,47.3 +1,1,a-cure-i1,2016-17,Masconomet - Masconomet Regional High School,07050505, 0.3, 3.1, 0.3, 2.4, 1.2, 0.0, 92.7, 50.2, 49.8,7.299999999999997,1.4 +1,1,a-cure-i1,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 0.2, 3.7, 0.5, 1.8, 2.5, 0.2, 91.2, 52.9, 47.1,8.799999999999997,4.9 +1,1,a-cure-i1,2016-17,Mashpee - Kenneth Coombs School,01720005, 8.0, 2.2, 4.1, 7.3, 7.6, 0.3, 70.4, 48.4, 51.6,29.599999999999994,3.6 +1,1,a-cure-i1,2016-17,Mashpee - Mashpee High,01720505, 5.1, 1.7, 3.6, 3.4, 5.8, 0.0, 80.5, 45.5, 54.5,19.5,1.9 +1,1,a-cure-i1,2016-17,Mashpee - Mashpee Middle School,01720020, 5.8, 2.2, 4.0, 3.6, 2.9, 0.4, 81.2, 49.8, 50.2,18.799999999999997,2.0 +1,1,a-cure-i1,2016-17,Mashpee - Quashnet School,01720035, 7.1, 2.4, 3.2, 2.2, 5.7, 0.0, 79.4, 50.6, 49.4,20.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 0.3, 2.2, 11.1, 16.8, 4.9, 0.3, 64.3, 55.2, 44.8,35.7,0.0 +4.642487046632124,4.64,a-cure-i1,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.5, 1.3, 45.9, 46.7, 1.9, 0.1, 3.5, 52.3, 47.7,96.5,28.0 +1,1,a-cure-i1,2016-17,Mattapoisett - Center,01730005, 0.0, 1.7, 0.9, 3.0, 3.4, 0.0, 91.1, 48.1, 51.9,8.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.9, 1.9, 3.3, 3.8, 0.0, 89.2, 44.3, 55.7,10.799999999999997,0.0 +4.227979274611399,4.23,a-cure-i1,2016-17,Maynard - Fowler School,01740305, 0.2, 1.8, 2.5, 12.0, 2.8, 0.0, 80.7, 47.8, 52.2,19.299999999999997,5.1 +10.470046082949306,5,a-cure-i1,2016-17,Maynard - Green Meadow,01740010, 0.0, 1.2, 1.6, 12.7, 6.2, 0.0, 78.3, 47.8, 52.2,21.700000000000003,14.2 +1,1,a-cure-i1,2016-17,Maynard - Maynard High,01740505, 0.2, 3.8, 4.8, 11.2, 3.2, 0.0, 76.9, 50.8, 49.2,23.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Medfield - Dale Street,01750005, 0.5, 3.5, 0.8, 4.6, 4.1, 0.0, 86.4, 48.0, 52.0,13.599999999999994,2.8 +1,1,a-cure-i1,2016-17,Medfield - Medfield Senior High,01750505, 0.0, 5.5, 1.1, 2.1, 2.3, 0.2, 88.8, 49.8, 50.2,11.200000000000003,4.5 +1,1,a-cure-i1,2016-17,Medfield - Memorial School,01750003, 0.2, 3.6, 1.9, 4.1, 2.9, 0.0, 87.4, 48.0, 52.0,12.599999999999994,0.0 +6.74829931972789,5,a-cure-i1,2016-17,Medfield - Ralph Wheelock School,01750007, 0.9, 2.6, 0.9, 8.0, 2.3, 0.0, 85.3, 45.1, 54.9,14.700000000000003,6.2 +1,1,a-cure-i1,2016-17,Medfield - Thomas Blake Middle,01750305, 0.2, 4.3, 0.6, 1.9, 3.2, 0.0, 89.8, 50.0, 50.0,10.200000000000003,4.6 +1,1,a-cure-i1,2016-17,Medford - Brooks School,01760130, 0.0, 4.4, 8.7, 4.0, 6.0, 0.0, 76.9, 47.5, 52.5,23.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Medford - Christopher Columbus,01760140, 0.0, 5.4, 20.4, 12.9, 4.7, 0.0, 56.6, 47.7, 52.3,43.4,0.0 +1,1,a-cure-i1,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 4.5, 22.7, 22.7, 4.5, 0.0, 45.5, 27.3, 72.7,54.5,0.0 +1,1,a-cure-i1,2016-17,Medford - John J McGlynn Elementary School,01760068, 1.1, 13.8, 13.8, 11.0, 6.8, 0.0, 53.5, 51.5, 48.5,46.5,0.0 +1,1,a-cure-i1,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.4, 12.6, 15.3, 14.3, 2.7, 0.0, 54.6, 47.3, 52.7,45.4,0.0 +1,1,a-cure-i1,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 5.1, 8.9, 6.9, 4.5, 0.2, 74.3, 47.6, 52.4,25.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Medford - Medford High,01760505, 0.2, 10.2, 17.1, 8.9, 3.3, 0.0, 60.3, 52.0, 48.0,39.7,0.0 +1,1,a-cure-i1,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 1.6, 14.8, 8.9, 2.3, 0.0, 72.4, 35.0, 65.0,27.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Medford - Milton Fuller Roberts,01760150, 0.5, 13.0, 8.5, 10.3, 5.1, 0.0, 62.6, 49.1, 50.9,37.4,0.0 +1,1,a-cure-i1,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.0, 2.4, 1.4, 3.6, 3.8, 0.0, 88.8, 53.1, 46.9,11.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Medway - John D Mc Govern Elementary,01770013, 0.0, 2.9, 1.2, 2.6, 1.7, 0.0, 91.5, 49.3, 50.7,8.5,0.0 +10.47619047619047,5,a-cure-i1,2016-17,Medway - Medway High,01770505, 0.4, 1.8, 1.3, 3.0, 1.7, 0.1, 91.6, 49.1, 50.9,8.400000000000006,5.5 +1,1,a-cure-i1,2016-17,Medway - Medway Middle,01770305, 0.4, 3.9, 1.8, 3.2, 1.5, 0.0, 89.0, 50.3, 49.7,11.0,1.9 +1,1,a-cure-i1,2016-17,Melrose - Early Childhood Center,01780003, 0.0, 3.8, 2.1, 1.4, 8.6, 0.0, 84.1, 47.2, 52.8,15.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Melrose - Herbert Clark Hoover,01780017, 0.0, 4.8, 2.4, 5.6, 5.6, 0.0, 81.7, 48.6, 51.4,18.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Melrose - Horace Mann,01780025, 0.0, 1.9, 3.4, 2.3, 3.4, 0.0, 89.1, 55.1, 44.9,10.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Melrose - Lincoln,01780020, 0.0, 9.1, 8.1, 10.0, 5.8, 0.0, 67.0, 50.2, 49.8,33.0,0.0 +1,1,a-cure-i1,2016-17,Melrose - Melrose High,01780505, 0.0, 4.0, 7.8, 4.6, 3.1, 0.0, 80.5, 53.0, 47.0,19.5,2.9 +1,1,a-cure-i1,2016-17,Melrose - Melrose Middle,01780305, 0.0, 4.4, 6.1, 2.3, 4.3, 0.0, 82.9, 49.6, 50.4,17.099999999999994,2.0 +1,1,a-cure-i1,2016-17,Melrose - Roosevelt,01780035, 0.0, 5.1, 6.1, 6.1, 4.9, 0.0, 77.9, 48.3, 51.7,22.099999999999994,0.0 +5.746478873239435,5,a-cure-i1,2016-17,Melrose - Winthrop,01780050, 0.0, 2.7, 5.6, 2.1, 3.8, 0.0, 85.8, 48.0, 52.0,14.200000000000003,5.1 +28.799999999999997,5,a-cure-i1,2016-17,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.2, 0.0, 4.7, 1.6, 0.0, 93.5, 48.4, 51.6,6.5,11.7 +1,1,a-cure-i1,2016-17,Mendon-Upton - Memorial School,07100001, 0.0, 5.5, 0.5, 3.9, 3.2, 0.0, 87.0, 44.9, 55.1,13.0,4.0 +1,1,a-cure-i1,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 2.3, 0.6, 4.7, 2.9, 0.0, 89.4, 51.3, 48.7,10.599999999999994,1.3 +1,1,a-cure-i1,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 2.0, 1.0, 2.9, 2.2, 0.0, 91.9, 54.0, 46.0,8.099999999999994,2.4 +1,1,a-cure-i1,2016-17,Methuen - Comprehensive Grammar School,01810050, 0.0, 6.0, 1.0, 33.6, 4.0, 0.1, 55.2, 50.5, 49.5,44.8,0.0 +1,1,a-cure-i1,2016-17,Methuen - Donald P Timony Grammar,01810060, 0.1, 3.9, 0.7, 46.0, 5.6, 0.1, 43.6, 47.9, 52.1,56.4,0.0 +1,1,a-cure-i1,2016-17,Methuen - Marsh Grammar School,01810030, 0.0, 2.7, 0.5, 25.9, 4.5, 0.0, 66.3, 47.3, 52.7,33.7,0.0 +1,1,a-cure-i1,2016-17,Methuen - Methuen High,01810505, 0.2, 4.0, 0.2, 33.7, 5.1, 0.1, 56.6, 48.0, 52.0,43.4,2.2 +1,1,a-cure-i1,2016-17,Methuen - Tenney Grammar School,01810055, 0.0, 3.1, 0.1, 47.8, 5.9, 0.0, 43.2, 46.0, 54.0,56.8,0.0 +1,1,a-cure-i1,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 0.5, 1.0, 1.7, 4.2, 6.9, 0.2, 85.5, 46.4, 53.6,14.5,0.0 +1,1,a-cure-i1,2016-17,Middleborough - John T. Nichols Middle,01820305, 0.9, 1.3, 1.8, 4.1, 2.7, 0.0, 89.1, 51.0, 49.0,10.900000000000006,2.2 +1,1,a-cure-i1,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 0.9, 0.7, 2.9, 2.0, 3.4, 0.0, 90.1, 49.0, 51.0,9.900000000000006,2.8 +1,1,a-cure-i1,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.8, 2.3, 1.5, 1.5, 0.0, 93.8, 50.8, 49.2,6.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Middleborough - Middleborough High,01820505, 0.6, 0.7, 2.2, 3.2, 3.0, 0.0, 90.3, 48.4, 51.6,9.700000000000003,1.3 +1,1,a-cure-i1,2016-17,Middleton - Fuller Meadow,01840003, 0.5, 4.5, 0.5, 2.7, 3.6, 0.0, 88.2, 52.0, 48.0,11.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Middleton - Howe-Manning,01840005, 0.0, 4.8, 0.8, 4.6, 4.2, 0.0, 85.6, 46.2, 53.8,14.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Milford - Brookside,01850065, 0.6, 1.4, 3.6, 28.7, 3.6, 0.2, 61.9, 49.1, 50.9,38.1,1.6 +1,1,a-cure-i1,2016-17,Milford - Memorial,01850010, 1.5, 2.8, 2.1, 28.5, 5.2, 0.2, 59.7, 44.8, 55.2,40.3,1.8 +3.157894736842105,3.16,a-cure-i1,2016-17,Milford - Milford High,01850505, 1.4, 2.5, 3.0, 22.0, 1.4, 0.1, 69.6, 50.2, 49.8,30.400000000000006,6.0 +1,1,a-cure-i1,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, 2.2, 0.0, 17.6, 1.5, 0.0, 78.7, 36.0, 64.0,21.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Milford - Stacy Middle,01850305, 1.1, 2.4, 2.8, 24.6, 3.3, 0.0, 65.8, 47.6, 52.4,34.2,1.6 +1,1,a-cure-i1,2016-17,Milford - Woodland,01850090, 3.0, 2.1, 2.5, 27.4, 3.8, 0.0, 61.2, 47.3, 52.7,38.8,2.1 +1,1,a-cure-i1,2016-17,Millbury - Elmwood Street,01860017, 0.0, 2.8, 2.0, 6.6, 6.4, 0.0, 82.2, 45.5, 54.5,17.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Millbury - Millbury Junior/Senior High,01860505, 0.3, 1.9, 2.5, 7.4, 2.9, 0.1, 84.9, 50.8, 49.2,15.099999999999994,1.7 +1,1,a-cure-i1,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 3.0, 1.6, 8.2, 5.3, 0.0, 81.9, 50.6, 49.4,18.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Millis - Clyde F Brown,01870005, 0.4, 0.6, 0.6, 5.0, 4.8, 0.0, 88.7, 51.0, 49.0,11.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Millis - Millis High School,01870505, 1.0, 1.8, 2.6, 3.6, 1.3, 0.3, 89.5, 50.5, 49.5,10.5,3.8 +1,1,a-cure-i1,2016-17,Millis - Millis Middle,01870020, 0.0, 3.3, 1.9, 6.5, 3.0, 0.2, 85.1, 42.9, 57.1,14.900000000000006,3.6 +4.6962457337883965,4.7,a-cure-i1,2016-17,Milton - Charles S Pierce Middle,01890410, 0.3, 4.8, 16.0, 4.7, 3.2, 0.3, 70.7, 49.5, 50.5,29.299999999999997,8.6 +5.748502994011975,5,a-cure-i1,2016-17,Milton - Collicot,01890005, 0.0, 7.4, 3.3, 3.0, 3.0, 0.1, 83.3, 45.7, 54.3,16.700000000000003,6.0 +3.9669421487603302,3.97,a-cure-i1,2016-17,Milton - Cunningham School,01890007, 0.2, 8.3, 7.9, 3.8, 4.0, 0.0, 75.8, 47.9, 52.1,24.200000000000003,6.0 +6.724637681159419,5,a-cure-i1,2016-17,Milton - Glover,01890010, 0.0, 4.4, 8.0, 3.7, 4.6, 0.0, 79.3, 47.7, 52.3,20.700000000000003,8.7 +2.828496042216359,2.83,a-cure-i1,2016-17,Milton - Milton High,01890505, 0.0, 7.1, 21.1, 5.1, 4.2, 0.4, 62.1, 50.9, 49.1,37.9,6.7 +4.427184466019418,4.43,a-cure-i1,2016-17,Milton - Tucker,01890020, 0.0, 6.0, 40.7, 7.6, 7.6, 0.0, 38.2, 50.6, 49.4,61.8,17.1 +1,1,a-cure-i1,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.3, 3.3, 6.2, 10.1, 3.3, 0.0, 76.8, 33.3, 66.5,23.200000000000003,1.7 +1,1,a-cure-i1,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.8, 0.0, 0.4, 4.6, 3.5, 0.0, 90.7, 50.2, 49.8,9.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 1.8, 2.7, 0.9, 0.0, 94.6, 58.0, 42.0,5.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Mohawk Trail - Heath Elementary,07170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 55.2, 44.8,0.0,0.0 +1,1,a-cure-i1,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.2, 1.2, 0.5, 2.8, 3.8, 0.0, 91.5, 50.2, 49.8,8.5,2.9 +1,1,a-cure-i1,2016-17,Mohawk Trail - Sanderson Academy,07170020, 0.7, 0.7, 0.0, 2.8, 2.1, 0.7, 93.0, 43.4, 56.6,7.0,0.0 +1,1,a-cure-i1,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.4, 5.1, 6.2, 3.7, 0.7, 83.9, 52.0, 48.0,16.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 0.7, 0.5, 4.4, 7.1, 5.3, 0.2, 81.8, 48.6, 51.4,18.200000000000003,0.0 +8.564705882352941,5,a-cure-i1,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.7, 2.2, 6.5, 3.5, 4.2, 0.0, 83.0, 49.9, 50.1,17.0,9.1 +1,1,a-cure-i1,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.7, 0.9, 4.5, 8.5, 4.7, 0.5, 80.3, 52.1, 47.9,19.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Monson - Granite Valley Middle,01910310, 0.3, 0.6, 1.0, 1.6, 1.6, 1.3, 93.6, 50.8, 49.2,6.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Monson - Monson High School,01910505, 0.0, 0.7, 0.7, 1.7, 2.4, 0.3, 94.1, 50.2, 49.8,5.900000000000006,4.3 +1,1,a-cure-i1,2016-17,Monson - Quarry Hill Community School,01910025, 0.3, 1.1, 1.1, 2.4, 1.6, 0.3, 93.4, 46.7, 53.3,6.599999999999994,4.2 +4.100502512562813,4.1,a-cure-i1,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.1, 1.0, 0.9, 13.9, 4.1, 0.0, 80.1, 45.2, 54.6,19.900000000000006,5.1000000000000005 +10.72,5,a-cure-i1,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 0.2, 1.1, 1.4, 2.5, 4.8, 0.0, 90.0, 50.7, 49.3,10.0,6.7 +2.88412017167382,2.88,a-cure-i1,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.3, 17.2, 17.0, 7.8, 4.4, 0.0, 53.4, 51.5, 48.5,46.6,8.4 +1,1,a-cure-i1,2016-17,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 49.3, 50.7,0.0,0.0 +3.9524940617577196,3.95,a-cure-i1,2016-17,Nantucket - Cyrus Peirce,01970010, 0.0, 1.2, 11.9, 23.2, 5.5, 0.3, 57.9, 50.6, 49.4,42.1,10.4 +1,1,a-cure-i1,2016-17,Nantucket - Nantucket Elementary,01970005, 0.0, 2.0, 9.6, 33.6, 2.8, 0.1, 51.9, 48.4, 51.6,48.1,0.0 +3.4201474201474196,3.42,a-cure-i1,2016-17,Nantucket - Nantucket High,01970505, 0.4, 1.5, 12.5, 23.4, 3.0, 0.0, 59.3, 47.6, 52.4,40.7,8.7 +1,1,a-cure-i1,2016-17,Narragansett - Baldwinville Elementary,07200005, 0.4, 0.4, 0.7, 5.1, 4.0, 0.4, 89.2, 44.4, 55.6,10.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Narragansett - Narragansett Middle,07200305, 0.0, 0.2, 1.0, 5.2, 2.9, 0.2, 90.5, 48.0, 52.0,9.5,0.0 +1,1,a-cure-i1,2016-17,Narragansett - Narragansett Regional High,07200505, 0.0, 0.8, 0.8, 5.1, 3.2, 0.0, 90.1, 51.3, 48.7,9.900000000000006,3.7 +1,1,a-cure-i1,2016-17,Narragansett - Phillipston Memorial,07200003, 0.6, 0.0, 1.2, 4.9, 4.9, 0.0, 88.3, 46.6, 53.4,11.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Narragansett - Templeton Center,07200020, 0.0, 0.6, 0.0, 5.7, 1.3, 0.0, 92.4, 41.1, 58.9,7.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Nashoba - Center School,07250020, 0.3, 4.4, 0.7, 3.4, 1.6, 0.0, 89.5, 49.9, 50.1,10.5,0.0 +1,1,a-cure-i1,2016-17,Nashoba - Florence Sawyer School,07250025, 0.0, 4.1, 0.4, 3.0, 2.7, 0.0, 89.8, 50.6, 49.4,10.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Nashoba - Hale,07250310, 0.0, 4.2, 1.4, 2.4, 0.3, 0.0, 91.6, 47.7, 52.3,8.400000000000006,4.4 +6.730158730158733,5,a-cure-i1,2016-17,Nashoba - Luther Burbank Middle School,07250305, 0.0, 2.4, 3.2, 4.0, 2.0, 0.8, 87.4, 46.2, 53.8,12.599999999999994,5.3 +1,1,a-cure-i1,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 0.2, 1.2, 0.8, 6.6, 2.7, 0.0, 88.5, 47.6, 52.4,11.5,0.0 +1,1,a-cure-i1,2016-17,Nashoba - Nashoba Regional,07250505, 0.2, 2.3, 1.6, 4.9, 3.9, 0.0, 87.1, 51.2, 48.8,12.900000000000006,1.4 +1,1,a-cure-i1,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.8, 0.8, 0.7, 6.3, 2.7, 0.0, 88.7, 41.0, 58.9,11.299999999999997,2.5 +3.9658119658119646,3.97,a-cure-i1,2016-17,Natick - Bennett-Hemenway,01980005, 0.0, 10.9, 2.4, 2.6, 7.4, 0.2, 76.6, 49.5, 50.5,23.400000000000006,5.8 +1,1,a-cure-i1,2016-17,Natick - Brown,01980010, 0.2, 23.7, 1.2, 9.3, 4.3, 0.0, 61.4, 45.8, 54.2,38.6,0.0 +5.9689119170984455,5,a-cure-i1,2016-17,Natick - J F Kennedy Middle School,01980305, 0.2, 9.7, 1.8, 3.2, 4.3, 0.0, 80.7, 51.8, 48.2,19.299999999999997,7.199999999999999 +1,1,a-cure-i1,2016-17,Natick - Johnson,01980031, 0.0, 3.6, 2.3, 4.5, 8.6, 0.0, 81.1, 43.7, 56.3,18.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Natick - Lilja Elementary,01980035, 0.0, 9.4, 3.1, 6.7, 4.6, 0.0, 76.3, 51.6, 48.4,23.700000000000003,4.5 +1,1,a-cure-i1,2016-17,Natick - Memorial,01980043, 0.0, 4.8, 1.2, 3.5, 5.1, 0.0, 85.5, 45.2, 54.8,14.5,0.0 +6.537634408602152,5,a-cure-i1,2016-17,Natick - Natick High,01980505, 0.1, 7.7, 3.5, 4.1, 3.0, 0.1, 81.4, 49.7, 50.3,18.599999999999994,7.6 +1,1,a-cure-i1,2016-17,Natick - Wilson Middle,01980310, 0.1, 5.6, 3.3, 6.1, 6.5, 0.1, 78.2, 50.1, 49.9,21.799999999999997,1.9000000000000001 +1,1,a-cure-i1,2016-17,Nauset - Nauset Regional High,06600505, 0.5, 2.7, 4.5, 3.0, 2.5, 0.1, 86.7, 52.5, 47.5,13.299999999999997,2.1 +1,1,a-cure-i1,2016-17,Nauset - Nauset Regional Middle,06600305, 0.4, 1.9, 3.6, 3.7, 2.2, 0.2, 88.0, 49.5, 50.5,12.0,0.7 +1,1,a-cure-i1,2016-17,Needham - Broadmeadow,01990005, 0.0, 7.4, 1.1, 6.0, 5.6, 0.0, 79.9, 52.3, 47.7,20.099999999999994,3.6 +1,1,a-cure-i1,2016-17,Needham - High Rock School,01990410, 0.0, 7.1, 1.9, 6.7, 5.7, 0.0, 78.6, 52.5, 47.5,21.400000000000006,3.4 +1,1,a-cure-i1,2016-17,Needham - Hillside Elementary,01990035, 0.0, 10.0, 3.8, 7.0, 6.4, 0.0, 72.9, 48.1, 51.9,27.099999999999994,4.0 +1,1,a-cure-i1,2016-17,Needham - John Eliot,01990020, 0.0, 13.0, 5.4, 7.4, 4.1, 0.0, 70.2, 51.3, 48.7,29.799999999999997,0.0 +6.666666666666666,5,a-cure-i1,2016-17,Needham - Needham High,01990505, 0.1, 7.7, 3.4, 5.0, 3.0, 0.1, 80.8, 50.3, 49.7,19.200000000000003,8.0 +3.983935742971887,3.98,a-cure-i1,2016-17,Needham - Newman Elementary,01990050, 0.0, 8.8, 4.0, 6.0, 6.0, 0.1, 75.1, 48.8, 51.3,24.900000000000006,6.2 +1,1,a-cure-i1,2016-17,Needham - Pollard Middle,01990405, 0.2, 8.7, 1.9, 3.9, 4.8, 0.0, 80.5, 51.3, 48.7,19.5,4.4 +7.5454545454545485,5,a-cure-i1,2016-17,Needham - William Mitchell,01990040, 0.0, 7.5, 1.2, 4.2, 4.6, 0.0, 82.4, 51.1, 48.9,17.599999999999994,8.3 +6.744303797468354,5,a-cure-i1,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.9, 4.4, 51.0, 16.2, 6.6, 0.0, 21.0, 49.5, 50.5,79.0,33.3 +1,1,a-cure-i1,2016-17,New Bedford - Abraham Lincoln,02010095, 0.3, 0.5, 8.9, 32.7, 6.3, 0.0, 51.3, 48.3, 51.7,48.7,2.7 +1.2807881773399015,1.28,a-cure-i1,2016-17,New Bedford - Alfred J Gomes,02010063, 0.4, 0.4, 11.9, 65.3, 3.1, 0.2, 18.8, 46.2, 53.8,81.2,6.5 +1,1,a-cure-i1,2016-17,New Bedford - Betsey B Winslow,02010140, 0.3, 2.7, 6.4, 15.2, 10.1, 0.3, 65.0, 54.2, 45.8,35.0,4.3 +1,1,a-cure-i1,2016-17,New Bedford - Carlos Pacheco,02010105, 0.5, 1.0, 16.0, 50.9, 4.5, 0.0, 27.0, 45.7, 54.3,73.0,4.5 +8.786440677966104,5,a-cure-i1,2016-17,New Bedford - Casimir Pulaski,02010123, 0.1, 1.4, 6.4, 16.1, 5.5, 0.0, 70.5, 43.6, 56.4,29.5,16.200000000000003 +1,1,a-cure-i1,2016-17,New Bedford - Charles S Ashley,02010010, 0.3, 0.9, 4.2, 22.7, 3.6, 0.0, 68.3, 46.5, 53.5,31.700000000000003,2.2 +1,1,a-cure-i1,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 1.4, 1.7, 9.3, 31.8, 4.8, 0.3, 50.5, 53.6, 46.4,49.5,0.0 +2.448767833981842,2.45,a-cure-i1,2016-17,New Bedford - Ellen R Hathaway,02010075, 0.7, 1.4, 10.1, 59.0, 5.6, 0.3, 22.9, 50.7, 49.3,77.1,11.8 +1.7739872068230278,1.77,a-cure-i1,2016-17,New Bedford - Elwyn G Campbell,02010020, 0.4, 1.5, 5.5, 33.1, 6.5, 0.0, 53.1, 51.6, 48.4,46.9,5.2 +2.6555090655509064,2.66,a-cure-i1,2016-17,New Bedford - Hayden/McFadden,02010078, 1.0, 0.3, 10.9, 54.7, 4.8, 0.0, 28.3, 47.7, 52.3,71.7,11.9 +1,1,a-cure-i1,2016-17,New Bedford - James B Congdon,02010040, 0.5, 0.3, 11.8, 42.6, 6.6, 0.3, 37.9, 56.9, 43.1,62.1,0.0 +1,1,a-cure-i1,2016-17,New Bedford - Jireh Swift,02010130, 0.0, 1.7, 3.0, 18.0, 2.1, 0.0, 75.1, 50.6, 49.4,24.900000000000006,0.0 +1.5655058043117747,1.57,a-cure-i1,2016-17,New Bedford - John Avery Parker,02010115, 0.3, 0.0, 15.2, 37.4, 7.1, 0.3, 39.7, 44.8, 55.2,60.3,5.9 +2.469982847341338,2.47,a-cure-i1,2016-17,New Bedford - John B Devalles,02010050, 0.0, 0.9, 13.0, 41.4, 3.0, 0.0, 41.7, 47.9, 52.1,58.3,9.0 +1.9282639885222381,1.93,a-cure-i1,2016-17,New Bedford - John Hannigan,02010070, 0.5, 0.0, 13.9, 52.0, 3.2, 0.0, 30.3, 51.5, 48.5,69.7,8.4 +1.9531772575250836,1.95,a-cure-i1,2016-17,New Bedford - Keith Middle School,02010405, 0.6, 1.1, 14.9, 36.9, 5.9, 0.3, 40.2, 48.7, 51.3,59.8,7.3 +3.7791411042944785,3.78,a-cure-i1,2016-17,New Bedford - New Bedford High,02010505, 0.8, 1.1, 13.0, 46.1, 3.9, 0.4, 34.8, 46.5, 53.5,65.2,15.4 +1.8763326226012793,1.88,a-cure-i1,2016-17,New Bedford - Normandin Middle School,02010410, 0.6, 1.1, 7.3, 33.0, 4.8, 0.2, 53.1, 46.9, 53.1,46.9,5.5 +1,1,a-cure-i1,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 17.8, 59.9, 3.2, 0.4, 18.6, 58.7, 41.3,81.4,0.0 +3.2414910858995136,3.24,a-cure-i1,2016-17,New Bedford - Roosevelt Middle School,02010415, 0.4, 0.5, 15.0, 39.9, 5.8, 0.1, 38.3, 48.2, 51.8,61.7,12.5 +1,1,a-cure-i1,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 0.1, 0.9, 20.1, 30.8, 9.9, 0.0, 38.2, 42.2, 57.8,61.8,4.7 +1,1,a-cure-i1,2016-17,New Bedford - Thomas R Rodman,02010125, 0.0, 3.2, 6.0, 36.9, 4.6, 0.0, 49.3, 42.4, 57.6,50.7,0.0 +8.651851851851852,5,a-cure-i1,2016-17,New Bedford - Trinity Day Academy,02010510, 1.6, 0.0, 7.9, 41.3, 3.2, 0.0, 46.0, 31.7, 68.3,54.0,29.200000000000003 +5.869565217391305,5,a-cure-i1,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.9, 22.7, 41.8, 8.2, 0.0, 26.4, 26.4, 73.6,73.6,27.0 +1,1,a-cure-i1,2016-17,New Bedford - William H Taylor,02010135, 0.0, 0.0, 7.4, 17.7, 7.4, 0.0, 67.5, 51.1, 48.9,32.5,3.4 +7.263803680981595,5,a-cure-i1,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 1.3, 86.9, 8.3, 1.3, 0.0, 2.2, 47.3, 52.7,97.8,44.4 +1,1,a-cure-i1,2016-17,New Salem-Wendell - Swift River,07280015, 0.0, 1.2, 0.0, 4.7, 5.9, 0.0, 88.2, 48.5, 51.5,11.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 2.7, 2.1, 2.7, 1.8, 0.0, 90.6, 48.6, 51.4,9.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 0.2, 1.2, 1.1, 2.8, 0.6, 0.0, 94.1, 49.6, 50.4,5.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Newburyport - Newburyport High,02040505, 0.0, 1.5, 1.2, 4.0, 2.2, 0.0, 91.1, 52.6, 47.2,8.900000000000006,0.0 +14.814814814814799,5,a-cure-i1,2016-17,Newburyport - Rupert A Nock Middle,02040305, 0.0, 1.5, 0.4, 1.5, 2.0, 0.0, 94.6, 46.1, 53.9,5.400000000000006,5.0 +1,1,a-cure-i1,2016-17,Newton - A E Angier,02070005, 0.0, 14.7, 3.3, 5.2, 6.4, 0.0, 70.3, 53.7, 46.3,29.700000000000003,4.2 +3.401574803149607,3.4,a-cure-i1,2016-17,Newton - Bigelow Middle,02070305, 0.8, 15.0, 5.9, 9.7, 6.5, 0.2, 61.9, 51.2, 48.8,38.1,8.100000000000001 +9.537117903930131,5,a-cure-i1,2016-17,Newton - Bowen,02070015, 0.2, 28.8, 6.7, 4.6, 5.5, 0.0, 54.2, 47.7, 52.3,45.8,27.299999999999997 +9.876543209876543,5,a-cure-i1,2016-17,Newton - C C Burr,02070020, 0.2, 20.4, 3.5, 10.9, 5.5, 0.0, 59.5, 49.0, 51.0,40.5,25.0 +7.724137931034483,5,a-cure-i1,2016-17,Newton - Cabot,02070025, 0.0, 13.3, 3.8, 5.5, 6.5, 0.0, 71.0, 53.3, 46.8,29.0,14.0 +3.311827956989247,3.31,a-cure-i1,2016-17,Newton - Charles E Brown Middle,02070310, 0.1, 21.1, 3.9, 6.1, 6.1, 0.0, 62.8, 45.6, 54.4,37.2,7.7 +1,1,a-cure-i1,2016-17,Newton - Countryside,02070040, 0.2, 22.7, 3.7, 7.8, 7.6, 0.0, 58.0, 52.5, 47.5,42.0,4.2 +4.158192090395479,4.16,a-cure-i1,2016-17,Newton - F A Day Middle,02070315, 0.2, 13.6, 6.5, 7.9, 7.1, 0.0, 64.6, 46.1, 53.9,35.400000000000006,9.2 +1,1,a-cure-i1,2016-17,Newton - Franklin,02070055, 0.2, 12.6, 3.4, 8.7, 4.5, 0.0, 70.6, 54.3, 45.7,29.400000000000006,3.9 +7.181102362204725,5,a-cure-i1,2016-17,Newton - Horace Mann,02070075, 0.0, 18.2, 3.8, 8.4, 7.7, 0.0, 61.9, 44.1, 55.9,38.1,17.1 +1,1,a-cure-i1,2016-17,Newton - John Ward,02070120, 0.0, 15.4, 3.2, 3.2, 7.4, 0.0, 70.8, 54.8, 45.2,29.200000000000003,3.1 +1,1,a-cure-i1,2016-17,Newton - Lincoln-Eliot,02070070, 0.0, 17.3, 8.7, 13.9, 5.5, 0.0, 54.6, 51.4, 48.6,45.4,4.6 +3.648,3.65,a-cure-i1,2016-17,Newton - Mason-Rice,02070080, 0.0, 13.2, 1.4, 3.6, 6.9, 0.0, 75.0, 46.5, 53.5,25.0,5.7 +4.328502415458937,4.33,a-cure-i1,2016-17,Newton - Memorial Spaulding,02070105, 0.0, 25.6, 2.6, 7.0, 6.2, 0.0, 58.6, 48.0, 52.0,41.4,11.2 +2.0698151950718686,2.07,a-cure-i1,2016-17,Newton - Newton Early Childhood Center,02070108, 0.0, 24.9, 5.7, 9.3, 8.8, 0.0, 51.3, 35.8, 64.2,48.7,6.3 +7.571428571428574,5,a-cure-i1,2016-17,Newton - Newton North High,02070505, 0.2, 14.3, 5.0, 9.3, 4.7, 0.1, 66.4, 50.1, 49.9,33.599999999999994,15.900000000000002 +7.933147632311977,5,a-cure-i1,2016-17,Newton - Newton South High,02070510, 0.1, 19.6, 5.9, 6.1, 4.3, 0.0, 64.1, 49.1, 50.9,35.900000000000006,17.8 +8.466019417475728,5,a-cure-i1,2016-17,Newton - Oak Hill Middle,02070320, 0.2, 22.1, 5.0, 6.4, 7.5, 0.0, 58.8, 54.6, 45.4,41.2,21.8 +4.58312020460358,4.58,a-cure-i1,2016-17,Newton - Peirce,02070100, 0.0, 19.1, 4.3, 8.7, 6.4, 0.7, 60.9, 48.8, 51.2,39.1,11.2 +4.527472527472528,4.53,a-cure-i1,2016-17,Newton - Underwood,02070115, 0.0, 17.9, 3.8, 11.8, 2.9, 0.0, 63.6, 52.4, 47.6,36.4,10.3 +1,1,a-cure-i1,2016-17,Newton - Williams,02070125, 0.3, 25.6, 3.1, 9.9, 4.1, 0.0, 57.0, 43.3, 56.7,43.0,0.0 +5.03370786516854,5,a-cure-i1,2016-17,Newton - Zervas,02070130, 0.3, 18.1, 4.7, 5.0, 7.1, 0.3, 64.4, 47.8, 52.2,35.599999999999994,11.2 +1,1,a-cure-i1,2016-17,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.6, 1.4, 3.6, 3.2, 0.0, 90.1, 46.3, 53.7,9.900000000000006,4.1 +1,1,a-cure-i1,2016-17,Norfolk - H Olive Day,02080015, 0.0, 2.7, 0.5, 3.4, 2.9, 0.0, 90.5, 43.9, 56.1,9.5,0.0 +1,1,a-cure-i1,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.4, 0.9, 1.5, 3.2, 2.8, 0.0, 91.2, 71.3, 28.7,8.799999999999997,0.0 +1,1,a-cure-i1,2016-17,North Adams - Brayton,02090035, 0.0, 0.3, 2.6, 7.2, 7.2, 0.0, 82.8, 49.9, 50.1,17.200000000000003,0.0 +1,1,a-cure-i1,2016-17,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.3, 4.8, 3.9, 5.1, 0.0, 86.0, 50.0, 50.0,14.0,0.0 +1,1,a-cure-i1,2016-17,North Adams - Drury High,02090505, 0.2, 0.0, 3.4, 5.9, 7.3, 0.2, 82.9, 52.4, 47.6,17.099999999999994,3.0 +1,1,a-cure-i1,2016-17,North Adams - Greylock,02090015, 0.0, 2.0, 2.6, 8.6, 7.9, 0.7, 78.1, 46.7, 53.3,21.900000000000006,0.0 +1,1,a-cure-i1,2016-17,North Andover - Annie L Sargent School,02110018, 0.7, 6.7, 1.6, 4.5, 4.0, 0.0, 82.4, 48.2, 51.8,17.599999999999994,0.0 +1,1,a-cure-i1,2016-17,North Andover - Atkinson,02110001, 0.2, 11.5, 6.4, 14.8, 3.5, 0.0, 63.8, 48.8, 51.2,36.2,0.0 +1,1,a-cure-i1,2016-17,North Andover - Franklin,02110010, 0.6, 13.4, 1.7, 6.7, 2.7, 0.0, 74.8, 44.4, 55.6,25.200000000000003,0.0 +1,1,a-cure-i1,2016-17,North Andover - Kittredge,02110015, 0.0, 6.4, 3.0, 6.4, 4.1, 0.7, 79.4, 44.6, 55.4,20.599999999999994,0.0 +1,1,a-cure-i1,2016-17,North Andover - North Andover High,02110505, 0.2, 6.9, 3.2, 7.3, 1.6, 0.4, 80.4, 53.7, 46.3,19.599999999999994,1.3 +1,1,a-cure-i1,2016-17,North Andover - North Andover Middle,02110305, 0.2, 7.4, 3.0, 8.6, 1.8, 0.2, 78.8, 47.9, 52.1,21.200000000000003,0.0 +1,1,a-cure-i1,2016-17,North Andover - Thomson,02110020, 0.0, 5.8, 3.3, 16.9, 4.4, 0.0, 69.6, 50.8, 49.2,30.400000000000006,0.0 +1,1,a-cure-i1,2016-17,North Attleborough - Amvet Boulevard,02120007, 0.5, 8.4, 3.0, 5.6, 2.5, 0.0, 80.0, 50.4, 49.6,20.0,0.0 +1,1,a-cure-i1,2016-17,North Attleborough - Community,02120030, 0.3, 3.6, 7.4, 7.1, 9.2, 0.0, 72.4, 47.2, 52.8,27.599999999999994,0.0 +1,1,a-cure-i1,2016-17,North Attleborough - Falls,02120010, 0.0, 4.6, 2.8, 5.0, 3.9, 0.4, 83.3, 47.5, 52.5,16.700000000000003,0.0 +1,1,a-cure-i1,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 5.9, 2.8, 2.8, 4.2, 0.3, 84.0, 50.4, 49.6,16.0,0.0 +1,1,a-cure-i1,2016-17,North Attleborough - North Attleboro High,02120505, 0.4, 5.7, 2.8, 4.6, 1.7, 0.1, 84.8, 50.5, 49.5,15.200000000000003,3.7 +1,1,a-cure-i1,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 1.5, 13.2, 4.4, 2.9, 7.4, 0.7, 69.9, 43.4, 56.6,30.099999999999994,0.0 +1,1,a-cure-i1,2016-17,North Attleborough - North Attleborough Middle,02120305, 0.3, 6.0, 2.2, 4.2, 3.2, 0.1, 84.1, 47.5, 52.5,15.900000000000006,4.1 +1,1,a-cure-i1,2016-17,North Attleborough - Roosevelt Avenue,02120015, 0.0, 6.7, 0.6, 2.6, 4.8, 0.0, 85.3, 54.8, 45.2,14.700000000000003,0.0 +1,1,a-cure-i1,2016-17,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.6, 3.6, 4.0, 0.0, 91.8, 41.6, 58.4,8.200000000000003,0.0 +1,1,a-cure-i1,2016-17,North Brookfield - North Brookfield High,02150505, 0.0, 0.9, 1.3, 5.7, 2.6, 0.0, 89.6, 56.1, 43.9,10.400000000000006,0.0 +1,1,a-cure-i1,2016-17,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 1.4, 0.9, 0.0, 0.0, 97.7, 44.0, 56.0,2.299999999999997,0.0 +1,1,a-cure-i1,2016-17,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.0, 0.6, 3.9, 3.9, 0.2, 90.4, 51.8, 48.2,9.599999999999994,0.0 +1,1,a-cure-i1,2016-17,North Middlesex - Nissitissit Middle School,07350310, 0.2, 1.7, 1.1, 3.6, 2.9, 0.0, 90.5, 46.0, 54.0,9.5,2.9 +1,1,a-cure-i1,2016-17,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.8, 1.3, 3.1, 1.9, 0.1, 92.8, 51.9, 48.1,7.200000000000003,1.9 +1,1,a-cure-i1,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 40.0, 60.0,0.0,0.0 +1,1,a-cure-i1,2016-17,North Middlesex - Spaulding Memorial,07350005, 0.2, 1.9, 1.9, 5.6, 2.8, 0.0, 87.6, 50.1, 49.9,12.400000000000006,0.0 +1,1,a-cure-i1,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 2.5, 2.5, 1.3, 0.0, 0.0, 93.7, 36.7, 63.3,6.299999999999997,0.0 +1,1,a-cure-i1,2016-17,North Middlesex - Varnum Brook,07350035, 0.2, 0.7, 2.1, 4.4, 4.8, 0.0, 87.7, 46.9, 53.1,12.299999999999997,3.1 +1,1,a-cure-i1,2016-17,North Reading - E Ethel Little School,02170003, 0.0, 4.3, 0.6, 4.3, 5.0, 0.3, 85.4, 45.3, 54.7,14.599999999999994,0.0 +1,1,a-cure-i1,2016-17,North Reading - J Turner Hood,02170010, 0.0, 5.3, 1.5, 1.8, 2.9, 0.0, 88.6, 48.7, 51.3,11.400000000000006,0.0 +1,1,a-cure-i1,2016-17,North Reading - L D Batchelder,02170005, 0.0, 3.4, 0.2, 4.5, 2.5, 0.0, 89.5, 51.6, 48.4,10.5,0.0 +1,1,a-cure-i1,2016-17,North Reading - North Reading High,02170505, 0.0, 2.7, 0.4, 2.2, 0.9, 0.2, 93.6, 50.1, 49.9,6.400000000000006,3.3 +1,1,a-cure-i1,2016-17,North Reading - North Reading Middle,02170305, 0.0, 2.8, 0.7, 2.1, 3.1, 0.2, 91.1, 50.7, 49.3,8.900000000000006,0.0 +2.6442577030812324,2.64,a-cure-i1,2016-17,Northampton - Bridge Street,02100005, 0.8, 6.0, 2.6, 17.7, 8.6, 0.0, 64.3, 44.4, 55.6,35.7,5.9 +6.1395348837209305,5,a-cure-i1,2016-17,Northampton - Jackson Street,02100020, 0.0, 6.7, 6.1, 20.3, 10.0, 0.0, 57.0, 53.3, 46.7,43.0,16.5 +1,1,a-cure-i1,2016-17,Northampton - John F Kennedy Middle School,02100410, 0.3, 2.4, 2.7, 16.8, 5.6, 0.0, 72.3, 51.4, 48.6,27.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Northampton - Leeds,02100025, 0.3, 2.1, 1.5, 18.6, 7.1, 0.0, 70.5, 46.0, 54.0,29.5,0.0 +1,1,a-cure-i1,2016-17,Northampton - Northampton High,02100505, 0.1, 5.0, 2.4, 14.0, 4.1, 0.0, 74.4, 53.2, 46.8,25.599999999999994,4.0 +1,1,a-cure-i1,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 3.9, 1.8, 19.3, 5.3, 0.0, 69.7, 46.9, 53.1,30.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 1.0, 1.6, 15.6, 1.4, 0.0, 80.2, 39.1, 60.9,19.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 0.1, 10.2, 1.2, 4.7, 2.6, 0.3, 80.8, 52.9, 47.1,19.200000000000003,2.1 +1,1,a-cure-i1,2016-17,Northborough - Fannie E Proctor,02130015, 0.0, 13.0, 2.5, 10.9, 2.9, 0.4, 70.3, 46.0, 54.0,29.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Northborough - Lincoln Street,02130003, 1.1, 10.7, 1.5, 1.9, 3.8, 0.4, 80.5, 52.5, 47.5,19.5,0.0 +1,1,a-cure-i1,2016-17,Northborough - Marguerite E Peaslee,02130014, 0.4, 15.2, 0.7, 11.9, 3.7, 0.7, 67.3, 47.2, 52.8,32.7,0.0 +1,1,a-cure-i1,2016-17,Northborough - Marion E Zeh,02130020, 0.0, 14.9, 2.0, 8.6, 3.3, 0.3, 71.0, 47.5, 52.5,29.0,0.0 +1,1,a-cure-i1,2016-17,Northborough - Robert E. Melican Middle School,02130305, 0.6, 9.5, 1.4, 4.8, 4.1, 0.3, 79.3, 46.0, 54.0,20.700000000000003,2.4 +1,1,a-cure-i1,2016-17,Northbridge - Northbridge Elementary,02140005, 0.3, 1.3, 0.3, 10.8, 5.4, 0.0, 82.1, 48.5, 51.5,17.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Northbridge - Northbridge High,02140505, 0.0, 1.2, 0.5, 7.7, 2.7, 0.0, 87.8, 47.6, 52.4,12.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Northbridge - Northbridge Middle,02140305, 0.0, 1.0, 0.5, 5.7, 3.4, 0.3, 89.0, 46.2, 53.8,11.0,0.0 +1,1,a-cure-i1,2016-17,Northbridge - W Edward Balmer,02140001, 0.0, 0.6, 0.4, 8.9, 4.6, 0.0, 85.6, 50.5, 49.5,14.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.7, 2.9, 27.0, 1.6, 0.2, 66.7, 45.9, 54.1,33.3,4.6 +1,1,a-cure-i1,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.2, 0.2, 1.0, 3.1, 2.7, 0.0, 92.8, 37.0, 63.0,7.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Norton - Henri A. Yelle,02180060, 0.3, 2.4, 2.1, 4.6, 5.6, 0.0, 85.0, 53.1, 46.9,15.0,0.0 +1,1,a-cure-i1,2016-17,Norton - J C Solmonese,02180015, 0.7, 1.2, 1.0, 2.7, 5.0, 0.0, 89.3, 48.6, 51.4,10.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Norton - L G Nourse Elementary,02180010, 0.3, 1.9, 3.0, 7.3, 4.3, 0.0, 83.2, 46.2, 53.8,16.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Norton - Norton High,02180505, 0.0, 1.6, 1.7, 1.7, 1.2, 0.4, 93.4, 49.4, 50.6,6.599999999999994,4.9 +1,1,a-cure-i1,2016-17,Norton - Norton Middle,02180305, 0.0, 1.8, 1.7, 2.0, 2.3, 0.2, 91.9, 49.5, 50.5,8.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Norwell - Grace Farrar Cole,02190005, 0.2, 1.9, 0.4, 1.9, 3.4, 0.0, 92.2, 42.7, 57.3,7.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Norwell - Norwell High,02190505, 0.0, 2.1, 0.4, 2.0, 1.3, 0.1, 94.1, 52.0, 48.0,5.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Norwell - Norwell Middle School,02190405, 0.0, 2.1, 1.0, 1.5, 1.2, 0.2, 94.0, 54.9, 45.1,6.0,0.0 +1,1,a-cure-i1,2016-17,Norwell - William G Vinal,02190020, 0.0, 1.6, 0.0, 1.8, 2.9, 0.4, 93.3, 45.6, 54.4,6.700000000000003,0.0 +3.9198218262806237,3.92,a-cure-i1,2016-17,Norwood - Balch,02200005, 0.0, 3.5, 10.9, 27.4, 3.2, 0.0, 55.1, 49.5, 50.5,44.9,11.0 +1,1,a-cure-i1,2016-17,Norwood - Charles J Prescott,02200025, 0.0, 20.7, 6.1, 2.4, 2.0, 0.0, 68.7, 49.2, 50.8,31.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Norwood - Cornelius M Callahan,02200010, 0.0, 5.0, 9.4, 7.9, 3.0, 0.0, 74.8, 52.0, 48.0,25.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 5.3, 10.4, 11.3, 2.3, 0.0, 70.8, 49.5, 50.5,29.200000000000003,1.8 +1,1,a-cure-i1,2016-17,Norwood - F A Cleveland,02200015, 0.0, 10.9, 6.5, 5.9, 1.8, 0.3, 74.7, 50.0, 50.0,25.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Norwood - George F. Willett,02200075, 0.3, 15.7, 8.6, 12.4, 2.3, 0.0, 60.7, 47.2, 52.8,39.3,0.0 +1,1,a-cure-i1,2016-17,Norwood - John P Oldham,02200020, 0.0, 7.7, 12.0, 8.1, 0.9, 0.4, 70.9, 49.6, 50.4,29.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Norwood - Norwood High,02200505, 0.0, 3.9, 12.7, 9.5, 1.7, 0.0, 72.2, 49.6, 50.4,27.799999999999997,3.0 +1,1,a-cure-i1,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 2.5, 1.1, 3.9, 20.6, 7.1, 0.5, 64.3, 52.4, 47.6,35.7,2.7 +1,1,a-cure-i1,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.5, 0.9, 0.4, 1.6, 0.0, 96.5, 38.3, 61.7,3.5,3.1 +1,1,a-cure-i1,2016-17,Old Rochester - Old Rochester Regional High,07400505, 0.1, 2.3, 2.3, 1.7, 2.0, 0.0, 91.6, 50.8, 49.2,8.400000000000006,2.2 +1,1,a-cure-i1,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 1.2, 3.3, 1.2, 3.9, 0.0, 90.4, 50.9, 49.1,9.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Orange - Dexter Park,02230010, 0.0, 0.6, 1.5, 7.2, 3.0, 0.0, 87.7, 41.9, 58.1,12.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Orange - Fisher Hill,02230015, 0.0, 0.3, 1.0, 8.8, 3.0, 0.0, 86.9, 47.5, 52.5,13.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Orleans - Orleans Elementary,02240005, 0.0, 3.3, 3.3, 2.3, 1.4, 0.0, 89.8, 46.0, 54.0,10.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Oxford - Alfred M Chaffee,02260010, 0.3, 0.3, 2.1, 10.5, 4.5, 0.0, 82.3, 47.3, 52.7,17.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Oxford - Clara Barton,02260005, 0.0, 0.5, 1.9, 10.6, 5.3, 0.0, 81.8, 48.2, 51.8,18.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Oxford - Oxford High,02260505, 0.4, 1.7, 1.9, 9.5, 3.7, 0.0, 82.9, 50.4, 49.6,17.099999999999994,0.1 +1,1,a-cure-i1,2016-17,Oxford - Oxford Middle,02260405, 0.2, 1.4, 2.4, 9.7, 4.0, 0.5, 81.8, 50.2, 49.8,18.200000000000003,4.0 +1,1,a-cure-i1,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 32.0, 4.0, 0.0, 64.0, 12.0, 88.0,36.0,0.0 +1,1,a-cure-i1,2016-17,Palmer - Converse Middle,02270305, 0.0, 0.4, 2.8, 8.9, 4.4, 0.0, 83.5, 41.9, 58.1,16.5,2.8 +1,1,a-cure-i1,2016-17,Palmer - Old Mill Pond,02270008, 0.0, 2.3, 2.9, 12.7, 4.6, 0.0, 77.5, 50.8, 49.2,22.5,2.9 +1,1,a-cure-i1,2016-17,Palmer - Palmer High,02270505, 0.0, 1.9, 2.9, 6.2, 2.1, 0.0, 87.0, 46.3, 53.7,13.0,2.4 +1,1,a-cure-i1,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.8, 0.8, 0.6, 5.7, 3.9, 0.0, 88.2, 39.8, 60.2,11.799999999999997,1.7 +8.464516129032258,5,a-cure-i1,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 5.2, 87.5, 0.0, 0.3, 7.0, 55.2, 44.8,93.0,49.2 +1,1,a-cure-i1,2016-17,Peabody - Captain Samuel Brown,02290005, 0.0, 1.6, 2.4, 13.3, 2.4, 0.0, 80.2, 43.9, 56.1,19.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Peabody - Center,02290015, 0.0, 2.6, 9.6, 9.1, 2.6, 0.0, 76.2, 48.4, 51.6,23.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Peabody - J Henry Higgins Middle,02290305, 0.0, 1.6, 3.4, 14.0, 2.2, 0.0, 78.9, 47.8, 52.2,21.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Peabody - John E Burke,02290007, 0.0, 1.5, 0.4, 2.9, 2.5, 0.0, 92.7, 51.6, 48.4,7.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Peabody - John E. McCarthy,02290016, 0.0, 2.8, 2.3, 7.4, 2.5, 0.0, 85.0, 43.3, 56.7,15.0,0.0 +1,1,a-cure-i1,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 2.1, 4.0, 15.7, 1.9, 0.0, 76.2, 49.2, 50.8,23.799999999999997,1.1 +1,1,a-cure-i1,2016-17,Peabody - South Memorial,02290035, 0.0, 1.9, 2.8, 6.7, 2.8, 0.0, 85.8, 51.8, 48.2,14.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Peabody - Thomas Carroll,02290010, 0.0, 0.8, 4.4, 17.1, 1.9, 0.0, 75.8, 51.2, 48.8,24.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Peabody - West Memorial,02290045, 0.0, 1.3, 1.3, 2.1, 0.8, 0.0, 94.5, 46.2, 53.8,5.5,0.0 +1,1,a-cure-i1,2016-17,Peabody - William A Welch Sr,02290027, 0.0, 0.8, 5.9, 32.0, 2.7, 0.0, 58.6, 50.0, 50.0,41.4,0.0 +11.017964071856285,5,a-cure-i1,2016-17,Pelham - Pelham Elementary,02300005, 0.0, 1.5, 3.0, 7.6, 4.5, 0.0, 83.3, 49.2, 50.8,16.700000000000003,11.5 +1,1,a-cure-i1,2016-17,Pembroke - Bryantville Elementary,02310003, 0.2, 0.4, 1.0, 0.0, 2.1, 0.2, 96.1, 48.2, 51.8,3.9000000000000057,0.0 +1,1,a-cure-i1,2016-17,Pembroke - Hobomock Elementary,02310010, 0.0, 0.2, 0.9, 0.2, 0.2, 0.0, 98.4, 42.5, 57.5,1.5999999999999943,0.0 +1,1,a-cure-i1,2016-17,Pembroke - North Pembroke Elementary,02310015, 0.2, 1.7, 0.3, 0.7, 2.8, 0.0, 94.3, 49.0, 51.0,5.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Pembroke - Pembroke Community Middle School,02310305, 0.0, 1.2, 0.8, 1.2, 1.0, 0.0, 95.8, 50.4, 49.6,4.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Pembroke - Pembroke High School,02310505, 0.0, 0.8, 0.9, 0.4, 0.4, 0.4, 97.0, 49.8, 50.2,3.0,0.0 +1,1,a-cure-i1,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.5, 0.0, 7.3, 4.4, 0.0, 87.9, 42.2, 57.8,12.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Pentucket - Dr John C Page School,07450015, 0.0, 2.3, 0.6, 1.1, 1.1, 0.0, 94.8, 50.6, 49.4,5.200000000000003,1.5 +1,1,a-cure-i1,2016-17,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.6, 0.6, 3.0, 1.4, 0.0, 94.5, 45.3, 54.7,5.5,1.0 +1,1,a-cure-i1,2016-17,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.4, 0.0, 4.5, 2.5, 0.0, 92.6, 46.1, 53.9,7.400000000000006,2.2 +1,1,a-cure-i1,2016-17,Pentucket - Pentucket Regional Middle,07450405, 0.0, 2.8, 0.9, 2.4, 1.5, 0.0, 92.4, 47.1, 52.9,7.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 1.2, 0.3, 2.3, 0.7, 0.0, 95.5, 52.5, 47.5,4.5,0.0 +1,1,a-cure-i1,2016-17,Petersham - Petersham Center,02340005, 0.0, 0.8, 0.0, 2.4, 5.6, 0.0, 91.1, 46.8, 53.2,8.900000000000006,0.0 +6.373581011351909,5,a-cure-i1,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 1.0, 0.5, 21.2, 69.4, 4.7, 0.0, 3.1, 48.7, 51.3,96.9,38.6 +4.862911795961743,4.86,a-cure-i1,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 2.4, 16.5, 75.3, 0.0, 0.0, 5.9, 41.8, 58.2,94.1,28.6 +3.145685997171145,3.15,a-cure-i1,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.9, 10.3, 29.7, 29.1, 0.6, 0.2, 29.3, 48.8, 51.2,70.7,13.899999999999999 +6.7236467236467234,5,a-cure-i1,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 1.2, 11.5, 35.1, 21.1, 1.2, 0.0, 29.8, 55.0, 45.0,70.2,29.5 +1,1,a-cure-i1,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.6, 1.7, 7.4, 0.0, 90.3, 52.8, 47.2,9.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 2.7, 1.6, 0.0, 95.7, 50.0, 50.0,4.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 2.6, 0.0, 5.1, 0.0, 0.0, 92.3, 59.0, 41.0,7.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 0.2, 1.0, 2.0, 1.7, 2.2, 0.0, 92.9, 51.3, 48.7,7.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Pioneer Valley - Warwick Community School,07500009, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 98.2, 50.9, 49.1,1.7999999999999972,0.0 +12.653846153846153,5,a-cure-i1,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 17.6, 4.7, 6.2, 13.2, 0.0, 58.4, 53.5, 46.3,41.6,32.9 +11.076923076923075,5,a-cure-i1,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.3, 2.0, 8.3, 13.6, 7.0, 0.0, 68.8, 67.3, 32.2,31.200000000000003,21.599999999999998 +1,1,a-cure-i1,2016-17,Pittsfield - Allendale,02360010, 1.1, 1.4, 6.7, 12.4, 9.9, 0.0, 68.4, 47.2, 52.8,31.599999999999994,4.6 +1,1,a-cure-i1,2016-17,Pittsfield - Crosby,02360065, 0.2, 1.8, 13.4, 16.4, 10.7, 0.0, 57.4, 41.5, 58.5,42.6,0.0 +1,1,a-cure-i1,2016-17,Pittsfield - Egremont,02360035, 0.0, 1.3, 7.5, 9.8, 6.4, 0.0, 75.1, 52.0, 48.0,24.900000000000006,3.4 +1,1,a-cure-i1,2016-17,Pittsfield - John T Reid Middle,02360305, 0.2, 0.7, 11.9, 12.6, 9.7, 0.2, 64.7, 51.0, 49.0,35.3,1.9 +1,1,a-cure-i1,2016-17,Pittsfield - Morningside Community School,02360055, 0.5, 1.2, 14.6, 17.5, 11.5, 0.5, 54.2, 50.1, 49.9,45.8,0.0 +1,1,a-cure-i1,2016-17,Pittsfield - Pittsfield High,02360505, 0.1, 2.1, 10.8, 11.5, 4.6, 0.0, 70.8, 48.5, 51.5,29.200000000000003,4.5 +1,1,a-cure-i1,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 2.9, 5.7, 10.0, 0.0, 81.3, 55.0, 45.0,18.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Pittsfield - Silvio O Conte Community,02360105, 1.1, 0.6, 20.2, 21.8, 16.3, 0.0, 40.1, 50.3, 49.7,59.9,2.7 +1,1,a-cure-i1,2016-17,Pittsfield - Stearns,02360090, 0.0, 1.7, 3.8, 8.5, 7.7, 0.0, 78.3, 46.4, 53.6,21.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Pittsfield - Taconic High,02360510, 0.3, 1.4, 12.9, 6.9, 6.7, 0.0, 71.8, 48.4, 51.6,28.200000000000003,1.3 +1,1,a-cure-i1,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 0.2, 1.7, 10.7, 11.3, 6.8, 0.0, 69.3, 49.4, 50.6,30.700000000000003,2.7 +1,1,a-cure-i1,2016-17,Pittsfield - Williams,02360100, 0.0, 5.0, 4.0, 5.9, 6.5, 0.3, 78.3, 48.6, 51.4,21.700000000000003,4.7 +1,1,a-cure-i1,2016-17,Plainville - Anna Ware Jackson,02380010, 0.2, 5.4, 2.0, 6.9, 2.7, 0.0, 82.8, 47.8, 52.2,17.200000000000003,1.1 +1,1,a-cure-i1,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 0.7, 4.6, 1.6, 5.6, 2.0, 0.0, 85.6, 47.7, 52.3,14.400000000000006,1.2 +5.090909090909092,5,a-cure-i1,2016-17,Plymouth - Cold Spring,02390005, 0.0, 2.4, 0.8, 10.9, 5.6, 0.0, 80.2, 50.8, 49.2,19.799999999999997,6.3 +1,1,a-cure-i1,2016-17,Plymouth - Federal Furnace School,02390011, 0.0, 0.7, 5.8, 7.0, 4.4, 0.0, 82.0, 46.8, 53.2,18.0,0.0 +1,1,a-cure-i1,2016-17,Plymouth - Hedge,02390010, 0.0, 3.8, 1.0, 7.1, 10.0, 0.0, 78.1, 46.7, 53.3,21.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Plymouth - Indian Brook,02390012, 0.2, 0.0, 0.5, 2.1, 1.8, 0.0, 95.4, 48.8, 51.2,4.599999999999994,2.9 +1,1,a-cure-i1,2016-17,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.7, 3.0, 4.6, 0.0, 91.8, 47.4, 52.6,8.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 0.2, 2.2, 1.4, 4.7, 4.2, 0.0, 87.3, 49.2, 50.8,12.700000000000003,3.0 +1,1,a-cure-i1,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 1.7, 2.4, 3.6, 4.9, 0.0, 87.4, 45.7, 54.3,12.599999999999994,2.8 +1,1,a-cure-i1,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.9, 2.6, 3.4, 6.9, 0.0, 86.2, 38.8, 61.2,13.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Plymouth - Plymouth North High,02390505, 0.2, 1.5, 2.8, 5.7, 3.1, 0.1, 86.7, 48.9, 51.1,13.299999999999997,2.2 +1,1,a-cure-i1,2016-17,Plymouth - Plymouth South High,02390515, 0.8, 0.9, 1.7, 2.8, 3.3, 0.3, 90.3, 46.7, 53.3,9.700000000000003,2.1 +1,1,a-cure-i1,2016-17,Plymouth - Plymouth South Middle,02390305, 0.2, 0.7, 0.7, 2.2, 3.2, 0.0, 93.0, 48.1, 51.9,7.0,1.8 +1,1,a-cure-i1,2016-17,Plymouth - South Elementary,02390046, 0.5, 0.4, 1.6, 4.6, 4.6, 0.0, 88.3, 48.8, 51.2,11.700000000000003,2.9 +1,1,a-cure-i1,2016-17,Plymouth - West Elementary,02390047, 0.3, 1.0, 2.8, 5.4, 3.9, 0.0, 86.6, 44.5, 55.5,13.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Plympton - Dennett Elementary,02400010, 0.0, 0.5, 0.0, 1.0, 1.4, 0.0, 97.1, 51.2, 48.8,2.9000000000000057,0.0 +5.801596351197262,5,a-cure-i1,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.4, 8.5, 55.0, 20.8, 2.8, 0.2, 12.3, 49.4, 50.6,87.7,31.799999999999997 +4.516411378555799,4.52,a-cure-i1,2016-17,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 20.2, 16.3, 9.3, 0.0, 54.3, 48.8, 51.2,45.7,12.9 +13.359223300970877,5,a-cure-i1,2016-17,Quabbin - Hardwick Elementary,07530005, 0.5, 0.0, 0.5, 8.2, 1.0, 0.0, 89.7, 45.4, 54.6,10.299999999999997,8.6 +1,1,a-cure-i1,2016-17,Quabbin - Hubbardston Center,07530010, 0.0, 0.6, 0.6, 1.6, 0.3, 0.0, 96.8, 54.4, 45.6,3.200000000000003,0.0 +34.597402597402585,5,a-cure-i1,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 15.4, 0.0, 0.0, 0.0, 84.6, 69.2, 30.8,15.400000000000006,33.3 +1,1,a-cure-i1,2016-17,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 7.4, 1.9, 0.0, 90.7, 48.1, 51.9,9.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Quabbin - Oakham Center,07530025, 0.0, 0.7, 0.0, 2.7, 1.3, 0.0, 95.3, 54.4, 45.6,4.700000000000003,0.0 +9.806451612903228,5,a-cure-i1,2016-17,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.9, 0.6, 4.7, 3.1, 0.0, 90.7, 50.7, 49.3,9.299999999999997,5.699999999999999 +1,1,a-cure-i1,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.5, 0.2, 4.5, 3.3, 0.0, 91.5, 50.7, 49.3,8.5,0.0 +1,1,a-cure-i1,2016-17,Quabbin - Ruggles Lane,07530030, 0.0, 1.4, 0.0, 5.2, 2.7, 0.3, 90.5, 49.2, 50.8,9.5,0.0 +1,1,a-cure-i1,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.5, 0.5, 7.1, 2.7, 0.0, 89.0, 50.4, 49.6,11.0,0.0 +1,1,a-cure-i1,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.4, 5.9, 2.1, 0.0, 91.6, 51.5, 48.5,8.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.8, 7.2, 2.5, 0.0, 89.4, 50.8, 49.2,10.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.3, 5.2, 4.3, 0.0, 90.2, 48.2, 51.8,9.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 47.1, 7.1, 4.7, 5.9, 0.6, 34.7, 42.4, 57.6,65.3,0.0 +1,1,a-cure-i1,2016-17,Quincy - Atherton Hough,02430040, 0.0, 6.0, 4.1, 6.3, 5.2, 0.0, 78.4, 46.3, 53.7,21.599999999999994,0.0 +2.531810766721044,2.53,a-cure-i1,2016-17,Quincy - Atlantic Middle,02430305, 0.4, 50.4, 4.5, 1.9, 3.8, 0.2, 38.7, 52.6, 47.4,61.3,9.7 +1,1,a-cure-i1,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 38.3, 0.6, 1.4, 2.0, 0.0, 57.7, 51.4, 48.6,42.3,4.3 +1,1,a-cure-i1,2016-17,Quincy - Broad Meadows Middle,02430310, 0.5, 16.3, 6.9, 4.8, 3.7, 0.0, 67.7, 47.7, 52.3,32.3,0.0 +1,1,a-cure-i1,2016-17,Quincy - Central Middle,02430315, 0.0, 41.5, 2.8, 2.8, 2.5, 0.5, 49.9, 47.1, 52.9,50.1,0.0 +1,1,a-cure-i1,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 23.7, 1.5, 5.0, 7.0, 0.0, 62.9, 50.9, 49.1,37.1,4.7 +1,1,a-cure-i1,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 41.4, 11.3, 7.8, 3.0, 1.9, 34.6, 47.3, 52.7,65.4,0.0 +3.3927710843373498,3.39,a-cure-i1,2016-17,Quincy - Francis W Parker,02430075, 0.0, 73.7, 3.4, 3.4, 2.2, 0.3, 17.0, 42.7, 57.3,83.0,17.6 +1,1,a-cure-i1,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 0.4, 32.1, 11.4, 10.2, 4.9, 0.4, 40.6, 43.1, 56.9,59.4,0.0 +1,1,a-cure-i1,2016-17,Quincy - Merrymount,02430060, 0.3, 22.3, 7.4, 2.9, 0.9, 0.6, 65.7, 48.9, 51.1,34.3,4.6 +1,1,a-cure-i1,2016-17,Quincy - Montclair,02430065, 0.0, 58.3, 2.3, 4.2, 3.0, 0.7, 31.5, 49.7, 50.3,68.5,3.7 +2.5679012345679015,2.57,a-cure-i1,2016-17,Quincy - North Quincy High,02430510, 0.2, 58.4, 2.4, 2.9, 0.9, 0.0, 35.2, 49.4, 50.5,64.8,10.4 +1,1,a-cure-i1,2016-17,Quincy - Point Webster Middle,02430325, 0.3, 36.4, 10.7, 8.4, 3.0, 0.6, 40.6, 44.2, 55.8,59.4,3.9 +3.6538461538461537,3.65,a-cure-i1,2016-17,Quincy - Quincy High,02430505, 0.1, 20.6, 10.4, 7.1, 2.9, 0.3, 58.4, 46.3, 53.6,41.6,9.5 +1,1,a-cure-i1,2016-17,Quincy - Reay E Sterling Middle,02430320, 0.6, 26.8, 13.2, 10.6, 3.8, 0.6, 44.4, 47.4, 52.6,55.6,4.6 +1,1,a-cure-i1,2016-17,Quincy - Snug Harbor Community School,02430090, 0.0, 36.7, 11.7, 7.7, 4.0, 0.0, 40.0, 45.3, 54.7,60.0,0.0 +1,1,a-cure-i1,2016-17,Quincy - Squantum,02430095, 0.3, 26.6, 3.6, 3.8, 3.0, 0.0, 62.7, 49.1, 50.9,37.3,2.7 +1,1,a-cure-i1,2016-17,Quincy - Wollaston School,02430110, 0.0, 62.1, 3.3, 1.2, 0.9, 0.3, 32.2, 50.3, 49.7,67.8,2.0 +1,1,a-cure-i1,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 5.3, 5.3, 0.0, 89.5, 68.4, 31.6,10.5,0.0 +6.233766233766231,5,a-cure-i1,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.5, 1.3, 2.4, 6.8, 4.6, 0.0, 84.6, 49.3, 50.7,15.400000000000006,6.0 +1,1,a-cure-i1,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 3.8, 15.2, 3.8, 0.0, 77.2, 63.3, 36.7,22.799999999999997,0.0 +1.0840652446675032,1.08,a-cure-i1,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 0.7, 12.5, 47.6, 13.2, 5.7, 0.0, 20.3, 46.3, 53.7,79.7,5.4 +1,1,a-cure-i1,2016-17,Randolph - J F Kennedy Elementary,02440018, 0.2, 13.0, 54.5, 13.2, 4.5, 0.4, 14.0, 42.6, 57.4,86.0,3.0 +3.985697258641239,3.99,a-cure-i1,2016-17,Randolph - Margaret L Donovan,02440015, 0.2, 22.8, 46.3, 8.5, 6.0, 0.0, 16.1, 47.2, 52.8,83.9,20.9 +1.8316498316498318,1.83,a-cure-i1,2016-17,Randolph - Martin E Young Elementary,02440040, 0.0, 18.8, 47.5, 16.6, 6.3, 0.0, 10.9, 45.6, 54.4,89.1,10.2 +5.802615933412604,5,a-cure-i1,2016-17,Randolph - Randolph Community Middle,02440410, 0.3, 16.4, 47.9, 14.4, 4.9, 0.2, 15.9, 48.5, 51.5,84.1,30.5 +4.3508771929824555,4.35,a-cure-i1,2016-17,Randolph - Randolph High,02440505, 0.3, 18.3, 57.6, 10.9, 3.7, 0.4, 8.8, 45.9, 54.1,91.2,24.799999999999997 +1,1,a-cure-i1,2016-17,Reading - Alice M Barrows,02460002, 0.3, 3.9, 1.8, 1.8, 3.9, 0.0, 88.3, 52.3, 47.7,11.700000000000003,3.2 +1,1,a-cure-i1,2016-17,Reading - Arthur W Coolidge Middle,02460305, 0.0, 4.3, 1.9, 1.1, 1.9, 0.0, 90.8, 46.1, 53.9,9.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Reading - Birch Meadow,02460005, 0.3, 2.1, 1.6, 1.0, 3.4, 0.0, 91.6, 46.0, 54.0,8.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Reading - J Warren Killam,02460017, 0.0, 6.4, 3.5, 0.5, 2.1, 0.2, 87.2, 46.6, 53.4,12.799999999999997,0.0 +4.7058823529411775,4.71,a-cure-i1,2016-17,Reading - Joshua Eaton,02460010, 0.2, 6.6, 4.5, 7.1, 3.8, 0.0, 77.9, 47.5, 52.5,22.099999999999994,6.5 +1,1,a-cure-i1,2016-17,Reading - Reading Memorial High,02460505, 0.2, 4.4, 2.3, 1.0, 1.0, 0.0, 91.1, 51.1, 48.9,8.900000000000006,2.5 +1,1,a-cure-i1,2016-17,Reading - RISE PreSchool,02460001, 0.0, 11.0, 1.1, 5.5, 1.1, 0.0, 81.3, 30.8, 69.2,18.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Reading - Walter S Parker Middle,02460310, 0.3, 4.5, 2.3, 2.3, 1.0, 0.0, 89.5, 48.3, 51.7,10.5,2.7 +1,1,a-cure-i1,2016-17,Reading - Wood End Elementary School,02460020, 0.0, 4.4, 2.5, 3.5, 2.2, 0.0, 87.3, 48.3, 51.7,12.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Revere - A. C. Whelan Elementary School,02480003, 0.0, 5.5, 2.5, 40.7, 2.3, 0.1, 48.9, 47.5, 52.5,51.1,0.0 +1,1,a-cure-i1,2016-17,Revere - Abraham Lincoln,02480025, 0.0, 4.8, 4.8, 43.0, 1.5, 0.0, 45.9, 48.9, 51.1,54.1,0.0 +1,1,a-cure-i1,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 2.2, 4.1, 47.8, 1.4, 0.0, 44.6, 44.6, 55.4,55.4,0.0 +1,1,a-cure-i1,2016-17,Revere - Garfield Elementary School,02480056, 0.1, 6.3, 2.0, 62.9, 1.2, 0.0, 27.5, 51.4, 48.6,72.5,0.0 +1.28,1.28,a-cure-i1,2016-17,Revere - Garfield Middle School,02480057, 0.4, 6.8, 3.1, 55.1, 2.0, 0.0, 32.5, 51.4, 48.6,67.5,5.4 +1,1,a-cure-i1,2016-17,Revere - Paul Revere,02480050, 0.2, 6.5, 3.6, 42.5, 4.9, 0.0, 42.3, 50.8, 49.2,57.7,0.0 +1.8781575037147105,1.88,a-cure-i1,2016-17,Revere - Revere High,02480505, 0.2, 6.2, 4.7, 54.1, 2.2, 0.0, 32.7, 50.5, 49.5,67.3,7.9 +1,1,a-cure-i1,2016-17,Revere - Rumney Marsh Academy,02480014, 1.0, 4.9, 4.4, 41.3, 2.5, 0.2, 45.7, 45.2, 54.8,54.3,2.5 +1,1,a-cure-i1,2016-17,Revere - Seacoast School,02480520, 0.0, 3.3, 7.4, 57.9, 5.0, 0.0, 26.4, 33.1, 66.9,73.6,0.0 +1,1,a-cure-i1,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.3, 3.0, 4.5, 58.8, 2.7, 0.1, 30.6, 50.4, 49.6,69.4,0.0 +1,1,a-cure-i1,2016-17,Revere - Susan B. Anthony Middle School,02480305, 0.5, 4.7, 4.1, 54.6, 2.2, 0.0, 33.9, 54.0, 46.0,66.1,0.0 +1,1,a-cure-i1,2016-17,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 2.9, 5.2, 2.9, 0.0, 89.0, 55.5, 44.5,11.0,0.0 +11.230769230769226,5,a-cure-i1,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.5, 3.0, 1.1, 2.1, 3.8, 0.0, 89.6, 51.9, 48.1,10.400000000000006,7.300000000000001 +1,1,a-cure-i1,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 0.3, 3.8, 0.3, 2.8, 3.5, 0.0, 89.2, 58.3, 41.7,10.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 1.5, 1.5, 5.6, 0.0, 91.4, 46.8, 53.2,8.599999999999994,3.5 +1,1,a-cure-i1,2016-17,Rockland - Jefferson Elementary School,02510060, 0.0, 1.5, 3.9, 11.7, 3.3, 0.0, 79.5, 52.4, 47.6,20.5,0.0 +1,1,a-cure-i1,2016-17,Rockland - John W Rogers Middle,02510305, 0.0, 1.2, 5.0, 10.1, 4.6, 0.0, 79.1, 48.7, 51.3,20.900000000000006,1.9 +1,1,a-cure-i1,2016-17,Rockland - Memorial Park,02510020, 0.0, 1.1, 4.4, 12.4, 4.7, 0.0, 77.5, 48.7, 51.3,22.5,0.0 +1,1,a-cure-i1,2016-17,Rockland - R Stewart Esten,02510025, 0.0, 1.3, 7.6, 15.1, 3.0, 0.0, 73.0, 44.7, 55.3,27.0,0.0 +1,1,a-cure-i1,2016-17,Rockland - Rockland Senior High,02510505, 0.0, 0.3, 4.7, 8.1, 4.3, 0.0, 82.6, 47.5, 52.5,17.400000000000006,2.4 +1,1,a-cure-i1,2016-17,Rockport - Rockport Elementary,02520005, 0.0, 2.2, 0.0, 1.5, 2.0, 0.0, 94.3, 46.9, 53.1,5.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Rockport - Rockport High,02520510, 0.0, 1.0, 1.4, 2.4, 2.7, 0.0, 92.5, 48.3, 51.7,7.5,4.2 +1,1,a-cure-i1,2016-17,Rockport - Rockport Middle,02520305, 0.0, 1.3, 0.9, 0.9, 4.8, 0.0, 92.1, 48.0, 52.0,7.900000000000006,0.0 +26.91764705882353,5,a-cure-i1,2016-17,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 3.4, 5.1, 0.0, 91.5, 54.2, 45.8,8.5,14.3 +5.816717019133938,5,a-cure-i1,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.1, 0.8, 56.4, 40.7, 1.1, 0.2, 0.7, 50.0, 50.0,99.3,36.1 +4.475816993464052,4.48,a-cure-i1,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 4.1, 29.8, 37.6, 5.0, 0.0, 23.5, 49.9, 50.1,76.5,21.4 +4.247139588100687,4.25,a-cure-i1,2016-17,Salem - Bates,02580003, 0.0, 1.2, 8.3, 27.5, 6.7, 0.0, 56.3, 50.8, 49.2,43.7,11.600000000000001 +2.6036745406824147,2.6,a-cure-i1,2016-17,Salem - Carlton,02580015, 0.0, 1.3, 4.6, 26.4, 5.9, 0.0, 61.9, 52.7, 47.3,38.1,6.2 +4.363636363636363,4.36,a-cure-i1,2016-17,Salem - Collins Middle,02580305, 0.0, 2.8, 5.7, 33.0, 3.7, 0.0, 54.9, 47.3, 52.7,45.1,12.3 +2.088235294117647,2.09,a-cure-i1,2016-17,Salem - Horace Mann Laboratory,02580030, 0.0, 0.7, 7.7, 39.4, 6.6, 0.0, 45.6, 47.7, 52.3,54.4,7.1 +3.7306733167082293,3.73,a-cure-i1,2016-17,Salem - Nathaniel Bowditch,02580025, 0.2, 2.7, 5.9, 69.1, 2.3, 0.0, 19.8, 46.6, 53.4,80.2,18.7 +7.908883826879271,5,a-cure-i1,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 7.3, 36.6, 0.0, 0.0, 56.1, 58.5, 41.5,43.9,21.7 +1,1,a-cure-i1,2016-17,Salem - Salem Early Childhood,02580001, 0.0, 1.1, 13.0, 29.3, 10.9, 0.0, 45.7, 48.9, 51.1,54.3,0.0 +1.936842105263158,1.94,a-cure-i1,2016-17,Salem - Salem High,02580505, 0.2, 2.3, 7.7, 43.0, 3.9, 0.0, 43.0, 48.2, 51.8,57.0,6.9 +1,1,a-cure-i1,2016-17,Salem - Salem Prep High School,02580515, 0.0, 0.0, 7.7, 38.5, 0.0, 0.0, 53.8, 38.5, 61.5,46.2,0.0 +2.327944572748268,2.33,a-cure-i1,2016-17,Salem - Saltonstall School,02580050, 0.0, 2.4, 3.5, 30.4, 7.0, 0.0, 56.7, 52.2, 47.8,43.3,6.3 +1,1,a-cure-i1,2016-17,Salem - Witchcraft Heights,02580070, 0.0, 5.2, 5.8, 24.6, 3.5, 0.2, 60.5, 45.1, 54.9,39.5,1.0 +6.163187855787476,5,a-cure-i1,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 5.4, 8.8, 36.7, 1.8, 0.0, 47.3, 54.5, 45.5,52.7,20.3 +8.946236559139788,5,a-cure-i1,2016-17,Sandwich - Forestdale School,02610002, 0.2, 2.6, 1.2, 4.3, 0.8, 0.2, 90.7, 49.7, 50.3,9.299999999999997,5.2 +1,1,a-cure-i1,2016-17,Sandwich - Oak Ridge,02610025, 0.8, 1.8, 1.2, 1.8, 0.7, 0.0, 93.8, 50.9, 49.1,6.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Sandwich - Sandwich High,02610505, 0.1, 2.3, 1.1, 1.4, 0.1, 0.0, 94.9, 48.1, 51.9,5.099999999999994,2.5 +15.225806451612897,5,a-cure-i1,2016-17,Sandwich - Sandwich STEM Academy,02610305, 1.1, 2.6, 1.3, 0.6, 0.4, 0.2, 93.8, 48.3, 51.7,6.200000000000003,5.9 +1,1,a-cure-i1,2016-17,Saugus - Ballard School,02620001, 0.9, 1.8, 5.5, 7.3, 5.5, 0.0, 79.1, 42.7, 57.3,20.900000000000006,0.0 +3.52542372881356,3.53,a-cure-i1,2016-17,Saugus - Belmonte Saugus Middle,02620305, 0.5, 3.2, 4.8, 13.7, 1.4, 0.2, 76.4, 48.5, 51.5,23.599999999999994,5.2 +1,1,a-cure-i1,2016-17,Saugus - Douglas Waybright,02620067, 0.5, 7.3, 2.9, 13.1, 3.4, 0.0, 72.8, 49.5, 50.5,27.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Saugus - Lynnhurst,02620040, 0.0, 9.8, 2.6, 17.0, 0.4, 0.4, 69.8, 52.3, 47.7,30.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Saugus - Oaklandvale,02620050, 0.5, 4.2, 4.7, 18.7, 4.2, 0.9, 66.8, 45.3, 54.7,33.2,0.0 +1,1,a-cure-i1,2016-17,Saugus - Saugus High,02620505, 0.4, 5.9, 5.5, 12.4, 0.4, 0.0, 75.4, 49.7, 50.3,24.599999999999994,3.8 +1,1,a-cure-i1,2016-17,Saugus - Veterans Memorial,02620065, 0.2, 4.1, 3.7, 18.7, 1.4, 0.0, 71.9, 47.2, 52.8,28.099999999999994,2.9 +1,1,a-cure-i1,2016-17,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 2.0, 4.1, 0.0, 0.0, 93.9, 53.1, 46.9,6.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Scituate - Cushing Elementary,02640007, 0.3, 1.1, 2.2, 0.8, 0.8, 0.0, 94.8, 45.2, 54.8,5.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Scituate - Gates Intermediate School,02640305, 0.0, 1.7, 3.5, 0.4, 1.2, 0.0, 93.3, 51.4, 48.6,6.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Scituate - Hatherly Elementary,02640010, 0.0, 1.3, 2.6, 1.0, 1.3, 0.0, 93.9, 47.9, 52.1,6.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Scituate - Jenkins Elementary School,02640015, 0.0, 0.9, 2.2, 1.1, 1.7, 0.0, 94.2, 50.8, 49.2,5.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Scituate - Scituate High School,02640505, 0.0, 1.3, 2.6, 0.2, 1.4, 0.1, 94.3, 52.7, 47.3,5.700000000000003,3.5 +1,1,a-cure-i1,2016-17,Scituate - Wampatuck Elementary,02640020, 0.0, 0.9, 3.5, 1.4, 2.6, 0.0, 91.6, 45.7, 54.3,8.400000000000006,0.0 +7.724137931034486,5,a-cure-i1,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.2, 2.7, 1.3, 4.8, 2.5, 0.0, 88.4, 50.1, 49.7,11.599999999999994,5.6 +1,1,a-cure-i1,2016-17,Seekonk - George R Martin,02650007, 0.0, 2.7, 2.1, 7.1, 4.3, 0.0, 83.8, 49.9, 50.1,16.200000000000003,4.5 +1,1,a-cure-i1,2016-17,Seekonk - Mildred Aitken School,02650015, 0.0, 3.1, 2.2, 3.1, 2.9, 0.0, 88.7, 49.9, 50.1,11.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Seekonk - Seekonk High,02650505, 0.0, 2.4, 1.9, 2.9, 2.2, 0.0, 90.6, 53.2, 46.8,9.400000000000006,0.0 +3.012987012987013,3.01,a-cure-i1,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.1, 47.1, 41.5, 3.6, 0.0, 7.6, 47.1, 52.9,92.4,17.400000000000002 +1,1,a-cure-i1,2016-17,Sharon - Cottage Street,02660005, 0.2, 27.2, 3.0, 3.0, 7.0, 0.2, 59.2, 48.8, 51.2,40.8,1.2 +1,1,a-cure-i1,2016-17,Sharon - East Elementary,02660010, 0.0, 26.7, 4.2, 6.8, 4.6, 0.0, 57.8, 49.5, 50.5,42.2,0.0 +1,1,a-cure-i1,2016-17,Sharon - Heights Elementary,02660015, 0.2, 33.3, 2.1, 3.0, 7.2, 0.2, 54.1, 47.8, 52.2,45.9,3.3 +1,1,a-cure-i1,2016-17,Sharon - Sharon High,02660505, 0.0, 22.1, 8.1, 3.8, 3.0, 0.0, 62.9, 48.8, 51.2,37.1,3.6 +1,1,a-cure-i1,2016-17,Sharon - Sharon Middle,02660305, 0.1, 28.0, 3.9, 5.0, 4.2, 0.2, 58.5, 48.7, 51.3,41.5,1.9 +1,1,a-cure-i1,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.3, 0.7, 1.5, 4.3, 1.6, 0.0, 91.5, 42.5, 57.5,8.5,0.0 +1,1,a-cure-i1,2016-17,Sherborn - Pine Hill,02690010, 0.0, 8.6, 1.9, 2.3, 6.3, 0.0, 80.9, 46.9, 53.1,19.099999999999994,2.7 +1,1,a-cure-i1,2016-17,Shrewsbury - Beal School,02710005, 0.0, 52.5, 0.9, 6.0, 3.8, 0.0, 36.8, 44.7, 55.3,63.2,0.0 +1,1,a-cure-i1,2016-17,Shrewsbury - Calvin Coolidge,02710015, 0.2, 30.3, 2.7, 14.2, 5.1, 0.0, 47.4, 48.9, 51.1,52.6,0.0 +1,1,a-cure-i1,2016-17,Shrewsbury - Floral Street School,02710020, 0.4, 46.3, 1.5, 7.8, 3.9, 0.0, 40.2, 49.9, 50.1,59.8,2.8 +2.4522613065326633,2.45,a-cure-i1,2016-17,Shrewsbury - Oak Middle School,02710030, 0.3, 26.1, 1.8, 8.1, 3.5, 0.0, 60.2, 49.1, 50.9,39.8,6.1 +2.1735849056603773,2.17,a-cure-i1,2016-17,Shrewsbury - Parker Road Preschool,02710040, 1.7, 35.8, 2.2, 9.5, 3.9, 0.0, 47.0, 47.4, 52.6,53.0,7.2 +1,1,a-cure-i1,2016-17,Shrewsbury - Sherwood Middle School,02710305, 0.2, 27.9, 2.8, 6.3, 3.0, 0.0, 59.8, 49.5, 50.5,40.2,3.4 +3.1610942249240117,3.16,a-cure-i1,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0.2, 20.6, 1.9, 7.5, 2.6, 0.1, 67.1, 53.1, 46.7,32.900000000000006,6.5 +1,1,a-cure-i1,2016-17,Shrewsbury - Spring Street,02710035, 0.0, 23.4, 1.1, 5.4, 5.6, 0.0, 64.5, 50.8, 49.2,35.5,0.0 +2.738255033557047,2.74,a-cure-i1,2016-17,Shrewsbury - Walter J Paton,02710025, 0.3, 17.2, 0.5, 7.7, 4.1, 0.0, 70.2, 44.5, 55.5,29.799999999999997,5.1 +7.736263736263735,5,a-cure-i1,2016-17,Shutesbury - Shutesbury Elementary,02720005, 0.8, 0.0, 0.8, 6.6, 9.9, 0.0, 81.8, 57.9, 42.1,18.200000000000003,8.8 +1,1,a-cure-i1,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.2, 2.5, 2.8, 18.7, 1.6, 0.0, 74.3, 48.7, 51.3,25.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.7, 1.6, 1.0, 0.5, 0.2, 95.9, 47.5, 52.5,4.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 1.2, 1.2, 0.7, 0.5, 0.0, 96.3, 48.2, 51.8,3.700000000000003,0.0 +4.240963855421685,4.24,a-cure-i1,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 2.2, 4.3, 16.8, 1.6, 0.0, 75.1, 52.4, 47.6,24.900000000000006,6.6 +1,1,a-cure-i1,2016-17,Somerset - Chace Street,02730005, 0.0, 0.0, 1.5, 2.7, 2.2, 0.0, 93.6, 47.3, 52.7,6.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Somerset - North Elementary,02730008, 0.0, 1.2, 1.6, 3.6, 1.8, 0.0, 91.9, 51.0, 49.0,8.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Somerset - Somerset Middle School,02730305, 0.2, 0.2, 1.0, 3.4, 2.6, 0.0, 92.7, 47.2, 52.8,7.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Somerset - South,02730015, 0.0, 0.4, 0.8, 5.3, 3.0, 0.0, 90.6, 50.8, 49.2,9.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.5, 1.4, 2.5, 3.1, 0.0, 92.5, 53.2, 46.8,7.5,3.4 +2.95593220338983,2.96,a-cure-i1,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 10.3, 5.7, 39.4, 3.7, 0.0, 41.0, 48.9, 51.1,59.0,10.899999999999999 +2.977777777777778,2.98,a-cure-i1,2016-17,Somerville - Arthur D Healey,02740075, 0.0, 6.8, 13.8, 48.4, 3.0, 0.0, 28.0, 50.5, 49.5,72.0,13.4 +1,1,a-cure-i1,2016-17,Somerville - Benjamin G Brown,02740015, 0.4, 9.7, 0.0, 8.5, 9.3, 0.0, 72.0, 50.8, 49.2,28.0,0.0 +1,1,a-cure-i1,2016-17,Somerville - Capuano Early Childhood Center,02740005, 0.0, 9.6, 5.4, 41.3, 4.2, 0.0, 39.5, 38.3, 61.7,60.5,0.0 +5.877149877149877,5,a-cure-i1,2016-17,Somerville - E Somerville Community,02740111, 0.0, 3.2, 4.4, 71.3, 2.3, 0.1, 18.6, 48.4, 51.6,81.4,29.900000000000002 +1,1,a-cure-i1,2016-17,Somerville - Full Circle High School,02740510, 0.0, 1.6, 23.0, 39.3, 3.3, 0.0, 32.8, 37.7, 62.3,67.2,0.0 +2.4583333333333335,2.46,a-cure-i1,2016-17,Somerville - John F Kennedy,02740083, 0.0, 5.5, 10.2, 17.4, 5.3, 0.0, 61.6, 45.4, 54.6,38.4,5.9 +1.8834285714285715,1.88,a-cure-i1,2016-17,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 18.8, 68.8, 0.0, 0.0, 12.5, 31.3, 68.8,87.5,10.3 +4.972661870503598,4.97,a-cure-i1,2016-17,Somerville - Somerville High,02740505, 0.0, 9.4, 13.6, 45.8, 0.7, 0.0, 30.5, 45.3, 54.7,69.5,21.6 +1,1,a-cure-i1,2016-17,Somerville - West Somerville Neighborhood,02740115, 0.0, 4.0, 13.8, 20.7, 5.8, 0.0, 55.7, 46.2, 53.8,44.3,4.5 +2.8015564202334633,2.8,a-cure-i1,2016-17,Somerville - Winter Hill Community,02740120, 0.0, 8.2, 12.6, 53.5, 2.8, 0.0, 22.9, 45.0, 55.0,77.1,13.5 +1,1,a-cure-i1,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 1.8, 2.0, 12.5, 4.2, 0.0, 79.5, 50.4, 49.6,20.5,0.0 +1,1,a-cure-i1,2016-17,South Hadley - Mosier,02780020, 0.2, 1.6, 1.4, 15.7, 1.6, 0.0, 79.4, 50.7, 49.3,20.599999999999994,4.6 +1,1,a-cure-i1,2016-17,South Hadley - Plains Elementary,02780015, 0.3, 2.6, 1.2, 11.0, 3.2, 0.0, 81.7, 49.4, 50.6,18.299999999999997,0.0 +1,1,a-cure-i1,2016-17,South Hadley - South Hadley High,02780505, 0.0, 1.7, 3.1, 7.2, 0.9, 0.4, 86.8, 49.7, 50.3,13.200000000000003,0.0 +1,1,a-cure-i1,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.8, 0.1, 5.9, 46.3, 3.3, 0.0, 43.5, 43.1, 56.9,56.5,2.8 +1,1,a-cure-i1,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.3, 4.6, 25.1, 2.8, 4.6, 0.1, 62.5, 49.5, 50.5,37.5,4.9 +1,1,a-cure-i1,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.5, 0.8, 3.3, 2.5, 0.2, 92.8, 33.6, 66.4,7.200000000000003,1.8 +1,1,a-cure-i1,2016-17,Southampton - William E Norris,02750005, 0.2, 1.5, 0.4, 4.4, 2.3, 0.4, 90.8, 48.5, 51.5,9.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 18.4, 1.6, 6.9, 5.7, 0.0, 67.3, 49.4, 50.6,32.7,0.0 +1,1,a-cure-i1,2016-17,Southborough - Margaret A Neary,02760020, 0.3, 16.1, 0.3, 6.4, 5.4, 0.0, 71.5, 49.3, 50.7,28.5,0.0 +1,1,a-cure-i1,2016-17,Southborough - Mary E Finn School,02760008, 0.3, 15.7, 1.7, 4.8, 5.5, 0.0, 72.0, 46.4, 53.6,28.0,0.0 +1,1,a-cure-i1,2016-17,Southborough - P Brent Trottier,02760305, 0.0, 14.4, 0.4, 4.4, 3.3, 0.0, 77.6, 49.5, 50.5,22.400000000000006,3.1 +1,1,a-cure-i1,2016-17,Southbridge - Charlton Street,02770005, 0.2, 1.4, 3.1, 46.6, 3.6, 0.0, 45.1, 47.7, 52.3,54.9,0.0 +1,1,a-cure-i1,2016-17,Southbridge - Eastford Road,02770010, 0.4, 2.4, 2.0, 51.6, 0.0, 0.0, 43.7, 51.2, 48.8,56.3,0.0 +1,1,a-cure-i1,2016-17,Southbridge - Southbridge High School,02770515, 0.2, 0.8, 1.8, 54.2, 0.6, 0.0, 42.4, 47.9, 52.1,57.6,2.6 +1,1,a-cure-i1,2016-17,Southbridge - Southbridge Middle School,02770315, 0.6, 1.0, 1.4, 57.8, 1.6, 0.0, 37.7, 48.1, 51.9,62.3,4.8 +1,1,a-cure-i1,2016-17,Southbridge - West Street,02770020, 0.7, 2.3, 1.4, 52.2, 2.1, 0.0, 41.3, 50.6, 49.4,58.7,0.0 +2.67741935483871,2.68,a-cure-i1,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.1, 1.4, 32.6, 11.7, 3.9, 0.0, 50.4, 48.8, 51.2,49.6,8.3 +12.061538461538463,5,a-cure-i1,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.7, 6.8, 5.5, 0.0, 87.0, 49.0, 51.0,13.0,9.8 +33.43589743589745,5,a-cure-i1,2016-17,Southern Berkshire - New Marlborough Central,07650018, 3.3, 0.0, 0.0, 1.1, 3.3, 0.0, 92.2, 50.0, 50.0,7.799999999999997,16.3 +29.506493506493495,5,a-cure-i1,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 7.7, 0.0, 0.0, 92.3, 30.8, 69.2,7.700000000000003,14.2 +1,1,a-cure-i1,2016-17,Southern Berkshire - Undermountain,07650035, 0.3, 0.0, 1.2, 7.6, 5.2, 0.0, 85.8, 47.0, 53.0,14.200000000000003,1.5 +1,1,a-cure-i1,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.1, 0.4, 0.5, 6.7, 0.9, 0.0, 91.3, 42.0, 58.0,8.700000000000003,0.9 +1,1,a-cure-i1,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 1.2, 0.0, 0.0, 1.2, 4.9, 0.0, 92.7, 47.6, 52.4,7.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.3, 2.3, 5.9, 1.8, 0.0, 88.8, 51.3, 48.7,11.200000000000003,4.0 +13.999999999999995,5,a-cure-i1,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.4, 1.9, 3.8, 1.1, 0.0, 92.8, 49.4, 50.6,7.200000000000003,6.3 +1,1,a-cure-i1,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.6, 1.5, 7.7, 2.4, 0.0, 87.9, 47.6, 52.4,12.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 1.2, 1.2, 8.6, 5.0, 0.0, 84.0, 45.6, 54.4,16.0,0.0 +1,1,a-cure-i1,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.5, 0.5, 0.9, 6.1, 4.7, 0.0, 87.3, 45.8, 54.2,12.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.2, 0.5, 1.0, 9.7, 3.4, 0.0, 85.3, 45.2, 54.8,14.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 1.4, 0.9, 8.8, 3.5, 0.0, 85.3, 50.7, 49.3,14.700000000000003,0.0 +3.0934699103713195,3.09,a-cure-i1,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.2, 25.3, 48.4, 4.1, 0.0, 21.9, 53.0, 47.0,78.1,15.100000000000001 +2.1882057716436636,2.19,a-cure-i1,2016-17,Springfield - Alice B Beal Elementary,02810175, 0.0, 9.1, 13.8, 54.0, 2.9, 0.0, 20.3, 49.3, 50.7,79.7,10.9 +1.3381123058542412,1.34,a-cure-i1,2016-17,Springfield - Arthur T Talmadge,02810165, 0.4, 1.9, 30.0, 48.1, 3.3, 0.0, 16.3, 47.0, 53.0,83.7,7.0 +4.124064171122995,4.12,a-cure-i1,2016-17,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 19.6, 73.9, 0.0, 0.0, 6.5, 30.4, 69.6,93.5,24.1 +4.582995951417004,4.58,a-cure-i1,2016-17,Springfield - Brightwood,02810025, 0.0, 0.0, 16.4, 82.4, 0.0, 0.0, 1.2, 48.0, 52.0,98.8,28.3 +2.6202661207778912,2.62,a-cure-i1,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 0.3, 0.3, 8.7, 88.3, 0.0, 0.0, 2.3, 46.0, 54.0,97.7,16.0 +6.222222222222221,5,a-cure-i1,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 0.0, 0.3, 12.9, 83.9, 0.0, 0.0, 2.8, 50.5, 49.5,97.2,37.8 +7.393103448275863,5,a-cure-i1,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.4, 2.8, 21.1, 60.4, 2.1, 0.4, 13.0, 56.1, 43.9,87.0,40.2 +4.380090497737557,4.38,a-cure-i1,2016-17,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 25.8, 61.4, 1.2, 0.0, 11.6, 76.0, 24.0,88.4,24.200000000000003 +1.2875739644970416,1.29,a-cure-i1,2016-17,Springfield - Daniel B Brunton,02810035, 0.0, 1.5, 20.3, 60.8, 1.7, 0.2, 15.5, 50.7, 49.3,84.5,6.800000000000001 +1.7997750281214846,1.8,a-cure-i1,2016-17,Springfield - Early Childhood Education Center,02810001, 0.0, 1.4, 19.4, 65.3, 2.8, 0.0, 11.1, 36.1, 63.9,88.9,10.0 +1,1,a-cure-i1,2016-17,Springfield - Edward P. Boland School,02810010, 0.1, 1.3, 10.0, 78.0, 1.6, 0.0, 8.9, 43.7, 56.3,91.1,2.6 +4.40174672489083,4.4,a-cure-i1,2016-17,Springfield - Elias Brookings,02810030, 0.8, 0.3, 24.0, 64.9, 1.6, 0.0, 8.4, 48.3, 51.7,91.6,25.2 +1.5374868004223867,1.54,a-cure-i1,2016-17,Springfield - Forest Park Middle,02810325, 0.1, 7.8, 17.8, 67.8, 1.0, 0.1, 5.3, 51.1, 48.9,94.7,9.100000000000001 +3.2424607961399277,3.24,a-cure-i1,2016-17,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 25.1, 55.2, 1.6, 0.0, 17.1, 44.1, 55.9,82.9,16.8 +2.0626506024096383,2.06,a-cure-i1,2016-17,Springfield - Frederick Harris,02810080, 0.0, 3.2, 19.7, 56.9, 3.2, 0.0, 17.0, 48.8, 51.2,83.0,10.7 +22.727272727272727,5,a-cure-i1,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 22.2, 48.1, 0.0, 0.0, 29.6, 63.0, 37.0,70.4,100.0 +18.285714285714285,5,a-cure-i1,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 20.8, 64.6, 2.1, 0.0, 12.5, 60.4, 39.6,87.5,100.0 +2.5560165975103732,2.56,a-cure-i1,2016-17,Springfield - German Gerena Community School,02810195, 0.0, 0.7, 14.5, 80.7, 0.5, 0.0, 3.6, 50.1, 49.9,96.4,15.4 +1,1,a-cure-i1,2016-17,Springfield - Glenwood,02810065, 0.0, 2.3, 14.0, 66.8, 2.7, 0.0, 14.3, 46.2, 53.8,85.7,0.0 +2.8703030303030306,2.87,a-cure-i1,2016-17,Springfield - Glickman Elementary,02810068, 0.0, 3.6, 22.8, 53.8, 2.2, 0.0, 17.5, 49.9, 50.1,82.5,14.8 +6.169934640522876,5,a-cure-i1,2016-17,Springfield - High School Of Commerce,02810510, 0.0, 1.5, 19.8, 69.3, 1.1, 0.0, 8.2, 46.8, 53.2,91.8,35.4 +1,1,a-cure-i1,2016-17,Springfield - Hiram L Dorman,02810050, 0.0, 1.2, 27.9, 57.6, 0.9, 0.0, 12.4, 50.2, 49.8,87.6,0.0 +1,1,a-cure-i1,2016-17,Springfield - Homer Street,02810085, 0.0, 1.6, 24.1, 64.2, 0.9, 0.0, 9.2, 47.5, 52.5,90.8,0.0 +1.649289099526066,1.65,a-cure-i1,2016-17,Springfield - Indian Orchard Elementary,02810100, 0.0, 1.7, 17.0, 62.6, 3.2, 0.0, 15.6, 47.1, 52.9,84.4,8.7 +5.665573770491802,5,a-cure-i1,2016-17,Springfield - John F Kennedy Middle,02810328, 0.2, 0.7, 19.1, 70.6, 0.9, 0.0, 8.5, 45.1, 54.9,91.5,32.39999999999999 +2.6319526627218934,2.63,a-cure-i1,2016-17,Springfield - John J Duggan Middle,02810320, 0.0, 2.5, 27.4, 53.6, 1.0, 0.0, 15.5, 41.7, 58.3,84.5,13.9 +1.6100628930817609,1.61,a-cure-i1,2016-17,Springfield - Kensington International School,02810110, 0.0, 5.2, 21.2, 67.6, 1.3, 0.0, 4.6, 48.7, 51.3,95.4,9.6 +1,1,a-cure-i1,2016-17,Springfield - Liberty,02810115, 0.0, 2.1, 8.7, 74.0, 0.7, 0.0, 14.6, 51.4, 48.6,85.4,0.0 +1,1,a-cure-i1,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, 7.7, 15.4, 38.5, 0.0, 0.0, 38.5, 30.8, 69.2,61.5,0.0 +2.677685950413223,2.68,a-cure-i1,2016-17,Springfield - Lincoln,02810120, 0.0, 0.2, 10.1, 85.6, 0.7, 0.0, 3.2, 42.6, 57.4,96.8,16.2 +5.107551487414187,5,a-cure-i1,2016-17,Springfield - M Marcus Kiley Middle,02810330, 0.2, 3.0, 21.2, 62.4, 0.8, 0.0, 12.6, 46.7, 53.3,87.4,27.9 +1.3092659446450061,1.31,a-cure-i1,2016-17,Springfield - Margaret C Ells,02810060, 0.5, 0.5, 26.5, 53.0, 2.7, 0.0, 16.9, 41.6, 58.4,83.1,6.8 +1,1,a-cure-i1,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 7.2, 14.5, 52.1, 2.7, 0.3, 23.2, 52.7, 47.3,76.8,0.0 +1.452972972972973,1.45,a-cure-i1,2016-17,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 18.0, 73.3, 1.1, 0.0, 7.5, 52.3, 47.7,92.5,8.4 +1,1,a-cure-i1,2016-17,Springfield - Mary M Walsh,02810155, 0.0, 1.0, 14.3, 68.8, 2.3, 0.0, 13.6, 44.8, 55.2,86.4,0.0 +3.924528301886793,3.92,a-cure-i1,2016-17,Springfield - Mary O Pottenger,02810145, 0.2, 2.0, 11.4, 69.7, 1.3, 0.0, 15.2, 48.4, 51.6,84.8,20.8 +1.3991769547325101,1.4,a-cure-i1,2016-17,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 16.7, 80.0, 0.5, 0.0, 2.8, 47.7, 52.3,97.2,8.5 +5.608421052631578,5,a-cure-i1,2016-17,Springfield - Rebecca M Johnson,02810055, 0.1, 0.3, 28.0, 65.2, 1.4, 0.0, 5.0, 48.9, 51.1,95.0,33.3 +3.1670480549199085,3.17,a-cure-i1,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 1.6, 19.5, 65.5, 0.9, 0.0, 12.6, 54.2, 45.8,87.4,17.3 +2.1454545454545455,2.15,a-cure-i1,2016-17,Springfield - Samuel Bowles,02810020, 0.0, 0.3, 16.8, 68.5, 2.1, 0.3, 12.0, 48.6, 51.4,88.0,11.8 +4.78688524590164,4.79,a-cure-i1,2016-17,Springfield - South End Middle School,02810355, 0.0, 0.4, 14.2, 81.7, 1.2, 0.0, 2.4, 50.4, 49.6,97.6,29.200000000000003 +3.566265060240964,3.57,a-cure-i1,2016-17,Springfield - Springfield Central High,02810500, 0.0, 6.0, 24.1, 51.5, 1.1, 0.1, 17.0, 48.2, 51.8,83.0,18.5 +6.5504587155963305,5,a-cure-i1,2016-17,Springfield - Springfield High School,02810570, 0.0, 0.0, 25.6, 59.8, 1.7, 0.0, 12.8, 31.6, 68.4,87.2,35.7 +4.130777903043968,4.13,a-cure-i1,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 2.3, 17.3, 68.4, 0.7, 0.1, 11.3, 41.2, 58.8,88.7,22.9 +5.690140845070422,5,a-cure-i1,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 25.9, 59.3, 0.0, 0.0, 14.8, 18.5, 81.5,85.2,30.3 +6.59847660500544,5,a-cure-i1,2016-17,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 23.4, 66.7, 1.8, 0.0, 8.1, 30.6, 69.4,91.9,37.9 +2.902575587905935,2.9,a-cure-i1,2016-17,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 25.0, 64.3, 0.0, 0.0, 10.7, 12.5, 87.5,89.3,16.2 +8.202764976958525,5,a-cure-i1,2016-17,Springfield - STEM Middle Academy,02810350, 0.0, 1.4, 25.7, 59.7, 0.0, 0.0, 13.2, 35.1, 64.9,86.8,44.5 +3.7909407665505226,3.79,a-cure-i1,2016-17,Springfield - Sumner Avenue,02810160, 0.2, 4.7, 17.0, 61.3, 3.0, 0.0, 13.9, 47.7, 52.3,86.1,20.4 +2.745308310991957,2.75,a-cure-i1,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 1.4, 25.2, 47.0, 0.8, 0.1, 25.4, 48.4, 51.6,74.6,12.799999999999999 +2.3322033898305086,2.33,a-cure-i1,2016-17,Springfield - Thomas M Balliet,02810015, 0.0, 1.2, 23.8, 61.0, 2.5, 0.0, 11.5, 48.9, 51.1,88.5,12.9 +3.7420765027322402,3.74,a-cure-i1,2016-17,Springfield - Van Sickle Academy,02810480, 0.0, 1.8, 19.1, 69.1, 1.5, 0.0, 8.5, 47.3, 52.7,91.5,21.4 +5.217787913340935,5,a-cure-i1,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 0.0, 2.5, 11.8, 72.9, 0.5, 0.0, 12.3, 44.4, 55.6,87.7,28.6 +1,1,a-cure-i1,2016-17,Springfield - Warner,02810180, 0.7, 2.9, 16.5, 60.6, 2.9, 0.4, 16.1, 46.6, 53.4,83.9,0.0 +1.7857948139797066,1.79,a-cure-i1,2016-17,Springfield - Washington,02810185, 0.0, 7.1, 19.6, 58.3, 3.5, 0.2, 11.3, 45.4, 54.6,88.7,9.899999999999999 +1.4194961664841186,1.42,a-cure-i1,2016-17,Springfield - White Street,02810190, 0.0, 4.9, 16.3, 68.8, 1.3, 0.0, 8.7, 48.8, 51.2,91.3,8.100000000000001 +3.777319587628866,3.78,a-cure-i1,2016-17,Springfield - William N. DeBerry,02810045, 0.3, 0.0, 16.1, 79.5, 1.0, 0.0, 3.0, 51.0, 49.0,97.0,22.9 +17.03940362087327,5,a-cure-i1,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 1.8, 24.5, 64.4, 3.1, 0.0, 6.1, 49.1, 50.9,93.9,100.0 +1,1,a-cure-i1,2016-17,Stoneham - Colonial Park,02840005, 0.0, 3.8, 1.5, 5.3, 4.1, 0.0, 85.3, 42.9, 57.1,14.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Stoneham - Robin Hood,02840025, 0.3, 7.1, 0.8, 8.2, 1.6, 0.0, 82.1, 49.2, 50.8,17.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Stoneham - South,02840030, 1.2, 3.6, 2.7, 7.8, 4.8, 0.0, 79.9, 51.5, 48.5,20.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Stoneham - Stoneham Central Middle School,02840405, 0.0, 4.5, 1.6, 7.1, 3.7, 0.1, 83.0, 49.4, 50.6,17.0,3.6 +1,1,a-cure-i1,2016-17,Stoneham - Stoneham High,02840505, 0.1, 3.5, 2.8, 5.2, 2.1, 0.0, 86.3, 50.7, 49.3,13.700000000000003,1.9 +1,1,a-cure-i1,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 1.1, 27.8, 8.9, 5.6, 0.0, 56.7, 37.8, 62.2,43.3,0.0 +1,1,a-cure-i1,2016-17,Stoughton - Helen Hansen Elementary,02850010, 0.0, 2.4, 18.1, 10.9, 4.0, 1.2, 63.3, 51.2, 48.8,36.7,0.0 +1,1,a-cure-i1,2016-17,Stoughton - Joseph H Gibbons,02850025, 0.0, 6.1, 12.1, 7.2, 7.7, 0.0, 66.9, 48.8, 51.2,33.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 9.8, 26.5, 10.6, 4.0, 0.5, 48.7, 43.1, 56.9,51.3,0.0 +1,1,a-cure-i1,2016-17,Stoughton - O'Donnell Middle School,02850405, 0.1, 6.6, 22.8, 8.9, 4.1, 0.1, 57.2, 48.8, 51.2,42.8,0.0 +1,1,a-cure-i1,2016-17,Stoughton - South Elementary,02850015, 0.4, 10.6, 19.6, 6.3, 5.9, 2.0, 55.3, 50.6, 49.4,44.7,0.0 +1,1,a-cure-i1,2016-17,Stoughton - Stoughton High,02850505, 0.0, 5.5, 22.2, 5.9, 1.8, 0.1, 64.5, 48.2, 51.8,35.5,2.2 +1,1,a-cure-i1,2016-17,Stoughton - West Elementary,02850020, 0.6, 4.1, 21.8, 16.8, 7.2, 0.3, 49.3, 49.6, 50.4,50.7,4.1 +1,1,a-cure-i1,2016-17,Sturbridge - Burgess Elementary,02870005, 0.3, 1.4, 0.5, 4.6, 3.9, 0.0, 89.2, 43.9, 56.1,10.799999999999997,0.0 +7.243243243243245,5,a-cure-i1,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.6, 2.6, 1.7, 4.4, 5.3, 0.1, 85.2, 59.1, 40.9,14.799999999999997,6.7 +7.144654088050313,5,a-cure-i1,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 6.6, 2.3, 3.1, 3.9, 0.1, 84.1, 48.5, 51.5,15.900000000000006,7.1000000000000005 +1,1,a-cure-i1,2016-17,Sudbury - General John Nixon Elementary,02880025, 0.0, 9.0, 5.3, 2.2, 8.1, 0.3, 75.1, 50.4, 49.6,24.900000000000006,4.8 +1,1,a-cure-i1,2016-17,Sudbury - Israel Loring School,02880015, 0.8, 11.9, 2.1, 3.9, 5.5, 1.0, 74.7, 46.8, 53.2,25.299999999999997,3.9 +1,1,a-cure-i1,2016-17,Sudbury - Josiah Haynes,02880010, 0.0, 8.8, 3.1, 1.6, 6.7, 0.0, 79.8, 44.4, 55.6,20.200000000000003,1.3 +1,1,a-cure-i1,2016-17,Sudbury - Peter Noyes,02880030, 0.0, 10.1, 2.9, 4.0, 7.9, 0.0, 75.1, 48.1, 51.9,24.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Sunderland - Sunderland Elementary,02890005, 0.0, 8.2, 5.8, 10.1, 10.9, 0.0, 65.0, 40.9, 59.1,35.0,0.0 +1,1,a-cure-i1,2016-17,Sutton - Sutton Early Learning,02900003, 0.0, 1.3, 0.9, 1.3, 4.4, 0.0, 92.1, 50.6, 49.4,7.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Sutton - Sutton Elementary,02900005, 0.0, 2.1, 0.9, 2.1, 5.4, 0.3, 89.1, 51.4, 48.6,10.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Sutton - Sutton High School,02900510, 0.2, 0.9, 0.2, 1.6, 4.5, 0.0, 92.5, 50.9, 49.1,7.5,0.0 +1,1,a-cure-i1,2016-17,Sutton - Sutton Middle School,02900305, 0.0, 1.9, 1.1, 1.6, 4.3, 0.0, 91.2, 46.9, 53.1,8.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Swampscott - Clarke,02910005, 1.0, 3.4, 1.5, 9.2, 1.5, 0.0, 83.5, 50.0, 50.0,16.5,0.0 +1,1,a-cure-i1,2016-17,Swampscott - Hadley,02910010, 0.0, 3.4, 3.4, 9.4, 3.7, 0.0, 80.1, 46.5, 53.5,19.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Swampscott - Stanley,02910020, 0.4, 1.4, 0.7, 7.9, 3.2, 0.0, 86.3, 49.3, 50.7,13.700000000000003,0.0 +7.264864864864865,5,a-cure-i1,2016-17,Swampscott - Swampscott High,02910505, 0.0, 2.1, 4.6, 9.7, 1.6, 0.4, 81.5, 50.8, 49.2,18.5,8.4 +1,1,a-cure-i1,2016-17,Swampscott - Swampscott Middle,02910305, 0.3, 2.7, 3.9, 11.4, 1.9, 0.0, 79.8, 49.2, 50.8,20.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Swansea - Elizabeth S Brown,02920006, 0.0, 1.3, 0.3, 0.7, 0.0, 0.0, 97.7, 48.8, 51.2,2.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Swansea - Gardner,02920015, 0.4, 0.4, 0.4, 0.8, 0.4, 0.0, 97.5, 45.7, 54.3,2.5,0.0 +1,1,a-cure-i1,2016-17,Swansea - Joseph Case High,02920505, 0.2, 1.3, 1.7, 1.7, 1.1, 0.0, 93.9, 47.3, 52.7,6.099999999999994,2.2 +1,1,a-cure-i1,2016-17,Swansea - Joseph Case Jr High,02920305, 0.0, 0.6, 0.6, 1.4, 1.6, 0.0, 95.8, 47.7, 52.3,4.200000000000003,3.0 +1,1,a-cure-i1,2016-17,Swansea - Joseph G Luther,02920020, 0.5, 0.5, 0.9, 3.6, 1.8, 0.0, 92.7, 47.7, 52.3,7.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 0.4, 1.5, 0.0, 1.5, 5.3, 0.0, 91.3, 46.0, 54.0,8.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.2, 0.7, 4.5, 2.7, 0.0, 90.9, 52.9, 47.1,9.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0.1, 1.4, 0.5, 4.1, 2.6, 0.0, 91.2, 56.4, 43.6,8.799999999999997,3.0 +1,1,a-cure-i1,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.6, 0.4, 0.2, 5.0, 2.2, 0.0, 91.5, 38.6, 61.4,8.5,0.0 +1,1,a-cure-i1,2016-17,Taunton - Benjamin Friedman Middle,02930315, 0.5, 1.0, 8.5, 10.8, 4.4, 0.2, 74.6, 49.6, 50.4,25.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Taunton - East Taunton Elementary,02930010, 0.5, 0.5, 11.7, 8.2, 3.6, 0.0, 75.5, 50.4, 49.6,24.5,0.0 +1,1,a-cure-i1,2016-17,Taunton - Edmund Hatch Bennett,02930007, 0.3, 0.9, 8.7, 9.0, 2.4, 0.0, 78.7, 46.8, 53.2,21.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 2.4, 11.9, 11.9, 3.3, 0.3, 70.2, 42.9, 57.1,29.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Taunton - Elizabeth Pole,02930027, 0.0, 1.6, 17.7, 14.9, 8.0, 0.3, 57.4, 49.8, 50.2,42.6,0.0 +3.729847494553377,3.73,a-cure-i1,2016-17,Taunton - H H Galligan,02930057, 0.4, 0.8, 22.0, 17.1, 4.5, 1.2, 54.1, 49.2, 50.8,45.9,10.7 +1,1,a-cure-i1,2016-17,Taunton - Hopewell,02930035, 0.3, 0.3, 13.4, 9.6, 7.9, 0.0, 68.5, 52.1, 47.9,31.5,0.0 +1,1,a-cure-i1,2016-17,Taunton - John F Parker Middle,02930305, 0.4, 2.0, 19.2, 15.2, 7.5, 0.2, 55.4, 51.7, 48.3,44.6,2.8 +7.111111111111111,5,a-cure-i1,2016-17,Taunton - Joseph C Chamberlain,02930008, 0.2, 1.5, 7.2, 4.3, 4.7, 0.0, 82.0, 47.3, 52.7,18.0,8.0 +1,1,a-cure-i1,2016-17,Taunton - Joseph H Martin,02930042, 0.3, 1.7, 14.0, 10.5, 3.9, 0.0, 69.7, 47.5, 52.5,30.299999999999997,3.5 +2.3324808184143224,2.33,a-cure-i1,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.6, 18.0, 15.1, 5.1, 0.2, 60.9, 46.8, 53.2,39.1,5.7 +1,1,a-cure-i1,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 15.7, 14.6, 5.6, 0.0, 64.0, 37.1, 62.9,36.0,0.0 +2.4922118380062313,2.49,a-cure-i1,2016-17,Taunton - Taunton High,02930505, 0.1, 1.8, 14.5, 11.8, 3.6, 0.3, 67.9, 49.8, 50.1,32.099999999999994,5.000000000000001 +1,1,a-cure-i1,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.4, 3.3, 6.3, 12.2, 7.1, 0.2, 70.5, 56.6, 43.4,29.5,0.0 +1,1,a-cure-i1,2016-17,Tewksbury - Heath-Brook,02950010, 0.0, 2.4, 1.8, 3.0, 2.1, 0.0, 90.8, 50.3, 49.7,9.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Tewksbury - John F. Ryan,02950023, 0.4, 3.0, 2.4, 1.7, 0.7, 0.2, 91.6, 46.1, 53.9,8.400000000000006,2.6 +1,1,a-cure-i1,2016-17,Tewksbury - John W. Wynn Middle,02950305, 0.0, 3.2, 2.8, 2.3, 1.3, 0.0, 90.4, 54.8, 45.2,9.599999999999994,2.2 +1,1,a-cure-i1,2016-17,Tewksbury - L F Dewing,02950001, 0.0, 3.4, 4.1, 5.3, 0.4, 0.2, 86.7, 47.2, 52.8,13.299999999999997,3.4 +1,1,a-cure-i1,2016-17,Tewksbury - Louise Davy Trahan,02950025, 0.0, 3.5, 0.8, 2.0, 1.2, 0.0, 92.5, 54.1, 45.9,7.5,0.0 +1,1,a-cure-i1,2016-17,Tewksbury - North Street,02950020, 0.0, 3.1, 5.8, 1.9, 1.6, 0.0, 87.5, 42.4, 57.6,12.5,0.0 +1,1,a-cure-i1,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 2.6, 1.5, 2.9, 0.3, 0.2, 92.6, 47.2, 52.8,7.400000000000006,1.6 +4.696517412935323,4.7,a-cure-i1,2016-17,Tisbury - Tisbury Elementary,02960005, 2.2, 0.9, 3.1, 26.2, 7.8, 0.0, 59.8, 46.7, 53.3,40.2,11.8 +1,1,a-cure-i1,2016-17,Topsfield - Proctor Elementary,02980005, 0.0, 1.6, 0.8, 2.9, 2.5, 0.0, 92.2, 52.5, 47.5,7.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Topsfield - Steward Elementary,02980010, 0.8, 1.6, 0.3, 1.8, 2.4, 0.0, 93.2, 49.2, 50.8,6.799999999999997,2.7 +1,1,a-cure-i1,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.4, 0.7, 0.4, 4.6, 4.5, 0.2, 89.2, 44.9, 55.0,10.799999999999997,1.3 +1,1,a-cure-i1,2016-17,Triton - Newbury Elementary,07730020, 0.0, 1.6, 0.7, 1.6, 0.9, 0.5, 94.8, 44.8, 55.2,5.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Triton - Pine Grove,07730025, 0.2, 0.6, 0.4, 1.1, 2.8, 0.0, 94.9, 49.0, 50.7,5.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Triton - Salisbury Elementary,07730015, 0.0, 3.6, 2.6, 4.3, 3.2, 0.6, 85.6, 49.8, 50.2,14.400000000000006,0.0 +16.000000000000007,5,a-cure-i1,2016-17,Triton - Triton Regional High School,07730505, 0.0, 1.7, 0.8, 2.2, 0.6, 0.0, 94.7, 52.1, 47.9,5.299999999999997,5.3 +1,1,a-cure-i1,2016-17,Triton - Triton Regional Middle School,07730405, 0.5, 2.0, 1.0, 2.8, 1.8, 0.3, 91.6, 49.2, 50.8,8.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Truro - Truro Central,03000005, 0.0, 0.0, 6.0, 12.1, 11.2, 0.0, 70.7, 55.2, 44.8,29.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 0.1, 6.7, 4.1, 5.1, 2.9, 0.0, 81.1, 46.4, 53.6,18.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Tyngsborough - Tyngsborough High School,03010505, 0.0, 6.1, 2.2, 3.6, 3.0, 0.0, 85.2, 50.7, 49.3,14.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0.2, 5.0, 1.7, 3.6, 3.3, 0.0, 86.2, 51.3, 48.7,13.799999999999997,0.9 +3.1492063492063496,3.15,a-cure-i1,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.2, 5.7, 46.8, 39.4, 1.9, 0.4, 5.5, 44.3, 55.7,94.5,18.6 +5.031344792719919,5,a-cure-i1,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.4, 1.6, 56.7, 38.0, 2.2, 0.0, 1.1, 50.8, 49.2,98.9,31.099999999999998 +1,1,a-cure-i1,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 2.3, 0.0, 2.3, 9.1, 0.0, 86.4, 43.2, 56.8,13.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 4.0, 0.9, 2.9, 6.0, 5.2, 0.0, 81.1, 45.0, 55.0,18.900000000000006,3.1 +1,1,a-cure-i1,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.6, 1.7, 4.4, 1.4, 4.4, 0.0, 87.6, 38.2, 61.8,12.400000000000006,1.7 +1,1,a-cure-i1,2016-17,Uxbridge - Gateway to College,03040515, 2.2, 2.2, 0.0, 17.4, 2.2, 2.2, 73.9, 58.7, 41.3,26.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Uxbridge - McCloskey Middle School,03040015, 0.0, 1.9, 1.2, 4.8, 2.1, 0.0, 90.0, 47.3, 52.7,10.0,0.0 +1,1,a-cure-i1,2016-17,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.8, 1.0, 2.7, 2.3, 0.0, 93.1, 44.7, 55.3,6.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Uxbridge - Uxbridge High,03040505, 0.6, 1.5, 1.5, 2.7, 1.7, 0.2, 91.9, 46.5, 53.5,8.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Uxbridge - Whitin Elementary School,03040020, 1.0, 1.7, 0.7, 3.6, 1.7, 0.0, 91.2, 47.0, 52.8,8.799999999999997,0.0 +2.8638799571275455,2.86,a-cure-i1,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 1.3, 19.5, 70.9, 1.6, 0.0, 6.7, 47.9, 52.1,93.3,16.7 +1,1,a-cure-i1,2016-17,Wachusett - Central Tree Middle,07750310, 0.0, 2.2, 1.2, 3.2, 4.0, 0.0, 89.3, 44.8, 55.2,10.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Chocksett Middle School,07750315, 0.0, 1.6, 1.3, 3.7, 1.1, 0.0, 92.3, 48.0, 52.0,7.700000000000003,3.6 +1,1,a-cure-i1,2016-17,Wachusett - Davis Hill Elementary,07750018, 0.0, 1.8, 2.9, 5.3, 2.4, 0.0, 87.7, 48.5, 51.5,12.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Dawson,07750020, 0.0, 4.3, 3.0, 4.5, 3.0, 0.0, 85.2, 47.5, 52.5,14.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Early Childhood Center,07750001, 0.7, 4.7, 1.3, 6.7, 2.0, 0.7, 84.0, 44.7, 55.3,16.0,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Glenwood Elementary School,07750060, 0.0, 3.1, 1.4, 5.6, 3.6, 0.0, 86.4, 51.7, 48.3,13.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Houghton Elementary,07750027, 0.0, 2.6, 1.3, 5.9, 2.6, 0.0, 87.8, 48.0, 52.0,12.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Leroy E.Mayo,07750032, 0.0, 5.7, 2.0, 4.9, 1.2, 0.0, 86.2, 46.7, 53.3,13.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Mountview Middle,07750305, 0.2, 4.2, 2.3, 4.7, 2.6, 0.0, 85.9, 49.4, 50.6,14.099999999999994,1.9 +1,1,a-cure-i1,2016-17,Wachusett - Naquag Elementary School,07750005, 0.9, 0.6, 1.9, 4.3, 2.2, 0.3, 89.8, 52.3, 47.7,10.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Paxton Center,07750040, 0.0, 2.2, 2.0, 8.7, 0.8, 0.0, 86.3, 46.3, 53.7,13.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Wachusett - Thomas Prince,07750045, 0.0, 1.3, 0.5, 3.8, 1.8, 0.0, 92.7, 52.2, 47.8,7.299999999999997,4.3 +1,1,a-cure-i1,2016-17,Wachusett - Wachusett Regional High,07750505, 0.0, 3.2, 1.9, 4.1, 1.7, 0.2, 88.9, 52.7, 47.3,11.099999999999994,0.8 +1,1,a-cure-i1,2016-17,Wakefield - Dolbeare,03050005, 0.2, 2.5, 0.7, 7.0, 3.6, 0.0, 86.0, 50.7, 49.3,14.0,0.0 +1,1,a-cure-i1,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 3.9, 1.6, 3.1, 2.3, 1.6, 87.6, 48.8, 51.2,12.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Wakefield - Galvin Middle School,03050310, 0.1, 2.8, 3.2, 5.6, 1.9, 0.1, 86.3, 48.6, 51.4,13.700000000000003,3.3 +1,1,a-cure-i1,2016-17,Wakefield - Greenwood,03050020, 0.0, 5.4, 1.8, 5.4, 4.9, 0.0, 82.5, 51.1, 48.9,17.5,0.0 +1,1,a-cure-i1,2016-17,Wakefield - Wakefield Memorial High,03050505, 0.2, 3.1, 3.1, 2.9, 2.0, 0.3, 88.6, 52.1, 47.9,11.400000000000006,4.0 +1,1,a-cure-i1,2016-17,Wakefield - Walton,03050040, 0.0, 2.5, 2.5, 3.5, 3.5, 0.0, 88.1, 46.8, 53.2,11.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Wakefield - Woodville School,03050015, 0.2, 4.1, 1.8, 10.6, 4.3, 0.0, 79.0, 46.8, 52.9,21.0,4.2 +1,1,a-cure-i1,2016-17,Wales - Wales Elementary,03060005, 1.2, 0.6, 0.6, 3.7, 3.7, 0.0, 90.2, 48.8, 51.2,9.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Walpole - Bird Middle,03070305, 0.8, 2.3, 3.3, 5.8, 1.7, 0.0, 86.0, 50.0, 50.0,14.0,0.0 +1,1,a-cure-i1,2016-17,Walpole - Boyden,03070010, 0.8, 5.0, 6.9, 6.3, 1.6, 0.0, 79.4, 51.9, 48.1,20.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 14.6, 6.1, 8.5, 3.7, 0.0, 67.1, 45.1, 54.9,32.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 10.3, 3.1, 3.6, 2.2, 0.0, 80.7, 47.5, 52.5,19.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Walpole - Elm Street School,03070005, 0.2, 8.4, 2.1, 5.1, 2.3, 0.0, 81.8, 44.6, 55.4,18.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Walpole - Fisher,03070015, 0.0, 11.4, 3.5, 3.9, 3.5, 0.0, 77.6, 49.1, 50.9,22.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Walpole - Old Post Road,03070018, 0.7, 2.9, 2.5, 7.0, 1.8, 0.0, 85.1, 49.1, 50.9,14.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Walpole - Walpole High,03070505, 0.2, 3.5, 4.2, 4.5, 0.9, 0.0, 86.7, 51.1, 48.9,13.299999999999997,1.4 +1,1,a-cure-i1,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 8.6, 10.9, 16.0, 4.4, 0.0, 60.2, 47.2, 52.8,39.8,0.0 +1,1,a-cure-i1,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 3.4, 4.9, 73.5, 1.3, 0.0, 16.9, 49.7, 50.3,83.1,3.3 +1,1,a-cure-i1,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 5.8, 7.6, 27.5, 3.8, 0.0, 55.4, 53.1, 46.9,44.6,0.0 +2.546236559139785,2.55,a-cure-i1,2016-17,Waltham - John F Kennedy Middle,03080404, 0.0, 5.7, 10.9, 28.3, 1.6, 0.0, 53.5, 47.7, 52.3,46.5,7.4 +1,1,a-cure-i1,2016-17,Waltham - John W. McDevitt Middle School,03080415, 0.0, 3.1, 8.4, 42.0, 3.4, 0.2, 43.0, 47.6, 52.4,57.0,3.6 +1,1,a-cure-i1,2016-17,Waltham - Northeast Elementary School,03080040, 0.6, 8.4, 10.3, 24.5, 3.4, 0.0, 52.8, 48.0, 52.0,47.2,2.5 +1,1,a-cure-i1,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 5.0, 11.8, 38.7, 3.6, 0.0, 40.8, 45.6, 54.4,59.2,0.0 +19.062857142857144,5,a-cure-i1,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 2.5, 2.5, 62.5, 2.5, 0.0, 30.0, 52.5, 47.5,70.0,83.4 +1,1,a-cure-i1,2016-17,Waltham - Waltham Sr High,03080505, 0.2, 5.0, 11.6, 38.3, 2.3, 0.3, 42.2, 45.9, 54.1,57.8,2.4000000000000004 +1,1,a-cure-i1,2016-17,Waltham - William F. Stanley Elementary School,03080005, 0.0, 8.1, 7.0, 46.2, 1.8, 0.0, 37.0, 45.1, 54.9,63.0,4.6 +1,1,a-cure-i1,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.5, 1.2, 7.7, 5.8, 0.0, 84.8, 46.6, 53.4,15.200000000000003,0.0 +5.925925925925925,5,a-cure-i1,2016-17,Ware - Ware Junior/Senior High School,03090505, 0.4, 1.1, 2.5, 8.8, 3.2, 0.2, 83.8, 47.6, 52.4,16.200000000000003,6.0 +1,1,a-cure-i1,2016-17,Ware - Ware Middle School,03090305, 0.0, 0.6, 2.1, 7.1, 5.3, 0.3, 84.6, 51.9, 48.1,15.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Wareham - John William Decas,03100003, 0.8, 1.0, 6.1, 6.6, 12.3, 0.0, 73.2, 49.3, 50.7,26.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Wareham - Minot Forest,03100017, 1.2, 1.2, 7.1, 5.7, 9.9, 0.0, 75.0, 48.3, 51.7,25.0,2.9 +1,1,a-cure-i1,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 1.6, 0.0, 9.8, 8.2, 8.2, 0.0, 72.1, 39.3, 60.7,27.900000000000006,0.0 +3.850622406639005,3.85,a-cure-i1,2016-17,Wareham - Wareham Middle,03100305, 1.3, 0.7, 7.2, 6.6, 8.2, 0.1, 75.9, 47.3, 52.7,24.099999999999994,5.8 +3.8518518518518516,3.85,a-cure-i1,2016-17,Wareham - Wareham Senior High,03100505, 0.8, 1.5, 9.7, 9.8, 10.4, 0.2, 67.6, 49.0, 51.0,32.400000000000006,7.800000000000001 +1,1,a-cure-i1,2016-17,Watertown - Cunniff,03140015, 0.0, 5.7, 4.4, 15.2, 3.0, 0.0, 71.6, 46.3, 53.7,28.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Watertown - Hosmer,03140020, 0.3, 7.7, 3.0, 12.2, 6.3, 0.0, 70.5, 49.1, 50.9,29.5,2.4 +1,1,a-cure-i1,2016-17,Watertown - James Russell Lowell,03140025, 0.2, 8.8, 2.1, 11.3, 6.5, 0.0, 71.1, 47.9, 52.1,28.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Watertown - Watertown High,03140505, 0.8, 6.5, 3.2, 13.0, 2.9, 0.2, 73.6, 49.8, 50.2,26.400000000000006,0.0 +1,1,a-cure-i1,2016-17,Watertown - Watertown Middle,03140305, 0.7, 9.5, 4.9, 13.7, 4.6, 0.2, 66.4, 49.9, 50.1,33.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Wayland - Claypit Hill School,03150005, 0.0, 11.9, 5.9, 4.3, 5.8, 0.6, 71.6, 51.6, 48.4,28.400000000000006,3.2 +4.215568862275449,4.22,a-cure-i1,2016-17,Wayland - Happy Hollow School,03150015, 0.0, 15.8, 7.0, 4.1, 6.2, 0.3, 66.6, 45.9, 54.1,33.400000000000006,8.8 +3.943661971830985,3.94,a-cure-i1,2016-17,Wayland - Loker School,03150020, 0.0, 15.6, 3.9, 3.9, 4.7, 0.4, 71.6, 46.7, 53.3,28.400000000000006,7.0 +2.756756756756757,2.76,a-cure-i1,2016-17,Wayland - Wayland High School,03150505, 0.0, 15.0, 4.8, 5.4, 4.2, 0.1, 70.4, 46.9, 53.1,29.599999999999994,5.1 +6.161194029850746,5,a-cure-i1,2016-17,Wayland - Wayland Middle School,03150305, 0.0, 17.5, 5.2, 3.9, 6.8, 0.2, 66.5, 51.7, 48.3,33.5,12.899999999999999 +1,1,a-cure-i1,2016-17,Webster - Bartlett High School,03160505, 0.0, 2.9, 4.3, 14.7, 5.0, 0.0, 73.1, 45.8, 54.2,26.900000000000006,2.9 +1,1,a-cure-i1,2016-17,Webster - Park Avenue Elementary,03160015, 0.2, 1.3, 3.9, 26.2, 5.9, 0.1, 62.4, 47.1, 52.9,37.6,0.0 +1,1,a-cure-i1,2016-17,Webster - Webster Middle School,03160315, 0.2, 1.9, 5.7, 22.3, 6.4, 0.5, 63.1, 54.1, 45.9,36.9,0.0 +9.363636363636365,5,a-cure-i1,2016-17,Wellesley - Ernest F Upham,03170050, 0.0, 10.4, 2.7, 1.8, 2.7, 0.0, 82.4, 46.4, 53.6,17.599999999999994,10.299999999999999 +8.306382978723404,5,a-cure-i1,2016-17,Wellesley - Hunnewell,03170025, 0.0, 6.0, 4.8, 2.8, 10.0, 0.0, 76.5, 52.2, 47.8,23.5,12.2 +1,1,a-cure-i1,2016-17,Wellesley - John D Hardy,03170020, 0.0, 20.8, 3.9, 6.2, 6.2, 0.0, 63.0, 52.6, 47.4,37.0,1.5 +1,1,a-cure-i1,2016-17,Wellesley - Joseph E Fiske,03170015, 0.0, 22.7, 4.1, 8.2, 6.6, 0.0, 58.5, 50.1, 49.9,41.5,0.0 +1,1,a-cure-i1,2016-17,Wellesley - Katharine Lee Bates,03170005, 0.0, 6.3, 3.7, 3.2, 6.1, 0.0, 80.7, 54.9, 45.1,19.299999999999997,4.9 +1,1,a-cure-i1,2016-17,Wellesley - Schofield,03170045, 0.0, 14.7, 5.7, 7.1, 6.5, 0.0, 66.0, 52.4, 47.6,34.0,0.0 +1,1,a-cure-i1,2016-17,Wellesley - Sprague Elementary School,03170048, 0.0, 13.3, 3.8, 5.1, 11.2, 0.0, 66.6, 46.4, 53.6,33.400000000000006,4.7 +4.947791164658633,4.95,a-cure-i1,2016-17,Wellesley - Wellesley Middle,03170305, 0.0, 10.9, 3.3, 4.5, 6.1, 0.0, 75.1, 48.5, 51.5,24.900000000000006,7.699999999999999 +4.950943396226415,4.95,a-cure-i1,2016-17,Wellesley - Wellesley Sr High,03170505, 0.0, 11.6, 6.1, 4.7, 4.0, 0.1, 73.5, 51.8, 48.2,26.5,8.2 +8.213333333333333,5,a-cure-i1,2016-17,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 1.8, 8.0, 5.3, 0.0, 85.0, 52.2, 47.8,15.0,7.7 +1,1,a-cure-i1,2016-17,West Boylston - Major Edwards Elementary,03220005, 0.0, 1.2, 1.5, 11.4, 4.2, 0.0, 81.6, 49.0, 51.0,18.400000000000006,0.0 +8.639999999999999,5,a-cure-i1,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 0.2, 0.8, 1.6, 9.2, 3.3, 0.0, 85.0, 52.4, 47.6,15.0,8.1 +1,1,a-cure-i1,2016-17,West Bridgewater - Howard School,03230305, 0.4, 0.4, 3.0, 5.2, 2.6, 0.0, 88.5, 48.9, 51.1,11.5,0.0 +1,1,a-cure-i1,2016-17,West Bridgewater - Rose L Macdonald,03230003, 0.0, 1.6, 3.9, 1.9, 3.9, 0.4, 88.3, 52.9, 47.1,11.700000000000003,0.0 +1,1,a-cure-i1,2016-17,West Bridgewater - Spring Street School,03230005, 0.0, 2.1, 1.4, 7.1, 4.3, 0.0, 85.1, 46.8, 53.2,14.900000000000006,0.0 +1,1,a-cure-i1,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.2, 1.3, 3.1, 2.4, 2.1, 0.2, 90.8, 55.1, 44.9,9.200000000000003,0.0 +1,1,a-cure-i1,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 7.1, 14.3, 0.0, 0.0, 78.6, 21.4, 78.6,21.400000000000006,0.0 +1,1,a-cure-i1,2016-17,West Springfield - Cowing Early Childhood,03320001, 0.0, 11.7, 3.3, 18.3, 1.7, 0.0, 65.0, 50.0, 50.0,35.0,0.0 +1,1,a-cure-i1,2016-17,West Springfield - John Ashley,03320005, 0.0, 2.2, 2.7, 17.7, 2.7, 0.0, 74.8, 46.5, 53.5,25.200000000000003,0.0 +1,1,a-cure-i1,2016-17,West Springfield - John R Fausey,03320010, 0.0, 4.8, 3.5, 13.2, 3.9, 0.2, 74.5, 45.0, 55.0,25.5,4.4 +1,1,a-cure-i1,2016-17,West Springfield - Memorial,03320025, 0.0, 8.9, 5.1, 30.5, 4.7, 0.0, 50.8, 48.3, 51.7,49.2,0.0 +1,1,a-cure-i1,2016-17,West Springfield - Mittineague,03320030, 0.0, 1.8, 4.3, 16.6, 4.3, 0.0, 73.0, 53.4, 46.6,27.0,0.0 +1,1,a-cure-i1,2016-17,West Springfield - Philip G Coburn,03320007, 0.0, 15.3, 4.9, 16.7, 2.3, 0.0, 60.8, 50.3, 49.7,39.2,0.0 +1,1,a-cure-i1,2016-17,West Springfield - Tatham,03320040, 0.0, 2.6, 1.3, 8.4, 5.3, 0.0, 82.4, 51.5, 48.5,17.599999999999994,0.0 +4.298507462686567,4.3,a-cure-i1,2016-17,West Springfield - West Springfield High,03320505, 0.1, 6.8, 3.6, 14.4, 1.9, 0.1, 73.2, 47.7, 52.3,26.799999999999997,7.199999999999999 +1,1,a-cure-i1,2016-17,West Springfield - West Springfield Middle,03320305, 0.2, 6.8, 3.2, 19.0, 1.4, 0.0, 69.4, 47.6, 52.4,30.599999999999994,4.5 +1,1,a-cure-i1,2016-17,Westborough - Annie E Fales,03210010, 0.6, 35.2, 1.2, 2.3, 2.9, 0.0, 57.8, 49.3, 50.7,42.2,0.0 +1,1,a-cure-i1,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 0.4, 40.9, 2.1, 11.7, 3.1, 0.0, 41.8, 48.8, 51.2,58.2,0.0 +1,1,a-cure-i1,2016-17,Westborough - J Harding Armstrong,03210005, 0.0, 41.8, 3.0, 4.0, 1.8, 0.0, 49.5, 49.5, 50.5,50.5,0.0 +1,1,a-cure-i1,2016-17,Westborough - Mill Pond School,03210045, 0.0, 33.5, 0.7, 5.6, 3.4, 0.1, 56.7, 49.5, 50.5,43.3,0.0 +1,1,a-cure-i1,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0.2, 26.7, 1.3, 6.9, 4.4, 0.2, 60.4, 46.7, 53.3,39.6,2.6 +3.3177257525083608,3.32,a-cure-i1,2016-17,Westborough - Westborough High,03210505, 0.0, 21.2, 2.0, 4.5, 2.3, 0.0, 70.1, 50.7, 49.3,29.900000000000006,6.2 +1,1,a-cure-i1,2016-17,Westfield - Abner Gibbs,03250020, 0.0, 6.0, 3.7, 19.3, 2.8, 0.0, 68.3, 51.8, 48.2,31.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 6.9, 0.0, 22.3, 2.3, 0.0, 68.6, 43.4, 56.6,31.400000000000006,0.0 +3.3272171253822624,3.33,a-cure-i1,2016-17,Westfield - Franklin Ave,03250015, 0.4, 2.0, 2.8, 25.9, 1.2, 0.4, 67.3, 51.0, 49.0,32.7,6.8 +1,1,a-cure-i1,2016-17,Westfield - Highland,03250025, 0.0, 8.6, 1.5, 14.6, 1.0, 0.0, 74.2, 46.5, 53.5,25.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Westfield - Munger Hill,03250033, 0.0, 2.3, 3.0, 8.1, 2.8, 0.3, 83.5, 47.5, 52.5,16.5,0.0 +1,1,a-cure-i1,2016-17,Westfield - North Middle School,03250305, 0.0, 1.6, 1.1, 11.1, 2.3, 0.3, 83.6, 49.7, 50.3,16.400000000000006,0.0 +4.270270270270271,4.27,a-cure-i1,2016-17,Westfield - Paper Mill,03250036, 0.2, 0.9, 4.2, 21.2, 3.0, 0.0, 70.4, 48.7, 51.3,29.599999999999994,7.9 +1,1,a-cure-i1,2016-17,Westfield - Russell Elementary School,03250055, 0.0, 0.5, 1.6, 7.6, 1.1, 0.0, 89.1, 47.3, 52.7,10.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Westfield - South Middle School,03250310, 0.0, 3.1, 2.5, 15.4, 0.7, 0.0, 78.3, 48.3, 51.7,21.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Westfield - Southampton Road,03250040, 0.2, 0.9, 0.9, 11.7, 3.5, 0.0, 82.8, 51.2, 48.8,17.200000000000003,3.7 +1,1,a-cure-i1,2016-17,Westfield - Westfield High,03250505, 0.2, 3.2, 2.9, 11.1, 1.9, 0.2, 80.6, 54.7, 45.3,19.400000000000006,1.7 +1,1,a-cure-i1,2016-17,Westfield - Westfield Technical Academy,03250605, 0.2, 1.9, 2.2, 6.3, 1.3, 0.2, 88.0, 36.1, 63.9,12.0,1.5 +1,1,a-cure-i1,2016-17,Westford - Abbot Elementary,03260004, 2.0, 15.4, 0.3, 0.3, 2.2, 0.0, 79.8, 52.2, 47.8,20.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Westford - Blanchard Middle,03260310, 0.7, 28.7, 1.0, 0.3, 1.1, 0.2, 68.1, 49.2, 50.8,31.900000000000006,2.3 +1,1,a-cure-i1,2016-17,Westford - Col John Robinson,03260025, 0.0, 26.2, 0.7, 1.5, 3.3, 0.0, 68.3, 51.7, 48.3,31.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Westford - Day Elementary,03260007, 0.0, 35.0, 1.4, 0.6, 3.6, 0.0, 59.4, 51.5, 48.5,40.6,0.0 +1,1,a-cure-i1,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 25.9, 1.2, 2.4, 4.5, 0.0, 66.1, 48.8, 51.2,33.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Westford - Millennium Elementary,03260013, 0.0, 31.1, 0.8, 2.5, 6.7, 0.0, 58.8, 42.9, 57.1,41.2,0.0 +1,1,a-cure-i1,2016-17,Westford - Nabnasset,03260015, 0.0, 19.9, 0.6, 1.7, 4.4, 0.0, 73.4, 49.9, 50.1,26.599999999999994,2.9 +2.7511312217194566,2.75,a-cure-i1,2016-17,Westford - Rita E. Miller Elementary School,03260055, 0.0, 34.0, 0.9, 2.1, 7.2, 0.0, 55.8, 50.1, 49.9,44.2,7.6 +1,1,a-cure-i1,2016-17,Westford - Stony Brook School,03260330, 0.1, 23.9, 0.7, 1.3, 3.0, 0.0, 70.9, 47.8, 52.2,29.099999999999994,0.9 +1,1,a-cure-i1,2016-17,Westford - Westford Academy,03260505, 0.0, 20.5, 0.7, 1.1, 3.6, 0.0, 74.1, 49.0, 51.0,25.900000000000006,2.8 +1,1,a-cure-i1,2016-17,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 3.8, 1.5, 0.0, 94.6, 50.0, 50.0,5.400000000000006,0.0 +4.306068601583113,4.31,a-cure-i1,2016-17,Weston - Country,03300010, 0.0, 13.3, 5.6, 11.9, 7.0, 0.0, 62.1, 51.9, 48.1,37.9,10.2 +2.552147239263804,2.55,a-cure-i1,2016-17,Weston - Field Elementary School,03300012, 0.0, 12.7, 7.8, 5.5, 6.6, 0.0, 67.4, 45.2, 54.8,32.599999999999994,5.2 +8.41337386018237,5,a-cure-i1,2016-17,Weston - Weston High,03300505, 0.6, 17.0, 5.9, 4.8, 4.5, 0.0, 67.1, 49.4, 50.6,32.900000000000006,17.3 +5.155015197568388,5,a-cure-i1,2016-17,Weston - Weston Middle,03300305, 0.6, 15.0, 7.0, 4.7, 5.6, 0.0, 67.1, 49.6, 50.4,32.900000000000006,10.6 +3.0177935943060503,3.02,a-cure-i1,2016-17,Weston - Woodland,03300015, 0.0, 14.9, 6.0, 5.3, 1.7, 0.3, 71.9, 49.3, 50.7,28.099999999999994,5.3 +1,1,a-cure-i1,2016-17,Westport - Alice A Macomber,03310015, 0.3, 0.3, 0.0, 2.3, 4.7, 0.0, 92.4, 46.7, 53.3,7.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Westport - Westport Elementary,03310030, 0.0, 0.4, 0.2, 4.1, 5.1, 0.0, 90.2, 45.2, 54.8,9.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Westport - Westport Junior/Senior High School,03310515, 0.5, 1.7, 0.7, 3.3, 2.8, 0.0, 91.0, 44.3, 55.7,9.0,0.0 +6.066350710900475,5,a-cure-i1,2016-17,Westwood - Deerfield School,03350010, 0.0, 10.3, 0.4, 4.9, 5.4, 0.0, 78.9, 43.9, 56.1,21.099999999999994,8.0 +1,1,a-cure-i1,2016-17,Westwood - Downey,03350012, 0.0, 13.1, 0.4, 3.7, 4.5, 0.0, 78.3, 42.6, 57.4,21.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Westwood - E W Thurston Middle,03350305, 0.0, 9.4, 3.9, 3.9, 2.3, 0.0, 80.5, 53.3, 46.7,19.5,3.6 +1,1,a-cure-i1,2016-17,Westwood - Martha Jones,03350017, 0.0, 11.6, 1.0, 3.1, 3.8, 0.0, 80.5, 48.5, 51.5,19.5,0.0 +1,1,a-cure-i1,2016-17,Westwood - Paul Hanlon,03350015, 0.0, 14.0, 1.8, 3.6, 4.1, 0.0, 76.6, 49.5, 50.5,23.400000000000006,0.0 +6.162962962962963,5,a-cure-i1,2016-17,Westwood - Westwood High,03350505, 0.0, 7.0, 3.0, 1.9, 1.6, 0.0, 86.5, 52.6, 47.4,13.5,5.2 +1,1,a-cure-i1,2016-17,Westwood - Westwood Integrated Preschool,03350050, 0.0, 4.8, 2.4, 4.8, 0.0, 0.0, 88.1, 28.6, 71.4,11.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Westwood - William E Sheehan,03350025, 0.0, 6.1, 0.6, 5.8, 4.7, 0.0, 82.8, 45.6, 54.4,17.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Abigail Adams Middle School,03360310, 0.4, 4.7, 5.8, 9.1, 2.7, 0.2, 77.2, 49.3, 50.7,22.799999999999997,1.6 +1,1,a-cure-i1,2016-17,Weymouth - Academy Avenue,03360005, 0.0, 8.8, 3.8, 9.5, 2.5, 0.0, 75.4, 45.4, 54.6,24.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Frederick C Murphy,03360050, 0.0, 0.8, 7.9, 6.7, 6.7, 0.0, 77.9, 49.2, 50.8,22.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 8.5, 8.5, 7.0, 4.0, 0.0, 71.9, 44.2, 55.8,28.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Lawrence W Pingree,03360065, 0.0, 5.0, 5.9, 4.5, 2.3, 0.0, 82.3, 52.3, 47.7,17.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0.1, 5.1, 7.3, 6.1, 4.1, 0.1, 77.1, 49.2, 50.8,22.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Ralph Talbot,03360085, 0.0, 6.0, 6.7, 8.9, 1.1, 0.4, 77.0, 48.6, 51.4,23.0,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Thomas V Nash,03360060, 0.0, 4.3, 3.5, 6.5, 5.2, 0.0, 80.5, 56.3, 43.7,19.5,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 1.2, 10.1, 5.2, 11.9, 3.2, 0.0, 68.4, 52.8, 47.2,31.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Wessagusset,03360110, 0.0, 4.4, 1.7, 6.1, 4.4, 0.0, 83.3, 46.6, 53.4,16.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Weymouth - Weymouth High School,03360505, 0.2, 4.8, 4.3, 6.8, 2.7, 0.0, 81.3, 48.0, 52.0,18.700000000000003,1.6 +1,1,a-cure-i1,2016-17,Weymouth - William Seach,03360080, 0.6, 11.3, 18.7, 16.1, 4.2, 0.0, 49.0, 49.6, 50.4,51.0,0.0 +1,1,a-cure-i1,2016-17,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 4.7, 1.6, 0.0, 93.8, 47.3, 52.7,6.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.5, 1.2, 2.5, 2.0, 0.0, 93.8, 44.3, 55.7,6.200000000000003,4.3 +1,1,a-cure-i1,2016-17,Whitman-Hanson - Indian Head,07800035, 0.0, 1.2, 0.9, 2.3, 0.9, 0.0, 94.8, 49.6, 50.4,5.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Whitman-Hanson - John H Duval,07800030, 0.6, 0.8, 2.2, 7.1, 4.4, 0.2, 84.6, 51.5, 48.5,15.400000000000006,4.2 +1,1,a-cure-i1,2016-17,Whitman-Hanson - Louise A Conley,07800010, 0.7, 0.7, 2.9, 5.9, 2.3, 0.0, 87.5, 51.0, 49.0,12.5,0.0 +1,1,a-cure-i1,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 0.2, 1.2, 0.9, 4.4, 2.8, 0.0, 90.5, 42.6, 57.4,9.5,0.0 +1,1,a-cure-i1,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.3, 1.3, 1.9, 2.5, 2.1, 0.2, 91.8, 51.5, 48.5,8.200000000000003,1.5 +1,1,a-cure-i1,2016-17,Whitman-Hanson - Whitman Middle,07800310, 0.7, 0.8, 2.8, 3.5, 2.3, 0.3, 89.5, 47.7, 52.3,10.5,0.0 +1,1,a-cure-i1,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.2, 1.1, 1.5, 18.3, 2.8, 0.0, 76.0, 45.4, 54.6,24.0,1.4 +1,1,a-cure-i1,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.6, 3.2, 0.6, 0.0, 0.0, 95.6, 45.6, 54.4,4.400000000000006,0.0 +6.181818181818183,5,a-cure-i1,2016-17,Williamstown - Williamstown Elementary,03410010, 0.0, 2.9, 1.3, 6.9, 6.4, 0.0, 82.4, 47.8, 52.2,17.599999999999994,6.8 +1,1,a-cure-i1,2016-17,Wilmington - Boutwell,03420005, 0.0, 8.9, 0.6, 4.4, 3.2, 0.0, 82.9, 46.8, 53.2,17.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Wilmington - North Intermediate,03420060, 0.0, 3.0, 1.1, 3.0, 3.7, 0.0, 89.3, 47.0, 53.0,10.700000000000003,3.7 +1,1,a-cure-i1,2016-17,Wilmington - Shawsheen Elementary,03420025, 0.0, 4.5, 0.8, 6.7, 3.3, 0.0, 84.7, 47.9, 52.1,15.299999999999997,3.9 +1,1,a-cure-i1,2016-17,Wilmington - West Intermediate,03420080, 0.4, 3.9, 1.2, 5.9, 2.0, 0.0, 86.6, 52.8, 47.2,13.400000000000006,0.0 +11.092024539877302,5,a-cure-i1,2016-17,Wilmington - Wildwood,03420015, 0.6, 4.5, 2.8, 3.9, 4.5, 0.0, 83.7, 43.8, 56.2,16.299999999999997,11.299999999999999 +1,1,a-cure-i1,2016-17,Wilmington - Wilmington High,03420505, 0.1, 5.2, 2.4, 3.0, 1.7, 0.1, 87.5, 50.6, 49.4,12.5,4.2 +1,1,a-cure-i1,2016-17,Wilmington - Wilmington Middle School,03420330, 0.1, 4.3, 1.6, 4.3, 3.2, 0.0, 86.5, 49.6, 50.4,13.5,1.7 +1,1,a-cure-i1,2016-17,Wilmington - Woburn Street,03420020, 0.0, 4.6, 0.5, 3.6, 3.9, 0.0, 87.4, 46.8, 53.2,12.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Winchendon - Memorial,03430040, 0.0, 1.8, 1.1, 4.0, 2.5, 0.0, 90.5, 38.2, 61.8,9.5,0.0 +1,1,a-cure-i1,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 7.1, 0.0, 92.9, 35.7, 64.3,7.099999999999994,0.0 +5.635220125786162,5,a-cure-i1,2016-17,Winchendon - Murdock High School,03430515, 0.3, 3.1, 2.1, 8.0, 2.4, 0.0, 84.1, 46.4, 53.6,15.900000000000006,5.6000000000000005 +1,1,a-cure-i1,2016-17,Winchendon - Murdock Middle School,03430315, 0.7, 3.0, 1.7, 7.1, 4.4, 0.0, 83.1, 49.3, 50.7,16.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Winchendon - Toy Town Elementary,03430050, 0.0, 2.1, 1.8, 6.8, 2.5, 0.4, 86.5, 51.6, 48.4,13.5,0.0 +1,1,a-cure-i1,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 2.4, 1.2, 1.2, 2.4, 0.0, 92.8, 45.8, 54.2,7.200000000000003,0.0 +1,1,a-cure-i1,2016-17,Winchester - Ambrose Elementary,03440045, 0.0, 4.8, 0.0, 1.6, 3.2, 0.0, 90.5, 49.5, 50.5,9.5,4.9 +1,1,a-cure-i1,2016-17,Winchester - Lincoln Elementary,03440005, 0.0, 7.6, 1.2, 2.2, 7.6, 0.0, 81.5, 53.9, 45.9,18.5,0.0 +1,1,a-cure-i1,2016-17,Winchester - Lynch Elementary,03440020, 0.0, 25.6, 2.2, 4.0, 6.4, 0.0, 61.7, 46.3, 53.7,38.3,0.0 +5.12,5,a-cure-i1,2016-17,Winchester - McCall Middle,03440305, 0.3, 16.7, 0.7, 3.4, 3.8, 0.1, 75.0, 50.6, 49.4,25.0,8.0 +1,1,a-cure-i1,2016-17,Winchester - Muraco Elementary,03440040, 0.7, 23.5, 1.0, 2.2, 8.7, 0.0, 63.9, 51.5, 48.5,36.1,0.0 +1,1,a-cure-i1,2016-17,Winchester - Vinson-Owen Elementary,03440025, 0.0, 19.2, 0.2, 2.8, 8.5, 0.0, 69.2, 50.2, 49.8,30.799999999999997,0.0 +1,1,a-cure-i1,2016-17,Winchester - Winchester High School,03440505, 0.1, 16.4, 1.4, 4.1, 3.9, 0.0, 74.1, 49.7, 50.3,25.900000000000006,1.5 +1,1,a-cure-i1,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.2, 0.9, 1.3, 15.9, 1.5, 0.0, 80.1, 48.5, 51.5,19.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 1.7, 14.2, 2.8, 0.0, 81.4, 46.2, 53.8,18.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Winthrop - Winthrop High School,03460505, 0.5, 1.7, 1.9, 11.8, 2.6, 0.0, 81.4, 50.2, 49.8,18.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.6, 0.4, 11.8, 1.1, 0.0, 86.0, 49.0, 51.0,14.0,0.0 +1,1,a-cure-i1,2016-17,Woburn - Clyde Reeves,03470040, 0.2, 6.1, 8.5, 5.0, 3.7, 0.0, 76.4, 49.7, 50.3,23.599999999999994,0.0 +1,1,a-cure-i1,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 0.4, 4.6, 5.6, 6.8, 2.8, 0.2, 79.5, 49.8, 50.2,20.5,4.2 +1,1,a-cure-i1,2016-17,Woburn - Daniel P Hurld,03470020, 0.0, 4.3, 2.4, 2.4, 1.0, 0.0, 89.9, 51.4, 48.6,10.099999999999994,0.0 +1,1,a-cure-i1,2016-17,Woburn - Goodyear Elementary School,03470005, 0.3, 5.6, 7.8, 6.5, 4.7, 0.0, 75.1, 45.8, 54.2,24.900000000000006,0.0 +1,1,a-cure-i1,2016-17,Woburn - John F Kennedy Middle School,03470405, 1.0, 5.5, 8.3, 7.9, 1.2, 0.0, 76.1, 51.3, 48.7,23.900000000000006,2.4 +1,1,a-cure-i1,2016-17,Woburn - Linscott-Rumford,03470025, 0.0, 21.4, 8.5, 6.7, 4.0, 0.0, 59.4, 54.0, 46.0,40.6,0.0 +1,1,a-cure-i1,2016-17,Woburn - Malcolm White,03470055, 0.6, 5.6, 6.5, 11.8, 4.3, 0.0, 71.1, 53.4, 46.6,28.900000000000006,0.0 +2.0775193798449614,2.08,a-cure-i1,2016-17,Woburn - Mary D Altavesta,03470065, 1.2, 19.9, 9.8, 16.3, 3.7, 0.8, 48.4, 44.7, 55.3,51.6,6.7 +1,1,a-cure-i1,2016-17,Woburn - Shamrock,03470043, 0.6, 5.4, 9.1, 14.5, 4.8, 0.3, 65.3, 44.4, 55.6,34.7,0.0 +1,1,a-cure-i1,2016-17,Woburn - Woburn High,03470505, 0.1, 6.4, 6.1, 11.9, 1.6, 0.2, 73.8, 50.8, 49.1,26.200000000000003,3.4000000000000004 +1,1,a-cure-i1,2016-17,Woburn - Wyman,03470060, 0.0, 9.4, 1.1, 7.2, 3.9, 0.0, 78.5, 53.6, 46.4,21.5,0.0 +1.6987654320987653,1.7,a-cure-i1,2016-17,Worcester - Belmont Street Community,03480020, 0.2, 9.7, 20.4, 46.8, 3.9, 0.0, 19.0, 46.8, 53.2,81.0,8.6 +2.222222222222222,2.22,a-cure-i1,2016-17,Worcester - Burncoat Middle School,03480405, 0.2, 4.4, 15.3, 41.9, 6.6, 0.0, 31.6, 48.5, 51.5,68.4,9.5 +2.454277286135693,2.45,a-cure-i1,2016-17,Worcester - Burncoat Senior High,03480503, 0.2, 5.9, 19.1, 38.2, 4.5, 0.0, 32.2, 48.2, 51.8,67.8,10.4 +1.6671490593342984,1.67,a-cure-i1,2016-17,Worcester - Burncoat Street,03480035, 0.0, 3.5, 15.8, 46.7, 3.1, 0.0, 30.9, 45.9, 54.1,69.1,7.2 +0.9964071856287425,1,a-cure-i1,2016-17,Worcester - Canterbury,03480045, 0.5, 14.4, 15.2, 52.1, 1.3, 0.0, 16.5, 45.7, 54.3,83.5,5.2 +1.8475750577367207,1.85,a-cure-i1,2016-17,Worcester - Chandler Elementary Community,03480050, 0.0, 8.8, 15.2, 60.3, 2.3, 0.0, 13.4, 47.9, 52.1,86.6,10.0 +3.7407407407407405,3.74,a-cure-i1,2016-17,Worcester - Chandler Magnet,03480052, 0.0, 3.4, 4.3, 76.3, 2.4, 0.0, 13.6, 52.6, 47.4,86.4,20.2 +2.1215469613259668,2.12,a-cure-i1,2016-17,Worcester - City View,03480053, 0.0, 4.4, 13.3, 51.1, 3.6, 0.0, 27.6, 49.9, 50.1,72.4,9.6 +3.2516129032258068,3.25,a-cure-i1,2016-17,Worcester - Claremont Academy,03480350, 0.0, 9.8, 9.2, 72.4, 1.7, 0.0, 7.0, 49.6, 50.4,93.0,18.900000000000002 +1.5744157441574416,1.57,a-cure-i1,2016-17,Worcester - Clark St Community,03480055, 0.0, 3.9, 19.2, 53.7, 4.4, 0.0, 18.7, 44.3, 55.7,81.3,8.0 +1.1712418300653593,1.17,a-cure-i1,2016-17,Worcester - Columbus Park,03480060, 0.4, 10.5, 13.7, 48.9, 2.9, 0.0, 23.5, 43.9, 56.1,76.5,5.6 +3.3131313131313136,3.31,a-cure-i1,2016-17,Worcester - Doherty Memorial High,03480512, 0.3, 7.8, 16.1, 31.7, 3.5, 0.0, 40.6, 45.5, 54.5,59.4,12.3 +2.8733850129198966,2.87,a-cure-i1,2016-17,Worcester - Elm Park Community,03480095, 0.2, 3.2, 13.6, 56.7, 3.6, 0.0, 22.6, 46.3, 53.7,77.4,13.9 +1,1,a-cure-i1,2016-17,Worcester - Flagg Street,03480090, 0.0, 5.7, 5.9, 11.4, 4.2, 0.0, 72.8, 52.0, 48.0,27.200000000000003,0.0 +3.9710144927536235,3.97,a-cure-i1,2016-17,Worcester - Forest Grove Middle,03480415, 0.1, 6.4, 11.9, 31.8, 4.9, 0.0, 44.8, 47.6, 52.4,55.2,13.700000000000001 +4.026143790849673,4.03,a-cure-i1,2016-17,Worcester - Francis J McGrath Elementary,03480177, 0.3, 3.7, 18.1, 31.8, 7.4, 0.0, 38.8, 48.2, 51.8,61.2,15.4 +1.5410764872521248,1.54,a-cure-i1,2016-17,Worcester - Gates Lane,03480110, 0.3, 13.1, 14.9, 37.1, 5.2, 0.0, 29.4, 37.2, 62.8,70.6,6.8 +3.942028985507246,3.94,a-cure-i1,2016-17,Worcester - Goddard School/Science Technical,03480100, 0.8, 10.8, 10.1, 57.1, 4.1, 0.0, 17.2, 44.5, 55.5,82.8,20.4 +1.3171390013495277,1.32,a-cure-i1,2016-17,Worcester - Grafton Street,03480115, 0.0, 6.1, 17.8, 44.3, 5.9, 0.0, 25.9, 46.7, 53.3,74.1,6.1 +18.753939393939394,5,a-cure-i1,2016-17,Worcester - Head Start,03480002, 0.4, 3.2, 18.4, 58.9, 1.3, 0.4, 17.5, 50.0, 50.0,82.5,96.7 +2.837606837606838,2.84,a-cure-i1,2016-17,Worcester - Heard Street,03480136, 0.4, 11.5, 9.3, 20.8, 4.8, 0.0, 53.2, 52.8, 47.2,46.8,8.3 +1,1,a-cure-i1,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 3.2, 25.8, 52.5, 5.9, 0.0, 12.7, 51.4, 48.6,87.3,0.0 +3.1794871794871797,3.18,a-cure-i1,2016-17,Worcester - Lake View,03480145, 0.3, 9.0, 15.7, 17.4, 4.3, 0.0, 53.2, 48.2, 51.8,46.8,9.3 +1,1,a-cure-i1,2016-17,Worcester - Lincoln Street,03480160, 0.7, 4.6, 18.9, 58.6, 4.9, 0.0, 12.3, 48.4, 51.6,87.7,0.0 +1,1,a-cure-i1,2016-17,Worcester - May Street,03480175, 0.3, 8.6, 9.8, 20.2, 11.9, 0.0, 49.3, 51.9, 48.1,50.7,0.0 +4.0,4.0,a-cure-i1,2016-17,Worcester - Midland Street,03480185, 0.4, 10.3, 6.6, 10.3, 8.7, 0.0, 63.6, 46.3, 53.7,36.4,9.1 +1,1,a-cure-i1,2016-17,Worcester - Nelson Place,03480200, 0.0, 6.2, 11.0, 16.5, 5.3, 0.0, 61.0, 45.4, 54.6,39.0,0.0 +3.3131313131313127,3.31,a-cure-i1,2016-17,Worcester - Norrback Avenue,03480202, 0.0, 5.1, 21.6, 28.4, 4.2, 0.0, 40.6, 47.9, 52.1,59.4,12.299999999999999 +4.820253164556962,4.82,a-cure-i1,2016-17,Worcester - North High,03480515, 0.4, 8.3, 19.3, 47.9, 3.1, 0.0, 21.0, 47.9, 52.1,79.0,23.8 +4.515759312320918,4.52,a-cure-i1,2016-17,Worcester - Quinsigamond,03480210, 0.1, 7.3, 18.9, 39.6, 3.9, 0.0, 30.2, 52.2, 47.8,69.8,19.700000000000003 +2.5125925925925925,2.51,a-cure-i1,2016-17,Worcester - Rice Square,03480215, 0.0, 7.5, 16.5, 37.4, 6.1, 0.0, 32.5, 46.1, 53.9,67.5,10.6 +6.69980879541109,5,a-cure-i1,2016-17,Worcester - Roosevelt,03480220, 0.0, 4.7, 15.3, 27.8, 4.4, 0.0, 47.7, 51.2, 48.8,52.3,21.9 +4.289093298291721,4.29,a-cure-i1,2016-17,Worcester - South High Community,03480520, 0.1, 12.7, 17.1, 43.7, 2.5, 0.0, 23.9, 47.1, 52.9,76.1,20.4 +4.552667578659371,4.55,a-cure-i1,2016-17,Worcester - Sullivan Middle,03480423, 0.2, 11.4, 14.6, 42.4, 4.5, 0.0, 26.9, 47.7, 52.3,73.1,20.799999999999997 +1.669829222011385,1.67,a-cure-i1,2016-17,Worcester - Tatnuck,03480230, 0.0, 5.5, 19.5, 22.9, 4.9, 0.0, 47.3, 52.7, 47.3,52.7,5.5 +2.5876993166287017,2.59,a-cure-i1,2016-17,Worcester - Thorndyke Road,03480235, 0.0, 4.3, 14.1, 22.1, 3.5, 0.0, 56.1, 53.7, 46.3,43.9,7.1 +1,1,a-cure-i1,2016-17,Worcester - Union Hill School,03480240, 0.2, 2.9, 11.9, 60.7, 4.2, 0.0, 20.2, 49.9, 50.1,79.8,4.8 +1,1,a-cure-i1,2016-17,Worcester - University Pk Campus School,03480285, 0.4, 19.7, 11.4, 53.5, 3.1, 0.0, 11.8, 44.9, 55.1,88.2,0.5 +1.7506361323155217,1.75,a-cure-i1,2016-17,Worcester - Vernon Hill School,03480280, 0.2, 4.6, 21.2, 47.2, 5.3, 0.0, 21.4, 46.0, 54.0,78.6,8.6 +1,1,a-cure-i1,2016-17,Worcester - Wawecus Road School,03480026, 0.0, 6.1, 12.2, 38.8, 5.4, 0.0, 37.4, 46.3, 53.7,62.6,0.0 +3.239263803680982,3.24,a-cure-i1,2016-17,Worcester - West Tatnuck,03480260, 0.0, 5.0, 7.0, 13.2, 7.3, 0.0, 67.4, 52.8, 47.2,32.599999999999994,6.6 +1.4753018660812296,1.48,a-cure-i1,2016-17,Worcester - Woodland Academy,03480030, 0.2, 9.3, 7.3, 71.6, 2.7, 0.0, 8.9, 50.1, 49.9,91.1,8.4 +1,1,a-cure-i1,2016-17,Worcester - Worcester Arts Magnet School,03480225, 0.0, 6.2, 15.3, 19.8, 7.4, 0.0, 51.4, 53.1, 46.9,48.6,0.0 +4.966921119592875,4.97,a-cure-i1,2016-17,Worcester - Worcester East Middle,03480420, 0.0, 7.0, 19.1, 48.2, 4.3, 0.0, 21.4, 48.2, 51.8,78.6,24.4 +1,1,a-cure-i1,2016-17,Worcester - Worcester Technical High,03480605, 0.0, 6.6, 16.6, 36.8, 3.0, 0.0, 37.1, 57.4, 42.6,62.9,4.2 +1,1,a-cure-i1,2016-17,Worthington - R. H. Conwell,03490010, 0.0, 1.7, 0.0, 1.7, 3.3, 0.0, 93.3, 55.0, 45.0,6.700000000000003,0.0 +1,1,a-cure-i1,2016-17,Wrentham - Charles E Roderick,03500010, 0.0, 1.6, 1.4, 3.0, 3.4, 0.0, 90.7, 46.9, 53.1,9.299999999999997,0.0 +1,1,a-cure-i1,2016-17,Wrentham - Delaney,03500003, 0.2, 2.9, 1.2, 4.6, 4.1, 0.2, 87.0, 48.1, 51.9,13.0,0.0 diff --git a/data/admin_data/dese/4B_2_retention.csv b/data/admin_data/dese/4B_2_retention.csv index 72a26add..e19a25b7 100644 --- a/data/admin_data/dese/4B_2_retention.csv +++ b/data/admin_data/dese/4B_2_retention.csv @@ -1,168 +1,1899 @@ 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 +8.0,5,a-degr-i2,2024-25,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105," 1,301", 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,2024-25,Abington-Beaver Brook Elementary,00010020, 345, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +6.4,5,a-degr-i2,2024-25,Abington-Abington High,00010505, 524, 4, 0.8,"","","","","","","","", 2.4, 0.0, 0.8, 0.0 +8.0,5,a-degr-i2,2024-25,Abington-Woodsdale Elementary School,00010015, 372, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Abington-Abington Middle School,00010405, 668, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 509, 11, 2.2,"","","","", 0.0, 1.6, 0.0, 1.4, 6.7, 4.8, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Acton-Boxborough-McCarthy-Towne School,06000015, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Acton-Boxborough-Raymond J Grey Junior High,06000405, 824, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Acton-Boxborough-Blanchard Memorial School,06000005, 418, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Acton-Boxborough-Merriam School,06000010, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2024-25,Acton-Boxborough-Acton-Boxborough Regional High,06000505," 1,617", 6, 0.4,"","","","","","","","", 0.0, 0.2, 0.0, 1.3 +8.0,5,a-degr-i2,2024-25,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2024-25,Acton-Boxborough-Paul P Gates Elementary School,06000025, 321, 2, 0.6, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Acton-Boxborough-Luther Conant School,06000030, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Acushnet-Albert F Ford Middle School,00030305, 403, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Acushnet-Acushnet Elementary School,00030025, 384, 2, 0.5, 2.1, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 970, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Agawam-Benjamin J Phelps,00050020, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2024-25,Agawam-Roberta G. Doering School,00050303, 522, 1, 0.2,"","","","", 0.0, 0.4,"","","","","","" +5.6,5,a-degr-i2,2024-25,Agawam-Agawam High,00050505," 1,016", 12, 1.2,"","","","","","","","", 3.9, 0.4, 0.0, 0.4 +6.8,5,a-degr-i2,2024-25,Agawam-Agawam Junior High,00050405, 527, 3, 0.6,"","","","","","", 0.4, 0.7,"","","","" +8.0,5,a-degr-i2,2024-25,Agawam-William P. Sapelli Elementary,00050025, 236, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Agawam-James Clark School,00050030, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2024-25,Agawam-Clifford M Granger,00050010, 280, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2024-25,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 944, 4, 0.4, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Amesbury-Charles C Cashman Elementary,00070010, 413, 1, 0.2,"","", 0.0, 0.0, 0.7,"","","","","","","" +4.0,4.0,a-degr-i2,2024-25,Amesbury-Amesbury Innovation High School,00070515, 50, 1, 2.0,"","","","","","","","", 7.1, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Amesbury-Shay Elementary,00070005, 288, 1, 0.3, 0.0, 0.7,"","","","","","","","","","" +2.0,2.0,a-degr-i2,2024-25,Amesbury-Amesbury High,00070505, 474, 14, 3.0,"","","","","","","","", 3.4, 1.6, 6.5, 0.0 +8.0,5,a-degr-i2,2024-25,Amesbury-Amesbury Middle,00070013, 364, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Amherst-Crocker Farm Elementary,00080009, 243, 1, 0.4, 0.0, 0.0, 2.9, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Amherst-Wildwood Elementary,00080050, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Amherst-Fort River Elementary,00080020, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Amherst-Pelham-Amherst Regional Middle School,06050405, 366, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Amherst-Pelham-Amherst Regional High,06050505, 810, 5, 0.6,"","","","","","","","", 0.0, 1.0, 1.3, 0.0 +8.0,5,a-degr-i2,2024-25,Andover-High Plain Elementary,00090004, 438, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Andover-Bancroft Elementary,00090003, 437, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Andover-Henry C Sanborn Elementary,00090010, 272, 1, 0.4, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Andover-South Elementary,00090020, 369, 2, 0.5, 1.4, 0.0, 0.0, 1.3, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Andover-Wood Hill Middle School,00090350, 317, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Andover-Andover West Middle,00090310, 508, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Andover-Andover High,00090505," 1,609", 10, 0.6,"","","","","","","","", 0.8, 1.0, 0.7, 0.0 +8.0,5,a-degr-i2,2024-25,Andover-West Elementary,00090025, 498, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Andover-Doherty Middle,00090305, 493, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.0,5.0,a-degr-i2,2024-25,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 587, 9, 1.5,"","","","","", 0.9, 0.0, 0.0, 8.9, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Arlington-Cyrus E Dallin,00100025, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Arlington-Hardy,00100030, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Arlington-Peirce,00100045, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Arlington-Brackett,00100010, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Arlington-M Norcross Stratton,00100055, 380, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Arlington-Gibbs School,00100305, 529, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Arlington-Ottoson Middle,00100410, 963, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Arlington-Arlington High,00100505," 1,677", 10, 0.6,"","","","","","","","", 0.0, 0.0, 0.0, 2.5 +8.0,5,a-degr-i2,2024-25,Arlington-John A Bishop,00100005, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Arlington-Thompson,00100050, 445, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Ashburnham-Westminster-Briggs Elementary,06100025, 365, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.5999999999999996,2.6,a-degr-i2,2024-25,Ashburnham-Westminster-Meetinghouse School,06100010, 75, 2, 2.7, 2.7,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Ashburnham-Westminster-Westminster Elementary,06100005, 375, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Ashburnham-Westminster-Overlook Middle School,06100305, 576, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Ashburnham-Westminster-Oakmont Regional High School,06100505, 629, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Ashland-Ashland High,00140505, 884, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.4, 0.0 +8.0,5,a-degr-i2,2024-25,Ashland-David Mindess,00140015, 670, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Ashland-Henry E Warren Elementary,00140010, 405, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Ashland-Ashland Middle,00140405, 685, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605," 1,144", 3, 0.3,"","","","","","","","", 0.0, 0.7, 0.0, 0.4 +8.0,5,a-degr-i2,2024-25,Athol-Royalston-Royalston Community School,06150050, 112, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2024-25,Athol-Royalston-Athol Community Elementary School,06150020, 446, 5, 1.1, 4.1, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2024-25,Athol-Royalston-Athol-Royalston Middle School,06150305, 446, 1, 0.2,"","","","", 1.1, 0.0, 0.0, 0.0,"","","","" +-0.8000000000000007,1,a-degr-i2,2024-25,Athol-Royalston-Athol High,06150505, 413, 18, 4.4,"","","","","","","","", 10.4, 2.2, 2.0, 1.9 +6.8,5,a-degr-i2,2024-25,Atlantis Charter (District)-Atlantis Charter School,04910550," 1,137", 7, 0.6, 1.8, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.5, 1.8, 1.5, 0.0 +8.0,5,a-degr-i2,2024-25,Attleboro-Hyman Fine Elementary School,00160040, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2024-25,Attleboro-Hill-Roberts Elementary School,00160045, 323, 1, 0.3, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Attleboro-Peter Thacher Elementary School,00160050, 364, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Attleboro-Robert J. Coelho Middle School,00160305, 574, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Attleboro-Cyril K. Brennan Middle School,00160315, 599, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Attleboro-Wamsutta Middle School,00160320, 593, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2024-25,Attleboro-Attleboro High,00160505," 2,008", 17, 0.8,"","","","","","","","", 0.4, 1.0, 0.6, 1.4 +-12.600000000000001,1,a-degr-i2,2024-25,Attleboro-Attleboro Virtual Academy,00160705, 39, 4, 10.3,"","","","","","","","", 12.5, 0.0, 8.3, 16.7 +8.0,5,a-degr-i2,2024-25,Attleboro-A. Irvin Studley Elementary School,00160001, 287, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Attleboro-Thomas Willett Elementary School,00160035, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +-4.6,1,a-degr-i2,2024-25,Attleboro-Attleboro Community Academy,00160515, 64, 4, 6.3,"","","","","","","", 0.0,"", 50.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Auburn-Pakachoag School,00170025, 163, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Auburn-Auburn Senior High,00170505, 727, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Auburn-Auburn Middle,00170305, 628, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Auburn-Swanson Road Intermediate School,00170030, 554, 2, 0.4,"","", 0.6, 0.0, 0.5,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Auburn-Bryn Mawr,00170010, 174, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +3.0,3.0,a-degr-i2,2024-25,Avon-Avon Middle High School,00180510, 406, 10, 2.5,"","","","","", 0.0, 0.0, 0.0, 9.3, 5.1, 3.9, 0.0 +8.0,5,a-degr-i2,2024-25,Avon-Ralph D Butler,00180010, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 417, 2, 0.5,"","","","","","","","", 0.0, 0.0, 1.9, 0.0 +8.0,5,a-degr-i2,2024-25,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 410, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Ayer Shirley School District-Lura A. White Elementary School,06160001, 307, 1, 0.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2024-25,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 395, 5, 1.3, 6.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Barnstable-Hyannis West Elementary,00200025, 251, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.0,5,a-degr-i2,2024-25,Barnstable-West Barnstable Elementary,00200005, 182, 1, 0.5, 1.8, 0.0, 0.0,"","","","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Barnstable-Barnstable High,00200505," 1,642", 36, 2.2,"","","","","","","", 0.0, 5.0, 2.7, 2.4, 0.9 +8.0,5,a-degr-i2,2024-25,Barnstable-Barnstable Intermediate School,00200315, 642, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2024-25,Barnstable-Barnstable United Elementary School,00200050, 714, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Barnstable-West Villages Elementary School,00200045, 316, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Barnstable-Barnstable Community Innovation School,00200012, 220, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Barnstable-Centerville Elementary,00200010, 207, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2024-25,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 388, 13, 3.4,"","","","","", 2.8, 1.5, 0.0, 7.1, 5.8, 5.3, 2.5 +7.4,5,a-degr-i2,2024-25,Bedford-Lt Eleazer Davis,00230010, 328, 1, 0.3, 0.0, 0.6,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Bedford-John Glenn Middle,00230305, 604, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Bedford-Bedford High,00230505, 868, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.5, 0.0 +7.2,5,a-degr-i2,2024-25,Bedford-Lt Job Lane School,00230012, 540, 2, 0.4,"","", 0.6, 0.0, 0.5,"","","","","","","" +4.2,4.2,a-degr-i2,2024-25,Belchertown-Belchertown High,00240505, 565, 11, 1.9,"","","","","","","","", 3.3, 3.0, 0.7, 0.7 +8.0,5,a-degr-i2,2024-25,Belchertown-Jabish Middle School,00240025, 343, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Belchertown-Swift River Elementary,00240018, 445, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Belchertown-Chestnut Hill Community School,00240006, 494, 1, 0.2,"","","", 0.0, 0.6, 0.0,"","","","","","" +5.6,5,a-degr-i2,2024-25,Bellingham-Bellingham High School,00250505, 732, 9, 1.2,"","","","","","","", 0.0, 3.7, 2.0, 0.7, 0.0 +7.6,5,a-degr-i2,2024-25,Bellingham-Bellingham Memorial School,00250315, 586, 1, 0.2,"","","", 0.0, 0.0, 0.0, 0.7,"","","","","" +8.0,5,a-degr-i2,2024-25,Bellingham-Joseph F DiPietro Elementary School,00250020, 247, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Bellingham-Stall Brook,00250025, 163, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +-19.6,1,a-degr-i2,2024-25,Bellingham-Keough Memorial Academy,00250510, 29, 4, 13.8,"","","","","","","","", 0.0, 22.2, 0.0,"" +8.0,5,a-degr-i2,2024-25,Belmont-Winn Brook,00260005, 238, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Belmont-Mary Lee Burbank,00260010, 193, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Belmont-Belmont Middle School,00260315, 742, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Belmont-Daniel Butler,00260015, 200, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Belmont-Winthrop L Chenery Upper Elementary,00260305," 1,023", 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Belmont-Roger E Wellington,00260035, 275, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.8,5,a-degr-i2,2024-25,Belmont-Belmont High,00260505," 1,454", 9, 0.6,"","","","","","","","", 0.3, 1.0, 0.8, 0.3 +7.4,5,a-degr-i2,2024-25,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 288, 1, 0.3, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 798, 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,2024-25,Berkley-Berkley Community School,00270010, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Berkley-Berkley Middle School,00270305, 374, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.2,5,a-degr-i2,2024-25,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 364, 5, 1.4,"","","","","", 2.8, 0.0, 0.0, 6.4, 0.0, 0.0, 0.0 +5.2,5,a-degr-i2,2024-25,Berkshire Hills-Monument Mt Regional High,06180505, 427, 6, 1.4,"","","","","","","","", 0.0, 0.0, 1.8, 3.0 +6.4,5,a-degr-i2,2024-25,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 256, 2, 0.8, 1.7, 1.6, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 326, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Berlin-Boylston-Tahanto Regional High,06200505, 522, 2, 0.4,"","","","","", 0.0, 1.1, 0.0, 0.0, 0.0, 1.4, 0.0 +8.0,5,a-degr-i2,2024-25,Berlin-Boylston-Berlin Memorial School,06200005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Berlin-Boylston-Boylston Elementary School,06200010, 279, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,Beverly-Centerville Elementary,00300010, 261, 2, 0.8, 1.7, 0.0, 1.6, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2024-25,Beverly-Cove Elementary,00300015, 310, 2, 0.6, 0.0, 1.4, 0.0, 1.2,"","","","","","","","" +7.2,5,a-degr-i2,2024-25,Beverly-North Beverly Elementary,00300040, 278, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Beverly-Ayers/Ryal Side School,00300055, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +2.4000000000000004,2.4,a-degr-i2,2024-25,Beverly-Beverly High,00300505," 1,206", 34, 2.8,"","","","","","","","", 4.9, 3.1, 2.2, 1.1 +8.0,5,a-degr-i2,2024-25,Beverly-Hannah Elementary,00300033, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Beverly-Beverly Middle School,00300305," 1,388", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Billerica-Locke Middle,00310310, 531, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2024-25,Billerica-Marshall Middle School,00310305, 596, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2024-25,Billerica-Parker,00310015, 350, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Billerica-John F Kennedy,00310012, 265, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Billerica-Frederick J Dutile,00310007, 250, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Billerica-Thomas Ditson,00310005, 450, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Billerica-Hajjar Elementary,00310026, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.2,5,a-degr-i2,2024-25,Billerica-Billerica Memorial High School,00310505," 1,595", 23, 1.4,"","","","","","","", 0.0, 4.5, 1.8, 0.3, 0.7 +7.8,5,a-degr-i2,2024-25,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605," 1,243", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Blackstone-Millville-Millville Elementary,06220010, 297, 1, 0.3, 0.0, 0.0, 1.1,"","","","","","","","","" +6.4,5,a-degr-i2,2024-25,Blackstone-Millville-Blackstone Millville RHS,06220505, 531, 4, 0.8,"","","","","","","", 0.9, 0.8, 1.9, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 487, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +7.8,5,a-degr-i2,2024-25,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 910, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.4, 0.0 +5.2,5,a-degr-i2,2024-25,Boston-Frederick Pilot Middle School,00350383, 215, 3, 1.4,"","","","","","", 0.0, 2.2,"","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Boston-Fenway High School,00350540, 356, 8, 2.2,"","","","","","","","", 4.3, 2.0, 1.2, 1.2 +-38.8,1,a-degr-i2,2024-25,Boston-Greater Egleston High School,00350543, 77, 18, 23.4,"","","","","","","","","", 17.6, 0.0, 26.2 +5.6,5,a-degr-i2,2024-25,Boston-Margarita Muniz Academy,00350549, 428, 5, 1.2,"","","","","","", 0.0, 0.0, 4.7, 0.0, 0.0, 1.3 +5.2,5,a-degr-i2,2024-25,Boston-Quincy Upper School,00350565, 556, 8, 1.4,"","","","","", 0.0, 2.2, 1.1, 1.5, 5.2, 0.0, 1.6 +3.8,3.8,a-degr-i2,2024-25,Boston-Lyon High School,00350655, 95, 2, 2.1,"","","","","","","","", 5.6, 0.0, 0.0, 5.0 +-9.600000000000001,1,a-degr-i2,2024-25,Boston-Snowden International High School,00350690, 421, 37, 8.8,"","","","","","","","", 21.3, 9.9, 3.4, 2.2 +8.0,5,a-degr-i2,2024-25,Boston-West Zone Early Learning Center,00350006, 20, 0, 0.0, 0.0,"","","","","","","","","","","" +-4.0,1,a-degr-i2,2024-25,Boston-Henderson K-12 Inclusion School Lower,00350266, 67, 4, 6.0, 6.0,"","","","","","","","","","","" +6.4,5,a-degr-i2,2024-25,Boston-Dever Elementary School,00350268, 366, 3, 0.8, 0.0, 1.6, 1.7, 1.6, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Bates Elementary School,00350278, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2024-25,Boston-Quincy Elementary School,00350286, 533, 4, 0.8, 2.1, 1.8, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Baldwin Early Learning Pilot Academy,00350003, 47, 0, 0.0, 0.0,"","","","","","","","","","","" +6.4,5,a-degr-i2,2024-25,Boston-Lyon K-8 School,00350004, 130, 1, 0.8, 0.0, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Ellison-Parks Early Education School,00350008, 103, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-East Boston Early Education Center,00350009, 47, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Boston Teachers Union K-8 Pilot,00350012, 204, 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,2024-25,Boston-Shaw-Taylor Elementary School,00350014, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2024-25,Boston-Mattahunt Elementary School,00350016, 416, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2024-25,Boston-Curley K-8 School,00350020, 717, 3, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 2.6,"","","","" +5.6,5,a-degr-i2,2024-25,Boston-Beethoven Elementary School,00350021, 172, 2, 1.2, 1.2, 1.1,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Sumner Elementary School,00350052, 441, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2024-25,Boston-Guild Elementary School,00350062, 209, 1, 0.5, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Boston-Ellis Elementary School,00350072, 301, 1, 0.3, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","" +1.0,1.0,a-degr-i2,2024-25,Boston-Dearborn 6-12 STEM Academy,00350074, 565, 20, 3.5,"","","","","", 0.0, 1.1, 2.3, 9.6, 3.8, 2.2, 3.4 +6.6,5,a-degr-i2,2024-25,Boston-Haley Pilot School,00350077, 287, 2, 0.7, 2.4, 0.0, 2.2, 0.0, 0.0, 0.0,"", 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-McKay K-8 School,00350080, 578, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Boston-Everett Elementary School,00350088, 239, 1, 0.4, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Haynes Early Education Center,00350010, 53, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Higginson Inclusion K0-2 School,00350015, 86, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +-63.400000000000006,1,a-degr-i2,2024-25,Boston-Carter School,00350036, 28, 10, 35.7,"","","","","","","","","","","", 76.9 +8.0,5,a-degr-i2,2024-25,Boston-Condon K-8 School,00350146, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2024-25,Boston-Otis Elementary School,00350156, 308, 3, 1.0, 1.6, 1.8, 0.0, 0.0, 2.9, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Philbrick Elementary School,00350172, 101, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2024-25,Boston-Lee K-8 School,00350183, 434, 2, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.6,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Harvard-Kent Elementary School,00350200, 250, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Tobin K-8 School,00350229, 321, 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,2024-25,Boston-Alighieri Dante Montessori School,00350066, 70, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2024-25,Boston-Murphy K-8 School,00350240, 739, 1, 0.1, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Boston-Adams Elementary School,00350302, 192, 1, 0.5, 0.0, 0.0, 3.3, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2024-25,Boston-Gardner Pilot Academy,00350326, 302, 3, 1.0, 2.6, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Channing Elementary School,00350360, 145, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Mather Elementary School,00350227, 366, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Perkins Elementary School,00350231, 133, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Mozart Elementary School,00350237, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Hale Elementary School,00350243, 133, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Perry Elementary School,00350255, 139, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Winship Elementary School,00350374, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Higginson-Lewis K-8 School,00350377, 213, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-14.600000000000001,1,a-degr-i2,2024-25,Boston-Excel High School,00350522, 300, 34, 11.3,"","","","","","","","", 20.8, 15.2, 10.6, 2.6 +2.8,2.8,a-degr-i2,2024-25,Boston-Albert D Holland School of Technology,00350525, 387, 10, 2.6,"","","","","","", 0.0, 8.0, 5.1, 1.4, 2.2, 1.7 +6.0,5,a-degr-i2,2024-25,Boston-East Boston High School,00350530," 1,235", 12, 1.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 4.1 +-2.4000000000000004,1,a-degr-i2,2024-25,Boston-English High School,00350535, 710, 37, 5.2,"","","","","","", 0.0, 0.0, 20.4, 0.0, 0.0, 4.5 +-0.1999999999999993,1,a-degr-i2,2024-25,Boston-Madison Park Technical Vocational High School,00350537," 1,090", 45, 4.1,"","","","","","","","", 7.1, 3.7, 1.2, 3.9 +-8.600000000000001,1,a-degr-i2,2024-25,Boston-Another Course To College,00350541, 253, 21, 8.3,"","","","","","","","", 7.4, 15.9, 5.5, 3.3 +6.6,5,a-degr-i2,2024-25,Boston-New Mission High School,00350542, 715, 5, 0.7,"","","","","","", 0.0, 0.0, 0.7, 1.5, 0.7, 0.8 +4.8,4.8,a-degr-i2,2024-25,Boston-Boston Latin Academy,00350545," 1,693", 27, 1.6,"","","","","","", 1.5, 1.1, 4.2, 1.8, 0.7, 0.0 +0.7999999999999998,1,a-degr-i2,2024-25,Boston-Boston Arts Academy,00350546, 498, 18, 3.6,"","","","","","","","", 5.3, 4.4, 3.3, 0.9 +-46.6,1,a-degr-i2,2024-25,Boston-Boston Adult Tech Academy,00350548, 227, 62, 27.3,"","","","","","","","","","", 22.4, 42.1 +-4.800000000000001,1,a-degr-i2,2024-25,Boston-Ruth Batson Academy,00350558, 596, 38, 6.4,"","","","","","", 1.4, 2.7, 12.8, 8.3, 3.5, 6.3 +6.6,5,a-degr-i2,2024-25,Boston-Boston Latin School,00350560," 2,424", 18, 0.7,"","","","","","", 1.2, 1.5, 1.4, 0.0, 0.3, 0.0 +-0.1999999999999993,1,a-degr-i2,2024-25,Boston-O'Bryant School of Math & Science,00350575," 1,509", 62, 4.1,"","","","","","", 4.7, 0.7, 5.7, 6.3, 5.2, 0.0 +-15.399999999999999,1,a-degr-i2,2024-25,Boston-Community Academy of Science and Health,00350581, 366, 43, 11.7,"","","","","","","","", 25.9, 16.1, 9.8, 1.9 +7.2,5,a-degr-i2,2024-25,Boston-Mario Umana Academy,00350656, 544, 2, 0.4, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.2, 0.0,"","","","" +3.8,3.8,a-degr-i2,2024-25,Boston-TechBoston Academy,00350657, 849, 18, 2.1,"","","","","","", 1.8, 1.7, 5.7, 0.6, 0.6, 2.8 +-49.2,1,a-degr-i2,2024-25,Boston-Boston Collaborative High School,00350755, 206, 59, 28.6,"","","","","","","","","", 14.3, 9.7, 37.8 +8.0,5,a-degr-i2,2024-25,Boston-Lee Academy,00350001, 106, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Hernandez K-8 School,00350691, 292, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0,"","","","" +1.5999999999999996,1.6,a-degr-i2,2024-25,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 62, 2, 3.2,"","","", 12.5,"","", 0.0, 0.0, 0.0, 0.0,"", 9.1 +7.4,5,a-degr-i2,2024-25,Boston-Orchard Gardens K-8 School,00350257, 600, 2, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Ohrenberger School,00350258, 477, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Boston-Lyndon K-8 School,00350262, 395, 2, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.6, 3.3,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Kennedy Patrick J Elementary School,00350264, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2024-25,Boston-Eliot K-8 Innovation School,00350096, 634, 3, 0.5, 2.5, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Boston-Mendell Elementary School,00350100, 247, 1, 0.4, 0.0, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Roosevelt K-8 School,00350116, 292, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2024-25,Boston-Conley Elementary School,00350122, 105, 1, 1.0, 4.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2024-25,Boston-Grew Elementary School,00350135, 165, 2, 1.2, 0.0, 0.0, 2.3, 4.3, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2024-25,Boston-Holmes Elementary School,00350138, 214, 2, 0.9, 0.0, 0.0, 2.6, 2.8, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-O'Donnell Elementary School,00350141, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2024-25,Boston-Hennigan K-8 School,00350153, 444, 3, 0.7, 3.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.7, 0.0,"","","","" +5.6,5,a-degr-i2,2024-25,Boston-Chittick Elementary School,00350154, 165, 2, 1.2, 0.0, 0.0, 3.1, 3.7, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Kennedy John F Elementary School,00350166, 325, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2024-25,Boston-UP Academy Holland,00350167, 519, 1, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.4,4.4,a-degr-i2,2024-25,Boston-Clap Elementary School,00350298, 111, 2, 1.8, 10.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Mason Elementary School,00350304, 153, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2024-25,Boston-Greenwood Sarah K-8 School,00350308, 279, 5, 1.8, 4.9, 4.8, 0.0, 0.0, 2.2, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Kenny Elementary School,00350328, 265, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.4,5,a-degr-i2,2024-25,Boston-Warren-Prescott K-8 School,00350346, 380, 5, 1.3, 3.1, 4.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-40.8,1,a-degr-i2,2024-25,Boston-McKinley Schools,00350363, 123, 30, 24.4,"","","","","", 14.3, 0.0, 13.3, 36.4, 43.5, 29.4, 28.6 +8.0,5,a-degr-i2,2024-25,Boston-Russell Elementary School,00350366, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Boston-Winthrop Elementary School,00350180, 181, 1, 0.6, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2024-25,Boston-Tynan Elementary School,00350181, 178, 1, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 3.3,"","","","","","" +7.2,5,a-degr-i2,2024-25,Boston-Hurley K-8 School,00350182, 273, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.6,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Manning Elementary School,00350184, 126, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Boston-Kilmer K-8 School,00350190, 314, 1, 0.3, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Bradley Elementary School,00350215, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2024-25,Boston-Trotter Elementary School,00350370, 246, 2, 0.8, 2.4, 0.0, 2.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2024-25,Boston-Edison Elementary School,00350375, 434, 3, 0.7, 0.0, 1.2, 2.8, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-King Elementary School,00350376, 324, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Boston-Mildred Avenue K-8 School,00350378, 517, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +4.4,4.4,a-degr-i2,2024-25,Boston-Young Achievers K-8 School,00350380, 390, 7, 1.8, 8.2, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0, 2.5,"","","","" +8.0,5,a-degr-i2,2024-25,Boston-Blackstone Elementary School,00350390, 446, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.8,3.8,a-degr-i2,2024-25,Boston-Henderson K-12 Inclusion School Upper,00350426, 618, 13, 2.1,"", 1.4, 0.0, 0.0, 7.5, 0.0, 0.0, 1.6, 5.7, 7.0, 0.0, 1.6 +-3.1999999999999993,1,a-degr-i2,2024-25,Boston-Brighton High School,00350505, 658, 37, 5.6,"","","","","","", 2.4, 5.2, 3.6, 6.9, 6.3, 6.3 +-4.199999999999999,1,a-degr-i2,2024-25,Boston-Boston International High School & Newcomers Academy,00350507, 490, 30, 6.1,"","","","","","","","", 15.9, 1.7, 0.9, 0.0 +-6.199999999999999,1,a-degr-i2,2024-25,Boston-Charlestown High School,00350515, 702, 50, 7.1,"","","","","","", 0.0, 0.0, 11.4, 6.8, 8.1, 6.1 +-23.0,1,a-degr-i2,2024-25,Boston-Community Academy,00350518, 58, 9, 15.5,"","","","","","","","","", 5.0, 0.0, 26.1 +0.5999999999999996,1,a-degr-i2,2024-25,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 703, 26, 3.7,"","","","", 0.0, 1.0, 2.3, 3.1, 13.1, 6.9, 3.2, 1.2 +-83.0,1,a-degr-i2,2024-25,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 323, 147, 45.5,"","","","","","","","", 75.0, 27.3,"", 44.4 +5.0,5.0,a-degr-i2,2024-25,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 413, 6, 1.5,"","","","","","", 0.0, 0.0, 3.8, 1.5, 1.4, 1.8 +2.0,2.0,a-degr-i2,2024-25,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 697, 21, 3.0,"","","","","", 2.3, 2.9, 0.9, 6.3, 0.9, 6.4, 1.3 +7.8,5,a-degr-i2,2024-25,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 707, 1, 0.1, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Bourne-Bournedale Elementary School,00360005, 249, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.4,5,a-degr-i2,2024-25,Bourne-Bourne High School,00360505, 332, 1, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.2 +8.0,5,a-degr-i2,2024-25,Bourne-Bourne Intermediate School,00360030, 359, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Bourne-Bourne Middle School,00360325, 394, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.2,5,a-degr-i2,2024-25,Boxford-Harry Lee Cole,00380005, 217, 3, 1.4, 1.7, 1.0,"","","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Boxford-Spofford Pond,00380013, 411, 1, 0.2,"","", 0.0, 0.9, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Braintree-Archie T Morrison,00400033, 279, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Braintree-Donald Ross,00400050, 141, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Braintree-Highlands,00400015, 287, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2024-25,Braintree-Braintree High,00400505," 1,577", 12, 0.8,"","","","","","","","", 0.3, 0.5, 1.0, 1.1 +8.0,5,a-degr-i2,2024-25,Braintree-Liberty,00400025, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2024-25,Braintree-Hollis,00400005, 273, 2, 0.7, 1.6, 0.0, 1.6, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Braintree-South Middle School,00400310, 635, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Braintree-East Middle School,00400305, 999, 2, 0.2,"","","","", 0.0, 0.0, 0.8, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Braintree-Mary E Flaherty School,00400020, 268, 1, 0.4, 0.0, 0.0, 0.0, 1.9,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Brewster-Eddy Elementary,00410010, 197, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2024-25,Brewster-Stony Brook Elementary,00410005, 135, 1, 0.7, 0.0, 1.4,"","","","","","","","","","" +5.8,5,a-degr-i2,2024-25,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 261, 3, 1.1, 2.7, 0.0, 0.0, 5.1, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Bridgewater-Raynham-Williams Intermediate School,06250300, 863, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Bridgewater-Raynham-Merrill Elementary School,06250020, 166, 0, 0.0, 0.0,"","","","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Bridgewater-Raynham-Mitchell Elementary School,06250002, 538, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2024-25,Bridgewater-Raynham-Raynham Middle School,06250315, 710, 1, 0.1,"","","","", 0.0, 0.0, 0.0, 0.5,"","","","" +-52.0,1,a-degr-i2,2024-25,Bridgewater-Raynham-Therapeutic Day School,06250415, 10, 3, 30.0,"","","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Bridgewater-Raynham-Bridgewater Middle School,06250320, 828, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Bridgewater-Raynham-Laliberte Elementary School,06250050, 543, 1, 0.2,"", 0.5, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2024-25,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505," 1,469", 7, 0.5,"","","","","","","","", 0.6, 0.9, 0.5, 0.0 +7.0,5,a-degr-i2,2024-25,Brimfield-Brimfield Elementary,00430005, 213, 1, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2024-25,Bristol County Agricultural-Bristol County Agricultural High,09100705, 631, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +7.8,5,a-degr-i2,2024-25,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605," 1,335", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 +8.0,5,a-degr-i2,2024-25,Brockton-Plouffe Middle School,00440422, 627, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Brockton-Ashfield Middle School,00440421, 474, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Brockton-Louis F Angelo Elementary,00440065, 745, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Brockton-Gilmore Elementary School,00440055, 341, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Brockton-Edgar B Davis,00440023, 880, 1, 0.1, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +5.0,5.0,a-degr-i2,2024-25,Brockton-John F Kennedy,00440017, 452, 7, 1.5, 3.4, 2.0, 1.0, 0.0, 1.4,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Brockton-Manthala George Jr. School,00440003, 571, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Brockton-Mary E. Baker School,00440002, 630, 1, 0.2, 0.0, 0.0, 0.7, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Brockton-PROMISE College and Career Academy,00440525, 138, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0,"" +-38.6,1,a-degr-i2,2024-25,Brockton-Champion High School,00440535, 163, 38, 23.3,"","","","","","","","", 62.5, 18.8, 6.0, 4.0 +8.0,5,a-degr-i2,2024-25,Brockton-Hancock,00440045, 542, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Brockton-Brookfield,00440010, 382, 2, 0.5, 0.0, 2.9, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Brockton-Dr W Arnone Community School,00440001, 597, 2, 0.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-34.6,1,a-degr-i2,2024-25,Brockton-Brockton Virtual Learning Academy,00440705, 122, 26, 21.3,"","","","","", 0.0, 0.0, 0.0, 46.9, 45.0, 11.8, 0.0 +2.5999999999999996,2.6,a-degr-i2,2024-25,Brockton-Edison Evening Academy,00440520, 225, 6, 2.7,"","","","","","","","","","", 1.0, 4.0 +7.6,5,a-degr-i2,2024-25,Brockton-West Middle School,00440420, 533, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Brockton-East Middle School,00440405, 421, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2024-25,Brockton-South Middle School,00440415, 398, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Brockton-North Middle School,00440410, 427, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-72.0,1,a-degr-i2,2024-25,Brockton-Brockton Therapeutic Day School,00440400, 30, 12, 40.0,"","","","","","","","", 62.5,"", 37.5,"" +7.2,5,a-degr-i2,2024-25,Brockton-Downey,00440110, 474, 2, 0.4, 0.0, 1.2, 0.0, 1.0, 0.0,"","","","","","","" +-10.0,1,a-degr-i2,2024-25,Brockton-Brockton High,00440505," 3,536", 319, 9.0,"","","","","","","","", 22.8, 7.1, 3.0, 0.5 +8.0,5,a-degr-i2,2024-25,Brockton-Oscar F Raymond,00440078, 710, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2024-25,Brooke Charter School (District)-Brooke Charter School,04280305," 2,021", 36, 1.8, 3.0, 4.0, 2.0, 0.5, 1.1, 1.1, 1.6, 1.6, 1.5, 1.5, 2.5, 0.0 +7.2,5,a-degr-i2,2024-25,Brookfield-Brookfield Elementary,00450005, 235, 1, 0.4, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Brookline-Florida Ruffin Ridley School,00460015, 734, 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,2024-25,Brookline-Michael Driscoll,00460020, 458, 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,2024-25,Brookline-Roland Hayes,00460025, 365, 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,2024-25,Brookline-William H Lincoln,00460035, 437, 2, 0.5, 0.0, 0.0, 0.0, 1.7, 1.9, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Brookline-Pierce,00460040, 540, 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,2024-25,Brookline-John D Runkle,00460045, 407, 1, 0.2, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Brookline-Brookline High,00460505," 2,166", 9, 0.4,"","","","","","","","", 0.2, 0.2, 0.4, 0.9 +8.0,5,a-degr-i2,2024-25,Brookline-Edith C Baker,00460005, 608, 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,2024-25,Brookline-Lawrence,00460030, 561, 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,2024-25,Burlington-Pine Glen Elementary,00480020, 271, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Burlington-Francis Wyman Elementary,00480035, 441, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Burlington-Memorial,00480015, 315, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Burlington-Burlington High,00480505, 918, 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.9, 0.0 +8.0,5,a-degr-i2,2024-25,Burlington-Fox Hill,00480007, 372, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Burlington-Marshall Simonds Middle,00480303, 848, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Maria L. Baldwin,00490005, 264, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Vassal Lane Upper School,00490320, 298, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Cambridge Street Upper School,00490305, 301, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Peabody,00490050, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-King Open,00490035, 297, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2024-25,Cambridge-Cambridge Rindge and Latin,00490506," 2,049", 28, 1.4,"","","","","","","","", 2.7, 0.6, 2.1, 0.0 +8.0,5,a-degr-i2,2024-25,Cambridge-Rindge Avenue Upper School,00490315, 292, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Putnam Avenue Upper School,00490310, 283, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Cambridge-Fletcher/Maynard Academy,00490090, 178, 1, 0.6, 2.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Graham and Parks,00490080, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Amigos School,00490006, 348, 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,2024-25,Cambridge-Cambridgeport,00490007, 203, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Cambridge-Haggerty,00490020, 198, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Martin Luther King Jr.,00490030, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Kennedy-Longfellow,00490040, 165, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cambridge-Morse,00490045, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Cambridge-John M Tobin,00490065, 180, 1, 0.6, 0.0, 2.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Canton-Wm H Galvin Middle,00500305, 716, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Canton-Dean S Luce,00500020, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Canton-Lt Peter M Hansen,00500012, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Canton-John F Kennedy,00500017, 396, 1, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Canton-Canton High,00500505, 962, 4, 0.4,"","","","","","","","", 0.8, 0.0, 0.0, 0.9 +8.0,5,a-degr-i2,2024-25,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 251, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 682, 1, 0.1,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Carlisle-Carlisle School,00510025, 540, 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,2024-25,Carver-Carver Elementary School,00520015, 607, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Carver-Carver Middle/High School,00520405, 685, 3, 0.4,"","","","","", 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 1.1 +8.0,5,a-degr-i2,2024-25,Central Berkshire-Craneville,06350025, 392, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Central Berkshire-Becket Washington School,06350005, 65, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Central Berkshire-Nessacus Regional Middle School,06350305, 353, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2024-25,Central Berkshire-Wahconah Regional High,06350505, 450, 9, 2.0,"","","","","","","","", 7.4, 0.9, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Central Berkshire-Kittredge,06350035, 130, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Chelmsford-South Row,00560015, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2024-25,Chelmsford-Chelmsford High,00560505," 1,402", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +8.0,5,a-degr-i2,2024-25,Chelmsford-Col Moses Parker School,00560305, 778, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Chelmsford-Center Elementary School,00560005, 388, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Chelmsford-Charles D Harrington,00560025, 381, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Chelmsford-Byam School,00560030, 417, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Chelmsford-McCarthy Middle School,00560310, 808, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Chelsea-Edgar F. Hooks Elementary,00570030, 430, 1, 0.2, 0.0, 0.9, 0.0, 0.0,"","","","","","","","" +-12.0,1,a-degr-i2,2024-25,Chelsea-Chelsea High,00570505," 1,643", 164, 10.0,"","","","","","","","", 20.2, 10.7, 1.3, 3.6 +8.0,5,a-degr-i2,2024-25,Chelsea-Eugene Wright Science and Technology Academy,00570045, 436, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Chelsea-Clark Avenue School,00570050, 673, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Chelsea-Frank M Sokolowski Elementary,00570040, 472, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +-66.2,1,a-degr-i2,2024-25,Chelsea-Chelsea Opportunity Academy,00570515, 132, 49, 37.1,"","","","","","","","", 33.3, 25.5, 43.2, 52.2 +-25.4,1,a-degr-i2,2024-25,Chelsea-Chelsea Virtual Learning Academy,00570705, 54, 9, 16.7,"","","","","","","", 0.0, 42.9, 30.0, 0.0, 13.6 +8.0,5,a-degr-i2,2024-25,Chelsea-Shurtleff Early Childhood,00570003, 49, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Chelsea-Joseph A. Browne School,00570055, 487, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Chelsea-George F. Kelly Elementary,00570035, 527, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Chelsea-William A Berkowitz Elementary,00570025, 455, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2024-25,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 95, 1, 1.1, 7.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Chicopee-Chicopee Comprehensive High School,00610510," 1,192", 3, 0.3,"","","","","","","","", 0.3, 0.0, 0.0, 0.7 +6.4,5,a-degr-i2,2024-25,Chicopee-Chicopee High,00610505, 918, 7, 0.8,"","","","","","","","", 0.0, 0.0, 0.0, 3.2 +7.8,5,a-degr-i2,2024-25,Chicopee-Dupont Middle,00610310, 683, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Chicopee-Bellamy Middle,00610305, 776, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Chicopee-Gen John J Stefanik,00610090, 320, 1, 0.3, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2024-25,Chicopee-Streiber Memorial School,00610065, 193, 2, 1.0, 4.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Chicopee-Fairview Elementary,00610050, 295, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Chicopee-Lambert-Lavoie,00610040, 192, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Chicopee-Litwin,00610022, 325, 1, 0.3, 0.0, 4.5, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Chicopee-Bowie,00610020, 211, 1, 0.5, 0.0, 0.0, 0.0, 2.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Chicopee-Bowe,00610015, 344, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,Chicopee-Belcher,00610010, 119, 1, 0.8, 0.0, 1.6,"","","","","","","","","","" +6.8,5,a-degr-i2,2024-25,Chicopee-Barry,00610003, 308, 2, 0.6, 1.9, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Chicopee-Chicopee Academy,00610021, 92, 2, 2.2,"","","","","","","", 0.0, 11.1, 0.0, 3.4, 0.0 +8.0,5,a-degr-i2,2024-25,Christa McAuliffe Charter School (District)-Christa McAuliffe Charter School,04180305, 284, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-4.800000000000001,1,a-degr-i2,2024-25,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 78, 5, 6.4,"","","","","","","","","","", 12.5, 0.0 +8.0,5,a-degr-i2,2024-25,Clarksburg-Clarksburg Elementary,00630010, 170, 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,2024-25,Clinton-Clinton Senior High,00640505, 558, 11, 2.0,"","","","","","","","", 4.1, 2.1, 1.3, 0.0 +8.0,5,a-degr-i2,2024-25,Clinton-Clinton Middle School,00640305, 573, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Clinton-Clinton Elementary,00640050, 587, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 301, 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,2024-25,Cohasset-Deer Hill,00650005, 347, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Cohasset-Cohasset Middle School,00650305, 300, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Cohasset-Cohasset High School,00650505, 381, 1, 0.3,"","","","","","","","", 0.0, 0.0, 0.9, 0.0 +7.2,5,a-degr-i2,2024-25,Cohasset-Joseph Osgood,00650010, 229, 1, 0.4, 0.9, 0.0,"","","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205," 1,136", 2, 0.2, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 251, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Community Day Charter Public School (District)-Community Day Charter Public School,04400205, 948, 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,2024-25,Concord-Concord Middle,00670305, 643, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Concord-Alcott,00670005, 342, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Concord-Thoreau,00670020, 329, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Concord-Willard,00670030, 362, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Concord-Carlisle-Concord Carlisle High,06400505," 1,187", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +6.8,5,a-degr-i2,2024-25,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 361, 2, 0.6, 1.9, 0.0, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Conway-Conway Grammar,00680005, 113, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2024-25,Danvers-Willis E Thorpe,00710045, 254, 1, 0.4, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Danvers-Ivan G Smith,00710032, 332, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Danvers-Great Oak,00710015, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Danvers-Highlands,00710010, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Danvers-Riverside,00710030, 207, 1, 0.5, 0.0, 0.0, 0.0, 0.0, 2.4,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Danvers-Danvers High,00710505, 775, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +8.0,5,a-degr-i2,2024-25,Danvers-Holten Richmond Middle School,00710305, 745, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Dartmouth-Dartmouth Middle,00720050, 801, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Dartmouth-Joseph Demello,00720015, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Dartmouth-James M. Quinn School,00720040, 623, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Dartmouth-George H Potter,00720030, 335, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2024-25,Dartmouth-Dartmouth High,00720505, 894, 6, 0.7,"","","","","","","","", 0.5, 1.4, 0.8, 0.0 +7.2,5,a-degr-i2,2024-25,Dedham-Dedham Middle School,00730305, 555, 2, 0.4,"","","","","", 0.0, 1.1, 0.0,"","","","" +3.8,3.8,a-degr-i2,2024-25,Dedham-Dedham High,00730505, 707, 15, 2.1,"","","","","","","","", 5.4, 0.6, 2.0, 1.1 +7.0,5,a-degr-i2,2024-25,Dedham-Riverdale,00730045, 206, 1, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Dedham-Oakdale,00730030, 262, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Dedham-Greenlodge,00730025, 320, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Dedham-Avery,00730010, 321, 2, 0.6, 1.6, 1.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Deerfield-Deerfield Elementary,00740015, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 477, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" +7.4,5,a-degr-i2,2024-25,Dennis-Yarmouth-Station Avenue Elementary,06450025, 327, 1, 0.3, 0.0, 0.0, 1.1,"","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 491, 1, 0.2,"","","", 0.4, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2024-25,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 981, 15, 1.5,"","","","","","","", 0.4, 2.1, 1.7, 2.1, 1.6 +8.0,5,a-degr-i2,2024-25,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 188, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 246, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Dighton-Rehoboth-Palmer River,06500010, 474, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 479, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2024-25,Dighton-Rehoboth-Dighton Elementary,06500005, 365, 4, 1.1, 2.1, 2.5, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Dighton-Rehoboth-Dighton Middle School,06500305, 355, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +4.6,4.6,a-degr-i2,2024-25,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 592, 10, 1.7,"","","","","","","","", 2.9, 2.9, 1.4, 0.0 +7.4,5,a-degr-i2,2024-25,Douglas-Douglas Elementary School,00770015, 340, 1, 0.3,"", 1.2, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Douglas-Douglas Middle School,00770305, 284, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Douglas-Douglas High School,00770505, 264, 1, 0.4,"","","","","","","","", 0.0, 0.0, 1.4, 0.0 +8.0,5,a-degr-i2,2024-25,Douglas-Douglas Primary School,00770005, 78, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Dover-Chickering,00780005, 408, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 610, 1, 0.2,"","","","","","","","", 0.7, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 471, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +2.5999999999999996,2.6,a-degr-i2,2024-25,Dracut-Dracut Senior High,00790505, 786, 21, 2.7,"","","","","","","","", 6.1, 2.9, 1.4, 0.0 +7.0,5,a-degr-i2,2024-25,Dracut-Greenmont Avenue,00790030, 182, 1, 0.5, 3.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Dracut-Justus C. Richardson Middle School,00790410, 916, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Dracut-George H. Englesby Elementary School,00790045, 442, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Dracut-Joseph A Campbell Elementary,00790020, 454, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Dracut-Brookside Elementary,00790035, 394, 2, 0.5, 1.8, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2024-25,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 208, 3, 1.4, 0.0, 2.2, 2.9, 2.2, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Dudley-Charlton Reg-Dudley Middle School,06580305, 540, 1, 0.2,"","","","", 0.8, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Dudley-Charlton Reg-Heritage School,06580030, 425, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Dudley-Charlton Reg-Mason Road School,06580010, 119, 0, 0.0, 0.0,"","","","","","","","","","","" +6.8,5,a-degr-i2,2024-25,Dudley-Charlton Reg-Charlton Elementary,06580020, 155, 1, 0.6, 0.6,"","","","","","","","","","","" +-2.0,1,a-degr-i2,2024-25,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 938, 47, 5.0,"","","","","","","","", 12.2, 2.6, 3.9, 0.0 +7.4,5,a-degr-i2,2024-25,Dudley-Charlton Reg-Dudley Elementary,06580005, 315, 1, 0.3,"", 0.0, 0.8, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Dudley-Charlton Reg-Charlton Middle School,06580310, 631, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Duxbury-Alden School,00820004, 622, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Duxbury-Duxbury High,00820505, 802, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Duxbury-Duxbury Middle,00820305, 599, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Duxbury-Chandler Elementary,00820006, 405, 1, 0.2, 0.0, 0.5,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,East Bridgewater-Gordon W. Mitchell School,00830010, 612, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2024-25,East Bridgewater-Central,00830005, 261, 2, 0.8, 0.0, 1.6,"","","","","","","","","","" +7.8,5,a-degr-i2,2024-25,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 881, 1, 0.1,"","","","","","", 0.0, 0.0, 0.7, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,East Longmeadow-Mountain View,00870015, 286, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,East Longmeadow-Meadow Brook,00870013, 324, 1, 0.3, 0.6, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,East Longmeadow-Mapleshade,00870010, 297, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,East Longmeadow-East Longmeadow High,00870505, 750, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 +7.0,5,a-degr-i2,2024-25,East Longmeadow-Birchland Park,00870305, 590, 3, 0.5,"","","","","", 0.0, 0.0, 1.5,"","","","" +6.6,5,a-degr-i2,2024-25,Eastham-Eastham Elementary,00850005, 141, 1, 0.7, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Easthampton-Mountain View School,00860415, 865, 3, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8,"","","","" +2.5999999999999996,2.6,a-degr-i2,2024-25,Easthampton-Easthampton High,00860505, 377, 10, 2.7,"","","","","","","","", 2.9, 5.8, 1.3, 0.0 +7.8,5,a-degr-i2,2024-25,Easton-Easton Middle School,00880405, 798, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Easton-Richardson Olmsted School,00880025, 755, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Easton-Blanche A. Ames Elementary School,00880015, 432, 1, 0.2, 0.5, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2024-25,Easton-Oliver Ames High,00880505," 1,035", 1, 0.1,"","","","","","","","", 0.4, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Edgartown-Edgartown Elementary,00890005, 315, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +2.2,2.2,a-degr-i2,2024-25,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, 383, 11, 2.9,"","","","","","","","", 5.2, 3.0, 2.1, 0.0 +8.0,5,a-degr-i2,2024-25,Erving-Erving Elementary,00910030, 88, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2024-25,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505," 1,830", 2, 0.1,"","","","","","","","", 0.4, 0.0, 0.0, 0.0 +-3.0,1,a-degr-i2,2024-25,Everett-Everett High,00930505," 2,305", 126, 5.5,"","","","","","","","", 4.1, 7.7, 7.7, 2.0 +6.2,5,a-degr-i2,2024-25,Everett-Parlin School,00930058, 880, 8, 0.9, 0.0, 0.9, 4.2, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","" +2.5999999999999996,2.6,a-degr-i2,2024-25,Everett-Devens School,00930030, 37, 1, 2.7,"","","","","","", 0.0,"","","","","" +7.6,5,a-degr-i2,2024-25,Everett-George Keverian School,00930028, 804, 2, 0.2, 0.0, 0.0, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Everett-Lafayette School,00930038, 900, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +5.2,5,a-degr-i2,2024-25,Everett-Sumner G. Whittier School,00930010, 563, 8, 1.4, 4.3, 3.3, 0.0, 2.9, 0.0, 1.4, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2024-25,Everett-Webster School,00930015, 281, 2, 0.7, 1.8, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Everett-Madeline English School,00930018, 677, 2, 0.3, 0.0, 0.0, 0.0, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Excel Academy Charter (District)-Excel Academy Charter School,04100205," 1,377", 8, 0.6,"","","","", 0.0, 1.1, 1.1, 0.0, 0.6, 0.6, 1.2, 0.0 +0.5999999999999996,1,a-degr-i2,2024-25,Fairhaven-Fairhaven High,00940505, 567, 21, 3.7,"","","","","","","","", 6.0, 5.4, 3.4, 0.0 +6.4,5,a-degr-i2,2024-25,Fairhaven-East Fairhaven,00940010, 241, 2, 0.8, 2.6, 0.0, 1.8, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Fairhaven-Leroy Wood,00940030, 351, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Fairhaven-Hastings Middle,00940305, 415, 1, 0.2,"","","","","", 0.8, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Fall River-Henry Lord Community School,00950017, 714, 2, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0,"","","","" +-14.2,1,a-degr-i2,2024-25,Fall River-Resiliency Preparatory Academy,00950525, 171, 19, 11.1,"","","","","","", 0.0, 0.0, 3.6, 0.0, 11.4, 30.2 +2.5999999999999996,2.6,a-degr-i2,2024-25,Fall River-B M C Durfee High,00950505," 2,610", 70, 2.7,"","","","","","","","", 1.7, 4.1, 2.8, 1.9 +8.0,5,a-degr-i2,2024-25,Fall River-Matthew J Kuss Middle,00950320, 646, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Fall River-Morton Middle,00950315, 751, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Fall River-Westall Elementary,00950150, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Fall River-Samuel Watson,00950145, 232, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Fall River-Spencer Borden,00950130, 472, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Fall River-James Tansey,00950140, 237, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Fall River-Talbot Innovation School,00950305, 582, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +-2.8000000000000007,1,a-degr-i2,2024-25,Fall River-Stone PK-12 School,00950340, 56, 3, 5.4,"","","","", 0.0,"","", 14.3, 9.1, 11.1,"","" +7.6,5,a-degr-i2,2024-25,Fall River-North End Elementary,00950005, 516, 1, 0.2, 0.0, 0.0, 0.0, 1.1, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Fall River-Carlton M. Viveiros Elementary School,00950009, 601, 1, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Fall River-Mary Fonseca Elementary School,00950011, 443, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Fall River-Letourneau Elementary School,00950013, 494, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Fall River-John J Doran,00950045, 433, 2, 0.5, 2.2, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Fall River-William S Greene,00950065, 595, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Falmouth-East Falmouth Elementary,00960005, 156, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Falmouth-Lawrence,00960405, 474, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Falmouth-Morse Pond School,00960305, 472, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2024-25,Falmouth-Teaticket,00960015, 203, 1, 0.5, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" +1.4000000000000004,1.4,a-degr-i2,2024-25,Falmouth-Falmouth High,00960505, 707, 23, 3.3,"","","","","","","","", 8.2, 3.7, 1.3, 0.0 +8.0,5,a-degr-i2,2024-25,Falmouth-North Falmouth Elementary,00960030, 242, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Falmouth-Mullen-Hall,00960020, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Farmington River Reg-Farmington River Elementary,06620020, 96, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Fitchburg-Memorial Middle School,00970048, 601, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Fitchburg-McKay Elementary School,00970340, 754, 1, 0.1, 0.0, 0.6, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Fitchburg-Fitchburg High,00970505," 1,220", 6, 0.5,"","","","","","","","", 0.6, 0.6, 0.3, 0.4 +-20.8,1,a-degr-i2,2024-25,Fitchburg-Goodrich Academy,00970510, 160, 23, 14.4,"","","","","","","","","", 36.4, 6.3, 8.5 +8.0,5,a-degr-i2,2024-25,Fitchburg-Crocker Elementary,00970016, 610, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Fitchburg-Arthur M Longsjo Middle School,00970315, 614, 2, 0.3,"","","","","", 0.5, 0.0, 0.5,"","","","" +8.0,5,a-degr-i2,2024-25,Fitchburg-Reingold Elementary,00970043, 679, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Florida-Abbott Memorial,00980005, 66, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0,"","","","" +6.2,5,a-degr-i2,2024-25,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 213, 2, 0.9,"","","","","","", 0.0, 0.0, 2.8, 0.0, 0.0, 2.9 +8.0,5,a-degr-i2,2024-25,Foxborough-John J Ahern,00990405, 772, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Foxborough-Charles Taylor Elementary,00990050, 237, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Foxborough-Vincent M Igo Elementary,00990020, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Foxborough-Mabelle M Burrell,00990015, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2024-25,Foxborough-Foxborough High,00990505, 732, 4, 0.5,"","","","","","","","", 0.0, 0.0, 0.5, 1.5 +7.4,5,a-degr-i2,2024-25,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550," 1,358", 4, 0.3, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 1.3, 1.3, 0.0, 1.2 +-10.399999999999999,1,a-degr-i2,2024-25,Framingham-Framingham High School,01000515," 2,533", 233, 9.2,"","","","","","","","", 19.6, 7.7, 5.1, 1.5 +8.0,5,a-degr-i2,2024-25,Framingham-King Elementary School,01000005, 315, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Framingham-Hemenway,01000015, 453, 2, 0.4, 0.0, 0.0, 0.0, 1.0, 1.1,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Mary E Stapleton Elementary,01000045, 299, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Framingham-Cameron Middle School,01000302, 592, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Fuller Middle,01000305, 592, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Framingham-Brophy,01000006, 421, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Charlotte A Dunning,01000007, 357, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Barbieri Elementary,01000035, 562, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Potter Road,01000039, 458, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Miriam F McCarthy School,01000050, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Harmony Grove Elementary,01000055, 373, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Framingham-Walsh Middle,01000310, 785, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2024-25,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 388, 4, 1.0,"","","","","","", 0.0, 0.0, 0.0, 1.6, 5.5, 0.0 +8.0,5,a-degr-i2,2024-25,Franklin-J F Kennedy Memorial,01010013, 287, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Franklin-Franklin High,01010505," 1,442", 8, 0.6,"","","","","","","","", 1.2, 0.6, 0.3, 0.3 +8.0,5,a-degr-i2,2024-25,Franklin-Horace Mann,01010405, 407, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Franklin-Remington Middle,01010310, 358, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Franklin-Annie Sullivan Middle School,01010040, 322, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Franklin-Parmenter,01010032, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Franklin-Oak Street Elementary,01010030, 335, 1, 0.3, 0.0, 0.0, 1.6, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Franklin-Jefferson Elementary,01010010, 271, 1, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Franklin-Helen Keller Elementary,01010012, 457, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 643, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Freetown-Lakeville-Assawompset Elementary School,06650002, 329, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Freetown-Lakeville-George R Austin Intermediate School,06650015, 462, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Freetown-Lakeville-Apponequet Regional High,06650505, 635, 1, 0.2,"","","","","","","","", 0.0, 0.7, 0.0, 0.0 +7.8,5,a-degr-i2,2024-25,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 699, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Freetown-Lakeville-Freetown Elementary School,06650001, 245, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.2,5,a-degr-i2,2024-25,Frontier-Frontier Regional,06700505, 582, 5, 0.9,"","","","","","", 0.0, 0.0, 2.1, 1.4, 2.1, 0.0 +7.6,5,a-degr-i2,2024-25,Gardner-Gardner Middle School,01030405, 514, 1, 0.2,"","","","", 0.0, 0.6, 0.0,"","","","","" +8.0,5,a-degr-i2,2024-25,Gardner-Gardner Elementary School,01030001, 789, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2024-25,Gardner-Gardner High,01030505, 804, 25, 3.1,"","","","","","","", 0.0, 12.5, 2.0, 0.5, 0.6 +-22.8,1,a-degr-i2,2024-25,Gardner-Gardner Academy for Learning and Technology,01030515, 123, 19, 15.4,"","","","","","","","", 53.3, 30.0, 9.5, 2.2 +8.0,5,a-degr-i2,2024-25,Gateway-Littleville Elementary School,06720143, 187, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2024-25,Gateway-Gateway Regional School,06720505, 331, 5, 1.5,"","","","","", 0.0, 0.0, 0.0, 5.3, 2.1, 5.3, 0.0 +5.2,5,a-degr-i2,2024-25,Gateway-Chester Elementary,06720059, 72, 1, 1.4, 5.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Georgetown-Georgetown Middle School,01050305, 187, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Georgetown-Penn Brook,01050010, 577, 3, 0.5, 1.1, 0.0, 0.0, 1.1, 1.0, 0.0,"","","","","","" +4.2,4.2,a-degr-i2,2024-25,Georgetown-Georgetown High School,01050505, 268, 5, 1.9,"","","","","","","","", 6.9, 0.0, 0.0, 0.0 +5.8,5,a-degr-i2,2024-25,Gill-Montague-Gill Elementary,06740005, 92, 1, 1.1, 8.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2024-25,Gill-Montague-Turners Fall High,06740505, 197, 2, 1.0,"","","","","","","","", 0.0, 0.0, 0.0, 4.3 +5.4,5,a-degr-i2,2024-25,Gill-Montague-Great Falls Middle,06740310, 228, 3, 1.3,"","","","","", 0.0, 1.2, 2.4,"","","","" +3.0,3.0,a-degr-i2,2024-25,Gill-Montague-Hillcrest Elementary School,06740015, 40, 1, 2.5, 2.5,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Gill-Montague-Sheffield Elementary School,06740050, 199, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 508, 3, 0.6,"","","","", 0.0, 2.3, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0 +-1.8000000000000007,1,a-degr-i2,2024-25,Gloucester-Gloucester High,01070505, 769, 38, 4.9,"","","","","","","","", 10.1, 6.1, 0.0, 1.7 +7.6,5,a-degr-i2,2024-25,Gloucester-Ralph B O'Maley Middle,01070305, 619, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Gloucester-Plum Cove School,01070042, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Gloucester-East Veterans Elementary School,01070030, 375, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,Gloucester-West Parish,01070050, 320, 3, 0.9, 3.2, 0.0, 0.0, 0.0, 1.5,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Gloucester-Beeman Memorial,01070010, 244, 1, 0.4, 0.0, 0.0, 0.0, 1.8, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Grafton-North Street Elementary School,01100030, 575, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Grafton-North Grafton Elementary,01100025, 90, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Grafton-Grafton Middle,01100305, 478, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Grafton-Grafton High School,01100505, 899, 5, 0.6,"","","","","","","","", 1.4, 0.8, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Grafton-Millbury Street Elementary School,01100200, 585, 2, 0.3,"", 0.8, 0.8, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Grafton-South Grafton Elementary,01100005, 123, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Granby-East Meadow,01110004, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Granby-Granby Jr Sr High School,01110505, 290, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +-13.399999999999999,1,a-degr-i2,2024-25,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900," 1,164", 125, 10.7, 5.7, 2.5, 0.0, 2.5, 5.1, 0.0, 2.0, 3.9, 25.0, 20.5, 14.2, 7.9 +8.0,5,a-degr-i2,2024-25,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605," 1,463", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2024-25,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605," 1,837", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +8.0,5,a-degr-i2,2024-25,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 2,297", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605," 2,151", 5, 0.2,"","","","","","","","", 0.2, 0.5, 0.0, 0.2 +6.8,5,a-degr-i2,2024-25,Greenfield-Discovery School at Four Corners,01140025, 161, 1, 0.6, 3.1, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Greenfield-Greenfield Middle,01140305, 325, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +4.4,4.4,a-degr-i2,2024-25,Greenfield-Greenfield High,01140505, 394, 7, 1.8,"","","","","","","", 0.0, 5.8, 2.6, 1.4, 0.0 +8.0,5,a-degr-i2,2024-25,Greenfield-Newton School,01140035, 128, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Greenfield-Federal Street School,01140010, 153, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2024-25,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 739, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 1.1,"","","","" +8.0,5,a-degr-i2,2024-25,Groton-Dunstable-Florence Roche School,06730010, 514, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Groton-Dunstable-Swallow/Union School,06730005, 162, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Groton-Dunstable-Groton Dunstable Regional,06730505, 651, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hadley-Hadley Elementary,01170015, 237, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2024-25,Hadley-Hopkins Academy,01170505, 203, 2, 1.0,"","","","","","", 0.0, 2.3, 4.2, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2024-25,Halifax-Halifax Elementary,01180005, 450, 2, 0.4, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Hamilton-Wenham-Cutler School,06750010, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Hamilton-Wenham-Winthrop School,06750015, 252, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Hamilton-Wenham-Bessie Buker Elementary,06750007, 217, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 448, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hamilton-Wenham-Miles River Middle,06750310, 391, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.8,3.8,a-degr-i2,2024-25,Hampden Charter School of Science (District)-Hampden Charter School of Science,04990305, 938, 20, 2.1,"","","","","", 4.2, 3.3, 0.7, 2.9, 3.2, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hampden-Wilbraham-Mile Tree Elementary,06800025, 161, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Hampden-Wilbraham-Soule Road,06800030, 321, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Hampden-Wilbraham-Stony Hill School,06800050, 317, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Hampden-Wilbraham-Wilbraham Middle,06800310, 613, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +5.2,5,a-degr-i2,2024-25,Hampden-Wilbraham-Minnechaug Regional High,06800505, 983, 14, 1.4,"","","","","","","","", 4.0, 1.3, 0.0, 0.4 +7.0,5,a-degr-i2,2024-25,Hampden-Wilbraham-Green Meadows Elementary,06800005, 219, 1, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Hampshire-Hampshire Regional High,06830505, 716, 3, 0.4,"","","","","","", 0.0, 0.6, 0.0, 0.9, 1.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hancock-Hancock Elementary,01210005, 37, 0, 0.0, 0.0, 0.0,"","", 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Hanover-Hanover Middle,01220305, 826, 1, 0.1,"","","","", 0.0, 0.5, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Hanover-Hanover High,01220505, 663, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.7, 0.6 +8.0,5,a-degr-i2,2024-25,Hanover-Center Elementary,01220005, 582, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2024-25,Hanover-Cedar Elementary,01220004, 205, 1, 0.5, 0.5,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Harvard-The Bromfield Middle School,01250305, 244, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Harvard-Hildreth Elementary School,01250005, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Harvard-The Bromfield High School,01250505, 328, 1, 0.3,"","","","","","","","", 0.0, 1.3, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hatfield-Smith Academy,01270505, 109, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hatfield-Hatfield Elementary,01270005, 156, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.0,3.0,a-degr-i2,2024-25,Haverhill-Bartlett School and Assessment Center,01280073, 40, 1, 2.5,"","", 0.0,"","", 0.0,"","","","", 16.7,"" +6.6,5,a-degr-i2,2024-25,Haverhill-Pentucket Lake Elementary,01280054, 433, 3, 0.7, 0.0, 0.0, 1.3, 1.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Haverhill-Dr Paul Nettle,01280050, 503, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-3.8000000000000007,1,a-degr-i2,2024-25,Haverhill-Greenleaf Academy,01280033, 34, 2, 5.9,"","","","","","","","", 16.7, 0.0, 0.0,"" +7.8,5,a-degr-i2,2024-25,Haverhill-Caleb Dustin Hunking School,01280030, 988, 1, 0.1, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2024-25,Haverhill-Bradford Elementary,01280008, 375, 4, 1.1, 1.2, 1.0, 1.0, 1.1,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Haverhill-Consentino Middle School,01280100, 805, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +3.0,3.0,a-degr-i2,2024-25,Haverhill-Haverhill High,01280505," 1,896", 48, 2.5,"","","","","","","","", 6.3, 2.4, 0.4, 0.8 +6.8,5,a-degr-i2,2024-25,Haverhill-Tilton,01280075, 356, 2, 0.6, 0.0, 2.5, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Haverhill-John G Whittier,01280085, 487, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Haverhill-Walnut Square,01280080, 117, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +-1.0,1,a-degr-i2,2024-25,Haverhill-Gateway Academy,01280515, 156, 7, 4.5,"","","","","","", 0.0, 6.7, 0.0, 2.9, 14.8, 2.4 +7.6,5,a-degr-i2,2024-25,Haverhill-Golden Hill,01280026, 404, 1, 0.2, 0.0, 0.0, 1.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Haverhill-Silver Hill Elementary School,01280067, 394, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Hawlemont-Hawlemont Regional,06850005, 58, 0, 0.0, 0.0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 268, 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,2024-25,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 198, 1, 0.5, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Hingham-Plymouth River,01310019, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Hingham-East Elementary School,01310005, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Hingham-South Elementary,01310020, 417, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Hingham-Hingham High,01310505," 1,060", 4, 0.4,"","","","","","","","", 1.1, 0.4, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hingham-Hingham Middle School,01310410, 798, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Hingham-Wm L Foster Elementary,01310010, 330, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Holbrook-John F Kennedy,01330018, 520, 3, 0.6, 2.1, 0.0, 1.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,Holbrook-Holbrook Middle High School,01330505, 659, 6, 0.9,"","","","","", 0.8, 0.9, 0.0, 1.3, 3.9, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Holland-Holland Elementary,01350005, 156, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Holliston-Robert H. Adams Middle School,01360305, 626, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Holliston-Placentino Elementary,01360010, 369, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Holliston-Miller School,01360007, 649, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Holliston-Holliston High,01360505, 805, 3, 0.4,"","","","","","","","", 0.0, 1.5, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Holyoke-Holyoke STEM Academy,01370320, 289, 1, 0.3,"","","","","", 1.1, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Holyoke-Lt Elmer J McMahon Elementary,01370015, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Holyoke-E N White Elementary,01370045, 357, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Holyoke-H.B. Lawrence School,01370070, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Holyoke-Maurice A Donahue Elementary,01370060, 291, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.8,2.8,a-degr-i2,2024-25,Holyoke-Holyoke High,01370505," 1,569", 41, 2.6,"","","","","","","","", 0.3, 0.0, 0.0, 9.9 +8.0,5,a-degr-i2,2024-25,Holyoke-Kelly Elementary,01370040, 308, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Holyoke-Morgan Full Service Community School,01370025, 232, 1, 0.4, 0.0, 0.0, 2.3, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Holyoke-Joseph Metcalf School,01370003, 213, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Holyoke-Lt Clayre Sullivan Elementary,01370055, 463, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-1.1999999999999993,1,a-degr-i2,2024-25,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 609, 28, 4.6, 2.4, 0.0, 6.9, 10.3, 10.0, 5.8, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 304, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +7.2,5,a-degr-i2,2024-25,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 247, 1, 0.4, 0.0, 1.2, 0.0,"","","","","","","","","" +6.0,5,a-degr-i2,2024-25,Hoosac Valley Regional-Hoosac Valley High School,06030505, 296, 3, 1.0,"","","","","","","", 0.0, 5.4, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Hopedale-Memorial,01380010, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Hopedale-Hopedale Jr Sr High,01380505, 453, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Hopkinton-Hopkinton High,01390505," 1,263", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.3, 0.3 +8.0,5,a-degr-i2,2024-25,Hopkinton-Hopkinton Middle School,01390305, 996, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Hopkinton-Hopkins Elementary School,01390015, 682, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Hopkinton-Elmwood,01390010, 648, 2, 0.3,"", 0.6, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2024-25,Hopkinton-Marathon Elementary School,01390005, 285, 1, 0.4, 0.4,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Hudson-David J. Quinn Middle School,01410410, 546, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +7.4,5,a-degr-i2,2024-25,Hudson-C A Farley,01410030, 362, 1, 0.3, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2024-25,Hudson-Mulready Elementary,01410007, 181, 1, 0.6, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Hudson-Forest Avenue Elementary,01410015, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Hudson-Hudson High,01410505, 784, 17, 2.2,"","","","","","","", 0.0, 4.2, 4.9, 2.5, 0.6 +8.0,5,a-degr-i2,2024-25,Hull-Lillian M Jacobs,01420015, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","" +7.2,5,a-degr-i2,2024-25,Hull-Hull High,01420505, 278, 1, 0.4,"","","","","","","", 0.0, 1.9, 0.0, 0.0, 0.0 +3.4000000000000004,3.4,a-degr-i2,2024-25,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 770, 18, 2.3,"","","","", 0.0, 0.0, 1.0, 0.0, 11.6, 5.3, 1.1, 1.1 +8.0,5,a-degr-i2,2024-25,Ipswich-Ipswich Middle School,01440305, 377, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Ipswich-Winthrop,01440015, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Ipswich-Paul F Doyon Memorial,01440007, 291, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Ipswich-Ipswich High,01440505, 440, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 574, 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,2024-25,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010," 1,512", 7, 0.5, 0.8, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 1.6, 2.3, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,King Philip-King Philip Regional High,06900505," 1,110", 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.3, 0.7 +7.4,5,a-degr-i2,2024-25,King Philip-King Philip Middle School,06900510, 706, 2, 0.3,"","","","","","", 0.3, 0.3,"","","","" +8.0,5,a-degr-i2,2024-25,Kingston-Kingston Intermediate,01450020, 645, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Kingston-Kingston Elementary,01450005, 332, 1, 0.3, 0.6, 0.0,"","","","","","","","","","" +-21.8,1,a-degr-i2,2024-25,Lawrence-RISE Academy,01490615, 74, 11, 14.9,"","","","","","","","","", 0.0, 7.4, 38.1 +8.0,5,a-degr-i2,2024-25,Lawrence-Arlington Middle School,01490017, 543, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Lawrence-Emily G Wetherbee,01490080, 444, 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,2024-25,Lawrence-Spark Academy,01490085, 443, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Leonard Middle School,01490090, 310, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.4,5,a-degr-i2,2024-25,Lawrence-Lawrence High School,01490515," 3,418", 44, 1.3,"","","","","","","","", 3.9, 0.9, 0.1, 0.2 +8.0,5,a-degr-i2,2024-25,Lawrence-Frost Middle School,01490525, 508, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-47.6,1,a-degr-i2,2024-25,Lawrence-High School Learning Center,01490536, 198, 55, 27.8,"","","","","","","","","", 25.0, 2.7, 32.6 +8.0,5,a-degr-i2,2024-25,Lawrence-School for Exceptional Studies,01490537, 108, 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,2024-25,Lawrence-John K Tarbox,01490075, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-James F Hennessey,01490020, 159, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Parthum Middle School,01490027, 585, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Lawrence-Robert Frost,01490018, 466, 1, 0.2, 0.0, 0.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Gerard A. Guilmette,01490022, 485, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Guilmette Middle School,01490025, 457, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Francis M Leahy,01490040, 456, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Oliver Elementary School,01490048, 469, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Oliver Middle School,01490049, 348, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.6,5,a-degr-i2,2024-25,Lawrence-Edward F. Parthum,01490053, 561, 7, 1.2, 2.8, 1.5, 0.7, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2024-25,Lawrence-South Lawrence East Elementary School,01490004, 666, 1, 0.2, 0.0, 0.0, 0.8, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Lawrence-Arlington Elementary,01490009, 454, 1, 0.2, 0.8, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lawrence-Alexander B Bruce,01490015, 462, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2024-25,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 690, 6, 0.9, 1.0, 1.0, 0.0, 3.4, 1.3, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 591, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Lee-Lee Elementary,01500025, 281, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8,"","","","","","" +6.2,5,a-degr-i2,2024-25,Lee-Lee Middle/High School,01500505, 327, 3, 0.9,"","","","","","", 0.0, 0.0, 1.7, 1.8, 2.6, 0.0 +8.0,5,a-degr-i2,2024-25,Leicester-Leicester Elementary,01510005, 380, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Leicester-Leicester Middle,01510015, 394, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +1.7999999999999998,1.8,a-degr-i2,2024-25,Leicester-Leicester High,01510505, 384, 12, 3.1,"","","","","","","","", 6.5, 7.2, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Lenox-Lenox Memorial High,01520505, 437, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8 +8.0,5,a-degr-i2,2024-25,Lenox-Morris,01520015, 265, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Leominster-Leominster Academy,01530705, 32, 0, 0.0,"","","","","","","","","", 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2024-25,Leominster-Center For Technical Education Innovation,01530605, 811, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 +-13.600000000000001,1,a-degr-i2,2024-25,Leominster-Leominster Center for Excellence,01530515, 65, 7, 10.8,"","","","","","","","","", 0.0, 0.0, 23.3 +8.0,5,a-degr-i2,2024-25,Leominster-Sky View Middle School,01530320, 869, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.2,4.2,a-degr-i2,2024-25,Leominster-Leominster High School,01530505," 1,055", 20, 1.9,"","","","","","","","", 7.1, 1.6, 1.6, 0.0 +8.0,5,a-degr-i2,2024-25,Leominster-Samoset School,01530045, 495, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Leominster-Northwest,01530030, 665, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Leominster-Johnny Appleseed,01530025, 595, 1, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Leominster-Frances Drake School,01530010, 406, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Leominster-Fall Brook,01530007, 596, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Leverett-Leverett Elementary,01540005, 105, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Lexington-Bridge,01550006, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lexington-Maria Hastings,01550035, 510, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Lexington-Lexington High,01550505," 2,405", 2, 0.1,"","","","","","","","", 0.0, 0.2, 0.0, 0.2 +7.8,5,a-degr-i2,2024-25,Lexington-Wm Diamond Middle,01550310, 936, 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lexington-Fiske,01550015, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Lexington-Harrington,01550030, 323, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Lexington-Jonas Clarke Middle,01550305, 796, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lexington-Bowman,01550008, 375, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lexington-Joseph Estabrook,01550010, 438, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 563, 5, 0.9,"","","","","", 1.1, 0.0, 2.1, 1.2, 1.2, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Lincoln-Hanscom School,01570305, 377, 1, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Lincoln-Lincoln School,01570025, 474, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","" +6.4,5,a-degr-i2,2024-25,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505," 1,441", 12, 0.8,"","","","","","","","", 0.6, 2.0, 0.5, 0.3 +5.6,5,a-degr-i2,2024-25,Littleton-Shaker Lane Elementary,01580005, 251, 3, 1.2, 2.4, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2024-25,Littleton-Littleton High School,01580505, 481, 2, 0.4,"","","","","","","","", 0.0, 0.9, 0.0, 0.8 +8.0,5,a-degr-i2,2024-25,Littleton-Russell St Elementary,01580015, 375, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Littleton-Littleton Middle School,01580305, 373, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Longmeadow-Blueberry Hill,01590005, 306, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Longmeadow-Glenbrook Middle,01590017, 327, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Longmeadow-Center,01590010, 343, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Longmeadow-Williams Middle,01590305, 337, 1, 0.3,"","","","","", 0.0, 0.9, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Longmeadow-Longmeadow High,01590505, 897, 4, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.7 +7.4,5,a-degr-i2,2024-25,Longmeadow-Wolf Swamp Road,01590025, 314, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" +-18.6,1,a-degr-i2,2024-25,Lowell-The Career Academy,01600515, 83, 11, 13.3,"","","","","","","","", 0.0, 12.5, 0.0, 32.0 +7.6,5,a-degr-i2,2024-25,Lowell-Dr An Wang School,01600345, 663, 1, 0.2,"","","","", 0.0, 0.0, 0.6, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Lowell-Pyne Arts,01600018, 390, 1, 0.3, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Charles W Morey,01600030, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2024-25,Lowell-John J Shaughnessy,01600050, 369, 1, 0.3, 0.0, 1.2, 0.0, 0.0,"","","","","","","","" +5.6,5,a-degr-i2,2024-25,Lowell-Charlotte M Murkland Elementary,01600080, 336, 4, 1.2, 3.3, 0.0, 0.0, 1.1,"","","","","","","","" +7.2,5,a-degr-i2,2024-25,Lowell-James S Daley Middle School,01600315, 669, 3, 0.4,"","","","", 0.0, 0.0, 0.0, 1.9,"","","","" +7.6,5,a-degr-i2,2024-25,Lowell-James Sullivan Middle School,01600340, 625, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Dr Gertrude Bailey,01600002, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Rogers STEM Academy,01600005, 814, 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,2024-25,Lowell-Joseph McAvinnue,01600010, 334, 1, 0.3, 0.0, 1.2, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Greenhalge,01600015, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +-4.4,1,a-degr-i2,2024-25,Lowell-Dr. Janice Adie Day School,01600605, 65, 4, 6.2,"","","","", 0.0, 0.0, 0.0, 0.0,"","","", 50.0 +6.8,5,a-degr-i2,2024-25,Lowell-Abraham Lincoln,01600020, 360, 2, 0.6, 0.0, 1.1, 1.1, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Moody Elementary,01600027, 182, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Pawtucketville Memorial,01600036, 357, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2024-25,Lowell-Peter W Reilly,01600040, 355, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Washington,01600055, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2024-25,Lowell-S Christa McAuliffe Elementary,01600075, 365, 1, 0.3, 0.0, 0.0, 1.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Laura Lee Therapeutic Day School,01600085, 15, 0, 0.0,"","","","","","","", 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Lowell-Bartlett Community Partnership,01600090, 369, 1, 0.3, 0.0, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lowell-B.F. Butler Middle School,01600310, 516, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-14.2,1,a-degr-i2,2024-25,Lowell-Leblanc Therapeutic Day School,01600320, 36, 4, 11.1,"","","","","","","","","", 25.0, 0.0, 16.7 +8.0,5,a-degr-i2,2024-25,Lowell-Henry J Robinson Middle,01600330, 600, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lowell-Kathryn P. Stoklosa Middle School,01600360, 613, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-5.6,1,a-degr-i2,2024-25,Lowell-Lowell High,01600505," 3,434", 234, 6.8,"","","","","","","","", 15.8, 3.1, 1.6, 4.3 +8.0,5,a-degr-i2,2024-25,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 680, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-54.0,1,a-degr-i2,2024-25,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 126, 39, 31.0,"","","","","","","","", 71.4, 30.3, 22.4, 35.1 +4.2,4.2,a-degr-i2,2024-25,Ludlow-Ludlow Senior High,01610505, 732, 14, 1.9,"","","","","","","","", 3.4, 2.3, 1.5, 0.5 +8.0,5,a-degr-i2,2024-25,Ludlow-Harris Brook Elementary School,01610665, 593, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Ludlow-Paul R Baird Middle,01610305, 513, 2, 0.4,"","","","","", 0.0, 0.5, 0.6,"","","","" +8.0,5,a-degr-i2,2024-25,Ludlow-East Street Elementary School,01610010, 134, 0, 0.0, 0.0,"","","","","","","","","","","" +7.4,5,a-degr-i2,2024-25,Lunenburg-Turkey Hill Elementary School,01620025, 345, 1, 0.3,"","", 0.0, 0.0, 0.9,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Lunenburg-Lunenburg High,01620505, 452, 1, 0.2,"","","","","","","","", 0.0, 0.9, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Lunenburg-Lunenburg Middle School,01620305, 382, 1, 0.3,"","","","","", 0.7, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Lunenburg-Lunenburg Primary School,01620010, 220, 1, 0.5, 0.0, 0.9,"","","","","","","","","","" +-11.2,1,a-degr-i2,2024-25,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 94, 9, 9.6,"","","","","","", 0.0, 0.0, 43.8, 5.9, 0.0, 6.7 +7.0,5,a-degr-i2,2024-25,Lynn-Breed Middle School,01630405," 1,265", 6, 0.5,"","","","","", 0.0, 1.1, 0.3,"","","","" +7.8,5,a-degr-i2,2024-25,Lynn-Lynn Vocational Technical Institute,01630605," 1,481", 1, 0.1,"", 0.0,"","","","","", 0.0, 0.3, 0.0, 0.0, 0.0 +5.4,5,a-degr-i2,2024-25,Lynn-Fredrick Douglass Collegiate Academy,01630575, 235, 3, 1.3,"","","","","","","","", 1.4, 2.6, 0.0,"" +7.6,5,a-degr-i2,2024-25,Lynn-Pickering Middle,01630420, 583, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +4.2,4.2,a-degr-i2,2024-25,Lynn-Classical High,01630505," 1,795", 35, 1.9,"","","","","","","","", 5.2, 3.2, 0.4, 0.0 +8.0,5,a-degr-i2,2024-25,Lynn-Lynn English High,01630510," 2,062", 1, 0.0,"","","","","","","","", 0.0, 0.2, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Lynn-Thurgood Marshall Mid,01630305," 1,310", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Sewell-Anderson,01630085, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Tracy,01630100, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Lynn-A Drewicz Elementary,01630016, 423, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2024-25,Lynn-Edward A Sisson,01630095, 389, 4, 1.0, 3.1, 2.7, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2024-25,Lynn-Lynn Woods,01630075, 131, 2, 1.5, 3.6, 0.0, 0.0, 2.6, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-William R Fallon,01630080, 28, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Capt William G Shoemaker,01630090, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,Lynn-Washington Elementary School,01630005, 387, 3, 0.8, 0.0, 1.3, 1.3, 1.3, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Lynn-Aborn,01630011, 184, 1, 0.5, 0.0, 0.0, 0.0, 0.0, 2.9,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Brickett Elementary,01630020, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Julia F Callahan,01630030, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Cobbet Elementary,01630035, 507, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Lynn-Wm P Connery,01630040, 482, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-E J Harrington,01630045, 508, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Robert L Ford,01630050, 410, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Hood,01630055, 438, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynn-Ingalls,01630060, 528, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Lynn-Lincoln-Thomson,01630070, 180, 1, 0.6, 0.0, 2.3, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Lynnfield-Lynnfield High,01640505, 588, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Lynnfield-Lynnfield Middle School,01640405, 698, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Lynnfield-Summer Street,01640020, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2024-25,Lynnfield-Huckleberry Hill,01640010, 342, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 99, 0, 0.0,"","","","","","","","","","", 0.0, 0.0 +-5.800000000000001,1,a-degr-i2,2024-25,Malden-Malden High,01650505," 1,878", 130, 6.9,"","","","","","","","", 13.8, 7.5, 3.2, 3.0 +8.0,5,a-degr-i2,2024-25,Malden-Forestdale,01650027, 489, 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,2024-25,Malden-Salemwood,01650057, 922, 2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.8,"","","","" +7.4,5,a-degr-i2,2024-25,Malden-Linden,01650047, 728, 2, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Malden-Beebe,01650003, 821, 1, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Malden-Ferryway,01650013, 811, 2, 0.2, 1.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 279, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Manchester Essex Regional-Essex Elementary,06980020, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 392, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Mansfield-Mansfield High,01670505, 987, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Mansfield-Everett W Robinson,01670007, 469, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Mansfield-Jordan/Jackson Elementary,01670014, 760, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Mansfield-Harold L Qualters Middle,01670035, 750, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +-74.4,1,a-degr-i2,2024-25,Map Academy Charter School (District)-Map Academy Charter School,35170505, 301, 124, 41.2,"","","","","","","","", 70.1, 45.9, 27.6, 26.2 +6.6,5,a-degr-i2,2024-25,Marblehead-Marblehead High,01680505, 861, 6, 0.7,"","","","","","","","", 1.0, 0.5, 1.0, 0.4 +8.0,5,a-degr-i2,2024-25,Marblehead-Marblehead Veterans Middle School,01680300, 411, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Marblehead-Lucretia and Joseph Brown School,01680030, 317, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Marblehead-Village School,01680016, 529, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Marblehead-Glover,01680020, 218, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.0,5,a-degr-i2,2024-25,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 192, 1, 0.5,"","","", 0.0, 0.0, 0.0, 2.4, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Marion-Sippican,01690005, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Marlborough-Charles Jaworek School,01700030, 532, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Marlborough-1 LT Charles W. Whitcomb School,01700045, 965, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Marlborough-Richer,01700025, 486, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Marlborough-Goodnow Brothers Elementary School,01700020, 665, 3, 0.5, 0.0, 1.5, 0.7, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Marlborough-Francis J Kane,01700008, 472, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.2,4.2,a-degr-i2,2024-25,Marlborough-Marlborough High,01700505, 972, 18, 1.9,"","","","","","","","", 1.0, 0.0, 0.8, 4.8 +7.2,5,a-degr-i2,2024-25,Marshfield-Marshfield High,01710505," 1,117", 5, 0.4,"","","","","","","","", 0.8, 0.4, 0.0, 0.6 +7.2,5,a-degr-i2,2024-25,Marshfield-Daniel Webster,01710015, 224, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Marshfield-Martinson Elementary,01710025, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Marshfield-Gov Edward Winslow,01710020, 294, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Marshfield-South River,01710010, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Marshfield-Furnace Brook Middle,01710310, 799, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Marshfield-Eames Way School,01710005, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2024-25,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 739, 9, 1.2,"","","","","","","","", 2.2, 1.6, 0.6, 0.5 +8.0,5,a-degr-i2,2024-25,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 162, 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,"" +6.6,5,a-degr-i2,2024-25,"Martin Luther King, Jr. Charter School of Excellence (District)-Martin Luther King, Jr. Charter School of Excellence",04920005, 294, 2, 0.7, 1.6, 1.7, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Masconomet-Masconomet Regional High School,07050505, 923, 3, 0.3,"","","","","","","","", 0.0, 0.4, 0.0, 0.9 +8.0,5,a-degr-i2,2024-25,Masconomet-Masconomet Regional Middle School,07050405, 553, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +5.4,5,a-degr-i2,2024-25,Mashpee-Mashpee Middle-High School,01720505, 600, 8, 1.3,"","","","","","", 0.0, 1.0, 4.4, 1.0, 0.0, 1.9 +8.0,5,a-degr-i2,2024-25,Mashpee-Quashnet School,01720035, 399, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Mashpee-Kenneth Coombs School,01720005, 208, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +5.6,5,a-degr-i2,2024-25,Match Charter Public School (District)-Match Charter Public School,04690505," 1,022", 12, 1.2, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 3.8, 1.7, 1.8 +8.0,5,a-degr-i2,2024-25,Mattapoisett-Center,01730005, 152, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Mattapoisett-Old Hammondtown,01730010, 154, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Maynard-Fowler School,01740305, 451, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Maynard-Maynard High,01740505, 309, 1, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.2 +8.0,5,a-degr-i2,2024-25,Maynard-Green Meadow,01740010, 297, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Medfield-Memorial School,01750003, 198, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Medfield-Ralph Wheelock School,01750007, 392, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Medfield-Medfield Senior High,01750505, 701, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Medfield-Thomas Blake Middle,01750305, 574, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Medfield-Dale Street,01750005, 384, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +-10.2,1,a-degr-i2,2024-25,Medford-Curtis-Tufts,01760510, 11, 1, 9.1,"","","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Medford-Madeleine Dugger Andrews,01760315, 435, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2024-25,Medford-Medford High,01760505," 1,178", 8, 0.7,"","","","","","","","", 1.0, 0.6, 0.0, 1.1 +7.6,5,a-degr-i2,2024-25,Medford-John J. McGlynn Middle School,01760320, 464, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Medford-Milton Fuller Roberts,01760150, 461, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Medford-Missituk Elementary School,01760140, 330, 1, 0.3, 0.0, 0.0, 0.0, 1.8, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Medford-Brooks School,01760130, 431, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Medford-John J McGlynn Elementary School,01760068, 440, 1, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Medway-Medway Middle,01770305, 677, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.4,5,a-degr-i2,2024-25,Medway-Medway High,01770505, 622, 8, 1.3,"","","","","","","","", 1.9, 1.4, 0.6, 1.2 +8.0,5,a-degr-i2,2024-25,Medway-Burke/Memorial Elementary School,01770015, 506, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Medway-John D Mc Govern Elementary,01770013, 171, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Melrose-Lincoln,01780020, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Melrose-Herbert Clark Hoover,01780017, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Melrose-Winthrop,01780050, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Melrose-Melrose High,01780505, 967, 3, 0.3,"","","","","","","","", 0.4, 0.4, 0.4, 0.0 +7.8,5,a-degr-i2,2024-25,Melrose-Melrose Middle,01780305, 886, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" +8.0,5,a-degr-i2,2024-25,Melrose-Roosevelt,01780035, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Melrose-Horace Mann,01780025, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Mendon-Upton-Memorial School,07100001, 371, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Mendon-Upton-Miscoe Hill School,07100015, 647, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2024-25,Mendon-Upton-Nipmuc Regional High,07100510, 528, 5, 0.9,"","","","","","","","", 1.5, 2.5, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Mendon-Upton-Henry P Clough,07100179, 305, 1, 0.3, 1.1, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2024-25,Methuen-Donald P Timony Grammar,01810060," 1,048", 1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0,"","","","" +1.5999999999999996,1.6,a-degr-i2,2024-25,Methuen-Methuen High,01810505," 1,840", 59, 3.2,"","","","","","","","", 2.3, 9.1, 1.1, 0.4 +8.0,5,a-degr-i2,2024-25,Methuen-Marsh Grammar School,01810030, 898, 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,2024-25,Methuen-Tenney Grammar School,01810055," 1,133", 1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,"","","","" +7.8,5,a-degr-i2,2024-25,Methuen-Comprehensive Grammar School,01810050, 958, 1, 0.1, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Middleborough-John T. Nichols Middle,01820305, 688, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Middleborough-Henry B. Burkland Elementary School,01820008, 545, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Middleborough-Mary K. Goode Elementary School,01820010, 590, 2, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-1.5999999999999996,1,a-degr-i2,2024-25,Middleborough-Middleborough High,01820505, 767, 37, 4.8,"","","","","","","","", 13.0, 3.3, 2.6, 0.0 +8.0,5,a-degr-i2,2024-25,Middleton-Howe-Manning,01840005, 397, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Middleton-Fuller Meadow,01840003, 193, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +3.8,3.8,a-degr-i2,2024-25,Milford-Milford High,01850505," 1,316", 28, 2.1,"","","","","","","","", 3.5, 2.4, 1.5, 1.0 +8.0,5,a-degr-i2,2024-25,Milford-Brookside,01850065, 382, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.4,5,a-degr-i2,2024-25,Milford-Stacy Middle,01850305, 989, 3, 0.3,"","","","","", 0.0, 0.3, 0.6,"","","","" +7.8,5,a-degr-i2,2024-25,Milford-Woodland,01850090," 1,036", 1, 0.1,"","", 0.0, 0.0, 0.3,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Milford-Memorial,01850010, 298, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +5.2,5,a-degr-i2,2024-25,Millbury-Millbury Junior/Senior High,01860505, 717, 10, 1.4,"","","","","","", 0.0, 0.0, 6.7, 0.0, 0.9, 0.8 +8.0,5,a-degr-i2,2024-25,Millbury-Raymond E. Shaw Elementary,01860025, 454, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2024-25,Millbury-Elmwood Street,01860017, 243, 2, 0.8, 0.9, 0.8,"","","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Millis-Clyde F Brown,01870005, 475, 1, 0.2, 0.0, 0.0, 0.0, 1.2, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2024-25,Millis-Millis High School,01870505, 286, 3, 1.0,"","","","","","","","", 0.0, 1.3, 0.0, 2.5 +8.0,5,a-degr-i2,2024-25,Millis-Millis Middle,01870020, 267, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Milton-Milton High,01890505," 1,074", 5, 0.5,"","","","","","","","", 0.7, 0.0, 0.0, 1.1 +8.0,5,a-degr-i2,2024-25,Milton-Charles S Pierce Middle,01890410," 1,002", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Milton-Glover,01890010, 501, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,Milton-Collicot,01890005, 506, 4, 0.8, 2.2, 1.7, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Milton-Cunningham School,01890007, 448, 2, 0.4, 1.2, 1.2, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Milton-Tucker,01890020, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2024-25,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 669, 5, 0.7,"","","","","","","","", 2.3, 0.6, 0.0, 0.0 +5.4,5,a-degr-i2,2024-25,Mohawk Trail-Mohawk Trail Regional School,07170505, 316, 4, 1.3,"","","","","","", 0.0, 0.0, 5.1, 2.1, 3.1, 0.0 +8.0,5,a-degr-i2,2024-25,Mohawk Trail-Buckland-Shelburne Regional,07170005, 202, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Mohawk Trail-Colrain Central,07170010, 69, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Mohawk Trail-Sanderson Academy,07170020, 80, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 395, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +6.2,5,a-degr-i2,2024-25,Monomoy Regional School District-Chatham Elementary School,07120001, 116, 1, 0.9, 0.0, 0.0, 2.9, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2024-25,Monomoy Regional School District-Monomoy Regional High School,07120515, 731, 1, 0.1,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.6 +8.0,5,a-degr-i2,2024-25,Monomoy Regional School District-Harwich Elementary School,07120002, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.0,5.0,a-degr-i2,2024-25,Monson-Monson High School,01910505, 273, 4, 1.5,"","","","","","", 0.0, 1.4, 8.1, 0.0, 0.0, 0.0 +7.0,5,a-degr-i2,2024-25,Monson-Granite Valley School,01910030, 400, 2, 0.5, 1.6, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2024-25,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605," 1,417", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.3, 0.0 +8.0,5,a-degr-i2,2024-25,Mount Greylock-Mt Greylock Regional High,07150505, 537, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Mount Greylock-Williamstown Elementary,07150010, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Mount Greylock-Lanesborough Elementary,07150005, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2024-25,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105," 1,526", 13, 0.9, 0.6, 0.6, 1.9, 0.7, 1.4, 0.7, 2.1, 0.8, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Nahant-Johnson,01960010, 106, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2024-25,Nantucket-Nantucket Elementary,01970005, 228, 1, 0.4, 0.9, 0.0,"","","","","","","","","","" +0.20000000000000018,1,a-degr-i2,2024-25,Nantucket-Nantucket High,01970505, 595, 23, 3.9,"","","","","","","","", 7.4, 2.7, 3.2, 2.1 +8.0,5,a-degr-i2,2024-25,Nantucket-Nantucket Intermediate School,01970020, 366, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Nantucket-Cyrus Peirce,01970010, 358, 1, 0.3,"","","","","", 0.0, 0.0, 0.9,"","","","" +7.4,5,a-degr-i2,2024-25,Narragansett-Narragansett Middle,07200305, 366, 1, 0.3,"","","","", 0.0, 0.0, 0.9,"","","","","" +5.2,5,a-degr-i2,2024-25,Narragansett-Narragansett Regional High,07200505, 489, 7, 1.4,"","","","","","","", 0.0, 4.1, 1.1, 0.0, 2.2 +8.0,5,a-degr-i2,2024-25,Narragansett-Templeton Elementary School,07200020, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Nashoba-Florence Sawyer School,07250025, 633, 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,2024-25,Nashoba-Hale,07250310, 247, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Nashoba-Center School,07250020, 382, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Nashoba-Nashoba Regional,07250505, 799, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +8.0,5,a-degr-i2,2024-25,Nashoba-Luther Burbank Middle School,07250305, 245, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Nashoba-Mary Rowlandson Elementary,07250010, 383, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 767, 3, 0.4,"","","","","","","","", 1.0, 0.5, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Natick-Natick High,01980505," 1,637", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.8 +8.0,5,a-degr-i2,2024-25,Natick-Memorial,01980043, 384, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Natick-Wilson Middle,01980310, 727, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Natick-Lilja Elementary,01980035, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Natick-J F Kennedy Middle School,01980305, 911, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Natick-Bennett-Hemenway,01980005, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Natick-Brown,01980010, 407, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Nauset-Nauset Regional Middle,06600305, 455, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2024-25,Nauset-Nauset Regional High,06600505, 736, 3, 0.4,"","","","","","","","", 0.5, 0.0, 0.0, 1.0 +7.6,5,a-degr-i2,2024-25,Needham-Needham High,01990505," 1,633", 4, 0.2,"","","","","","","","", 0.0, 0.3, 0.0, 0.7 +7.6,5,a-degr-i2,2024-25,Needham-Newman Elementary,01990050, 517, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Needham-John Eliot,01990020, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Needham-High Rock School,01990410, 441, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Needham-Pollard Middle,01990405, 867, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Needham-William Mitchell,01990040, 362, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Needham-Sunita L. Williams Elementary,01990035, 449, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Needham-Broadmeadow,01990005, 419, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.0,4.0,a-degr-i2,2024-25,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 706, 14, 2.0, 0.0, 0.0, 0.0, 0.0, 3.2, 0.0, 0.0, 3.0, 1.6, 5.6, 3.1, 3.3 +5.8,5,a-degr-i2,2024-25,New Bedford-Betsey B Winslow,02010140, 185, 2, 1.1, 6.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,New Bedford-Sgt Wm H Carney Academy,02010045, 459, 1, 0.2, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2024-25,New Bedford-Keith Middle School,02010405, 949, 7, 0.7,"","","","","", 0.6, 1.3, 0.3,"","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Casimir Pulaski,02010123, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-1.0,1,a-degr-i2,2024-25,New Bedford-Whaling City Junior/Senior High School,02010515, 200, 9, 4.5,"","","","","","", 0.0, 0.0, 0.0, 2.3, 8.3, 5.9 +7.8,5,a-degr-i2,2024-25,New Bedford-Roosevelt Middle School,02010415, 759, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,New Bedford-Charles S Ashley,02010010, 221, 1, 0.5, 0.0, 0.0, 0.0, 2.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,New Bedford-James B Congdon,02010040, 254, 2, 0.8, 2.1, 0.0, 2.5, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Alfred J Gomes,02010063, 455, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,New Bedford-Hayden/McFadden,02010078, 548, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,New Bedford-Normandin Middle School,02010410, 990, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Trinity Day Academy,02010510, 93, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,New Bedford-Thomas R Rodman,02010125, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Jireh Swift,02010130, 150, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.8,2.8,a-degr-i2,2024-25,New Bedford-William H Taylor,02010135, 190, 5, 2.6, 5.1, 8.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-John B Devalles,02010050, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,New Bedford-Irwin M. Jacobs Elementary School,02010070, 325, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Ellen R Hathaway,02010075, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Abraham Lincoln,02010095, 577, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Carlos Pacheco,02010105, 207, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-John Avery Parker,02010115, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,New Bedford-New Bedford High,02010505," 2,857", 27, 0.9,"","","","","","","","", 1.2, 0.3, 0.7, 1.8 +7.2,5,a-degr-i2,2024-25,New Bedford-Elizabeth Carter Brooks,02010015, 226, 1, 0.4, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,New Bedford-Elwyn G Campbell,02010020, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 734, 3, 0.4,"","","","","", 0.9, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0 +6.0,5,a-degr-i2,2024-25,New Salem-Wendell-Swift River,07280015, 103, 1, 1.0, 0.0, 0.0, 0.0, 5.3, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Newburyport-Newburyport High,02040505, 741, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.0 +8.0,5,a-degr-i2,2024-25,Newburyport-Rupert A Nock Middle,02040305, 470, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Newburyport-Francis T Bresnahan Elementary,02040005, 414, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Newburyport-Edward G. Molin Elementary School,02040030, 310, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Bowen,02070015, 279, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Countryside,02070040, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Horace Mann,02070075, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Williams,02070125, 180, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-A E Angier,02070005, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-C C Burr,02070020, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Cabot,02070025, 358, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Franklin,02070055, 276, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Lincoln-Eliot,02070070, 280, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Mason-Rice,02070080, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Peirce,02070100, 196, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Memorial Spaulding,02070105, 297, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Underwood,02070115, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-John Ward,02070120, 167, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Zervas,02070130, 338, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Newton-Bigelow Middle,02070305, 434, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Newton-Charles E Brown Middle,02070310, 713, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Newton-F A Day Middle,02070315, 860, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Newton-Oak Hill Middle,02070320, 649, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Newton-Newton North High,02070505," 2,065", 12, 0.6,"","","","","","","","", 0.2, 0.2, 0.6, 1.3 +7.6,5,a-degr-i2,2024-25,Newton-Newton South High,02070510," 1,893", 4, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.9 +8.0,5,a-degr-i2,2024-25,Norfolk-Freeman-Kennedy School,02080005, 579, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Norfolk-H Olive Day,02080015, 286, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 597, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +-5.800000000000001,1,a-degr-i2,2024-25,North Adams-Drury High,02090505, 432, 30, 6.9,"","","","","","", 2.8, 4.0, 22.9, 5.6, 6.1, 1.3 +3.5999999999999996,3.6,a-degr-i2,2024-25,North Adams-Brayton,02090035, 179, 4, 2.2, 3.5, 1.1,"","","","","","","","","","" +7.0,5,a-degr-i2,2024-25,North Adams-Colegrove Park Elementary,02090008, 369, 2, 0.5,"","", 1.0, 0.0, 1.1, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,North Andover-Franklin,02110010, 383, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,North Andover-Kittredge,02110015, 211, 2, 0.9, 5.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,North Andover-Thomson,02110020, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,North Andover-North Andover Middle,02110305," 1,023", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,North Andover-North Andover High,02110505," 1,328", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.9 +7.6,5,a-degr-i2,2024-25,North Andover-Annie L Sargent School,02110018, 441, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,North Andover-Atkinson,02110001, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,North Attleborough-Community,02120030, 241, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2024-25,North Attleborough-North Attleboro High,02120505," 1,001", 13, 1.3,"","","","","","","","", 1.3, 2.2, 1.3, 0.7 +7.6,5,a-degr-i2,2024-25,North Attleborough-Joseph W Martin Jr Elementary,02120013, 456, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,North Attleborough-North Attleborough Middle,02120305, 965, 1, 0.1,"","","","","", 0.3, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,North Attleborough-Roosevelt Avenue,02120015, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,North Attleborough-Amvet Boulevard,02120007, 348, 1, 0.3, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,North Attleborough-Falls,02120010, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-2.1999999999999993,1,a-degr-i2,2024-25,North Brookfield-North Brookfield High,02150505, 157, 8, 5.1,"","","","","", 0.0, 0.0, 0.0, 16.7, 21.1, 0.0, 9.5 +6.8,5,a-degr-i2,2024-25,North Brookfield-North Brookfield Elementary,02150015, 181, 1, 0.6, 3.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,North Middlesex-Hawthorne Brook,07350030, 449, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2024-25,North Middlesex-North Middlesex Regional,07350505, 700, 7, 1.0,"","","","","","","","", 0.7, 2.3, 1.1, 0.0 +8.0,5,a-degr-i2,2024-25,North Middlesex-Nissitissit Middle School,07350310, 494, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,North Middlesex-Varnum Brook,07350035, 494, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +4.8,4.8,a-degr-i2,2024-25,North Middlesex-Ashby Elementary,07350010, 125, 2, 1.6, 2.8, 3.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,North Middlesex-Squannacook Early Childhood Center,07350002, 10, 0, 0.0,"","","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,North Middlesex-Spaulding Memorial,07350005, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,North Reading-North Reading Middle,02170305, 494, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,North Reading-North Reading High,02170505, 645, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +6.2,5,a-degr-i2,2024-25,North Reading-J Turner Hood,02170010, 335, 3, 0.9, 4.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,North Reading-L D Batchelder,02170005, 386, 1, 0.3, 0.0, 0.0, 0.0, 1.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,North Reading-E Ethel Little School,02170003, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Northampton-John F Kennedy Middle School,02100410, 577, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +7.0,5,a-degr-i2,2024-25,Northampton-Bridge Street,02100005, 217, 1, 0.5, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Northampton-R. K. Finn Ryan Road,02100029, 199, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Northampton-Leeds,02100025, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Northampton-Northampton High,02100505, 869, 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.4, 0.9 +8.0,5,a-degr-i2,2024-25,Northampton-Jackson Street,02100020, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 587, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Northboro-Southboro-Algonquin Regional High,07300505," 1,181", 2, 0.2,"","","","","","","","", 0.3, 0.0, 0.0, 0.3 +8.0,5,a-degr-i2,2024-25,Northborough-Marion E Zeh,02130020, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Northborough-Marguerite E Peaslee,02130014, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Northborough-Fannie E Proctor,02130015, 199, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Northborough-Robert E. Melican Middle School,02130305, 545, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Northborough-Lincoln Street,02130003, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Northbridge-Northbridge Middle,02140305, 394, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Northbridge-Northbridge Elementary School,02140001, 746, 1, 0.1, 0.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2024-25,Northbridge-Northbridge High,02140505, 467, 6, 1.3,"","","","","","","","", 4.1, 0.9, 0.0, 0.0 +7.8,5,a-degr-i2,2024-25,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605," 1,381", 2, 0.1,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +6.4,5,a-degr-i2,2024-25,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 514, 4, 0.8,"","","","","","","","", 1.7, 1.6, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Norton-J C Solmonese,02180015, 310, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.8,5,a-degr-i2,2024-25,Norton-Norton High,02180505, 681, 4, 0.6,"","","","","","","","", 2.2, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Norton-L G Nourse Elementary,02180010, 216, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Norton-Henri A. Yelle,02180060, 371, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Norton-Norton Middle,02180305, 527, 2, 0.4,"","","","","", 0.7, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Norwell-William G Vinal,02190020, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Norwell-Grace Farrar Cole,02190005, 427, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Norwell-Norwell High,02190505, 601, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Norwell-Norwell Middle School,02190405, 509, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Norwood-Cornelius M Callahan,02200010, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Norwood-F A Cleveland,02200015, 339, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Norwood-John P Oldham,02200020, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Norwood-Charles J Prescott,02200025, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Norwood-Dr. Philip O. Coakley Middle School,02200305, 807, 2, 0.2,"","","","","", 0.4, 0.4, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Norwood-Balch,02200005, 303, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2024-25,Norwood-Norwood High,02200505, 963, 13, 1.3,"","","","","","","","", 3.9, 1.3, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Oak Bluffs-Oak Bluffs Elementary,02210005, 349, 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,2024-25,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 554, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Old Rochester-Old Rochester Regional High,07400505, 636, 2, 0.3,"","","","","","","","", 0.0, 0.6, 0.0, 0.7 +8.0,5,a-degr-i2,2024-25,Old Rochester-Old Rochester Regional Jr High,07400405, 407, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 316, 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,2024-25,Orange-Fisher Hill School,02230010, 387, 3, 0.8, 1.5, 0.0, 0.0, 3.6, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Orleans-Orleans Elementary,02240005, 122, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +1.0,1.0,a-degr-i2,2024-25,Oxford-Oxford High,02260505, 405, 14, 3.5,"","","","","","","","", 5.7, 4.8, 1.1, 1.9 +8.0,5,a-degr-i2,2024-25,Oxford-Clara Barton,02260005, 307, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Oxford-Oxford Middle,02260405, 385, 2, 0.5,"","","","","", 0.7, 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Oxford-Alfred M Chaffee,02260010, 200, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +6.0,5,a-degr-i2,2024-25,Palmer-Palmer High,02270505, 414, 4, 1.0,"","","","","","", 0.9, 0.0, 0.0, 0.0, 1.8, 2.6 +7.2,5,a-degr-i2,2024-25,Palmer-Old Mill Pond,02270008, 527, 2, 0.4, 0.0, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2024-25,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 660, 6, 0.9,"","","","","","","","", 0.5, 2.8, 0.0, 0.0 +6.0,5,a-degr-i2,2024-25,Peabody-Thomas Carroll,02290010, 516, 5, 1.0, 2.8, 0.0, 0.9, 0.0, 1.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Peabody-Captain Samuel Brown,02290005, 325, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-18.8,1,a-degr-i2,2024-25,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 97, 13, 13.4,"","","","","","","","", 14.3, 0.0, 14.3, 32.0 +8.0,5,a-degr-i2,2024-25,Peabody-William A Welch Sr,02290027, 338, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Peabody-South Memorial,02290035, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Peabody-J Henry Higgins Middle,02290305," 1,320", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-1.5999999999999996,1,a-degr-i2,2024-25,Peabody-Peabody Veterans Memorial High,02290510," 1,323", 64, 4.8,"","","","","","","","", 11.3, 4.6, 2.7, 0.6 +8.0,5,a-degr-i2,2024-25,Peabody-John E Burke,02290007, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,Peabody-John E. McCarthy,02290016, 323, 3, 0.9, 3.2, 0.0, 1.5, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Peabody-West Memorial,02290045, 216, 1, 0.5, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Pelham-Pelham Elementary,02300005, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Pembroke-Hobomock Elementary,02310010, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Pembroke-Bryantville Elementary,02310003, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Pembroke-Pembroke Community Middle School,02310305, 353, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Pembroke-North Pembroke Elementary,02310015, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Pembroke-Pembroke High School,02310505, 683, 2, 0.3,"","","","","","","","", 0.6, 0.0, 0.6, 0.0 +6.8,5,a-degr-i2,2024-25,Pentucket-Pentucket Regional Middle,07450405, 335, 2, 0.6,"","","","","","", 0.6, 0.6,"","","","" +6.2,5,a-degr-i2,2024-25,Pentucket-Pentucket Regional Sr High,07450505, 578, 5, 0.9,"","","","","","","","", 0.7, 1.4, 0.0, 1.3 +8.0,5,a-degr-i2,2024-25,Pentucket-Dr John C Page School,07450015, 254, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Pentucket-Dr Frederick N Sweetsir,07450020, 126, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2024-25,Pentucket-Helen R Donaghue School,07450010, 262, 1, 0.4,"","", 0.0, 0.0, 0.0, 1.4,"","","","","","" +8.0,5,a-degr-i2,2024-25,Pentucket-Elmer S Bagnall,07450005, 422, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2024-25,Petersham-Petersham Center,02340005, 122, 1, 0.8, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0,"","","","","","" +-110.2,1,a-degr-i2,2024-25,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 198, 117, 59.1,"","","","","","","","", 61.8,"", 44.4,"" +-109.2,1,a-degr-i2,2024-25,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 140, 82, 58.6,"","","","","","","","", 70.3,"", 28.6,"" +-127.4,1,a-degr-i2,2024-25,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 158, 107, 67.7,"","","","","","","","", 79.2,"", 52.5, 22.2 +6.6,5,a-degr-i2,2024-25,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 732, 5, 0.7, 1.6, 0.0, 0.0, 0.0, 0.0, 1.6, 1.6, 1.6, 1.6, 0.0, 0.0, 0.0 +6.2,5,a-degr-i2,2024-25,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 575, 5, 0.9, 0.0, 0.0, 0.0, 2.0,"","", 0.0, 2.6, 1.5, 0.0, 1.7, 0.0 +5.4,5,a-degr-i2,2024-25,Pioneer Valley-Bernardston Elementary,07500006, 160, 2, 1.3, 4.5, 0.0, 3.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Pioneer Valley-Northfield Elementary,07500008, 101, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2024-25,Pioneer Valley-Pioneer Valley Regional,07500505, 236, 1, 0.4,"","","","","","", 0.0, 0.0, 0.0, 3.4, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 540, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.0,5,a-degr-i2,2024-25,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 397, 4, 1.0,"","","","","","", 1.4, 0.0, 0.0, 3.0, 0.0, 1.5 +8.0,5,a-degr-i2,2024-25,Pittsfield-John T Reid Middle,02360305, 407, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Pittsfield-Taconic High,02360510, 824, 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.9, 0.0 +8.0,5,a-degr-i2,2024-25,Pittsfield-Allendale,02360010, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Pittsfield-Crosby Educational Academy,02360030, 24, 0, 0.0,"","", 0.0,"", 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Pittsfield-Egremont,02360035, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,Pittsfield-Robert T. Capeless Elementary School,02360045, 132, 1, 0.8, 3.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Pittsfield-Morningside Community School,02360055, 288, 1, 0.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.8,4.8,a-degr-i2,2024-25,Pittsfield-Crosby,02360065, 185, 3, 1.6, 2.2, 2.6, 3.7, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Pittsfield-Williams,02360100, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Pittsfield-Silvio O Conte Community,02360105, 294, 1, 0.3, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Pittsfield-Theodore Herberg Middle,02360310, 587, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-7.199999999999999,1,a-degr-i2,2024-25,Pittsfield-Pittsfield High,02360505, 712, 54, 7.6,"","","","","","","","", 20.6, 5.2, 2.4, 0.6 +-8.600000000000001,1,a-degr-i2,2024-25,Pittsfield-Eagle Education Academy,02360525, 24, 2, 8.3,"","","","","","", 0.0,"","","","","" +6.8,5,a-degr-i2,2024-25,Pittsfield-Stearns,02360090, 176, 1, 0.6, 3.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plainville-Beatrice H Wood Elementary,02380005, 331, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.8,4.8,a-degr-i2,2024-25,Plainville-Anna Ware Jackson,02380010, 187, 3, 1.6, 2.0, 1.2,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-South Elementary,02390046, 515, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-West Elementary,02390047, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-Plymouth South Middle,02390305, 601, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Plymouth-Plymouth Commun Intermediate,02390405, 920, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" +1.0,1.0,a-degr-i2,2024-25,Plymouth-Plymouth North High,02390505," 1,169", 41, 3.5,"","","","","","","","", 10.2, 3.3, 1.1, 0.0 +5.0,5.0,a-degr-i2,2024-25,Plymouth-Plymouth South High,02390515," 1,001", 15, 1.5,"","","","","","","","", 3.4, 1.2, 1.2, 0.0 +8.0,5,a-degr-i2,2024-25,Plymouth-Federal Furnace School,02390011, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-Indian Brook,02390012, 434, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-Manomet Elementary,02390015, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-Nathaniel Morton Elementary,02390030, 431, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-Hedge,02390010, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Plymouth-Cold Spring,02390005, 182, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Plympton-Dennett Elementary,02400010, 223, 1, 0.4, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2024-25,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 772, 6, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.8, 0.0, 1.5, 3.3 +6.2,5,a-degr-i2,2024-25,Provincetown-Provincetown Schools,02420020, 114, 1, 0.9, 0.0, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Quabbin-Quabbin Regional Middle School,07530405, 510, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Quabbin-Oakham Center,07530025, 130, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quabbin-Hardwick Elementary,07530005, 145, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quabbin-Ruggles Lane,07530030, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quabbin-Hubbardston Center,07530010, 228, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-1.1999999999999993,1,a-degr-i2,2024-25,Quabbin-Quabbin Regional High School,07530505, 542, 25, 4.6,"","","","","","","","", 10.8, 4.0, 0.0, 0.9 +8.0,5,a-degr-i2,2024-25,Quaboag Regional-West Brookfield Elementary,07780010, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2024-25,Quaboag Regional-Quaboag Regional High,07780505, 334, 4, 1.2,"","","","","","","","", 1.3, 2.1, 1.2, 0.0 +7.0,5,a-degr-i2,2024-25,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 196, 1, 0.5,"","","","","","", 0.0, 1.2,"","","","" +7.2,5,a-degr-i2,2024-25,Quaboag Regional-Warren Elementary,07780005, 272, 1, 0.4, 0.0, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Central Middle,02430315, 671, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Snug Harbor Community School,02430090, 250, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2024-25,Quincy-North Quincy High,02430510," 1,486", 17, 1.1,"","","","","","","","", 1.1, 2.5, 0.8, 0.0 +7.0,5,a-degr-i2,2024-25,Quincy-Atherton Hough,02430040, 219, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Francis W Parker,02430075, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Charles A Bernazzani Elementary,02430025, 279, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Merrymount,02430060, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Clifford H Marshall Elementary,02430055, 420, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Point Webster Middle,02430325, 377, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Beechwood Knoll Elementary,02430020, 290, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Lincoln-Hancock Community School,02430035, 456, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Montclair,02430065, 319, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Quincy-Squantum,02430095, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Atlantic Middle,02430305, 601, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Quincy-South West Middle School,02430320, 449, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Broad Meadows Middle,02430310, 318, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Dr. Rick DeCristofaro Learning Center,02430150, 32, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Quincy-Wollaston School,02430110, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2024-25,Quincy-Quincy High,02430505," 1,514", 11, 0.7,"","","","","","","","", 0.5, 0.3, 0.8, 1.3 +0.5999999999999996,1,a-degr-i2,2024-25,Ralph C Mahar-Ralph C Mahar Regional,07550505, 509, 19, 3.7,"","","","","","", 0.0, 0.0, 13.4, 8.5, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Randolph-Margaret L Donovan,02440015, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-11.2,1,a-degr-i2,2024-25,Randolph-Randolph High,02440505, 764, 73, 9.6,"","","","","","","","", 13.3, 12.4, 7.2, 3.3 +7.6,5,a-degr-i2,2024-25,Randolph-Randolph Community Middle,02440410, 640, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +6.4,5,a-degr-i2,2024-25,Randolph-Martin E Young Elementary,02440040, 266, 2, 0.8, 1.7, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,Randolph-North Randolph Elementary School,02440020, 235, 2, 0.9, 2.6, 0.0, 0.0, 2.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Randolph-J F Kennedy Elementary,02440018, 282, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Reading-Reading Memorial High,02460505," 1,090", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.8 +8.0,5,a-degr-i2,2024-25,Reading-Walter S Parker Middle,02460310, 467, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Reading-Arthur W Coolidge Middle,02460305, 405, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Reading-J Warren Killam,02460017, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Reading-Wood End Elementary School,02460020, 202, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Reading-Joshua Eaton,02460010, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Reading-Alice M Barrows,02460002, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Reading-Birch Meadow,02460005, 319, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Revere-Garfield Elementary School,02480056, 503, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-5.6,1,a-degr-i2,2024-25,Revere-CityLab Innovation High School,02480520, 117, 8, 6.8,"","","","","","","","", 12.8, 3.2, 3.1, 0.0 +7.2,5,a-degr-i2,2024-25,Revere-Abraham Lincoln,02480025, 456, 2, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Revere-A. C. Whelan Elementary School,02480003, 556, 3, 0.5, 2.1, 0.0, 0.0, 0.0, 0.8,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Revere-Beachmont Veterans Memorial School,02480013, 265, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Revere-Rumney Marsh Academy,02480014, 587, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Revere-Susan B. Anthony Middle School,02480305, 545, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Revere-Garfield Middle School,02480057, 542, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Revere-Paul Revere,02480050, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-7.199999999999999,1,a-degr-i2,2024-25,Revere-Revere High,02480505," 2,100", 160, 7.6,"","","","","","","","", 9.0, 10.0, 9.7, 0.6 +5.8,5,a-degr-i2,2024-25,Revere-Staff Sargent James J. Hill Elementary School,02480035, 533, 6, 1.1, 4.9, 0.0, 0.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Richmond-Richmond Consolidated,02490005, 129, 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,2024-25,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 617, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.5, 0.0 +8.0,5,a-degr-i2,2024-25,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,2024-25,Rochester-Rochester Memorial,02500005, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Rockland-John W Rogers Middle,02510305, 687, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +3.2,3.2,a-degr-i2,2024-25,Rockland-Rockland Senior High,02510505, 586, 14, 2.4,"","","","","","","","", 3.8, 3.8, 0.7, 0.8 +7.0,5,a-degr-i2,2024-25,Rockland-Phelps Elementary School,02510060, 639, 3, 0.5, 1.2, 0.6, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Rockport-Rockport Elementary,02520005, 199, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Rockport-Rockport Middle High,02520510, 367, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Rowe-Rowe Elementary,02530005, 43, 0, 0.0,"", 0.0,"", 0.0, 0.0, 0.0,"","","","","","" +2.4000000000000004,2.4,a-degr-i2,2024-25,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505," 1,126", 31, 2.8,"","","","", 5.7, 2.0, 2.2, 2.5, 3.8, 3.4, 2.2, 1.0 +5.2,5,a-degr-i2,2024-25,Salem-Carlton,02580015, 215, 3, 1.4, 0.0, 4.7, 2.5, 0.0, 0.0,"","","","","","","" +-9.399999999999999,1,a-degr-i2,2024-25,Salem-Salem Prep High School,02580515, 23, 2, 8.7,"","","","","","","","","","","", 0.0 +-18.2,1,a-degr-i2,2024-25,Salem-Salem High,02580505, 942, 123, 13.1,"","","","","","","","", 24.9, 14.0, 6.8, 2.8 +8.0,5,a-degr-i2,2024-25,Salem-Collins Middle,02580305, 611, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Salem-Saltonstall School,02580050, 369, 1, 0.3, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Salem-Horace Mann Laboratory,02580030, 217, 1, 0.5, 0.0, 2.3, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,Salem-Bentley Academy Innovation School,02580010, 224, 2, 0.9, 0.0, 0.0, 0.0, 2.0, 2.1,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Salem-Bates,02580003, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.2,2.2,a-degr-i2,2024-25,Salem-New Liberty Innovation School,02580510, 34, 1, 2.9,"","","","","","","","","", 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Salem-Witchcraft Heights,02580070, 383, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 480, 3, 0.6,"","","","","", 0.0, 0.0, 0.0, 1.3, 0.0, 3.6, 0.0 +7.4,5,a-degr-i2,2024-25,Sandwich-Forestdale School,02610002, 318, 1, 0.3, 0.7, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2024-25,Sandwich-Sandwich Middle High School,02610505, 885, 1, 0.1,"","","","","","", 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Sandwich-Oak Ridge,02610025, 673, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Saugus-Saugus High,02620505, 741, 16, 2.2,"","","","","","","","", 1.7, 1.1, 5.2, 0.5 +7.8,5,a-degr-i2,2024-25,Saugus-Belmonte STEAM Academy,02620060, 814, 1, 0.1,"", 0.0, 0.0, 0.0, 0.5,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Saugus-Saugus Middle School,02620305, 616, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.2,5,a-degr-i2,2024-25,Saugus-Veterans Early Learning Center,02620065, 207, 3, 1.4, 1.4,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Savoy-Emma L Miller Elementary School,02630010, 28, 0, 0.0, 0.0, 0.0,"","", 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Scituate-Hatherly Elementary,02640010, 203, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Scituate-Gates Middle School,02640305, 639, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.2,5,a-degr-i2,2024-25,Scituate-Wampatuck Elementary,02640020, 286, 4, 1.4, 0.0, 1.5, 0.0, 3.4, 1.6,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Scituate-Cushing Elementary,02640007, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Scituate-Jenkins Elementary School,02640015, 283, 1, 0.4, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Scituate-Scituate High School,02640505, 725, 4, 0.6,"","","","","","","","", 0.0, 0.0, 0.0, 2.0 +8.0,5,a-degr-i2,2024-25,Seekonk-Mildred Aitken School,02650015, 436, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Seekonk-Seekonk High,02650505, 505, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 500, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Seekonk-George R Martin,02650007, 372, 2, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2024-25,Sharon-Sharon High,02660505," 1,161", 17, 1.5,"","","","","","","","", 0.0, 0.0, 0.7, 5.2 +8.0,5,a-degr-i2,2024-25,Sharon-Sharon Middle,02660305, 815, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Sharon-East Elementary,02660010, 395, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Sharon-Heights Elementary,02660015, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Sharon-Cottage Street,02660005, 368, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605," 1,281", 7, 0.5,"","","","","","","","", 1.4, 0.7, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Sherborn-Pine Hill,02690010, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Shrewsbury-Shrewsbury High School,02710505," 1,869", 4, 0.2,"","","","","","","","", 0.2, 0.4, 0.2, 0.0 +8.0,5,a-degr-i2,2024-25,Shrewsbury-Sherwood Middle School,02710305, 951, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Shrewsbury-Spring Street School,02710035, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Shrewsbury-Oak Middle School,02710030, 914, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Shrewsbury-Floral Street School,02710020, 433, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Shrewsbury-Calvin Coolidge School,02710015, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Shrewsbury-Walter J. Paton School,02710025, 214, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2024-25,Shrewsbury-Major Howard W. Beal School,02710005, 500, 1, 0.2, 0.8, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2024-25,Shutesbury-Shutesbury Elementary,02720005, 90, 1, 1.1, 0.0, 0.0, 0.0, 8.3, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2024-25,Silver Lake-Silver Lake Regional Middle School,07600405, 544, 1, 0.2,"","","","","","", 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Silver Lake-Silver Lake Regional High,07600505," 1,023", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +6.6,5,a-degr-i2,2024-25,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 282, 2, 0.7,"","","","","","", 0.0, 1.4, 0.0, 0.0, 2.8, 0.0 +6.0,5,a-degr-i2,2024-25,Somerset-South,02730015, 201, 2, 1.0, 3.1, 2.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Somerset-North Elementary,02730008, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Somerset-Chace Street,02730005, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Somerset-Somerset Middle School,02730305, 610, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 882, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Somerville-Arthur D Healey,02740075, 429, 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,2024-25,Somerville-Benjamin G Brown,02740015, 190, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Somerville-Winter Hill Community,02740120, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-4.6,1,a-degr-i2,2024-25,Somerville-Next Wave Junior High,02740410, 16, 1, 6.3,"","","","","","", 0.0, 11.1,"","","","" +-16.2,1,a-degr-i2,2024-25,Somerville-Full Circle High School,02740510, 66, 8, 12.1,"","","","","","","","", 27.3, 5.3, 7.1, 13.6 +1.4000000000000004,1.4,a-degr-i2,2024-25,Somerville-Somerville High,02740505," 1,383", 45, 3.3,"","","","","","","","", 5.7, 3.5, 0.6, 2.8 +7.6,5,a-degr-i2,2024-25,Somerville-E Somerville Community,02740111, 661, 1, 0.2, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 474, 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,2024-25,Somerville-John F Kennedy,02740083, 378, 1, 0.3, 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Somerville-West Somerville Neighborhood,02740115, 337, 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,2024-25,South Hadley-South Hadley High,02780505, 475, 1, 0.2,"","","","","","","","", 0.9, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,South Hadley-Plains Elementary,02780015, 115, 0, 0.0, 0.0,"","","","","","","","","","","" +7.2,5,a-degr-i2,2024-25,South Hadley-Michael E. Smith Middle School,02780305, 505, 2, 0.4,"","","","", 0.0, 1.4, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,South Hadley-Mosier,02780020, 365, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2024-25,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 896, 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.9, 0.0 +7.6,5,a-degr-i2,2024-25,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 975, 2, 0.2, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2024-25,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 685, 3, 0.4,"","","","","","","","", 1.7, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Southampton-William E Norris,02750005, 371, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Southborough-Albert S. Woodward Memorial School,02760050, 286, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Southborough-Margaret A Neary,02760020, 275, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Southborough-Mary E Finn School,02760008, 113, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Southborough-P Brent Trottier,02760305, 404, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-2.5999999999999996,1,a-degr-i2,2024-25,Southbridge-Southbridge High School,02770515, 419, 22, 5.3,"","","","","","","","", 8.7, 3.2, 5.8, 2.1 +-30.0,1,a-degr-i2,2024-25,Southbridge-Southbridge Academy,02770525, 21, 4, 19.0,"","","","","","","","","", 42.9,"", 0.0 +7.4,5,a-degr-i2,2024-25,Southbridge-Southbridge Middle School,02770315, 380, 1, 0.3,"","","","","", 0.0, 0.0, 0.7,"","","","" +8.0,5,a-degr-i2,2024-25,Southbridge-Charlton Street,02770005, 270, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Southbridge-West Street,02770020, 323, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Southbridge-Eastford Road,02770010, 172, 0, 0.0, 0.0,"","","","","","","","","","","" +7.8,5,a-degr-i2,2024-25,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605," 1,618", 2, 0.1,"","","","","","","","", 0.2, 0.0, 0.3, 0.0 +8.0,5,a-degr-i2,2024-25,Southern Berkshire-New Marlborough Central,07650018, 34, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.0,5,a-degr-i2,2024-25,Southern Berkshire-Undermountain,07650035, 199, 2, 1.0, 0.0, 0.0, 0.0, 2.0, 2.3,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Southern Berkshire-Mt Everett Regional,07650505, 278, 1, 0.4,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.6 +7.8,5,a-degr-i2,2024-25,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605," 1,188", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 +4.8,4.8,a-degr-i2,2024-25,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 188, 3, 1.6, 2.2, 1.0,"","","","","","","","","","" +7.4,5,a-degr-i2,2024-25,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 383, 1, 0.3,"","", 0.0, 0.0, 0.0, 1.0,"","","","","","" +7.0,5,a-degr-i2,2024-25,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 587, 3, 0.5,"","","","","","", 1.1, 0.9, 0.0, 0.0, 1.0, 0.0 +8.0,5,a-degr-i2,2024-25,Spencer-E Brookfield-East Brookfield Elementary,07670008, 126, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Spencer-E Brookfield-Knox Trail Middle School,07670415, 415, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-3.4000000000000004,1,a-degr-i2,2024-25,Spencer-E Brookfield-David Prouty High,07670505, 299, 17, 5.7,"","","","","","","","", 10.1, 9.6, 2.3, 0.0 +6.2,5,a-degr-i2,2024-25,Spencer-E Brookfield-Wire Village School,07670040, 347, 3, 0.9, 2.4, 1.2, 0.0, 0.0,"","","","","","","","" +-29.0,1,a-degr-i2,2024-25,Springfield-Springfield Public Day High School,02810550, 65, 12, 18.5,"","","","","","","","", 31.8, 16.0, 11.1, 0.0 +4.2,4.2,a-degr-i2,2024-25,Springfield-Warner,02810180, 162, 3, 1.9, 0.0, 7.5, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Springfield-William N. DeBerry,02810045, 352, 2, 0.6, 0.0, 1.6, 1.2, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2024-25,Springfield-Frank H Freedman,02810075, 168, 3, 1.8, 2.9, 5.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 325, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-24.0,1,a-degr-i2,2024-25,Springfield-Gateway to College at Springfield Technical Community College,02810580, 25, 4, 16.0,"","","","","","","","","","", 7.7, 12.5 +7.6,5,a-degr-i2,2024-25,Springfield-Roger L. Putnam Vocational Technical Academy,02810620," 1,382", 3, 0.2,"","","","","","","","", 0.8, 0.0, 0.0, 0.0 +6.8,5,a-degr-i2,2024-25,Springfield-Brightwood,02810025, 343, 2, 0.6, 1.3, 0.0, 1.4, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2024-25,Springfield-Alice B Beal Elementary,02810175, 213, 2, 0.9, 2.2, 2.2, 0.0, 0.0, 0.0,"","","","","","","" +3.8,3.8,a-degr-i2,2024-25,Springfield-Springfield International Academy at Sci-Tech,02810700, 95, 2, 2.1,"","","","","","","","", 0.0, 6.1, 0.0, 0.0 +-1.5999999999999996,1,a-degr-i2,2024-25,Springfield-The Springfield Virtual School,02810705, 250, 12, 4.8,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 2.9, 0.0, 9.1 +6.6,5,a-degr-i2,2024-25,Springfield-White Street,02810190, 303, 2, 0.7, 2.4, 1.3, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2024-25,Springfield-German Gerena Community School,02810195, 457, 3, 0.7, 2.1, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 593, 2, 0.3,"","","","","", 0.0, 0.0, 0.0, 1.2, 1.3, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Springfield-Springfield International Academy at Johnson,02810215, 38, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +2.0,2.0,a-degr-i2,2024-25,Springfield-Springfield Public Day Elementary School,02810005, 33, 1, 3.0,"", 0.0,"", 9.1, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2024-25,Springfield-Kiley Prep,02810315, 298, 3, 1.0,"","","","","", 0.9, 0.0, 2.0,"","","","" +5.8,5,a-degr-i2,2024-25,Springfield-Kiley Academy,02810316, 268, 3, 1.1,"","","","","", 2.2, 1.3, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Springfield Legacy Academy,02810317, 299, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Springfield-Emergence Academy,02810318, 382, 1, 0.3,"","","","","", 0.0, 0.0, 1.4, 0.0, 0.0, 0.0,"" +6.8,5,a-degr-i2,2024-25,Springfield-John J Duggan Academy,02810320, 823, 5, 0.6,"","","","","", 0.6, 1.2, 0.6, 0.0, 0.0, 1.4, 0.0 +8.0,5,a-degr-i2,2024-25,Springfield-Forest Park Middle,02810325, 282, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2024-25,Springfield-Springfield Realization Academy,02810335, 212, 1, 0.5,"","","","","", 0.0, 0.0, 1.4,"","","","" +-2.0,1,a-degr-i2,2024-25,Springfield-Springfield Public Day Middle School,02810345, 60, 3, 5.0,"","","","","", 0.0, 4.3, 8.7,"","","","" +8.0,5,a-degr-i2,2024-25,Springfield-South End Middle School,02810355, 163, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-25.4,1,a-degr-i2,2024-25,Springfield-Springfield Middle School,02810360, 18, 3, 16.7,"","","","","","", 14.3, 10.0,"","","","" +7.2,5,a-degr-i2,2024-25,Springfield-Impact Prep at Chestnut,02810366, 278, 1, 0.4,"","","","","", 0.0, 1.3, 0.0,"","","","" +6.6,5,a-degr-i2,2024-25,Springfield-Conservatory of the Arts,02810475, 296, 2, 0.7,"","","","","", 0.0, 0.0, 0.0, 4.8, 0.0, 0.0, 0.0 +6.0,5,a-degr-i2,2024-25,Springfield-Van Sickle Prep,02810480, 206, 2, 1.0,"","","","","", 0.0, 3.3, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Van Sickle Academy,02810485, 262, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.2,3.2,a-degr-i2,2024-25,Springfield-High School Of Commerce,02810510, 966, 23, 2.4,"","","","","","","","", 4.4, 1.7, 2.0, 1.8 +-20.4,1,a-degr-i2,2024-25,Springfield-Springfield High School of Science and Technology,02810530," 1,091", 155, 14.2,"","","","","","","","", 23.8, 14.6, 10.6, 0.0 +8.0,5,a-degr-i2,2024-25,Springfield-Liberty Preparatory Academy,02810560, 6, 0, 0.0,"","","","","","","","","","","","" +-36.8,1,a-degr-i2,2024-25,Springfield-Springfield High School,02810570, 237, 53, 22.4,"","","","","","","","", 37.8, 20.5, 8.7, 22.5 +-30.0,1,a-degr-i2,2024-25,Springfield-Gateway to College at Holyoke Community College,02810575, 21, 4, 19.0,"","","","","","","","","", 28.6, 33.3, 0.0 +0.5999999999999996,1,a-degr-i2,2024-25,Springfield-Washington,02810185, 271, 10, 3.7, 12.5, 3.1, 2.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Springfield-John F Kennedy Middle,02810328, 366, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Springfield-STEM Middle Academy,02810350, 269, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 265, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-8.8,1,a-degr-i2,2024-25,Springfield-Springfield Central High,02810500," 1,983", 167, 8.4,"","","","","","","","", 19.6, 8.4, 0.0, 0.2 +2.8,2.8,a-degr-i2,2024-25,Springfield-Edward P. Boland School,02810010, 388, 10, 2.6, 4.7, 3.9, 4.1, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Springfield-Thomas M Balliet,02810015, 209, 1, 0.5, 2.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Samuel Bowles,02810020, 229, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-3.1999999999999993,1,a-degr-i2,2024-25,Springfield-Milton Bradley School,02810023, 270, 15, 5.6, 9.8, 8.2, 7.8, 1.9, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Elias Brookings,02810030, 203, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Daniel B Brunton,02810035, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.4000000000000004,3.4,a-degr-i2,2024-25,Springfield-Hiram L Dorman,02810050, 219, 5, 2.3, 6.5, 2.2, 2.4, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2024-25,Springfield-Rebecca M Johnson,02810055, 460, 6, 1.3, 4.2, 0.0, 0.0, 2.0, 0.0,"","","","","","","" +2.8,2.8,a-degr-i2,2024-25,Springfield-Glenwood,02810065, 227, 6, 2.6, 5.5, 4.5, 0.0, 0.0, 2.2,"","","","","","","" +4.6,4.6,a-degr-i2,2024-25,Springfield-Glickman Elementary,02810068, 233, 4, 1.7, 5.0, 0.0, 1.7, 2.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2024-25,Springfield-Frederick Harris,02810080, 367, 4, 1.1, 0.0, 1.2, 4.4, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Springfield-Benjamin Swan Elementary,02810085, 361, 2, 0.6, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Springfield-Indian Orchard Elementary,02810100, 418, 9, 2.2, 6.0, 3.1, 1.2, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Kensington International School,02810110, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2024-25,Springfield-Liberty,02810115, 178, 1, 0.6, 0.0, 0.0, 0.0, 2.4, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2024-25,Springfield-Lincoln,02810120, 322, 4, 1.2, 3.1, 1.8, 1.4, 0.0, 0.0,"","","","","","","" +2.4000000000000004,2.4,a-degr-i2,2024-25,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 216, 6, 2.8, 6.0, 4.3, 2.8, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2024-25,Springfield-Mary M Lynch,02810140, 164, 4, 2.4, 6.5, 0.0, 6.5, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Springfield-Mary O Pottenger,02810145, 257, 1, 0.4, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Springfield-Mary M Walsh,02810155, 166, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +0.7999999999999998,1,a-degr-i2,2024-25,Springfield-Sumner Avenue,02810160, 331, 12, 3.6, 5.1, 6.7, 1.4, 1.7, 3.2,"","","","","","","" +5.4,5,a-degr-i2,2024-25,Springfield-Arthur T Talmadge,02810165, 153, 2, 1.3, 6.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,Springfield International Charter (District)-Springfield International Charter School,04410505," 1,417", 11, 0.8, 1.0, 1.8, 0.0, 0.8, 0.0, 0.8, 1.5, 0.0, 3.4, 0.0, 0.0, 0.0 +7.0,5,a-degr-i2,2024-25,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 432, 2, 0.5, 1.9, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Stoneham-South,02840030, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2024-25,Stoneham-Stoneham High,02840505, 593, 2, 0.3,"","","","","","","","", 0.7, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2024-25,Stoneham-Robin Hood,02840025, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Stoneham-Colonial Park,02840005, 183, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Stoneham-Stoneham Central Middle School,02840405, 689, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Stoughton-Joseph H Gibbons,02850025, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-2.5999999999999996,1,a-degr-i2,2024-25,Stoughton-Stoughton High,02850505," 1,117", 59, 5.3,"","","","","","","","", 11.0, 4.4, 3.2, 1.4 +7.6,5,a-degr-i2,2024-25,Stoughton-O'Donnell Middle School,02850405, 801, 2, 0.2,"","","","","", 0.0, 0.4, 0.4,"","","","" +8.0,5,a-degr-i2,2024-25,Stoughton-Helen Hansen Elementary,02850010, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Stoughton-South Elementary,02850015, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Stoughton-Joseph R Dawe Jr Elementary,02850014, 324, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Stoughton-Richard L. Wilkins Elementary School,02850020, 278, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Sturbridge-Burgess Elementary,02870005, 696, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2024-25,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 825, 8, 1.0,"","","","","","","","", 2.4, 0.9, 0.5, 0.0 +8.0,5,a-degr-i2,2024-25,Sudbury-Israel Loring School,02880015, 354, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Sudbury-Ephraim Curtis Middle,02880305, 816, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Sudbury-Peter Noyes,02880030, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Sudbury-Josiah Haynes,02880010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Sudbury-General John Nixon Elementary,02880025, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Sunderland-Sunderland Elementary,02890005, 127, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Sutton-Sutton Middle School,02900305, 313, 1, 0.3,"","","","","", 0.0, 0.0, 1.1,"","","","" +8.0,5,a-degr-i2,2024-25,Sutton-Sutton Elementary,02900005, 287, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Sutton-Sutton High School,02900510, 367, 1, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 +8.0,5,a-degr-i2,2024-25,Sutton-Sutton Early Learning,02900003, 195, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Swampscott-Swampscott Elementary School,02910025, 600, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.2,5,a-degr-i2,2024-25,Swampscott-Swampscott High,02910505, 700, 10, 1.4,"","","","","","","","", 0.5, 2.3, 0.6, 2.4 +8.0,5,a-degr-i2,2024-25,Swampscott-Swampscott Middle,02910305, 593, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Swansea-Mark G Hoyle Elementary,02920017, 126, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Swansea-Joseph G Luther,02920020, 194, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Swansea-Gardner,02920015, 181, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Swansea-Joseph Case Jr High,02920305, 490, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +1.5999999999999996,1.6,a-degr-i2,2024-25,Swansea-Joseph Case High,02920505, 507, 16, 3.2,"","","","","","","","", 8.1, 1.5, 1.6, 1.6 +8.0,5,a-degr-i2,2024-25,Swansea-Elizabeth S Brown,02920006, 283, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +-19.2,1,a-degr-i2,2024-25,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900," 2,916", 397, 13.6, 0.0, 0.0, 0.0, 1.9, 0.8, 2.6, 6.5, 1.9, 34.3, 24.4, 13.5, 9.4 +7.6,5,a-degr-i2,2024-25,Tantasqua-Tantasqua Regional Vocational,07700605, 542, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.8, 0.0 +5.2,5,a-degr-i2,2024-25,Tantasqua-Tantasqua Regional Sr High,07700505, 625, 9, 1.4,"","","","","","","","", 0.7, 1.3, 2.3, 1.3 +8.0,5,a-degr-i2,2024-25,Tantasqua-Tantasqua Regional Jr High,07700405, 576, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Taunton-H H Galligan,02930057, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2024-25,Taunton-Elizabeth Pole,02930027, 514, 4, 0.8, 1.6, 1.7, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Taunton-East Taunton Elementary,02930010, 438, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2024-25,Taunton-Joseph H Martin,02930042, 647, 1, 0.2,"","","","", 0.5, 0.0, 0.0,"","","","","" +7.8,5,a-degr-i2,2024-25,Taunton-Benjamin Friedman Middle,02930315, 701, 1, 0.1,"","","","", 0.0, 0.0, 0.4,"","","","","" +7.8,5,a-degr-i2,2024-25,Taunton-James L. Mulcahey Elementary School,02930015, 670, 1, 0.1, 0.0, 0.0, 0.0, 0.6,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Taunton-Joseph C Chamberlain,02930008, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Taunton-Edmund Hatch Bennett,02930007, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2024-25,Taunton-Taunton High,02930505," 2,863", 3, 0.1,"","","","","","","", 0.0, 0.0, 0.4, 0.2, 0.0 +-16.4,1,a-degr-i2,2024-25,Taunton-Taunton Alternative High School,02930525, 74, 9, 12.2,"","","","","","","","","","", 0.0, 18.8 +8.0,5,a-degr-i2,2024-25,Taunton-Taunton Public Virtual Academy (TPVA),02930705, 58, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Taunton-John F Parker Middle,02930305, 517, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +7.8,5,a-degr-i2,2024-25,Tewksbury-Tewksbury Memorial High,02950505, 692, 1, 0.1,"","","","","","","","", 0.6, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Tewksbury-John W. Wynn Middle,02950305, 539, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Tewksbury-John F. Ryan,02950023, 500, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Tewksbury-Heath-Brook,02950010, 114, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Tewksbury-Center Elementary School,02950030, 812, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Tewksbury-L F Dewing,02950001, 145, 0, 0.0, 0.0,"","","","","","","","","","","" +7.2,5,a-degr-i2,2024-25,Tisbury-Tisbury Elementary,02960005, 273, 1, 0.4, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Topsfield-Steward Elementary,02980010, 229, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Topsfield-Proctor Elementary,02980005, 251, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605," 1,000", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Triton-Triton Regional Middle School,07730405, 297, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +3.5999999999999996,3.6,a-degr-i2,2024-25,Triton-Triton Regional High School,07730505, 538, 12, 2.2,"","","","","","","","", 3.0, 1.7, 3.5, 0.7 +8.0,5,a-degr-i2,2024-25,Triton-Pine Grove,07730025, 343, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Triton-Newbury Elementary,07730020, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Triton-Salisbury Elementary,07730015, 306, 1, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Truro-Truro Central,03000005, 48, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Tyngsborough-Tyngsborough High School,03010505, 405, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Tyngsborough-Tyngsborough Elementary,03010020, 551, 1, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Tyngsborough-Tyngsborough Middle,03010305, 395, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.2,4.2,a-degr-i2,2024-25,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 528, 10, 1.9, 3.2, 1.4, 4.3, 1.4, 1.8, 3.2, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Up-Island Regional-West Tisbury Elementary,07740020, 282, 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,2024-25,Up-Island Regional-Chilmark Elementary,07740010, 58, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 838, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +-14.8,1,a-degr-i2,2024-25,Uxbridge-Gateway to College,03040515, 44, 5, 11.4,"","","","","","","","","","", 8.3, 4.2 +5.0,5.0,a-degr-i2,2024-25,Uxbridge-Uxbridge High,03040505, 582, 9, 1.5,"","","","","","","", 0.0, 4.1, 3.4, 0.0, 0.0 +7.4,5,a-degr-i2,2024-25,Uxbridge-Taft Early Learning Center,03040005, 337, 1, 0.3, 0.9, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Uxbridge-Whitin Intermediate,03040405, 463, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +6.4,5,a-degr-i2,2024-25,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 712, 6, 0.8,"","","","", 1.9, 0.0, 0.0, 0.0, 1.8, 2.2, 0.0,"" +8.0,5,a-degr-i2,2024-25,Wachusett-Paxton Center,07750040, 390, 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,2024-25,Wachusett-Mountview Middle,07750305, 773, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Wachusett-Glenwood Elementary School,07750060, 382, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wachusett-Thomas Prince,07750045, 319, 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,2024-25,Wachusett-Leroy E.Mayo,07750032, 399, 1, 0.3, 0.0, 1.2, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Wachusett-Houghton Elementary,07750027, 243, 1, 0.4, 0.0, 0.0, 1.5, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Wachusett-Davis Hill Elementary,07750018, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wachusett-Naquag Elementary School,07750005, 235, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.6,5,a-degr-i2,2024-25,Wachusett-Wachusett Regional High,07750505," 1,760", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +7.2,5,a-degr-i2,2024-25,Wachusett-Chocksett Middle School,07750315, 264, 1, 0.4,"","","","", 0.0, 0.0, 1.5, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Wachusett-Central Tree Middle,07750310, 369, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Wachusett-Dawson,07750020, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wakefield-Wakefield Memorial High,03050505, 854, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Wakefield-Greenwood,03050020, 183, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Wakefield-Woodville School,03050015, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Wakefield-Galvin Middle School,03050310," 1,056", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Wakefield-Walton,03050040, 172, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Wakefield-Dolbeare,03050005, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Wales-Wales Elementary,03060005, 72, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Walpole-Boyden,03070010, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Walpole-Walpole Middle School,03070315, 829, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Walpole-Walpole High,03070505, 911, 3, 0.3,"","","","","","","","", 0.0, 0.5, 0.4, 0.4 +7.4,5,a-degr-i2,2024-25,Walpole-Fisher,03070015, 400, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Walpole-Elm Street School,03070005, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Walpole-Old Post Road,03070018, 395, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Waltham-Dual Language School,03080001, 182, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Waltham-Northeast Elementary School,03080040, 377, 2, 0.5, 1.4, 0.0, 0.0, 0.0, 1.2,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Waltham-Douglas MacArthur Elementary School,03080032, 392, 1, 0.3, 0.0, 1.2, 0.0, 0.0, 0.0,"","","","","","","" +-61.400000000000006,1,a-degr-i2,2024-25,Waltham-Waltham Valor High School,03080515, 49, 17, 34.7,"","","","","","","","","", 20.0, 34.6, 41.7 +3.2,3.2,a-degr-i2,2024-25,Waltham-Waltham Sr High,03080505," 1,777", 42, 2.4,"","","","","","","","", 2.7, 3.1, 2.2, 1.4 +8.0,5,a-degr-i2,2024-25,Waltham-John W. McDevitt Middle School,03080415, 618, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Waltham-John F Kennedy Middle,03080404, 635, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Waltham-Henry Whittemore Elementary School,03080065, 314, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Waltham-Thomas R Plympton Elementary School,03080050, 299, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Waltham-James Fitzgerald Elementary School,03080060, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Waltham-William F. Stanley Elementary School,03080005, 279, 1, 0.4, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.6,4.6,a-degr-i2,2024-25,Ware-Ware Junior/Senior High School,03090505, 416, 7, 1.7,"","","","","","", 0.0, 0.0, 9.4, 1.6, 0.0, 0.0 +7.2,5,a-degr-i2,2024-25,Ware-Ware Middle School,03090305, 261, 1, 0.4,"","","", 0.0, 1.1, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Ware-Stanley M Koziol Elementary School,03090020, 234, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +-3.5999999999999996,1,a-degr-i2,2024-25,Wareham-Wareham Senior High,03100505, 521, 30, 5.8,"","","","","","","", 7.5, 10.4, 5.6, 2.9, 0.0 +-48.4,1,a-degr-i2,2024-25,Wareham-Wareham Cooperative Alternative School,03100315, 39, 11, 28.2,"","","","","","","","","", 29.4, 10.0, 12.5 +4.8,4.8,a-degr-i2,2024-25,Wareham-Wareham Elementary School,03100017, 670, 11, 1.6, 3.6, 2.4, 0.0, 0.6,"","","","","","","","" +7.6,5,a-degr-i2,2024-25,Wareham-Wareham Middle,03100305, 432, 1, 0.2,"","","","", 0.0, 0.7, 0.0,"","","","","" +8.0,5,a-degr-i2,2024-25,Warwick-Warwick Community School,03120020, 21, 0, 0.0,"","","", 0.0,"","","","","","","","" +3.8,3.8,a-degr-i2,2024-25,Watertown-Watertown High,03140505, 761, 16, 2.1,"","","","","","","","", 1.1, 4.2, 0.5, 2.5 +7.6,5,a-degr-i2,2024-25,Watertown-Hosmer,03140020, 507, 1, 0.2, 0.0, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Watertown-Cunniff,03140015, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Watertown-Watertown Middle,03140305, 583, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2024-25,Watertown-James Russell Lowell,03140025, 319, 2, 0.6, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Wayland-Claypit Hill School,03150005, 428, 1, 0.2, 0.0, 1.2, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wayland-Wayland Middle School,03150305, 662, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Wayland-Happy Hollow School,03150015, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Wayland-Loker School,03150020, 308, 1, 0.3, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wayland-Wayland High School,03150505, 803, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +6.6,5,a-degr-i2,2024-25,Webster-Webster Middle School,03160315, 566, 4, 0.7,"","","","", 0.0, 0.0, 2.2, 0.6,"","","","" +-1.0,1,a-degr-i2,2024-25,Webster-Bartlett High School,03160505, 404, 18, 4.5,"","","","","","","","", 9.7, 1.9, 4.5, 1.0 +7.6,5,a-degr-i2,2024-25,Webster-Park Avenue Elementary,03160015, 540, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2024-25,Wellesley-Hunnewell,03170025, 248, 2, 0.8, 2.0, 0.0, 1.8, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wellesley-John D Hardy,03170020, 236, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Wellesley-Wellesley Sr High,03170505," 1,256", 5, 0.4,"","","","","","","","", 0.3, 0.0, 0.0, 1.2 +8.0,5,a-degr-i2,2024-25,Wellesley-Wellesley Middle,03170305, 919, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,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,2024-25,Wellesley-Schofield,03170045, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wellesley-Katharine Lee Bates,03170005, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wellesley-Joseph E Fiske,03170015, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wellfleet-Wellfleet Elementary,03180005, 71, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,West Boylston-West Boylston Junior/Senior High,03220505, 459, 2, 0.4,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.8 +7.4,5,a-degr-i2,2024-25,West Boylston-Major Edwards Elementary,03220005, 352, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,West Bridgewater-Rose L Macdonald,03230003, 296, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,West Bridgewater-Howard School,03230305, 335, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,West Bridgewater-West Bridgewater Junior/Senior,03230505, 614, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,West Springfield-Mittineague,03320030, 110, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2024-25,West Springfield-Philip G Coburn,03320007, 461, 7, 1.5, 2.6, 3.4, 1.3, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2024-25,West Springfield-Tatham,03320040, 245, 2, 0.8, 2.2, 0.0, 2.6, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,West Springfield-Memorial,03320025, 189, 1, 0.5, 0.0, 0.0, 2.6, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,West Springfield-West Springfield Middle,03320305, 909, 3, 0.3,"","","","","", 0.0, 1.0, 0.0,"","","","" +3.4000000000000004,3.4,a-degr-i2,2024-25,West Springfield-West Springfield High,03320505," 1,221", 28, 2.3,"","","","","","","","", 7.8, 0.0, 0.0, 0.4 +5.6,5,a-degr-i2,2024-25,West Springfield-John R Fausey,03320010, 434, 5, 1.2, 1.5, 0.0, 4.3, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Westborough-Sarah W Gibbons Middle,03210305, 610, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Westborough-Mill Pond School,03210045, 834, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Westborough-Annie E Fales,03210010, 254, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westborough-J Harding Armstrong,03210005, 299, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westborough-Elsie A Hastings Elementary,03210025, 257, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2024-25,Westborough-Westborough High,03210505," 1,204", 4, 0.3,"","","","","","","","", 0.3, 0.0, 0.3, 0.6 +7.6,5,a-degr-i2,2024-25,Westfield-Westfield Technical Academy,03250605, 557, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 +5.8,5,a-degr-i2,2024-25,Westfield-Westfield High,03250505," 1,020", 11, 1.1,"","","","","","","","", 0.4, 0.0, 0.0, 3.6 +8.0,5,a-degr-i2,2024-25,Westfield-Westfield Middle School,03250310, 671, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Westfield-Westfield Intermediate School,03250075, 729, 2, 0.3,"","","","", 0.6, 0.0,"","","","","","" +7.2,5,a-degr-i2,2024-25,Westfield-Southampton Road,03250040, 226, 1, 0.4, 2.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westfield-Abner Gibbs,03250020, 160, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westfield-Munger Hill,03250033, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westfield-Franklin Ave,03250015, 146, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2024-25,Westfield-Highland,03250025, 235, 1, 0.4, 0.0, 1.7, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westfield-Paper Mill,03250036, 246, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2024-25,Westford-Rita E. Miller Elementary School,03260055, 168, 1, 0.6, 0.0, 1.1,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westford-Westford Academy,03260505," 1,497", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Westford-John A. Crisafulli Elementary School,03260045, 342, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Westford-Blanchard Middle,03260310, 541, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Westford-Stony Brook School,03260330, 546, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Westford-Abbot Elementary,03260004, 371, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Westford-Day Elementary,03260007, 299, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Westford-Nabnasset,03260015, 214, 1, 0.5, 0.0, 0.9,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westford-Col John Robinson,03260025, 232, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Westhampton-Westhampton Elementary School,03270005, 71, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Weston-Woodland,03300015, 222, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2024-25,Weston-Country,03300010, 239, 1, 0.4, 1.6, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Weston-Field Elementary School,03300012, 317, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2024-25,Weston-Weston Middle,03300305, 451, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2024-25,Weston-Weston High,03300505, 658, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Westport-Westport Elementary,03310030, 463, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.2,5,a-degr-i2,2024-25,Westport-Westport Middle-High School,03310515, 886, 8, 0.9,"","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 6.9, 0.0, 0.0 +7.6,5,a-degr-i2,2024-25,Westwood-Westwood High,03350505, 837, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.5 +8.0,5,a-degr-i2,2024-25,Westwood-E W Thurston Middle,03350305, 664, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Westwood-William E Sheehan,03350025, 244, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Westwood-Martha Jones,03350017, 234, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Westwood-Pine Hill Elementary School,03350030, 383, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Westwood-Downey,03350012, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Weymouth-Ralph Talbot,03360085, 246, 1, 0.4, 0.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Weymouth-Thomas W. Hamilton Primary School,03360105, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Weymouth-Academy Avenue,03360005, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2024-25,Weymouth-Maria Weston Chapman Middle School,03360020," 1,187", 1, 0.1,"","","","","", 0.0, 0.2, 0.0,"","","","" +4.2,4.2,a-degr-i2,2024-25,Weymouth-Weymouth High School,03360505," 1,665", 32, 1.9,"","","","","","","","", 4.0, 2.1, 0.5, 1.2 +8.0,5,a-degr-i2,2024-25,Weymouth-Frederick C Murphy,03360050, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Weymouth-Wessagusset,03360110, 265, 1, 0.4, 0.0, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2024-25,Weymouth-Lawrence W Pingree,03360065, 221, 1, 0.5, 0.0, 0.0, 0.0, 2.2, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Weymouth-Thomas V Nash,03360060, 225, 1, 0.4, 0.0, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2024-25,Weymouth-William Seach,03360080, 308, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Whately-Whately Elementary,03370005, 99, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Whitman-Hanson-John H Duval,07800030, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2024-25,Whitman-Hanson-Whitman Hanson Regional,07800505, 981, 14, 1.4,"","","","","","","","", 0.0, 0.0, 0.0, 5.3 +8.0,5,a-degr-i2,2024-25,Whitman-Hanson-Hanson Middle School,07800315, 442, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Whitman-Hanson-Louise A Conley,07800010, 412, 1, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Whitman-Hanson-Indian Head,07800035, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2024-25,Whitman-Hanson-Whitman Middle,07800310, 496, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2024-25,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605," 1,285", 1, 0.1,"","","","","","","","", 0.0, 0.3, 0.0, 0.0 +8.0,5,a-degr-i2,2024-25,Williamsburg-Anne T. Dunphy School,03400020, 91, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Wilmington-Shawsheen Elementary,03420025, 304, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.8,5,a-degr-i2,2024-25,Wilmington-Wilmington Middle School,03420330, 684, 4, 0.6,"","","","","", 0.9, 0.8, 0.0,"","","","" +5.8,5,a-degr-i2,2024-25,Wilmington-Wilmington High,03420505, 619, 7, 1.1,"","","","","","","","", 2.4, 0.7, 0.6, 0.7 +7.4,5,a-degr-i2,2024-25,Wilmington-Woburn Street,03420020, 368, 1, 0.3, 0.9, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Wilmington-North Intermediate,03420060, 246, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wilmington-West Intermediate,03420080, 229, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +NA,NA,a-degr-i2,2024-25,Winchendon-Murdock Academy for Success,03430405, 1,"","","","","","","","","","","","","","" +-0.5999999999999996,1,a-degr-i2,2024-25,Winchendon-Murdock High School,03430515, 253, 11, 4.3,"","","","","","","","", 2.8, 11.9, 1.8, 0.0 +8.0,5,a-degr-i2,2024-25,Winchendon-Murdock Middle School,03430315, 281, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Winchendon-Toy Town Elementary,03430050, 292, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Winchendon-Memorial,03430040, 191, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Winchester-McCall Middle,03440305," 1,036", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2024-25,Winchester-Winchester High School,03440505," 1,400", 3, 0.2,"","","","","","","","", 0.0, 0.3, 0.0, 0.6 +8.0,5,a-degr-i2,2024-25,Winchester-Ambrose Elementary,03440045, 335, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Winchester-Muraco Elementary,03440040, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2024-25,Winchester-Lincoln Elementary,03440005, 283, 1, 0.4, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Winchester-Lynch Elementary,03440020, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Winchester-Vinson-Owen Elementary,03440025, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2024-25,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 288, 2, 0.7, 0.7, 0.7,"","","","","","","","","","" +8.0,5,a-degr-i2,2024-25,Winthrop-Arthur T. Cummings Elementary School,03460020, 467, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Winthrop-Winthrop Middle School,03460305, 439, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +2.4000000000000004,2.4,a-degr-i2,2024-25,Winthrop-Winthrop High School,03460505, 566, 16, 2.8,"","","","","","","","", 6.3, 2.7, 2.8, 0.0 +8.0,5,a-degr-i2,2024-25,Woburn-Malcolm White,03470055, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Woburn-Shamrock,03470043, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Woburn-Linscott-Rumford,03470025, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Woburn-Hurld-Wyman Elementary School,03470020, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Woburn-Daniel L Joyce Middle School,03470410, 455, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Woburn-Clyde Reeves,03470040, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Woburn-Mary D Altavesta,03470065, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Woburn-Goodyear Elementary School,03470005, 292, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2024-25,Woburn-Woburn High,03470505," 1,250", 16, 1.3,"","","","","","","","", 1.7, 1.9, 0.7, 0.9 +8.0,5,a-degr-i2,2024-25,Woburn-John F Kennedy Middle School,03470405, 521, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2024-25,Worcester-Heard Street,03480136, 212, 2, 0.9, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Jacob Hiatt Magnet,03480140, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Lake View,03480145, 232, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.5999999999999996,2.6,a-degr-i2,2024-25,Worcester-Lincoln Street,03480160, 148, 4, 2.7, 7.4, 7.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2024-25,Worcester-May Street,03480175, 256, 3, 1.2, 4.3, 0.0, 0.0, 0.0, 2.2, 0.0,"","","","","","" +4.2,4.2,a-degr-i2,2024-25,Worcester-Francis J McGrath Elementary,03480177, 157, 3, 1.9, 9.5, 3.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.2,3.2,a-degr-i2,2024-25,Worcester-Midland Street,03480185, 209, 5, 2.4, 7.7, 6.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2024-25,Worcester-Nelson Place,03480200, 476, 5, 1.1, 2.4, 1.4, 1.3, 0.0, 1.2, 0.0,"","","","","","" +5.4,5,a-degr-i2,2024-25,Worcester-Norrback Avenue,03480202, 381, 5, 1.3, 3.6, 2.9, 1.6, 0.0, 0.0, 0.0,"","","","","","" +5.0,5.0,a-degr-i2,2024-25,Worcester-Union Hill School,03480240, 325, 5, 1.5, 8.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2024-25,Worcester-West Tatnuck,03480260, 260, 3, 1.2, 5.3, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2024-25,Worcester-Vernon Hill School,03480280, 395, 3, 0.8, 2.7, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2024-25,Worcester-University Pk Campus School,03480285, 233, 1, 0.4,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 2.4 +4.0,4.0,a-degr-i2,2024-25,Worcester-Worcester Academic Center for Transition (ACT),03480290, 49, 1, 2.0, 0.0, 16.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2024-25,Worcester-Claremont Academy,03480350, 473, 3, 0.6,"","","","","","", 0.0, 0.0, 1.5, 0.0, 1.4, 1.2 +7.8,5,a-degr-i2,2024-25,Worcester-Burncoat Middle School,03480405, 720, 1, 0.1,"","","","","","", 0.3, 0.0,"","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Forest Grove Middle,03480415, 839, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2024-25,Worcester-Worcester East Middle,03480420, 731, 2, 0.3,"","","","","","", 0.3, 0.3,"","","","" +5.0,5.0,a-degr-i2,2024-25,Worcester-Burncoat Senior High,03480503," 1,050", 16, 1.5,"","","","","","","","", 3.2, 0.7, 0.8, 1.2 +4.4,4.4,a-degr-i2,2024-25,Worcester-Doherty Memorial High,03480512," 1,565", 28, 1.8,"","","","","","","","", 2.6, 3.0, 0.8, 0.3 +2.8,2.8,a-degr-i2,2024-25,Worcester-South High Community,03480520," 1,779", 47, 2.6,"","","","","","","","", 5.6, 2.0, 1.3, 2.0 +-25.4,1,a-degr-i2,2024-25,Worcester-Worcester Alternative High School,03480525, 36, 6, 16.7,"","","","","","","","", 33.3, 20.0, 8.3, 12.5 +6.6,5,a-degr-i2,2024-25,Worcester-Worcester Technical High,03480605," 1,419", 10, 0.7,"","","","","","","","", 1.8, 0.3, 0.3, 0.3 +5.4,5,a-degr-i2,2024-25,Worcester-Belmont Street Community,03480020, 472, 6, 1.3, 3.4, 4.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Worcester-Worcester Arts Magnet School,03480225, 302, 1, 0.3, 0.0, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Sullivan Middle,03480423, 940, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-3.8000000000000007,1,a-degr-i2,2024-25,Worcester-North High,03480515," 1,362", 81, 5.9,"","","","","","","","", 11.4, 5.7, 4.4, 2.0 +6.6,5,a-degr-i2,2024-25,Worcester-Woodland Academy,03480030, 419, 3, 0.7, 2.7, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2024-25,Worcester-Chandler Elementary Community,03480050, 346, 2, 0.6, 1.6, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2024-25,Worcester-Clark St Community,03480055, 219, 2, 0.9, 0.0, 0.0, 0.0, 0.0, 3.8, 2.6,"","","","","","" +7.2,5,a-degr-i2,2024-25,Worcester-Goddard School/Science Technical,03480100, 285, 1, 0.4, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2024-25,Worcester-Rice Square,03480215, 430, 1, 0.2, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2024-25,Worcester-Roosevelt,03480220, 413, 3, 0.7, 2.7, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Tatnuck,03480230, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.4,4.4,a-degr-i2,2024-25,Worcester-Thorndyke Road,03480235, 275, 5, 1.8, 3.0, 3.7, 1.7, 0.0, 2.1, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Worcester-Grafton Street,03480115, 331, 1, 0.3, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Gates Lane,03480110, 416, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2024-25,Worcester-Elm Park Community,03480095, 379, 4, 1.1, 1.3, 3.4, 1.6, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2024-25,Worcester-Flagg Street,03480090, 342, 3, 0.9, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.6,4.6,a-degr-i2,2024-25,Worcester-Columbus Park,03480060, 295, 5, 1.7, 4.0, 2.0, 2.3, 0.0, 1.8, 0.0,"","","","","","" +5.8,5,a-degr-i2,2024-25,Worcester-City View,03480053, 370, 4, 1.1, 1.2, 3.1, 1.5, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2024-25,Worcester-Worcester Dual Language Magnet School,03480052, 429, 1, 0.2, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.8,3.8,a-degr-i2,2024-25,Worcester-Canterbury,03480045, 238, 5, 2.1, 7.7, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2024-25,Worcester-Quinsigamond,03480210, 618, 2, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Wawecus Road School,03480026, 140, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Worcester-Burncoat Street,03480035, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2024-25,Worcester Cultural Academy Charter Public School (District)-Worcester Cultural Academy Charter Public School,35190205, 152, 1, 0.7, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Worthington-R. H. Conwell,03490010, 53, 0, 0.0, 0.0, 0.0,"", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2024-25,Wrentham-Charles E Roderick,03500010, 357, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2024-25,Wrentham-Delaney,03500003, 397, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105," 1,300", 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 7.4,5,a-degr-i2,2023-24,Abington-Beaver Brook Elementary,00010020, 329, 1, 0.3, 0.6, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Abington-Abington High,00010505, 553, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Abington-Woodsdale Elementary School,00010015, 352, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Abington-Abington Middle School,00010405, 636, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Abington-Abington High,00010505, 553, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2023-24,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 440, 1, 0.2,"","","","", 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Acton-Boxborough-Luther Conant School,06000030, 353, 1, 0.3, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.4,5,a-degr-i2,2023-24,Acton-Boxborough-Paul P Gates Elementary School,06000025, 297, 1, 0.3, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Blanchard Memorial School,06000005, 451, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Merriam School,06000010, 365, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Acton-Boxborough-McCarthy-Towne School,06000015, 381, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2023-24,Acton-Boxborough-Luther Conant School,06000030, 353, 1, 0.3, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Raymond J Grey Junior High,06000405, 813, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Merriam School,06000010, 365, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2023-24,Acton-Boxborough-Acton-Boxborough Regional High,06000505," 1,646", 8, 0.5,"","","","","","","","", 0.0, 0.7, 0.0, 1.2 +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Blanchard Memorial School,06000005, 451, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Raymond J Grey Junior High,06000405, 813, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Acushnet-Acushnet Elementary School,00030025, 378, 2, 0.5, 1.1, 1.1, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2023-24,Acushnet-Albert F Ford Middle School,00030305, 420, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.9,"","","","" 7.6,5,a-degr-i2,2023-24,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 966, 2, 0.2,"","","","","", 0.7, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0 -7.2,5,a-degr-i2,2023-24,Agawam-Clifford M Granger,00050010, 283, 1, 0.4, 1.7, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Agawam-Benjamin J Phelps,00050020, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2023-24,Agawam-William P. Sapelli Elementary,00050025, 231, 1, 0.4, 0.0, 2.0, 0.0, 0.0,"","","","","","","","" -4.0,4.0,a-degr-i2,2023-24,Agawam-Agawam High,00050505," 1,046", 21, 2.0,"","","","","","","","", 7.4, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Agawam-Roberta G. Doering School,00050303, 504, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2023-24,Agawam-Agawam Junior High,00050405, 551, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" +4.0,4.0,a-degr-i2,2023-24,Agawam-Agawam High,00050505," 1,046", 21, 2.0,"","","","","","","","", 7.4, 0.0, 0.0, 0.0 6.4,5,a-degr-i2,2023-24,Agawam-James Clark School,00050030, 250, 2, 0.8, 1.5, 0.0, 1.7, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Agawam-Benjamin J Phelps,00050020, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Agawam-Clifford M Granger,00050010, 283, 1, 0.4, 1.7, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Agawam-William P. Sapelli Elementary,00050025, 231, 1, 0.4, 0.0, 2.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 941, 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,2023-24,Amesbury-Amesbury Middle,00070013, 416, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" --3.8000000000000007,1,a-degr-i2,2023-24,Amesbury-Amesbury Innovation High School,00070515, 51, 3, 5.9,"","","","","","","","", 0.0, 6.7, 0.0, 12.5 5.4,5,a-degr-i2,2023-24,Amesbury-Amesbury High,00070505, 461, 6, 1.3,"","","","","","","","", 0.7, 1.7, 2.9, 0.0 -7.4,5,a-degr-i2,2023-24,Amesbury-Charles C Cashman Elementary,00070010, 398, 1, 0.3,"","", 0.7, 0.0, 0.0,"","","","","","","" +-3.8000000000000007,1,a-degr-i2,2023-24,Amesbury-Amesbury Innovation High School,00070515, 51, 3, 5.9,"","","","","","","","", 0.0, 6.7, 0.0, 12.5 8.0,5,a-degr-i2,2023-24,Amesbury-Shay Elementary,00070005, 279, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Amherst-Wildwood Elementary,00080050, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2023-24,Amherst-Fort River Elementary,00080020, 298, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 2.8,"","","","","","" +7.4,5,a-degr-i2,2023-24,Amesbury-Charles C Cashman Elementary,00070010, 398, 1, 0.3,"","", 0.7, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Amherst-Crocker Farm Elementary,00080009, 235, 1, 0.4, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2023-24,Amherst-Pelham-Amherst Regional High,06050505, 837, 4, 0.5,"","","","","","","","", 0.0, 0.0, 0.0, 1.9 +7.4,5,a-degr-i2,2023-24,Amherst-Fort River Elementary,00080020, 298, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 2.8,"","","","","","" +8.0,5,a-degr-i2,2023-24,Amherst-Wildwood Elementary,00080050, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Amherst-Pelham-Amherst Regional Middle School,06050405, 369, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Andover-Bancroft Elementary,00090003, 449, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Andover-High Plain Elementary,00090004, 462, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Andover-Henry C Sanborn Elementary,00090010, 295, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Andover-South Elementary,00090020, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,Andover-Andover High,00090505," 1,650", 9, 0.5,"","","","","","","","", 0.5, 0.7, 0.7, 0.2 -8.0,5,a-degr-i2,2023-24,Andover-Doherty Middle,00090305, 462, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Amherst-Pelham-Amherst Regional High,06050505, 837, 4, 0.5,"","","","","","","","", 0.0, 0.0, 0.0, 1.9 8.0,5,a-degr-i2,2023-24,Andover-Andover West Middle,00090310, 493, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Andover-Wood Hill Middle School,00090350, 331, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Andover-Andover High,00090505," 1,650", 9, 0.5,"","","","","","","","", 0.5, 0.7, 0.7, 0.2 7.6,5,a-degr-i2,2023-24,Andover-West Elementary,00090025, 488, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Andover-Doherty Middle,00090305, 462, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Andover-Henry C Sanborn Elementary,00090010, 295, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Andover-Bancroft Elementary,00090003, 449, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Andover-High Plain Elementary,00090004, 462, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Andover-South Elementary,00090020, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 0.5999999999999996,1,a-degr-i2,2023-24,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 574, 21, 3.7,"","","","","", 1.0, 0.0, 0.0, 13.5, 2.5, 0.0, 11.5 +8.0,5,a-degr-i2,2023-24,Arlington-John A Bishop,00100005, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Arlington-Brackett,00100010, 363, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Arlington-Cyrus E Dallin,00100025, 354, 1, 0.3, 0.0, 0.0, 1.5, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Arlington-Hardy,00100030, 320, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2023-24,Arlington-Arlington High,00100505," 1,609", 6, 0.4,"","","","","","","","", 0.0, 0.3, 0.3, 1.0 +7.4,5,a-degr-i2,2023-24,Arlington-Peirce,00100045, 294, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Arlington-Thompson,00100050, 436, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Arlington-M Norcross Stratton,00100055, 368, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Arlington-Gibbs School,00100305, 468, 0, 0.0,"","","","","", 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Arlington-Ottoson Middle,00100410, 941, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Arlington-John A Bishop,00100005, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Arlington-Peirce,00100045, 294, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Arlington-Arlington High,00100505," 1,609", 6, 0.4,"","","","","","","","", 0.0, 0.3, 0.3, 1.0 +8.0,5,a-degr-i2,2023-24,Arlington-Hardy,00100030, 320, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Ashburnham-Westminster-Overlook Middle School,06100305, 535, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,Ashburnham-Westminster-Oakmont Regional High School,06100505, 631, 2, 0.3,"","","","","","","","", 0.6, 0.0, 0.0, 0.6 7.0,5,a-degr-i2,2023-24,Ashburnham-Westminster-Briggs Elementary,06100025, 378, 2, 0.5, 2.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 3.2,3.2,a-degr-i2,2023-24,Ashburnham-Westminster-Meetinghouse School,06100010, 84, 2, 2.4, 2.4,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Ashburnham-Westminster-Westminster Elementary,06100005, 408, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Ashburnham-Westminster-Oakmont Regional High School,06100505, 631, 2, 0.3,"","","","","","","","", 0.6, 0.0, 0.0, 0.6 7.0,5,a-degr-i2,2023-24,Ashland-Ashland High,00140505, 870, 4, 0.5,"","","","","","","","", 0.0, 1.8, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Ashland-Ashland Middle,00140405, 679, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Ashland-David Mindess,00140015, 667, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Ashland-Henry E Warren Elementary,00140010, 392, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Ashland-Ashland Middle,00140405, 679, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605," 1,130", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Athol-Royalston-Royalston Community School,06150050, 110, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2023-24,Athol-Royalston-Athol Community Elementary School,06150020, 413, 2, 0.5, 2.0, 0.0, 0.0, 0.0,"","","","","","","","" -1.1999999999999993,1,a-degr-i2,2023-24,Athol-Royalston-Athol High,06150505, 410, 19, 4.6,"","","","","","","","", 10.3, 4.0, 2.7, 1.1 7.6,5,a-degr-i2,2023-24,Athol-Royalston-Athol-Royalston Middle School,06150305, 463, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.8,"","","","" +8.0,5,a-degr-i2,2023-24,Athol-Royalston-Royalston Community School,06150050, 110, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Athol-Royalston-Athol Community Elementary School,06150020, 413, 2, 0.5, 2.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.0,5,a-degr-i2,2023-24,Atlantis Charter (District)-Atlantis Charter School,04910550," 1,148", 11, 1.0, 0.9, 0.9, 0.0, 0.0, 0.0, 0.9, 1.8, 0.9, 3.3, 4.4, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Attleboro-Peter Thacher Elementary School,00160050, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Attleboro-Hill-Roberts Elementary School,00160045, 340, 1, 0.3, 0.0, 0.0, 1.3, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2023-24,Attleboro-Hyman Fine Elementary School,00160040, 371, 3, 0.8, 3.2, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Attleboro-Thomas Willett Elementary School,00160035, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2023-24,Attleboro-Robert J. Coelho Middle School,00160305, 577, 1, 0.2,"","","","", 0.0, 0.8, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Attleboro-Cyril K. Brennan Middle School,00160315, 613, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Attleboro-Wamsutta Middle School,00160320, 580, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Attleboro-Attleboro High,00160505," 1,900", 10, 0.5,"","","","","","","","", 0.8, 0.4, 0.6, 0.2 -6.800000000000001,1,a-degr-i2,2023-24,Attleboro-Attleboro Community Academy,00160515, 68, 5, 7.4,"","","","","","","", 0.0, 28.6, 7.7, 10.0, 0.0 -1.5999999999999996,1.6,a-degr-i2,2023-24,Attleboro-Attleboro Virtual Academy,00160705, 31, 1, 3.2,"","","","","","","","","","", 0.0, 0.0 7.2,5,a-degr-i2,2023-24,Attleboro-A. Irvin Studley Elementary School,00160001, 279, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Attleboro-Thomas Willett Elementary School,00160035, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.4,5,a-degr-i2,2023-24,Attleboro-Hyman Fine Elementary School,00160040, 371, 3, 0.8, 3.2, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2023-24,Attleboro-Hill-Roberts Elementary School,00160045, 340, 1, 0.3, 0.0, 0.0, 1.3, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Attleboro-Peter Thacher Elementary School,00160050, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +1.5999999999999996,1.6,a-degr-i2,2023-24,Attleboro-Attleboro Virtual Academy,00160705, 31, 1, 3.2,"","","","","","","","","","", 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Auburn-Auburn Middle,00170305, 622, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Auburn-Auburn Senior High,00170505, 708, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.0,5,a-degr-i2,2023-24,Auburn-Bryn Mawr,00170010, 185, 1, 0.5, 0.0, 1.1,"","","","","","","","","","" 6.8,5,a-degr-i2,2023-24,Auburn-Pakachoag School,00170025, 170, 1, 0.6, 1.2, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Auburn-Swanson Road Intermediate School,00170030, 561, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Auburn-Auburn Middle,00170305, 622, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Auburn-Auburn Senior High,00170505, 708, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Avon-Ralph D Butler,00180010, 262, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.6,5,a-degr-i2,2023-24,Avon-Avon Middle High School,00180510, 405, 5, 1.2,"","","","","", 0.0, 0.0, 1.6, 4.1, 0.0, 3.1, 0.0 -6.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Lura A. White Elementary School,06160001, 298, 3, 1.0, 3.4, 0.0, 0.0, 0.0, 1.9,"","","","","","","" -7.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 391, 2, 0.5, 1.2, 0.0, 1.9, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 379, 1, 0.3,"","","","","", 0.7, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Avon-Ralph D Butler,00180010, 262, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 412, 2, 0.5,"","","","","","","","", 2.1, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Barnstable-Barnstable Intermediate School,00200315, 639, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" -0.20000000000000018,1,a-degr-i2,2023-24,Barnstable-Barnstable High,00200505," 1,742", 68, 3.9,"","","","","","","", 0.3, 5.7, 2.0, 5.3, 6.5 +7.4,5,a-degr-i2,2023-24,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 379, 1, 0.3,"","","","","", 0.7, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 391, 2, 0.5, 1.2, 0.0, 1.9, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Lura A. White Elementary School,06160001, 298, 3, 1.0, 3.4, 0.0, 0.0, 0.0, 1.9,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Barnstable-West Barnstable Elementary,00200005, 201, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.8,5,a-degr-i2,2023-24,Barnstable-Barnstable United Elementary School,00200050, 706, 1, 0.1,"","","", 0.3, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Barnstable-West Villages Elementary School,00200045, 313, 1, 0.3, 1.0, 0.0, 0.0,"","","","","","","","","" +0.20000000000000018,1,a-degr-i2,2023-24,Barnstable-Barnstable High,00200505," 1,742", 68, 3.9,"","","","","","","", 0.3, 5.7, 2.0, 5.3, 6.5 8.0,5,a-degr-i2,2023-24,Barnstable-Barnstable Community Innovation School,00200012, 229, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Barnstable-Centerville Elementary,00200010, 199, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.2,5,a-degr-i2,2023-24,Barnstable-Hyannis West Elementary,00200025, 250, 1, 0.4, 0.0, 1.3, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Barnstable-West Villages Elementary School,00200045, 313, 1, 0.3, 1.0, 0.0, 0.0,"","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Barnstable-Barnstable United Elementary School,00200050, 706, 1, 0.1,"","","", 0.3, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Barnstable-Centerville Elementary,00200010, 199, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Barnstable-Barnstable Intermediate School,00200315, 639, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" 4.6,4.6,a-degr-i2,2023-24,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 414, 7, 1.7,"","","","","", 1.7, 0.0, 1.4, 1.6, 3.5, 3.2, 0.0 7.4,5,a-degr-i2,2023-24,Bedford-Lt Eleazer Davis,00230010, 311, 1, 0.3, 0.0, 0.7,"","","","","","","","","","" -7.4,5,a-degr-i2,2023-24,Bedford-Bedford High,00230505, 866, 3, 0.3,"","","","","","","","", 0.9, 0.5, 0.0, 0.0 -7.6,5,a-degr-i2,2023-24,Bedford-John Glenn Middle,00230305, 612, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Bedford-Lt Job Lane School,00230012, 571, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -2.5999999999999996,2.6,a-degr-i2,2023-24,Belchertown-Belchertown High,00240505, 597, 16, 2.7,"","","","","","","","", 4.2, 5.2, 0.7, 0.7 +7.6,5,a-degr-i2,2023-24,Bedford-John Glenn Middle,00230305, 612, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Bedford-Bedford High,00230505, 866, 3, 0.3,"","","","","","","","", 0.9, 0.5, 0.0, 0.0 7.6,5,a-degr-i2,2023-24,Belchertown-Swift River Elementary,00240018, 468, 1, 0.2, 0.0, 0.6, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Belchertown-Chestnut Hill Community School,00240006, 489, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +2.5999999999999996,2.6,a-degr-i2,2023-24,Belchertown-Belchertown High,00240505, 597, 16, 2.7,"","","","","","","","", 4.2, 5.2, 0.7, 0.7 7.4,5,a-degr-i2,2023-24,Belchertown-Jabish Middle School,00240025, 333, 1, 0.3,"","","","","","", 0.0, 0.6,"","","","" +7.0,5,a-degr-i2,2023-24,Bellingham-Bellingham Memorial School,00250315, 591, 3, 0.5,"","","", 0.0, 0.0, 0.0, 1.9,"","","","","" 8.0,5,a-degr-i2,2023-24,Bellingham-Joseph F DiPietro Elementary School,00250020, 217, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +-7.4,1,a-degr-i2,2023-24,Bellingham-Keough Memorial Academy,00250510, 26, 2, 7.7,"","","","","","","", 16.7, 0.0, 12.5,"","" 8.0,5,a-degr-i2,2023-24,Bellingham-Stall Brook,00250025, 171, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.0,5,a-degr-i2,2023-24,Bellingham-Bellingham Memorial School,00250315, 591, 3, 0.5,"","","", 0.0, 0.0, 0.0, 1.9,"","","","","" 6.4,5,a-degr-i2,2023-24,Bellingham-Bellingham High School,00250505, 742, 6, 0.8,"","","","","","","", 0.0, 0.6, 1.3, 1.4, 0.7 --7.4,1,a-degr-i2,2023-24,Bellingham-Keough Memorial Academy,00250510, 26, 2, 7.7,"","","","","","","", 16.7, 0.0, 12.5,"","" 6.2,5,a-degr-i2,2023-24,Belmont-Belmont High,00260505," 1,462", 13, 0.9,"","","","","","","","", 1.3, 1.1, 0.8, 0.3 +8.0,5,a-degr-i2,2023-24,Belmont-Belmont Middle School,00260315, 666, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Belmont-Winn Brook,00260005, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Belmont-Mary Lee Burbank,00260010, 269, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Belmont-Daniel Butler,00260015, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Belmont-Roger E Wellington,00260035, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Belmont-Winthrop L Chenery Upper Elementary,00260305, 713, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Belmont-Belmont Middle School,00260315, 666, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Belmont-Winn Brook,00260005, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2023-24,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 281, 3, 1.1, 6.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 788, 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,2023-24,Berkley-Berkley Community School,00270010, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Berkley-Berkley Middle School,00270305, 365, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Berkley-Berkley Community School,00270010, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 5.2,5,a-degr-i2,2023-24,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 365, 5, 1.4,"","","","","", 0.0, 0.0, 1.5, 5.8, 0.0, 0.0, 3.4 +6.4,5,a-degr-i2,2023-24,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 265, 2, 0.8, 1.8, 0.0, 1.4, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 348, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2023-24,Berkshire Hills-Monument Mt Regional High,06180505, 447, 3, 0.7,"","","","","","","","", 0.0, 0.0, 0.7, 1.9 -6.4,5,a-degr-i2,2023-24,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 265, 2, 0.8, 1.8, 0.0, 1.4, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Berlin-Boylston-Tahanto Regional High,06200505, 554, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Berlin-Boylston-Berlin Memorial School,06200005, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Berlin-Boylston-Boylston Elementary School,06200010, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Berlin-Boylston-Tahanto Regional High,06200505, 554, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -6.4,5,a-degr-i2,2023-24,Beverly-Centerville Elementary,00300010, 265, 2, 0.8, 1.4, 1.7, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2023-24,Beverly-Cove Elementary,00300015, 323, 1, 0.3, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Beverly-Hannah Elementary,00300033, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Beverly-North Beverly Elementary,00300040, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Beverly-Ayers/Ryal Side School,00300055, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Beverly-Beverly Middle School,00300305," 1,356", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Beverly-Ayers/Ryal Side School,00300055, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Beverly-North Beverly Elementary,00300040, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Beverly-Hannah Elementary,00300033, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Beverly-Cove Elementary,00300015, 323, 1, 0.3, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" 3.5999999999999996,3.6,a-degr-i2,2023-24,Beverly-Beverly High,00300505," 1,246", 27, 2.2,"","","","","","","","", 4.2, 1.8, 1.7, 0.7 -7.6,5,a-degr-i2,2023-24,Billerica-Thomas Ditson,00310005, 446, 1, 0.2, 0.0, 0.0, 0.9, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Billerica-Frederick J Dutile,00310007, 236, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Billerica-John F Kennedy,00310012, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2023-24,Beverly-Centerville Elementary,00300010, 265, 2, 0.8, 1.4, 1.7, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Billerica-Locke Middle,00310310, 503, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -8.0,5,a-degr-i2,2023-24,Billerica-Hajjar Elementary,00310026, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2023-24,Billerica-Marshall Middle School,00310305, 599, 1, 0.2,"","","","", 0.0, 0.0, 0.5,"","","","","" +8.0,5,a-degr-i2,2023-24,Billerica-Hajjar Elementary,00310026, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Billerica-Parker,00310015, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Billerica-John F Kennedy,00310012, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Billerica-Frederick J Dutile,00310007, 236, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Billerica-Thomas Ditson,00310005, 446, 1, 0.2, 0.0, 0.0, 0.9, 0.0,"","","","","","","","" 4.6,4.6,a-degr-i2,2023-24,Billerica-Billerica Memorial High School,00310505," 1,592", 27, 1.7,"","","","","","","", 0.0, 3.9, 4.5, 0.0, 0.4 7.8,5,a-degr-i2,2023-24,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605," 1,250", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Blackstone-Millville-A F Maloney,06220015, 238, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Blackstone-Millville-Millville Elementary,06220010, 179, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Blackstone-Millville-John F Kennedy Elementary,06220008, 115, 0, 0.0,"","", 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Blackstone-Millville-A F Maloney,06220015, 238, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 367, 1, 0.3,"","","","","", 0.0, 0.0, 0.7,"","","","" 7.0,5,a-degr-i2,2023-24,Blackstone-Millville-Blackstone Millville RHS,06220505, 377, 2, 0.5,"","","","","","","","", 1.0, 1.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Blackstone-Millville-John F Kennedy Elementary,06220008, 115, 0, 0.0,"","", 0.0,"","","","","","","","","" 7.6,5,a-degr-i2,2023-24,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 918, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.5, 0.0 +6.0,5,a-degr-i2,2023-24,Boston-Lee Academy,00350001, 101, 1, 1.0, 2.9, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Baldwin Early Learning Pilot Academy,00350003, 53, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Adams Elementary School,00350302, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Mason Elementary School,00350304, 144, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Boston-Greenwood Sarah K-8 School,00350308, 282, 1, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2023-24,Boston-Gardner Pilot Academy,00350326, 304, 6, 2.0, 7.5, 5.6, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Kenny Elementary School,00350328, 270, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Boston-Warren-Prescott K-8 School,00350346, 381, 4, 1.0, 2.9, 1.7, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Channing Elementary School,00350360, 126, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-24.200000000000003,1,a-degr-i2,2023-24,Boston-Melvin H. King South End Academy,00350363, 124, 20, 16.1,"","","","","", 14.3, 16.7, 5.6, 25.0, 25.0, 10.0, 21.1 +8.0,5,a-degr-i2,2023-24,Boston-Russell Elementary School,00350366, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-Trotter Elementary School,00350370, 219, 1, 0.5, 0.0, 0.0, 2.8, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Winship Elementary School,00350374, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Edison K-8 School,00350375, 528, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Boston-King Elementary School,00350376, 320, 3, 0.9, 1.7, 1.7, 0.0, 0.0, 1.9, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Higginson-Lewis K-8 School,00350377, 169, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Boston-Mildred Avenue K-8 School,00350378, 500, 3, 0.6, 2.5, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,"","","","" +7.4,5,a-degr-i2,2023-24,Boston-Young Achievers K-8 School,00350380, 372, 1, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +1.2000000000000002,1.2,a-degr-i2,2023-24,Boston-Frederick Pilot Middle School,00350383, 327, 11, 3.4,"","","","","", 0.0, 0.9, 8.0,"","","","" +7.0,5,a-degr-i2,2023-24,Boston-Blackstone Elementary School,00350390, 430, 2, 0.5, 1.4, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Boston-Henderson K-12 Inclusion School Upper,00350426, 627, 6, 1.0,"", 0.0, 0.0, 1.8, 2.1, 0.0, 0.0, 0.0, 1.7, 4.5, 0.0, 0.0 +4.4,4.4,a-degr-i2,2023-24,Boston-O'Bryant School of Math & Science,00350575," 1,538", 28, 1.8,"","","","","","", 4.1, 0.7, 1.9, 1.5, 2.7, 0.4 +-12.0,1,a-degr-i2,2023-24,Boston-Community Academy of Science and Health,00350581, 311, 31, 10.0,"","","","","","","","", 20.6, 8.3, 9.2, 3.8 5.8,5,a-degr-i2,2023-24,Boston-Boston Latin School,00350560," 2,400", 26, 1.1,"","","","","","", 3.5, 1.2, 1.2, 0.5, 0.0, 0.0 -0.40000000000000036,1,a-degr-i2,2023-24,Boston-Quincy Upper School,00350565, 528, 20, 3.8,"","","","","", 0.0, 3.6, 1.3, 8.6, 9.5, 4.5, 3.3 -6.2,5,a-degr-i2,2023-24,Boston-Everett Elementary School,00350088, 226, 2, 0.9, 2.6, 0.0, 0.0, 0.0, 2.6, 0.0,"","","","","","" -7.4,5,a-degr-i2,2023-24,Boston-Eliot K-8 Innovation School,00350096, 642, 2, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,"","","","" -8.0,5,a-degr-i2,2023-24,Boston-Mendell Elementary School,00350100, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2023-24,Boston-Roosevelt K-8 School,00350116, 256, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.2,"","","","" -8.0,5,a-degr-i2,2023-24,Boston-Conley Elementary School,00350122, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Grew Elementary School,00350135, 159, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Holmes Elementary School,00350138, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2023-24,Boston-O'Donnell Elementary School,00350141, 222, 1, 0.5, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2023-24,Boston-Condon K-8 School,00350146, 497, 1, 0.2, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2023-24,Boston-Hennigan K-8 School,00350153, 478, 3, 0.6, 2.5, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","" 5.4,5,a-degr-i2,2023-24,Boston-Chittick Elementary School,00350154, 156, 2, 1.3, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -174,7 +1905,26 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Boston-Tynan Elementary School,00350181, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Boston-Hurley K-8 School,00350182, 281, 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,2023-24,Boston-Lee K-8 School,00350183, 414, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.0,5,a-degr-i2,2023-24,Boston-Henderson K-12 Inclusion School Upper,00350426, 627, 6, 1.0,"", 0.0, 0.0, 1.8, 2.1, 0.0, 0.0, 0.0, 1.7, 4.5, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Boston-Manning Elementary School,00350184, 137, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Kilmer K-8 School,00350190, 292, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.7,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Harvard-Kent Elementary School,00350200, 254, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Bradley Elementary School,00350215, 229, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Mather Elementary School,00350227, 343, 1, 0.3, 0.0, 0.0, 0.0, 1.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Tobin K-8 School,00350229, 327, 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,2023-24,Boston-Perkins Elementary School,00350231, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Mozart Elementary School,00350237, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Murphy K-8 School,00350240, 722, 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,2023-24,Boston-Hale Elementary School,00350243, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Perry Elementary School,00350255, 127, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Boston-Orchard Gardens K-8 School,00350257, 573, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Boston-Ohrenberger School,00350258, 448, 1, 0.2,"","", 0.0, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Lyndon K-8 School,00350262, 407, 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,2023-24,Boston-Kennedy Patrick J Elementary School,00350264, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2023-24,Boston-Henderson K-12 Inclusion School Lower,00350266, 70, 1, 1.4, 1.4,"","","","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Dever Elementary School,00350268, 332, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-Bates Elementary School,00350278, 217, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Boston-Quincy Elementary School,00350286, 563, 2, 0.4, 0.9, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Clap Elementary School,00350298, 98, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 2.4000000000000004,2.4,a-degr-i2,2023-24,Boston-Lyon K-8 School,00350004, 107, 3, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.3, 18.2,"","","","" 8.0,5,a-degr-i2,2023-24,Boston-West Zone Early Learning Center,00350006, 30, 0, 0.0, 0.0,"","","","","","","","","","","" 6.0,5,a-degr-i2,2023-24,Boston-Ellison-Parks Early Education School,00350008, 99, 1, 1.0, 0.0, 0.0, 3.2,"","","","","","","","","" @@ -213,15 +1963,15 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -43.0,1,a-degr-i2,2023-24,Boston-Boston Adult Tech Academy,00350548, 184, 47, 25.5,"","","","","","","","","","", 16.7, 36.6 4.2,4.2,a-degr-i2,2023-24,Boston-Margarita Muniz Academy,00350549, 308, 6, 1.9,"","","","","","","","", 0.0, 2.3, 1.3, 4.9 4.0,4.0,a-degr-i2,2023-24,Boston-Boston Community Leadership Academy,00350558, 557, 11, 2.0,"","","","","","", 0.0, 1.4, 5.5, 2.4, 0.0, 1.1 -8.0,5,a-degr-i2,2023-24,Boston-Lyndon K-8 School,00350262, 407, 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,2023-24,Boston-Kennedy Patrick J Elementary School,00350264, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.2,5,a-degr-i2,2023-24,Boston-Henderson K-12 Inclusion School Lower,00350266, 70, 1, 1.4, 1.4,"","","","","","","","","","","" -7.4,5,a-degr-i2,2023-24,Boston-Dever Elementary School,00350268, 332, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2023-24,Boston-Bates Elementary School,00350278, 217, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2023-24,Boston-Quincy Elementary School,00350286, 563, 2, 0.4, 0.9, 0.9, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Clap Elementary School,00350298, 98, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.4,4.4,a-degr-i2,2023-24,Boston-O'Bryant School of Math & Science,00350575," 1,538", 28, 1.8,"","","","","","", 4.1, 0.7, 1.9, 1.5, 2.7, 0.4 --12.0,1,a-degr-i2,2023-24,Boston-Community Academy of Science and Health,00350581, 311, 31, 10.0,"","","","","","","","", 20.6, 8.3, 9.2, 3.8 +0.40000000000000036,1,a-degr-i2,2023-24,Boston-Quincy Upper School,00350565, 528, 20, 3.8,"","","","","", 0.0, 3.6, 1.3, 8.6, 9.5, 4.5, 3.3 +6.2,5,a-degr-i2,2023-24,Boston-Everett Elementary School,00350088, 226, 2, 0.9, 2.6, 0.0, 0.0, 0.0, 2.6, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Eliot K-8 Innovation School,00350096, 642, 2, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Mendell Elementary School,00350100, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Boston-Roosevelt K-8 School,00350116, 256, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.2,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Conley Elementary School,00350122, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Grew Elementary School,00350135, 159, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Holmes Elementary School,00350138, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-O'Donnell Elementary School,00350141, 222, 1, 0.5, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0,"","","","","","" 0.20000000000000018,1,a-degr-i2,2023-24,Boston-Lyon High School,00350655, 102, 4, 3.9,"","","","","","","","", 3.6, 3.4, 6.7, 3.3 7.2,5,a-degr-i2,2023-24,Boston-Mario Umana Academy,00350656, 525, 2, 0.4, 1.5, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","" 3.0,3.0,a-degr-i2,2023-24,Boston-TechBoston Academy,00350657, 870, 22, 2.5,"","","","","", 2.6, 4.6, 3.6, 3.4, 1.8, 1.3, 1.4 @@ -229,73 +1979,44 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Boston-Hernandez K-8 School,00350691, 322, 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,2023-24,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 57, 0, 0.0,"","", 0.0,"","","", 0.0,"", 0.0,"", 0.0,"" -85.0,1,a-degr-i2,2023-24,Boston-Boston Collaborative High School,00350755, 217, 101, 46.5,"","","","","","","","", 85.7, 47.6, 44.6, 45.1 -6.0,5,a-degr-i2,2023-24,Boston-Lee Academy,00350001, 101, 1, 1.0, 2.9, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Baldwin Early Learning Pilot Academy,00350003, 53, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Adams Elementary School,00350302, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Mason Elementary School,00350304, 144, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2023-24,Boston-Greenwood Sarah K-8 School,00350308, 282, 1, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -4.0,4.0,a-degr-i2,2023-24,Boston-Gardner Pilot Academy,00350326, 304, 6, 2.0, 7.5, 5.6, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Boston-Kenny Elementary School,00350328, 270, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2023-24,Boston-Warren-Prescott K-8 School,00350346, 381, 4, 1.0, 2.9, 1.7, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Boston-Channing Elementary School,00350360, 126, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" --24.200000000000003,1,a-degr-i2,2023-24,Boston-Melvin H. King South End Academy,00350363, 124, 20, 16.1,"","","","","", 14.3, 16.7, 5.6, 25.0, 25.0, 10.0, 21.1 -8.0,5,a-degr-i2,2023-24,Boston-Russell Elementary School,00350366, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,Boston-Trotter Elementary School,00350370, 219, 1, 0.5, 0.0, 0.0, 2.8, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Winship Elementary School,00350374, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Edison K-8 School,00350375, 528, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2023-24,Boston-King Elementary School,00350376, 320, 3, 0.9, 1.7, 1.7, 0.0, 0.0, 1.9, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Higginson-Lewis K-8 School,00350377, 169, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2023-24,Boston-Mildred Avenue K-8 School,00350378, 500, 3, 0.6, 2.5, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,"","","","" -7.4,5,a-degr-i2,2023-24,Boston-Young Achievers K-8 School,00350380, 372, 1, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -1.2000000000000002,1.2,a-degr-i2,2023-24,Boston-Frederick Pilot Middle School,00350383, 327, 11, 3.4,"","","","","", 0.0, 0.9, 8.0,"","","","" -7.0,5,a-degr-i2,2023-24,Boston-Blackstone Elementary School,00350390, 430, 2, 0.5, 1.4, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Manning Elementary School,00350184, 137, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2023-24,Boston-Kilmer K-8 School,00350190, 292, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.7,"","","","" -8.0,5,a-degr-i2,2023-24,Boston-Harvard-Kent Elementary School,00350200, 254, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Bradley Elementary School,00350215, 229, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2023-24,Boston-Mather Elementary School,00350227, 343, 1, 0.3, 0.0, 0.0, 0.0, 1.4, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Tobin K-8 School,00350229, 327, 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,2023-24,Boston-Perkins Elementary School,00350231, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Mozart Elementary School,00350237, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Murphy K-8 School,00350240, 722, 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,2023-24,Boston-Hale Elementary School,00350243, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Boston-Perry Elementary School,00350255, 127, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.6,5,a-degr-i2,2023-24,Boston-Orchard Gardens K-8 School,00350257, 573, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0,"","","","" -7.6,5,a-degr-i2,2023-24,Boston-Ohrenberger School,00350258, 448, 1, 0.2,"","", 0.0, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","" -0.40000000000000036,1,a-degr-i2,2023-24,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 688, 29, 4.2,"","","","", 0.0, 0.0, 2.3, 2.4, 17.8, 0.0, 5.6, 6.2 -101.2,1,a-degr-i2,2023-24,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 293, 160, 54.6,"","","","","","","","", 80.0, 16.7,"", 56.2 6.2,5,a-degr-i2,2023-24,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 446, 4, 0.9,"","","","","", 0.0, 0.0, 0.0, 0.0, 1.3, 1.4, 3.3 -2.5999999999999996,1,a-degr-i2,2023-24,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 693, 37, 5.3,"","","","","", 0.0, 0.9, 1.0, 23.7, 3.3, 4.3, 0.0 8.0,5,a-degr-i2,2023-24,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 699, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Bourne-Bourne Middle School,00360325, 440, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Bourne-Bourne Intermediate School,00360030, 359, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Bourne-Bournedale Elementary School,00360005, 243, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Bourne-Bourne High School,00360505, 325, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Boxford-Spofford Pond,00380013, 403, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Bourne-Bourne Intermediate School,00360030, 359, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Bourne-Bourne Middle School,00360325, 440, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Boxford-Harry Lee Cole,00380005, 198, 1, 0.5, 0.0, 1.0,"","","","","","","","","","" -7.2,5,a-degr-i2,2023-24,Braintree-Braintree High,00400505," 1,570", 7, 0.4,"","","","","","","","", 0.6, 0.0, 0.9, 0.3 +8.0,5,a-degr-i2,2023-24,Boxford-Spofford Pond,00380013, 403, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.4000000000000004,2.4,a-degr-i2,2023-24,Braintree-Hollis,00400005, 285, 8, 2.8, 9.9, 1.6, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Braintree-Highlands,00400015, 308, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.6,5,a-degr-i2,2023-24,Braintree-Archie T Morrison,00400033, 277, 2, 0.7, 1.3, 1.4, 0.0, 0.0,"","","","","","","","" -6.8,5,a-degr-i2,2023-24,Braintree-Donald Ross,00400050, 158, 1, 0.6, 2.4, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2023-24,Braintree-Liberty,00400025, 300, 1, 0.3, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Braintree-Mary E Flaherty School,00400020, 260, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Braintree-Liberty,00400025, 300, 1, 0.3, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2023-24,Braintree-Archie T Morrison,00400033, 277, 2, 0.7, 1.3, 1.4, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Braintree-South Middle School,00400310, 638, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -2.4000000000000004,2.4,a-degr-i2,2023-24,Braintree-Hollis,00400005, 285, 8, 2.8, 9.9, 1.6, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Braintree-East Middle School,00400305, 999, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Brewster-Eddy Elementary,00410010, 205, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Braintree-Donald Ross,00400050, 158, 1, 0.6, 2.4, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Braintree-Braintree High,00400505," 1,570", 7, 0.4,"","","","","","","","", 0.6, 0.0, 0.9, 0.3 6.6,5,a-degr-i2,2023-24,Brewster-Stony Brook Elementary,00410005, 134, 1, 0.7, 0.0, 1.4,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Brewster-Eddy Elementary,00410010, 205, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2023-24,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 264, 2, 0.8, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.4,5,a-degr-i2,2023-24,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505," 1,394", 11, 0.8,"","","","","","","","", 1.3, 0.5, 1.2, 0.0 -10.2,1,a-degr-i2,2023-24,Bridgewater-Raynham-Therapeutic Day School,06250415, 11, 1, 9.1,"","","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Bridgewater Middle School,06250320, 787, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2023-24,Bridgewater-Raynham-Williams Intermediate School,06250300, 832, 1, 0.1,"","", 0.4, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Raynham Middle School,06250315, 746, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Bridgewater-Raynham-Williams Intermediate School,06250300, 832, 1, 0.1,"","", 0.4, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Bridgewater-Raynham-Laliberte Elementary School,06250050, 508, 1, 0.2,"", 0.0, 0.6, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Mitchell Elementary School,06250002, 533, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Merrill Elementary School,06250020, 187, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Brimfield-Brimfield Elementary,00430005, 222, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2023-24,Bristol County Agricultural-Bristol County Agricultural High,09100705, 592, 3, 0.5,"","","","","","","","", 1.8, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2023-24,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605," 1,330", 3, 0.2,"","","","","","","","", 0.3, 0.3, 0.3, 0.0 +8.0,5,a-degr-i2,2023-24,Brockton-Edgar B Davis,00440023, 837, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-32.2,1,a-degr-i2,2023-24,Brockton-Brockton Virtual Learning Academy,00440705, 159, 32, 20.1,"","", 0.0, 0.0,"", 0.0, 0.0, 0.0, 57.1, 39.3, 23.8, 0.0 +-54.6,1,a-degr-i2,2023-24,Brockton-Edison Day Academy,00440535, 163, 51, 31.3,"","","","","","","","", 73.1, 21.4, 2.9, 0.0 +8.0,5,a-degr-i2,2023-24,Brockton-PROMISE College and Career Academy,00440525, 97, 0, 0.0,"","","","","","","","", 0.0, 0.0,"","" -25.4,1,a-degr-i2,2023-24,Brockton-Edison Evening Academy,00440520, 198, 33, 16.7,"","","","","","","","", 6.5, 20.3, 19.0, 16.1 -13.2,1,a-degr-i2,2023-24,Brockton-Brockton High,00440505," 3,522", 375, 10.6,"","","","","","","","", 23.0, 10.4, 2.8, 0.4 8.0,5,a-degr-i2,2023-24,Brockton-Plouffe Middle School,00440422, 629, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" @@ -303,47 +2024,45 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Brockton-West Middle School,00440420, 492, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Brockton-South Middle School,00440415, 468, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Brockton-North Middle School,00440410, 406, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2023-24,Brockton-East Middle School,00440405, 432, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" --19.8,1,a-degr-i2,2023-24,Brockton-Huntington Therapeutic Day School,00440400, 36, 5, 13.9,"","","","","","","","", 11.1,"", 12.5, 20.0 -7.6,5,a-degr-i2,2023-24,Brockton-Downey,00440110, 462, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Brockton-Oscar F Raymond,00440078, 665, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Brockton-Louis F Angelo Elementary,00440065, 719, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Brockton-Gilmore Elementary School,00440055, 335, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" -7.2,5,a-degr-i2,2023-24,Brockton-Hancock,00440045, 529, 2, 0.4, 0.9, 0.0, 0.0, 1.2, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Brockton-Edgar B Davis,00440023, 837, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -4.6,4.6,a-degr-i2,2023-24,Brockton-John F Kennedy,00440017, 422, 7, 1.7, 1.0, 5.2, 0.0, 1.6, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2023-24,Brockton-Brookfield,00440010, 339, 2, 0.6, 1.5, 1.3, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Brockton-Manthala George Jr. School,00440003, 582, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,Brockton-Mary E. Baker School,00440002, 607, 4, 0.7, 1.6, 0.8, 0.8, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Brockton-Dr W Arnone Community School,00440001, 600, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" --32.2,1,a-degr-i2,2023-24,Brockton-Brockton Virtual Learning Academy,00440705, 159, 32, 20.1,"","", 0.0, 0.0,"", 0.0, 0.0, 0.0, 57.1, 39.3, 23.8, 0.0 -8.0,5,a-degr-i2,2023-24,Brockton-PROMISE College and Career Academy,00440525, 97, 0, 0.0,"","","","","","","","", 0.0, 0.0,"","" --54.6,1,a-degr-i2,2023-24,Brockton-Edison Day Academy,00440535, 163, 51, 31.3,"","","","","","","","", 73.1, 21.4, 2.9, 0.0 +6.6,5,a-degr-i2,2023-24,Brockton-Mary E. Baker School,00440002, 607, 4, 0.7, 1.6, 0.8, 0.8, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Brockton-Manthala George Jr. School,00440003, 582, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Brockton-Brookfield,00440010, 339, 2, 0.6, 1.5, 1.3, 0.0, 0.0, 0.0,"","","","","","","" +4.6,4.6,a-degr-i2,2023-24,Brockton-John F Kennedy,00440017, 422, 7, 1.7, 1.0, 5.2, 0.0, 1.6, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Brockton-Hancock,00440045, 529, 2, 0.4, 0.9, 0.0, 0.0, 1.2, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Brockton-Gilmore Elementary School,00440055, 335, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Brockton-Louis F Angelo Elementary,00440065, 719, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Brockton-Oscar F Raymond,00440078, 665, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Brockton-Downey,00440110, 462, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" +-19.8,1,a-degr-i2,2023-24,Brockton-Huntington Therapeutic Day School,00440400, 36, 5, 13.9,"","","","","","","","", 11.1,"", 12.5, 20.0 +7.6,5,a-degr-i2,2023-24,Brockton-East Middle School,00440405, 432, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" 3.5999999999999996,3.6,a-degr-i2,2023-24,Brooke Charter School (District)-Brooke Charter School,04280305," 2,014", 45, 2.2, 6.7, 1.0, 3.1, 1.6, 1.6, 1.6, 1.2, 1.1, 2.1, 2.8, 2.6, 0.9 6.4,5,a-degr-i2,2023-24,Brookfield-Brookfield Elementary,00450005, 237, 2, 0.8, 0.0, 2.4, 0.0, 0.0, 2.4, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Brookline-Pierce,00460040, 600, 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,2023-24,Brookline-Lawrence,00460030, 547, 1, 0.2, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Brookline-Heath,00460025, 393, 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,2023-24,Brookline-Michael Driscoll,00460020, 432, 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,2023-24,Brookline-John D Runkle,00460045, 421, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Brookline-Edith C Baker,00460005, 588, 1, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Brookline-Florida Ruffin Ridley School,00460015, 736, 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,2023-24,Brookline-Michael Driscoll,00460020, 432, 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,2023-24,Brookline-Heath,00460025, 393, 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,2023-24,Brookline-Brookline High,00460505," 2,155", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 +7.6,5,a-degr-i2,2023-24,Brookline-John D Runkle,00460045, 421, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Brookline-William H Lincoln,00460035, 422, 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,2023-24,Brookline-Pierce,00460040, 600, 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,2023-24,Brookline-Florida Ruffin Ridley School,00460015, 736, 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,2023-24,Burlington-Fox Hill,00480007, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Burlington-Memorial,00480015, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.2,5,a-degr-i2,2023-24,Burlington-Burlington High,00480505, 901, 8, 0.9,"","","","","","","","", 1.3, 1.3, 0.4, 0.5 7.6,5,a-degr-i2,2023-24,Burlington-Francis Wyman Elementary,00480035, 415, 1, 0.2, 0.0, 0.0, 1.1, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Burlington-Marshall Simonds Middle,00480303, 862, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Burlington-Pine Glen Elementary,00480020, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Cambridge-Fletcher/Maynard Academy,00490090, 176, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Cambridge-John M Tobin,00490065, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Maria L. Baldwin,00490005, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2023-24,Cambridge-Cambridge Rindge and Latin,00490506," 1,957", 34, 1.7,"","","","","","","","", 2.4, 1.4, 1.4, 1.6 8.0,5,a-degr-i2,2023-24,Cambridge-Vassal Lane Upper School,00490320, 258, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Cambridge-Rindge Avenue Upper School,00490315, 289, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Cambridge-Putnam Avenue Upper School,00490310, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Cambridge-Cambridge Street Upper School,00490305, 304, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Cambridge-Maria L. Baldwin,00490005, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Fletcher/Maynard Academy,00490090, 176, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Graham and Parks,00490080, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-John M Tobin,00490065, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Cambridge-Peabody,00490050, 228, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.2,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Cambridge-Amigos School,00490006, 338, 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,2023-24,Cambridge-Cambridgeport,00490007, 198, 1, 0.5, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Cambridge-Haggerty,00490020, 175, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -351,46 +2070,47 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Cambridge-King Open,00490035, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Cambridge-Kennedy-Longfellow,00490040, 164, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Cambridge-Morse,00490045, 201, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2023-24,Cambridge-Peabody,00490050, 228, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.2,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Cambridge-Graham and Parks,00490080, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Canton-Wm H Galvin Middle,00500305, 742, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,Canton-Canton High,00500505, 925, 3, 0.3,"","","","","","","","", 0.9, 0.0, 0.5, 0.0 +8.0,5,a-degr-i2,2023-24,Canton-Lt Peter M Hansen,00500012, 458, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Canton-John F Kennedy,00500017, 388, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Canton-Dean S Luce,00500020, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Canton-Lt Peter M Hansen,00500012, 458, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Canton-Canton High,00500505, 925, 3, 0.3,"","","","","","","","", 0.9, 0.0, 0.5, 0.0 8.0,5,a-degr-i2,2023-24,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 251, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 663, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Carlisle-Carlisle School,00510025, 524, 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,2023-24,Carver-Carver Elementary School,00520015, 616, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Carver-Carver Middle/High School,00520405, 711, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0 +8.0,5,a-degr-i2,2023-24,Central Berkshire-Becket Washington School,06350005, 72, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Central Berkshire-Craneville,06350025, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 3.4000000000000004,3.4,a-degr-i2,2023-24,Central Berkshire-Wahconah Regional High,06350505, 482, 11, 2.3,"","","","","","","","", 3.3, 5.2, 0.8, 0.0 7.4,5,a-degr-i2,2023-24,Central Berkshire-Nessacus Regional Middle School,06350305, 358, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Central Berkshire-Kittredge,06350035, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Central Berkshire-Craneville,06350025, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Central Berkshire-Becket Washington School,06350005, 72, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Chelmsford-Chelmsford High,00560505," 1,413", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.9 +8.0,5,a-degr-i2,2023-24,Chelmsford-McCarthy Middle School,00560310, 782, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Chelmsford-Center Elementary School,00560005, 371, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Chelmsford-South Row,00560015, 380, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Chelmsford-Charles D Harrington,00560025, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Chelmsford-Byam School,00560030, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Chelmsford-Col Moses Parker School,00560305, 797, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Chelmsford-McCarthy Middle School,00560310, 782, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2023-24,Chelmsford-Chelmsford High,00560505," 1,413", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.9 +-28.6,1,a-degr-i2,2023-24,Chelsea-Chelsea Virtual Learning Academy,00570705, 60, 11, 18.3,"","","","","","","", 0.0, 41.7, 12.5, 0.0, 29.4 +-41.6,1,a-degr-i2,2023-24,Chelsea-Chelsea Opportunity Academy,00570515, 125, 31, 24.8,"","","","","","","","", 33.3, 25.0, 5.6, 33.3 +-3.0,1,a-degr-i2,2023-24,Chelsea-Chelsea High,00570505," 1,675", 92, 5.5,"","","","","","","","", 10.5, 5.2, 0.7, 4.4 +7.2,5,a-degr-i2,2023-24,Chelsea-George F. Kelly Elementary,00570035, 486, 2, 0.4, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Chelsea-Clark Avenue School,00570050, 678, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-Eugene Wright Science and Technology Academy,00570045, 443, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-Frank M Sokolowski Elementary,00570040, 497, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Chelsea-Joseph A. Browne School,00570055, 485, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" --3.0,1,a-degr-i2,2023-24,Chelsea-Chelsea High,00570505," 1,675", 92, 5.5,"","","","","","","","", 10.5, 5.2, 0.7, 4.4 --41.6,1,a-degr-i2,2023-24,Chelsea-Chelsea Opportunity Academy,00570515, 125, 31, 24.8,"","","","","","","","", 33.3, 25.0, 5.6, 33.3 --28.6,1,a-degr-i2,2023-24,Chelsea-Chelsea Virtual Learning Academy,00570705, 60, 11, 18.3,"","","","","","","", 0.0, 41.7, 12.5, 0.0, 29.4 8.0,5,a-degr-i2,2023-24,Chelsea-Shurtleff Early Childhood,00570003, 88, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Chelsea-William A Berkowitz Elementary,00570025, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Chelsea-Edgar F. Hooks Elementary,00570030, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2023-24,Chelsea-George F. Kelly Elementary,00570035, 486, 2, 0.4, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Chelsea-Frank M Sokolowski Elementary,00570040, 497, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Chelsea-Eugene Wright Science and Technology Academy,00570045, 443, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,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,2023-24,Chicopee-Litwin,00610022, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2023-24,Chicopee-Chicopee Academy,00610021, 69, 1, 1.4,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 10.0 +7.2,5,a-degr-i2,2023-24,Chicopee-Chicopee Comprehensive High School,00610510," 1,212", 5, 0.4,"","","","","","","","", 0.0, 0.3, 0.0, 1.4 6.2,5,a-degr-i2,2023-24,Chicopee-Bowe,00610015, 331, 3, 0.9, 1.8, 1.5, 1.3, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Belcher,00610010, 118, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Barry,00610003, 307, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Chicopee-Bowie,00610020, 232, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2023-24,Chicopee-Chicopee Academy,00610021, 69, 1, 1.4,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 10.0 -8.0,5,a-degr-i2,2023-24,Chicopee-Litwin,00610022, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Chicopee-Lambert-Lavoie,00610040, 190, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Chicopee-Fairview Elementary,00610050, 285, 1, 0.4, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Chicopee-Streiber Memorial School,00610065, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -398,215 +2118,212 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Chicopee-Bellamy Middle,00610305, 817, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Chicopee-Dupont Middle,00610310, 678, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Chicopee-Chicopee High,00610505, 932, 4, 0.4,"","","","","","","","", 0.0, 0.0, 0.4, 1.4 -8.0,5,a-degr-i2,2023-24,Chicopee-Barry,00610003, 307, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Chicopee-Belcher,00610010, 118, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -7.2,5,a-degr-i2,2023-24,Chicopee-Chicopee Comprehensive High School,00610510," 1,212", 5, 0.4,"","","","","","","","", 0.0, 0.3, 0.0, 1.4 6.6,5,a-degr-i2,2023-24,Christa McAuliffe Charter School (District)-Christa McAuliffe Charter School,04180305, 288, 2, 0.7,"","","","","", 2.4, 0.0, 0.0,"","","","" -14.2,1,a-degr-i2,2023-24,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 199, 22, 11.1,"","","","","","","","", 10.7, 14.8, 10.4, 5.9 8.0,5,a-degr-i2,2023-24,Clarksburg-Clarksburg Elementary,00630010, 168, 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,2023-24,Clinton-Clinton Elementary,00640050, 582, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -3.0,3.0,a-degr-i2,2023-24,Clinton-Clinton Senior High,00640505, 557, 14, 2.5,"","","","","","","","", 7.9, 0.0, 0.0, 1.4 7.6,5,a-degr-i2,2023-24,Clinton-Clinton Middle School,00640305, 571, 1, 0.2,"","","","", 0.0, 0.8, 0.0, 0.0,"","","","" +3.0,3.0,a-degr-i2,2023-24,Clinton-Clinton Senior High,00640505, 557, 14, 2.5,"","","","","","","","", 7.9, 0.0, 0.0, 1.4 +8.0,5,a-degr-i2,2023-24,Clinton-Clinton Elementary,00640050, 582, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2023-24,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 292, 2, 0.7, 0.0, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0, 4.2, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Cohasset-Joseph Osgood,00650010, 245, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Cohasset-Cohasset Middle School,00650305, 290, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Cohasset-Cohasset High School,00650505, 406, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Cohasset-Deer Hill,00650005, 321, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cohasset-Joseph Osgood,00650010, 245, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 6.6,5,a-degr-i2,2023-24,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205," 1,111", 8, 0.7, 0.0, 0.8, 1.1, 1.0, 0.0, 0.9, 1.8, 0.0, 2.2, 0.0, 0.0, 0.0 5.0,5.0,a-degr-i2,2023-24,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 261, 4, 1.5,"","","","","", 0.0, 0.0, 0.0, 6.9, 6.7, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Community Day Charter Public School (District)-Community Day Charter Public School,04400205, 952, 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,2023-24,Concord-Alcott,00670005, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Concord-Willard,00670030, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Concord-Thoreau,00670020, 344, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Concord-Concord Middle,00670305, 654, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Concord-Willard,00670030, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Concord-Carlisle-Concord Carlisle High,06400505," 1,225", 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.3, 0.0 5.2,5,a-degr-i2,2023-24,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 348, 5, 1.4, 3.8, 0.0, 1.9, 1.8, 0.0, 2.4, 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2023-24,Conway-Conway Grammar,00680005, 112, 1, 0.9, 0.0, 0.0, 5.3, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Danvers-Riverside,00710030, 219, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Danvers-Ivan G Smith,00710032, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Danvers-Willis E Thorpe,00710045, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Danvers-Holten Richmond Middle School,00710305, 741, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Danvers-Highlands,00710010, 324, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Danvers-Great Oak,00710015, 259, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Riverside,00710030, 219, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Ivan G Smith,00710032, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Danvers-Danvers High,00710505, 787, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.6, 0.0 +8.0,5,a-degr-i2,2023-24,Danvers-Holten Richmond Middle School,00710305, 741, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Willis E Thorpe,00710045, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dartmouth-George H Potter,00720030, 341, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Dartmouth-James M. Quinn School,00720040, 610, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Dartmouth-Dartmouth Middle,00720050, 787, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Dartmouth-Joseph Demello,00720015, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2023-24,Dartmouth-Dartmouth High,00720505, 946, 8, 0.8,"","","","","","","","", 0.9, 2.5, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Dartmouth-George H Potter,00720030, 341, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2023-24,Dedham-Avery,00730010, 322, 3, 0.9, 1.8, 0.0, 0.0, 3.3, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Dedham-Greenlodge,00730025, 310, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Dedham-Oakdale,00730030, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Dedham-Riverdale,00730045, 193, 1, 0.5, 0.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Dedham-Dedham Middle School,00730305, 543, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" 5.8,5,a-degr-i2,2023-24,Dedham-Dedham High,00730505, 726, 8, 1.1,"","","","","","","","", 2.8, 0.0, 1.5, 0.0 +6.2,5,a-degr-i2,2023-24,Dedham-Avery,00730010, 322, 3, 0.9, 1.8, 0.0, 0.0, 3.3, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dedham-Greenlodge,00730025, 310, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Deerfield-Deerfield Elementary,00740015, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Station Avenue Elementary,06450025, 321, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.6,5,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 510, 1, 0.2,"","","", 0.0, 0.4,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 445, 1, 0.2,"","","","","", 0.0, 0.4,"","","","","" -8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 175, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 233, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 175, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Station Avenue Elementary,06450025, 321, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 3.4000000000000004,3.4,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 922, 21, 2.3,"","","","","","","", 0.0, 1.8, 4.2, 0.5, 6.1 +7.6,5,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 445, 1, 0.2,"","","","","", 0.0, 0.4,"","","","","" +7.6,5,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 510, 1, 0.2,"","","", 0.0, 0.4,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 478, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 2.2,2.2,a-degr-i2,2023-24,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 631, 18, 2.9,"","","","","","","","", 7.2, 1.9, 0.6, 2.3 +8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dighton Elementary,06500005, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Palmer River,06500010, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dighton Middle School,06500305, 367, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 478, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dighton Elementary,06500005, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.6,5,a-degr-i2,2023-24,Douglas-Douglas Middle School,00770305, 289, 2, 0.7,"","","","","", 0.0, 0.0, 2.0,"","","","" +5.4,5,a-degr-i2,2023-24,Douglas-Douglas Primary School,00770005, 77, 1, 1.3, 1.3,"","","","","","","","","","","" 6.0,5,a-degr-i2,2023-24,Douglas-Douglas High School,00770505, 303, 3, 1.0,"","","","","","","","", 1.4, 0.0, 0.0, 2.2 +6.6,5,a-degr-i2,2023-24,Douglas-Douglas Middle School,00770305, 289, 2, 0.7,"","","","","", 0.0, 0.0, 2.0,"","","","" 8.0,5,a-degr-i2,2023-24,Douglas-Douglas Elementary School,00770015, 353, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.4,5,a-degr-i2,2023-24,Douglas-Douglas Primary School,00770005, 77, 1, 1.3, 1.3,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Dover-Chickering,00780005, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 457, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 648, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +3.5999999999999996,3.6,a-degr-i2,2023-24,Dracut-Dracut Senior High,00790505, 783, 17, 2.2,"","","","","","","","", 5.6, 3.2, 0.5, 0.0 8.0,5,a-degr-i2,2023-24,Dracut-Justus C. Richardson Middle School,00790410, 909, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2023-24,Dracut-George H. Englesby Elementary School,00790045, 446, 3, 0.7, 1.4, 0.0, 1.0, 1.0, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2023-24,Dracut-Brookside Elementary,00790035, 413, 4, 1.0, 1.1, 2.2, 1.4, 0.0, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2023-24,Dracut-Greenmont Avenue,00790030, 198, 2, 1.0, 2.7, 0.0, 2.2, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Dracut-Joseph A Campbell Elementary,00790020, 461, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,Dracut-George H. Englesby Elementary School,00790045, 446, 3, 0.7, 1.4, 0.0, 1.0, 1.0, 0.0,"","","","","","","" -3.5999999999999996,3.6,a-degr-i2,2023-24,Dracut-Dracut Senior High,00790505, 783, 17, 2.2,"","","","","","","","", 5.6, 3.2, 0.5, 0.0 8.0,5,a-degr-i2,2023-24,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Heritage School,06580030, 448, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Charlton Elementary,06580020, 124, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Mason Road School,06580010, 77, 0, 0.0, 0.0,"","","","","","","","","","","" -6.8,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Dudley Elementary,06580005, 333, 2, 0.6,"", 1.8, 0.0, 0.0,"","","","","","","","" -1.4000000000000004,1.4,a-degr-i2,2023-24,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 933, 31, 3.3,"","","","","","","","", 8.5, 0.8, 2.4, 0.5 8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Dudley Middle School,06580305, 552, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Charlton Middle School,06580310, 603, 1, 0.2,"","","","", 0.0, 0.0, 0.7, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Duxbury-Alden School,00820004, 621, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +1.4000000000000004,1.4,a-degr-i2,2023-24,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 933, 31, 3.3,"","","","","","","","", 8.5, 0.8, 2.4, 0.5 +6.8,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Dudley Elementary,06580005, 333, 2, 0.6,"", 1.8, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Duxbury-Chandler Elementary,00820006, 405, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Duxbury-Duxbury Middle,00820305, 623, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Duxbury-Duxbury High,00820505, 860, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -7.8,5,a-degr-i2,2023-24,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 876, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.7 -8.0,5,a-degr-i2,2023-24,East Bridgewater-Gordon W. Mitchell School,00830010, 616, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Duxbury-Alden School,00820004, 621, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,East Bridgewater-Central,00830005, 277, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -7.2,5,a-degr-i2,2023-24,East Longmeadow-East Longmeadow High,00870505, 766, 3, 0.4,"","","","","","","","", 1.1, 0.5, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,East Longmeadow-Birchland Park,00870305, 614, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,East Longmeadow-Meadow Brook,00870013, 348, 1, 0.3, 0.6, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,East Bridgewater-Gordon W. Mitchell School,00830010, 616, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2023-24,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 876, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2023-24,East Longmeadow-Mountain View,00870015, 273, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,East Longmeadow-Meadow Brook,00870013, 348, 1, 0.3, 0.6, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,East Longmeadow-Birchland Park,00870305, 614, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,East Longmeadow-East Longmeadow High,00870505, 766, 3, 0.4,"","","","","","","","", 1.1, 0.5, 0.0, 0.0 7.4,5,a-degr-i2,2023-24,East Longmeadow-Mapleshade,00870010, 287, 1, 0.3,"","", 1.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Eastham-Eastham Elementary,00850005, 146, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2023-24,Easthampton-Easthampton High,00860505, 372, 10, 2.7,"","","","","","","","", 3.9, 5.8, 0.0, 1.1 8.0,5,a-degr-i2,2023-24,Easthampton-Mountain View School,00860415, 893, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2023-24,Easton-Blanche A. Ames Elementary School,00880015, 464, 2, 0.4, 0.0, 0.8,"","","","","","","","","","" 7.8,5,a-degr-i2,2023-24,Easton-Richardson Olmsted School,00880025, 736, 1, 0.1,"","", 0.0, 0.0, 0.4,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Easton-Oliver Ames High,00880505," 1,066", 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.3, 0.7 7.8,5,a-degr-i2,2023-24,Easton-Easton Middle School,00880405, 808, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Easton-Blanche A. Ames Elementary School,00880015, 464, 2, 0.4, 0.0, 0.8,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Edgartown-Edgartown Elementary,00890005, 335, 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,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, 375, 8, 2.1,"","","","","","","","", 4.9, 2.2, 1.2, 0.0 8.0,5,a-degr-i2,2023-24,Erving-Erving Elementary,00910030, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2023-24,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505," 1,745", 3, 0.2,"","","","","","","","", 0.0, 0.2, 0.2, 0.3 -8.0,5,a-degr-i2,2023-24,Everett-Devens School,00930030, 44, 0, 0.0,"","","","","","","", 0.0,"", 0.0,"","" -7.8,5,a-degr-i2,2023-24,Everett-George Keverian School,00930028, 794, 1, 0.1, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Everett-Madeline English School,00930018, 684, 1, 0.1, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +3.0,3.0,a-degr-i2,2023-24,Everett-Everett High,00930505," 2,285", 58, 2.5,"","","","","","","","", 3.5, 0.9, 4.3, 1.2 +8.0,5,a-degr-i2,2023-24,Everett-Devens School,00930030, 44, 0, 0.0,"","","","","","","", 0.0,"", 0.0,"","" 7.2,5,a-degr-i2,2023-24,Everett-Parlin School,00930058, 920, 4, 0.4, 0.0, 0.8, 1.6, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2023-24,Everett-Webster School,00930015, 293, 2, 0.7, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Everett-Sumner G. Whittier School,00930010, 554, 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,2023-24,Everett-George Keverian School,00930028, 794, 1, 0.1, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Everett-Lafayette School,00930038, 915, 2, 0.2, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -3.0,3.0,a-degr-i2,2023-24,Everett-Everett High,00930505," 2,285", 58, 2.5,"","","","","","","","", 3.5, 0.9, 4.3, 1.2 -6.6,5,a-degr-i2,2023-24,Everett-Webster School,00930015, 293, 2, 0.7, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Excel Academy Charter (District)-Excel Academy Charter School,04100205," 1,362", 7, 0.5,"","","","", 0.6, 0.6, 0.0, 0.0, 0.0, 0.6, 1.8, 0.7 4.8,4.8,a-degr-i2,2023-24,Fairhaven-East Fairhaven,00940010, 244, 4, 1.6, 6.3, 0.0, 2.0, 0.0, 0.0,"","","","","","","" -2.2,2.2,a-degr-i2,2023-24,Fairhaven-Fairhaven High,00940505, 589, 17, 2.9,"","","","","","","","", 4.3, 6.5, 0.7, 0.0 -7.0,5,a-degr-i2,2023-24,Fairhaven-Hastings Middle,00940305, 428, 2, 0.5,"","","","","", 0.0, 1.4, 0.0,"","","","" 7.4,5,a-degr-i2,2023-24,Fairhaven-Leroy Wood,00940030, 349, 1, 0.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Fairhaven-Hastings Middle,00940305, 428, 2, 0.5,"","","","","", 0.0, 1.4, 0.0,"","","","" +2.2,2.2,a-degr-i2,2023-24,Fairhaven-Fairhaven High,00940505, 589, 17, 2.9,"","","","","","","","", 4.3, 6.5, 0.7, 0.0 +8.0,5,a-degr-i2,2023-24,Fall River-Stone PK-12 School,00950340, 62, 0, 0.0,"","","", 0.0,"","","", 0.0, 0.0, 0.0,"", 0.0 +6.0,5,a-degr-i2,2023-24,Fall River-B M C Durfee High,00950505," 2,401", 25, 1.0,"","","","","","","","", 1.0, 0.6, 1.7, 1.0 +-2.8000000000000007,1,a-degr-i2,2023-24,Fall River-Resiliency Preparatory Academy,00950525, 184, 10, 5.4,"","","","","","","", 17.6, 0.0, 3.0, 7.3, 3.5 +7.8,5,a-degr-i2,2023-24,Fall River-Matthew J Kuss Middle,00950320, 694, 1, 0.1,"","","","","", 0.5, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Fall River-Morton Middle,00950315, 714, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Fall River-Talbot Innovation School,00950305, 557, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Fall River-North End Elementary,00950005, 529, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Fall River-Carlton M. Viveiros Elementary School,00950009, 600, 1, 0.2, 0.0, 0.0, 0.0, 0.8, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Fall River-Mary Fonseca Elementary School,00950011, 482, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Fall River-Letourneau Elementary School,00950013, 527, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2023-24,Fall River-Henry Lord Community School,00950017, 678, 4, 0.6, 0.0, 1.0, 0.0, 2.2, 1.1, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Fall River-John J Doran,00950045, 430, 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,2023-24,Fall River-William S Greene,00950065, 615, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Fall River-Spencer Borden,00950130, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Fall River-James Tansey,00950140, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Fall River-Samuel Watson,00950145, 218, 1, 0.5, 0.0, 2.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Fall River-Talbot Innovation School,00950305, 557, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Fall River-Morton Middle,00950315, 714, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2023-24,Fall River-Matthew J Kuss Middle,00950320, 694, 1, 0.1,"","","","","", 0.5, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2023-24,Fall River-Carlton M. Viveiros Elementary School,00950009, 600, 1, 0.2, 0.0, 0.0, 0.0, 0.8, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Fall River-North End Elementary,00950005, 529, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Fall River-Stone PK-12 School,00950340, 62, 0, 0.0,"","","", 0.0,"","","", 0.0, 0.0, 0.0,"", 0.0 -6.0,5,a-degr-i2,2023-24,Fall River-B M C Durfee High,00950505," 2,401", 25, 1.0,"","","","","","","","", 1.0, 0.6, 1.7, 1.0 --2.8000000000000007,1,a-degr-i2,2023-24,Fall River-Resiliency Preparatory Academy,00950525, 184, 10, 5.4,"","","","","","","", 17.6, 0.0, 3.0, 7.3, 3.5 +8.0,5,a-degr-i2,2023-24,Fall River-James Tansey,00950140, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fall River-Spencer Borden,00950130, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-Morse Pond School,00960305, 480, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Falmouth-Lawrence,00960405, 459, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -0.8000000000000007,1,a-degr-i2,2023-24,Falmouth-Falmouth High,00960505, 722, 32, 4.4,"","","","","","","","", 9.7, 6.1, 0.0, 1.7 -8.0,5,a-degr-i2,2023-24,Falmouth-East Falmouth Elementary,00960005, 141, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Falmouth-Teaticket,00960015, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Falmouth-Mullen-Hall,00960020, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Falmouth-North Falmouth Elementary,00960030, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Falmouth-Morse Pond School,00960305, 480, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-Mullen-Hall,00960020, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-Teaticket,00960015, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-East Falmouth Elementary,00960005, 141, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.0,5,a-degr-i2,2023-24,Farmington River Reg-Farmington River Elementary,06620020, 96, 1, 1.0, 0.0, 5.6, 0.0, 0.0, 0.0, 0.0,"","","","","","" --9.399999999999999,1,a-degr-i2,2023-24,Fitchburg-Goodrich Academy,00970510, 207, 18, 8.7,"","","","","","","","", 43.8, 7.4, 5.1, 5.7 -7.4,5,a-degr-i2,2023-24,Fitchburg-Fitchburg High,00970505," 1,180", 4, 0.3,"","","","","","","","", 0.6, 0.0, 0.7, 0.0 7.6,5,a-degr-i2,2023-24,Fitchburg-Crocker Elementary,00970016, 620, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Fitchburg-Reingold Elementary,00970043, 661, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Fitchburg-Memorial Middle School,00970048, 587, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-9.399999999999999,1,a-degr-i2,2023-24,Fitchburg-Goodrich Academy,00970510, 207, 18, 8.7,"","","","","","","","", 43.8, 7.4, 5.1, 5.7 +7.4,5,a-degr-i2,2023-24,Fitchburg-Fitchburg High,00970505," 1,180", 4, 0.3,"","","","","","","","", 0.6, 0.0, 0.7, 0.0 7.6,5,a-degr-i2,2023-24,Fitchburg-Arthur M Longsjo Middle School,00970315, 565, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" 8.0,5,a-degr-i2,2023-24,Fitchburg-McKay Elementary School,00970340, 762, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Florida-Abbott Memorial,00980005, 66, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2023-24,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 214, 2, 0.9,"","","","","","", 0.0, 0.0, 2.8, 0.0, 0.0, 3.7 -8.0,5,a-degr-i2,2023-24,Foxborough-John J Ahern,00990405, 745, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Foxborough-Foxborough High,00990505, 755, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 -8.0,5,a-degr-i2,2023-24,Foxborough-Mabelle M Burrell,00990015, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Foxborough-Vincent M Igo Elementary,00990020, 297, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.2,5,a-degr-i2,2023-24,Foxborough-Charles Taylor Elementary,00990050, 214, 2, 0.9, 0.0, 0.0, 0.0, 3.5,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Foxborough-Vincent M Igo Elementary,00990020, 297, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Foxborough-Mabelle M Burrell,00990015, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Foxborough-John J Ahern,00990405, 745, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2023-24,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550," 1,391", 4, 0.3, 0.7, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 1.2, 0.0 -8.0,5,a-degr-i2,2023-24,Framingham-Charlotte A Dunning,01000007, 373, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Framingham-Hemenway,01000015, 467, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Framingham-King Elementary School,01000005, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Charlotte A Dunning,01000007, 373, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Framingham-Brophy,01000006, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-King Elementary School,01000005, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.600000000000001,1,a-degr-i2,2023-24,Framingham-Framingham High School,01000515," 2,544", 212, 8.3,"","","","","","","","", 15.8, 7.7, 6.7, 0.7 -8.0,5,a-degr-i2,2023-24,Framingham-Walsh Middle,01000310, 780, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Framingham-Fuller Middle,01000305, 564, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Framingham-Cameron Middle School,01000302, 564, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Framingham-Harmony Grove Elementary,01000055, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Framingham-Miriam F McCarthy School,01000050, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Framingham-Mary E Stapleton Elementary,01000045, 301, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Framingham-Potter Road,01000039, 447, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Framingham-Barbieri Elementary,01000035, 561, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Potter Road,01000039, 447, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Framingham-Mary E Stapleton Elementary,01000045, 301, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Miriam F McCarthy School,01000050, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Harmony Grove Elementary,01000055, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Cameron Middle School,01000302, 564, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Fuller Middle,01000305, 564, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Walsh Middle,01000310, 780, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.8,5,a-degr-i2,2023-24,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 370, 4, 1.1,"","","","","","", 1.6, 2.7, 0.0, 0.0, 1.7, 0.0 -6.6,5,a-degr-i2,2023-24,Franklin-Franklin High,01010505," 1,558", 11, 0.7,"","","","","","","","", 1.9, 0.5, 0.3, 0.2 +8.0,5,a-degr-i2,2023-24,Franklin-Helen Keller Elementary,01010012, 468, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Franklin-J F Kennedy Memorial,01010013, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Franklin-Oak Street Elementary,01010030, 312, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Franklin-Parmenter,01010032, 242, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Franklin-Annie Sullivan Middle School,01010040, 322, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Franklin-Remington Middle,01010310, 351, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Franklin-Horace Mann,01010405, 387, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2023-24,Franklin-Franklin High,01010505," 1,558", 11, 0.7,"","","","","","","","", 1.9, 0.5, 0.3, 0.2 8.0,5,a-degr-i2,2023-24,Franklin-Jefferson Elementary,01010010, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Franklin-Helen Keller Elementary,01010012, 468, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 621, 1, 0.2,"","","","","","","","", 0.6, 0.0, 0.0, 0.0 -7.8,5,a-degr-i2,2023-24,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 705, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" -8.0,5,a-degr-i2,2023-24,Freetown-Lakeville-George R Austin Intermediate School,06650015, 464, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Freetown-Lakeville-Assawompset Elementary School,06650002, 367, 2, 0.5, 0.9, 0.9, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Freetown-Lakeville-Freetown Elementary School,06650001, 264, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Freetown-Lakeville-George R Austin Intermediate School,06650015, 464, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 705, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" 6.2,5,a-degr-i2,2023-24,Freetown-Lakeville-Apponequet Regional High,06650505, 681, 6, 0.9,"","","","","","","","", 1.3, 1.7, 0.6, 0.0 6.6,5,a-degr-i2,2023-24,Frontier-Frontier Regional,06700505, 598, 4, 0.7,"","","","","","", 0.0, 0.0, 0.0, 0.0, 2.0, 2.1 --28.200000000000003,1,a-degr-i2,2023-24,Gardner-Gardner Academy for Learning and Technology,01030515, 127, 23, 18.1,"","","","","","","","", 53.8, 26.1, 8.3, 12.7 3.8,3.8,a-degr-i2,2023-24,Gardner-Gardner High,01030505, 806, 17, 2.1,"","","","","","","", 0.0, 4.8, 4.3, 1.1, 0.0 8.0,5,a-degr-i2,2023-24,Gardner-Gardner Middle School,01030405, 483, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" 8.0,5,a-degr-i2,2023-24,Gardner-Gardner Elementary School,01030001, 764, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +-28.200000000000003,1,a-degr-i2,2023-24,Gardner-Gardner Academy for Learning and Technology,01030515, 127, 23, 18.1,"","","","","","","","", 53.8, 26.1, 8.3, 12.7 +1.7999999999999998,1.8,a-degr-i2,2023-24,Gateway-Gateway Regional High,06720505, 160, 5, 3.1,"","","","","","","","", 4.1, 2.7, 6.5, 0.0 +7.0,5,a-degr-i2,2023-24,Gateway-Gateway Regional Middle School,06720405, 196, 1, 0.5,"","","","","", 0.0, 0.0, 1.6,"","","","" 8.0,5,a-degr-i2,2023-24,Gateway-Chester Elementary,06720059, 71, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Gateway-Littleville Elementary School,06720143, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,Gateway-Gateway Regional Middle School,06720405, 196, 1, 0.5,"","","","","", 0.0, 0.0, 1.6,"","","","" -1.7999999999999998,1.8,a-degr-i2,2023-24,Gateway-Gateway Regional High,06720505, 160, 5, 3.1,"","","","","","","","", 4.1, 2.7, 6.5, 0.0 -5.2,5,a-degr-i2,2023-24,Georgetown-Georgetown High School,01050505, 289, 4, 1.4,"","","","","","","","", 4.0, 0.0, 0.0, 1.4 -8.0,5,a-degr-i2,2023-24,Georgetown-Georgetown Middle School,01050305, 189, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Georgetown-Penn Brook,01050010, 608, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.0,4.0,a-degr-i2,2023-24,Gill-Montague-Hillcrest Elementary School,06740015, 50, 1, 2.0, 2.0,"","","","","","","","","","","" -3.2,3.2,a-degr-i2,2023-24,Gill-Montague-Sheffield Elementary School,06740050, 212, 5, 2.4,"", 2.9, 4.9, 2.2, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Gill-Montague-Great Falls Middle,06740310, 237, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Georgetown-Georgetown Middle School,01050305, 189, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +5.2,5,a-degr-i2,2023-24,Georgetown-Georgetown High School,01050505, 289, 4, 1.4,"","","","","","","","", 4.0, 0.0, 0.0, 1.4 8.0,5,a-degr-i2,2023-24,Gill-Montague-Turners Fall High,06740505, 198, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Gill-Montague-Gill Elementary,06740005, 100, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.0,4.0,a-degr-i2,2023-24,Gill-Montague-Hillcrest Elementary School,06740015, 50, 1, 2.0, 2.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Gill-Montague-Great Falls Middle,06740310, 237, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.2,3.2,a-degr-i2,2023-24,Gill-Montague-Sheffield Elementary School,06740050, 212, 5, 2.4,"", 2.9, 4.9, 2.2, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 502, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 --2.1999999999999993,1,a-degr-i2,2023-24,Gloucester-Gloucester High,01070505, 800, 41, 5.1,"","","","","","","","", 6.8, 8.9, 4.2, 0.5 -7.2,5,a-degr-i2,2023-24,Gloucester-Beeman Memorial,01070010, 241, 1, 0.4, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Gloucester-East Veterans Elementary School,01070030, 366, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Gloucester-Plum Cove School,01070042, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Gloucester-West Parish,01070050, 309, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.8,"","","","","","","" +-2.1999999999999993,1,a-degr-i2,2023-24,Gloucester-Gloucester High,01070505, 800, 41, 5.1,"","","","","","","","", 6.8, 8.9, 4.2, 0.5 8.0,5,a-degr-i2,2023-24,Gloucester-Ralph B O'Maley Middle,01070305, 626, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Grafton-Millbury Street Elementary School,01100200, 589, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2023-24,Grafton-Grafton High School,01100505, 885, 8, 0.9,"","","","","","","","", 1.6, 1.4, 0.5, 0.0 -8.0,5,a-degr-i2,2023-24,Grafton-Grafton Middle,01100305, 459, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Gloucester-Plum Cove School,01070042, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Gloucester-East Veterans Elementary School,01070030, 366, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Gloucester-Beeman Memorial,01070010, 241, 1, 0.4, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Grafton-North Street Elementary School,01100030, 568, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Grafton-North Grafton Elementary,01100025, 100, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Grafton-South Grafton Elementary,01100005, 119, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Grafton-North Street Elementary School,01100030, 568, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Grafton-Grafton Middle,01100305, 459, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Grafton-Millbury Street Elementary School,01100200, 589, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2023-24,Grafton-Grafton High School,01100505, 885, 8, 0.9,"","","","","","","","", 1.6, 1.4, 0.5, 0.0 4.6,4.6,a-degr-i2,2023-24,Granby-Granby Jr Sr High School,01110505, 291, 5, 1.7,"","","","","","", 2.1, 1.8, 0.0, 2.1, 1.9, 2.0 7.4,5,a-degr-i2,2023-24,Granby-East Meadow,01110004, 329, 1, 0.3, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","" -13.8,1,a-degr-i2,2023-24,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900," 1,135", 124, 10.9, 0.0, 0.0, 0.0, 5.5, 0.0, 4.1, 0.0, 0.9, 27.5, 19.4, 11.0, 15.1 @@ -615,127 +2332,120 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.8,5,a-degr-i2,2023-24,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 2,293", 2, 0.1,"","","","","","","","", 0.2, 0.2, 0.0, 0.0 6.6,5,a-degr-i2,2023-24,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605," 2,147", 16, 0.7,"","","","","","","","", 1.1, 1.5, 0.4, 0.0 6.8,5,a-degr-i2,2023-24,Greenfield-Discovery School at Four Corners,01140025, 178, 1, 0.6, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2023-24,Greenfield-Greenfield High,01140505, 440, 15, 3.4,"","","","","","","", 0.0, 10.6, 6.0, 1.1, 0.0 +5.4,5,a-degr-i2,2023-24,Greenfield-Federal Street School,01140010, 152, 2, 1.3, 2.2, 0.0, 0.0, 2.9,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Greenfield-Newton School,01140035, 156, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Greenfield-Greenfield Middle,01140305, 301, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -5.4,5,a-degr-i2,2023-24,Greenfield-Federal Street School,01140010, 152, 2, 1.3, 2.2, 0.0, 0.0, 2.9,"","","","","","","","" -1.2000000000000002,1.2,a-degr-i2,2023-24,Greenfield-Greenfield High,01140505, 440, 15, 3.4,"","","","","","","", 0.0, 10.6, 6.0, 1.1, 0.0 +7.8,5,a-degr-i2,2023-24,Groton-Dunstable-Groton Dunstable Regional,06730505, 684, 1, 0.1,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 713, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Groton-Dunstable-Swallow/Union School,06730005, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Groton-Dunstable-Florence Roche School,06730010, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.8,5,a-degr-i2,2023-24,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 713, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" -7.8,5,a-degr-i2,2023-24,Groton-Dunstable-Groton Dunstable Regional,06730505, 684, 1, 0.1,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Hadley-Hadley Elementary,01170015, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Hadley-Hopkins Academy,01170505, 211, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Hadley-Hadley Elementary,01170015, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2023-24,Halifax-Halifax Elementary,01180005, 459, 1, 0.2, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 442, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Miles River Middle,06750310, 378, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Winthrop School,06750015, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Hamilton-Wenham-Bessie Buker Elementary,06750007, 223, 1, 0.4, 0.0, 0.0, 2.6, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Cutler School,06750010, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Winthrop School,06750015, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Miles River Middle,06750310, 378, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 442, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 4.8,4.8,a-degr-i2,2023-24,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 553, 9, 1.6,"","","","","", 0.0, 1.1, 3.3, 2.6, 3.9, 0.0, 0.0 5.0,5.0,a-degr-i2,2023-24,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 394, 6, 1.5,"","","","","", 1.6, 4.3, 0.0, 1.8, 1.6, 0.0, 0.0 -7.4,5,a-degr-i2,2023-24,Hampden-Wilbraham-Minnechaug Regional High,06800505, 981, 3, 0.3,"","","","","","","","", 0.0, 0.4, 0.4, 0.4 8.0,5,a-degr-i2,2023-24,Hampden-Wilbraham-Wilbraham Middle,06800310, 606, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,Hampden-Wilbraham-Stony Hill School,06800050, 291, 1, 0.3,"", 0.0, 0.7,"","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Hampden-Wilbraham-Minnechaug Regional High,06800505, 981, 3, 0.3,"","","","","","","","", 0.0, 0.4, 0.4, 0.4 +8.0,5,a-degr-i2,2023-24,Hampden-Wilbraham-Soule Road,06800030, 323, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2023-24,Hampden-Wilbraham-Mile Tree Elementary,06800025, 154, 1, 0.6, 0.6,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Hampden-Wilbraham-Green Meadows Elementary,06800005, 217, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Hampden-Wilbraham-Soule Road,06800030, 323, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Hampden-Wilbraham-Stony Hill School,06800050, 291, 1, 0.3,"", 0.0, 0.7,"","","","","","","","","" 7.8,5,a-degr-i2,2023-24,Hampshire-Hampshire Regional High,06830505, 689, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 8.0,5,a-degr-i2,2023-24,Hancock-Hancock Elementary,01210005, 38, 0, 0.0, 0.0,"", 0.0, 0.0,"", 0.0,"","","","","","" -7.8,5,a-degr-i2,2023-24,Hanover-Hanover High,01220505, 684, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.6, 0.0 -8.0,5,a-degr-i2,2023-24,Hanover-Hanover Middle,01220305, 800, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Hanover-Center Elementary,01220005, 628, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Hanover-Cedar Elementary,01220004, 182, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Harvard-Hildreth Elementary School,01250005, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hanover-Hanover Middle,01220305, 800, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Hanover-Hanover High,01220505, 684, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.6, 0.0 8.0,5,a-degr-i2,2023-24,Harvard-The Bromfield High School,01250505, 323, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Harvard-The Bromfield Middle School,01250305, 252, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Hatfield-Smith Academy,01270505, 126, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Harvard-Hildreth Elementary School,01250005, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Hatfield-Hatfield Elementary,01270005, 145, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" --4.800000000000001,1,a-degr-i2,2023-24,Haverhill-Haverhill High,01280505," 1,960", 125, 6.4,"","","","","","","","", 11.4, 7.5, 3.8, 1.5 -0.20000000000000018,1,a-degr-i2,2023-24,Haverhill-Gateway Academy,01280515, 103, 4, 3.9,"","","","","","", 0.0, 7.7, 5.3, 3.1, 4.3, 0.0 -7.6,5,a-degr-i2,2023-24,Haverhill-Consentino Middle School,01280100, 828, 2, 0.2,"","","","", 0.0, 0.0, 0.0, 1.0,"","","","" -8.0,5,a-degr-i2,2023-24,Haverhill-John G Whittier,01280085, 498, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Haverhill-Bradford Elementary,01280008, 395, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.0,5,a-degr-i2,2023-24,Haverhill-Golden Hill,01280026, 373, 2, 0.5, 1.0, 1.1, 0.0, 0.0,"","","","","","","","" -7.8,5,a-degr-i2,2023-24,Haverhill-Caleb Dustin Hunking School,01280030, 981, 1, 0.1, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hatfield-Smith Academy,01270505, 126, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 2.2,2.2,a-degr-i2,2023-24,Haverhill-Greenleaf Academy,01280033, 34, 1, 2.9,"","","","","","","","", 0.0, 0.0,"","" +7.8,5,a-degr-i2,2023-24,Haverhill-Caleb Dustin Hunking School,01280030, 981, 1, 0.1, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Haverhill-Golden Hill,01280026, 373, 2, 0.5, 1.0, 1.1, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Haverhill-Bradford Elementary,01280008, 395, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2023-24,Haverhill-Dr Paul Nettle,01280050, 531, 2, 0.4,"","","","", 0.0, 0.0, 0.0, 1.4,"","","","" 7.6,5,a-degr-i2,2023-24,Haverhill-Pentucket Lake Elementary,01280054, 426, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Haverhill-Silver Hill Elementary School,01280067, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Haverhill-Bartlett School and Assessment Center,01280073, 34, 0, 0.0,"","","","", 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Haverhill-Tilton,01280075, 338, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Haverhill-Walnut Square,01280080, 122, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Haverhill-John G Whittier,01280085, 498, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Haverhill-Consentino Middle School,01280100, 828, 2, 0.2,"","","","", 0.0, 0.0, 0.0, 1.0,"","","","" +-4.800000000000001,1,a-degr-i2,2023-24,Haverhill-Haverhill High,01280505," 1,960", 125, 6.4,"","","","","","","","", 11.4, 7.5, 3.8, 1.5 +0.20000000000000018,1,a-degr-i2,2023-24,Haverhill-Gateway Academy,01280515, 103, 4, 3.9,"","","","","","", 0.0, 7.7, 5.3, 3.1, 4.3, 0.0 8.0,5,a-degr-i2,2023-24,Hawlemont-Hawlemont Regional,06850005, 45, 0, 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.8,5,a-degr-i2,2023-24,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 95, 1, 1.1,"","","","","", 0.0, 0.0, 3.1,"","","","" 8.0,5,a-degr-i2,2023-24,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 269, 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,2023-24,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 198, 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,2023-24,Hingham-Plymouth River,01310019, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Hingham-South Elementary,01310020, 421, 1, 0.2, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Hingham-Hingham Middle School,01310410, 846, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Hingham-Hingham High,01310505," 1,095", 4, 0.4,"","","","","","","","", 0.0, 0.0, 1.5, 0.0 7.4,5,a-degr-i2,2023-24,Hingham-East Elementary School,01310005, 378, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Hingham-Wm L Foster Elementary,01310010, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Hingham-Plymouth River,01310019, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Holbrook-Holbrook Middle High School,01330505, 637, 2, 0.3,"","","","","", 0.9, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2023-24,Holbrook-John F Kennedy,01330018, 530, 3, 0.6, 0.9, 2.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Holland-Holland Elementary,01350005, 172, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Holliston-Holliston High,01360505, 800, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Holliston-Robert H. Adams Middle School,01360305, 655, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Holliston-Placentino Elementary,01360010, 433, 1, 0.2, 0.5, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2023-24,Holliston-Miller School,01360007, 580, 1, 0.2,"","", 0.0, 0.0, 0.6,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Holyoke-H.B. Lawrence School,01370070, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,Holyoke-Holyoke STEM Academy,01370320, 304, 2, 0.7,"","","","","", 1.0, 0.9, 0.0,"","","","" -6.6,5,a-degr-i2,2023-24,Holyoke-Maurice A Donahue Elementary,01370060, 295, 2, 0.7, 0.0, 1.5, 0.0, 0.0, 1.5,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Holliston-Holliston High,01360505, 800, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Holyoke-Lt Clayre Sullivan Elementary,01370055, 494, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2023-24,Holyoke-E N White Elementary,01370045, 345, 2, 0.6, 0.0, 2.9, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Holyoke-Kelly Elementary,01370040, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Holyoke-Morgan Full Service Community School,01370025, 215, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -1.7999999999999998,1.8,a-degr-i2,2023-24,Holyoke-Holyoke High,01370505," 1,567", 48, 3.1,"","","","","","","","", 0.0, 0.0, 0.3, 11.5 -6.0,5,a-degr-i2,2023-24,Holyoke-Joseph Metcalf School,01370003, 205, 2, 1.0,"","","","","", 1.6, 0.0, 1.3,"","","","" 8.0,5,a-degr-i2,2023-24,Holyoke-Lt Elmer J McMahon Elementary,01370015, 271, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Holyoke-Joseph Metcalf School,01370003, 205, 2, 1.0,"","","","","", 1.6, 0.0, 1.3,"","","","" +6.6,5,a-degr-i2,2023-24,Holyoke-Maurice A Donahue Elementary,01370060, 295, 2, 0.7, 0.0, 1.5, 0.0, 0.0, 1.5,"","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Holyoke-Holyoke High,01370505," 1,567", 48, 3.1,"","","","","","","","", 0.0, 0.0, 0.3, 11.5 +6.6,5,a-degr-i2,2023-24,Holyoke-Holyoke STEM Academy,01370320, 304, 2, 0.7,"","","","","", 1.0, 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Holyoke-H.B. Lawrence School,01370070, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 2.2,2.2,a-degr-i2,2023-24,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 619, 18, 2.9, 1.3, 1.2, 8.1, 3.3, 3.5, 6.4, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley High School,06030505, 299, 0, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 309, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" 7.2,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 238, 1, 0.4, 1.3, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 309, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley High School,06030505, 299, 0, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Hopedale-Memorial,01380010, 484, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Hopedale-Hopedale Jr Sr High,01380505, 446, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -7.4,5,a-degr-i2,2023-24,Hopkinton-Hopkins Elementary School,01390015, 677, 2, 0.3,"","","", 0.3, 0.3,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Hopkinton-Elmwood,01390010, 639, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Hopkinton-Marathon Elementary School,01390005, 302, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Hopkinton-Hopkinton Middle School,01390305, 960, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Hopkinton-Hopkins Elementary School,01390015, 677, 2, 0.3,"","","", 0.3, 0.3,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hopkinton-Elmwood,01390010, 639, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" 7.6,5,a-degr-i2,2023-24,Hopkinton-Hopkinton High,01390505," 1,236", 3, 0.2,"","","","","","","","", 0.3, 0.3, 0.0, 0.4 +8.0,5,a-degr-i2,2023-24,Hudson-David J. Quinn Middle School,01410410, 573, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Hudson-Hudson High,01410505, 809, 19, 2.3,"","","","","","","", 0.0, 5.5, 4.8, 2.3, 0.0 4.4,4.4,a-degr-i2,2023-24,Hudson-Mulready Elementary,01410007, 171, 3, 1.8, 4.8, 2.6, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Hudson-Forest Avenue Elementary,01410015, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.4,5,a-degr-i2,2023-24,Hudson-C A Farley,01410030, 335, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Hudson-David J. Quinn Middle School,01410410, 573, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -3.4000000000000004,3.4,a-degr-i2,2023-24,Hudson-Hudson High,01410505, 809, 19, 2.3,"","","","","","","", 0.0, 5.5, 4.8, 2.3, 0.0 8.0,5,a-degr-i2,2023-24,Hull-Lillian M Jacobs,01420015, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Hull-Memorial Middle,01420305, 106, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Hull-Hull High,01420505, 233, 1, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.9 +8.0,5,a-degr-i2,2023-24,Hull-Memorial Middle,01420305, 106, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 3.4000000000000004,3.4,a-degr-i2,2023-24,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 788, 18, 2.3,"","","","", 1.0, 0.0, 1.0, 0.0, 6.0, 4.1, 3.9, 2.3 +8.0,5,a-degr-i2,2023-24,Ipswich-Winthrop,01440015, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Ipswich-Ipswich High,01440505, 476, 1, 0.2,"","","","","","","","", 0.0, 0.9, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Ipswich-Ipswich Middle School,01440305, 382, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Ipswich-Paul F Doyon Memorial,01440007, 284, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Ipswich-Winthrop,01440015, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Ipswich-Ipswich Middle School,01440305, 382, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 531, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010," 1,492", 3, 0.2, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0 -5.8,5,a-degr-i2,2023-24,King Philip-King Philip Regional High,06900505," 1,137", 12, 1.1,"","","","","","","","", 1.9, 1.3, 0.8, 0.3 7.8,5,a-degr-i2,2023-24,King Philip-King Philip Middle School,06900510, 707, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" +5.8,5,a-degr-i2,2023-24,King Philip-King Philip Regional High,06900505," 1,137", 12, 1.1,"","","","","","","","", 1.9, 1.3, 0.8, 0.3 8.0,5,a-degr-i2,2023-24,Kingston-Kingston Elementary,01450005, 347, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Kingston-Kingston Intermediate,01450020, 613, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2023-24,Lawrence-Gerard A. Guilmette,01490022, 479, 2, 0.4, 0.0, 1.5, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Lawrence-James F Hennessey,01490020, 148, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.0,5,a-degr-i2,2023-24,Lawrence-South Lawrence East Elementary School,01490004, 660, 3, 0.5, 0.0, 1.6, 0.7, 0.0, 0.0,"","","","","","","" -36.8,1,a-degr-i2,2023-24,Lawrence-RISE Academy,01490615, 67, 15, 22.4,"","","","","","","","","", 7.1, 11.8, 42.9 -8.0,5,a-degr-i2,2023-24,Lawrence-School for Exceptional Studies,01490537, 99, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 --50.4,1,a-degr-i2,2023-24,Lawrence-High School Learning Center,01490536, 195, 57, 29.2,"","","","","","","","","", 43.8, 3.1, 32.4 -7.6,5,a-degr-i2,2023-24,Lawrence-Frost Middle School,01490525, 493, 1, 0.2,"","","","", 0.0, 0.0, 0.8, 0.0,"","","","" -5.0,5.0,a-degr-i2,2023-24,Lawrence-Lawrence High School,01490515," 3,217", 47, 1.5,"","","","","","","","", 4.2, 1.5, 0.1, 0.0 -8.0,5,a-degr-i2,2023-24,Lawrence-Leonard Middle School,01490090, 321, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Lawrence-Spark Academy,01490085, 445, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2023-24,Lawrence-Emily G Wetherbee,01490080, 450, 1, 0.2, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2023-24,Lawrence-Robert Frost,01490018, 441, 2, 0.5, 1.0, 0.9, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Lawrence-Arlington Middle School,01490017, 588, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Lawrence-Alexander B Bruce,01490015, 416, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Lawrence-Arlington Elementary,01490009, 457, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.0,5,a-degr-i2,2023-24,Lawrence-South Lawrence East Elementary School,01490004, 660, 3, 0.5, 0.0, 1.6, 0.7, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Alexander B Bruce,01490015, 416, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Arlington Middle School,01490017, 588, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Lawrence-Robert Frost,01490018, 441, 2, 0.5, 1.0, 0.9, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-James F Hennessey,01490020, 148, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2023-24,Lawrence-Gerard A. Guilmette,01490022, 479, 2, 0.4, 0.0, 1.5, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Lawrence-Guilmette Middle School,01490025, 464, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Lawrence-Parthum Middle School,01490027, 590, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Lawrence-Francis M Leahy,01490040, 418, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -743,16 +2453,24 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Lawrence-Oliver Middle School,01490049, 346, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Lawrence-Edward F. Parthum,01490053, 569, 2, 0.4, 0.7, 0.7, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Lawrence-John K Tarbox,01490075, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Lawrence-Emily G Wetherbee,01490080, 450, 1, 0.2, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Spark Academy,01490085, 445, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Leonard Middle School,01490090, 321, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.0,5.0,a-degr-i2,2023-24,Lawrence-Lawrence High School,01490515," 3,217", 47, 1.5,"","","","","","","","", 4.2, 1.5, 0.1, 0.0 +7.6,5,a-degr-i2,2023-24,Lawrence-Frost Middle School,01490525, 493, 1, 0.2,"","","","", 0.0, 0.0, 0.8, 0.0,"","","","" +-50.4,1,a-degr-i2,2023-24,Lawrence-High School Learning Center,01490536, 195, 57, 29.2,"","","","","","","","","", 43.8, 3.1, 32.4 +8.0,5,a-degr-i2,2023-24,Lawrence-School for Exceptional Studies,01490537, 99, 0, 0.0,"","", 0.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,2023-24,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 671, 1, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 592, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 2.8,2.8,a-degr-i2,2023-24,Lee-Lee Middle/High School,01500505, 306, 8, 2.6,"","","","","","", 0.0, 5.2, 3.5, 4.9, 0.0, 1.7 7.2,5,a-degr-i2,2023-24,Lee-Lee Elementary,01500025, 275, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.4,5,a-degr-i2,2023-24,Leicester-Leicester High,01510505, 396, 5, 1.3,"","","","","","","","", 3.6, 1.8, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Leicester-Leicester Elementary,01510005, 393, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Leicester-Leicester Middle,01510015, 406, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Leicester-Leicester Elementary,01510005, 393, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Lenox-Lenox Memorial High,01520505, 443, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Lenox-Morris,01520015, 264, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Leominster-Center For Technical Education Innovation,01530605, 807, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +-29.6,1,a-degr-i2,2023-24,Leominster-Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 16, 3, 18.8,"","","","","","","","","", 42.9,"","" -4.4,1,a-degr-i2,2023-24,Leominster-Leominster Center for Excellence,01530515, 65, 4, 6.2,"","","","","","","","", 9.1, 0.0, 9.1, 6.7 3.4000000000000004,3.4,a-degr-i2,2023-24,Leominster-Leominster High School,01530505," 1,064", 24, 2.3,"","","","","","","","", 3.1, 2.4, 0.3, 3.6 8.0,5,a-degr-i2,2023-24,Leominster-Sky View Middle School,01530320, 874, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" @@ -761,33 +2479,32 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Leominster-Johnny Appleseed,01530025, 580, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Leominster-Frances Drake School,01530010, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Leominster-Fall Brook,01530007, 560, 1, 0.2, 0.0, 0.0, 0.9, 0.0, 0.0,"","","","","","","" --29.6,1,a-degr-i2,2023-24,Leominster-Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 16, 3, 18.8,"","","","","","","","","", 42.9,"","" 8.0,5,a-degr-i2,2023-24,Leverett-Leverett Elementary,01540005, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2023-24,Lexington-Bridge,01550006, 315, 1, 0.3, 0.0, 0.0, 1.5, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Lexington-Bowman,01550008, 359, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Lexington-Joseph Estabrook,01550010, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Lexington-Fiske,01550015, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lexington-Wm Diamond Middle,01550310, 927, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Lexington-Harrington,01550030, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Lexington-Maria Hastings,01550035, 552, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Lexington-Jonas Clarke Middle,01550305, 810, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Lexington-Wm Diamond Middle,01550310, 927, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Lexington-Lexington High,01550505," 2,318", 3, 0.1,"","","","","","","","", 0.0, 0.2, 0.0, 0.4 +7.4,5,a-degr-i2,2023-24,Lexington-Bridge,01550006, 315, 1, 0.3, 0.0, 0.0, 1.5, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lexington-Fiske,01550015, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2023-24,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 519, 5, 1.0,"","","","","", 1.1, 1.0, 0.0, 2.2, 1.5, 0.0,"" 8.0,5,a-degr-i2,2023-24,Lincoln-Hanscom School,01570305, 363, 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,2023-24,Lincoln-Lincoln School,01570025, 460, 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,2023-24,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505," 1,459", 12, 0.8,"","","","","","","","", 0.9, 0.8, 1.3, 0.3 -8.0,5,a-degr-i2,2023-24,Littleton-Shaker Lane Elementary,01580005, 265, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.2,5,a-degr-i2,2023-24,Littleton-Littleton High School,01580505, 483, 2, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.6 8.0,5,a-degr-i2,2023-24,Littleton-Littleton Middle School,01580305, 388, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Littleton-Russell St Elementary,01580015, 356, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Littleton-Shaker Lane Elementary,01580005, 265, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Longmeadow-Longmeadow High,01590505, 911, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Longmeadow-Williams Middle,01590305, 310, 1, 0.3,"","","","","", 0.0, 0.0, 1.1,"","","","" +8.0,5,a-degr-i2,2023-24,Longmeadow-Blueberry Hill,01590005, 320, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Longmeadow-Center,01590010, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Longmeadow-Glenbrook Middle,01590017, 320, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Longmeadow-Blueberry Hill,01590005, 320, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Longmeadow-Wolf Swamp Road,01590025, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Longmeadow-Williams Middle,01590305, 310, 1, 0.3,"","","","","", 0.0, 0.0, 1.1,"","","","" -8.0,5,a-degr-i2,2023-24,Longmeadow-Longmeadow High,01590505, 911, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Lowell-Pawtucketville Memorial,01600036, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -39.8,1,a-degr-i2,2023-24,Lowell-The Career Academy,01600515, 92, 22, 23.9,"","","","","","","","", 21.1, 9.1, 10.5, 43.8 -8.0,5,a-degr-i2,2023-24,Lowell-Dr. Janice Adie Day School,01600605, 54, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2023-24,Lowell-Dr Gertrude Bailey,01600002, 327, 1, 0.3, 0.0, 0.0, 0.0, 1.2,"","","","","","","","" 7.4,5,a-degr-i2,2023-24,Lowell-Rogers STEM Academy,01600005, 781, 2, 0.3, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2023-24,Lowell-Joseph McAvinnue,01600010, 327, 2, 0.6, 1.3, 1.2, 0.0, 0.0,"","","","","","","","" @@ -796,7 +2513,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.4,5,a-degr-i2,2023-24,Lowell-Abraham Lincoln,01600020, 351, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2023-24,Lowell-Moody Elementary,01600027, 183, 2, 1.1, 0.0, 4.2, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Lowell-Charles W Morey,01600030, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Lowell-Pawtucketville Memorial,01600036, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lowell-Dr. Janice Adie Day School,01600605, 54, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2023-24,Lowell-Peter W Reilly,01600040, 355, 2, 0.6, 0.0, 1.1, 1.1, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Lowell-John J Shaughnessy,01600050, 351, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2023-24,Lowell-Washington,01600055, 176, 2, 1.1, 0.0, 2.2, 0.0, 2.5,"","","","","","","","" @@ -818,19 +2535,10 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.6,5,a-degr-i2,2023-24,Ludlow-Paul R Baird Middle,01610305, 532, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" 2.5999999999999996,2.6,a-degr-i2,2023-24,Ludlow-Ludlow Senior High,01610505, 745, 20, 2.7,"","","","","","","","", 6.1, 1.5, 1.6, 1.8 8.0,5,a-degr-i2,2023-24,Ludlow-Harris Brook Elementary School,01610665, 617, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lunenburg-Lunenburg Primary School,01620010, 239, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Lunenburg-Turkey Hill Elementary School,01620025, 370, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2023-24,Lunenburg-Lunenburg Middle School,01620305, 363, 3, 0.8,"","","","","", 0.0, 0.0, 2.3,"","","","" 6.6,5,a-degr-i2,2023-24,Lunenburg-Lunenburg High,01620505, 449, 3, 0.7,"","","","","","","","", 1.7, 0.0, 1.0, 0.0 -8.0,5,a-degr-i2,2023-24,Lunenburg-Lunenburg Primary School,01620010, 239, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Lynn-Washington Elementary School,01630005, 384, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Lynn-Aborn,01630011, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2023-24,Lynn-Lynn Vocational Technical Institute,01630605," 1,435", 2, 0.1, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.4 -8.0,5,a-degr-i2,2023-24,Lynn-Fredrick Douglass Collegiate Academy,01630575, 157, 0, 0.0,"","","","","","","","", 0.0, 0.0,"","" --10.2,1,a-degr-i2,2023-24,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 88, 8, 9.1,"","","","","","","", 14.3, 22.2, 15.0, 11.1, 0.0 -7.0,5,a-degr-i2,2023-24,Lynn-A Drewicz Elementary,01630016, 409, 2, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Lynn-Brickett Elementary,01630020, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Lynn-Julia F Callahan,01630030, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Lynn-Cobbet Elementary,01630035, 508, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Lynn-Wm P Connery,01630040, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Lynn-E J Harrington,01630045, 475, 2, 0.4, 0.0, 1.0, 0.0, 1.1, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2023-24,Lynn-Robert L Ford,01630050, 418, 4, 1.0, 1.0, 4.1, 0.0, 0.0, 0.0,"","","","","","","" @@ -848,65 +2556,74 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Lynn-Pickering Middle,01630420, 543, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 1.7999999999999998,1.8,a-degr-i2,2023-24,Lynn-Classical High,01630505," 1,877", 59, 3.1,"","","","","","","","", 6.1, 3.5, 1.8, 0.6 -1.4000000000000004,1,a-degr-i2,2023-24,Lynn-Lynn English High,01630510," 2,072", 98, 4.7,"","","","","","","","", 5.4, 10.4, 2.1, 0.2 -8.0,5,a-degr-i2,2023-24,Lynnfield-Lynnfield Middle School,01640405, 709, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-10.2,1,a-degr-i2,2023-24,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 88, 8, 9.1,"","","","","","","", 14.3, 22.2, 15.0, 11.1, 0.0 +8.0,5,a-degr-i2,2023-24,Lynn-Fredrick Douglass Collegiate Academy,01630575, 157, 0, 0.0,"","","","","","","","", 0.0, 0.0,"","" +7.8,5,a-degr-i2,2023-24,Lynn-Lynn Vocational Technical Institute,01630605," 1,435", 2, 0.1, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.4 +8.0,5,a-degr-i2,2023-24,Lynn-Washington Elementary School,01630005, 384, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Aborn,01630011, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Lynn-A Drewicz Elementary,01630016, 409, 2, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Brickett Elementary,01630020, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Julia F Callahan,01630030, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Cobbet Elementary,01630035, 508, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Lynnfield-Summer Street,01640020, 351, 1, 0.3, 1.1, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2023-24,Lynnfield-Huckleberry Hill,01640010, 358, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Lynnfield-Lynnfield High,01640505, 571, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Lynnfield-Huckleberry Hill,01640010, 358, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynnfield-Lynnfield Middle School,01640405, 709, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 97, 0, 0.0,"","","","","","","","","","", 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Malden-Forestdale,01650027, 499, 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,2023-24,Malden-Ferryway,01650013, 809, 1, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Malden-Beebe,01650003, 811, 4, 0.5, 0.9, 0.0, 0.0, 0.0, 0.0, 1.1, 1.0, 1.1,"","","","" -7.4,5,a-degr-i2,2023-24,Malden-Salemwood,01650057, 864, 3, 0.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,"","","","" -1.8000000000000007,1,a-degr-i2,2023-24,Malden-Malden High,01650505," 1,883", 92, 4.9,"","","","","","","","", 9.6, 5.2, 3.0, 1.4 8.0,5,a-degr-i2,2023-24,Malden-Linden,01650047, 740, 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,2023-24,Malden-Salemwood,01650057, 864, 3, 0.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2023-24,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 399, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -7.2,5,a-degr-i2,2023-24,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 274, 1, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Manchester Essex Regional-Essex Elementary,06980020, 193, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 274, 1, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Mansfield-Jordan/Jackson Elementary,01670014, 738, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Mansfield-Mansfield High,01670505," 1,019", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2023-24,Mansfield-Harold L Qualters Middle,01670035, 786, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2023-24,Mansfield-Everett W Robinson,01670007, 499, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Mansfield-Jordan/Jackson Elementary,01670014, 738, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -78.6,1,a-degr-i2,2023-24,Map Academy Charter School (District)-Map Academy Charter School,35170505, 277, 120, 43.3,"","","","","","","","", 54.0, 46.7, 47.6, 27.1 +7.4,5,a-degr-i2,2023-24,Marblehead-Marblehead High,01680505, 874, 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.8, 0.5 +8.0,5,a-degr-i2,2023-24,Marblehead-Marblehead Veterans Middle School,01680300, 443, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Marblehead-Lucretia and Joseph Brown School,01680030, 305, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.2,5,a-degr-i2,2023-24,Marblehead-Glover,01680020, 234, 1, 0.4, 1.1, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Marblehead-Village School,01680016, 537, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Marblehead-Marblehead Veterans Middle School,01680300, 443, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,Marblehead-Marblehead High,01680505, 874, 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.8, 0.5 8.0,5,a-degr-i2,2023-24,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 175, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Marion-Sippican,01690005, 330, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Marlborough-Francis J Kane,01700008, 437, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Marlborough-Goodnow Brothers Elementary School,01700020, 668, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Marlborough-Richer,01700025, 474, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Marlborough-Charles Jaworek School,01700030, 551, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2023-24,Marlborough-1 LT Charles W. Whitcomb School,01700045, 944, 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Marlborough-Richer,01700025, 474, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" 5.2,5,a-degr-i2,2023-24,Marlborough-Marlborough High,01700505," 1,003", 14, 1.4,"","","","","","","","", 1.0, 1.1, 0.4, 3.3 +8.0,5,a-degr-i2,2023-24,Marlborough-Goodnow Brothers Elementary School,01700020, 668, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Marlborough-1 LT Charles W. Whitcomb School,01700045, 944, 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Marshfield-Gov Edward Winslow,01710020, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Marshfield-Martinson Elementary,01710025, 385, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Marshfield-Furnace Brook Middle,01710310, 849, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Marshfield-Marshfield High,01710505," 1,147", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.8 8.0,5,a-degr-i2,2023-24,Marshfield-Eames Way School,01710005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Marshfield-South River,01710010, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Marshfield-Daniel Webster,01710015, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Marshfield-Gov Edward Winslow,01710020, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Marshfield-Martinson Elementary,01710025, 385, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 1.7999999999999998,1.8,a-degr-i2,2023-24,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 677, 21, 3.1,"","","","","","","","", 8.5, 4.3, 0.5, 0.6 8.0,5,a-degr-i2,2023-24,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 163, 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 6.0,5,a-degr-i2,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District)-Martin Luther King, Jr. Charter School of Excellence",04920005, 292, 3, 1.0, 3.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Masconomet-Masconomet Regional Middle School,07050405, 560, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Masconomet-Masconomet Regional High School,07050505, 975, 5, 0.5,"","","","","","","","", 0.4, 0.0, 0.5, 1.2 -4.8,4.8,a-degr-i2,2023-24,Mashpee-Mashpee Middle-High School,01720505, 620, 10, 1.6,"","","","","","", 0.0, 0.0, 2.9, 3.1, 1.8, 2.2 +8.0,5,a-degr-i2,2023-24,Masconomet-Masconomet Regional Middle School,07050405, 560, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 4.4,4.4,a-degr-i2,2023-24,Mashpee-Kenneth Coombs School,01720005, 217, 4, 1.8, 3.6, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Mashpee-Quashnet School,01720035, 408, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.8,4.8,a-degr-i2,2023-24,Mashpee-Mashpee Middle-High School,01720505, 620, 10, 1.6,"","","","","","", 0.0, 0.0, 2.9, 3.1, 1.8, 2.2 4.0,4.0,a-degr-i2,2023-24,Match Charter Public School (District)-Match Charter Public School,04690505," 1,049", 21, 2.0, 1.0, 1.0, 1.0, 0.0, 0.0, 2.1, 1.1, 0.0, 4.0, 9.1, 3.3, 5.0 -8.0,5,a-degr-i2,2023-24,Mattapoisett-Center,01730005, 161, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Mattapoisett-Old Hammondtown,01730010, 170, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Maynard-Maynard High,01740505, 297, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Mattapoisett-Center,01730005, 161, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Maynard-Green Meadow,01740010, 272, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Maynard-Fowler School,01740305, 476, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Maynard-Maynard High,01740505, 297, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,Medfield-Dale Street,01750005, 404, 1, 0.2,"","","", 0.0, 0.5,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Medfield-Memorial School,01750003, 177, 0, 0.0, 0.0,"","","","","","","","","","","" -7.8,5,a-degr-i2,2023-24,Medfield-Medfield Senior High,01750505, 699, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 -8.0,5,a-degr-i2,2023-24,Medfield-Thomas Blake Middle,01750305, 585, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Medfield-Ralph Wheelock School,01750007, 389, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" -7.6,5,a-degr-i2,2023-24,Medfield-Dale Street,01750005, 404, 1, 0.2,"","","", 0.0, 0.5,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Medfield-Thomas Blake Middle,01750305, 585, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Medfield-Medfield Senior High,01750505, 699, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 8.0,5,a-degr-i2,2023-24,Medford-John J McGlynn Elementary School,01760068, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -18.6,1,a-degr-i2,2023-24,Medford-Curtis-Tufts,01760510, 15, 2, 13.3,"","","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Medford-Brooks School,01760130, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -927,25 +2644,25 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Melrose-Herbert Clark Hoover,01780017, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Melrose-Melrose High,01780505, 954, 1, 0.1,"","","","","","","","", 0.4, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Mendon-Upton-Henry P Clough,07100179, 271, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Mendon-Upton-Miscoe Hill School,07100015, 636, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Mendon-Upton-Memorial School,07100001, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Mendon-Upton-Miscoe Hill School,07100015, 636, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 5.2,5,a-degr-i2,2023-24,Mendon-Upton-Nipmuc Regional High,07100510, 556, 8, 1.4,"","","","","","","","", 1.7, 2.3, 1.3, 0.7 7.8,5,a-degr-i2,2023-24,Methuen-Donald P Timony Grammar,01810060," 1,052", 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2023-24,Methuen-Tenney Grammar School,01810055," 1,152", 3, 0.3, 0.7, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.6,"","","","" 7.6,5,a-degr-i2,2023-24,Methuen-Comprehensive Grammar School,01810050, 933, 2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.8,"","","","" -8.0,5,a-degr-i2,2023-24,Methuen-Marsh Grammar School,01810030, 924, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 4.2,4.2,a-degr-i2,2023-24,Methuen-Methuen High,01810505," 1,898", 37, 1.9,"","","","","","","","", 3.1, 4.3, 0.4, 0.0 -7.4,5,a-degr-i2,2023-24,Middleborough-Mary K. Goode Elementary School,01820010, 611, 2, 0.3, 0.9, 0.8, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Methuen-Marsh Grammar School,01810030, 924, 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,2023-24,Middleborough-Henry B. Burkland Elementary School,01820008, 584, 3, 0.5, 0.8, 0.9, 0.8, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Middleborough-Mary K. Goode Elementary School,01820010, 611, 2, 0.3, 0.9, 0.8, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Middleborough-John T. Nichols Middle,01820305, 709, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -0.40000000000000036,1,a-degr-i2,2023-24,Middleborough-Middleborough High,01820505, 826, 35, 4.2,"","","","","","","","", 11.3, 2.0, 1.9, 1.0 -8.0,5,a-degr-i2,2023-24,Middleton-Fuller Meadow,01840003, 199, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Middleton-Howe-Manning,01840005, 382, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Milford-Brookside,01850065, 380, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -6.6,5,a-degr-i2,2023-24,Milford-Memorial,01850010, 300, 2, 0.7, 1.5, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Middleton-Fuller Meadow,01840003, 199, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 1.7999999999999998,1.8,a-degr-i2,2023-24,Milford-Milford High,01850505," 1,296", 40, 3.1,"","","","","","","","", 4.6, 1.8, 1.5, 4.7 8.0,5,a-degr-i2,2023-24,Milford-Stacy Middle,01850305, 971, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Milford-Woodland,01850090, 978, 1, 0.1,"","", 0.3, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Milford-Brookside,01850065, 380, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +6.6,5,a-degr-i2,2023-24,Milford-Memorial,01850010, 300, 2, 0.7, 1.5, 0.0,"","","","","","","","","","" 5.0,5.0,a-degr-i2,2023-24,Millbury-Millbury Junior/Senior High,01860505, 718, 11, 1.5,"","","","","","", 0.9, 0.0, 2.9, 3.5, 1.6, 0.0 7.2,5,a-degr-i2,2023-24,Millbury-Elmwood Street,01860017, 261, 1, 0.4, 0.7, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Millbury-Raymond E. Shaw Elementary,01860025, 467, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -953,69 +2670,78 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Millis-Millis Middle,01870020, 268, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Millis-Clyde F Brown,01870005, 456, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Milton-Collicot,01890005, 500, 2, 0.4, 0.9, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Milton-Charles S Pierce Middle,01890410, 960, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Milton-Tucker,01890020, 351, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Milton-Cunningham School,01890007, 439, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Milton-Glover,01890010, 533, 1, 0.2, 0.0, 0.0, 1.1, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Milton-Tucker,01890020, 351, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Milton-Charles S Pierce Middle,01890410, 960, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2023-24,Milton-Milton High,01890505," 1,083", 8, 0.7,"","","","","","","","", 0.7, 0.4, 0.7, 1.1 7.8,5,a-degr-i2,2023-24,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 683, 1, 0.1,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 -3.4000000000000004,3.4,a-degr-i2,2023-24,Mohawk Trail-Mohawk Trail Regional School,07170505, 299, 7, 2.3,"","","","","","", 0.0, 0.0, 13.6, 3.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Mohawk Trail-Buckland-Shelburne Regional,07170005, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Mohawk Trail-Colrain Central,07170010, 73, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Mohawk Trail-Sanderson Academy,07170020, 90, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Mohawk Trail-Colrain Central,07170010, 73, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Mohawk Trail-Buckland-Shelburne Regional,07170005, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Mohawk Trail-Mohawk Trail Regional School,07170505, 299, 7, 2.3,"","","","","","", 0.0, 0.0, 13.6, 3.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 414, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" 8.0,5,a-degr-i2,2023-24,Monomoy Regional School District-Harwich Elementary School,07120002, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2023-24,Monomoy Regional School District-Monomoy Regional High School,07120515, 713, 3, 0.4,"","","","","","","", 0.0, 0.7, 0.0, 0.0, 1.7 -8.0,5,a-degr-i2,2023-24,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 414, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" 8.0,5,a-degr-i2,2023-24,Monomoy Regional School District-Chatham Elementary School,07120001, 119, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2023-24,Monson-Granite Valley School,01910030, 387, 2, 0.5, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Monson-Monson High School,01910505, 290, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2023-24,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605," 1,428", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Mount Greylock-Lanesborough Elementary,07150005, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2023-24,Mount Greylock-Mt Greylock Regional High,07150505, 552, 3, 0.5,"","","","","","", 0.9, 0.0, 1.1, 0.0, 1.4, 0.0 +8.0,5,a-degr-i2,2023-24,Mount Greylock-Lanesborough Elementary,07150005, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.4,5,a-degr-i2,2023-24,Mount Greylock-Williamstown Elementary,07150010, 353, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2023-24,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105," 1,486", 12, 0.8, 1.3, 0.0, 1.3, 1.4, 0.0, 2.1, 1.8, 0.9, 0.0, 0.0, 0.0, 0.0 5.8,5,a-degr-i2,2023-24,Nahant-Johnson,01960010, 88, 1, 1.1, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Nantucket-Cyrus Peirce,01970010, 353, 1, 0.3,"","","","","", 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2023-24,Nantucket-Nantucket Elementary,01970005, 246, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -3.5999999999999996,3.6,a-degr-i2,2023-24,Nantucket-Nantucket High,01970505, 589, 13, 2.2,"","","","","","","","", 3.1, 1.9, 2.6, 0.9 8.0,5,a-degr-i2,2023-24,Nantucket-Nantucket Intermediate School,01970020, 340, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Nantucket-Cyrus Peirce,01970010, 353, 1, 0.3,"","","","","", 0.0, 0.0, 0.8,"","","","" -6.4,5,a-degr-i2,2023-24,Narragansett-Narragansett Regional High,07200505, 473, 4, 0.8,"","","","","","","", 0.0, 2.9, 0.0, 1.1, 0.0 +3.5999999999999996,3.6,a-degr-i2,2023-24,Nantucket-Nantucket High,01970505, 589, 13, 2.2,"","","","","","","","", 3.1, 1.9, 2.6, 0.9 7.0,5,a-degr-i2,2023-24,Narragansett-Templeton Elementary School,07200020, 430, 2, 0.5, 0.9, 0.0, 0.0, 0.8,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Narragansett-Narragansett Middle,07200305, 366, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +6.4,5,a-degr-i2,2023-24,Narragansett-Narragansett Regional High,07200505, 473, 4, 0.8,"","","","","","","", 0.0, 2.9, 0.0, 1.1, 0.0 7.6,5,a-degr-i2,2023-24,Nashoba-Nashoba Regional,07250505, 832, 2, 0.2,"","","","","","","","", 0.5, 0.0, 0.0, 0.5 -8.0,5,a-degr-i2,2023-24,Nashoba-Hale,07250310, 237, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Nashoba-Mary Rowlandson Elementary,07250010, 364, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Nashoba-Luther Burbank Middle School,07250305, 249, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2023-24,Nashoba-Florence Sawyer School,07250025, 659, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2023-24,Nashoba-Center School,07250020, 393, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Nashoba-Florence Sawyer School,07250025, 659, 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,2023-24,Nashoba-Luther Burbank Middle School,07250305, 249, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Nashoba-Hale,07250310, 237, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 773, 4, 0.5,"","","","","","","","", 0.9, 0.0, 0.5, 0.6 -6.8,5,a-degr-i2,2023-24,Natick-Natick High,01980505," 1,619", 9, 0.6,"","","","","","","","", 0.5, 0.0, 0.0, 1.9 +8.0,5,a-degr-i2,2023-24,Natick-Johnson,01980031, 51, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Natick-Wilson Middle,01980310, 748, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Natick-Bennett-Hemenway,01980005, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2023-24,Natick-Brown,01980010, 413, 2, 0.5, 1.0, 0.9, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Natick-Johnson,01980031, 51, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2023-24,Natick-Natick High,01980505," 1,619", 9, 0.6,"","","","","","","","", 0.5, 0.0, 0.0, 1.9 8.0,5,a-degr-i2,2023-24,Natick-Lilja Elementary,01980035, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Natick-Memorial,01980043, 364, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Natick-J F Kennedy Middle School,01980305, 911, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Nauset-Nauset Regional Middle,06600305, 485, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.4,5,a-degr-i2,2023-24,Nauset-Nauset Regional High,06600505, 748, 10, 1.3,"","","","","","","","", 2.8, 0.6, 0.5, 1.6 -8.0,5,a-degr-i2,2023-24,Needham-Sunita L. Williams Elementary,01990035, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2023-24,Needham-Needham High,01990505," 1,622", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.2 -7.6,5,a-degr-i2,2023-24,Needham-Broadmeadow,01990005, 441, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Needham-John Eliot,01990020, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Needham-High Rock School,01990410, 447, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Needham-Sunita L. Williams Elementary,01990035, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Needham-William Mitchell,01990040, 373, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Needham-Newman Elementary,01990050, 520, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Needham-Pollard Middle,01990405, 880, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Needham-High Rock School,01990410, 447, 0, 0.0,"","","","","", 0.0,"","","","","","" +7.8,5,a-degr-i2,2023-24,Needham-Needham High,01990505," 1,622", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.2 +7.6,5,a-degr-i2,2023-24,Needham-Broadmeadow,01990005, 441, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 3.2,3.2,a-degr-i2,2023-24,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 780, 19, 2.4, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0, 2.8, 0.0, 6.6, 5.6, 6.6, 0.0 -7.6,5,a-degr-i2,2023-24,New Bedford-Alfred J Gomes,02010063, 463, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,New Bedford-Charles S Ashley,02010010, 235, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 3.5999999999999996,3.6,a-degr-i2,2023-24,New Bedford-Elizabeth Carter Brooks,02010015, 224, 5, 2.2, 2.6, 4.3, 3.8, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,New Bedford-Elwyn G Campbell,02010020, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,New Bedford-James B Congdon,02010040, 257, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,New Bedford-Roosevelt Middle School,02010415, 788, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.8,4.8,a-degr-i2,2023-24,New Bedford-New Bedford High,02010505," 2,893", 45, 1.6,"","","","","","","","", 0.3, 1.7, 0.8, 3.8 +5.6,5,a-degr-i2,2023-24,New Bedford-Trinity Day Academy,02010510, 86, 1, 1.2,"","","","", 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 9.1 +8.0,5,a-degr-i2,2023-24,New Bedford-Thomas R Rodman,02010125, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-13.2,1,a-degr-i2,2023-24,New Bedford-Whaling City Junior/Senior High School,02010515, 179, 19, 10.6,"","","","","","","", 0.0, 27.6, 6.5, 13.6, 0.0 +7.8,5,a-degr-i2,2023-24,New Bedford-Normandin Middle School,02010410," 1,038", 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" +7.0,5,a-degr-i2,2023-24,New Bedford-Keith Middle School,02010405, 872, 4, 0.5,"","","","","", 0.0, 1.0, 0.4,"","","","" +8.0,5,a-degr-i2,2023-24,New Bedford-Betsey B Winslow,02010140, 202, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,New Bedford-William H Taylor,02010135, 194, 2, 1.0, 2.8, 2.2, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,New Bedford-Jireh Swift,02010130, 152, 1, 0.7, 0.0, 0.0, 3.3, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,New Bedford-Sgt Wm H Carney Academy,02010045, 444, 2, 0.5, 1.1, 1.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,New Bedford-John B Devalles,02010050, 237, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --13.2,1,a-degr-i2,2023-24,New Bedford-Whaling City Junior/Senior High School,02010515, 179, 19, 10.6,"","","","","","","", 0.0, 27.6, 6.5, 13.6, 0.0 +7.6,5,a-degr-i2,2023-24,New Bedford-Alfred J Gomes,02010063, 463, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,New Bedford-Irwin M. Jacobs Elementary School,02010070, 288, 1, 0.3, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2023-24,New Bedford-Ellen R Hathaway,02010075, 161, 1, 0.6, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2023-24,New Bedford-Hayden/McFadden,02010078, 513, 3, 0.6, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -1023,111 +2749,102 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,New Bedford-Carlos Pacheco,02010105, 217, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,New Bedford-John Avery Parker,02010115, 191, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,New Bedford-Casimir Pulaski,02010123, 395, 1, 0.3, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,New Bedford-Thomas R Rodman,02010125, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,New Bedford-Jireh Swift,02010130, 152, 1, 0.7, 0.0, 0.0, 3.3, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2023-24,New Bedford-William H Taylor,02010135, 194, 2, 1.0, 2.8, 2.2, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,New Bedford-Betsey B Winslow,02010140, 202, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,New Bedford-Keith Middle School,02010405, 872, 4, 0.5,"","","","","", 0.0, 1.0, 0.4,"","","","" -7.8,5,a-degr-i2,2023-24,New Bedford-Normandin Middle School,02010410," 1,038", 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" -8.0,5,a-degr-i2,2023-24,New Bedford-Roosevelt Middle School,02010415, 788, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -4.8,4.8,a-degr-i2,2023-24,New Bedford-New Bedford High,02010505," 2,893", 45, 1.6,"","","","","","","","", 0.3, 1.7, 0.8, 3.8 -5.6,5,a-degr-i2,2023-24,New Bedford-Trinity Day Academy,02010510, 86, 1, 1.2,"","","","", 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 9.1 3.8,3.8,a-degr-i2,2023-24,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 730, 15, 2.1,"","","","","", 4.5, 4.5, 0.0, 1.0, 1.9, 0.9, 1.1 6.2,5,a-degr-i2,2023-24,New Salem-Wendell-Swift River,07280015, 106, 1, 0.9, 8.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.8,5,a-degr-i2,2023-24,Newburyport-Newburyport High,02040505, 782, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Newburyport-Rupert A Nock Middle,02040305, 473, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Newburyport-Edward G. Molin Elementary School,02040030, 300, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2023-24,Newburyport-Francis T Bresnahan Elementary,02040005, 395, 3, 0.8, 1.7, 0.0, 0.7,"","","","","","","","","" -7.4,5,a-degr-i2,2023-24,Newton-Cabot,02070025, 374, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Countryside,02070040, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Franklin,02070055, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Lincoln-Eliot,02070070, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Horace Mann,02070075, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Peirce,02070100, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Memorial Spaulding,02070105, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Underwood,02070115, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-John Ward,02070120, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Williams,02070125, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Zervas,02070130, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Newton-Bigelow Middle,02070305, 414, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Newton-Charles E Brown Middle,02070310, 732, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Newton-F A Day Middle,02070315, 868, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Newton-Oak Hill Middle,02070320, 648, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.6,5,a-degr-i2,2023-24,Newton-Newton North High,02070505," 2,085", 14, 0.7,"","","","","","","","", 0.2, 0.6, 1.0, 1.0 +8.0,5,a-degr-i2,2023-24,Newton-Zervas,02070130, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Williams,02070125, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-John Ward,02070120, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Underwood,02070115, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Memorial Spaulding,02070105, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Peirce,02070100, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Mason-Rice,02070080, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Horace Mann,02070075, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Lincoln-Eliot,02070070, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Franklin,02070055, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Countryside,02070040, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Newton-Cabot,02070025, 374, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Newton-C C Burr,02070020, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Newton-Bowen,02070015, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Newton-Newton South High,02070510," 1,859", 5, 0.3,"","","","","","","","", 0.0, 0.0, 0.2, 0.9 6.8,5,a-degr-i2,2023-24,Newton-A E Angier,02070005, 320, 2, 0.6, 3.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Newton-Mason-Rice,02070080, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Charles E Brown Middle,02070310, 732, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Newton-F A Day Middle,02070315, 868, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Newton-Newton South High,02070510," 1,859", 5, 0.3,"","","","","","","","", 0.0, 0.0, 0.2, 0.9 +6.6,5,a-degr-i2,2023-24,Newton-Newton North High,02070505," 2,085", 14, 0.7,"","","","","","","","", 0.2, 0.6, 1.0, 1.0 +8.0,5,a-degr-i2,2023-24,Newton-Oak Hill Middle,02070320, 648, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.4,5,a-degr-i2,2023-24,Norfolk-H Olive Day,02080015, 261, 2, 0.8, 0.9, 0.7,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Norfolk-Freeman-Kennedy School,02080005, 552, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 586, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,North Adams-Colegrove Park Elementary,02090008, 187, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-8.0,1,a-degr-i2,2023-24,North Adams-Drury High,02090505, 461, 37, 8.0,"","","","","","", 1.3, 2.5, 9.8, 15.0, 13.7, 2.1 5.6,5,a-degr-i2,2023-24,North Adams-Brayton,02090035, 166, 2, 1.2, 0.0, 0.0, 0.0, 0.0, 5.3, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,North Adams-Greylock,02090015, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" --8.0,1,a-degr-i2,2023-24,North Adams-Drury High,02090505, 461, 37, 8.0,"","","","","","", 1.3, 2.5, 9.8, 15.0, 13.7, 2.1 -8.0,5,a-degr-i2,2023-24,North Adams-Colegrove Park Elementary,02090008, 187, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2023-24,North Andover-Franklin,02110010, 380, 2, 0.5, 1.4, 0.0, 1.5, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,North Andover-Kittredge,02110015, 222, 1, 0.5, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2023-24,North Andover-Annie L Sargent School,02110018, 468, 3, 0.6, 1.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,North Andover-Thomson,02110020, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2023-24,North Andover-North Andover Middle,02110305," 1,017", 1, 0.1,"","","","","", 0.3, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2023-24,North Andover-North Andover High,02110505," 1,380", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 7.2,5,a-degr-i2,2023-24,North Andover-Atkinson,02110001, 266, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 1.8,"","","","","","","" -8.0,5,a-degr-i2,2023-24,North Attleborough-Joseph W Martin Jr Elementary,02120013, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,North Andover-Franklin,02110010, 380, 2, 0.5, 1.4, 0.0, 1.5, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,North Andover-North Andover High,02110505," 1,380", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +7.8,5,a-degr-i2,2023-24,North Andover-North Andover Middle,02110305," 1,017", 1, 0.1,"","","","","", 0.3, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,North Andover-Thomson,02110020, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,North Andover-Annie L Sargent School,02110018, 468, 3, 0.6, 1.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,North Attleborough-Community,02120030, 239, 2, 0.8, 0.0, 0.0, 2.1, 2.4, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,North Attleborough-North Attleborough Middle,02120305, 964, 2, 0.2,"","","","","", 0.0, 0.3, 0.3,"","","","" 8.0,5,a-degr-i2,2023-24,North Attleborough-Amvet Boulevard,02120007, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,North Attleborough-Falls,02120010, 201, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,North Attleborough-Roosevelt Avenue,02120015, 217, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2023-24,North Attleborough-Community,02120030, 239, 2, 0.8, 0.0, 0.0, 2.1, 2.4, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,North Attleborough-North Attleborough Middle,02120305, 964, 2, 0.2,"","","","","", 0.0, 0.3, 0.3,"","","","" 4.0,4.0,a-degr-i2,2023-24,North Attleborough-North Attleboro High,02120505," 1,062", 21, 2.0,"","","","","","","","", 2.7, 4.1, 1.0, 0.7 +8.0,5,a-degr-i2,2023-24,North Attleborough-Joseph W Martin Jr Elementary,02120013, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,North Brookfield-North Brookfield Elementary,02150015, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.0,5.0,a-degr-i2,2023-24,North Brookfield-North Brookfield High,02150505, 133, 2, 1.5,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 6.5 +8.0,5,a-degr-i2,2023-24,North Middlesex-Squannacook Early Childhood Center,07350002, 11, 0, 0.0,"","","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,North Middlesex-Spaulding Memorial,07350005, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.2,5,a-degr-i2,2023-24,North Middlesex-Ashby Elementary,07350010, 117, 1, 0.9, 4.5, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,North Middlesex-Hawthorne Brook,07350030, 452, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,North Middlesex-Nissitissit Middle School,07350310, 486, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,North Middlesex-Varnum Brook,07350035, 500, 1, 0.2, 0.0, 0.8, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,North Middlesex-Spaulding Memorial,07350005, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,North Middlesex-Squannacook Early Childhood Center,07350002, 11, 0, 0.0,"","","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,North Middlesex-Nissitissit Middle School,07350310, 486, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2023-24,North Middlesex-North Middlesex Regional,07350505, 745, 7, 0.9,"","","","","","","","", 2.3, 0.5, 0.9, 0.0 -7.4,5,a-degr-i2,2023-24,North Reading-L D Batchelder,02170005, 377, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,North Reading-North Reading Middle,02170305, 543, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,North Reading-J Turner Hood,02170010, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,North Reading-L D Batchelder,02170005, 377, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,North Reading-E Ethel Little School,02170003, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,North Reading-North Reading High,02170505, 613, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Northampton-Jackson Street,02100020, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Reading-North Reading Middle,02170305, 543, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Northampton-Northampton High,02100505, 898, 4, 0.4,"","","","","","","","", 0.4, 0.0, 0.9, 0.5 7.0,5,a-degr-i2,2023-24,Northampton-Bridge Street,02100005, 197, 1, 0.5, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Northampton-Leeds,02100025, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Northampton-John F Kennedy Middle School,02100410, 542, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Northampton-R. K. Finn Ryan Road,02100029, 198, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northampton-John F Kennedy Middle School,02100410, 542, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Northampton-Jackson Street,02100020, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northampton-Leeds,02100025, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 569, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2023-24,Northboro-Southboro-Algonquin Regional High,07300505," 1,179", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 -8.0,5,a-degr-i2,2023-24,Northborough-Robert E. Melican Middle School,02130305, 569, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Northborough-Marion E Zeh,02130020, 213, 1, 0.5, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Northborough-Fannie E Proctor,02130015, 224, 1, 0.4, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Northborough-Marguerite E Peaslee,02130014, 241, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Northborough-Lincoln Street,02130003, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -3.4000000000000004,3.4,a-degr-i2,2023-24,Northbridge-Northbridge High,02140505, 473, 11, 2.3,"","","","","","","","", 6.4, 2.2, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Northborough-Robert E. Melican Middle School,02130305, 569, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Northbridge-Northbridge Middle,02140305, 432, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Northbridge-Northbridge High,02140505, 473, 11, 2.3,"","","","","","","","", 6.4, 2.2, 0.0, 0.0 7.8,5,a-degr-i2,2023-24,Northbridge-Northbridge Elementary School,02140001, 697, 1, 0.1, 0.0, 0.7, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605," 1,343", 1, 0.1,"","","","","","","","", 0.0, 0.3, 0.0, 0.0 7.2,5,a-degr-i2,2023-24,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 520, 2, 0.4,"","","","","","","","", 0.8, 0.0, 0.7, 0.0 -5.6,5,a-degr-i2,2023-24,Norton-Norton High,02180505, 682, 8, 1.2,"","","","","","","","", 3.0, 1.1, 0.6, 0.0 -8.0,5,a-degr-i2,2023-24,Norton-Norton Middle,02180305, 559, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Norton-Henri A. Yelle,02180060, 333, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 6.2,5,a-degr-i2,2023-24,Norton-L G Nourse Elementary,02180010, 223, 2, 0.9, 3.1, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2023-24,Norton-J C Solmonese,02180015, 320, 1, 0.3, 1.0, 0.0, 0.0,"","","","","","","","","" -7.6,5,a-degr-i2,2023-24,Norwell-Norwell High,02190505, 596, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2023-24,Norton-Henri A. Yelle,02180060, 333, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Norton-Norton Middle,02180305, 559, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.6,5,a-degr-i2,2023-24,Norton-Norton High,02180505, 682, 8, 1.2,"","","","","","","","", 3.0, 1.1, 0.6, 0.0 +8.0,5,a-degr-i2,2023-24,Norwell-Grace Farrar Cole,02190005, 427, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Norwell-Norwell Middle School,02190405, 500, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Norwell-Norwell High,02190505, 596, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2023-24,Norwell-William G Vinal,02190020, 448, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Norwell-Grace Farrar Cole,02190005, 427, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2023-24,Norwood-Norwood High,02200505, 946, 8, 0.8,"","","","","","","","", 2.4, 0.9, 0.0, 0.0 -7.2,5,a-degr-i2,2023-24,Norwood-Charles J Prescott,02200025, 242, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Norwood-John P Oldham,02200020, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Norwood-F A Cleveland,02200015, 317, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Norwood-Cornelius M Callahan,02200010, 234, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Norwood-Balch,02200005, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Norwood-Charles J Prescott,02200025, 242, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Norwood-Dr. Philip O. Coakley Middle School,02200305, 791, 2, 0.3,"","","","","", 0.4, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Norwood-Balch,02200005, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,Norwood-Norwood High,02200505, 946, 8, 0.8,"","","","","","","","", 2.4, 0.9, 0.0, 0.0 6.8,5,a-degr-i2,2023-24,Oak Bluffs-Oak Bluffs Elementary,02210005, 362, 2, 0.6, 2.2, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 549, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Old Rochester-Old Rochester Regional Jr High,07400405, 431, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" @@ -1135,154 +2852,154 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2023-24,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 308, 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,2023-24,Orange-Fisher Hill School,02230010, 409, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Orleans-Orleans Elementary,02240005, 113, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --3.4000000000000004,1,a-degr-i2,2023-24,Oxford-Oxford High,02260505, 404, 23, 5.7,"","","","","","","","", 5.6, 6.0, 8.3, 2.3 -7.0,5,a-degr-i2,2023-24,Oxford-Oxford Middle,02260405, 385, 2, 0.5,"","","","","", 0.0, 0.7, 0.8,"","","","" -7.2,5,a-degr-i2,2023-24,Oxford-Alfred M Chaffee,02260010, 223, 1, 0.4, 0.9, 0.0,"","","","","","","","","","" 6.8,5,a-degr-i2,2023-24,Oxford-Clara Barton,02260005, 321, 2, 0.6,"","", 2.3, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Palmer-Palmer High,02270505, 508, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.7 +7.2,5,a-degr-i2,2023-24,Oxford-Alfred M Chaffee,02260010, 223, 1, 0.4, 0.9, 0.0,"","","","","","","","","","" +7.0,5,a-degr-i2,2023-24,Oxford-Oxford Middle,02260405, 385, 2, 0.5,"","","","","", 0.0, 0.7, 0.8,"","","","" +-3.4000000000000004,1,a-degr-i2,2023-24,Oxford-Oxford High,02260505, 404, 23, 5.7,"","","","","","","","", 5.6, 6.0, 8.3, 2.3 8.0,5,a-degr-i2,2023-24,Palmer-Old Mill Pond,02270008, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Palmer-Palmer High,02270505, 508, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.7 6.2,5,a-degr-i2,2023-24,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 643, 6, 0.9,"","","","","","","","", 2.3, 1.2, 0.0, 0.0 +-65.4,1,a-degr-i2,2023-24,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 98, 36, 36.7,"","","","","","","", 12.5, 37.5, 60.0, 57.9, 47.4 +6.6,5,a-degr-i2,2023-24,Peabody-Captain Samuel Brown,02290005, 298, 2, 0.7, 0.0, 0.0, 0.0, 3.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Peabody-John E Burke,02290007, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Peabody-Thomas Carroll,02290010, 480, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Peabody-Center,02290015, 304, 1, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Peabody-John E. McCarthy,02290016, 218, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Peabody-William A Welch Sr,02290027, 235, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2023-24,Peabody-Thomas Carroll,02290010, 480, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Peabody-John E Burke,02290007, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,Peabody-Captain Samuel Brown,02290005, 298, 2, 0.7, 0.0, 0.0, 0.0, 3.4, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2023-24,Peabody-South Memorial,02290035, 350, 4, 1.1, 4.3, 1.5, 0.0, 0.0, 0.0,"","","","","","","" --65.4,1,a-degr-i2,2023-24,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 98, 36, 36.7,"","","","","","","", 12.5, 37.5, 60.0, 57.9, 47.4 --13.2,1,a-degr-i2,2023-24,Peabody-Peabody Veterans Memorial High,02290510," 1,410", 149, 10.6,"","","","","","","","", 9.0, 12.4, 15.2, 4.3 -8.0,5,a-degr-i2,2023-24,Peabody-J Henry Higgins Middle,02290305," 1,283", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Peabody-West Memorial,02290045, 193, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Peabody-J Henry Higgins Middle,02290305," 1,283", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-13.2,1,a-degr-i2,2023-24,Peabody-Peabody Veterans Memorial High,02290510," 1,410", 149, 10.6,"","","","","","","","", 9.0, 12.4, 15.2, 4.3 8.0,5,a-degr-i2,2023-24,Pelham-Pelham Elementary,02300005, 112, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Pembroke-Pembroke Community Middle School,02310305, 360, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Pembroke-North Pembroke Elementary,02310015, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Pembroke-Hobomock Elementary,02310010, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Pembroke-Bryantville Elementary,02310003, 380, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.2,5,a-degr-i2,2023-24,Pembroke-Pembroke High School,02310505, 704, 6, 0.9,"","","","","","","","", 1.1, 2.3, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Pentucket-Pentucket Regional Middle,07450405, 331, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2023-24,Pentucket-Pentucket Regional Sr High,07450505, 574, 5, 0.9,"","","","","","","","", 0.7, 0.0, 1.9, 0.7 +8.0,5,a-degr-i2,2023-24,Pembroke-Pembroke Community Middle School,02310305, 360, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Pembroke-Bryantville Elementary,02310003, 380, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pembroke-Hobomock Elementary,02310010, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Pentucket-Elmer S Bagnall,07450005, 411, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Pentucket-Helen R Donaghue School,07450010, 245, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Pentucket-Dr John C Page School,07450015, 258, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2023-24,Pentucket-Pentucket Regional Sr High,07450505, 574, 5, 0.9,"","","","","","","","", 0.7, 0.0, 1.9, 0.7 +8.0,5,a-degr-i2,2023-24,Pentucket-Pentucket Regional Middle,07450405, 331, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Pentucket-Dr Frederick N Sweetsir,07450020, 136, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Pentucket-Dr John C Page School,07450015, 258, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Petersham-Petersham Center,02340005, 114, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -103.4,1,a-degr-i2,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 194, 108, 55.7,"","","","","","","","", 58.6,"", 65.0, 20.0 -106.0,1,a-degr-i2,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 114, 65, 57.0,"","","","","","","","", 64.5,"", 35.7, 0.0 -122.80000000000001,1,a-degr-i2,2023-24,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 159, 104, 65.4,"","","","","","","","", 76.9,"", 62.3, 0.0 6.4,5,a-degr-i2,2023-24,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 717, 6, 0.8, 1.6, 1.6, 1.6, 0.0, 1.6, 1.6, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2023-24,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 516, 3, 0.6, 0.0, 0.0, 0.0,"","","", 0.0, 1.4, 1.4, 1.5, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Pioneer Valley-Northfield Elementary,07500008, 121, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Pioneer Valley-Bernardston Elementary,07500006, 167, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Pioneer Valley-Pioneer Valley Regional,07500505, 241, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Pioneer Valley-Bernardston Elementary,07500006, 167, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pioneer Valley-Northfield Elementary,07500008, 121, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 507, 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 7.4,5,a-degr-i2,2023-24,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 399, 1, 0.3,"","","","","","", 0.0, 0.0, 0.0, 0.0, 1.5, 0.0 -18.6,1,a-degr-i2,2023-24,Pittsfield-Eagle Education Academy,02360525, 30, 4, 13.3,"","","","","", 0.0,"","", 22.2,"","","" -8.0,5,a-degr-i2,2023-24,Pittsfield-Allendale,02360010, 201, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Pittsfield-Crosby Educational Academy,02360030, 21, 0, 0.0,"","","", 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Pittsfield-Egremont,02360035, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,Pittsfield-Robert T. Capeless Elementary School,02360045, 142, 1, 0.7, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Pittsfield-Crosby,02360065, 174, 1, 0.6, 0.0, 0.0, 0.0, 0.0, 2.9,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Pittsfield-Morningside Community School,02360055, 279, 1, 0.4, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Pittsfield-Robert T. Capeless Elementary School,02360045, 142, 1, 0.7, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Egremont,02360035, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Crosby Educational Academy,02360030, 21, 0, 0.0,"","","", 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Allendale,02360010, 201, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.4,4.4,a-degr-i2,2023-24,Pittsfield-Taconic High,02360510, 875, 16, 1.8,"","","","","","","","", 0.0, 3.4, 3.3, 0.5 +-2.4000000000000004,1,a-degr-i2,2023-24,Pittsfield-Pittsfield High,02360505, 711, 37, 5.2,"","","","","","","","", 12.6, 5.5, 2.2, 0.5 +7.6,5,a-degr-i2,2023-24,Pittsfield-Theodore Herberg Middle,02360310, 531, 1, 0.2,"","","","","", 0.5, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-John T Reid Middle,02360305, 442, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Pittsfield-Stearns,02360090, 172, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Pittsfield-Williams,02360100, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2023-24,Pittsfield-Silvio O Conte Community,02360105, 275, 3, 1.1, 3.1, 0.0, 0.0, 2.1, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Pittsfield-John T Reid Middle,02360305, 442, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2023-24,Pittsfield-Theodore Herberg Middle,02360310, 531, 1, 0.2,"","","","","", 0.5, 0.0, 0.0,"","","","" --2.4000000000000004,1,a-degr-i2,2023-24,Pittsfield-Pittsfield High,02360505, 711, 37, 5.2,"","","","","","","","", 12.6, 5.5, 2.2, 0.5 -6.8,5,a-degr-i2,2023-24,Pittsfield-Crosby,02360065, 174, 1, 0.6, 0.0, 0.0, 0.0, 0.0, 2.9,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Plainville-Beatrice H Wood Elementary,02380005, 314, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Plainville-Anna Ware Jackson,02380010, 174, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Plymouth-Cold Spring,02390005, 180, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2023-24,Plymouth-Plymouth South High,02390515," 1,003", 8, 0.8,"","","","","","","","", 2.0, 1.2, 0.0, 0.0 2.2,2.2,a-degr-i2,2023-24,Plymouth-Plymouth North High,02390505," 1,247", 36, 2.9,"","","","","","","","", 8.2, 3.1, 0.3, 0.0 -8.0,5,a-degr-i2,2023-24,Plymouth-Hedge,02390010, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Plymouth-Federal Furnace School,02390011, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Plymouth-Indian Brook,02390012, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Plymouth-Manomet Elementary,02390015, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Plymouth-Nathaniel Morton Elementary,02390030, 423, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Plymouth-South Elementary,02390046, 532, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Plymouth-West Elementary,02390047, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,Plymouth-Plymouth South High,02390515," 1,003", 8, 0.8,"","","","","","","","", 2.0, 1.2, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Plymouth-Plymouth South Middle,02390305, 605, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-West Elementary,02390047, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-South Elementary,02390046, 532, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Plymouth-Nathaniel Morton Elementary,02390030, 423, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Manomet Elementary,02390015, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Indian Brook,02390012, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Plymouth-Plymouth Commun Intermediate,02390405, 871, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Cold Spring,02390005, 180, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Hedge,02390010, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Federal Furnace School,02390011, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Plympton-Dennett Elementary,02400010, 219, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.6,5,a-degr-i2,2023-24,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 823, 6, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 3.1, 4.9 8.0,5,a-degr-i2,2023-24,Provincetown-Provincetown Schools,02420020, 98, 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,2023-24,Quabbin-Ruggles Lane,07530030, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Quabbin-Quabbin Regional Middle School,07530405, 527, 3, 0.6,"","","","","", 0.5, 0.0, 1.1,"","","","" +-6.4,1,a-degr-i2,2023-24,Quabbin-Quabbin Regional High School,07530505, 567, 41, 7.2,"","","","","","","","", 16.3, 3.6, 2.6, 1.7 8.0,5,a-degr-i2,2023-24,Quabbin-Hardwick Elementary,07530005, 145, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2023-24,Quabbin-Hubbardston Center,07530010, 230, 2, 0.9, 0.0, 2.7, 1.9, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Quabbin-Oakham Center,07530025, 133, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --6.4,1,a-degr-i2,2023-24,Quabbin-Quabbin Regional High School,07530505, 567, 41, 7.2,"","","","","","","","", 16.3, 3.6, 2.6, 1.7 -6.8,5,a-degr-i2,2023-24,Quabbin-Quabbin Regional Middle School,07530405, 527, 3, 0.6,"","","","","", 0.5, 0.0, 1.1,"","","","" -8.0,5,a-degr-i2,2023-24,Quaboag Regional-Warren Elementary,07780005, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -2.8,2.8,a-degr-i2,2023-24,Quaboag Regional-Quaboag Regional High,07780505, 344, 9, 2.6,"","","","","","","","", 6.3, 3.4, 0.0, 0.0 +6.2,5,a-degr-i2,2023-24,Quabbin-Hubbardston Center,07530010, 230, 2, 0.9, 0.0, 2.7, 1.9, 0.0, 0.0,"","","","","","","" 5.2,5,a-degr-i2,2023-24,Quaboag Regional-West Brookfield Elementary,07780010, 215, 3, 1.4, 6.5, 0.0, 3.0, 0.0, 0.0, 0.0,"","","","","","" +2.8,2.8,a-degr-i2,2023-24,Quaboag Regional-Quaboag Regional High,07780505, 344, 9, 2.6,"","","","","","","","", 6.3, 3.4, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Quaboag Regional-Warren Elementary,07780005, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 170, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Montclair,02430065, 361, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Francis W Parker,02430075, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Snug Harbor Community School,02430090, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Squantum,02430095, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Wollaston School,02430110, 268, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Quincy-Atlantic Middle,02430305, 560, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Quincy-Broad Meadows Middle,02430310, 318, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Quincy-Central Middle,02430315, 670, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Quincy-South West Middle School,02430320, 443, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Quincy-Point Webster Middle,02430325, 353, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -5.6,5,a-degr-i2,2023-24,Quincy-Quincy High,02430505," 1,473", 17, 1.2,"","","","","","","","", 1.4, 0.5, 1.8, 0.8 -5.4,5,a-degr-i2,2023-24,Quincy-North Quincy High,02430510," 1,479", 19, 1.3,"","","","","","","","", 2.6, 1.1, 1.4, 0.0 -8.0,5,a-degr-i2,2023-24,Quincy-Wollaston School,02430110, 268, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Quincy-Squantum,02430095, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Quincy-Snug Harbor Community School,02430090, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Quincy-Francis W Parker,02430075, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Quincy-Montclair,02430065, 361, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Quincy-Merrymount,02430060, 265, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Quincy-Clifford H Marshall Elementary,02430055, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.0,5,a-degr-i2,2023-24,Quincy-Atherton Hough,02430040, 209, 2, 1.0, 2.4, 3.2, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Quincy-Lincoln-Hancock Community School,02430035, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Quincy-Beechwood Knoll Elementary,02430020, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Quincy-Charles A Bernazzani Elementary,02430025, 280, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Beechwood Knoll Elementary,02430020, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2023-24,Quincy-North Quincy High,02430510," 1,479", 19, 1.3,"","","","","","","","", 2.6, 1.1, 1.4, 0.0 +5.6,5,a-degr-i2,2023-24,Quincy-Quincy High,02430505," 1,473", 17, 1.2,"","","","","","","","", 1.4, 0.5, 1.8, 0.8 +8.0,5,a-degr-i2,2023-24,Quincy-Central Middle,02430315, 670, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Quincy-South West Middle School,02430320, 443, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Point Webster Middle,02430325, 353, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -2.4000000000000004,1,a-degr-i2,2023-24,Ralph C Mahar-Ralph C Mahar Regional,07550505, 504, 26, 5.2,"","","","","","", 0.0, 0.0, 24.7, 0.0, 1.3, 1.8 --7.4,1,a-degr-i2,2023-24,Randolph-Randolph High,02440505, 662, 51, 7.7,"","","","","","","","", 17.5, 4.9, 4.4, 2.2 7.4,5,a-degr-i2,2023-24,Randolph-Randolph Community Middle,02440410, 602, 2, 0.3,"","","","","", 0.4, 0.5, 0.0,"","","","" +-7.4,1,a-degr-i2,2023-24,Randolph-Randolph High,02440505, 662, 51, 7.7,"","","","","","","","", 17.5, 4.9, 4.4, 2.2 8.0,5,a-degr-i2,2023-24,Randolph-Margaret L Donovan,02440015, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.2,5,a-degr-i2,2023-24,Randolph-J F Kennedy Elementary,02440018, 286, 4, 1.4, 3.1, 3.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Randolph-Elizabeth G Lyons Elementary,02440020, 217, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Randolph-Martin E Young Elementary,02440040, 235, 1, 0.4, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Reading-Wood End Elementary School,02460020, 206, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Reading-Reading Memorial High,02460505," 1,097", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 8.0,5,a-degr-i2,2023-24,Reading-Walter S Parker Middle,02460310, 451, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Reading-Arthur W Coolidge Middle,02460305, 403, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Reading-Wood End Elementary School,02460020, 206, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Reading-Alice M Barrows,02460002, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Reading-Birch Meadow,02460005, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Reading-J Warren Killam,02460017, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Reading-Joshua Eaton,02460010, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Reading-Birch Meadow,02460005, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Reading-Alice M Barrows,02460002, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Revere-Susan B. Anthony Middle School,02480305, 568, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-23.2,1,a-degr-i2,2023-24,Revere-CityLab Innovation High School,02480520, 109, 17, 15.6,"","","","","","","","", 31.0, 7.7, 0.0, 5.6 -7.0,1,a-degr-i2,2023-24,Revere-Revere High,02480505," 2,083", 157, 7.5,"","","","","","","","", 9.6, 11.4, 6.8, 0.7 -6.6,5,a-degr-i2,2023-24,Revere-A. C. Whelan Elementary School,02480003, 608, 4, 0.7, 0.9, 1.9, 0.8, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2023-24,Revere-Beachmont Veterans Memorial School,02480013, 245, 1, 0.4, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Revere-Rumney Marsh Academy,02480014, 579, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Revere-Susan B. Anthony Middle School,02480305, 568, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Revere-Garfield Middle School,02480057, 566, 1, 0.2,"","","","","", 0.5, 0.0, 0.0,"","","","" --23.2,1,a-degr-i2,2023-24,Revere-CityLab Innovation High School,02480520, 109, 17, 15.6,"","","","","","","","", 31.0, 7.7, 0.0, 5.6 -7.2,5,a-degr-i2,2023-24,Revere-Abraham Lincoln,02480025, 469, 2, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Revere-Garfield Elementary School,02480056, 540, 1, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Revere-Paul Revere,02480050, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Revere-Abraham Lincoln,02480025, 469, 2, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Revere-Rumney Marsh Academy,02480014, 579, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Revere-Beachmont Veterans Memorial School,02480013, 245, 1, 0.4, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Revere-A. C. Whelan Elementary School,02480003, 608, 4, 0.7, 0.9, 1.9, 0.8, 0.0, 0.0,"","","","","","","" 5.4,5,a-degr-i2,2023-24,Revere-Staff Sargent James J. Hill Elementary School,02480035, 555, 7, 1.3, 2.0, 2.7, 1.8, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Richmond-Richmond Consolidated,02490005, 129, 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,2023-24,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 623, 4, 0.6,"","","","", 0.0, 0.0, 0.0, 1.0, 0.0, 2.9, 1.6, 0.0 7.2,5,a-degr-i2,2023-24,River Valley Charter (District)-River Valley Charter School,04820050, 256, 1, 0.4, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Rochester-Rochester Memorial,02500005, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.8,5,a-degr-i2,2023-24,Rockland-Phelps Elementary School,02510060, 640, 4, 0.6, 0.0, 1.9, 0.0, 0.6,"","","","","","","","" --1.1999999999999993,1,a-degr-i2,2023-24,Rockland-Rockland Senior High,02510505, 571, 26, 4.6,"","","","","","","","", 10.5, 3.8, 1.7, 0.0 7.4,5,a-degr-i2,2023-24,Rockland-John W Rogers Middle,02510305, 697, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 1.0,"","","","" +-1.1999999999999993,1,a-degr-i2,2023-24,Rockland-Rockland Senior High,02510505, 571, 26, 4.6,"","","","","","","","", 10.5, 3.8, 1.7, 0.0 +6.8,5,a-degr-i2,2023-24,Rockland-Phelps Elementary School,02510060, 640, 4, 0.6, 0.0, 1.9, 0.0, 0.6,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Rockport-Rockport High,02520510, 226, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Rockport-Rockport Elementary,02520005, 214, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Rockport-Rockport Middle,02520305, 173, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Rockport-Rockport High,02520510, 226, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Rowe-Rowe Elementary,02530005, 48, 0, 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","" 3.8,3.8,a-degr-i2,2023-24,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505," 1,138", 24, 2.1,"","","","", 4.1, 0.7, 4.9, 3.3, 0.5, 0.8, 1.8, 0.0 -6.8,5,a-degr-i2,2023-24,Salem-Saltonstall School,02580050, 351, 2, 0.6, 0.0, 0.0, 2.2, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2023-24,Salem-Witchcraft Heights,02580070, 375, 2, 0.5, 0.0, 0.0, 1.4, 1.2, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Salem-Horace Mann Laboratory,02580030, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,Salem-Carlton,02580015, 212, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Salem-Bentley Academy Innovation School,02580010, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Salem-Bates,02580003, 299, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Salem-Bentley Academy Innovation School,02580010, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -3.8000000000000007,1,a-degr-i2,2023-24,Salem-Salem Prep High School,02580515, 17, 1, 5.9,"","","","","","","","","", 0.0, 0.0,"" -14.2,1,a-degr-i2,2023-24,Salem-New Liberty Innovation School,02580510, 45, 5, 11.1,"","","","","","","","", 0.0,"", 0.0, 22.7 -9.0,1,a-degr-i2,2023-24,Salem-Salem High,02580505, 940, 80, 8.5,"","","","","","","","", 16.6, 8.8, 2.9, 3.3 7.6,5,a-degr-i2,2023-24,Salem-Collins Middle,02580305, 625, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Salem-Witchcraft Heights,02580070, 375, 2, 0.5, 0.0, 0.0, 1.4, 1.2, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Salem-Saltonstall School,02580050, 351, 2, 0.6, 0.0, 0.0, 2.2, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Salem-Horace Mann Laboratory,02580030, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Salem-Carlton,02580015, 212, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" 4.4,4.4,a-degr-i2,2023-24,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 488, 9, 1.8,"","","","","", 0.0, 0.0, 0.0, 5.1, 1.8, 1.4, 4.6 8.0,5,a-degr-i2,2023-24,Sandwich-Oak Ridge,02610025, 674, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.4,5,a-degr-i2,2023-24,Sandwich-Sandwich Middle High School,02610505, 910, 3, 0.3,"","","","","","", 0.0, 0.0, 1.7, 0.0, 0.0, 0.7 @@ -1298,45 +3015,45 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.4,5,a-degr-i2,2023-24,Scituate-Wampatuck Elementary,02640020, 308, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Scituate-Gates Middle School,02640305, 614, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2023-24,Scituate-Jenkins Elementary School,02640015, 287, 1, 0.3, 0.0, 0.0, 0.0, 1.6, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Seekonk-George R Martin,02650007, 369, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2023-24,Seekonk-Seekonk High,02650505, 520, 9, 1.7,"","","","","","","","", 5.4, 1.8, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 514, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2023-24,Seekonk-Mildred Aitken School,02650015, 458, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Seekonk-George R Martin,02650007, 369, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Sharon-Cottage Street,02660005, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Sharon-East Elementary,02660010, 427, 1, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Sharon-Heights Elementary,02660015, 469, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Sharon-Sharon Middle,02660305, 807, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.6,5,a-degr-i2,2023-24,Sharon-Sharon High,02660505," 1,132", 14, 1.2,"","","","","","","","", 0.0, 0.0, 0.0, 5.1 +8.0,5,a-degr-i2,2023-24,Sharon-Sharon Middle,02660305, 807, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Sharon-Heights Elementary,02660015, 469, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Sharon-East Elementary,02660010, 427, 1, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605," 1,306", 2, 0.2,"","","","","","","","", 0.6, 0.0, 0.0, 0.0 7.4,5,a-degr-i2,2023-24,Sherborn-Pine Hill,02690010, 339, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Shrewsbury-Shrewsbury High School,02710505," 1,862", 1, 0.1,"","","","","","","","", 0.0, 0.2, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Shrewsbury-Sherwood Middle School,02710305, 917, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Shrewsbury-Spring Street School,02710035, 227, 1, 0.4, 0.0, 0.0, 0.0, 1.5,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Shrewsbury-Oak Middle School,02710030, 941, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Shrewsbury-Walter J. Paton School,02710025, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Shrewsbury-Floral Street School,02710020, 447, 1, 0.2, 0.0, 0.0, 0.0, 0.8,"","","","","","","","" 6.8,5,a-degr-i2,2023-24,Shrewsbury-Major Howard W. Beal School,02710005, 491, 3, 0.6, 0.0, 2.7, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2023-24,Shrewsbury-Calvin Coolidge School,02710015, 235, 1, 0.4, 1.7, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2023-24,Shrewsbury-Floral Street School,02710020, 447, 1, 0.2, 0.0, 0.0, 0.0, 0.8,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Shrewsbury-Walter J. Paton School,02710025, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Shrewsbury-Oak Middle School,02710030, 941, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2023-24,Shrewsbury-Spring Street School,02710035, 227, 1, 0.4, 0.0, 0.0, 0.0, 1.5,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Shrewsbury-Sherwood Middle School,02710305, 917, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" -7.8,5,a-degr-i2,2023-24,Shrewsbury-Shrewsbury High School,02710505," 1,862", 1, 0.1,"","","","","","","","", 0.0, 0.2, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Shutesbury-Shutesbury Elementary,02720005, 82, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Silver Lake-Silver Lake Regional Middle School,07600405, 563, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Silver Lake-Silver Lake Regional High,07600505," 1,015", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.4, 0.0 5.4,5,a-degr-i2,2023-24,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 302, 4, 1.3,"","","","","","", 2.0, 1.5, 4.1, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Somerset-North Elementary,02730008, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Somerset-Somerset Middle School,02730305, 566, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Somerset-South,02730015, 224, 1, 0.4, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Somerset-North Elementary,02730008, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Somerset-Chace Street,02730005, 265, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Somerset-Somerset Middle School,02730305, 566, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 950, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Somerville-Arthur D Healey,02740075, 423, 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,2023-24,Somerville-John F Kennedy,02740083, 382, 2, 0.5, 2.1, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Somerville-Benjamin G Brown,02740015, 180, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Somerville-Next Wave Junior High,02740410, 13, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 481, 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,2023-24,Somerville-E Somerville Community,02740111, 660, 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,2023-24,Somerville-West Somerville Neighborhood,02740115, 317, 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,2023-24,Somerville-Winter Hill Community,02740120, 355, 2, 0.6, 2.1, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -17.4,1,a-degr-i2,2023-24,Somerville-Full Circle High School,02740510, 63, 8, 12.7,"","","","","","","","", 19.0, 21.4, 0.0, 11.1 2.8,2.8,a-degr-i2,2023-24,Somerville-Somerville High,02740505," 1,363", 36, 2.6,"","","","","","","","", 3.7, 3.8, 0.8, 2.2 -6.8,5,a-degr-i2,2023-24,South Hadley-South Hadley High,02780505, 506, 3, 0.6,"","","","","","","","", 1.5, 0.9, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Somerville-Next Wave Junior High,02740410, 13, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Somerville-Winter Hill Community,02740120, 355, 2, 0.6, 2.1, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Somerville-West Somerville Neighborhood,02740115, 317, 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,2023-24,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 481, 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,2023-24,Somerville-John F Kennedy,02740083, 382, 2, 0.5, 2.1, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Somerville-Arthur D Healey,02740075, 423, 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,2023-24,Somerville-Benjamin G Brown,02740015, 180, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,South Hadley-South Hadley High,02780505, 506, 3, 0.6,"","","","","","","","", 1.5, 0.9, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,South Hadley-Plains Elementary,02780015, 109, 0, 0.0, 0.0,"","","","","","","","","","","" 7.4,5,a-degr-i2,2023-24,South Hadley-Mosier,02780020, 360, 1, 0.3,"", 0.0, 1.0, 0.0,"","","","","","","","" 6.4,5,a-degr-i2,2023-24,South Hadley-Michael E. Smith Middle School,02780305, 511, 4, 0.8,"","","","", 1.4, 0.8, 0.0, 0.9,"","","","" @@ -1344,28 +3061,39 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.4,5,a-degr-i2,2023-24,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 979, 3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.4, 0.0, 0.0, 0.0 7.2,5,a-degr-i2,2023-24,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 667, 3, 0.4,"","","","","","","","", 1.1, 0.6, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Southampton-William E Norris,02750005, 359, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2023-24,Southborough-Mary E Finn School,02760008, 149, 1, 0.7, 0.7,"","","","","","","","","","","" -7.2,5,a-degr-i2,2023-24,Southborough-Margaret A Neary,02760020, 285, 1, 0.4,"","","", 0.0, 0.8,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Southborough-P Brent Trottier,02760305, 407, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Southborough-Albert S. Woodward Memorial School,02760050, 247, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2023-24,Southborough-Margaret A Neary,02760020, 285, 1, 0.4,"","","", 0.0, 0.8,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Southborough-Mary E Finn School,02760008, 149, 1, 0.7, 0.7,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Southbridge-Charlton Street,02770005, 267, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Southbridge-Eastford Road,02770010, 139, 0, 0.0, 0.0,"","","","","","","","","","","" -1.8000000000000007,1,a-degr-i2,2023-24,Southbridge-Southbridge High School,02770515, 465, 23, 4.9,"","","","","","","","", 9.0, 4.1, 3.5, 2.8 7.6,5,a-degr-i2,2023-24,Southbridge-Southbridge Middle School,02770315, 428, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" 8.0,5,a-degr-i2,2023-24,Southbridge-West Street,02770020, 328, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Southbridge-Eastford Road,02770010, 139, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Southbridge-Charlton Street,02770005, 267, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" -25.4,1,a-degr-i2,2023-24,Southbridge-Southbridge Academy,02770525, 36, 6, 16.7,"","","","","","","","", 37.5, 14.3, 11.1,"" 7.8,5,a-degr-i2,2023-24,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605," 1,597", 2, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Southern Berkshire-Undermountain,07650035, 192, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 2.8,2.8,a-degr-i2,2023-24,Southern Berkshire-New Marlborough Central,07650018, 39, 1, 2.6, 0.0, 0.0, 11.1,"","","","","","","","","" 5.8,5,a-degr-i2,2023-24,Southern Berkshire-Mt Everett Regional,07650505, 281, 3, 1.1,"","","","","", 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 6.3 7.6,5,a-degr-i2,2023-24,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605," 1,193", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.7, 0.0 -7.0,5,a-degr-i2,2023-24,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 613, 3, 0.5,"","","","","","", 0.0, 1.7, 1.1, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 381, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 613, 3, 0.5,"","","","","","", 0.0, 1.7, 1.1, 0.0, 0.0, 0.0 7.0,5,a-degr-i2,2023-24,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 192, 1, 0.5, 0.0, 1.1,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Spencer-E Brookfield-East Brookfield Elementary,07670008, 114, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -9.0,1,a-degr-i2,2023-24,Spencer-E Brookfield-David Prouty High,07670505, 328, 28, 8.5,"","","","","","","","", 13.4, 7.5, 8.3, 4.4 8.0,5,a-degr-i2,2023-24,Spencer-E Brookfield-Knox Trail Middle School,07670415, 389, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 6.4,5,a-degr-i2,2023-24,Spencer-E Brookfield-Wire Village School,07670040, 362, 3, 0.8, 2.5, 0.0, 1.2, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Springfield Public Day Elementary School,02810005, 35, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2023-24,Springfield-Edward P. Boland School,02810010, 366, 8, 2.2, 3.9, 4.1, 2.3, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Springfield-Thomas M Balliet,02810015, 203, 2, 1.0, 4.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2023-24,Springfield-Samuel Bowles,02810020, 212, 2, 0.9, 0.0, 3.6, 2.1, 0.0, 0.0,"","","","","","","" +2.4000000000000004,2.4,a-degr-i2,2023-24,Springfield-Milton Bradley School,02810023, 290, 8, 2.8, 5.3, 3.8, 3.7, 1.6, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Springfield-Brightwood,02810025, 356, 2, 0.6, 1.7, 1.3, 0.0, 0.0, 0.0,"","","","","","","" +4.0,4.0,a-degr-i2,2023-24,Springfield-Elias Brookings,02810030, 205, 4, 2.0, 0.0, 6.0, 0.0, 2.2, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Springfield-Daniel B Brunton,02810035, 194, 1, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,Springfield-Benjamin Swan Elementary,02810085, 371, 3, 0.8, 0.0, 1.4, 2.5, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +4.4,4.4,a-degr-i2,2023-24,Springfield-Indian Orchard Elementary,02810100, 399, 7, 1.8, 1.9, 2.4, 3.1, 1.2, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Springfield-Kensington International School,02810110, 194, 1, 0.5, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Springfield-Liberty,02810115, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Springfield-Lincoln,02810120, 330, 1, 0.3, 0.0, 0.0, 1.3, 0.0, 0.0,"","","","","","","" @@ -1373,23 +3101,6 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 1.2000000000000002,1.2,a-degr-i2,2023-24,Springfield-Mary M Lynch,02810140, 175, 6, 3.4, 4.4, 0.0, 5.6, 5.7, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Springfield-Mary O Pottenger,02810145, 268, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 1.7,"","","","","","","" 3.8,3.8,a-degr-i2,2023-24,Springfield-Mary M Walsh,02810155, 192, 4, 2.1, 5.6, 2.5, 0.0, 0.0, 2.2,"","","","","","","" -3.4000000000000004,3.4,a-degr-i2,2023-24,Springfield-Sumner Avenue,02810160, 353, 8, 2.3, 3.4, 2.9, 3.2, 1.3, 1.1,"","","","","","","" -6.8,5,a-degr-i2,2023-24,Springfield-Arthur T Talmadge,02810165, 176, 1, 0.6, 0.0, 0.0, 0.0, 2.6, 0.0,"","","","","","","" -2.8,2.8,a-degr-i2,2023-24,Springfield-Alice B Beal Elementary,02810175, 229, 6, 2.6, 8.3, 4.3, 0.0, 0.0, 0.0,"","","","","","","" -4.2,4.2,a-degr-i2,2023-24,Springfield-Warner,02810180, 160, 3, 1.9, 0.0, 3.8, 5.6, 0.0, 0.0,"","","","","","","" -3.0,3.0,a-degr-i2,2023-24,Springfield-Washington,02810185, 283, 7, 2.5, 2.8, 2.9, 4.9, 0.0, 2.3,"","","","","","","" -4.8,4.8,a-degr-i2,2023-24,Springfield-White Street,02810190, 322, 5, 1.6, 4.5, 3.1, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,Springfield-German Gerena Community School,02810195, 455, 3, 0.7, 2.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 609, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0 -1.7999999999999998,1.8,a-degr-i2,2023-24,Springfield-Springfield International Academy at Johnson,02810215, 32, 1, 3.1,"","", 0.0, 8.3, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2023-24,Springfield-Kiley Prep,02810315, 263, 1, 0.4,"","","","","", 0.0, 0.0, 1.2,"","","","" --0.40000000000000036,1,a-degr-i2,2023-24,Springfield-Kiley Academy,02810316, 287, 12, 4.2,"","","","","", 8.6, 2.0, 2.8,"","","","" -7.4,5,a-degr-i2,2023-24,Springfield-Springfield Legacy Academy,02810317, 355, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" -5.4,5,a-degr-i2,2023-24,Springfield-Emergence Academy,02810318, 231, 3, 1.3,"","","","","", 0.0, 4.2, 0.0, 2.4, 0.0,"","" -6.0,5,a-degr-i2,2023-24,Springfield-John J Duggan Academy,02810320, 831, 8, 1.0,"","","","","", 2.2, 0.6, 0.6, 0.0, 1.3, 1.3, 0.0 -8.0,5,a-degr-i2,2023-24,Springfield-Forest Park Middle,02810325, 284, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2023-24,Springfield-John F Kennedy Middle,02810328, 367, 2, 0.5,"","","","","", 0.0, 0.9, 0.7,"","","","" -8.0,5,a-degr-i2,2023-24,Springfield-Springfield Realization Academy,02810335, 199, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Springfield-Springfield Public Day Middle School,02810345, 61, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2023-24,Springfield-STEM Middle Academy,02810350, 287, 2, 0.7,"","","","","", 0.0, 1.0, 1.0,"","","","" 8.0,5,a-degr-i2,2023-24,Springfield-South End Middle School,02810355, 189, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" @@ -1403,14 +3114,16 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 3.8,3.8,a-degr-i2,2023-24,Springfield-High School Of Commerce,02810510," 1,060", 22, 2.1,"","","","","","","","", 4.0, 1.9, 0.6, 2.1 -14.2,1,a-degr-i2,2023-24,Springfield-Springfield High School of Science and Technology,02810530," 1,097", 122, 11.1,"","","","","","","","", 18.9, 12.6, 7.1, 0.0 -10.0,1,a-degr-i2,2023-24,Springfield-Springfield Public Day High School,02810550, 78, 7, 9.0,"","","","","","","","", 7.5, 25.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Springfield-Springfield Public Day Elementary School,02810005, 35, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -3.5999999999999996,3.6,a-degr-i2,2023-24,Springfield-Edward P. Boland School,02810010, 366, 8, 2.2, 3.9, 4.1, 2.3, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2023-24,Springfield-Thomas M Balliet,02810015, 203, 2, 1.0, 4.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2023-24,Springfield-Samuel Bowles,02810020, 212, 2, 0.9, 0.0, 3.6, 2.1, 0.0, 0.0,"","","","","","","" -2.4000000000000004,2.4,a-degr-i2,2023-24,Springfield-Milton Bradley School,02810023, 290, 8, 2.8, 5.3, 3.8, 3.7, 1.6, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2023-24,Springfield-Brightwood,02810025, 356, 2, 0.6, 1.7, 1.3, 0.0, 0.0, 0.0,"","","","","","","" -4.0,4.0,a-degr-i2,2023-24,Springfield-Elias Brookings,02810030, 205, 4, 2.0, 0.0, 6.0, 0.0, 2.2, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,Springfield-Daniel B Brunton,02810035, 194, 1, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Springfield-Sumner Avenue,02810160, 353, 8, 2.3, 3.4, 2.9, 3.2, 1.3, 1.1,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Springfield-Arthur T Talmadge,02810165, 176, 1, 0.6, 0.0, 0.0, 0.0, 2.6, 0.0,"","","","","","","" +2.8,2.8,a-degr-i2,2023-24,Springfield-Alice B Beal Elementary,02810175, 229, 6, 2.6, 8.3, 4.3, 0.0, 0.0, 0.0,"","","","","","","" +4.2,4.2,a-degr-i2,2023-24,Springfield-Warner,02810180, 160, 3, 1.9, 0.0, 3.8, 5.6, 0.0, 0.0,"","","","","","","" +3.0,3.0,a-degr-i2,2023-24,Springfield-Washington,02810185, 283, 7, 2.5, 2.8, 2.9, 4.9, 0.0, 2.3,"","","","","","","" +4.8,4.8,a-degr-i2,2023-24,Springfield-White Street,02810190, 322, 5, 1.6, 4.5, 3.1, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Springfield-German Gerena Community School,02810195, 455, 3, 0.7, 2.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 609, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0 +1.7999999999999998,1.8,a-degr-i2,2023-24,Springfield-Springfield International Academy at Johnson,02810215, 32, 1, 3.1,"","", 0.0, 8.3, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Springfield-Kiley Prep,02810315, 263, 1, 0.4,"","","","","", 0.0, 0.0, 1.2,"","","","" -3.0,1,a-degr-i2,2023-24,Springfield-William N. DeBerry,02810045, 308, 17, 5.5, 12.0, 7.7, 7.6, 0.0, 0.0,"","","","","","","" 3.2,3.2,a-degr-i2,2023-24,Springfield-Hiram L Dorman,02810050, 205, 5, 2.4, 4.8, 4.5, 0.0, 2.4, 0.0,"","","","","","","" 2.2,2.2,a-degr-i2,2023-24,Springfield-Rebecca M Johnson,02810055, 441, 13, 2.9, 4.3, 4.7, 3.5, 0.0, 2.1,"","","","","","","" @@ -1418,276 +3131,275 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 3.8,3.8,a-degr-i2,2023-24,Springfield-Glickman Elementary,02810068, 237, 5, 2.1, 5.9, 2.0, 2.3, 1.8, 0.0,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2023-24,Springfield-Frank H Freedman,02810075, 183, 5, 2.7, 8.6, 2.8, 2.6, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Springfield-Frederick Harris,02810080, 384, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2023-24,Springfield-Benjamin Swan Elementary,02810085, 371, 3, 0.8, 0.0, 1.4, 2.5, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -4.4,4.4,a-degr-i2,2023-24,Springfield-Indian Orchard Elementary,02810100, 399, 7, 1.8, 1.9, 2.4, 3.1, 1.2, 0.0,"","","","","","","" -20.6,1,a-degr-i2,2023-24,Springfield-Liberty Preparatory Academy,02810560, 7, 1, 14.3,"","","","","","","","","","","","" -55.4,1,a-degr-i2,2023-24,Springfield-Springfield High School,02810570, 221, 70, 31.7,"","","","","","","","", 38.0, 18.8, 9.3, 42.7 0.7999999999999998,1,a-degr-i2,2023-24,Springfield-Gateway to College at Holyoke Community College,02810575, 28, 1, 3.6,"","","","","","","","","","", 9.1, 0.0 +-0.40000000000000036,1,a-degr-i2,2023-24,Springfield-Kiley Academy,02810316, 287, 12, 4.2,"","","","","", 8.6, 2.0, 2.8,"","","","" +7.4,5,a-degr-i2,2023-24,Springfield-Springfield Legacy Academy,02810317, 355, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" +5.4,5,a-degr-i2,2023-24,Springfield-Emergence Academy,02810318, 231, 3, 1.3,"","","","","", 0.0, 4.2, 0.0, 2.4, 0.0,"","" +6.0,5,a-degr-i2,2023-24,Springfield-John J Duggan Academy,02810320, 831, 8, 1.0,"","","","","", 2.2, 0.6, 0.6, 0.0, 1.3, 1.3, 0.0 +8.0,5,a-degr-i2,2023-24,Springfield-Forest Park Middle,02810325, 284, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Springfield-John F Kennedy Middle,02810328, 367, 2, 0.5,"","","","","", 0.0, 0.9, 0.7,"","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Springfield Realization Academy,02810335, 199, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -24.0,1,a-degr-i2,2023-24,Springfield-Gateway to College at Springfield Technical Community College,02810580, 25, 4, 16.0,"","","","","","","","","","", 9.1, 18.2 7.0,5,a-degr-i2,2023-24,Springfield-Roger L. Putnam Vocational Technical Academy,02810620," 1,383", 7, 0.5,"","","","","","","","", 0.8, 1.1, 0.0, 0.0 2.4000000000000004,2.4,a-degr-i2,2023-24,Springfield-Springfield International Academy at Sci-Tech,02810700, 72, 2, 2.8,"","","","","","","","", 0.0, 6.3, 0.0,"" -9.2,1,a-degr-i2,2023-24,Springfield-The Springfield Virtual School,02810705, 304, 26, 8.6,"", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.9, 24.6, 26.7, 0.0, 14.3 4.4,4.4,a-degr-i2,2023-24,Springfield International Charter (District)-Springfield International Charter School,04410505," 1,387", 25, 1.8, 3.8, 1.9, 0.8, 1.7, 1.8, 0.7, 1.6, 0.0, 5.0, 2.1, 1.9, 0.0 6.6,5,a-degr-i2,2023-24,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 433, 3, 0.7, 1.9, 1.9, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0,"","","","" -7.8,5,a-degr-i2,2023-24,Stoneham-Stoneham Central Middle School,02840405, 700, 1, 0.1,"","","","", 0.6, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Stoneham-Stoneham High,02840505, 582, 3, 0.5,"","","","","","","","", 0.0, 0.6, 0.0, 1.3 7.2,5,a-degr-i2,2023-24,Stoneham-South,02840030, 256, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2023-24,Stoneham-Stoneham Central Middle School,02840405, 700, 1, 0.1,"","","","", 0.6, 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Stoneham-Robin Hood,02840025, 285, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Stoneham-Colonial Park,02840005, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Stoughton-O'Donnell Middle School,02850405, 833, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2023-24,Stoughton-Helen Hansen Elementary,02850010, 217, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --4.6,1,a-degr-i2,2023-24,Stoughton-Stoughton High,02850505," 1,094", 69, 6.3,"","","","","","","","", 13.4, 6.5, 3.7, 1.5 +8.0,5,a-degr-i2,2023-24,Stoughton-Joseph H Gibbons,02850025, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2023-24,Stoughton-Joseph R Dawe Jr Elementary,02850014, 320, 2, 0.6, 1.4, 0.0, 0.0, 1.7, 0.0,"","","","","","","" +-4.6,1,a-degr-i2,2023-24,Stoughton-Stoughton High,02850505," 1,094", 69, 6.3,"","","","","","","","", 13.4, 6.5, 3.7, 1.5 +8.0,5,a-degr-i2,2023-24,Stoughton-O'Donnell Middle School,02850405, 833, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Stoughton-South Elementary,02850015, 246, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2023-24,Stoughton-Richard L. Wilkins Elementary School,02850020, 262, 3, 1.1, 1.3, 3.2, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Stoughton-Joseph H Gibbons,02850025, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Stoughton-Helen Hansen Elementary,02850010, 217, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Sturbridge-Burgess Elementary,02870005, 717, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 826, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Sudbury-Peter Noyes,02880030, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Sudbury-Ephraim Curtis Middle,02880305, 828, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2023-24,Sudbury-Josiah Haynes,02880010, 313, 1, 0.3, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Sudbury-Israel Loring School,02880015, 357, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Sudbury-General John Nixon Elementary,02880025, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Sudbury-Peter Noyes,02880030, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Sunderland-Sunderland Elementary,02890005, 138, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.4,5,a-degr-i2,2023-24,Sutton-Sutton High School,02900510, 363, 1, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 6.6,5,a-degr-i2,2023-24,Sutton-Sutton Middle School,02900305, 295, 2, 0.7,"","","","","", 1.0, 1.1, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Sutton-Sutton Elementary,02900005, 313, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Sutton-Sutton Early Learning,02900003, 193, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.0,5,a-degr-i2,2023-24,Swampscott-Swampscott High,02910505, 662, 3, 0.5,"","","","","","","","", 0.0, 0.6, 0.0, 1.3 -7.2,5,a-degr-i2,2023-24,Swampscott-Hadley,02910010, 263, 1, 0.4, 0.0, 0.0, 1.7, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Swampscott-Stanley,02910020, 163, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2023-24,Swampscott-Swampscott Middle,02910305, 627, 1, 0.2,"","","","", 0.7, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Swampscott-Stanley,02910020, 163, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.8,5,a-degr-i2,2023-24,Swampscott-Clarke,02910005, 168, 1, 0.6, 2.3, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Swansea-Elizabeth S Brown,02920006, 274, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Swampscott-Hadley,02910010, 263, 1, 0.4, 0.0, 0.0, 1.7, 0.0,"","","","","","","","" +1.4000000000000004,1.4,a-degr-i2,2023-24,Swansea-Joseph Case High,02920505, 569, 19, 3.3,"","","","","","","","", 7.4, 5.1, 0.8, 0.0 8.0,5,a-degr-i2,2023-24,Swansea-Joseph G Luther,02920020, 179, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Swansea-Mark G Hoyle Elementary,02920017, 138, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Swansea-Gardner,02920015, 181, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -1.4000000000000004,1.4,a-degr-i2,2023-24,Swansea-Joseph Case High,02920505, 569, 19, 3.3,"","","","","","","","", 7.4, 5.1, 0.8, 0.0 +8.0,5,a-degr-i2,2023-24,Swansea-Elizabeth S Brown,02920006, 274, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Swansea-Joseph Case Jr High,02920305, 495, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" -22.0,1,a-degr-i2,2023-24,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900," 2,858", 428, 15.0, 0.0, 2.2, 1.2, 1.0, 0.7, 2.4, 1.8, 5.2, 38.2, 25.7, 16.9, 11.6 7.6,5,a-degr-i2,2023-24,Tantasqua-Tantasqua Regional Vocational,07700605, 536, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.8, 0.0 8.0,5,a-degr-i2,2023-24,Tantasqua-Tantasqua Regional Sr High,07700505, 652, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.2,5,a-degr-i2,2023-24,Tantasqua-Tantasqua Regional Jr High,07700405, 560, 2, 0.4,"","","","","","", 0.3, 0.4,"","","","" -7.4,5,a-degr-i2,2023-24,Taunton-Joseph H Martin,02930042, 648, 2, 0.3,"","","","", 0.0, 0.0, 0.9,"","","","","" -8.0,5,a-degr-i2,2023-24,Taunton-H H Galligan,02930057, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2023-24,Taunton-John F Parker Middle,02930305, 510, 1, 0.2,"","","","", 0.0, 0.6, 0.0,"","","","","" -7.4,5,a-degr-i2,2023-24,Taunton-Benjamin Friedman Middle,02930315, 692, 2, 0.3,"","","","", 0.0, 0.8, 0.0,"","","","","" -8.0,5,a-degr-i2,2023-24,Taunton-Taunton High,02930505," 2,675", 0, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0 --20.2,1,a-degr-i2,2023-24,Taunton-Taunton Alternative High School,02930525, 85, 12, 14.1,"","","","","","","","","","","", 15.0 -0.5999999999999996,1,a-degr-i2,2023-24,Taunton-Taunton Public Virtual Academy (TPVA),02930705, 47, 2, 4.3,"","","","","","","","", 0.0, 0.0, 5.9, 16.7 +7.4,5,a-degr-i2,2023-24,Taunton-Benjamin Friedman Middle,02930315, 692, 2, 0.3,"","","","", 0.0, 0.8, 0.0,"","","","","" +7.6,5,a-degr-i2,2023-24,Taunton-John F Parker Middle,02930305, 510, 1, 0.2,"","","","", 0.0, 0.6, 0.0,"","","","","" +8.0,5,a-degr-i2,2023-24,Taunton-H H Galligan,02930057, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Taunton-Joseph H Martin,02930042, 648, 2, 0.3,"","","","", 0.0, 0.0, 0.9,"","","","","" 8.0,5,a-degr-i2,2023-24,Taunton-Elizabeth Pole,02930027, 490, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Taunton-James L. Mulcahey Elementary School,02930015, 661, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Taunton-Taunton High,02930505," 2,675", 0, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0 +-20.2,1,a-degr-i2,2023-24,Taunton-Taunton Alternative High School,02930525, 85, 12, 14.1,"","","","","","","","","","","", 15.0 8.0,5,a-degr-i2,2023-24,Taunton-Edmund Hatch Bennett,02930007, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Taunton-Joseph C Chamberlain,02930008, 363, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2023-24,Taunton-East Taunton Elementary,02930010, 428, 1, 0.2, 0.0, 0.0, 0.0, 1.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-L F Dewing,02950001, 162, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-Heath-Brook,02950010, 140, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-John F. Ryan,02950023, 497, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Tewksbury-Tewksbury Memorial High,02950505, 715, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Tewksbury-John W. Wynn Middle,02950305, 520, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Tewksbury-John F. Ryan,02950023, 497, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Tewksbury-Heath-Brook,02950010, 140, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Tewksbury-L F Dewing,02950001, 162, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Tewksbury-Center Elementary School,02950030, 767, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2023-24,Tisbury-Tisbury Elementary,02960005, 234, 1, 0.4, 0.0, 0.0, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Topsfield-Steward Elementary,02980010, 244, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Topsfield-Proctor Elementary,02980005, 254, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 7.8,5,a-degr-i2,2023-24,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 964, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 -1.5999999999999996,1.6,a-degr-i2,2023-24,Triton-Triton Regional High School,07730505, 566, 18, 3.2,"","","","","","","","", 4.8, 0.7, 5.7, 1.5 8.0,5,a-degr-i2,2023-24,Triton-Triton Regional Middle School,07730405, 314, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Triton-Salisbury Elementary,07730015, 308, 1, 0.3, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +1.5999999999999996,1.6,a-degr-i2,2023-24,Triton-Triton Regional High School,07730505, 566, 18, 3.2,"","","","","","","","", 4.8, 0.7, 5.7, 1.5 8.0,5,a-degr-i2,2023-24,Triton-Pine Grove,07730025, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Triton-Newbury Elementary,07730020, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2023-24,Triton-Salisbury Elementary,07730015, 308, 1, 0.3, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Truro-Truro Central,03000005, 57, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Tyngsborough-Tyngsborough Elementary,03010020, 585, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Tyngsborough-Tyngsborough Middle,03010305, 369, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2023-24,Tyngsborough-Tyngsborough High School,03010505, 420, 2, 0.5,"","","","","","","","", 0.0, 0.0, 0.0, 2.1 6.8,5,a-degr-i2,2023-24,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 166, 1, 0.6,"","","","","", 0.0, 1.6, 0.0,"","","","" 3.8,3.8,a-degr-i2,2023-24,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 467, 10, 2.1, 4.5, 1.6, 3.0, 1.5, 0.0, 3.3, 2.3, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Up-Island Regional-Chilmark Elementary,07740010, 63, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Up-Island Regional-West Tisbury Elementary,07740020, 289, 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,2023-24,Up-Island Regional-Chilmark Elementary,07740010, 63, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2023-24,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 826, 1, 0.1,"","","","","","","","", 0.4, 0.0, 0.0, 0.0 -50.6,1,a-degr-i2,2023-24,Uxbridge-Gateway to College,03040515, 41, 12, 29.3,"","","","","","","","","","", 33.3, 24.0 3.8,3.8,a-degr-i2,2023-24,Uxbridge-Uxbridge High,03040505, 582, 12, 2.1,"","","","","","","", 0.0, 2.5, 6.3, 1.8, 0.0 8.0,5,a-degr-i2,2023-24,Uxbridge-Taft Early Learning Center,03040005, 336, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.6,5,a-degr-i2,2023-24,Uxbridge-Whitin Intermediate,03040405, 476, 1, 0.2,"","","", 0.9, 0.0, 0.0, 0.0,"","","","","" 5.8,5,a-degr-i2,2023-24,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 615, 7, 1.1,"","","","", 2.0, 1.9, 0.0, 0.9, 0.0, 2.1,"","" -8.0,5,a-degr-i2,2023-24,Wachusett-Central Tree Middle,07750310, 380, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2023-24,Wachusett-Davis Hill Elementary,07750018, 397, 2, 0.5, 0.0, 1.3, 0.0, 0.0, 1.1,"","","","","","","" -7.8,5,a-degr-i2,2023-24,Wachusett-Wachusett Regional High,07750505," 1,839", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 -7.2,5,a-degr-i2,2023-24,Wachusett-Chocksett Middle School,07750315, 273, 1, 0.4,"","","","", 0.0, 0.0, 1.7, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Naquag Elementary School,07750005, 256, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2023-24,Wachusett-Dawson,07750020, 417, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Wachusett-Mountview Middle,07750305, 751, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Wachusett-Glenwood Elementary School,07750060, 348, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Wachusett-Thomas Prince,07750045, 312, 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,2023-24,Wachusett-Davis Hill Elementary,07750018, 397, 2, 0.5, 0.0, 1.3, 0.0, 0.0, 1.1,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Wachusett-Houghton Elementary,07750027, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Wachusett-Naquag Elementary School,07750005, 256, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2023-24,Wachusett-Leroy E.Mayo,07750032, 407, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Wachusett-Paxton Center,07750040, 393, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Wakefield-Walton,03050040, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Wakefield-Greenwood,03050020, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2023-24,Wakefield-Woodville School,03050015, 329, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Thomas Prince,07750045, 312, 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,2023-24,Wachusett-Glenwood Elementary School,07750060, 348, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Mountview Middle,07750305, 751, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Central Tree Middle,07750310, 380, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Wachusett-Chocksett Middle School,07750315, 273, 1, 0.4,"","","","", 0.0, 0.0, 1.7, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Wachusett-Wachusett Regional High,07750505," 1,839", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 8.0,5,a-degr-i2,2023-24,Wakefield-Dolbeare,03050005, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2023-24,Wakefield-Wakefield Memorial High,03050505, 840, 3, 0.4,"","","","","","","","", 0.9, 0.5, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Wakefield-Greenwood,03050020, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Wakefield-Walton,03050040, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Wakefield-Galvin Middle School,03050310," 1,052", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Wakefield-Wakefield Memorial High,03050505, 840, 3, 0.4,"","","","","","","","", 0.9, 0.5, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Wakefield-Woodville School,03050015, 329, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" 5.4,5,a-degr-i2,2023-24,Wales-Wales Elementary,03060005, 76, 1, 1.3, 6.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Walpole-Eleanor N Johnson Middle,03070310, 415, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2023-24,Walpole-Walpole High,03070505, 940, 6, 0.6,"","","","","","","","", 0.0, 0.8, 0.8, 0.8 -8.0,5,a-degr-i2,2023-24,Walpole-Old Post Road,03070018, 396, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Walpole-Fisher,03070015, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Walpole-Boyden,03070010, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Walpole-Elm Street School,03070005, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Boyden,03070010, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Fisher,03070015, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Old Post Road,03070018, 396, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Walpole-Bird Middle,03070305, 400, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,Waltham-Thomas R Plympton Elementary School,03080050, 297, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.5,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Waltham-James Fitzgerald Elementary School,03080060, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -3.2,3.2,a-degr-i2,2023-24,Waltham-Waltham Sr High,03080505," 1,805", 44, 2.4,"","","","","","","","", 5.5, 1.6, 1.5, 1.4 -8.0,5,a-degr-i2,2023-24,Waltham-Henry Whittemore Elementary School,03080065, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Waltham-John F Kennedy Middle,03080404, 628, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,Waltham-John W. McDevitt Middle School,03080415, 604, 2, 0.3,"","","","","", 1.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Waltham-Dual Language School,03080001, 178, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2023-24,Waltham-William F. Stanley Elementary School,03080005, 262, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2023-24,Waltham-Northeast Elementary School,03080040, 373, 4, 1.1, 3.5, 0.0, 0.0, 1.2, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2023-24,Waltham-Douglas MacArthur Elementary School,03080032, 407, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -2.0,2.0,a-degr-i2,2023-24,Ware-Ware Junior/Senior High School,03090505, 464, 14, 3.0,"","","","","","", 0.0, 0.0, 15.6, 3.0, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,Waltham-William F. Stanley Elementary School,03080005, 262, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Waltham-Henry Whittemore Elementary School,03080065, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Waltham-James Fitzgerald Elementary School,03080060, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2023-24,Waltham-Waltham Sr High,03080505," 1,805", 44, 2.4,"","","","","","","","", 5.5, 1.6, 1.5, 1.4 +7.4,5,a-degr-i2,2023-24,Waltham-John W. McDevitt Middle School,03080415, 604, 2, 0.3,"","","","","", 1.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Waltham-John F Kennedy Middle,03080404, 628, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Waltham-Thomas R Plympton Elementary School,03080050, 297, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.5,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Ware-Ware Middle School,03090305, 264, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 6.2,5,a-degr-i2,2023-24,Ware-Stanley M Koziol Elementary School,03090020, 227, 2, 0.9, 1.4, 1.3, 0.0,"","","","","","","","","" +2.0,2.0,a-degr-i2,2023-24,Ware-Ware Junior/Senior High School,03090505, 464, 14, 3.0,"","","","","","", 0.0, 0.0, 15.6, 3.0, 0.0, 0.0 -9.8,1,a-degr-i2,2023-24,Wareham-Wareham Senior High,03100505, 571, 51, 8.9,"","","","","","","", 11.6, 14.9, 9.3, 3.8, 0.0 --45.4,1,a-degr-i2,2023-24,Wareham-Wareham Cooperative Alternative School,03100315, 30, 8, 26.7,"","","","","","","","", 28.6, 50.0, 12.5, 14.3 7.6,5,a-degr-i2,2023-24,Wareham-Wareham Middle,03100305, 404, 1, 0.2,"","","","", 0.0, 0.0, 0.8,"","","","","" 6.6,5,a-degr-i2,2023-24,Wareham-Wareham Elementary School,03100017, 681, 5, 0.7, 2.2, 0.6, 0.0, 0.0,"","","","","","","","" +-45.4,1,a-degr-i2,2023-24,Wareham-Wareham Cooperative Alternative School,03100315, 30, 8, 26.7,"","","","","","","","", 28.6, 50.0, 12.5, 14.3 8.0,5,a-degr-i2,2023-24,Warwick-Warwick Community School,03120020, 23, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" -6.2,5,a-degr-i2,2023-24,Watertown-Watertown High,03140505, 756, 7, 0.9,"","","","","","","","", 0.6, 0.5, 1.0, 1.7 -7.4,5,a-degr-i2,2023-24,Watertown-James Russell Lowell,03140025, 299, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Watertown-Hosmer,03140020, 486, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Watertown-Cunniff,03140015, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Watertown-Hosmer,03140020, 486, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2023-24,Watertown-Watertown High,03140505, 756, 7, 0.9,"","","","","","","","", 0.6, 0.5, 1.0, 1.7 8.0,5,a-degr-i2,2023-24,Watertown-Watertown Middle,03140305, 551, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Watertown-James Russell Lowell,03140025, 299, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Wayland-Wayland Middle School,03150305, 667, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Wayland-Loker School,03150020, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wayland-Wayland High School,03150505, 820, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Wayland-Happy Hollow School,03150015, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wayland-Loker School,03150020, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Wayland-Claypit Hill School,03150005, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Wayland-Wayland High School,03150505, 820, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -7.6,5,a-degr-i2,2023-24,Webster-Park Avenue Elementary,03160015, 558, 1, 0.2, 0.0, 0.0, 0.7, 0.0,"","","","","","","","" -6.6,5,a-degr-i2,2023-24,Webster-Webster Middle School,03160315, 592, 4, 0.7,"","","","", 0.0, 0.0, 0.6, 2.0,"","","","" -2.4000000000000004,1,a-degr-i2,2023-24,Webster-Bartlett High School,03160505, 367, 19, 5.2,"","","","","","","","", 9.2, 8.0, 0.0, 1.6 +6.6,5,a-degr-i2,2023-24,Webster-Webster Middle School,03160315, 592, 4, 0.7,"","","","", 0.0, 0.0, 0.6, 2.0,"","","","" +7.6,5,a-degr-i2,2023-24,Webster-Park Avenue Elementary,03160015, 558, 1, 0.2, 0.0, 0.0, 0.7, 0.0,"","","","","","","","" 6.8,5,a-degr-i2,2023-24,Wellesley-Wellesley Sr High,03170505," 1,349", 8, 0.6,"","","","","","","","", 0.3, 0.6, 0.0, 1.4 -8.0,5,a-degr-i2,2023-24,Wellesley-Ernest F Upham,03170050, 120, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Wellesley-Wellesley Middle,03170305, 919, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Ernest F Upham,03170050, 120, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Wellesley-Sprague Elementary School,03170048, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Wellesley-Schofield,03170045, 267, 1, 0.4, 0.0, 0.0, 1.7, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Wellesley-Katharine Lee Bates,03170005, 215, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Wellesley-Joseph E Fiske,03170015, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Wellesley-John D Hardy,03170020, 188, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Wellesley-Hunnewell,03170025, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-John D Hardy,03170020, 188, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Joseph E Fiske,03170015, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Katharine Lee Bates,03170005, 215, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Wellfleet-Wellfleet Elementary,03180005, 84, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,West Boylston-Major Edwards Elementary,03220005, 350, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,West Boylston-West Boylston Junior/Senior High,03220505, 447, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,West Boylston-Major Edwards Elementary,03220005, 350, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,West Bridgewater-West Bridgewater Junior/Senior,03230505, 619, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2023-24,West Bridgewater-Rose L Macdonald,03230003, 326, 2, 0.6, 1.9, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,West Bridgewater-Howard School,03230305, 309, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,West Bridgewater-West Bridgewater Junior/Senior,03230505, 619, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -4.4,4.4,a-degr-i2,2023-24,West Springfield-West Springfield High,03320505," 1,189", 21, 1.8,"","","","","","","","", 5.7, 0.3, 0.0, 0.4 -7.2,5,a-degr-i2,2023-24,West Springfield-Tatham,03320040, 262, 1, 0.4, 0.0, 2.6, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2023-24,West Springfield-Mittineague,03320030, 140, 1, 0.7, 0.0, 0.0, 0.0, 3.3, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,West Springfield-Memorial,03320025, 207, 1, 0.5, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2023-24,West Springfield-John R Fausey,03320010, 445, 2, 0.4, 1.1, 1.2, 0.0, 0.0, 0.0,"","","","","","","" 5.6,5,a-degr-i2,2023-24,West Springfield-Philip G Coburn,03320007, 408, 5, 1.2, 3.8, 2.3, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,West Springfield-John R Fausey,03320010, 445, 2, 0.4, 1.1, 1.2, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,West Springfield-Memorial,03320025, 207, 1, 0.5, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,West Springfield-Mittineague,03320030, 140, 1, 0.7, 0.0, 0.0, 0.0, 3.3, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,West Springfield-West Springfield Middle,03320305, 926, 4, 0.4,"","","","","", 0.0, 0.6, 0.6,"","","","" -6.8,5,a-degr-i2,2023-24,Westborough-Westborough High,03210505," 1,192", 7, 0.6,"","","","","","","","", 0.0, 0.0, 1.2, 1.0 -7.6,5,a-degr-i2,2023-24,Westborough-Sarah W Gibbons Middle,03210305, 601, 1, 0.2,"","","","","","", 0.3, 0.0,"","","","" -7.8,5,a-degr-i2,2023-24,Westborough-Mill Pond School,03210045, 876, 1, 0.1,"","","", 0.0, 0.0, 0.3,"","","","","","" -8.0,5,a-degr-i2,2023-24,Westborough-Elsie A Hastings Elementary,03210025, 258, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Westborough-Annie E Fales,03210010, 251, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +4.4,4.4,a-degr-i2,2023-24,West Springfield-West Springfield High,03320505," 1,189", 21, 1.8,"","","","","","","","", 5.7, 0.3, 0.0, 0.4 +7.2,5,a-degr-i2,2023-24,West Springfield-Tatham,03320040, 262, 1, 0.4, 0.0, 2.6, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Westborough-J Harding Armstrong,03210005, 299, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" --5.0,1,a-degr-i2,2023-24,Westfield-Westfield Virtual School,03250705, 62, 4, 6.5,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 26.7 +8.0,5,a-degr-i2,2023-24,Westborough-Annie E Fales,03210010, 251, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westborough-Elsie A Hastings Elementary,03210025, 258, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Westborough-Mill Pond School,03210045, 876, 1, 0.1,"","","", 0.0, 0.0, 0.3,"","","","","","" +7.6,5,a-degr-i2,2023-24,Westborough-Sarah W Gibbons Middle,03210305, 601, 1, 0.2,"","","","","","", 0.3, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Westborough-Westborough High,03210505," 1,192", 7, 0.6,"","","","","","","","", 0.0, 0.0, 1.2, 1.0 8.0,5,a-degr-i2,2023-24,Westfield-Munger Hill,03250033, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2023-24,Westfield-Highland,03250025, 271, 1, 0.4, 1.6, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Westfield-Abner Gibbs,03250020, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2023-24,Westfield-Franklin Ave,03250015, 144, 1, 0.7, 3.6, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Westfield-Westfield Technical Academy,03250605, 548, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -7.2,5,a-degr-i2,2023-24,Westfield-Southampton Road,03250040, 227, 1, 0.4, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" -7.8,5,a-degr-i2,2023-24,Westfield-Westfield Intermediate School,03250075, 684, 1, 0.1,"","","","", 0.0, 0.3,"","","","","","" -7.8,5,a-degr-i2,2023-24,Westfield-Westfield Middle School,03250310, 706, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" 7.4,5,a-degr-i2,2023-24,Westfield-Westfield High,03250505, 994, 3, 0.3,"","","","","","","","", 0.0, 0.4, 0.0, 0.8 +7.2,5,a-degr-i2,2023-24,Westfield-Southampton Road,03250040, 227, 1, 0.4, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" +-5.0,1,a-degr-i2,2023-24,Westfield-Westfield Virtual School,03250705, 62, 4, 6.5,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 26.7 8.0,5,a-degr-i2,2023-24,Westfield-Paper Mill,03250036, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.0,5,a-degr-i2,2023-24,Westford-Nabnasset,03260015, 206, 1, 0.5, 0.0, 1.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Westfield-Westfield Middle School,03250310, 706, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" +7.8,5,a-degr-i2,2023-24,Westfield-Westfield Intermediate School,03250075, 684, 1, 0.1,"","","","", 0.0, 0.3,"","","","","","" +8.0,5,a-degr-i2,2023-24,Westfield-Westfield Technical Academy,03250605, 548, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Westford-Abbot Elementary,03260004, 372, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Westford-Westford Academy,03260505," 1,443", 4, 0.3,"","","","","","","","", 0.8, 0.0, 0.0, 0.3 -8.0,5,a-degr-i2,2023-24,Westford-Stony Brook School,03260330, 586, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Westford-Blanchard Middle,03260310, 535, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2023-24,Westford-Rita E. Miller Elementary School,03260055, 173, 1, 0.6, 1.2, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Westford-John A. Crisafulli Elementary School,03260045, 330, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Westford-Col John Robinson,03260025, 221, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Westford-Day Elementary,03260007, 296, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westford-Col John Robinson,03260025, 221, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westford-John A. Crisafulli Elementary School,03260045, 330, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Westford-Rita E. Miller Elementary School,03260055, 173, 1, 0.6, 1.2, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westford-Blanchard Middle,03260310, 535, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Westford-Stony Brook School,03260330, 586, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Westford-Westford Academy,03260505," 1,443", 4, 0.3,"","","","","","","","", 0.8, 0.0, 0.0, 0.3 +7.0,5,a-degr-i2,2023-24,Westford-Nabnasset,03260015, 206, 1, 0.5, 0.0, 1.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Westhampton-Westhampton Elementary School,03270005, 81, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.4,5,a-degr-i2,2023-24,Weston-Weston High,03300505, 662, 5, 0.8,"","","","","","","","", 0.6, 0.6, 1.2, 0.6 8.0,5,a-degr-i2,2023-24,Weston-Country,03300010, 245, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2023-24,Weston-Weston Middle,03300305, 428, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2023-24,Weston-Woodland,03300015, 246, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Weston-Field Elementary School,03300012, 304, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2023-24,Westport-Westport Elementary,03310030, 448, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Weston-Woodland,03300015, 246, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Weston-Weston Middle,03300305, 428, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2023-24,Weston-Weston High,03300505, 662, 5, 0.8,"","","","","","","","", 0.6, 0.6, 1.2, 0.6 6.8,5,a-degr-i2,2023-24,Westport-Westport Middle-High School,03310515, 878, 5, 0.6,"","","","", 0.0, 0.8, 0.0, 0.0, 0.9, 1.2, 0.0, 2.3 -7.2,5,a-degr-i2,2023-24,Westwood-Downey,03350012, 262, 1, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Westport-Westport Elementary,03310030, 448, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" 7.8,5,a-degr-i2,2023-24,Westwood-Westwood High,03350505, 874, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Westwood-William E Sheehan,03350025, 246, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Westwood-Downey,03350012, 262, 1, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Westwood-Martha Jones,03350017, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Westwood-E W Thurston Middle,03350305, 661, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Westwood-William E Sheehan,03350025, 246, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Westwood-Pine Hill Elementary School,03350030, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Weymouth-Thomas V Nash,03360060, 206, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,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,2023-24,Weymouth-Wessagusset,03360110, 284, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Weymouth-Lawrence W Pingree,03360065, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westwood-E W Thurston Middle,03350305, 661, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Weymouth-Maria Weston Chapman Middle School,03360020," 1,187", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Weymouth-Academy Avenue,03360005, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Weymouth-Ralph Talbot,03360085, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --1.0,1,a-degr-i2,2023-24,Weymouth-Weymouth High School,03360505," 1,737", 79, 4.5,"","","","","","","","", 11.6, 3.8, 1.4, 0.7 +8.0,5,a-degr-i2,2023-24,Weymouth-Wessagusset,03360110, 284, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Weymouth-Frederick C Murphy,03360050, 237, 1, 0.4, 0.0, 0.0, 0.0, 1.9, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2023-24,Weymouth-Maria Weston Chapman Middle School,03360020," 1,187", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Thomas V Nash,03360060, 206, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Lawrence W Pingree,03360065, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Weymouth-William Seach,03360080, 315, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +-1.0,1,a-degr-i2,2023-24,Weymouth-Weymouth High School,03360505," 1,737", 79, 4.5,"","","","","","","","", 11.6, 3.8, 1.4, 0.7 +8.0,5,a-degr-i2,2023-24,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,2023-24,Weymouth-Ralph Talbot,03360085, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Whately-Whately Elementary,03370005, 95, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.4,5,a-degr-i2,2023-24,Whitman-Hanson-John H Duval,07800030, 355, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Indian Head,07800035, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Hanson Middle School,07800315, 424, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -4.2,4.2,a-degr-i2,2023-24,Whitman-Hanson-Whitman Hanson Regional,07800505," 1,028", 20, 1.9,"","","","","","","","", 0.4, 0.0, 0.0, 7.1 8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Louise A Conley,07800010, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.2,4.2,a-degr-i2,2023-24,Whitman-Hanson-Whitman Hanson Regional,07800505," 1,028", 20, 1.9,"","","","","","","","", 0.4, 0.0, 0.0, 7.1 +8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Indian Head,07800035, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Whitman Middle,07800310, 507, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Hanson Middle School,07800315, 424, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2023-24,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605," 1,279", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.3, 0.0 8.0,5,a-degr-i2,2023-24,Williamsburg-Anne T. Dunphy School,03400020, 97, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Wilmington-North Intermediate,03420060, 249, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Wilmington-Shawsheen Elementary,03420025, 342, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.4,5,a-degr-i2,2023-24,Wilmington-Woburn Street,03420020, 358, 1, 0.3, 0.0, 0.8, 0.0,"","","","","","","","","" +7.0,5,a-degr-i2,2023-24,Wilmington-Wilmington High,03420505, 613, 3, 0.5,"","","","","","","","", 0.0, 0.0, 0.7, 1.2 8.0,5,a-degr-i2,2023-24,Wilmington-Wilmington Middle School,03420330, 702, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Wilmington-West Intermediate,03420080, 208, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2023-24,Wilmington-Wilmington High,03420505, 613, 3, 0.5,"","","","","","","","", 0.0, 0.0, 0.7, 1.2 +8.0,5,a-degr-i2,2023-24,Wilmington-Shawsheen Elementary,03420025, 342, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Wilmington-Woburn Street,03420020, 358, 1, 0.3, 0.0, 0.8, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Winchendon-Toy Town Elementary,03430050, 276, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" --42.0,1,a-degr-i2,2023-24,Winchendon-Murdock Academy for Success,03430405, 20, 5, 25.0,"","","","","","","","","","","", 12.5 --5.0,1,a-degr-i2,2023-24,Winchendon-Murdock High School,03430515, 247, 16, 6.5,"","","","","","","","", 10.8, 8.8, 3.3, 0.0 -6.2,5,a-degr-i2,2023-24,Winchendon-Memorial,03430040, 223, 2, 0.9, 0.9, 0.9,"","","","","","","","","","" 7.4,5,a-degr-i2,2023-24,Winchendon-Murdock Middle School,03430315, 290, 1, 0.3,"","","","","", 0.0, 0.0, 1.1,"","","","" +6.2,5,a-degr-i2,2023-24,Winchendon-Memorial,03430040, 223, 2, 0.9, 0.9, 0.9,"","","","","","","","","","" +-5.0,1,a-degr-i2,2023-24,Winchendon-Murdock High School,03430515, 247, 16, 6.5,"","","","","","","","", 10.8, 8.8, 3.3, 0.0 +-42.0,1,a-degr-i2,2023-24,Winchendon-Murdock Academy for Success,03430405, 20, 5, 25.0,"","","","","","","","","","","", 12.5 7.8,5,a-degr-i2,2023-24,Winchester-Winchester High School,03440505," 1,367", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 -7.2,5,a-degr-i2,2023-24,Winchester-Muraco Elementary,03440040, 284, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Winchester-Ambrose Elementary,03440045, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Winchester-McCall Middle,03440305," 1,039", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2023-24,Winchester-Vinson-Owen Elementary,03440025, 342, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Winchester-Lynch Elementary,03440020, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Winchester-Ambrose Elementary,03440045, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Winchester-Muraco Elementary,03440040, 284, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2023-24,Winchester-Lincoln Elementary,03440005, 279, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Winchester-Lynch Elementary,03440020, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Winchester-Vinson-Owen Elementary,03440025, 342, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 309, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2023-24,Winthrop-Arthur T. Cummings Elementary School,03460020, 443, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Winthrop-Winthrop Middle School,03460305, 423, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 1.7999999999999998,1.8,a-degr-i2,2023-24,Winthrop-Winthrop High School,03460505, 588, 18, 3.1,"","","","","","","","", 7.0, 0.7, 3.7, 0.7 +8.0,5,a-degr-i2,2023-24,Woburn-John F Kennedy Middle School,03470405, 511, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Woburn-Mary D Altavesta,03470065, 172, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Woburn-Malcolm White,03470055, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2023-24,Woburn-Shamrock,03470043, 204, 1, 0.5, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2023-24,Woburn-Clyde Reeves,03470040, 258, 2, 0.8, 1.7, 2.3, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2023-24,Woburn-John F Kennedy Middle School,03470405, 511, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Woburn-Woburn High,03470505," 1,216", 4, 0.3,"","","","","","","","", 0.0, 1.4, 0.0, 0.0 +6.8,5,a-degr-i2,2023-24,Woburn-Linscott-Rumford,03470025, 166, 1, 0.6, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2023-24,Woburn-Hurld-Wyman Elementary School,03470020, 339, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2023-24,Woburn-Goodyear Elementary School,03470005, 294, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2023-24,Woburn-Woburn High,03470505," 1,216", 4, 0.3,"","","","","","","","", 0.0, 1.4, 0.0, 0.0 8.0,5,a-degr-i2,2023-24,Woburn-Daniel L Joyce Middle School,03470410, 460, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2023-24,Woburn-Linscott-Rumford,03470025, 166, 1, 0.6, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" -4.8,4.8,a-degr-i2,2023-24,Worcester-Worcester Arts Magnet School,03480225, 317, 5, 1.6, 1.8, 4.5, 2.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2023-24,Worcester-Tatnuck,03480230, 287, 3, 1.0, 0.0, 4.3, 2.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2023-24,Worcester-Thorndyke Road,03480235, 311, 3, 1.0, 0.0, 1.6, 0.0, 2.1, 2.2, 0.0,"","","","","","" -1.7999999999999998,1.8,a-degr-i2,2023-24,Worcester-Union Hill School,03480240, 319, 10, 3.1, 6.0, 3.6, 1.7, 7.5, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2023-24,Worcester-West Tatnuck,03480260, 279, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2023-24,Woburn-Clyde Reeves,03470040, 258, 2, 0.8, 1.7, 2.3, 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2023-24,Worcester-Vernon Hill School,03480280, 360, 2, 0.6, 1.8, 0.0, 0.0, 1.6, 0.0, 0.0,"","","","","","" 5.6,5,a-degr-i2,2023-24,Worcester-University Pk Campus School,03480285, 244, 3, 1.2,"","","","","","", 4.5, 0.0, 2.6, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2023-24,Worcester-Jacob Hiatt Magnet,03480140, 263, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2023-24,Worcester-Claremont Academy,03480350, 475, 5, 1.1,"","","","","","", 0.0, 0.0, 3.9, 0.0, 1.2, 1.4 7.2,5,a-degr-i2,2023-24,Worcester-Burncoat Middle School,03480405, 684, 3, 0.4,"","","","","","", 0.9, 0.0,"","","","" 8.0,5,a-degr-i2,2023-24,Worcester-Forest Grove Middle,03480415, 829, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2023-24,Worcester-Worcester East Middle,03480420, 695, 3, 0.4,"","","","","","", 0.6, 0.3,"","","","" @@ -1697,21 +3409,6 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 2.2,2.2,a-degr-i2,2023-24,Worcester-North High,03480515," 1,399", 41, 2.9,"","","","","","","","", 2.0, 6.2, 1.8, 1.5 2.8,2.8,a-degr-i2,2023-24,Worcester-South High Community,03480520," 1,778", 47, 2.6,"","","","","","","","", 4.5, 2.4, 1.6, 2.1 6.8,5,a-degr-i2,2023-24,Worcester-Worcester Technical High,03480605," 1,424", 8, 0.6,"","","","","","","","", 1.9, 0.0, 0.0, 0.3 -5.2,5,a-degr-i2,2023-24,Worcester-Roosevelt,03480220, 420, 6, 1.4, 5.3, 0.0, 1.4, 0.0, 1.4, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Worcester-Rice Square,03480215, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.6,5,a-degr-i2,2023-24,Worcester-Quinsigamond,03480210, 600, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2023-24,Worcester-Norrback Avenue,03480202, 389, 2, 0.5, 1.5, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2023-24,Worcester-Nelson Place,03480200, 457, 4, 0.9, 4.7, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Worcester-Midland Street,03480185, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.8,5,a-degr-i2,2023-24,Worcester-Francis J McGrath Elementary,03480177, 166, 1, 0.6, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2023-24,Worcester-May Street,03480175, 254, 3, 1.2, 6.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.6,4.6,a-degr-i2,2023-24,Worcester-Lincoln Street,03480160, 181, 3, 1.7, 3.2, 2.4, 0.0, 4.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2023-24,Worcester-Lake View,03480145, 249, 3, 1.2, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2023-24,Worcester-Claremont Academy,03480350, 475, 5, 1.1,"","","","","","", 0.0, 0.0, 3.9, 0.0, 1.2, 1.4 -4.4,4.4,a-degr-i2,2023-24,Worcester-Heard Street,03480136, 217, 4, 1.8, 6.7, 3.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2023-24,Worcester-Belmont Street Community,03480020, 451, 5, 1.1, 2.6, 4.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2023-24,Worcester-Wawecus Road School,03480026, 130, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2023-24,Worcester-Woodland Academy,03480030, 421, 4, 1.0, 4.5, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2023-24,Worcester-Burncoat Street,03480035, 205, 1, 0.5, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2023-24,Worcester-Canterbury,03480045, 245, 2, 0.8, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.0,5.0,a-degr-i2,2023-24,Worcester-Chandler Elementary Community,03480050, 341, 5, 1.5, 9.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -1724,6 +3421,26 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.4,5,a-degr-i2,2023-24,Worcester-Goddard School/Science Technical,03480100, 297, 1, 0.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2023-24,Worcester-Gates Lane,03480110, 397, 3, 0.8, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 2.8,2.8,a-degr-i2,2023-24,Worcester-Grafton Street,03480115, 345, 9, 2.6, 8.3, 2.8, 1.9, 0.0, 1.8, 0.0,"","","","","","" +4.4,4.4,a-degr-i2,2023-24,Worcester-Heard Street,03480136, 217, 4, 1.8, 6.7, 3.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Jacob Hiatt Magnet,03480140, 263, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Worcester-West Tatnuck,03480260, 279, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Worcester-Union Hill School,03480240, 319, 10, 3.1, 6.0, 3.6, 1.7, 7.5, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Worcester-Thorndyke Road,03480235, 311, 3, 1.0, 0.0, 1.6, 0.0, 2.1, 2.2, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Worcester-Tatnuck,03480230, 287, 3, 1.0, 0.0, 4.3, 2.0, 0.0, 0.0, 0.0,"","","","","","" +4.8,4.8,a-degr-i2,2023-24,Worcester-Worcester Arts Magnet School,03480225, 317, 5, 1.6, 1.8, 4.5, 2.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2023-24,Worcester-Roosevelt,03480220, 420, 6, 1.4, 5.3, 0.0, 1.4, 0.0, 1.4, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Rice Square,03480215, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Worcester-Quinsigamond,03480210, 600, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Worcester-Norrback Avenue,03480202, 389, 2, 0.5, 1.5, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Midland Street,03480185, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2023-24,Worcester-Nelson Place,03480200, 457, 4, 0.9, 4.7, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,Worcester-Francis J McGrath Elementary,03480177, 166, 1, 0.6, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2023-24,Worcester-Lake View,03480145, 249, 3, 1.2, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.6,4.6,a-degr-i2,2023-24,Worcester-Lincoln Street,03480160, 181, 3, 1.7, 3.2, 2.4, 0.0, 4.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2023-24,Worcester-Belmont Street Community,03480020, 451, 5, 1.1, 2.6, 4.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Wawecus Road School,03480026, 130, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Worcester-Woodland Academy,03480030, 421, 4, 1.0, 4.5, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2023-24,Worcester-May Street,03480175, 254, 3, 1.2, 6.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Worcester Cultural Academy Charter Public School (District)-Worcester Cultural Academy Charter Public School,35190205, 95, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2023-24,Worthington-R. H. Conwell,03490010, 51, 0, 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2023-24,Wrentham-Charles E Roderick,03500010, 370, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" diff --git a/data/admin_data/dese/5D_2_age_staffing.csv b/data/admin_data/dese/5D_2_age_staffing.csv index 7e5d298c..323204b2 100644 --- a/data/admin_data/dese/5D_2_age_staffing.csv +++ b/data/admin_data/dese/5D_2_age_staffing.csv @@ -1,14718 +1,14718 @@ 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 -8.0,5,a-phya-i1,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.4, 0.6, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Acushnet - Acushnet Elementary School,00030025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 0.8, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amesbury - Amesbury High,00070505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 1.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - Andover High,00090505, 0.0, 0.0, 1.0, 0.0, 1.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - Shawsheen School,00090005, 0.0, 1.0, 0.0, 1.0, 0.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.5, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.7, 0.7, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Arlington High,00100505, 0.0, 2.0, 0.0, 0.6, 1.0, 0.0, 0.0, 3.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Brackett,00100010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Hardy,00100030, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Ottoson Middle,00100410, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Attleboro - Attleboro High,00160505, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 0.0, 2.6,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Auburn - Auburn Middle,00170305, 0.0, 1.0, 0.0, 0.6, 1.0, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Auburn - Auburn Senior High,00170505, 0.6, 0.0, 0.0, 2.0, 0.4, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Auburn - Pakachoag School,00170025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - Barnstable High,00200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 1.5, 0.0, 0.0, 0.5, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.0, 1.0, 0.2, 1.0, 0.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Belmont - Belmont High,00260505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Belmont - Belmont Middle School,00260315, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.4, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.3, 1.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - Beverly High,00300505, 0.0, 0.0, 1.1, 0.0, 1.6, 1.6, 0.0, 4.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.1, 0.0, 1.1, 1.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - Hannah Elementary,00300033, 1.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Boston Latin School,00350560, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Brighton High School,00350505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Channing Elementary School,00350360, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Charlestown High School,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Clap Elementary School,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Condon K-8 School,00350146, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Conley Elementary School,00350122, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - East Boston High School,00350530, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Edison K-8 School,00350375, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - English High School,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Guild Elementary School,00350062, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Hale Elementary School,00350243, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Harvard-Kent Elementary School,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 0.0, 0.0, 2.0, 1.5, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Kennedy John F Elementary School,00350166, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - McKay K-8 School,00350080, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Melvin H. King South End Academy,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Philbrick Elementary School,00350172, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Quincy Elementary School,00350286, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Trotter Elementary School,00350370, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston - Tynan Elementary School,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Warren-Prescott K-8 School,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Winship Elementary School,00350374, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - Liberty,00400025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brimfield - Brimfield Elementary,00430005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Brockton High,00440505, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 1.0, 6.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.5, 1.0, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 2.5, 0.0, 1.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Edison Day Academy,00440535, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.5, 2.0, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - North Middle School,00440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Brookline - Brookline High,00460505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.4, 3.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.1, 1.0, 0.6, 0.1, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 1.1, 0.0, 1.0, 0.1, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookline - Heath,00460025, 0.0, 0.0, 0.1, 0.8, 0.0, 1.1, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.1, 0.0, 0.9, 0.1, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookline - Lawrence,00460030, 0.0, 0.0, 0.2, 0.0, 0.8, 0.1, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Brookline - Pierce,00460040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.0, 2.1,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Burlington - Burlington High,00480505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Burlington - Fox Hill,00480007, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Burlington - Memorial,00480015, 0.0, 0.3, 0.0, 0.5, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Burlington - Pine Glen Elementary,00480020, 0.0, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 1.8,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Carver - Carver Elementary School,00520015, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Chicopee - Barry,00610003, 0.0, 0.2, 0.2, 1.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Bowe,00610015, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.2, 2.0, 0.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Fairview Elementary,00610050, 0.0, 1.2, 1.2, 0.0, 0.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.2, 1.0, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Concord - Thoreau,00670020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Danvers - Great Oak,00710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Dedham - Dedham High,00730505, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Dedham - Early Childhood Center,00730005, 0.0, 0.5, 0.0, 0.0, 0.9, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,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, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,East Longmeadow - Meadow Brook,00870013, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Easthampton - Easthampton High,00860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Easthampton - Mountain View School,00860415, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Easton - Richardson Olmsted School,00880025, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 1.7,0,0.0 -8.0,5,a-phya-i1,2023-24,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,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, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 2.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fairhaven - East Fairhaven,00940010, 0.0, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Fairhaven - Fairhaven High,00940505, 0.0, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Fairhaven - Hastings Middle,00940305, 0.0, 0.3, 1.0, 0.3, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 1.3, 0.0, 0.3, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - John J Doran,00950045, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - North End Elementary,00950005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Samuel Watson,00950145, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Falmouth - Falmouth High,00960505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Falmouth - Lawrence,00960405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 1.4,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 1.0, 0.0, 0.0, 0.0, 0.8, 1.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Framingham High School,01000515, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin - Remington Middle,01010310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gateway - Chester Elementary,06720059, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gloucester - Gloucester High,01070505, 0.0, 0.0, 1.4, 0.0, 1.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Grafton - Grafton High School,01100505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.7, 0.5, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greenfield - Newton School,01140035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hanover - Hanover High,01220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Haverhill - Haverhill High,01280505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,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.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Holland - Holland Elementary,01350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke - Holyoke High,01370505, 0.0, 1.0, 0.0, 2.0, 2.0, 1.0, 0.0, 6.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Holyoke - Kelly Elementary,01370040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hopedale - Memorial,01380010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hopkinton - Elmwood,01390010, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Hopkinton - Hopkinton High,01390505, 0.0, 0.2, 0.0, 0.5, 0.8, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.2, 0.0, 0.5, 0.0, 1.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 3.0, 0.0, 2.0, 1.0, 0.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2023-24,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Frost Middle School,01490525, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 3.0, 0.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Leicester - Leicester Elementary,01510005, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Leicester - Leicester High,01510505, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Leicester - Leicester Middle,01510015, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Leominster - Northwest,01530030, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Bowman,01550008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Fiske,01550015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Joseph Estabrook,01550010, 0.0, 0.8, 0.0, 1.0, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Lexington High,01550505, 0.0, 0.0, 1.9, 2.0, 1.0, 1.0, 1.0, 6.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lincoln - Hanscom School,01570305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lincoln - Lincoln School,01570025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.4, 0.0, 1.6, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Cobbet Elementary,01630035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - E J Harrington,01630045, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Lynn English High,01630510, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 1.0, 1.0, 2.0, 0.0, 1.0, 0.0, 1.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Malden - Linden,01650047, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marblehead - Marblehead High,01680505, 0.0, 1.0, 0.0, 0.8, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marlborough - Charles Jaworek School,01700030, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marlborough - Marlborough High,01700505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marlborough - Richer,01700025, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.5, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - Marshfield High,01710505, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Medfield - Dale Street,01750005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.6, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - Madeleine Dugger Andrews,01760315, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - Medford High,01760505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - Milton Fuller Roberts,01760150, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Medford - Missituk Elementary School,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.2, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.2, 1.0, 1.0, 0.0, 0.0, 0.2, 2.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Methuen - Marsh Grammar School,01810030, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.2, 3.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.2, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milford - Milford High,01850505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milton - Cunningham School,01890007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milton - Milton High,01890505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.5, 0.0, 1.3, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.5, 0.5, 0.0, 3.0, 0.5, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Nantucket - Nantucket High,01970505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - Natick High,01980505, 0.0, 0.0, 0.6, 0.0, 1.0, 0.9, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Natick - Wilson Middle,01980310, 0.0, 1.0, 0.0, 0.0, 0.0, 1.6, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - High Rock School,01990410, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - John Eliot,01990020, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - Needham High,01990505, 0.0, 0.0, 0.1, 0.0, 1.7, 1.0, 1.0, 3.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.1, 2.0, 0.1, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.1, 1.0, 0.9, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Needham - William Mitchell,01990040, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 1.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - James B Congdon,02010040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,New Bedford - Keith Middle School,02010405, 1.0, 3.0, 5.0, 4.0, 2.0, 1.0, 2.0, 18.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 2.0, 3.0, 0.0, 1.0, 7.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Normandin Middle School,02010410, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Bowen,02070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Memorial Spaulding,02070105, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Newton North High,02070505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Adams - Brayton,02090035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Adams - Drury High,02090505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,North Andover - North Andover High,02110505, 0.0, 1.0, 0.0, 1.0, 0.6, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2023-24,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8, 1.6,0,0.0 -8.0,5,a-phya-i1,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northampton - Leeds,02100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.4, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norton - J C Solmonese,02180015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwell - Grace Farrar Cole,02190005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.5, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.5, 1.5, 0.0, 0.6, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Norwood - Norwood High,02200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Orange - Fisher Hill School,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Oxford - Oxford Middle,02260405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pembroke - Bryantville Elementary,02310003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pentucket - Dr John C Page School,07450015, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.2, 0.0, 0.6, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,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, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,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, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,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, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.3, 0.0, 0.1, 0.0, 0.1, 0.0, 0.5, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Allendale,02360010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Crosby,02360065, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Egremont,02360035, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plainville - Anna Ware Jackson,02380010, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.6, 0.0, 2.0, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Plympton - Dennett Elementary,02400010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Central Middle,02430315, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Merrymount,02430060, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Montclair,02430065, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Quincy High,02430505, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - South West Middle School,02430320, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Squantum,02430095, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Reading - Reading Memorial High,02460505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.8, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.6, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - CityLab Innovation High School,02480520, 0.4, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Paul Revere,02480050, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Revere High,02480505, 0.0, 1.0, 1.2, 0.0, 0.0, 0.0, 1.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Rumney Marsh Academy,02480014, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Rockland - Phelps Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Salem - Bates,02580003, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Salem - Collins Middle,02580305, 0.5, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Salem - Salem Early Childhood,02580001, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Salem - Salem High,02580505, 0.0, 0.1, 2.0, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Sandwich - Forestdale School,02610002, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.5, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.7, 0.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.3, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Somerville - Somerville High,02740505, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,South Hadley - South Hadley High,02780505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,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, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Benjamin Swan Elementary,02810085, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Brightwood,02810025, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Frederick Harris,02810080, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - German Gerena Community School,02810195, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - High School Of Commerce,02810510, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - John J Duggan Academy,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Kiley Prep,02810315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Lincoln,02810120, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Springfield Central High,02810500, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Springfield - Sumner Avenue,02810160, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - The Springfield Virtual School,02810705, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Thomas M Balliet,02810015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 1.0, 0.8, 0.0, 0.0, 2.8,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Sutton - Sutton High School,02900510, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 1.1, 0.4, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - East Taunton Elementary,02930010, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.0, 0.8, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.8, 0.8, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.4, 0.4, 0.8, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.8, 3.0, 0.8, 0.0, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.0, 0.8, 0.0, 2.3,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tewksbury - Heath-Brook,02950010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Triton - Pine Grove,07730025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Dawson,07750020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Elm Street School,03070005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 1.0, 0.0, 0.1, 0.0, 0.1, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - John F Kennedy Middle,03080404, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.1, 2.0, 0.1, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 1.1, 0.0, 1.1, 0.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Watertown - Hosmer,03140020, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Watertown - Watertown High,03140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Wayland - Happy Hollow School,03150015, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Wayland - Loker School,03150020, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.2, 0.3, 0.5, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2023-24,Webster - Park Avenue Elementary,03160015, 0.0, 0.5, 0.2, 0.5, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.7, 0.3, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - Memorial,03320025, 0.0, 0.0, 0.1, 0.6, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.1, 0.5, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - Philip G Coburn,03320007, 0.5, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - Tatham,03320040, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.5, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.1, 0.1, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2023-24,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2023-24,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westborough - Mill Pond School,03210045, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westborough - Westborough High,03210505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Highland,03250025, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Westfield High,03250505, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Westford - Nabnasset,03260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westford - Stony Brook School,03260330, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Weston - Field Elementary School,03300012, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Weston - Woodland,03300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westwood - Pine Hill Elementary School,03350030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 1.0, 0.3, 2.0, 0.0, 3.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2023-24,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Weymouth - Weymouth High School,03360505, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wilmington - Boutwell,03420005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 0.6, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 1.0, 0.3, 0.0, 1.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Shamrock,03470043, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2023-24,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.3, 1.0, 0.0, 1.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Canterbury,03480045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - City View,03480053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Claremont Academy,03480350, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Flagg Street,03480090, 0.0, 1.0, 0.0, 0.3, 0.0, 0.5, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Forest Grove Middle,03480415, 0.0, 0.5, 2.0, 1.0, 0.0, 0.0, 1.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Gates Lane,03480110, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Lake View,03480145, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Nelson Place,03480200, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Norrback Avenue,03480202, 0.0, 1.5, 3.0, 1.0, 0.0, 3.0, 0.0, 8.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - North High,03480515, 1.0, 3.5, 1.0, 1.0, 0.0, 1.0, 0.0, 7.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Quinsigamond,03480210, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Rice Square,03480215, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Roosevelt,03480220, 1.0, 2.5, 0.0, 0.0, 0.0, 1.0, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - South High Community,03480520, 0.0, 2.0, 2.0, 1.0, 2.0, 0.0, 0.0, 7.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 3.0, 1.0, 1.0, 1.0, 0.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Worcester - West Tatnuck,03480260, 0.0, 1.0, 1.0, 1.3, 0.0, 0.0, 1.0, 4.3,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -NaN,NaN,a-phya-i1,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2023-24,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester - Worcester Technical High,03480605, 0.0, 1.0, 2.0, 0.5, 0.0, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2023-24,Wrentham - Delaney,03500003, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.1, 2.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.1, 0.6, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 1.0, 2.8,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - Andover West Middle,00090310, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.5, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Brackett,00100010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Menotomy Preschool,00100038, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Attleboro - Attleboro High,00160505, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.0, 2.8,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.4, 1.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Auburn - Auburn Middle,00170305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Auburn - Auburn Senior High,00170505, 0.6, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Auburn - Pakachoag School,00170025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - Barnstable High,00200505, 0.0, 0.0, 1.0, 0.0, 0.0, 2.5, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.2, 0.0, 2.2, 0.0, 2.4,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Bellingham - Stall Brook,00250025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Belmont - Belmont High,00260505, 0.0, 0.6, 0.0, 1.0, 0.0, 1.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.4, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Beverly - Beverly High,00300505, 0.0, 0.0, 1.0, 0.0, 2.1, 0.6, 0.0, 3.7,0,0.0 -8.0,5,a-phya-i1,2022-23,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.0, 0.1, 2.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Boston Latin School,00350560, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Brighton High School,00350505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Channing Elementary School,00350360, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Charlestown High School,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Clap Elementary School,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Condon K-8 School,00350146, 0.0, 1.0, 0.0, 0.5, 1.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Conley Elementary School,00350122, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - East Boston High School,00350530, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - English High School,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Guild Elementary School,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Hale Elementary School,00350243, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 0.0, 1.0, 1.0, 1.5, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - McKay K-8 School,00350080, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - McKinley Schools,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Quincy Elementary School,00350286, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Trotter Elementary School,00350370, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston - Tynan Elementary School,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Winship Elementary School,00350374, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 0.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - Liberty,00400025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.2, 2.0, 0.0, 1.0, 0.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.2, 0.0, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.1, 0.0, 1.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Brockton High,00440505, 0.0, 1.0, 0.0, 2.0, 3.0, 0.0, 0.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.5, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.5, 2.0, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - North Middle School,00440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.3, 0.0, 0.0, 0.6, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Brookline High,00460505, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.4, 3.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.1, 1.0, 1.0, 0.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Heath,00460025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.2, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Lawrence,00460030, 0.0, 0.0, 0.1, 1.0, 0.8, 0.0, 1.0, 2.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - Pierce,00460040, 0.0, 0.0, 1.1, 1.0, 0.0, 0.0, 1.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.3, 0.0, 0.9, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.1, 0.0, 0.0, 2.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Burlington - Burlington High,00480505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Burlington - Fox Hill,00480007, 0.0, 0.3, 2.0, 0.5, 0.0, 0.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Burlington - Memorial,00480015, 0.0, 0.3, 0.0, 0.5, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 0.0, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 1.8,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Canton - Dean S Luce,00500020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Carver - Carver Elementary School,00520015, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Barry,00610003, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Bellamy Middle,00610305, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Bowe,00610015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Chicopee High,00610505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.2, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Fairview Elementary,00610050, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Concord - Thoreau,00670020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Dedham - Dedham High,00730505, 0.0, 0.0, 1.0, 0.5, 0.1, 0.5, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dedham - Early Childhood Center,00730005, 0.0, 0.5, 0.0, 0.0, 0.6, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 1.2, 0.2, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.2, 1.2, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.2, 1.2, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.2, 0.2, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.2, 0.2, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-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, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.9, 1.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,East Bridgewater - Central,00830005, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Easthampton - Easthampton High,00860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Easthampton - Mountain View School,00860415, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Easton - Easton Middle School,00880405, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Easton - Richardson Olmsted School,00880025, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - John J Doran,00950045, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - North End Elementary,00950005, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Spencer Borden,00950130, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Falmouth - Falmouth High,00960505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Falmouth - Lawrence,00960405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-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.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Foxborough - Foxborough High,00990505, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 +5.473777777777777,5,a-phya-i1,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1421,473.6666666666667 +1,1,a-phya-i1,2023-24,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78 +6.005333333333334,5,a-phya-i1,2023-24,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,561,374.0 +4.608,4.61,a-phya-i1,2023-24,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,636,636.0 +5.301333333333333,5,a-phya-i1,2023-24,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,506,506.0 +6.1226666666666665,5,a-phya-i1,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 +2.1333333333333333,2.13,a-phya-i1,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,440,1100.0 +4.002424242424243,4.0,a-phya-i1,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,1649,749.5454545454545 +5.541818181818181,5,a-phya-i1,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 1.1,507,460.9090909090909 +5.8293333333333335,5,a-phya-i1,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,407,407.0 +1,1,a-phya-i1,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109 +5.997575757575757,5,a-phya-i1,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 1.1,413,375.45454545454544 +5.861818181818181,5,a-phya-i1,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 1.1,441,400.9090909090909 +6.041212121212121,5,a-phya-i1,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 1.1,404,367.27272727272725 +6.273939393939394,5,a-phya-i1,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.1, 1.1,356,323.6363636363636 +5.832,5,a-phya-i1,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.4, 0.6, 0.0, 2.0,813,406.5 +6.621333333333333,5,a-phya-i1,2023-24,Acushnet - Acushnet Elementary School,00030025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,517,258.5 +5.76,5,a-phya-i1,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +4.32,4.32,a-phya-i1,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 0.8, 0.0, 1.4,966,690.0 +7.2,5,a-phya-i1,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,150,150.0 +2.4,2.4,a-phya-i1,2023-24,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1050,1050.0 +1,1,a-phya-i1,2023-24,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551 +1,1,a-phya-i1,2023-24,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308 +6.117333333333334,5,a-phya-i1,2023-24,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,353,353.0 +6.384,5,a-phya-i1,2023-24,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +5.312,5,a-phya-i1,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,504,504.0 +1,1,a-phya-i1,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285 +7.074666666666666,5,a-phya-i1,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 6.0,1041,173.5 +5.52,5,a-phya-i1,2023-24,Amesbury - Amesbury High,00070505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +7.728,5,a-phya-i1,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,51,51.0 +5.781333333333333,5,a-phya-i1,2023-24,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,416,416.0 +5.8773333333333335,5,a-phya-i1,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +5.402666666666667,5,a-phya-i1,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,487,487.0 +6.261333333333333,5,a-phya-i1,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,326,326.0 +7.077333333333334,5,a-phya-i1,2023-24,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,346,173.0 +6.341333333333333,5,a-phya-i1,2023-24,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,311,311.0 +6.398095238095238,5,a-phya-i1,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 1.0, 2.8,841,300.3571428571429 +6.032,5,a-phya-i1,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +3.728253968253968,3.73,a-phya-i1,2023-24,Andover - Andover High,00090505, 0.0, 0.0, 1.0, 0.0, 1.1, 0.0, 0.0, 2.1,1682,800.952380952381 +5.60969696969697,5,a-phya-i1,2023-24,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,493,448.18181818181813 +5.46909090909091,5,a-phya-i1,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,522,474.5454545454545 +5.76,5,a-phya-i1,2023-24,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,462,419.99999999999994 +6.380606060606061,5,a-phya-i1,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,334,303.6363636363636 +5.362424242424242,5,a-phya-i1,2023-24,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,544,494.5454545454545 +7.789206349206348,5,a-phya-i1,2023-24,Andover - Shawsheen School,00090005, 0.0, 1.0, 0.0, 1.0, 0.1, 0.0, 0.0, 2.1,83,39.523809523809526 +5.905454545454545,5,a-phya-i1,2023-24,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.5, 1.1,432,392.7272727272727 +6.565079365079365,5,a-phya-i1,2023-24,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 2.1,565,269.04761904761904 +6.395151515151515,5,a-phya-i1,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,331,300.9090909090909 +5.8133333333333335,5,a-phya-i1,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.7, 0.7, 0.0, 0.0, 0.0, 1.4,574,410.0 +5.616296296296297,5,a-phya-i1,2023-24,Arlington - Arlington High,00100505, 0.0, 2.0, 0.0, 0.6, 1.0, 0.0, 0.0, 3.6,1609,446.94444444444446 +5.744,5,a-phya-i1,2023-24,Arlington - Brackett,00100010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +5.818666666666667,5,a-phya-i1,2023-24,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +6.217142857142857,5,a-phya-i1,2023-24,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,468,334.28571428571433 +6.978666666666666,5,a-phya-i1,2023-24,Arlington - Hardy,00100030, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,383,191.5 +5.914666666666666,5,a-phya-i1,2023-24,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +6.834666666666666,5,a-phya-i1,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,437,218.5 +7.578666666666667,5,a-phya-i1,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,79,79.0 +5.490666666666667,5,a-phya-i1,2023-24,Arlington - Ottoson Middle,00100410, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,941,470.5 +6.213333333333333,5,a-phya-i1,2023-24,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,335,335.0 +3.36,3.36,a-phya-i1,2023-24,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,522,870.0 +5.376,5,a-phya-i1,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,492,492.0 +6.96,5,a-phya-i1,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,195,195.0 +4.618666666666667,4.62,a-phya-i1,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,634,634.0 +5.1466666666666665,5,a-phya-i1,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,535,535.0 +5.824,5,a-phya-i1,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +4.133333333333334,4.13,a-phya-i1,2023-24,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 1.2,870,725.0 +1.964444444444444,1.96,a-phya-i1,2023-24,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,679,1131.6666666666667 +6.221333333333333,5,a-phya-i1,2023-24,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,667,333.5 +6.370666666666667,5,a-phya-i1,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,611,305.5 +7.594666666666667,5,a-phya-i1,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,76,76.0 +4.986666666666666,4.99,a-phya-i1,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1130,565.0 +1,1,a-phya-i1,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571 +1,1,a-phya-i1,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414 +5.530666666666667,5,a-phya-i1,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,463,463.0 +7.210666666666667,5,a-phya-i1,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,148,148.0 +5.765333333333333,5,a-phya-i1,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,1257,419.0 +6.1386666666666665,5,a-phya-i1,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +1,1,a-phya-i1,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68 +4.051282051282051,4.05,a-phya-i1,2023-24,Attleboro - Attleboro High,00160505, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 0.0, 2.6,1925,740.3846153846154 +1,1,a-phya-i1,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31 +4.730666666666667,4.73,a-phya-i1,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,613,613.0 +1,1,a-phya-i1,2023-24,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226 +5.770666666666667,5,a-phya-i1,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,418,418.0 +5.562666666666667,5,a-phya-i1,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,457,457.0 +7.022222222222221,5,a-phya-i1,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 0.0, 2.4,440,183.33333333333334 +6.076666666666667,5,a-phya-i1,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,577,360.625 +6.010666666666666,5,a-phya-i1,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,373,373.0 +4.906666666666666,4.91,a-phya-i1,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,580,580.0 +6.724102564102564,5,a-phya-i1,2023-24,Auburn - Auburn Middle,00170305, 0.0, 1.0, 0.0, 0.6, 1.0, 0.0, 0.0, 2.6,622,239.23076923076923 +6.551111111111111,5,a-phya-i1,2023-24,Auburn - Auburn Senior High,00170505, 0.6, 0.0, 0.0, 2.0, 0.4, 0.0, 0.0, 3.0,815,271.6666666666667 +6.629333333333333,5,a-phya-i1,2023-24,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,257,257.0 +6.698666666666667,5,a-phya-i1,2023-24,Auburn - Pakachoag School,00170025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,244,244.0 +6.504,5,a-phya-i1,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,561,280.5 +5.824,5,a-phya-i1,2023-24,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +7.136,5,a-phya-i1,2023-24,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,324,162.0 +5.802666666666667,5,a-phya-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +5.978666666666666,5,a-phya-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,379,379.0 +6.101333333333334,5,a-phya-i1,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +5.12,5,a-phya-i1,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,540,540.0 +6.626666666666667,5,a-phya-i1,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,309,257.5 +4.253866666666667,4.25,a-phya-i1,2023-24,Barnstable - Barnstable High,00200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5, 0.0, 2.5,1756,702.4 +6.296,5,a-phya-i1,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 1.5, 0.0, 0.0, 0.5, 0.0, 2.0,639,319.5 +6.117333333333334,5,a-phya-i1,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,706,353.0 +6.844444444444444,5,a-phya-i1,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,260,216.66666666666669 +7.184,5,a-phya-i1,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,153,153.0 +7.170909090909091,5,a-phya-i1,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.0, 1.0, 0.2, 1.0, 0.0, 0.0, 0.0, 2.2,342,155.45454545454544 +6.875555555555555,5,a-phya-i1,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,253,210.83333333333334 +4.96,4.96,a-phya-i1,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.0, 0.7,399,570.0 +5.792,5,a-phya-i1,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,414,414.0 +4.920888888888888,4.92,a-phya-i1,2023-24,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 1.5,866,577.3333333333334 +2.56,2.56,a-phya-i1,2023-24,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,612,1020.0 +6.3,5,a-phya-i1,2023-24,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 0.0, 1.6,510,318.75 +1,1,a-phya-i1,2023-24,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571 +5.706666666666667,5,a-phya-i1,2023-24,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,602,430.0 +6.137142857142858,5,a-phya-i1,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,489,349.28571428571433 +7.28,5,a-phya-i1,2023-24,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,189,135.0 +6.731428571428571,5,a-phya-i1,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,333,237.85714285714286 +6.217142857142857,5,a-phya-i1,2023-24,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,468,334.28571428571433 +1,1,a-phya-i1,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109 +4.005333333333334,4.01,a-phya-i1,2023-24,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,749,749.0 +4.848,4.85,a-phya-i1,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,591,591.0 +6.389333333333333,5,a-phya-i1,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,302,302.0 +1,1,a-phya-i1,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26 +6.864,5,a-phya-i1,2023-24,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,213,213.0 +4.101333333333334,4.1,a-phya-i1,2023-24,Belmont - Belmont High,00260505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1462,731.0 +5.462857142857143,5,a-phya-i1,2023-24,Belmont - Belmont Middle School,00260315, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,666,475.7142857142857 +6.288,5,a-phya-i1,2023-24,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,321,321.0 +6.282666666666667,5,a-phya-i1,2023-24,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +6.453333333333333,5,a-phya-i1,2023-24,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.4, 1.8,522,290.0 +5.770666666666667,5,a-phya-i1,2023-24,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,418,418.0 +6.0986666666666665,5,a-phya-i1,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,713,356.5 +1,1,a-phya-i1,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346 +5.632,5,a-phya-i1,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,888,444.0 +2.976,2.98,a-phya-i1,2023-24,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,471,942.0 +4.1066666666666665,4.11,a-phya-i1,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,365,730.0 +6.053333333333334,5,a-phya-i1,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +5.594666666666667,5,a-phya-i1,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,451,451.0 +5.973333333333334,5,a-phya-i1,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,380,380.0 +6.144,5,a-phya-i1,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,348,348.0 +7.0892307692307694,5,a-phya-i1,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,222,170.76923076923077 +6.621538461538461,5,a-phya-i1,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.3, 1.0, 0.0, 0.0, 1.3,336,258.46153846153845 +-1.8488888888888892,1,a-phya-i1,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,554,1846.6666666666667 +6.408205128205128,5,a-phya-i1,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 0.0, 1.3,388,298.46153846153845 +6.443410852713178,5,a-phya-i1,2023-24,Beverly - Beverly High,00300505, 0.0, 0.0, 1.1, 0.0, 1.6, 1.6, 0.0, 4.3,1255,291.8604651162791 +2.436923076923077,2.44,a-phya-i1,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 0.0, 1.3,1356,1043.076923076923 +6.683076923076923,5,a-phya-i1,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,321,246.9230769230769 +7.060869565217392,5,a-phya-i1,2023-24,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.1, 0.0, 1.1, 1.0, 0.0, 2.3,405,176.08695652173915 +6.687179487179487,5,a-phya-i1,2023-24,Beverly - Hannah Elementary,00300033, 1.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 1.3,320,246.15384615384613 +2.1333333333333333,2.13,a-phya-i1,2023-24,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,110,1100.0 +6.576410256410257,5,a-phya-i1,2023-24,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 0.0, 1.3,347,266.9230769230769 +4.762666666666667,4.76,a-phya-i1,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,1821,607.0 +1,1,a-phya-i1,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296 +5.962666666666666,5,a-phya-i1,2023-24,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +6.250666666666667,5,a-phya-i1,2023-24,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +5.317333333333333,5,a-phya-i1,2023-24,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,503,503.0 +6.402666666666667,5,a-phya-i1,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,599,299.5 +5.754666666666667,5,a-phya-i1,2023-24,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,421,421.0 +1,1,a-phya-i1,2023-24,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551 +1,1,a-phya-i1,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1250 +5.461333333333333,5,a-phya-i1,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,238,476.0 +1,1,a-phya-i1,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382 +6.042666666666666,5,a-phya-i1,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,367,367.0 +7.386666666666667,5,a-phya-i1,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,115,115.0 +1,1,a-phya-i1,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348 +4.736,4.74,a-phya-i1,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,918,612.0 +6.661333333333333,5,a-phya-i1,2023-24,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +7.424,5,a-phya-i1,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,108,108.0 +6.72,5,a-phya-i1,2023-24,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,240,240.0 +7.488,5,a-phya-i1,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,192,96.0 +6.512,5,a-phya-i1,2023-24,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,279,279.0 +6.602666666666667,5,a-phya-i1,2023-24,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,262,262.0 +6.450666666666667,5,a-phya-i1,2023-24,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,581,290.5 +7.013333333333334,5,a-phya-i1,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,185,185.0 +5.477333333333333,5,a-phya-i1,2023-24,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +1,1,a-phya-i1,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218 +6.482666666666667,5,a-phya-i1,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,569,284.5 +5.408,5,a-phya-i1,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,486,486.0 +3.485333333333333,3.49,a-phya-i1,2023-24,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1693,846.5 +4.798666666666667,4.8,a-phya-i1,2023-24,Boston - Boston Latin School,00350560, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,2401,600.25 +6.549333333333333,5,a-phya-i1,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,272,272.0 +6.4,5,a-phya-i1,2023-24,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,300,300.0 +6.442666666666667,5,a-phya-i1,2023-24,Boston - Brighton High School,00350505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,584,292.0 +5.8933333333333335,5,a-phya-i1,2023-24,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,395,395.0 +7.917333333333334,5,a-phya-i1,2023-24,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,31,15.5 +6.976,5,a-phya-i1,2023-24,Boston - Channing Elementary School,00350360, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,192,192.0 +5.1946666666666665,5,a-phya-i1,2023-24,Boston - Charlestown High School,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,789,526.0 +6.784,5,a-phya-i1,2023-24,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +7.306666666666667,5,a-phya-i1,2023-24,Boston - Clap Elementary School,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,130,130.0 +7.781333333333333,5,a-phya-i1,2023-24,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,41,41.0 +6.181333333333333,5,a-phya-i1,2023-24,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +6.762666666666667,5,a-phya-i1,2023-24,Boston - Condon K-8 School,00350146, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 0.0, 2.5,580,232.0 +7.1946666666666665,5,a-phya-i1,2023-24,Boston - Conley Elementary School,00350122, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,151,151.0 +5.568,5,a-phya-i1,2023-24,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,912,456.0 +5.050666666666666,5,a-phya-i1,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,553,553.0 +5.834666666666666,5,a-phya-i1,2023-24,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +6.954666666666666,5,a-phya-i1,2023-24,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,196,196.0 +4.552,4.55,a-phya-i1,2023-24,Boston - East Boston High School,00350530, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1293,646.5 +6.442666666666667,5,a-phya-i1,2023-24,Boston - Edison K-8 School,00350375, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,584,292.0 +6.592,5,a-phya-i1,2023-24,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,792,264.0 +6.1866666666666665,5,a-phya-i1,2023-24,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,340,340.0 +1,1,a-phya-i1,2023-24,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189 +5.575111111111111,5,a-phya-i1,2023-24,Boston - English High School,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,682,454.6666666666667 +6.517333333333333,5,a-phya-i1,2023-24,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,278,278.0 +5.936,5,a-phya-i1,2023-24,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +5.994666666666666,5,a-phya-i1,2023-24,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +6.256,5,a-phya-i1,2023-24,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,327,327.0 +6.021333333333334,5,a-phya-i1,2023-24,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,371,371.0 +7.594666666666667,5,a-phya-i1,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,76,76.0 +7.042666666666666,5,a-phya-i1,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,359,179.5 +6.949333333333334,5,a-phya-i1,2023-24,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,197,197.0 +6.682666666666667,5,a-phya-i1,2023-24,Boston - Guild Elementary School,00350062, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +7.557333333333333,5,a-phya-i1,2023-24,Boston - Hale Elementary School,00350243, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,166,83.0 +5.968,5,a-phya-i1,2023-24,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +6.1866666666666665,5,a-phya-i1,2023-24,Boston - Harvard-Kent Elementary School,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +6.944,5,a-phya-i1,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,198,198.0 +7.667809523809524,5,a-phya-i1,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 0.0, 0.0, 2.0, 1.5, 0.0, 0.0, 3.5,218,62.285714285714285 +5.728,5,a-phya-i1,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,639,426.0 +6.922666666666666,5,a-phya-i1,2023-24,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,505,202.0 +5.8293333333333335,5,a-phya-i1,2023-24,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +7.1626666666666665,5,a-phya-i1,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,157,157.0 +7.0986666666666665,5,a-phya-i1,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,169,169.0 +6.469333333333333,5,a-phya-i1,2023-24,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,287,287.0 +7.610666666666667,5,a-phya-i1,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,73,73.0 +6.1386666666666665,5,a-phya-i1,2023-24,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,349,349.0 +5.888,5,a-phya-i1,2023-24,Boston - Kennedy John F Elementary School,00350166, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +1,1,a-phya-i1,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267 +6.197333333333333,5,a-phya-i1,2023-24,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,338,338.0 +7.010666666666666,5,a-phya-i1,2023-24,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,371,185.5 +5.493333333333333,5,a-phya-i1,2023-24,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,470,470.0 +7.466666666666667,5,a-phya-i1,2023-24,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,200,100.0 +6.594666666666667,5,a-phya-i1,2023-24,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,527,263.5 +1,1,a-phya-i1,2023-24,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528 +7.456,5,a-phya-i1,2023-24,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,102,102.0 +7.68,5,a-phya-i1,2023-24,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,120,60.0 +6.119111111111111,5,a-phya-i1,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0,1058,352.6666666666667 +7.0986666666666665,5,a-phya-i1,2023-24,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,169,169.0 +6.357333333333333,5,a-phya-i1,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,308,308.0 +6.314666666666667,5,a-phya-i1,2023-24,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,632,316.0 +6.992,5,a-phya-i1,2023-24,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +5.578666666666667,5,a-phya-i1,2023-24,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,454,454.0 +5.269333333333333,5,a-phya-i1,2023-24,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,512,512.0 +6.213333333333333,5,a-phya-i1,2023-24,Boston - McKay K-8 School,00350080, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,670,335.0 +7.7617777777777786,5,a-phya-i1,2023-24,Boston - Melvin H. King South End Academy,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0,134,44.666666666666664 +6.357333333333333,5,a-phya-i1,2023-24,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +5.902222222222223,5,a-phya-i1,2023-24,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,590,393.3333333333333 +7.050666666666666,5,a-phya-i1,2023-24,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,178,178.0 +5.762666666666667,5,a-phya-i1,2023-24,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,839,419.5 +1,1,a-phya-i1,2023-24,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668 +-0.20266666666666666,1,a-phya-i1,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1538,1538.0 +6.533333333333333,5,a-phya-i1,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,275,275.0 +5.610666666666667,5,a-phya-i1,2023-24,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 +6.208,5,a-phya-i1,2023-24,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,672,336.0 +5.856,5,a-phya-i1,2023-24,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +1,1,a-phya-i1,2023-24,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149 +7.034666666666666,5,a-phya-i1,2023-24,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,181,181.0 +7.648,5,a-phya-i1,2023-24,Boston - Philbrick Elementary School,00350172, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,132,66.0 +6.696888888888888,5,a-phya-i1,2023-24,Boston - Quincy Elementary School,00350286, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,733,244.33333333333334 +7.054222222222221,5,a-phya-i1,2023-24,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,532,177.33333333333334 +6.234666666666667,5,a-phya-i1,2023-24,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,331,331.0 +6.1546666666666665,5,a-phya-i1,2023-24,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,346,346.0 +1,1,a-phya-i1,2023-24,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201 +1,1,a-phya-i1,2023-24,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445 +6.453333333333333,5,a-phya-i1,2023-24,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,580,290.0 +6.1706666666666665,5,a-phya-i1,2023-24,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +1,1,a-phya-i1,2023-24,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870 +6.0,5,a-phya-i1,2023-24,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +6.4,5,a-phya-i1,2023-24,Boston - Trotter Elementary School,00350370, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +6.906666666666666,5,a-phya-i1,2023-24,Boston - Tynan Elementary School,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,205,205.0 +1,1,a-phya-i1,2023-24,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566 +5.338666666666667,5,a-phya-i1,2023-24,Boston - Warren-Prescott K-8 School,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +1,1,a-phya-i1,2023-24,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113 +7.08,5,a-phya-i1,2023-24,Boston - Winship Elementary School,00350374, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,345,172.5 +1,1,a-phya-i1,2023-24,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241 +5.514666666666667,5,a-phya-i1,2023-24,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,466,466.0 +6.165333333333334,5,a-phya-i1,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,688,344.0 +7.218666666666667,5,a-phya-i1,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,293,146.5 +5.552,5,a-phya-i1,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +4.293333333333333,4.29,a-phya-i1,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,695,695.0 +5.501333333333333,5,a-phya-i1,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,937,468.5 +6.213333333333333,5,a-phya-i1,2023-24,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,335,335.0 +6.085333333333334,5,a-phya-i1,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +5.653333333333333,5,a-phya-i1,2023-24,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,440,440.0 +5.712,5,a-phya-i1,2023-24,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +6.112,5,a-phya-i1,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,354,354.0 +5.850666666666666,5,a-phya-i1,2023-24,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +6.405333333333333,5,a-phya-i1,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,299,299.0 +5.018666666666666,5,a-phya-i1,2023-24,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1677,559.0 +7.045333333333334,5,a-phya-i1,2023-24,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,179,179.0 +3.56,3.56,a-phya-i1,2023-24,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6, 0.0, 1.2,999,832.5 +6.133333333333334,5,a-phya-i1,2023-24,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,350,350.0 +6.282666666666667,5,a-phya-i1,2023-24,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,322,322.0 +6.352,5,a-phya-i1,2023-24,Braintree - Liberty,00400025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,309,309.0 +6.501333333333333,5,a-phya-i1,2023-24,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 +1,1,a-phya-i1,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183 +6.298666666666667,5,a-phya-i1,2023-24,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,638,319.0 +6.906666666666666,5,a-phya-i1,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,205,205.0 +6.778666666666667,5,a-phya-i1,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,229,229.0 +1,1,a-phya-i1,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334 +5.9013333333333335,5,a-phya-i1,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,787,393.5 +5.496888888888889,5,a-phya-i1,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,1408,469.3333333333333 +5.290666666666667,5,a-phya-i1,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,508,508.0 +6.16,5,a-phya-i1,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +6.32,5,a-phya-i1,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,945,315.0 +6.010666666666666,5,a-phya-i1,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,746,373.0 +1,1,a-phya-i1,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11 +5.781333333333333,5,a-phya-i1,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,832,416.0 +6.485333333333333,5,a-phya-i1,2023-24,Brimfield - Brimfield Elementary,00430005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +4.842666666666666,4.84,a-phya-i1,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +5.635555555555556,5,a-phya-i1,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,1330,443.3333333333333 +5.242666666666667,5,a-phya-i1,2023-24,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +6.586666666666667,5,a-phya-i1,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,265,265.0 +4.812444444444445,4.81,a-phya-i1,2023-24,Brockton - Brockton High,00440505, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 1.0, 6.0,3586,597.6666666666666 +1,1,a-phya-i1,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159 +5.594666666666667,5,a-phya-i1,2023-24,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,451,451.0 +6.402666666666667,5,a-phya-i1,2023-24,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,599,299.5 +6.3722666666666665,5,a-phya-i1,2023-24,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.5, 1.0, 0.0, 0.0, 0.0, 2.5,763,305.2 +7.341714285714285,5,a-phya-i1,2023-24,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 2.5, 0.0, 1.0, 0.0, 3.5,432,123.42857142857143 +5.482666666666667,5,a-phya-i1,2023-24,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,944,472.0 +7.4204444444444455,5,a-phya-i1,2023-24,Brockton - Edison Day Academy,00440535, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,163,108.66666666666667 +7.04,5,a-phya-i1,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,198,179.99999999999997 +5.696,5,a-phya-i1,2023-24,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,432,432.0 +4.448,4.45,a-phya-i1,2023-24,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,666,666.0 +1,1,a-phya-i1,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +5.317333333333333,5,a-phya-i1,2023-24,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +5.773333333333333,5,a-phya-i1,2023-24,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,835,417.5 +5.233777777777778,5,a-phya-i1,2023-24,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,778,518.6666666666666 +6.455466666666667,5,a-phya-i1,2023-24,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.5, 2.0, 0.0, 0.0, 0.0, 2.5,724,289.6 +5.834666666666666,5,a-phya-i1,2023-24,Brockton - North Middle School,00440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +6.033939393939394,5,a-phya-i1,2023-24,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 2.2,811,368.6363636363636 +6.965333333333334,5,a-phya-i1,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,97,194.0 +6.322666666666667,5,a-phya-i1,2023-24,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,629,314.5 +3.008,3.01,a-phya-i1,2023-24,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,468,936.0 +5.084444444444444,5,a-phya-i1,2023-24,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,492,546.6666666666666 +4.074666666666666,4.07,a-phya-i1,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,2208,736.0 +6.389333333333333,5,a-phya-i1,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,302,302.0 +1,1,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46 +7.706666666666667,5,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,33,55.0 +1,1,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42 +4.591372549019608,4.59,a-phya-i1,2023-24,Brookline - Brookline High,00460505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.4, 3.4,2173,639.1176470588235 +6.754285714285715,5,a-phya-i1,2023-24,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.1, 1.0, 0.6, 0.1, 0.0, 2.8,654,233.57142857142858 +5.934545454545455,5,a-phya-i1,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 1.1, 0.0, 1.0, 0.1, 0.0, 2.2,852,387.27272727272725 +6.842666666666666,5,a-phya-i1,2023-24,Brookline - Heath,00460025, 0.0, 0.0, 0.1, 0.8, 0.0, 1.1, 0.0, 2.0,434,217.0 +6.773333333333333,5,a-phya-i1,2023-24,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.1, 0.0, 0.9, 0.1, 1.0, 2.1,483,230.0 +6.438095238095238,5,a-phya-i1,2023-24,Brookline - Lawrence,00460030, 0.0, 0.0, 0.2, 0.0, 0.8, 0.1, 1.0, 2.1,615,292.85714285714283 +5.733333333333333,5,a-phya-i1,2023-24,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 1.0, 1.2,510,425.0 +6.3034920634920635,5,a-phya-i1,2023-24,Brookline - Pierce,00460040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.0, 2.1,668,318.0952380952381 +1,1,a-phya-i1,2023-24,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55 +6.055384615384616,5,a-phya-i1,2023-24,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1, 0.0, 1.3,474,364.6153846153846 +5.32,5,a-phya-i1,2023-24,Burlington - Burlington High,00480505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1005,502.5 +7.133333333333334,5,a-phya-i1,2023-24,Burlington - Fox Hill,00480007, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,455,162.5 +7.074285714285715,5,a-phya-i1,2023-24,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,486,173.57142857142858 +5.701333333333333,5,a-phya-i1,2023-24,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,862,431.0 +6.865185185185185,5,a-phya-i1,2023-24,Burlington - Memorial,00480015, 0.0, 0.3, 0.0, 0.5, 0.0, 1.0, 0.0, 1.8,383,212.77777777777777 +7.01037037037037,5,a-phya-i1,2023-24,Burlington - Pine Glen Elementary,00480020, 0.0, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 1.8,334,185.55555555555554 +1,1,a-phya-i1,2023-24,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418 +1,1,a-phya-i1,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1979 +1,1,a-phya-i1,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +1,1,a-phya-i1,2023-24,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285 +1,1,a-phya-i1,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251 +1,1,a-phya-i1,2023-24,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396 +1,1,a-phya-i1,2023-24,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229 +1,1,a-phya-i1,2023-24,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326 +1,1,a-phya-i1,2023-24,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220 +1,1,a-phya-i1,2023-24,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387 +1,1,a-phya-i1,2023-24,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352 +1,1,a-phya-i1,2023-24,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328 +1,1,a-phya-i1,2023-24,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302 +1,1,a-phya-i1,2023-24,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321 +1,1,a-phya-i1,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270 +1,1,a-phya-i1,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289 +1,1,a-phya-i1,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258 +5.517333333333333,5,a-phya-i1,2023-24,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,931,465.5 +5.456,5,a-phya-i1,2023-24,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +5.562666666666667,5,a-phya-i1,2023-24,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,457,457.0 +6.570666666666667,5,a-phya-i1,2023-24,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,536,268.0 +7.285333333333333,5,a-phya-i1,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,134,134.0 +6.021333333333334,5,a-phya-i1,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,742,371.0 +6.661333333333333,5,a-phya-i1,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +6.232,5,a-phya-i1,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,663,331.5 +4.757333333333333,4.76,a-phya-i1,2023-24,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,608,608.0 +5.933333333333334,5,a-phya-i1,2023-24,Carver - Carver Elementary School,00520015, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,775,387.5 +6.0986666666666665,5,a-phya-i1,2023-24,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,713,356.5 +7.460740740740741,5,a-phya-i1,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,91,101.11111111111111 +6.792,5,a-phya-i1,2023-24,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,453,226.5 +7.056,5,a-phya-i1,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,177,177.0 +6.0906666666666665,5,a-phya-i1,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +5.429333333333333,5,a-phya-i1,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 +5.173333333333333,5,a-phya-i1,2023-24,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,530,530.0 +5.514666666666667,5,a-phya-i1,2023-24,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +5.456,5,a-phya-i1,2023-24,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +0.464,1,a-phya-i1,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1413,1413.0 +1,1,a-phya-i1,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797 +6.933333333333334,5,a-phya-i1,2023-24,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,200,200.0 +3.8293333333333335,3.83,a-phya-i1,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,782,782.0 +5.52,5,a-phya-i1,2023-24,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +-3.2,1,a-phya-i1,2023-24,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,1680,2100.0 +4.666666666666667,4.67,a-phya-i1,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,125,625.0 +1,1,a-phya-i1,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60 +0.768,1,a-phya-i1,2023-24,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,678,1356.0 +3.168,3.17,a-phya-i1,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,453,906.0 +3.2746666666666666,3.27,a-phya-i1,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,443,886.0 +2.6986666666666665,2.7,a-phya-i1,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,497,994.0 +2.816,2.82,a-phya-i1,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,486,972.0 +2.8266666666666667,2.83,a-phya-i1,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,485,970.0 +1,1,a-phya-i1,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,806 +1,1,a-phya-i1,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435 +1,1,a-phya-i1,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139 +6.620952380952381,5,a-phya-i1,2023-24,Chicopee - Barry,00610003, 0.0, 0.2, 0.2, 1.0, 0.0, 0.0, 0.0, 1.4,362,258.5714285714286 +6.982222222222221,5,a-phya-i1,2023-24,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,229,190.83333333333334 +6.0193939393939395,5,a-phya-i1,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 0.0, 2.2,817,371.3636363636363 +-3.1466666666666665,1,a-phya-i1,2023-24,Chicopee - Bowe,00610015, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,418,2090.0 +6.448,5,a-phya-i1,2023-24,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,291,291.0 +7.632,5,a-phya-i1,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,69,69.0 +5.0618181818181816,5,a-phya-i1,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 2.2,1212,550.9090909090909 +3.8577777777777773,3.86,a-phya-i1,2023-24,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 1.2,932,776.6666666666667 +6.356363636363637,5,a-phya-i1,2023-24,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.2, 2.0, 0.0, 0.0, 0.0, 2.2,678,308.18181818181813 +7.188888888888888,5,a-phya-i1,2023-24,Chicopee - Fairview Elementary,00610050, 0.0, 1.2, 1.2, 0.0, 0.0, 0.0, 0.0, 2.4,365,152.08333333333334 +6.510476190476191,5,a-phya-i1,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.2, 1.0, 0.0, 0.2, 0.0, 1.4,391,279.2857142857143 +6.995555555555555,5,a-phya-i1,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,226,188.33333333333334 +6.471111111111111,5,a-phya-i1,2023-24,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,344,286.6666666666667 +6.757333333333333,5,a-phya-i1,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,233,233.0 +6.933333333333334,5,a-phya-i1,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,240,200.0 +6.464,5,a-phya-i1,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +6.938666666666666,5,a-phya-i1,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,199,199.0 +1,1,a-phya-i1,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208 +5.768,5,a-phya-i1,2023-24,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,837,418.5 +4.954666666666666,4.95,a-phya-i1,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 +1,1,a-phya-i1,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581 +4.416,4.42,a-phya-i1,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,336,672.0 +5.834666666666666,5,a-phya-i1,2023-24,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,406,406.0 +6.453333333333333,5,a-phya-i1,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.288,5,a-phya-i1,2023-24,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,321,321.0 +5.925333333333334,5,a-phya-i1,2023-24,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,389,389.0 +4.770666666666667,4.77,a-phya-i1,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1211,605.5 +6.608,5,a-phya-i1,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +3.428571428571428,3.43,a-phya-i1,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,1200,857.1428571428572 +6.8533333333333335,5,a-phya-i1,2023-24,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,430,215.0 +6.256,5,a-phya-i1,2023-24,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,654,327.0 +5.674666666666667,5,a-phya-i1,2023-24,Concord - Thoreau,00670020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +5.594666666666667,5,a-phya-i1,2023-24,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +5.8133333333333335,5,a-phya-i1,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1230,410.0 +6.816,5,a-phya-i1,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,444,222.0 +7.232,5,a-phya-i1,2023-24,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,144,144.0 +3.744,3.74,a-phya-i1,2023-24,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,798,798.0 +6.4,5,a-phya-i1,2023-24,Danvers - Great Oak,00710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +5.973333333333334,5,a-phya-i1,2023-24,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +6.682666666666667,5,a-phya-i1,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,741,247.0 +6.032,5,a-phya-i1,2023-24,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,369,369.0 +6.314666666666667,5,a-phya-i1,2023-24,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,316,316.0 +6.149333333333334,5,a-phya-i1,2023-24,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,347,347.0 +7.724444444444445,5,a-phya-i1,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,155,51.666666666666664 +5.469333333333333,5,a-phya-i1,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,949,474.5 +3.8026666666666666,3.8,a-phya-i1,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,787,787.0 +5.776,5,a-phya-i1,2023-24,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +6.101333333333334,5,a-phya-i1,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,712,356.0 +1,1,a-phya-i1,2023-24,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331 +5.137777777777777,5,a-phya-i1,2023-24,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,322,536.6666666666667 +4.455757575757576,4.46,a-phya-i1,2023-24,Dedham - Dedham High,00730505, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.1,731,664.5454545454545 +3.1733333333333333,3.17,a-phya-i1,2023-24,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.6,543,905.0 +6.689523809523809,5,a-phya-i1,2023-24,Dedham - Early Childhood Center,00730005, 0.0, 0.5, 0.0, 0.0, 0.9, 0.0, 0.0, 1.4,344,245.71428571428572 +6.496969696969697,5,a-phya-i1,2023-24,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,310,281.8181818181818 +5.724444444444444,5,a-phya-i1,2023-24,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.6,256,426.6666666666667 +6.284444444444444,5,a-phya-i1,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,193,321.6666666666667 +6.887111111111112,5,a-phya-i1,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,313,208.66666666666666 +5.28,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,510,510.0 +5.626666666666667,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,445,445.0 +6.36088888888889,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,922,307.3333333333333 +6.096,5,a-phya-i1,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +1,1,a-phya-i1,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275 +5.696,5,a-phya-i1,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +5.942222222222221,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,463,385.83333333333337 +6.368888888888888,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,367,305.83333333333337 +5.111111111111111,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,650,541.6666666666667 +5.875555555555555,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,478,398.33333333333337 +5.373333333333333,5,a-phya-i1,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 1.2,591,492.5 +6.117333333333334,5,a-phya-i1,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,353,353.0 +6.384,5,a-phya-i1,2023-24,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,303,303.0 +6.458666666666667,5,a-phya-i1,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,289,289.0 +6.8533333333333335,5,a-phya-i1,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +5.349333333333333,5,a-phya-i1,2023-24,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,497,497.0 +4.544,4.54,a-phya-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,648,648.0 +5.562666666666667,5,a-phya-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +1,1,a-phya-i1,2023-24,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500 +3.792,3.79,a-phya-i1,2023-24,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,789,789.0 +5.136,5,a-phya-i1,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,537,537.0 +6.773333333333333,5,a-phya-i1,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,230,230.0 +4.917333333333334,4.92,a-phya-i1,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,578,578.0 +5.576,5,a-phya-i1,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,909,454.5 +1,1,a-phya-i1,2023-24,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, 0.0,288 +6.250666666666667,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +4.784,4.78,a-phya-i1,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,603,603.0 +6.224,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,333,333.0 +5.056,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,552,552.0 +5.610666666666667,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +6.768,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +3.002666666666667,3.0,a-phya-i1,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,937,937.0 +4.688,4.69,a-phya-i1,2023-24,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,621,621.0 +4.538666666666667,4.54,a-phya-i1,2023-24,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,649,649.0 +2.891851851851852,2.89,a-phya-i1,2023-24,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.9,862,957.7777777777777 +4.677333333333333,4.68,a-phya-i1,2023-24,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,623,623.0 +5.253333333333333,5,a-phya-i1,2023-24,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,515,515.0 +3.3226666666666667,3.32,a-phya-i1,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,877,877.0 +4.714666666666667,4.71,a-phya-i1,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,616,616.0 +4.725333333333333,4.73,a-phya-i1,2023-24,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,614,614.0 +3.888,3.89,a-phya-i1,2023-24,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,771,771.0 +6.469333333333333,5,a-phya-i1,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +5.859047619047618,5,a-phya-i1,2023-24,East Longmeadow - Meadow Brook,00870013, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,562,401.42857142857144 +6.544,5,a-phya-i1,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +7.061333333333334,5,a-phya-i1,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,176,176.0 +6.010666666666666,5,a-phya-i1,2023-24,Easthampton - Easthampton High,00860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +6.179555555555556,5,a-phya-i1,2023-24,Easthampton - Mountain View School,00860415, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1024,341.3333333333333 +5.917333333333334,5,a-phya-i1,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,781,390.5 +5.8453333333333335,5,a-phya-i1,2023-24,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,808,404.0 +5.1306666666666665,5,a-phya-i1,2023-24,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1076,538.0 +5.690980392156862,5,a-phya-i1,2023-24,Easton - Richardson Olmsted School,00880025, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 1.7,736,432.94117647058823 +6.627555555555556,5,a-phya-i1,2023-24,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,386,257.3333333333333 +6.0,5,a-phya-i1,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, 0.0, 1.0, 1.0,375,375.0 +7.18,5,a-phya-i1,2023-24,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,123,153.75 +5.673333333333333,5,a-phya-i1,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.0,1745,436.25 +1,1,a-phya-i1,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163 +1,1,a-phya-i1,2023-24,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49 +1.896,1.9,a-phya-i1,2023-24,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,2289,1144.5 +1,1,a-phya-i1,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,873 +1,1,a-phya-i1,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1000 +3.84,3.84,a-phya-i1,2023-24,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,780,780.0 +2.6026666666666665,2.6,a-phya-i1,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1012,1012.0 +4.714666666666667,4.71,a-phya-i1,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,616,616.0 +1,1,a-phya-i1,2023-24,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222 +1,1,a-phya-i1,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341 +6.788444444444445,5,a-phya-i1,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 2.0, 6.0,1363,227.16666666666666 +6.912,5,a-phya-i1,2023-24,Fairhaven - East Fairhaven,00940010, 0.0, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0, 1.5,306,204.0 +5.898666666666666,5,a-phya-i1,2023-24,Fairhaven - Fairhaven High,00940505, 0.0, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0, 1.5,591,394.0 +6.4782222222222225,5,a-phya-i1,2023-24,Fairhaven - Hastings Middle,00940305, 0.0, 0.3, 1.0, 0.3, 0.0, 0.0, 0.0, 1.5,428,285.3333333333333 +6.456888888888889,5,a-phya-i1,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 1.3, 0.0, 0.3, 0.0, 0.0, 0.0, 1.5,434,289.3333333333333 +4.753333333333333,4.75,a-phya-i1,2023-24,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,2435,608.75 +4.282666666666667,4.28,a-phya-i1,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,697,697.0 +7.493333333333333,5,a-phya-i1,2023-24,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,95,95.0 +1,1,a-phya-i1,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108 +3.7493333333333334,3.75,a-phya-i1,2023-24,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,797,797.0 +6.368,5,a-phya-i1,2023-24,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +7.091555555555555,5,a-phya-i1,2023-24,Fall River - John J Doran,00950045, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,511,170.33333333333334 +6.9013333333333335,5,a-phya-i1,2023-24,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,618,206.0 +5.752888888888889,5,a-phya-i1,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,632,421.3333333333333 +6.766222222222221,5,a-phya-i1,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,694,231.33333333333334 +6.096,5,a-phya-i1,2023-24,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,714,357.0 +6.256,5,a-phya-i1,2023-24,Fall River - North End Elementary,00950005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,654,327.0 +7.018666666666666,5,a-phya-i1,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,184,184.0 +7.293333333333333,5,a-phya-i1,2023-24,Fall River - Samuel Watson,00950145, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,265,132.5 +5.944888888888889,5,a-phya-i1,2023-24,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,578,385.3333333333333 +7.669333333333333,5,a-phya-i1,2023-24,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,62,62.0 +7.009777777777779,5,a-phya-i1,2023-24,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,557,185.66666666666666 +6.002666666666666,5,a-phya-i1,2023-24,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,749,374.5 +7.205333333333333,5,a-phya-i1,2023-24,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,298,149.0 +6.061333333333334,5,a-phya-i1,2023-24,Falmouth - Falmouth High,00960505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,727,363.5 +5.552,5,a-phya-i1,2023-24,Falmouth - Lawrence,00960405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +5.44,5,a-phya-i1,2023-24,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,480,480.0 +5.994666666666666,5,a-phya-i1,2023-24,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +6.416,5,a-phya-i1,2023-24,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,297,297.0 +6.64,5,a-phya-i1,2023-24,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,255,255.0 +7.312,5,a-phya-i1,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,129,129.0 +6.493333333333333,5,a-phya-i1,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,565,282.5 +6.897777777777779,5,a-phya-i1,2023-24,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,620,206.66666666666666 +5.902222222222223,5,a-phya-i1,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,1180,393.3333333333333 +1,1,a-phya-i1,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226 +3.936,3.94,a-phya-i1,2023-24,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,762,762.0 +6.434666666666667,5,a-phya-i1,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,587,293.5 +6.237333333333333,5,a-phya-i1,2023-24,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,661,330.5 +6.605333333333333,5,a-phya-i1,2023-24,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,523,261.5 +7.546666666666667,5,a-phya-i1,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,85,85.0 +1,1,a-phya-i1,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214 +6.506666666666667,5,a-phya-i1,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,280,280.0 +-2.0933333333333333,1,a-phya-i1,2023-24,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,757,1892.5 +5.161904761904761,5,a-phya-i1,2023-24,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 1.4,745,532.1428571428572 +1,1,a-phya-i1,2023-24,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331 +6.016,5,a-phya-i1,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,372,372.0 +5.104761904761904,5,a-phya-i1,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 1.0, 0.0, 0.0, 0.0, 0.8, 1.0, 2.8,1520,542.8571428571429 +6.245333333333333,5,a-phya-i1,2023-24,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,658,329.0 +5.370666666666667,5,a-phya-i1,2023-24,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,493,493.0 +4.992,4.99,a-phya-i1,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,564,564.0 +5.674666666666667,5,a-phya-i1,2023-24,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +5.737777777777778,5,a-phya-i1,2023-24,Framingham - Framingham High School,01000515, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 6.0,2545,424.1666666666667 +4.992,4.99,a-phya-i1,2023-24,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 +5.477333333333333,5,a-phya-i1,2023-24,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,473,473.0 +5.109333333333334,5,a-phya-i1,2023-24,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +6.153333333333333,5,a-phya-i1,2023-24,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,277,346.25 +5.818666666666667,5,a-phya-i1,2023-24,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +6.112,5,a-phya-i1,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +5.312,5,a-phya-i1,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 +5.1466666666666665,5,a-phya-i1,2023-24,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,535,535.0 +3.84,3.84,a-phya-i1,2023-24,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,780,780.0 +6.026666666666666,5,a-phya-i1,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +6.282666666666667,5,a-phya-i1,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,322,322.0 +7.189333333333333,5,a-phya-i1,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,152,152.0 +3.816,3.82,a-phya-i1,2023-24,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1569,784.5 +5.024,5,a-phya-i1,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,558,558.0 +6.624,5,a-phya-i1,2023-24,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,387,258.0 +6.234666666666667,5,a-phya-i1,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +1,1,a-phya-i1,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333 +3.8826666666666667,3.88,a-phya-i1,2023-24,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,386,772.0 +6.448,5,a-phya-i1,2023-24,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,291,291.0 +6.128,5,a-phya-i1,2023-24,Franklin - Remington Middle,01010310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,351,351.0 +4.688,4.69,a-phya-i1,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,621,621.0 +4.357333333333333,4.36,a-phya-i1,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,683,683.0 +5.498666666666667,5,a-phya-i1,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +5.978666666666666,5,a-phya-i1,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +4.24,4.24,a-phya-i1,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,705,705.0 +5.525333333333333,5,a-phya-i1,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +4.773333333333333,4.77,a-phya-i1,2023-24,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,605,605.0 +7.322666666666667,5,a-phya-i1,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,127,127.0 +5.192,5,a-phya-i1,2023-24,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1053,526.5 +5.842666666666666,5,a-phya-i1,2023-24,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,809,404.5 +7.141333333333334,5,a-phya-i1,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,483,161.0 +7.376,5,a-phya-i1,2023-24,Gateway - Chester Elementary,06720059, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,117,117.0 +6.272,5,a-phya-i1,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,162,324.0 +5.9093333333333335,5,a-phya-i1,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,196,392.0 +6.522666666666667,5,a-phya-i1,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.458666666666667,5,a-phya-i1,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +1,1,a-phya-i1,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189 +6.144,5,a-phya-i1,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,696,348.0 +7.530666666666667,5,a-phya-i1,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,88,88.0 +7.392,5,a-phya-i1,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,114,114.0 +5.472,5,a-phya-i1,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,237,474.0 +7.269333333333333,5,a-phya-i1,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,137,137.0 +6.8693333333333335,5,a-phya-i1,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,212,212.0 +5.8453333333333335,5,a-phya-i1,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,202,404.0 +1,1,a-phya-i1,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502 +6.469333333333333,5,a-phya-i1,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +6.8,5,a-phya-i1,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,450,225.0 +6.206666666666667,5,a-phya-i1,2023-24,Gloucester - Gloucester High,01070505, 0.0, 0.0, 1.4, 0.0, 1.0, 0.0, 0.0, 2.4,807,336.25 +7.392,5,a-phya-i1,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,114,114.0 +6.890666666666666,5,a-phya-i1,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +6.330666666666667,5,a-phya-i1,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,626,313.0 +6.026666666666666,5,a-phya-i1,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +1,1,a-phya-i1,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0 +6.416,5,a-phya-i1,2023-24,Grafton - Grafton High School,01100505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,891,297.0 +6.776,5,a-phya-i1,2023-24,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,459,229.5 +4.858666666666666,4.86,a-phya-i1,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,589,589.0 +6.656,5,a-phya-i1,2023-24,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,252,252.0 +5.475555555555554,5,a-phya-i1,2023-24,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.7, 0.5, 0.0, 0.0, 1.2,568,473.33333333333337 +6.448,5,a-phya-i1,2023-24,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,291,291.0 +-2.72,1,a-phya-i1,2023-24,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,402,2010.0 +6.448,5,a-phya-i1,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 0.0, 1.0,291,291.0 +1.808,1.81,a-phya-i1,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1161,1161.0 +0.304,1,a-phya-i1,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1443,1443.0 +1.692444444444444,1.69,a-phya-i1,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,1774,1182.6666666666667 +4.914666666666666,4.91,a-phya-i1,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 4.0,2314,578.5 +5.137333333333333,5,a-phya-i1,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 4.0,2147,536.75 +6.88,5,a-phya-i1,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,210,210.0 +7.029333333333334,5,a-phya-i1,2023-24,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,182,182.0 +5.610666666666667,5,a-phya-i1,2023-24,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +6.394666666666667,5,a-phya-i1,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +7.024,5,a-phya-i1,2023-24,Greenfield - Newton School,01140035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +7.52,5,a-phya-i1,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,90,90.0 +7.6,5,a-phya-i1,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,75,75.0 +6.645333333333333,5,a-phya-i1,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,508,254.0 +5.83843137254902,5,a-phya-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,689,405.29411764705884 +6.0986666666666665,5,a-phya-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,713,356.5 +6.293333333333333,5,a-phya-i1,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,320,320.0 +6.442666666666667,5,a-phya-i1,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,292,292.0 +6.874666666666666,5,a-phya-i1,2023-24,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,211,211.0 +5.072,5,a-phya-i1,2023-24,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +5.237333333333333,5,a-phya-i1,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,259,518.0 +6.64,5,a-phya-i1,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 1.0,255,255.0 +3.2853333333333334,3.29,a-phya-i1,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,442,884.0 +3.968,3.97,a-phya-i1,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,378,756.0 +4.469333333333333,4.47,a-phya-i1,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,331,662.0 +6.033777777777777,5,a-phya-i1,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,553,368.6666666666667 +1,1,a-phya-i1,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394 +6.528,5,a-phya-i1,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,276,276.0 +6.08,5,a-phya-i1,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +5.384,5,a-phya-i1,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,981,490.5 +6.277333333333333,5,a-phya-i1,2023-24,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,323,323.0 +6.448,5,a-phya-i1,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,291,291.0 +6.204444444444444,5,a-phya-i1,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,606,336.6666666666667 +6.16,5,a-phya-i1,2023-24,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,690,345.0 +7.690666666666667,5,a-phya-i1,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,58,58.0 +1,1,a-phya-i1,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490 +4.650666666666667,4.65,a-phya-i1,2023-24,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,628,628.0 +4.352,4.35,a-phya-i1,2023-24,Hanover - Hanover High,01220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,684,684.0 +3.7333333333333334,3.73,a-phya-i1,2023-24,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,800,800.0 +5.642666666666667,5,a-phya-i1,2023-24,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +6.266666666666667,5,a-phya-i1,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +1,1,a-phya-i1,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252 +6.954666666666666,5,a-phya-i1,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,196,196.0 +7.328,5,a-phya-i1,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,126,126.0 +1,1,a-phya-i1,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41 +1,1,a-phya-i1,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465 +5.1626666666666665,5,a-phya-i1,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1064,532.0 +5.792,5,a-phya-i1,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,828,414.0 +1,1,a-phya-i1,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531 +7.450666666666667,5,a-phya-i1,2023-24,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,103,103.0 +5.461333333333333,5,a-phya-i1,2023-24,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,476,476.0 +1,1,a-phya-i1,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34 +2.6906666666666665,2.69,a-phya-i1,2023-24,Haverhill - Haverhill High,01280505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1991,995.5 +5.344,5,a-phya-i1,2023-24,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,498,498.0 +7.184,5,a-phya-i1,2023-24,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,153,153.0 +7.013333333333334,5,a-phya-i1,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,148,185.0 +5.338666666666667,5,a-phya-i1,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +5.648,5,a-phya-i1,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,441,441.0 +5.621333333333333,5,a-phya-i1,2023-24,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,446,446.0 +6.542222222222222,5,a-phya-i1,2023-24,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,164,273.33333333333337 +7.701333333333333,5,a-phya-i1,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,56,56.0 +1,1,a-phya-i1,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.0, 0.0, 0.0, 0.0, 0.0,95 +1,1,a-phya-i1,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +6.8373333333333335,5,a-phya-i1,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,218,218.0 +5.232,5,a-phya-i1,2023-24,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,519,519.0 +5.066666666666666,5,a-phya-i1,2023-24,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1100,550.0 +5.744,5,a-phya-i1,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,846,423.0 +7.045333333333334,5,a-phya-i1,2023-24,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,358,179.0 +5.370666666666667,5,a-phya-i1,2023-24,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,493,493.0 +5.914666666666666,5,a-phya-i1,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +3.7333333333333334,3.73,a-phya-i1,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,640,800.0 +3.54,3.54,a-phya-i1,2023-24,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,669,836.25 +6.794666666666667,5,a-phya-i1,2023-24,Holland - Holland Elementary,01350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,226,226.0 +4.940952380952381,4.94,a-phya-i1,2023-24,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,803,573.5714285714286 +6.453333333333333,5,a-phya-i1,2023-24,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,580,290.0 +5.967407407407408,5,a-phya-i1,2023-24,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.8,686,381.1111111111111 +4.506666666666667,4.51,a-phya-i1,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,655,655.0 +6.7973333333333334,5,a-phya-i1,2023-24,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,451,225.5 +6.218666666666667,5,a-phya-i1,2023-24,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +6.60711111111111,5,a-phya-i1,2023-24,Holyoke - Holyoke High,01370505, 0.0, 1.0, 0.0, 2.0, 2.0, 1.0, 0.0, 6.0,1567,261.1666666666667 +1,1,a-phya-i1,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +1,1,a-phya-i1,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205 +5.552,5,a-phya-i1,2023-24,Holyoke - Kelly Elementary,01370040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +6.682666666666667,5,a-phya-i1,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,494,247.0 +6.234666666666667,5,a-phya-i1,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +5.706666666666667,5,a-phya-i1,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +6.277333333333333,5,a-phya-i1,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,323,323.0 +6.1546666666666665,5,a-phya-i1,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,692,346.0 +6.026666666666666,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +6.405333333333333,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +6.352,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,309,309.0 +3.232,3.23,a-phya-i1,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,447,894.0 +2.1546666666666665,2.15,a-phya-i1,2023-24,Hopedale - Memorial,01380010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,548,1096.0 +6.8693333333333335,5,a-phya-i1,2023-24,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,106,212.0 +5.16,5,a-phya-i1,2023-24,Hopkinton - Elmwood,01390010, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,639,532.5 +4.991111111111111,4.99,a-phya-i1,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,677,564.1666666666667 +3.5875555555555554,3.59,a-phya-i1,2023-24,Hopkinton - Hopkinton High,01390505, 0.0, 0.2, 0.0, 0.5, 0.8, 0.0, 0.0, 1.5,1241,827.3333333333334 +4.988235294117647,4.99,a-phya-i1,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.2, 0.0, 0.5, 0.0, 1.0, 0.0, 1.7,960,564.7058823529412 +1,1,a-phya-i1,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96 +5.448888888888889,5,a-phya-i1,2023-24,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,574,478.33333333333337 +5.642666666666667,5,a-phya-i1,2023-24,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 +6.472,5,a-phya-i1,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,573,286.5 +6.512,5,a-phya-i1,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,279,279.0 +5.842666666666666,5,a-phya-i1,2023-24,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,809,404.5 +6.736,5,a-phya-i1,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,237,237.0 +6.757333333333333,5,a-phya-i1,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,233,233.0 +5.781333333333333,5,a-phya-i1,2023-24,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,416,416.0 +7.434666666666667,5,a-phya-i1,2023-24,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,106,106.0 +1,1,a-phya-i1,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788 +2.8586666666666667,2.86,a-phya-i1,2023-24,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,482,964.0 +3.925333333333333,3.93,a-phya-i1,2023-24,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,382,764.0 +4.042666666666666,4.04,a-phya-i1,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,371,742.0 +4.064,4.06,a-phya-i1,2023-24,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,369,738.0 +6.424,5,a-phya-i1,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,591,295.5 +6.564444444444444,5,a-phya-i1,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 3.0, 0.0, 2.0, 1.0, 0.0, 6.0,1615,269.1666666666667 +5.905185185185185,5,a-phya-i1,2023-24,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 1.8,707,392.77777777777777 +3.9395555555555553,3.94,a-phya-i1,2023-24,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,1142,761.3333333333334 +4.544,4.54,a-phya-i1,2023-24,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,648,648.0 +4.730666666666667,4.73,a-phya-i1,2023-24,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,613,613.0 +5.781333333333333,5,a-phya-i1,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,416,416.0 +5.034666666666666,5,a-phya-i1,2023-24,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,556,556.0 +1,1,a-phya-i1,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588 +6.189333333333333,5,a-phya-i1,2023-24,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,679,339.5 +5.317333333333333,5,a-phya-i1,2023-24,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +5.429333333333333,5,a-phya-i1,2023-24,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,482,482.0 +6.685333333333333,5,a-phya-i1,2023-24,Lawrence - Frost Middle School,01490525, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,493,246.5 +5.445333333333333,5,a-phya-i1,2023-24,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,479,479.0 +6.762666666666667,5,a-phya-i1,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,464,232.0 +1,1,a-phya-i1,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195 +7.624,5,a-phya-i1,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 4.0,282,70.5 +6.624,5,a-phya-i1,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +6.538666666666667,5,a-phya-i1,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +7.637333333333333,5,a-phya-i1,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,204,68.0 +6.981333333333334,5,a-phya-i1,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,191,191.0 +3.672,3.67,a-phya-i1,2023-24,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 3.0, 0.0, 0.0, 1.0, 0.0, 4.0,3246,811.5 +6.288,5,a-phya-i1,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,321,321.0 +5.536,5,a-phya-i1,2023-24,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +6.1546666666666665,5,a-phya-i1,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,346,346.0 +1,1,a-phya-i1,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590 +1,1,a-phya-i1,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67 +5.088,5,a-phya-i1,2023-24,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,546,546.0 +7.184,5,a-phya-i1,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,153,153.0 +7.424,5,a-phya-i1,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,108,108.0 +0.96,1,a-phya-i1,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,660,1320.0 +5.626666666666667,5,a-phya-i1,2023-24,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +6.437333333333333,5,a-phya-i1,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,879,293.0 +4.442666666666667,4.44,a-phya-i1,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +6.197333333333333,5,a-phya-i1,2023-24,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +6.357333333333333,5,a-phya-i1,2023-24,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +6.071794871794872,5,a-phya-i1,2023-24,Leicester - Leicester Elementary,01510005, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,470,361.53846153846155 +6.371282051282052,5,a-phya-i1,2023-24,Leicester - Leicester High,01510505, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3,397,305.38461538461536 +7.128888888888888,5,a-phya-i1,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,49,163.33333333333334 +6.334358974358974,5,a-phya-i1,2023-24,Leicester - Leicester Middle,01510015, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,406,312.3076923076923 +5.621333333333333,5,a-phya-i1,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +6.2026666666666666,5,a-phya-i1,2023-24,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +7.525333333333333,5,a-phya-i1,2023-24,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,89,89.0 +1,1,a-phya-i1,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807 +1.2586666666666666,1.26,a-phya-i1,2023-24,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,632,1264.0 +1,1,a-phya-i1,2023-24,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485 +6.253333333333333,5,a-phya-i1,2023-24,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,655,327.5 +1,1,a-phya-i1,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65 +5.1386666666666665,5,a-phya-i1,2023-24,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1073,536.5 +1,1,a-phya-i1,2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16 +6.933333333333334,5,a-phya-i1,2023-24,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,40,200.0 +6.216,5,a-phya-i1,2023-24,Leominster - Northwest,01530030, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,669,334.5 +7.258666666666667,5,a-phya-i1,2023-24,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,139,139.0 +4.88,4.88,a-phya-i1,2023-24,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,468,585.0 +5.41037037037037,5,a-phya-i1,2023-24,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,874,485.55555555555554 +7.158518518518518,5,a-phya-i1,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,142,157.77777777777777 +5.717333333333333,5,a-phya-i1,2023-24,Lexington - Bowman,01550008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +6.053333333333334,5,a-phya-i1,2023-24,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,365,365.0 +6.213333333333333,5,a-phya-i1,2023-24,Lexington - Fiske,01550015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +5.984,5,a-phya-i1,2023-24,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,378,378.0 +5.84,5,a-phya-i1,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,810,405.0 +6.408888888888889,5,a-phya-i1,2023-24,Lexington - Joseph Estabrook,01550010, 0.0, 0.8, 0.0, 1.0, 0.0, 0.0, 0.0, 1.8,537,298.3333333333333 +7.549629629629631,5,a-phya-i1,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,76,84.44444444444444 +6.208309178743962,5,a-phya-i1,2023-24,Lexington - Lexington High,01550505, 0.0, 0.0, 1.9, 2.0, 1.0, 1.0, 1.0, 6.9,2318,335.94202898550725 +6.13037037037037,5,a-phya-i1,2023-24,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,631,350.55555555555554 +5.253333333333333,5,a-phya-i1,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,927,515.0 +5.232,5,a-phya-i1,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 +5.365333333333333,5,a-phya-i1,2023-24,Lincoln - Hanscom School,01570305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,494,494.0 +5.125333333333334,5,a-phya-i1,2023-24,Lincoln - Lincoln School,01570025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,539,539.0 +4.101333333333334,4.1,a-phya-i1,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.4, 0.0, 1.6, 0.0, 0.0, 2.0,1462,731.0 +5.402666666666667,5,a-phya-i1,2023-24,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +5.930666666666666,5,a-phya-i1,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,388,388.0 +1,1,a-phya-i1,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356 +5.637333333333333,5,a-phya-i1,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,443,443.0 +7.0,5,a-phya-i1,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,375,187.5 +5.818666666666667,5,a-phya-i1,2023-24,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +6.293333333333333,5,a-phya-i1,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,320,320.0 +5.570666666666667,5,a-phya-i1,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,911,455.5 +6.346666666666667,5,a-phya-i1,2023-24,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,310,310.0 +5.610666666666667,5,a-phya-i1,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +1,1,a-phya-i1,2023-24,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489 +1,1,a-phya-i1,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505 +5.44,5,a-phya-i1,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,480,480.0 +1,1,a-phya-i1,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104 +1,1,a-phya-i1,2023-24,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478 +1,1,a-phya-i1,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436 +1,1,a-phya-i1,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658 +1,1,a-phya-i1,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443 +1,1,a-phya-i1,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58 +1,1,a-phya-i1,2023-24,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457 +1,1,a-phya-i1,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592 +1,1,a-phya-i1,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680 +1,1,a-phya-i1,2023-24,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617 +1,1,a-phya-i1,2023-24,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469 +1,1,a-phya-i1,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429 +1,1,a-phya-i1,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625 +1,1,a-phya-i1,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16 +1,1,a-phya-i1,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +1,1,a-phya-i1,2023-24,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3402 +1,1,a-phya-i1,2023-24,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248 +1,1,a-phya-i1,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452 +1,1,a-phya-i1,2023-24,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461 +1,1,a-phya-i1,2023-24,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464 +1,1,a-phya-i1,2023-24,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858 +5.429333333333333,5,a-phya-i1,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 +1,1,a-phya-i1,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92 +1,1,a-phya-i1,2023-24,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242 +1,1,a-phya-i1,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817 +1,1,a-phya-i1,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106 +6.085333333333334,5,a-phya-i1,2023-24,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 +6.354666666666667,5,a-phya-i1,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,617,308.5 +6.0,5,a-phya-i1,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,750,375.0 +5.1626666666666665,5,a-phya-i1,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,532,532.0 +1,1,a-phya-i1,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7 +1,1,a-phya-i1,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449 +1,1,a-phya-i1,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363 +6.957333333333334,5,a-phya-i1,2023-24,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,391,195.5 +6.026666666666666,5,a-phya-i1,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +5.376,5,a-phya-i1,2023-24,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,492,492.0 +6.784,5,a-phya-i1,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +4.658666666666667,4.66,a-phya-i1,2023-24,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1253,626.5 +6.309333333333333,5,a-phya-i1,2023-24,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,317,317.0 +7.0986666666666665,5,a-phya-i1,2023-24,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,338,169.0 +4.661333333333333,4.66,a-phya-i1,2023-24,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,1878,626.0 +4.677333333333333,4.68,a-phya-i1,2023-24,Lynn - Cobbet Elementary,01630035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +6.309333333333333,5,a-phya-i1,2023-24,Lynn - E J Harrington,01630045, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,634,317.0 +5.722666666666667,5,a-phya-i1,2023-24,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,427,427.0 +7.765333333333333,5,a-phya-i1,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,88,44.0 +7.1626666666666665,5,a-phya-i1,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,157,157.0 +5.381333333333333,5,a-phya-i1,2023-24,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,491,491.0 +4.277333333333333,4.28,a-phya-i1,2023-24,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,698,698.0 +1,1,a-phya-i1,2023-24,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394 +6.848,5,a-phya-i1,2023-24,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +5.237333333333333,5,a-phya-i1,2023-24,Lynn - Lynn English High,01630510, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,2072,518.0 +6.616,5,a-phya-i1,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 1.0, 1.0, 2.0, 0.0, 1.0, 0.0, 1.0, 6.0,1557,259.5 +7.141333333333334,5,a-phya-i1,2023-24,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,161,161.0 +5.104,5,a-phya-i1,2023-24,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,543,543.0 +5.770666666666667,5,a-phya-i1,2023-24,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.554666666666667,5,a-phya-i1,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,271,271.0 +6.293333333333333,5,a-phya-i1,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,1280,320.0 +1,1,a-phya-i1,2023-24,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380 +7.568,5,a-phya-i1,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,81,81.0 +5.616,5,a-phya-i1,2023-24,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +7.872,5,a-phya-i1,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,24,24.0 +5.045333333333334,5,a-phya-i1,2023-24,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,554,554.0 +6.1579487179487185,5,a-phya-i1,2023-24,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,449,345.38461538461536 +1.9093333333333333,1.91,a-phya-i1,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,571,1142.0 +0.43733333333333335,1,a-phya-i1,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,709,1418.0 +1,1,a-phya-i1,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39 +3.541333333333333,3.54,a-phya-i1,2023-24,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,418,836.0 +1,1,a-phya-i1,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, 0.0, 0.0,97 +3.1946666666666665,3.19,a-phya-i1,2023-24,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,901,901.0 +5.586666666666667,5,a-phya-i1,2023-24,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,905,452.5 +5.066666666666666,5,a-phya-i1,2023-24,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,550,550.0 +6.533333333333333,5,a-phya-i1,2023-24,Malden - Linden,01650047, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,825,275.0 +6.661333333333333,5,a-phya-i1,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +4.632888888888889,4.63,a-phya-i1,2023-24,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,1894,631.3333333333334 +5.450666666666667,5,a-phya-i1,2023-24,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,956,478.0 +6.778666666666667,5,a-phya-i1,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,229,229.0 +4.444444444444444,4.44,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,400,666.6666666666667 +4.346666666666667,4.35,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,274,685.0 +6.416,5,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,297,297.0 +6.101333333333334,5,a-phya-i1,2023-24,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,712,356.0 +5.904,5,a-phya-i1,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,786,393.0 +6.032,5,a-phya-i1,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,738,369.0 +5.24,5,a-phya-i1,2023-24,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1035,517.5 +7.466666666666667,5,a-phya-i1,2023-24,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,100,100.0 +6.522666666666667,5,a-phya-i1,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.288,5,a-phya-i1,2023-24,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,321,321.0 +5.642666666666667,5,a-phya-i1,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 +5.41037037037037,5,a-phya-i1,2023-24,Marblehead - Marblehead High,01680505, 0.0, 1.0, 0.0, 0.8, 0.0, 0.0, 0.0, 1.8,874,485.55555555555554 +5.637333333333333,5,a-phya-i1,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,443,443.0 +6.568,5,a-phya-i1,2023-24,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,537,268.5 +7.066666666666666,5,a-phya-i1,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,175,175.0 +5.925333333333334,5,a-phya-i1,2023-24,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +5.482666666666667,5,a-phya-i1,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,944,472.0 +4.506666666666667,4.51,a-phya-i1,2023-24,Marlborough - Charles Jaworek School,01700030, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +6.768,5,a-phya-i1,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +5.269333333333333,5,a-phya-i1,2023-24,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,512,512.0 +3.7546666666666666,3.75,a-phya-i1,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,796,796.0 +5.298666666666667,5,a-phya-i1,2023-24,Marlborough - Marlborough High,01700505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1013,506.5 +6.458666666666667,5,a-phya-i1,2023-24,Marlborough - Richer,01700025, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,578,289.0 +6.554666666666667,5,a-phya-i1,2023-24,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +6.784,5,a-phya-i1,2023-24,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,228,228.0 +5.736,5,a-phya-i1,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.5, 2.0,849,424.5 +6.117333333333334,5,a-phya-i1,2023-24,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 +4.774736842105263,4.77,a-phya-i1,2023-24,Marshfield - Marshfield High,01710505, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 1.9,1149,604.7368421052632 +7.36,5,a-phya-i1,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,120,120.0 +6.792,5,a-phya-i1,2023-24,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,453,226.5 +6.672,5,a-phya-i1,2023-24,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,249,249.0 +4.368,4.37,a-phya-i1,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,681,681.0 +7.533333333333333,5,a-phya-i1,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,175,87.5 +6.101333333333334,5,a-phya-i1,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +5.4,5,a-phya-i1,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,975,487.5 +6.506666666666667,5,a-phya-i1,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,560,280.0 +5.856,5,a-phya-i1,2023-24,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,402,402.0 +4.693333333333333,4.69,a-phya-i1,2023-24,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,620,620.0 +5.824,5,a-phya-i1,2023-24,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +5.8933333333333335,5,a-phya-i1,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,1185,395.0 +1,1,a-phya-i1,2023-24,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +7.093333333333334,5,a-phya-i1,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,170,170.0 +6.047179487179487,5,a-phya-i1,2023-24,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,476,366.15384615384613 +6.244102564102564,5,a-phya-i1,2023-24,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,428,329.2307692307692 +6.781538461538461,5,a-phya-i1,2023-24,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,297,228.46153846153845 +5.8453333333333335,5,a-phya-i1,2023-24,Medfield - Dale Street,01750005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +4.866666666666666,4.87,a-phya-i1,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,705,587.5 +5.802666666666667,5,a-phya-i1,2023-24,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +5.8773333333333335,5,a-phya-i1,2023-24,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +5.771428571428571,5,a-phya-i1,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,585,417.8571428571429 +6.568,5,a-phya-i1,2023-24,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,537,268.5 +7.8,5,a-phya-i1,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,15,37.5 +6.732698412698412,5,a-phya-i1,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.6, 2.1,499,237.61904761904762 +5.696,5,a-phya-i1,2023-24,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +7.196444444444445,5,a-phya-i1,2023-24,Medford - Madeleine Dugger Andrews,01760315, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,452,150.66666666666666 +5.882666666666666,5,a-phya-i1,2023-24,Medford - Medford High,01760505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,1191,397.0 +5.969777777777777,5,a-phya-i1,2023-24,Medford - Milton Fuller Roberts,01760150, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,571,380.6666666666667 +6.834666666666666,5,a-phya-i1,2023-24,Medford - Missituk Elementary School,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,437,218.5 +5.28,5,a-phya-i1,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,510,510.0 +5.989333333333334,5,a-phya-i1,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,377,377.0 +4.762666666666667,4.76,a-phya-i1,2023-24,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,607,607.0 +4.453333333333333,4.45,a-phya-i1,2023-24,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,665,665.0 +6.624,5,a-phya-i1,2023-24,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +1,1,a-phya-i1,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283 +1,1,a-phya-i1,2023-24,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266 +1,1,a-phya-i1,2023-24,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412 +1,1,a-phya-i1,2023-24,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,959 +1,1,a-phya-i1,2023-24,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910 +5.850666666666666,5,a-phya-i1,2023-24,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +5.8613333333333335,5,a-phya-i1,2023-24,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,401,401.0 +5.984,5,a-phya-i1,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.338666666666667,5,a-phya-i1,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,499,499.0 +4.608,4.61,a-phya-i1,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,636,636.0 +5.018666666666666,5,a-phya-i1,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,559,559.0 +5.495757575757576,5,a-phya-i1,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.2, 2.2,1033,469.5454545454545 +5.448888888888889,5,a-phya-i1,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.2, 1.0, 1.0, 0.0, 0.0, 0.2, 2.4,1148,478.33333333333337 +7.237333333333333,5,a-phya-i1,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,143,143.0 +6.256666666666667,5,a-phya-i1,2023-24,Methuen - Marsh Grammar School,01810030, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.2, 3.2,1046,326.875 +3.3987878787878794,3.4,a-phya-i1,2023-24,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.2, 2.2,1898,862.7272727272726 +2.3822222222222216,2.38,a-phya-i1,2023-24,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 1.2,1264,1053.3333333333335 +4.8853333333333335,4.89,a-phya-i1,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,584,584.0 +4.5624242424242425,4.56,a-phya-i1,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,709,644.5454545454545 +-2.8622222222222224,1,a-phya-i1,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,611,2036.6666666666667 +7.321904761904762,5,a-phya-i1,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 1.0, 2.1,267,127.14285714285714 +3.5893333333333333,3.59,a-phya-i1,2023-24,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,827,827.0 +6.48,5,a-phya-i1,2023-24,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +6.4462222222222225,5,a-phya-i1,2023-24,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,437,291.3333333333333 +4.965333333333334,4.97,a-phya-i1,2023-24,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,569,569.0 +5.632,5,a-phya-i1,2023-24,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,444,444.0 +4.541333333333333,4.54,a-phya-i1,2023-24,Milford - Milford High,01850505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1297,648.5 +5.262222222222222,5,a-phya-i1,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,154,513.3333333333334 +5.410666666666667,5,a-phya-i1,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,971,485.5 +5.392,5,a-phya-i1,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,978,489.0 +5.536,5,a-phya-i1,2023-24,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,462,462.0 +6.077333333333334,5,a-phya-i1,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,721,360.5 +5.509333333333333,5,a-phya-i1,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,467,467.0 +6.413333333333333,5,a-phya-i1,2023-24,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,595,297.5 +4.618666666666667,4.62,a-phya-i1,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,317,634.0 +5.141333333333334,5,a-phya-i1,2023-24,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,268,536.0 +1,1,a-phya-i1,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6 +2.88,2.88,a-phya-i1,2023-24,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,960,960.0 +4.874666666666666,4.87,a-phya-i1,2023-24,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +4.741333333333333,4.74,a-phya-i1,2023-24,Milton - Cunningham School,01890007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,611,611.0 +4.682666666666667,4.68,a-phya-i1,2023-24,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,622,622.0 +2.176,2.18,a-phya-i1,2023-24,Milton - Milton High,01890505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1092,1092.0 +5.605333333333333,5,a-phya-i1,2023-24,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,449,449.0 +4.357333333333333,4.36,a-phya-i1,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,683,683.0 +6.581333333333333,5,a-phya-i1,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +7.3133333333333335,5,a-phya-i1,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,103,128.75 +6.405333333333333,5,a-phya-i1,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +7.264,5,a-phya-i1,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,138,138.0 +7.205333333333333,5,a-phya-i1,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,149,149.0 +5.525333333333333,5,a-phya-i1,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,464,464.0 +5.86962962962963,5,a-phya-i1,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.5, 0.0, 1.3, 0.0, 0.0, 1.8,719,399.44444444444446 +6.896,5,a-phya-i1,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,414,207.0 +5.936,5,a-phya-i1,2023-24,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,387,387.0 +6.426666666666667,5,a-phya-i1,2023-24,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,295,295.0 +7.333333333333333,5,a-phya-i1,2023-24,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,125,125.0 +4.192,4.19,a-phya-i1,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1428,714.0 +6.778666666666667,5,a-phya-i1,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,229,229.0 +5.050666666666666,5,a-phya-i1,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 +5.701333333333333,5,a-phya-i1,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,431,431.0 +6.040888888888889,5,a-phya-i1,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.5, 0.5, 0.0, 3.0, 0.5, 0.0, 4.5,1653,367.3333333333333 +7.205333333333333,5,a-phya-i1,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,149,149.0 +1,1,a-phya-i1,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353 +5.882666666666666,5,a-phya-i1,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,397,397.0 +4.8373333333333335,4.84,a-phya-i1,2023-24,Nantucket - Nantucket High,01970505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,593,593.0 +6.1866666666666665,5,a-phya-i1,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +6.048,5,a-phya-i1,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +5.466666666666667,5,a-phya-i1,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +6.368,5,a-phya-i1,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,612,306.0 +5.333333333333333,5,a-phya-i1,2023-24,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,500,500.0 +6.414933333333333,5,a-phya-i1,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 2.5,743,297.2 +5.8933333333333335,5,a-phya-i1,2023-24,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,237,395.0 +7.336,5,a-phya-i1,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,249,124.5 +5.541333333333333,5,a-phya-i1,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 +5.757333333333333,5,a-phya-i1,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,841,420.5 +5.251555555555555,5,a-phya-i1,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 1.5,773,515.3333333333334 +6.373333333333333,5,a-phya-i1,2023-24,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,488,305.0 +5.290666666666667,5,a-phya-i1,2023-24,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,508,508.0 +5.570666666666667,5,a-phya-i1,2023-24,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,911,455.5 +7.728,5,a-phya-i1,2023-24,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,51,51.0 +5.8133333333333335,5,a-phya-i1,2023-24,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,410,410.0 +5.632,5,a-phya-i1,2023-24,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,444,444.0 +4.2816,4.28,a-phya-i1,2023-24,Natick - Natick High,01980505, 0.0, 0.0, 0.6, 0.0, 1.0, 0.9, 0.0, 2.5,1743,697.2 +6.465641025641026,5,a-phya-i1,2023-24,Natick - Wilson Middle,01980310, 0.0, 1.0, 0.0, 0.0, 0.0, 1.6, 0.0, 2.6,748,287.6923076923077 +5.329777777777777,5,a-phya-i1,2023-24,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,751,500.6666666666667 +6.275555555555556,5,a-phya-i1,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,485,323.3333333333333 +5.858461538461539,5,a-phya-i1,2023-24,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 0.0, 1.3,522,401.53846153846155 +6.166153846153846,5,a-phya-i1,2023-24,Needham - High Rock School,01990410, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,447,343.8461538461538 +6.35076923076923,5,a-phya-i1,2023-24,Needham - John Eliot,01990020, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,402,309.2307692307692 +5.781880341880341,5,a-phya-i1,2023-24,Needham - Needham High,01990505, 0.0, 0.0, 0.1, 0.0, 1.7, 1.0, 1.0, 3.9,1622,415.8974358974359 +6.381449275362319,5,a-phya-i1,2023-24,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.1, 2.0, 0.1, 0.0, 0.0, 2.3,698,303.47826086956525 +5.765079365079365,5,a-phya-i1,2023-24,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.1, 1.0, 0.9, 0.0, 0.0, 2.1,880,419.04761904761904 +-1.44,1,a-phya-i1,2023-24,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.3,531,1770.0 +6.198974358974359,5,a-phya-i1,2023-24,Needham - William Mitchell,01990040, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,439,337.6923076923077 +6.097777777777777,5,a-phya-i1,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 1.0, 2.4,856,356.6666666666667 +6.208,5,a-phya-i1,2023-24,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,672,336.0 +6.373333333333333,5,a-phya-i1,2023-24,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,610,305.0 +6.752,5,a-phya-i1,2023-24,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +6.645333333333333,5,a-phya-i1,2023-24,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +7.253333333333333,5,a-phya-i1,2023-24,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,560,140.0 +6.602666666666667,5,a-phya-i1,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +6.592,5,a-phya-i1,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,264,264.0 +6.693333333333333,5,a-phya-i1,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +6.517333333333333,5,a-phya-i1,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,278,278.0 +6.732444444444445,5,a-phya-i1,2023-24,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,713,237.66666666666666 +5.957333333333334,5,a-phya-i1,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,383,383.0 +6.394666666666667,5,a-phya-i1,2023-24,New Bedford - James B Congdon,02010040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +7.410666666666667,5,a-phya-i1,2023-24,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,221,110.5 +6.592,5,a-phya-i1,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,264,264.0 +1,1,a-phya-i1,2023-24,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292 +7.74162962962963,5,a-phya-i1,2023-24,New Bedford - Keith Middle School,02010405, 1.0, 3.0, 5.0, 4.0, 2.0, 1.0, 2.0, 18.0,872,48.44444444444444 +5.795809523809524,5,a-phya-i1,2023-24,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 2.0, 3.0, 0.0, 1.0, 7.0,2893,413.2857142857143 +6.1546666666666665,5,a-phya-i1,2023-24,New Bedford - Normandin Middle School,02010410, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,1038,346.0 +6.599111111111111,5,a-phya-i1,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,788,262.6666666666667 +4.730666666666667,4.73,a-phya-i1,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,613,613.0 +6.906666666666666,5,a-phya-i1,2023-24,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,205,205.0 +7.541333333333333,5,a-phya-i1,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,86,86.0 +7.6817777777777785,5,a-phya-i1,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,179,59.666666666666664 +1,1,a-phya-i1,2023-24,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261 +1,1,a-phya-i1,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730 +7.086666666666667,5,a-phya-i1,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,137,171.25 +6.4,5,a-phya-i1,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,300,300.0 +6.389333333333333,5,a-phya-i1,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,604,302.0 +6.604444444444444,5,a-phya-i1,2023-24,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,785,261.6666666666667 +5.477333333333333,5,a-phya-i1,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +5.952,5,a-phya-i1,2023-24,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,384,384.0 +5.792,5,a-phya-i1,2023-24,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,414,414.0 +6.1066666666666665,5,a-phya-i1,2023-24,Newton - Bowen,02070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +6.1066666666666665,5,a-phya-i1,2023-24,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +5.717333333333333,5,a-phya-i1,2023-24,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +4.096,4.1,a-phya-i1,2023-24,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,732,732.0 +6.08,5,a-phya-i1,2023-24,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +5.685333333333333,5,a-phya-i1,2023-24,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,868,434.0 +6.1386666666666665,5,a-phya-i1,2023-24,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,349,349.0 +6.08,5,a-phya-i1,2023-24,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +6.8693333333333335,5,a-phya-i1,2023-24,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,212,212.0 +6.250666666666667,5,a-phya-i1,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +6.218666666666667,5,a-phya-i1,2023-24,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 +6.032,5,a-phya-i1,2023-24,Newton - Memorial Spaulding,02070105, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +7.013333333333334,5,a-phya-i1,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,185,185.0 +2.352,2.35,a-phya-i1,2023-24,Newton - Newton North High,02070505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,2118,1059.0 +4.6915555555555555,4.69,a-phya-i1,2023-24,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,1861,620.3333333333334 +4.544,4.54,a-phya-i1,2023-24,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,648,648.0 +6.741333333333333,5,a-phya-i1,2023-24,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,236,236.0 +6.709333333333333,5,a-phya-i1,2023-24,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 +6.8533333333333335,5,a-phya-i1,2023-24,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +5.872,5,a-phya-i1,2023-24,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +5.056,5,a-phya-i1,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,552,552.0 +6.261333333333333,5,a-phya-i1,2023-24,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,489,326.0 +4.874666666666666,4.87,a-phya-i1,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +6.8373333333333335,5,a-phya-i1,2023-24,North Adams - Brayton,02090035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 +6.645333333333333,5,a-phya-i1,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +5.52,5,a-phya-i1,2023-24,North Adams - Drury High,02090505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +6.56,5,a-phya-i1,2023-24,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,270,270.0 +6.898666666666666,5,a-phya-i1,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,413,206.5 +5.504,5,a-phya-i1,2023-24,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +6.581333333333333,5,a-phya-i1,2023-24,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +5.973333333333334,5,a-phya-i1,2023-24,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +1,1,a-phya-i1,2023-24,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222 +5.1692307692307695,5,a-phya-i1,2023-24,North Andover - North Andover High,02110505, 0.0, 1.0, 0.0, 1.0, 0.6, 0.0, 0.0, 2.6,1380,530.7692307692307 +5.288,5,a-phya-i1,2023-24,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1017,508.5 +6.309333333333333,5,a-phya-i1,2023-24,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,317,317.0 +5.8293333333333335,5,a-phya-i1,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +6.464,5,a-phya-i1,2023-24,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +6.72,5,a-phya-i1,2023-24,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,240,240.0 +5.1146666666666665,5,a-phya-i1,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +5.1226666666666665,5,a-phya-i1,2023-24,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1079,539.5 +1,1,a-phya-i1,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148 +2.8586666666666667,2.86,a-phya-i1,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,964,964.0 +6.650666666666667,5,a-phya-i1,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,253,253.0 +6.538666666666667,5,a-phya-i1,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +7.290666666666667,5,a-phya-i1,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 +7.1946666666666665,5,a-phya-i1,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,151,151.0 +5.589333333333333,5,a-phya-i1,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,452,452.0 +6.704,5,a-phya-i1,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,486,243.0 +5.476666666666667,5,a-phya-i1,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8, 1.6,757,473.125 +5.706666666666667,5,a-phya-i1,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +7.434666666666667,5,a-phya-i1,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,106,106.0 +4.736,4.74,a-phya-i1,2023-24,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,612,612.0 +6.693333333333333,5,a-phya-i1,2023-24,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,294,245.0 +6.177777777777777,5,a-phya-i1,2023-24,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,410,341.6666666666667 +5.991111111111111,5,a-phya-i1,2023-24,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,452,376.6666666666667 +5.253333333333333,5,a-phya-i1,2023-24,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,618,515.0 +5.586666666666667,5,a-phya-i1,2023-24,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,543,452.5 +6.618666666666667,5,a-phya-i1,2023-24,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,259,259.0 +6.528,5,a-phya-i1,2023-24,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +5.109333333333334,5,a-phya-i1,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +6.517333333333333,5,a-phya-i1,2023-24,Northampton - Leeds,02100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +3.1626666666666665,3.16,a-phya-i1,2023-24,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,907,907.0 +7.378666666666667,5,a-phya-i1,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,233,116.5 +6.482666666666667,5,a-phya-i1,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,569,284.5 +4.816,4.82,a-phya-i1,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1194,597.0 +6.3533333333333335,5,a-phya-i1,2023-24,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,247,308.75 +6.496,5,a-phya-i1,2023-24,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,282,282.0 +6.501333333333333,5,a-phya-i1,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,281,281.0 +6.3,5,a-phya-i1,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,255,318.75 +6.735555555555555,5,a-phya-i1,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.4, 0.0, 2.4,569,237.08333333333334 +5.155555555555555,5,a-phya-i1,2023-24,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 0.0, 1.8,960,533.3333333333334 +5.477333333333333,5,a-phya-i1,2023-24,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +6.56,5,a-phya-i1,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,432,270.0 +4.418666666666667,4.42,a-phya-i1,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1343,671.5 +1,1,a-phya-i1,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520 +6.224,5,a-phya-i1,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +5.1946666666666665,5,a-phya-i1,2023-24,Norton - J C Solmonese,02180015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,526,526.0 +6.384,5,a-phya-i1,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,303,303.0 +4.346666666666667,4.35,a-phya-i1,2023-24,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,685,685.0 +5.018666666666666,5,a-phya-i1,2023-24,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,559,559.0 +5.1146666666666665,5,a-phya-i1,2023-24,Norwell - Grace Farrar Cole,02190005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +4.8213333333333335,4.82,a-phya-i1,2023-24,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,596,596.0 +5.333333333333333,5,a-phya-i1,2023-24,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,500,500.0 +5.152,5,a-phya-i1,2023-24,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,534,534.0 +6.368,5,a-phya-i1,2023-24,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +6.666666666666667,5,a-phya-i1,2023-24,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 +6.752,5,a-phya-i1,2023-24,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +5.890666666666666,5,a-phya-i1,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.5, 0.0, 2.0,791,395.5 +6.309333333333333,5,a-phya-i1,2023-24,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,317,317.0 +7.134358974358974,5,a-phya-i1,2023-24,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.5, 1.5, 0.0, 0.6, 0.0, 2.6,422,162.3076923076923 +6.538666666666667,5,a-phya-i1,2023-24,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +5.464,5,a-phya-i1,2023-24,Norwood - Norwood High,02200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,951,475.5 +5.765333333333333,5,a-phya-i1,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +5.072,5,a-phya-i1,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,549,549.0 +4.746666666666667,4.75,a-phya-i1,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,610,610.0 +5.701333333333333,5,a-phya-i1,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +7.072,5,a-phya-i1,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,348,174.0 +5.210666666666667,5,a-phya-i1,2023-24,Orange - Fisher Hill School,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,523,523.0 +7.242666666666667,5,a-phya-i1,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,142,142.0 +6.272,5,a-phya-i1,2023-24,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +6.288,5,a-phya-i1,2023-24,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,321,321.0 +6.765333333333333,5,a-phya-i1,2023-24,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,463,231.5 +5.946666666666666,5,a-phya-i1,2023-24,Oxford - Oxford Middle,02260405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,385,385.0 +4.928,4.93,a-phya-i1,2023-24,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,576,576.0 +5.285333333333333,5,a-phya-i1,2023-24,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,509,509.0 +4.570666666666667,4.57,a-phya-i1,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,643,643.0 +1,1,a-phya-i1,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376 +1,1,a-phya-i1,2023-24,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349 +1,1,a-phya-i1,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1283 +1,1,a-phya-i1,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295 +1,1,a-phya-i1,2023-24,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384 +1,1,a-phya-i1,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98 +1,1,a-phya-i1,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1420 +1,1,a-phya-i1,2023-24,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474 +1,1,a-phya-i1,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579 +1,1,a-phya-i1,2023-24,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +1,1,a-phya-i1,2023-24,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297 +7.312,5,a-phya-i1,2023-24,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,129,129.0 +5.648,5,a-phya-i1,2023-24,Pembroke - Bryantville Elementary,02310003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,441,441.0 +5.888,5,a-phya-i1,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +5.306666666666667,5,a-phya-i1,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,505,505.0 +6.08,5,a-phya-i1,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +5.616666666666666,5,a-phya-i1,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,715,446.875 +6.973333333333334,5,a-phya-i1,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,231,192.5 +6.551111111111111,5,a-phya-i1,2023-24,Pentucket - Dr John C Page School,07450015, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,326,271.6666666666667 +5.697777777777778,5,a-phya-i1,2023-24,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,518,431.6666666666667 +6.9111111111111105,5,a-phya-i1,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,245,204.16666666666669 +3.5866666666666664,3.59,a-phya-i1,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,331,827.5 +4.173333333333333,4.17,a-phya-i1,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.2, 0.0, 0.6, 0.0, 0.0, 0.0, 0.8,574,717.5 +7.290666666666667,5,a-phya-i1,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 +1,1,a-phya-i1,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, 0.0, 0.0, 0.0,194 +1,1,a-phya-i1,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, 0.0, 0.0, 0.0,114 +1,1,a-phya-i1,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, 0.0, 0.0, 0.0,159 +5.922666666666666,5,a-phya-i1,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,779,389.5 +6.490666666666667,5,a-phya-i1,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,566,283.0 +6.896,5,a-phya-i1,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,207,207.0 +7.104,5,a-phya-i1,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,168,168.0 +6.3933333333333335,5,a-phya-i1,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,241,301.25 +5.056,5,a-phya-i1,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.3, 0.0, 0.1, 0.0, 0.1, 0.0, 0.5, 1.0,552,552.0 +5.872,5,a-phya-i1,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +6.884444444444444,5,a-phya-i1,2023-24,Pittsfield - Allendale,02360010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0, 1.2,251,209.16666666666669 +6.902222222222221,5,a-phya-i1,2023-24,Pittsfield - Crosby,02360065, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,247,205.83333333333334 +1,1,a-phya-i1,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21 +7.84,5,a-phya-i1,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,30,30.0 +6.284444444444444,5,a-phya-i1,2023-24,Pittsfield - Egremont,02360035, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0, 1.2,386,321.6666666666667 +5.642666666666667,5,a-phya-i1,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +6.069333333333334,5,a-phya-i1,2023-24,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +6.069333333333334,5,a-phya-i1,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,724,362.0 +7.164444444444444,5,a-phya-i1,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0, 1.2,188,156.66666666666669 +6.453333333333333,5,a-phya-i1,2023-24,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,348,290.0 +6.88,5,a-phya-i1,2023-24,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,210,210.0 +3.3333333333333335,3.33,a-phya-i1,2023-24,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,875,875.0 +5.168,5,a-phya-i1,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,531,531.0 +6.608,5,a-phya-i1,2023-24,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,261,261.0 +6.777142857142858,5,a-phya-i1,2023-24,Plainville - Anna Ware Jackson,02380010, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 0.0, 1.4,321,229.2857142857143 +6.325333333333333,5,a-phya-i1,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,314,314.0 +1,1,a-phya-i1,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220 +5.957333333333334,5,a-phya-i1,2023-24,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,383,383.0 +6.8373333333333335,5,a-phya-i1,2023-24,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,218,218.0 +5.104,5,a-phya-i1,2023-24,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 +6.544,5,a-phya-i1,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,273,273.0 +5.322666666666667,5,a-phya-i1,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,502,502.0 +6.451555555555556,5,a-phya-i1,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,871,290.3333333333333 +6.832,5,a-phya-i1,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,219,219.0 +4.674666666666667,4.67,a-phya-i1,2023-24,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1247,623.5 +2.6506666666666665,2.65,a-phya-i1,2023-24,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1003,1003.0 +6.758974358974359,5,a-phya-i1,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.6, 0.0, 2.0, 0.0, 0.0, 2.6,605,232.69230769230768 +4.650666666666667,4.65,a-phya-i1,2023-24,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,628,628.0 +6.1706666666666665,5,a-phya-i1,2023-24,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +6.650666666666667,5,a-phya-i1,2023-24,Plympton - Dennett Elementary,02400010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,253,253.0 +6.369777777777777,5,a-phya-i1,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,917,305.6666666666667 +1,1,a-phya-i1,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137 +7.16,5,a-phya-i1,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,189,157.5 +-0.3466666666666667,1,a-phya-i1,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,313,1565.0 +7.915151515151515,5,a-phya-i1,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,35,15.909090909090908 +3.84,3.84,a-phya-i1,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,156,780.0 +6.488,5,a-phya-i1,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,567,283.5 +5.189333333333333,5,a-phya-i1,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,527,527.0 +6.306666666666667,5,a-phya-i1,2023-24,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,381,317.5 +1,1,a-phya-i1,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53 +5.706666666666667,5,a-phya-i1,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,344,430.0 +1,1,a-phya-i1,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170 +6.362666666666667,5,a-phya-i1,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,307,307.0 +6.698666666666667,5,a-phya-i1,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,244,244.0 +7.093333333333334,5,a-phya-i1,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,170,170.0 +5.354666666666667,5,a-phya-i1,2023-24,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,248,496.0 +2.026666666666667,2.03,a-phya-i1,2023-24,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,560,1120.0 +4.384,4.38,a-phya-i1,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,339,678.0 +4.608,4.61,a-phya-i1,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,318,636.0 +4.751515151515152,4.75,a-phya-i1,2023-24,Quincy - Central Middle,02430315, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 0.0, 1.1,670,609.090909090909 +6.218666666666667,5,a-phya-i1,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +-1.4044444444444453,1,a-phya-i1,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,529,1763.3333333333335 +4.416,4.42,a-phya-i1,2023-24,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,336,672.0 +4.976,4.98,a-phya-i1,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,567,567.0 +5.164444444444444,5,a-phya-i1,2023-24,Quincy - Merrymount,02430060, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.6,319,531.6666666666667 +3.6373333333333333,3.64,a-phya-i1,2023-24,Quincy - Montclair,02430065, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,409,818.0 +1,1,a-phya-i1,2023-24,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1508 +3.648,3.65,a-phya-i1,2023-24,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,408,816.0 +2.7626666666666666,2.76,a-phya-i1,2023-24,Quincy - Quincy High,02430505, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,1473,982.0 +4.542222222222222,4.54,a-phya-i1,2023-24,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,389,648.3333333333334 +4.062222222222222,4.06,a-phya-i1,2023-24,Quincy - South West Middle School,02430320, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,443,738.3333333333334 +4.16,4.16,a-phya-i1,2023-24,Quincy - Squantum,02430095, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,360,720.0 +5.2,5,a-phya-i1,2023-24,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,315,525.0 +1,1,a-phya-i1,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504 +6.608,5,a-phya-i1,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +5.466666666666667,5,a-phya-i1,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,475,475.0 +5.824,5,a-phya-i1,2023-24,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +6.533333333333333,5,a-phya-i1,2023-24,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +4.789333333333333,4.79,a-phya-i1,2023-24,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,602,602.0 +4.458666666666667,4.46,a-phya-i1,2023-24,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,664,664.0 +1,1,a-phya-i1,2023-24,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356 +5.850666666666666,5,a-phya-i1,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +6.021333333333334,5,a-phya-i1,2023-24,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,371,371.0 +6.8773333333333335,5,a-phya-i1,2023-24,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,421,210.5 +5.9093333333333335,5,a-phya-i1,2023-24,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +1,1,a-phya-i1,2023-24,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110 +5.91047619047619,5,a-phya-i1,2023-24,Reading - Reading Memorial High,02460505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.8, 0.0, 2.8,1097,391.78571428571433 +5.594666666666667,5,a-phya-i1,2023-24,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +6.672,5,a-phya-i1,2023-24,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +4.96,4.96,a-phya-i1,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,684,570.0 +5.315555555555555,5,a-phya-i1,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,604,503.33333333333337 +5.82,5,a-phya-i1,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.6, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.8,327,408.75 +7.031111111111111,5,a-phya-i1,2023-24,Revere - CityLab Innovation High School,02480520, 0.4, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.6,109,181.66666666666669 +4.933333333333334,4.93,a-phya-i1,2023-24,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,690,575.0 +5.484444444444444,5,a-phya-i1,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,566,471.6666666666667 +5.924444444444444,5,a-phya-i1,2023-24,Revere - Paul Revere,02480050, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,467,389.1666666666667 +4.503333333333333,4.5,a-phya-i1,2023-24,Revere - Revere High,02480505, 0.0, 1.0, 1.2, 0.0, 0.0, 0.0, 1.0, 3.2,2098,655.625 +5.426666666666667,5,a-phya-i1,2023-24,Revere - Rumney Marsh Academy,02480014, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,579,482.5 +5.102222222222222,5,a-phya-i1,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,652,543.3333333333334 +5.475555555555554,5,a-phya-i1,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,568,473.33333333333337 +7.157333333333334,5,a-phya-i1,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,158,158.0 +-8.613333333333333,1,a-phya-i1,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,623,3115.0 +6.464,5,a-phya-i1,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.365333333333333,5,a-phya-i1,2023-24,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,494,494.0 +0.5653333333333334,1,a-phya-i1,2023-24,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,697,1394.0 +4.586666666666667,4.59,a-phya-i1,2023-24,Rockland - Phelps Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,640,640.0 +6.794666666666667,5,a-phya-i1,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,226,226.0 +-2.2577777777777785,1,a-phya-i1,2023-24,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,577,1923.3333333333335 +6.549333333333333,5,a-phya-i1,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +5.589333333333333,5,a-phya-i1,2023-24,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,226,452.0 +6.1546666666666665,5,a-phya-i1,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,173,346.0 +7.674666666666667,5,a-phya-i1,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,61,61.0 +6.786133333333334,5,a-phya-i1,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 5.0,1138,227.6 +6.941333333333334,5,a-phya-i1,2023-24,Salem - Bates,02580003, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,397,198.5 +6.56,5,a-phya-i1,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +1,1,a-phya-i1,2023-24,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254 +7.047619047619048,5,a-phya-i1,2023-24,Salem - Collins Middle,02580305, 0.5, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.5,625,178.57142857142858 +1,1,a-phya-i1,2023-24,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +7.52,5,a-phya-i1,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,45,90.0 +7.456969696969697,5,a-phya-i1,2023-24,Salem - Salem Early Childhood,02580001, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,112,101.81818181818181 +5.592380952380953,5,a-phya-i1,2023-24,Salem - Salem High,02580505, 0.0, 0.1, 2.0, 0.0, 0.0, 0.0, 0.0, 2.1,948,451.4285714285714 +1,1,a-phya-i1,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17 +1,1,a-phya-i1,2023-24,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390 +6.810666666666667,5,a-phya-i1,2023-24,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,446,223.0 +1,1,a-phya-i1,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488 +6.552,5,a-phya-i1,2023-24,Sandwich - Forestdale School,02610002, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,543,271.5 +4.405333333333333,4.41,a-phya-i1,2023-24,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,674,674.0 +5.568,5,a-phya-i1,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,912,456.0 +5.866666666666666,5,a-phya-i1,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,800,400.0 +4.1226666666666665,4.12,a-phya-i1,2023-24,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,727,727.0 +6.354666666666667,5,a-phya-i1,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,617,308.5 +5.514666666666667,5,a-phya-i1,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,466,466.0 +1,1,a-phya-i1,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +6.042666666666666,5,a-phya-i1,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,367,367.0 +6.908444444444445,5,a-phya-i1,2023-24,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,614,204.66666666666666 +6.666666666666667,5,a-phya-i1,2023-24,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,250,250.0 +6.213333333333333,5,a-phya-i1,2023-24,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +4.005333333333334,4.01,a-phya-i1,2023-24,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,749,749.0 +5.706666666666667,5,a-phya-i1,2023-24,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +2.517333333333333,2.52,a-phya-i1,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,514,1028.0 +3.2426666666666666,3.24,a-phya-i1,2023-24,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,446,892.0 +1.8666666666666667,1.87,a-phya-i1,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,575,1150.0 +4.533333333333333,4.53,a-phya-i1,2023-24,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.5, 0.0, 0.8,520,650.0 +1,1,a-phya-i1,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6 +5.658666666666667,5,a-phya-i1,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +5.413333333333333,5,a-phya-i1,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,485,485.0 +5.109333333333334,5,a-phya-i1,2023-24,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,542,542.0 +7.669333333333333,5,a-phya-i1,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,31,62.0 +4.981333333333334,4.98,a-phya-i1,2023-24,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1132,566.0 +1,1,a-phya-i1,2023-24,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807 +4.517333333333333,4.52,a-phya-i1,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1306,653.0 +5.8613333333333335,5,a-phya-i1,2023-24,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,401,401.0 +6.464,5,a-phya-i1,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +6.0728888888888894,5,a-phya-i1,2023-24,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,542,361.3333333333333 +6.378666666666667,5,a-phya-i1,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,608,304.0 +5.047843137254902,5,a-phya-i1,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.7, 0.0, 0.0, 1.7,941,553.5294117647059 +1,1,a-phya-i1,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199 +5.282962962962963,5,a-phya-i1,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,917,509.44444444444446 +5.995733333333334,5,a-phya-i1,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 5.0,1879,375.8 +6.522666666666667,5,a-phya-i1,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.56,5,a-phya-i1,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +7.408,5,a-phya-i1,2023-24,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,111,111.0 +2.528,2.53,a-phya-i1,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1026,1026.0 +4.997333333333334,5.0,a-phya-i1,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,563,563.0 +6.389333333333333,5,a-phya-i1,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,302,302.0 +6.644444444444444,5,a-phya-i1,2023-24,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,305,254.16666666666669 +5.937777777777777,5,a-phya-i1,2023-24,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,464,386.6666666666667 +1.9626666666666666,1.96,a-phya-i1,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.3, 0.0, 0.5,566,1132.0 +6.835555555555555,5,a-phya-i1,2023-24,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,262,218.33333333333334 +3.7333333333333334,3.73,a-phya-i1,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,960,800.0 +6.496,5,a-phya-i1,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,564,282.0 +6.704,5,a-phya-i1,2023-24,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,486,243.0 +6.8,5,a-phya-i1,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +7.386666666666667,5,a-phya-i1,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,230,115.0 +6.018666666666666,5,a-phya-i1,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,743,371.5 +1,1,a-phya-i1,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64 +5.610666666666667,5,a-phya-i1,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 +1,1,a-phya-i1,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +5.559111111111111,5,a-phya-i1,2023-24,Somerville - Somerville High,02740505, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,1373,457.6666666666667 +5.984,5,a-phya-i1,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.850666666666666,5,a-phya-i1,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +5.274666666666667,5,a-phya-i1,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,511,511.0 +6.08,5,a-phya-i1,2023-24,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,360,360.0 +6.586666666666667,5,a-phya-i1,2023-24,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,265,265.0 +5.290666666666667,5,a-phya-i1,2023-24,South Hadley - South Hadley High,02780505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,508,508.0 +4.903111111111111,4.9,a-phya-i1,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,871,580.6666666666666 +5.1866666666666665,5,a-phya-i1,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1055,527.5 +4.442666666666667,4.44,a-phya-i1,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +6.744,5,a-phya-i1,2023-24,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,471,235.5 +6.682666666666667,5,a-phya-i1,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +6.1,5,a-phya-i1,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,285,356.25 +6.053333333333334,5,a-phya-i1,2023-24,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +5.8293333333333335,5,a-phya-i1,2023-24,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +7.245333333333333,5,a-phya-i1,2023-24,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,283,141.5 +6.16,5,a-phya-i1,2023-24,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +1,1,a-phya-i1,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +6.346666666666667,5,a-phya-i1,2023-24,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,465,310.0 +6.4782222222222225,5,a-phya-i1,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,428,285.3333333333333 +6.250666666666667,5,a-phya-i1,2023-24,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +5.160888888888889,5,a-phya-i1,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1597,532.3333333333334 +6.501333333333333,5,a-phya-i1,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 +7.653333333333333,5,a-phya-i1,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,65,65.0 +1,1,a-phya-i1,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11 +1,1,a-phya-i1,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257 +1.6373333333333333,1.64,a-phya-i1,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, 1.0, 0.0, 1.0,1193,1193.0 +6.306666666666667,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 1.2,381,317.5 +6.362666666666667,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,614,307.0 +6.293333333333333,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,320,320.0 +6.234666666666667,5,a-phya-i1,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,331,331.0 +6.682666666666667,5,a-phya-i1,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +5.925333333333334,5,a-phya-i1,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +6.7973333333333334,5,a-phya-i1,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,451,225.5 +6.866666666666666,5,a-phya-i1,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,425,212.5 +6.378666666666667,5,a-phya-i1,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,304,304.0 +1,1,a-phya-i1,2023-24,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224 +7.301333333333333,5,a-phya-i1,2023-24,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,131,131.0 +6.669333333333333,5,a-phya-i1,2023-24,Springfield - Benjamin Swan Elementary,02810085, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,499,249.5 +6.72,5,a-phya-i1,2023-24,Springfield - Brightwood,02810025, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,480,240.0 +6.645333333333333,5,a-phya-i1,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,254,254.0 +7.192,5,a-phya-i1,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,303,151.5 +6.426666666666667,5,a-phya-i1,2023-24,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,295,295.0 +6.997333333333334,5,a-phya-i1,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,188,188.0 +5.045333333333334,5,a-phya-i1,2023-24,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,554,554.0 +6.458666666666667,5,a-phya-i1,2023-24,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,289,289.0 +1,1,a-phya-i1,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231 +6.485333333333333,5,a-phya-i1,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,284,284.0 +6.576,5,a-phya-i1,2023-24,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,267,267.0 +6.634666666666667,5,a-phya-i1,2023-24,Springfield - Frederick Harris,02810080, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,512,256.0 +1,1,a-phya-i1,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28 +1,1,a-phya-i1,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25 +4.677333333333333,4.68,a-phya-i1,2023-24,Springfield - German Gerena Community School,02810195, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +6.421333333333333,5,a-phya-i1,2023-24,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,296,296.0 +7.16,5,a-phya-i1,2023-24,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,315,157.5 +5.173333333333333,5,a-phya-i1,2023-24,Springfield - High School Of Commerce,02810510, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1060,530.0 +6.522666666666667,5,a-phya-i1,2023-24,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.922666666666666,5,a-phya-i1,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,202,202.0 +4.986666666666666,4.99,a-phya-i1,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,565,565.0 +6.042666666666666,5,a-phya-i1,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +5.784,5,a-phya-i1,2023-24,Springfield - John J Duggan Academy,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,831,415.5 +6.602666666666667,5,a-phya-i1,2023-24,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,262,262.0 +1,1,a-phya-i1,2023-24,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287 +7.298666666666667,5,a-phya-i1,2023-24,Springfield - Kiley Prep,02810315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,263,131.5 +6.688,5,a-phya-i1,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,246,246.0 +1,1,a-phya-i1,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7 +6.789333333333333,5,a-phya-i1,2023-24,Springfield - Lincoln,02810120, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,454,227.0 +7.264,5,a-phya-i1,2023-24,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,138,138.0 +6.453333333333333,5,a-phya-i1,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.794666666666667,5,a-phya-i1,2023-24,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,226,226.0 +6.672,5,a-phya-i1,2023-24,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,249,249.0 +6.048,5,a-phya-i1,2023-24,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +5.914666666666666,5,a-phya-i1,2023-24,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +4.826666666666667,4.83,a-phya-i1,2023-24,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,595,595.0 +6.848,5,a-phya-i1,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +5.541333333333333,5,a-phya-i1,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1383,461.0 +6.469333333333333,5,a-phya-i1,2023-24,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +6.346666666666667,5,a-phya-i1,2023-24,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +6.992,5,a-phya-i1,2023-24,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,189,189.0 +4.369777777777778,4.37,a-phya-i1,2023-24,Springfield - Springfield Central High,02810500, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,2042,680.6666666666666 +1,1,a-phya-i1,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221 +5.074666666666666,5,a-phya-i1,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1097,548.5 +1,1,a-phya-i1,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32 +1,1,a-phya-i1,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72 +6.1066666666666665,5,a-phya-i1,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +1,1,a-phya-i1,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +1,1,a-phya-i1,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37 +1,1,a-phya-i1,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78 +7.674666666666667,5,a-phya-i1,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,61,61.0 +6.938666666666666,5,a-phya-i1,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,199,199.0 +1,1,a-phya-i1,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115 +5.397333333333333,5,a-phya-i1,2023-24,Springfield - Sumner Avenue,02810160, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +4.752,4.75,a-phya-i1,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,609,609.0 +6.378666666666667,5,a-phya-i1,2023-24,Springfield - The Springfield Virtual School,02810705, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +6.517333333333333,5,a-phya-i1,2023-24,Springfield - Thomas M Balliet,02810015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.656,5,a-phya-i1,2023-24,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,252,252.0 +6.730666666666667,5,a-phya-i1,2023-24,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,238,238.0 +6.941333333333334,5,a-phya-i1,2023-24,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,397,198.5 +5.9093333333333335,5,a-phya-i1,2023-24,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,392,392.0 +5.738666666666667,5,a-phya-i1,2023-24,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +5.372444444444444,5,a-phya-i1,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,1478,492.6666666666667 +1,1,a-phya-i1,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487 +6.629333333333333,5,a-phya-i1,2023-24,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,257,257.0 +5.904,5,a-phya-i1,2023-24,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +6.112,5,a-phya-i1,2023-24,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,354,354.0 +6.133333333333334,5,a-phya-i1,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,700,350.0 +4.88,4.88,a-phya-i1,2023-24,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,585,585.0 +7.397333333333333,5,a-phya-i1,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,113,113.0 +1,1,a-phya-i1,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252 +6.997333333333334,5,a-phya-i1,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,376,188.0 +5.925333333333334,5,a-phya-i1,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,389,389.0 +5.778666666666667,5,a-phya-i1,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,833,416.5 +6.224,5,a-phya-i1,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +6.437333333333333,5,a-phya-i1,2023-24,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +5.074666666666666,5,a-phya-i1,2023-24,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1097,548.5 +3.1893333333333334,3.19,a-phya-i1,2023-24,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,902,902.0 +5.7973333333333334,5,a-phya-i1,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,826,413.0 +6.422857142857143,5,a-phya-i1,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 1.0, 0.8, 0.0, 0.0, 2.8,828,295.7142857142857 +1,1,a-phya-i1,2023-24,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334 +5.776,5,a-phya-i1,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +5.925333333333334,5,a-phya-i1,2023-24,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +4.954666666666666,4.95,a-phya-i1,2023-24,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,571,571.0 +7.024,5,a-phya-i1,2023-24,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +6.192,5,a-phya-i1,2023-24,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 +7.165333333333334,5,a-phya-i1,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,313,156.5 +6.709333333333333,5,a-phya-i1,2023-24,Sutton - Sutton High School,02900510, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,363,242.0 +1,1,a-phya-i1,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295 +5.802666666666667,5,a-phya-i1,2023-24,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,206,412.0 +4.2026666666666666,4.2,a-phya-i1,2023-24,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,356,712.0 +6.261333333333333,5,a-phya-i1,2023-24,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,163,326.0 +0.896,1,a-phya-i1,2023-24,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,666,1332.0 +0.672,1,a-phya-i1,2023-24,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,687,1374.0 +6.538666666666667,5,a-phya-i1,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +6.56,5,a-phya-i1,2023-24,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +4.938666666666666,4.94,a-phya-i1,2023-24,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,574,574.0 +5.36,5,a-phya-i1,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,495,495.0 +7.045333333333334,5,a-phya-i1,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,179,179.0 +7.314666666666667,5,a-phya-i1,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,257,128.5 +1,1,a-phya-i1,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2907 +5.013333333333334,5,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,560,560.0 +4.464,4.46,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,663,663.0 +1,1,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536 +5.539555555555556,5,a-phya-i1,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 1.1, 0.4, 0.0, 0.0, 1.5,692,461.3333333333333 +4.426666666666667,4.43,a-phya-i1,2023-24,Taunton - East Taunton Elementary,02930010, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,536,670.0 +6.033333333333333,5,a-phya-i1,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,295,368.75 +5.216,5,a-phya-i1,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,261,522.0 +5.081212121212121,5,a-phya-i1,2023-24,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.0, 0.8, 0.0, 0.0, 1.1,602,547.2727272727273 +6.14,5,a-phya-i1,2023-24,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,279,348.75 +4.864,4.86,a-phya-i1,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.8, 0.8, 0.0, 0.0, 1.5,882,588.0 +4.6,4.6,a-phya-i1,2023-24,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,510,637.5 +4.726666666666667,4.73,a-phya-i1,2023-24,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,491,613.75 +5.696,5,a-phya-i1,2023-24,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.4, 0.4, 0.8, 0.0, 1.5,648,432.0 +7.899259259259259,5,a-phya-i1,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.8, 3.0, 0.8, 0.0, 0.0, 4.5,85,18.88888888888889 +1.7623188405797094,1.76,a-phya-i1,2023-24,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.0, 0.8, 0.0, 2.3,2690,1169.5652173913045 +1,1,a-phya-i1,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +5.954666666666666,5,a-phya-i1,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,767,383.5 +6.346666666666667,5,a-phya-i1,2023-24,Tewksbury - Heath-Brook,02950010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,310,310.0 +5.349333333333333,5,a-phya-i1,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,497,497.0 +5.226666666666667,5,a-phya-i1,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,520,520.0 +5.9093333333333335,5,a-phya-i1,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,392,392.0 +6.082666666666666,5,a-phya-i1,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,719,359.5 +6.554666666666667,5,a-phya-i1,2023-24,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,271,271.0 +6.645333333333333,5,a-phya-i1,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +6.096,5,a-phya-i1,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +2.8586666666666667,2.86,a-phya-i1,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,964,964.0 +5.728,5,a-phya-i1,2023-24,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +5.616,5,a-phya-i1,2023-24,Triton - Pine Grove,07730025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +5.8613333333333335,5,a-phya-i1,2023-24,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +4.976,4.98,a-phya-i1,2023-24,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,567,567.0 +6.325333333333333,5,a-phya-i1,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 +7.514666666666667,5,a-phya-i1,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,91,91.0 +5.992,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,753,376.5 +5.76,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,420,420.0 +7.016,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,369,184.5 +7.1146666666666665,5,a-phya-i1,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,166,166.0 +6.458666666666667,5,a-phya-i1,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,578,289.0 +7.610666666666667,5,a-phya-i1,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,73,73.0 +6.266666666666667,5,a-phya-i1,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +3.5946666666666665,3.59,a-phya-i1,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,826,826.0 +1,1,a-phya-i1,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41 +5.157333333333334,5,a-phya-i1,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,533,533.0 +4.896,4.9,a-phya-i1,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +5.461333333333333,5,a-phya-i1,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,476,476.0 +4.72,4.72,a-phya-i1,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,615,615.0 +3.9466666666666668,3.95,a-phya-i1,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,380,760.0 +5.088,5,a-phya-i1,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,273,546.0 +5.466666666666667,5,a-phya-i1,2023-24,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,475,475.0 +2.7946666666666666,2.79,a-phya-i1,2023-24,Wachusett - Dawson,07750020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,488,976.0 +1,1,a-phya-i1,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140 +4.288,4.29,a-phya-i1,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,348,696.0 +4.608,4.61,a-phya-i1,2023-24,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,318,636.0 +2.8906666666666667,2.89,a-phya-i1,2023-24,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,479,958.0 +-0.010666666666666666,1,a-phya-i1,2023-24,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,751,1502.0 +3.968,3.97,a-phya-i1,2023-24,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,378,756.0 +3.392,3.39,a-phya-i1,2023-24,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,432,864.0 +4.234666666666667,4.23,a-phya-i1,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,353,706.0 +-1.9253333333333333,1,a-phya-i1,2023-24,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1861,1861.0 +5.616,5,a-phya-i1,2023-24,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +7.28,5,a-phya-i1,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,135,135.0 +2.3893333333333335,2.39,a-phya-i1,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1052,1052.0 +6.784,5,a-phya-i1,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +5.76,5,a-phya-i1,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,840,420.0 +6.864,5,a-phya-i1,2023-24,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,213,213.0 +6.8,5,a-phya-i1,2023-24,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,450,225.0 +7.504,5,a-phya-i1,2023-24,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,93,93.0 +5.866666666666666,5,a-phya-i1,2023-24,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,400,400.0 +5.84,5,a-phya-i1,2023-24,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,405,405.0 +7.157333333333334,5,a-phya-i1,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,79,158.0 +6.524444444444444,5,a-phya-i1,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,415,276.6666666666667 +5.621333333333333,5,a-phya-i1,2023-24,Walpole - Elm Street School,03070005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,446,446.0 +5.477333333333333,5,a-phya-i1,2023-24,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,473,473.0 +5.498666666666667,5,a-phya-i1,2023-24,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +5.477333333333333,5,a-phya-i1,2023-24,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,946,473.0 +5.888888888888888,5,a-phya-i1,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,475,395.83333333333337 +7.031111111111111,5,a-phya-i1,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,218,181.66666666666669 +6.284444444444444,5,a-phya-i1,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 1.2,386,321.6666666666667 +6.426666666666667,5,a-phya-i1,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 1.0, 0.0, 0.1, 0.0, 0.1, 0.0, 1.2,354,295.0 +6.4775757575757575,5,a-phya-i1,2023-24,Waltham - John F Kennedy Middle,03080404, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1, 0.0, 2.2,628,285.45454545454544 +6.535757575757576,5,a-phya-i1,2023-24,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 2.2,604,274.5454545454545 +6.787878787878788,5,a-phya-i1,2023-24,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.1, 2.0, 0.1, 0.0, 2.2,500,227.27272727272725 +6.435555555555554,5,a-phya-i1,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 1.2,352,293.33333333333337 +4.973333333333334,4.97,a-phya-i1,2023-24,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 1.1, 0.0, 1.1, 0.0, 3.2,1816,567.5 +6.328888888888888,5,a-phya-i1,2023-24,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,376,313.33333333333337 +5.925333333333334,5,a-phya-i1,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +5.488,5,a-phya-i1,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +6.592,5,a-phya-i1,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,264,264.0 +1,1,a-phya-i1,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30 +5.512,5,a-phya-i1,2023-24,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,933,466.5 +5.8453333333333335,5,a-phya-i1,2023-24,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,404,404.0 +4.890666666666666,4.89,a-phya-i1,2023-24,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,583,583.0 +1,1,a-phya-i1,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27 +6.346666666666667,5,a-phya-i1,2023-24,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,310,310.0 +6.08,5,a-phya-i1,2023-24,Watertown - Hosmer,03140020, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,720,360.0 +5.994666666666666,5,a-phya-i1,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,376,376.0 +3.9466666666666668,3.95,a-phya-i1,2023-24,Watertown - Watertown High,03140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,760,760.0 +-6.693333333333333,1,a-phya-i1,2023-24,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,551,2755.0 +5.826666666666667,5,a-phya-i1,2023-24,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,489,407.5 +6.466666666666667,5,a-phya-i1,2023-24,Wayland - Happy Hollow School,03150015, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,345,287.5 +6.324444444444444,5,a-phya-i1,2023-24,Wayland - Loker School,03150020, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,377,314.1666666666667 +1,1,a-phya-i1,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +4.355555555555555,4.36,a-phya-i1,2023-24,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,820,683.3333333333334 +5.035555555555556,5,a-phya-i1,2023-24,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,667,555.8333333333334 +5.78962962962963,5,a-phya-i1,2023-24,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.2, 0.3, 0.5, 0.0, 0.0, 0.9,373,414.44444444444446 +4.737777777777778,4.74,a-phya-i1,2023-24,Webster - Park Avenue Elementary,03160015, 0.0, 0.5, 0.2, 0.5, 0.0, 0.0, 0.0, 1.2,734,611.6666666666667 +4.842666666666666,4.84,a-phya-i1,2023-24,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.7, 0.3, 0.0, 0.0, 0.0, 1.0,592,592.0 +7.248,5,a-phya-i1,2023-24,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,141,141.0 +1,1,a-phya-i1,2023-24,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200 +6.8,5,a-phya-i1,2023-24,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +6.314666666666667,5,a-phya-i1,2023-24,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +6.650666666666667,5,a-phya-i1,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,253,253.0 +7.482666666666667,5,a-phya-i1,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,97,97.0 +7.2026666666666666,5,a-phya-i1,2023-24,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,299,149.5 +6.437333333333333,5,a-phya-i1,2023-24,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,293,293.0 +5.549333333333333,5,a-phya-i1,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,919,459.5 +4.378666666666667,4.38,a-phya-i1,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1358,679.0 +7.514666666666667,5,a-phya-i1,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,91,91.0 +5.573333333333333,5,a-phya-i1,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,455,455.0 +5.610666666666667,5,a-phya-i1,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +6.352,5,a-phya-i1,2023-24,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,309,309.0 +6.261333333333333,5,a-phya-i1,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,326,326.0 +7.013333333333334,5,a-phya-i1,2023-24,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,148,185.0 +3.8733333333333335,3.87,a-phya-i1,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,619,773.75 +2.56,2.56,a-phya-i1,2023-24,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.2,204,1020.0 +4.609523809523809,4.61,a-phya-i1,2023-24,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.7,445,635.7142857142858 +6.415238095238095,5,a-phya-i1,2023-24,West Springfield - Memorial,03320025, 0.0, 0.0, 0.1, 0.6, 0.0, 0.0, 0.0, 0.7,208,297.14285714285717 +6.933333333333334,5,a-phya-i1,2023-24,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.1, 0.5, 0.0, 0.0, 0.7,140,200.0 +5.453333333333333,5,a-phya-i1,2023-24,West Springfield - Philip G Coburn,03320007, 0.5, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 1.2,573,477.5 +6.835555555555555,5,a-phya-i1,2023-24,West Springfield - Tatham,03320040, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.5, 1.2,262,218.33333333333334 +2.6311111111111107,2.63,a-phya-i1,2023-24,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.1, 0.1, 0.0, 1.0, 0.0, 1.2,1208,1006.6666666666667 +0.9447619047619046,1,a-phya-i1,2023-24,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.7,926,1322.857142857143 +6.24,5,a-phya-i1,2023-24,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +5.381333333333333,5,a-phya-i1,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,491,491.0 +6.968,5,a-phya-i1,2023-24,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,387,193.5 +5.664,5,a-phya-i1,2023-24,Westborough - Mill Pond School,03210045, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,876,438.0 +4.794666666666667,4.79,a-phya-i1,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,601,601.0 +4.794666666666667,4.79,a-phya-i1,2023-24,Westborough - Westborough High,03210505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1202,601.0 +7.1030303030303035,5,a-phya-i1,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.1,185,168.18181818181816 +7.287272727272728,5,a-phya-i1,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,147,133.63636363636363 +7.156363636363637,5,a-phya-i1,2023-24,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,174,158.18181818181816 +-10.506666666666666,1,a-phya-i1,2023-24,Westfield - Highland,03250025, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,347,3470.0 +6.409696969696971,5,a-phya-i1,2023-24,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,328,298.18181818181813 +6.467878787878788,5,a-phya-i1,2023-24,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,316,287.27272727272725 +6.5212121212121215,5,a-phya-i1,2023-24,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,305,277.27272727272725 +5.445079365079365,5,a-phya-i1,2023-24,Westfield - Westfield High,03250505, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 2.1,1006,479.04761904761904 +4.683636363636364,4.68,a-phya-i1,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,684,621.8181818181818 +4.576969696969697,4.58,a-phya-i1,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,706,641.8181818181818 +5.343030303030304,5,a-phya-i1,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,548,498.18181818181813 +1,1,a-phya-i1,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62 +7.338666666666667,5,a-phya-i1,2023-24,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,372,124.0 +7.048888888888888,5,a-phya-i1,2023-24,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,535,178.33333333333334 +7.1866666666666665,5,a-phya-i1,2023-24,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,305,152.5 +6.421333333333333,5,a-phya-i1,2023-24,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +1,1,a-phya-i1,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330 +6.373333333333333,5,a-phya-i1,2023-24,Westford - Nabnasset,03260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,305,305.0 +7.629333333333333,5,a-phya-i1,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0,278,69.5 +4.874666666666666,4.87,a-phya-i1,2023-24,Westford - Stony Brook School,03260330, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +2.865777777777778,2.87,a-phya-i1,2023-24,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1444,962.6666666666666 +7.445333333333333,5,a-phya-i1,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,104,104.0 +5.88,5,a-phya-i1,2023-24,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,318,397.5 +6.986666666666666,5,a-phya-i1,2023-24,Weston - Field Elementary School,03300012, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 0.0, 1.6,304,190.0 +3.5866666666666664,3.59,a-phya-i1,2023-24,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,662,827.5 +1,1,a-phya-i1,2023-24,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428 +6.272,5,a-phya-i1,2023-24,Weston - Woodland,03300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +7.050666666666666,5,a-phya-i1,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,178,178.0 +5.610666666666667,5,a-phya-i1,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 +5.653333333333333,5,a-phya-i1,2023-24,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,880,440.0 +1,1,a-phya-i1,2023-24,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314 +4.474666666666667,4.47,a-phya-i1,2023-24,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,661,661.0 +6.533333333333333,5,a-phya-i1,2023-24,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,275,275.0 +5.754666666666667,5,a-phya-i1,2023-24,Westwood - Pine Hill Elementary School,03350030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,421,421.0 +6.587474747474746,5,a-phya-i1,2023-24,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 1.0, 0.3, 2.0, 0.0, 3.3,874,264.8484848484849 +7.725714285714285,5,a-phya-i1,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,36,51.42857142857143 +6.4,5,a-phya-i1,2023-24,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,300,300.0 +6.197333333333333,5,a-phya-i1,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +4.981333333333334,4.98,a-phya-i1,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,283,566.0 +6.912,5,a-phya-i1,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,204,204.0 +6.581333333333333,5,a-phya-i1,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +5.889777777777778,5,a-phya-i1,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,1187,395.6666666666667 +6.416,5,a-phya-i1,2023-24,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +1,1,a-phya-i1,2023-24,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252 +6.128,5,a-phya-i1,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,351,351.0 +1,1,a-phya-i1,2023-24,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328 +5.665333333333334,5,a-phya-i1,2023-24,Weymouth - Weymouth High School,03360505, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 4.0,1751,437.75 +5.952,5,a-phya-i1,2023-24,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,384,384.0 +7.333333333333333,5,a-phya-i1,2023-24,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,125,125.0 +5.738666666666667,5,a-phya-i1,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +5.344,5,a-phya-i1,2023-24,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,498,498.0 +5.68,5,a-phya-i1,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +5.466666666666667,5,a-phya-i1,2023-24,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +1,1,a-phya-i1,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105 +2.458666666666667,2.46,a-phya-i1,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1039,1039.0 +5.296,5,a-phya-i1,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,507,507.0 +4.589333333333333,4.59,a-phya-i1,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1279,639.5 +7.344,5,a-phya-i1,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 0.0, 1.0,123,123.0 +7.232,5,a-phya-i1,2023-24,Wilmington - Boutwell,03420005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,144,144.0 +6.672,5,a-phya-i1,2023-24,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +6.176,5,a-phya-i1,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +6.544,5,a-phya-i1,2023-24,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,273,273.0 +6.365333333333333,5,a-phya-i1,2023-24,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 2.0,613,306.5 +5.917333333333334,5,a-phya-i1,2023-24,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,781,390.5 +6.0906666666666665,5,a-phya-i1,2023-24,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,358,358.0 +6.389333333333333,5,a-phya-i1,2023-24,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,302,302.0 +1,1,a-phya-i1,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20 +6.656,5,a-phya-i1,2023-24,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,252,252.0 +6.453333333333333,5,a-phya-i1,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.528,5,a-phya-i1,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +1,1,a-phya-i1,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79 +5.957333333333334,5,a-phya-i1,2023-24,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,383,383.0 +6.1386666666666665,5,a-phya-i1,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +5.733333333333333,5,a-phya-i1,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,425,425.0 +5.229333333333333,5,a-phya-i1,2023-24,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1039,519.5 +6.197333333333333,5,a-phya-i1,2023-24,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,338,338.0 +5.733333333333333,5,a-phya-i1,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +5.073066666666667,5,a-phya-i1,2023-24,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 0.6, 2.5,1372,548.8 +5.637333333333333,5,a-phya-i1,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,443,443.0 +5.312,5,a-phya-i1,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 +1,1,a-phya-i1,2023-24,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595 +5.744,5,a-phya-i1,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +5.847272727272728,5,a-phya-i1,2023-24,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,444,403.6363636363636 +6.933333333333334,5,a-phya-i1,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 1.0, 0.3, 0.0, 1.0, 0.0, 2.3,460,200.00000000000003 +6.288484848484848,5,a-phya-i1,2023-24,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,353,320.9090909090909 +6.616666666666666,5,a-phya-i1,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 0.0, 1.6,415,259.375 +5.903589743589744,5,a-phya-i1,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 1.3,511,393.07692307692304 +7.049696969696971,5,a-phya-i1,2023-24,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,196,178.18181818181816 +6.361212121212121,5,a-phya-i1,2023-24,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,338,307.27272727272725 +7.010909090909091,5,a-phya-i1,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,204,185.45454545454544 +6.666666666666667,5,a-phya-i1,2023-24,Woburn - Shamrock,03470043, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,275,249.99999999999997 +5.152463768115942,5,a-phya-i1,2023-24,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.3, 1.0, 0.0, 1.0, 2.3,1228,533.9130434782609 +4.890666666666666,4.89,a-phya-i1,2023-24,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,583,583.0 +5.568,5,a-phya-i1,2023-24,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,684,456.0 +2.005333333333333,2.01,a-phya-i1,2023-24,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1124,1124.0 +6.768,5,a-phya-i1,2023-24,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,231,231.0 +6.213333333333333,5,a-phya-i1,2023-24,Worcester - Canterbury,03480045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +6.904,5,a-phya-i1,2023-24,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,411,205.5 +6.538666666666667,5,a-phya-i1,2023-24,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,548,274.0 +5.690666666666667,5,a-phya-i1,2023-24,Worcester - City View,03480053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +5.450666666666667,5,a-phya-i1,2023-24,Worcester - Claremont Academy,03480350, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,478,478.0 +6.608,5,a-phya-i1,2023-24,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,261,261.0 +6.0,5,a-phya-i1,2023-24,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 +4.272,4.27,a-phya-i1,2023-24,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1398,699.0 +6.194871794871794,5,a-phya-i1,2023-24,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.3,440,338.46153846153845 +6.8533333333333335,5,a-phya-i1,2023-24,Worcester - Flagg Street,03480090, 0.0, 1.0, 0.0, 0.3, 0.0, 0.5, 0.0, 1.8,387,215.0 +7.017481481481481,5,a-phya-i1,2023-24,Worcester - Forest Grove Middle,03480415, 0.0, 0.5, 2.0, 1.0, 0.0, 0.0, 1.0, 4.5,829,184.22222222222223 +6.890666666666666,5,a-phya-i1,2023-24,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +7.027555555555555,5,a-phya-i1,2023-24,Worcester - Gates Lane,03480110, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,547,182.33333333333334 +6.656,5,a-phya-i1,2023-24,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,378,252.0 +5.8773333333333335,5,a-phya-i1,2023-24,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,398,398.0 +6.997333333333334,5,a-phya-i1,2023-24,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,376,188.0 +7.330666666666667,5,a-phya-i1,2023-24,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,251,125.5 +5.968,5,a-phya-i1,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +6.474666666666667,5,a-phya-i1,2023-24,Worcester - Lake View,03480145, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,286,286.0 +7.235555555555555,5,a-phya-i1,2023-24,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,215,143.33333333333334 +6.432,5,a-phya-i1,2023-24,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,294,294.0 +6.730666666666667,5,a-phya-i1,2023-24,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,238,238.0 +6.426666666666667,5,a-phya-i1,2023-24,Worcester - Nelson Place,03480200, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,590,295.0 +7.691921568627451,5,a-phya-i1,2023-24,Worcester - Norrback Avenue,03480202, 0.0, 1.5, 3.0, 1.0, 0.0, 3.0, 0.0, 8.5,491,57.76470588235294 +6.990222222222221,5,a-phya-i1,2023-24,Worcester - North High,03480515, 1.0, 3.5, 1.0, 1.0, 0.0, 1.0, 0.0, 7.5,1420,189.33333333333334 +7.237333333333333,5,a-phya-i1,2023-24,Worcester - Quinsigamond,03480210, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 5.0,715,143.0 +5.674666666666667,5,a-phya-i1,2023-24,Worcester - Rice Square,03480215, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +7.29362962962963,5,a-phya-i1,2023-24,Worcester - Roosevelt,03480220, 1.0, 2.5, 0.0, 0.0, 0.0, 1.0, 0.0, 4.5,596,132.44444444444446 +6.635428571428571,5,a-phya-i1,2023-24,Worcester - South High Community,03480520, 0.0, 2.0, 2.0, 1.0, 2.0, 0.0, 0.0, 7.0,1791,255.85714285714286 +7.249777777777779,5,a-phya-i1,2023-24,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 3.0, 1.0, 1.0, 1.0, 0.0, 6.0,844,140.66666666666666 +5.973333333333334,5,a-phya-i1,2023-24,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,380,380.0 +6.1226666666666665,5,a-phya-i1,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 +6.032,5,a-phya-i1,2023-24,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,369,369.0 +6.698666666666667,5,a-phya-i1,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,244,244.0 +5.397333333333333,5,a-phya-i1,2023-24,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +1,1,a-phya-i1,2023-24,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150 +7.546046511627907,5,a-phya-i1,2023-24,Worcester - West Tatnuck,03480260, 0.0, 1.0, 1.0, 1.3, 0.0, 0.0, 1.0, 4.3,366,85.11627906976744 +-18.08,1,a-phya-i1,2023-24,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,489,4890.0 +1,1,a-phya-i1,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406 +6.517333333333333,5,a-phya-i1,2023-24,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,695,278.0 +5.8072380952380955,5,a-phya-i1,2023-24,Worcester - Worcester Technical High,03480605, 0.0, 1.0, 2.0, 0.5, 0.0, 0.0, 0.0, 3.5,1439,411.14285714285717 +7.274666666666667,5,a-phya-i1,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,136,136.0 +7.610666666666667,5,a-phya-i1,2023-24,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6, 0.0, 1.0,73,73.0 +6.026666666666666,5,a-phya-i1,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +6.370666666666667,5,a-phya-i1,2023-24,Wrentham - Delaney,03500003, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,611,305.5 +5.472,5,a-phya-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1422,474.0 +1,1,a-phya-i1,2022-23,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87 +5.077333333333334,5,a-phya-i1,2022-23,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,548,548.0 +4.549333333333333,4.55,a-phya-i1,2022-23,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,647,647.0 +5.221333333333333,5,a-phya-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,521,521.0 +6.213333333333333,5,a-phya-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +1.7733333333333334,1.77,a-phya-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,467,1167.5 +3.7257142857142855,3.73,a-phya-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.1, 2.0, 0.0, 2.1,1683,801.4285714285714 +5.546666666666667,5,a-phya-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1,506,459.99999999999994 +6.172121212121212,5,a-phya-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,377,342.7272727272727 +1,1,a-phya-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107 +6.0218181818181815,5,a-phya-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,408,370.9090909090909 +5.837575757575757,5,a-phya-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,446,405.45454545454544 +5.910303030303031,5,a-phya-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,431,391.8181818181818 +6.303030303030304,5,a-phya-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,350,318.18181818181813 +5.411764705882353,5,a-phya-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.1, 0.6, 0.0, 1.7,825,485.29411764705884 +5.034666666666666,5,a-phya-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,556,556.0 +5.8293333333333335,5,a-phya-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +4.78,4.78,a-phya-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,966,603.75 +7.210666666666667,5,a-phya-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,148,148.0 +2.3893333333333335,2.39,a-phya-i1,2022-23,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1052,1052.0 +1,1,a-phya-i1,2022-23,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518 +1,1,a-phya-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308 +6.213333333333333,5,a-phya-i1,2022-23,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +6.362666666666667,5,a-phya-i1,2022-23,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,307,307.0 +5.269333333333333,5,a-phya-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,512,512.0 +1,1,a-phya-i1,2022-23,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +6.1546666666666665,5,a-phya-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1038,346.0 +1,1,a-phya-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328 +1,1,a-phya-i1,2022-23,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453 +7.76,5,a-phya-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,45,45.0 +1,1,a-phya-i1,2022-23,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584 +6.032,5,a-phya-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,369,369.0 +6.16,5,a-phya-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +6.989333333333334,5,a-phya-i1,2022-23,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,379,189.5 +7.1306666666666665,5,a-phya-i1,2022-23,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,326,163.0 +6.365714285714285,5,a-phya-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 1.0, 2.8,858,306.42857142857144 +1,1,a-phya-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372 +3.6774603174603175,3.68,a-phya-i1,2022-23,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0, 2.1,1702,810.4761904761905 +5.488484848484848,5,a-phya-i1,2022-23,Andover - Andover West Middle,00090310, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1,518,470.9090909090909 +5.367272727272728,5,a-phya-i1,2022-23,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,543,493.63636363636357 +5.7648484848484856,5,a-phya-i1,2022-23,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,461,419.09090909090907 +6.395151515151515,5,a-phya-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,331,300.9090909090909 +5.444848484848485,5,a-phya-i1,2022-23,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,527,479.09090909090907 +7.524848484848485,5,a-phya-i1,2022-23,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,98,89.09090909090908 +5.803636363636364,5,a-phya-i1,2022-23,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.5, 1.1,453,411.8181818181818 +6.590476190476191,5,a-phya-i1,2022-23,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 2.1,555,264.2857142857143 +6.361212121212121,5,a-phya-i1,2022-23,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.1,338,307.27272727272725 +6.525333333333333,5,a-phya-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,553,276.5 +4.867692307692308,4.87,a-phya-i1,2022-23,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,1527,587.3076923076923 +5.733333333333333,5,a-phya-i1,2022-23,Arlington - Brackett,00100010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +5.786666666666667,5,a-phya-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +5.274666666666667,5,a-phya-i1,2022-23,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,511,511.0 +5.882666666666666,5,a-phya-i1,2022-23,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,397,397.0 +5.8613333333333335,5,a-phya-i1,2022-23,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,401,401.0 +6.84,5,a-phya-i1,2022-23,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,435,217.5 +7.765333333333333,5,a-phya-i1,2022-23,Arlington - Menotomy Preschool,00100038, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,88,44.0 +3.082666666666667,3.08,a-phya-i1,2022-23,Arlington - Ottoson Middle,00100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,922,922.0 +6.058666666666666,5,a-phya-i1,2022-23,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,364,364.0 +3.5377777777777775,3.54,a-phya-i1,2022-23,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,502,836.6666666666667 +5.205333333333333,5,a-phya-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,524,524.0 +6.992,5,a-phya-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,189,189.0 +4.490666666666667,4.49,a-phya-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,658,658.0 +5.072,5,a-phya-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +5.925333333333334,5,a-phya-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +4.266666666666667,4.27,a-phya-i1,2022-23,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 1.2,840,700.0 +5.726666666666667,5,a-phya-i1,2022-23,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,682,426.25 +6.282666666666667,5,a-phya-i1,2022-23,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,644,322.0 +6.285333333333333,5,a-phya-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,643,321.5 +7.562666666666667,5,a-phya-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,82,82.0 +4.992,4.99,a-phya-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1128,564.0 +6.474666666666667,5,a-phya-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,572,286.0 +1,1,a-phya-i1,2022-23,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404 +5.712,5,a-phya-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,429,429.0 +7.157333333333334,5,a-phya-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,158,158.0 +5.71911111111111,5,a-phya-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,1283,427.6666666666667 +6.128,5,a-phya-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,351,351.0 +1,1,a-phya-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56 +4.487619047619047,4.49,a-phya-i1,2022-23,Attleboro - Attleboro High,00160505, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.0, 2.8,1844,658.5714285714287 +1,1,a-phya-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40 +2.462222222222221,2.46,a-phya-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,623,1038.3333333333335 +1,1,a-phya-i1,2022-23,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190 +5.818666666666667,5,a-phya-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,409,409.0 +5.6,5,a-phya-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,450,450.0 +7.017777777777777,5,a-phya-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.4, 1.0, 0.0, 0.0, 2.4,442,184.16666666666669 +6.09,5,a-phya-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,573,358.125 +6.016,5,a-phya-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,372,372.0 +4.928,4.93,a-phya-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,576,576.0 +6.261333333333333,5,a-phya-i1,2022-23,Auburn - Auburn Middle,00170305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,652,326.0 +3.514666666666667,3.51,a-phya-i1,2022-23,Auburn - Auburn Senior High,00170505, 0.6, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0,841,841.0 +7.282666666666667,5,a-phya-i1,2022-23,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,269,134.5 +6.709333333333333,5,a-phya-i1,2022-23,Auburn - Pakachoag School,00170025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,242,242.0 +5.045333333333334,5,a-phya-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,554,554.0 +6.197333333333333,5,a-phya-i1,2022-23,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,338,338.0 +5.9093333333333335,5,a-phya-i1,2022-23,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +5.898666666666666,5,a-phya-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +6.042666666666666,5,a-phya-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,367,367.0 +6.1706666666666665,5,a-phya-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +6.581333333333333,5,a-phya-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,532,266.0 +6.71111111111111,5,a-phya-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,290,241.66666666666669 +5.313523809523809,5,a-phya-i1,2022-23,Barnstable - Barnstable High,00200505, 0.0, 0.0, 1.0, 0.0, 0.0, 2.5, 0.0, 3.5,1763,503.7142857142857 +6.611199999999999,5,a-phya-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.5, 0.0, 2.5,651,260.4 +6.04,5,a-phya-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,735,367.5 +6.902222222222221,5,a-phya-i1,2022-23,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,247,205.83333333333334 +7.1626666666666665,5,a-phya-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,157,157.0 +6.533333333333333,5,a-phya-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,330,275.0 +6.826666666666667,5,a-phya-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,264,220.0 +6.217777777777777,5,a-phya-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,401,334.1666666666667 +1,1,a-phya-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402 +3.514666666666667,3.51,a-phya-i1,2022-23,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,841,841.0 +5.105454545454546,5,a-phya-i1,2022-23,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 1.1,597,542.7272727272726 +6.286666666666667,5,a-phya-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 0.0, 1.6,514,321.25 +1,1,a-phya-i1,2022-23,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587 +5.573333333333333,5,a-phya-i1,2022-23,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,637,455.00000000000006 +6.163809523809524,5,a-phya-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,482,344.28571428571433 +7.260952380952381,5,a-phya-i1,2022-23,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,194,138.57142857142858 +6.7123809523809514,5,a-phya-i1,2022-23,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,338,241.42857142857144 +6.946666666666666,5,a-phya-i1,2022-23,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.2, 0.0, 2.2, 0.0, 2.4,474,197.5 +1,1,a-phya-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100 +4.016,4.02,a-phya-i1,2022-23,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,747,747.0 +4.8693333333333335,4.87,a-phya-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,587,587.0 +6.4,5,a-phya-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,300,300.0 +1,1,a-phya-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28 +6.693333333333333,5,a-phya-i1,2022-23,Bellingham - Stall Brook,00250025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +5.202051282051282,5,a-phya-i1,2022-23,Belmont - Belmont High,00260505, 0.0, 0.6, 0.0, 1.0, 0.0, 1.0, 0.0, 2.6,1364,524.6153846153846 +6.218666666666667,5,a-phya-i1,2022-23,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +6.208,5,a-phya-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +6.402962962962963,5,a-phya-i1,2022-23,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.4, 1.8,539,299.44444444444446 +5.685333333333333,5,a-phya-i1,2022-23,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,434,434.0 +4.344,4.34,a-phya-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1371,685.5 +1,1,a-phya-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332 +5.701333333333333,5,a-phya-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,862,431.0 +2.8906666666666667,2.89,a-phya-i1,2022-23,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,479,958.0 +4.021333333333334,4.02,a-phya-i1,2022-23,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,373,746.0 +6.314666666666667,5,a-phya-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +5.482666666666667,5,a-phya-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,472,472.0 +6.016,5,a-phya-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,372,372.0 +6.266666666666667,5,a-phya-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,325,325.0 +6.826666666666667,5,a-phya-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,220,220.0 +6.2026666666666666,5,a-phya-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,337,337.0 +1,1,a-phya-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515 +6.128484848484848,5,a-phya-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,386,350.9090909090909 +6.146306306306307,5,a-phya-i1,2022-23,Beverly - Beverly High,00300505, 0.0, 0.0, 1.0, 0.0, 2.1, 0.6, 0.0, 3.7,1286,347.56756756756755 +1.3721212121212132,1.37,a-phya-i1,2022-23,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,1367,1242.7272727272725 +6.463030303030304,5,a-phya-i1,2022-23,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,317,288.18181818181813 +7.279139784946238,5,a-phya-i1,2022-23,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.0, 0.1, 2.0, 0.0, 3.1,419,135.16129032258064 +-9.6,1,a-phya-i1,2022-23,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,330,3300.0 +1.3333333333333333,1.33,a-phya-i1,2022-23,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,125,1250.0 +6.327272727272728,5,a-phya-i1,2022-23,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,345,313.6363636363636 +4.931555555555556,4.93,a-phya-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,1726,575.3333333333334 +6.506666666666667,5,a-phya-i1,2022-23,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,280,280.0 +6.0,5,a-phya-i1,2022-23,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +6.378666666666667,5,a-phya-i1,2022-23,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +1,1,a-phya-i1,2022-23,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549 +6.389333333333333,5,a-phya-i1,2022-23,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,604,302.0 +1,1,a-phya-i1,2022-23,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427 +1,1,a-phya-i1,2022-23,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557 +1,1,a-phya-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1230 +5.269333333333333,5,a-phya-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,256,512.0 +1,1,a-phya-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396 +6.1706666666666665,5,a-phya-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,343,343.0 +7.418666666666667,5,a-phya-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,109,109.0 +1,1,a-phya-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364 +4.728888888888888,4.73,a-phya-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,920,613.3333333333334 +6.672,5,a-phya-i1,2022-23,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +7.424,5,a-phya-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,108,108.0 +6.773333333333333,5,a-phya-i1,2022-23,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 +7.541333333333333,5,a-phya-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,172,86.0 +6.522666666666667,5,a-phya-i1,2022-23,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,277,277.0 +6.597333333333333,5,a-phya-i1,2022-23,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,263,263.0 +6.568,5,a-phya-i1,2022-23,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,537,268.5 +7.354666666666667,5,a-phya-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,121,121.0 +5.365333333333333,5,a-phya-i1,2022-23,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,494,494.0 +1,1,a-phya-i1,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178 +6.405333333333333,5,a-phya-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,598,299.0 +5.482666666666667,5,a-phya-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,472,472.0 +3.4053333333333335,3.41,a-phya-i1,2022-23,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1723,861.5 +4.769333333333333,4.77,a-phya-i1,2022-23,Boston - Boston Latin School,00350560, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,2423,605.75 +6.405333333333333,5,a-phya-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,299,299.0 +6.458666666666667,5,a-phya-i1,2022-23,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,289,289.0 +6.581333333333333,5,a-phya-i1,2022-23,Boston - Brighton High School,00350505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,532,266.0 +5.76,5,a-phya-i1,2022-23,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,420,420.0 +7.930666666666666,5,a-phya-i1,2022-23,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,26,13.0 +6.992,5,a-phya-i1,2022-23,Boston - Channing Elementary School,00350360, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,189,189.0 +5.184,5,a-phya-i1,2022-23,Boston - Charlestown High School,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,792,528.0 +6.762666666666667,5,a-phya-i1,2022-23,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,232,232.0 +7.413333333333333,5,a-phya-i1,2022-23,Boston - Clap Elementary School,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,110,110.0 +7.706666666666667,5,a-phya-i1,2022-23,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,55,55.0 +7.074666666666666,5,a-phya-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,347,173.5 +6.645333333333333,5,a-phya-i1,2022-23,Boston - Condon K-8 School,00350146, 0.0, 1.0, 0.0, 0.5, 1.0, 0.0, 0.0, 2.5,635,254.0 +7.1306666666666665,5,a-phya-i1,2022-23,Boston - Conley Elementary School,00350122, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,163,163.0 +5.517333333333333,5,a-phya-i1,2022-23,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,931,465.5 +5.1146666666666665,5,a-phya-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +6.005333333333334,5,a-phya-i1,2022-23,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +7.002666666666666,5,a-phya-i1,2022-23,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,187,187.0 +4.597333333333333,4.6,a-phya-i1,2022-23,Boston - East Boston High School,00350530, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1276,638.0 +6.352,5,a-phya-i1,2022-23,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,618,309.0 +6.5617777777777775,5,a-phya-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,809,269.6666666666667 +6.304,5,a-phya-i1,2022-23,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,318,318.0 +6.981333333333334,5,a-phya-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,191,191.0 +5.685333333333333,5,a-phya-i1,2022-23,Boston - English High School,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,651,434.0 +6.565333333333333,5,a-phya-i1,2022-23,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,269,269.0 +5.685333333333333,5,a-phya-i1,2022-23,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,434,434.0 +5.989333333333334,5,a-phya-i1,2022-23,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +6.277333333333333,5,a-phya-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,323,323.0 +5.941333333333334,5,a-phya-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,386,386.0 +7.52,5,a-phya-i1,2022-23,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,90,90.0 +7.002666666666666,5,a-phya-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,374,187.0 +6.8693333333333335,5,a-phya-i1,2022-23,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,212,212.0 +6.661333333333333,5,a-phya-i1,2022-23,Boston - Guild Elementary School,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +7.549333333333333,5,a-phya-i1,2022-23,Boston - Hale Elementary School,00350243, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,169,84.5 +6.021333333333334,5,a-phya-i1,2022-23,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +6.176,5,a-phya-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +6.917333333333334,5,a-phya-i1,2022-23,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,203,203.0 +7.715047619047619,5,a-phya-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 0.0, 1.0, 1.0, 1.5, 0.0, 0.0, 3.5,187,53.42857142857143 +5.632,5,a-phya-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,666,444.0 +6.914133333333334,5,a-phya-i1,2022-23,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.5, 0.0, 2.5,509,203.6 +5.733333333333333,5,a-phya-i1,2022-23,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +7.36,5,a-phya-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,120,120.0 +7.056,5,a-phya-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,177,177.0 +6.506666666666667,5,a-phya-i1,2022-23,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,280,280.0 +7.626666666666667,5,a-phya-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,70,70.0 +6.1226666666666665,5,a-phya-i1,2022-23,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +6.0,5,a-phya-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +6.592,5,a-phya-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,264,264.0 +6.314666666666667,5,a-phya-i1,2022-23,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,316,316.0 +6.944,5,a-phya-i1,2022-23,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,396,198.0 +5.642666666666667,5,a-phya-i1,2022-23,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +7.501333333333333,5,a-phya-i1,2022-23,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,187,93.5 +6.557333333333333,5,a-phya-i1,2022-23,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,541,270.5 +1,1,a-phya-i1,2022-23,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586 +7.381333333333333,5,a-phya-i1,2022-23,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,116,116.0 +7.664,5,a-phya-i1,2022-23,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,126,63.0 +6.067555555555556,5,a-phya-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,1087,362.3333333333333 +7.1466666666666665,5,a-phya-i1,2022-23,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,160,160.0 +6.325333333333333,5,a-phya-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,314,314.0 +4.9013333333333335,4.9,a-phya-i1,2022-23,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,581,581.0 +6.997333333333334,5,a-phya-i1,2022-23,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,188,188.0 +5.413333333333333,5,a-phya-i1,2022-23,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,485,485.0 +5.424,5,a-phya-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,483,483.0 +6.184,5,a-phya-i1,2022-23,Boston - McKay K-8 School,00350080, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,681,340.5 +7.789333333333333,5,a-phya-i1,2022-23,Boston - McKinley Schools,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 4.0,158,39.5 +6.336,5,a-phya-i1,2022-23,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,312,312.0 +5.802666666666667,5,a-phya-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,618,412.0 +7.061333333333334,5,a-phya-i1,2022-23,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,176,176.0 +3.541333333333333,3.54,a-phya-i1,2022-23,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,836,836.0 +1,1,a-phya-i1,2022-23,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614 +-0.35733333333333334,1,a-phya-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1567,1567.0 +6.501333333333333,5,a-phya-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 +5.594666666666667,5,a-phya-i1,2022-23,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +6.069333333333334,5,a-phya-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,724,362.0 +5.792,5,a-phya-i1,2022-23,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,414,414.0 +1,1,a-phya-i1,2022-23,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158 +7.029333333333334,5,a-phya-i1,2022-23,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,182,182.0 +7.696,5,a-phya-i1,2022-23,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,114,57.0 +6.688,5,a-phya-i1,2022-23,Boston - Quincy Elementary School,00350286, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,738,246.0 +7.057777777777779,5,a-phya-i1,2022-23,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,530,176.66666666666666 +6.1066666666666665,5,a-phya-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +6.064,5,a-phya-i1,2022-23,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 +1,1,a-phya-i1,2022-23,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187 +1,1,a-phya-i1,2022-23,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463 +6.565333333333333,5,a-phya-i1,2022-23,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,538,269.0 +6.0906666666666665,5,a-phya-i1,2022-23,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +1,1,a-phya-i1,2022-23,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871 +5.728,5,a-phya-i1,2022-23,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +6.416,5,a-phya-i1,2022-23,Boston - Trotter Elementary School,00350370, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +6.949333333333334,5,a-phya-i1,2022-23,Boston - Tynan Elementary School,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,197,197.0 +1,1,a-phya-i1,2022-23,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636 +5.210666666666667,5,a-phya-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,523,523.0 +1,1,a-phya-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111 +6.197333333333333,5,a-phya-i1,2022-23,Boston - Winship Elementary School,00350374, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +1,1,a-phya-i1,2022-23,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237 +6.712,5,a-phya-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,483,241.5 +6.1386666666666665,5,a-phya-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,698,349.0 +7.144,5,a-phya-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,321,160.5 +5.461333333333333,5,a-phya-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +4.293333333333333,4.29,a-phya-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,695,695.0 +5.541333333333333,5,a-phya-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,922,461.0 +6.128,5,a-phya-i1,2022-23,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,351,351.0 +6.026666666666666,5,a-phya-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,370,370.0 +5.701333333333333,5,a-phya-i1,2022-23,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,431,431.0 +6.928,5,a-phya-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,402,201.0 +6.144,5,a-phya-i1,2022-23,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +6.293333333333333,5,a-phya-i1,2022-23,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,384,320.0 +6.373333333333333,5,a-phya-i1,2022-23,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,305,305.0 +6.483555555555556,5,a-phya-i1,2022-23,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 0.0, 6.0,1706,284.3333333333333 +6.9013333333333335,5,a-phya-i1,2022-23,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,206,206.0 +3.684444444444444,3.68,a-phya-i1,2022-23,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6, 0.0, 1.2,971,809.1666666666667 +6.9093333333333335,5,a-phya-i1,2022-23,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,409,204.5 +6.224,5,a-phya-i1,2022-23,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,333,333.0 +6.021333333333334,5,a-phya-i1,2022-23,Braintree - Liberty,00400025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +6.453333333333333,5,a-phya-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +1,1,a-phya-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200 +6.629333333333333,5,a-phya-i1,2022-23,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,514,257.0 +6.928,5,a-phya-i1,2022-23,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,201,201.0 +6.773333333333333,5,a-phya-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 +6.218666666666667,5,a-phya-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +6.201212121212121,5,a-phya-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 0.0, 2.2,742,337.27272727272725 +5.683333333333334,5,a-phya-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.2, 2.0, 0.0, 1.0, 0.0, 3.2,1390,434.375 +5.57090909090909,5,a-phya-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,501,455.45454545454544 +6.293333333333333,5,a-phya-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,352,320.0 +5.68,5,a-phya-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.2, 0.0, 1.0, 0.0, 0.0, 2.2,957,434.99999999999994 +4.777777777777778,4.78,a-phya-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,725,604.1666666666667 +1,1,a-phya-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +5.965714285714286,5,a-phya-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.1, 0.0, 1.0, 0.0, 0.0, 2.1,801,381.4285714285714 +6.469333333333333,5,a-phya-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +5.072,5,a-phya-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,549,549.0 +5.67111111111111,5,a-phya-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,1310,436.6666666666667 +5.610666666666667,5,a-phya-i1,2022-23,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +6.778666666666667,5,a-phya-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,229,229.0 +7.7056,5,a-phya-i1,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.5, 0.0, 2.5,138,55.2 +4.729777777777778,4.73,a-phya-i1,2022-23,Brockton - Brockton High,00440505, 0.0, 1.0, 0.0, 2.0, 3.0, 0.0, 0.0, 6.0,3679,613.1666666666666 +6.1546666666666665,5,a-phya-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,173,346.0 +5.701333333333333,5,a-phya-i1,2022-23,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,431,431.0 +6.421333333333333,5,a-phya-i1,2022-23,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,592,296.0 +6.013333333333334,5,a-phya-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,745,372.5 +6.39288888888889,5,a-phya-i1,2022-23,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,452,301.3333333333333 +5.52,5,a-phya-i1,2022-23,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,930,465.0 +7.196666666666666,5,a-phya-i1,2022-23,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,241,150.625 +5.850666666666666,5,a-phya-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +4.714666666666667,4.71,a-phya-i1,2022-23,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,616,616.0 +1,1,a-phya-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49 +5.264,5,a-phya-i1,2022-23,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,513,513.0 +5.890666666666666,5,a-phya-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,791,395.5 +5.882666666666666,5,a-phya-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.5, 2.0,794,397.0 +6.564266666666667,5,a-phya-i1,2022-23,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.5, 2.0, 0.0, 0.0, 0.0, 2.5,673,269.2 +5.610666666666667,5,a-phya-i1,2022-23,Brockton - North Middle School,00440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +5.169777777777778,5,a-phya-i1,2022-23,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 1.5,796,530.6666666666666 +7.594666666666667,5,a-phya-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,38,76.0 +6.261333333333333,5,a-phya-i1,2022-23,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,652,326.0 +2.474666666666667,2.47,a-phya-i1,2022-23,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,518,1036.0 +4.699259259259259,4.7,a-phya-i1,2022-23,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,557,618.8888888888889 +5.036,5,a-phya-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 4.0,2223,555.75 +6.448,5,a-phya-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,291,291.0 +7.111111111111111,5,a-phya-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,50,166.66666666666669 +7.620740740740741,5,a-phya-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.3, 0.0, 0.0, 0.6, 0.0, 0.9,64,71.11111111111111 +7.075555555555555,5,a-phya-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,52,173.33333333333334 +4.726274509803921,4.73,a-phya-i1,2022-23,Brookline - Brookline High,00460505, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.4, 3.4,2087,613.8235294117648 +6.843870967741935,5,a-phya-i1,2022-23,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.1, 1.0, 1.0, 0.0, 0.0, 3.1,672,216.7741935483871 +5.838730158730159,5,a-phya-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.0, 2.1,851,405.23809523809524 +6.116923076923077,5,a-phya-i1,2022-23,Brookline - Heath,00460025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.2, 0.0, 1.3,459,353.07692307692304 +-19.093333333333334,1,a-phya-i1,2022-23,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,508,5080.0 +6.857931034482759,5,a-phya-i1,2022-23,Brookline - Lawrence,00460030, 0.0, 0.0, 0.1, 1.0, 0.8, 0.0, 1.0, 2.9,621,214.13793103448276 +5.789090909090909,5,a-phya-i1,2022-23,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,456,414.5454545454545 +6.787096774193548,5,a-phya-i1,2022-23,Brookline - Pierce,00460040, 0.0, 0.0, 1.1, 1.0, 0.0, 0.0, 1.0, 3.1,705,227.41935483870967 +7.777777777777779,5,a-phya-i1,2022-23,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.3, 0.0, 0.9, 0.0, 0.0, 1.2,50,41.66666666666667 +6.768253968253968,5,a-phya-i1,2022-23,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.1, 0.0, 0.0, 2.0, 0.0, 2.1,485,230.95238095238093 +6.272,5,a-phya-i1,2022-23,Burlington - Burlington High,00480505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,972,324.0 +7.1847619047619045,5,a-phya-i1,2022-23,Burlington - Fox Hill,00480007, 0.0, 0.3, 2.0, 0.5, 0.0, 0.0, 0.0, 2.8,428,152.85714285714286 +7.060952380952382,5,a-phya-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,493,176.07142857142858 +5.8213333333333335,5,a-phya-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,817,408.5 +6.832592592592593,5,a-phya-i1,2022-23,Burlington - Memorial,00480015, 0.0, 0.3, 0.0, 0.5, 0.0, 1.0, 0.0, 1.8,394,218.88888888888889 +7.087407407407407,5,a-phya-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 0.0, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 1.8,308,171.11111111111111 +1,1,a-phya-i1,2022-23,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407 +1,1,a-phya-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1867 +1,1,a-phya-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +1,1,a-phya-i1,2022-23,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255 +1,1,a-phya-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254 +1,1,a-phya-i1,2022-23,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362 +1,1,a-phya-i1,2022-23,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,232 +1,1,a-phya-i1,2022-23,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320 +1,1,a-phya-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184 +1,1,a-phya-i1,2022-23,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371 +1,1,a-phya-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340 +1,1,a-phya-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332 +1,1,a-phya-i1,2022-23,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294 +1,1,a-phya-i1,2022-23,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318 +1,1,a-phya-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251 +1,1,a-phya-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274 +1,1,a-phya-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273 +5.321481481481482,5,a-phya-i1,2022-23,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 1.8,904,502.22222222222223 +5.562666666666667,5,a-phya-i1,2022-23,Canton - Dean S Luce,00500020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +5.493333333333333,5,a-phya-i1,2022-23,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,470,470.0 +6.544,5,a-phya-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,546,273.0 +7.525333333333333,5,a-phya-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,89,89.0 +5.992,5,a-phya-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,753,376.5 +6.666666666666667,5,a-phya-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 +6.224,5,a-phya-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,666,333.0 +4.794666666666667,4.79,a-phya-i1,2022-23,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,601,601.0 +5.938666666666666,5,a-phya-i1,2022-23,Carver - Carver Elementary School,00520015, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,773,386.5 +5.994666666666666,5,a-phya-i1,2022-23,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,752,376.0 +7.407407407407407,5,a-phya-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,100,111.11111111111111 +5.621333333333333,5,a-phya-i1,2022-23,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +7.141333333333334,5,a-phya-i1,2022-23,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,161,161.0 +6.16,5,a-phya-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +5.413333333333333,5,a-phya-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,485,485.0 +5.328,5,a-phya-i1,2022-23,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,501,501.0 +5.413333333333333,5,a-phya-i1,2022-23,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,485,485.0 +5.488,5,a-phya-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +4.354666666666667,4.35,a-phya-i1,2022-23,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1367,683.5 +4.144,4.14,a-phya-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,723,723.0 +6.928,5,a-phya-i1,2022-23,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,201,201.0 +3.498666666666667,3.5,a-phya-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,844,844.0 +5.530666666666667,5,a-phya-i1,2022-23,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,463,463.0 +-2.74,1,a-phya-i1,2022-23,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,1611,2013.75 +4.933333333333334,4.93,a-phya-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,115,575.0 +1,1,a-phya-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +0.8426666666666667,1,a-phya-i1,2022-23,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,671,1342.0 +2.688,2.69,a-phya-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,498,996.0 +3.1893333333333334,3.19,a-phya-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,451,902.0 +2.72,2.72,a-phya-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,495,990.0 +2.9013333333333335,2.9,a-phya-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,478,956.0 +2.5493333333333332,2.55,a-phya-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,511,1022.0 +-0.7786666666666666,1,a-phya-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,823,1646.0 +1,1,a-phya-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453 +7.033333333333333,5,a-phya-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,145,181.25 +6.466666666666667,5,a-phya-i1,2022-23,Chicopee - Barry,00610003, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,345,287.5 +7.004444444444444,5,a-phya-i1,2022-23,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,224,186.66666666666669 +6.118787878787879,5,a-phya-i1,2022-23,Chicopee - Bellamy Middle,00610305, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 0.0, 2.2,776,352.7272727272727 +5.818666666666667,5,a-phya-i1,2022-23,Chicopee - Bowe,00610015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +6.533333333333333,5,a-phya-i1,2022-23,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,275,275.0 +7.536,5,a-phya-i1,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,87,87.0 +5.076363636363637,5,a-phya-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 2.2,1206,548.1818181818181 +5.784242424242424,5,a-phya-i1,2022-23,Chicopee - Chicopee High,00610505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.2, 0.0, 2.2,914,415.45454545454544 +6.144,5,a-phya-i1,2022-23,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,696,348.0 +6.36,5,a-phya-i1,2022-23,Chicopee - Fairview Elementary,00610050, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,369,307.5 +6.271111111111111,5,a-phya-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,389,324.1666666666667 +6.928888888888888,5,a-phya-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,241,200.83333333333334 +6.528888888888888,5,a-phya-i1,2022-23,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,331,275.83333333333337 +6.794666666666667,5,a-phya-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,226,226.0 +7.013333333333334,5,a-phya-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,222,185.0 +1,1,a-phya-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329 +7.024,5,a-phya-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +1,1,a-phya-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189 +5.76,5,a-phya-i1,2022-23,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,840,420.0 +5.093333333333334,5,a-phya-i1,2022-23,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,545,545.0 +1,1,a-phya-i1,2022-23,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587 +4.416,4.42,a-phya-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,336,672.0 +5.701333333333333,5,a-phya-i1,2022-23,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,431,431.0 +6.426666666666667,5,a-phya-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,295,295.0 +6.378666666666667,5,a-phya-i1,2022-23,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,304,304.0 +5.994666666666666,5,a-phya-i1,2022-23,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,376,376.0 +4.792,4.79,a-phya-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1203,601.5 +6.650666666666667,5,a-phya-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,253,253.0 +3.447619047619047,3.45,a-phya-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,1195,853.5714285714287 +6.888,5,a-phya-i1,2022-23,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,417,208.5 +6.266666666666667,5,a-phya-i1,2022-23,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,650,325.0 +5.690666666666667,5,a-phya-i1,2022-23,Concord - Thoreau,00670020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +5.621333333333333,5,a-phya-i1,2022-23,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +5.678222222222223,5,a-phya-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1306,435.3333333333333 +5.578666666666667,5,a-phya-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,454,454.0 +7.344,5,a-phya-i1,2022-23,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,123,123.0 +5.928,5,a-phya-i1,2022-23,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,777,388.5 +1,1,a-phya-i1,2022-23,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301 +5.941333333333334,5,a-phya-i1,2022-23,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,386,386.0 +5.941333333333334,5,a-phya-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,772,386.0 +6.192,5,a-phya-i1,2022-23,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +1,1,a-phya-i1,2022-23,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331 +6.245333333333333,5,a-phya-i1,2022-23,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +7.650666666666667,5,a-phya-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,131,65.5 +2.7786666666666666,2.78,a-phya-i1,2022-23,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,979,979.0 +3.712,3.71,a-phya-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,804,804.0 +5.8613333333333335,5,a-phya-i1,2022-23,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 +6.1226666666666665,5,a-phya-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,704,352.0 +1,1,a-phya-i1,2022-23,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351 +5.36,5,a-phya-i1,2022-23,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,297,495.0 +6.184126984126984,5,a-phya-i1,2022-23,Dedham - Dedham High,00730505, 0.0, 0.0, 1.0, 0.5, 0.1, 0.5, 0.0, 2.1,715,340.4761904761905 +5.12,5,a-phya-i1,2022-23,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,540,540.0 +6.511515151515152,5,a-phya-i1,2022-23,Dedham - Early Childhood Center,00730005, 0.0, 0.5, 0.0, 0.0, 0.6, 0.0, 0.0, 1.1,307,279.09090909090907 +6.656969696969697,5,a-phya-i1,2022-23,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,277,251.81818181818178 +5.822222222222221,5,a-phya-i1,2022-23,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.6,245,408.33333333333337 +6.453333333333333,5,a-phya-i1,2022-23,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,174,290.0 +6.9013333333333335,5,a-phya-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,309,206.0 +5.578666666666667,5,a-phya-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,454,454.0 +5.461333333333333,5,a-phya-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,476,476.0 +5.632,5,a-phya-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,888,444.0 +6.1866666666666665,5,a-phya-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +6.496,5,a-phya-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,282,282.0 +5.776,5,a-phya-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +6.358095238095238,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 1.2, 0.2, 0.0, 0.0, 1.4,431,307.8571428571429 +6.605714285714285,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.2, 1.2, 0.0, 0.0, 1.4,366,261.42857142857144 +5.382857142857143,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.2, 1.2, 0.0, 0.0, 1.4,687,490.7142857142857 +6.30095238095238,5,a-phya-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.2, 0.2, 1.0, 0.0, 1.4,446,318.5714285714286 +5.916190476190476,5,a-phya-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.2, 0.2, 1.0, 0.0, 1.4,547,390.7142857142857 +6.165333333333334,5,a-phya-i1,2022-23,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,344,344.0 +6.272,5,a-phya-i1,2022-23,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +6.410666666666667,5,a-phya-i1,2022-23,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,298,298.0 +6.826666666666667,5,a-phya-i1,2022-23,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,220,220.0 +5.322666666666667,5,a-phya-i1,2022-23,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,502,502.0 +4.432,4.43,a-phya-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,669,669.0 +5.429333333333333,5,a-phya-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,482,482.0 +5.237333333333333,5,a-phya-i1,2022-23,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,518,518.0 +5.176666666666667,5,a-phya-i1,2022-23,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,847,529.375 +5.1626666666666665,5,a-phya-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,532,532.0 +6.72,5,a-phya-i1,2022-23,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +4.8213333333333335,4.82,a-phya-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,596,596.0 +5.173333333333333,5,a-phya-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,848,530.0 +1,1,a-phya-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, 0.0,278 +1,1,a-phya-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337 +1,1,a-phya-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592 +6.1706666666666665,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,343,343.0 +6.541333333333333,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,547,273.5 +5.584,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,453,453.0 +6.752,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,234,234.0 +5.538666666666667,5,a-phya-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,923,461.5 +4.784,4.78,a-phya-i1,2022-23,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,603,603.0 +6.248,5,a-phya-i1,2022-23,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,657,328.5 +5.3978947368421055,5,a-phya-i1,2022-23,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.9, 1.9,927,487.89473684210526 +4.677333333333333,4.68,a-phya-i1,2022-23,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,623,623.0 +5.1946666666666665,5,a-phya-i1,2022-23,East Bridgewater - Central,00830005, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,526,526.0 +3.1786666666666665,3.18,a-phya-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,904,904.0 +4.624,4.62,a-phya-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,633,633.0 +4.810666666666667,4.81,a-phya-i1,2022-23,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,598,598.0 +3.648,3.65,a-phya-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,816,816.0 +1,1,a-phya-i1,2022-23,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292 +6.490666666666667,5,a-phya-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0, 0.0, 2.0,566,283.0 +6.565333333333333,5,a-phya-i1,2022-23,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +7.008,5,a-phya-i1,2022-23,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,186,186.0 +6.026666666666666,5,a-phya-i1,2022-23,Easthampton - Easthampton High,00860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +5.218666666666667,5,a-phya-i1,2022-23,Easthampton - Mountain View School,00860415, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1043,521.5 +6.672,5,a-phya-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,747,249.0 +5.080888888888889,5,a-phya-i1,2022-23,Easton - Easton Middle School,00880405, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,821,547.3333333333334 +5.1146666666666665,5,a-phya-i1,2022-23,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1082,541.0 +-0.10666666666666667,1,a-phya-i1,2022-23,Easton - Richardson Olmsted School,00880025, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,760,1520.0 +6.563555555555556,5,a-phya-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,404,269.3333333333333 +7.029333333333334,5,a-phya-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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,364,182.0 +7.14,5,a-phya-i1,2022-23,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,129,161.25 +5.741333333333333,5,a-phya-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.0,1694,423.5 +1,1,a-phya-i1,2022-23,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182 +7.754666666666667,5,a-phya-i1,2022-23,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,46,46.0 +2.050666666666667,2.05,a-phya-i1,2022-23,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,2231,1115.5 +1,1,a-phya-i1,2022-23,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,897 +1,1,a-phya-i1,2022-23,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1020 +3.9306666666666668,3.93,a-phya-i1,2022-23,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,763,763.0 +1,1,a-phya-i1,2022-23,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014 +4.64,4.64,a-phya-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,630,630.0 +1,1,a-phya-i1,2022-23,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173 +1,1,a-phya-i1,2022-23,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329 +6.546133333333334,5,a-phya-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 5.0,1363,272.6 +6.330666666666667,5,a-phya-i1,2022-23,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,313,313.0 +1,1,a-phya-i1,2022-23,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633 +5.664,5,a-phya-i1,2022-23,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +5.642666666666667,5,a-phya-i1,2022-23,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +3.6266666666666665,3.63,a-phya-i1,2022-23,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 3.0,2460,820.0 +4.288,4.29,a-phya-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,696,696.0 +7.850666666666666,5,a-phya-i1,2022-23,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,56,28.0 +6.551111111111111,5,a-phya-i1,2022-23,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,815,271.6666666666667 +6.528,5,a-phya-i1,2022-23,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,276,276.0 +6.642666666666667,5,a-phya-i1,2022-23,Fall River - John J Doran,00950045, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,509,254.5 +6.938666666666666,5,a-phya-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,597,199.0 +6.304,5,a-phya-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,636,318.0 +6.787555555555555,5,a-phya-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,682,227.33333333333334 +6.16,5,a-phya-i1,2022-23,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,690,345.0 +6.778666666666667,5,a-phya-i1,2022-23,Fall River - North End Elementary,00950005, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,687,229.0 +6.949333333333334,5,a-phya-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,197,197.0 +6.709333333333333,5,a-phya-i1,2022-23,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,242,242.0 +6.976,5,a-phya-i1,2022-23,Fall River - Spencer Borden,00950130, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,576,192.0 +7.605333333333333,5,a-phya-i1,2022-23,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,74,74.0 +6.578666666666667,5,a-phya-i1,2022-23,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,533,266.5 +6.077333333333334,5,a-phya-i1,2022-23,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,721,360.5 +6.496,5,a-phya-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,282,282.0 +6.638222222222222,5,a-phya-i1,2022-23,Falmouth - Falmouth High,00960505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,766,255.33333333333334 +5.456,5,a-phya-i1,2022-23,Falmouth - Lawrence,00960405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +5.429333333333333,5,a-phya-i1,2022-23,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 +5.973333333333334,5,a-phya-i1,2022-23,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +6.32,5,a-phya-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,315,315.0 +6.586666666666667,5,a-phya-i1,2022-23,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,265,265.0 +7.36,5,a-phya-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,120,120.0 +6.432,5,a-phya-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,588,294.0 +7.1786666666666665,5,a-phya-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 0.0, 4.0,616,154.0 +5.784888888888889,5,a-phya-i1,2022-23,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,1246,415.3333333333333 +6.965333333333334,5,a-phya-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,194,194.0 +4.1226666666666665,4.12,a-phya-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,727,727.0 +6.450666666666667,5,a-phya-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,581,290.5 +6.264,5,a-phya-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,651,325.5 +6.496,5,a-phya-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,564,282.0 +1,1,a-phya-i1,2022-23,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92 +1,1,a-phya-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.0, 0.0,219 +6.645333333333333,5,a-phya-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +5.0285714285714285,5,a-phya-i1,2022-23,Foxborough - Foxborough High,00990505, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 0.0, 1.4,780,557.1428571428572 +4.0906666666666665,4.09,a-phya-i1,2022-23,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,733,733.0 +6.224,5,a-phya-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +6.112,5,a-phya-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,354,354.0 NA,NA,a-phya-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"", ,Failed to meet data,reporting requirements,"","","","" -NaN,NaN,a-phya-i1,2022-23,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Framingham - Framingham High School,01000515, 0.0, 0.0, 1.0, 1.0, 1.8, 1.0, 1.0, 5.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - Horace Mann,01010405, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin - Remington Middle,01010310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gateway - Chester Elementary,06720059, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Gateway - Gateway Regional High,06720505, 0.0, 0.3, 0.0, 0.0, 0.0, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.3, 0.0, 0.0, 0.0, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Gateway - Littleville Elementary School,06720143, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gloucester - Gloucester High,01070505, 0.0, 0.0, 1.4, 0.0, 1.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Grafton - Grafton High School,01100505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Grafton - Grafton Middle,01100305, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.7, 1.5, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Greenfield - Newton School,01140035, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.2, 0.0, 0.8, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Harvard - Bromfield,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-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,NaN -8.0,5,a-phya-i1,2022-23,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Haverhill High,01280505, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Haverhill - Walnut Square,01280080, 0.0, 0.4, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.5, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - Holyoke High,01370505, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke - William R. Peck School,01370030, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hopedale - Memorial,01380010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.2, 1.3, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.2, 0.5, 0.0, 1.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.5, 1.5, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Leicester - Leicester Elementary,01510005, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Leicester - Leicester High,01510505, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Leicester - Leicester Middle,01510015, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Leominster - Leominster High School,01530505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Northwest,01530030, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Bowman,01550008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Joseph Estabrook,01550010, 0.0, 0.5, 0.0, 0.9, 1.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 1.0, 2.0, 0.0, 4.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lincoln - Hanscom Middle,01570305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Lincoln - Hanscom Primary,01570006, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Longmeadow - Center,01590010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Breed Middle School,01630405, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Classical High,01630505, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Cobbet Elementary,01630035, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Lynn English High,01630510, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 1.0, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marlborough - Marlborough High,01700505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marlborough - Richer,01700025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marshfield - Marshfield High,01710505, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Maynard - Green Meadow,01740010, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.4, 0.6, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.4, 0.6, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.6, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - Medford High,01760505, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Medford - Missituk Elementary School,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.3, 2.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 0.2, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 0.2, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Methuen - Marsh Grammar School,01810030, 0.2, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Methuen - Methuen High,01810505, 0.2, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Methuen - Tenney Grammar School,01810055, 0.2, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.1, 0.2, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.1, 0.2, 1.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.1, 0.2, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.1, 0.3, 0.0, 1.0, 1.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.1, 0.2, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milford - Milford High,01850505, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milton - Cunningham School,01890007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milton - Milton High,01890505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.4, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.5, 0.0, 0.0, 3.0, 0.5, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nantucket - Nantucket High,01970505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Narragansett - Narragansett Middle,07200305, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 0.0, 1.3, 1.0, 0.0, 0.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nashoba - Nashoba Regional,07250505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - Bennett-Hemenway,01980005, 0.0, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 0.0, 0.8, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - Natick High,01980505, 0.0, 1.0, 0.6, 0.0, 1.4, 0.5, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.6, 1.6, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - Needham High,01990505, 0.0, 0.0, 0.6, 0.0, 1.7, 1.0, 1.0, 4.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 2.0, 0.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.0, 0.0, 1.8, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Keith Middle School,02010405, 2.0, 3.0, 3.0, 1.0, 3.0, 1.0, 1.0, 14.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - New Bedford High,02010505, 0.0, 0.0, 2.0, 4.0, 0.0, 0.0, 1.0, 7.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Normandin Middle School,02010410, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Bowen,02070015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Horace Mann,02070075, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Newton North High,02070505, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Adams - Brayton,02090035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Adams - Drury High,02090505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - Kittredge,02110015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - North Andover High,02110505, 0.0, 0.0, 1.0, 0.0, 1.6, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8, 0.8, 2.4,0,0.0 -8.0,5,a-phya-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Reading - North Reading High,02170505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northampton - Leeds,02100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norton - J C Solmonese,02180015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.5, 0.0, 1.0, 0.5, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.4, 1.0, 0.0, 0.6, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Norwood - Norwood High,02200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Orleans - Orleans Elementary,02240005, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Oxford - Oxford Middle,02260405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 +1,1,a-phya-i1,2022-23,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696 +5.402666666666667,5,a-phya-i1,2022-23,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,487,487.0 +5.050666666666666,5,a-phya-i1,2022-23,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 +1,1,a-phya-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433 +5.640459770114942,5,a-phya-i1,2022-23,Framingham - Framingham High School,01000515, 0.0, 0.0, 1.0, 1.0, 1.8, 1.0, 1.0, 5.8,2566,442.4137931034483 +4.714666666666667,4.71,a-phya-i1,2022-23,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,616,616.0 +6.677333333333333,5,a-phya-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,496,248.0 +5.104,5,a-phya-i1,2022-23,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,543,543.0 +6.565333333333333,5,a-phya-i1,2022-23,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +5.9093333333333335,5,a-phya-i1,2022-23,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,392,392.0 +6.1706666666666665,5,a-phya-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +5.066666666666666,5,a-phya-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,550,550.0 +5.1146666666666665,5,a-phya-i1,2022-23,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,541,541.0 +5.1946666666666665,5,a-phya-i1,2022-23,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,789,526.0 +5.930666666666666,5,a-phya-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,388,388.0 +6.304,5,a-phya-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,318,318.0 +7.205333333333333,5,a-phya-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,149,149.0 +3.1703703703703705,3.17,a-phya-i1,2022-23,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,1630,905.5555555555555 +5.1626666666666665,5,a-phya-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,532,532.0 +6.663111111111112,5,a-phya-i1,2022-23,Franklin - Horace Mann,01010405, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,376,250.66666666666666 +6.197333333333333,5,a-phya-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,338,338.0 +1,1,a-phya-i1,2022-23,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349 +4.128,4.13,a-phya-i1,2022-23,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,363,726.0 +6.458666666666667,5,a-phya-i1,2022-23,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,289,289.0 +6.042666666666666,5,a-phya-i1,2022-23,Franklin - Remington Middle,01010310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +4.789333333333333,4.79,a-phya-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,602,602.0 +4.112,4.11,a-phya-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,729,729.0 +5.370666666666667,5,a-phya-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,493,493.0 +5.728,5,a-phya-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +4.4,4.4,a-phya-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,675,675.0 +5.584,5,a-phya-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,453,453.0 +4.768,4.77,a-phya-i1,2022-23,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,606,606.0 +7.424,5,a-phya-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,108,108.0 +6.685333333333333,5,a-phya-i1,2022-23,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,986,246.5 +5.856,5,a-phya-i1,2022-23,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,804,402.0 +7.1306666666666665,5,a-phya-i1,2022-23,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,489,163.0 +7.487179487179487,5,a-phya-i1,2022-23,Gateway - Chester Elementary,06720059, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,125,96.15384615384615 +6.913333333333333,5,a-phya-i1,2022-23,Gateway - Gateway Regional High,06720505, 0.0, 0.3, 0.0, 0.0, 0.0, 0.5, 0.0, 0.8,163,203.75 +6.746666666666667,5,a-phya-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.3, 0.0, 0.0, 0.0, 0.5, 0.0, 0.8,188,235.0 +6.773333333333333,5,a-phya-i1,2022-23,Gateway - Littleville Elementary School,06720143, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,299,230.0 +6.405333333333333,5,a-phya-i1,2022-23,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +1,1,a-phya-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,186 +4.250666666666667,4.25,a-phya-i1,2022-23,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,703,703.0 +7.562666666666667,5,a-phya-i1,2022-23,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,82,82.0 +7.44,5,a-phya-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,105,105.0 +1,1,a-phya-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207 +7.221333333333333,5,a-phya-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,146,146.0 +6.874666666666666,5,a-phya-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,211,211.0 +6.965333333333334,5,a-phya-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,194,194.0 +1,1,a-phya-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499 +6.4,5,a-phya-i1,2022-23,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +7.034666666666666,5,a-phya-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,181,181.0 +6.213333333333333,5,a-phya-i1,2022-23,Gloucester - Gloucester High,01070505, 0.0, 0.0, 1.4, 0.0, 1.0, 0.0, 0.0, 2.4,804,335.0 +7.44,5,a-phya-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,105,105.0 +6.917333333333334,5,a-phya-i1,2022-23,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,203,203.0 +6.341333333333333,5,a-phya-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,622,311.0 +6.848,5,a-phya-i1,2022-23,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 +6.005333333333334,5,a-phya-i1,2022-23,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +1,1,a-phya-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0 +3.3333333333333335,3.33,a-phya-i1,2022-23,Grafton - Grafton High School,01100505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,875,875.0 +7.068444444444445,5,a-phya-i1,2022-23,Grafton - Grafton Middle,01100305, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,524,174.66666666666666 +4.826666666666667,4.83,a-phya-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,595,595.0 +6.698666666666667,5,a-phya-i1,2022-23,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,244,244.0 +6.671515151515152,5,a-phya-i1,2022-23,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.7, 1.5, 0.0, 0.0, 2.2,548,249.09090909090907 +6.432,5,a-phya-i1,2022-23,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,294,294.0 +5.8293333333333335,5,a-phya-i1,2022-23,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +4.682666666666667,4.68,a-phya-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,311,622.0 +1.84,1.84,a-phya-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1155,1155.0 +4.234666666666667,4.23,a-phya-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1412,706.0 +1.984,1.98,a-phya-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,1692,1128.0 +4.930666666666666,4.93,a-phya-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,2302,575.5 +5.206666666666667,5,a-phya-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 4.0,2095,523.75 +7.122051282051281,5,a-phya-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 1.3,214,164.6153846153846 +7.208205128205128,5,a-phya-i1,2022-23,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,193,148.46153846153845 +-0.07111111111111192,1,a-phya-i1,2022-23,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,454,1513.3333333333335 +6.769230769230769,5,a-phya-i1,2022-23,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,300,230.76923076923077 +4.391111111111111,4.39,a-phya-i1,2022-23,Greenfield - Newton School,01140035, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,203,676.6666666666667 +7.6635897435897435,5,a-phya-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,82,63.07692307692307 +7.498666666666667,5,a-phya-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,94,94.0 +6.597333333333333,5,a-phya-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,526,263.0 +5.866666666666666,5,a-phya-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,680,400.0 +6.072,5,a-phya-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,723,361.5 +6.250666666666667,5,a-phya-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +6.554666666666667,5,a-phya-i1,2022-23,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.2, 0.0, 0.8, 0.0, 1.0,271,271.0 +6.810666666666667,5,a-phya-i1,2022-23,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,223,223.0 +5.008,5,a-phya-i1,2022-23,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,561,561.0 +5.173333333333333,5,a-phya-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,265,530.0 +5.290666666666667,5,a-phya-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,254,508.0 +3.2,3.2,a-phya-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,450,900.0 +4.042666666666666,4.04,a-phya-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,371,742.0 +4.661333333333333,4.66,a-phya-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,313,626.0 +6.048,5,a-phya-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,549,366.0 +1,1,a-phya-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367 +6.352,5,a-phya-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,309,309.0 +6.112,5,a-phya-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,354,354.0 +5.376,5,a-phya-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,984,492.0 +6.346666666666667,5,a-phya-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +6.384,5,a-phya-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +4.006666666666667,4.01,a-phya-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,599,748.75 +6.587733333333333,5,a-phya-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 0.0, 2.5,662,264.8 +7.685333333333333,5,a-phya-i1,2022-23,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,59,59.0 +5.493333333333333,5,a-phya-i1,2022-23,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,470,470.0 +4.581333333333333,4.58,a-phya-i1,2022-23,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,641,641.0 +4.442666666666667,4.44,a-phya-i1,2022-23,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,667,667.0 +3.728,3.73,a-phya-i1,2022-23,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,801,801.0 +6.506666666666667,5,a-phya-i1,2022-23,Harvard - Bromfield,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,560,280.0 +5.546666666666667,5,a-phya-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,460,460.0 +6.8693333333333335,5,a-phya-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,212,212.0 +7.290666666666667,5,a-phya-i1,2022-23,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 +1,1,a-phya-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,35 +5.290666666666667,5,a-phya-i1,2022-23,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,508,508.0 +5.1466666666666665,5,a-phya-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1070,535.0 +6.133333333333334,5,a-phya-i1,2022-23,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,700,350.0 +4.96,4.96,a-phya-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,570,570.0 +7.568,5,a-phya-i1,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,81,81.0 +5.466666666666667,5,a-phya-i1,2022-23,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,475,475.0 +7.8293333333333335,5,a-phya-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,32,32.0 +4.544,4.54,a-phya-i1,2022-23,Haverhill - Haverhill High,01280505, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,1944,648.0 +5.418666666666667,5,a-phya-i1,2022-23,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,484,484.0 +7.04,5,a-phya-i1,2022-23,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,180,180.0 +7.32,5,a-phya-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,102,127.5 +5.221333333333333,5,a-phya-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,521,521.0 +5.488,5,a-phya-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +6.426666666666667,5,a-phya-i1,2022-23,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,295,295.0 +7.088,5,a-phya-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,171,171.0 +7.274666666666667,5,a-phya-i1,2022-23,Haverhill - Walnut Square,01280080, 0.0, 0.4, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0,136,136.0 +7.514666666666667,5,a-phya-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,91,91.0 +1,1,a-phya-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114 +1,1,a-phya-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306 +6.842666666666666,5,a-phya-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,217,217.0 +5.333333333333333,5,a-phya-i1,2022-23,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,500,500.0 +4.888,4.89,a-phya-i1,2022-23,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1167,583.5 +5.749333333333333,5,a-phya-i1,2022-23,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,844,422.0 +5.968,5,a-phya-i1,2022-23,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +5.322666666666667,5,a-phya-i1,2022-23,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,502,502.0 +5.850666666666666,5,a-phya-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +3.7666666666666666,3.77,a-phya-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,635,793.75 +3.5,3.5,a-phya-i1,2022-23,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,675,843.75 +6.768,5,a-phya-i1,2022-23,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,231,231.0 +3.6586666666666665,3.66,a-phya-i1,2022-23,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,814,814.0 +6.389333333333333,5,a-phya-i1,2022-23,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,604,302.0 +6.125333333333334,5,a-phya-i1,2022-23,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.5, 0.0, 0.0, 0.0, 2.0,703,351.5 +4.506666666666667,4.51,a-phya-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +5.7973333333333334,5,a-phya-i1,2022-23,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +7.077333333333334,5,a-phya-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,173,173.0 +4.768,4.77,a-phya-i1,2022-23,Holyoke - Holyoke High,01370505, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0, 2.5,1515,606.0 +6.501333333333333,5,a-phya-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 +1,1,a-phya-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290 +6.010666666666666,5,a-phya-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +4.533333333333333,4.53,a-phya-i1,2022-23,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,325,650.0 +7.1488000000000005,5,a-phya-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 2.5,399,159.6 +6.2026666666666666,5,a-phya-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +6.08,5,a-phya-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +6.48,5,a-phya-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +7.744,5,a-phya-i1,2022-23,Holyoke - William R. Peck School,01370030, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 0.0, 4.0,192,48.0 +4.346666666666667,4.35,a-phya-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,685,685.0 +1,1,a-phya-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374 +6.272,5,a-phya-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +6.464,5,a-phya-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +3.3493333333333335,3.35,a-phya-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,436,872.0 +2.0906666666666665,2.09,a-phya-i1,2022-23,Hopedale - Memorial,01380010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,554,1108.0 +6.912,5,a-phya-i1,2022-23,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,102,204.0 +5.213333333333333,5,a-phya-i1,2022-23,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,627,522.5 +5.16,5,a-phya-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,639,532.5 +3.612444444444445,3.61,a-phya-i1,2022-23,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.2, 1.3, 0.0, 0.0, 0.0, 1.5,1234,822.6666666666666 +4.950588235294117,4.95,a-phya-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.2, 0.5, 0.0, 1.0, 0.0, 1.7,972,571.7647058823529 +1,1,a-phya-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99 +5.368888888888889,5,a-phya-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,592,493.33333333333337 +5.706666666666667,5,a-phya-i1,2022-23,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,430,430.0 +6.512,5,a-phya-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,558,279.0 +6.485333333333333,5,a-phya-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,284,284.0 +5.8453333333333335,5,a-phya-i1,2022-23,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,808,404.0 +6.704,5,a-phya-i1,2022-23,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,243,243.0 +6.714666666666667,5,a-phya-i1,2022-23,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,241,241.0 +6.069333333333334,5,a-phya-i1,2022-23,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,362,362.0 +7.082666666666666,5,a-phya-i1,2022-23,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,172,172.0 +1,1,a-phya-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,793 +2.6453333333333333,2.65,a-phya-i1,2022-23,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,502,1004.0 +4.1386666666666665,4.14,a-phya-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,362,724.0 +4.096,4.1,a-phya-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,366,732.0 +4.021333333333334,4.02,a-phya-i1,2022-23,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,373,746.0 +4.922666666666666,4.92,a-phya-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,577,577.0 +5.134222222222222,5,a-phya-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.5, 1.5, 0.0, 0.0, 0.0, 3.0,1612,537.3333333333334 +6.213333333333333,5,a-phya-i1,2022-23,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,670,335.0 +3.9395555555555553,3.94,a-phya-i1,2022-23,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,1142,761.3333333333334 +4.693333333333333,4.69,a-phya-i1,2022-23,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,620,620.0 +4.8373333333333335,4.84,a-phya-i1,2022-23,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,593,593.0 +5.818666666666667,5,a-phya-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +4.912,4.91,a-phya-i1,2022-23,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,579,579.0 +1,1,a-phya-i1,2022-23,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575 +6.1946666666666665,5,a-phya-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,677,338.5 +5.36,5,a-phya-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,495,495.0 +5.973333333333334,5,a-phya-i1,2022-23,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +5.258666666666667,5,a-phya-i1,2022-23,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,514,514.0 +5.434666666666667,5,a-phya-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +6.776,5,a-phya-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,459,229.5 +1,1,a-phya-i1,2022-23,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310 +6.309333333333333,5,a-phya-i1,2022-23,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,317,317.0 +6.624,5,a-phya-i1,2022-23,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +6.533333333333333,5,a-phya-i1,2022-23,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +7.562666666666667,5,a-phya-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,164,82.0 +7.083636363636364,5,a-phya-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,189,171.8181818181818 +2.517333333333333,2.52,a-phya-i1,2022-23,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,3084,1028.0 +6.256,5,a-phya-i1,2022-23,Lawrence - Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,327,327.0 +6.8453333333333335,5,a-phya-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,433,216.5 +6.128,5,a-phya-i1,2022-23,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,351,351.0 +1,1,a-phya-i1,2022-23,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568 +5.013333333333334,5,a-phya-i1,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,56,560.0 +4.949333333333334,4.95,a-phya-i1,2022-23,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,572,572.0 +6.922666666666666,5,a-phya-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,202,202.0 +7.456,5,a-phya-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,102,102.0 +1.0346666666666666,1.03,a-phya-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,653,1306.0 +5.669333333333333,5,a-phya-i1,2022-23,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,437,437.0 +6.481777777777777,5,a-phya-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,854,284.6666666666667 +4.442666666666667,4.44,a-phya-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +6.181333333333333,5,a-phya-i1,2022-23,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,341,341.0 +6.266666666666667,5,a-phya-i1,2022-23,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +5.977435897435897,5,a-phya-i1,2022-23,Leicester - Leicester Elementary,01510005, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,493,379.2307692307692 +6.301538461538461,5,a-phya-i1,2022-23,Leicester - Leicester High,01510505, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3,414,318.46153846153845 +7.844102564102564,5,a-phya-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,38,29.23076923076923 +6.322051282051283,5,a-phya-i1,2022-23,Leicester - Leicester Middle,01510015, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,409,314.6153846153846 +5.701333333333333,5,a-phya-i1,2022-23,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +6.192,5,a-phya-i1,2022-23,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +7.498666666666667,5,a-phya-i1,2022-23,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,94,94.0 +1,1,a-phya-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800 +4.72,4.72,a-phya-i1,2022-23,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,615,615.0 +5.52,5,a-phya-i1,2022-23,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +4.474666666666667,4.47,a-phya-i1,2022-23,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,661,661.0 +1,1,a-phya-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50 +6.161777777777777,5,a-phya-i1,2022-23,Leominster - Leominster High School,01530505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,1034,344.6666666666667 +7.2,5,a-phya-i1,2022-23,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,30,150.0 +6.707555555555555,5,a-phya-i1,2022-23,Leominster - Northwest,01530030, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,727,242.33333333333334 +7.285333333333333,5,a-phya-i1,2022-23,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,134,134.0 +4.64,4.64,a-phya-i1,2022-23,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,504,630.0 +5.374814814814815,5,a-phya-i1,2022-23,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,886,492.22222222222223 +7.248,5,a-phya-i1,2022-23,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,141,141.0 +5.594666666666667,5,a-phya-i1,2022-23,Lexington - Bowman,01550008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +6.005333333333334,5,a-phya-i1,2022-23,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,374,374.0 +6.181333333333333,5,a-phya-i1,2022-23,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +5.888,5,a-phya-i1,2022-23,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,396,396.0 +5.8053333333333335,5,a-phya-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,823,411.5 +6.795555555555555,5,a-phya-i1,2022-23,Lexington - Joseph Estabrook,01550010, 0.0, 0.5, 0.0, 0.9, 1.0, 0.0, 0.0, 2.4,542,225.83333333333334 +7.5555555555555545,5,a-phya-i1,2022-23,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,75,83.33333333333333 +5.441111111111111,5,a-phya-i1,2022-23,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 1.0, 2.0, 0.0, 4.8,2303,479.7916666666667 +6.724266666666667,5,a-phya-i1,2022-23,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 2.5,598,239.2 +5.208888888888889,5,a-phya-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,942,523.3333333333334 +5.808,5,a-phya-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,411,411.0 +5.610666666666667,5,a-phya-i1,2022-23,Lincoln - Hanscom Middle,01570305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,224,448.0 +5.450666666666667,5,a-phya-i1,2022-23,Lincoln - Hanscom Primary,01570006, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,239,478.0 +5.0986666666666665,5,a-phya-i1,2022-23,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,544,544.0 +4.042666666666666,4.04,a-phya-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1484,742.0 +5.44,5,a-phya-i1,2022-23,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,480,480.0 +5.946666666666666,5,a-phya-i1,2022-23,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,385,385.0 +1,1,a-phya-i1,2022-23,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389 +5.674666666666667,5,a-phya-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +5.9093333333333335,5,a-phya-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +5.738666666666667,5,a-phya-i1,2022-23,Longmeadow - Center,01590010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,424,424.0 +6.229333333333333,5,a-phya-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,332,332.0 +5.589333333333333,5,a-phya-i1,2022-23,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,904,452.0 +6.496,5,a-phya-i1,2022-23,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,282,282.0 +5.632,5,a-phya-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,444,444.0 +1,1,a-phya-i1,2022-23,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492 +1,1,a-phya-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514 +5.365333333333333,5,a-phya-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,494,494.0 +1,1,a-phya-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99 +1,1,a-phya-i1,2022-23,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481 +1,1,a-phya-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438 +1,1,a-phya-i1,2022-23,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,659 +1,1,a-phya-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460 +1,1,a-phya-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55 +1,1,a-phya-i1,2022-23,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473 +1,1,a-phya-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603 +1,1,a-phya-i1,2022-23,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674 +1,1,a-phya-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592 +1,1,a-phya-i1,2022-23,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479 +1,1,a-phya-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428 +1,1,a-phya-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,633 +1,1,a-phya-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +1,1,a-phya-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +1,1,a-phya-i1,2022-23,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3167 +1,1,a-phya-i1,2022-23,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241 +1,1,a-phya-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466 +1,1,a-phya-i1,2022-23,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485 +1,1,a-phya-i1,2022-23,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503 +1,1,a-phya-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,835 +1,1,a-phya-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480 +1,1,a-phya-i1,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88 +1,1,a-phya-i1,2022-23,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244 +1,1,a-phya-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813 +1,1,a-phya-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83 +4.608,4.61,a-phya-i1,2022-23,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,318,636.0 +4.576,4.58,a-phya-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,642,642.0 +6.304,5,a-phya-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,795,318.0 +6.624,5,a-phya-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,516,258.0 +1,1,a-phya-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,5 +1,1,a-phya-i1,2022-23,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440 +5.973333333333334,5,a-phya-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,380,380.0 +6.976,5,a-phya-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,384,192.0 +6.117333333333334,5,a-phya-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 +5.397333333333333,5,a-phya-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,488,488.0 +6.842666666666666,5,a-phya-i1,2022-23,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,217,217.0 +5.8293333333333335,5,a-phya-i1,2022-23,Lynn - Breed Middle School,01630405, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0,1221,407.0 +6.373333333333333,5,a-phya-i1,2022-23,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,305,305.0 +7.208,5,a-phya-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,297,148.5 +4.768,4.77,a-phya-i1,2022-23,Lynn - Classical High,01630505, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,1818,606.0 +4.789333333333333,4.79,a-phya-i1,2022-23,Lynn - Cobbet Elementary,01630035, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,602,602.0 +4.8533333333333335,4.85,a-phya-i1,2022-23,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,590,590.0 +5.802666666666667,5,a-phya-i1,2022-23,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,412,412.0 +7.584,5,a-phya-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,78,78.0 +1,1,a-phya-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73 +5.589333333333333,5,a-phya-i1,2022-23,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,452,452.0 +4.426666666666667,4.43,a-phya-i1,2022-23,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,670,670.0 +7.026666666666666,5,a-phya-i1,2022-23,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,365,182.5 +6.992,5,a-phya-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,189,189.0 +5.0986666666666665,5,a-phya-i1,2022-23,Lynn - Lynn English High,01630510, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,2176,544.0 +6.375466666666667,5,a-phya-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 1.0, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 5.0,1523,304.6 +7.210666666666667,5,a-phya-i1,2022-23,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,148,148.0 +5.056,5,a-phya-i1,2022-23,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,552,552.0 +5.8453333333333335,5,a-phya-i1,2022-23,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +6.565333333333333,5,a-phya-i1,2022-23,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,269,269.0 +5.84,5,a-phya-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,1215,405.0 +6.069333333333334,5,a-phya-i1,2022-23,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,362,362.0 +7.8293333333333335,5,a-phya-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,32,32.0 +5.781333333333333,5,a-phya-i1,2022-23,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,416,416.0 +7.856,5,a-phya-i1,2022-23,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,27,27.0 +5.1626666666666665,5,a-phya-i1,2022-23,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,532,532.0 +6.375111111111111,5,a-phya-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,457,304.6666666666667 +1.9733333333333334,1.97,a-phya-i1,2022-23,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,565,1130.0 +0.39466666666666667,1,a-phya-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,713,1426.0 +1,1,a-phya-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39 +3.509333333333333,3.51,a-phya-i1,2022-23,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,421,842.0 +1,1,a-phya-i1,2022-23,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, 0.0, 0.0,100 +3.3013333333333335,3.3,a-phya-i1,2022-23,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,881,881.0 +5.616,5,a-phya-i1,2022-23,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,894,447.0 +4.832,4.83,a-phya-i1,2022-23,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,594,594.0 +3.6266666666666665,3.63,a-phya-i1,2022-23,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,820,820.0 +6.725333333333333,5,a-phya-i1,2022-23,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,239,239.0 +4.700444444444445,4.7,a-phya-i1,2022-23,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 3.0,1856,618.6666666666666 +5.269333333333333,5,a-phya-i1,2022-23,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1024,512.0 +6.768,5,a-phya-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +4.302222222222222,4.3,a-phya-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,416,693.3333333333334 +4.226666666666667,4.23,a-phya-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,283,707.5 +6.448,5,a-phya-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,291,291.0 +5.989333333333334,5,a-phya-i1,2022-23,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,754,377.0 +5.8933333333333335,5,a-phya-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,790,395.0 +6.1226666666666665,5,a-phya-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,704,352.0 +5.088,5,a-phya-i1,2022-23,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1092,546.0 +7.514666666666667,5,a-phya-i1,2022-23,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,91,91.0 +6.661333333333333,5,a-phya-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +1,1,a-phya-i1,2022-23,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326 +5.632,5,a-phya-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,444,444.0 +3.312,3.31,a-phya-i1,2022-23,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,879,879.0 +5.770666666666667,5,a-phya-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.52,5,a-phya-i1,2022-23,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,555,277.5 +6.8053333333333335,5,a-phya-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,224,224.0 +5.850666666666666,5,a-phya-i1,2022-23,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +5.216,5,a-phya-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,1044,522.0 +4.501333333333333,4.5,a-phya-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,656,656.0 +6.981333333333334,5,a-phya-i1,2022-23,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,191,191.0 +5.370666666666667,5,a-phya-i1,2022-23,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,493,493.0 +3.8186666666666667,3.82,a-phya-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,784,784.0 +2.3253333333333335,2.33,a-phya-i1,2022-23,Marlborough - Marlborough High,01700505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1064,1064.0 +6.578666666666667,5,a-phya-i1,2022-23,Marlborough - Richer,01700025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,533,266.5 +6.021333333333334,5,a-phya-i1,2022-23,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +6.592,5,a-phya-i1,2022-23,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,264,264.0 +5.428148148148148,5,a-phya-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,868,482.22222222222223 +7.061333333333334,5,a-phya-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,352,176.0 +4.659649122807017,4.66,a-phya-i1,2022-23,Marshfield - Marshfield High,01710505, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 1.9,1190,626.3157894736843 +5.541333333333333,5,a-phya-i1,2022-23,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +6.629333333333333,5,a-phya-i1,2022-23,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,257,257.0 +3.962666666666667,3.96,a-phya-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,757,757.0 +7.517333333333333,5,a-phya-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,181,90.5 +6.1226666666666665,5,a-phya-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +5.36,5,a-phya-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,990,495.0 +6.509333333333333,5,a-phya-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,559,279.5 +1,1,a-phya-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390 +6.253333333333333,5,a-phya-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,655,327.5 +5.8773333333333335,5,a-phya-i1,2022-23,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,398,398.0 +5.891555555555556,5,a-phya-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 3.0,1186,395.3333333333333 +1,1,a-phya-i1,2022-23,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237 +6.976,5,a-phya-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,192,192.0 +5.552,5,a-phya-i1,2022-23,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +6.882666666666666,5,a-phya-i1,2022-23,Maynard - Green Meadow,01740010, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,419,209.5 +6.314666666666667,5,a-phya-i1,2022-23,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,316,316.0 +4.542222222222222,4.54,a-phya-i1,2022-23,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,389,648.3333333333334 +6.026666666666666,5,a-phya-i1,2022-23,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.4, 0.6, 0.0, 0.0, 2.0,740,370.0 +5.749333333333333,5,a-phya-i1,2022-23,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,422,422.0 +6.733333333333333,5,a-phya-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 1.6,380,237.5 +6.448,5,a-phya-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.4, 0.6, 1.0, 0.0, 2.0,582,291.0 +6.541333333333333,5,a-phya-i1,2022-23,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,547,273.5 +7.76,5,a-phya-i1,2022-23,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,18,45.0 +6.778412698412699,5,a-phya-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.6, 2.1,481,229.04761904761904 +5.541333333333333,5,a-phya-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,461,461.0 +7.189333333333333,5,a-phya-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,456,152.0 +5.76,5,a-phya-i1,2022-23,Medford - Medford High,01760505, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,1260,420.0 +6.037333333333334,5,a-phya-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,552,368.0 +6.957333333333334,5,a-phya-i1,2022-23,Medford - Missituk Elementary School,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,391,195.5 +5.418666666666667,5,a-phya-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,484,484.0 +6.0906666666666665,5,a-phya-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,358,358.0 +6.578550724637681,5,a-phya-i1,2022-23,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.3, 2.0, 0.0, 0.0, 2.3,613,266.5217391304348 +4.517333333333333,4.52,a-phya-i1,2022-23,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,653,653.0 +6.277333333333333,5,a-phya-i1,2022-23,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,323,323.0 +1,1,a-phya-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303 +1,1,a-phya-i1,2022-23,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244 +1,1,a-phya-i1,2022-23,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393 +1,1,a-phya-i1,2022-23,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,926 +1,1,a-phya-i1,2022-23,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,869 +5.824,5,a-phya-i1,2022-23,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,408,408.0 +5.957333333333334,5,a-phya-i1,2022-23,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,383,383.0 +6.117333333333334,5,a-phya-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,353,353.0 +5.237333333333333,5,a-phya-i1,2022-23,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,518,518.0 +4.613333333333333,4.61,a-phya-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,635,635.0 +4.8053333333333335,4.81,a-phya-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,599,599.0 +6.408333333333333,5,a-phya-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 0.2, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.2,955,298.4375 +4.9381818181818184,4.94,a-phya-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 0.2, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.2,1263,574.090909090909 +5.44969696969697,5,a-phya-i1,2022-23,Methuen - Marsh Grammar School,01810030, 0.2, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.2,1052,478.18181818181813 +3.3551515151515154,3.36,a-phya-i1,2022-23,Methuen - Methuen High,01810505, 0.2, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.2,1916,870.9090909090909 +5.91,5,a-phya-i1,2022-23,Methuen - Tenney Grammar School,01810055, 0.2, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.2,1254,391.875 +-2.115555555555556,1,a-phya-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.1, 0.2, 0.0, 0.0, 0.0, 0.3,569,1896.6666666666667 +5.095384615384615,5,a-phya-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.1, 0.2, 1.0, 0.0, 0.0, 1.3,708,544.6153846153846 +-3.1466666666666665,1,a-phya-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.1, 0.2, 0.0, 0.0, 0.0, 0.3,627,2090.0 +7.375555555555555,5,a-phya-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.1, 0.3, 0.0, 1.0, 1.0, 2.4,281,117.08333333333334 +4.5087179487179485,4.51,a-phya-i1,2022-23,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.1, 0.2, 0.0, 1.0, 0.0, 1.3,851,654.6153846153846 +6.421333333333333,5,a-phya-i1,2022-23,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,296,296.0 +6.488888888888889,5,a-phya-i1,2022-23,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,425,283.3333333333333 +5.0986666666666665,5,a-phya-i1,2022-23,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,544,544.0 +5.482666666666667,5,a-phya-i1,2022-23,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,472,472.0 +4.469333333333333,4.47,a-phya-i1,2022-23,Milford - Milford High,01850505, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1324,662.0 +4.977777777777777,4.98,a-phya-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,170,566.6666666666667 +5.253333333333333,5,a-phya-i1,2022-23,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1030,515.0 +5.485333333333333,5,a-phya-i1,2022-23,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,943,471.5 +5.754666666666667,5,a-phya-i1,2022-23,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 +4.053333333333334,4.05,a-phya-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,740,740.0 +5.557333333333333,5,a-phya-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,458,458.0 +4.709333333333333,4.71,a-phya-i1,2022-23,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,617,617.0 +4.661333333333333,4.66,a-phya-i1,2022-23,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,313,626.0 +5.12,5,a-phya-i1,2022-23,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,270,540.0 +1,1,a-phya-i1,2022-23,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6 +4.358095238095238,4.36,a-phya-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,956,682.8571428571429 +4.8853333333333335,4.89,a-phya-i1,2022-23,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,584,584.0 +4.656,4.66,a-phya-i1,2022-23,Milton - Cunningham School,01890007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,627,627.0 +4.624,4.62,a-phya-i1,2022-23,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,633,633.0 +2.336,2.34,a-phya-i1,2022-23,Milton - Milton High,01890505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1062,1062.0 +5.552,5,a-phya-i1,2022-23,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,459,459.0 +0.6293333333333333,1,a-phya-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,691,1382.0 +6.538666666666667,5,a-phya-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +7.306666666666667,5,a-phya-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,104,130.0 +6.554666666666667,5,a-phya-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +7.258666666666667,5,a-phya-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,139,139.0 +7.1946666666666665,5,a-phya-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,151,151.0 +6.41,5,a-phya-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,477,298.125 +4.596363636363637,4.6,a-phya-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 1.1,702,638.1818181818181 +7.024444444444444,5,a-phya-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.4, 0.0, 2.4,439,182.91666666666669 +5.888,5,a-phya-i1,2022-23,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,396,396.0 +6.426666666666667,5,a-phya-i1,2022-23,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,295,295.0 +7.306666666666667,5,a-phya-i1,2022-23,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,130,130.0 +4.242666666666667,4.24,a-phya-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1409,704.5 +6.768,5,a-phya-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,231,231.0 +5.141333333333334,5,a-phya-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,536,536.0 +5.701333333333333,5,a-phya-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,431,431.0 +5.856,5,a-phya-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.5, 0.0, 0.0, 3.0, 0.5, 0.0, 4.0,1608,402.0 +7.173333333333333,5,a-phya-i1,2022-23,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,155,155.0 +5.973333333333334,5,a-phya-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +5.802666666666667,5,a-phya-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +4.874666666666666,4.87,a-phya-i1,2022-23,Nantucket - Nantucket High,01970505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +6.1866666666666665,5,a-phya-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +6.527179487179487,5,a-phya-i1,2022-23,Narragansett - Narragansett Middle,07200305, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,359,276.15384615384613 +6.08,5,a-phya-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,468,360.0 +6.506666666666667,5,a-phya-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 0.0, 1.3, 1.0, 0.0, 0.0, 0.0, 0.0, 2.3,644,280.0 +5.344,5,a-phya-i1,2022-23,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,498,498.0 +6.432,5,a-phya-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 2.5,735,294.0 +5.6,5,a-phya-i1,2022-23,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,270,450.0 +7.352,5,a-phya-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,243,121.5 +5.472,5,a-phya-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 +5.784,5,a-phya-i1,2022-23,Nashoba - Nashoba Regional,07250505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,831,415.5 +5.333333333333333,5,a-phya-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 1.5,750,500.0 +6.4,5,a-phya-i1,2022-23,Natick - Bennett-Hemenway,01980005, 0.0, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 1.6,480,300.0 +5.317333333333333,5,a-phya-i1,2022-23,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,503,503.0 +5.380740740740741,5,a-phya-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 0.0, 0.8, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,884,491.1111111111111 +7.274666666666667,5,a-phya-i1,2022-23,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,136,136.0 +5.834666666666666,5,a-phya-i1,2022-23,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,406,406.0 +5.696,5,a-phya-i1,2022-23,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,432,432.0 +5.368380952380952,5,a-phya-i1,2022-23,Natick - Natick High,01980505, 0.0, 1.0, 0.6, 0.0, 1.4, 0.5, 0.0, 3.5,1727,493.42857142857144 +6.113939393939394,5,a-phya-i1,2022-23,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 0.0, 0.6, 1.6, 0.0, 2.2,778,353.6363636363636 +3.84,3.84,a-phya-i1,2022-23,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,780,780.0 +5.184,5,a-phya-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,528,528.0 +5.527272727272728,5,a-phya-i1,2022-23,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,510,463.6363636363636 +5.837575757575757,5,a-phya-i1,2022-23,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,446,405.45454545454544 +5.934545454545455,5,a-phya-i1,2022-23,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,426,387.27272727272725 +5.95968992248062,5,a-phya-i1,2022-23,Needham - Needham High,01990505, 0.0, 0.0, 0.6, 0.0, 1.7, 1.0, 1.0, 4.3,1645,382.55813953488376 +6.2247619047619045,5,a-phya-i1,2022-23,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 2.0, 0.1, 0.0, 0.0, 2.1,699,332.85714285714283 +5.818666666666667,5,a-phya-i1,2022-23,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,818,409.0 +5.4351515151515155,5,a-phya-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,529,480.9090909090909 +5.808484848484848,5,a-phya-i1,2022-23,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,452,410.9090909090909 +6.540952380952381,5,a-phya-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.0, 0.0, 1.8, 0.0, 2.8,766,273.5714285714286 +4.581333333333333,4.58,a-phya-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,641,641.0 +7.118222222222221,5,a-phya-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,496,165.33333333333334 +6.768,5,a-phya-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,231,231.0 +6.250666666666667,5,a-phya-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 +7.0328888888888885,5,a-phya-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,544,181.33333333333334 +6.517333333333333,5,a-phya-i1,2022-23,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.533333333333333,5,a-phya-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,275,275.0 +6.741333333333333,5,a-phya-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,236,236.0 +6.485333333333333,5,a-phya-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,284,284.0 +6.787555555555555,5,a-phya-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,682,227.33333333333334 +5.850666666666666,5,a-phya-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +1,1,a-phya-i1,2022-23,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326 +6.794666666666667,5,a-phya-i1,2022-23,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,226,226.0 +6.629333333333333,5,a-phya-i1,2022-23,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,257,257.0 +6.378666666666667,5,a-phya-i1,2022-23,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,304,304.0 +7.668571428571429,5,a-phya-i1,2022-23,New Bedford - Keith Middle School,02010405, 2.0, 3.0, 3.0, 1.0, 3.0, 1.0, 1.0, 14.0,870,62.142857142857146 +5.792,5,a-phya-i1,2022-23,New Bedford - New Bedford High,02010505, 0.0, 0.0, 2.0, 4.0, 0.0, 0.0, 1.0, 7.0,2898,414.0 +5.197333333333333,5,a-phya-i1,2022-23,New Bedford - Normandin Middle School,02010410, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1051,525.5 +1,1,a-phya-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131 +6.616888888888889,5,a-phya-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,778,259.3333333333333 +6.370666666666667,5,a-phya-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,611,305.5 +6.88,5,a-phya-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,210,210.0 +7.778666666666667,5,a-phya-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,83,41.5 +7.64,5,a-phya-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,135,67.5 +1,1,a-phya-i1,2022-23,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244 +1,1,a-phya-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741 +7.126666666666667,5,a-phya-i1,2022-23,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,131,163.75 +6.512,5,a-phya-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,279,279.0 +6.466666666666667,5,a-phya-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,575,287.5 +6.542222222222223,5,a-phya-i1,2022-23,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,820,273.3333333333333 +5.434666666666667,5,a-phya-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +5.994666666666666,5,a-phya-i1,2022-23,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,376,376.0 +5.68,5,a-phya-i1,2022-23,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,435,435.0 +6.08,5,a-phya-i1,2022-23,Newton - Bowen,02070015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +6.037333333333334,5,a-phya-i1,2022-23,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,368,368.0 +5.642666666666667,5,a-phya-i1,2022-23,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,442,442.0 +4.0,4.0,a-phya-i1,2022-23,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,750,750.0 +6.016,5,a-phya-i1,2022-23,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,372,372.0 +5.546666666666667,5,a-phya-i1,2022-23,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,920,460.0 +6.064,5,a-phya-i1,2022-23,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,363,363.0 +6.096,5,a-phya-i1,2022-23,Newton - Horace Mann,02070075, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +1,1,a-phya-i1,2022-23,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194 +6.197333333333333,5,a-phya-i1,2022-23,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +6.229333333333333,5,a-phya-i1,2022-23,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,332,332.0 +5.882666666666666,5,a-phya-i1,2022-23,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,397,397.0 +7.008,5,a-phya-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,186,186.0 +4.2684444444444445,4.27,a-phya-i1,2022-23,Newton - Newton North High,02070505, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,2099,699.6666666666666 +4.734222222222222,4.73,a-phya-i1,2022-23,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,1837,612.3333333333334 +4.496,4.5,a-phya-i1,2022-23,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,657,657.0 +6.714666666666667,5,a-phya-i1,2022-23,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +6.8213333333333335,5,a-phya-i1,2022-23,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,221,221.0 +6.768,5,a-phya-i1,2022-23,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +5.834666666666666,5,a-phya-i1,2022-23,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +5.189333333333333,5,a-phya-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,527,527.0 +6.261333333333333,5,a-phya-i1,2022-23,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,489,326.0 +4.906666666666666,4.91,a-phya-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,580,580.0 +6.784,5,a-phya-i1,2022-23,North Adams - Brayton,02090035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +7.373333333333333,5,a-phya-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,235,117.5 +5.370666666666667,5,a-phya-i1,2022-23,North Adams - Drury High,02090505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,493,493.0 +6.656,5,a-phya-i1,2022-23,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,252,252.0 +6.8533333333333335,5,a-phya-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,430,215.0 +5.509333333333333,5,a-phya-i1,2022-23,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,467,467.0 +6.538666666666667,5,a-phya-i1,2022-23,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +5.968,5,a-phya-i1,2022-23,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +6.794666666666667,5,a-phya-i1,2022-23,North Andover - Kittredge,02110015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,226,226.0 +5.25948717948718,5,a-phya-i1,2022-23,North Andover - North Andover High,02110505, 0.0, 0.0, 1.0, 0.0, 1.6, 0.0, 0.0, 2.6,1336,513.8461538461538 +5.24,5,a-phya-i1,2022-23,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1035,517.5 +6.394666666666667,5,a-phya-i1,2022-23,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,301,301.0 +5.856,5,a-phya-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +6.458666666666667,5,a-phya-i1,2022-23,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +6.778666666666667,5,a-phya-i1,2022-23,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,229,229.0 +5.141333333333334,5,a-phya-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,536,536.0 +5.048,5,a-phya-i1,2022-23,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,1107,553.5 +1,1,a-phya-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148 +2.9013333333333335,2.9,a-phya-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,956,956.0 +6.672,5,a-phya-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,249,249.0 +1,1,a-phya-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302 +7.274666666666667,5,a-phya-i1,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,136,136.0 +7.248,5,a-phya-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,141,141.0 +5.525333333333333,5,a-phya-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,464,464.0 +5.434666666666667,5,a-phya-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +6.268888888888888,5,a-phya-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8, 0.8, 2.4,779,324.58333333333337 +5.765333333333333,5,a-phya-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +7.466666666666667,5,a-phya-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,100,100.0 +4.624,4.62,a-phya-i1,2022-23,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,633,633.0 +6.277333333333333,5,a-phya-i1,2022-23,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,323,323.0 +5.957333333333334,5,a-phya-i1,2022-23,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +5.530666666666667,5,a-phya-i1,2022-23,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,463,463.0 +6.282666666666667,5,a-phya-i1,2022-23,North Reading - North Reading High,02170505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,644,322.0 +5.1146666666666665,5,a-phya-i1,2022-23,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,541,541.0 +6.597333333333333,5,a-phya-i1,2022-23,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,263,263.0 +6.448,5,a-phya-i1,2022-23,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,291,291.0 +4.890666666666666,4.89,a-phya-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,583,583.0 +6.410666666666667,5,a-phya-i1,2022-23,Northampton - Leeds,02100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +3.184,3.18,a-phya-i1,2022-23,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,903,903.0 +6.746666666666667,5,a-phya-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,235,235.0 +6.490666666666667,5,a-phya-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,566,283.0 +4.765333333333333,4.77,a-phya-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1213,606.5 +6.32,5,a-phya-i1,2022-23,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,252,315.0 +6.474666666666667,5,a-phya-i1,2022-23,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,286,286.0 +6.661333333333333,5,a-phya-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +6.326666666666667,5,a-phya-i1,2022-23,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,251,313.75 +5.954285714285714,5,a-phya-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.4, 0.0, 1.4,537,383.5714285714286 +6.305777777777777,5,a-phya-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 3.0,953,317.6666666666667 +5.264,5,a-phya-i1,2022-23,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,513,513.0 +6.3966666666666665,5,a-phya-i1,2022-23,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,481,300.625 +4.554666666666667,4.55,a-phya-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1292,646.0 +1,1,a-phya-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537 +7.112,5,a-phya-i1,2022-23,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,333,166.5 +5.264,5,a-phya-i1,2022-23,Norton - J C Solmonese,02180015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,513,513.0 +6.458666666666667,5,a-phya-i1,2022-23,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +4.384,4.38,a-phya-i1,2022-23,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,678,678.0 +5.050666666666666,5,a-phya-i1,2022-23,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 +5.216,5,a-phya-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,522,522.0 +4.789333333333333,4.79,a-phya-i1,2022-23,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,602,602.0 +5.344,5,a-phya-i1,2022-23,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,498,498.0 +5.168,5,a-phya-i1,2022-23,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,531,531.0 +6.336,5,a-phya-i1,2022-23,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,312,312.0 +6.704,5,a-phya-i1,2022-23,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +6.8053333333333335,5,a-phya-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,224,224.0 +5.930666666666666,5,a-phya-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.5, 0.0, 1.0, 0.5, 0.0, 2.0,776,388.0 +6.330666666666667,5,a-phya-i1,2022-23,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,313,313.0 +6.928,5,a-phya-i1,2022-23,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.4, 1.0, 0.0, 0.6, 0.0, 2.0,402,201.0 +6.533333333333333,5,a-phya-i1,2022-23,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,275,275.0 +5.490666666666667,5,a-phya-i1,2022-23,Norwood - Norwood High,02200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,941,470.5 +5.664,5,a-phya-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +5.008,5,a-phya-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,561,561.0 +4.656,4.66,a-phya-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,627,627.0 +5.738666666666667,5,a-phya-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +6.096,5,a-phya-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +6.432,5,a-phya-i1,2022-23,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,294,294.0 +1,1,a-phya-i1,2022-23,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +7.613333333333333,5,a-phya-i1,2022-23,Orleans - Orleans Elementary,02240005, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,145,72.5 +6.469333333333333,5,a-phya-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +6.602666666666667,5,a-phya-i1,2022-23,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,262,262.0 +5.952,5,a-phya-i1,2022-23,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,384,384.0 +5.312,5,a-phya-i1,2022-23,Oxford - Oxford Middle,02260405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,504,504.0 +4.8053333333333335,4.81,a-phya-i1,2022-23,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,599,599.0 +5.1466666666666665,5,a-phya-i1,2022-23,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,535,535.0 +4.586666666666667,4.59,a-phya-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,640,640.0 NA,NA,a-phya-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"", ,Failed to meet data,reporting requirements,"","","","" -NaN,NaN,a-phya-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-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.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-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.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Crosby,02360065, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Plympton - Dennett Elementary,02400010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Central Middle,02430315, 0.0, 0.3, 0.0, 0.9, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.5, 0.3, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Merrymount,02430060, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Quincy High,02430505, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - South West Middle School,02430320, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Reading - Reading Memorial High,02460505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.8, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.1, 0.0, 0.0, 0.8, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.1, 0.0, 0.0, 0.2, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Paul Revere,02480050, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Revere High,02480505, 0.0, 1.0, 1.1, 0.0, 0.0, 1.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockport - Rockport High,02520510, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Bates,02580003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Collins Middle,02580305, 0.0, 0.1, 1.0, 0.5, 0.0, 1.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Salem Early Childhood,02580001, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Salem - Witchcraft Heights,02580070, 0.0, 0.2, 0.0, 1.0, 0.5, 0.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Sandwich - Forestdale School,02610002, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sandwich - Oak Ridge,02610025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Sharon - Cottage Street,02660005, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Sharon - East Elementary,02660010, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Sharon - Heights Elementary,02660015, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sharon - Sharon Middle,02660305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.7, 0.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.9, 0.9, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,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, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Somerville - Somerville High,02740505, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,South Hadley - South Hadley High,02780505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.8, 1.0, 0.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.4, 0.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.2, 1.0, 0.0, 1.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Springfield - German Gerena Community School,02810195, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - John J Duggan Academy,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Springfield - Kiley Prep,02810315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Springfield Central High,02810500, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Springfield High School,02810570, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Springfield - Sumner Avenue,02810160, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Thomas M Balliet,02810015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.9, 1.0, 0.0, 0.0, 0.0, 1.9,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.5, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 1.0, 0.8, 0.0, 0.0, 2.8,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Sutton - Sutton High School,02900510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.6, 0.0, 2.1,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 1.1, 0.4, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - East Taunton Elementary,02930010, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.8, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.8, 0.8, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.4, 0.4, 0.8, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 1.5, 0.8, 0.8, 1.5, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 1.5, 0.8, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Truro - Truro Central,03000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wakefield - Greenwood,03050020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Watertown - Hosmer,03140020, 1.0, 1.2, 2.0, 0.0, 0.0, 0.0, 0.2, 4.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.2, 2.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Wayland - Happy Hollow School,03150015, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Wayland - Loker School,03150020, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.2, 0.3, 0.5, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,Webster - Park Avenue Elementary,03160015, 0.0, 0.5, 0.2, 0.5, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2022-23,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.7, 0.3, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - John Ashley,03320005, 0.0, 0.1, 0.2, 0.1, 0.6, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - John R Fausey,03320010, 0.1, 0.1, 0.7, 0.6, 0.1, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - Memorial,03320025, 0.1, 0.1, 0.7, 0.1, 0.1, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - Mittineague,03320030, 0.1, 0.1, 0.2, 0.1, 0.6, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - Philip G Coburn,03320007, 0.1, 0.1, 0.4, 0.1, 0.1, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - Tatham,03320040, 0.1, 0.1, 0.7, 0.1, 0.0, 0.0, 0.5, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 0.1, 0.1, 0.4, 0.1, 0.1, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - West Springfield High,03320505, 0.1, 0.1, 0.1, 0.1, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,West Springfield - West Springfield Middle,03320305, 0.1, 0.1, 0.7, 0.1, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westborough - Mill Pond School,03210045, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Highland,03250025, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Westfield High,03250505, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Westford - Nabnasset,03260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westford - Stony Brook School,03260330, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Weston - Woodland,03300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 1.0, 0.3, 1.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2022-23,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wilmington - Boutwell,03420005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wilmington - West Intermediate,03420080, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchester - McCall Middle,03440305, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winchester - Winchester High School,03440505, 0.0, 0.2, 0.4, 1.0, 0.9, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Shamrock,03470043, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Canterbury,03480045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - City View,03480053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Claremont Academy,03480350, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Flagg Street,03480090, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Forest Grove Middle,03480415, 0.0, 2.5, 0.5, 0.0, 0.0, 0.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Gates Lane,03480110, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Lake View,03480145, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Norrback Avenue,03480202, 0.0, 2.0, 0.5, 1.0, 0.0, 2.5, 0.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - North High,03480515, 1.0, 3.5, 1.0, 0.0, 0.0, 1.0, 0.0, 6.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Quinsigamond,03480210, 0.0, 2.0, 1.0, 0.5, 1.0, 0.0, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Rice Square,03480215, 0.0, 1.0, 1.0, 0.0, 0.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Roosevelt,03480220, 0.5, 1.5, 1.0, 0.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - South High Community,03480520, 0.0, 3.5, 0.0, 1.0, 1.0, 0.0, 0.0, 5.5,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Sullivan Middle,03480423, 0.0, 0.5, 2.0, 0.5, 1.0, 1.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - West Tatnuck,03480260, 0.0, 1.0, 1.3, 1.0, 0.0, 0.0, 0.5, 3.8,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -NaN,NaN,a-phya-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2022-23,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worcester - Worcester Technical High,03480605, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2022-23,Wrentham - Delaney,03500003, 0.0, 0.0, 0.6, 0.0, 1.4, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.1, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.7, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2021-22,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.1, 1.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - Andover West Middle,00090310, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - Shawsheen School,00090005, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.5, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Brackett,00100010, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 1.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashland - Ashland Middle,00140405, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashland - David Mindess,00140015, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Auburn - Pakachoag School,00170025, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - Barnstable High,00200505, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.5, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Bellingham - Stall Brook,00250025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Belmont - Belmont High,00260505, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 2.0, 0.0, 0.6, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - Beverly High,00300505, 0.0, 0.0, 0.5, 0.1, 2.5, 0.6, 0.0, 3.7,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - Beverly Middle School,00300305, 1.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.1, 0.0, 2.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Billerica - Thomas Ditson,00310005, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Boston Latin School,00350560, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Brighton High School,00350505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Channing Elementary School,00350360, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Charlestown High School,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Clap Elementary School,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Condon K-8 School,00350146, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Conley Elementary School,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Dever Elementary School,00350268, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - East Boston High School,00350530, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - English High School,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Grew Elementary School,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Guild Elementary School,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Hale Elementary School,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Harvard-Kent Elementary School,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Irving Middle School,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Jackson-Mann K-8 School,00350013, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - King K-8 School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - McKay K-8 School,00350080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - McKinley Schools,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Mission Hill K-8 School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - New Mission High School,00350542, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Orchard Gardens K-8 School,00350257, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Perry K-8 School,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Quincy Elementary School,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Snowden International High School,00350690, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - Timilty Middle School,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Trotter K-8 School,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston - Tynan Elementary School,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Warren-Prescott K-8 School,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Liberty,00400025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 2.2, 0.0, 1.0, 0.0, 0.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - East Middle School,00440405, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.5, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.5, 0.9, 0.0, 0.0, 1.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - North Middle School,00440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.3, 0.0, 0.0, 0.6, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Brookline High,00460505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.4, 2.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.1, 1.0, 1.0, 0.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Heath,00460025, 0.0, 0.0, 0.1, 0.0, 1.2, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Lawrence,00460030, 0.0, 0.0, 0.1, 1.0, 0.8, 0.0, 1.0, 2.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - Pierce,00460040, 0.0, 0.0, 1.1, 1.0, 0.0, 0.0, 1.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.3, 0.9, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.1, 0.0, 0.0, 2.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Burlington - Burlington High,00480505, 1.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Burlington - Fox Hill,00480007, 0.0, 0.3, 2.0, 0.3, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.3, 2.0, 1.3, 0.0, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Burlington - Memorial,00480015, 0.0, 0.3, 0.0, 0.3, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Bowe,00610015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Chicopee High,00610505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.2, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.2, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Danvers - Great Oak,00710015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.1, 0.7, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Dedham - Early Childhood Center,00730005, 0.0, 0.5, 0.0, 0.1, 0.5, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2021-22,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, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.3, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.3, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.3, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.9, 1.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,East Bridgewater - Central,00830005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Easthampton - Easthampton High,00860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.7, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 1.5, 1.0, 1.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - James Tansey,00950140, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.0, 0.5, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Fall River - North End Elementary,00950005, 1.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 2.3,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 3.0, 1.0, 0.5, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - Goodrich Academy,00970510, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Foxborough - Foxborough High,00990505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Foxborough - John J Ahern,00990405, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 2.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Hemenway,01000015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.3, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Franklin High,01010505, 0.0, 1.0, 0.0, 0.0, 1.8, 0.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.3, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin - Remington Middle,01010310, 0.0, 0.5, 0.0, 0.5, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gardner - Waterford Street,01030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gateway - Chester Elementary,06720059, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.4, 0.0, 1.0, 0.6, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Gloucester - West Parish,01070050, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Grafton - Grafton Middle,01100305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Granby - East Meadow,01110004, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.0, 0.5, 1.0, 2.0, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Greenfield - Newton School,01140035, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.8, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.8, 0.3, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Harvard - Bromfield,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.6, 2.6,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Holyoke High,01370505, 0.0, 0.5, 1.5, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Joseph Metcalf School,01370003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Kelly Elementary,01370040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke - William R. Peck School,01370030, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Hopkinton - Marathon Elementary School,01390005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.5, 1.5, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Lawrence - Robert Frost,01490018, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 2.0, 0.4, 0.0, 0.0, 2.4,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Leominster - Priest Street,01530040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Lexington High,01550505, 0.0, 1.0, 0.8, 1.0, 2.0, 1.0, 0.0, 5.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Longmeadow - Longmeadow High,01590505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ludlow - Ludlow Senior High,01610505, 0.0, 1.0, 0.0, 1.0, 0.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Aborn,01630011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 1.0, 0.0, 0.1, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Cobbet Elementary,01630035, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Ingalls,01630060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Lynn English High,01630510, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Robert L Ford,01630050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 2.0, 0.0, 1.0, 0.1, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.1, 0.0, 1.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.1, 1.0, 0.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.1, 0.0, 0.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marblehead - Marblehead High,01680505, 0.0, 0.8, 0.0, 0.0, 1.0, 0.0, 0.0, 1.8,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marlborough - Marlborough High,01700505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marshfield - Marshfield High,01710505, 0.0, 1.0, 0.0, 0.0, 0.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.9, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.2, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Medford - John J McGlynn Elementary School,01760068, 0.0, 1.0, 1.0, 0.0, 0.5, 0.5, 0.6, 3.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medford - Medford High,01760505, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medford - Missituk Elementary School,01760140, 1.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.1, 0.1, 0.0, 1.0, 1.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.4, 0.0, 0.0, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Milford - Milford High,01850505, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Milton - Milton High,01890505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 1.5, 0.0, 1.0, 1.0, 0.5, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Narragansett - Templeton Elementary School,07200020, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 2.4, 0.4, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 1.0, 0.4, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.1, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.7, 2.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 2.0, 0.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 1.1, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Casimir Pulaski,02010123, 0.0, 1.0, 0.0, 1.0, 1.0, 0.5, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Keith Middle School,02010405, 1.0, 2.0, 0.0, 1.0, 1.0, 0.0, 1.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Adams - Brayton,02090035, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - Kittredge,02110015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.6, 0.5, 0.0, 1.6, 0.0, 2.7,0,0.0 -NaN,NaN,a-phya-i1,2021-22,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Middlesex - Varnum Brook,07350035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.6, 0.0, 1.0, 3.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Norwood - Norwood High,02200505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Oxford - Oxford High,02260505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Oxford - Oxford Middle,02260405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pentucket - Helen R Donaghue School,07450010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - John T Reid Middle,02360305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - South Elementary,02390046, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Merrymount,02430060, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - North Quincy High,02430510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Quincy - Quincy High,02430505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Reading - Joshua Eaton,02460010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.1, 0.1, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.1, 0.1, 0.0, 0.8, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.1, 0.1, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.1, 0.1, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Paul Revere,02480050, 0.0, 0.0, 0.1, 0.1, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Revere High,02480505, 0.0, 0.0, 1.1, 0.1, 0.0, 1.0, 1.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.1, 0.1, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Seacoast School,02480520, 0.0, 0.0, 0.1, 0.1, 0.0, 0.2, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockport - Rockport High,02520510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 2.0, 0.0, 0.0, 2.0, 1.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Bates,02580003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Salem Early Childhood,02580001, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Salem - Witchcraft Heights,02580070, 0.0, 1.1, 0.0, 1.0, 0.5, 0.0, 0.0, 2.6,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sandwich - Oak Ridge,02610025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sandwich - Sandwich High,02610505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Sharon - Cottage Street,02660005, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Sharon - East Elementary,02660010, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Sharon - Heights Elementary,02660015, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sharon - Sharon Middle,02660305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Parker Road Preschool,02710040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 1.0, 0.0, 0.7, 1.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Somerset - Chace Street,02730005, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Somerset - North Elementary,02730008, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Somerset - South,02730015, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.2, 0.0, 1.4, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.8, 0.8, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southbridge - Southbridge High School,02770515, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southbridge - Southbridge Middle School,02770315, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.3, 0.0, 1.0, 0.0, 1.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Arthur T Talmadge,02810165, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - German Gerena Community School,02810195, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - High School Of Commerce,02810510, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - John J Duggan Middle,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Rebecca M Johnson,02810055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Samuel Bowles,02810020, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Springfield Central High,02810500, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Thomas M Balliet,02810015, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.8, 0.0, 0.0, 0.6, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoneham - Stoneham Central Middle School,02840405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2021-22,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.5, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.6, 0.0, 2.1,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - East Taunton Elementary,02930010, 0.8, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.8, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 0.8, 0.0, 0.8, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.8, 0.8, 0.8, 0.8, 0.8, 3.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Truro - Truro Central,03000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wakefield - Woodville School,03050015, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - Northeast Elementary School,03080040, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wareham - Minot Forest,03100017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Watertown - Hosmer,03140020, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Watertown - Watertown High,03140505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wayland - Happy Hollow School,03150015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wayland - Loker School,03150020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Webster - Park Avenue Elementary,03160015, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.4, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - Memorial,03320025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - Tatham,03320040, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westborough - Mill Pond School,03210045, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Highland,03250025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Westfield High,03250505, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 1.1, 0.0, 1.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westford - Day Elementary,03260007, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westford - Nabnasset,03260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.6, 1.4, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2021-22,Weston - Woodland,03300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 1.0, 0.3, 1.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2021-22,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2021-22,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 1.5, 1.5, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.4, 0.0, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2021-22,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.0, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 1.4, 0.6, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Canterbury,03480045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - City View,03480053, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Claremont Academy,03480350, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - La Familia Dual Language School,03480025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2021-22,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2021-22,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Norrback Avenue,03480202, 0.1, 2.0, 1.0, 0.0, 1.0, 1.0, 0.0, 5.1,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - North High,03480515, 1.9, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.9,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Quinsigamond,03480210, 0.0, 2.0, 0.5, 0.0, 1.0, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Roosevelt,03480220, 0.0, 1.5, 1.0, 0.0, 1.0, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - South High Community,03480520, 0.0, 3.0, 0.0, 1.0, 1.0, 0.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.5, 0.0, 1.0, 1.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - West Tatnuck,03480260, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worcester - Worcester Technical High,03480605, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Worthington - R. H. Conwell,03490010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2021-22,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.5, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Brackett,00100010, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.6, 1.0, 0.0, 1.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashland - Ashland Middle,00140405, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashland - David Mindess,00140015, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Attleboro - Attleboro High,00160505, 0.0, 1.0, 0.0, 0.0, 0.6, 0.1, 1.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.2, 0.4, 0.6, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Auburn - Bryn Mawr,00170010, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Auburn - Pakachoag School,00170025, 1.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.2, 0.0, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Belmont - Belmont High,00260505, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - Beverly High,00300505, 0.0, 0.0, 0.5, 0.0, 2.0, 0.6, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - Centerville Elementary,00300010, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Beverly - North Beverly Elementary,00300040, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Blackstone,00350390, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Brighton High,00350505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Charles H Taylor,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Charles Sumner,00350052, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - East Boston High,00350530, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Eliot Elementary,00350096, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Ellis Mendell,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - James J Chittick,00350154, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - James W Hennigan,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - John D Philbrick,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - John F Kennedy,00350166, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Joseph P Tynan,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Joyce Kilmer,00350190, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Lyon K-8,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Madison Park High,00350537, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Mario Umana Academy,00350656, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - New Mission High School,00350542, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Orchard Gardens,00350257, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Paul A Dever,00350268, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Roger Clap,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Samuel Adams,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Snowden International School at Copley,00350690, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - The English High,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Warren-Prescott,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - William Ellery Channing,00350360, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,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, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.2, 0.0, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.8, 0.0, 0.0, 0.0, 0.0, 1.8,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.8, 0.0, 1.0, 0.5, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.3, 0.9, 0.0, 0.0, 1.0, 2.2,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Brookline - Brookline High,00460505, 0.0, 1.0, 0.0, 1.2, 0.0, 0.0, 0.4, 2.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.1, 1.2, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - Pierce,00460040, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 1.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Burlington - Burlington High,00480505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.3, 0.3, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 2.3, 1.3, 0.0, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Burlington - Memorial,00480015, 0.0, 0.0, 0.3, 0.3, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.3, 1.3, 0.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.7, 1.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Barry,00610003, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Chicopee High,00610505, 0.0, 0.3, 0.0, 0.0, 1.0, 1.2, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Fairview Elementary,00610050, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Dedham - Dedham High,00730505, 0.0, 0.0, 0.5, 0.1, 0.0, 0.5, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.1, 0.7, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dracut - Dracut Senior High,00790505, 0.0, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2020-21,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, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.9, 2.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Bridgewater - Central,00830005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.4, 3.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - James Tansey,00950140, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.0, 0.5, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - Matthew J Kuss Middle,00950320, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Fall River - North End Elementary,00950005, 1.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 2.3,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fall River - William S Greene,00950065, 0.0, 0.0, 1.0, 2.0, 1.0, 0.5, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Falmouth - Falmouth High,00960505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.4, 1.0, 1.0, 1.0, 0.0, 0.0, 3.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fitchburg - Fitchburg High,00970505, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Foxborough - Foxborough High,00990505, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Foxborough - John J Ahern,00990405, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.7, 1.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Helen Keller Elementary,01010012, 1.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Horace Mann,01010405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gardner - Gardner Middle School,01030405, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.6, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.4, 0.0, 1.0, 0.6, 0.4, 2.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Gloucester - West Parish,01070050, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Grafton - Grafton High School,01100505, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Grafton - Grafton Middle,01100305, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Grafton - North Grafton Elementary,01100025, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Grafton - North Street Elementary School,01100030, 0.0, 1.0, 0.5, 0.0, 1.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.5, 0.0, 1.0, 1.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Harvard - Bromfield,01250505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.3, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.3, 0.0, 3.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - E N White Elementary,01370045, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Holyoke High,01370505, 0.0, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Joseph Metcalf School,01370003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Kelly Elementary,01370040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Morgan Full Service Community School,01370025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke - William R. Peck School,01370030, 1.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Hopkinton - Marathon Elementary School,01390005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hudson - Hudson High,01410505, 0.0, 0.0, 0.5, 0.0, 0.0, 2.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.5, 2.5, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 1.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Alexander B Bruce,01490015, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Arlington Middle School,01490017, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Community Day Arlington,01490009, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Edward F. Parthum,01490053, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Francis M Leahy,01490040, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Frost Middle School,01490525, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Guilmette Middle School,01490025, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - High School Learning Center,01490536, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - James F Hennessey,01490020, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - John Breen School,01490003, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - John K Tarbox,01490075, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.1, 2.0, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Lawrence High School,01490515, 0.0, 0.1, 2.0, 0.0, 0.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Oliver Partnership School,01490048, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Parthum Middle School,01490027, 0.0, 0.1, 0.0, 2.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - RISE Academy,01490615, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Robert Frost,01490018, 0.0, 1.1, 0.0, 0.0, 0.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - Spark Academy,01490085, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Leominster - Leominster High School,01530505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Leominster - Samoset School,01530045, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 1.0, 2.0, 0.0, 4.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Longmeadow - Longmeadow High,01590505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 1.0, 0.0, 0.1, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Brickett Elementary,01630020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Ingalls,01630060, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 2.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Lynn Woods,01630075, 0.0, 0.5, 0.0, 0.0, 0.5, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Robert L Ford,01630050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Thurgood Marshall Mid,01630305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.1, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marblehead - Glover,01680020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marblehead - Marblehead High,01680505, 0.0, 0.8, 0.0, 0.0, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marlborough - Marlborough High,01700505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marshfield - Marshfield High,01710505, 0.0, 1.0, 0.0, 0.0, 0.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 0.5, 0.5, 0.6, 2.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Medford - Madeleine Dugger Andrews,01760315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medford - Medford High,01760505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.1, 0.0, 0.1, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Middleborough - Middleborough High,01820505, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.5, 1.0, 0.0, 1.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nantucket - Nantucket High,01970505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Narragansett - Templeton Elementary School,07200020, 1.0, 0.0, 1.0, 0.0, 0.0, 0.3, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nashoba - Hale,07250310, 0.0, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 3.0, 0.4, 0.0, 3.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Natick - Wilson Middle,01980310, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - Newman Elementary,01990050, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Casimir Pulaski,02010123, 0.0, 1.0, 0.0, 1.0, 0.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Keith Middle School,02010405, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.4, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Adams - Drury High,02090505, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - Kittredge,02110015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - North Andover Middle,02110305, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.0, 1.6, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Middlesex - Varnum Brook,07350035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.3, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Oxford - Oxford Middle,02260405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,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, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pioneer Valley - Northfield Elementary,07500008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Merrymount,02430060, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Quincy - Quincy High,02430505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Reading - Joshua Eaton,02460010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.1, 0.0, 0.8, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Revere High,02480505, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 1.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockport - Rockport High,02520510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - New Liberty Innovation School,02580510, 0.5, 0.1, 0.0, 0.5, 0.0, 0.0, 0.5, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - Salem Early Childhood,02580001, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Salem - Witchcraft Heights,02580070, 0.0, 0.1, 0.0, 0.6, 0.5, 0.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Sharon - Cottage Street,02660005, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Parker Road Preschool,02710040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.7, 0.0, 1.0, 1.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,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, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Somerset - North Elementary,02730008, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southbridge - Charlton Street,02770005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southbridge - Southbridge High School,02770515, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southbridge - Southbridge Middle School,02770315, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.3, 0.0, 1.0, 0.0, 1.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Arthur T Talmadge,02810165, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Edward P. Boland School,02810010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Elias Brookings,02810030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - High School Of Commerce,02810510, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Indian Orchard Elementary,02810100, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - John J Duggan Middle,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Samuel Bowles,02810020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - South End Middle School,02810355, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2020-21,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoneham - Stoneham Central Middle School,02840405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoughton - Helen Hansen Elementary,02850010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sunderland - Sunderland Elementary,02890005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.8, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.8, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.8, 0.8, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2020-21,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Topsfield - Steward Elementary,02980010, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.4, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wakefield - Galvin Middle School,03050310, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wareham - Minot Forest,03100017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Watertown - Watertown High,03140505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.4, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - Memorial,03320025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - Tatham,03320040, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westborough - J Harding Armstrong,03210005, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Westfield High,03250505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.6, 0.0, 1.4, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 1.0, 1.4, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2020-21,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Westwood - Deerfield School,03350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2020-21,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.5, 1.0, 0.0, 0.5, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2020-21,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.1, 0.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.4, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2020-21,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Goodyear Elementary School,03470005, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Malcolm White,03470055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Canterbury,03480045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Doherty Memorial High,03480512, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Goddard School/Science Technical,03480100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2020-21,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2020-21,Worcester - Nelson Place,03480200, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - North High,03480515, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Quinsigamond,03480210, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Roosevelt,03480220, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - South High Community,03480520, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Vernon Hill School,03480280, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Worthington - R. H. Conwell,03490010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2020-21,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.4, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Amherst - Crocker Farm Elementary,00080009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 0.4, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashland - David Mindess,00140015, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Attleboro - Attleboro High,00160505, 0.0, 1.0, 0.0, 0.0, 0.6, 1.1, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Auburn - Auburn Middle,00170305, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Auburn - Auburn Senior High,00170505, 0.0, 0.2, 0.0, 0.4, 0.6, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Auburn - Bryn Mawr,00170010, 0.0, 0.2, 0.6, 0.4, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Auburn - Pakachoag School,00170025, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.2, 0.0, 0.0, 0.2, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.2, 0.0, 0.0, 1.2, 0.0, 1.4,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Belmont - Belmont High,00260505, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Belmont - Winn Brook,00260005, 0.0, 0.6, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 1.0, 0.0, 0.4, 0.6, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Beverly - McKeown School,00300002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Billerica - Billerica Memorial High School,00310505, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Billerica - Thomas Ditson,00310005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Blackstone-Millville - Millville Elementary,06220010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Blackstone,00350390, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Brighton High,00350505, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Charles H Taylor,00350054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Eliot Elementary,00350096, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Ellis Mendell,00350100, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Haynes Early Education Center,00350010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - James W Hennigan,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - John D Philbrick,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - John F Kennedy,00350166, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Joyce Kilmer,00350190, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Lyon K-8,00350004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Madison Park High,00350537, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - New Mission High School,00350542, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Orchard Gardens,00350257, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Paul A Dever,00350268, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Warren-Prescott,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Braintree - South Middle School,00400310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Brockton High,00440505, 0.0, 0.0, 0.1, 1.0, 0.5, 0.5, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 1.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.9, 0.0, 0.3, 0.0, 1.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Brookline - Brookline High,00460505, 0.0, 1.0, 0.0, 1.9, 0.0, 0.0, 0.4, 3.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - Coolidge Corner School,00460015, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.0, 1.1, 0.6, 0.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - Pierce,00460040, 0.0, 0.0, 1.0, 1.1, 0.0, 1.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Burlington - Burlington High,00480505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Burlington - Memorial,00480015, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 1.3,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.2, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Bowie,00610020, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.2, 0.0, 3.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.2, 0.6, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2019-20,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, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.9, 0.0, 2.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Bridgewater - Central,00830005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.4, 0.0, 0.1, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - James Tansey,00950140, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.0, 0.5, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fall River - William S Greene,00950065, 0.0, 0.0, 3.0, 1.0, 1.0, 0.5, 0.0, 5.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.8, 1.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 2.8, 1.0, 1.0, 4.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gardner - Elm Street School,01030001, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gardner - Gardner Middle School,01030405, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.6, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.4, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Granby - East Meadow,01110004, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Harvard - Bromfield,01250505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Haverhill High,01280505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - TEACH,01280073, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - E N White Elementary,01370045, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Holyoke High,01370505, 0.0, 1.0, 1.5, 0.0, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hudson - C A Farley,01410030, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Ipswich - Ipswich High,01440505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.3, 0.4, 0.0, 0.8, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.3, 0.2, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Robert Frost,01490018, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Leominster - Fall Brook,01530007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Leominster High School,01530505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 1.0, 2.0, 0.0, 4.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Longmeadow - Longmeadow High,01590505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Longmeadow - Wolf Swamp Road,01590025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lowell - Bartlett Community Partnership,01600090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 1.0, 0.0, 1.1, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Brickett Elementary,01630020, 1.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.1, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.5, 0.1, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Lynn English High,01630510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Thurgood Marshall Mid,01630305, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynn - Wm P Connery,01630040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Malden - Salemwood,01650057, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marblehead - Marblehead High,01680505, 0.0, 0.6, 0.0, 0.0, 1.0, 1.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marlborough - Marlborough High,01700505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.6, 2.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Medford - Madeleine Dugger Andrews,01760315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Medford - Medford High,01760505, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Medford - Milton Fuller Roberts,01760150, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Methuen - Donald P Timony Grammar,01810060, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Middleton - Howe-Manning,01840005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nantucket - Nantucket High,01970505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Narragansett - Narragansett Regional High,07200505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.8, 0.0, 1.0, 0.6, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - John Eliot,01990020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - Newman Elementary,01990050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Keith Middle School,02010405, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,New Bedford - Roosevelt Middle School,02010415, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 5.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Williams,02070125, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Adams - Drury High,02090505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Middlesex - Varnum Brook,07350035, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Reading - J Turner Hood,02170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.6, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Oxford - ACE Program,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,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, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pioneer Valley - Northfield Elementary,07500008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Hedge,02390010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Central Middle,02430315, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Merrymount,02430060, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Quincy - Quincy High,02430505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Reading - Joshua Eaton,02460010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.5, 0.5, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.1, 0.0, 0.8, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Revere High,02480505, 0.0, 0.0, 1.0, 0.1, 0.0, 2.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.5, 0.5, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Bates,02580003, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - New Liberty Innovation School,02580510, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Salem Early Childhood,02580001, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Salem - Witchcraft Heights,02580070, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sharon - Cottage Street,02660005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Shrewsbury - Floral Street School,02710020, 0.3, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2019-20,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.7, 0.0, 0.0, 1.0, 1.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,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, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Somerset - North Elementary,02730008, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.6, 0.0, 0.8, 0.2, 2.6,0,0.0 -8.0,5,a-phya-i1,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southbridge - Southbridge Middle School,02770315, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.8, 1.3, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Arthur T Talmadge,02810165, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Edward P. Boland School,02810010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Elias Brookings,02810030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Indian Orchard Elementary,02810100, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - John J Duggan Middle,02810320, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Samuel Bowles,02810020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - South End Middle School,02810355, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.2, 0.7, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - Helen Hansen Elementary,02850010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 2.3,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Topsfield - Steward Elementary,02980010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wakefield - Galvin Middle School,03050310, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wakefield - Wakefield Memorial High,03050505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Boyden,03070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - John W. McDevitt Middle School,03080415, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wareham - Minot Forest,03100017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2019-20,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Westfield High,03250505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.6, 0.0, 0.4, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.1, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Westwood - Deerfield School,03350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Westwood - Westwood High,03350505, 0.0, 0.0, 0.4, 1.0, 0.0, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.2, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.4, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2019-20,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2019-20,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Canterbury,03480045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - City View,03480053, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Forest Grove Middle,03480415, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Goddard School/Science Technical,03480100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Midland Street,03480185, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Norrback Avenue,03480202, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - North High,03480515, 1.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Quinsigamond,03480210, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Roosevelt,03480220, 1.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - South High Community,03480520, 0.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Vernon Hill School,03480280, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - West Tatnuck,03480260, 0.0, 2.0, 0.5, 0.0, 0.0, 1.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Worcester - Worcester Technical High,03480605, 0.0, 1.0, 0.0, 1.0, 1.4, 0.0, 0.0, 3.4,0,0.0 -8.0,5,a-phya-i1,2019-20,Worthington - R. H. Conwell,03490010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wrentham - Charles E Roderick,03500010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2019-20,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 2.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.4, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.7, 0.5, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Cyrus E Dallin,00100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Menotomy Preschool,00100038, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Arlington - Thompson,00100050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashland - David Mindess,00140015, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.5, 0.5, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.0, 0.6, 1.1, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Auburn - Auburn Middle,00170305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Belmont - Belmont High,00260505, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 1.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.5, 0.6, 0.0, 0.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Beverly - McKeown School,00300002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Billerica - Parker,00310015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Blackstone,00350390, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Charles H Taylor,00350054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Dearborn,00350074, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.5, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - East Boston Early Childhood Center,00350009, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Eliot Elementary,00350096, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Ellis Mendell,00350100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - James W Hennigan,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - John D Philbrick,00350172, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Madison Park High,00350537, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Orchard Gardens,00350257, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Paul A Dever,00350268, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,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, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 2.6, 0.0, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Braintree - South Middle School,00400310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Brockton High,00440505, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 2.0, 2.2,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Brookline - Brookline High,00460505, 0.0, 1.0, 0.7, 1.2, 0.0, 0.0, 0.4, 3.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - Coolidge Corner School,00460015, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.0, 1.1, 0.6, 0.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - Pierce,00460040, 0.0, 0.0, 2.0, 1.1, 0.0, 1.0, 0.0, 4.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Burlington - Burlington High,00480505, 0.0, 1.0, 0.5, 0.0, 2.0, 0.0, 0.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Burlington - Memorial,00480015, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 1.3,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Canton - John F Kennedy,00500017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.1, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.9,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Chicopee High,00610505, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Clinton - Clinton Elementary,00640050, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Danvers - Willis E Thorpe,00710045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.5, 0.0, 0.2, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,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, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.4, 0.0, 0.1, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,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, 0.0, 0.5, 0.0, 0.0, 0.0, 0.8, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Everett - Lafayette School,00930038, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Everett - Webster School,00930015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.4, 0.1, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fairhaven - Fairhaven High,00940505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 1.0, 0.5, 1.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 2.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fall River - William S Greene,00950065, 0.0, 0.0, 1.0, 1.0, 0.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.7, 1.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 2.8, 2.0, 0.2, 5.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Franklin High,01010505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gardner - Elm Street School,01030001, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.2, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Granby - East Meadow,01110004, 0.0, 0.0, 0.4, 1.2, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Hampshire - Hampshire Regional High,06830505, 0.1, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.1,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Haverhill Alternative School,01280033, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Haverhill High,01280505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - TEACH,01280073, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - H.B. Lawrence School,01370070, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - Holyoke High,01370505, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 1.3, 0.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2018-19,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.1, 0.2, 0.0, 0.8, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.9, 0.0, 0.0, 1.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Robert Frost,01490018, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - Spark Academy,01490085, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Leominster - Fall Brook,01530007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Leominster High School,01530505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 0.0, 3.0, 0.0, 4.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Littleton - Russell St Elementary,01580015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Longmeadow - Longmeadow High,01590505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Longmeadow - Wolf Swamp Road,01590025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lowell - Bartlett Community Partnership,01600090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 0.0, 1.0, 0.1, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Cobbet Elementary,01630035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Thurgood Marshall Mid,01630305, 0.0, 1.0, 0.0, 0.0, 2.0, 0.1, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Malden - Beebe,01650003, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Malden - Salemwood,01650057, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marblehead - Marblehead High,01680505, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 1.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Marshfield - Gov Edward Winslow,01710020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.6, 2.6,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Medford - Madeleine Dugger Andrews,01760315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medford - Medford High,01760505, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medford - Milton Fuller Roberts,01760150, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Methuen - Donald P Timony Grammar,01810060, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.9, 0.0, 2.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Narragansett - Templeton Center,07200020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Natick - Wilson Middle,01980310, 0.0, 0.8, 0.0, 0.0, 1.6, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - Newman Elementary,01990050, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Hayden/McFadden,02010078, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Keith Middle School,02010405, 0.0, 1.0, 2.0, 1.0, 1.0, 0.0, 1.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,New Bedford - Roosevelt Middle School,02010415, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 3.0, 1.0, 2.0, 1.0, 0.0, 7.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newburyport - Francis T Bresnahan Elementary,02040005, 1.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.3, 1.3, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Middlesex - Varnum Brook,07350035, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Orange - Dexter Park,02230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Orange - Fisher Hill,02230015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,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, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,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, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Hedge,02390010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Central Middle,02430315, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - A. C. Whelan Elementary School,02480003, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Abraham Lincoln,02480025, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.1, 0.0, 0.0, 0.0, 0.8, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Garfield Elementary School,02480056, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Garfield Middle School,02480057, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Paul Revere,02480050, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Revere High,02480505, 0.0, 0.1, 1.0, 0.0, 0.0, 2.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Rumney Marsh Academy,02480014, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Seacoast School,02480520, 0.0, 0.1, 0.0, 0.0, 0.0, 0.2, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Revere - Susan B. Anthony Middle School,02480305, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Bates,02580003, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - New Liberty Innovation School,02580510, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Salem Early Childhood,02580001, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Salem High,02580505, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Salem - Witchcraft Heights,02580070, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.4, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Saugus - Veterans Memorial,02620065, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Scituate - Wampatuck Elementary,02640020, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sharon - Cottage Street,02660005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Shrewsbury - Floral Street School,02710020, 0.3, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2018-19,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 1.9,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Somerville - West Somerville Neighborhood,02740115, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southampton - William E Norris,02750005, 0.1, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southbridge - Southbridge Middle School,02770315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.1, 0.0, 0.0, 0.9, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Chestnut Academy,02810365, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Edward P. Boland School,02810010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Elias Brookings,02810030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,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.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - High School Of Commerce,02810510, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Indian Orchard Elementary,02810100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - John J Duggan Middle,02810320, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - M Marcus Kiley Middle,02810330, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Samuel Bowles,02810020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Taunton - Taunton High,02930505, 0.0, 0.0, 1.5, 1.3, 0.0, 0.0, 0.0, 2.8,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wakefield - Galvin Middle School,03050310, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wakefield - Wakefield Memorial High,03050505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Boyden,03070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - John W. McDevitt Middle School,03080415, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2018-19,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.6, 0.2, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Wellesley Middle,03170305, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.7, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,West Springfield - West Springfield Middle,03320305, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Westfield High,03250505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Westhampton - Westhampton Elementary School,03270005, 0.1, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.5, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2018-19,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Westwood - Westwood High,03350505, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2018-19,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.5, 0.4, 0.0, 0.0, 0.9,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.4, 0.5, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.8, 0.0, 0.5, 0.0, 1.3,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.1, 1.0, 1.0, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Canterbury,03480045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - City View,03480053, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Clark St Community,03480055, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2018-19,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2018-19,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Norrback Avenue,03480202, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - North High,03480515, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Quinsigamond,03480210, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Roosevelt,03480220, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - South High Community,03480520, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 1.0, 2.0, 0.0, 2.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - West Tatnuck,03480260, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Worthington - R. H. Conwell,03490010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wrentham - Charles E Roderick,03500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2018-19,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 2.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.2, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.2, 0.0, 0.8, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 1.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - Arlington High,00100505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - Cyrus E Dallin,00100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Arlington - Thompson,00100050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.5, 0.5, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.1, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.2, 3.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Belmont - Belmont High,00260505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Belmont - Daniel Butler,00260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.2, 1.0, 0.0, 0.6, 0.2, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Beverly - Briscoe Middle,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Beverly - McKeown School,00300002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Billerica - Billerica Memorial High School,00310505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Billerica - Parker,00310015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Blackstone,00350390, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Carter Developmental Center,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Dearborn,00350074, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Dennis C Haley,00350077, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.5, 0.5, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.5, 0.5, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - ELC - West Zone,00350006, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - East Boston Early Childhood Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Eliot Elementary,00350096, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Madison Park High,00350537, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Mather,00350227, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Mattapan Early Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Michael J Perkins,00350231, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Orchard Gardens,00350257, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Paul A Dever,00350268, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - TechBoston Academy,00350657, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 1.2,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,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, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.6, 0.0, 3.0, 0.0, 3.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 1.6, 0.6, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.3, 1.0, 0.3, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Brockton High,00440505, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Brookline - Brookline High,00460505, 0.0, 1.0, 0.7, 1.0, 0.0, 0.0, 0.4, 3.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookline - Edward Devotion,00460015, 0.0, 0.0, 1.0, 0.0, 0.4, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookline - Pierce,00460040, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Burlington - Burlington High,00480505, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Burlington - Memorial,00480015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Canton - John F Kennedy,00500017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Canton - Lt Peter M Hansen,00500012, 0.0, 1.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2017-18,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelsea - Chelsea High,00570505, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelsea - Clark Avenue School,00570050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.5, 1.0, 1.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Chicopee High,00610505, 0.0, 0.0, 2.0, 3.0, 0.0, 1.0, 0.0, 6.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.5, 0.2, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.2, 0.0, 0.5, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dracut - Dracut Senior High,00790505, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,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, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-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, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Everett - Adams School,00930003, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Everett - Everett High,00930505, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Everett - Lafayette School,00930038, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.4, 0.1, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fairhaven - Fairhaven High,00940505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 1.5, 0.0, 1.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 1.5, 0.0, 1.0, 0.0, 3.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Falmouth - Mullen-Hall,00960020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.7, 1.0, 0.0, 2.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 1.8, 2.0, 0.2, 4.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Franklin High,01010505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Horace Mann,01010405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gardner - Waterford Street,01030020, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.2, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Granby - West Street,01110010, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hadley - Hadley Elementary,01170015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.4, 1.0, 0.0, 0.0, 0.0, 2.4,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Haverhill - Haverhill High,01280505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke - E N White Elementary,01370045, 0.0, 0.8, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke - Holyoke High,01370505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopkinton - Center,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Hudson - C A Farley,01410030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2017-18,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Ipswich - Winthrop,01440015, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.4, 0.5, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Lawrence High School,01490515, 0.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Robert Frost,01490018, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - Spark Academy,01490085, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 0.0, 1.0, 0.7, 0.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.6, 3.0, 0.0, 3.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Longmeadow - Wolf Swamp Road,01590025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Lowell - Bartlett Community Partnership,01600090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Lowell Day School on Broadway,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Cobbet Elementary,01630035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 1.0, 0.5, 1.0, 1.0, 3.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Malden - Forestdale,01650027, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Malden - Salemwood,01650057, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marblehead - Elbridge Gerry,01680015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 1.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Marshfield - Gov Edward Winslow,01710020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,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, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6, 0.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.6, 2.6,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medford - Medford High,01760505, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medford - Milton Fuller Roberts,01760150, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.9, 0.0, 2.9,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Narragansett - Templeton Center,07200020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 2.0, 0.6, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.3, 2.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 1.0, 0.0, 1.0, 0.5, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Hayden/McFadden,02010078, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Keith Middle School,02010405, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - New Bedford High,02010505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Normandin Middle School,02010410, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,New Bedford - Roosevelt Middle School,02010415, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 1.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.3, 1.3, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Andover - Atkinson,02110001, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,0,0.0 -NaN,NaN,a-phya-i1,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northampton - Bridge Street,02100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Orange - Fisher Hill,02230015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,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, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Hedge,02390010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Central Middle,02430315, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Reay E Sterling Middle,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - A. C. Whelan Elementary School,02480003, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Revere High,02480505, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Rumney Marsh Academy,02480014, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Revere - Susan B. Anthony Middle School,02480305, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockport - Rockport Elementary,02520005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Salem - Bates,02580003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2017-18,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Salem - Salem High,02580505, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Saugus - Veterans Memorial,02620065, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Scituate - Wampatuck Elementary,02640020, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.9, 0.0, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southbridge - Southbridge Middle School,02770315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Edward P. Boland School,02810010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Elias Brookings,02810030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Forest Park Middle,02810325, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - John F Kennedy Middle,02810328, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - M Marcus Kiley Middle,02810330, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 1.0, 4.0, 1.0, 0.0, 6.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.0, 1.0, 2.0, 1.0, 0.0, 1.0, 6.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - Warner,02810180, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.1, 0.0, 0.3, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.4, 0.0, 0.0, 0.8, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Elizabeth Pole,02930027, 0.0, 0.3, 0.0, 0.8, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.3, 0.0, 0.0, 0.8, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Taunton - Taunton High,02930505, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2017-18,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Watertown - Watertown Middle,03140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2017-18,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Webster - Bartlett High School,03160505, 0.0, 0.2, 0.0, 0.0, 0.5, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Webster - Park Avenue Elementary,03160015, 0.0, 0.2, 0.5, 0.0, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Webster - Webster Middle School,03160315, 0.0, 0.2, 0.0, 0.0, 0.0, 0.5, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.1, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.2, 0.6, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Wellesley Middle,03170305, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.4, 0.7, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,West Springfield - West Springfield Middle,03320305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Westfield High,03250505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.6, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2017-18,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.4, 0.0, 0.5, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wilmington - Woburn Street,03420020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Winchendon - Murdock High School,03430515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.9, 1.7,0,0.0 -8.0,5,a-phya-i1,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Shamrock,03470043, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Chandler Magnet,03480052, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - City View,03480053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Clark St Community,03480055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Worcester - Forest Grove Middle,03480415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Goddard School/Science Technical,03480100, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - North High,03480515, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Quinsigamond,03480210, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Roosevelt,03480220, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - South High Community,03480520, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 2.5, 1.0, 1.0, 0.0, 4.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2017-18,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2017-18,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Wawecus Road School,03480026, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wrentham - Charles E Roderick,03500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2017-18,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Abington - Beaver Brook Elementary School,00010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Abington - Center Elementary School,00010002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Abington - Frolio Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.4, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.2, 0.0, 0.8, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.1, 2.0, 1.0, 0.0, 3.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.1, 0.5, 0.5, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - Cyrus E Dallin,00100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Arlington - Ottoson Middle,00100410, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Arlington - Thompson,00100050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashland - David Mindess,00140015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.6, 1.6, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.1, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 1.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Barnstable - Barnstable Intermediate School,00200315, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Belmont - Belmont High,00260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Belmont - Daniel Butler,00260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 1.0, 0.0, 0.0, 0.6, 0.4, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - Briscoe Middle,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - Cove Elementary,00300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - McKeown School,00300002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Billerica - Billerica Memorial High School,00310505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Another Course To College,00350541, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Blackstone,00350390, 0.0, 0.5, 1.0, 0.0, 0.0, 0.5, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Boston Latin,00350560, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Carter Developmental Center,00350036, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Dearborn,00350074, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Dennis C Haley,00350077, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - East Boston Early Childhood Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Fenway High School,00350540, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Harvard-Kent,00350200, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Henry Grew,00350135, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Jackson Mann,00350013, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Madison Park High,00350537, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Mather,00350227, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Mattahunt,00350226, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - O W Holmes,00350138, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Paul A Dever,00350268, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 1.6, 0.6, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.5, 0.4, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.2, 1.0, 0.0, 1.0, 0.0, 2.2,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.8, 0.0, 1.0, 0.0, 0.0, 2.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.3, 0.0, 1.0, 0.3, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Brockton - Barrett Russell School,00440007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Brockton - Goddard Alternative School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Huntington,00440055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Brookline - Brookline High,00460505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.4, 3.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brookline - Edward Devotion,00460015, 0.0, 0.0, 1.0, 0.0, 0.4, 1.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brookline - Pierce,00460040, 0.0, 1.0, 0.0, 0.5, 0.0, 1.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Burlington - Burlington High,00480505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.8, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.6, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Burlington - Memorial,00480015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Canton - John F Kennedy,00500017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Canton - Lt Peter M Hansen,00500012, 0.0, 1.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Carver - Carver Elementary School,00520015, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelsea - Chelsea High,00570505, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelsea - Clark Avenue School,00570050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Bowie,00610020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Chicopee High,00610505, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 5.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dracut - Dracut Senior High,00790505, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,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, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-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, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Everett - Adams School,00930003, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Everett - Everett High,00930505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Everett - George Keverian School,00930028, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Everett - Lafayette School,00930038, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Everett - Madeline English School,00930018, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Everett - Webster School,00930015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Fairhaven - Fairhaven High,00940505, 1.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Fairhaven - Hastings Middle,00940305, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.5, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Fall River - Resiliency Middle School,00950335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Fall River - Resiliency Preparatory School,00950325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 0.5, 0.0, 1.0, 0.0, 2.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Fall River - Stone Day School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Falmouth - Mullen-Hall,00960020, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.5, 0.8, 1.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.8, 1.0, 2.2, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Horace Mann,01010405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin - Oak Street Elementary,01010030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gardner - Waterford Street,01030020, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.8, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Granby - West Street,01110010, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greenfield - Green River,01140030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hampshire - Hampshire Regional High,06830505, 0.0, 1.4, 0.0, 1.4, 0.0, 0.0, 0.0, 2.8,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Haverhill - Crowell,01280020, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Haverhill - Greenleaf,01280027, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 1.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 2.4, 1.0, 0.5, 3.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Holbrook - South,01330025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopkinton - Center,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1, 0.0, 2.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - James F Hennessey,01490020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Lawrence High School,01490515, 0.0, 2.0, 0.0, 2.0, 0.0, 0.1, 0.0, 4.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Robert Frost,01490018, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 1.7,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 2.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Leverett - Leverett Elementary,01540005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.9, 1.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 1.7,0,0.0 -8.0,5,a-phya-i1,2016-17,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.4, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Lowell - James S Daley Middle School,01600315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Classical High,01630505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 1.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,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, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Malden - Salemwood,01650057, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marblehead - Elbridge Gerry,01680015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.5, 0.5, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,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.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.9, 0.0, 2.9,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.2, 0.6, 0.8, 0.0, 0.0, 1.6,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Mohawk Trail - Heath Elementary,07170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 0.0, 1.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.3, 0.0, 2.0, 1.8, 0.0, 0.0, 4.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.8, 0.2, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Narragansett - Templeton Center,07200020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 0.6, 1.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.3, 0.0, 0.6, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 0.0, 2.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 1.0, 1.6, 0.0, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.3, 0.0, 2.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - John Hannigan,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - New Bedford High,02010505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.0, 2.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 0.0, 2.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.4, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.2, 1.0, 0.0, 0.0, 2.2,0,0.0 -8.0,5,a-phya-i1,2016-17,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.9, 1.0, 0.0, 1.9,0,0.0 -NaN,NaN,a-phya-i1,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,0,0.0 -NaN,NaN,a-phya-i1,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2016-17,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northampton - Bridge Street,02100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.4, 0.0, 0.0, 0.5, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.8, 0.4, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Norton - Norton Middle,02180305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Oxford - Oxford Middle,02260405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Palmer - Converse Middle,02270305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 2.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Central Middle,02430315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Reay E Sterling Middle,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - A. C. Whelan Elementary School,02480003, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Rumney Marsh Academy,02480014, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Rockport - Rockport Elementary,02520005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Bates,02580003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Carlton,02580015, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Salem High,02580505, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.5, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Saugus - Ballard School,02620001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Saugus - Lynnhurst,02620040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Saugus - Veterans Memorial,02620065, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Scituate - Gates Intermediate School,02640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Scituate - Wampatuck Elementary,02640020, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.5, 1.5, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southbridge - Southbridge Middle School,02770315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Alice B Beal Elementary,02810175, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Edward P. Boland School,02810010, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Elias Brookings,02810030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - John F Kennedy Middle,02810328, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Lincoln,02810120, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - M Marcus Kiley Middle,02810330, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Rebecca M Johnson,02810055, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 4.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Van Sickle Academy,02810480, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Swampscott - Hadley,02910010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.4, 0.0, 0.0, 0.8, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.1, 1.1,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.3, 0.0, 0.3, 0.8, 0.1, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Taunton - Taunton High,02930505, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 0.0, 2.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.2, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Triton - Newbury Elementary,07730020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.4, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - Northeast Elementary School,03080040, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Watertown - Hosmer,03140020, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Watertown - Watertown Middle,03140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -NaN,NaN,a-phya-i1,2016-17,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Webster - Park Avenue Elementary,03160015, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Webster - Webster Middle School,03160315, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.6, 0.2, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.6, 0.0, 0.1, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,0,0.0 -8.0,5,a-phya-i1,2016-17,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - John Ashley,03320005, 1.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - Mittineague,03320030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,0,0.0 -8.0,5,a-phya-i1,2016-17,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.4, 0.0, 0.5, 0.0, 0.9,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - Weymouth High School,03360505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Weymouth - William Seach,03360080, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wilmington - Woburn Street,03420020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Winchendon - Murdock High School,03430515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.9, 1.5,0,0.0 -8.0,5,a-phya-i1,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Shamrock,03470043, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Forest Grove Middle,03480415, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Norrback Avenue,03480202, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - North High,03480515, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Quinsigamond,03480210, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Roosevelt,03480220, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - South High Community,03480520, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -NaN,NaN,a-phya-i1,2016-17,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN -8.0,5,a-phya-i1,2016-17,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wrentham - Charles E Roderick,03500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,0,0.0 -8.0,5,a-phya-i1,2016-17,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,0,0.0 +1,1,a-phya-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376 +1,1,a-phya-i1,2022-23,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446 +1,1,a-phya-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1346 +1,1,a-phya-i1,2022-23,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252 +1,1,a-phya-i1,2022-23,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338 +1,1,a-phya-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94 +1,1,a-phya-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1476 +1,1,a-phya-i1,2022-23,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472 +1,1,a-phya-i1,2022-23,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586 +1,1,a-phya-i1,2022-23,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259 +1,1,a-phya-i1,2022-23,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +7.301333333333333,5,a-phya-i1,2022-23,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,131,131.0 +5.696,5,a-phya-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,432,432.0 +5.818666666666667,5,a-phya-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +5.248,5,a-phya-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,516,516.0 +5.84,5,a-phya-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,405,405.0 +5.556666666666667,5,a-phya-i1,2022-23,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,733,458.125 +6.789333333333333,5,a-phya-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,227,227.0 +6.309333333333333,5,a-phya-i1,2022-23,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,317,317.0 +5.408,5,a-phya-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +6.666666666666667,5,a-phya-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,250,250.0 +1,1,a-phya-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358 +4.848,4.85,a-phya-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,591,591.0 +7.328,5,a-phya-i1,2022-23,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,126,126.0 +6.6466666666666665,5,a-phya-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,203,253.75 +5.777777777777778,5,a-phya-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.3, 0.0, 0.0, 0.0, 0.3,125,416.6666666666667 +5.0488888888888885,5,a-phya-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.3, 0.0, 0.0, 0.0, 0.3,166,553.3333333333334 +3.824,3.82,a-phya-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,783,783.0 +5.536,5,a-phya-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,462,462.0 +6.912,5,a-phya-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,204,204.0 +6.933333333333334,5,a-phya-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,200,200.0 +6.293333333333333,5,a-phya-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,256,320.0 +6.048,5,a-phya-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,549,366.0 +5.92,5,a-phya-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 +6.544,5,a-phya-i1,2022-23,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,273,273.0 +6.56,5,a-phya-i1,2022-23,Pittsfield - Crosby,02360065, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,270,270.0 +1,1,a-phya-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17 +7.754666666666667,5,a-phya-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,23,46.0 +5.962666666666666,5,a-phya-i1,2022-23,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,382,382.0 +6.4,5,a-phya-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,450,300.0 +6.1066666666666665,5,a-phya-i1,2022-23,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +6.842666666666666,5,a-phya-i1,2022-23,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,651,217.0 +6.890666666666666,5,a-phya-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,104,208.0 +7.034666666666666,5,a-phya-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,181,181.0 +6.096,5,a-phya-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +6.752,5,a-phya-i1,2022-23,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,234,234.0 +3.4133333333333336,3.41,a-phya-i1,2022-23,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,860,860.0 +6.2364444444444445,5,a-phya-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,496,330.6666666666667 +6.634666666666667,5,a-phya-i1,2022-23,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,256,256.0 +6.437333333333333,5,a-phya-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,293,293.0 +6.1066666666666665,5,a-phya-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +6.8693333333333335,5,a-phya-i1,2022-23,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,212,212.0 +5.834666666666666,5,a-phya-i1,2022-23,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,406,406.0 +6.8853333333333335,5,a-phya-i1,2022-23,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,209,209.0 +4.938666666666666,4.94,a-phya-i1,2022-23,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,574,574.0 +6.672,5,a-phya-i1,2022-23,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,249,249.0 +5.269333333333333,5,a-phya-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,512,512.0 +6.439111111111111,5,a-phya-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,878,292.6666666666667 +6.981333333333334,5,a-phya-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,191,191.0 +4.530666666666667,4.53,a-phya-i1,2022-23,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1301,650.5 +2.517333333333333,2.52,a-phya-i1,2022-23,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1028,1028.0 +4.693333333333333,4.69,a-phya-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,620,620.0 +4.698666666666667,4.7,a-phya-i1,2022-23,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,619,619.0 +6.293333333333333,5,a-phya-i1,2022-23,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,320,320.0 +6.736,5,a-phya-i1,2022-23,Plympton - Dennett Elementary,02400010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,237,237.0 +5.336,5,a-phya-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,999,499.5 +1,1,a-phya-i1,2022-23,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142 +7.182222222222221,5,a-phya-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,184,153.33333333333334 +-0.13333333333333333,1,a-phya-i1,2022-23,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,305,1525.0 +7.907878787878788,5,a-phya-i1,2022-23,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 2.2,38,17.27272727272727 +3.36,3.36,a-phya-i1,2022-23,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,174,870.0 +4.981333333333334,4.98,a-phya-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,566,566.0 +5.242666666666667,5,a-phya-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,517,517.0 +6.275555555555555,5,a-phya-i1,2022-23,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,388,323.33333333333337 +1,1,a-phya-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +5.64,5,a-phya-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,354,442.5 +1,1,a-phya-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203 +6.293333333333333,5,a-phya-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,320,320.0 +6.629333333333333,5,a-phya-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,257,257.0 +7.12,5,a-phya-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,165,165.0 +5.269333333333333,5,a-phya-i1,2022-23,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,256,512.0 +2.1226666666666665,2.12,a-phya-i1,2022-23,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,551,1102.0 +4.48,4.48,a-phya-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,330,660.0 +4.576,4.58,a-phya-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,321,642.0 +4.863030303030303,4.86,a-phya-i1,2022-23,Quincy - Central Middle,02430315, 0.0, 0.3, 0.0, 0.9, 0.0, 0.0, 0.0, 1.1,647,588.1818181818181 +4.373333333333333,4.37,a-phya-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,340,680.0 +4.573333333333333,4.57,a-phya-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,514,642.5 +4.597333333333333,4.6,a-phya-i1,2022-23,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,319,638.0 +5.109333333333334,5,a-phya-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.3, 0.5, 0.3, 0.0, 0.0, 0.0, 1.0,542,542.0 +5.093333333333334,5,a-phya-i1,2022-23,Quincy - Merrymount,02430060, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.6,327,545.0 +3.3813333333333335,3.38,a-phya-i1,2022-23,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,433,866.0 +-7.744,1,a-phya-i1,2022-23,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,1476,2952.0 +3.616,3.62,a-phya-i1,2022-23,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,411,822.0 +2.684444444444445,2.68,a-phya-i1,2022-23,Quincy - Quincy High,02430505, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,1495,996.6666666666666 +4.444444444444444,4.44,a-phya-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,400,666.6666666666667 +4.115555555555555,4.12,a-phya-i1,2022-23,Quincy - South West Middle School,02430320, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,437,728.3333333333334 +4.245333333333333,4.25,a-phya-i1,2022-23,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,352,704.0 +5.04,5,a-phya-i1,2022-23,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,333,555.0 +2.421333333333333,2.42,a-phya-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,523,1046.0 +6.48,5,a-phya-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +5.76,5,a-phya-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +5.754666666666667,5,a-phya-i1,2022-23,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,421,421.0 +6.656,5,a-phya-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,252,252.0 +4.981333333333334,4.98,a-phya-i1,2022-23,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,566,566.0 +4.698666666666667,4.7,a-phya-i1,2022-23,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,619,619.0 +6.101333333333334,5,a-phya-i1,2022-23,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,356,356.0 +5.712,5,a-phya-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,429,429.0 +6.0906666666666665,5,a-phya-i1,2022-23,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,358,358.0 +5.834666666666666,5,a-phya-i1,2022-23,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,406,406.0 +5.925333333333334,5,a-phya-i1,2022-23,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +1,1,a-phya-i1,2022-23,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103 +5.912380952380952,5,a-phya-i1,2022-23,Reading - Reading Memorial High,02460505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.8, 0.0, 2.8,1096,391.42857142857144 +5.525333333333333,5,a-phya-i1,2022-23,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +6.688,5,a-phya-i1,2022-23,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,246,246.0 +4.494545454545455,4.49,a-phya-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,723,657.2727272727273 +-24.106666666666666,1,a-phya-i1,2022-23,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,602,6020.0 +6.008888888888889,5,a-phya-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.1, 0.0, 0.0, 0.8, 0.0, 0.9,336,373.3333333333333 +6.311111111111111,5,a-phya-i1,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.1, 0.0, 0.0, 0.2, 0.0, 0.3,95,316.6666666666667 +4.67878787878788,4.68,a-phya-i1,2022-23,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,685,622.7272727272726 +5.3527272727272734,5,a-phya-i1,2022-23,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,546,496.3636363636363 +5.789090909090909,5,a-phya-i1,2022-23,Revere - Paul Revere,02480050, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.1,456,414.5454545454545 +4.414623655913979,4.41,a-phya-i1,2022-23,Revere - Revere High,02480505, 0.0, 1.0, 1.1, 0.0, 0.0, 1.0, 0.0, 3.1,2084,672.258064516129 +5.246060606060606,5,a-phya-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,568,516.3636363636364 +6.359365079365079,5,a-phya-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.0, 2.1,646,307.6190476190476 +5.29939393939394,5,a-phya-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,557,506.3636363636363 +7.1786666666666665,5,a-phya-i1,2022-23,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,154,154.0 +4.618666666666667,4.62,a-phya-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,634,634.0 +6.464,5,a-phya-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.376,5,a-phya-i1,2022-23,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,492,492.0 +5.365333333333333,5,a-phya-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,247,494.0 +4.1866666666666665,4.19,a-phya-i1,2022-23,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,715,715.0 +5.365333333333333,5,a-phya-i1,2022-23,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,247,494.0 +4.661333333333333,4.66,a-phya-i1,2022-23,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,313,626.0 +-3.395555555555557,1,a-phya-i1,2022-23,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,641,2136.666666666667 +6.378666666666667,5,a-phya-i1,2022-23,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +6.768,5,a-phya-i1,2022-23,Rockport - Rockport High,02520510, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,231,231.0 +6.96,5,a-phya-i1,2022-23,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,195,195.0 +7.648,5,a-phya-i1,2022-23,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,66,66.0 +6.273333333333333,5,a-phya-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0,1295,323.75 +6.005333333333334,5,a-phya-i1,2022-23,Salem - Bates,02580003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +1,1,a-phya-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274 +-5.12,1,a-phya-i1,2022-23,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,246,2460.0 +6.744615384615385,5,a-phya-i1,2022-23,Salem - Collins Middle,02580305, 0.0, 0.1, 1.0, 0.5, 0.0, 1.0, 0.0, 2.6,612,235.3846153846154 +6.56,5,a-phya-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,297,270.0 +7.502222222222222,5,a-phya-i1,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,56,93.33333333333334 +7.534545454545454,5,a-phya-i1,2022-23,Salem - Salem Early Childhood,02580001, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,96,87.27272727272727 +5.744761904761905,5,a-phya-i1,2022-23,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,888,422.85714285714283 +7.875555555555555,5,a-phya-i1,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,14,23.333333333333336 +-13.173333333333334,1,a-phya-i1,2022-23,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,397,3970.0 +6.572549019607844,5,a-phya-i1,2022-23,Salem - Witchcraft Heights,02580070, 0.0, 0.2, 0.0, 1.0, 0.5, 0.0, 0.0, 1.7,455,267.6470588235294 +1,1,a-phya-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489 +6.56,5,a-phya-i1,2022-23,Sandwich - Forestdale School,02610002, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,540,270.0 +6.2026666666666666,5,a-phya-i1,2022-23,Sandwich - Oak Ridge,02610025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,674,337.0 +5.525333333333333,5,a-phya-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,928,464.0 +6.613333333333333,5,a-phya-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,780,260.0 +4.197333333333333,4.2,a-phya-i1,2022-23,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,713,713.0 +6.405333333333333,5,a-phya-i1,2022-23,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,598,299.0 +6.021333333333334,5,a-phya-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,371,371.0 +1,1,a-phya-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40 +6.117333333333334,5,a-phya-i1,2022-23,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,353,353.0 +6.924444444444445,5,a-phya-i1,2022-23,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,605,201.66666666666666 +6.64,5,a-phya-i1,2022-23,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,255,255.0 +6.245333333333333,5,a-phya-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +3.9306666666666668,3.93,a-phya-i1,2022-23,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,763,763.0 +5.578666666666667,5,a-phya-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,454,454.0 +2.7733333333333334,2.77,a-phya-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,490,980.0 +3.136,3.14,a-phya-i1,2022-23,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,456,912.0 +1.824,1.82,a-phya-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,579,1158.0 +2.3146666666666667,2.31,a-phya-i1,2022-23,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,533,1066.0 +1,1,a-phya-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4 +6.044444444444444,5,a-phya-i1,2022-23,Sharon - Cottage Street,02660005, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,440,366.6666666666667 +6.137142857142858,5,a-phya-i1,2022-23,Sharon - East Elementary,02660010, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4,489,349.28571428571433 +5.8323809523809516,5,a-phya-i1,2022-23,Sharon - Heights Elementary,02660015, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,569,406.42857142857144 +7.402666666666667,5,a-phya-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,56,112.0 +4.952,4.95,a-phya-i1,2022-23,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1143,571.5 +3.493333333333333,3.49,a-phya-i1,2022-23,Sharon - Sharon Middle,02660305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,845,845.0 +4.554666666666667,4.55,a-phya-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1292,646.0 +1,1,a-phya-i1,2022-23,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401 +6.682666666666667,5,a-phya-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +5.232,5,a-phya-i1,2022-23,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,519,519.0 +6.376,5,a-phya-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,609,304.5 +5.03843137254902,5,a-phya-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.7, 0.0, 0.0, 1.7,944,555.2941176470588 +1,1,a-phya-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203 +5.191111111111112,5,a-phya-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.9, 0.9, 0.0, 1.8,948,526.6666666666666 +6.055466666666667,5,a-phya-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 5.0,1823,364.6 +6.357333333333333,5,a-phya-i1,2022-23,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +6.448,5,a-phya-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,291,291.0 +7.338666666666667,5,a-phya-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,124,124.0 +2.421333333333333,2.42,a-phya-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1046,1046.0 +5.184,5,a-phya-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,528,528.0 +1,1,a-phya-i1,2022-23,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, 0.0, 0.0, 0.0, 0.0,344 +6.272,5,a-phya-i1,2022-23,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +5.557333333333333,5,a-phya-i1,2022-23,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,458,458.0 +4.933333333333334,4.93,a-phya-i1,2022-23,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,575,575.0 +6.624,5,a-phya-i1,2022-23,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +5.325333333333333,5,a-phya-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1003,501.5 +6.549333333333333,5,a-phya-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,544,272.0 +6.650666666666667,5,a-phya-i1,2022-23,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,506,253.0 +6.874666666666666,5,a-phya-i1,2022-23,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,211,211.0 +6.864,5,a-phya-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,213,213.0 +4.112,4.11,a-phya-i1,2022-23,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,729,729.0 +1,1,a-phya-i1,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54 +5.653333333333333,5,a-phya-i1,2022-23,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,440,440.0 +1,1,a-phya-i1,2022-23,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15 +5.67111111111111,5,a-phya-i1,2022-23,Somerville - Somerville High,02740505, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,1310,436.6666666666667 +6.021333333333334,5,a-phya-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +6.874666666666666,5,a-phya-i1,2022-23,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,422,211.0 +5.1946666666666665,5,a-phya-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,526,526.0 +6.16,5,a-phya-i1,2022-23,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,345,345.0 +6.362666666666667,5,a-phya-i1,2022-23,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,307,307.0 +5.333333333333333,5,a-phya-i1,2022-23,South Hadley - South Hadley High,02780505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,500,500.0 +5.006222222222222,5,a-phya-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,842,561.3333333333334 +5.992380952380952,5,a-phya-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.8, 1.0, 0.0, 0.0, 2.8,1054,376.42857142857144 +4.517333333333333,4.52,a-phya-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,653,653.0 +6.728,5,a-phya-i1,2022-23,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,477,238.5 +6.570666666666667,5,a-phya-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,268,268.0 +6.22,5,a-phya-i1,2022-23,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,267,333.75 +6.133333333333334,5,a-phya-i1,2022-23,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,350,350.0 +5.946666666666666,5,a-phya-i1,2022-23,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,385,385.0 +6.672,5,a-phya-i1,2022-23,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,249,249.0 +6.24,5,a-phya-i1,2022-23,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +7.824,5,a-phya-i1,2022-23,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,33,33.0 +6.781333333333333,5,a-phya-i1,2022-23,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,457,228.5 +6.92,5,a-phya-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,405,202.5 +6.213333333333333,5,a-phya-i1,2022-23,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +5.230222222222222,5,a-phya-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1558,519.3333333333334 +6.432,5,a-phya-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,294,294.0 +7.648,5,a-phya-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,66,66.0 +1,1,a-phya-i1,2022-23,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +6.714666666666667,5,a-phya-i1,2022-23,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +4.84,4.84,a-phya-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1185,592.5 +6.537142857142857,5,a-phya-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.4, 0.0, 0.0, 0.0, 0.0, 1.4,384,274.2857142857143 +6.484848484848485,5,a-phya-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.2, 1.0, 0.0, 1.0, 0.0, 2.2,625,284.09090909090907 +6.608888888888888,5,a-phya-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,313,260.83333333333337 +6.096,5,a-phya-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +6.72,5,a-phya-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +6.064,5,a-phya-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,363,363.0 +6.888,5,a-phya-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,417,208.5 +5.685333333333333,5,a-phya-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,434,434.0 +6.405333333333333,5,a-phya-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,299,299.0 +6.762666666666667,5,a-phya-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,232,232.0 +7.205333333333333,5,a-phya-i1,2022-23,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,149,149.0 +5.488,5,a-phya-i1,2022-23,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +6.538666666666667,5,a-phya-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +6.282666666666667,5,a-phya-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,322,322.0 +6.096,5,a-phya-i1,2022-23,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +1,1,a-phya-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179 +5.061333333333334,5,a-phya-i1,2022-23,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,551,551.0 +6.56,5,a-phya-i1,2022-23,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +1,1,a-phya-i1,2022-23,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114 +6.1226666666666665,5,a-phya-i1,2022-23,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,352,352.0 +1,1,a-phya-i1,2022-23,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +6.450666666666667,5,a-phya-i1,2022-23,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,581,290.5 +1,1,a-phya-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26 +1,1,a-phya-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30 +4.858666666666666,4.86,a-phya-i1,2022-23,Springfield - German Gerena Community School,02810195, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,589,589.0 +6.464,5,a-phya-i1,2022-23,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +6.336,5,a-phya-i1,2022-23,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,312,312.0 +2.1173333333333333,2.12,a-phya-i1,2022-23,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1103,1103.0 +6.554666666666667,5,a-phya-i1,2022-23,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +5.84,5,a-phya-i1,2022-23,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,405,405.0 +7.450666666666667,5,a-phya-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,206,103.0 +5.104,5,a-phya-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,543,543.0 +5.92,5,a-phya-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,390,390.0 +5.826666666666667,5,a-phya-i1,2022-23,Springfield - John J Duggan Academy,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,815,407.5 +6.677333333333333,5,a-phya-i1,2022-23,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 +1,1,a-phya-i1,2022-23,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315 +7.290666666666667,5,a-phya-i1,2022-23,Springfield - Kiley Prep,02810315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,266,133.0 +6.661333333333333,5,a-phya-i1,2022-23,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +7.957333333333334,5,a-phya-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,8,8.0 +5.610666666666667,5,a-phya-i1,2022-23,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 +7.1466666666666665,5,a-phya-i1,2022-23,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,160,160.0 +6.410666666666667,5,a-phya-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +6.832,5,a-phya-i1,2022-23,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,219,219.0 +6.608,5,a-phya-i1,2022-23,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,261,261.0 +5.8933333333333335,5,a-phya-i1,2022-23,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,395,395.0 +5.253333333333333,5,a-phya-i1,2022-23,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,515,515.0 +4.912,4.91,a-phya-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,579,579.0 +6.714666666666667,5,a-phya-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +4.373333333333333,4.37,a-phya-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1360,680.0 +6.416,5,a-phya-i1,2022-23,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,297,297.0 +6.8,5,a-phya-i1,2022-23,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,225,225.0 +7.002666666666666,5,a-phya-i1,2022-23,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,187,187.0 +4.275555555555555,4.28,a-phya-i1,2022-23,Springfield - Springfield Central High,02810500, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,2095,698.3333333333334 +6.917333333333334,5,a-phya-i1,2022-23,Springfield - Springfield High School,02810570, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,203,203.0 +5.101333333333334,5,a-phya-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1087,543.5 +1,1,a-phya-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31 +1,1,a-phya-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88 +1,1,a-phya-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321 +1,1,a-phya-i1,2022-23,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20 +7.8293333333333335,5,a-phya-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,32,32.0 +7.674666666666667,5,a-phya-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,61,61.0 +7.728,5,a-phya-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,51,51.0 +1,1,a-phya-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133 +1,1,a-phya-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,101 +5.546666666666667,5,a-phya-i1,2022-23,Springfield - Sumner Avenue,02810160, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,460,460.0 +6.317333333333333,5,a-phya-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,631,315.5 +5.706666666666667,5,a-phya-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +6.522666666666667,5,a-phya-i1,2022-23,Springfield - Thomas M Balliet,02810015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.634666666666667,5,a-phya-i1,2022-23,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,256,256.0 +6.666666666666667,5,a-phya-i1,2022-23,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,250,250.0 +5.76,5,a-phya-i1,2022-23,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +5.776,5,a-phya-i1,2022-23,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +6.698666666666667,5,a-phya-i1,2022-23,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,244,244.0 +3.9466666666666668,3.95,a-phya-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1520,760.0 +6.268444444444444,5,a-phya-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,487,324.6666666666667 +6.714666666666667,5,a-phya-i1,2022-23,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,241,241.0 +5.904,5,a-phya-i1,2022-23,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +6.1386666666666665,5,a-phya-i1,2022-23,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,349,349.0 +6.192,5,a-phya-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,678,339.0 +6.349333333333333,5,a-phya-i1,2022-23,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,619,309.5 +7.708070175438596,5,a-phya-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.9, 1.0, 0.0, 0.0, 0.0, 1.9,104,54.73684210526316 +1,1,a-phya-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264 +6.1386666666666665,5,a-phya-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,349,349.0 +5.973333333333334,5,a-phya-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +3.6533333333333333,3.65,a-phya-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,815,815.0 +6.336,5,a-phya-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,312,312.0 +6.501333333333333,5,a-phya-i1,2022-23,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,281,281.0 +5.1386666666666665,5,a-phya-i1,2022-23,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1073,536.5 +3.3226666666666667,3.32,a-phya-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,877,877.0 +6.229333333333333,5,a-phya-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.5, 0.0, 0.0, 0.0, 2.5,830,332.0 +6.3809523809523805,5,a-phya-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 1.0, 0.8, 0.0, 0.0, 2.8,850,303.5714285714286 +1,1,a-phya-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325 +5.728,5,a-phya-i1,2022-23,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,426,426.0 +6.026666666666666,5,a-phya-i1,2022-23,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +4.992,4.99,a-phya-i1,2022-23,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,564,564.0 +7.056,5,a-phya-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,177,177.0 +6.261333333333333,5,a-phya-i1,2022-23,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,326,326.0 +6.378666666666667,5,a-phya-i1,2022-23,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +6.032,5,a-phya-i1,2022-23,Sutton - Sutton High School,02900510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +1,1,a-phya-i1,2022-23,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296 +5.8133333333333335,5,a-phya-i1,2022-23,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,205,410.0 +4.266666666666667,4.27,a-phya-i1,2022-23,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,350,700.0 +6.282666666666667,5,a-phya-i1,2022-23,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,161,322.0 +1.1626666666666667,1.16,a-phya-i1,2022-23,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,641,1282.0 +0.7573333333333333,1,a-phya-i1,2022-23,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,679,1358.0 +6.458666666666667,5,a-phya-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +6.645333333333333,5,a-phya-i1,2022-23,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +5.136,5,a-phya-i1,2022-23,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,537,537.0 +5.344,5,a-phya-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,498,498.0 +7.050666666666666,5,a-phya-i1,2022-23,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,178,178.0 +6.762666666666667,5,a-phya-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,232,232.0 +1,1,a-phya-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2940 +5.061333333333334,5,a-phya-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,551,551.0 +6.280634920634921,5,a-phya-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.6, 0.0, 2.1,677,322.38095238095235 +1,1,a-phya-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524 +5.404444444444444,5,a-phya-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 1.1, 0.4, 0.0, 0.0, 1.5,730,486.6666666666667 +4.446666666666666,4.45,a-phya-i1,2022-23,Taunton - East Taunton Elementary,02930010, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,533,666.25 +6.1,5,a-phya-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,285,356.25 +5.312,5,a-phya-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,252,504.0 +5.202424242424243,5,a-phya-i1,2022-23,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.8, 0.0, 0.0, 0.0, 1.1,577,524.5454545454545 +6.273333333333333,5,a-phya-i1,2022-23,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,259,323.75 +4.974222222222222,4.97,a-phya-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.8, 0.8, 0.0, 0.0, 1.5,851,567.3333333333334 +4.706666666666667,4.71,a-phya-i1,2022-23,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,494,617.5 +4.98,4.98,a-phya-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,453,566.25 +5.717333333333333,5,a-phya-i1,2022-23,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.4, 0.4, 0.8, 0.0, 1.5,642,428.0 +7.918222222222221,5,a-phya-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 1.5, 0.8, 0.8, 1.5, 0.0, 4.5,69,15.333333333333334 +3.0933333333333333,3.09,a-phya-i1,2022-23,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 1.5, 0.8, 0.0, 0.0, 3.0,2760,920.0 +6.229333333333333,5,a-phya-i1,2022-23,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,332,332.0 +5.28,5,a-phya-i1,2022-23,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,510,510.0 +5.354666666666667,5,a-phya-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,496,496.0 +4.736,4.74,a-phya-i1,2022-23,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,612,612.0 +6.848,5,a-phya-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,216,216.0 +6.490666666666667,5,a-phya-i1,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,283,283.0 +5.994666666666666,5,a-phya-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,752,376.0 +6.549333333333333,5,a-phya-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +6.618666666666667,5,a-phya-i1,2022-23,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,259,259.0 +6.032,5,a-phya-i1,2022-23,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,369,369.0 +2.896,2.9,a-phya-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,957,957.0 +5.802666666666667,5,a-phya-i1,2022-23,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +5.696,5,a-phya-i1,2022-23,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,432,432.0 +5.76,5,a-phya-i1,2022-23,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +4.549333333333333,4.55,a-phya-i1,2022-23,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,647,647.0 +6.293333333333333,5,a-phya-i1,2022-23,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,320,320.0 +7.472,5,a-phya-i1,2022-23,Truro - Truro Central,03000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,99,99.0 +5.994666666666666,5,a-phya-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,752,376.0 +5.792,5,a-phya-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,414,414.0 +6.933333333333334,5,a-phya-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,400,200.0 +6.864,5,a-phya-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,213,213.0 +6.36,5,a-phya-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,615,307.5 +7.626666666666667,5,a-phya-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,70,70.0 +6.176,5,a-phya-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +3.8986666666666667,3.9,a-phya-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,769,769.0 +1,1,a-phya-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38 +5.221333333333333,5,a-phya-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,521,521.0 +4.8533333333333335,4.85,a-phya-i1,2022-23,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,590,590.0 +5.36,5,a-phya-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,495,495.0 +5.328,5,a-phya-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,501,501.0 +4.042666666666666,4.04,a-phya-i1,2022-23,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,371,742.0 +5.024,5,a-phya-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,279,558.0 +3.232,3.23,a-phya-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,447,894.0 +2.6773333333333333,2.68,a-phya-i1,2022-23,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,499,998.0 +1,1,a-phya-i1,2022-23,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130 +4.448,4.45,a-phya-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,333,666.0 +4.501333333333333,4.5,a-phya-i1,2022-23,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,328,656.0 +2.7626666666666666,2.76,a-phya-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,491,982.0 +-0.23466666666666666,1,a-phya-i1,2022-23,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,772,1544.0 +4.128,4.13,a-phya-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,363,726.0 +3.1573333333333333,3.16,a-phya-i1,2022-23,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,454,908.0 +1,1,a-phya-i1,2022-23,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342 +-2.2933333333333334,1,a-phya-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1930,1930.0 +5.690666666666667,5,a-phya-i1,2022-23,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +7.354666666666667,5,a-phya-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,121,121.0 +5.16,5,a-phya-i1,2022-23,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1065,532.5 +6.832,5,a-phya-i1,2022-23,Wakefield - Greenwood,03050020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,219,219.0 +5.794666666666667,5,a-phya-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,827,413.5 +6.864,5,a-phya-i1,2022-23,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,213,213.0 +6.8613333333333335,5,a-phya-i1,2022-23,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,427,213.5 +7.488,5,a-phya-i1,2022-23,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,96,96.0 +5.989333333333334,5,a-phya-i1,2022-23,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +5.824,5,a-phya-i1,2022-23,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +5.653333333333333,5,a-phya-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,88,440.0 +6.517333333333333,5,a-phya-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,417,278.0 +5.073333333333333,5,a-phya-i1,2022-23,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,439,548.75 +5.461333333333333,5,a-phya-i1,2022-23,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +5.562666666666667,5,a-phya-i1,2022-23,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +5.368,5,a-phya-i1,2022-23,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,987,493.5 +5.456,5,a-phya-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +5.946666666666666,5,a-phya-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,385,385.0 +5.984,5,a-phya-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +6.4,5,a-phya-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,600,300.0 +6.413333333333333,5,a-phya-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,595,297.5 +5.296,5,a-phya-i1,2022-23,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,507,507.0 +6.117333333333334,5,a-phya-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,353,353.0 +6.858666666666666,5,a-phya-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,214,214.0 +5.665333333333334,5,a-phya-i1,2022-23,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 4.0,1751,437.75 +5.957333333333334,5,a-phya-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +5.978666666666666,5,a-phya-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +5.349333333333333,5,a-phya-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,497,497.0 +6.677333333333333,5,a-phya-i1,2022-23,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 +1,1,a-phya-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +5.549333333333333,5,a-phya-i1,2022-23,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,919,459.5 +5.669333333333333,5,a-phya-i1,2022-23,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,437,437.0 +4.661333333333333,4.66,a-phya-i1,2022-23,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,626,626.0 +6.551111111111111,5,a-phya-i1,2022-23,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 1.2,326,271.6666666666667 +7.132121212121212,5,a-phya-i1,2022-23,Watertown - Hosmer,03140020, 1.0, 1.2, 2.0, 0.0, 0.0, 0.0, 0.2, 4.4,716,162.72727272727272 +7.139393939393939,5,a-phya-i1,2022-23,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.2, 2.2,355,161.36363636363635 +4.742222222222222,4.74,a-phya-i1,2022-23,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 1.2,733,610.8333333333334 +5.6355555555555545,5,a-phya-i1,2022-23,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 1.2,532,443.33333333333337 +5.786666666666667,5,a-phya-i1,2022-23,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,498,415.0 +6.386666666666667,5,a-phya-i1,2022-23,Wayland - Happy Hollow School,03150015, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,363,302.5 +6.288888888888888,5,a-phya-i1,2022-23,Wayland - Loker School,03150020, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,385,320.83333333333337 +1,1,a-phya-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63 +4.337777777777777,4.34,a-phya-i1,2022-23,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,824,686.6666666666667 +5.24,5,a-phya-i1,2022-23,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,621,517.5 +5.837037037037036,5,a-phya-i1,2022-23,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.2, 0.3, 0.5, 0.0, 0.0, 0.9,365,405.55555555555554 +4.724444444444444,4.72,a-phya-i1,2022-23,Webster - Park Avenue Elementary,03160015, 0.0, 0.5, 0.2, 0.5, 0.0, 0.0, 0.0, 1.2,737,614.1666666666667 +4.8533333333333335,4.85,a-phya-i1,2022-23,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.7, 0.3, 0.0, 0.0, 0.0, 1.0,590,590.0 +7.1466666666666665,5,a-phya-i1,2022-23,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,160,160.0 +6.944,5,a-phya-i1,2022-23,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,198,198.0 +6.9013333333333335,5,a-phya-i1,2022-23,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,206,206.0 +6.506666666666667,5,a-phya-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,280,280.0 +6.554666666666667,5,a-phya-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,271,271.0 +7.525333333333333,5,a-phya-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,89,89.0 +6.224,5,a-phya-i1,2022-23,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +6.469333333333333,5,a-phya-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,287,287.0 +5.541333333333333,5,a-phya-i1,2022-23,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,922,461.0 +4.862222222222222,4.86,a-phya-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,1412,588.3333333333334 +7.477333333333333,5,a-phya-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,98,98.0 +5.701333333333333,5,a-phya-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,431,431.0 +5.690666666666667,5,a-phya-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +6.341333333333333,5,a-phya-i1,2022-23,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,311,311.0 +6.341333333333333,5,a-phya-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,311,311.0 +6.96,5,a-phya-i1,2022-23,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,156,195.0 +3.8333333333333335,3.83,a-phya-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,625,781.25 +6.968888888888889,5,a-phya-i1,2022-23,West Springfield - John Ashley,03320005, 0.0, 0.1, 0.2, 0.1, 0.6, 0.0, 0.0, 0.9,174,193.33333333333331 +6.434285714285714,5,a-phya-i1,2022-23,West Springfield - John R Fausey,03320010, 0.1, 0.1, 0.7, 0.6, 0.1, 0.0, 0.0, 1.4,411,293.5714285714286 +6.826666666666667,5,a-phya-i1,2022-23,West Springfield - Memorial,03320025, 0.1, 0.1, 0.7, 0.1, 0.1, 0.0, 0.0, 0.9,198,220.0 +7.117037037037036,5,a-phya-i1,2022-23,West Springfield - Mittineague,03320030, 0.1, 0.1, 0.2, 0.1, 0.6, 0.0, 0.0, 0.9,149,165.55555555555554 +3.931428571428571,3.93,a-phya-i1,2022-23,West Springfield - Philip G Coburn,03320007, 0.1, 0.1, 0.4, 0.1, 0.1, 0.0, 0.0, 0.7,534,762.8571428571429 +7.056410256410256,5,a-phya-i1,2022-23,West Springfield - Tatham,03320040, 0.1, 0.1, 0.7, 0.1, 0.0, 0.0, 0.5, 1.3,230,176.9230769230769 +7.208888888888888,5,a-phya-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 0.1, 0.1, 0.4, 0.1, 0.1, 0.0, 0.0, 0.6,89,148.33333333333334 +3.1343589743589746,3.13,a-phya-i1,2022-23,West Springfield - West Springfield High,03320505, 0.1, 0.1, 0.1, 0.1, 0.0, 1.0, 0.0, 1.3,1186,912.3076923076923 +2.02,2.02,a-phya-i1,2022-23,West Springfield - West Springfield Middle,03320305, 0.1, 0.1, 0.7, 0.1, 0.0, 0.0, 0.0, 0.8,897,1121.25 +6.234666666666667,5,a-phya-i1,2022-23,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,331,331.0 +5.466666666666667,5,a-phya-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +7.478666666666666,5,a-phya-i1,2022-23,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,391,97.75 +5.693333333333333,5,a-phya-i1,2022-23,Westborough - Mill Pond School,03210045, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,865,432.5 +4.8533333333333335,4.85,a-phya-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,590,590.0 +1.7173333333333334,1.72,a-phya-i1,2022-23,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1178,1178.0 +7.258181818181819,5,a-phya-i1,2022-23,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,153,139.0909090909091 +7.3551515151515146,5,a-phya-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,133,120.90909090909089 +7.195151515151514,5,a-phya-i1,2022-23,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,166,150.9090909090909 +-11.733333333333333,1,a-phya-i1,2022-23,Westfield - Highland,03250025, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,370,3700.0 +6.351515151515152,5,a-phya-i1,2022-23,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,340,309.09090909090907 +6.346666666666667,5,a-phya-i1,2022-23,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,341,310.0 +6.424242424242424,5,a-phya-i1,2022-23,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,325,295.45454545454544 +5.391746031746032,5,a-phya-i1,2022-23,Westfield - Westfield High,03250505, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 2.1,1027,489.04761904761904 +4.761212121212122,4.76,a-phya-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,668,607.2727272727273 +4.64969696969697,4.65,a-phya-i1,2022-23,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,691,628.1818181818181 +5.367272727272728,5,a-phya-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,543,493.63636363636357 +1,1,a-phya-i1,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79 +7.36,5,a-phya-i1,2022-23,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,360,120.0 +7.276,5,a-phya-i1,2022-23,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 4.0,543,135.75 +6.197333333333333,5,a-phya-i1,2022-23,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,338,338.0 +6.256,5,a-phya-i1,2022-23,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,327,327.0 +1,1,a-phya-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335 +6.032,5,a-phya-i1,2022-23,Westford - Nabnasset,03260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +7.5986666666666665,5,a-phya-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0,301,75.25 +4.736,4.74,a-phya-i1,2022-23,Westford - Stony Brook School,03260330, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,612,612.0 +2.577777777777778,2.58,a-phya-i1,2022-23,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1525,1016.6666666666666 +7.445333333333333,5,a-phya-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,104,104.0 +5.793333333333333,5,a-phya-i1,2022-23,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,331,413.75 +5.6355555555555545,5,a-phya-i1,2022-23,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,266,443.33333333333337 +3.74,3.74,a-phya-i1,2022-23,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,639,798.75 +1,1,a-phya-i1,2022-23,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444 +6.293333333333333,5,a-phya-i1,2022-23,Weston - Woodland,03300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,320,320.0 +7.077333333333334,5,a-phya-i1,2022-23,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,173,173.0 +5.648,5,a-phya-i1,2022-23,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,441,441.0 +5.781333333333333,5,a-phya-i1,2022-23,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,832,416.0 +6.954666666666666,5,a-phya-i1,2022-23,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,196,196.0 +6.357333333333333,5,a-phya-i1,2022-23,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +4.474666666666667,4.47,a-phya-i1,2022-23,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,661,661.0 +6.592,5,a-phya-i1,2022-23,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,264,264.0 +1,1,a-phya-i1,2022-23,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +5.908405797101449,5,a-phya-i1,2022-23,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 1.0, 0.3, 1.0, 0.0, 2.3,902,392.1739130434783 +7.68,5,a-phya-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,42,60.00000000000001 +6.469333333333333,5,a-phya-i1,2022-23,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +4.330666666666667,4.33,a-phya-i1,2022-23,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,344,688.0 +5.024,5,a-phya-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,279,558.0 +6.101333333333334,5,a-phya-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,178,356.0 +5.248,5,a-phya-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,258,516.0 +4.8133333333333335,4.81,a-phya-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1195,597.5 +5.237333333333333,5,a-phya-i1,2022-23,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,259,518.0 +5.525333333333333,5,a-phya-i1,2022-23,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,232,464.0 +4.266666666666667,4.27,a-phya-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,350,700.0 +4.362666666666667,4.36,a-phya-i1,2022-23,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,341,682.0 +4.145066666666667,4.15,a-phya-i1,2022-23,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,1807,722.8 +6.101333333333334,5,a-phya-i1,2022-23,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,356,356.0 +7.317333333333333,5,a-phya-i1,2022-23,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,128,128.0 +5.605333333333333,5,a-phya-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,449,449.0 +5.413333333333333,5,a-phya-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,485,485.0 +5.728,5,a-phya-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +5.429333333333333,5,a-phya-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 +2.6666666666666665,2.67,a-phya-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,100,1000.0 +3.8361904761904757,3.84,a-phya-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,1093,780.7142857142858 +5.312,5,a-phya-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,504,504.0 +4.594666666666667,4.59,a-phya-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1277,638.5 +7.322666666666667,5,a-phya-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,127,127.0 +7.237333333333333,5,a-phya-i1,2022-23,Wilmington - Boutwell,03420005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,143,143.0 +6.656,5,a-phya-i1,2022-23,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,252,252.0 +5.936,5,a-phya-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +7.221333333333333,5,a-phya-i1,2022-23,Wilmington - West Intermediate,03420080, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,292,146.0 +5.8133333333333335,5,a-phya-i1,2022-23,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,656,410.0 +6.317333333333333,5,a-phya-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,631,315.5 +5.733333333333333,5,a-phya-i1,2022-23,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +6.298666666666667,5,a-phya-i1,2022-23,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,319,319.0 +1,1,a-phya-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22 +6.597333333333333,5,a-phya-i1,2022-23,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,263,263.0 +6.565333333333333,5,a-phya-i1,2022-23,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +7.216,5,a-phya-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,294,147.0 +1,1,a-phya-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72 +6.16,5,a-phya-i1,2022-23,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,345,345.0 +6.250666666666667,5,a-phya-i1,2022-23,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 +5.477333333333333,5,a-phya-i1,2022-23,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,473,473.0 +6.156444444444444,5,a-phya-i1,2022-23,Winchester - McCall Middle,03440305, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,1037,345.6666666666667 +6.261333333333333,5,a-phya-i1,2022-23,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,326,326.0 +5.648,5,a-phya-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,441,441.0 +5.0496,5,a-phya-i1,2022-23,Winchester - Winchester High School,03440505, 0.0, 0.2, 0.4, 1.0, 0.9, 0.0, 0.0, 2.5,1383,553.2 +5.701333333333333,5,a-phya-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +5.381333333333333,5,a-phya-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,491,491.0 +1,1,a-phya-i1,2022-23,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,594 +5.733333333333333,5,a-phya-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +5.953939393939395,5,a-phya-i1,2022-23,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,422,383.6363636363636 +5.616,5,a-phya-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,447,447.0 +6.4387878787878785,5,a-phya-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,322,292.7272727272727 +6.109090909090909,5,a-phya-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,390,354.5454545454545 +5.258666666666667,5,a-phya-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,514,514.0 +7.035151515151514,5,a-phya-i1,2022-23,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,199,180.9090909090909 +6.463030303030304,5,a-phya-i1,2022-23,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,317,288.18181818181813 +7.015757575757576,5,a-phya-i1,2022-23,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,203,184.54545454545453 +6.623030303030303,5,a-phya-i1,2022-23,Woburn - Shamrock,03470043, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,284,258.1818181818182 +4.858666666666666,4.86,a-phya-i1,2022-23,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1178,589.0 +4.88,4.88,a-phya-i1,2022-23,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,585,585.0 +6.101333333333334,5,a-phya-i1,2022-23,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,712,356.0 +1.712,1.71,a-phya-i1,2022-23,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1179,1179.0 +6.72,5,a-phya-i1,2022-23,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,240,240.0 +6.432,5,a-phya-i1,2022-23,Worcester - Canterbury,03480045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,294,294.0 +6.864,5,a-phya-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,426,213.0 +5.856,5,a-phya-i1,2022-23,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +5.706666666666667,5,a-phya-i1,2022-23,Worcester - City View,03480053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +5.397333333333333,5,a-phya-i1,2022-23,Worcester - Claremont Academy,03480350, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +6.570666666666667,5,a-phya-i1,2022-23,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,268,268.0 +5.941333333333334,5,a-phya-i1,2022-23,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 +4.416,4.42,a-phya-i1,2022-23,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1344,672.0 +6.297435897435897,5,a-phya-i1,2022-23,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,415,319.2307692307692 +6.085333333333334,5,a-phya-i1,2022-23,Worcester - Flagg Street,03480090, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +6.804,5,a-phya-i1,2022-23,Worcester - Forest Grove Middle,03480415, 0.0, 2.5, 0.5, 0.0, 0.0, 0.0, 1.0, 4.0,897,224.25 +6.890666666666666,5,a-phya-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +6.065777777777777,5,a-phya-i1,2022-23,Worcester - Gates Lane,03480110, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,544,362.6666666666667 +6.648888888888888,5,a-phya-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,380,253.33333333333334 +-14.773333333333333,1,a-phya-i1,2022-23,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,427,4270.0 +7.276444444444445,5,a-phya-i1,2022-23,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,407,135.66666666666666 +6.688,5,a-phya-i1,2022-23,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,246,246.0 +6.016,5,a-phya-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +7.082666666666666,5,a-phya-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,172,172.0 +6.357333333333333,5,a-phya-i1,2022-23,Worcester - Lake View,03480145, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +6.709333333333333,5,a-phya-i1,2022-23,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,242,242.0 +6.426666666666667,5,a-phya-i1,2022-23,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,295,295.0 +6.9013333333333335,5,a-phya-i1,2022-23,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,206,206.0 +4.933333333333334,4.93,a-phya-i1,2022-23,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,575,575.0 +7.549333333333333,5,a-phya-i1,2022-23,Worcester - Norrback Avenue,03480202, 0.0, 2.0, 0.5, 1.0, 0.0, 2.5, 0.0, 6.0,507,84.5 +6.870153846153847,5,a-phya-i1,2022-23,Worcester - North High,03480515, 1.0, 3.5, 1.0, 0.0, 0.0, 1.0, 0.0, 6.5,1377,211.84615384615384 +7.154962962962964,5,a-phya-i1,2022-23,Worcester - Quinsigamond,03480210, 0.0, 2.0, 1.0, 0.5, 1.0, 0.0, 0.0, 4.5,713,158.44444444444446 +7.0229333333333335,5,a-phya-i1,2022-23,Worcester - Rice Square,03480215, 0.0, 1.0, 1.0, 0.0, 0.0, 0.5, 0.0, 2.5,458,183.2 +7.245333333333333,5,a-phya-i1,2022-23,Worcester - Roosevelt,03480220, 0.5, 1.5, 1.0, 0.0, 0.0, 1.0, 0.0, 4.0,566,141.5 +6.384484848484848,5,a-phya-i1,2022-23,Worcester - South High Community,03480520, 0.0, 3.5, 0.0, 1.0, 1.0, 0.0, 0.0, 5.5,1666,302.90909090909093 +7.117866666666666,5,a-phya-i1,2022-23,Worcester - Sullivan Middle,03480423, 0.0, 0.5, 2.0, 0.5, 1.0, 1.0, 0.0, 5.0,827,165.4 +5.946666666666666,5,a-phya-i1,2022-23,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,385,385.0 +6.064,5,a-phya-i1,2022-23,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 +5.92,5,a-phya-i1,2022-23,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 +6.8053333333333335,5,a-phya-i1,2022-23,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,224,224.0 +5.472,5,a-phya-i1,2022-23,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 +7.290666666666667,5,a-phya-i1,2022-23,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,133,133.0 +7.489122807017544,5,a-phya-i1,2022-23,Worcester - West Tatnuck,03480260, 0.0, 1.0, 1.3, 1.0, 0.0, 0.0, 0.5, 3.8,364,95.78947368421053 +-17.973333333333333,1,a-phya-i1,2022-23,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,487,4870.0 +1,1,a-phya-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368 +6.026666666666666,5,a-phya-i1,2022-23,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,740,370.0 +5.388444444444444,5,a-phya-i1,2022-23,Worcester - Worcester Technical High,03480605, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0,1469,489.6666666666667 +7.594666666666667,5,a-phya-i1,2022-23,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,76,76.0 +6.032,5,a-phya-i1,2022-23,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +6.448,5,a-phya-i1,2022-23,Wrentham - Delaney,03500003, 0.0, 0.0, 0.6, 0.0, 1.4, 0.0, 0.0, 2.0,582,291.0 +5.464888888888889,5,a-phya-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1426,475.3333333333333 +1,1,a-phya-i1,2021-22,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76 +4.874666666666666,4.87,a-phya-i1,2021-22,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +4.549333333333333,4.55,a-phya-i1,2021-22,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,647,647.0 +5.168,5,a-phya-i1,2021-22,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,531,531.0 +6.325333333333333,5,a-phya-i1,2021-22,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,314,314.0 +-1.0666666666666667,1,a-phya-i1,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,510,1700.0 +5.070107526881721,5,a-phya-i1,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.1, 0.0, 3.1,1703,549.3548387096774 +5.595151515151515,5,a-phya-i1,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,496,450.9090909090909 +6.147878787878788,5,a-phya-i1,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,382,347.27272727272725 +1,1,a-phya-i1,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106 +6.046060606060607,5,a-phya-i1,2021-22,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,403,366.3636363636363 +5.818181818181818,5,a-phya-i1,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,450,409.09090909090907 +5.803636363636364,5,a-phya-i1,2021-22,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,453,411.8181818181818 +6.215757575757576,5,a-phya-i1,2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,368,334.5454545454545 +5.411764705882353,5,a-phya-i1,2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.7, 0.0, 1.7,825,485.29411764705884 +5.136,5,a-phya-i1,2021-22,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,537,537.0 +1,1,a-phya-i1,2021-22,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398 +4.783333333333333,4.78,a-phya-i1,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,965,603.125 +7.1626666666666665,5,a-phya-i1,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,157,157.0 +2.576,2.58,a-phya-i1,2021-22,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1017,1017.0 +1,1,a-phya-i1,2021-22,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579 +1,1,a-phya-i1,2021-22,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297 +6.330666666666667,5,a-phya-i1,2021-22,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 +6.421333333333333,5,a-phya-i1,2021-22,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +5.221333333333333,5,a-phya-i1,2021-22,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,521,521.0 +6.485333333333333,5,a-phya-i1,2021-22,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,284,284.0 +6.741333333333333,5,a-phya-i1,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 4.0,944,236.0 +1,1,a-phya-i1,2021-22,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317 +1,1,a-phya-i1,2021-22,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463 +7.749333333333333,5,a-phya-i1,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,47,47.0 +4.72,4.72,a-phya-i1,2021-22,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,615,615.0 +6.1066666666666665,5,a-phya-i1,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +6.0906666666666665,5,a-phya-i1,2021-22,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +7.064,5,a-phya-i1,2021-22,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,351,175.5 +6.165333333333334,5,a-phya-i1,2021-22,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,344,344.0 +5.457777777777778,5,a-phya-i1,2021-22,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 1.8,858,476.66666666666663 +5.802666666666667,5,a-phya-i1,2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +5.1113978494623655,5,a-phya-i1,2021-22,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.1, 1.0, 0.0, 3.1,1679,541.6129032258065 +5.430303030303031,5,a-phya-i1,2021-22,Andover - Andover West Middle,00090310, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1,530,481.81818181818176 +5.507878787878788,5,a-phya-i1,2021-22,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,514,467.27272727272725 +5.793939393939395,5,a-phya-i1,2021-22,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,455,413.6363636363636 +6.409696969696971,5,a-phya-i1,2021-22,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,328,298.18181818181813 +5.425454545454546,5,a-phya-i1,2021-22,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,531,482.7272727272727 +7.626666666666667,5,a-phya-i1,2021-22,Andover - Shawsheen School,00090005, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.1,77,70.0 +5.890909090909091,5,a-phya-i1,2021-22,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.5, 1.1,435,395.45454545454544 +5.376969696969697,5,a-phya-i1,2021-22,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,541,491.81818181818176 +-11.52,1,a-phya-i1,2021-22,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,366,3660.0 +6.490666666666667,5,a-phya-i1,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,566,283.0 +4.957948717948718,4.96,a-phya-i1,2021-22,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,1483,570.3846153846154 +6.316190476190476,5,a-phya-i1,2021-22,Arlington - Brackett,00100010, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,442,315.7142857142857 +5.728,5,a-phya-i1,2021-22,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +5.589333333333333,5,a-phya-i1,2021-22,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,452,452.0 +5.8133333333333335,5,a-phya-i1,2021-22,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +5.92,5,a-phya-i1,2021-22,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 +5.584,5,a-phya-i1,2021-22,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,453,453.0 +7.756666666666667,5,a-phya-i1,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,73,45.625 +5.584,5,a-phya-i1,2021-22,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,906,453.0 +6.261333333333333,5,a-phya-i1,2021-22,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,326,326.0 +5.306666666666667,5,a-phya-i1,2021-22,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,505,505.0 +6.592,5,a-phya-i1,2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,528,264.0 +7.109333333333334,5,a-phya-i1,2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,167,167.0 +4.666666666666667,4.67,a-phya-i1,2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,625,625.0 +4.933333333333334,4.93,a-phya-i1,2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,575,575.0 +5.989333333333334,5,a-phya-i1,2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +6.031515151515152,5,a-phya-i1,2021-22,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 1.0, 0.0, 2.2,812,369.09090909090907 +5.937777777777779,5,a-phya-i1,2021-22,Ashland - Ashland Middle,00140405, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,696,386.66666666666663 +6.304,5,a-phya-i1,2021-22,Ashland - David Mindess,00140015, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,636,318.0 +6.269333333333333,5,a-phya-i1,2021-22,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,649,324.5 +7.589333333333333,5,a-phya-i1,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,77,77.0 +4.962666666666666,4.96,a-phya-i1,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1139,569.5 +6.44,5,a-phya-i1,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,585,292.5 +6.021333333333334,5,a-phya-i1,2021-22,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,371,371.0 +5.658666666666667,5,a-phya-i1,2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +7.232,5,a-phya-i1,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,144,144.0 +4.594666666666667,4.59,a-phya-i1,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1277,638.5 +6.192,5,a-phya-i1,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +1,1,a-phya-i1,2021-22,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50 +2.1033333333333335,2.1,a-phya-i1,2021-22,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,1769,1105.625 +4.773333333333333,4.77,a-phya-i1,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,605,605.0 +1,1,a-phya-i1,2021-22,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180 +5.856,5,a-phya-i1,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,402,402.0 +5.541333333333333,5,a-phya-i1,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +6.765333333333333,5,a-phya-i1,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,463,231.5 +4.789333333333333,4.79,a-phya-i1,2021-22,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,602,602.0 +6.058666666666666,5,a-phya-i1,2021-22,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,364,364.0 +4.9013333333333335,4.9,a-phya-i1,2021-22,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,581,581.0 +4.549333333333333,4.55,a-phya-i1,2021-22,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,647,647.0 +3.52,3.52,a-phya-i1,2021-22,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,840,840.0 +7.304,5,a-phya-i1,2021-22,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,261,130.5 +6.634666666666667,5,a-phya-i1,2021-22,Auburn - Pakachoag School,00170025, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,256,256.0 +6.482666666666667,5,a-phya-i1,2021-22,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,569,284.5 +6.314666666666667,5,a-phya-i1,2021-22,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,316,316.0 +5.872,5,a-phya-i1,2021-22,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +6.037333333333334,5,a-phya-i1,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,368,368.0 +5.92,5,a-phya-i1,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 +6.272,5,a-phya-i1,2021-22,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,324,324.0 +6.08,5,a-phya-i1,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,540,360.0 +6.442666666666667,5,a-phya-i1,2021-22,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,292,292.0 +4.867555555555556,4.87,a-phya-i1,2021-22,Barnstable - Barnstable High,00200505, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,1762,587.3333333333334 +6.181333333333333,5,a-phya-i1,2021-22,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,682,341.0 +6.101333333333334,5,a-phya-i1,2021-22,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,712,356.0 +6.682666666666667,5,a-phya-i1,2021-22,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +7.205333333333333,5,a-phya-i1,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,149,149.0 +6.453333333333333,5,a-phya-i1,2021-22,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.714666666666667,5,a-phya-i1,2021-22,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +5.994666666666666,5,a-phya-i1,2021-22,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +5.568,5,a-phya-i1,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,456,456.0 +3.472,3.47,a-phya-i1,2021-22,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,849,849.0 +5.042424242424243,5,a-phya-i1,2021-22,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.5, 1.1,610,554.5454545454545 +5.093333333333334,5,a-phya-i1,2021-22,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,545,545.0 +4.810666666666667,4.81,a-phya-i1,2021-22,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,598,598.0 +5.508571428571429,5,a-phya-i1,2021-22,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,654,467.14285714285717 +6.16,5,a-phya-i1,2021-22,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,483,345.0 +7.219047619047618,5,a-phya-i1,2021-22,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,205,146.42857142857144 +6.6971428571428575,5,a-phya-i1,2021-22,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,342,244.2857142857143 +6.297142857142857,5,a-phya-i1,2021-22,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,447,319.2857142857143 +1,1,a-phya-i1,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88 +4.032,4.03,a-phya-i1,2021-22,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,744,744.0 +4.810666666666667,4.81,a-phya-i1,2021-22,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,598,598.0 +6.432,5,a-phya-i1,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,294,294.0 +1,1,a-phya-i1,2021-22,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21 +6.746666666666667,5,a-phya-i1,2021-22,Bellingham - Stall Brook,00250025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,235,235.0 +3.57,3.57,a-phya-i1,2021-22,Belmont - Belmont High,00260505, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,1329,830.625 +6.229333333333333,5,a-phya-i1,2021-22,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,332,332.0 +7.056,5,a-phya-i1,2021-22,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,354,177.0 +5.874285714285714,5,a-phya-i1,2021-22,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,558,398.5714285714286 +5.754666666666667,5,a-phya-i1,2021-22,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 +4.368,4.37,a-phya-i1,2021-22,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1362,681.0 +1,1,a-phya-i1,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329 +6.322051282051283,5,a-phya-i1,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 2.0, 0.0, 0.6, 0.0, 0.0, 2.6,818,314.6153846153846 +3.050666666666667,3.05,a-phya-i1,2021-22,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,464,928.0 +3.6693333333333333,3.67,a-phya-i1,2021-22,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,406,812.0 +6.048,5,a-phya-i1,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +5.269333333333333,5,a-phya-i1,2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,512,512.0 +6.256,5,a-phya-i1,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,327,327.0 +6.1386666666666665,5,a-phya-i1,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,349,349.0 +6.848,5,a-phya-i1,2021-22,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +6.378666666666667,5,a-phya-i1,2021-22,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +5.157333333333334,5,a-phya-i1,2021-22,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,533,533.0 +6.09939393939394,5,a-phya-i1,2021-22,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,392,356.3636363636363 +6.127567567567568,5,a-phya-i1,2021-22,Beverly - Beverly High,00300505, 0.0, 0.0, 0.5, 0.1, 2.5, 0.6, 0.0, 3.7,1299,351.08108108108104 +4.375873015873016,4.38,a-phya-i1,2021-22,Beverly - Beverly Middle School,00300305, 1.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 2.1,1427,679.5238095238095 +6.584242424242424,5,a-phya-i1,2021-22,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,292,265.45454545454544 +7.286021505376343,5,a-phya-i1,2021-22,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.1, 0.0, 2.0, 0.0, 3.1,415,133.8709677419355 +6.341818181818182,5,a-phya-i1,2021-22,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,342,310.9090909090909 +7.403636363636364,5,a-phya-i1,2021-22,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,123,111.81818181818181 +6.322424242424242,5,a-phya-i1,2021-22,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,346,314.5454545454545 +4.945777777777778,4.95,a-phya-i1,2021-22,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,1718,572.6666666666666 +6.602666666666667,5,a-phya-i1,2021-22,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +6.053333333333334,5,a-phya-i1,2021-22,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +6.304,5,a-phya-i1,2021-22,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,318,318.0 +1,1,a-phya-i1,2021-22,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529 +6.405333333333333,5,a-phya-i1,2021-22,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,598,299.0 +1,1,a-phya-i1,2021-22,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412 +2.3253333333333335,2.33,a-phya-i1,2021-22,Billerica - Thomas Ditson,00310005, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,532,1064.0 +1,1,a-phya-i1,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1234 +4.341333333333333,4.34,a-phya-i1,2021-22,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,343,686.0 +1,1,a-phya-i1,2021-22,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413 +5.8933333333333335,5,a-phya-i1,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,395,395.0 +7.456,5,a-phya-i1,2021-22,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,102,102.0 +1,1,a-phya-i1,2021-22,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285 +3.1093333333333333,3.11,a-phya-i1,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,917,917.0 +6.693333333333333,5,a-phya-i1,2021-22,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +1,1,a-phya-i1,2021-22,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104 +6.768,5,a-phya-i1,2021-22,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +7.624,5,a-phya-i1,2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,141,70.5 +6.848,5,a-phya-i1,2021-22,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 +6.64,5,a-phya-i1,2021-22,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,255,255.0 +6.786666666666667,5,a-phya-i1,2021-22,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,455,227.5 +7.36,5,a-phya-i1,2021-22,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,120,120.0 +5.386666666666667,5,a-phya-i1,2021-22,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,490,490.0 +1,1,a-phya-i1,2021-22,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98 +6.232,5,a-phya-i1,2021-22,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,663,331.5 +5.754666666666667,5,a-phya-i1,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,421,421.0 +3.506666666666667,3.51,a-phya-i1,2021-22,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1685,842.5 +3.7048888888888887,3.7,a-phya-i1,2021-22,Boston - Boston Latin School,00350560, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,2416,805.3333333333334 +6.453333333333333,5,a-phya-i1,2021-22,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,290,290.0 +6.448,5,a-phya-i1,2021-22,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,291,291.0 +7.04,5,a-phya-i1,2021-22,Boston - Brighton High School,00350505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,360,180.0 +6.24,5,a-phya-i1,2021-22,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +7.936,5,a-phya-i1,2021-22,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,24,12.0 +6.928,5,a-phya-i1,2021-22,Boston - Channing Elementary School,00350360, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,201,201.0 +5.080888888888889,5,a-phya-i1,2021-22,Boston - Charlestown High School,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,821,547.3333333333334 +6.8053333333333335,5,a-phya-i1,2021-22,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,224,224.0 +7.36,5,a-phya-i1,2021-22,Boston - Clap Elementary School,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,120,120.0 +7.818666666666667,5,a-phya-i1,2021-22,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,34,34.0 +7.117333333333334,5,a-phya-i1,2021-22,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,331,165.5 +7.112,5,a-phya-i1,2021-22,Boston - Condon K-8 School,00350146, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,666,166.5 +1,1,a-phya-i1,2021-22,Boston - Conley Elementary School,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176 +5.6,5,a-phya-i1,2021-22,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,900,450.0 +4.917333333333334,4.92,a-phya-i1,2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,578,578.0 +7.008,5,a-phya-i1,2021-22,Boston - Dever Elementary School,00350268, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,372,186.0 +6.997333333333334,5,a-phya-i1,2021-22,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,188,188.0 +5.037333333333334,5,a-phya-i1,2021-22,Boston - East Boston High School,00350530, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,1111,555.5 +6.704,5,a-phya-i1,2021-22,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,486,243.0 +5.8773333333333335,5,a-phya-i1,2021-22,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,796,398.0 +7.112,5,a-phya-i1,2021-22,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,333,166.5 +7.066666666666666,5,a-phya-i1,2021-22,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,175,175.0 +5.2,5,a-phya-i1,2021-22,Boston - English High School,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,525,525.0 +1,1,a-phya-i1,2021-22,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270 +5.658666666666667,5,a-phya-i1,2021-22,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,439,439.0 +5.952,5,a-phya-i1,2021-22,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,384,384.0 +6.1866666666666665,5,a-phya-i1,2021-22,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,340,340.0 +1,1,a-phya-i1,2021-22,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377 +1,1,a-phya-i1,2021-22,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83 +6.064,5,a-phya-i1,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,363,363.0 +6.917333333333334,5,a-phya-i1,2021-22,Boston - Grew Elementary School,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,203,203.0 +6.709333333333333,5,a-phya-i1,2021-22,Boston - Guild Elementary School,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,242,242.0 +7.082666666666666,5,a-phya-i1,2021-22,Boston - Hale Elementary School,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,172,172.0 +6.085333333333334,5,a-phya-i1,2021-22,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +6.149333333333334,5,a-phya-i1,2021-22,Boston - Harvard-Kent Elementary School,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,347,347.0 +7.050666666666666,5,a-phya-i1,2021-22,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,178,178.0 +7.461333333333333,5,a-phya-i1,2021-22,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,202,101.0 +1,1,a-phya-i1,2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,718 +6.656,5,a-phya-i1,2021-22,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,504,252.0 +5.738666666666667,5,a-phya-i1,2021-22,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,424,424.0 +7.365333333333333,5,a-phya-i1,2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,119,119.0 +6.997333333333334,5,a-phya-i1,2021-22,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,188,188.0 +6.645333333333333,5,a-phya-i1,2021-22,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +1,1,a-phya-i1,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70 +6.128,5,a-phya-i1,2021-22,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,351,351.0 +7.290666666666667,5,a-phya-i1,2021-22,Boston - Irving Middle School,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,133,133.0 +7.249066666666667,5,a-phya-i1,2021-22,Boston - Jackson-Mann K-8 School,00350013, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,352,140.8 +7.109333333333334,5,a-phya-i1,2021-22,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,334,167.0 +6.608,5,a-phya-i1,2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,261,261.0 +6.2026666666666666,5,a-phya-i1,2021-22,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +6.922666666666666,5,a-phya-i1,2021-22,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,404,202.0 +5.061333333333334,5,a-phya-i1,2021-22,Boston - King K-8 School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,551,551.0 +7.533333333333333,5,a-phya-i1,2021-22,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,175,87.5 +6.541333333333333,5,a-phya-i1,2021-22,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,547,273.5 +4.544,4.54,a-phya-i1,2021-22,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,648,648.0 +7.312,5,a-phya-i1,2021-22,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,129,129.0 +7.645333333333333,5,a-phya-i1,2021-22,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,133,66.5 +4.906666666666666,4.91,a-phya-i1,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1160,580.0 +7.1466666666666665,5,a-phya-i1,2021-22,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,160,160.0 +6.277333333333333,5,a-phya-i1,2021-22,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,323,323.0 +6.839111111111112,5,a-phya-i1,2021-22,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,653,217.66666666666666 +6.970666666666666,5,a-phya-i1,2021-22,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,193,193.0 +5.370666666666667,5,a-phya-i1,2021-22,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,493,493.0 +5.6,5,a-phya-i1,2021-22,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,450,450.0 +4.336,4.34,a-phya-i1,2021-22,Boston - McKay K-8 School,00350080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,687,687.0 +7.708,5,a-phya-i1,2021-22,Boston - McKinley Schools,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 4.0,219,54.75 +6.608,5,a-phya-i1,2021-22,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +6.336,5,a-phya-i1,2021-22,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,624,312.0 +1,1,a-phya-i1,2021-22,Boston - Mission Hill K-8 School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223 +7.157333333333334,5,a-phya-i1,2021-22,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,158,158.0 +3.429333333333333,3.43,a-phya-i1,2021-22,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,857,857.0 +5.104,5,a-phya-i1,2021-22,Boston - New Mission High School,00350542, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 +-0.256,1,a-phya-i1,2021-22,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1548,1548.0 +6.608,5,a-phya-i1,2021-22,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +5.413333333333333,5,a-phya-i1,2021-22,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,485,485.0 +6.045333333333334,5,a-phya-i1,2021-22,Boston - Orchard Gardens K-8 School,00350257, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,733,366.5 +5.8453333333333335,5,a-phya-i1,2021-22,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +7.077333333333334,5,a-phya-i1,2021-22,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,173,173.0 +7.002666666666666,5,a-phya-i1,2021-22,Boston - Perry K-8 School,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,187,187.0 +7.736,5,a-phya-i1,2021-22,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,99,49.5 +6.104,5,a-phya-i1,2021-22,Boston - Quincy Elementary School,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,711,355.5 +6.525333333333333,5,a-phya-i1,2021-22,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,553,276.5 +5.834666666666666,5,a-phya-i1,2021-22,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,406,406.0 +6.048,5,a-phya-i1,2021-22,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +1,1,a-phya-i1,2021-22,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154 +5.413333333333333,5,a-phya-i1,2021-22,Boston - Snowden International High School,00350690, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,485,485.0 +5.493333333333333,5,a-phya-i1,2021-22,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,470,470.0 +6.410666666666667,5,a-phya-i1,2021-22,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +3.264,3.26,a-phya-i1,2021-22,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,888,888.0 +1,1,a-phya-i1,2021-22,Boston - Timilty Middle School,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205 +5.8613333333333335,5,a-phya-i1,2021-22,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +6.0906666666666665,5,a-phya-i1,2021-22,Boston - Trotter K-8 School,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +6.858666666666666,5,a-phya-i1,2021-22,Boston - Tynan Elementary School,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,214,214.0 +1,1,a-phya-i1,2021-22,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663 +5.226666666666667,5,a-phya-i1,2021-22,Boston - Warren-Prescott K-8 School,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,520,520.0 +1,1,a-phya-i1,2021-22,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88 +1,1,a-phya-i1,2021-22,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265 +1,1,a-phya-i1,2021-22,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212 +6.52,5,a-phya-i1,2021-22,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,555,277.5 +7.064,5,a-phya-i1,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 4.0,702,175.5 +6.144,5,a-phya-i1,2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +5.408,5,a-phya-i1,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +6.762666666666667,5,a-phya-i1,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,696,232.0 +2.992,2.99,a-phya-i1,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,939,939.0 +5.904,5,a-phya-i1,2021-22,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 +6.053333333333334,5,a-phya-i1,2021-22,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,365,365.0 +5.642666666666667,5,a-phya-i1,2021-22,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +7.048,5,a-phya-i1,2021-22,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,357,178.5 +6.1546666666666665,5,a-phya-i1,2021-22,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,346,346.0 +5.904,5,a-phya-i1,2021-22,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +6.384,5,a-phya-i1,2021-22,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +5.6946666666666665,5,a-phya-i1,2021-22,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 0.0, 4.0,1729,432.25 +6.938666666666666,5,a-phya-i1,2021-22,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,199,199.0 +3.462222222222222,3.46,a-phya-i1,2021-22,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,1021,850.8333333333334 +5.8613333333333335,5,a-phya-i1,2021-22,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,401,401.0 +6.389333333333333,5,a-phya-i1,2021-22,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,302,302.0 +6.101333333333334,5,a-phya-i1,2021-22,Braintree - Liberty,00400025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +6.549333333333333,5,a-phya-i1,2021-22,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,272,272.0 +6.645333333333333,5,a-phya-i1,2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +6.581333333333333,5,a-phya-i1,2021-22,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,532,266.0 +6.864,5,a-phya-i1,2021-22,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,213,213.0 +6.8,5,a-phya-i1,2021-22,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +6.208,5,a-phya-i1,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +5.274666666666667,5,a-phya-i1,2021-22,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +6.176,5,a-phya-i1,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 4.0,1368,342.0 +5.242666666666667,5,a-phya-i1,2021-22,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +1,1,a-phya-i1,2021-22,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326 +5.993333333333333,5,a-phya-i1,2021-22,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 2.2, 0.0, 1.0, 0.0, 0.0, 3.2,1204,376.25 +3.24,3.24,a-phya-i1,2021-22,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,714,892.5 +1,1,a-phya-i1,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +6.029333333333334,5,a-phya-i1,2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,739,369.5 +6.565333333333333,5,a-phya-i1,2021-22,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +5.338666666666667,5,a-phya-i1,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +4.448,4.45,a-phya-i1,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1332,666.0 +5.498666666666667,5,a-phya-i1,2021-22,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +7.018666666666666,5,a-phya-i1,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,184,184.0 +7.5875555555555545,5,a-phya-i1,2021-22,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,116,77.33333333333333 +-11.117575757575755,1,a-phya-i1,2021-22,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,3943,3584.545454545454 +5.536,5,a-phya-i1,2021-22,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,462,462.0 +6.493333333333333,5,a-phya-i1,2021-22,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,565,282.5 +4.314666666666667,4.31,a-phya-i1,2021-22,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,691,691.0 +4.613333333333333,4.61,a-phya-i1,2021-22,Brockton - East Middle School,00440405, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,508,635.0 +2.9226666666666667,2.92,a-phya-i1,2021-22,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,952,952.0 +7.36313725490196,5,a-phya-i1,2021-22,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 1.7,203,119.41176470588236 +1,1,a-phya-i1,2021-22,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12 +6.285714285714285,5,a-phya-i1,2021-22,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,450,321.42857142857144 +5.274666666666667,5,a-phya-i1,2021-22,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,511,511.0 +1,1,a-phya-i1,2021-22,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61 +5.029333333333334,5,a-phya-i1,2021-22,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,557,557.0 +6.109333333333334,5,a-phya-i1,2021-22,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,709,354.5 +1,1,a-phya-i1,2021-22,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763 +5.693333333333333,5,a-phya-i1,2021-22,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.5, 2.0,865,432.5 +6.531111111111111,5,a-phya-i1,2021-22,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.5, 0.9, 0.0, 0.0, 1.0, 2.4,661,275.4166666666667 +6.368,5,a-phya-i1,2021-22,Brockton - North Middle School,00440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +5.322666666666667,5,a-phya-i1,2021-22,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 1.5,753,502.0 +5.034666666666666,5,a-phya-i1,2021-22,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,556,556.0 +4.539259259259259,4.54,a-phya-i1,2021-22,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,584,648.8888888888889 +4.1866666666666665,4.19,a-phya-i1,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,2145,715.0 +6.512,5,a-phya-i1,2021-22,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,279,279.0 +7.1466666666666665,5,a-phya-i1,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,48,160.0 +7.620740740740741,5,a-phya-i1,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.3, 0.0, 0.0, 0.6, 0.0, 0.9,64,71.11111111111111 +7.235555555555555,5,a-phya-i1,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,43,143.33333333333334 +3.362222222222222,3.36,a-phya-i1,2021-22,Brookline - Brookline High,00460505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.4, 2.4,2087,869.5833333333334 +6.938494623655914,5,a-phya-i1,2021-22,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.1, 1.0, 1.0, 0.0, 0.0, 3.1,617,199.03225806451613 +5.8920634920634924,5,a-phya-i1,2021-22,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.0, 2.1,830,395.23809523809524 +6.125128205128206,5,a-phya-i1,2021-22,Brookline - Heath,00460025, 0.0, 0.0, 0.1, 0.0, 1.2, 0.0, 0.0, 1.3,457,351.53846153846155 +-18.133333333333333,1,a-phya-i1,2021-22,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,490,4900.0 +6.911264367816091,5,a-phya-i1,2021-22,Brookline - Lawrence,00460030, 0.0, 0.0, 0.1, 1.0, 0.8, 0.0, 1.0, 2.9,592,204.13793103448276 +5.798787878787879,5,a-phya-i1,2021-22,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,454,412.7272727272727 +6.7595698924731185,5,a-phya-i1,2021-22,Brookline - Pierce,00460040, 0.0, 0.0, 1.1, 1.0, 0.0, 0.0, 1.0, 3.1,721,232.5806451612903 +7.76,5,a-phya-i1,2021-22,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.3, 0.9, 0.0, 0.0, 0.0, 1.2,54,45.0 +6.803809523809524,5,a-phya-i1,2021-22,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.1, 0.0, 0.0, 2.0, 0.0, 2.1,471,224.28571428571428 +6.6706666666666665,5,a-phya-i1,2021-22,Burlington - Burlington High,00480505, 1.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,997,249.25 +6.980266666666666,5,a-phya-i1,2021-22,Burlington - Fox Hill,00480007, 0.0, 0.3, 2.0, 0.3, 0.0, 0.0, 0.0, 2.5,478,191.2 +7.210666666666667,5,a-phya-i1,2021-22,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.3, 2.0, 1.3, 0.0, 0.0, 0.0, 3.5,518,148.0 +5.965333333333334,5,a-phya-i1,2021-22,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,763,381.5 +6.5457777777777775,5,a-phya-i1,2021-22,Burlington - Memorial,00480015, 0.0, 0.3, 0.0, 0.3, 0.0, 1.0, 0.0, 1.5,409,272.6666666666667 +6.871794871794872,5,a-phya-i1,2021-22,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,275,211.53846153846152 +1,1,a-phya-i1,2021-22,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408 +1,1,a-phya-i1,2021-22,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1867 +1,1,a-phya-i1,2021-22,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279 +1,1,a-phya-i1,2021-22,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252 +1,1,a-phya-i1,2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248 +1,1,a-phya-i1,2021-22,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347 +1,1,a-phya-i1,2021-22,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236 +1,1,a-phya-i1,2021-22,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321 +1,1,a-phya-i1,2021-22,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203 +1,1,a-phya-i1,2021-22,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355 +1,1,a-phya-i1,2021-22,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354 +1,1,a-phya-i1,2021-22,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323 +1,1,a-phya-i1,2021-22,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,286 +1,1,a-phya-i1,2021-22,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319 +1,1,a-phya-i1,2021-22,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262 +1,1,a-phya-i1,2021-22,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262 +1,1,a-phya-i1,2021-22,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290 +5.3244444444444445,5,a-phya-i1,2021-22,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,903,501.66666666666663 +1,1,a-phya-i1,2021-22,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462 +5.546666666666667,5,a-phya-i1,2021-22,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,460,460.0 +1,1,a-phya-i1,2021-22,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534 +7.578666666666667,5,a-phya-i1,2021-22,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,79,79.0 +5.8933333333333335,5,a-phya-i1,2021-22,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,790,395.0 +6.666666666666667,5,a-phya-i1,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 +6.256,5,a-phya-i1,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,654,327.0 +4.72,4.72,a-phya-i1,2021-22,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,615,615.0 +5.898666666666666,5,a-phya-i1,2021-22,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,788,394.0 +6.08,5,a-phya-i1,2021-22,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,720,360.0 +7.445333333333333,5,a-phya-i1,2021-22,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,104,104.0 +5.738666666666667,5,a-phya-i1,2021-22,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,424,424.0 +7.093333333333334,5,a-phya-i1,2021-22,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,153,170.0 +6.282666666666667,5,a-phya-i1,2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +5.264,5,a-phya-i1,2021-22,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,513,513.0 +5.285333333333333,5,a-phya-i1,2021-22,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,509,509.0 +5.386666666666667,5,a-phya-i1,2021-22,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,490,490.0 +1,1,a-phya-i1,2021-22,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472 +4.421333333333333,4.42,a-phya-i1,2021-22,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1342,671.0 +4.1226666666666665,4.12,a-phya-i1,2021-22,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,727,727.0 +1,1,a-phya-i1,2021-22,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127 +3.578666666666667,3.58,a-phya-i1,2021-22,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,829,829.0 +5.616,5,a-phya-i1,2021-22,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +-1.9866666666666666,1,a-phya-i1,2021-22,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,1498,1872.5 +4.88,4.88,a-phya-i1,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,117,585.0 +0.33066666666666666,1,a-phya-i1,2021-22,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,719,1438.0 +2.6453333333333333,2.65,a-phya-i1,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,502,1004.0 +1,1,a-phya-i1,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468 +2.8053333333333335,2.81,a-phya-i1,2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,487,974.0 +3.2746666666666666,3.27,a-phya-i1,2021-22,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,443,886.0 +2.24,2.24,a-phya-i1,2021-22,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,540,1080.0 +-0.864,1,a-phya-i1,2021-22,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,831,1662.0 +1,1,a-phya-i1,2021-22,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460 +7.013333333333334,5,a-phya-i1,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,148,185.0 +5.989333333333334,5,a-phya-i1,2021-22,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +6.982222222222221,5,a-phya-i1,2021-22,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,229,190.83333333333334 +5.8213333333333335,5,a-phya-i1,2021-22,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,817,408.5 +5.632,5,a-phya-i1,2021-22,Chicopee - Bowe,00610015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,444,444.0 +6.56,5,a-phya-i1,2021-22,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,270,270.0 +7.578666666666667,5,a-phya-i1,2021-22,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,79,79.0 +4.922666666666666,4.92,a-phya-i1,2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1154,577.0 +5.757575757575758,5,a-phya-i1,2021-22,Chicopee - Chicopee High,00610505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.2, 0.0, 2.2,925,420.45454545454544 +5.992,5,a-phya-i1,2021-22,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,753,376.5 +1,1,a-phya-i1,2021-22,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407 +6.5777777777777775,5,a-phya-i1,2021-22,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,320,266.6666666666667 +6.629333333333333,5,a-phya-i1,2021-22,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,257,257.0 +-0.9066666666666666,1,a-phya-i1,2021-22,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,334,1670.0 +6.789333333333333,5,a-phya-i1,2021-22,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,227,227.0 +6.453333333333333,5,a-phya-i1,2021-22,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.2, 0.0, 0.7,203,290.0 +5.930666666666666,5,a-phya-i1,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +6.778666666666667,5,a-phya-i1,2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,229,229.0 +1,1,a-phya-i1,2021-22,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211 +5.8213333333333335,5,a-phya-i1,2021-22,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,817,408.5 +4.917333333333334,4.92,a-phya-i1,2021-22,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,578,578.0 +5.28,5,a-phya-i1,2021-22,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,510,510.0 +4.341333333333333,4.34,a-phya-i1,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,343,686.0 +5.738666666666667,5,a-phya-i1,2021-22,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,424,424.0 +6.8693333333333335,5,a-phya-i1,2021-22,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,318,212.0 +6.325333333333333,5,a-phya-i1,2021-22,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 +6.225454545454546,5,a-phya-i1,2021-22,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,366,332.7272727272727 +2.042666666666667,2.04,a-phya-i1,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1117,1117.0 +6.464,5,a-phya-i1,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +6.930666666666666,5,a-phya-i1,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,401,200.5 +1,1,a-phya-i1,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400 +1,1,a-phya-i1,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394 +5.770666666666667,5,a-phya-i1,2021-22,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,418,418.0 +6.165333333333334,5,a-phya-i1,2021-22,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,688,344.0 +5.594666666666667,5,a-phya-i1,2021-22,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,451,451.0 +5.648,5,a-phya-i1,2021-22,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,441,441.0 +5.648,5,a-phya-i1,2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,1323,441.0 +7.205333333333333,5,a-phya-i1,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,447,149.0 +7.226666666666667,5,a-phya-i1,2021-22,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,145,145.0 +5.848,5,a-phya-i1,2021-22,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,807,403.5 +6.288,5,a-phya-i1,2021-22,Danvers - Great Oak,00710015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,321,321.0 +6.042666666666666,5,a-phya-i1,2021-22,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +5.946666666666666,5,a-phya-i1,2021-22,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,770,385.0 +6.352,5,a-phya-i1,2021-22,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,309,309.0 +6.325333333333333,5,a-phya-i1,2021-22,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 +6.245333333333333,5,a-phya-i1,2021-22,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +7.650666666666667,5,a-phya-i1,2021-22,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,131,65.5 +5.248,5,a-phya-i1,2021-22,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1032,516.0 +6.56,5,a-phya-i1,2021-22,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,810,270.0 +5.9093333333333335,5,a-phya-i1,2021-22,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,392,392.0 +6.208,5,a-phya-i1,2021-22,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,672,336.0 +1,1,a-phya-i1,2021-22,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,374 +5.511111111111111,5,a-phya-i1,2021-22,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,280,466.6666666666667 +1.768888888888888,1.77,a-phya-i1,2021-22,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,701,1168.3333333333335 +4.1866666666666665,4.19,a-phya-i1,2021-22,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.1, 0.7, 0.0, 0.0, 0.8,572,715.0 +6.390303030303031,5,a-phya-i1,2021-22,Dedham - Early Childhood Center,00730005, 0.0, 0.5, 0.0, 0.1, 0.5, 0.0, 0.0, 1.1,332,301.8181818181818 +6.734545454545454,5,a-phya-i1,2021-22,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,261,237.27272727272725 +5.786666666666667,5,a-phya-i1,2021-22,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,249,415.0 +6.471111111111111,5,a-phya-i1,2021-22,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,172,286.6666666666667 +6.840888888888888,5,a-phya-i1,2021-22,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,326,217.33333333333334 +5.6,5,a-phya-i1,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,900,450.0 +6.373333333333333,5,a-phya-i1,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,305,305.0 +6.437333333333333,5,a-phya-i1,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,293,293.0 +5.717333333333333,5,a-phya-i1,2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,428,428.0 +5.642666666666667,5,a-phya-i1,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +5.722666666666667,5,a-phya-i1,2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,427,427.0 +6.026666666666666,5,a-phya-i1,2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,444,370.0 +6.284444444444444,5,a-phya-i1,2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,386,321.6666666666667 +4.848888888888888,4.85,a-phya-i1,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,709,590.8333333333334 +5.946666666666666,5,a-phya-i1,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,462,385.0 +5.475555555555554,5,a-phya-i1,2021-22,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,568,473.33333333333337 +6.677333333333333,5,a-phya-i1,2021-22,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,372,248.0 +6.208,5,a-phya-i1,2021-22,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +6.538666666666667,5,a-phya-i1,2021-22,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,274,274.0 +6.944,5,a-phya-i1,2021-22,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,198,198.0 +5.392,5,a-phya-i1,2021-22,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,489,489.0 +1,1,a-phya-i1,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657 +5.317333333333333,5,a-phya-i1,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +5.445333333333333,5,a-phya-i1,2021-22,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,479,479.0 +5.08,5,a-phya-i1,2021-22,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,876,547.5 +5.141333333333334,5,a-phya-i1,2021-22,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,536,536.0 +6.592,5,a-phya-i1,2021-22,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,264,264.0 +4.922666666666666,4.92,a-phya-i1,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,577,577.0 +5.013333333333334,5,a-phya-i1,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,896,560.0 +1,1,a-phya-i1,2021-22,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, 0.0,286 +6.293333333333333,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,320,320.0 +4.672,4.67,a-phya-i1,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,624,624.0 +6.592820512820513,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.3, 1.3,343,263.8461538461538 +5.768205128205127,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.3, 1.3,544,418.46153846153845 +5.685333333333333,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,434,434.0 +6.945641025641026,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.3, 1.3,257,197.69230769230768 +5.52,5,a-phya-i1,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,930,465.0 +4.8373333333333335,4.84,a-phya-i1,2021-22,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,593,593.0 +1,1,a-phya-i1,2021-22,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620 +5.338947368421052,5,a-phya-i1,2021-22,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.9, 1.9,948,498.94736842105266 +4.533333333333333,4.53,a-phya-i1,2021-22,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,650,650.0 +5.077333333333334,5,a-phya-i1,2021-22,East Bridgewater - Central,00830005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,548,548.0 +-1.9306666666666668,1,a-phya-i1,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,931,1862.0 +1,1,a-phya-i1,2021-22,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628 +4.794666666666667,4.79,a-phya-i1,2021-22,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,601,601.0 +3.648,3.65,a-phya-i1,2021-22,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,816,816.0 +6.586666666666667,5,a-phya-i1,2021-22,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,265,265.0 +5.104,5,a-phya-i1,2021-22,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,543,543.0 +6.576,5,a-phya-i1,2021-22,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,267,267.0 +6.976,5,a-phya-i1,2021-22,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,192,192.0 +1,1,a-phya-i1,2021-22,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188 +5.8613333333333335,5,a-phya-i1,2021-22,Easthampton - Easthampton High,00860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +1,1,a-phya-i1,2021-22,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227 +7.066666666666666,5,a-phya-i1,2021-22,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,175,175.0 +5.728,5,a-phya-i1,2021-22,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +6.8533333333333335,5,a-phya-i1,2021-22,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,215,215.0 +5.034666666666666,5,a-phya-i1,2021-22,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,834,556.0 +6.8373333333333335,5,a-phya-i1,2021-22,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,218,218.0 +5.032,5,a-phya-i1,2021-22,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1113,556.5 +6.416,5,a-phya-i1,2021-22,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,297,297.0 +4.706666666666667,4.71,a-phya-i1,2021-22,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.7, 1.2,741,617.5 +6.941333333333334,5,a-phya-i1,2021-22,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,397,198.5 +6.946666666666666,5,a-phya-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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,395,197.5 +7.113333333333333,5,a-phya-i1,2021-22,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,133,166.25 +5.059555555555555,5,a-phya-i1,2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0,1654,551.3333333333334 +1,1,a-phya-i1,2021-22,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138 +1,1,a-phya-i1,2021-22,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +2.424,2.42,a-phya-i1,2021-22,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,2091,1045.5 +1,1,a-phya-i1,2021-22,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,877 +1,1,a-phya-i1,2021-22,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,935 +4.458666666666667,4.46,a-phya-i1,2021-22,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,664,664.0 +1,1,a-phya-i1,2021-22,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966 +4.762666666666667,4.76,a-phya-i1,2021-22,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,607,607.0 +1,1,a-phya-i1,2021-22,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171 +1,1,a-phya-i1,2021-22,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317 +5.92,5,a-phya-i1,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 1.5, 1.0, 1.0, 0.0, 3.5,1365,390.0 +6.368,5,a-phya-i1,2021-22,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +1,1,a-phya-i1,2021-22,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631 +5.584,5,a-phya-i1,2021-22,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,453,453.0 +5.568,5,a-phya-i1,2021-22,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,456,456.0 +3.827555555555555,3.83,a-phya-i1,2021-22,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,2347,782.3333333333334 +6.096,5,a-phya-i1,2021-22,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,714,357.0 +-5.777777777777779,1,a-phya-i1,2021-22,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,775,2583.3333333333335 +7.500444444444446,5,a-phya-i1,2021-22,Fall River - James Tansey,00950140, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,281,93.66666666666667 +6.68,5,a-phya-i1,2021-22,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,495,247.5 +6.201481481481482,5,a-phya-i1,2021-22,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,607,337.22222222222223 +6.026666666666666,5,a-phya-i1,2021-22,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.0, 0.5, 1.0, 0.0, 1.8,666,370.0 +4.229333333333333,4.23,a-phya-i1,2021-22,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,707,707.0 +1,1,a-phya-i1,2021-22,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694 +6.3768115942028984,5,a-phya-i1,2021-22,Fall River - North End Elementary,00950005, 1.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 2.3,700,304.34782608695656 +1,1,a-phya-i1,2021-22,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109 +1,1,a-phya-i1,2021-22,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241 +5.934222222222223,5,a-phya-i1,2021-22,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,581,387.3333333333333 +1,1,a-phya-i1,2021-22,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68 +6.346666666666667,5,a-phya-i1,2021-22,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,620,310.0 +7.214222222222221,5,a-phya-i1,2021-22,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 3.0, 1.0, 0.5, 0.0, 4.5,663,147.33333333333334 +6.528,5,a-phya-i1,2021-22,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,276,276.0 +5.8533333333333335,5,a-phya-i1,2021-22,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,805,402.5 +5.344,5,a-phya-i1,2021-22,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,498,498.0 +5.472,5,a-phya-i1,2021-22,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,474,474.0 +5.866666666666666,5,a-phya-i1,2021-22,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,400,400.0 +6.197333333333333,5,a-phya-i1,2021-22,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,338,338.0 +6.650666666666667,5,a-phya-i1,2021-22,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,253,253.0 +7.381333333333333,5,a-phya-i1,2021-22,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,116,116.0 +6.272,5,a-phya-i1,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,648,324.0 +6.456,5,a-phya-i1,2021-22,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,579,289.5 +6.276,5,a-phya-i1,2021-22,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 0.0, 4.0,1293,323.25 +7.157333333333334,5,a-phya-i1,2021-22,Fitchburg - Goodrich Academy,00970510, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,158,158.0 +4.464,4.46,a-phya-i1,2021-22,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,663,663.0 +6.218666666666667,5,a-phya-i1,2021-22,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,668,334.0 +6.421333333333333,5,a-phya-i1,2021-22,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,592,296.0 +6.437333333333333,5,a-phya-i1,2021-22,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,586,293.0 +7.445333333333333,5,a-phya-i1,2021-22,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,104,104.0 +4.124444444444444,4.12,a-phya-i1,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,218,726.6666666666667 +6.677333333333333,5,a-phya-i1,2021-22,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,248,248.0 +-2.2933333333333334,1,a-phya-i1,2021-22,Foxborough - Foxborough High,00990505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,772,1930.0 +5.1276190476190475,5,a-phya-i1,2021-22,Foxborough - John J Ahern,00990405, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 0.0, 1.4,754,538.5714285714286 +6.1866666666666665,5,a-phya-i1,2021-22,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +6.16,5,a-phya-i1,2021-22,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,345,345.0 +4.997333333333334,5.0,a-phya-i1,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,1689,563.0 +4.437333333333333,4.44,a-phya-i1,2021-22,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,668,668.0 +5.52,5,a-phya-i1,2021-22,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,465,465.0 +5.157333333333334,5,a-phya-i1,2021-22,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,533,533.0 +5.728,5,a-phya-i1,2021-22,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,426,426.0 +5.416533333333334,5,a-phya-i1,2021-22,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 2.0, 5.0,2422,484.4 +4.629333333333333,4.63,a-phya-i1,2021-22,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,632,632.0 +6.661333333333333,5,a-phya-i1,2021-22,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,502,251.0 +5.2,5,a-phya-i1,2021-22,Framingham - Hemenway,01000015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,525,525.0 +6.645333333333333,5,a-phya-i1,2021-22,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,254,254.0 +6.08,5,a-phya-i1,2021-22,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +6.416,5,a-phya-i1,2021-22,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +5.509333333333333,5,a-phya-i1,2021-22,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,467,467.0 +5.12,5,a-phya-i1,2021-22,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,540,540.0 +4.0906666666666665,4.09,a-phya-i1,2021-22,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,733,733.0 +5.941333333333334,5,a-phya-i1,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 +6.658461538461539,5,a-phya-i1,2021-22,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.3, 1.3,327,251.53846153846152 +7.306666666666667,5,a-phya-i1,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,130,130.0 +4.8133333333333335,4.81,a-phya-i1,2021-22,Franklin - Franklin High,01010505, 0.0, 1.0, 0.0, 0.0, 1.8, 0.0, 0.0, 2.8,1673,597.5 +5.764102564102564,5,a-phya-i1,2021-22,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.3, 1.3,545,419.2307692307692 +6.058666666666666,5,a-phya-i1,2021-22,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,364,364.0 +6.1866666666666665,5,a-phya-i1,2021-22,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,340,340.0 +6.224,5,a-phya-i1,2021-22,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,333,333.0 +6.010666666666666,5,a-phya-i1,2021-22,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,373,373.0 +7.108148148148149,5,a-phya-i1,2021-22,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 1.8,301,167.22222222222223 +6.656,5,a-phya-i1,2021-22,Franklin - Remington Middle,01010310, 0.0, 0.5, 0.0, 0.5, 0.0, 0.5, 0.0, 1.5,378,252.0 +4.890666666666666,4.89,a-phya-i1,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,583,583.0 +4.1706666666666665,4.17,a-phya-i1,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,718,718.0 +5.424,5,a-phya-i1,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,483,483.0 +5.685333333333333,5,a-phya-i1,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,434,434.0 +4.394666666666667,4.39,a-phya-i1,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,676,676.0 +5.626666666666667,5,a-phya-i1,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +1,1,a-phya-i1,2021-22,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610 +5.536,5,a-phya-i1,2021-22,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,462,462.0 +7.488,5,a-phya-i1,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,96,96.0 +6.026666666666666,5,a-phya-i1,2021-22,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,740,370.0 +7.079111111111112,5,a-phya-i1,2021-22,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,518,172.66666666666666 +5.68,5,a-phya-i1,2021-22,Gardner - Waterford Street,01030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,435,435.0 +7.381333333333333,5,a-phya-i1,2021-22,Gateway - Chester Elementary,06720059, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,116,116.0 +6.144,5,a-phya-i1,2021-22,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,174,348.0 +6.528,5,a-phya-i1,2021-22,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,138,276.0 +6.373333333333333,5,a-phya-i1,2021-22,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,305,305.0 +1,1,a-phya-i1,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322 +1,1,a-phya-i1,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203 +6.1866666666666665,5,a-phya-i1,2021-22,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,680,340.0 +7.621333333333333,5,a-phya-i1,2021-22,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,71,71.0 +7.370666666666667,5,a-phya-i1,2021-22,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,118,118.0 +1,1,a-phya-i1,2021-22,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192 +7.621333333333333,5,a-phya-i1,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,142,71.0 +6.8853333333333335,5,a-phya-i1,2021-22,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,209,209.0 +7.509333333333333,5,a-phya-i1,2021-22,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,184,92.0 +1,1,a-phya-i1,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504 +6.272,5,a-phya-i1,2021-22,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +7.109333333333334,5,a-phya-i1,2021-22,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,167,167.0 +5.786666666666667,5,a-phya-i1,2021-22,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.4, 0.0, 1.0, 0.6, 0.0, 2.0,830,415.0 +7.573333333333333,5,a-phya-i1,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,80,80.0 +6.8533333333333335,5,a-phya-i1,2021-22,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,215,215.0 +6.32,5,a-phya-i1,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,630,315.0 +6.848,5,a-phya-i1,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 +6.021333333333334,5,a-phya-i1,2021-22,Gloucester - West Parish,01070050, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +1,1,a-phya-i1,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0 +-1.696,1,a-phya-i1,2021-22,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,909,1818.0 +6.605333333333333,5,a-phya-i1,2021-22,Grafton - Grafton Middle,01100305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,523,261.5 +4.64,4.64,a-phya-i1,2021-22,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,630,630.0 +6.597333333333333,5,a-phya-i1,2021-22,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,263,263.0 +6.083555555555556,5,a-phya-i1,2021-22,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,539,359.3333333333333 +6.538666666666667,5,a-phya-i1,2021-22,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,274,274.0 +6.599111111111111,5,a-phya-i1,2021-22,Granby - East Meadow,01110004, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,394,262.6666666666667 +5.98,5,a-phya-i1,2021-22,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.8,303,378.75 +2.506666666666667,2.51,a-phya-i1,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1030,1030.0 +4.210666666666667,4.21,a-phya-i1,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1421,710.5 +-0.8266666666666667,1,a-phya-i1,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,1655,1655.0 +3.9111111111111114,3.91,a-phya-i1,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,2300,766.6666666666666 +5.499259259259259,5,a-phya-i1,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.0, 0.5, 1.0, 2.0, 0.0, 4.5,2110,468.8888888888889 +6.946666666666666,5,a-phya-i1,2021-22,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,237,197.5 +7.097777777777777,5,a-phya-i1,2021-22,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,203,169.16666666666669 +5.737777777777778,5,a-phya-i1,2021-22,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,509,424.1666666666667 +6.395555555555554,5,a-phya-i1,2021-22,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,361,300.83333333333337 +7.062222222222221,5,a-phya-i1,2021-22,Greenfield - Newton School,01140035, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,211,175.83333333333334 +7.557333333333333,5,a-phya-i1,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.8, 1.0,83,83.0 +7.632,5,a-phya-i1,2021-22,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,69,69.0 +6.616,5,a-phya-i1,2021-22,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,519,259.5 +5.791372549019608,5,a-phya-i1,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,704,414.11764705882354 +6.093333333333334,5,a-phya-i1,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,715,357.5 +6.357333333333333,5,a-phya-i1,2021-22,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +6.549333333333333,5,a-phya-i1,2021-22,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,272,272.0 +6.741333333333333,5,a-phya-i1,2021-22,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,236,236.0 +4.992,4.99,a-phya-i1,2021-22,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,564,564.0 +5.333333333333333,5,a-phya-i1,2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,250,500.0 +5.301333333333333,5,a-phya-i1,2021-22,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,253,506.0 +4.72,4.72,a-phya-i1,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,492,615.0 +3.957333333333333,3.96,a-phya-i1,2021-22,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,379,758.0 +4.693333333333333,4.69,a-phya-i1,2021-22,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,310,620.0 +5.045333333333334,5,a-phya-i1,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,554,554.0 +6.037333333333334,5,a-phya-i1,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,368,368.0 +6.506666666666667,5,a-phya-i1,2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,336,280.0 +6.375757575757576,5,a-phya-i1,2021-22,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,335,304.5454545454545 +5.534545454545454,5,a-phya-i1,2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,1017,462.27272727272725 +6.4727272727272736,5,a-phya-i1,2021-22,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,315,286.3636363636363 +6.5212121212121215,5,a-phya-i1,2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,305,277.27272727272725 +6.521904761904762,5,a-phya-i1,2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.8, 0.3, 1.0, 0.0, 2.1,582,277.1428571428571 +6.173333333333333,5,a-phya-i1,2021-22,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,685,342.5 +7.696,5,a-phya-i1,2021-22,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,57,57.0 +5.456,5,a-phya-i1,2021-22,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,477,477.0 +4.736,4.74,a-phya-i1,2021-22,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,612,612.0 +4.218666666666667,4.22,a-phya-i1,2021-22,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,709,709.0 +3.744,3.74,a-phya-i1,2021-22,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,798,798.0 +6.472,5,a-phya-i1,2021-22,Harvard - Bromfield,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,573,286.5 +5.589333333333333,5,a-phya-i1,2021-22,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,452,452.0 +6.848,5,a-phya-i1,2021-22,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 +7.066666666666666,5,a-phya-i1,2021-22,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,175,175.0 +1,1,a-phya-i1,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27 +5.312,5,a-phya-i1,2021-22,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,504,504.0 +5.1626666666666665,5,a-phya-i1,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1064,532.0 +6.053333333333334,5,a-phya-i1,2021-22,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,730,365.0 +1,1,a-phya-i1,2021-22,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19 +4.8853333333333335,4.89,a-phya-i1,2021-22,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,584,584.0 +5.392,5,a-phya-i1,2021-22,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,489,489.0 +7.850666666666666,5,a-phya-i1,2021-22,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,28,28.0 +4.038974358974359,4.04,a-phya-i1,2021-22,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.6, 2.6,1931,742.6923076923076 +1,1,a-phya-i1,2021-22,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522 +7.216,5,a-phya-i1,2021-22,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,147,147.0 +5.450666666666667,5,a-phya-i1,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,478,478.0 +5.242666666666667,5,a-phya-i1,2021-22,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +6.192,5,a-phya-i1,2021-22,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,339,339.0 +7.136,5,a-phya-i1,2021-22,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,162,162.0 +7.365333333333333,5,a-phya-i1,2021-22,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,119,119.0 +7.344,5,a-phya-i1,2021-22,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,123,123.0 +7.264,5,a-phya-i1,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,138,138.0 +1,1,a-phya-i1,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306 +6.842666666666666,5,a-phya-i1,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,217,217.0 +5.392,5,a-phya-i1,2021-22,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,489,489.0 +4.786666666666667,4.79,a-phya-i1,2021-22,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1205,602.5 +5.658666666666667,5,a-phya-i1,2021-22,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,878,439.0 +6.010666666666666,5,a-phya-i1,2021-22,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,373,373.0 +5.333333333333333,5,a-phya-i1,2021-22,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,500,500.0 +5.765333333333333,5,a-phya-i1,2021-22,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,419,419.0 +3.92,3.92,a-phya-i1,2021-22,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,612,765.0 +3.506666666666667,3.51,a-phya-i1,2021-22,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,674,842.5 +6.794666666666667,5,a-phya-i1,2021-22,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,226,226.0 +5.834666666666666,5,a-phya-i1,2021-22,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,812,406.0 +4.752,4.75,a-phya-i1,2021-22,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,609,609.0 +5.468444444444444,5,a-phya-i1,2021-22,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,712,474.6666666666667 +5.596444444444444,5,a-phya-i1,2021-22,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,676,450.6666666666667 +5.808,5,a-phya-i1,2021-22,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,411,411.0 +7.008,5,a-phya-i1,2021-22,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,186,186.0 +5.319111111111111,5,a-phya-i1,2021-22,Holyoke - Holyoke High,01370505, 0.0, 0.5, 1.5, 0.0, 0.0, 1.0, 0.0, 3.0,1508,502.6666666666667 +5.269333333333333,5,a-phya-i1,2021-22,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,256,512.0 +6.1706666666666665,5,a-phya-i1,2021-22,Holyoke - Joseph Metcalf School,01370003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +4.768,4.77,a-phya-i1,2021-22,Holyoke - Kelly Elementary,01370040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,303,606.0 +6.421333333333333,5,a-phya-i1,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,444,296.0 +6.165333333333334,5,a-phya-i1,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,344,344.0 +5.914666666666666,5,a-phya-i1,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +6.490666666666667,5,a-phya-i1,2021-22,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,283,283.0 +5.776,5,a-phya-i1,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +7.712,5,a-phya-i1,2021-22,Holyoke - William R. Peck School,01370030, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 0.0, 4.0,216,54.0 +6.258666666666667,5,a-phya-i1,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,653,326.5 +1,1,a-phya-i1,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360 +6.1866666666666665,5,a-phya-i1,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +6.357333333333333,5,a-phya-i1,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +2.976,2.98,a-phya-i1,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,471,942.0 +2.144,2.14,a-phya-i1,2021-22,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,549,1098.0 +6.746666666666667,5,a-phya-i1,2021-22,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,94,235.0 +4.682666666666667,4.68,a-phya-i1,2021-22,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,622,622.0 +4.752,4.75,a-phya-i1,2021-22,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,609,609.0 +3.6906666666666665,3.69,a-phya-i1,2021-22,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,1212,808.0 +4.718222222222222,4.72,a-phya-i1,2021-22,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,923,615.3333333333334 +1,1,a-phya-i1,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79 +5.008,5,a-phya-i1,2021-22,Hopkinton - Marathon Elementary School,01390005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,561,561.0 +5.8613333333333335,5,a-phya-i1,2021-22,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,401,401.0 +5.082666666666666,5,a-phya-i1,2021-22,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,547,547.0 +6.304,5,a-phya-i1,2021-22,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,318,318.0 +5.770666666666667,5,a-phya-i1,2021-22,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,836,418.0 +6.752,5,a-phya-i1,2021-22,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +6.677333333333333,5,a-phya-i1,2021-22,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 +5.984,5,a-phya-i1,2021-22,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,378,378.0 +7.045333333333334,5,a-phya-i1,2021-22,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,179,179.0 +1,1,a-phya-i1,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,776 +2.368,2.37,a-phya-i1,2021-22,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,528,1056.0 +4.16,4.16,a-phya-i1,2021-22,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,360,720.0 +4.288,4.29,a-phya-i1,2021-22,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,348,696.0 +3.8186666666666667,3.82,a-phya-i1,2021-22,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,392,784.0 +4.8,4.8,a-phya-i1,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,600,600.0 +5.848,5,a-phya-i1,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.5, 1.5, 1.0, 0.0, 0.0, 4.0,1614,403.5 +5.89037037037037,5,a-phya-i1,2021-22,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,712,395.55555555555554 +3.8684444444444446,3.87,a-phya-i1,2021-22,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,1162,774.6666666666666 +5.562666666666667,5,a-phya-i1,2021-22,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,457,457.0 +4.8533333333333335,4.85,a-phya-i1,2021-22,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,590,590.0 +5.594666666666667,5,a-phya-i1,2021-22,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +4.992,4.99,a-phya-i1,2021-22,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,564,564.0 +1,1,a-phya-i1,2021-22,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,563 +6.218666666666667,5,a-phya-i1,2021-22,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,668,334.0 +5.1786666666666665,5,a-phya-i1,2021-22,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,529,529.0 +5.888,5,a-phya-i1,2021-22,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +5.184,5,a-phya-i1,2021-22,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,528,528.0 +5.461333333333333,5,a-phya-i1,2021-22,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +5.354666666666667,5,a-phya-i1,2021-22,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,496,496.0 +1,1,a-phya-i1,2021-22,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208 +1,1,a-phya-i1,2021-22,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312 +6.656,5,a-phya-i1,2021-22,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,252,252.0 +6.538666666666667,5,a-phya-i1,2021-22,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,274,274.0 +7.645333333333333,5,a-phya-i1,2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,133,66.5 +7.214545454545455,5,a-phya-i1,2021-22,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,162,147.27272727272725 +2.4942222222222226,2.49,a-phya-i1,2021-22,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,3097,1032.3333333333333 +6.770666666666667,5,a-phya-i1,2021-22,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,461,230.5 +5.029333333333334,5,a-phya-i1,2021-22,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,557,557.0 +1,1,a-phya-i1,2021-22,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79 +6.557333333333333,5,a-phya-i1,2021-22,Lawrence - Robert Frost,01490018, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,541,270.5 +7.1306666666666665,5,a-phya-i1,2021-22,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,163,163.0 +7.44,5,a-phya-i1,2021-22,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,105,105.0 +0.704,1,a-phya-i1,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,684,1368.0 +5.674666666666667,5,a-phya-i1,2021-22,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +6.1866666666666665,5,a-phya-i1,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +4.682666666666667,4.68,a-phya-i1,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,311,622.0 +5.8773333333333335,5,a-phya-i1,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,796,398.0 +4.421333333333333,4.42,a-phya-i1,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,671,671.0 +6.218666666666667,5,a-phya-i1,2021-22,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 +6.261333333333333,5,a-phya-i1,2021-22,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,326,326.0 +5.344,5,a-phya-i1,2021-22,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,498,498.0 +5.690666666666667,5,a-phya-i1,2021-22,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,433,433.0 +7.754666666666667,5,a-phya-i1,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,46,46.0 +5.802666666666667,5,a-phya-i1,2021-22,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +5.728,5,a-phya-i1,2021-22,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,426,426.0 +6.421333333333333,5,a-phya-i1,2021-22,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +7.546666666666667,5,a-phya-i1,2021-22,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,85,85.0 +1,1,a-phya-i1,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749 +5.002666666666666,5,a-phya-i1,2021-22,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,562,562.0 +5.386666666666667,5,a-phya-i1,2021-22,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,490,490.0 +4.485333333333333,4.49,a-phya-i1,2021-22,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,659,659.0 +1,1,a-phya-i1,2021-22,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +5.5955555555555545,5,a-phya-i1,2021-22,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 2.0, 0.4, 0.0, 0.0, 2.4,1082,450.83333333333337 +1,1,a-phya-i1,2021-22,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29 +4.394666666666667,4.39,a-phya-i1,2021-22,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,676,676.0 +7.1946666666666665,5,a-phya-i1,2021-22,Leominster - Priest Street,01530040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,151,151.0 +1,1,a-phya-i1,2021-22,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511 +5.41037037037037,5,a-phya-i1,2021-22,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,874,485.55555555555554 +7.232,5,a-phya-i1,2021-22,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,144,144.0 +5.706666666666667,5,a-phya-i1,2021-22,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,430,430.0 +6.08,5,a-phya-i1,2021-22,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,360,360.0 +6.176,5,a-phya-i1,2021-22,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +5.744,5,a-phya-i1,2021-22,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +5.6729824561403515,5,a-phya-i1,2021-22,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,829,436.3157894736842 +5.205333333333333,5,a-phya-i1,2021-22,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,524,524.0 +7.285333333333333,5,a-phya-i1,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,67,134.0 +5.909885057471264,5,a-phya-i1,2021-22,Lexington - Lexington High,01550505, 0.0, 1.0, 0.8, 1.0, 2.0, 1.0, 0.0, 5.8,2273,391.89655172413796 +6.338666666666667,5,a-phya-i1,2021-22,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,623,311.5 +5.277037037037037,5,a-phya-i1,2021-22,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,919,510.55555555555554 +6.229333333333333,5,a-phya-i1,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,332,332.0 +5.546666666666667,5,a-phya-i1,2021-22,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,230,460.0 +4.970666666666666,4.97,a-phya-i1,2021-22,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,284,568.0 +5.056,5,a-phya-i1,2021-22,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,552,552.0 +3.965333333333333,3.97,a-phya-i1,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1513,756.5 +5.594666666666667,5,a-phya-i1,2021-22,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,451,451.0 +5.8773333333333335,5,a-phya-i1,2021-22,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,398,398.0 +5.973333333333334,5,a-phya-i1,2021-22,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +5.7973333333333334,5,a-phya-i1,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +5.824,5,a-phya-i1,2021-22,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +5.802666666666667,5,a-phya-i1,2021-22,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +6.2026666666666666,5,a-phya-i1,2021-22,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +5.570666666666667,5,a-phya-i1,2021-22,Longmeadow - Longmeadow High,01590505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,911,455.5 +6.341333333333333,5,a-phya-i1,2021-22,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,311,311.0 +5.802666666666667,5,a-phya-i1,2021-22,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +1,1,a-phya-i1,2021-22,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484 +1,1,a-phya-i1,2021-22,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515 +5.536,5,a-phya-i1,2021-22,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +1,1,a-phya-i1,2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84 +1,1,a-phya-i1,2021-22,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473 +1,1,a-phya-i1,2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453 +1,1,a-phya-i1,2021-22,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,665 +1,1,a-phya-i1,2021-22,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456 +1,1,a-phya-i1,2021-22,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52 +1,1,a-phya-i1,2021-22,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465 +1,1,a-phya-i1,2021-22,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,635 +1,1,a-phya-i1,2021-22,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649 +1,1,a-phya-i1,2021-22,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,644 +1,1,a-phya-i1,2021-22,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461 +1,1,a-phya-i1,2021-22,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444 +1,1,a-phya-i1,2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,646 +1,1,a-phya-i1,2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17 +1,1,a-phya-i1,2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39 +1,1,a-phya-i1,2021-22,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3056 +1,1,a-phya-i1,2021-22,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241 +1,1,a-phya-i1,2021-22,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454 +1,1,a-phya-i1,2021-22,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456 +1,1,a-phya-i1,2021-22,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453 +1,1,a-phya-i1,2021-22,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,865 +1,1,a-phya-i1,2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479 +1,1,a-phya-i1,2021-22,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97 +1,1,a-phya-i1,2021-22,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246 +5.808,5,a-phya-i1,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,822,411.0 +1,1,a-phya-i1,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,74 +4.650666666666667,4.65,a-phya-i1,2021-22,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,314,628.0 +4.698666666666667,4.7,a-phya-i1,2021-22,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,619,619.0 +6.235733333333334,5,a-phya-i1,2021-22,Ludlow - Ludlow Senior High,01610505, 0.0, 1.0, 0.0, 1.0, 0.5, 0.0, 0.0, 2.5,827,330.8 +6.578666666666667,5,a-phya-i1,2021-22,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,533,266.5 +1,1,a-phya-i1,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,5 +1,1,a-phya-i1,2021-22,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450 +6.928,5,a-phya-i1,2021-22,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,402,201.0 +6.989333333333334,5,a-phya-i1,2021-22,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,379,189.5 +6.074666666666666,5,a-phya-i1,2021-22,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +5.750303030303031,5,a-phya-i1,2021-22,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,464,421.81818181818176 +6.730666666666667,5,a-phya-i1,2021-22,Lynn - Aborn,01630011, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,238,238.0 +4.7746031746031745,4.77,a-phya-i1,2021-22,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 1.0, 0.0, 0.1, 0.0, 2.1,1270,604.7619047619047 +6.314666666666667,5,a-phya-i1,2021-22,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,316,316.0 +6.492121212121212,5,a-phya-i1,2021-22,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,311,282.7272727272727 +3.1386666666666665,3.14,a-phya-i1,2021-22,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1823,911.5 +6.429333333333333,5,a-phya-i1,2021-22,Lynn - Cobbet Elementary,01630035, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,589,294.5 +4.602666666666667,4.6,a-phya-i1,2021-22,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,637,637.0 +5.856969696969697,5,a-phya-i1,2021-22,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,442,401.8181818181818 +7.52,5,a-phya-i1,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,90,90.0 +5.590303030303031,5,a-phya-i1,2021-22,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,497,451.81818181818176 +4.683636363636364,4.68,a-phya-i1,2021-22,Lynn - Ingalls,01630060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,684,621.8181818181818 +-11.413333333333334,1,a-phya-i1,2021-22,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,364,3640.0 +6.991515151515152,5,a-phya-i1,2021-22,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,208,189.09090909090907 +4.151111111111112,4.15,a-phya-i1,2021-22,Lynn - Lynn English High,01630510, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,2165,721.6666666666666 +6.419199999999999,5,a-phya-i1,2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 5.0,1482,296.4 +7.238787878787878,5,a-phya-i1,2021-22,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,157,142.72727272727272 +5.338181818181819,5,a-phya-i1,2021-22,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,549,499.09090909090907 +5.832727272727273,5,a-phya-i1,2021-22,Lynn - Robert L Ford,01630050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,447,406.3636363636363 +6.627878787878788,5,a-phya-i1,2021-22,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,283,257.27272727272725 +5.806451612903226,5,a-phya-i1,2021-22,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 2.0, 0.0, 1.0, 0.1, 0.0, 3.1,1275,411.2903225806451 +6.152727272727273,5,a-phya-i1,2021-22,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,381,346.3636363636363 +5.52,5,a-phya-i1,2021-22,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +7.878787878787879,5,a-phya-i1,2021-22,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,25,22.727272727272727 +5.260606060606061,5,a-phya-i1,2021-22,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,565,513.6363636363636 +5.398518518518518,5,a-phya-i1,2021-22,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,439,487.77777777777777 +4.24,4.24,a-phya-i1,2021-22,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,564,705.0 +5.536,5,a-phya-i1,2021-22,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,693,462.0 +1,1,a-phya-i1,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38 +5.690666666666667,5,a-phya-i1,2021-22,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,433,433.0 +4.733333333333333,4.73,a-phya-i1,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,1225,612.5 +1,1,a-phya-i1,2021-22,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, 0.0, 0.0,91 +5.506666666666667,5,a-phya-i1,2021-22,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,935,467.5 +5.610666666666667,5,a-phya-i1,2021-22,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,896,448.0 +4.933333333333334,4.93,a-phya-i1,2021-22,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,575,575.0 +3.8026666666666666,3.8,a-phya-i1,2021-22,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,787,787.0 +6.842666666666666,5,a-phya-i1,2021-22,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,217,217.0 +4.876444444444445,4.88,a-phya-i1,2021-22,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1757,585.6666666666666 +5.509333333333333,5,a-phya-i1,2021-22,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,934,467.0 +6.832,5,a-phya-i1,2021-22,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,219,219.0 +5.6,5,a-phya-i1,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,450,450.0 +1,1,a-phya-i1,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283 +6.410666666666667,5,a-phya-i1,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,298,298.0 +6.176507936507936,5,a-phya-i1,2021-22,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.1, 0.0, 1.0, 1.0, 0.0, 2.1,718,341.90476190476187 +5.968253968253968,5,a-phya-i1,2021-22,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.1, 1.0, 0.0, 1.0, 0.0, 2.1,800,380.95238095238096 +6.153650793650794,5,a-phya-i1,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.1, 0.0, 0.0, 1.0, 0.0, 2.1,727,346.1904761904762 +5.203809523809524,5,a-phya-i1,2021-22,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 0.0, 2.1,1101,524.2857142857142 +7.558787878787879,5,a-phya-i1,2021-22,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,91,82.72727272727272 +6.810666666666667,5,a-phya-i1,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,223,223.0 +1,1,a-phya-i1,2021-22,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +7.258666666666667,5,a-phya-i1,2021-22,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,417,139.0 +5.241481481481482,5,a-phya-i1,2021-22,Marblehead - Marblehead High,01680505, 0.0, 0.8, 0.0, 0.0, 1.0, 0.0, 0.0, 1.8,931,517.2222222222222 +1,1,a-phya-i1,2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390 +6.509333333333333,5,a-phya-i1,2021-22,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,559,279.5 +6.8,5,a-phya-i1,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,225,225.0 +5.834666666666666,5,a-phya-i1,2021-22,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +6.085333333333334,5,a-phya-i1,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,1077,359.0 +6.36,5,a-phya-i1,2021-22,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,615,307.5 +7.0986666666666665,5,a-phya-i1,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,169,169.0 +5.354666666666667,5,a-phya-i1,2021-22,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,496,496.0 +6.026666666666666,5,a-phya-i1,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,740,370.0 +5.274666666666667,5,a-phya-i1,2021-22,Marlborough - Marlborough High,01700505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1022,511.0 +5.205333333333333,5,a-phya-i1,2021-22,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,524,524.0 +6.005333333333334,5,a-phya-i1,2021-22,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +6.832,5,a-phya-i1,2021-22,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,219,219.0 +5.625263157894737,5,a-phya-i1,2021-22,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,846,445.2631578947369 +6.048,5,a-phya-i1,2021-22,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +4.505263157894737,4.51,a-phya-i1,2021-22,Marshfield - Marshfield High,01710505, 0.0, 1.0, 0.0, 0.0, 0.9, 0.0, 0.0, 1.9,1245,655.2631578947369 +5.274666666666667,5,a-phya-i1,2021-22,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +6.608,5,a-phya-i1,2021-22,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,261,261.0 +1,1,a-phya-i1,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706 +7.12,5,a-phya-i1,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,165,165.0 +6.133333333333334,5,a-phya-i1,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,350,350.0 +6.604,5,a-phya-i1,2021-22,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,1047,261.75 +6.413333333333333,5,a-phya-i1,2021-22,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,595,297.5 +3.1466666666666665,3.15,a-phya-i1,2021-22,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,364,910.0 +5.653333333333333,5,a-phya-i1,2021-22,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,440,440.0 +1,1,a-phya-i1,2021-22,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +5.744,5,a-phya-i1,2021-22,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +1,1,a-phya-i1,2021-22,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249 +7.002666666666666,5,a-phya-i1,2021-22,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,187,187.0 +5.568,5,a-phya-i1,2021-22,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,456,456.0 +5.770666666666667,5,a-phya-i1,2021-22,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.341333333333333,5,a-phya-i1,2021-22,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,311,311.0 +6.510476190476191,5,a-phya-i1,2021-22,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.9, 0.0, 1.4,391,279.2857142857143 +6.181818181818182,5,a-phya-i1,2021-22,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.2, 1.0, 0.0, 0.0, 2.2,750,340.9090909090909 +5.722666666666667,5,a-phya-i1,2021-22,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,427,427.0 +5.888,5,a-phya-i1,2021-22,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +6.113333333333333,5,a-phya-i1,2021-22,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,566,353.75 +6.608,5,a-phya-i1,2021-22,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,522,261.0 +1,1,a-phya-i1,2021-22,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12 +7.345185185185185,5,a-phya-i1,2021-22,Medford - John J McGlynn Elementary School,01760068, 0.0, 1.0, 1.0, 0.0, 0.5, 0.5, 0.6, 3.6,442,122.77777777777777 +3.1253333333333333,3.13,a-phya-i1,2021-22,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,457,914.0 +6.778666666666667,5,a-phya-i1,2021-22,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,458,229.0 +5.854222222222223,5,a-phya-i1,2021-22,Medford - Medford High,01760505, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,1207,402.3333333333333 +5.242666666666667,5,a-phya-i1,2021-22,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +7.127466666666667,5,a-phya-i1,2021-22,Medford - Missituk Elementary School,01760140, 1.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 2.5,409,163.6 +5.493333333333333,5,a-phya-i1,2021-22,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,470,470.0 +6.208,5,a-phya-i1,2021-22,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,336,336.0 +4.592,4.59,a-phya-i1,2021-22,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,639,639.0 +4.464,4.46,a-phya-i1,2021-22,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,663,663.0 +6.944,5,a-phya-i1,2021-22,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,198,198.0 +1,1,a-phya-i1,2021-22,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297 +1,1,a-phya-i1,2021-22,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267 +1,1,a-phya-i1,2021-22,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404 +1,1,a-phya-i1,2021-22,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,923 +1,1,a-phya-i1,2021-22,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,844 +5.776,5,a-phya-i1,2021-22,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +5.8773333333333335,5,a-phya-i1,2021-22,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,398,398.0 +6.149333333333334,5,a-phya-i1,2021-22,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,347,347.0 +5.365333333333333,5,a-phya-i1,2021-22,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,494,494.0 +4.453333333333333,4.45,a-phya-i1,2021-22,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,665,665.0 +4.613333333333333,4.61,a-phya-i1,2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,635,635.0 +6.314666666666667,5,a-phya-i1,2021-22,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,948,316.0 +4.650666666666667,4.65,a-phya-i1,2021-22,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1256,628.0 +5.1306666666666665,5,a-phya-i1,2021-22,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1076,538.0 +2.957333333333333,2.96,a-phya-i1,2021-22,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1891,945.5 +1.2373333333333334,1.24,a-phya-i1,2021-22,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1268,1268.0 +-21.173333333333332,1,a-phya-i1,2021-22,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,547,5470.0 +4.610909090909091,4.61,a-phya-i1,2021-22,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,699,635.4545454545454 +5.076363636363637,5,a-phya-i1,2021-22,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,603,548.1818181818181 +7.326060606060605,5,a-phya-i1,2021-22,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.1, 0.1, 0.0, 1.0, 1.0, 2.2,278,126.36363636363636 +3.713939393939394,3.71,a-phya-i1,2021-22,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,884,803.6363636363636 +7.357777777777779,5,a-phya-i1,2021-22,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.4, 0.0, 0.0, 1.0, 0.0, 2.4,289,120.41666666666667 +6.510222222222223,5,a-phya-i1,2021-22,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,419,279.3333333333333 +5.541333333333333,5,a-phya-i1,2021-22,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,461,461.0 +5.381333333333333,5,a-phya-i1,2021-22,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,491,491.0 +4.592,4.59,a-phya-i1,2021-22,Milford - Milford High,01850505, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1278,639.0 +5.511111111111111,5,a-phya-i1,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,140,466.6666666666667 +5.312,5,a-phya-i1,2021-22,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1008,504.0 +5.517333333333333,5,a-phya-i1,2021-22,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,931,465.5 +5.1946666666666665,5,a-phya-i1,2021-22,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,526,526.0 +4.074666666666666,4.07,a-phya-i1,2021-22,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,736,736.0 +6.192,5,a-phya-i1,2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 +4.9013333333333335,4.9,a-phya-i1,2021-22,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,581,581.0 +4.501333333333333,4.5,a-phya-i1,2021-22,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,328,656.0 +5.1626666666666665,5,a-phya-i1,2021-22,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,266,532.0 +3.050666666666667,3.05,a-phya-i1,2021-22,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,928,928.0 +4.757333333333333,4.76,a-phya-i1,2021-22,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,608,608.0 +1,1,a-phya-i1,2021-22,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617 +4.645333333333333,4.65,a-phya-i1,2021-22,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,629,629.0 +2.1013333333333333,2.1,a-phya-i1,2021-22,Milton - Milton High,01890505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1106,1106.0 +5.525333333333333,5,a-phya-i1,2021-22,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,464,464.0 +1.0133333333333334,1.01,a-phya-i1,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,655,1310.0 +6.56,5,a-phya-i1,2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,270,270.0 +6.311111111111111,5,a-phya-i1,2021-22,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,95,316.6666666666667 +6.554666666666667,5,a-phya-i1,2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +1,1,a-phya-i1,2021-22,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126 +7.226666666666667,5,a-phya-i1,2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,145,145.0 +6.688,5,a-phya-i1,2021-22,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,492,246.0 +4.751515151515152,4.75,a-phya-i1,2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 1.1,670,609.090909090909 +6.784,5,a-phya-i1,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,456,228.0 +1,1,a-phya-i1,2021-22,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409 +7.133333333333334,5,a-phya-i1,2021-22,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,325,162.5 +7.445333333333333,5,a-phya-i1,2021-22,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,104,104.0 +4.232,4.23,a-phya-i1,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1413,706.5 +6.896,5,a-phya-i1,2021-22,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,207,207.0 +5.205333333333333,5,a-phya-i1,2021-22,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,524,524.0 +5.749333333333333,5,a-phya-i1,2021-22,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,422,422.0 +6.3082666666666665,5,a-phya-i1,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 1.5, 0.0, 1.0, 1.0, 0.5, 1.0, 5.0,1586,317.2 +7.125333333333334,5,a-phya-i1,2021-22,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,164,164.0 +2.3866666666666667,2.39,a-phya-i1,2021-22,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,421,1052.5 +5.978666666666666,5,a-phya-i1,2021-22,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +0.6133333333333333,1,a-phya-i1,2021-22,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,554,1385.0 +6.304,5,a-phya-i1,2021-22,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 +6.133333333333334,5,a-phya-i1,2021-22,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,350,350.0 +5.754666666666667,5,a-phya-i1,2021-22,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +6.341333333333333,5,a-phya-i1,2021-22,Narragansett - Templeton Elementary School,07200020, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,622,311.0 +5.301333333333333,5,a-phya-i1,2021-22,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,506,506.0 +6.449066666666667,5,a-phya-i1,2021-22,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 2.5,727,290.8 +5.528888888888888,5,a-phya-i1,2021-22,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,278,463.33333333333337 +6.8053333333333335,5,a-phya-i1,2021-22,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,224,224.0 +5.552,5,a-phya-i1,2021-22,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +6.410666666666667,5,a-phya-i1,2021-22,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,894,298.0 +6.037333333333334,5,a-phya-i1,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,736,368.0 +6.197333333333333,5,a-phya-i1,2021-22,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,507,338.0 +5.584,5,a-phya-i1,2021-22,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,453,453.0 +5.166666666666667,5,a-phya-i1,2021-22,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,850,531.25 +6.832,5,a-phya-i1,2021-22,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,219,219.0 +5.936,5,a-phya-i1,2021-22,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,387,387.0 +5.888,5,a-phya-i1,2021-22,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,396,396.0 +4.803809523809524,4.8,a-phya-i1,2021-22,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 2.4, 0.4, 0.0, 2.8,1678,599.2857142857143 +6.182222222222221,5,a-phya-i1,2021-22,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 1.0, 0.4, 1.0, 0.0, 2.4,818,340.83333333333337 +3.5573333333333332,3.56,a-phya-i1,2021-22,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,833,833.0 +5.157333333333334,5,a-phya-i1,2021-22,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,533,533.0 +5.498181818181819,5,a-phya-i1,2021-22,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,516,469.09090909090907 +5.818181818181818,5,a-phya-i1,2021-22,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,450,409.09090909090907 +6.084444444444444,5,a-phya-i1,2021-22,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.1, 1.2,431,359.1666666666667 +4.70320987654321,4.7,a-phya-i1,2021-22,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.7, 2.0, 0.0, 2.7,1669,618.1481481481482 +6.311111111111112,5,a-phya-i1,2021-22,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 2.0, 0.1, 0.0, 0.0, 2.1,665,316.66666666666663 +5.897142857142858,5,a-phya-i1,2021-22,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 1.1, 1.0, 0.0, 2.1,828,394.2857142857143 +5.546666666666667,5,a-phya-i1,2021-22,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,506,459.99999999999994 +5.818181818181818,5,a-phya-i1,2021-22,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,450,409.09090909090907 +6.6417777777777784,5,a-phya-i1,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,764,254.66666666666666 +4.544,4.54,a-phya-i1,2021-22,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,648,648.0 +6.661333333333333,5,a-phya-i1,2021-22,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,502,251.0 +6.762666666666667,5,a-phya-i1,2021-22,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,232,232.0 +6.384,5,a-phya-i1,2021-22,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +7.1786666666666665,5,a-phya-i1,2021-22,New Bedford - Casimir Pulaski,02010123, 0.0, 1.0, 0.0, 1.0, 1.0, 0.5, 0.0, 3.5,539,154.0 +6.533333333333333,5,a-phya-i1,2021-22,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,275,275.0 +6.448,5,a-phya-i1,2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,291,291.0 +7.029333333333334,5,a-phya-i1,2021-22,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,273,182.0 +6.570666666666667,5,a-phya-i1,2021-22,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,268,268.0 +6.8213333333333335,5,a-phya-i1,2021-22,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0,663,221.0 +6.010666666666666,5,a-phya-i1,2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,373,373.0 +5.12,5,a-phya-i1,2021-22,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,270,540.0 +6.890666666666666,5,a-phya-i1,2021-22,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +6.794666666666667,5,a-phya-i1,2021-22,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,226,226.0 +6.346666666666667,5,a-phya-i1,2021-22,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,310,310.0 +7.166222222222221,5,a-phya-i1,2021-22,New Bedford - Keith Middle School,02010405, 1.0, 2.0, 0.0, 1.0, 1.0, 0.0, 1.0, 6.0,938,156.33333333333334 +4.1466666666666665,4.15,a-phya-i1,2021-22,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 4.0,2890,722.5 +1,1,a-phya-i1,2021-22,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1112 +1,1,a-phya-i1,2021-22,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160 +5.8773333333333335,5,a-phya-i1,2021-22,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,796,398.0 +6.381333333333333,5,a-phya-i1,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,607,303.5 +6.848,5,a-phya-i1,2021-22,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,216,216.0 +7.546666666666667,5,a-phya-i1,2021-22,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,85,85.0 +7.8213333333333335,5,a-phya-i1,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,67,33.5 +6.656,5,a-phya-i1,2021-22,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,252,252.0 +1,1,a-phya-i1,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744 +7.133333333333334,5,a-phya-i1,2021-22,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,130,162.5 +6.501333333333333,5,a-phya-i1,2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 +6.386666666666667,5,a-phya-i1,2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,605,302.5 +6.606222222222223,5,a-phya-i1,2021-22,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,784,261.3333333333333 +5.44,5,a-phya-i1,2021-22,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,480,480.0 +5.744,5,a-phya-i1,2021-22,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +5.52,5,a-phya-i1,2021-22,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,465,465.0 +6.16,5,a-phya-i1,2021-22,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +6.117333333333334,5,a-phya-i1,2021-22,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,353,353.0 +5.786666666666667,5,a-phya-i1,2021-22,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 +3.952,3.95,a-phya-i1,2021-22,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,759,759.0 +6.016,5,a-phya-i1,2021-22,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,372,372.0 +5.509333333333333,5,a-phya-i1,2021-22,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,934,467.0 +5.856,5,a-phya-i1,2021-22,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +6.026666666666666,5,a-phya-i1,2021-22,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,370,370.0 +6.864,5,a-phya-i1,2021-22,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,213,213.0 +1,1,a-phya-i1,2021-22,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315 +6.2026666666666666,5,a-phya-i1,2021-22,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,337,337.0 +5.904,5,a-phya-i1,2021-22,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,393,393.0 +7.045333333333334,5,a-phya-i1,2021-22,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,179,179.0 +2.4053333333333335,2.41,a-phya-i1,2021-22,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,2098,1049.0 +4.734222222222222,4.73,a-phya-i1,2021-22,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,1837,612.3333333333334 +4.474666666666667,4.47,a-phya-i1,2021-22,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,661,661.0 +6.730666666666667,5,a-phya-i1,2021-22,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,238,238.0 +6.8373333333333335,5,a-phya-i1,2021-22,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,218,218.0 +6.8,5,a-phya-i1,2021-22,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,225,225.0 +5.749333333333333,5,a-phya-i1,2021-22,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,422,422.0 +3.2,3.2,a-phya-i1,2021-22,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,540,900.0 +5.381333333333333,5,a-phya-i1,2021-22,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,491,491.0 +4.864,4.86,a-phya-i1,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,588,588.0 +7.381333333333333,5,a-phya-i1,2021-22,North Adams - Brayton,02090035, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,232,116.0 +6.682666666666667,5,a-phya-i1,2021-22,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +5.258666666666667,5,a-phya-i1,2021-22,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,514,514.0 +6.592,5,a-phya-i1,2021-22,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,264,264.0 +6.882666666666666,5,a-phya-i1,2021-22,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,419,209.5 +6.757333333333333,5,a-phya-i1,2021-22,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,466,233.0 +6.458666666666667,5,a-phya-i1,2021-22,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +6.997333333333334,5,a-phya-i1,2021-22,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,376,188.0 +6.810666666666667,5,a-phya-i1,2021-22,North Andover - Kittredge,02110015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,223,223.0 +3.55,3.55,a-phya-i1,2021-22,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,1335,834.375 +5.1386666666666665,5,a-phya-i1,2021-22,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1073,536.5 +6.336,5,a-phya-i1,2021-22,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,312,312.0 +5.770666666666667,5,a-phya-i1,2021-22,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.538666666666667,5,a-phya-i1,2021-22,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +6.826666666666667,5,a-phya-i1,2021-22,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,220,220.0 +4.906666666666666,4.91,a-phya-i1,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,580,580.0 +4.970666666666666,4.97,a-phya-i1,2021-22,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1136,568.0 +1,1,a-phya-i1,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134 +2.9066666666666667,2.91,a-phya-i1,2021-22,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,955,955.0 +6.656,5,a-phya-i1,2021-22,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,252,252.0 +1,1,a-phya-i1,2021-22,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285 +7.0986666666666665,5,a-phya-i1,2021-22,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,169,169.0 +7.258666666666667,5,a-phya-i1,2021-22,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,139,139.0 +5.466666666666667,5,a-phya-i1,2021-22,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,475,475.0 +5.461333333333333,5,a-phya-i1,2021-22,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +6.449382716049383,5,a-phya-i1,2021-22,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.6, 0.5, 0.0, 1.6, 0.0, 2.7,785,290.7407407407407 +1,1,a-phya-i1,2021-22,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466 +7.768,5,a-phya-i1,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,87,43.5 +5.008,5,a-phya-i1,2021-22,North Middlesex - Varnum Brook,07350035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,561,561.0 +6.416,5,a-phya-i1,2021-22,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,297,297.0 +6.101333333333334,5,a-phya-i1,2021-22,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +5.52,5,a-phya-i1,2021-22,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,465,465.0 +4.592,4.59,a-phya-i1,2021-22,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,639,639.0 +4.992,4.99,a-phya-i1,2021-22,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,564,564.0 +6.517333333333333,5,a-phya-i1,2021-22,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.373333333333333,5,a-phya-i1,2021-22,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,305,305.0 +4.912,4.91,a-phya-i1,2021-22,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,579,579.0 +6.384,5,a-phya-i1,2021-22,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,303,303.0 +3.1573333333333333,3.16,a-phya-i1,2021-22,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,908,908.0 +6.693333333333333,5,a-phya-i1,2021-22,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,245,245.0 +6.541333333333333,5,a-phya-i1,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,547,273.5 +4.616,4.62,a-phya-i1,2021-22,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1269,634.5 +6.3,5,a-phya-i1,2021-22,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,255,318.75 +6.576,5,a-phya-i1,2021-22,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,267,267.0 +6.656,5,a-phya-i1,2021-22,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,252,252.0 +6.3533333333333335,5,a-phya-i1,2021-22,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,247,308.75 +5.984761904761904,5,a-phya-i1,2021-22,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,529,377.8571428571429 +6.307555555555556,5,a-phya-i1,2021-22,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 3.0,952,317.3333333333333 +5.264,5,a-phya-i1,2021-22,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,513,513.0 +7.244444444444445,5,a-phya-i1,2021-22,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.6, 0.0, 1.0, 3.6,510,141.66666666666666 +4.514666666666667,4.51,a-phya-i1,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1307,653.5 +1,1,a-phya-i1,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523 +7.050666666666666,5,a-phya-i1,2021-22,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,356,178.0 +5.408,5,a-phya-i1,2021-22,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,486,486.0 +6.533333333333333,5,a-phya-i1,2021-22,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,275,275.0 +1,1,a-phya-i1,2021-22,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,677 +4.896,4.9,a-phya-i1,2021-22,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +5.2,5,a-phya-i1,2021-22,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,525,525.0 +4.634666666666667,4.63,a-phya-i1,2021-22,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,631,631.0 +5.338666666666667,5,a-phya-i1,2021-22,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,499,499.0 +5.168,5,a-phya-i1,2021-22,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,531,531.0 +6.352,5,a-phya-i1,2021-22,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,309,309.0 +6.618666666666667,5,a-phya-i1,2021-22,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,259,259.0 +6.810666666666667,5,a-phya-i1,2021-22,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,223,223.0 +5.415111111111111,5,a-phya-i1,2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,727,484.6666666666667 +6.389333333333333,5,a-phya-i1,2021-22,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,302,302.0 +7.016,5,a-phya-i1,2021-22,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.4, 2.0,369,184.5 +6.979047619047618,5,a-phya-i1,2021-22,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,268,191.42857142857144 +4.490666666666667,4.49,a-phya-i1,2021-22,Norwood - Norwood High,02200505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,987,658.0 +5.722666666666667,5,a-phya-i1,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,427,427.0 +4.997333333333334,5.0,a-phya-i1,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,563,563.0 +4.389333333333333,4.39,a-phya-i1,2021-22,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,677,677.0 +5.8133333333333335,5,a-phya-i1,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,410,410.0 +6.293333333333333,5,a-phya-i1,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,320,320.0 +4.928,4.93,a-phya-i1,2021-22,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,288,576.0 +1,1,a-phya-i1,2021-22,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248 +7.125333333333334,5,a-phya-i1,2021-22,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,164,164.0 +6.474666666666667,5,a-phya-i1,2021-22,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,286,286.0 +6.666666666666667,5,a-phya-i1,2021-22,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,250,250.0 +6.586666666666667,5,a-phya-i1,2021-22,Oxford - Oxford High,02260505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,530,265.0 +5.866666666666666,5,a-phya-i1,2021-22,Oxford - Oxford Middle,02260405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,400,400.0 +4.688,4.69,a-phya-i1,2021-22,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,621,621.0 +4.986666666666666,4.99,a-phya-i1,2021-22,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,565,565.0 +3.8066666666666666,3.81,a-phya-i1,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,629,786.25 +5.408,5,a-phya-i1,2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,243,486.0 +1,1,a-phya-i1,2021-22,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362 +1,1,a-phya-i1,2021-22,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419 +1,1,a-phya-i1,2021-22,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1393 +1,1,a-phya-i1,2021-22,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243 +1,1,a-phya-i1,2021-22,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315 +1,1,a-phya-i1,2021-22,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1455 +1,1,a-phya-i1,2021-22,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422 +1,1,a-phya-i1,2021-22,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553 +1,1,a-phya-i1,2021-22,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250 +1,1,a-phya-i1,2021-22,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346 +7.376,5,a-phya-i1,2021-22,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,117,117.0 +5.648,5,a-phya-i1,2021-22,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,441,441.0 +5.824,5,a-phya-i1,2021-22,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +5.242666666666667,5,a-phya-i1,2021-22,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,517,517.0 +5.802666666666667,5,a-phya-i1,2021-22,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,412,412.0 +5.383333333333334,5,a-phya-i1,2021-22,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,785,490.625 +6.864,5,a-phya-i1,2021-22,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,213,213.0 +6.357333333333333,5,a-phya-i1,2021-22,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +5.482666666666667,5,a-phya-i1,2021-22,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,472,472.0 +6.634666666666667,5,a-phya-i1,2021-22,Pentucket - Helen R Donaghue School,07450010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,256,256.0 +6.245333333333333,5,a-phya-i1,2021-22,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +4.629333333333333,4.63,a-phya-i1,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,632,632.0 +7.397333333333333,5,a-phya-i1,2021-22,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,113,113.0 +5.546666666666667,5,a-phya-i1,2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,138,460.0 +4.888888888888888,4.89,a-phya-i1,2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,175,583.3333333333334 +6.766666666666667,5,a-phya-i1,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,185,231.25 +3.8666666666666667,3.87,a-phya-i1,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,775,775.0 +5.994666666666666,5,a-phya-i1,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +6.992,5,a-phya-i1,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +6.917333333333334,5,a-phya-i1,2021-22,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,203,203.0 +7.214814814814815,5,a-phya-i1,2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 0.0, 1.8,265,147.22222222222223 +4.949333333333334,4.95,a-phya-i1,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,572,572.0 +5.866666666666666,5,a-phya-i1,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,400,400.0 +6.672,5,a-phya-i1,2021-22,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,249,249.0 +6.506666666666667,5,a-phya-i1,2021-22,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,280,280.0 +1,1,a-phya-i1,2021-22,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21 +1,1,a-phya-i1,2021-22,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24 +5.733333333333333,5,a-phya-i1,2021-22,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +6.371555555555556,5,a-phya-i1,2021-22,Pittsfield - John T Reid Middle,02360305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0, 1.5,458,305.3333333333333 +6.197333333333333,5,a-phya-i1,2021-22,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,338,338.0 +6.208,5,a-phya-i1,2021-22,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,672,336.0 +7.152,5,a-phya-i1,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,159,159.0 +6.256,5,a-phya-i1,2021-22,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,327,327.0 +6.784,5,a-phya-i1,2021-22,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,228,228.0 +3.562666666666667,3.56,a-phya-i1,2021-22,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,832,832.0 +6.314666666666667,5,a-phya-i1,2021-22,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,474,316.0 +6.613333333333333,5,a-phya-i1,2021-22,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,260,260.0 +6.4,5,a-phya-i1,2021-22,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +6.101333333333334,5,a-phya-i1,2021-22,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,356,356.0 +6.832,5,a-phya-i1,2021-22,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,219,219.0 +6.010666666666666,5,a-phya-i1,2021-22,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,373,373.0 +6.912,5,a-phya-i1,2021-22,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,204,204.0 +5.002666666666666,5,a-phya-i1,2021-22,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,562,562.0 +6.661333333333333,5,a-phya-i1,2021-22,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +6.656,5,a-phya-i1,2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,504,252.0 +5.605333333333333,5,a-phya-i1,2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,898,449.0 +6.992,5,a-phya-i1,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,189,189.0 +4.506666666666667,4.51,a-phya-i1,2021-22,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1310,655.0 +2.4053333333333335,2.41,a-phya-i1,2021-22,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1049,1049.0 +4.464,4.46,a-phya-i1,2021-22,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,663,663.0 +4.56,4.56,a-phya-i1,2021-22,Plymouth - South Elementary,02390046, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,645,645.0 +6.245333333333333,5,a-phya-i1,2021-22,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +6.714666666666667,5,a-phya-i1,2021-22,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +6.051555555555556,5,a-phya-i1,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,1096,365.3333333333333 +1,1,a-phya-i1,2021-22,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141 +7.013333333333334,5,a-phya-i1,2021-22,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,185,185.0 +1,1,a-phya-i1,2021-22,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302 +7.632,5,a-phya-i1,2021-22,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,69,69.0 +1,1,a-phya-i1,2021-22,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123 +6.899555555555555,5,a-phya-i1,2021-22,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,619,206.33333333333334 +5.157333333333334,5,a-phya-i1,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,533,533.0 +5.9093333333333335,5,a-phya-i1,2021-22,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,392,392.0 +5.726666666666667,5,a-phya-i1,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,341,426.25 +1,1,a-phya-i1,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200 +6.117333333333334,5,a-phya-i1,2021-22,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,353,353.0 +6.682666666666667,5,a-phya-i1,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +6.549333333333333,5,a-phya-i1,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,136,272.0 +5.28,5,a-phya-i1,2021-22,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,255,510.0 +2.4426666666666668,2.44,a-phya-i1,2021-22,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,521,1042.0 +4.341333333333333,4.34,a-phya-i1,2021-22,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,343,686.0 +4.512,4.51,a-phya-i1,2021-22,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,327,654.0 +4.581333333333333,4.58,a-phya-i1,2021-22,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,641,641.0 +4.405333333333333,4.41,a-phya-i1,2021-22,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,337,674.0 +4.8533333333333335,4.85,a-phya-i1,2021-22,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,472,590.0 +4.714666666666667,4.71,a-phya-i1,2021-22,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,308,616.0 +2.4,2.4,a-phya-i1,2021-22,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,525,1050.0 +4.544,4.54,a-phya-i1,2021-22,Quincy - Merrymount,02430060, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,324,648.0 +3.3813333333333335,3.38,a-phya-i1,2021-22,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,433,866.0 +0.49066666666666664,1,a-phya-i1,2021-22,Quincy - North Quincy High,02430510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1408,1408.0 +1,1,a-phya-i1,2021-22,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402 +2.7911111111111113,2.79,a-phya-i1,2021-22,Quincy - Quincy High,02430505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,1465,976.6666666666666 +3.936,3.94,a-phya-i1,2021-22,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,381,762.0 +3.3493333333333335,3.35,a-phya-i1,2021-22,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,436,872.0 +4.16,4.16,a-phya-i1,2021-22,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,360,720.0 +4.48,4.48,a-phya-i1,2021-22,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,330,660.0 +2.058666666666667,2.06,a-phya-i1,2021-22,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,557,1114.0 +6.378666666666667,5,a-phya-i1,2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +5.941333333333334,5,a-phya-i1,2021-22,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,386,386.0 +5.84,5,a-phya-i1,2021-22,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,405,405.0 +6.72,5,a-phya-i1,2021-22,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,240,240.0 +4.629333333333333,4.63,a-phya-i1,2021-22,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,632,632.0 +4.778666666666667,4.78,a-phya-i1,2021-22,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,604,604.0 +6.128,5,a-phya-i1,2021-22,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,351,351.0 +5.834666666666666,5,a-phya-i1,2021-22,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,406,406.0 +6.2026666666666666,5,a-phya-i1,2021-22,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,337,337.0 +5.8293333333333335,5,a-phya-i1,2021-22,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,407,407.0 +6.0,5,a-phya-i1,2021-22,Reading - Joshua Eaton,02460010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +1,1,a-phya-i1,2021-22,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102 +4.637037037037037,4.64,a-phya-i1,2021-22,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,1135,630.5555555555555 +5.413333333333333,5,a-phya-i1,2021-22,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,485,485.0 +6.677333333333333,5,a-phya-i1,2021-22,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,248,248.0 +-12.08,1,a-phya-i1,2021-22,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.2,753,3765.0 +5.457777777777777,5,a-phya-i1,2021-22,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.1, 0.1, 0.0, 0.0, 0.0, 1.2,572,476.6666666666667 +6.426666666666667,5,a-phya-i1,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.1, 0.1, 0.0, 0.8, 0.0, 1.0,295,295.0 +4.96,4.96,a-phya-i1,2021-22,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.1, 0.1, 0.0, 0.0, 0.0, 1.2,684,570.0 +5.6177777777777775,5,a-phya-i1,2021-22,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.1, 0.1, 1.0, 0.0, 0.0, 1.2,536,446.6666666666667 +5.937777777777777,5,a-phya-i1,2021-22,Revere - Paul Revere,02480050, 0.0, 0.0, 0.1, 0.1, 0.0, 1.0, 0.0, 1.2,464,386.6666666666667 +4.673333333333333,4.67,a-phya-i1,2021-22,Revere - Revere High,02480505, 0.0, 0.0, 1.1, 0.1, 0.0, 1.0, 1.0, 3.2,1996,623.75 +5.475555555555554,5,a-phya-i1,2021-22,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.1, 0.1, 0.0, 0.0, 0.0, 1.2,568,473.33333333333337 +7.066666666666666,5,a-phya-i1,2021-22,Revere - Seacoast School,02480520, 0.0, 0.0, 0.1, 0.1, 0.0, 0.2, 0.0, 0.4,70,175.0 +5.16,5,a-phya-i1,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 1.0, 1.2,639,532.5 +-7.04,1,a-phya-i1,2021-22,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.2,564,2820.0 +7.1626666666666665,5,a-phya-i1,2021-22,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,157,157.0 +6.253333333333333,5,a-phya-i1,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,655,327.5 +6.464,5,a-phya-i1,2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.248,5,a-phya-i1,2021-22,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,516,516.0 +6.789333333333333,5,a-phya-i1,2021-22,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,227,227.0 +0.192,1,a-phya-i1,2021-22,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,732,1464.0 +5.44,5,a-phya-i1,2021-22,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,240,480.0 +4.597333333333333,4.6,a-phya-i1,2021-22,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,319,638.0 +1.6,1.6,a-phya-i1,2021-22,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,600,1200.0 +6.336,5,a-phya-i1,2021-22,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,312,312.0 +6.768,5,a-phya-i1,2021-22,Rockport - Rockport High,02520510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,231,231.0 +6.906666666666666,5,a-phya-i1,2021-22,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,205,205.0 +7.653333333333333,5,a-phya-i1,2021-22,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,65,65.0 +6.3776,5,a-phya-i1,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 2.0, 0.0, 0.0, 2.0, 1.0, 0.0, 5.0,1521,304.2 +6.112,5,a-phya-i1,2021-22,Salem - Bates,02580003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +1,1,a-phya-i1,2021-22,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314 +-4.586666666666667,1,a-phya-i1,2021-22,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,236,2360.0 +4.930909090909092,4.93,a-phya-i1,2021-22,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,633,575.4545454545454 +-7.626666666666667,1,a-phya-i1,2021-22,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,293,2930.0 +7.52,5,a-phya-i1,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,54,90.0 +7.466666666666667,5,a-phya-i1,2021-22,Salem - Salem Early Childhood,02580001, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,110,99.99999999999999 +5.960634920634921,5,a-phya-i1,2021-22,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,803,382.38095238095235 +7.848888888888888,5,a-phya-i1,2021-22,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,17,28.333333333333336 +-12.16,1,a-phya-i1,2021-22,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,378,3780.0 +7.02974358974359,5,a-phya-i1,2021-22,Salem - Witchcraft Heights,02580070, 0.0, 1.1, 0.0, 1.0, 0.5, 0.0, 0.0, 2.6,473,181.9230769230769 +1,1,a-phya-i1,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495 +5.082666666666666,5,a-phya-i1,2021-22,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,547,547.0 +6.034666666666666,5,a-phya-i1,2021-22,Sandwich - Oak Ridge,02610025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,737,368.5 +4.741333333333333,4.74,a-phya-i1,2021-22,Sandwich - Sandwich High,02610505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,611,611.0 +5.904,5,a-phya-i1,2021-22,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 +5.970666666666666,5,a-phya-i1,2021-22,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,761,380.5 +6.149333333333334,5,a-phya-i1,2021-22,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,694,347.0 +6.378666666666667,5,a-phya-i1,2021-22,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,608,304.0 +7.005333333333334,5,a-phya-i1,2021-22,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,373,186.5 +7.66,5,a-phya-i1,2021-22,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,51,63.75 +6.288,5,a-phya-i1,2021-22,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,321,321.0 +6.936888888888888,5,a-phya-i1,2021-22,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,598,199.33333333333334 +6.688,5,a-phya-i1,2021-22,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,246,246.0 +6.24,5,a-phya-i1,2021-22,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,330,330.0 +3.4026666666666667,3.4,a-phya-i1,2021-22,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,862,862.0 +5.786666666666667,5,a-phya-i1,2021-22,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +3.1893333333333334,3.19,a-phya-i1,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,451,902.0 +2.8053333333333335,2.81,a-phya-i1,2021-22,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,487,974.0 +2.176,2.18,a-phya-i1,2021-22,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,546,1092.0 +1.696,1.7,a-phya-i1,2021-22,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,591,1182.0 +5.995555555555555,5,a-phya-i1,2021-22,Sharon - Cottage Street,02660005, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,451,375.83333333333337 +6.156190476190476,5,a-phya-i1,2021-22,Sharon - East Elementary,02660010, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4,484,345.7142857142857 +5.954285714285714,5,a-phya-i1,2021-22,Sharon - Heights Elementary,02660015, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,537,383.5714285714286 +7.466666666666667,5,a-phya-i1,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,50,100.0 +4.962666666666666,4.96,a-phya-i1,2021-22,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1139,569.5 +3.328,3.33,a-phya-i1,2021-22,Sharon - Sharon Middle,02660305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,876,876.0 +4.488,4.49,a-phya-i1,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1317,658.5 +5.3133333333333335,5,a-phya-i1,2021-22,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,403,503.75 +6.64,5,a-phya-i1,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +5.9158974358974366,5,a-phya-i1,2021-22,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 1.3,508,390.7692307692308 +5.608205128205127,5,a-phya-i1,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 1.3,583,448.46153846153845 +4.27047619047619,4.27,a-phya-i1,2021-22,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,979,699.2857142857143 +7.125333333333334,5,a-phya-i1,2021-22,Shrewsbury - Parker Road Preschool,02710040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,164,164.0 +4.373333333333333,4.37,a-phya-i1,2021-22,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7, 0.0, 1.4,952,680.0 +4.375308641975309,4.38,a-phya-i1,2021-22,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 1.0, 0.0, 0.7, 1.0, 0.0, 2.7,1835,679.6296296296296 +6.416,5,a-phya-i1,2021-22,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +6.336,5,a-phya-i1,2021-22,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,312,312.0 +7.386666666666667,5,a-phya-i1,2021-22,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,115,115.0 +1.696,1.7,a-phya-i1,2021-22,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1182,1182.0 +5.285333333333333,5,a-phya-i1,2021-22,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,509,509.0 +6.133333333333334,5,a-phya-i1,2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,350,350.0 +6.542222222222222,5,a-phya-i1,2021-22,Somerset - Chace Street,02730005, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,328,273.33333333333337 +5.924444444444444,5,a-phya-i1,2021-22,Somerset - North Elementary,02730008, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,467,389.1666666666667 +5.368888888888889,5,a-phya-i1,2021-22,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,592,493.33333333333337 +6.848888888888888,5,a-phya-i1,2021-22,Somerset - South,02730015, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,259,215.83333333333334 +4.68,4.68,a-phya-i1,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.2, 0.0, 1.4, 0.0, 0.0, 1.6,996,622.5 +1,1,a-phya-i1,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544 +1,1,a-phya-i1,2021-22,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457 +1,1,a-phya-i1,2021-22,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181 +1,1,a-phya-i1,2021-22,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195 +1,1,a-phya-i1,2021-22,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697 +1,1,a-phya-i1,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52 +1,1,a-phya-i1,2021-22,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436 +1,1,a-phya-i1,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18 +1,1,a-phya-i1,2021-22,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1304 +1,1,a-phya-i1,2021-22,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371 +1,1,a-phya-i1,2021-22,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418 +5.141333333333334,5,a-phya-i1,2021-22,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,536,536.0 +5.925333333333334,5,a-phya-i1,2021-22,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,389,389.0 +6.474666666666667,5,a-phya-i1,2021-22,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,286,286.0 +1,1,a-phya-i1,2021-22,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552 +4.977777777777778,4.98,a-phya-i1,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,850,566.6666666666666 +5.846153846153847,5,a-phya-i1,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.8, 0.8, 0.0, 0.0, 2.6,1050,403.8461538461538 +4.506666666666667,4.51,a-phya-i1,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +6.757333333333333,5,a-phya-i1,2021-22,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,466,233.0 +6.565333333333333,5,a-phya-i1,2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,269,269.0 +6.266666666666667,5,a-phya-i1,2021-22,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,260,325.0 +6.213333333333333,5,a-phya-i1,2021-22,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +5.957333333333334,5,a-phya-i1,2021-22,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,383,383.0 +6.496,5,a-phya-i1,2021-22,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,282,282.0 +6.298666666666667,5,a-phya-i1,2021-22,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,319,319.0 +7.776,5,a-phya-i1,2021-22,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,42,42.0 +6.818666666666667,5,a-phya-i1,2021-22,Southbridge - Southbridge High School,02770515, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,443,221.5 +6.914666666666666,5,a-phya-i1,2021-22,Southbridge - Southbridge Middle School,02770315, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,407,203.5 +6.336,5,a-phya-i1,2021-22,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,312,312.0 +3.8666666666666667,3.87,a-phya-i1,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1550,775.0 +6.378666666666667,5,a-phya-i1,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,304,304.0 +7.648,5,a-phya-i1,2021-22,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,66,66.0 +1,1,a-phya-i1,2021-22,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +1,1,a-phya-i1,2021-22,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250 +4.872,4.87,a-phya-i1,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1173,586.5 +6.391794871794873,5,a-phya-i1,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,392,301.53846153846155 +6.474202898550725,5,a-phya-i1,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.3, 0.0, 1.0, 0.0, 1.0, 0.0, 2.3,658,286.0869565217391 +6.7323076923076925,5,a-phya-i1,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,309,237.69230769230768 +6.1706666666666665,5,a-phya-i1,2021-22,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +6.789333333333333,5,a-phya-i1,2021-22,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,227,227.0 +1,1,a-phya-i1,2021-22,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408 +6.888,5,a-phya-i1,2021-22,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,417,208.5 +5.888,5,a-phya-i1,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +6.618666666666667,5,a-phya-i1,2021-22,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,259,259.0 +6.9013333333333335,5,a-phya-i1,2021-22,Springfield - Arthur T Talmadge,02810165, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,206,206.0 +5.744,5,a-phya-i1,2021-22,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +6.394666666666667,5,a-phya-i1,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,301,301.0 +6.304,5,a-phya-i1,2021-22,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,318,318.0 +5.792,5,a-phya-i1,2021-22,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,414,414.0 +7.1946666666666665,5,a-phya-i1,2021-22,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,151,151.0 +4.848,4.85,a-phya-i1,2021-22,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,591,591.0 +6.405333333333333,5,a-phya-i1,2021-22,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,299,299.0 +1,1,a-phya-i1,2021-22,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45 +5.44,5,a-phya-i1,2021-22,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,480,480.0 +6.714666666666667,5,a-phya-i1,2021-22,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,241,241.0 +6.464,5,a-phya-i1,2021-22,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,576,288.0 +1,1,a-phya-i1,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +1,1,a-phya-i1,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27 +4.965333333333334,4.97,a-phya-i1,2021-22,Springfield - German Gerena Community School,02810195, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +6.485333333333333,5,a-phya-i1,2021-22,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +6.48,5,a-phya-i1,2021-22,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,285,285.0 +4.581333333333333,4.58,a-phya-i1,2021-22,Springfield - High School Of Commerce,02810510, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1282,641.0 +6.661333333333333,5,a-phya-i1,2021-22,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +6.032,5,a-phya-i1,2021-22,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,369,369.0 +6.890666666666666,5,a-phya-i1,2021-22,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,208,208.0 +1,1,a-phya-i1,2021-22,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,518 +5.76,5,a-phya-i1,2021-22,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +6.021333333333334,5,a-phya-i1,2021-22,Springfield - John J Duggan Middle,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,742,371.0 +6.64,5,a-phya-i1,2021-22,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,255,255.0 +1,1,a-phya-i1,2021-22,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211 +1,1,a-phya-i1,2021-22,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171 +6.592,5,a-phya-i1,2021-22,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,264,264.0 +1,1,a-phya-i1,2021-22,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8 +5.477333333333333,5,a-phya-i1,2021-22,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,473,473.0 +1,1,a-phya-i1,2021-22,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413 +6.8213333333333335,5,a-phya-i1,2021-22,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,221,221.0 +7.312,5,a-phya-i1,2021-22,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,129,129.0 +6.522666666666667,5,a-phya-i1,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.896,5,a-phya-i1,2021-22,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,207,207.0 +6.576,5,a-phya-i1,2021-22,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,267,267.0 +5.8453333333333335,5,a-phya-i1,2021-22,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,404,404.0 +5.28,5,a-phya-i1,2021-22,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,510,510.0 +4.709333333333333,4.71,a-phya-i1,2021-22,Springfield - Rebecca M Johnson,02810055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,617,617.0 +6.544,5,a-phya-i1,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +4.309333333333333,4.31,a-phya-i1,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1384,692.0 +6.501333333333333,5,a-phya-i1,2021-22,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,281,281.0 +7.44,5,a-phya-i1,2021-22,Springfield - Samuel Bowles,02810020, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,210,105.0 +6.8,5,a-phya-i1,2021-22,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +4.298666666666667,4.3,a-phya-i1,2021-22,Springfield - Springfield Central High,02810500, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,2082,694.0 +1,1,a-phya-i1,2021-22,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203 +5.069333333333334,5,a-phya-i1,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1099,549.5 +1,1,a-phya-i1,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18 +1,1,a-phya-i1,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77 +1,1,a-phya-i1,2021-22,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +1,1,a-phya-i1,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25 +1,1,a-phya-i1,2021-22,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65 +1,1,a-phya-i1,2021-22,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38 +7.626666666666667,5,a-phya-i1,2021-22,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,70,70.0 +1,1,a-phya-i1,2021-22,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125 +1,1,a-phya-i1,2021-22,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495 +6.378666666666667,5,a-phya-i1,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,608,304.0 +7.218666666666667,5,a-phya-i1,2021-22,Springfield - Thomas M Balliet,02810015, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,293,146.5 +6.517333333333333,5,a-phya-i1,2021-22,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.688,5,a-phya-i1,2021-22,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,246,246.0 +5.941333333333334,5,a-phya-i1,2021-22,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,386,386.0 +5.898666666666666,5,a-phya-i1,2021-22,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +6.741333333333333,5,a-phya-i1,2021-22,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,236,236.0 +5.299555555555556,5,a-phya-i1,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 3.0,1519,506.3333333333333 +6.350476190476191,5,a-phya-i1,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.8, 0.0, 0.0, 0.6, 0.0, 0.0, 1.4,433,309.2857142857143 +6.661333333333333,5,a-phya-i1,2021-22,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,251,251.0 +5.973333333333334,5,a-phya-i1,2021-22,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,380,380.0 +6.272,5,a-phya-i1,2021-22,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,324,324.0 +6.109333333333334,5,a-phya-i1,2021-22,Stoneham - Stoneham Central Middle School,02840405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,709,354.5 +6.456,5,a-phya-i1,2021-22,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,579,289.5 +7.466666666666667,5,a-phya-i1,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,100,100.0 +1,1,a-phya-i1,2021-22,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276 +1,1,a-phya-i1,2021-22,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340 +6.069333333333334,5,a-phya-i1,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,362,362.0 +3.696,3.7,a-phya-i1,2021-22,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,807,807.0 +6.453333333333333,5,a-phya-i1,2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.650666666666667,5,a-phya-i1,2021-22,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,253,253.0 +5.2026666666666666,5,a-phya-i1,2021-22,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1049,524.5 +3.488,3.49,a-phya-i1,2021-22,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,846,846.0 +5.744,5,a-phya-i1,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,846,423.0 +5.1066666666666665,5,a-phya-i1,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,868,542.5 +6.410666666666667,5,a-phya-i1,2021-22,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,298,298.0 +5.744,5,a-phya-i1,2021-22,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +6.101333333333334,5,a-phya-i1,2021-22,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,356,356.0 +4.949333333333334,4.95,a-phya-i1,2021-22,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,572,572.0 +6.997333333333334,5,a-phya-i1,2021-22,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,188,188.0 +6.517333333333333,5,a-phya-i1,2021-22,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,278,278.0 +6.554666666666667,5,a-phya-i1,2021-22,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +1,1,a-phya-i1,2021-22,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359 +6.929777777777779,5,a-phya-i1,2021-22,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,301,200.66666666666666 +5.802666666666667,5,a-phya-i1,2021-22,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,206,412.0 +4.8853333333333335,4.89,a-phya-i1,2021-22,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,292,584.0 +5.781333333333333,5,a-phya-i1,2021-22,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,208,416.0 +4.833939393939394,4.83,a-phya-i1,2021-22,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.5, 1.1,653,593.6363636363636 +1.9377777777777774,1.94,a-phya-i1,2021-22,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,682,1136.6666666666667 +6.517333333333333,5,a-phya-i1,2021-22,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.608,5,a-phya-i1,2021-22,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,261,261.0 +5.0986666666666665,5,a-phya-i1,2021-22,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,544,544.0 +5.338666666666667,5,a-phya-i1,2021-22,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,499,499.0 +6.938666666666666,5,a-phya-i1,2021-22,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,199,199.0 +6.762666666666667,5,a-phya-i1,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,232,232.0 +1,1,a-phya-i1,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2686 +4.8533333333333335,4.85,a-phya-i1,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,590,590.0 +6.278095238095238,5,a-phya-i1,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.6, 0.0, 2.1,678,322.85714285714283 +1,1,a-phya-i1,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521 +4.416969696969697,4.42,a-phya-i1,2021-22,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,739,671.8181818181818 +5.512727272727274,5,a-phya-i1,2021-22,Taunton - East Taunton Elementary,02930010, 0.8, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 1.1,513,466.3636363636363 +6.006666666666667,5,a-phya-i1,2021-22,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,299,373.75 +5.685333333333333,5,a-phya-i1,2021-22,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,217,434.0 +5.275151515151515,5,a-phya-i1,2021-22,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.8, 0.0, 0.0, 0.0, 1.1,562,510.9090909090909 +6.273333333333333,5,a-phya-i1,2021-22,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,259,323.75 +5.095111111111112,5,a-phya-i1,2021-22,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 0.8, 0.0, 0.8, 0.0, 0.0, 1.5,817,544.6666666666666 +4.94,4.94,a-phya-i1,2021-22,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,459,573.75 +5.066666666666666,5,a-phya-i1,2021-22,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,440,550.0 +4.8,4.8,a-phya-i1,2021-22,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,660,600.0 +7.898947368421053,5,a-phya-i1,2021-22,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.8, 0.8, 0.8, 0.8, 0.8, 3.8,72,18.947368421052634 +1.6927536231884053,1.69,a-phya-i1,2021-22,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 2.3,2720,1182.608695652174 +6.389333333333333,5,a-phya-i1,2021-22,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,302,302.0 +5.306666666666667,5,a-phya-i1,2021-22,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,505,505.0 +5.274666666666667,5,a-phya-i1,2021-22,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +4.8533333333333335,4.85,a-phya-i1,2021-22,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,590,590.0 +6.8693333333333335,5,a-phya-i1,2021-22,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,212,212.0 +6.624,5,a-phya-i1,2021-22,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,258,258.0 +5.8613333333333335,5,a-phya-i1,2021-22,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,802,401.0 +6.474666666666667,5,a-phya-i1,2021-22,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,286,286.0 +6.629333333333333,5,a-phya-i1,2021-22,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,257,257.0 +6.053333333333334,5,a-phya-i1,2021-22,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,365,365.0 +2.992,2.99,a-phya-i1,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,939,939.0 +5.8933333333333335,5,a-phya-i1,2021-22,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,395,395.0 +5.8133333333333335,5,a-phya-i1,2021-22,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,410,410.0 +5.717333333333333,5,a-phya-i1,2021-22,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +4.549333333333333,4.55,a-phya-i1,2021-22,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,647,647.0 +6.2026666666666666,5,a-phya-i1,2021-22,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +7.408,5,a-phya-i1,2021-22,Truro - Truro Central,03000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,111,111.0 +5.850666666666666,5,a-phya-i1,2021-22,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,806,403.0 +5.733333333333333,5,a-phya-i1,2021-22,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,425,425.0 +6.952,5,a-phya-i1,2021-22,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,393,196.5 +6.309333333333333,5,a-phya-i1,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,317,317.0 +4.517333333333333,4.52,a-phya-i1,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,653,653.0 +7.696,5,a-phya-i1,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,57,57.0 +6.101333333333334,5,a-phya-i1,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +4.032,4.03,a-phya-i1,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,744,744.0 +1,1,a-phya-i1,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32 +5.189333333333333,5,a-phya-i1,2021-22,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,527,527.0 +5.050666666666666,5,a-phya-i1,2021-22,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 +5.258666666666667,5,a-phya-i1,2021-22,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,514,514.0 +1,1,a-phya-i1,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380 +4.1066666666666665,4.11,a-phya-i1,2021-22,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,365,730.0 +4.917333333333334,4.92,a-phya-i1,2021-22,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,289,578.0 +3.1893333333333334,3.19,a-phya-i1,2021-22,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,451,902.0 +2.7946666666666666,2.79,a-phya-i1,2021-22,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,488,976.0 +1,1,a-phya-i1,2021-22,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127 +4.469333333333333,4.47,a-phya-i1,2021-22,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,331,662.0 +4.512,4.51,a-phya-i1,2021-22,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,327,654.0 +2.6666666666666665,2.67,a-phya-i1,2021-22,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,500,1000.0 +0.08533333333333333,1,a-phya-i1,2021-22,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,742,1484.0 +4.330666666666667,4.33,a-phya-i1,2021-22,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,344,688.0 +3.232,3.23,a-phya-i1,2021-22,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,447,894.0 +4.245333333333333,4.25,a-phya-i1,2021-22,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,352,704.0 +-2.474666666666667,1,a-phya-i1,2021-22,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1964,1964.0 +5.616,5,a-phya-i1,2021-22,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,447,447.0 +7.456,5,a-phya-i1,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,102,102.0 +5.1706666666666665,5,a-phya-i1,2021-22,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1061,530.5 +6.810666666666667,5,a-phya-i1,2021-22,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,223,223.0 +5.744,5,a-phya-i1,2021-22,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,846,423.0 +6.848,5,a-phya-i1,2021-22,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +6.872,5,a-phya-i1,2021-22,Wakefield - Woodville School,03050015, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,423,211.5 +7.370666666666667,5,a-phya-i1,2021-22,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,118,118.0 +5.994666666666666,5,a-phya-i1,2021-22,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +5.978666666666666,5,a-phya-i1,2021-22,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +1,1,a-phya-i1,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88 +6.485333333333333,5,a-phya-i1,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,426,284.0 +5.664,5,a-phya-i1,2021-22,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +5.626666666666667,5,a-phya-i1,2021-22,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +5.488,5,a-phya-i1,2021-22,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +5.216,5,a-phya-i1,2021-22,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1044,522.0 +5.498666666666667,5,a-phya-i1,2021-22,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +5.776,5,a-phya-i1,2021-22,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,417,417.0 +5.968,5,a-phya-i1,2021-22,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +5.050666666666666,5,a-phya-i1,2021-22,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,553,553.0 +6.354666666666667,5,a-phya-i1,2021-22,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,617,308.5 +6.690666666666667,5,a-phya-i1,2021-22,Waltham - Northeast Elementary School,03080040, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,491,245.5 +6.218666666666667,5,a-phya-i1,2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 +6.88,5,a-phya-i1,2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,210,210.0 +5.809333333333333,5,a-phya-i1,2021-22,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 4.0,1643,410.75 +5.968,5,a-phya-i1,2021-22,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +6.010666666666666,5,a-phya-i1,2021-22,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +5.354666666666667,5,a-phya-i1,2021-22,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,496,496.0 +6.64,5,a-phya-i1,2021-22,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +4.768,4.77,a-phya-i1,2021-22,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,606,606.0 +6.298666666666667,5,a-phya-i1,2021-22,Wareham - Minot Forest,03100017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,319,319.0 +1,1,a-phya-i1,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38 +5.536,5,a-phya-i1,2021-22,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,462,462.0 +4.704,4.7,a-phya-i1,2021-22,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,618,618.0 +6.357333333333333,5,a-phya-i1,2021-22,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +6.812444444444445,5,a-phya-i1,2021-22,Watertown - Hosmer,03140020, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,668,222.66666666666666 +6.085333333333334,5,a-phya-i1,2021-22,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 +6.12,5,a-phya-i1,2021-22,Watertown - Watertown High,03140505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,705,352.5 +1,1,a-phya-i1,2021-22,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531 +5.248,5,a-phya-i1,2021-22,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,516,516.0 +5.930666666666666,5,a-phya-i1,2021-22,Wayland - Happy Hollow School,03150015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +6.005333333333334,5,a-phya-i1,2021-22,Wayland - Loker School,03150020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +1,1,a-phya-i1,2021-22,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831 +4.789333333333333,4.79,a-phya-i1,2021-22,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,602,602.0 +5.3133333333333335,5,a-phya-i1,2021-22,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,403,503.75 +4.234666666666667,4.23,a-phya-i1,2021-22,Webster - Park Avenue Elementary,03160015, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,706,706.0 +4.08,4.08,a-phya-i1,2021-22,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,588,735.0 +7.12,5,a-phya-i1,2021-22,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,165,165.0 +6.8373333333333335,5,a-phya-i1,2021-22,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,218,218.0 +6.864,5,a-phya-i1,2021-22,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,213,213.0 +6.586666666666667,5,a-phya-i1,2021-22,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,265,265.0 +6.490666666666667,5,a-phya-i1,2021-22,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,283,283.0 +7.498666666666667,5,a-phya-i1,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,94,94.0 +6.213333333333333,5,a-phya-i1,2021-22,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +6.384,5,a-phya-i1,2021-22,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +5.312,5,a-phya-i1,2021-22,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,1008,504.0 +4.875555555555556,4.88,a-phya-i1,2021-22,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.4, 1.0, 0.0, 2.4,1406,585.8333333333334 +7.402666666666667,5,a-phya-i1,2021-22,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,112,112.0 +5.8293333333333335,5,a-phya-i1,2021-22,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,407,407.0 +5.482666666666667,5,a-phya-i1,2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,472,472.0 +6.426666666666667,5,a-phya-i1,2021-22,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,295,295.0 +6.304,5,a-phya-i1,2021-22,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 +7.04,5,a-phya-i1,2021-22,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,144,180.0 +3.8533333333333335,3.85,a-phya-i1,2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,622,777.5 +7.208888888888888,5,a-phya-i1,2021-22,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.6,89,148.33333333333334 +6.248888888888888,5,a-phya-i1,2021-22,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,197,328.33333333333337 +6.060606060606061,5,a-phya-i1,2021-22,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 0.0, 1.1,400,363.6363636363636 +6.142222222222221,5,a-phya-i1,2021-22,West Springfield - Memorial,03320025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,209,348.33333333333337 +6.568888888888888,5,a-phya-i1,2021-22,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,161,268.33333333333337 +3.884444444444444,3.88,a-phya-i1,2021-22,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.6,463,771.6666666666667 +5.6,5,a-phya-i1,2021-22,West Springfield - Tatham,03320040, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.6,270,450.0 +2.254545454545455,2.25,a-phya-i1,2021-22,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,1185,1077.2727272727273 +0.20444444444444404,1,a-phya-i1,2021-22,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,877,1461.6666666666667 +6.1546666666666665,5,a-phya-i1,2021-22,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,346,346.0 +5.418666666666667,5,a-phya-i1,2021-22,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,484,484.0 +7.347555555555555,5,a-phya-i1,2021-22,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,367,122.33333333333333 +5.629333333333333,5,a-phya-i1,2021-22,Westborough - Mill Pond School,03210045, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,889,444.5 +4.842666666666666,4.84,a-phya-i1,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,592,592.0 +1.7173333333333334,1.72,a-phya-i1,2021-22,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1178,1178.0 +7.170909090909091,5,a-phya-i1,2021-22,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,171,155.45454545454544 +7.616969696969697,5,a-phya-i1,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,79,71.81818181818181 +7.1466666666666665,5,a-phya-i1,2021-22,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,176,160.0 +6.42909090909091,5,a-phya-i1,2021-22,Westfield - Highland,03250025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,324,294.5454545454545 +6.4,5,a-phya-i1,2021-22,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,330,300.0 +6.4727272727272736,5,a-phya-i1,2021-22,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,315,286.3636363636363 +6.584242424242424,5,a-phya-i1,2021-22,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,292,265.45454545454544 +5.2063492063492065,5,a-phya-i1,2021-22,Westfield - Westfield High,03250505, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 2.1,1100,523.8095238095237 +6.300952380952381,5,a-phya-i1,2021-22,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 1.1, 0.0, 1.0, 0.0, 0.0, 2.1,669,318.57142857142856 +4.712727272727273,4.71,a-phya-i1,2021-22,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,678,616.3636363636363 +5.376969696969697,5,a-phya-i1,2021-22,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,541,491.81818181818176 +7.393777777777778,5,a-phya-i1,2021-22,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,341,113.66666666666667 +6.656,5,a-phya-i1,2021-22,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,504,252.0 +6.277333333333333,5,a-phya-i1,2021-22,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,323,323.0 +7.210666666666667,5,a-phya-i1,2021-22,Westford - Day Elementary,03260007, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,296,148.0 +6.218666666666667,5,a-phya-i1,2021-22,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 +6.058666666666666,5,a-phya-i1,2021-22,Westford - Nabnasset,03260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,364,364.0 +6.976666666666667,5,a-phya-i1,2021-22,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 0.0, 1.6,307,191.875 +1,1,a-phya-i1,2021-22,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632 +2.428444444444444,2.43,a-phya-i1,2021-22,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1567,1044.6666666666667 +7.725333333333333,5,a-phya-i1,2021-22,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,103,51.5 +5.926666666666667,5,a-phya-i1,2021-22,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,311,388.75 +7.298666666666667,5,a-phya-i1,2021-22,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.6, 1.4, 0.0, 0.0, 2.0,263,131.5 +3.7466666666666666,3.75,a-phya-i1,2021-22,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,638,797.5 +4.986666666666666,4.99,a-phya-i1,2021-22,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,452,565.0 +6.485333333333333,5,a-phya-i1,2021-22,Weston - Woodland,03300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +7.136,5,a-phya-i1,2021-22,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,162,162.0 +6.435555555555556,5,a-phya-i1,2021-22,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,440,293.3333333333333 +5.056,5,a-phya-i1,2021-22,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,828,552.0 +7.029333333333334,5,a-phya-i1,2021-22,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,182,182.0 +6.368,5,a-phya-i1,2021-22,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +4.469333333333333,4.47,a-phya-i1,2021-22,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,662,662.0 +6.549333333333333,5,a-phya-i1,2021-22,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +1,1,a-phya-i1,2021-22,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189 +5.792463768115941,5,a-phya-i1,2021-22,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 1.0, 0.3, 1.0, 0.0, 2.3,952,413.9130434782609 +7.672380952380951,5,a-phya-i1,2021-22,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,43,61.42857142857143 +6.464,5,a-phya-i1,2021-22,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +5.9093333333333335,5,a-phya-i1,2021-22,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,784,392.0 +4.586666666666667,4.59,a-phya-i1,2021-22,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,320,640.0 +5.013333333333334,5,a-phya-i1,2021-22,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,280,560.0 +6.176,5,a-phya-i1,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,171,342.0 +5.333333333333333,5,a-phya-i1,2021-22,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,250,500.0 +5.344,5,a-phya-i1,2021-22,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,249,498.0 +5.856,5,a-phya-i1,2021-22,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,201,402.0 +4.437333333333333,4.44,a-phya-i1,2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,334,668.0 +4.416,4.42,a-phya-i1,2021-22,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,336,672.0 +3.9751111111111115,3.98,a-phya-i1,2021-22,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 1.5, 1.5, 0.0, 0.0, 3.0,2264,754.6666666666666 +4.042666666666666,4.04,a-phya-i1,2021-22,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,371,742.0 +7.354666666666667,5,a-phya-i1,2021-22,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,121,121.0 +5.784242424242424,5,a-phya-i1,2021-22,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,457,415.45454545454544 +5.580606060606061,5,a-phya-i1,2021-22,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,499,453.6363636363636 +5.9781818181818185,5,a-phya-i1,2021-22,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,417,379.09090909090907 +5.614545454545454,5,a-phya-i1,2021-22,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,492,447.27272727272725 +7.191111111111111,5,a-phya-i1,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,91,151.66666666666669 +5.584444444444444,5,a-phya-i1,2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.4, 0.0, 1.0, 0.0, 2.4,1087,452.9166666666667 +5.512727272727274,5,a-phya-i1,2021-22,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,513,466.3636363636363 +4.581333333333333,4.58,a-phya-i1,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1282,641.0 +7.264,5,a-phya-i1,2021-22,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.0, 0.4, 0.0, 1.0,138,138.0 +7.317333333333333,5,a-phya-i1,2021-22,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,128,128.0 +6.666666666666667,5,a-phya-i1,2021-22,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 +6.250666666666667,5,a-phya-i1,2021-22,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +6.864,5,a-phya-i1,2021-22,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,213,213.0 +7.157333333333334,5,a-phya-i1,2021-22,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,158,158.0 +6.1466666666666665,5,a-phya-i1,2021-22,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 1.4, 0.6, 0.0, 2.0,695,347.5 +6.1786666666666665,5,a-phya-i1,2021-22,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,683,341.5 +6.1546666666666665,5,a-phya-i1,2021-22,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,346,346.0 +6.448,5,a-phya-i1,2021-22,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,291,291.0 +1,1,a-phya-i1,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26 +6.586666666666667,5,a-phya-i1,2021-22,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,265,265.0 +1,1,a-phya-i1,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255 +6.416,5,a-phya-i1,2021-22,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,297,297.0 +1,1,a-phya-i1,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72 +6.16,5,a-phya-i1,2021-22,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,345,345.0 +6.149333333333334,5,a-phya-i1,2021-22,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,347,347.0 +5.301333333333333,5,a-phya-i1,2021-22,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,506,506.0 +5.176,5,a-phya-i1,2021-22,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1059,529.5 +6.16,5,a-phya-i1,2021-22,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,345,345.0 +5.808,5,a-phya-i1,2021-22,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,411,411.0 +4.213333333333333,4.21,a-phya-i1,2021-22,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 0.0, 1.9,1349,710.0 +5.786666666666667,5,a-phya-i1,2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 +5.434666666666667,5,a-phya-i1,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,481,481.0 +1,1,a-phya-i1,2021-22,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564 +5.744,5,a-phya-i1,2021-22,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +5.685333333333333,5,a-phya-i1,2021-22,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,434,434.0 +5.456,5,a-phya-i1,2021-22,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,477,477.0 +6.394666666666667,5,a-phya-i1,2021-22,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,301,301.0 +5.994666666666666,5,a-phya-i1,2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +5.370666666666667,5,a-phya-i1,2021-22,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,493,493.0 +6.906666666666666,5,a-phya-i1,2021-22,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,205,205.0 +6.448,5,a-phya-i1,2021-22,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,291,291.0 +6.789333333333333,5,a-phya-i1,2021-22,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,227,227.0 +6.581333333333333,5,a-phya-i1,2021-22,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,266,266.0 +4.733333333333333,4.73,a-phya-i1,2021-22,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1225,612.5 +5.093333333333334,5,a-phya-i1,2021-22,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,545,545.0 +4.341333333333333,4.34,a-phya-i1,2021-22,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,686,686.0 +1.728,1.73,a-phya-i1,2021-22,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1176,1176.0 +6.645333333333333,5,a-phya-i1,2021-22,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,254,254.0 +6.426666666666667,5,a-phya-i1,2021-22,Worcester - Canterbury,03480045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,295,295.0 +5.744,5,a-phya-i1,2021-22,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +5.770666666666667,5,a-phya-i1,2021-22,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +5.594666666666667,5,a-phya-i1,2021-22,Worcester - City View,03480053, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +5.189333333333333,5,a-phya-i1,2021-22,Worcester - Claremont Academy,03480350, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,527,527.0 +6.629333333333333,5,a-phya-i1,2021-22,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,257,257.0 +5.989333333333334,5,a-phya-i1,2021-22,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,377,377.0 +4.450666666666667,4.45,a-phya-i1,2021-22,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1331,665.5 +5.8773333333333335,5,a-phya-i1,2021-22,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +6.192,5,a-phya-i1,2021-22,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,339,339.0 +6.343111111111111,5,a-phya-i1,2021-22,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0,932,310.6666666666667 +6.912,5,a-phya-i1,2021-22,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,204,204.0 +5.253333333333333,5,a-phya-i1,2021-22,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,515,515.0 +5.984,5,a-phya-i1,2021-22,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.8133333333333335,5,a-phya-i1,2021-22,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,410,410.0 +7.637333333333333,5,a-phya-i1,2021-22,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,204,68.0 +6.730666666666667,5,a-phya-i1,2021-22,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,238,238.0 +6.0906666666666665,5,a-phya-i1,2021-22,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +7.173333333333333,5,a-phya-i1,2021-22,Worcester - La Familia Dual Language School,03480025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,155,155.0 +1,1,a-phya-i1,2021-22,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +6.746666666666667,5,a-phya-i1,2021-22,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,235,235.0 +1,1,a-phya-i1,2021-22,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300 +6.954666666666666,5,a-phya-i1,2021-22,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,196,196.0 +4.970666666666666,4.97,a-phya-i1,2021-22,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,568,568.0 +7.461437908496732,5,a-phya-i1,2021-22,Worcester - Norrback Avenue,03480202, 0.1, 2.0, 1.0, 0.0, 1.0, 1.0, 0.0, 5.1,515,100.98039215686275 +6.211282051282051,5,a-phya-i1,2021-22,Worcester - North High,03480515, 1.9, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.9,1308,335.3846153846154 +7.001904761904762,5,a-phya-i1,2021-22,Worcester - Quinsigamond,03480210, 0.0, 2.0, 0.5, 0.0, 1.0, 0.0, 0.0, 3.5,655,187.14285714285714 +5.248,5,a-phya-i1,2021-22,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,516,516.0 +7.268571428571429,5,a-phya-i1,2021-22,Worcester - Roosevelt,03480220, 0.0, 1.5, 1.0, 0.0, 1.0, 0.0, 0.0, 3.5,480,137.14285714285714 +6.3744000000000005,5,a-phya-i1,2021-22,Worcester - South High Community,03480520, 0.0, 3.0, 0.0, 1.0, 1.0, 0.0, 0.0, 5.0,1524,304.8 +6.144,5,a-phya-i1,2021-22,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.5, 0.0, 1.0, 1.0, 0.0, 2.5,870,348.0 +5.904,5,a-phya-i1,2021-22,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 +6.096,5,a-phya-i1,2021-22,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,357,357.0 +5.957333333333334,5,a-phya-i1,2021-22,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,383,383.0 +6.757333333333333,5,a-phya-i1,2021-22,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,233,233.0 +5.498666666666667,5,a-phya-i1,2021-22,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +7.370666666666667,5,a-phya-i1,2021-22,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,118,118.0 +7.093333333333334,5,a-phya-i1,2021-22,Worcester - West Tatnuck,03480260, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,340,170.0 +6.72,5,a-phya-i1,2021-22,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,480,240.0 +6.72,5,a-phya-i1,2021-22,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,360,240.0 +5.917333333333334,5,a-phya-i1,2021-22,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,781,390.5 +4.064,4.06,a-phya-i1,2021-22,Worcester - Worcester Technical High,03480605, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1476,738.0 +7.642666666666667,5,a-phya-i1,2021-22,Worthington - R. H. Conwell,03490010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,67,67.0 +5.973333333333334,5,a-phya-i1,2021-22,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +6.557333333333333,5,a-phya-i1,2021-22,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,541,270.5 +5.466666666666667,5,a-phya-i1,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 3.0,1425,475.0 +1,1,a-phya-i1,2020-21,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51 +4.698666666666667,4.7,a-phya-i1,2020-21,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,619,619.0 +4.592,4.59,a-phya-i1,2020-21,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,639,639.0 +5.322666666666667,5,a-phya-i1,2020-21,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 +6.368,5,a-phya-i1,2020-21,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +-1.6,1,a-phya-i1,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,540,1800.0 +3.3306666666666667,3.33,a-phya-i1,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1751,875.5 +5.402666666666667,5,a-phya-i1,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,487,487.0 +5.984,5,a-phya-i1,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,378,378.0 +7.513333333333334,5,a-phya-i1,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,73,91.25 +5.898666666666666,5,a-phya-i1,2020-21,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +5.424,5,a-phya-i1,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,483,483.0 +5.690666666666667,5,a-phya-i1,2020-21,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,433,433.0 +5.989333333333334,5,a-phya-i1,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,377,377.0 +5.23,5,a-phya-i1,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,831,519.375 +5.392,5,a-phya-i1,2020-21,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,489,489.0 +5.754666666666667,5,a-phya-i1,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +4.78,4.78,a-phya-i1,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,966,603.75 +7.434666666666667,5,a-phya-i1,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,106,106.0 +5.2,5,a-phya-i1,2020-21,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1050,525.0 +4.896,4.9,a-phya-i1,2020-21,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,582,582.0 +6.133333333333334,5,a-phya-i1,2020-21,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,350,350.0 +6.682666666666667,5,a-phya-i1,2020-21,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +6.565333333333333,5,a-phya-i1,2020-21,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,269,269.0 +5.189333333333333,5,a-phya-i1,2020-21,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,527,527.0 +5.989333333333334,5,a-phya-i1,2020-21,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,377,377.0 +6.299733333333333,5,a-phya-i1,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.5, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.5,797,318.8 +6.266666666666667,5,a-phya-i1,2020-21,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,325,325.0 +1,1,a-phya-i1,2020-21,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521 +1,1,a-phya-i1,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42 +4.666666666666667,4.67,a-phya-i1,2020-21,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,625,625.0 +6.192,5,a-phya-i1,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 +6.1066666666666665,5,a-phya-i1,2020-21,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +6.368,5,a-phya-i1,2020-21,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +1,1,a-phya-i1,2020-21,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368 +5.4222222222222225,5,a-phya-i1,2020-21,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,870,483.3333333333333 +5.7973333333333334,5,a-phya-i1,2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 +4.878222222222222,4.88,a-phya-i1,2020-21,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,1756,585.3333333333334 +1,1,a-phya-i1,2020-21,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544 +5.210666666666667,5,a-phya-i1,2020-21,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,523,523.0 +5.525333333333333,5,a-phya-i1,2020-21,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,464,464.0 +6.224,5,a-phya-i1,2020-21,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,333,333.0 +5.242666666666667,5,a-phya-i1,2020-21,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,517,517.0 +1,1,a-phya-i1,2020-21,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54 +5.536,5,a-phya-i1,2020-21,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 1.0,462,462.0 +5.088,5,a-phya-i1,2020-21,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,546,546.0 +1,1,a-phya-i1,2020-21,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375 +6.477333333333333,5,a-phya-i1,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,571,285.5 +5.10974358974359,5,a-phya-i1,2020-21,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,1409,541.9230769230769 +6.228571428571429,5,a-phya-i1,2020-21,Arlington - Brackett,00100010, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,465,332.14285714285717 +6.866666666666666,5,a-phya-i1,2020-21,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,425,212.5 +5.424,5,a-phya-i1,2020-21,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,483,483.0 +5.84,5,a-phya-i1,2020-21,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,405,405.0 +5.968,5,a-phya-i1,2020-21,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,381,381.0 +5.621333333333333,5,a-phya-i1,2020-21,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,446,446.0 +7.866666666666666,5,a-phya-i1,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.6, 1.0, 0.0, 1.0, 0.0, 2.6,65,25.0 +5.621333333333333,5,a-phya-i1,2020-21,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,892,446.0 +6.373333333333333,5,a-phya-i1,2020-21,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,305,305.0 +5.445333333333333,5,a-phya-i1,2020-21,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,479,479.0 +6.770666666666667,5,a-phya-i1,2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,461,230.5 +1,1,a-phya-i1,2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157 +4.549333333333333,4.55,a-phya-i1,2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,647,647.0 +5.018666666666666,5,a-phya-i1,2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,559,559.0 +6.026666666666666,5,a-phya-i1,2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +5.316666666666666,5,a-phya-i1,2020-21,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,805,503.125 +6.011851851851851,5,a-phya-i1,2020-21,Ashland - Ashland Middle,00140405, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,671,372.77777777777777 +5.76,5,a-phya-i1,2020-21,Ashland - David Mindess,00140015, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,630,420.0 +6.472,5,a-phya-i1,2020-21,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,573,286.5 +7.733333333333333,5,a-phya-i1,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,50,50.0 +4.936,4.94,a-phya-i1,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1149,574.5 +6.597333333333333,5,a-phya-i1,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,526,263.0 +6.1546666666666665,5,a-phya-i1,2020-21,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,346,346.0 +5.776,5,a-phya-i1,2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +7.274666666666667,5,a-phya-i1,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,136,136.0 +4.544,4.54,a-phya-i1,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1296,648.0 +6.272,5,a-phya-i1,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,324,324.0 +1,1,a-phya-i1,2020-21,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48 +4.460246913580247,4.46,a-phya-i1,2020-21,Attleboro - Attleboro High,00160505, 0.0, 1.0, 0.0, 0.0, 0.6, 0.1, 1.0, 2.7,1792,663.7037037037037 +4.693333333333333,4.69,a-phya-i1,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,620,620.0 +1,1,a-phya-i1,2020-21,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104 +5.8293333333333335,5,a-phya-i1,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,407,407.0 +5.658666666666667,5,a-phya-i1,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,439,439.0 +6.784,5,a-phya-i1,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,456,228.0 +4.624,4.62,a-phya-i1,2020-21,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,633,633.0 +6.128,5,a-phya-i1,2020-21,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,351,351.0 +4.917333333333334,4.92,a-phya-i1,2020-21,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,578,578.0 +5.1866666666666665,5,a-phya-i1,2020-21,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,633,527.5 +4.502222222222222,4.5,a-phya-i1,2020-21,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.2, 0.4, 0.6, 0.0, 0.0, 1.2,787,655.8333333333334 +6.835555555555555,5,a-phya-i1,2020-21,Auburn - Bryn Mawr,00170010, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,262,218.33333333333334 +6.808888888888888,5,a-phya-i1,2020-21,Auburn - Pakachoag School,00170025, 1.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,268,223.33333333333334 +6.623030303030303,5,a-phya-i1,2020-21,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.2, 0.0, 1.0, 0.0, 0.0, 2.2,568,258.1818181818182 +6.341333333333333,5,a-phya-i1,2020-21,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,311,311.0 +6.016,5,a-phya-i1,2020-21,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +6.096,5,a-phya-i1,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,357,357.0 +5.8133333333333335,5,a-phya-i1,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,410,410.0 +6.234666666666667,5,a-phya-i1,2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,331,331.0 +5.306666666666667,5,a-phya-i1,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,505,505.0 +6.442666666666667,5,a-phya-i1,2020-21,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,292,292.0 +4.855111111111111,4.86,a-phya-i1,2020-21,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,1769,589.6666666666666 +6.109333333333334,5,a-phya-i1,2020-21,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,709,354.5 +6.12,5,a-phya-i1,2020-21,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,705,352.5 +6.736,5,a-phya-i1,2020-21,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,237,237.0 +7.338666666666667,5,a-phya-i1,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,124,124.0 +6.16,5,a-phya-i1,2020-21,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4, 0.0, 0.8,276,345.0 +6.8213333333333335,5,a-phya-i1,2020-21,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,221,221.0 +5.973333333333334,5,a-phya-i1,2020-21,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,380,380.0 +5.498666666666667,5,a-phya-i1,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,469,469.0 +3.578666666666667,3.58,a-phya-i1,2020-21,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,829,829.0 +4.741333333333333,4.74,a-phya-i1,2020-21,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,611,611.0 +4.949333333333334,4.95,a-phya-i1,2020-21,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,572,572.0 +1,1,a-phya-i1,2020-21,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,603 +5.356190476190476,5,a-phya-i1,2020-21,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,694,495.7142857142857 +6.148571428571429,5,a-phya-i1,2020-21,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,486,347.14285714285717 +7.329523809523809,5,a-phya-i1,2020-21,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.2, 0.0, 0.2, 0.0, 1.4,176,125.71428571428572 +6.651428571428571,5,a-phya-i1,2020-21,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,354,252.85714285714286 +6.327619047619047,5,a-phya-i1,2020-21,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.2, 0.0, 1.2, 0.0, 1.4,439,313.5714285714286 +1,1,a-phya-i1,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57 +4.128,4.13,a-phya-i1,2020-21,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,726,726.0 +4.549333333333333,4.55,a-phya-i1,2020-21,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,647,647.0 +6.48,5,a-phya-i1,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +1,1,a-phya-i1,2020-21,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21 +6.677333333333333,5,a-phya-i1,2020-21,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,248,248.0 +3.6366666666666667,3.64,a-phya-i1,2020-21,Belmont - Belmont High,00260505, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,1309,818.125 +6.224,5,a-phya-i1,2020-21,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +6.0,5,a-phya-i1,2020-21,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,375,375.0 +5.859047619047618,5,a-phya-i1,2020-21,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,562,401.42857142857144 +5.701333333333333,5,a-phya-i1,2020-21,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,431,431.0 +3.3,3.3,a-phya-i1,2020-21,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 1.6,1410,881.25 +1,1,a-phya-i1,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344 +6.408205128205128,5,a-phya-i1,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 0.0, 2.6,776,298.46153846153845 +2.933333333333333,2.93,a-phya-i1,2020-21,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,475,950.0 +3.8506666666666667,3.85,a-phya-i1,2020-21,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,389,778.0 +6.016,5,a-phya-i1,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +5.322666666666667,5,a-phya-i1,2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 +6.304,5,a-phya-i1,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,318,318.0 +6.165333333333334,5,a-phya-i1,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,344,344.0 +6.986666666666666,5,a-phya-i1,2020-21,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,190,190.0 +6.4,5,a-phya-i1,2020-21,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,300,300.0 +5.034666666666666,5,a-phya-i1,2020-21,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,556,556.0 +5.850666666666666,5,a-phya-i1,2020-21,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +5.787526881720431,5,a-phya-i1,2020-21,Beverly - Beverly High,00300505, 0.0, 0.0, 0.5, 0.0, 2.0, 0.6, 0.0, 3.1,1286,414.83870967741933 +4.173333333333333,4.17,a-phya-i1,2020-21,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1435,717.5 +6.6297435897435895,5,a-phya-i1,2020-21,Beverly - Centerville Elementary,00300010, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3,334,256.9230769230769 +6.922666666666666,5,a-phya-i1,2020-21,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,404,202.0 +6.314666666666667,5,a-phya-i1,2020-21,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,316,316.0 +7.562666666666667,5,a-phya-i1,2020-21,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,82,82.0 +6.894814814814815,5,a-phya-i1,2020-21,Beverly - North Beverly Elementary,00300040, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,373,207.22222222222223 +5.1466666666666665,5,a-phya-i1,2020-21,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,1605,535.0 +6.698666666666667,5,a-phya-i1,2020-21,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,244,244.0 +1,1,a-phya-i1,2020-21,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350 +1,1,a-phya-i1,2020-21,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +1,1,a-phya-i1,2020-21,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553 +6.408,5,a-phya-i1,2020-21,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,597,298.5 +1,1,a-phya-i1,2020-21,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386 +5.189333333333333,5,a-phya-i1,2020-21,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,527,527.0 +1,1,a-phya-i1,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1231 +5.045333333333334,5,a-phya-i1,2020-21,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,277,554.0 +1,1,a-phya-i1,2020-21,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419 +5.925333333333334,5,a-phya-i1,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,389,389.0 +6.912,5,a-phya-i1,2020-21,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,204,204.0 +1,1,a-phya-i1,2020-21,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276 +3.2533333333333334,3.25,a-phya-i1,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,890,890.0 +6.741333333333333,5,a-phya-i1,2020-21,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,236,236.0 +7.608,5,a-phya-i1,2020-21,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,147,73.5 +6.512,5,a-phya-i1,2020-21,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,279,279.0 +7.310666666666667,5,a-phya-i1,2020-21,Boston - Blackstone,00350390, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 1.0, 4.0,517,129.25 +7.290666666666667,5,a-phya-i1,2020-21,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 +5.429333333333333,5,a-phya-i1,2020-21,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,482,482.0 +1,1,a-phya-i1,2020-21,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160 +5.450666666666667,5,a-phya-i1,2020-21,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,478,478.0 +5.8773333333333335,5,a-phya-i1,2020-21,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +3.585777777777778,3.59,a-phya-i1,2020-21,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,2483,827.6666666666666 +3.2346666666666666,3.23,a-phya-i1,2020-21,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1787,893.5 +6.522666666666667,5,a-phya-i1,2020-21,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,277,277.0 +6.928,5,a-phya-i1,2020-21,Boston - Brighton High,00350505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,402,201.0 +7.928,5,a-phya-i1,2020-21,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,27,13.5 +6.256,5,a-phya-i1,2020-21,Boston - Charles H Taylor,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,327,327.0 +5.376,5,a-phya-i1,2020-21,Boston - Charles Sumner,00350052, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,492,492.0 +5.208888888888889,5,a-phya-i1,2020-21,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,785,523.3333333333334 +6.9013333333333335,5,a-phya-i1,2020-21,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,206,206.0 +1,1,a-phya-i1,2020-21,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51 +7.109333333333334,5,a-phya-i1,2020-21,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,334,167.0 +6.693333333333333,5,a-phya-i1,2020-21,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,735,245.0 +5.565333333333333,5,a-phya-i1,2020-21,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,913,456.5 +6.634666666666667,5,a-phya-i1,2020-21,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,256,256.0 +1,1,a-phya-i1,2020-21,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111 +7.034666666666666,5,a-phya-i1,2020-21,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,362,181.0 +4.917333333333334,4.92,a-phya-i1,2020-21,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,578,578.0 +5.978666666666666,5,a-phya-i1,2020-21,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +4.042666666666666,4.04,a-phya-i1,2020-21,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,742,742.0 +7.072,5,a-phya-i1,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,174,174.0 +7.648,5,a-phya-i1,2020-21,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,198,66.0 +4.128,4.13,a-phya-i1,2020-21,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,726,726.0 +1,1,a-phya-i1,2020-21,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98 +7.002666666666666,5,a-phya-i1,2020-21,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,187,187.0 +6.124444444444444,5,a-phya-i1,2020-21,Boston - East Boston High,00350530, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 3.0,1055,351.6666666666667 +6.613333333333333,5,a-phya-i1,2020-21,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,520,260.0 +1,1,a-phya-i1,2020-21,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285 +5.917333333333334,5,a-phya-i1,2020-21,Boston - Eliot Elementary,00350096, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,781,390.5 +6.565333333333333,5,a-phya-i1,2020-21,Boston - Ellis Mendell,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +5.488,5,a-phya-i1,2020-21,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +5.930666666666666,5,a-phya-i1,2020-21,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +5.8453333333333335,5,a-phya-i1,2020-21,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,404,404.0 +6.010666666666666,5,a-phya-i1,2020-21,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +1,1,a-phya-i1,2020-21,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192 +1,1,a-phya-i1,2020-21,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114 +5.930666666666666,5,a-phya-i1,2020-21,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +7.082666666666666,5,a-phya-i1,2020-21,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,172,172.0 +6.842666666666666,5,a-phya-i1,2020-21,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,217,217.0 +7.285333333333333,5,a-phya-i1,2020-21,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,134,134.0 +6.832,5,a-phya-i1,2020-21,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,219,219.0 +7.642666666666667,5,a-phya-i1,2020-21,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,67,67.0 +6.549333333333333,5,a-phya-i1,2020-21,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +7.0848,5,a-phya-i1,2020-21,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 2.5,429,171.6 +6.688,5,a-phya-i1,2020-21,Boston - James J Chittick,00350154, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,246,246.0 +5.8133333333333335,5,a-phya-i1,2020-21,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +1,1,a-phya-i1,2020-21,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233 +6.576,5,a-phya-i1,2020-21,Boston - James W Hennigan,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,534,267.0 +6.96,5,a-phya-i1,2020-21,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,390,195.0 +7.704,5,a-phya-i1,2020-21,Boston - John D Philbrick,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,111,55.5 +7.383111111111112,5,a-phya-i1,2020-21,Boston - John F Kennedy,00350166, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,347,115.66666666666667 +6.666666666666667,5,a-phya-i1,2020-21,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,250,250.0 +1,1,a-phya-i1,2020-21,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231 +6.101333333333334,5,a-phya-i1,2020-21,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +6.472,5,a-phya-i1,2020-21,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,573,286.5 +7.066666666666666,5,a-phya-i1,2020-21,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,175,175.0 +6.672,5,a-phya-i1,2020-21,Boston - Joseph P Tynan,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +6.021333333333334,5,a-phya-i1,2020-21,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,742,371.0 +6.858666666666666,5,a-phya-i1,2020-21,Boston - Joyce Kilmer,00350190, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,428,214.0 +5.072,5,a-phya-i1,2020-21,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +7.488,5,a-phya-i1,2020-21,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,192,96.0 +1,1,a-phya-i1,2020-21,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381 +4.565333333333333,4.57,a-phya-i1,2020-21,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,644,644.0 +7.669333333333333,5,a-phya-i1,2020-21,Boston - Lyon K-8,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,124,62.0 +7.269333333333333,5,a-phya-i1,2020-21,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,137,137.0 +5.218666666666667,5,a-phya-i1,2020-21,Boston - Madison Park High,00350537, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1043,521.5 +1,1,a-phya-i1,2020-21,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303 +6.32,5,a-phya-i1,2020-21,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,315,315.0 +6.989333333333334,5,a-phya-i1,2020-21,Boston - Mario Umana Academy,00350656, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 4.0,758,189.5 +5.418666666666667,5,a-phya-i1,2020-21,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,484,484.0 +5.824,5,a-phya-i1,2020-21,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +5.824,5,a-phya-i1,2020-21,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +7.1146666666666665,5,a-phya-i1,2020-21,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,166,166.0 +6.216,5,a-phya-i1,2020-21,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,669,334.5 +1,1,a-phya-i1,2020-21,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228 +7.104,5,a-phya-i1,2020-21,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,168,168.0 +7.088,5,a-phya-i1,2020-21,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,171,171.0 +5.434666666666667,5,a-phya-i1,2020-21,Boston - New Mission High School,00350542, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +6.538666666666667,5,a-phya-i1,2020-21,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,274,274.0 +-0.6613333333333333,1,a-phya-i1,2020-21,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1624,1624.0 +6.917333333333334,5,a-phya-i1,2020-21,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,203,203.0 +5.8133333333333335,5,a-phya-i1,2020-21,Boston - Orchard Gardens,00350257, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,820,410.0 +6.517333333333333,5,a-phya-i1,2020-21,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,278,278.0 +7.056,5,a-phya-i1,2020-21,Boston - Paul A Dever,00350268, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,354,177.0 +1,1,a-phya-i1,2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162 +6.730666666666667,5,a-phya-i1,2020-21,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,238,238.0 +6.573333333333333,5,a-phya-i1,2020-21,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,535,267.5 +5.770666666666667,5,a-phya-i1,2020-21,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +3.1626666666666665,3.16,a-phya-i1,2020-21,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,907,907.0 +7.344,5,a-phya-i1,2020-21,Boston - Roger Clap,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,123,123.0 +6.677333333333333,5,a-phya-i1,2020-21,Boston - Samuel Adams,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,248,248.0 +6.8213333333333335,5,a-phya-i1,2020-21,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,221,221.0 +5.898666666666666,5,a-phya-i1,2020-21,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,394,394.0 +6.712,5,a-phya-i1,2020-21,Boston - Snowden International School at Copley,00350690, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,483,241.5 +5.597333333333333,5,a-phya-i1,2020-21,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,901,450.5 +5.237333333333333,5,a-phya-i1,2020-21,Boston - The English High,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,518,518.0 +6.192,5,a-phya-i1,2020-21,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +1,1,a-phya-i1,2020-21,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674 +6.538666666666667,5,a-phya-i1,2020-21,Boston - Warren-Prescott,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,548,274.0 +7.018666666666666,5,a-phya-i1,2020-21,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,184,184.0 +6.053333333333334,5,a-phya-i1,2020-21,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,365,365.0 +6.8533333333333335,5,a-phya-i1,2020-21,Boston - William Ellery Channing,00350360, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +5.12,5,a-phya-i1,2020-21,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,540,540.0 +7.644,5,a-phya-i1,2020-21,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 4.0,267,66.75 +5.973333333333334,5,a-phya-i1,2020-21,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +1,1,a-phya-i1,2020-21,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,227 +6.512,5,a-phya-i1,2020-21,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,558,279.0 +7.036,5,a-phya-i1,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 4.0,723,180.75 +1,1,a-phya-i1,2020-21,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, 0.0, 0.0, 0.0,356 +5.285333333333333,5,a-phya-i1,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,509,509.0 +6.210666666666667,5,a-phya-i1,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,671,335.5 +2.970666666666667,2.97,a-phya-i1,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,943,943.0 +5.717333333333333,5,a-phya-i1,2020-21,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,428,428.0 +5.738666666666667,5,a-phya-i1,2020-21,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,424,424.0 +5.546666666666667,5,a-phya-i1,2020-21,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,460,460.0 +6.197333333333333,5,a-phya-i1,2020-21,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +6.453333333333333,5,a-phya-i1,2020-21,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,290,290.0 +5.925333333333334,5,a-phya-i1,2020-21,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,389,389.0 +6.272,5,a-phya-i1,2020-21,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,324,324.0 +4.931555555555556,4.93,a-phya-i1,2020-21,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1726,575.3333333333334 +6.645333333333333,5,a-phya-i1,2020-21,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +3.533333333333333,3.53,a-phya-i1,2020-21,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,1005,837.5 +5.8933333333333335,5,a-phya-i1,2020-21,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,395,395.0 +6.250666666666667,5,a-phya-i1,2020-21,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,328,328.0 +6.053333333333334,5,a-phya-i1,2020-21,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,365,365.0 +6.56,5,a-phya-i1,2020-21,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,270,270.0 +1,1,a-phya-i1,2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144 +6.28,5,a-phya-i1,2020-21,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,645,322.5 +6.8853333333333335,5,a-phya-i1,2020-21,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,209,209.0 +6.874666666666666,5,a-phya-i1,2020-21,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,211,211.0 +1,1,a-phya-i1,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338 +1,1,a-phya-i1,2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551 +5.564444444444444,5,a-phya-i1,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,1370,456.6666666666667 +5.152,5,a-phya-i1,2020-21,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,534,534.0 +6.405333333333333,5,a-phya-i1,2020-21,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +5.357575757575757,5,a-phya-i1,2020-21,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.2, 0.0, 1.0, 0.0, 0.0, 2.2,1090,495.45454545454544 +5.86962962962963,5,a-phya-i1,2020-21,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.8, 0.0, 0.0, 0.0, 0.0, 1.8,719,399.44444444444446 +1,1,a-phya-i1,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12 +4.282666666666667,4.28,a-phya-i1,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,697,697.0 +6.565333333333333,5,a-phya-i1,2020-21,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +5.610666666666667,5,a-phya-i1,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +4.482666666666667,4.48,a-phya-i1,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1319,659.5 +1,1,a-phya-i1,2020-21,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564 +7.594666666666667,5,a-phya-i1,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,152,76.0 +7.634666666666667,5,a-phya-i1,2020-21,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,137,68.5 +-5.486666666666666,1,a-phya-i1,2020-21,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 1.6,4046,2528.75 +5.370666666666667,5,a-phya-i1,2020-21,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,493,493.0 +6.413333333333333,5,a-phya-i1,2020-21,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,595,297.5 +4.1546666666666665,4.15,a-phya-i1,2020-21,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,721,721.0 +1,1,a-phya-i1,2020-21,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637 +2.608,2.61,a-phya-i1,2020-21,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1011,1011.0 +7.408888888888888,5,a-phya-i1,2020-21,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 1.2,133,110.83333333333334 +1,1,a-phya-i1,2020-21,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17 +5.562666666666667,5,a-phya-i1,2020-21,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,457,457.0 +5.290666666666667,5,a-phya-i1,2020-21,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,508,508.0 +1,1,a-phya-i1,2020-21,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64 +5.109333333333334,5,a-phya-i1,2020-21,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,542,542.0 +4.074666666666666,4.07,a-phya-i1,2020-21,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,736,736.0 +-0.4266666666666667,1,a-phya-i1,2020-21,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,790,1580.0 +5.892173913043478,5,a-phya-i1,2020-21,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.8, 0.0, 1.0, 0.5, 0.0, 2.3,909,395.21739130434787 +6.489696969696969,5,a-phya-i1,2020-21,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.3, 0.9, 0.0, 0.0, 1.0, 2.2,623,283.1818181818182 +1,1,a-phya-i1,2020-21,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200 +5.159111111111112,5,a-phya-i1,2020-21,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,799,532.6666666666666 +4.933333333333334,4.93,a-phya-i1,2020-21,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,575,575.0 +4.0,4.0,a-phya-i1,2020-21,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,675,750.0 +4.350222222222222,4.35,a-phya-i1,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,2053,684.3333333333334 +6.581333333333333,5,a-phya-i1,2020-21,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +1,1,a-phya-i1,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26 +7.724444444444445,5,a-phya-i1,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,31,51.66666666666667 +1,1,a-phya-i1,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28 +3.825641025641026,3.83,a-phya-i1,2020-21,Brookline - Brookline High,00460505, 0.0, 1.0, 0.0, 1.2, 0.0, 0.0, 0.4, 2.6,2035,782.6923076923076 +6.349206349206349,5,a-phya-i1,2020-21,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 0.0, 2.1,650,309.5238095238095 +5.953015873015873,5,a-phya-i1,2020-21,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.0, 2.1,806,383.8095238095238 +6.0430769230769235,5,a-phya-i1,2020-21,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.1, 1.2, 0.0, 0.0, 1.3,477,366.9230769230769 +-18.88,1,a-phya-i1,2020-21,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,504,5040.0 +6.501587301587302,5,a-phya-i1,2020-21,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.0, 2.1,590,280.95238095238096 +5.614545454545454,5,a-phya-i1,2020-21,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,492,447.27272727272725 +6.780215053763441,5,a-phya-i1,2020-21,Brookline - Pierce,00460040, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 1.0, 3.1,709,228.70967741935482 +7.822222222222221,5,a-phya-i1,2020-21,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,30,33.333333333333336 +6.6971428571428575,5,a-phya-i1,2020-21,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 2.1,513,244.28571428571428 +6.282666666666667,5,a-phya-i1,2020-21,Burlington - Burlington High,00480505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,966,322.0 +6.424888888888889,5,a-phya-i1,2020-21,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.3, 0.3, 0.0, 0.0, 0.0, 1.5,443,295.3333333333333 +7.213714285714285,5,a-phya-i1,2020-21,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 2.3, 1.3, 0.0, 0.0, 0.0, 3.5,516,147.42857142857142 +5.997333333333334,5,a-phya-i1,2020-21,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,751,375.5 +6.574222222222223,5,a-phya-i1,2020-21,Burlington - Memorial,00480015, 0.0, 0.0, 0.3, 0.3, 0.0, 1.0, 0.0, 1.5,401,267.3333333333333 +6.894222222222221,5,a-phya-i1,2020-21,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.3, 1.3, 0.0, 0.0, 0.0, 1.5,311,207.33333333333334 +1,1,a-phya-i1,2020-21,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420 +1,1,a-phya-i1,2020-21,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1847 +1,1,a-phya-i1,2020-21,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +1,1,a-phya-i1,2020-21,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271 +1,1,a-phya-i1,2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276 +1,1,a-phya-i1,2020-21,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322 +1,1,a-phya-i1,2020-21,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247 +1,1,a-phya-i1,2020-21,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +1,1,a-phya-i1,2020-21,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243 +1,1,a-phya-i1,2020-21,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358 +1,1,a-phya-i1,2020-21,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354 +1,1,a-phya-i1,2020-21,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299 +1,1,a-phya-i1,2020-21,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302 +1,1,a-phya-i1,2020-21,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +1,1,a-phya-i1,2020-21,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261 +1,1,a-phya-i1,2020-21,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269 +1,1,a-phya-i1,2020-21,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291 +5.182222222222222,5,a-phya-i1,2020-21,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,951,528.3333333333334 +5.530666666666667,5,a-phya-i1,2020-21,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,463,463.0 +5.530666666666667,5,a-phya-i1,2020-21,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,463,463.0 +5.36,5,a-phya-i1,2020-21,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,495,495.0 +7.872,5,a-phya-i1,2020-21,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,24,24.0 +5.952,5,a-phya-i1,2020-21,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,768,384.0 +6.666666666666667,5,a-phya-i1,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 +6.036078431372549,5,a-phya-i1,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.7, 1.7,626,368.2352941176471 +4.912,4.91,a-phya-i1,2020-21,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,579,579.0 +6.018666666666666,5,a-phya-i1,2020-21,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,743,371.5 +4.0906666666666665,4.09,a-phya-i1,2020-21,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,733,733.0 +7.461333333333333,5,a-phya-i1,2020-21,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,101,101.0 +5.888,5,a-phya-i1,2020-21,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,396,396.0 +7.134814814814815,5,a-phya-i1,2020-21,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,146,162.22222222222223 +6.0906666666666665,5,a-phya-i1,2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +5.258666666666667,5,a-phya-i1,2020-21,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,514,514.0 +5.568,5,a-phya-i1,2020-21,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,456,456.0 +5.472,5,a-phya-i1,2020-21,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,474,474.0 +1,1,a-phya-i1,2020-21,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492 +4.245333333333333,4.25,a-phya-i1,2020-21,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1408,704.0 +4.117333333333334,4.12,a-phya-i1,2020-21,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,728,728.0 +7.594666666666667,5,a-phya-i1,2020-21,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,76,76.0 +3.8933333333333335,3.89,a-phya-i1,2020-21,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,770,770.0 +5.749333333333333,5,a-phya-i1,2020-21,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,422,422.0 +-1.7,1,a-phya-i1,2020-21,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,1455,1818.75 +5.306666666666667,5,a-phya-i1,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,101,505.0 +4.245333333333333,4.25,a-phya-i1,2020-21,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,704,704.0 +2.4426666666666668,2.44,a-phya-i1,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,521,1042.0 +1,1,a-phya-i1,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521 +2.624,2.62,a-phya-i1,2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,504,1008.0 +2.9546666666666668,2.95,a-phya-i1,2020-21,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,473,946.0 +1,1,a-phya-i1,2020-21,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529 +1.2053333333333334,1.21,a-phya-i1,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,637,1274.0 +1,1,a-phya-i1,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491 +7.326666666666667,5,a-phya-i1,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,101,126.25 +6.453333333333333,5,a-phya-i1,2020-21,Chicopee - Barry,00610003, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,377,290.0 +7.057777777777777,5,a-phya-i1,2020-21,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,212,176.66666666666669 +5.789333333333333,5,a-phya-i1,2020-21,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,829,414.5 +5.717333333333333,5,a-phya-i1,2020-21,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,428,428.0 +6.528,5,a-phya-i1,2020-21,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +7.68,5,a-phya-i1,2020-21,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,60,60.0 +4.9013333333333335,4.9,a-phya-i1,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1162,581.0 +5.943466666666668,5,a-phya-i1,2020-21,Chicopee - Chicopee High,00610505, 0.0, 0.3, 0.0, 0.0, 1.0, 1.2, 0.0, 2.5,964,385.6 +5.882666666666666,5,a-phya-i1,2020-21,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,794,397.0 +6.422857142857143,5,a-phya-i1,2020-21,Chicopee - Fairview Elementary,00610050, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 0.0, 1.4,414,295.7142857142857 +6.462222222222222,5,a-phya-i1,2020-21,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,346,288.33333333333337 +6.565333333333333,5,a-phya-i1,2020-21,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +6.444444444444444,5,a-phya-i1,2020-21,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,350,291.6666666666667 +6.677333333333333,5,a-phya-i1,2020-21,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,248,248.0 +7.462222222222222,5,a-phya-i1,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,121,100.83333333333334 +5.872,5,a-phya-i1,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,399,399.0 +6.405333333333333,5,a-phya-i1,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +1,1,a-phya-i1,2020-21,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,190 +5.986666666666666,5,a-phya-i1,2020-21,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,755,377.5 +4.9013333333333335,4.9,a-phya-i1,2020-21,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,581,581.0 +5.381333333333333,5,a-phya-i1,2020-21,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,491,491.0 +4.288,4.29,a-phya-i1,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,348,696.0 +5.616,5,a-phya-i1,2020-21,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,447,447.0 +4.192,4.19,a-phya-i1,2020-21,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,357,714.0 +6.341333333333333,5,a-phya-i1,2020-21,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,311,311.0 +6.385454545454546,5,a-phya-i1,2020-21,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,333,302.7272727272727 +2.5866666666666664,2.59,a-phya-i1,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1015,1015.0 +6.378666666666667,5,a-phya-i1,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +6.5777777777777775,5,a-phya-i1,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,400,266.6666666666667 +5.872,5,a-phya-i1,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +1,1,a-phya-i1,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400 +5.6,5,a-phya-i1,2020-21,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,450,450.0 +6.184,5,a-phya-i1,2020-21,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,681,340.5 +1,1,a-phya-i1,2020-21,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441 +5.712,5,a-phya-i1,2020-21,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,429,429.0 +4.490666666666667,4.49,a-phya-i1,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1316,658.0 +7.187555555555555,5,a-phya-i1,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,457,152.33333333333334 +7.333333333333333,5,a-phya-i1,2020-21,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,125,125.0 +5.685333333333333,5,a-phya-i1,2020-21,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,868,434.0 +6.165333333333334,5,a-phya-i1,2020-21,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,344,344.0 +6.042666666666666,5,a-phya-i1,2020-21,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +5.8933333333333335,5,a-phya-i1,2020-21,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,790,395.0 +6.357333333333333,5,a-phya-i1,2020-21,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,308,308.0 +6.373333333333333,5,a-phya-i1,2020-21,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,305,305.0 +6.256,5,a-phya-i1,2020-21,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,327,327.0 +1,1,a-phya-i1,2020-21,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120 +2.4266666666666667,2.43,a-phya-i1,2020-21,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1045,1045.0 +6.449777777777777,5,a-phya-i1,2020-21,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,872,290.6666666666667 +6.032,5,a-phya-i1,2020-21,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,369,369.0 +6.277333333333333,5,a-phya-i1,2020-21,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,646,323.0 +1,1,a-phya-i1,2020-21,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367 +5.511111111111111,5,a-phya-i1,2020-21,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,280,466.6666666666667 +4.654545454545454,4.65,a-phya-i1,2020-21,Dedham - Dedham High,00730505, 0.0, 0.0, 0.5, 0.1, 0.0, 0.5, 0.0, 1.1,690,627.2727272727273 +3.6066666666666665,3.61,a-phya-i1,2020-21,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.1, 0.7, 0.0, 0.0, 0.8,659,823.75 +5.564444444444444,5,a-phya-i1,2020-21,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,274,456.6666666666667 +6.855757575757576,5,a-phya-i1,2020-21,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,236,214.54545454545453 +5.804444444444444,5,a-phya-i1,2020-21,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,247,411.6666666666667 +6.488888888888888,5,a-phya-i1,2020-21,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,170,283.33333333333337 +6.341333333333333,5,a-phya-i1,2020-21,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,311,311.0 +3.3013333333333335,3.3,a-phya-i1,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,881,881.0 +6.496,5,a-phya-i1,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,282,282.0 +6.624,5,a-phya-i1,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,258,258.0 +5.701333333333333,5,a-phya-i1,2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,431,431.0 +5.461333333333333,5,a-phya-i1,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +5.808,5,a-phya-i1,2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,411,411.0 +6.022222222222221,5,a-phya-i1,2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,445,370.83333333333337 +6.328888888888888,5,a-phya-i1,2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,376,313.33333333333337 +4.653333333333333,4.65,a-phya-i1,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,753,627.5 +5.844444444444444,5,a-phya-i1,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,485,404.1666666666667 +5.524444444444444,5,a-phya-i1,2020-21,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,557,464.1666666666667 +6.766222222222221,5,a-phya-i1,2020-21,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,347,231.33333333333334 +6.1546666666666665,5,a-phya-i1,2020-21,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,346,346.0 +6.528,5,a-phya-i1,2020-21,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,276,276.0 +7.029333333333334,5,a-phya-i1,2020-21,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,182,182.0 +5.466666666666667,5,a-phya-i1,2020-21,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,475,475.0 +1,1,a-phya-i1,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674 +5.274666666666667,5,a-phya-i1,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,511,511.0 +5.632,5,a-phya-i1,2020-21,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,444,444.0 +5.036666666666667,5,a-phya-i1,2020-21,Dracut - Dracut Senior High,00790505, 0.0, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 1.6,889,555.625 +5.0986666666666665,5,a-phya-i1,2020-21,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,544,544.0 +6.490666666666667,5,a-phya-i1,2020-21,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,283,283.0 +4.912,4.91,a-phya-i1,2020-21,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,579,579.0 +4.933333333333334,4.93,a-phya-i1,2020-21,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,920,575.0 +1,1,a-phya-i1,2020-21,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, 0.0,294 +1,1,a-phya-i1,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302 +4.634666666666667,4.63,a-phya-i1,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,631,631.0 +6.245333333333333,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +5.125333333333334,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,539,539.0 +5.818666666666667,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +6.8053333333333335,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,224,224.0 +5.32,5,a-phya-i1,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1005,502.5 +1,1,a-phya-i1,2020-21,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606 +1,1,a-phya-i1,2020-21,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559 +6.2363218390804604,5,a-phya-i1,2020-21,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.9, 2.9,959,330.6896551724138 +4.448,4.45,a-phya-i1,2020-21,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,666,666.0 +6.701333333333333,5,a-phya-i1,2020-21,East Bridgewater - Central,00830005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,487,243.5 +5.418666666666667,5,a-phya-i1,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,968,484.0 +4.656,4.66,a-phya-i1,2020-21,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,627,627.0 +4.88,4.88,a-phya-i1,2020-21,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,585,585.0 +3.712,3.71,a-phya-i1,2020-21,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,804,804.0 +6.533333333333333,5,a-phya-i1,2020-21,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +5.493333333333333,5,a-phya-i1,2020-21,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,470,470.0 +6.56,5,a-phya-i1,2020-21,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +6.965333333333334,5,a-phya-i1,2020-21,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,194,194.0 +1,1,a-phya-i1,2020-21,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192 +1,1,a-phya-i1,2020-21,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419 +1,1,a-phya-i1,2020-21,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204 +6.997333333333334,5,a-phya-i1,2020-21,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,188,188.0 +1,1,a-phya-i1,2020-21,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442 +7.008,5,a-phya-i1,2020-21,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,186,186.0 +5.425185185185185,5,a-phya-i1,2020-21,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.8,869,482.77777777777777 +7.018666666666666,5,a-phya-i1,2020-21,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,184,184.0 +4.666666666666667,4.67,a-phya-i1,2020-21,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,1125,625.0 +6.490666666666667,5,a-phya-i1,2020-21,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,283,283.0 +2.1866666666666665,2.19,a-phya-i1,2020-21,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.7,763,1090.0 +5.962666666666666,5,a-phya-i1,2020-21,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +6.973333333333334,5,a-phya-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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,385,192.5 +7.246666666666667,5,a-phya-i1,2020-21,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,113,141.25 +3.8293333333333335,3.83,a-phya-i1,2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1564,782.0 +1,1,a-phya-i1,2020-21,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108 +1,1,a-phya-i1,2020-21,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57 +5.252,5,a-phya-i1,2020-21,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,2061,515.25 +3.2426666666666666,3.24,a-phya-i1,2020-21,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,892,892.0 +1,1,a-phya-i1,2020-21,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,991 +4.064,4.06,a-phya-i1,2020-21,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,738,738.0 +3.12,3.12,a-phya-i1,2020-21,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,915,915.0 +4.629333333333333,4.63,a-phya-i1,2020-21,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,632,632.0 +1,1,a-phya-i1,2020-21,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142 +1,1,a-phya-i1,2020-21,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347 +5.821176470588235,5,a-phya-i1,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.4, 3.4,1389,408.5294117647059 +6.245333333333333,5,a-phya-i1,2020-21,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +1,1,a-phya-i1,2020-21,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682 +5.578666666666667,5,a-phya-i1,2020-21,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,454,454.0 +5.584,5,a-phya-i1,2020-21,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,453,453.0 +4.213333333333333,4.21,a-phya-i1,2020-21,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,2130,710.0 +6.1546666666666665,5,a-phya-i1,2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,692,346.0 +-6.204444444444445,1,a-phya-i1,2020-21,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,799,2663.3333333333335 +7.500444444444446,5,a-phya-i1,2020-21,Fall River - James Tansey,00950140, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,281,93.66666666666667 +6.709333333333333,5,a-phya-i1,2020-21,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,484,242.0 +6.394074074074074,5,a-phya-i1,2020-21,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,542,301.1111111111111 +6.207407407407407,5,a-phya-i1,2020-21,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.0, 0.5, 1.0, 0.0, 1.8,605,336.1111111111111 +6.04,5,a-phya-i1,2020-21,Fall River - Matthew J Kuss Middle,00950320, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,735,367.5 +1,1,a-phya-i1,2020-21,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679 +6.279420289855072,5,a-phya-i1,2020-21,Fall River - North End Elementary,00950005, 1.0, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 2.3,742,322.60869565217394 +1,1,a-phya-i1,2020-21,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202 +1,1,a-phya-i1,2020-21,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250 +5.934222222222223,5,a-phya-i1,2020-21,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,581,387.3333333333333 +1,1,a-phya-i1,2020-21,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66 +6.533333333333333,5,a-phya-i1,2020-21,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,550,275.0 +7.217777777777779,5,a-phya-i1,2020-21,Fall River - William S Greene,00950065, 0.0, 0.0, 1.0, 2.0, 1.0, 0.5, 0.0, 4.5,660,146.66666666666666 +7.314666666666667,5,a-phya-i1,2020-21,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,257,128.5 +5.8373333333333335,5,a-phya-i1,2020-21,Falmouth - Falmouth High,00960505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,811,405.5 +5.28,5,a-phya-i1,2020-21,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,510,510.0 +5.36,5,a-phya-i1,2020-21,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,495,495.0 +5.84,5,a-phya-i1,2020-21,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,405,405.0 +6.368,5,a-phya-i1,2020-21,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,306,306.0 +6.693333333333333,5,a-phya-i1,2020-21,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +7.429333333333333,5,a-phya-i1,2020-21,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,107,107.0 +6.95843137254902,5,a-phya-i1,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.4, 1.0, 1.0, 1.0, 0.0, 0.0, 3.4,664,195.29411764705884 +6.490666666666667,5,a-phya-i1,2020-21,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,566,283.0 +5.745777777777778,5,a-phya-i1,2020-21,Fitchburg - Fitchburg High,00970505, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,1268,422.6666666666667 +1,1,a-phya-i1,2020-21,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138 +4.496,4.5,a-phya-i1,2020-21,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,657,657.0 +6.250666666666667,5,a-phya-i1,2020-21,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,656,328.0 +6.469333333333333,5,a-phya-i1,2020-21,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,574,287.0 +6.242962962962964,5,a-phya-i1,2020-21,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.8,593,329.44444444444446 +7.573333333333333,5,a-phya-i1,2020-21,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,80,80.0 +6.361904761904762,5,a-phya-i1,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,215,307.14285714285717 +6.672,5,a-phya-i1,2020-21,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,249,249.0 +5.074285714285715,5,a-phya-i1,2020-21,Foxborough - Foxborough High,00990505, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 0.0, 1.4,768,548.5714285714286 +5.100952380952381,5,a-phya-i1,2020-21,Foxborough - John J Ahern,00990405, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 0.0, 1.4,761,543.5714285714286 +6.389333333333333,5,a-phya-i1,2020-21,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,302,302.0 +6.026666666666666,5,a-phya-i1,2020-21,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,370,370.0 +4.614320987654321,4.61,a-phya-i1,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.7, 1.0, 0.0, 2.7,1714,634.8148148148148 +4.378666666666667,4.38,a-phya-i1,2020-21,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,679,679.0 +5.621333333333333,5,a-phya-i1,2020-21,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +4.938666666666666,4.94,a-phya-i1,2020-21,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,574,574.0 +5.749333333333333,5,a-phya-i1,2020-21,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,422,422.0 +5.456,5,a-phya-i1,2020-21,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 5.0,2385,477.0 +4.976,4.98,a-phya-i1,2020-21,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,567,567.0 +5.1306666666666665,5,a-phya-i1,2020-21,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,538,538.0 +6.96,5,a-phya-i1,2020-21,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,195,195.0 +6.064,5,a-phya-i1,2020-21,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 +6.330666666666667,5,a-phya-i1,2020-21,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,313,313.0 +5.408,5,a-phya-i1,2020-21,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,486,486.0 +5.232,5,a-phya-i1,2020-21,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 +3.9146666666666667,3.91,a-phya-i1,2020-21,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,766,766.0 +5.44,5,a-phya-i1,2020-21,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,480,480.0 +5.872,5,a-phya-i1,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,399,399.0 +4.288,4.29,a-phya-i1,2020-21,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,348,696.0 +6.864,5,a-phya-i1,2020-21,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,213,213.0 +7.610666666666667,5,a-phya-i1,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,73,73.0 +4.917333333333334,4.92,a-phya-i1,2020-21,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,1734,578.0 +6.8373333333333335,5,a-phya-i1,2020-21,Franklin - Helen Keller Elementary,01010012, 1.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.5,327,218.0 +5.786666666666667,5,a-phya-i1,2020-21,Franklin - Horace Mann,01010405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +6.229333333333333,5,a-phya-i1,2020-21,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,332,332.0 +4.501333333333333,4.5,a-phya-i1,2020-21,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,328,656.0 +1,1,a-phya-i1,2020-21,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368 +6.346666666666667,5,a-phya-i1,2020-21,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +6.6417777777777784,5,a-phya-i1,2020-21,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,382,254.66666666666666 +5.04,5,a-phya-i1,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,555,555.0 +3.984,3.98,a-phya-i1,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,753,753.0 +5.584,5,a-phya-i1,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,453,453.0 +5.808,5,a-phya-i1,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,411,411.0 +4.448,4.45,a-phya-i1,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,666,666.0 +5.765333333333333,5,a-phya-i1,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +1,1,a-phya-i1,2020-21,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,649 +6.794666666666667,5,a-phya-i1,2020-21,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,452,226.0 +7.392,5,a-phya-i1,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,114,114.0 +4.101333333333334,4.1,a-phya-i1,2020-21,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,731,731.0 +6.549333333333333,5,a-phya-i1,2020-21,Gardner - Gardner Middle School,01030405, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,544,272.0 +7.013333333333334,5,a-phya-i1,2020-21,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,370,185.0 +1,1,a-phya-i1,2020-21,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102 +5.930666666666666,5,a-phya-i1,2020-21,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,194,388.0 +6.645333333333333,5,a-phya-i1,2020-21,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,127,254.0 +6.24,5,a-phya-i1,2020-21,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,330,330.0 +6.876666666666667,5,a-phya-i1,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.6, 1.6,337,210.625 +5.28,5,a-phya-i1,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,204,510.0 +6.24,5,a-phya-i1,2020-21,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,660,330.0 +1,1,a-phya-i1,2020-21,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17 +7.408,5,a-phya-i1,2020-21,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,111,111.0 +1,1,a-phya-i1,2020-21,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210 +7.36,5,a-phya-i1,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,120,120.0 +6.8533333333333335,5,a-phya-i1,2020-21,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,215,215.0 +7.493333333333333,5,a-phya-i1,2020-21,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,190,95.0 +1,1,a-phya-i1,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503 +6.336,5,a-phya-i1,2020-21,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,312,312.0 +6.981333333333334,5,a-phya-i1,2020-21,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,191,191.0 +6.18,5,a-phya-i1,2020-21,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.4, 0.0, 1.0, 0.6, 0.4, 2.4,819,341.25 +7.648,5,a-phya-i1,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,66,66.0 +6.906666666666666,5,a-phya-i1,2020-21,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,205,205.0 +6.384,5,a-phya-i1,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,606,303.0 +6.864,5,a-phya-i1,2020-21,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,213,213.0 +6.112,5,a-phya-i1,2020-21,Gloucester - West Parish,01070050, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +1,1,a-phya-i1,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4 +4.888888888888888,4.89,a-phya-i1,2020-21,Grafton - Grafton High School,01100505, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,875,583.3333333333334 +7.316,5,a-phya-i1,2020-21,Grafton - Grafton Middle,01100305, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0,513,128.25 +5.76,5,a-phya-i1,2020-21,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,630,420.0 +7.325333333333333,5,a-phya-i1,2020-21,Grafton - North Grafton Elementary,01100025, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,253,126.5 +6.792533333333333,5,a-phya-i1,2020-21,Grafton - North Street Elementary School,01100030, 0.0, 1.0, 0.5, 0.0, 1.0, 0.0, 0.0, 2.5,566,226.4 +6.485333333333333,5,a-phya-i1,2020-21,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,284,284.0 +6.408205128205128,5,a-phya-i1,2020-21,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,388,298.46153846153845 +5.8133333333333335,5,a-phya-i1,2020-21,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.8,328,410.0 +4.128,4.13,a-phya-i1,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1452,726.0 +-0.7146666666666667,1,a-phya-i1,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,1634,1634.0 +3.918222222222222,3.92,a-phya-i1,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,2296,765.3333333333334 +4.7801904761904765,4.78,a-phya-i1,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.5, 0.0, 1.0, 1.0, 0.0, 3.5,2113,603.7142857142857 +6.832,5,a-phya-i1,2020-21,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,219,219.0 +6.890666666666666,5,a-phya-i1,2020-21,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,208,208.0 +5.44,5,a-phya-i1,2020-21,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,480,480.0 +6.08,5,a-phya-i1,2020-21,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +6.8053333333333335,5,a-phya-i1,2020-21,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,224,224.0 +7.64,5,a-phya-i1,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,54,67.5 +2.970666666666667,2.97,a-phya-i1,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,943,943.0 +7.802666666666667,5,a-phya-i1,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,37,37.0 +5.253333333333333,5,a-phya-i1,2020-21,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,515,515.0 +5.738039215686275,5,a-phya-i1,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,721,424.11764705882354 +4.234666666666667,4.23,a-phya-i1,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,706,706.0 +6.490666666666667,5,a-phya-i1,2020-21,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,283,283.0 +6.677333333333333,5,a-phya-i1,2020-21,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 +6.624,5,a-phya-i1,2020-21,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +4.965333333333334,4.97,a-phya-i1,2020-21,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +5.621333333333333,5,a-phya-i1,2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,223,446.0 +5.269333333333333,5,a-phya-i1,2020-21,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,256,512.0 +4.506666666666667,4.51,a-phya-i1,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,524,655.0 +3.808,3.81,a-phya-i1,2020-21,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,393,786.0 +4.864,4.86,a-phya-i1,2020-21,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,294,588.0 +5.12,5,a-phya-i1,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,540,540.0 +6.293333333333333,5,a-phya-i1,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,320,320.0 +6.272,5,a-phya-i1,2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,324,324.0 +6.272,5,a-phya-i1,2020-21,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,324,324.0 +5.266666666666667,5,a-phya-i1,2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1025,512.5 +6.298666666666667,5,a-phya-i1,2020-21,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,319,319.0 +6.448,5,a-phya-i1,2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,291,291.0 +4.896,4.9,a-phya-i1,2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,582,582.0 +6.1786666666666665,5,a-phya-i1,2020-21,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,683,341.5 +7.696,5,a-phya-i1,2020-21,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,57,57.0 +5.573333333333333,5,a-phya-i1,2020-21,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,455,455.0 +4.858666666666666,4.86,a-phya-i1,2020-21,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,589,589.0 +3.936,3.94,a-phya-i1,2020-21,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,762,762.0 +3.6906666666666665,3.69,a-phya-i1,2020-21,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,808,808.0 +6.418666666666667,5,a-phya-i1,2020-21,Harvard - Bromfield,01250505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,593,296.5 +5.7973333333333334,5,a-phya-i1,2020-21,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,413,413.0 +6.848,5,a-phya-i1,2020-21,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 +7.034666666666666,5,a-phya-i1,2020-21,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,181,181.0 +5.907692307692307,5,a-phya-i1,2020-21,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,510,392.3076923076923 +5.511884057971015,5,a-phya-i1,2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.3, 0.0, 2.3,1073,466.5217391304348 +4.2026666666666666,4.2,a-phya-i1,2020-21,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,712,712.0 +1,1,a-phya-i1,2020-21,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23 +4.848,4.85,a-phya-i1,2020-21,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,591,591.0 +5.434666666666667,5,a-phya-i1,2020-21,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,481,481.0 +1,1,a-phya-i1,2020-21,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +5.006868686868686,5,a-phya-i1,2020-21,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.3, 0.0, 3.3,1852,561.2121212121212 +5.269333333333333,5,a-phya-i1,2020-21,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,512,512.0 +7.253333333333333,5,a-phya-i1,2020-21,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,182,140.0 +5.205333333333333,5,a-phya-i1,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,524,524.0 +4.970666666666666,4.97,a-phya-i1,2020-21,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,568,568.0 +1,1,a-phya-i1,2020-21,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28 +6.005333333333334,5,a-phya-i1,2020-21,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,374,374.0 +7.029333333333334,5,a-phya-i1,2020-21,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,182,182.0 +7.344,5,a-phya-i1,2020-21,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,123,123.0 +7.370666666666667,5,a-phya-i1,2020-21,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,118,118.0 +6.970666666666666,5,a-phya-i1,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,193,193.0 +1,1,a-phya-i1,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303 +6.8373333333333335,5,a-phya-i1,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,218,218.0 +5.882666666666666,5,a-phya-i1,2020-21,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,397,397.0 +4.570666666666667,4.57,a-phya-i1,2020-21,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1286,643.0 +5.533333333333333,5,a-phya-i1,2020-21,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,925,462.5 +6.064,5,a-phya-i1,2020-21,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 +5.450666666666667,5,a-phya-i1,2020-21,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,478,478.0 +5.626666666666667,5,a-phya-i1,2020-21,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,445,445.0 +4.073333333333333,4.07,a-phya-i1,2020-21,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,589,736.25 +3.473333333333333,3.47,a-phya-i1,2020-21,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,679,848.75 +6.965333333333334,5,a-phya-i1,2020-21,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,194,194.0 +5.8373333333333335,5,a-phya-i1,2020-21,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,811,405.5 +6.224,5,a-phya-i1,2020-21,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,666,333.0 +5.873777777777778,5,a-phya-i1,2020-21,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,598,398.6666666666667 +6.189333333333333,5,a-phya-i1,2020-21,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,679,339.5 +5.712,5,a-phya-i1,2020-21,Holyoke - E N White Elementary,01370045, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +7.050666666666666,5,a-phya-i1,2020-21,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,178,178.0 +3.824,3.82,a-phya-i1,2020-21,Holyoke - Holyoke High,01370505, 0.0, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 2.0,1566,783.0 +5.354666666666667,5,a-phya-i1,2020-21,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,248,496.0 +6.410666666666667,5,a-phya-i1,2020-21,Holyoke - Joseph Metcalf School,01370003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +6.208,5,a-phya-i1,2020-21,Holyoke - Kelly Elementary,01370040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +7.180444444444445,5,a-phya-i1,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,461,153.66666666666666 +6.064,5,a-phya-i1,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 +5.744,5,a-phya-i1,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +6.528,5,a-phya-i1,2020-21,Holyoke - Morgan Full Service Community School,01370025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +6.293333333333333,5,a-phya-i1,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,320,320.0 +7.728,5,a-phya-i1,2020-21,Holyoke - William R. Peck School,01370030, 1.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 5.0,255,51.0 +4.256,4.26,a-phya-i1,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,702,702.0 +1,1,a-phya-i1,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332 +6.2026666666666666,5,a-phya-i1,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,337,337.0 +6.048,5,a-phya-i1,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +2.816,2.82,a-phya-i1,2020-21,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,486,972.0 +2.3146666666666667,2.31,a-phya-i1,2020-21,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,533,1066.0 +6.933333333333334,5,a-phya-i1,2020-21,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,80,200.0 +4.906666666666666,4.91,a-phya-i1,2020-21,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,580,580.0 +4.752,4.75,a-phya-i1,2020-21,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,609,609.0 +3.7404444444444445,3.74,a-phya-i1,2020-21,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,1198,798.6666666666666 +4.721777777777778,4.72,a-phya-i1,2020-21,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,922,614.6666666666666 +1,1,a-phya-i1,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75 +5.077333333333334,5,a-phya-i1,2020-21,Hopkinton - Marathon Elementary School,01390005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,548,548.0 +6.941333333333334,5,a-phya-i1,2020-21,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,397,198.5 +6.474666666666667,5,a-phya-i1,2020-21,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,572,286.0 +6.282666666666667,5,a-phya-i1,2020-21,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +6.139733333333334,5,a-phya-i1,2020-21,Hudson - Hudson High,01410505, 0.0, 0.0, 0.5, 0.0, 0.0, 2.0, 0.0, 2.5,872,348.8 +6.650666666666667,5,a-phya-i1,2020-21,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,253,253.0 +6.602666666666667,5,a-phya-i1,2020-21,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,262,262.0 +6.1226666666666665,5,a-phya-i1,2020-21,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 +6.997333333333334,5,a-phya-i1,2020-21,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,188,188.0 +1,1,a-phya-i1,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,790 +2.272,2.27,a-phya-i1,2020-21,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,537,1074.0 +4.042666666666666,4.04,a-phya-i1,2020-21,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,371,742.0 +4.458666666666667,4.46,a-phya-i1,2020-21,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,332,664.0 +4.224,4.22,a-phya-i1,2020-21,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,354,708.0 +4.730666666666667,4.73,a-phya-i1,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,613,613.0 +5.128888888888889,5,a-phya-i1,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.5, 2.5, 0.0, 0.0, 0.0, 3.0,1615,538.3333333333334 +5.831111111111112,5,a-phya-i1,2020-21,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,732,406.66666666666663 +4.402962962962963,4.4,a-phya-i1,2020-21,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 1.0, 1.8,1214,674.4444444444445 +5.690666666666667,5,a-phya-i1,2020-21,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,433,433.0 +4.789333333333333,4.79,a-phya-i1,2020-21,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,602,602.0 +5.77939393939394,5,a-phya-i1,2020-21,Lawrence - Alexander B Bruce,01490015, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,458,416.3636363636363 +-23.14666666666667,1,a-phya-i1,2020-21,Lawrence - Arlington Middle School,01490017, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,584,5840.0 +5.265454545454546,5,a-phya-i1,2020-21,Lawrence - Community Day Arlington,01490009, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,564,512.7272727272726 +4.8533333333333335,4.85,a-phya-i1,2020-21,Lawrence - Edward F. Parthum,01490053, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,649,590.0 +5.250909090909091,5,a-phya-i1,2020-21,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,567,515.4545454545454 +5.924848484848486,5,a-phya-i1,2020-21,Lawrence - Francis M Leahy,01490040, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,428,389.09090909090907 +5.372121212121212,5,a-phya-i1,2020-21,Lawrence - Frost Middle School,01490525, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,542,492.7272727272727 +5.77939393939394,5,a-phya-i1,2020-21,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,458,416.3636363636363 +5.604848484848485,5,a-phya-i1,2020-21,Lawrence - Guilmette Middle School,01490025, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,494,449.09090909090907 +-0.9066666666666666,1,a-phya-i1,2020-21,Lawrence - High School Learning Center,01490536, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,167,1670.0 +-7.52,1,a-phya-i1,2020-21,Lawrence - James F Hennessey,01490020, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,291,2910.0 +6.884848484848486,5,a-phya-i1,2020-21,Lawrence - John Breen School,01490003, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,230,209.09090909090907 +6.632727272727274,5,a-phya-i1,2020-21,Lawrence - John K Tarbox,01490075, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,282,256.3636363636363 +7.677460317460318,5,a-phya-i1,2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.1, 2.0, 0.0, 0.0, 0.0, 0.0, 2.1,127,60.476190476190474 +7.287272727272728,5,a-phya-i1,2020-21,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,147,133.63636363636363 +0.40727272727272795,1,a-phya-i1,2020-21,Lawrence - Lawrence High School,01490515, 0.0, 0.1, 2.0, 0.0, 0.0, 0.0, 0.0, 2.2,3132,1423.6363636363635 +5.76,5,a-phya-i1,2020-21,Lawrence - Oliver Partnership School,01490048, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,462,419.99999999999994 +6.463492063492064,5,a-phya-i1,2020-21,Lawrence - Parthum Middle School,01490027, 0.0, 0.1, 0.0, 2.0, 0.0, 0.0, 0.0, 2.1,605,288.0952380952381 +6.88,5,a-phya-i1,2020-21,Lawrence - RISE Academy,01490615, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,21,210.0 +6.6361904761904755,5,a-phya-i1,2020-21,Lawrence - Robert Frost,01490018, 0.0, 1.1, 0.0, 0.0, 0.0, 1.0, 0.0, 2.1,537,255.7142857142857 +-0.37333333333333335,1,a-phya-i1,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,157,1570.0 +7.384242424242424,5,a-phya-i1,2020-21,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,127,115.45454545454544 +4.586666666666667,4.59,a-phya-i1,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,704,640.0 +5.692121212121212,5,a-phya-i1,2020-21,Lawrence - Spark Academy,01490085, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,476,432.7272727272727 +6.448484848484848,5,a-phya-i1,2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,320,290.9090909090909 +-8.693333333333333,1,a-phya-i1,2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,313,3130.0 +5.904,5,a-phya-i1,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,786,393.0 +4.453333333333333,4.45,a-phya-i1,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,665,665.0 +6.133333333333334,5,a-phya-i1,2020-21,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,350,350.0 +6.224,5,a-phya-i1,2020-21,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +5.461333333333333,5,a-phya-i1,2020-21,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +5.653333333333333,5,a-phya-i1,2020-21,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,440,440.0 +7.824,5,a-phya-i1,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,33,33.0 +5.733333333333333,5,a-phya-i1,2020-21,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +1,1,a-phya-i1,2020-21,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445 +1,1,a-phya-i1,2020-21,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305 +7.728,5,a-phya-i1,2020-21,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,51,51.0 +1,1,a-phya-i1,2020-21,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,784 +4.8373333333333335,4.84,a-phya-i1,2020-21,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,593,593.0 +5.328,5,a-phya-i1,2020-21,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,501,501.0 +4.56,4.56,a-phya-i1,2020-21,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,645,645.0 +1,1,a-phya-i1,2020-21,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44 +5.173333333333333,5,a-phya-i1,2020-21,Leominster - Leominster High School,01530505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1060,530.0 +1,1,a-phya-i1,2020-21,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24 +4.394666666666667,4.39,a-phya-i1,2020-21,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,676,676.0 +7.552,5,a-phya-i1,2020-21,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,84,84.0 +4.977777777777778,4.98,a-phya-i1,2020-21,Leominster - Samoset School,01530045, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9,510,566.6666666666666 +2.0866666666666664,2.09,a-phya-i1,2020-21,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,887,1108.75 +1,1,a-phya-i1,2020-21,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116 +5.493333333333333,5,a-phya-i1,2020-21,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,470,470.0 +6.933333333333334,5,a-phya-i1,2020-21,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,400,200.0 +5.936,5,a-phya-i1,2020-21,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +5.621333333333333,5,a-phya-i1,2020-21,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,446,446.0 +5.527017543859649,5,a-phya-i1,2020-21,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,881,463.68421052631584 +5.216,5,a-phya-i1,2020-21,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,522,522.0 +7.392,5,a-phya-i1,2020-21,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,57,114.0 +5.487777777777778,5,a-phya-i1,2020-21,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 1.0, 2.0, 0.0, 4.8,2261,471.0416666666667 +4.986666666666666,4.99,a-phya-i1,2020-21,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,565,565.0 +5.297777777777778,5,a-phya-i1,2020-21,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,912,506.66666666666663 +6.613333333333333,5,a-phya-i1,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,260,260.0 +5.482666666666667,5,a-phya-i1,2020-21,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,236,472.0 +4.842666666666666,4.84,a-phya-i1,2020-21,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,296,592.0 +5.248,5,a-phya-i1,2020-21,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,516,516.0 +3.933333333333333,3.93,a-phya-i1,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,1525,762.5 +5.68,5,a-phya-i1,2020-21,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +5.904,5,a-phya-i1,2020-21,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 +6.010666666666666,5,a-phya-i1,2020-21,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +6.1226666666666665,5,a-phya-i1,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +5.904,5,a-phya-i1,2020-21,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 +5.8613333333333335,5,a-phya-i1,2020-21,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +6.224,5,a-phya-i1,2020-21,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +5.6,5,a-phya-i1,2020-21,Longmeadow - Longmeadow High,01590505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,900,450.0 +6.213333333333333,5,a-phya-i1,2020-21,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,335,335.0 +5.925333333333334,5,a-phya-i1,2020-21,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +1,1,a-phya-i1,2020-21,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460 +1,1,a-phya-i1,2020-21,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550 +5.472,5,a-phya-i1,2020-21,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 +1,1,a-phya-i1,2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70 +1,1,a-phya-i1,2020-21,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479 +1,1,a-phya-i1,2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474 +1,1,a-phya-i1,2020-21,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668 +1,1,a-phya-i1,2020-21,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452 +1,1,a-phya-i1,2020-21,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50 +1,1,a-phya-i1,2020-21,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443 +1,1,a-phya-i1,2020-21,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658 +1,1,a-phya-i1,2020-21,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691 +1,1,a-phya-i1,2020-21,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,641 +1,1,a-phya-i1,2020-21,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452 +1,1,a-phya-i1,2020-21,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428 +1,1,a-phya-i1,2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,656 +1,1,a-phya-i1,2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23 +1,1,a-phya-i1,2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +1,1,a-phya-i1,2020-21,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3048 +1,1,a-phya-i1,2020-21,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228 +1,1,a-phya-i1,2020-21,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463 +1,1,a-phya-i1,2020-21,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445 +1,1,a-phya-i1,2020-21,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469 +1,1,a-phya-i1,2020-21,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,848 +1,1,a-phya-i1,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482 +1,1,a-phya-i1,2020-21,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94 +1,1,a-phya-i1,2020-21,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241 +3.7173333333333334,3.72,a-phya-i1,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,803,803.0 +1,1,a-phya-i1,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88 +6.4,5,a-phya-i1,2020-21,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,300,300.0 +4.469333333333333,4.47,a-phya-i1,2020-21,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,331,662.0 +5.002666666666666,5,a-phya-i1,2020-21,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,843,562.0 +6.450666666666667,5,a-phya-i1,2020-21,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,581,290.5 +6.250666666666667,5,a-phya-i1,2020-21,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +1,1,a-phya-i1,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,4 +1,1,a-phya-i1,2020-21,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474 +1,1,a-phya-i1,2020-21,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386 +6.973333333333334,5,a-phya-i1,2020-21,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,385,192.5 +6.165333333333334,5,a-phya-i1,2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,344,344.0 +5.784242424242424,5,a-phya-i1,2020-21,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,457,415.45454545454544 +6.855757575757576,5,a-phya-i1,2020-21,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,236,214.54545454545453 +4.617142857142857,4.62,a-phya-i1,2020-21,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 1.0, 0.0, 0.1, 0.0, 2.1,1332,634.2857142857142 +6.351515151515152,5,a-phya-i1,2020-21,Lynn - Brickett Elementary,01630020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,340,309.09090909090907 +6.463030303030304,5,a-phya-i1,2020-21,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,317,288.18181818181813 +3.578666666666667,3.58,a-phya-i1,2020-21,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1658,829.0 +4.746666666666667,4.75,a-phya-i1,2020-21,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,610,610.0 +4.682666666666667,4.68,a-phya-i1,2020-21,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,622,622.0 +5.944242424242424,5,a-phya-i1,2020-21,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,424,385.45454545454544 +7.466666666666667,5,a-phya-i1,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,100,100.0 +5.61939393939394,5,a-phya-i1,2020-21,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,491,446.3636363636363 +4.712727272727273,4.71,a-phya-i1,2020-21,Lynn - Ingalls,01630060, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,678,616.3636363636363 +6.254545454545455,5,a-phya-i1,2020-21,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,360,327.27272727272725 +-3.2533333333333334,1,a-phya-i1,2020-21,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,211,2110.0 +2.6346666666666665,2.63,a-phya-i1,2020-21,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,2012,1006.0 +5.393777777777777,5,a-phya-i1,2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 2.0, 3.0,1466,488.6666666666667 +7.258181818181819,5,a-phya-i1,2020-21,Lynn - Lynn Woods,01630075, 0.0, 0.5, 0.0, 0.0, 0.5, 0.1, 0.0, 1.1,153,139.0909090909091 +5.13939393939394,5,a-phya-i1,2020-21,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,590,536.3636363636364 +5.648484848484848,5,a-phya-i1,2020-21,Lynn - Robert L Ford,01630050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,485,440.9090909090909 +6.676363636363638,5,a-phya-i1,2020-21,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,273,248.18181818181816 +4.655238095238095,4.66,a-phya-i1,2020-21,Lynn - Thurgood Marshall Mid,01630305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.1, 0.0, 2.1,1317,627.1428571428571 +5.886060606060607,5,a-phya-i1,2020-21,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,436,396.3636363636363 +5.664,5,a-phya-i1,2020-21,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +7.8496969696969705,5,a-phya-i1,2020-21,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,31,28.18181818181818 +5.333333333333333,5,a-phya-i1,2020-21,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,550,499.99999999999994 +4.986666666666666,4.99,a-phya-i1,2020-21,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,452,565.0 +4.0,4.0,a-phya-i1,2020-21,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,600,750.0 +4.282666666666667,4.28,a-phya-i1,2020-21,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,697,697.0 +1,1,a-phya-i1,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27 +5.914666666666666,5,a-phya-i1,2020-21,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,391,391.0 +5.843555555555556,5,a-phya-i1,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0,1213,404.3333333333333 +1,1,a-phya-i1,2020-21,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, 0.0, 0.0,98 +5.594666666666667,5,a-phya-i1,2020-21,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,902,451.0 +5.589333333333333,5,a-phya-i1,2020-21,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,904,452.0 +5.008,5,a-phya-i1,2020-21,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,561,561.0 +3.6,3.6,a-phya-i1,2020-21,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,825,825.0 +6.842666666666666,5,a-phya-i1,2020-21,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,217,217.0 +4.908444444444445,4.91,a-phya-i1,2020-21,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1739,579.6666666666666 +5.408,5,a-phya-i1,2020-21,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,972,486.0 +6.992,5,a-phya-i1,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +5.552,5,a-phya-i1,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,459,459.0 +1,1,a-phya-i1,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,343 +6.544,5,a-phya-i1,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,273,273.0 +6.250666666666667,5,a-phya-i1,2020-21,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,656,328.0 +5.856,5,a-phya-i1,2020-21,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,804,402.0 +6.005333333333334,5,a-phya-i1,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,748,374.0 +4.786666666666667,4.79,a-phya-i1,2020-21,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1205,602.5 +7.514666666666667,5,a-phya-i1,2020-21,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,91,91.0 +6.9013333333333335,5,a-phya-i1,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,206,206.0 +7.621333333333333,5,a-phya-i1,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,71,71.0 +6.1866666666666665,5,a-phya-i1,2020-21,Marblehead - Glover,01680020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +6.981333333333334,5,a-phya-i1,2020-21,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,191,191.0 +5.176296296296297,5,a-phya-i1,2020-21,Marblehead - Marblehead High,01680505, 0.0, 0.8, 0.0, 0.0, 1.0, 0.0, 0.0, 1.8,953,529.4444444444445 +5.589333333333333,5,a-phya-i1,2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,452,452.0 +6.141333333333334,5,a-phya-i1,2020-21,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,697,348.5 +6.890666666666666,5,a-phya-i1,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,208,208.0 +5.888,5,a-phya-i1,2020-21,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +4.962666666666666,4.96,a-phya-i1,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,1139,569.5 +4.416,4.42,a-phya-i1,2020-21,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,672,672.0 +7.1626666666666665,5,a-phya-i1,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,157,157.0 +5.397333333333333,5,a-phya-i1,2020-21,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +4.1866666666666665,4.19,a-phya-i1,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,715,715.0 +6.211555555555556,5,a-phya-i1,2020-21,Marlborough - Marlborough High,01700505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,1006,335.3333333333333 +5.306666666666667,5,a-phya-i1,2020-21,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,505,505.0 +6.165333333333334,5,a-phya-i1,2020-21,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,344,344.0 +6.858666666666666,5,a-phya-i1,2020-21,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,214,214.0 +5.459649122807018,5,a-phya-i1,2020-21,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,905,476.3157894736842 +5.973333333333334,5,a-phya-i1,2020-21,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +4.575438596491228,4.58,a-phya-i1,2020-21,Marshfield - Marshfield High,01710505, 0.0, 1.0, 0.0, 0.0, 0.9, 0.0, 0.0, 1.9,1220,642.1052631578948 +5.7973333333333334,5,a-phya-i1,2020-21,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 +6.485333333333333,5,a-phya-i1,2020-21,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,284,284.0 +4.325333333333333,4.33,a-phya-i1,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,689,689.0 +7.061333333333334,5,a-phya-i1,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,176,176.0 +1,1,a-phya-i1,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365 +5.045333333333334,5,a-phya-i1,2020-21,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1108,554.0 +6.464,5,a-phya-i1,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,576,288.0 +6.24,5,a-phya-i1,2020-21,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,330,330.0 +5.642666666666667,5,a-phya-i1,2020-21,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +1,1,a-phya-i1,2020-21,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256 +5.653333333333333,5,a-phya-i1,2020-21,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,440,440.0 +1,1,a-phya-i1,2020-21,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235 +7.093333333333334,5,a-phya-i1,2020-21,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,170,170.0 +5.568,5,a-phya-i1,2020-21,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,456,456.0 +5.8133333333333335,5,a-phya-i1,2020-21,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +6.330666666666667,5,a-phya-i1,2020-21,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 +6.552888888888889,5,a-phya-i1,2020-21,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,407,271.3333333333333 +5.703703703703703,5,a-phya-i1,2020-21,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,775,430.55555555555554 +5.936,5,a-phya-i1,2020-21,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,387,387.0 +5.962666666666666,5,a-phya-i1,2020-21,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +6.133333333333334,5,a-phya-i1,2020-21,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,560,350.0 +6.712,5,a-phya-i1,2020-21,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,483,241.5 +6.656,5,a-phya-i1,2020-21,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,378,252.0 +1,1,a-phya-i1,2020-21,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12 +7.107692307692307,5,a-phya-i1,2020-21,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 0.5, 0.5, 0.6, 2.6,435,167.3076923076923 +3.3066666666666666,3.31,a-phya-i1,2020-21,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,440,880.0 +5.584,5,a-phya-i1,2020-21,Medford - Madeleine Dugger Andrews,01760315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,453,453.0 +5.758222222222223,5,a-phya-i1,2020-21,Medford - Medford High,01760505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,1261,420.3333333333333 +1,1,a-phya-i1,2020-21,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481 +5.637333333333333,5,a-phya-i1,2020-21,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,443,443.0 +6.282666666666667,5,a-phya-i1,2020-21,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,322,322.0 +4.634666666666667,4.63,a-phya-i1,2020-21,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,631,631.0 +4.384,4.38,a-phya-i1,2020-21,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,678,678.0 +1,1,a-phya-i1,2020-21,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159 +1,1,a-phya-i1,2020-21,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300 +1,1,a-phya-i1,2020-21,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271 +1,1,a-phya-i1,2020-21,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404 +1,1,a-phya-i1,2020-21,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,929 +1,1,a-phya-i1,2020-21,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,824 +1,1,a-phya-i1,2020-21,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421 +1,1,a-phya-i1,2020-21,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393 +6.165333333333334,5,a-phya-i1,2020-21,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,344,344.0 +5.541333333333333,5,a-phya-i1,2020-21,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,461,461.0 +4.1386666666666665,4.14,a-phya-i1,2020-21,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,724,724.0 +4.602666666666667,4.6,a-phya-i1,2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,637,637.0 +5.365333333333333,5,a-phya-i1,2020-21,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,988,494.0 +4.832,4.83,a-phya-i1,2020-21,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1188,594.0 +5.064,5,a-phya-i1,2020-21,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1101,550.5 +4.611555555555555,4.61,a-phya-i1,2020-21,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,1906,635.3333333333334 +4.621333333333333,4.62,a-phya-i1,2020-21,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1267,633.5 +-19.946666666666665,1,a-phya-i1,2020-21,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,524,5240.0 +4.378181818181819,4.38,a-phya-i1,2020-21,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,747,679.090909090909 +5.28,5,a-phya-i1,2020-21,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,561,509.99999999999994 +6.884444444444444,5,a-phya-i1,2020-21,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.1, 0.0, 0.1, 0.0, 1.0, 0.0, 1.2,251,209.16666666666669 +3.9612121212121214,3.96,a-phya-i1,2020-21,Middleborough - Middleborough High,01820505, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,833,757.2727272727273 +6.474666666666667,5,a-phya-i1,2020-21,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,286,286.0 +5.9093333333333335,5,a-phya-i1,2020-21,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +5.616,5,a-phya-i1,2020-21,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,447,447.0 +5.669333333333333,5,a-phya-i1,2020-21,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,437,437.0 +1.296,1.3,a-phya-i1,2020-21,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1257,1257.0 +6.364444444444444,5,a-phya-i1,2020-21,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,92,306.6666666666667 +5.248,5,a-phya-i1,2020-21,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1032,516.0 +5.413333333333333,5,a-phya-i1,2020-21,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,970,485.0 +5.285333333333333,5,a-phya-i1,2020-21,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,509,509.0 +4.0906666666666665,4.09,a-phya-i1,2020-21,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,733,733.0 +6.16,5,a-phya-i1,2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +6.538666666666667,5,a-phya-i1,2020-21,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,548,274.0 +4.458666666666667,4.46,a-phya-i1,2020-21,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,332,664.0 +5.056,5,a-phya-i1,2020-21,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,276,552.0 +2.896,2.9,a-phya-i1,2020-21,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,957,957.0 +4.736,4.74,a-phya-i1,2020-21,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,612,612.0 +4.752,4.75,a-phya-i1,2020-21,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,609,609.0 +4.778666666666667,4.78,a-phya-i1,2020-21,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,604,604.0 +1.9893333333333334,1.99,a-phya-i1,2020-21,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1127,1127.0 +5.621333333333333,5,a-phya-i1,2020-21,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,446,446.0 +2.3555555555555547,2.36,a-phya-i1,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,635,1058.3333333333335 +6.693333333333333,5,a-phya-i1,2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +6.933333333333334,5,a-phya-i1,2020-21,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,80,200.0 +6.485333333333333,5,a-phya-i1,2020-21,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +1,1,a-phya-i1,2020-21,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130 +7.157333333333334,5,a-phya-i1,2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,158,158.0 +6.182857142857142,5,a-phya-i1,2020-21,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 0.0, 1.4,477,340.7142857142857 +4.717575757575758,4.72,a-phya-i1,2020-21,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 1.1,677,615.4545454545454 +6.496666666666667,5,a-phya-i1,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,451,281.875 +5.786666666666667,5,a-phya-i1,2020-21,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +6.1546666666666665,5,a-phya-i1,2020-21,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,346,346.0 +7.482666666666667,5,a-phya-i1,2020-21,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,97,97.0 +4.221333333333333,4.22,a-phya-i1,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1417,708.5 +6.992,5,a-phya-i1,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +5.184,5,a-phya-i1,2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,528,528.0 +5.994666666666666,5,a-phya-i1,2020-21,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,376,376.0 +4.5248,4.52,a-phya-i1,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.5, 1.0, 0.0, 1.0, 0.0, 2.5,1629,651.6 +7.216,5,a-phya-i1,2020-21,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,147,147.0 +5.738666666666667,5,a-phya-i1,2020-21,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,424,424.0 +5.888,5,a-phya-i1,2020-21,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +4.486666666666666,4.49,a-phya-i1,2020-21,Nantucket - Nantucket High,01970505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,527,658.75 +6.298666666666667,5,a-phya-i1,2020-21,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,319,319.0 +6.60923076923077,5,a-phya-i1,2020-21,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,339,260.7692307692308 +6.281025641025641,5,a-phya-i1,2020-21,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,419,322.3076923076923 +6.680579710144928,5,a-phya-i1,2020-21,Narragansett - Templeton Elementary School,07200020, 1.0, 0.0, 1.0, 0.0, 0.0, 0.3, 0.0, 2.3,569,247.3913043478261 +5.482666666666667,5,a-phya-i1,2020-21,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,472,472.0 +6.088,5,a-phya-i1,2020-21,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,717,358.5 +6.545454545454545,5,a-phya-i1,2020-21,Nashoba - Hale,07250310, 0.0, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 1.1,300,272.7272727272727 +6.725333333333333,5,a-phya-i1,2020-21,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,239,239.0 +5.664,5,a-phya-i1,2020-21,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +5.546666666666667,5,a-phya-i1,2020-21,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,920,460.0 +6.064,5,a-phya-i1,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,726,363.0 +5.296,5,a-phya-i1,2020-21,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,507,507.0 +5.52,5,a-phya-i1,2020-21,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,465,465.0 +6.586666666666667,5,a-phya-i1,2020-21,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,795,265.0 +6.8853333333333335,5,a-phya-i1,2020-21,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,209,209.0 +6.010666666666666,5,a-phya-i1,2020-21,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,373,373.0 +5.8293333333333335,5,a-phya-i1,2020-21,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,407,407.0 +5.449411764705882,5,a-phya-i1,2020-21,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 3.0, 0.4, 0.0, 3.4,1626,478.2352941176471 +6.841333333333333,5,a-phya-i1,2020-21,Natick - Wilson Middle,01980310, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,869,217.25 +1,1,a-phya-i1,2020-21,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,855 +4.954666666666666,4.95,a-phya-i1,2020-21,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,571,571.0 +5.253333333333333,5,a-phya-i1,2020-21,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,515,515.0 +5.898666666666666,5,a-phya-i1,2020-21,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,394,394.0 +5.8133333333333335,5,a-phya-i1,2020-21,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +4.288888888888889,4.29,a-phya-i1,2020-21,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,1670,695.8333333333334 +6.274666666666667,5,a-phya-i1,2020-21,Needham - Newman Elementary,01990050, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,647,323.5 +4.796444444444445,4.8,a-phya-i1,2020-21,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,901,600.6666666666666 +5.397333333333333,5,a-phya-i1,2020-21,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,488,488.0 +5.557333333333333,5,a-phya-i1,2020-21,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,458,458.0 +5.84,5,a-phya-i1,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,810,405.0 +4.197333333333333,4.2,a-phya-i1,2020-21,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,713,713.0 +6.664,5,a-phya-i1,2020-21,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,501,250.5 +6.906666666666666,5,a-phya-i1,2020-21,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,205,205.0 +5.973333333333334,5,a-phya-i1,2020-21,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,380,380.0 +6.775466666666667,5,a-phya-i1,2020-21,New Bedford - Casimir Pulaski,02010123, 0.0, 1.0, 0.0, 1.0, 0.0, 0.5, 0.0, 2.5,574,229.6 +6.928,5,a-phya-i1,2020-21,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,201,201.0 +6.682666666666667,5,a-phya-i1,2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +6.990222222222221,5,a-phya-i1,2020-21,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,284,189.33333333333334 +6.586666666666667,5,a-phya-i1,2020-21,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,265,265.0 +6.855111111111112,5,a-phya-i1,2020-21,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0,644,214.66666666666666 +6.1866666666666665,5,a-phya-i1,2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +4.736,4.74,a-phya-i1,2020-21,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,306,612.0 +7.1626666666666665,5,a-phya-i1,2020-21,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,157,157.0 +6.8693333333333335,5,a-phya-i1,2020-21,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,212,212.0 +6.1706666666666665,5,a-phya-i1,2020-21,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +6.897066666666667,5,a-phya-i1,2020-21,New Bedford - Keith Middle School,02010405, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 5.0,1034,206.8 +4.370666666666667,4.37,a-phya-i1,2020-21,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 4.0,2722,680.5 +2.058666666666667,2.06,a-phya-i1,2020-21,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1114,1114.0 +1,1,a-phya-i1,2020-21,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178 +5.637333333333333,5,a-phya-i1,2020-21,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,886,443.0 +6.264,5,a-phya-i1,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,651,325.5 +7.1466666666666665,5,a-phya-i1,2020-21,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,160,160.0 +7.746666666666667,5,a-phya-i1,2020-21,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,95,47.5 +7.717333333333333,5,a-phya-i1,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,106,53.0 +6.682666666666667,5,a-phya-i1,2020-21,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +4.042666666666666,4.04,a-phya-i1,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,742,742.0 +1,1,a-phya-i1,2020-21,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129 +6.464,5,a-phya-i1,2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,288,288.0 +6.56,5,a-phya-i1,2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,540,270.0 +5.152,5,a-phya-i1,2020-21,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,801,534.0 +6.674666666666667,5,a-phya-i1,2020-21,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,497,248.5 +5.717333333333333,5,a-phya-i1,2020-21,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,428,428.0 +5.301333333333333,5,a-phya-i1,2020-21,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,506,506.0 +6.176,5,a-phya-i1,2020-21,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,342,342.0 +6.192,5,a-phya-i1,2020-21,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 +5.978666666666666,5,a-phya-i1,2020-21,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,379,379.0 +3.7653333333333334,3.77,a-phya-i1,2020-21,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,794,794.0 +6.032,5,a-phya-i1,2020-21,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,369,369.0 +5.450666666666667,5,a-phya-i1,2020-21,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,956,478.0 +5.978666666666666,5,a-phya-i1,2020-21,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +5.989333333333334,5,a-phya-i1,2020-21,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,377,377.0 +6.848,5,a-phya-i1,2020-21,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +1,1,a-phya-i1,2020-21,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353 +6.048,5,a-phya-i1,2020-21,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,366,366.0 +5.8453333333333335,5,a-phya-i1,2020-21,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,404,404.0 +7.333333333333333,5,a-phya-i1,2020-21,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,125,125.0 +2.472,2.47,a-phya-i1,2020-21,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,2073,1036.5 +4.677333333333333,4.68,a-phya-i1,2020-21,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,1869,623.0 +4.549333333333333,4.55,a-phya-i1,2020-21,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,647,647.0 +6.730666666666667,5,a-phya-i1,2020-21,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,238,238.0 +6.8,5,a-phya-i1,2020-21,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +6.688,5,a-phya-i1,2020-21,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,246,246.0 +5.904,5,a-phya-i1,2020-21,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,393,393.0 +5.237333333333333,5,a-phya-i1,2020-21,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.4, 1.0,518,518.0 +5.498666666666667,5,a-phya-i1,2020-21,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,469,469.0 +4.864,4.86,a-phya-i1,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,588,588.0 +6.8,5,a-phya-i1,2020-21,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,225,225.0 +6.618666666666667,5,a-phya-i1,2020-21,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,259,259.0 +7.075555555555555,5,a-phya-i1,2020-21,North Adams - Drury High,02090505, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,520,173.33333333333334 +6.832,5,a-phya-i1,2020-21,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,219,219.0 +7.085333333333334,5,a-phya-i1,2020-21,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,343,171.5 +6.834666666666666,5,a-phya-i1,2020-21,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,437,218.5 +6.277333333333333,5,a-phya-i1,2020-21,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,323,323.0 +5.973333333333334,5,a-phya-i1,2020-21,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,380,380.0 +6.784,5,a-phya-i1,2020-21,North Andover - Kittredge,02110015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +4.134736842105263,4.13,a-phya-i1,2020-21,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,1377,724.7368421052632 +6.037333333333334,5,a-phya-i1,2020-21,North Andover - North Andover Middle,02110305, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,1104,368.0 +6.304,5,a-phya-i1,2020-21,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 +5.754666666666667,5,a-phya-i1,2020-21,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 +6.373333333333333,5,a-phya-i1,2020-21,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,305,305.0 +7.013333333333334,5,a-phya-i1,2020-21,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,185,185.0 +4.757333333333333,4.76,a-phya-i1,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,608,608.0 +5.096,5,a-phya-i1,2020-21,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1089,544.5 +1,1,a-phya-i1,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141 +2.704,2.7,a-phya-i1,2020-21,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,993,993.0 +6.965333333333334,5,a-phya-i1,2020-21,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,194,194.0 +1,1,a-phya-i1,2020-21,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287 +6.848,5,a-phya-i1,2020-21,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 +7.082666666666666,5,a-phya-i1,2020-21,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,172,172.0 +5.397333333333333,5,a-phya-i1,2020-21,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,488,488.0 +5.328,5,a-phya-i1,2020-21,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,501,501.0 +5.986031746031745,5,a-phya-i1,2020-21,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.0, 1.6, 0.0, 2.1,793,377.6190476190476 +5.882666666666666,5,a-phya-i1,2020-21,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,397,397.0 +7.749333333333333,5,a-phya-i1,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,47,47.0 +5.36,5,a-phya-i1,2020-21,North Middlesex - Varnum Brook,07350035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,495,495.0 +6.357333333333333,5,a-phya-i1,2020-21,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,308,308.0 +6.197333333333333,5,a-phya-i1,2020-21,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +5.589333333333333,5,a-phya-i1,2020-21,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,452,452.0 +4.469333333333333,4.47,a-phya-i1,2020-21,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,662,662.0 +5.072,5,a-phya-i1,2020-21,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,549,549.0 +6.72,5,a-phya-i1,2020-21,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +1,1,a-phya-i1,2020-21,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328 +4.677333333333333,4.68,a-phya-i1,2020-21,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +6.437333333333333,5,a-phya-i1,2020-21,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,293,293.0 +3.408,3.41,a-phya-i1,2020-21,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,861,861.0 +6.752,5,a-phya-i1,2020-21,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +6.592,5,a-phya-i1,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,528,264.0 +4.386666666666667,4.39,a-phya-i1,2020-21,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1355,677.5 +6.413333333333333,5,a-phya-i1,2020-21,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,238,297.5 +6.602666666666667,5,a-phya-i1,2020-21,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,262,262.0 +6.533333333333333,5,a-phya-i1,2020-21,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +6.433333333333334,5,a-phya-i1,2020-21,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,235,293.75 +6.0304761904761905,5,a-phya-i1,2020-21,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,517,369.28571428571433 +6.117333333333334,5,a-phya-i1,2020-21,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,353,353.0 +5.2,5,a-phya-i1,2020-21,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,525,525.0 +6.248,5,a-phya-i1,2020-21,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,657,328.5 +5.925333333333334,5,a-phya-i1,2020-21,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,389,389.0 +4.584,4.58,a-phya-i1,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1281,640.5 +1,1,a-phya-i1,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506 +7.077333333333334,5,a-phya-i1,2020-21,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,346,173.0 +5.541333333333333,5,a-phya-i1,2020-21,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +6.56,5,a-phya-i1,2020-21,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,270,270.0 +1,1,a-phya-i1,2020-21,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684 +4.816,4.82,a-phya-i1,2020-21,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,597,597.0 +5.504,5,a-phya-i1,2020-21,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +4.565333333333333,4.57,a-phya-i1,2020-21,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,644,644.0 +5.301333333333333,5,a-phya-i1,2020-21,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,506,506.0 +4.992,4.99,a-phya-i1,2020-21,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 +6.432,5,a-phya-i1,2020-21,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,294,294.0 +6.624,5,a-phya-i1,2020-21,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +6.8213333333333335,5,a-phya-i1,2020-21,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,221,221.0 +5.447111111111111,5,a-phya-i1,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,718,478.6666666666667 +6.245333333333333,5,a-phya-i1,2020-21,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,329,329.0 +7.072,5,a-phya-i1,2020-21,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.4, 2.0,348,174.0 +7.062857142857142,5,a-phya-i1,2020-21,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,246,175.71428571428572 +-2.3786666666666667,1,a-phya-i1,2020-21,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,973,1946.0 +6.301538461538461,5,a-phya-i1,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.3, 1.3,414,318.46153846153845 +4.997333333333334,5.0,a-phya-i1,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,563,563.0 +4.181333333333333,4.18,a-phya-i1,2020-21,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,716,716.0 +5.792,5,a-phya-i1,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,414,414.0 +6.506666666666667,5,a-phya-i1,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,280,280.0 +6.592,5,a-phya-i1,2020-21,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,264,264.0 +5.856,5,a-phya-i1,2020-21,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,201,402.0 +7.066666666666666,5,a-phya-i1,2020-21,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,175,175.0 +6.922666666666666,5,a-phya-i1,2020-21,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,202,202.0 +6.101333333333334,5,a-phya-i1,2020-21,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,356,356.0 +5.109333333333334,5,a-phya-i1,2020-21,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +6.0906666666666665,5,a-phya-i1,2020-21,Oxford - Oxford Middle,02260405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +4.864,4.86,a-phya-i1,2020-21,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,588,588.0 +4.8,4.8,a-phya-i1,2020-21,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,600,600.0 +1.4933333333333334,1.49,a-phya-i1,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,610,1220.0 +6.597333333333333,5,a-phya-i1,2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,263,263.0 +1,1,a-phya-i1,2020-21,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346 +1,1,a-phya-i1,2020-21,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401 +1,1,a-phya-i1,2020-21,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1443 +1,1,a-phya-i1,2020-21,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249 +1,1,a-phya-i1,2020-21,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301 +1,1,a-phya-i1,2020-21,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1500 +1,1,a-phya-i1,2020-21,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398 +1,1,a-phya-i1,2020-21,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564 +1,1,a-phya-i1,2020-21,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234 +1,1,a-phya-i1,2020-21,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340 +7.429333333333333,5,a-phya-i1,2020-21,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,107,107.0 +5.589333333333333,5,a-phya-i1,2020-21,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,452,452.0 +5.882666666666666,5,a-phya-i1,2020-21,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,397,397.0 +5.274666666666667,5,a-phya-i1,2020-21,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +5.701333333333333,5,a-phya-i1,2020-21,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +3.6906666666666665,3.69,a-phya-i1,2020-21,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,808,808.0 +6.922666666666666,5,a-phya-i1,2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,202,202.0 +6.410666666666667,5,a-phya-i1,2020-21,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +5.52,5,a-phya-i1,2020-21,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +6.730666666666667,5,a-phya-i1,2020-21,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,238,238.0 +6.144,5,a-phya-i1,2020-21,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +4.410666666666667,4.41,a-phya-i1,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,673,673.0 +7.344,5,a-phya-i1,2020-21,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,123,123.0 +1,1,a-phya-i1,2020-21,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, 0.0, 0.0, 0.0,159 +4.302222222222222,4.3,a-phya-i1,2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,208,693.3333333333334 +6.526666666666666,5,a-phya-i1,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,221,276.25 +3.7653333333333334,3.77,a-phya-i1,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,794,794.0 +6.026666666666666,5,a-phya-i1,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +7.029333333333334,5,a-phya-i1,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,182,182.0 +7.0986666666666665,5,a-phya-i1,2020-21,Pioneer Valley - Northfield Elementary,07500008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,169,169.0 +7.253333333333333,5,a-phya-i1,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,280,140.0 +5.013333333333334,5,a-phya-i1,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,560,560.0 +5.914666666666666,5,a-phya-i1,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,391,391.0 +6.565333333333333,5,a-phya-i1,2020-21,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,269,269.0 +4.8,4.8,a-phya-i1,2020-21,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,300,600.0 +7.776,5,a-phya-i1,2020-21,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,21,42.0 +1,1,a-phya-i1,2020-21,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32 +5.792,5,a-phya-i1,2020-21,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,414,414.0 +5.2,5,a-phya-i1,2020-21,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,525,525.0 +6.149333333333334,5,a-phya-i1,2020-21,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,347,347.0 +6.053333333333334,5,a-phya-i1,2020-21,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,730,365.0 +7.109333333333334,5,a-phya-i1,2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,167,167.0 +1,1,a-phya-i1,2020-21,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322 +6.890666666666666,5,a-phya-i1,2020-21,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,208,208.0 +3.3653333333333335,3.37,a-phya-i1,2020-21,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,869,869.0 +5.045333333333334,5,a-phya-i1,2020-21,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,554,554.0 +6.645333333333333,5,a-phya-i1,2020-21,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +6.069333333333334,5,a-phya-i1,2020-21,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,362,362.0 +6.608,5,a-phya-i1,2020-21,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,261,261.0 +6.992,5,a-phya-i1,2020-21,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +6.133333333333334,5,a-phya-i1,2020-21,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,350,350.0 +7.018666666666666,5,a-phya-i1,2020-21,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,184,184.0 +5.125333333333334,5,a-phya-i1,2020-21,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,539,539.0 +6.656,5,a-phya-i1,2020-21,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,252,252.0 +5.370666666666667,5,a-phya-i1,2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,493,493.0 +5.306666666666667,5,a-phya-i1,2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1010,505.0 +7.242666666666667,5,a-phya-i1,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,142,142.0 +4.618666666666667,4.62,a-phya-i1,2020-21,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1268,634.0 +2.3146666666666667,2.31,a-phya-i1,2020-21,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1066,1066.0 +4.453333333333333,4.45,a-phya-i1,2020-21,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,665,665.0 +4.752,4.75,a-phya-i1,2020-21,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,609,609.0 +6.304,5,a-phya-i1,2020-21,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,318,318.0 +6.8853333333333335,5,a-phya-i1,2020-21,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,209,209.0 +5.048,5,a-phya-i1,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1107,553.5 +1,1,a-phya-i1,2020-21,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133 +6.949333333333334,5,a-phya-i1,2020-21,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,197,197.0 +6.704,5,a-phya-i1,2020-21,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,243,243.0 +7.744,5,a-phya-i1,2020-21,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,48,48.0 +1,1,a-phya-i1,2020-21,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,123 +4.629333333333333,4.63,a-phya-i1,2020-21,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,632,632.0 +5.253333333333333,5,a-phya-i1,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,515,515.0 +6.2026666666666666,5,a-phya-i1,2020-21,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +6.074666666666666,5,a-phya-i1,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +1,1,a-phya-i1,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,173 +6.010666666666666,5,a-phya-i1,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +6.645333333333333,5,a-phya-i1,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +6.410666666666667,5,a-phya-i1,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,149,298.0 +5.077333333333334,5,a-phya-i1,2020-21,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,274,548.0 +2.176,2.18,a-phya-i1,2020-21,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,546,1092.0 +4.245333333333333,4.25,a-phya-i1,2020-21,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,352,704.0 +4.394666666666667,4.39,a-phya-i1,2020-21,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,338,676.0 +1.4293333333333333,1.43,a-phya-i1,2020-21,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,616,1232.0 +4.554666666666667,4.55,a-phya-i1,2020-21,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,323,646.0 +4.5,4.5,a-phya-i1,2020-21,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,525,656.25 +4.736,4.74,a-phya-i1,2020-21,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,306,612.0 +2.1973333333333334,2.2,a-phya-i1,2020-21,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,544,1088.0 +4.416,4.42,a-phya-i1,2020-21,Quincy - Merrymount,02430060, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,336,672.0 +3.3386666666666667,3.34,a-phya-i1,2020-21,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,437,874.0 +0.768,1,a-phya-i1,2020-21,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,1356,1356.0 +1,1,a-phya-i1,2020-21,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417 +2.670222222222222,2.67,a-phya-i1,2020-21,Quincy - Quincy High,02430505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,1499,999.3333333333334 +3.7653333333333334,3.77,a-phya-i1,2020-21,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,397,794.0 +5.914666666666666,5,a-phya-i1,2020-21,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,391,391.0 +4.384,4.38,a-phya-i1,2020-21,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,339,678.0 +4.426666666666667,4.43,a-phya-i1,2020-21,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,335,670.0 +1.3973333333333333,1.4,a-phya-i1,2020-21,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,619,1238.0 +1,1,a-phya-i1,2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297 +6.037333333333334,5,a-phya-i1,2020-21,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,368,368.0 +5.728,5,a-phya-i1,2020-21,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +6.650666666666667,5,a-phya-i1,2020-21,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,253,253.0 +4.405333333333333,4.41,a-phya-i1,2020-21,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,674,674.0 +4.576,4.58,a-phya-i1,2020-21,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,642,642.0 +6.112,5,a-phya-i1,2020-21,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,354,354.0 +5.872,5,a-phya-i1,2020-21,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,399,399.0 +6.16,5,a-phya-i1,2020-21,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +5.8933333333333335,5,a-phya-i1,2020-21,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,395,395.0 +5.8933333333333335,5,a-phya-i1,2020-21,Reading - Joshua Eaton,02460010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,395,395.0 +1,1,a-phya-i1,2020-21,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97 +4.379259259259259,4.38,a-phya-i1,2020-21,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 1.8,1222,678.8888888888889 +5.36,5,a-phya-i1,2020-21,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,495,495.0 +6.672,5,a-phya-i1,2020-21,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +1.4222222222222214,1.42,a-phya-i1,2020-21,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,740,1233.3333333333335 +5.3963636363636365,5,a-phya-i1,2020-21,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.1,537,488.18181818181813 +6.151111111111111,5,a-phya-i1,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.1, 0.0, 0.8, 0.0, 0.9,312,346.6666666666667 +4.8145454545454545,4.81,a-phya-i1,2020-21,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,657,597.2727272727273 +5.246060606060606,5,a-phya-i1,2020-21,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,568,516.3636363636364 +5.818181818181818,5,a-phya-i1,2020-21,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,450,409.09090909090907 +4.596989247311829,4.6,a-phya-i1,2020-21,Revere - Revere High,02480505, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 1.0, 3.1,1978,638.0645161290322 +5.090909090909092,5,a-phya-i1,2020-21,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,600,545.4545454545454 +6.56,5,a-phya-i1,2020-21,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2, 0.0, 0.3,81,270.0 +4.761212121212122,4.76,a-phya-i1,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,668,607.2727272727273 +2.888888888888889,2.89,a-phya-i1,2020-21,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,575,958.3333333333334 +7.189333333333333,5,a-phya-i1,2020-21,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,152,152.0 +6.224,5,a-phya-i1,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,666,333.0 +6.464,5,a-phya-i1,2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.461333333333333,5,a-phya-i1,2020-21,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,476,476.0 +5.504,5,a-phya-i1,2020-21,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,234,468.0 +-0.16,1,a-phya-i1,2020-21,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,765,1530.0 +5.269333333333333,5,a-phya-i1,2020-21,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,256,512.0 +4.629333333333333,4.63,a-phya-i1,2020-21,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,316,632.0 +1.5146666666666666,1.51,a-phya-i1,2020-21,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,608,1216.0 +6.373333333333333,5,a-phya-i1,2020-21,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,305,305.0 +6.64,5,a-phya-i1,2020-21,Rockport - Rockport High,02520510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,255,255.0 +6.922666666666666,5,a-phya-i1,2020-21,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,202,202.0 +1,1,a-phya-i1,2020-21,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63 +1,1,a-phya-i1,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1596 +5.232,5,a-phya-i1,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,1557,519.0 +1,1,a-phya-i1,2020-21,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362 +1,1,a-phya-i1,2020-21,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321 +-5.653333333333333,1,a-phya-i1,2020-21,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,256,2560.0 +4.843636363636364,4.84,a-phya-i1,2020-21,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,651,591.8181818181818 +5.6,5,a-phya-i1,2020-21,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,270,450.0 +7.833333333333333,5,a-phya-i1,2020-21,Salem - New Liberty Innovation School,02580510, 0.5, 0.1, 0.0, 0.5, 0.0, 0.0, 0.5, 1.6,50,31.25 +7.704242424242424,5,a-phya-i1,2020-21,Salem - Salem Early Childhood,02580001, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,61,55.45454545454545 +5.815873015873016,5,a-phya-i1,2020-21,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,860,409.5238095238095 +7.822222222222221,5,a-phya-i1,2020-21,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.0, 0.6,20,33.333333333333336 +4.524444444444444,4.52,a-phya-i1,2020-21,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,391,651.6666666666667 +5.8133333333333335,5,a-phya-i1,2020-21,Salem - Witchcraft Heights,02580070, 0.0, 0.1, 0.0, 0.6, 0.5, 0.0, 0.0, 1.2,492,410.0 +1,1,a-phya-i1,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495 +5.125333333333334,5,a-phya-i1,2020-21,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,539,539.0 +4.2026666666666666,4.2,a-phya-i1,2020-21,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,712,712.0 +4.581333333333333,4.58,a-phya-i1,2020-21,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,641,641.0 +5.685333333333333,5,a-phya-i1,2020-21,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,434,434.0 +7.1306666666666665,5,a-phya-i1,2020-21,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,163,163.0 +6.848,5,a-phya-i1,2020-21,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +6.928,5,a-phya-i1,2020-21,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,201,201.0 +6.1866666666666665,5,a-phya-i1,2020-21,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,680,340.0 +4.677333333333333,4.68,a-phya-i1,2020-21,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +6.896,5,a-phya-i1,2020-21,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,414,207.0 +7.706666666666667,5,a-phya-i1,2020-21,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,44,55.0 +6.245333333333333,5,a-phya-i1,2020-21,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,329,329.0 +6.867555555555555,5,a-phya-i1,2020-21,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,637,212.33333333333334 +6.64,5,a-phya-i1,2020-21,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,255,255.0 +7.149333333333334,5,a-phya-i1,2020-21,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,319,159.5 +5.544,5,a-phya-i1,2020-21,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,921,460.5 +5.92,5,a-phya-i1,2020-21,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,390,390.0 +2.9013333333333335,2.9,a-phya-i1,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,478,956.0 +2.421333333333333,2.42,a-phya-i1,2020-21,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,523,1046.0 +3.1146666666666665,3.11,a-phya-i1,2020-21,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,458,916.0 +1.728,1.73,a-phya-i1,2020-21,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,588,1176.0 +-3.3333333333333335,1,a-phya-i1,2020-21,Sharon - Cottage Street,02660005, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,425,2125.0 +5.376,5,a-phya-i1,2020-21,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,492,492.0 +5.104,5,a-phya-i1,2020-21,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,543,543.0 +6.346666666666667,5,a-phya-i1,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,31,310.0 +1.968,1.97,a-phya-i1,2020-21,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1131,1131.0 +-1.2906666666666666,1,a-phya-i1,2020-21,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,871,1742.0 +4.512,4.51,a-phya-i1,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1308,654.0 +5.682962962962963,5,a-phya-i1,2020-21,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,391,434.44444444444446 +6.661333333333333,5,a-phya-i1,2020-21,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +5.706666666666667,5,a-phya-i1,2020-21,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,430,430.0 +4.378666666666667,4.38,a-phya-i1,2020-21,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,679,679.0 +4.247619047619047,4.25,a-phya-i1,2020-21,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,985,703.5714285714287 +7.413333333333333,5,a-phya-i1,2020-21,Shrewsbury - Parker Road Preschool,02710040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,110,110.0 +4.327619047619047,4.33,a-phya-i1,2020-21,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,964,688.5714285714287 +4.300246913580247,4.3,a-phya-i1,2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.7, 0.0, 1.0, 1.0, 0.0, 2.7,1873,693.7037037037037 +6.229333333333333,5,a-phya-i1,2020-21,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,332,332.0 +6.133333333333334,5,a-phya-i1,2020-21,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,350,350.0 +7.402666666666667,5,a-phya-i1,2020-21,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,112,112.0 +1.7333333333333334,1.73,a-phya-i1,2020-21,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1175,1175.0 +5.210666666666667,5,a-phya-i1,2020-21,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,523,523.0 +1,1,a-phya-i1,2020-21,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, 0.0, 0.0, 0.0, 0.0,366 +6.5555555555555545,5,a-phya-i1,2020-21,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,325,270.83333333333337 +6.12,5,a-phya-i1,2020-21,Somerset - North Elementary,02730008, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,423,352.5 +5.271111111111111,5,a-phya-i1,2020-21,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,614,511.6666666666667 +6.915555555555555,5,a-phya-i1,2020-21,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,244,203.33333333333334 +4.6433333333333335,4.64,a-phya-i1,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,1007,629.375 +1,1,a-phya-i1,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590 +1,1,a-phya-i1,2020-21,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446 +1,1,a-phya-i1,2020-21,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225 +1,1,a-phya-i1,2020-21,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202 +1,1,a-phya-i1,2020-21,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720 +1,1,a-phya-i1,2020-21,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56 +1,1,a-phya-i1,2020-21,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451 +1,1,a-phya-i1,2020-21,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15 +1,1,a-phya-i1,2020-21,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215 +1,1,a-phya-i1,2020-21,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380 +1,1,a-phya-i1,2020-21,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391 +5.232,5,a-phya-i1,2020-21,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 +5.770666666666667,5,a-phya-i1,2020-21,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,418,418.0 +6.64,5,a-phya-i1,2020-21,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +1,1,a-phya-i1,2020-21,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571 +-0.7146666666666667,1,a-phya-i1,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,817,1634.0 +5.757777777777777,5,a-phya-i1,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 2.4,1009,420.4166666666667 +4.554666666666667,4.55,a-phya-i1,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,646,646.0 +6.8053333333333335,5,a-phya-i1,2020-21,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,448,224.0 +6.650666666666667,5,a-phya-i1,2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,253,253.0 +6.32,5,a-phya-i1,2020-21,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,252,315.0 +6.24,5,a-phya-i1,2020-21,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,330,330.0 +5.968,5,a-phya-i1,2020-21,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +7.282666666666667,5,a-phya-i1,2020-21,Southbridge - Charlton Street,02770005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,269,134.5 +6.1226666666666665,5,a-phya-i1,2020-21,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,352,352.0 +7.738666666666667,5,a-phya-i1,2020-21,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,49,49.0 +6.762666666666667,5,a-phya-i1,2020-21,Southbridge - Southbridge High School,02770515, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,464,232.0 +6.882666666666666,5,a-phya-i1,2020-21,Southbridge - Southbridge Middle School,02770315, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,419,209.5 +6.330666666666667,5,a-phya-i1,2020-21,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,313,313.0 +3.928,3.93,a-phya-i1,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1527,763.5 +6.266666666666667,5,a-phya-i1,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,325,325.0 +7.610666666666667,5,a-phya-i1,2020-21,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,73,73.0 +1,1,a-phya-i1,2020-21,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15 +6.762666666666667,5,a-phya-i1,2020-21,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,232,232.0 +4.8773333333333335,4.88,a-phya-i1,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1171,585.5 +6.256410256410256,5,a-phya-i1,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,425,326.9230769230769 +6.439420289855072,5,a-phya-i1,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.3, 0.0, 1.0, 0.0, 1.0, 0.0, 2.3,673,292.60869565217394 +6.78974358974359,5,a-phya-i1,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,295,226.9230769230769 +6.410666666666667,5,a-phya-i1,2020-21,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +6.981333333333334,5,a-phya-i1,2020-21,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,191,191.0 +1,1,a-phya-i1,2020-21,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405 +5.669333333333333,5,a-phya-i1,2020-21,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,437,437.0 +5.8613333333333335,5,a-phya-i1,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +6.549333333333333,5,a-phya-i1,2020-21,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,272,272.0 +6.741333333333333,5,a-phya-i1,2020-21,Springfield - Arthur T Talmadge,02810165, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,236,236.0 +1,1,a-phya-i1,2020-21,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20 +6.176,5,a-phya-i1,2020-21,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +1,1,a-phya-i1,2020-21,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95 +6.288,5,a-phya-i1,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,321,321.0 +6.234666666666667,5,a-phya-i1,2020-21,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +5.76,5,a-phya-i1,2020-21,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +7.338666666666667,5,a-phya-i1,2020-21,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,124,124.0 +4.906666666666666,4.91,a-phya-i1,2020-21,Springfield - Edward P. Boland School,02810010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,580,580.0 +6.416,5,a-phya-i1,2020-21,Springfield - Elias Brookings,02810030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +1,1,a-phya-i1,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +6.290666666666667,5,a-phya-i1,2020-21,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,641,320.5 +6.549333333333333,5,a-phya-i1,2020-21,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +4.693333333333333,4.69,a-phya-i1,2020-21,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,620,620.0 +1,1,a-phya-i1,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +1,1,a-phya-i1,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25 +4.538666666666667,4.54,a-phya-i1,2020-21,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,649,649.0 +6.528,5,a-phya-i1,2020-21,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +6.442666666666667,5,a-phya-i1,2020-21,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,292,292.0 +5.854222222222223,5,a-phya-i1,2020-21,Springfield - High School Of Commerce,02810510, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,1207,402.3333333333333 +1,1,a-phya-i1,2020-21,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240 +5.904,5,a-phya-i1,2020-21,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +1,1,a-phya-i1,2020-21,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229 +4.912,4.91,a-phya-i1,2020-21,Springfield - Indian Orchard Elementary,02810100, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,579,579.0 +5.488,5,a-phya-i1,2020-21,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +5.962666666666666,5,a-phya-i1,2020-21,Springfield - John J Duggan Middle,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,764,382.0 +7.290666666666667,5,a-phya-i1,2020-21,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,266,133.0 +1,1,a-phya-i1,2020-21,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115 +1,1,a-phya-i1,2020-21,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104 +6.458666666666667,5,a-phya-i1,2020-21,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +1,1,a-phya-i1,2020-21,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7 +6.8933333333333335,5,a-phya-i1,2020-21,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,415,207.5 +1,1,a-phya-i1,2020-21,Springfield - Lyceum Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371 +1,1,a-phya-i1,2020-21,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481 +1,1,a-phya-i1,2020-21,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135 +6.341333333333333,5,a-phya-i1,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,311,311.0 +7.378666666666667,5,a-phya-i1,2020-21,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,233,116.5 +7.24,5,a-phya-i1,2020-21,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,285,142.5 +5.744,5,a-phya-i1,2020-21,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +5.221333333333333,5,a-phya-i1,2020-21,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,521,521.0 +4.24,4.24,a-phya-i1,2020-21,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,705,705.0 +1,1,a-phya-i1,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +4.256,4.26,a-phya-i1,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1404,702.0 +1,1,a-phya-i1,2020-21,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287 +7.354666666666667,5,a-phya-i1,2020-21,Springfield - Samuel Bowles,02810020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,242,121.0 +7.352,5,a-phya-i1,2020-21,Springfield - South End Middle School,02810355, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,243,121.5 +4.291555555555555,4.29,a-phya-i1,2020-21,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,2086,695.3333333333334 +1,1,a-phya-i1,2020-21,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,206 +4.8453333333333335,4.85,a-phya-i1,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1183,591.5 +1,1,a-phya-i1,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16 +1,1,a-phya-i1,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64 +1,1,a-phya-i1,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41 +1,1,a-phya-i1,2020-21,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86 +7.701333333333333,5,a-phya-i1,2020-21,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,56,56.0 +1,1,a-phya-i1,2020-21,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127 +5.296,5,a-phya-i1,2020-21,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,507,507.0 +4.597333333333333,4.6,a-phya-i1,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,638,638.0 +6.352,5,a-phya-i1,2020-21,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,309,309.0 +6.528,5,a-phya-i1,2020-21,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +6.72,5,a-phya-i1,2020-21,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,240,240.0 +5.792,5,a-phya-i1,2020-21,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,414,414.0 +5.749333333333333,5,a-phya-i1,2020-21,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,422,422.0 +6.485333333333333,5,a-phya-i1,2020-21,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,284,284.0 +5.12,5,a-phya-i1,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,378,540.0 +6.661333333333333,5,a-phya-i1,2020-21,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,251,251.0 +6.096,5,a-phya-i1,2020-21,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,357,357.0 +6.250666666666667,5,a-phya-i1,2020-21,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,328,328.0 +6.112,5,a-phya-i1,2020-21,Stoneham - Stoneham Central Middle School,02840405, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,708,354.0 +4.746666666666667,4.75,a-phya-i1,2020-21,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,610,610.0 +7.653333333333333,5,a-phya-i1,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,65,65.0 +6.714666666666667,5,a-phya-i1,2020-21,Stoughton - Helen Hansen Elementary,02850010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +1,1,a-phya-i1,2020-21,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350 +6.048,5,a-phya-i1,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +3.6906666666666665,3.69,a-phya-i1,2020-21,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,808,808.0 +6.485333333333333,5,a-phya-i1,2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +6.736,5,a-phya-i1,2020-21,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,237,237.0 +2.48,2.48,a-phya-i1,2020-21,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1035,1035.0 +3.776,3.78,a-phya-i1,2020-21,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,792,792.0 +5.725333333333333,5,a-phya-i1,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,853,426.5 +4.966666666666667,4.97,a-phya-i1,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,910,568.75 +6.405333333333333,5,a-phya-i1,2020-21,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,299,299.0 +5.717333333333333,5,a-phya-i1,2020-21,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,428,428.0 +6.197333333333333,5,a-phya-i1,2020-21,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,338,338.0 +5.088,5,a-phya-i1,2020-21,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,546,546.0 +7.018666666666666,5,a-phya-i1,2020-21,Sunderland - Sunderland Elementary,02890005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,184,184.0 +6.373333333333333,5,a-phya-i1,2020-21,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,305,305.0 +6.485333333333333,5,a-phya-i1,2020-21,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +1,1,a-phya-i1,2020-21,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367 +6.851555555555555,5,a-phya-i1,2020-21,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,323,215.33333333333334 +5.717333333333333,5,a-phya-i1,2020-21,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,214,428.0 +4.8533333333333335,4.85,a-phya-i1,2020-21,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,295,590.0 +5.632,5,a-phya-i1,2020-21,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,222,444.0 +1.7777777777777775,1.78,a-phya-i1,2020-21,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,700,1166.6666666666667 +1.768888888888888,1.77,a-phya-i1,2020-21,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,701,1168.3333333333335 +6.538666666666667,5,a-phya-i1,2020-21,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +6.64,5,a-phya-i1,2020-21,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +5.066666666666666,5,a-phya-i1,2020-21,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,550,550.0 +5.12,5,a-phya-i1,2020-21,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,540,540.0 +6.976,5,a-phya-i1,2020-21,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,192,192.0 +6.906666666666666,5,a-phya-i1,2020-21,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,205,205.0 +1,1,a-phya-i1,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2514 +4.88,4.88,a-phya-i1,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,585,585.0 +5.557333333333333,5,a-phya-i1,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,687,458.0 +1,1,a-phya-i1,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499 +4.261818181818182,4.26,a-phya-i1,2020-21,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,771,700.9090909090909 +5.362424242424242,5,a-phya-i1,2020-21,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.8, 0.0, 1.1,544,494.5454545454545 +6.046666666666667,5,a-phya-i1,2020-21,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,293,366.25 +6.421333333333333,5,a-phya-i1,2020-21,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,148,296.0 +5.318787878787878,5,a-phya-i1,2020-21,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.8, 0.0, 0.0, 0.0, 1.1,553,502.7272727272727 +6.326666666666667,5,a-phya-i1,2020-21,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,251,313.75 +4.8133333333333335,4.81,a-phya-i1,2020-21,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,478,597.5 +4.96,4.96,a-phya-i1,2020-21,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,456,570.0 +4.770909090909091,4.77,a-phya-i1,2020-21,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,666,605.4545454545454 +5.2444444444444445,5,a-phya-i1,2020-21,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.8, 0.8, 0.0, 0.0, 1.5,775,516.6666666666666 +7.333333333333333,5,a-phya-i1,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,100,125.0 +1.739130434782608,1.74,a-phya-i1,2020-21,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 2.3,2700,1173.913043478261 +6.330666666666667,5,a-phya-i1,2020-21,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,313,313.0 +5.466666666666667,5,a-phya-i1,2020-21,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,475,475.0 +5.274666666666667,5,a-phya-i1,2020-21,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +5.082666666666666,5,a-phya-i1,2020-21,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,547,547.0 +6.704,5,a-phya-i1,2020-21,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,243,243.0 +6.576,5,a-phya-i1,2020-21,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,267,267.0 +5.68140350877193,5,a-phya-i1,2020-21,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.9,826,434.7368421052632 +7.229333333333333,5,a-phya-i1,2020-21,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,289,144.5 +6.656,5,a-phya-i1,2020-21,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,252,252.0 +7.109333333333334,5,a-phya-i1,2020-21,Topsfield - Steward Elementary,02980010, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,334,167.0 +4.369523809523809,4.37,a-phya-i1,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.4, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.4,953,680.7142857142858 +6.085333333333334,5,a-phya-i1,2020-21,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +5.941333333333334,5,a-phya-i1,2020-21,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,386,386.0 +5.728,5,a-phya-i1,2020-21,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +4.554666666666667,4.55,a-phya-i1,2020-21,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,646,646.0 +6.085333333333334,5,a-phya-i1,2020-21,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,359,359.0 +7.397333333333333,5,a-phya-i1,2020-21,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,113,113.0 +6.072,5,a-phya-i1,2020-21,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,723,361.5 +5.626666666666667,5,a-phya-i1,2020-21,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,445,445.0 +6.602666666666667,5,a-phya-i1,2020-21,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,393,262.0 +1,1,a-phya-i1,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349 +4.346666666666667,4.35,a-phya-i1,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,685,685.0 +7.733333333333333,5,a-phya-i1,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,50,50.0 +6.144,5,a-phya-i1,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +4.149333333333334,4.15,a-phya-i1,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,722,722.0 +1,1,a-phya-i1,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41 +5.301333333333333,5,a-phya-i1,2020-21,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,506,506.0 +4.8,4.8,a-phya-i1,2020-21,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,600,600.0 +5.376,5,a-phya-i1,2020-21,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,492,492.0 +5.765333333333333,5,a-phya-i1,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +4.330666666666667,4.33,a-phya-i1,2020-21,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,344,688.0 +4.8,4.8,a-phya-i1,2020-21,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,300,600.0 +3.477333333333333,3.48,a-phya-i1,2020-21,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,424,848.0 +3.2533333333333334,3.25,a-phya-i1,2020-21,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,445,890.0 +1,1,a-phya-i1,2020-21,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93 +4.373333333333333,4.37,a-phya-i1,2020-21,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,340,680.0 +4.736,4.74,a-phya-i1,2020-21,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,306,612.0 +2.8906666666666667,2.89,a-phya-i1,2020-21,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,479,958.0 +-0.2773333333333333,1,a-phya-i1,2020-21,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,776,1552.0 +4.8533333333333335,4.85,a-phya-i1,2020-21,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,295,590.0 +3.3066666666666666,3.31,a-phya-i1,2020-21,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,440,880.0 +4.384,4.38,a-phya-i1,2020-21,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,339,678.0 +-13.365333333333334,1,a-phya-i1,2020-21,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,2003,4006.0 +5.637333333333333,5,a-phya-i1,2020-21,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,443,443.0 +7.637333333333333,5,a-phya-i1,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,68,68.0 +5.1786666666666665,5,a-phya-i1,2020-21,Wakefield - Galvin Middle School,03050310, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1058,529.0 +6.8533333333333335,5,a-phya-i1,2020-21,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,215,215.0 +5.618666666666667,5,a-phya-i1,2020-21,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,893,446.5 +6.810666666666667,5,a-phya-i1,2020-21,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,223,223.0 +5.818666666666667,5,a-phya-i1,2020-21,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +7.338666666666667,5,a-phya-i1,2020-21,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,124,124.0 +5.882666666666666,5,a-phya-i1,2020-21,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,397,397.0 +6.133333333333334,5,a-phya-i1,2020-21,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,350,350.0 +6.346666666666667,5,a-phya-i1,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,62,310.0 +6.496,5,a-phya-i1,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,423,282.0 +5.1066666666666665,5,a-phya-i1,2020-21,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,434,542.5 +5.562666666666667,5,a-phya-i1,2020-21,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +5.578666666666667,5,a-phya-i1,2020-21,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,454,454.0 +5.125333333333334,5,a-phya-i1,2020-21,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1078,539.0 +5.557333333333333,5,a-phya-i1,2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,458,458.0 +5.7973333333333334,5,a-phya-i1,2020-21,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +6.016,5,a-phya-i1,2020-21,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +5.1466666666666665,5,a-phya-i1,2020-21,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,535,535.0 +1,1,a-phya-i1,2020-21,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669 +5.429333333333333,5,a-phya-i1,2020-21,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,482,482.0 +5.989333333333334,5,a-phya-i1,2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,377,377.0 +7.072,5,a-phya-i1,2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,174,174.0 +5.12,5,a-phya-i1,2020-21,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,1620,540.0 +5.8293333333333335,5,a-phya-i1,2020-21,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +6.1706666666666665,5,a-phya-i1,2020-21,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +5.210666666666667,5,a-phya-i1,2020-21,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,523,523.0 +6.538666666666667,5,a-phya-i1,2020-21,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +5.141333333333334,5,a-phya-i1,2020-21,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,536,536.0 +6.394666666666667,5,a-phya-i1,2020-21,Wareham - Minot Forest,03100017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +1,1,a-phya-i1,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +5.157333333333334,5,a-phya-i1,2020-21,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,533,533.0 +4.88,4.88,a-phya-i1,2020-21,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,585,585.0 +6.576,5,a-phya-i1,2020-21,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,267,267.0 +6.424,5,a-phya-i1,2020-21,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,591,295.5 +5.8613333333333335,5,a-phya-i1,2020-21,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 +6.1466666666666665,5,a-phya-i1,2020-21,Watertown - Watertown High,03140505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,695,347.5 +1,1,a-phya-i1,2020-21,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,572 +5.312,5,a-phya-i1,2020-21,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,504,504.0 +6.074666666666666,5,a-phya-i1,2020-21,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +1,1,a-phya-i1,2020-21,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357 +3.541333333333333,3.54,a-phya-i1,2020-21,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,836,836.0 +4.576,4.58,a-phya-i1,2020-21,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,642,642.0 +5.4,5,a-phya-i1,2020-21,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,390,487.5 +0.30933333333333335,1,a-phya-i1,2020-21,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,721,1442.0 +4.193333333333333,4.19,a-phya-i1,2020-21,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,571,713.75 +7.157333333333334,5,a-phya-i1,2020-21,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,158,158.0 +6.784,5,a-phya-i1,2020-21,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +6.810666666666667,5,a-phya-i1,2020-21,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,223,223.0 +6.592,5,a-phya-i1,2020-21,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,264,264.0 +6.485333333333333,5,a-phya-i1,2020-21,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,284,284.0 +7.658666666666667,5,a-phya-i1,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,64,64.0 +6.213333333333333,5,a-phya-i1,2020-21,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +6.314666666666667,5,a-phya-i1,2020-21,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,316,316.0 +5.0906666666666665,5,a-phya-i1,2020-21,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1091,545.5 +4.735555555555555,4.74,a-phya-i1,2020-21,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.4, 1.0, 0.0, 2.4,1469,612.0833333333334 +7.450666666666667,5,a-phya-i1,2020-21,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,103,103.0 +5.941333333333334,5,a-phya-i1,2020-21,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 +5.322666666666667,5,a-phya-i1,2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,502,502.0 +6.437333333333333,5,a-phya-i1,2020-21,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +6.464,5,a-phya-i1,2020-21,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +6.953333333333333,5,a-phya-i1,2020-21,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,157,196.25 +4.608,4.61,a-phya-i1,2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,636,636.0 +7.271111111111111,5,a-phya-i1,2020-21,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.6,82,136.66666666666669 +5.991111111111111,5,a-phya-i1,2020-21,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.6,226,376.6666666666667 +5.9781818181818185,5,a-phya-i1,2020-21,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.6, 0.5, 0.0, 0.0, 0.0, 1.1,417,379.09090909090907 +6.364444444444444,5,a-phya-i1,2020-21,West Springfield - Memorial,03320025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,184,306.6666666666667 +6.56,5,a-phya-i1,2020-21,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,162,270.0 +3.8133333333333335,3.81,a-phya-i1,2020-21,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.6,471,785.0 +5.742222222222221,5,a-phya-i1,2020-21,West Springfield - Tatham,03320040, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.6,254,423.33333333333337 +2.1575757575757586,2.16,a-phya-i1,2020-21,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,1205,1095.4545454545453 +-40.64,1,a-phya-i1,2020-21,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,912,9120.0 +6.304,5,a-phya-i1,2020-21,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 +5.584,5,a-phya-i1,2020-21,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,453,453.0 +6.6737777777777785,5,a-phya-i1,2020-21,Westborough - J Harding Armstrong,03210005, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,373,248.66666666666666 +3.312,3.31,a-phya-i1,2020-21,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,879,879.0 +4.693333333333333,4.69,a-phya-i1,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,620,620.0 +1.696,1.7,a-phya-i1,2020-21,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1182,1182.0 +6.933333333333334,5,a-phya-i1,2020-21,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,200,200.0 +7.370666666666667,5,a-phya-i1,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,118,118.0 +6.981333333333334,5,a-phya-i1,2020-21,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,191,191.0 +6.298666666666667,5,a-phya-i1,2020-21,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,319,319.0 +6.112,5,a-phya-i1,2020-21,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +6.32,5,a-phya-i1,2020-21,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,315,315.0 +6.464,5,a-phya-i1,2020-21,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +5.050666666666666,5,a-phya-i1,2020-21,Westfield - Westfield High,03250505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1106,553.0 +4.304,4.3,a-phya-i1,2020-21,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,693,693.0 +3.888,3.89,a-phya-i1,2020-21,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,771,771.0 +5.207272727272727,5,a-phya-i1,2020-21,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,576,523.6363636363636 +6.096,5,a-phya-i1,2020-21,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,357,357.0 +5.157333333333334,5,a-phya-i1,2020-21,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,533,533.0 +6.512,5,a-phya-i1,2020-21,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,279,279.0 +6.24,5,a-phya-i1,2020-21,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +6.144,5,a-phya-i1,2020-21,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +6.234666666666667,5,a-phya-i1,2020-21,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,331,331.0 +7.226666666666667,5,a-phya-i1,2020-21,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.6, 0.0, 1.4, 0.0, 0.0, 2.0,290,145.0 +4.794666666666667,4.79,a-phya-i1,2020-21,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,601,601.0 +2.1511111111111108,2.15,a-phya-i1,2020-21,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1645,1096.6666666666667 +7.722666666666667,5,a-phya-i1,2020-21,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,104,52.0 +5.8,5,a-phya-i1,2020-21,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,330,412.5 +7.3644444444444455,5,a-phya-i1,2020-21,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 1.0, 1.4, 0.0, 0.0, 2.4,286,119.16666666666667 +3.8,3.8,a-phya-i1,2020-21,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,630,787.5 +4.906666666666666,4.91,a-phya-i1,2020-21,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,464,580.0 +6.693333333333333,5,a-phya-i1,2020-21,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,196,245.0 +6.16,5,a-phya-i1,2020-21,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,345,345.0 +6.364444444444444,5,a-phya-i1,2020-21,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,460,306.6666666666667 +6.044444444444444,5,a-phya-i1,2020-21,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,550,366.6666666666667 +6.981333333333334,5,a-phya-i1,2020-21,Westwood - Deerfield School,03350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,191,191.0 +6.426666666666667,5,a-phya-i1,2020-21,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,295,295.0 +4.357333333333333,4.36,a-phya-i1,2020-21,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,683,683.0 +6.554666666666667,5,a-phya-i1,2020-21,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +1,1,a-phya-i1,2020-21,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192 +5.352,5,a-phya-i1,2020-21,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,993,496.5 +7.710476190476191,5,a-phya-i1,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,38,54.28571428571429 +6.458666666666667,5,a-phya-i1,2020-21,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,289,289.0 +4.871111111111111,4.87,a-phya-i1,2020-21,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,880,586.6666666666666 +1,1,a-phya-i1,2020-21,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341 +5.109333333333334,5,a-phya-i1,2020-21,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,271,542.0 +6.72,5,a-phya-i1,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,120,240.0 +5.664,5,a-phya-i1,2020-21,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,219,438.0 +5.1626666666666665,5,a-phya-i1,2020-21,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,266,532.0 +5.8133333333333335,5,a-phya-i1,2020-21,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,205,410.0 +4.192,4.19,a-phya-i1,2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,357,714.0 +4.789333333333333,4.79,a-phya-i1,2020-21,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,301,602.0 +2.008,2.01,a-phya-i1,2020-21,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.5, 1.0, 0.0, 0.5, 0.0, 2.0,2247,1123.5 +3.968,3.97,a-phya-i1,2020-21,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,378,756.0 +7.381333333333333,5,a-phya-i1,2020-21,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,116,116.0 +5.798787878787879,5,a-phya-i1,2020-21,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,454,412.7272727272727 +5.721212121212122,5,a-phya-i1,2020-21,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,470,427.27272727272725 +5.9781818181818185,5,a-phya-i1,2020-21,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,417,379.09090909090907 +5.595151515151515,5,a-phya-i1,2020-21,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,496,450.9090909090909 +7.288888888888888,5,a-phya-i1,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,80,133.33333333333334 +5.163174603174603,5,a-phya-i1,2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.1, 0.0, 1.0, 0.0, 2.1,1117,531.9047619047619 +5.338181818181819,5,a-phya-i1,2020-21,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,549,499.09090909090907 +4.669333333333333,4.67,a-phya-i1,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1249,624.5 +7.365333333333333,5,a-phya-i1,2020-21,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,119,119.0 +7.402666666666667,5,a-phya-i1,2020-21,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,112,112.0 +6.688,5,a-phya-i1,2020-21,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,246,246.0 +6.309333333333333,5,a-phya-i1,2020-21,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,317,317.0 +6.826666666666667,5,a-phya-i1,2020-21,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,220,220.0 +7.466666666666667,5,a-phya-i1,2020-21,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,100,100.0 +6.322222222222221,5,a-phya-i1,2020-21,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.4, 0.0, 2.4,755,314.58333333333337 +6.093333333333334,5,a-phya-i1,2020-21,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,715,357.5 +6.053333333333334,5,a-phya-i1,2020-21,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +6.624,5,a-phya-i1,2020-21,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +1,1,a-phya-i1,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35 +6.602666666666667,5,a-phya-i1,2020-21,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +1,1,a-phya-i1,2020-21,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274 +6.437333333333333,5,a-phya-i1,2020-21,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,293,293.0 +1,1,a-phya-i1,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56 +6.2026666666666666,5,a-phya-i1,2020-21,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +5.904,5,a-phya-i1,2020-21,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +5.285333333333333,5,a-phya-i1,2020-21,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,509,509.0 +3.8704761904761904,3.87,a-phya-i1,2020-21,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,1084,774.2857142857143 +6.042666666666666,5,a-phya-i1,2020-21,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,367,367.0 +5.850666666666666,5,a-phya-i1,2020-21,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +4.061754385964912,4.06,a-phya-i1,2020-21,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 0.0, 1.9,1403,738.421052631579 +5.850666666666666,5,a-phya-i1,2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +5.632,5,a-phya-i1,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,444,444.0 +1,1,a-phya-i1,2020-21,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562 +5.568,5,a-phya-i1,2020-21,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,456,456.0 +6.016,5,a-phya-i1,2020-21,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +6.602666666666667,5,a-phya-i1,2020-21,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,524,262.0 +7.256,5,a-phya-i1,2020-21,Woburn - Goodyear Elementary School,03470005, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,279,139.5 +6.042666666666666,5,a-phya-i1,2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +6.64,5,a-phya-i1,2020-21,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,510,255.0 +6.949333333333334,5,a-phya-i1,2020-21,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,197,197.0 +7.245333333333333,5,a-phya-i1,2020-21,Woburn - Malcolm White,03470055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,283,141.5 +6.725333333333333,5,a-phya-i1,2020-21,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,239,239.0 +6.549333333333333,5,a-phya-i1,2020-21,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,272,272.0 +4.704,4.7,a-phya-i1,2020-21,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1236,618.0 +4.928,4.93,a-phya-i1,2020-21,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,576,576.0 +4.330666666666667,4.33,a-phya-i1,2020-21,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,688,688.0 +1.8506666666666667,1.85,a-phya-i1,2020-21,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1153,1153.0 +6.613333333333333,5,a-phya-i1,2020-21,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,260,260.0 +6.4,5,a-phya-i1,2020-21,Worcester - Canterbury,03480045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +6.792,5,a-phya-i1,2020-21,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,453,226.5 +5.466666666666667,5,a-phya-i1,2020-21,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +1,1,a-phya-i1,2020-21,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462 +5.088,5,a-phya-i1,2020-21,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,546,546.0 +6.725333333333333,5,a-phya-i1,2020-21,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,239,239.0 +5.957333333333334,5,a-phya-i1,2020-21,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +4.1626666666666665,4.16,a-phya-i1,2020-21,Worcester - Doherty Memorial High,03480512, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1439,719.5 +1,1,a-phya-i1,2020-21,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401 +6.16,5,a-phya-i1,2020-21,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +5.586666666666667,5,a-phya-i1,2020-21,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,905,452.5 +6.8053333333333335,5,a-phya-i1,2020-21,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,224,224.0 +5.248,5,a-phya-i1,2020-21,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,516,516.0 +6.101333333333334,5,a-phya-i1,2020-21,Worcester - Goddard School/Science Technical,03480100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +5.989333333333334,5,a-phya-i1,2020-21,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,377,377.0 +7.432888888888888,5,a-phya-i1,2020-21,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 3.0,319,106.33333333333333 +6.677333333333333,5,a-phya-i1,2020-21,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,248,248.0 +5.957333333333334,5,a-phya-i1,2020-21,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,383,383.0 +6.298666666666667,5,a-phya-i1,2020-21,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,319,319.0 +6.672,5,a-phya-i1,2020-21,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,249,249.0 +6.490666666666667,5,a-phya-i1,2020-21,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,283,283.0 +1,1,a-phya-i1,2020-21,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210 +6.581333333333333,5,a-phya-i1,2020-21,Worcester - Nelson Place,03480200, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,532,266.0 +6.618666666666667,5,a-phya-i1,2020-21,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,518,259.0 +4.536,4.54,a-phya-i1,2020-21,Worcester - North High,03480515, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1299,649.5 +6.144,5,a-phya-i1,2020-21,Worcester - Quinsigamond,03480210, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,696,348.0 +5.52,5,a-phya-i1,2020-21,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,465,465.0 +6.330666666666667,5,a-phya-i1,2020-21,Worcester - Roosevelt,03480220, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,626,313.0 +4.2,4.2,a-phya-i1,2020-21,Worcester - South High Community,03480520, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1425,712.5 +5.517333333333333,5,a-phya-i1,2020-21,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,931,465.5 +5.882666666666666,5,a-phya-i1,2020-21,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,397,397.0 +6.1546666666666665,5,a-phya-i1,2020-21,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,346,346.0 +5.925333333333334,5,a-phya-i1,2020-21,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,389,389.0 +6.757333333333333,5,a-phya-i1,2020-21,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,233,233.0 +5.509333333333333,5,a-phya-i1,2020-21,Worcester - Vernon Hill School,03480280, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,467,467.0 +7.322666666666667,5,a-phya-i1,2020-21,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,127,127.0 +6.2026666666666666,5,a-phya-i1,2020-21,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,337,337.0 +5.312,5,a-phya-i1,2020-21,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,504,504.0 +6.037333333333334,5,a-phya-i1,2020-21,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,368,368.0 +6.037333333333334,5,a-phya-i1,2020-21,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,736,368.0 +4.050666666666666,4.05,a-phya-i1,2020-21,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1481,740.5 +7.664,5,a-phya-i1,2020-21,Worthington - R. H. Conwell,03490010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,63,63.0 +6.010666666666666,5,a-phya-i1,2020-21,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +6.696,5,a-phya-i1,2020-21,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,489,244.5 +4.96,4.96,a-phya-i1,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 2.5,1425,570.0 +3.3066666666666666,3.31,a-phya-i1,2019-20,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,88,880.0 +4.8373333333333335,4.84,a-phya-i1,2019-20,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,593,593.0 +4.32,4.32,a-phya-i1,2019-20,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,690,690.0 +5.488,5,a-phya-i1,2019-20,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +6.394666666666667,5,a-phya-i1,2019-20,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,301,301.0 +-1.3688888888888893,1,a-phya-i1,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,527,1756.6666666666667 +3.6024242424242425,3.6,a-phya-i1,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.4, 0.0, 2.2,1814,824.5454545454545 +5.482666666666667,5,a-phya-i1,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,472,472.0 +5.904,5,a-phya-i1,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,393,393.0 +1,1,a-phya-i1,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102 +5.818666666666667,5,a-phya-i1,2019-20,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,409,409.0 +5.253333333333333,5,a-phya-i1,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,515,515.0 +5.466666666666667,5,a-phya-i1,2019-20,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,475,475.0 +6.021333333333334,5,a-phya-i1,2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,371,371.0 +5.133333333333334,5,a-phya-i1,2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,860,537.5 +1,1,a-phya-i1,2019-20,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567 +5.637333333333333,5,a-phya-i1,2019-20,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,443,443.0 +4.79,4.79,a-phya-i1,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,963,601.875 +7.1466666666666665,5,a-phya-i1,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,160,160.0 +5.136,5,a-phya-i1,2019-20,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1074,537.0 +5.029333333333334,5,a-phya-i1,2019-20,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,557,557.0 +6.176,5,a-phya-i1,2019-20,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,342,342.0 +6.634666666666667,5,a-phya-i1,2019-20,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,256,256.0 +6.394666666666667,5,a-phya-i1,2019-20,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,301,301.0 +4.858666666666666,4.86,a-phya-i1,2019-20,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,589,589.0 +5.914666666666666,5,a-phya-i1,2019-20,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +4.517333333333333,4.52,a-phya-i1,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,653,653.0 +6.1546666666666665,5,a-phya-i1,2019-20,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,346,346.0 +5.1786666666666665,5,a-phya-i1,2019-20,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,529,529.0 +1,1,a-phya-i1,2019-20,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53 +4.437333333333333,4.44,a-phya-i1,2019-20,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,668,668.0 +5.781333333333333,5,a-phya-i1,2019-20,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,416,416.0 +5.866666666666666,5,a-phya-i1,2019-20,Amherst - Crocker Farm Elementary,00080009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,400,400.0 +6.341333333333333,5,a-phya-i1,2019-20,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,311,311.0 +5.962666666666666,5,a-phya-i1,2019-20,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +5.274074074074075,5,a-phya-i1,2019-20,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,920,511.1111111111111 +5.728,5,a-phya-i1,2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,426,426.0 +4.808888888888888,4.81,a-phya-i1,2019-20,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,1795,598.3333333333334 +5.1626666666666665,5,a-phya-i1,2019-20,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,532,532.0 +4.981333333333334,4.98,a-phya-i1,2019-20,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,566,566.0 +5.237333333333333,5,a-phya-i1,2019-20,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,518,518.0 +6.0906666666666665,5,a-phya-i1,2019-20,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,358,358.0 +5.189333333333333,5,a-phya-i1,2019-20,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,527,527.0 +1,1,a-phya-i1,2019-20,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81 +5.445333333333333,5,a-phya-i1,2019-20,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,479,479.0 +4.832,4.83,a-phya-i1,2019-20,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,594,594.0 +1,1,a-phya-i1,2019-20,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406 +6.6,5,a-phya-i1,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,525,262.5 +5.105641025641026,5,a-phya-i1,2019-20,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 2.0, 0.0, 0.0, 2.6,1411,542.6923076923076 +5.1466666666666665,5,a-phya-i1,2019-20,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,535,535.0 +5.482666666666667,5,a-phya-i1,2019-20,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,472,472.0 +5.408,5,a-phya-i1,2019-20,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +5.632,5,a-phya-i1,2019-20,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,444,444.0 +5.653333333333333,5,a-phya-i1,2019-20,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,440,440.0 +5.6,5,a-phya-i1,2019-20,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,450,450.0 +7.604444444444446,5,a-phya-i1,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 1.2,89,74.16666666666667 +5.602666666666667,5,a-phya-i1,2019-20,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,899,449.5 +6.362666666666667,5,a-phya-i1,2019-20,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,307,307.0 +5.258666666666667,5,a-phya-i1,2019-20,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,514,514.0 +5.1786666666666665,5,a-phya-i1,2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,529,529.0 +1,1,a-phya-i1,2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199 +4.442666666666667,4.44,a-phya-i1,2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,667,667.0 +4.896,4.9,a-phya-i1,2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +5.989333333333334,5,a-phya-i1,2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +5.25,5,a-phya-i1,2019-20,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 0.4, 0.0, 1.6,825,515.625 +4.490666666666667,4.49,a-phya-i1,2019-20,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,658,658.0 +5.656888888888889,5,a-phya-i1,2019-20,Ashland - David Mindess,00140015, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,659,439.3333333333333 +6.362666666666667,5,a-phya-i1,2019-20,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,614,307.0 +7.504,5,a-phya-i1,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,93,93.0 +3.9431111111111115,3.94,a-phya-i1,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,1141,760.6666666666666 +6.376,5,a-phya-i1,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,609,304.5 +6.250666666666667,5,a-phya-i1,2019-20,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 +5.674666666666667,5,a-phya-i1,2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,436,436.0 +7.216,5,a-phya-i1,2019-20,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,147,147.0 +4.528,4.53,a-phya-i1,2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1302,651.0 +5.978666666666666,5,a-phya-i1,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,379,379.0 +1,1,a-phya-i1,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53 +4.503703703703704,4.5,a-phya-i1,2019-20,Attleboro - Attleboro High,00160505, 0.0, 1.0, 0.0, 0.0, 0.6, 1.1, 0.0, 2.7,1770,655.5555555555555 +4.688,4.69,a-phya-i1,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,621,621.0 +1,1,a-phya-i1,2019-20,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184 +5.568,5,a-phya-i1,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,456,456.0 +5.541333333333333,5,a-phya-i1,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +5.6,5,a-phya-i1,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,450,450.0 +4.506666666666667,4.51,a-phya-i1,2019-20,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +5.92,5,a-phya-i1,2019-20,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 +4.997333333333334,5.0,a-phya-i1,2019-20,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,563,563.0 +5.213333333333333,5,a-phya-i1,2019-20,Auburn - Auburn Middle,00170305, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,627,522.5 +4.471111111111111,4.47,a-phya-i1,2019-20,Auburn - Auburn Senior High,00170505, 0.0, 0.2, 0.0, 0.4, 0.6, 0.0, 0.0, 1.2,794,661.6666666666667 +6.728888888888888,5,a-phya-i1,2019-20,Auburn - Bryn Mawr,00170010, 0.0, 0.2, 0.6, 0.4, 0.0, 0.0, 0.0, 1.2,286,238.33333333333334 +6.63111111111111,5,a-phya-i1,2019-20,Auburn - Pakachoag School,00170025, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,308,256.6666666666667 +5.24,5,a-phya-i1,2019-20,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0, 1.2,621,517.5 +6.352,5,a-phya-i1,2019-20,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,309,309.0 +5.781333333333333,5,a-phya-i1,2019-20,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,416,416.0 +6.005333333333334,5,a-phya-i1,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +5.8293333333333335,5,a-phya-i1,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,407,407.0 +6.1706666666666665,5,a-phya-i1,2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,343,343.0 +5.024,5,a-phya-i1,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,558,558.0 +6.442666666666667,5,a-phya-i1,2019-20,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,292,292.0 +4.787555555555556,4.79,a-phya-i1,2019-20,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,1807,602.3333333333334 +5.984,5,a-phya-i1,2019-20,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,756,378.0 +5.856,5,a-phya-i1,2019-20,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,804,402.0 +6.704,5,a-phya-i1,2019-20,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,243,243.0 +7.141333333333334,5,a-phya-i1,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,161,161.0 +6.352,5,a-phya-i1,2019-20,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,309,309.0 +6.693333333333333,5,a-phya-i1,2019-20,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +5.738666666666667,5,a-phya-i1,2019-20,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +1,1,a-phya-i1,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463 +3.514666666666667,3.51,a-phya-i1,2019-20,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,841,841.0 +4.8373333333333335,4.84,a-phya-i1,2019-20,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,593,593.0 +4.570666666666667,4.57,a-phya-i1,2019-20,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,643,643.0 +1,1,a-phya-i1,2019-20,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612 +5.329523809523809,5,a-phya-i1,2019-20,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.2, 0.0, 0.0, 0.2, 0.0, 1.4,701,500.7142857142857 +5.773333333333333,5,a-phya-i1,2019-20,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,501,417.5 +7.16,5,a-phya-i1,2019-20,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,189,157.5 +6.346666666666667,5,a-phya-i1,2019-20,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,372,310.0 +6.182857142857142,5,a-phya-i1,2019-20,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.2, 0.0, 0.0, 1.2, 0.0, 1.4,477,340.7142857142857 +1,1,a-phya-i1,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98 +4.021333333333334,4.02,a-phya-i1,2019-20,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,746,746.0 +4.506666666666667,4.51,a-phya-i1,2019-20,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,655,655.0 +6.224,5,a-phya-i1,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +1,1,a-phya-i1,2019-20,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32 +6.538666666666667,5,a-phya-i1,2019-20,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +2.979047619047619,2.98,a-phya-i1,2019-20,Belmont - Belmont High,00260505, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4,1318,941.4285714285714 +6.053333333333334,5,a-phya-i1,2019-20,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +5.68,5,a-phya-i1,2019-20,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +4.650666666666667,4.65,a-phya-i1,2019-20,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,628,628.0 +5.52,5,a-phya-i1,2019-20,Belmont - Winn Brook,00260005, 0.0, 0.6, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0,465,465.0 +4.029333333333334,4.03,a-phya-i1,2019-20,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 1.0, 0.0, 0.4, 0.6, 0.0, 2.0,1489,744.5 +1,1,a-phya-i1,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336 +5.64,5,a-phya-i1,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,708,442.5 +1,1,a-phya-i1,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332 +2.432,2.43,a-phya-i1,2019-20,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,522,1044.0 +3.808,3.81,a-phya-i1,2019-20,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,393,786.0 +6.016,5,a-phya-i1,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +5.290666666666667,5,a-phya-i1,2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,508,508.0 +6.250666666666667,5,a-phya-i1,2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,328,328.0 +6.1386666666666665,5,a-phya-i1,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +7.024,5,a-phya-i1,2019-20,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +6.410666666666667,5,a-phya-i1,2019-20,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,298,298.0 +4.986666666666666,4.99,a-phya-i1,2019-20,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,565,565.0 +5.76,5,a-phya-i1,2019-20,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,420,420.0 +4.501333333333333,4.5,a-phya-i1,2019-20,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1312,656.0 +5.436444444444444,5,a-phya-i1,2019-20,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,1442,480.6666666666667 +1,1,a-phya-i1,2019-20,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314 +5.712,5,a-phya-i1,2019-20,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +6.224,5,a-phya-i1,2019-20,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,333,333.0 +7.424,5,a-phya-i1,2019-20,Beverly - McKeown School,00300002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,108,108.0 +6.176,5,a-phya-i1,2019-20,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,342,342.0 +5.641333333333334,5,a-phya-i1,2019-20,Billerica - Billerica Memorial High School,00310505, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 4.0,1769,442.25 +6.704,5,a-phya-i1,2019-20,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,243,243.0 +6.144,5,a-phya-i1,2019-20,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,348,348.0 +1,1,a-phya-i1,2019-20,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320 +5.125333333333334,5,a-phya-i1,2019-20,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,539,539.0 +6.376,5,a-phya-i1,2019-20,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,609,304.5 +1,1,a-phya-i1,2019-20,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425 +5.0986666666666665,5,a-phya-i1,2019-20,Billerica - Thomas Ditson,00310005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,544,544.0 +1,1,a-phya-i1,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1224 +4.917333333333334,4.92,a-phya-i1,2019-20,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,289,578.0 +5.722666666666667,5,a-phya-i1,2019-20,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,427,427.0 +5.818666666666667,5,a-phya-i1,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,409,409.0 +6.581333333333333,5,a-phya-i1,2019-20,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +6.645333333333333,5,a-phya-i1,2019-20,Blackstone-Millville - Millville Elementary,06220010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,254,254.0 +3.4346666666666668,3.43,a-phya-i1,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,856,856.0 +6.762666666666667,5,a-phya-i1,2019-20,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,232,232.0 +7.1786666666666665,5,a-phya-i1,2019-20,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,154,154.0 +6.378666666666667,5,a-phya-i1,2019-20,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +7.018666666666666,5,a-phya-i1,2019-20,Boston - Blackstone,00350390, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,552,184.0 +1,1,a-phya-i1,2019-20,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183 +5.456,5,a-phya-i1,2019-20,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,477,477.0 +1,1,a-phya-i1,2019-20,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175 +5.301333333333333,5,a-phya-i1,2019-20,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,506,506.0 +5.712,5,a-phya-i1,2019-20,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +3.607111111111111,3.61,a-phya-i1,2019-20,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,2471,823.6666666666666 +3.272,3.27,a-phya-i1,2019-20,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1773,886.5 +6.538666666666667,5,a-phya-i1,2019-20,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,274,274.0 +7.048888888888888,5,a-phya-i1,2019-20,Boston - Brighton High,00350505, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,535,178.33333333333334 +7.925333333333334,5,a-phya-i1,2019-20,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,28,14.0 +5.717333333333333,5,a-phya-i1,2019-20,Boston - Charles H Taylor,00350054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +5.1626666666666665,5,a-phya-i1,2019-20,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,532,532.0 +3.4346666666666668,3.43,a-phya-i1,2019-20,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,856,856.0 +6.010666666666666,5,a-phya-i1,2019-20,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,373,373.0 +1,1,a-phya-i1,2019-20,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57 +7.04,5,a-phya-i1,2019-20,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,360,180.0 +6.583111111111111,5,a-phya-i1,2019-20,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,797,265.6666666666667 +5.442666666666667,5,a-phya-i1,2019-20,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,959,479.5 +5.290666666666667,5,a-phya-i1,2019-20,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,254,508.0 +1,1,a-phya-i1,2019-20,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103 +5.7973333333333334,5,a-phya-i1,2019-20,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 +5.237333333333333,5,a-phya-i1,2019-20,Boston - Dearborn,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,518,518.0 +5.904,5,a-phya-i1,2019-20,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,393,393.0 +3.68,3.68,a-phya-i1,2019-20,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,810,810.0 +6.981333333333334,5,a-phya-i1,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,191,191.0 +7.623111111111112,5,a-phya-i1,2019-20,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,212,70.66666666666667 +4.309333333333333,4.31,a-phya-i1,2019-20,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,692,692.0 +1,1,a-phya-i1,2019-20,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108 +6.8853333333333335,5,a-phya-i1,2019-20,Boston - East Boston Early Childhood Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,209,209.0 +5.109333333333334,5,a-phya-i1,2019-20,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1084,542.0 +6.405333333333333,5,a-phya-i1,2019-20,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,598,299.0 +1,1,a-phya-i1,2019-20,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234 +6.074666666666666,5,a-phya-i1,2019-20,Boston - Eliot Elementary,00350096, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,722,361.0 +7.28,5,a-phya-i1,2019-20,Boston - Ellis Mendell,00350100, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,270,135.0 +5.397333333333333,5,a-phya-i1,2019-20,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +5.888,5,a-phya-i1,2019-20,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +5.68,5,a-phya-i1,2019-20,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +5.9093333333333335,5,a-phya-i1,2019-20,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +7.018666666666666,5,a-phya-i1,2019-20,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,184,184.0 +1,1,a-phya-i1,2019-20,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,100 +6.053333333333334,5,a-phya-i1,2019-20,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +6.906666666666666,5,a-phya-i1,2019-20,Boston - Haynes Early Education Center,00350010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,205,205.0 +6.762666666666667,5,a-phya-i1,2019-20,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,232,232.0 +7.248,5,a-phya-i1,2019-20,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,141,141.0 +6.773333333333333,5,a-phya-i1,2019-20,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 +7.594666666666667,5,a-phya-i1,2019-20,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,76,76.0 +-6.026666666666666,1,a-phya-i1,2019-20,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,263,2630.0 +6.616,5,a-phya-i1,2019-20,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,519,259.5 +1,1,a-phya-i1,2019-20,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280 +5.962666666666666,5,a-phya-i1,2019-20,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +1,1,a-phya-i1,2019-20,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320 +6.397333333333333,5,a-phya-i1,2019-20,Boston - James W Hennigan,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,601,300.5 +5.776,5,a-phya-i1,2019-20,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +7.610666666666667,5,a-phya-i1,2019-20,Boston - John D Philbrick,00350172, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,146,73.0 +6.973333333333334,5,a-phya-i1,2019-20,Boston - John F Kennedy,00350166, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,385,192.5 +6.309333333333333,5,a-phya-i1,2019-20,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,317,317.0 +1,1,a-phya-i1,2019-20,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258 +6.085333333333334,5,a-phya-i1,2019-20,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +6.288,5,a-phya-i1,2019-20,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,642,321.0 +7.232,5,a-phya-i1,2019-20,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,144,144.0 +6.752,5,a-phya-i1,2019-20,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +5.88,5,a-phya-i1,2019-20,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,795,397.5 +6.8053333333333335,5,a-phya-i1,2019-20,Boston - Joyce Kilmer,00350190, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,448,224.0 +5.1146666666666665,5,a-phya-i1,2019-20,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,541,541.0 +7.482666666666667,5,a-phya-i1,2019-20,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,194,97.0 +1,1,a-phya-i1,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454 +4.533333333333333,4.53,a-phya-i1,2019-20,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,650,650.0 +7.296,5,a-phya-i1,2019-20,Boston - Lyon K-8,00350004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,132,132.0 +7.290666666666667,5,a-phya-i1,2019-20,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 +5.277333333333333,5,a-phya-i1,2019-20,Boston - Madison Park High,00350537, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1021,510.5 +1,1,a-phya-i1,2019-20,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273 +6.298666666666667,5,a-phya-i1,2019-20,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,319,319.0 +6.346666666666667,5,a-phya-i1,2019-20,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,930,310.0 +4.976,4.98,a-phya-i1,2019-20,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,567,567.0 +5.834666666666666,5,a-phya-i1,2019-20,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,406,406.0 +5.728,5,a-phya-i1,2019-20,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +7.141333333333334,5,a-phya-i1,2019-20,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,161,161.0 +6.192,5,a-phya-i1,2019-20,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,678,339.0 +1,1,a-phya-i1,2019-20,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223 +1,1,a-phya-i1,2019-20,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,167 +7.205333333333333,5,a-phya-i1,2019-20,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,149,149.0 +5.616,5,a-phya-i1,2019-20,Boston - New Mission High School,00350542, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +6.432,5,a-phya-i1,2019-20,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,294,294.0 +-0.4746666666666667,1,a-phya-i1,2019-20,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1589,1589.0 +6.656,5,a-phya-i1,2019-20,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,252,252.0 +5.634666666666667,5,a-phya-i1,2019-20,Boston - Orchard Gardens,00350257, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,887,443.5 +6.581333333333333,5,a-phya-i1,2019-20,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,266,266.0 +5.818666666666667,5,a-phya-i1,2019-20,Boston - Paul A Dever,00350268, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +7.056,5,a-phya-i1,2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,177,177.0 +6.72,5,a-phya-i1,2019-20,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,240,240.0 +6.578666666666667,5,a-phya-i1,2019-20,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,533,266.5 +5.8613333333333335,5,a-phya-i1,2019-20,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +5.565333333333333,5,a-phya-i1,2019-20,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,913,456.5 +1,1,a-phya-i1,2019-20,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114 +1,1,a-phya-i1,2019-20,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222 +6.773333333333333,5,a-phya-i1,2019-20,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 +5.856,5,a-phya-i1,2019-20,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +5.472,5,a-phya-i1,2019-20,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,474,474.0 +3.248,3.25,a-phya-i1,2019-20,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,891,891.0 +6.490666666666667,5,a-phya-i1,2019-20,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,566,283.0 +6.421333333333333,5,a-phya-i1,2019-20,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +1,1,a-phya-i1,2019-20,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,758 +7.792,5,a-phya-i1,2019-20,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,39,39.0 +6.474666666666667,5,a-phya-i1,2019-20,Boston - Warren-Prescott,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,572,286.0 +6.698666666666667,5,a-phya-i1,2019-20,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,244,244.0 +7.850666666666666,5,a-phya-i1,2019-20,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,28,28.0 +5.968,5,a-phya-i1,2019-20,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +1,1,a-phya-i1,2019-20,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223 +4.8053333333333335,4.81,a-phya-i1,2019-20,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,599,599.0 +7.574666666666666,5,a-phya-i1,2019-20,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 4.0,319,79.75 +5.696,5,a-phya-i1,2019-20,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,432,432.0 +1,1,a-phya-i1,2019-20,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240 +6.405333333333333,5,a-phya-i1,2019-20,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,598,299.0 +6.152,5,a-phya-i1,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,693,346.5 +5.792,5,a-phya-i1,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,414,414.0 +5.333333333333333,5,a-phya-i1,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,500,500.0 +4.9013333333333335,4.9,a-phya-i1,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,581,581.0 +5.52,5,a-phya-i1,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,930,465.0 +5.541333333333333,5,a-phya-i1,2019-20,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,461,461.0 +5.472,5,a-phya-i1,2019-20,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,474,474.0 +5.274666666666667,5,a-phya-i1,2019-20,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,511,511.0 +5.541333333333333,5,a-phya-i1,2019-20,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 +6.277333333333333,5,a-phya-i1,2019-20,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,323,323.0 +5.738666666666667,5,a-phya-i1,2019-20,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +5.84,5,a-phya-i1,2019-20,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,405,405.0 +4.750222222222222,4.75,a-phya-i1,2019-20,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,1828,609.3333333333334 +6.624,5,a-phya-i1,2019-20,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +4.644444444444444,4.64,a-phya-i1,2019-20,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,755,629.1666666666667 +5.770666666666667,5,a-phya-i1,2019-20,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,418,418.0 +5.653333333333333,5,a-phya-i1,2019-20,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,440,440.0 +5.8613333333333335,5,a-phya-i1,2019-20,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 +6.165333333333334,5,a-phya-i1,2019-20,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,344,344.0 +6.64,5,a-phya-i1,2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,255,255.0 +4.314666666666667,4.31,a-phya-i1,2019-20,Braintree - South Middle School,00400310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,691,691.0 +6.688,5,a-phya-i1,2019-20,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,246,246.0 +6.8053333333333335,5,a-phya-i1,2019-20,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,224,224.0 +6.218666666666667,5,a-phya-i1,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +5.04,5,a-phya-i1,2019-20,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,555,555.0 +5.477333333333333,5,a-phya-i1,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,1419,473.0 +5.2,5,a-phya-i1,2019-20,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,525,525.0 +6.24,5,a-phya-i1,2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +4.8853333333333335,4.89,a-phya-i1,2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1168,584.0 +4.437333333333333,4.44,a-phya-i1,2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,668,668.0 +1,1,a-phya-i1,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +4.197333333333333,4.2,a-phya-i1,2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,713,713.0 +6.405333333333333,5,a-phya-i1,2019-20,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +5.594666666666667,5,a-phya-i1,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +4.52,4.52,a-phya-i1,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1305,652.5 +1,1,a-phya-i1,2019-20,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568 +1,1,a-phya-i1,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237 +7.725333333333333,5,a-phya-i1,2019-20,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,103,51.5 +-2.3542857142857136,1,a-phya-i1,2019-20,Brockton - Brockton High,00440505, 0.0, 0.0, 0.1, 1.0, 0.5, 0.5, 0.0, 2.1,4077,1941.4285714285713 +5.210666666666667,5,a-phya-i1,2019-20,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,523,523.0 +4.864,4.86,a-phya-i1,2019-20,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,588,588.0 +-5.635555555555557,1,a-phya-i1,2019-20,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,767,2556.666666666667 +1,1,a-phya-i1,2019-20,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694 +2.448,2.45,a-phya-i1,2019-20,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1041,1041.0 +6.8933333333333335,5,a-phya-i1,2019-20,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 1.0, 1.2,249,207.5 +1,1,a-phya-i1,2019-20,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15 +5.68,5,a-phya-i1,2019-20,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +5.248,5,a-phya-i1,2019-20,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,516,516.0 +1,1,a-phya-i1,2019-20,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64 +4.8373333333333335,4.84,a-phya-i1,2019-20,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,593,593.0 +3.941333333333333,3.94,a-phya-i1,2019-20,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,761,761.0 +-1.3973333333333333,1,a-phya-i1,2019-20,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,881,1762.0 +4.583111111111111,4.58,a-phya-i1,2019-20,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,961,640.6666666666666 +6.380606060606061,5,a-phya-i1,2019-20,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.9, 0.0, 0.3, 0.0, 1.0, 2.2,668,303.6363636363636 +7.104,5,a-phya-i1,2019-20,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,168,168.0 +5.091555555555555,5,a-phya-i1,2019-20,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,818,545.3333333333334 +4.789333333333333,4.79,a-phya-i1,2019-20,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,602,602.0 +3.8814814814814818,3.88,a-phya-i1,2019-20,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,695,772.2222222222222 +5.374666666666666,5,a-phya-i1,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 4.0,1969,492.25 +6.362666666666667,5,a-phya-i1,2019-20,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,307,307.0 +1,1,a-phya-i1,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48 +1,1,a-phya-i1,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17 +1,1,a-phya-i1,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56 +4.633535353535353,4.63,a-phya-i1,2019-20,Brookline - Brookline High,00460505, 0.0, 1.0, 0.0, 1.9, 0.0, 0.0, 0.4, 3.3,2083,631.2121212121212 +5.666031746031746,5,a-phya-i1,2019-20,Brookline - Coolidge Corner School,00460015, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 0.0, 2.1,919,437.6190476190476 +6.518518518518518,5,a-phya-i1,2019-20,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.0, 1.1, 0.6, 0.0, 0.0, 2.7,750,277.77777777777777 +5.323636363636364,5,a-phya-i1,2019-20,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,552,501.81818181818176 +-23.893333333333334,1,a-phya-i1,2019-20,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,598,5980.0 +4.707878787878788,4.71,a-phya-i1,2019-20,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,679,617.2727272727273 +5.090909090909092,5,a-phya-i1,2019-20,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,600,545.4545454545454 +6.551397849462366,5,a-phya-i1,2019-20,Brookline - Pierce,00460040, 0.0, 0.0, 1.0, 1.1, 0.0, 1.0, 0.0, 3.1,842,271.61290322580646 +7.662222222222222,5,a-phya-i1,2019-20,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,57,63.33333333333333 +6.537142857142857,5,a-phya-i1,2019-20,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 2.1,576,274.2857142857143 +6.140444444444444,5,a-phya-i1,2019-20,Burlington - Burlington High,00480505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1046,348.6666666666667 +6.17025641025641,5,a-phya-i1,2019-20,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,446,343.07692307692304 +6.7617391304347825,5,a-phya-i1,2019-20,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 2.3,534,232.17391304347828 +5.946666666666666,5,a-phya-i1,2019-20,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,770,385.0 +6.387692307692308,5,a-phya-i1,2019-20,Burlington - Memorial,00480015, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 1.3,393,302.3076923076923 +6.687179487179487,5,a-phya-i1,2019-20,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 1.3,320,246.15384615384613 +1,1,a-phya-i1,2019-20,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428 +1,1,a-phya-i1,2019-20,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1977 +1,1,a-phya-i1,2019-20,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283 +1,1,a-phya-i1,2019-20,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325 +1,1,a-phya-i1,2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285 +1,1,a-phya-i1,2019-20,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381 +1,1,a-phya-i1,2019-20,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258 +1,1,a-phya-i1,2019-20,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311 +1,1,a-phya-i1,2019-20,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311 +1,1,a-phya-i1,2019-20,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383 +1,1,a-phya-i1,2019-20,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350 +1,1,a-phya-i1,2019-20,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326 +1,1,a-phya-i1,2019-20,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326 +1,1,a-phya-i1,2019-20,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320 +1,1,a-phya-i1,2019-20,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264 +1,1,a-phya-i1,2019-20,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281 +1,1,a-phya-i1,2019-20,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282 +5.114074074074074,5,a-phya-i1,2019-20,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,974,541.1111111111111 +5.477333333333333,5,a-phya-i1,2019-20,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,473,473.0 +5.306666666666667,5,a-phya-i1,2019-20,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,505,505.0 +5.386666666666667,5,a-phya-i1,2019-20,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,490,490.0 +7.536,5,a-phya-i1,2019-20,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,87,87.0 +5.269333333333333,5,a-phya-i1,2019-20,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,768,512.0 +6.725333333333333,5,a-phya-i1,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,239,239.0 +4.714666666666667,4.71,a-phya-i1,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,616,616.0 +4.816,4.82,a-phya-i1,2019-20,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,597,597.0 +5.8293333333333335,5,a-phya-i1,2019-20,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,814,407.0 +3.9306666666666668,3.93,a-phya-i1,2019-20,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,763,763.0 +7.397333333333333,5,a-phya-i1,2019-20,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,113,113.0 +5.738666666666667,5,a-phya-i1,2019-20,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,424,424.0 +7.111111111111112,5,a-phya-i1,2019-20,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,150,166.66666666666666 +5.989333333333334,5,a-phya-i1,2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +5.328,5,a-phya-i1,2019-20,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,501,501.0 +5.386666666666667,5,a-phya-i1,2019-20,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,490,490.0 +5.397333333333333,5,a-phya-i1,2019-20,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,488,488.0 +6.682666666666667,5,a-phya-i1,2019-20,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,494,247.0 +4.234666666666667,4.23,a-phya-i1,2019-20,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1412,706.0 +4.0906666666666665,4.09,a-phya-i1,2019-20,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,733,733.0 +7.1146666666666665,5,a-phya-i1,2019-20,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,166,166.0 +3.76,3.76,a-phya-i1,2019-20,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,795,795.0 +5.637333333333333,5,a-phya-i1,2019-20,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,443,443.0 +0.5226666666666666,1,a-phya-i1,2019-20,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,1402,1402.0 +1,1,a-phya-i1,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95 +0.5973333333333334,1,a-phya-i1,2019-20,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,694,1388.0 +2.1866666666666665,2.19,a-phya-i1,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,545,1090.0 +1,1,a-phya-i1,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527 +2.368,2.37,a-phya-i1,2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,528,1056.0 +5.296,5,a-phya-i1,2019-20,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,507,507.0 +1,1,a-phya-i1,2019-20,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,570 +-1.472,1,a-phya-i1,2019-20,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,888,1776.0 +2.6773333333333333,2.68,a-phya-i1,2019-20,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,499,998.0 +7.1466666666666665,5,a-phya-i1,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,128,160.0 +6.133333333333334,5,a-phya-i1,2019-20,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 1.2,420,350.0 +6.8711111111111105,5,a-phya-i1,2019-20,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,254,211.66666666666669 +5.929696969696971,5,a-phya-i1,2019-20,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.2, 0.0, 2.2,854,388.18181818181813 +5.96,5,a-phya-i1,2019-20,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,459,382.5 +6.6177777777777775,5,a-phya-i1,2019-20,Chicopee - Bowie,00610020, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,311,259.1666666666667 +7.7377777777777785,5,a-phya-i1,2019-20,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,59,49.16666666666667 +5.132121212121213,5,a-phya-i1,2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 0.0, 2.2,1183,537.7272727272726 +6.355,5,a-phya-i1,2019-20,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.2, 0.0, 3.2,987,308.4375 +6.067878787878788,5,a-phya-i1,2019-20,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2, 0.0, 2.2,797,362.27272727272725 +6.057777777777777,5,a-phya-i1,2019-20,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,437,364.1666666666667 +6.462222222222222,5,a-phya-i1,2019-20,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,346,288.33333333333337 +6.72,5,a-phya-i1,2019-20,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,288,240.0 +6.311111111111111,5,a-phya-i1,2019-20,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,380,316.6666666666667 +6.915555555555555,5,a-phya-i1,2019-20,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,244,203.33333333333334 +6.8933333333333335,5,a-phya-i1,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,249,207.5 +1,1,a-phya-i1,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401 +1,1,a-phya-i1,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228 +1,1,a-phya-i1,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193 +1,1,a-phya-i1,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149 +2.7466666666666666,2.75,a-phya-i1,2019-20,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,197,985.0 +5.768,5,a-phya-i1,2019-20,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,837,418.5 +4.784,4.78,a-phya-i1,2019-20,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,603,603.0 +5.546666666666667,5,a-phya-i1,2019-20,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,460,460.0 +1,1,a-phya-i1,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339 +5.498666666666667,5,a-phya-i1,2019-20,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,469,469.0 +1,1,a-phya-i1,2019-20,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347 +6.1386666666666665,5,a-phya-i1,2019-20,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +6.375757575757576,5,a-phya-i1,2019-20,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.6, 0.5, 0.0, 1.1,335,304.5454545454545 +5.514666666666667,5,a-phya-i1,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,932,466.0 +6.261333333333333,5,a-phya-i1,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,326,326.0 +1,1,a-phya-i1,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400 +1,1,a-phya-i1,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400 +1,1,a-phya-i1,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399 +5.402666666666667,5,a-phya-i1,2019-20,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +6.0986666666666665,5,a-phya-i1,2019-20,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,713,356.5 +5.616,5,a-phya-i1,2019-20,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,447,447.0 +5.770666666666667,5,a-phya-i1,2019-20,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,418,418.0 +4.586666666666667,4.59,a-phya-i1,2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1280,640.0 +5.584,5,a-phya-i1,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,453,453.0 +7.290666666666667,5,a-phya-i1,2019-20,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,133,133.0 +5.629333333333333,5,a-phya-i1,2019-20,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,889,444.5 +6.096,5,a-phya-i1,2019-20,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,357,357.0 +5.957333333333334,5,a-phya-i1,2019-20,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,383,383.0 +5.824,5,a-phya-i1,2019-20,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,816,408.0 +6.405333333333333,5,a-phya-i1,2019-20,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +6.064,5,a-phya-i1,2019-20,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,363,363.0 +6.346666666666667,5,a-phya-i1,2019-20,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,310,310.0 +7.1466666666666665,5,a-phya-i1,2019-20,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,160,160.0 +5.229333333333333,5,a-phya-i1,2019-20,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1039,519.5 +6.405333333333333,5,a-phya-i1,2019-20,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,897,299.0 +5.8773333333333335,5,a-phya-i1,2019-20,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,398,398.0 +6.189333333333333,5,a-phya-i1,2019-20,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,679,339.5 +1,1,a-phya-i1,2019-20,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407 +5.431111111111111,5,a-phya-i1,2019-20,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,289,481.6666666666667 +1.5822222222222213,1.58,a-phya-i1,2019-20,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,722,1203.3333333333335 +3.506666666666667,3.51,a-phya-i1,2019-20,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.2, 0.6, 0.0, 0.0, 0.8,674,842.5 +6.0906666666666665,5,a-phya-i1,2019-20,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,358,358.0 +5.777777777777778,5,a-phya-i1,2019-20,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,250,416.6666666666667 +5.742222222222221,5,a-phya-i1,2019-20,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,254,423.33333333333337 +6.32,5,a-phya-i1,2019-20,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,189,315.0 +5.941333333333334,5,a-phya-i1,2019-20,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,386,386.0 +3.002666666666667,3.0,a-phya-i1,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,937,937.0 +6.357333333333333,5,a-phya-i1,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +6.432,5,a-phya-i1,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,294,294.0 +5.504,5,a-phya-i1,2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,468,468.0 +5.36,5,a-phya-i1,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,495,495.0 +5.8133333333333335,5,a-phya-i1,2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,410,410.0 +5.8133333333333335,5,a-phya-i1,2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,492,410.0 +6.195555555555555,5,a-phya-i1,2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,406,338.33333333333337 +4.573333333333333,4.57,a-phya-i1,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,771,642.5 +5.5777777777777775,5,a-phya-i1,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,545,454.1666666666667 +5.173333333333333,5,a-phya-i1,2019-20,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,636,530.0 +6.7057777777777785,5,a-phya-i1,2019-20,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,364,242.66666666666666 +6.048,5,a-phya-i1,2019-20,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +6.378666666666667,5,a-phya-i1,2019-20,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,304,304.0 +6.677333333333333,5,a-phya-i1,2019-20,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,248,248.0 +5.386666666666667,5,a-phya-i1,2019-20,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,490,490.0 +4.373333333333333,4.37,a-phya-i1,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,680,680.0 +5.205333333333333,5,a-phya-i1,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,524,524.0 +5.568,5,a-phya-i1,2019-20,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,456,456.0 +4.659047619047619,4.66,a-phya-i1,2019-20,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,877,626.4285714285714 +5.056,5,a-phya-i1,2019-20,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,552,552.0 +6.490666666666667,5,a-phya-i1,2019-20,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,283,283.0 +4.9013333333333335,4.9,a-phya-i1,2019-20,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,581,581.0 +4.906666666666666,4.91,a-phya-i1,2019-20,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 1.6,928,580.0 +1,1,a-phya-i1,2019-20,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, 0.0,271 +1,1,a-phya-i1,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354 +4.421333333333333,4.42,a-phya-i1,2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,671,671.0 +6.058666666666666,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,364,364.0 +5.018666666666666,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,559,559.0 +5.706666666666667,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,430,430.0 +6.528,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +5.205333333333333,5,a-phya-i1,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1048,524.0 +4.72,4.72,a-phya-i1,2019-20,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,615,615.0 +1,1,a-phya-i1,2019-20,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637 +6.195862068965517,5,a-phya-i1,2019-20,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.9, 0.0, 2.9,981,338.2758620689655 +4.058666666666666,4.06,a-phya-i1,2019-20,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,739,739.0 +6.485333333333333,5,a-phya-i1,2019-20,East Bridgewater - Central,00830005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,568,284.0 +2.6186666666666665,2.62,a-phya-i1,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1009,1009.0 +4.592,4.59,a-phya-i1,2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,639,639.0 +4.757333333333333,4.76,a-phya-i1,2019-20,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,608,608.0 +3.552,3.55,a-phya-i1,2019-20,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,834,834.0 +6.485333333333333,5,a-phya-i1,2019-20,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,284,284.0 +4.8693333333333335,4.87,a-phya-i1,2019-20,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,587,587.0 +6.533333333333333,5,a-phya-i1,2019-20,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +6.965333333333334,5,a-phya-i1,2019-20,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,194,194.0 +1,1,a-phya-i1,2019-20,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205 +1,1,a-phya-i1,2019-20,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456 +1,1,a-phya-i1,2019-20,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256 +1,1,a-phya-i1,2019-20,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195 +1,1,a-phya-i1,2019-20,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432 +6.693333333333333,5,a-phya-i1,2019-20,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,245,245.0 +4.881777777777778,4.88,a-phya-i1,2019-20,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.4, 0.0, 0.1, 0.0, 1.5,877,584.6666666666666 +6.816,5,a-phya-i1,2019-20,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,222,222.0 +4.699259259259259,4.7,a-phya-i1,2019-20,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,1114,618.8888888888889 +6.330666666666667,5,a-phya-i1,2019-20,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,313,313.0 +3.6906666666666665,3.69,a-phya-i1,2019-20,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,808,808.0 +5.914666666666666,5,a-phya-i1,2019-20,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +6.965333333333334,5,a-phya-i1,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, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,388,194.0 +1,1,a-phya-i1,2019-20,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133 +4.021333333333334,4.02,a-phya-i1,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1492,746.0 +1,1,a-phya-i1,2019-20,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127 +1,1,a-phya-i1,2019-20,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60 +2.6746666666666665,2.67,a-phya-i1,2019-20,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1997,998.5 +3.1306666666666665,3.13,a-phya-i1,2019-20,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,913,913.0 +2.6613333333333333,2.66,a-phya-i1,2019-20,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1001,1001.0 +3.888,3.89,a-phya-i1,2019-20,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,771,771.0 +2.832,2.83,a-phya-i1,2019-20,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,969,969.0 +4.576,4.58,a-phya-i1,2019-20,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,642,642.0 +1,1,a-phya-i1,2019-20,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211 +6.048,5,a-phya-i1,2019-20,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +3.1288888888888886,3.13,a-phya-i1,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 1.5,1370,913.3333333333334 +5.9093333333333335,5,a-phya-i1,2019-20,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +4.272,4.27,a-phya-i1,2019-20,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,699,699.0 +5.552,5,a-phya-i1,2019-20,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +5.376,5,a-phya-i1,2019-20,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,492,492.0 +4.183111111111112,4.18,a-phya-i1,2019-20,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,2147,715.6666666666666 +6.072,5,a-phya-i1,2019-20,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,723,361.5 +-5.866666666666666,1,a-phya-i1,2019-20,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,780,2600.0 +7.459555555555554,5,a-phya-i1,2019-20,Fall River - James Tansey,00950140, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,304,101.33333333333333 +6.685333333333333,5,a-phya-i1,2019-20,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,493,246.5 +6.21037037037037,5,a-phya-i1,2019-20,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,604,335.55555555555554 +5.994074074074074,5,a-phya-i1,2019-20,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.0, 0.5, 1.0, 0.0, 1.8,677,376.1111111111111 +4.042666666666666,4.04,a-phya-i1,2019-20,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,742,742.0 +1,1,a-phya-i1,2019-20,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625 +-5.76,1,a-phya-i1,2019-20,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,774,2580.0 +1,1,a-phya-i1,2019-20,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214 +1,1,a-phya-i1,2019-20,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274 +6.033777777777777,5,a-phya-i1,2019-20,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,553,368.6666666666667 +1,1,a-phya-i1,2019-20,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56 +6.570666666666667,5,a-phya-i1,2019-20,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,536,268.0 +7.295030303030303,5,a-phya-i1,2019-20,Fall River - William S Greene,00950065, 0.0, 0.0, 3.0, 1.0, 1.0, 0.5, 0.0, 5.5,727,132.1818181818182 +6.373333333333333,5,a-phya-i1,2019-20,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,305,305.0 +5.754666666666667,5,a-phya-i1,2019-20,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,842,421.0 +5.216,5,a-phya-i1,2019-20,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,522,522.0 +5.072,5,a-phya-i1,2019-20,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,549,549.0 +5.621333333333333,5,a-phya-i1,2019-20,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,446,446.0 +6.304,5,a-phya-i1,2019-20,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,318,318.0 +6.565333333333333,5,a-phya-i1,2019-20,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,269,269.0 +7.44,5,a-phya-i1,2019-20,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,105,105.0 +6.54,5,a-phya-i1,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0, 2.4,657,273.75 +6.846222222222221,5,a-phya-i1,2019-20,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,649,216.33333333333334 +4.744,4.74,a-phya-i1,2019-20,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1221,610.5 +1,1,a-phya-i1,2019-20,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197 +4.325333333333333,4.33,a-phya-i1,2019-20,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,689,689.0 +6.149333333333334,5,a-phya-i1,2019-20,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,694,347.0 +6.32,5,a-phya-i1,2019-20,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,630,315.0 +6.2192592592592595,5,a-phya-i1,2019-20,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 0.0, 1.8,601,333.88888888888886 +7.493333333333333,5,a-phya-i1,2019-20,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,95,95.0 +6.071111111111111,5,a-phya-i1,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6,217,361.6666666666667 +6.714666666666667,5,a-phya-i1,2019-20,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,241,241.0 +3.7706666666666666,3.77,a-phya-i1,2019-20,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,793,793.0 +4.868571428571428,4.87,a-phya-i1,2019-20,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 1.4,822,587.1428571428572 +6.304,5,a-phya-i1,2019-20,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 +5.973333333333334,5,a-phya-i1,2019-20,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,380,380.0 +4.841904761904761,4.84,a-phya-i1,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.8, 1.0, 0.0, 2.8,1658,592.1428571428572 +4.32,4.32,a-phya-i1,2019-20,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,690,690.0 +5.493333333333333,5,a-phya-i1,2019-20,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,470,470.0 +4.8,4.8,a-phya-i1,2019-20,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,600,600.0 +6.8373333333333335,5,a-phya-i1,2019-20,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,436,218.0 +5.432222222222222,5,a-phya-i1,2019-20,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 2.8, 1.0, 1.0, 4.8,2311,481.45833333333337 +4.666666666666667,4.67,a-phya-i1,2019-20,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,625,625.0 +5.088,5,a-phya-i1,2019-20,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,546,546.0 +1,1,a-phya-i1,2019-20,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309 +5.765333333333333,5,a-phya-i1,2019-20,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,419,419.0 +6.181333333333333,5,a-phya-i1,2019-20,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +5.274666666666667,5,a-phya-i1,2019-20,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +5.216,5,a-phya-i1,2019-20,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,522,522.0 +3.92,3.92,a-phya-i1,2019-20,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,765,765.0 +5.104,5,a-phya-i1,2019-20,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,543,543.0 +5.882666666666666,5,a-phya-i1,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,397,397.0 +3.925333333333333,3.93,a-phya-i1,2019-20,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,382,764.0 +6.789333333333333,5,a-phya-i1,2019-20,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,227,227.0 +7.408,5,a-phya-i1,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,111,111.0 +3.3333333333333335,3.33,a-phya-i1,2019-20,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1750,875.0 +4.309333333333333,4.31,a-phya-i1,2019-20,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,346,692.0 +3.2,3.2,a-phya-i1,2019-20,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,450,900.0 +6.128,5,a-phya-i1,2019-20,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,351,351.0 +1,1,a-phya-i1,2019-20,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346 +4.1706666666666665,4.17,a-phya-i1,2019-20,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,359,718.0 +6.16,5,a-phya-i1,2019-20,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +5.8613333333333335,5,a-phya-i1,2019-20,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 +5.306666666666667,5,a-phya-i1,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,505,505.0 +4.096,4.1,a-phya-i1,2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,732,732.0 +5.472,5,a-phya-i1,2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,474,474.0 +5.621333333333333,5,a-phya-i1,2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,446,446.0 +4.032,4.03,a-phya-i1,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,744,744.0 +5.674666666666667,5,a-phya-i1,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +4.506666666666667,4.51,a-phya-i1,2019-20,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +6.576,5,a-phya-i1,2019-20,Gardner - Elm Street School,01030001, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,534,267.0 +7.16,5,a-phya-i1,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,126,157.5 +4.325333333333333,4.33,a-phya-i1,2019-20,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,689,689.0 +6.437333333333333,5,a-phya-i1,2019-20,Gardner - Gardner Middle School,01030405, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,586,293.0 +6.904,5,a-phya-i1,2019-20,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,411,205.5 +7.085714285714285,5,a-phya-i1,2019-20,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7,120,171.42857142857144 +5.8133333333333335,5,a-phya-i1,2019-20,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,205,410.0 +5.930666666666666,5,a-phya-i1,2019-20,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,194,388.0 +6.357333333333333,5,a-phya-i1,2019-20,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +6.74,5,a-phya-i1,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.6, 1.6,378,236.25 +5.546666666666667,5,a-phya-i1,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,184,460.0 +5.596666666666667,5,a-phya-i1,2019-20,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,721,450.625 +6.866666666666666,5,a-phya-i1,2019-20,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,85,212.5 +7.253333333333333,5,a-phya-i1,2019-20,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,140,140.0 +1,1,a-phya-i1,2019-20,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224 +7.184,5,a-phya-i1,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,153,153.0 +6.848,5,a-phya-i1,2019-20,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +6.944,5,a-phya-i1,2019-20,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,198,198.0 +1,1,a-phya-i1,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507 +6.245333333333333,5,a-phya-i1,2019-20,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +6.922666666666666,5,a-phya-i1,2019-20,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,202,202.0 +5.724444444444445,5,a-phya-i1,2019-20,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.4, 1.8,768,426.66666666666663 +7.381333333333333,5,a-phya-i1,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,116,116.0 +6.9013333333333335,5,a-phya-i1,2019-20,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,206,206.0 +6.248,5,a-phya-i1,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,657,328.5 +6.8693333333333335,5,a-phya-i1,2019-20,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,212,212.0 +6.074666666666666,5,a-phya-i1,2019-20,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +1,1,a-phya-i1,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0 +4.899555555555556,4.9,a-phya-i1,2019-20,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,872,581.3333333333334 +5.173333333333333,5,a-phya-i1,2019-20,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,530,530.0 +5.578666666666667,5,a-phya-i1,2019-20,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,681,454.0 +6.629333333333333,5,a-phya-i1,2019-20,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,257,257.0 +4.986666666666666,4.99,a-phya-i1,2019-20,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,565,565.0 +6.4,5,a-phya-i1,2019-20,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,300,300.0 +6.168888888888888,5,a-phya-i1,2019-20,Granby - East Meadow,01110004, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,412,343.33333333333337 +6.484444444444444,5,a-phya-i1,2019-20,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,341,284.1666666666667 +4.1786666666666665,4.18,a-phya-i1,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1433,716.5 +-0.48533333333333334,1,a-phya-i1,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,1591,1591.0 +3.962666666666667,3.96,a-phya-i1,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,2271,757.0 +4.224,4.22,a-phya-i1,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,2124,708.0 +6.64,5,a-phya-i1,2019-20,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +6.736,5,a-phya-i1,2019-20,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,237,237.0 +5.418666666666667,5,a-phya-i1,2019-20,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,484,484.0 +5.968,5,a-phya-i1,2019-20,Greenfield - Greenfield Middle,01140305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +6.72,5,a-phya-i1,2019-20,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +7.354666666666667,5,a-phya-i1,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,121,121.0 +4.464,4.46,a-phya-i1,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,663,663.0 +7.690666666666667,5,a-phya-i1,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,58,58.0 +5.184,5,a-phya-i1,2019-20,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,528,528.0 +5.7254901960784315,5,a-phya-i1,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 0.0, 1.7,725,426.47058823529414 +3.973333333333333,3.97,a-phya-i1,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,755,755.0 +6.469333333333333,5,a-phya-i1,2019-20,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +6.506666666666667,5,a-phya-i1,2019-20,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,280,280.0 +6.672,5,a-phya-i1,2019-20,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,249,249.0 +4.874666666666666,4.87,a-phya-i1,2019-20,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +5.258666666666667,5,a-phya-i1,2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,257,514.0 +1,1,a-phya-i1,2019-20,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278 +4.326666666666667,4.33,a-phya-i1,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.8,551,688.75 +3.541333333333333,3.54,a-phya-i1,2019-20,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,418,836.0 +4.458666666666667,4.46,a-phya-i1,2019-20,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,332,664.0 +5.205333333333333,5,a-phya-i1,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,524,524.0 +6.602666666666667,5,a-phya-i1,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +6.282666666666667,5,a-phya-i1,2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,322,322.0 +6.069333333333334,5,a-phya-i1,2019-20,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +5.192,5,a-phya-i1,2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1053,526.5 +6.293333333333333,5,a-phya-i1,2019-20,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,320,320.0 +6.272,5,a-phya-i1,2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,324,324.0 +6.151111111111111,5,a-phya-i1,2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,624,346.6666666666667 +6.042666666666666,5,a-phya-i1,2019-20,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,734,367.0 +7.498666666666667,5,a-phya-i1,2019-20,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,47,94.0 +5.450666666666667,5,a-phya-i1,2019-20,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,478,478.0 +4.954666666666666,4.95,a-phya-i1,2019-20,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 +3.8986666666666667,3.9,a-phya-i1,2019-20,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,769,769.0 +3.568,3.57,a-phya-i1,2019-20,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,831,831.0 +5.248888888888889,5,a-phya-i1,2019-20,Harvard - Bromfield,01250505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,619,515.8333333333334 +5.14,5,a-phya-i1,2019-20,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,429,536.25 +6.704,5,a-phya-i1,2019-20,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +6.997333333333334,5,a-phya-i1,2019-20,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,188,188.0 +5.226666666666667,5,a-phya-i1,2019-20,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,520,520.0 +4.898666666666666,4.9,a-phya-i1,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1163,581.5 +6.002666666666666,5,a-phya-i1,2019-20,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,749,374.5 +1,1,a-phya-i1,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24 +4.906666666666666,4.91,a-phya-i1,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,580,580.0 +5.1946666666666665,5,a-phya-i1,2019-20,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,526,526.0 +7.834666666666666,5,a-phya-i1,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,31,31.0 +5.557333333333333,5,a-phya-i1,2019-20,Haverhill - Haverhill High,01280505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 4.0,1832,458.0 +5.264,5,a-phya-i1,2019-20,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,513,513.0 +6.896,5,a-phya-i1,2019-20,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,207,207.0 +5.088,5,a-phya-i1,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,546,546.0 +4.666666666666667,4.67,a-phya-i1,2019-20,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,625,625.0 +7.8453333333333335,5,a-phya-i1,2019-20,Haverhill - TEACH,01280073, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,29,29.0 +5.818666666666667,5,a-phya-i1,2019-20,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +7.12,5,a-phya-i1,2019-20,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,165,165.0 +7.232,5,a-phya-i1,2019-20,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6, 1.0,144,144.0 +7.237333333333333,5,a-phya-i1,2019-20,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,143,143.0 +6.896,5,a-phya-i1,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,207,207.0 +1,1,a-phya-i1,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +6.8373333333333335,5,a-phya-i1,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 1.0,218,218.0 +5.2,5,a-phya-i1,2019-20,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,525,525.0 +4.528,4.53,a-phya-i1,2019-20,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1302,651.0 +5.336,5,a-phya-i1,2019-20,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,999,499.5 +5.717333333333333,5,a-phya-i1,2019-20,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,428,428.0 +5.264,5,a-phya-i1,2019-20,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,513,513.0 +5.36,5,a-phya-i1,2019-20,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,495,495.0 +1.28,1.28,a-phya-i1,2019-20,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,630,1260.0 +0.7573333333333333,1,a-phya-i1,2019-20,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,679,1358.0 +6.762666666666667,5,a-phya-i1,2019-20,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,232,232.0 +3.504,3.5,a-phya-i1,2019-20,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,843,843.0 +4.325333333333333,4.33,a-phya-i1,2019-20,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,689,689.0 +5.560888888888889,5,a-phya-i1,2019-20,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,686,457.3333333333333 +4.309333333333333,4.31,a-phya-i1,2019-20,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,692,692.0 +5.669333333333333,5,a-phya-i1,2019-20,Holyoke - E N White Elementary,01370045, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,437,437.0 +6.709333333333333,5,a-phya-i1,2019-20,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,242,242.0 +4.763733333333334,4.76,a-phya-i1,2019-20,Holyoke - Holyoke High,01370505, 0.0, 1.0, 1.5, 0.0, 0.0, 0.0, 0.0, 2.5,1517,606.8 +5.642666666666667,5,a-phya-i1,2019-20,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,221,442.0 +6.549333333333333,5,a-phya-i1,2019-20,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,272,272.0 +5.834666666666666,5,a-phya-i1,2019-20,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +7.096888888888888,5,a-phya-i1,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,508,169.33333333333334 +5.808,5,a-phya-i1,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,411,411.0 +5.418666666666667,5,a-phya-i1,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,484,484.0 +6.069333333333334,5,a-phya-i1,2019-20,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,362,362.0 +1,1,a-phya-i1,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229 +7.304,5,a-phya-i1,2019-20,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,261,130.5 +4.261333333333333,4.26,a-phya-i1,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,701,701.0 +5.936,5,a-phya-i1,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +6.181333333333333,5,a-phya-i1,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +6.0,5,a-phya-i1,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,375,375.0 +3.029333333333333,3.03,a-phya-i1,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,466,932.0 +2.453333333333333,2.45,a-phya-i1,2019-20,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,520,1040.0 +6.746666666666667,5,a-phya-i1,2019-20,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,94,235.0 +5.029333333333334,5,a-phya-i1,2019-20,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,557,557.0 +4.933333333333334,4.93,a-phya-i1,2019-20,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,575,575.0 +3.6302222222222222,3.63,a-phya-i1,2019-20,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,1229,819.3333333333334 +4.949333333333334,4.95,a-phya-i1,2019-20,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,858,572.0 +1,1,a-phya-i1,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,80 +4.997333333333334,5.0,a-phya-i1,2019-20,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,563,563.0 +6.485333333333333,5,a-phya-i1,2019-20,Hudson - C A Farley,01410030, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,426,284.0 +5.781333333333333,5,a-phya-i1,2019-20,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,624,416.0 +6.085333333333334,5,a-phya-i1,2019-20,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +5.605333333333333,5,a-phya-i1,2019-20,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,898,449.0 +6.618666666666667,5,a-phya-i1,2019-20,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,259,259.0 +6.538666666666667,5,a-phya-i1,2019-20,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,274,274.0 +5.850666666666666,5,a-phya-i1,2019-20,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +7.056,5,a-phya-i1,2019-20,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,177,177.0 +-13.28,1,a-phya-i1,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,798,3990.0 +2.1653333333333333,2.17,a-phya-i1,2019-20,Ipswich - Ipswich High,01440505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,547,1094.0 +3.744,3.74,a-phya-i1,2019-20,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,399,798.0 +4.096,4.1,a-phya-i1,2019-20,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,366,732.0 +4.085333333333334,4.09,a-phya-i1,2019-20,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,367,734.0 +4.9013333333333335,4.9,a-phya-i1,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,581,581.0 +5.152,5,a-phya-i1,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,1602,534.0 +5.386666666666667,5,a-phya-i1,2019-20,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.3, 0.4, 0.0, 0.8, 0.0, 1.5,735,490.0 +3.5768888888888886,3.58,a-phya-i1,2019-20,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.3, 0.2, 0.0, 1.0, 0.0, 1.5,1244,829.3333333333334 +5.568,5,a-phya-i1,2019-20,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,456,456.0 +4.752,4.75,a-phya-i1,2019-20,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,609,609.0 +5.386666666666667,5,a-phya-i1,2019-20,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,490,490.0 +4.858666666666666,4.86,a-phya-i1,2019-20,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,589,589.0 +4.832,4.83,a-phya-i1,2019-20,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,594,594.0 +4.469333333333333,4.47,a-phya-i1,2019-20,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,662,662.0 +4.645333333333333,4.65,a-phya-i1,2019-20,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,629,629.0 +5.536,5,a-phya-i1,2019-20,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +5.136,5,a-phya-i1,2019-20,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,537,537.0 +5.242666666666667,5,a-phya-i1,2019-20,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +5.354666666666667,5,a-phya-i1,2019-20,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,496,496.0 +1,1,a-phya-i1,2019-20,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150 +1,1,a-phya-i1,2019-20,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321 +6.325333333333333,5,a-phya-i1,2019-20,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 +6.394666666666667,5,a-phya-i1,2019-20,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,301,301.0 +7.541333333333333,5,a-phya-i1,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,172,86.0 +7.109333333333334,5,a-phya-i1,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,167,167.0 +2.286451612903226,2.29,a-phya-i1,2019-20,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.1,3321,1071.2903225806451 +5.429333333333333,5,a-phya-i1,2019-20,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 +4.832,4.83,a-phya-i1,2019-20,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,594,594.0 +6.450666666666667,5,a-phya-i1,2019-20,Lawrence - Robert Frost,01490018, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,581,290.5 +6.8853333333333335,5,a-phya-i1,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,209,209.0 +7.317333333333333,5,a-phya-i1,2019-20,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,128,128.0 +4.08,4.08,a-phya-i1,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,735,735.0 +5.472,5,a-phya-i1,2019-20,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,474,474.0 +6.394666666666667,5,a-phya-i1,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +1,1,a-phya-i1,2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324 +5.92,5,a-phya-i1,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,780,390.0 +6.08,5,a-phya-i1,2019-20,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +6.117333333333334,5,a-phya-i1,2019-20,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 +5.381333333333333,5,a-phya-i1,2019-20,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +5.488,5,a-phya-i1,2019-20,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,471,471.0 +1,1,a-phya-i1,2019-20,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60 +5.514666666666667,5,a-phya-i1,2019-20,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +1,1,a-phya-i1,2019-20,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459 +1,1,a-phya-i1,2019-20,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317 +7.397333333333333,5,a-phya-i1,2019-20,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,113,113.0 +1,1,a-phya-i1,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,722 +4.602666666666667,4.6,a-phya-i1,2019-20,Leominster - Fall Brook,01530007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,637,637.0 +5.109333333333334,5,a-phya-i1,2019-20,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,542,542.0 +4.442666666666667,4.44,a-phya-i1,2019-20,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +7.713333333333333,5,a-phya-i1,2019-20,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,43,53.75 +5.034666666666666,5,a-phya-i1,2019-20,Leominster - Leominster High School,01530505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1112,556.0 +6.026666666666666,5,a-phya-i1,2019-20,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,37,370.0 +4.378666666666667,4.38,a-phya-i1,2019-20,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,679,679.0 +7.386666666666667,5,a-phya-i1,2019-20,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,115,115.0 +5.253333333333333,5,a-phya-i1,2019-20,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,515,515.0 +3.2213333333333334,3.22,a-phya-i1,2019-20,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,896,896.0 +7.242666666666667,5,a-phya-i1,2019-20,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,142,142.0 +5.168,5,a-phya-i1,2019-20,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,531,531.0 +6.133333333333334,5,a-phya-i1,2019-20,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,525,350.0 +5.434666666666667,5,a-phya-i1,2019-20,Lexington - Fiske,01550015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +5.488,5,a-phya-i1,2019-20,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,471,471.0 +5.400701754385964,5,a-phya-i1,2019-20,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,926,487.3684210526316 +4.938666666666666,4.94,a-phya-i1,2019-20,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,574,574.0 +1,1,a-phya-i1,2019-20,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68 +5.472222222222221,5,a-phya-i1,2019-20,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 1.0, 2.0, 0.0, 4.8,2275,473.95833333333337 +5.669333333333333,5,a-phya-i1,2019-20,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,437,437.0 +5.327407407407407,5,a-phya-i1,2019-20,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,902,501.1111111111111 +6.576,5,a-phya-i1,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,267,267.0 +5.248,5,a-phya-i1,2019-20,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,258,516.0 +4.682666666666667,4.68,a-phya-i1,2019-20,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,311,622.0 +5.093333333333334,5,a-phya-i1,2019-20,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,545,545.0 +3.968,3.97,a-phya-i1,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,1512,756.0 +5.653333333333333,5,a-phya-i1,2019-20,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,440,440.0 +5.92,5,a-phya-i1,2019-20,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,390,390.0 +5.930666666666666,5,a-phya-i1,2019-20,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +5.626666666666667,5,a-phya-i1,2019-20,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +5.8773333333333335,5,a-phya-i1,2019-20,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,398,398.0 +5.744,5,a-phya-i1,2019-20,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +6.24,5,a-phya-i1,2019-20,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,330,330.0 +2.976,2.98,a-phya-i1,2019-20,Longmeadow - Longmeadow High,01590505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,942,942.0 +6.117333333333334,5,a-phya-i1,2019-20,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,353,353.0 +5.8613333333333335,5,a-phya-i1,2019-20,Longmeadow - Wolf Swamp Road,01590025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +1,1,a-phya-i1,2019-20,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493 +1,1,a-phya-i1,2019-20,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571 +5.397333333333333,5,a-phya-i1,2019-20,Lowell - Bartlett Community Partnership,01600090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +1,1,a-phya-i1,2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109 +1,1,a-phya-i1,2019-20,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498 +1,1,a-phya-i1,2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475 +1,1,a-phya-i1,2019-20,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715 +1,1,a-phya-i1,2019-20,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489 +1,1,a-phya-i1,2019-20,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53 +1,1,a-phya-i1,2019-20,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473 +1,1,a-phya-i1,2019-20,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643 +1,1,a-phya-i1,2019-20,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697 +1,1,a-phya-i1,2019-20,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,676 +1,1,a-phya-i1,2019-20,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481 +1,1,a-phya-i1,2019-20,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,472 +1,1,a-phya-i1,2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682 +1,1,a-phya-i1,2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21 +1,1,a-phya-i1,2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +-8.058666666666667,1,a-phya-i1,2019-20,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,3011,3011.0 +1,1,a-phya-i1,2019-20,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225 +1,1,a-phya-i1,2019-20,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489 +1,1,a-phya-i1,2019-20,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473 +1,1,a-phya-i1,2019-20,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505 +1,1,a-phya-i1,2019-20,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,843 +1,1,a-phya-i1,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491 +1,1,a-phya-i1,2019-20,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91 +1,1,a-phya-i1,2019-20,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237 +5.080888888888889,5,a-phya-i1,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,821,547.3333333333334 +1,1,a-phya-i1,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85 +6.261333333333333,5,a-phya-i1,2019-20,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,326,326.0 +5.888,5,a-phya-i1,2019-20,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,396,396.0 +5.685333333333333,5,a-phya-i1,2019-20,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,868,434.0 +6.912,5,a-phya-i1,2019-20,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,612,204.0 +1,1,a-phya-i1,2019-20,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336 +1,1,a-phya-i1,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6 +4.986666666666666,4.99,a-phya-i1,2019-20,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,452,565.0 +1,1,a-phya-i1,2019-20,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406 +5.776,5,a-phya-i1,2019-20,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,417,417.0 +6.08,5,a-phya-i1,2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +3.822222222222222,3.82,a-phya-i1,2019-20,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,470,783.3333333333334 +6.677333333333333,5,a-phya-i1,2019-20,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,248,248.0 +5.668817204301075,5,a-phya-i1,2019-20,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 1.0, 0.0, 1.1, 0.0, 3.1,1355,437.09677419354836 +7.144126984126984,5,a-phya-i1,2019-20,Lynn - Brickett Elementary,01630020, 1.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 2.1,337,160.47619047619048 +5.022222222222222,5,a-phya-i1,2019-20,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,335,558.3333333333334 +3.2453333333333334,3.25,a-phya-i1,2019-20,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1783,891.5 +4.736,4.74,a-phya-i1,2019-20,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,612,612.0 +4.712727272727273,4.71,a-phya-i1,2019-20,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,678,616.3636363636363 +-16.0,1,a-phya-i1,2019-20,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,450,4500.0 +7.381333333333333,5,a-phya-i1,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,116,116.0 +5.444848484848485,5,a-phya-i1,2019-20,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,527,479.09090909090907 +4.698181818181818,4.7,a-phya-i1,2019-20,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,681,619.090909090909 +6.63,5,a-phya-i1,2019-20,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.1, 0.0, 1.6,411,256.875 +6.0,5,a-phya-i1,2019-20,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.5, 0.1, 0.0, 0.6,225,375.0 +4.504888888888889,4.5,a-phya-i1,2019-20,Lynn - Lynn English High,01630510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,1966,655.3333333333334 +6.065333333333333,5,a-phya-i1,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 4.0,1451,362.75 +6.4,5,a-phya-i1,2019-20,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,180,300.0 +4.901818181818182,4.9,a-phya-i1,2019-20,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,639,580.9090909090909 +3.582222222222222,3.58,a-phya-i1,2019-20,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,497,828.3333333333334 +6.501818181818181,5,a-phya-i1,2019-20,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,309,280.9090909090909 +4.453333333333333,4.45,a-phya-i1,2019-20,Lynn - Thurgood Marshall Mid,01630305, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1330,665.0 +4.257777777777777,4.26,a-phya-i1,2019-20,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,421,701.6666666666667 +6.460444444444444,5,a-phya-i1,2019-20,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.5,433,288.6666666666667 +7.84,5,a-phya-i1,2019-20,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,33,29.999999999999996 +5.086060606060606,5,a-phya-i1,2019-20,Lynn - Wm P Connery,01630040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,601,546.3636363636364 +3.072,3.07,a-phya-i1,2019-20,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,462,924.0 +-0.06666666666666667,1,a-phya-i1,2019-20,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,605,1512.5 +0.672,1,a-phya-i1,2019-20,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,687,1374.0 +1,1,a-phya-i1,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40 +3.648,3.65,a-phya-i1,2019-20,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,408,816.0 +5.825777777777778,5,a-phya-i1,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0,1223,407.6666666666667 +1,1,a-phya-i1,2019-20,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, 0.0, 0.0,99 +5.592,5,a-phya-i1,2019-20,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,903,451.5 +5.528,5,a-phya-i1,2019-20,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,927,463.5 +4.965333333333334,4.97,a-phya-i1,2019-20,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +3.4346666666666668,3.43,a-phya-i1,2019-20,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,856,856.0 +6.24,5,a-phya-i1,2019-20,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +4.848,4.85,a-phya-i1,2019-20,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1773,591.0 +5.005333333333334,5,a-phya-i1,2019-20,Malden - Salemwood,01650057, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1123,561.5 +6.832,5,a-phya-i1,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,219,219.0 +5.424,5,a-phya-i1,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,483,483.0 +1,1,a-phya-i1,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357 +6.341333333333333,5,a-phya-i1,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,311,311.0 +6.218666666666667,5,a-phya-i1,2019-20,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,668,334.0 +5.728,5,a-phya-i1,2019-20,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,852,426.0 +5.92,5,a-phya-i1,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,780,390.0 +4.693333333333333,4.69,a-phya-i1,2019-20,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1240,620.0 +7.408,5,a-phya-i1,2019-20,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,111,111.0 +7.141333333333334,5,a-phya-i1,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,161,161.0 +7.557333333333333,5,a-phya-i1,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,83,83.0 +1,1,a-phya-i1,2019-20,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384 +7.397333333333333,5,a-phya-i1,2019-20,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,226,113.0 +5.9446153846153855,5,a-phya-i1,2019-20,Marblehead - Marblehead High,01680505, 0.0, 0.6, 0.0, 0.0, 1.0, 1.0, 0.0, 2.6,1002,385.38461538461536 +5.397333333333333,5,a-phya-i1,2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +5.4,5,a-phya-i1,2019-20,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,780,487.5 +1,1,a-phya-i1,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205 +5.690666666666667,5,a-phya-i1,2019-20,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,433,433.0 +5.372444444444444,5,a-phya-i1,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,1478,492.6666666666667 +5.455686274509804,5,a-phya-i1,2019-20,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 1.7,811,477.05882352941177 +7.066666666666666,5,a-phya-i1,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,175,175.0 +4.981333333333334,4.98,a-phya-i1,2019-20,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,566,566.0 +5.2,5,a-phya-i1,2019-20,Marlborough - Marlborough High,01700505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1050,525.0 +4.389333333333333,4.39,a-phya-i1,2019-20,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,677,677.0 +6.021333333333334,5,a-phya-i1,2019-20,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +6.778666666666667,5,a-phya-i1,2019-20,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,229,229.0 +4.785777777777778,4.79,a-phya-i1,2019-20,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,904,602.6666666666666 +5.994666666666666,5,a-phya-i1,2019-20,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +-5.941333333333334,1,a-phya-i1,2019-20,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1307,2614.0 +5.509333333333333,5,a-phya-i1,2019-20,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,467,467.0 +6.368,5,a-phya-i1,2019-20,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,306,306.0 +4.426666666666667,4.43,a-phya-i1,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,670,670.0 +7.082666666666666,5,a-phya-i1,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,172,172.0 +5.6,5,a-phya-i1,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,360,450.0 +1.8986666666666667,1.9,a-phya-i1,2019-20,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1144,1144.0 +6.461333333333333,5,a-phya-i1,2019-20,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,577,288.5 +5.904,5,a-phya-i1,2019-20,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +5.578666666666667,5,a-phya-i1,2019-20,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,454,454.0 +1,1,a-phya-i1,2019-20,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256 +6.773333333333333,5,a-phya-i1,2019-20,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,460,230.0 +1,1,a-phya-i1,2019-20,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250 +6.976,5,a-phya-i1,2019-20,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,192,192.0 +5.514666666666667,5,a-phya-i1,2019-20,Maynard - Fowler School,01740305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +5.536,5,a-phya-i1,2019-20,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +6.2026666666666666,5,a-phya-i1,2019-20,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,337,337.0 +5.8773333333333335,5,a-phya-i1,2019-20,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,398,398.0 +5.32,5,a-phya-i1,2019-20,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,804,502.5 +5.674666666666667,5,a-phya-i1,2019-20,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,436,436.0 +6.521904761904762,5,a-phya-i1,2019-20,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,388,277.14285714285717 +5.809523809523809,5,a-phya-i1,2019-20,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,575,410.7142857142857 +6.632,5,a-phya-i1,2019-20,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,513,256.5 +6.659555555555555,5,a-phya-i1,2019-20,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,377,251.33333333333334 +1,1,a-phya-i1,2019-20,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +6.98051282051282,5,a-phya-i1,2019-20,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.6, 2.6,497,191.15384615384616 +3.1573333333333333,3.16,a-phya-i1,2019-20,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,454,908.0 +5.509333333333333,5,a-phya-i1,2019-20,Medford - Madeleine Dugger Andrews,01760315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,467,467.0 +6.246666666666667,5,a-phya-i1,2019-20,Medford - Medford High,01760505, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 4.0,1315,328.75 +4.981333333333334,4.98,a-phya-i1,2019-20,Medford - Milton Fuller Roberts,01760150, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,566,566.0 +6.0430769230769235,5,a-phya-i1,2019-20,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,477,366.9230769230769 +6.6297435897435895,5,a-phya-i1,2019-20,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,334,256.9230769230769 +5.1979487179487185,5,a-phya-i1,2019-20,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,683,525.3846153846154 +5.193846153846153,5,a-phya-i1,2019-20,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 1.3,684,526.1538461538462 +1,1,a-phya-i1,2019-20,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309 +1,1,a-phya-i1,2019-20,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318 +1,1,a-phya-i1,2019-20,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284 +1,1,a-phya-i1,2019-20,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414 +1,1,a-phya-i1,2019-20,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,986 +1,1,a-phya-i1,2019-20,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,818 +1,1,a-phya-i1,2019-20,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432 +1,1,a-phya-i1,2019-20,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416 +5.984,5,a-phya-i1,2019-20,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.482666666666667,5,a-phya-i1,2019-20,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,472,472.0 +3.941333333333333,3.94,a-phya-i1,2019-20,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,761,761.0 +4.581333333333333,4.58,a-phya-i1,2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,641,641.0 +5.141333333333334,5,a-phya-i1,2019-20,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1072,536.0 +4.570666666666667,4.57,a-phya-i1,2019-20,Methuen - Donald P Timony Grammar,01810060, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1286,643.0 +4.872,4.87,a-phya-i1,2019-20,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1173,586.5 +4.508444444444445,4.51,a-phya-i1,2019-20,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 3.0,1964,654.6666666666666 +4.384,4.38,a-phya-i1,2019-20,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1356,678.0 +1,1,a-phya-i1,2019-20,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537 +3.824,3.82,a-phya-i1,2019-20,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,783,783.0 +4.912,4.91,a-phya-i1,2019-20,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,579,579.0 +6.632727272727274,5,a-phya-i1,2019-20,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,282,256.3636363636363 +3.6906666666666665,3.69,a-phya-i1,2019-20,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,808,808.0 +6.533333333333333,5,a-phya-i1,2019-20,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +5.664,5,a-phya-i1,2019-20,Middleton - Howe-Manning,01840005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +5.541333333333333,5,a-phya-i1,2019-20,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +5.472,5,a-phya-i1,2019-20,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,474,474.0 +4.624,4.62,a-phya-i1,2019-20,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1266,633.0 +4.764444444444444,4.76,a-phya-i1,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,182,606.6666666666667 +5.282666666666667,5,a-phya-i1,2019-20,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1019,509.5 +5.32,5,a-phya-i1,2019-20,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1005,502.5 +5.066666666666666,5,a-phya-i1,2019-20,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,550,550.0 +4.026666666666666,4.03,a-phya-i1,2019-20,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,745,745.0 +5.84,5,a-phya-i1,2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,405,405.0 +5.435555555555555,5,a-phya-i1,2019-20,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,577,480.83333333333337 +4.448,4.45,a-phya-i1,2019-20,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,333,666.0 +5.1306666666666665,5,a-phya-i1,2019-20,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,269,538.0 +2.7786666666666666,2.78,a-phya-i1,2019-20,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,979,979.0 +4.432,4.43,a-phya-i1,2019-20,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,669,669.0 +4.597333333333333,4.6,a-phya-i1,2019-20,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,638,638.0 +4.714666666666667,4.71,a-phya-i1,2019-20,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,616,616.0 +2.2933333333333334,2.29,a-phya-i1,2019-20,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1070,1070.0 +5.552,5,a-phya-i1,2019-20,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,459,459.0 +2.684444444444444,2.68,a-phya-i1,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,598,996.6666666666667 +6.693333333333333,5,a-phya-i1,2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +6.546666666666667,5,a-phya-i1,2019-20,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,109,272.5 +7.104,5,a-phya-i1,2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,336,168.0 +1,1,a-phya-i1,2019-20,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155 +6.912,5,a-phya-i1,2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,204,204.0 +5.897142857142858,5,a-phya-i1,2019-20,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 0.0, 1.4,552,394.28571428571433 +4.592,4.59,a-phya-i1,2019-20,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,639,639.0 +6.3966666666666665,5,a-phya-i1,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,481,300.625 +1,1,a-phya-i1,2019-20,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425 +6.069333333333334,5,a-phya-i1,2019-20,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,362,362.0 +7.269333333333333,5,a-phya-i1,2019-20,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,137,137.0 +4.1866666666666665,4.19,a-phya-i1,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1430,715.0 +6.944,5,a-phya-i1,2019-20,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,198,198.0 +5.050666666666666,5,a-phya-i1,2019-20,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,553,553.0 +5.818666666666667,5,a-phya-i1,2019-20,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +2.296888888888889,2.3,a-phya-i1,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,1604,1069.3333333333333 +7.1786666666666665,5,a-phya-i1,2019-20,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,154,154.0 +5.888,5,a-phya-i1,2019-20,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +5.856,5,a-phya-i1,2019-20,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +4.446666666666666,4.45,a-phya-i1,2019-20,Nantucket - Nantucket High,01970505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,533,666.25 +6.149333333333334,5,a-phya-i1,2019-20,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,347,347.0 +6.010666666666666,5,a-phya-i1,2019-20,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,373,373.0 +6.256,5,a-phya-i1,2019-20,Narragansett - Narragansett Regional High,07200505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,327,327.0 +7.397333333333333,5,a-phya-i1,2019-20,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,113,113.0 +6.256,5,a-phya-i1,2019-20,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,654,327.0 +5.1626666666666665,5,a-phya-i1,2019-20,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,532,532.0 +6.194285714285715,5,a-phya-i1,2019-20,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0, 2.1,711,338.57142857142856 +6.384,5,a-phya-i1,2019-20,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +6.704,5,a-phya-i1,2019-20,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +5.493333333333333,5,a-phya-i1,2019-20,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,470,470.0 +5.544,5,a-phya-i1,2019-20,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,921,460.5 +4.218666666666667,4.22,a-phya-i1,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,709,709.0 +6.533333333333333,5,a-phya-i1,2019-20,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,550,275.0 +5.392,5,a-phya-i1,2019-20,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,489,489.0 +6.005333333333334,5,a-phya-i1,2019-20,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,748,374.0 +6.762666666666667,5,a-phya-i1,2019-20,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,232,232.0 +5.701333333333333,5,a-phya-i1,2019-20,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,431,431.0 +6.567111111111111,5,a-phya-i1,2019-20,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,403,268.6666666666667 +5.650666666666667,5,a-phya-i1,2019-20,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 4.0,1762,440.5 +5.9688888888888885,5,a-phya-i1,2019-20,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.8, 0.0, 1.0, 0.6, 0.0, 2.4,914,380.83333333333337 +4.8,4.8,a-phya-i1,2019-20,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,900,600.0 +5.937777777777777,5,a-phya-i1,2019-20,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,580,386.6666666666667 +5.077333333333334,5,a-phya-i1,2019-20,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,548,548.0 +5.338666666666667,5,a-phya-i1,2019-20,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +5.802666666666667,5,a-phya-i1,2019-20,Needham - John Eliot,01990020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +4.315555555555555,4.32,a-phya-i1,2019-20,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,1658,690.8333333333334 +6.144,5,a-phya-i1,2019-20,Needham - Newman Elementary,01990050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,696,348.0 +4.832,4.83,a-phya-i1,2019-20,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,891,594.0 +5.237333333333333,5,a-phya-i1,2019-20,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,518,518.0 +5.418666666666667,5,a-phya-i1,2019-20,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,484,484.0 +4.250666666666667,4.25,a-phya-i1,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,703,703.0 +6.1066666666666665,5,a-phya-i1,2019-20,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,710,355.0 +5.168,5,a-phya-i1,2019-20,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,531,531.0 +5.088,5,a-phya-i1,2019-20,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,273,546.0 +6.245333333333333,5,a-phya-i1,2019-20,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,329,329.0 +6.551466666666667,5,a-phya-i1,2019-20,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,679,271.6 +6.586666666666667,5,a-phya-i1,2019-20,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,265,265.0 +1,1,a-phya-i1,2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +6.858666666666666,5,a-phya-i1,2019-20,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,321,214.0 +5.528888888888888,5,a-phya-i1,2019-20,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,278,463.33333333333337 +6.229333333333333,5,a-phya-i1,2019-20,New Bedford - Hayden/McFadden,02010078, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,664,332.0 +5.92,5,a-phya-i1,2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,390,390.0 +4.896,4.9,a-phya-i1,2019-20,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,291,582.0 +5.76,5,a-phya-i1,2019-20,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,168,420.0 +6.810666666666667,5,a-phya-i1,2019-20,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,223,223.0 +6.1066666666666665,5,a-phya-i1,2019-20,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +6.923733333333334,5,a-phya-i1,2019-20,New Bedford - Keith Middle School,02010405, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 5.0,1009,201.8 +3.7315555555555555,3.73,a-phya-i1,2019-20,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,2401,800.3333333333334 +4.8053333333333335,4.81,a-phya-i1,2019-20,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1198,599.0 +1,1,a-phya-i1,2019-20,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184 +6.3822222222222225,5,a-phya-i1,2019-20,New Bedford - Roosevelt Middle School,02010415, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,910,303.3333333333333 +5.36888888888889,5,a-phya-i1,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,740,493.3333333333333 +5.962666666666666,5,a-phya-i1,2019-20,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,191,382.0 +7.752,5,a-phya-i1,2019-20,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,93,46.5 +7.8656,5,a-phya-i1,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 5.0,126,25.2 +1,1,a-phya-i1,2019-20,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258 +4.789333333333333,4.79,a-phya-i1,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,602,602.0 +7.033333333333333,5,a-phya-i1,2019-20,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,145,181.25 +6.426666666666667,5,a-phya-i1,2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,295,295.0 +6.314666666666667,5,a-phya-i1,2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,632,316.0 +4.73025641025641,4.73,a-phya-i1,2019-20,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,797,613.0769230769231 +6.565333333333333,5,a-phya-i1,2019-20,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,538,269.0 +5.322666666666667,5,a-phya-i1,2019-20,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 +5.365333333333333,5,a-phya-i1,2019-20,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,494,494.0 +6.016,5,a-phya-i1,2019-20,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,372,372.0 +6.048,5,a-phya-i1,2019-20,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +5.904,5,a-phya-i1,2019-20,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 +3.8506666666666667,3.85,a-phya-i1,2019-20,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,778,778.0 +5.7973333333333334,5,a-phya-i1,2019-20,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 +5.341333333333333,5,a-phya-i1,2019-20,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,997,498.5 +5.7973333333333334,5,a-phya-i1,2019-20,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +5.914666666666666,5,a-phya-i1,2019-20,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,391,391.0 +6.64,5,a-phya-i1,2019-20,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,255,255.0 +1,1,a-phya-i1,2019-20,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362 +5.621333333333333,5,a-phya-i1,2019-20,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,446,446.0 +5.52,5,a-phya-i1,2019-20,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,465,465.0 +7.034666666666666,5,a-phya-i1,2019-20,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,181,181.0 +2.432,2.43,a-phya-i1,2019-20,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,2088,1044.0 +4.474666666666667,4.47,a-phya-i1,2019-20,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,1983,661.0 +4.629333333333333,4.63,a-phya-i1,2019-20,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,632,632.0 +6.485333333333333,5,a-phya-i1,2019-20,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +6.565333333333333,5,a-phya-i1,2019-20,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,269,269.0 +6.608,5,a-phya-i1,2019-20,Newton - Williams,02070125, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +5.685333333333333,5,a-phya-i1,2019-20,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,434,434.0 +6.22,5,a-phya-i1,2019-20,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,534,333.75 +5.605333333333333,5,a-phya-i1,2019-20,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,449,449.0 +5.061333333333334,5,a-phya-i1,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,551,551.0 +6.64,5,a-phya-i1,2019-20,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +6.341333333333333,5,a-phya-i1,2019-20,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,311,311.0 +7.036444444444445,5,a-phya-i1,2019-20,North Adams - Drury High,02090505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,542,180.66666666666666 +6.666666666666667,5,a-phya-i1,2019-20,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,250,250.0 +7.205333333333333,5,a-phya-i1,2019-20,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,447,149.0 +5.493333333333333,5,a-phya-i1,2019-20,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,470,470.0 +6.165333333333334,5,a-phya-i1,2019-20,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,344,344.0 +6.048,5,a-phya-i1,2019-20,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +6.752,5,a-phya-i1,2019-20,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,234,234.0 +4.328,4.33,a-phya-i1,2019-20,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1377,688.5 +5.042666666666666,5,a-phya-i1,2019-20,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1109,554.5 +6.293333333333333,5,a-phya-i1,2019-20,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,320,320.0 +3.9466666666666668,3.95,a-phya-i1,2019-20,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,380,760.0 +6.437333333333333,5,a-phya-i1,2019-20,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +6.565925925925926,5,a-phya-i1,2019-20,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,242,268.88888888888886 +5.8453333333333335,5,a-phya-i1,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,606,404.0 +5.050666666666666,5,a-phya-i1,2019-20,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1106,553.0 +1,1,a-phya-i1,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159 +5.066666666666666,5,a-phya-i1,2019-20,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,1100,550.0 +6.565333333333333,5,a-phya-i1,2019-20,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,269,269.0 +1,1,a-phya-i1,2019-20,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317 +6.784,5,a-phya-i1,2019-20,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,228,228.0 +7.12,5,a-phya-i1,2019-20,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,165,165.0 +5.296,5,a-phya-i1,2019-20,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,507,507.0 +6.605333333333333,5,a-phya-i1,2019-20,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,523,261.5 +5.925079365079365,5,a-phya-i1,2019-20,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,817,389.04761904761904 +5.642666666666667,5,a-phya-i1,2019-20,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 +7.498666666666667,5,a-phya-i1,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,94,94.0 +5.109333333333334,5,a-phya-i1,2019-20,North Middlesex - Varnum Brook,07350035, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +6.192,5,a-phya-i1,2019-20,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +6.197333333333333,5,a-phya-i1,2019-20,North Reading - J Turner Hood,02170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +5.632,5,a-phya-i1,2019-20,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,444,444.0 +4.053333333333334,4.05,a-phya-i1,2019-20,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,740,740.0 +5.141333333333334,5,a-phya-i1,2019-20,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,536,536.0 +6.496,5,a-phya-i1,2019-20,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,282,282.0 +6.112,5,a-phya-i1,2019-20,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,354,354.0 +4.682666666666667,4.68,a-phya-i1,2019-20,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,622,622.0 +6.266666666666667,5,a-phya-i1,2019-20,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,325,325.0 +3.3173333333333335,3.32,a-phya-i1,2019-20,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,878,878.0 +6.736,5,a-phya-i1,2019-20,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,237,237.0 +5.354666666666667,5,a-phya-i1,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,496,496.0 +4.293333333333333,4.29,a-phya-i1,2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1390,695.0 +6.233333333333333,5,a-phya-i1,2019-20,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,265,331.25 +6.613333333333333,5,a-phya-i1,2019-20,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,260,260.0 +6.565333333333333,5,a-phya-i1,2019-20,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,269,269.0 +6.36,5,a-phya-i1,2019-20,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,246,307.5 +5.916190476190476,5,a-phya-i1,2019-20,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,547,390.7142857142857 +6.08,5,a-phya-i1,2019-20,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +5.141333333333334,5,a-phya-i1,2019-20,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,536,536.0 +6.197333333333333,5,a-phya-i1,2019-20,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.6, 2.0,676,338.0 +5.722666666666667,5,a-phya-i1,2019-20,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,427,427.0 +1.2,1.2,a-phya-i1,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1275,1275.0 +1,1,a-phya-i1,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507 +6.101333333333334,5,a-phya-i1,2019-20,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +5.328,5,a-phya-i1,2019-20,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,501,501.0 +6.549333333333333,5,a-phya-i1,2019-20,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +1,1,a-phya-i1,2019-20,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,702 +4.810666666666667,4.81,a-phya-i1,2019-20,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,598,598.0 +5.386666666666667,5,a-phya-i1,2019-20,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,490,490.0 +4.405333333333333,4.41,a-phya-i1,2019-20,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,674,674.0 +5.269333333333333,5,a-phya-i1,2019-20,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,512,512.0 +5.152,5,a-phya-i1,2019-20,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,534,534.0 +6.314666666666667,5,a-phya-i1,2019-20,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +6.608,5,a-phya-i1,2019-20,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,261,261.0 +6.8,5,a-phya-i1,2019-20,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,225,225.0 +5.44,5,a-phya-i1,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,720,480.0 +6.218666666666667,5,a-phya-i1,2019-20,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,334,334.0 +6.96,5,a-phya-i1,2019-20,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 0.4, 2.0,390,195.0 +7.043809523809524,5,a-phya-i1,2019-20,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,251,179.2857142857143 +4.469333333333333,4.47,a-phya-i1,2019-20,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,993,662.0 +5.728,5,a-phya-i1,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +5.034666666666666,5,a-phya-i1,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,556,556.0 +4.005333333333334,4.01,a-phya-i1,2019-20,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,749,749.0 +5.706666666666667,5,a-phya-i1,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,430,430.0 +6.72,5,a-phya-i1,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +6.4,5,a-phya-i1,2019-20,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +1,1,a-phya-i1,2019-20,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234 +6.949333333333334,5,a-phya-i1,2019-20,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,197,197.0 +1,1,a-phya-i1,2019-20,Oxford - ACE Program,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8 +6.613333333333333,5,a-phya-i1,2019-20,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,260,260.0 +5.978666666666666,5,a-phya-i1,2019-20,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,379,379.0 +5.1306666666666665,5,a-phya-i1,2019-20,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,538,538.0 +5.936,5,a-phya-i1,2019-20,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +4.576,4.58,a-phya-i1,2019-20,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,642,642.0 +4.469333333333333,4.47,a-phya-i1,2019-20,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,662,662.0 +1.3226666666666667,1.32,a-phya-i1,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,626,1252.0 +6.517333333333333,5,a-phya-i1,2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,278,278.0 +1,1,a-phya-i1,2019-20,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356 +1,1,a-phya-i1,2019-20,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423 +1,1,a-phya-i1,2019-20,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1463 +1,1,a-phya-i1,2019-20,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257 +1,1,a-phya-i1,2019-20,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350 +1,1,a-phya-i1,2019-20,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1455 +1,1,a-phya-i1,2019-20,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447 +1,1,a-phya-i1,2019-20,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587 +1,1,a-phya-i1,2019-20,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264 +1,1,a-phya-i1,2019-20,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392 +7.333333333333333,5,a-phya-i1,2019-20,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,125,125.0 +5.402666666666667,5,a-phya-i1,2019-20,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,487,487.0 +5.8453333333333335,5,a-phya-i1,2019-20,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +5.002666666666666,5,a-phya-i1,2019-20,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,562,562.0 +5.578666666666667,5,a-phya-i1,2019-20,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,454,454.0 +3.648,3.65,a-phya-i1,2019-20,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,816,816.0 +6.8213333333333335,5,a-phya-i1,2019-20,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,221,221.0 +6.272,5,a-phya-i1,2019-20,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +5.408,5,a-phya-i1,2019-20,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +6.778666666666667,5,a-phya-i1,2019-20,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,229,229.0 +5.904,5,a-phya-i1,2019-20,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,393,393.0 +4.037333333333334,4.04,a-phya-i1,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,743,743.0 +7.301333333333333,5,a-phya-i1,2019-20,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,131,131.0 +1,1,a-phya-i1,2019-20,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, 0.0, 0.0, 0.0,124 +4.657777777777778,4.66,a-phya-i1,2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,188,626.6666666666667 +6.56,5,a-phya-i1,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,216,270.0 +3.7706666666666666,3.77,a-phya-i1,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,793,793.0 +1,1,a-phya-i1,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360 +7.018666666666666,5,a-phya-i1,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,184,184.0 +7.077333333333334,5,a-phya-i1,2019-20,Pioneer Valley - Northfield Elementary,07500008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,173,173.0 +7.205333333333333,5,a-phya-i1,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,298,149.0 +7.76,5,a-phya-i1,2019-20,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,45,45.0 +5.12,5,a-phya-i1,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,540,540.0 +5.888,5,a-phya-i1,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,396,396.0 +6.309333333333333,5,a-phya-i1,2019-20,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,317,317.0 +5.925333333333334,5,a-phya-i1,2019-20,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,389,389.0 +5.68,5,a-phya-i1,2019-20,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +5.2,5,a-phya-i1,2019-20,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,525,525.0 +6.037333333333334,5,a-phya-i1,2019-20,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,368,368.0 +3.973333333333333,3.97,a-phya-i1,2019-20,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,755,755.0 +6.970666666666666,5,a-phya-i1,2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,193,193.0 +6.1866666666666665,5,a-phya-i1,2019-20,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +6.773333333333333,5,a-phya-i1,2019-20,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 +3.5733333333333333,3.57,a-phya-i1,2019-20,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,830,830.0 +4.784,4.78,a-phya-i1,2019-20,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,603,603.0 +6.528,5,a-phya-i1,2019-20,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,276,276.0 +5.765333333333333,5,a-phya-i1,2019-20,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +6.453333333333333,5,a-phya-i1,2019-20,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,290,290.0 +6.8853333333333335,5,a-phya-i1,2019-20,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,209,209.0 +6.085333333333334,5,a-phya-i1,2019-20,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 +7.072,5,a-phya-i1,2019-20,Plymouth - Hedge,02390010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,174,174.0 +5.072,5,a-phya-i1,2019-20,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,549,549.0 +6.538666666666667,5,a-phya-i1,2019-20,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +4.954666666666666,4.95,a-phya-i1,2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 +5.234666666666667,5,a-phya-i1,2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1037,518.5 +6.992,5,a-phya-i1,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,189,189.0 +4.661333333333333,4.66,a-phya-i1,2019-20,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1252,626.0 +2.4106666666666667,2.41,a-phya-i1,2019-20,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1048,1048.0 +4.272,4.27,a-phya-i1,2019-20,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,699,699.0 +4.672,4.67,a-phya-i1,2019-20,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,624,624.0 +6.144,5,a-phya-i1,2019-20,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +6.826666666666667,5,a-phya-i1,2019-20,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,220,220.0 +5.050666666666666,5,a-phya-i1,2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1106,553.0 +1,1,a-phya-i1,2019-20,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131 +6.917333333333334,5,a-phya-i1,2019-20,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,203,203.0 +1,1,a-phya-i1,2019-20,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309 +7.754666666666667,5,a-phya-i1,2019-20,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,46,46.0 +1,1,a-phya-i1,2019-20,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149 +4.688,4.69,a-phya-i1,2019-20,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,621,621.0 +6.048,5,a-phya-i1,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +5.578666666666667,5,a-phya-i1,2019-20,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,454,454.0 +6.133333333333334,5,a-phya-i1,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,350,350.0 +1,1,a-phya-i1,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180 +5.776,5,a-phya-i1,2019-20,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +6.501333333333333,5,a-phya-i1,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 +6.048,5,a-phya-i1,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,183,366.0 +5.034666666666666,5,a-phya-i1,2019-20,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,278,556.0 +1.952,1.95,a-phya-i1,2019-20,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,567,1134.0 +4.2026666666666666,4.2,a-phya-i1,2019-20,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,356,712.0 +4.245333333333333,4.25,a-phya-i1,2019-20,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,352,704.0 +4.661333333333333,4.66,a-phya-i1,2019-20,Quincy - Central Middle,02430315, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,626,626.0 +4.416,4.42,a-phya-i1,2019-20,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,336,672.0 +4.373333333333333,4.37,a-phya-i1,2019-20,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.8,544,680.0 +4.565333333333333,4.57,a-phya-i1,2019-20,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,322,644.0 +2.3146666666666667,2.31,a-phya-i1,2019-20,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,533,1066.0 +4.277333333333333,4.28,a-phya-i1,2019-20,Quincy - Merrymount,02430060, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,349,698.0 +3.296,3.3,a-phya-i1,2019-20,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,441,882.0 +1.2586666666666666,1.26,a-phya-i1,2019-20,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,1264,1264.0 +1,1,a-phya-i1,2019-20,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428 +2.5137777777777774,2.51,a-phya-i1,2019-20,Quincy - Quincy High,02430505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,1543,1028.6666666666667 +3.6906666666666665,3.69,a-phya-i1,2019-20,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,404,808.0 +3.8186666666666667,3.82,a-phya-i1,2019-20,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,392,784.0 +4.128,4.13,a-phya-i1,2019-20,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,363,726.0 +4.330666666666667,4.33,a-phya-i1,2019-20,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,344,688.0 +1.3013333333333332,1.3,a-phya-i1,2019-20,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,628,1256.0 +6.378666666666667,5,a-phya-i1,2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +5.76,5,a-phya-i1,2019-20,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,420,420.0 +5.642666666666667,5,a-phya-i1,2019-20,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +6.592,5,a-phya-i1,2019-20,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,264,264.0 +4.496,4.5,a-phya-i1,2019-20,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,657,657.0 +4.506666666666667,4.51,a-phya-i1,2019-20,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,655,655.0 +5.946666666666666,5,a-phya-i1,2019-20,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,385,385.0 +5.738666666666667,5,a-phya-i1,2019-20,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +5.952,5,a-phya-i1,2019-20,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,384,384.0 +5.786666666666667,5,a-phya-i1,2019-20,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,415,415.0 +5.8453333333333335,5,a-phya-i1,2019-20,Reading - Joshua Eaton,02460010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +1,1,a-phya-i1,2019-20,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105 +4.355555555555555,4.36,a-phya-i1,2019-20,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 1.8,1230,683.3333333333334 +5.333333333333333,5,a-phya-i1,2019-20,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,500,500.0 +6.378666666666667,5,a-phya-i1,2019-20,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,304,304.0 +4.3539393939393936,4.35,a-phya-i1,2019-20,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.5, 0.5, 0.1, 0.0, 0.0, 0.0, 1.1,752,683.6363636363636 +4.993939393939394,4.99,a-phya-i1,2019-20,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.1,620,563.6363636363636 +5.925925925925926,5,a-phya-i1,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.1, 0.0, 0.8, 0.0, 0.9,350,388.88888888888886 +4.465454545454546,4.47,a-phya-i1,2019-20,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,729,662.7272727272726 +5.105454545454546,5,a-phya-i1,2019-20,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,597,542.7272727272726 +5.7648484848484856,5,a-phya-i1,2019-20,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,461,419.09090909090907 +4.526451612903226,4.53,a-phya-i1,2019-20,Revere - Revere High,02480505, 0.0, 0.0, 1.0, 0.1, 0.0, 2.0, 0.0, 3.1,2019,651.2903225806451 +4.993939393939394,4.99,a-phya-i1,2019-20,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,620,563.6363636363636 +6.844444444444444,5,a-phya-i1,2019-20,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2, 0.0, 0.3,65,216.66666666666669 +4.615757575757576,4.62,a-phya-i1,2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,698,634.5454545454545 +4.989090909090909,4.99,a-phya-i1,2019-20,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.5, 0.5, 0.1, 0.0, 0.0, 0.0, 1.1,621,564.5454545454545 +7.088,5,a-phya-i1,2019-20,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,171,171.0 +6.248,5,a-phya-i1,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,657,328.5 +6.464,5,a-phya-i1,2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.285333333333333,5,a-phya-i1,2019-20,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,509,509.0 +5.088,5,a-phya-i1,2019-20,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,273,546.0 +0.18133333333333335,1,a-phya-i1,2019-20,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,733,1466.0 +4.906666666666666,4.91,a-phya-i1,2019-20,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,290,580.0 +4.576,4.58,a-phya-i1,2019-20,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,321,642.0 +1.0026666666666666,1.0,a-phya-i1,2019-20,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,656,1312.0 +1,1,a-phya-i1,2019-20,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375 +6.602666666666667,5,a-phya-i1,2019-20,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,262,262.0 +6.858666666666666,5,a-phya-i1,2019-20,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,214,214.0 +7.610666666666667,5,a-phya-i1,2019-20,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,73,73.0 +5.9093333333333335,5,a-phya-i1,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,1568,392.0 +5.201777777777778,5,a-phya-i1,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0, 3.0,1574,524.6666666666666 +-12.906666666666666,1,a-phya-i1,2019-20,Salem - Bates,02580003, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,392,3920.0 +-5.333333333333333,1,a-phya-i1,2019-20,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,250,2500.0 +-0.92,1,a-phya-i1,2019-20,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.4,669,1672.5 +5.262222222222222,5,a-phya-i1,2019-20,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,308,513.3333333333334 +7.564444444444446,5,a-phya-i1,2019-20,Salem - New Liberty Innovation School,02580510, 0.5, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,49,81.66666666666667 +2.88,2.88,a-phya-i1,2019-20,Salem - Salem Early Childhood,02580001, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,96,960.0 +5.749841269841269,5,a-phya-i1,2019-20,Salem - Salem High,02580505, 0.0, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 2.1,886,421.90476190476187 +6.986666666666666,5,a-phya-i1,2019-20,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,19,190.0 +4.355555555555555,4.36,a-phya-i1,2019-20,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.6,410,683.3333333333334 +3.191111111111111,3.19,a-phya-i1,2019-20,Salem - Witchcraft Heights,02580070, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,541,901.6666666666667 +1,1,a-phya-i1,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495 +4.826666666666667,4.83,a-phya-i1,2019-20,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,595,595.0 +3.92,3.92,a-phya-i1,2019-20,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,765,765.0 +6.5377777777777775,5,a-phya-i1,2019-20,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0, 2.4,658,274.1666666666667 +5.610666666666667,5,a-phya-i1,2019-20,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 +4.576,4.58,a-phya-i1,2019-20,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,642,642.0 +6.992,5,a-phya-i1,2019-20,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +6.453333333333333,5,a-phya-i1,2019-20,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.634666666666667,5,a-phya-i1,2019-20,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,256,256.0 +6.1626666666666665,5,a-phya-i1,2019-20,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,689,344.5 +6.557333333333333,5,a-phya-i1,2019-20,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,541,270.5 +6.453333333333333,5,a-phya-i1,2019-20,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,58,290.0 +6.192,5,a-phya-i1,2019-20,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +6.234666666666667,5,a-phya-i1,2019-20,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,662,331.0 +6.570666666666667,5,a-phya-i1,2019-20,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,268,268.0 +6.1866666666666665,5,a-phya-i1,2019-20,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +3.018666666666667,3.02,a-phya-i1,2019-20,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,934,934.0 +5.685333333333333,5,a-phya-i1,2019-20,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,434,434.0 +2.8053333333333335,2.81,a-phya-i1,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,487,974.0 +2.336,2.34,a-phya-i1,2019-20,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,531,1062.0 +3.0933333333333333,3.09,a-phya-i1,2019-20,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,460,920.0 +1.5786666666666667,1.58,a-phya-i1,2019-20,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,602,1204.0 +4.432,4.43,a-phya-i1,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,669,669.0 +5.434666666666667,5,a-phya-i1,2019-20,Sharon - Cottage Street,02660005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +5.1626666666666665,5,a-phya-i1,2019-20,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 +5.034666666666666,5,a-phya-i1,2019-20,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,556,556.0 +7.164444444444444,5,a-phya-i1,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,47,156.66666666666669 +2.032,2.03,a-phya-i1,2019-20,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1119,1119.0 +-1.3013333333333332,1,a-phya-i1,2019-20,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,872,1744.0 +1.2533333333333334,1.25,a-phya-i1,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1265,1265.0 +5.5525925925925925,5,a-phya-i1,2019-20,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,413,458.88888888888886 +6.314666666666667,5,a-phya-i1,2019-20,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +5.8133333333333335,5,a-phya-i1,2019-20,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,410,410.0 +6.316521739130435,5,a-phya-i1,2019-20,Shrewsbury - Floral Street School,02710020, 0.3, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.3,726,315.6521739130435 +4.213333333333333,4.21,a-phya-i1,2019-20,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 1.4,994,710.0 +1,1,a-phya-i1,2019-20,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +4.1866666666666665,4.19,a-phya-i1,2019-20,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,1001,715.0 +4.276543209876543,4.28,a-phya-i1,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.7, 0.0, 0.0, 1.0, 1.0, 0.0, 2.7,1885,698.1481481481482 +6.1226666666666665,5,a-phya-i1,2019-20,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +6.112,5,a-phya-i1,2019-20,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,354,354.0 +7.338666666666667,5,a-phya-i1,2019-20,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,124,124.0 +1.4026666666666667,1.4,a-phya-i1,2019-20,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1237,1237.0 +5.312,5,a-phya-i1,2019-20,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 +1,1,a-phya-i1,2019-20,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, 0.0, 0.0, 0.0, 0.0,355 +6.457777777777777,5,a-phya-i1,2019-20,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,347,289.1666666666667 +5.8533333333333335,5,a-phya-i1,2019-20,Somerset - North Elementary,02730008, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 1.2,483,402.5 +5.111111111111111,5,a-phya-i1,2019-20,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,650,541.6666666666667 +6.848888888888888,5,a-phya-i1,2019-20,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,259,215.83333333333334 +4.58,4.58,a-phya-i1,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,1026,641.25 +1,1,a-phya-i1,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625 +1,1,a-phya-i1,2019-20,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474 +1,1,a-phya-i1,2019-20,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249 +1,1,a-phya-i1,2019-20,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282 +1,1,a-phya-i1,2019-20,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730 +1,1,a-phya-i1,2019-20,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54 +1,1,a-phya-i1,2019-20,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447 +1,1,a-phya-i1,2019-20,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15 +1,1,a-phya-i1,2019-20,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228 +1,1,a-phya-i1,2019-20,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396 +1,1,a-phya-i1,2019-20,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439 +5.008,5,a-phya-i1,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,561,561.0 +5.765333333333333,5,a-phya-i1,2019-20,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,419,419.0 +6.1226666666666665,5,a-phya-i1,2019-20,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 +1,1,a-phya-i1,2019-20,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568 +-0.5226666666666666,1,a-phya-i1,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,799,1598.0 +5.946666666666666,5,a-phya-i1,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.6, 0.0, 0.8, 0.2, 2.6,1001,385.0 +4.597333333333333,4.6,a-phya-i1,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,638,638.0 +6.688,5,a-phya-i1,2019-20,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,492,246.0 +6.624,5,a-phya-i1,2019-20,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,258,258.0 +6.213333333333333,5,a-phya-i1,2019-20,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,268,335.0 +6.192,5,a-phya-i1,2019-20,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,339,339.0 +5.786666666666667,5,a-phya-i1,2019-20,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 +7.272,5,a-phya-i1,2019-20,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,273,136.5 +6.058666666666666,5,a-phya-i1,2019-20,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,364,364.0 +7.834666666666666,5,a-phya-i1,2019-20,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,31,31.0 +5.594666666666667,5,a-phya-i1,2019-20,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,451,451.0 +6.741333333333333,5,a-phya-i1,2019-20,Southbridge - Southbridge Middle School,02770315, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,472,236.0 +6.314666666666667,5,a-phya-i1,2019-20,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +4.112,4.11,a-phya-i1,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1458,729.0 +6.165333333333334,5,a-phya-i1,2019-20,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,344,344.0 +1,1,a-phya-i1,2019-20,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,77 +1,1,a-phya-i1,2019-20,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11 +6.704,5,a-phya-i1,2019-20,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,243,243.0 +4.946666666666666,4.95,a-phya-i1,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1145,572.5 +5.504,5,a-phya-i1,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +6.197333333333333,5,a-phya-i1,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,676,338.0 +6.176,5,a-phya-i1,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,342,342.0 +6.608,5,a-phya-i1,2019-20,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +6.72,5,a-phya-i1,2019-20,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +1,1,a-phya-i1,2019-20,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438 +6.88,5,a-phya-i1,2019-20,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.8, 1.3, 0.0, 2.1,441,210.0 +5.696,5,a-phya-i1,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,432,432.0 +6.634666666666667,5,a-phya-i1,2019-20,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,256,256.0 +6.757333333333333,5,a-phya-i1,2019-20,Springfield - Arthur T Talmadge,02810165, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,233,233.0 +1,1,a-phya-i1,2019-20,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30 +6.096,5,a-phya-i1,2019-20,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +1,1,a-phya-i1,2019-20,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350 +7.165333333333334,5,a-phya-i1,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,313,156.5 +6.24,5,a-phya-i1,2019-20,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,330,330.0 +5.733333333333333,5,a-phya-i1,2019-20,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +7.0986666666666665,5,a-phya-i1,2019-20,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,169,169.0 +4.282666666666667,4.28,a-phya-i1,2019-20,Springfield - Edward P. Boland School,02810010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,697,697.0 +6.266666666666667,5,a-phya-i1,2019-20,Springfield - Elias Brookings,02810030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +4.208,4.21,a-phya-i1,2019-20,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,711,711.0 +6.453333333333333,5,a-phya-i1,2019-20,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +4.512,4.51,a-phya-i1,2019-20,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,654,654.0 +1,1,a-phya-i1,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32 +1,1,a-phya-i1,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42 +1,1,a-phya-i1,2019-20,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695 +1,1,a-phya-i1,2019-20,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261 +6.304,5,a-phya-i1,2019-20,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 +5.077333333333334,5,a-phya-i1,2019-20,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1096,548.0 +1,1,a-phya-i1,2019-20,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262 +5.8293333333333335,5,a-phya-i1,2019-20,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +1,1,a-phya-i1,2019-20,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396 +4.565333333333333,4.57,a-phya-i1,2019-20,Springfield - Indian Orchard Elementary,02810100, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,644,644.0 +5.434666666666667,5,a-phya-i1,2019-20,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +5.930666666666666,5,a-phya-i1,2019-20,Springfield - John J Duggan Middle,02810320, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,776,388.0 +6.48,5,a-phya-i1,2019-20,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,285,285.0 +6.544,5,a-phya-i1,2019-20,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +1,1,a-phya-i1,2019-20,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15 +6.933333333333334,5,a-phya-i1,2019-20,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,400,200.0 +1,1,a-phya-i1,2019-20,Springfield - M Marcus Kiley Middle,02810330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,733 +1,1,a-phya-i1,2019-20,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188 +6.208,5,a-phya-i1,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +6.682666666666667,5,a-phya-i1,2019-20,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +6.528,5,a-phya-i1,2019-20,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,276,276.0 +5.477333333333333,5,a-phya-i1,2019-20,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +5.210666666666667,5,a-phya-i1,2019-20,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,523,523.0 +3.9306666666666668,3.93,a-phya-i1,2019-20,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,763,763.0 +6.362666666666667,5,a-phya-i1,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,307,307.0 +4.285333333333333,4.29,a-phya-i1,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1393,696.5 +6.538666666666667,5,a-phya-i1,2019-20,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +6.282666666666667,5,a-phya-i1,2019-20,Springfield - Samuel Bowles,02810020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +7.362666666666667,5,a-phya-i1,2019-20,Springfield - South End Middle School,02810355, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,239,119.5 +2.498666666666667,2.5,a-phya-i1,2019-20,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,2063,1031.5 +1,1,a-phya-i1,2019-20,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205 +1.36,1.36,a-phya-i1,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1245,1245.0 +1,1,a-phya-i1,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25 +1,1,a-phya-i1,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51 +1,1,a-phya-i1,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52 +1,1,a-phya-i1,2019-20,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78 +1,1,a-phya-i1,2019-20,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +1,1,a-phya-i1,2019-20,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,107 +1,1,a-phya-i1,2019-20,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548 +4.533333333333333,4.53,a-phya-i1,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,650,650.0 +7.1386666666666665,5,a-phya-i1,2019-20,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,323,161.5 +6.682666666666667,5,a-phya-i1,2019-20,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +6.72,5,a-phya-i1,2019-20,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +5.9093333333333335,5,a-phya-i1,2019-20,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,392,392.0 +5.632,5,a-phya-i1,2019-20,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,444,444.0 +6.608,5,a-phya-i1,2019-20,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,261,261.0 +6.08,5,a-phya-i1,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.2, 0.7, 0.0, 0.0, 0.0, 0.0, 0.9,324,360.0 +6.592,5,a-phya-i1,2019-20,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,264,264.0 +5.898666666666666,5,a-phya-i1,2019-20,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +6.1066666666666665,5,a-phya-i1,2019-20,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +5.62,5,a-phya-i1,2019-20,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,714,446.25 +4.56,4.56,a-phya-i1,2019-20,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,645,645.0 +7.578666666666667,5,a-phya-i1,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,79,79.0 +6.672,5,a-phya-i1,2019-20,Stoughton - Helen Hansen Elementary,02850010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +6.026666666666666,5,a-phya-i1,2019-20,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +6.1706666666666665,5,a-phya-i1,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +3.3813333333333335,3.38,a-phya-i1,2019-20,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,866,866.0 +6.245333333333333,5,a-phya-i1,2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,329,329.0 +6.752,5,a-phya-i1,2019-20,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +2.5493333333333332,2.55,a-phya-i1,2019-20,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1022,1022.0 +3.2693333333333334,3.27,a-phya-i1,2019-20,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,887,887.0 +5.781333333333333,5,a-phya-i1,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,832,416.0 +4.85,4.85,a-phya-i1,2019-20,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,945,590.625 +6.224,5,a-phya-i1,2019-20,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,333,333.0 +5.605333333333333,5,a-phya-i1,2019-20,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,449,449.0 +6.0,5,a-phya-i1,2019-20,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 +4.986666666666666,4.99,a-phya-i1,2019-20,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,565,565.0 +6.816,5,a-phya-i1,2019-20,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 +6.213333333333333,5,a-phya-i1,2019-20,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +6.389333333333333,5,a-phya-i1,2019-20,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,302,302.0 +1,1,a-phya-i1,2019-20,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,375 +6.773333333333333,5,a-phya-i1,2019-20,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,345,230.0 +5.728,5,a-phya-i1,2019-20,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,213,426.0 +4.544,4.54,a-phya-i1,2019-20,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,324,648.0 +5.429333333333333,5,a-phya-i1,2019-20,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,241,482.0 +1.7511111111111106,1.75,a-phya-i1,2019-20,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,703,1171.6666666666667 +1.448888888888888,1.45,a-phya-i1,2019-20,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,737,1228.3333333333335 +6.517333333333333,5,a-phya-i1,2019-20,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.522666666666667,5,a-phya-i1,2019-20,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,277,277.0 +5.189333333333333,5,a-phya-i1,2019-20,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,527,527.0 +4.992,4.99,a-phya-i1,2019-20,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,564,564.0 +6.906666666666666,5,a-phya-i1,2019-20,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,205,205.0 +6.656,5,a-phya-i1,2019-20,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,252,252.0 +1,1,a-phya-i1,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2183 +4.8693333333333335,4.87,a-phya-i1,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,587,587.0 +5.457777777777777,5,a-phya-i1,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,715,476.6666666666667 +1,1,a-phya-i1,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491 +4.164848484848485,4.16,a-phya-i1,2019-20,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,791,719.090909090909 +4.414814814814815,4.41,a-phya-i1,2019-20,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.9,605,672.2222222222222 +5.926666666666667,5,a-phya-i1,2019-20,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,311,388.75 +5.034666666666666,5,a-phya-i1,2019-20,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,278,556.0 +4.1866666666666665,4.19,a-phya-i1,2019-20,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,572,715.0 +6.253333333333333,5,a-phya-i1,2019-20,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,262,327.5 +6.173333333333333,5,a-phya-i1,2019-20,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,274,342.5 +4.8533333333333335,4.85,a-phya-i1,2019-20,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,472,590.0 +4.62,4.62,a-phya-i1,2019-20,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,507,633.75 +4.586666666666667,4.59,a-phya-i1,2019-20,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,704,640.0 +4.633333333333334,4.63,a-phya-i1,2019-20,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,505,631.25 +7.694222222222222,5,a-phya-i1,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8, 0.0, 1.5,86,57.333333333333336 +1.8110144927536227,1.81,a-phya-i1,2019-20,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 2.3,2669,1160.4347826086957 +1,1,a-phya-i1,2019-20,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336 +5.274666666666667,5,a-phya-i1,2019-20,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,511,511.0 +5.1306666666666665,5,a-phya-i1,2019-20,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,538,538.0 +4.96,4.96,a-phya-i1,2019-20,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,570,570.0 +6.741333333333333,5,a-phya-i1,2019-20,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,236,236.0 +6.4,5,a-phya-i1,2019-20,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,300,300.0 +5.59438596491228,5,a-phya-i1,2019-20,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.9,857,451.0526315789474 +6.405333333333333,5,a-phya-i1,2019-20,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +6.554666666666667,5,a-phya-i1,2019-20,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,271,271.0 +5.989333333333334,5,a-phya-i1,2019-20,Topsfield - Steward Elementary,02980010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +2.832,2.83,a-phya-i1,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,969,969.0 +5.904,5,a-phya-i1,2019-20,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,393,393.0 +5.68,5,a-phya-i1,2019-20,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,435,435.0 +5.424,5,a-phya-i1,2019-20,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,483,483.0 +4.362666666666667,4.36,a-phya-i1,2019-20,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,682,682.0 +6.074666666666666,5,a-phya-i1,2019-20,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,361,361.0 +7.246666666666667,5,a-phya-i1,2019-20,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,113,141.25 +5.882666666666666,5,a-phya-i1,2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,794,397.0 +5.6,5,a-phya-i1,2019-20,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,450,450.0 +6.627555555555556,5,a-phya-i1,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,386,257.3333333333333 +1,1,a-phya-i1,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421 +4.208,4.21,a-phya-i1,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,711,711.0 +6.56,5,a-phya-i1,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,54,270.0 +6.0906666666666665,5,a-phya-i1,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +4.234666666666667,4.23,a-phya-i1,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,706,706.0 +1,1,a-phya-i1,2019-20,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +4.944,4.94,a-phya-i1,2019-20,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,573,573.0 +4.842666666666666,4.84,a-phya-i1,2019-20,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +5.242666666666667,5,a-phya-i1,2019-20,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +6.053333333333334,5,a-phya-i1,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +4.149333333333334,4.15,a-phya-i1,2019-20,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,361,722.0 +4.458666666666667,4.46,a-phya-i1,2019-20,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,332,664.0 +2.944,2.94,a-phya-i1,2019-20,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,474,948.0 +2.56,2.56,a-phya-i1,2019-20,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,510,1020.0 +1,1,a-phya-i1,2019-20,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159 +4.1706666666666665,4.17,a-phya-i1,2019-20,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,359,718.0 +4.224,4.22,a-phya-i1,2019-20,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,354,708.0 +2.8586666666666667,2.86,a-phya-i1,2019-20,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,482,964.0 +-0.7466666666666667,1,a-phya-i1,2019-20,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,820,1640.0 +4.832,4.83,a-phya-i1,2019-20,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,297,594.0 +3.2,3.2,a-phya-i1,2019-20,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,450,900.0 +4.085333333333334,4.09,a-phya-i1,2019-20,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,367,734.0 +-13.813333333333333,1,a-phya-i1,2019-20,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,2045,4090.0 +5.52,5,a-phya-i1,2019-20,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,465,465.0 +7.253333333333333,5,a-phya-i1,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,140,140.0 +5.205333333333333,5,a-phya-i1,2019-20,Wakefield - Galvin Middle School,03050310, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1048,524.0 +6.8053333333333335,5,a-phya-i1,2019-20,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,224,224.0 +5.378666666666667,5,a-phya-i1,2019-20,Wakefield - Wakefield Memorial High,03050505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,983,491.5 +6.784,5,a-phya-i1,2019-20,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +5.882666666666666,5,a-phya-i1,2019-20,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,397,397.0 +7.226666666666667,5,a-phya-i1,2019-20,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,145,145.0 +5.642666666666667,5,a-phya-i1,2019-20,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +6.1706666666666665,5,a-phya-i1,2019-20,Walpole - Boyden,03070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +5.973333333333334,5,a-phya-i1,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,76,380.0 +6.464,5,a-phya-i1,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,432,288.0 +5.206666666666667,5,a-phya-i1,2019-20,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,419,523.75 +5.642666666666667,5,a-phya-i1,2019-20,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +5.616,5,a-phya-i1,2019-20,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +5.125333333333334,5,a-phya-i1,2019-20,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1078,539.0 +5.525333333333333,5,a-phya-i1,2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +5.733333333333333,5,a-phya-i1,2019-20,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +5.856,5,a-phya-i1,2019-20,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +5.136,5,a-phya-i1,2019-20,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,537,537.0 +4.197333333333333,4.2,a-phya-i1,2019-20,Waltham - John W. McDevitt Middle School,03080415, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,713,713.0 +6.493333333333333,5,a-phya-i1,2019-20,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,565,282.5 +5.872,5,a-phya-i1,2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,399,399.0 +7.221333333333333,5,a-phya-i1,2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,146,146.0 +5.059555555555555,5,a-phya-i1,2019-20,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1654,551.3333333333334 +5.690666666666667,5,a-phya-i1,2019-20,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +5.984,5,a-phya-i1,2019-20,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.504,5,a-phya-i1,2019-20,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +6.464,5,a-phya-i1,2019-20,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,288,288.0 +4.64,4.64,a-phya-i1,2019-20,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,630,630.0 +6.277333333333333,5,a-phya-i1,2019-20,Wareham - Minot Forest,03100017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,323,323.0 +1,1,a-phya-i1,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44 +5.210666666666667,5,a-phya-i1,2019-20,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,523,523.0 +4.730666666666667,4.73,a-phya-i1,2019-20,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,613,613.0 +7.176,5,a-phya-i1,2019-20,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,309,154.5 +6.221333333333333,5,a-phya-i1,2019-20,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,667,333.5 +5.701333333333333,5,a-phya-i1,2019-20,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +4.389333333333333,4.39,a-phya-i1,2019-20,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,677,677.0 +1,1,a-phya-i1,2019-20,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579 +1,1,a-phya-i1,2019-20,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506 +5.957333333333334,5,a-phya-i1,2019-20,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +1,1,a-phya-i1,2019-20,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324 +1,1,a-phya-i1,2019-20,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836 +1,1,a-phya-i1,2019-20,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658 +4.16,4.16,a-phya-i1,2019-20,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,432,720.0 +3.1525925925925926,3.15,a-phya-i1,2019-20,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,818,908.8888888888889 +-23.52,1,a-phya-i1,2019-20,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,591,5910.0 +6.8,5,a-phya-i1,2019-20,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +6.645333333333333,5,a-phya-i1,2019-20,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,254,254.0 +6.634666666666667,5,a-phya-i1,2019-20,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,256,256.0 +6.426666666666667,5,a-phya-i1,2019-20,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,295,295.0 +6.213333333333333,5,a-phya-i1,2019-20,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,335,335.0 +7.472,5,a-phya-i1,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,99,99.0 +6.005333333333334,5,a-phya-i1,2019-20,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +6.1066666666666665,5,a-phya-i1,2019-20,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,355,355.0 +4.8933333333333335,4.89,a-phya-i1,2019-20,Wellesley - Wellesley Middle,03170305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1165,582.5 +3.989333333333333,3.99,a-phya-i1,2019-20,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1504,752.0 +7.434666666666667,5,a-phya-i1,2019-20,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,106,106.0 +5.824,5,a-phya-i1,2019-20,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,408,408.0 +5.328,5,a-phya-i1,2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,501,501.0 +6.469333333333333,5,a-phya-i1,2019-20,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +6.416,5,a-phya-i1,2019-20,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,297,297.0 +6.946666666666666,5,a-phya-i1,2019-20,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,158,197.5 +4.634666666666667,4.63,a-phya-i1,2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,631,631.0 +6.677333333333333,5,a-phya-i1,2019-20,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,124,248.0 +5.514666666666667,5,a-phya-i1,2019-20,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,233,466.0 +3.552,3.55,a-phya-i1,2019-20,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,417,834.0 +5.728,5,a-phya-i1,2019-20,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,213,426.0 +6.058666666666666,5,a-phya-i1,2019-20,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,182,364.0 +2.464,2.46,a-phya-i1,2019-20,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,519,1038.0 +5.205333333333333,5,a-phya-i1,2019-20,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,262,524.0 +1.4293333333333333,1.43,a-phya-i1,2019-20,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1232,1232.0 +4.7715555555555556,4.77,a-phya-i1,2019-20,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,908,605.3333333333334 +6.16,5,a-phya-i1,2019-20,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +5.317333333333333,5,a-phya-i1,2019-20,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +6.882666666666666,5,a-phya-i1,2019-20,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,419,209.5 +3.296,3.3,a-phya-i1,2019-20,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,882,882.0 +4.554666666666667,4.55,a-phya-i1,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,646,646.0 +1.8826666666666667,1.88,a-phya-i1,2019-20,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1147,1147.0 +6.890666666666666,5,a-phya-i1,2019-20,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +7.088,5,a-phya-i1,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,171,171.0 +6.896,5,a-phya-i1,2019-20,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,207,207.0 +6.042666666666666,5,a-phya-i1,2019-20,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,367,367.0 +6.010666666666666,5,a-phya-i1,2019-20,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +6.309333333333333,5,a-phya-i1,2019-20,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,317,317.0 +6.245333333333333,5,a-phya-i1,2019-20,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,329,329.0 +4.842666666666666,4.84,a-phya-i1,2019-20,Westfield - Westfield High,03250505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1184,592.0 +4.032,4.03,a-phya-i1,2019-20,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,744,744.0 +3.7706666666666666,3.77,a-phya-i1,2019-20,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,793,793.0 +5.246060606060606,5,a-phya-i1,2019-20,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,568,516.3636363636364 +6.026666666666666,5,a-phya-i1,2019-20,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +5.136,5,a-phya-i1,2019-20,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,537,537.0 +6.538666666666667,5,a-phya-i1,2019-20,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,274,274.0 +6.16,5,a-phya-i1,2019-20,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +6.112,5,a-phya-i1,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,354,354.0 +7.626666666666667,5,a-phya-i1,2019-20,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,70,70.0 +6.245333333333333,5,a-phya-i1,2019-20,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +6.101333333333334,5,a-phya-i1,2019-20,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.6, 0.0, 0.4, 0.0, 0.0, 1.0,356,356.0 +4.789333333333333,4.79,a-phya-i1,2019-20,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,602,602.0 +1.987555555555556,1.99,a-phya-i1,2019-20,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1691,1127.3333333333333 +7.68,5,a-phya-i1,2019-20,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,120,60.0 +6.24,5,a-phya-i1,2019-20,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,297,330.0 +4.725333333333333,4.73,a-phya-i1,2019-20,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.1, 0.0, 0.5,307,614.0 +4.071111111111112,4.07,a-phya-i1,2019-20,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.0, 0.9,663,736.6666666666666 +5.114074074074074,5,a-phya-i1,2019-20,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.0, 0.9,487,541.1111111111111 +7.2,5,a-phya-i1,2019-20,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 1.9,285,150.0 +6.021333333333334,5,a-phya-i1,2019-20,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,371,371.0 +6.282666666666667,5,a-phya-i1,2019-20,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,483,322.0 +5.994666666666666,5,a-phya-i1,2019-20,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,564,376.0 +6.965333333333334,5,a-phya-i1,2019-20,Westwood - Deerfield School,03350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,194,194.0 +6.474666666666667,5,a-phya-i1,2019-20,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,286,286.0 +4.277333333333333,4.28,a-phya-i1,2019-20,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,698,698.0 +6.565333333333333,5,a-phya-i1,2019-20,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,269,269.0 +1,1,a-phya-i1,2019-20,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,209 +5.79111111111111,5,a-phya-i1,2019-20,Westwood - Westwood High,03350505, 0.0, 0.0, 0.4, 1.0, 0.0, 1.0, 0.0, 2.4,994,414.1666666666667 +7.695238095238095,5,a-phya-i1,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,40,57.142857142857146 +6.346666666666667,5,a-phya-i1,2019-20,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,310,310.0 +4.839111111111111,4.84,a-phya-i1,2019-20,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,889,592.6666666666666 +-0.26666666666666666,1,a-phya-i1,2019-20,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,310,1550.0 +6.204444444444444,5,a-phya-i1,2019-20,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,202,336.6666666666667 +5.8773333333333335,5,a-phya-i1,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,199,398.0 +6.231111111111111,5,a-phya-i1,2019-20,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.6,199,331.6666666666667 +3.248,3.25,a-phya-i1,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,891,891.0 +5.822222222222221,5,a-phya-i1,2019-20,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,245,408.33333333333337 +6.63111111111111,5,a-phya-i1,2019-20,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,154,256.6666666666667 +5.828571428571429,5,a-phya-i1,2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.2, 0.0, 0.0, 0.0, 0.7,285,407.14285714285717 +5.75111111111111,5,a-phya-i1,2019-20,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,253,421.6666666666667 +1.4933333333333334,1.49,a-phya-i1,2019-20,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,1830,1220.0 +4.736,4.74,a-phya-i1,2019-20,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,306,612.0 +7.322666666666667,5,a-phya-i1,2019-20,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,127,127.0 +5.928888888888888,5,a-phya-i1,2019-20,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,466,388.33333333333337 +5.786666666666667,5,a-phya-i1,2019-20,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,498,415.0 +6.017777777777777,5,a-phya-i1,2019-20,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,446,371.6666666666667 +5.764444444444444,5,a-phya-i1,2019-20,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,503,419.1666666666667 +1,1,a-phya-i1,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109 +5.192727272727272,5,a-phya-i1,2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.2, 1.0, 1.0, 0.0, 2.2,1158,526.3636363636364 +5.426666666666667,5,a-phya-i1,2019-20,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,579,482.5 +4.656,4.66,a-phya-i1,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1254,627.0 +7.269333333333333,5,a-phya-i1,2019-20,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,137,137.0 +7.258666666666667,5,a-phya-i1,2019-20,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,139,139.0 +6.688,5,a-phya-i1,2019-20,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,246,246.0 +6.1546666666666665,5,a-phya-i1,2019-20,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,346,346.0 +6.746666666666667,5,a-phya-i1,2019-20,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,235,235.0 +7.024,5,a-phya-i1,2019-20,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,183,183.0 +6.204444444444444,5,a-phya-i1,2019-20,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.4, 0.0, 2.4,808,336.6666666666667 +5.818666666666667,5,a-phya-i1,2019-20,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,818,409.0 +5.914666666666666,5,a-phya-i1,2019-20,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +6.384,5,a-phya-i1,2019-20,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,303,303.0 +1,1,a-phya-i1,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34 +6.608,5,a-phya-i1,2019-20,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +1,1,a-phya-i1,2019-20,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265 +6.528,5,a-phya-i1,2019-20,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,276,276.0 +1,1,a-phya-i1,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85 +5.952,5,a-phya-i1,2019-20,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,384,384.0 +5.76,5,a-phya-i1,2019-20,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,420,420.0 +5.205333333333333,5,a-phya-i1,2019-20,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,524,524.0 +3.737142857142857,3.74,a-phya-i1,2019-20,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,1119,799.2857142857143 +5.914666666666666,5,a-phya-i1,2019-20,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +5.749333333333333,5,a-phya-i1,2019-20,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,422,422.0 +4.019649122807017,4.02,a-phya-i1,2019-20,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,1418,746.3157894736843 +5.7973333333333334,5,a-phya-i1,2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,413,413.0 +5.408,5,a-phya-i1,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,486,486.0 +1,1,a-phya-i1,2019-20,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586 +5.44,5,a-phya-i1,2019-20,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,480,480.0 +1,1,a-phya-i1,2019-20,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386 +4.976,4.98,a-phya-i1,2019-20,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,567,567.0 +6.341333333333333,5,a-phya-i1,2019-20,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,311,311.0 +5.968,5,a-phya-i1,2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +5.477333333333333,5,a-phya-i1,2019-20,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,473,473.0 +7.029333333333334,5,a-phya-i1,2019-20,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,182,182.0 +6.336,5,a-phya-i1,2019-20,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,312,312.0 +6.725333333333333,5,a-phya-i1,2019-20,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,239,239.0 +6.128,5,a-phya-i1,2019-20,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,351,351.0 +4.669333333333333,4.67,a-phya-i1,2019-20,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1249,624.5 +4.688,4.69,a-phya-i1,2019-20,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,621,621.0 +4.16,4.16,a-phya-i1,2019-20,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,720,720.0 +2.074666666666667,2.07,a-phya-i1,2019-20,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1111,1111.0 +6.496,5,a-phya-i1,2019-20,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,282,282.0 +6.085333333333334,5,a-phya-i1,2019-20,Worcester - Canterbury,03480045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +7.123555555555555,5,a-phya-i1,2019-20,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,493,164.33333333333334 +6.29,5,a-phya-i1,2019-20,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,513,320.625 +6.728,5,a-phya-i1,2019-20,Worcester - City View,03480053, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,477,238.5 +4.9013333333333335,4.9,a-phya-i1,2019-20,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,581,581.0 +6.586666666666667,5,a-phya-i1,2019-20,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,265,265.0 +5.722666666666667,5,a-phya-i1,2019-20,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,427,427.0 +4.002666666666666,4.0,a-phya-i1,2019-20,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1499,749.5 +5.728,5,a-phya-i1,2019-20,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +5.946666666666666,5,a-phya-i1,2019-20,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,385,385.0 +6.999466666666667,5,a-phya-i1,2019-20,Worcester - Forest Grove Middle,03480415, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 1.0, 5.0,938,187.6 +6.736,5,a-phya-i1,2019-20,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,237,237.0 +5.008,5,a-phya-i1,2019-20,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,561,561.0 +6.005333333333334,5,a-phya-i1,2019-20,Worcester - Goddard School/Science Technical,03480100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +6.032,5,a-phya-i1,2019-20,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,369,369.0 +7.301333333333333,5,a-phya-i1,2019-20,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 3.0,393,131.0 +6.597333333333333,5,a-phya-i1,2019-20,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,263,263.0 +5.802666666666667,5,a-phya-i1,2019-20,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,412,412.0 +6.261333333333333,5,a-phya-i1,2019-20,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,326,326.0 +6.778666666666667,5,a-phya-i1,2019-20,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,229,229.0 +6.330666666666667,5,a-phya-i1,2019-20,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 +6.816,5,a-phya-i1,2019-20,Worcester - Midland Street,03480185, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,222,222.0 +5.969777777777777,5,a-phya-i1,2019-20,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,571,380.6666666666667 +7.249333333333333,5,a-phya-i1,2019-20,Worcester - Norrback Avenue,03480202, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,563,140.75 +6.663466666666667,5,a-phya-i1,2019-20,Worcester - North High,03480515, 1.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 5.0,1253,250.6 +6.016,5,a-phya-i1,2019-20,Worcester - Quinsigamond,03480210, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,744,372.0 +5.456,5,a-phya-i1,2019-20,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,477,477.0 +7.256533333333333,5,a-phya-i1,2019-20,Worcester - Roosevelt,03480220, 1.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 5.0,697,139.4 +6.161333333333333,5,a-phya-i1,2019-20,Worcester - South High Community,03480520, 0.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0,1379,344.75 +6.378666666666667,5,a-phya-i1,2019-20,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,912,304.0 +5.733333333333333,5,a-phya-i1,2019-20,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +6.112,5,a-phya-i1,2019-20,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,354,354.0 +5.946666666666666,5,a-phya-i1,2019-20,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,385,385.0 +5.386666666666667,5,a-phya-i1,2019-20,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,245,490.0 +5.1626666666666665,5,a-phya-i1,2019-20,Worcester - Vernon Hill School,03480280, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 +7.1786666666666665,5,a-phya-i1,2019-20,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,154,154.0 +7.463619047619049,5,a-phya-i1,2019-20,Worcester - West Tatnuck,03480260, 0.0, 2.0, 0.5, 0.0, 0.0, 1.0, 0.0, 3.5,352,100.57142857142857 +4.794666666666667,4.79,a-phya-i1,2019-20,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,601,601.0 +5.8133333333333335,5,a-phya-i1,2019-20,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +6.058666666666666,5,a-phya-i1,2019-20,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,728,364.0 +5.700392156862745,5,a-phya-i1,2019-20,Worcester - Worcester Technical High,03480605, 0.0, 1.0, 0.0, 1.0, 1.4, 0.0, 0.0, 3.4,1466,431.1764705882353 +7.530666666666667,5,a-phya-i1,2019-20,Worthington - R. H. Conwell,03490010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,88,88.0 +5.866666666666666,5,a-phya-i1,2019-20,Wrentham - Charles E Roderick,03500010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,400,400.0 +6.528,5,a-phya-i1,2019-20,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,552,276.0 +4.9536,4.95,a-phya-i1,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 2.5,1428,571.2 +1,1,a-phya-i1,2018-19,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90 +5.093333333333334,5,a-phya-i1,2018-19,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,545,545.0 +4.416,4.42,a-phya-i1,2018-19,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,672,672.0 +5.573333333333333,5,a-phya-i1,2018-19,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,455,455.0 +6.432,5,a-phya-i1,2018-19,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,294,294.0 +-6.026666666666666,1,a-phya-i1,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,526,2630.0 +3.5466666666666673,3.55,a-phya-i1,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.4, 0.0, 2.2,1837,834.9999999999999 +5.525333333333333,5,a-phya-i1,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,464,464.0 +5.84,5,a-phya-i1,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,405,405.0 +1,1,a-phya-i1,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105 +5.605333333333333,5,a-phya-i1,2018-19,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,449,449.0 +5.226666666666667,5,a-phya-i1,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,520,520.0 +5.376,5,a-phya-i1,2018-19,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,492,492.0 +5.994666666666666,5,a-phya-i1,2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 1.0,376,376.0 +4.923333333333333,4.92,a-phya-i1,2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,923,576.875 +4.986666666666666,4.99,a-phya-i1,2018-19,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,565,565.0 +5.658666666666667,5,a-phya-i1,2018-19,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +6.0,5,a-phya-i1,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +5.952,5,a-phya-i1,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,384,384.0 +5.856,5,a-phya-i1,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,402,402.0 +4.753333333333333,4.75,a-phya-i1,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,974,608.75 +7.136,5,a-phya-i1,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,162,162.0 +5.032,5,a-phya-i1,2018-19,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1113,556.5 +4.848,4.85,a-phya-i1,2018-19,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,591,591.0 +6.144,5,a-phya-i1,2018-19,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,348,348.0 +6.624,5,a-phya-i1,2018-19,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +6.314666666666667,5,a-phya-i1,2018-19,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,316,316.0 +4.832,4.83,a-phya-i1,2018-19,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,594,594.0 +6.053333333333334,5,a-phya-i1,2018-19,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,365,365.0 +1,1,a-phya-i1,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441 +6.005333333333334,5,a-phya-i1,2018-19,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +4.986666666666666,4.99,a-phya-i1,2018-19,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,565,565.0 +6.64,5,a-phya-i1,2018-19,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,51,255.0 +4.565333333333333,4.57,a-phya-i1,2018-19,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,644,644.0 +5.738666666666667,5,a-phya-i1,2018-19,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,424,424.0 +5.898666666666666,5,a-phya-i1,2018-19,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,394,394.0 +6.32,5,a-phya-i1,2018-19,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,315,315.0 +5.749333333333333,5,a-phya-i1,2018-19,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,422,422.0 +5.262222222222222,5,a-phya-i1,2018-19,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,924,513.3333333333334 +5.781333333333333,5,a-phya-i1,2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,416,416.0 +4.817777777777778,4.82,a-phya-i1,2018-19,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,1790,596.6666666666666 +5.216,5,a-phya-i1,2018-19,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,522,522.0 +4.858666666666666,4.86,a-phya-i1,2018-19,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,589,589.0 +4.954666666666666,4.95,a-phya-i1,2018-19,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 +5.952,5,a-phya-i1,2018-19,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,384,384.0 +5.109333333333334,5,a-phya-i1,2018-19,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,542,542.0 +1,1,a-phya-i1,2018-19,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,66 +5.862222222222221,5,a-phya-i1,2018-19,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.7, 0.5, 0.0, 1.2,481,400.83333333333337 +4.794666666666667,4.79,a-phya-i1,2018-19,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,601,601.0 +1,1,a-phya-i1,2018-19,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411 +5.514666666666667,5,a-phya-i1,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +3.4,3.4,a-phya-i1,2018-19,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,1380,862.5 +5.242666666666667,5,a-phya-i1,2018-19,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,517,517.0 +5.418666666666667,5,a-phya-i1,2018-19,Arlington - Cyrus E Dallin,00100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,484,484.0 +5.530666666666667,5,a-phya-i1,2018-19,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,463,463.0 +5.594666666666667,5,a-phya-i1,2018-19,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +5.589333333333333,5,a-phya-i1,2018-19,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,452,452.0 +5.728,5,a-phya-i1,2018-19,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +7.573333333333333,5,a-phya-i1,2018-19,Arlington - Menotomy Preschool,00100038, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 1.2,96,80.0 +5.72,5,a-phya-i1,2018-19,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,855,427.5 +6.357333333333333,5,a-phya-i1,2018-19,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,308,308.0 +5.296,5,a-phya-i1,2018-19,Arlington - Thompson,00100050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,507,507.0 +5.173333333333333,5,a-phya-i1,2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,530,530.0 +1,1,a-phya-i1,2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183 +4.4,4.4,a-phya-i1,2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,675,675.0 +6.466666666666667,5,a-phya-i1,2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,575,287.5 +5.914666666666666,5,a-phya-i1,2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +5.226666666666667,5,a-phya-i1,2018-19,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,832,520.0 +4.757333333333333,4.76,a-phya-i1,2018-19,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,608,608.0 +5.76711111111111,5,a-phya-i1,2018-19,Ashland - David Mindess,00140015, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,628,418.6666666666667 +6.824888888888888,5,a-phya-i1,2018-19,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.5, 0.5, 2.0, 0.0, 0.0, 3.0,661,220.33333333333334 +7.381333333333333,5,a-phya-i1,2018-19,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,116,116.0 +3.968,3.97,a-phya-i1,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1134,756.0 +6.488,5,a-phya-i1,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,567,283.5 +6.192,5,a-phya-i1,2018-19,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +5.818666666666667,5,a-phya-i1,2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +7.264,5,a-phya-i1,2018-19,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,138,138.0 +4.549333333333333,4.55,a-phya-i1,2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1294,647.0 +5.888,5,a-phya-i1,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,396,396.0 +1,1,a-phya-i1,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58 +2.5223529411764707,2.52,a-phya-i1,2018-19,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.0, 0.6, 1.1, 0.0, 1.7,1746,1027.0588235294117 +4.832,4.83,a-phya-i1,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,594,594.0 +1,1,a-phya-i1,2018-19,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179 +5.578666666666667,5,a-phya-i1,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,454,454.0 +5.541333333333333,5,a-phya-i1,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +5.733333333333333,5,a-phya-i1,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +4.528,4.53,a-phya-i1,2018-19,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,651,651.0 +5.8453333333333335,5,a-phya-i1,2018-19,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,404,404.0 +4.917333333333334,4.92,a-phya-i1,2018-19,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,578,578.0 +4.677333333333333,4.68,a-phya-i1,2018-19,Auburn - Auburn Middle,00170305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +3.776,3.78,a-phya-i1,2018-19,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 1.0,792,792.0 +6.405333333333333,5,a-phya-i1,2018-19,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +6.368,5,a-phya-i1,2018-19,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +6.378666666666667,5,a-phya-i1,2018-19,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,608,304.0 +6.282666666666667,5,a-phya-i1,2018-19,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,322,322.0 +5.834666666666666,5,a-phya-i1,2018-19,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,406,406.0 +5.925333333333334,5,a-phya-i1,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +5.781333333333333,5,a-phya-i1,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,416,416.0 +5.989333333333334,5,a-phya-i1,2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,377,377.0 +5.173333333333333,5,a-phya-i1,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,530,530.0 +4.796444444444445,4.8,a-phya-i1,2018-19,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,1802,600.6666666666666 +5.917333333333334,5,a-phya-i1,2018-19,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,781,390.5 +5.84,5,a-phya-i1,2018-19,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,810,405.0 +6.661333333333333,5,a-phya-i1,2018-19,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,251,251.0 +7.221333333333333,5,a-phya-i1,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,146,146.0 +6.282666666666667,5,a-phya-i1,2018-19,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,322,322.0 +6.624,5,a-phya-i1,2018-19,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,258,258.0 +5.754666666666667,5,a-phya-i1,2018-19,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 +6.453333333333333,5,a-phya-i1,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,290,290.0 +1,1,a-phya-i1,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500 +3.3386666666666667,3.34,a-phya-i1,2018-19,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,874,874.0 +4.981333333333334,4.98,a-phya-i1,2018-19,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,566,566.0 +4.8053333333333335,4.81,a-phya-i1,2018-19,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,599,599.0 +1,1,a-phya-i1,2018-19,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619 +4.336,4.34,a-phya-i1,2018-19,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,687,687.0 +5.942857142857142,5,a-phya-i1,2018-19,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,540,385.7142857142857 +7.045333333333334,5,a-phya-i1,2018-19,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,179,179.0 +1,1,a-phya-i1,2018-19,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385 +6.1866666666666665,5,a-phya-i1,2018-19,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,476,340.0 +7.477333333333333,5,a-phya-i1,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,98,98.0 +4.032,4.03,a-phya-i1,2018-19,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,744,744.0 +4.208,4.21,a-phya-i1,2018-19,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,711,711.0 +6.16,5,a-phya-i1,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +1,1,a-phya-i1,2018-19,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35 +1,1,a-phya-i1,2018-19,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290 +3.64,3.64,a-phya-i1,2018-19,Belmont - Belmont High,00260505, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 1.0, 1.6,1308,817.5 +5.952,5,a-phya-i1,2018-19,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,384,384.0 +5.776,5,a-phya-i1,2018-19,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +5.6,5,a-phya-i1,2018-19,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 0.0, 1.4,630,450.00000000000006 +5.541333333333333,5,a-phya-i1,2018-19,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,461,461.0 +4.192,4.19,a-phya-i1,2018-19,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1428,714.0 +1,1,a-phya-i1,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354 +5.774545454545454,5,a-phya-i1,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.5, 0.6, 0.0, 0.0, 1.1,459,417.27272727272725 +1,1,a-phya-i1,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339 +2.6986666666666665,2.7,a-phya-i1,2018-19,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,497,994.0 +3.8293333333333335,3.83,a-phya-i1,2018-19,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,391,782.0 +5.984,5,a-phya-i1,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.173333333333333,5,a-phya-i1,2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,530,530.0 +6.165333333333334,5,a-phya-i1,2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,344,344.0 +6.245333333333333,5,a-phya-i1,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +7.024,5,a-phya-i1,2018-19,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +4.890666666666666,4.89,a-phya-i1,2018-19,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,583,583.0 +5.728,5,a-phya-i1,2018-19,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,426,426.0 +5.776,5,a-phya-i1,2018-19,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,1251,417.0 +4.256,4.26,a-phya-i1,2018-19,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1404,702.0 +6.421333333333333,5,a-phya-i1,2018-19,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +1,1,a-phya-i1,2018-19,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423 +6.245333333333333,5,a-phya-i1,2018-19,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +7.344,5,a-phya-i1,2018-19,Beverly - McKeown School,00300002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,123,123.0 +6.330666666666667,5,a-phya-i1,2018-19,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,313,313.0 +4.437333333333333,4.44,a-phya-i1,2018-19,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1336,668.0 +1,1,a-phya-i1,2018-19,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180 +6.517333333333333,5,a-phya-i1,2018-19,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +5.456,5,a-phya-i1,2018-19,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,477,477.0 +6.309333333333333,5,a-phya-i1,2018-19,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,317,317.0 +5.232,5,a-phya-i1,2018-19,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 +6.277333333333333,5,a-phya-i1,2018-19,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,646,323.0 +5.322666666666667,5,a-phya-i1,2018-19,Billerica - Parker,00310015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 +5.285333333333333,5,a-phya-i1,2018-19,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,509,509.0 +1,1,a-phya-i1,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1230 +4.650666666666667,4.65,a-phya-i1,2018-19,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,314,628.0 +5.658666666666667,5,a-phya-i1,2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,439,439.0 +5.7973333333333334,5,a-phya-i1,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 +1,1,a-phya-i1,2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262 +6.554666666666667,5,a-phya-i1,2018-19,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,271,271.0 +3.4346666666666668,3.43,a-phya-i1,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,856,856.0 +6.8053333333333335,5,a-phya-i1,2018-19,Boston - Another Course To College,00350541, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,224,224.0 +7.152,5,a-phya-i1,2018-19,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,159,159.0 +6.362666666666667,5,a-phya-i1,2018-19,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,307,307.0 +6.530666666666667,5,a-phya-i1,2018-19,Boston - Blackstone,00350390, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,551,275.5 +1,1,a-phya-i1,2018-19,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144 +5.498666666666667,5,a-phya-i1,2018-19,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +1,1,a-phya-i1,2018-19,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,160 +5.402666666666667,5,a-phya-i1,2018-19,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +6.032,5,a-phya-i1,2018-19,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +3.662222222222222,3.66,a-phya-i1,2018-19,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,2440,813.3333333333334 +3.288,3.29,a-phya-i1,2018-19,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1767,883.5 +6.56,5,a-phya-i1,2018-19,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +6.437333333333333,5,a-phya-i1,2018-19,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,586,293.0 +7.922666666666666,5,a-phya-i1,2018-19,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,29,14.5 +5.242666666666667,5,a-phya-i1,2018-19,Boston - Charles H Taylor,00350054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +5.088,5,a-phya-i1,2018-19,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,546,546.0 +3.3013333333333335,3.3,a-phya-i1,2018-19,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,881,881.0 +6.069333333333334,5,a-phya-i1,2018-19,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +1,1,a-phya-i1,2018-19,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45 +6.037333333333334,5,a-phya-i1,2018-19,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,368,368.0 +6.487111111111111,5,a-phya-i1,2018-19,Boston - Condon K-8,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,851,283.6666666666667 +5.418666666666667,5,a-phya-i1,2018-19,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,968,484.0 +6.613333333333333,5,a-phya-i1,2018-19,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,260,260.0 +1,1,a-phya-i1,2018-19,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97 +5.786666666666667,5,a-phya-i1,2018-19,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,415,415.0 +5.765333333333333,5,a-phya-i1,2018-19,Boston - Dearborn,00350074, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +5.749333333333333,5,a-phya-i1,2018-19,Boston - Dennis C Haley,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,422,422.0 +3.6746666666666665,3.67,a-phya-i1,2018-19,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,811,811.0 +6.981333333333334,5,a-phya-i1,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,191,191.0 +7.235555555555555,5,a-phya-i1,2018-19,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.5, 1.5,215,143.33333333333334 +5.76,5,a-phya-i1,2018-19,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.5, 1.5,630,420.0 +1,1,a-phya-i1,2018-19,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111 +7.018666666666666,5,a-phya-i1,2018-19,Boston - East Boston Early Childhood Center,00350009, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,184,184.0 +4.8293333333333335,4.83,a-phya-i1,2018-19,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1189,594.5 +4.784,4.78,a-phya-i1,2018-19,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,603,603.0 +1,1,a-phya-i1,2018-19,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264 +4.4,4.4,a-phya-i1,2018-19,Boston - Eliot Elementary,00350096, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,675,675.0 +6.544,5,a-phya-i1,2018-19,Boston - Ellis Mendell,00350100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +5.237333333333333,5,a-phya-i1,2018-19,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,518,518.0 +5.989333333333334,5,a-phya-i1,2018-19,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +5.664,5,a-phya-i1,2018-19,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,438,438.0 +5.957333333333334,5,a-phya-i1,2018-19,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +6.933333333333334,5,a-phya-i1,2018-19,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,200,200.0 +1,1,a-phya-i1,2018-19,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95 +5.7973333333333334,5,a-phya-i1,2018-19,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +1,1,a-phya-i1,2018-19,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188 +6.725333333333333,5,a-phya-i1,2018-19,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,239,239.0 +7.104,5,a-phya-i1,2018-19,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,168,168.0 +6.608,5,a-phya-i1,2018-19,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +1,1,a-phya-i1,2018-19,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88 +6.586666666666667,5,a-phya-i1,2018-19,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,265,265.0 +4.746666666666667,4.75,a-phya-i1,2018-19,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,610,610.0 +1,1,a-phya-i1,2018-19,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278 +1,1,a-phya-i1,2018-19,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393 +6.357333333333333,5,a-phya-i1,2018-19,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,308,308.0 +6.450666666666667,5,a-phya-i1,2018-19,Boston - James W Hennigan,00350153, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,581,290.5 +5.850666666666666,5,a-phya-i1,2018-19,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +7.573333333333333,5,a-phya-i1,2018-19,Boston - John D Philbrick,00350172, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,160,80.0 +6.021333333333334,5,a-phya-i1,2018-19,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,371,371.0 +6.053333333333334,5,a-phya-i1,2018-19,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,365,365.0 +1,1,a-phya-i1,2018-19,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308 +6.133333333333334,5,a-phya-i1,2018-19,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,350,350.0 +6.258666666666667,5,a-phya-i1,2018-19,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,653,326.5 +7.216,5,a-phya-i1,2018-19,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,147,147.0 +6.778666666666667,5,a-phya-i1,2018-19,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,229,229.0 +5.858666666666666,5,a-phya-i1,2018-19,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,803,401.5 +5.658666666666667,5,a-phya-i1,2018-19,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,439,439.0 +5.392,5,a-phya-i1,2018-19,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,489,489.0 +6.864,5,a-phya-i1,2018-19,Boston - Lee Academy,00350001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,213,213.0 +5.584,5,a-phya-i1,2018-19,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,453,453.0 +4.698666666666667,4.7,a-phya-i1,2018-19,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,619,619.0 +1,1,a-phya-i1,2018-19,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132 +7.290666666666667,5,a-phya-i1,2018-19,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,133,133.0 +5.634666666666667,5,a-phya-i1,2018-19,Boston - Madison Park High,00350537, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,887,443.5 +1,1,a-phya-i1,2018-19,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276 +6.426666666666667,5,a-phya-i1,2018-19,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,295,295.0 +5.469333333333333,5,a-phya-i1,2018-19,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,949,474.5 +4.938666666666666,4.94,a-phya-i1,2018-19,Boston - Mather,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,574,574.0 +6.010666666666666,5,a-phya-i1,2018-19,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,373,373.0 +5.669333333333333,5,a-phya-i1,2018-19,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,437,437.0 +7.029333333333334,5,a-phya-i1,2018-19,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,182,182.0 +4.682666666666667,4.68,a-phya-i1,2018-19,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,622,622.0 +1,1,a-phya-i1,2018-19,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220 +1,1,a-phya-i1,2018-19,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,171 +7.173333333333333,5,a-phya-i1,2018-19,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,155,155.0 +1,1,a-phya-i1,2018-19,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462 +6.213333333333333,5,a-phya-i1,2018-19,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +-0.18666666666666668,1,a-phya-i1,2018-19,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1535,1535.0 +1,1,a-phya-i1,2018-19,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245 +5.589333333333333,5,a-phya-i1,2018-19,Boston - Orchard Gardens,00350257, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,904,452.0 +6.437333333333333,5,a-phya-i1,2018-19,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +5.8133333333333335,5,a-phya-i1,2018-19,Boston - Paul A Dever,00350268, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +1,1,a-phya-i1,2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198 +6.661333333333333,5,a-phya-i1,2018-19,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,251,251.0 +6.536,5,a-phya-i1,2018-19,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,549,274.5 +1,1,a-phya-i1,2018-19,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399 +5.573333333333333,5,a-phya-i1,2018-19,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,910,455.0 +1,1,a-phya-i1,2018-19,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137 +1,1,a-phya-i1,2018-19,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258 +6.714666666666667,5,a-phya-i1,2018-19,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,241,241.0 +5.925333333333334,5,a-phya-i1,2018-19,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +5.392,5,a-phya-i1,2018-19,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,489,489.0 +3.1093333333333333,3.11,a-phya-i1,2018-19,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,917,917.0 +1,1,a-phya-i1,2018-19,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521 +1,1,a-phya-i1,2018-19,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296 +1,1,a-phya-i1,2018-19,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,771 +6.250666666666667,5,a-phya-i1,2018-19,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,328,328.0 +4.906666666666666,4.91,a-phya-i1,2018-19,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,580,580.0 +6.405333333333333,5,a-phya-i1,2018-19,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,299,299.0 +5.824,5,a-phya-i1,2018-19,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +5.882666666666666,5,a-phya-i1,2018-19,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,397,397.0 +1,1,a-phya-i1,2018-19,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208 +4.613333333333333,4.61,a-phya-i1,2018-19,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,635,635.0 +7.564,5,a-phya-i1,2018-19,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 4.0,327,81.75 +5.317333333333333,5,a-phya-i1,2018-19,Boston - William Monroe Trotter,00350370, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +1,1,a-phya-i1,2018-19,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199 +6.482666666666667,5,a-phya-i1,2018-19,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,569,284.5 +6.152,5,a-phya-i1,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,693,346.5 +3.509333333333333,3.51,a-phya-i1,2018-19,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, 0.5, 0.0, 0.5,421,842.0 +1,1,a-phya-i1,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476 +5.1946666666666665,5,a-phya-i1,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,526,526.0 +2.912,2.91,a-phya-i1,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,954,954.0 +5.461333333333333,5,a-phya-i1,2018-19,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,476,476.0 +4.330666666666667,4.33,a-phya-i1,2018-19,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,688,688.0 +5.690666666666667,5,a-phya-i1,2018-19,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +6.197333333333333,5,a-phya-i1,2018-19,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,338,338.0 +6.373333333333333,5,a-phya-i1,2018-19,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,305,305.0 +5.7973333333333334,5,a-phya-i1,2018-19,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 +6.410666666666667,5,a-phya-i1,2018-19,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,298,298.0 +5.728,5,a-phya-i1,2018-19,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,426,426.0 +4.322051282051282,4.32,a-phya-i1,2018-19,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 2.6, 0.0, 0.0, 0.0, 2.6,1793,689.6153846153846 +6.56,5,a-phya-i1,2018-19,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,270,270.0 +4.75111111111111,4.75,a-phya-i1,2018-19,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,731,609.1666666666667 +5.8613333333333335,5,a-phya-i1,2018-19,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,401,401.0 +5.669333333333333,5,a-phya-i1,2018-19,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,437,437.0 +5.696,5,a-phya-i1,2018-19,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +5.994666666666666,5,a-phya-i1,2018-19,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,376,376.0 +6.549333333333333,5,a-phya-i1,2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +4.245333333333333,4.25,a-phya-i1,2018-19,Braintree - South Middle School,00400310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,704,704.0 +6.698666666666667,5,a-phya-i1,2018-19,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,244,244.0 +6.752,5,a-phya-i1,2018-19,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,234,234.0 +6.192,5,a-phya-i1,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,339,339.0 +5.36,5,a-phya-i1,2018-19,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,495,495.0 +4.08,4.08,a-phya-i1,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1470,735.0 +5.237333333333333,5,a-phya-i1,2018-19,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,518,518.0 +6.213333333333333,5,a-phya-i1,2018-19,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +5.08,5,a-phya-i1,2018-19,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1095,547.5 +4.421333333333333,4.42,a-phya-i1,2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,671,671.0 +1,1,a-phya-i1,2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18 +3.8773333333333335,3.88,a-phya-i1,2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,773,773.0 +6.437333333333333,5,a-phya-i1,2018-19,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,293,293.0 +5.578666666666667,5,a-phya-i1,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,454,454.0 +4.565333333333333,4.57,a-phya-i1,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1288,644.0 +1,1,a-phya-i1,2018-19,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569 +1,1,a-phya-i1,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207 +7.264,5,a-phya-i1,2018-19,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,138,138.0 +-5.44,1,a-phya-i1,2018-19,Brockton - Brockton High,00440505, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 0.0, 1.6,4032,2520.0 +4.842666666666666,4.84,a-phya-i1,2018-19,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,592,592.0 +4.72,4.72,a-phya-i1,2018-19,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,615,615.0 +1,1,a-phya-i1,2018-19,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,762 +1,1,a-phya-i1,2018-19,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619 +2.469333333333333,2.47,a-phya-i1,2018-19,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1037,1037.0 +7.423030303030304,5,a-phya-i1,2018-19,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 2.0, 2.2,238,108.18181818181817 +1,1,a-phya-i1,2018-19,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18 +5.402666666666667,5,a-phya-i1,2018-19,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,487,487.0 +4.986666666666666,4.99,a-phya-i1,2018-19,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,565,565.0 +1,1,a-phya-i1,2018-19,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59 +4.826666666666667,4.83,a-phya-i1,2018-19,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,595,595.0 +4.1386666666666665,4.14,a-phya-i1,2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,724,724.0 +-1.4293333333333333,1,a-phya-i1,2018-19,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,884,1768.0 +4.440888888888889,4.44,a-phya-i1,2018-19,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1001,667.3333333333334 +5.995789473684211,5,a-phya-i1,2018-19,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.0, 1.9,714,375.7894736842105 +6.357333333333333,5,a-phya-i1,2018-19,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +4.942222222222222,4.94,a-phya-i1,2018-19,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,860,573.3333333333334 +4.666666666666667,4.67,a-phya-i1,2018-19,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,625,625.0 +3.851851851851852,3.85,a-phya-i1,2018-19,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,700,777.7777777777777 +5.529333333333334,5,a-phya-i1,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.0,1853,463.25 +6.314666666666667,5,a-phya-i1,2018-19,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,316,316.0 +1,1,a-phya-i1,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,57 +1,1,a-phya-i1,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48 +4.604444444444444,4.6,a-phya-i1,2018-19,Brookline - Brookline High,00460505, 0.0, 1.0, 0.7, 1.2, 0.0, 0.0, 0.4, 3.3,2101,636.6666666666667 +5.709206349206348,5,a-phya-i1,2018-19,Brookline - Coolidge Corner School,00460015, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 0.0, 2.1,902,429.5238095238095 +6.4948148148148155,5,a-phya-i1,2018-19,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.0, 1.1, 0.6, 0.0, 0.0, 2.7,762,282.22222222222223 +5.328484848484849,5,a-phya-i1,2018-19,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,551,500.9090909090909 +-23.84,1,a-phya-i1,2018-19,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,597,5970.0 +4.581818181818182,4.58,a-phya-i1,2018-19,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,705,640.9090909090909 +6.397460317460318,5,a-phya-i1,2018-19,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 1.0, 0.1, 0.0, 1.0, 0.0, 2.1,631,300.4761904761905 +6.87479674796748,5,a-phya-i1,2018-19,Brookline - Pierce,00460040, 0.0, 0.0, 2.0, 1.1, 0.0, 1.0, 0.0, 4.1,865,210.97560975609758 +7.674074074074074,5,a-phya-i1,2018-19,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,55,61.11111111111111 +6.524444444444446,5,a-phya-i1,2018-19,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.1, 0.0, 2.0, 0.0, 2.1,581,276.66666666666663 +6.368,5,a-phya-i1,2018-19,Burlington - Burlington High,00480505, 0.0, 1.0, 0.5, 0.0, 2.0, 0.0, 0.0, 3.5,1071,306.0 +0.4266666666666667,1,a-phya-i1,2018-19,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,426,1420.0 +5.817435897435897,5,a-phya-i1,2018-19,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,532,409.2307692307692 +5.201777777777778,5,a-phya-i1,2018-19,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,787,524.6666666666666 +6.367179487179487,5,a-phya-i1,2018-19,Burlington - Memorial,00480015, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 1.3,398,306.15384615384613 +6.691282051282052,5,a-phya-i1,2018-19,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 1.3,319,245.3846153846154 +1,1,a-phya-i1,2018-19,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419 +1,1,a-phya-i1,2018-19,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1983 +1,1,a-phya-i1,2018-19,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256 +1,1,a-phya-i1,2018-19,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338 +1,1,a-phya-i1,2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297 +1,1,a-phya-i1,2018-19,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379 +1,1,a-phya-i1,2018-19,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261 +1,1,a-phya-i1,2018-19,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +1,1,a-phya-i1,2018-19,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283 +1,1,a-phya-i1,2018-19,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359 +1,1,a-phya-i1,2018-19,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,361 +1,1,a-phya-i1,2018-19,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327 +1,1,a-phya-i1,2018-19,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297 +1,1,a-phya-i1,2018-19,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326 +1,1,a-phya-i1,2018-19,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271 +1,1,a-phya-i1,2018-19,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289 +1,1,a-phya-i1,2018-19,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299 +5.131851851851852,5,a-phya-i1,2018-19,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,968,537.7777777777777 +5.402666666666667,5,a-phya-i1,2018-19,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +5.221333333333333,5,a-phya-i1,2018-19,Canton - John F Kennedy,00500017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,521,521.0 +5.418666666666667,5,a-phya-i1,2018-19,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,484,484.0 +7.536,5,a-phya-i1,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,87,87.0 +5.4222222222222225,5,a-phya-i1,2018-19,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,725,483.3333333333333 +4.773333333333333,4.77,a-phya-i1,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,242,605.0 +4.954666666666666,4.95,a-phya-i1,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,571,571.0 +6.222222222222222,5,a-phya-i1,2018-19,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,600,333.3333333333333 +5.88,5,a-phya-i1,2018-19,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,795,397.5 +3.9466666666666668,3.95,a-phya-i1,2018-19,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,760,760.0 +7.333333333333333,5,a-phya-i1,2018-19,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,125,125.0 +5.866666666666666,5,a-phya-i1,2018-19,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,400,400.0 +7.205333333333333,5,a-phya-i1,2018-19,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,149,149.0 +6.005333333333334,5,a-phya-i1,2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,374,374.0 +5.168,5,a-phya-i1,2018-19,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,531,531.0 +5.456,5,a-phya-i1,2018-19,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,477,477.0 +5.472,5,a-phya-i1,2018-19,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,474,474.0 +5.365333333333333,5,a-phya-i1,2018-19,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,494,494.0 +4.149333333333334,4.15,a-phya-i1,2018-19,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1444,722.0 +4.897777777777778,4.9,a-phya-i1,2018-19,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,698,581.6666666666667 +7.1946666666666665,5,a-phya-i1,2018-19,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,151,151.0 +3.696,3.7,a-phya-i1,2018-19,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,807,807.0 +5.781333333333333,5,a-phya-i1,2018-19,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,416,416.0 +0.7466666666666667,1,a-phya-i1,2018-19,Chelsea - Chelsea High,00570505, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,1360,1360.0 +1,1,a-phya-i1,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52 +1.12,1.12,a-phya-i1,2018-19,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,645,1290.0 +2.2186666666666666,2.22,a-phya-i1,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,542,1084.0 +2.6026666666666665,2.6,a-phya-i1,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,506,1012.0 +2.3466666666666667,2.35,a-phya-i1,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,530,1060.0 +2.453333333333333,2.45,a-phya-i1,2018-19,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,520,1040.0 +1.792,1.79,a-phya-i1,2018-19,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,582,1164.0 +-1.28,1,a-phya-i1,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,870,1740.0 +2.8693333333333335,2.87,a-phya-i1,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,481,962.0 +7.235555555555555,5,a-phya-i1,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.1, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.9,129,143.33333333333334 +1,1,a-phya-i1,2018-19,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431 +6.592,5,a-phya-i1,2018-19,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,264,264.0 +5.8453333333333335,5,a-phya-i1,2018-19,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,808,404.0 +5.333333333333333,5,a-phya-i1,2018-19,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,500,500.0 +6.282666666666667,5,a-phya-i1,2018-19,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +7.76,5,a-phya-i1,2018-19,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,90,45.0 +4.658666666666667,4.66,a-phya-i1,2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1253,626.5 +6.696,5,a-phya-i1,2018-19,Chicopee - Chicopee High,00610505, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 0.0, 4.0,978,244.5 +6.670222222222222,5,a-phya-i1,2018-19,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,748,249.33333333333334 +5.610666666666667,5,a-phya-i1,2018-19,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +5.957333333333334,5,a-phya-i1,2018-19,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +6.442666666666667,5,a-phya-i1,2018-19,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,292,292.0 +5.866666666666666,5,a-phya-i1,2018-19,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,400,400.0 +6.688,5,a-phya-i1,2018-19,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,246,246.0 +6.778666666666667,5,a-phya-i1,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,229,229.0 +1,1,a-phya-i1,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398 +5.109333333333334,5,a-phya-i1,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,271,542.0 +5.386666666666667,5,a-phya-i1,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,245,490.0 +5.685333333333333,5,a-phya-i1,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,217,434.0 +3.066666666666667,3.07,a-phya-i1,2018-19,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,185,925.0 +5.802666666666667,5,a-phya-i1,2018-19,Clinton - Clinton Elementary,00640050, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,824,412.0 +4.917333333333334,4.92,a-phya-i1,2018-19,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,578,578.0 +5.568,5,a-phya-i1,2018-19,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,456,456.0 +4.352,4.35,a-phya-i1,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,342,684.0 +3.5573333333333332,3.56,a-phya-i1,2018-19,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,833,833.0 +6.0,5,a-phya-i1,2018-19,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 +6.1386666666666665,5,a-phya-i1,2018-19,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +3.488,3.49,a-phya-i1,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,846,846.0 +6.229333333333333,5,a-phya-i1,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,332,332.0 +1,1,a-phya-i1,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360 +1,1,a-phya-i1,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399 +1,1,a-phya-i1,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360 +5.445333333333333,5,a-phya-i1,2018-19,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,479,479.0 +6.042666666666666,5,a-phya-i1,2018-19,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,734,367.0 +5.52,5,a-phya-i1,2018-19,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +5.754666666666667,5,a-phya-i1,2018-19,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +4.602666666666667,4.6,a-phya-i1,2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1274,637.0 +5.648,5,a-phya-i1,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,441,441.0 +7.28,5,a-phya-i1,2018-19,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,135,135.0 +5.52,5,a-phya-i1,2018-19,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,930,465.0 +6.021333333333334,5,a-phya-i1,2018-19,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,371,371.0 +5.952,5,a-phya-i1,2018-19,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,384,384.0 +5.778666666666667,5,a-phya-i1,2018-19,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,833,416.5 +6.442666666666667,5,a-phya-i1,2018-19,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,292,292.0 +6.1226666666666665,5,a-phya-i1,2018-19,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +6.298666666666667,5,a-phya-i1,2018-19,Danvers - Willis E Thorpe,00710045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,319,319.0 +7.258666666666667,5,a-phya-i1,2018-19,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,139,139.0 +5.144,5,a-phya-i1,2018-19,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1071,535.5 +6.330666666666667,5,a-phya-i1,2018-19,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,939,313.0 +5.84,5,a-phya-i1,2018-19,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,405,405.0 +6.288,5,a-phya-i1,2018-19,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,642,321.0 +1,1,a-phya-i1,2018-19,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422 +4.746666666666667,4.75,a-phya-i1,2018-19,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,305,610.0 +4.010666666666666,4.01,a-phya-i1,2018-19,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,748,748.0 +4.549333333333333,4.55,a-phya-i1,2018-19,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,647,647.0 +4.810666666666667,4.81,a-phya-i1,2018-19,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,299,598.0 +5.365333333333333,5,a-phya-i1,2018-19,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,247,494.0 +5.1306666666666665,5,a-phya-i1,2018-19,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,269,538.0 +6.165333333333334,5,a-phya-i1,2018-19,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,172,344.0 +5.9093333333333335,5,a-phya-i1,2018-19,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +2.6026666666666665,2.6,a-phya-i1,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1012,1012.0 +1,1,a-phya-i1,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314 +6.394666666666667,5,a-phya-i1,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +5.6,5,a-phya-i1,2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,450,450.0 +5.269333333333333,5,a-phya-i1,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,512,512.0 +5.674666666666667,5,a-phya-i1,2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,436,436.0 +4.2057142857142855,4.21,a-phya-i1,2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.5, 0.0, 0.2, 0.0, 0.0, 0.7,498,711.4285714285714 +4.838095238095238,4.84,a-phya-i1,2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,415,592.8571428571429 +4.337777777777777,4.34,a-phya-i1,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,824,686.6666666666667 +5.426666666666667,5,a-phya-i1,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,579,482.5 +3.535238095238095,3.54,a-phya-i1,2018-19,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.7,586,837.1428571428572 +6.1066666666666665,5,a-phya-i1,2018-19,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,355,355.0 +5.882666666666666,5,a-phya-i1,2018-19,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,397,397.0 +6.282666666666667,5,a-phya-i1,2018-19,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,322,322.0 +6.816,5,a-phya-i1,2018-19,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 +5.338666666666667,5,a-phya-i1,2018-19,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,499,499.0 +4.405333333333333,4.41,a-phya-i1,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,674,674.0 +5.216,5,a-phya-i1,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,522,522.0 +5.658666666666667,5,a-phya-i1,2018-19,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,439,439.0 +3.3333333333333335,3.33,a-phya-i1,2018-19,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,875,875.0 +5.104,5,a-phya-i1,2018-19,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,543,543.0 +6.586666666666667,5,a-phya-i1,2018-19,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,265,265.0 +1,1,a-phya-i1,2018-19,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559 +5.597333333333333,5,a-phya-i1,2018-19,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,901,450.5 +1,1,a-phya-i1,2018-19,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, 0.0,256 +6.149333333333334,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,347,347.0 +4.368,4.37,a-phya-i1,2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,681,681.0 +6.032,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +5.045333333333334,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,554,554.0 +5.594666666666667,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +6.490666666666667,5,a-phya-i1,2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,283,283.0 +2.0533333333333332,2.05,a-phya-i1,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1115,1115.0 +4.64,4.64,a-phya-i1,2018-19,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,630,630.0 +1,1,a-phya-i1,2018-19,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629 +5.181754385964912,5,a-phya-i1,2018-19,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 1.9,1004,528.421052631579 +3.989333333333333,3.99,a-phya-i1,2018-19,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,752,752.0 +4.874666666666666,4.87,a-phya-i1,2018-19,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,586,586.0 +2.608,2.61,a-phya-i1,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1011,1011.0 +4.506666666666667,4.51,a-phya-i1,2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +4.565333333333333,4.57,a-phya-i1,2018-19,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,644,644.0 +3.5946666666666665,3.59,a-phya-i1,2018-19,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,826,826.0 +6.410666666666667,5,a-phya-i1,2018-19,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,298,298.0 +4.890666666666666,4.89,a-phya-i1,2018-19,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,583,583.0 +6.544,5,a-phya-i1,2018-19,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,273,273.0 +7.088,5,a-phya-i1,2018-19,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,171,171.0 +1,1,a-phya-i1,2018-19,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204 +1,1,a-phya-i1,2018-19,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474 +1,1,a-phya-i1,2018-19,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250 +1,1,a-phya-i1,2018-19,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204 +1,1,a-phya-i1,2018-19,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413 +6.64,5,a-phya-i1,2018-19,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +4.846222222222222,4.85,a-phya-i1,2018-19,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.4, 0.0, 0.1, 0.0, 1.5,887,591.3333333333334 +6.8,5,a-phya-i1,2018-19,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,225,225.0 +4.183333333333334,4.18,a-phya-i1,2018-19,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,1145,715.625 +6.357333333333333,5,a-phya-i1,2018-19,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,308,308.0 +3.6693333333333333,3.67,a-phya-i1,2018-19,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,812,812.0 +6.026666666666666,5,a-phya-i1,2018-19,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +6.428717948717949,5,a-phya-i1,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, 0.0, 0.5, 0.0, 0.0, 0.0, 0.8, 0.0, 1.3,383,294.6153846153846 +7.1466666666666665,5,a-phya-i1,2018-19,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,128,160.0 +4.232,4.23,a-phya-i1,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1413,706.5 +1,1,a-phya-i1,2018-19,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194 +1,1,a-phya-i1,2018-19,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70 +2.7253333333333334,2.73,a-phya-i1,2018-19,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1978,989.0 +3.36,3.36,a-phya-i1,2018-19,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,870,870.0 +5.566984126984127,5,a-phya-i1,2018-19,Everett - Lafayette School,00930038, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.0, 2.1,958,456.19047619047615 +3.7866666666666666,3.79,a-phya-i1,2018-19,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,790,790.0 +3.008,3.01,a-phya-i1,2018-19,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,936,936.0 +4.613333333333333,4.61,a-phya-i1,2018-19,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,635,635.0 +4.394666666666667,4.39,a-phya-i1,2018-19,Everett - Webster School,00930015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,676,676.0 +3.3884444444444446,3.39,a-phya-i1,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.4, 0.1, 1.5,1297,864.6666666666666 +5.802666666666667,5,a-phya-i1,2018-19,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +4.474666666666667,4.47,a-phya-i1,2018-19,Fairhaven - Fairhaven High,00940505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,661,661.0 +5.461333333333333,5,a-phya-i1,2018-19,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +5.461333333333333,5,a-phya-i1,2018-19,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,476,476.0 +4.273777777777778,4.27,a-phya-i1,2018-19,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,2096,698.6666666666666 +6.058666666666666,5,a-phya-i1,2018-19,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,728,364.0 +-4.604444444444446,1,a-phya-i1,2018-19,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,709,2363.3333333333335 +1,1,a-phya-i1,2018-19,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,312 +7.091555555555555,5,a-phya-i1,2018-19,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 3.0,511,170.33333333333334 +6.266666666666667,5,a-phya-i1,2018-19,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,585,325.0 +6.708571428571429,5,a-phya-i1,2018-19,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 1.0, 0.5, 1.0, 0.0, 2.8,678,242.14285714285717 +5.383111111111111,5,a-phya-i1,2018-19,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,736,490.6666666666667 +5.802666666666667,5,a-phya-i1,2018-19,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,618,412.0 +-5.528888888888891,1,a-phya-i1,2018-19,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,761,2536.666666666667 +1,1,a-phya-i1,2018-19,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191 +6.405333333333333,5,a-phya-i1,2018-19,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,299,299.0 +6.801066666666667,5,a-phya-i1,2018-19,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 2.5,562,224.8 +1,1,a-phya-i1,2018-19,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50 +5.189333333333333,5,a-phya-i1,2018-19,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,527,527.0 +6.385066666666667,5,a-phya-i1,2018-19,Fall River - William S Greene,00950065, 0.0, 0.0, 1.0, 1.0, 0.0, 0.5, 0.0, 2.5,757,302.8 +6.72,5,a-phya-i1,2018-19,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,240,240.0 +5.757333333333333,5,a-phya-i1,2018-19,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,841,420.5 +4.949333333333334,4.95,a-phya-i1,2018-19,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,572,572.0 +5.04,5,a-phya-i1,2018-19,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,555,555.0 +5.674666666666667,5,a-phya-i1,2018-19,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +6.1546666666666665,5,a-phya-i1,2018-19,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,346,346.0 +6.074666666666666,5,a-phya-i1,2018-19,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,361,361.0 +7.386666666666667,5,a-phya-i1,2018-19,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,115,115.0 +4.549333333333333,4.55,a-phya-i1,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,647,647.0 +6.285333333333333,5,a-phya-i1,2018-19,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,643,321.5 +4.912,4.91,a-phya-i1,2018-19,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1158,579.0 +1,1,a-phya-i1,2018-19,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207 +1,1,a-phya-i1,2018-19,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672 +6.005333333333334,5,a-phya-i1,2018-19,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,748,374.0 +6.851555555555555,5,a-phya-i1,2018-19,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,646,215.33333333333334 +5.863333333333333,5,a-phya-i1,2018-19,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,641,400.625 +7.536,5,a-phya-i1,2018-19,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,87,87.0 +5.664,5,a-phya-i1,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,219,438.0 +6.8053333333333335,5,a-phya-i1,2018-19,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,224,224.0 +3.664,3.66,a-phya-i1,2018-19,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,813,813.0 +4.792380952380952,4.79,a-phya-i1,2018-19,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 1.4,842,601.4285714285714 +6.357333333333333,5,a-phya-i1,2018-19,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +6.048,5,a-phya-i1,2018-19,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,366,366.0 +4.780246913580247,4.78,a-phya-i1,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.7, 1.0, 0.0, 2.7,1630,603.7037037037037 +4.416,4.42,a-phya-i1,2018-19,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,672,672.0 +5.525333333333333,5,a-phya-i1,2018-19,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,464,464.0 +4.9013333333333335,4.9,a-phya-i1,2018-19,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,581,581.0 +6.781333333333333,5,a-phya-i1,2018-19,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,457,228.5 +5.5775999999999994,5,a-phya-i1,2018-19,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 2.8, 2.0, 0.2, 5.0,2271,454.2 +5.088,5,a-phya-i1,2018-19,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,546,546.0 +4.997333333333334,5.0,a-phya-i1,2018-19,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,563,563.0 +1,1,a-phya-i1,2018-19,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276 +6.277333333333333,5,a-phya-i1,2018-19,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,323,323.0 +1,1,a-phya-i1,2018-19,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336 +1,1,a-phya-i1,2018-19,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528 +5.157333333333334,5,a-phya-i1,2018-19,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,533,533.0 +4.0906666666666665,4.09,a-phya-i1,2018-19,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,733,733.0 +5.125333333333334,5,a-phya-i1,2018-19,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,539,539.0 +5.882666666666666,5,a-phya-i1,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,397,397.0 +3.6586666666666665,3.66,a-phya-i1,2018-19,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,407,814.0 +6.698666666666667,5,a-phya-i1,2018-19,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,244,244.0 +7.429333333333333,5,a-phya-i1,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,107,107.0 +4.890666666666666,4.89,a-phya-i1,2018-19,Franklin - Franklin High,01010505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,1749,583.0 +3.872,3.87,a-phya-i1,2018-19,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,387,774.0 +3.008,3.01,a-phya-i1,2018-19,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,468,936.0 +6.053333333333334,5,a-phya-i1,2018-19,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +4.277333333333333,4.28,a-phya-i1,2018-19,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,349,698.0 +4.064,4.06,a-phya-i1,2018-19,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,369,738.0 +6.192,5,a-phya-i1,2018-19,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +3.584,3.58,a-phya-i1,2018-19,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,414,828.0 +5.365333333333333,5,a-phya-i1,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,494,494.0 +4.1226666666666665,4.12,a-phya-i1,2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,727,727.0 +5.52,5,a-phya-i1,2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,465,465.0 +5.717333333333333,5,a-phya-i1,2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,428,428.0 +4.0,4.0,a-phya-i1,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,750,750.0 +5.701333333333333,5,a-phya-i1,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,431,431.0 +4.549333333333333,4.55,a-phya-i1,2018-19,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,647,647.0 +6.522666666666667,5,a-phya-i1,2018-19,Gardner - Elm Street School,01030001, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,554,277.0 +7.68,5,a-phya-i1,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,60,60.0 +4.48,4.48,a-phya-i1,2018-19,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,660,660.0 +4.917333333333334,4.92,a-phya-i1,2018-19,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,578,578.0 +6.832,5,a-phya-i1,2018-19,Gardner - Waterford Street,01030020, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,438,219.0 +7.370666666666667,5,a-phya-i1,2018-19,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,118,118.0 +5.888,5,a-phya-i1,2018-19,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,198,396.0 +5.8453333333333335,5,a-phya-i1,2018-19,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,202,404.0 +6.362666666666667,5,a-phya-i1,2018-19,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,307,307.0 +5.8773333333333335,5,a-phya-i1,2018-19,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,398,398.0 +1,1,a-phya-i1,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208 +4.218666666666667,4.22,a-phya-i1,2018-19,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,709,709.0 +7.050666666666666,5,a-phya-i1,2018-19,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,89,178.0 +7.317333333333333,5,a-phya-i1,2018-19,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,128,128.0 +1,1,a-phya-i1,2018-19,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239 +7.173333333333333,5,a-phya-i1,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,155,155.0 +6.874666666666666,5,a-phya-i1,2018-19,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,211,211.0 +7.461333333333333,5,a-phya-i1,2018-19,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,202,101.0 +1,1,a-phya-i1,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505 +6.234666666666667,5,a-phya-i1,2018-19,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,331,331.0 +6.8853333333333335,5,a-phya-i1,2018-19,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,209,209.0 +5.842666666666666,5,a-phya-i1,2018-19,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.2, 0.0, 2.0,809,404.5 +7.344,5,a-phya-i1,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,123,123.0 +6.890666666666666,5,a-phya-i1,2018-19,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +6.290666666666667,5,a-phya-i1,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,641,320.5 +6.842666666666666,5,a-phya-i1,2018-19,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,217,217.0 +6.144,5,a-phya-i1,2018-19,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +1,1,a-phya-i1,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2 +4.931555555555556,4.93,a-phya-i1,2018-19,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,863,575.3333333333334 +6.629333333333333,5,a-phya-i1,2018-19,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,514,257.0 +5.560888888888889,5,a-phya-i1,2018-19,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,686,457.3333333333333 +6.736,5,a-phya-i1,2018-19,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,237,237.0 +4.949333333333334,4.95,a-phya-i1,2018-19,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,572,572.0 +6.394666666666667,5,a-phya-i1,2018-19,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,301,301.0 +6.7,5,a-phya-i1,2018-19,Granby - East Meadow,01110004, 0.0, 0.0, 0.4, 1.2, 0.0, 0.0, 0.0, 1.6,390,243.75 +6.2026666666666666,5,a-phya-i1,2018-19,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,337,337.0 +1,1,a-phya-i1,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413 +-0.4053333333333333,1,a-phya-i1,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,1576,1576.0 +3.989333333333333,3.99,a-phya-i1,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,2256,752.0 +4.197333333333333,4.2,a-phya-i1,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 3.0,2139,713.0 +6.730666666666667,5,a-phya-i1,2018-19,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,238,238.0 +6.688,5,a-phya-i1,2018-19,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,246,246.0 +5.402666666666667,5,a-phya-i1,2018-19,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,487,487.0 +5.92,5,a-phya-i1,2018-19,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 +6.666666666666667,5,a-phya-i1,2018-19,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,250,250.0 +7.354666666666667,5,a-phya-i1,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,121,121.0 +-2.4888888888888894,1,a-phya-i1,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,590,1966.6666666666667 +7.690666666666667,5,a-phya-i1,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,58,58.0 +5.109333333333334,5,a-phya-i1,2018-19,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +5.606274509803922,5,a-phya-i1,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 0.0, 1.7,763,448.8235294117647 +6.045333333333334,5,a-phya-i1,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,733,366.5 +6.378666666666667,5,a-phya-i1,2018-19,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +6.490666666666667,5,a-phya-i1,2018-19,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,283,283.0 +6.650666666666667,5,a-phya-i1,2018-19,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,253,253.0 +4.757333333333333,4.76,a-phya-i1,2018-19,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,608,608.0 +5.386666666666667,5,a-phya-i1,2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,245,490.0 +1,1,a-phya-i1,2018-19,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285 +4.246666666666667,4.25,a-phya-i1,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,563,703.75 +3.7866666666666666,3.79,a-phya-i1,2018-19,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,395,790.0 +5.002666666666666,5,a-phya-i1,2018-19,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,281,562.0 +5.290666666666667,5,a-phya-i1,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,508,508.0 +6.8853333333333335,5,a-phya-i1,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,209,209.0 +6.336,5,a-phya-i1,2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,312,312.0 +6.064,5,a-phya-i1,2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 +5.048,5,a-phya-i1,2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1107,553.5 +6.1866666666666665,5,a-phya-i1,2018-19,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +6.288,5,a-phya-i1,2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,321,321.0 +6.180740740740741,5,a-phya-i1,2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,614,341.1111111111111 +6.173968253968255,5,a-phya-i1,2018-19,Hampshire - Hampshire Regional High,06830505, 0.1, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.1,719,342.38095238095235 +1,1,a-phya-i1,2018-19,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34 +5.573333333333333,5,a-phya-i1,2018-19,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,455,455.0 +6.181333333333333,5,a-phya-i1,2018-19,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,341,341.0 +3.712,3.71,a-phya-i1,2018-19,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,804,804.0 +3.7386666666666666,3.74,a-phya-i1,2018-19,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,799,799.0 +1,1,a-phya-i1,2018-19,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246 +4.656,4.66,a-phya-i1,2018-19,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,627,627.0 +5.08,5,a-phya-i1,2018-19,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,438,547.5 +6.682666666666667,5,a-phya-i1,2018-19,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +6.992,5,a-phya-i1,2018-19,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +6.1226666666666665,5,a-phya-i1,2018-19,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,352,352.0 +1,1,a-phya-i1,2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1103 +7.344,5,a-phya-i1,2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,123,123.0 +2.8906666666666667,2.89,a-phya-i1,2018-19,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,958,958.0 +1,1,a-phya-i1,2018-19,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95 +6.565333333333333,5,a-phya-i1,2018-19,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,538,269.0 +5.328,5,a-phya-i1,2018-19,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,501,501.0 +7.578666666666667,5,a-phya-i1,2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,79,79.0 +7.616,5,a-phya-i1,2018-19,Haverhill - Haverhill Alternative School,01280033, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,36,72.0 +4.727111111111111,4.73,a-phya-i1,2018-19,Haverhill - Haverhill High,01280505, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,1841,613.6666666666666 +5.2,5,a-phya-i1,2018-19,Haverhill - John G Whittier,01280085, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,525,525.0 +6.933333333333334,5,a-phya-i1,2018-19,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,200,200.0 +5.424,5,a-phya-i1,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,483,483.0 +4.954666666666666,4.95,a-phya-i1,2018-19,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,571,571.0 +7.498666666666667,5,a-phya-i1,2018-19,Haverhill - TEACH,01280073, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,47,94.0 +5.546666666666667,5,a-phya-i1,2018-19,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,460,460.0 +1,1,a-phya-i1,2018-19,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135 +7.1946666666666665,5,a-phya-i1,2018-19,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,151,151.0 +1,1,a-phya-i1,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,191 +1,1,a-phya-i1,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +6.842666666666666,5,a-phya-i1,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,217,217.0 +5.226666666666667,5,a-phya-i1,2018-19,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,520,520.0 +4.658666666666667,4.66,a-phya-i1,2018-19,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1253,626.5 +5.282666666666667,5,a-phya-i1,2018-19,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1019,509.5 +5.589333333333333,5,a-phya-i1,2018-19,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,452,452.0 +5.237333333333333,5,a-phya-i1,2018-19,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,518,518.0 +5.44,5,a-phya-i1,2018-19,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,480,480.0 +2.72,2.72,a-phya-i1,2018-19,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,594,990.0 +2.088888888888888,2.09,a-phya-i1,2018-19,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,665,1108.3333333333335 +6.794666666666667,5,a-phya-i1,2018-19,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,226,226.0 +3.6,3.6,a-phya-i1,2018-19,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,825,825.0 +4.410666666666667,4.41,a-phya-i1,2018-19,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,673,673.0 +5.493333333333333,5,a-phya-i1,2018-19,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,705,470.0 +4.341333333333333,4.34,a-phya-i1,2018-19,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,686,686.0 +5.84,5,a-phya-i1,2018-19,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,405,405.0 +6.661333333333333,5,a-phya-i1,2018-19,Holyoke - H.B. Lawrence School,01370070, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +4.782933333333333,4.78,a-phya-i1,2018-19,Holyoke - Holyoke High,01370505, 0.0, 1.0, 1.0, 0.5, 0.0, 0.0, 0.0, 2.5,1508,603.2 +5.248,5,a-phya-i1,2018-19,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,258,516.0 +6.602666666666667,5,a-phya-i1,2018-19,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,262,262.0 +5.477333333333333,5,a-phya-i1,2018-19,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +7.082666666666666,5,a-phya-i1,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,516,172.0 +5.978666666666666,5,a-phya-i1,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,379,379.0 +5.509333333333333,5,a-phya-i1,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,467,467.0 +1,1,a-phya-i1,2018-19,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306 +1,1,a-phya-i1,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139 +6.522666666666667,5,a-phya-i1,2018-19,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +4.245333333333333,4.25,a-phya-i1,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,704,704.0 +2.9013333333333335,2.9,a-phya-i1,2018-19,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,478,956.0 +2.432,2.43,a-phya-i1,2018-19,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,522,1044.0 +6.84,5,a-phya-i1,2018-19,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,87,217.5 +5.072,5,a-phya-i1,2018-19,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,549,549.0 +5.061333333333334,5,a-phya-i1,2018-19,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,551,551.0 +1.696,1.7,a-phya-i1,2018-19,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1182,1182.0 +3.477333333333333,3.48,a-phya-i1,2018-19,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,848,848.0 +1,1,a-phya-i1,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69 +5.408,5,a-phya-i1,2018-19,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,486,486.0 +5.808,5,a-phya-i1,2018-19,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,411,411.0 +4.602666666666667,4.6,a-phya-i1,2018-19,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,637,637.0 +6.1066666666666665,5,a-phya-i1,2018-19,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +6.808,5,a-phya-i1,2018-19,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 4.0,894,223.5 +6.682666666666667,5,a-phya-i1,2018-19,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +6.469333333333333,5,a-phya-i1,2018-19,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,287,287.0 +5.786666666666667,5,a-phya-i1,2018-19,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 +7.013333333333334,5,a-phya-i1,2018-19,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,185,185.0 +-13.253333333333334,1,a-phya-i1,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,797,3985.0 +-1.6177777777777786,1,a-phya-i1,2018-19,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,541,1803.3333333333335 +5.286666666666667,5,a-phya-i1,2018-19,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,407,508.75 +3.7866666666666666,3.79,a-phya-i1,2018-19,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,395,790.0 +4.1066666666666665,4.11,a-phya-i1,2018-19,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,365,730.0 +4.832,4.83,a-phya-i1,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,594,594.0 +4.6237681159420285,4.62,a-phya-i1,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 1.3, 0.0, 0.0, 0.0, 2.3,1456,633.0434782608696 +4.465454545454546,4.47,a-phya-i1,2018-19,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.1, 0.2, 0.0, 0.8, 0.0, 1.1,729,662.7272727272726 +4.364912280701755,4.36,a-phya-i1,2018-19,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.9, 0.0, 0.0, 1.0, 0.0, 1.9,1295,681.578947368421 +5.653333333333333,5,a-phya-i1,2018-19,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,440,440.0 +4.8,4.8,a-phya-i1,2018-19,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,600,600.0 +5.1786666666666665,5,a-phya-i1,2018-19,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,529,529.0 +4.709333333333333,4.71,a-phya-i1,2018-19,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,617,617.0 +4.832,4.83,a-phya-i1,2018-19,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,594,594.0 +4.474666666666667,4.47,a-phya-i1,2018-19,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,661,661.0 +4.533333333333333,4.53,a-phya-i1,2018-19,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,650,650.0 +5.52,5,a-phya-i1,2018-19,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +5.242666666666667,5,a-phya-i1,2018-19,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +5.242666666666667,5,a-phya-i1,2018-19,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +5.381333333333333,5,a-phya-i1,2018-19,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,491,491.0 +1,1,a-phya-i1,2018-19,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187 +6.1226666666666665,5,a-phya-i1,2018-19,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +6.256,5,a-phya-i1,2018-19,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,327,327.0 +6.421333333333333,5,a-phya-i1,2018-19,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +6.986666666666666,5,a-phya-i1,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,190,190.0 +6.976,5,a-phya-i1,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,192,192.0 +2.463655913978495,2.46,a-phya-i1,2018-19,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.1,3218,1038.0645161290322 +5.36,5,a-phya-i1,2018-19,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,495,495.0 +4.784,4.78,a-phya-i1,2018-19,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,603,603.0 +6.384,5,a-phya-i1,2018-19,Lawrence - Robert Frost,01490018, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,606,303.0 +7.082666666666666,5,a-phya-i1,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,172,172.0 +7.226666666666667,5,a-phya-i1,2018-19,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,145,145.0 +5.989333333333334,5,a-phya-i1,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,754,377.0 +5.557333333333333,5,a-phya-i1,2018-19,Lawrence - Spark Academy,01490085, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,458,458.0 +6.464,5,a-phya-i1,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +1,1,a-phya-i1,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334 +5.973333333333334,5,a-phya-i1,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,760,380.0 +6.1706666666666665,5,a-phya-i1,2018-19,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,343,343.0 +6.08,5,a-phya-i1,2018-19,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +5.493333333333333,5,a-phya-i1,2018-19,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,470,470.0 +6.245333333333333,5,a-phya-i1,2018-19,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +6.026666666666666,5,a-phya-i1,2018-19,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,370,370.0 +6.042666666666666,5,a-phya-i1,2018-19,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +1,1,a-phya-i1,2018-19,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431 +1,1,a-phya-i1,2018-19,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325 +7.461333333333333,5,a-phya-i1,2018-19,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,101,101.0 +1,1,a-phya-i1,2018-19,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,682 +4.634666666666667,4.63,a-phya-i1,2018-19,Leominster - Fall Brook,01530007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,631,631.0 +5.024,5,a-phya-i1,2018-19,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,558,558.0 +4.416,4.42,a-phya-i1,2018-19,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,672,672.0 +7.62,5,a-phya-i1,2018-19,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,57,71.25 +5.141333333333334,5,a-phya-i1,2018-19,Leominster - Leominster High School,01530505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1072,536.0 +5.92,5,a-phya-i1,2018-19,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,39,390.0 +4.416,4.42,a-phya-i1,2018-19,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,672,672.0 +7.237333333333333,5,a-phya-i1,2018-19,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,143,143.0 +5.349333333333333,5,a-phya-i1,2018-19,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,497,497.0 +3.184,3.18,a-phya-i1,2018-19,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,903,903.0 +7.28,5,a-phya-i1,2018-19,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,135,135.0 +5.3527272727272734,5,a-phya-i1,2018-19,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,546,496.3636363636363 +5.939047619047618,5,a-phya-i1,2018-19,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,541,386.42857142857144 +5.44,5,a-phya-i1,2018-19,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,480,480.0 +5.370666666666667,5,a-phya-i1,2018-19,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,493,493.0 +5.4343859649122805,5,a-phya-i1,2018-19,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,914,481.0526315789474 +4.906666666666666,4.91,a-phya-i1,2018-19,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,580,580.0 +1,1,a-phya-i1,2018-19,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69 +5.485555555555555,5,a-phya-i1,2018-19,Lexington - Lexington High,01550505, 0.0, 0.0, 0.8, 1.0, 0.0, 3.0, 0.0, 4.8,2263,471.45833333333337 +5.3096296296296295,5,a-phya-i1,2018-19,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,454,504.44444444444446 +5.277037037037037,5,a-phya-i1,2018-19,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,919,510.55555555555554 +7.050666666666666,5,a-phya-i1,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,178,178.0 +4.8533333333333335,4.85,a-phya-i1,2018-19,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,295,590.0 +4.746666666666667,4.75,a-phya-i1,2018-19,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,305,610.0 +4.842666666666666,4.84,a-phya-i1,2018-19,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +3.925333333333333,3.93,a-phya-i1,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,1528,764.0 +5.6,5,a-phya-i1,2018-19,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,450,450.0 +6.058666666666666,5,a-phya-i1,2018-19,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,364,364.0 +5.872,5,a-phya-i1,2018-19,Littleton - Russell St Elementary,01580015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +5.653333333333333,5,a-phya-i1,2018-19,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,440,440.0 +5.664,5,a-phya-i1,2018-19,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,438,438.0 +5.770666666666667,5,a-phya-i1,2018-19,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.1866666666666665,5,a-phya-i1,2018-19,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +2.8,2.8,a-phya-i1,2018-19,Longmeadow - Longmeadow High,01590505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,975,975.0 +6.325333333333333,5,a-phya-i1,2018-19,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,314,314.0 +5.925333333333334,5,a-phya-i1,2018-19,Longmeadow - Wolf Swamp Road,01590025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +1,1,a-phya-i1,2018-19,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509 +1,1,a-phya-i1,2018-19,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567 +5.472,5,a-phya-i1,2018-19,Lowell - Bartlett Community Partnership,01600090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 +1,1,a-phya-i1,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104 +1,1,a-phya-i1,2018-19,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511 +1,1,a-phya-i1,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509 +1,1,a-phya-i1,2018-19,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688 +1,1,a-phya-i1,2018-19,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508 +1,1,a-phya-i1,2018-19,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46 +1,1,a-phya-i1,2018-19,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502 +1,1,a-phya-i1,2018-19,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638 +1,1,a-phya-i1,2018-19,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,695 +1,1,a-phya-i1,2018-19,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494 +1,1,a-phya-i1,2018-19,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493 +1,1,a-phya-i1,2018-19,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469 +1,1,a-phya-i1,2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,675 +1,1,a-phya-i1,2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20 +1,1,a-phya-i1,2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35 +-8.928,1,a-phya-i1,2018-19,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,3174,3174.0 +1,1,a-phya-i1,2018-19,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +1,1,a-phya-i1,2018-19,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496 +1,1,a-phya-i1,2018-19,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575 +1,1,a-phya-i1,2018-19,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487 +1,1,a-phya-i1,2018-19,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738 +1,1,a-phya-i1,2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506 +1,1,a-phya-i1,2018-19,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,118 +1,1,a-phya-i1,2018-19,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240 +5.084444444444444,5,a-phya-i1,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,820,546.6666666666666 +1,1,a-phya-i1,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,82 +6.24,5,a-phya-i1,2018-19,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,330,330.0 +5.9093333333333335,5,a-phya-i1,2018-19,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,392,392.0 +5.624,5,a-phya-i1,2018-19,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,891,445.5 +6.915555555555555,5,a-phya-i1,2018-19,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,610,203.33333333333334 +1,1,a-phya-i1,2018-19,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371 +1,1,a-phya-i1,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8 +4.946666666666666,4.95,a-phya-i1,2018-19,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,458,572.5 +1,1,a-phya-i1,2018-19,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393 +5.770666666666667,5,a-phya-i1,2018-19,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.016,5,a-phya-i1,2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +5.580606060606061,5,a-phya-i1,2018-19,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,499,453.6363636363636 +7.34984126984127,5,a-phya-i1,2018-19,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 0.0, 1.0, 0.1, 0.0, 2.1,256,121.9047619047619 +4.370793650793651,4.37,a-phya-i1,2018-19,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1, 0.0, 2.1,1429,680.4761904761905 +6.366060606060606,5,a-phya-i1,2018-19,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,337,306.3636363636363 +6.458181818181819,5,a-phya-i1,2018-19,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,318,289.09090909090907 +3.641904761904762,3.64,a-phya-i1,2018-19,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.1,1716,817.1428571428571 +5.076363636363637,5,a-phya-i1,2018-19,Lynn - Cobbet Elementary,01630035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,603,548.1818181818181 +4.785454545454546,4.79,a-phya-i1,2018-19,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,663,602.7272727272726 +7.258412698412698,5,a-phya-i1,2018-19,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.1,292,139.04761904761904 +5.847272727272728,5,a-phya-i1,2018-19,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,444,403.6363636363636 +7.514666666666667,5,a-phya-i1,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,91,91.0 +5.701818181818181,5,a-phya-i1,2018-19,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,474,430.9090909090909 +4.926060606060607,4.93,a-phya-i1,2018-19,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,634,576.3636363636363 +5.866666666666666,5,a-phya-i1,2018-19,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,440,399.99999999999994 +6.850909090909091,5,a-phya-i1,2018-19,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,237,215.45454545454544 +3.464126984126984,3.46,a-phya-i1,2018-19,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.1,1786,850.4761904761905 +6.110222222222222,5,a-phya-i1,2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,1063,354.3333333333333 +7.141818181818182,5,a-phya-i1,2018-19,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,177,160.9090909090909 +4.746666666666667,4.75,a-phya-i1,2018-19,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,671,610.0 +5.643636363636364,5,a-phya-i1,2018-19,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,486,441.81818181818176 +6.637575757575758,5,a-phya-i1,2018-19,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,281,255.45454545454544 +5.735913978494624,5,a-phya-i1,2018-19,Lynn - Thurgood Marshall Mid,01630305, 0.0, 1.0, 0.0, 0.0, 2.0, 0.1, 0.0, 3.1,1316,424.51612903225805 +5.929696969696971,5,a-phya-i1,2018-19,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,427,388.18181818181813 +5.818181818181818,5,a-phya-i1,2018-19,Lynn - Washington Elementary School,01630005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,450,409.09090909090907 +7.772121212121212,5,a-phya-i1,2018-19,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,47,42.72727272727273 +5.023030303030303,5,a-phya-i1,2018-19,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 1.1,614,558.1818181818181 +3.3706666666666667,3.37,a-phya-i1,2018-19,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,434,868.0 +-0.38666666666666666,1,a-phya-i1,2018-19,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,629,1572.5 +0.9173333333333333,1,a-phya-i1,2018-19,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,664,1328.0 +1,1,a-phya-i1,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42 +3.392,3.39,a-phya-i1,2018-19,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,432,864.0 +5.834666666666666,5,a-phya-i1,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,1218,406.0 +1,1,a-phya-i1,2018-19,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, 0.0, 0.0,98 +5.592,5,a-phya-i1,2018-19,Malden - Beebe,01650003, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,903,451.5 +3.1146666666666665,3.11,a-phya-i1,2018-19,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,916,916.0 +5.018666666666666,5,a-phya-i1,2018-19,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,559,559.0 +5.725333333333333,5,a-phya-i1,2018-19,Malden - Linden,01650047, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,853,426.5 +6.298666666666667,5,a-phya-i1,2018-19,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,319,319.0 +3.08,3.08,a-phya-i1,2018-19,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1845,922.5 +4.882666666666666,4.88,a-phya-i1,2018-19,Malden - Salemwood,01650057, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1169,584.5 +6.816,5,a-phya-i1,2018-19,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 +5.488,5,a-phya-i1,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,471,471.0 +1,1,a-phya-i1,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,368 +6.261333333333333,5,a-phya-i1,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,326,326.0 +6.12,5,a-phya-i1,2018-19,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,705,352.5 +5.594666666666667,5,a-phya-i1,2018-19,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,902,451.0 +5.8773333333333335,5,a-phya-i1,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,796,398.0 +4.621333333333333,4.62,a-phya-i1,2018-19,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1267,633.5 +7.392,5,a-phya-i1,2018-19,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,114,114.0 +1,1,a-phya-i1,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,130 +6.026666666666666,5,a-phya-i1,2018-19,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +6.848,5,a-phya-i1,2018-19,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +7.192,5,a-phya-i1,2018-19,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,303,151.5 +4.486666666666666,4.49,a-phya-i1,2018-19,Marblehead - Marblehead High,01680505, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 0.0, 1.6,1054,658.75 +5.514666666666667,5,a-phya-i1,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +5.86,5,a-phya-i1,2018-19,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,642,401.25 +1.9733333333333334,1.97,a-phya-i1,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,226,1130.0 +5.616,5,a-phya-i1,2018-19,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,447,447.0 +6.1306666666666665,5,a-phya-i1,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 1.0, 4.0,1402,350.5 +5.237333333333333,5,a-phya-i1,2018-19,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,777,518.0 +7.066666666666666,5,a-phya-i1,2018-19,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,175,175.0 +4.842666666666666,4.84,a-phya-i1,2018-19,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +5.794871794871795,5,a-phya-i1,2018-19,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 1.0, 2.6,1075,413.46153846153845 +4.608,4.61,a-phya-i1,2018-19,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,636,636.0 +6.053333333333334,5,a-phya-i1,2018-19,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +6.709333333333333,5,a-phya-i1,2018-19,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 +4.586666666666667,4.59,a-phya-i1,2018-19,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,960,640.0 +5.786666666666667,5,a-phya-i1,2018-19,Marshfield - Gov Edward Winslow,01710020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +3.2675555555555555,3.27,a-phya-i1,2018-19,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,1331,887.3333333333334 +5.744,5,a-phya-i1,2018-19,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +6.272,5,a-phya-i1,2018-19,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +4.576,4.58,a-phya-i1,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,642,642.0 +7.029333333333334,5,a-phya-i1,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,182,182.0 +6.016,5,a-phya-i1,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,372,372.0 +4.96,4.96,a-phya-i1,2018-19,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1140,570.0 +6.28,5,a-phya-i1,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,645,322.5 +5.824,5,a-phya-i1,2018-19,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,408,408.0 +5.578666666666667,5,a-phya-i1,2018-19,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,454,454.0 +1,1,a-phya-i1,2018-19,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251 +5.317333333333333,5,a-phya-i1,2018-19,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +1,1,a-phya-i1,2018-19,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249 +6.976,5,a-phya-i1,2018-19,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,192,192.0 +5.418666666666667,5,a-phya-i1,2018-19,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,484,484.0 +1,1,a-phya-i1,2018-19,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491 +6.0,5,a-phya-i1,2018-19,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,375,375.0 +5.989333333333334,5,a-phya-i1,2018-19,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,377,377.0 +5.336666666666667,5,a-phya-i1,2018-19,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,799,499.375 +5.744,5,a-phya-i1,2018-19,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +4.417777777777777,4.42,a-phya-i1,2018-19,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,403,671.6666666666667 +5.721904761904762,5,a-phya-i1,2018-19,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,598,427.14285714285717 +6.621333333333333,5,a-phya-i1,2018-19,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,517,258.5 +6.92,5,a-phya-i1,2018-19,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,405,202.5 +1,1,a-phya-i1,2018-19,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +7.02974358974359,5,a-phya-i1,2018-19,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.6, 2.6,473,181.9230769230769 +1,1,a-phya-i1,2018-19,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448 +5.482666666666667,5,a-phya-i1,2018-19,Medford - Madeleine Dugger Andrews,01760315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,472,472.0 +6.213333333333333,5,a-phya-i1,2018-19,Medford - Medford High,01760505, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 4.0,1340,335.0 +4.997333333333334,5.0,a-phya-i1,2018-19,Medford - Milton Fuller Roberts,01760150, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,563,563.0 +5.365333333333333,5,a-phya-i1,2018-19,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,494,494.0 +6.250666666666667,5,a-phya-i1,2018-19,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,328,328.0 +1,1,a-phya-i1,2018-19,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,708 +4.309333333333333,4.31,a-phya-i1,2018-19,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,692,692.0 +1,1,a-phya-i1,2018-19,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,319 +1,1,a-phya-i1,2018-19,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290 +1,1,a-phya-i1,2018-19,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +1,1,a-phya-i1,2018-19,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429 +1,1,a-phya-i1,2018-19,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1014 +1,1,a-phya-i1,2018-19,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786 +1,1,a-phya-i1,2018-19,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419 +1,1,a-phya-i1,2018-19,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411 +6.037333333333334,5,a-phya-i1,2018-19,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,368,368.0 +5.418666666666667,5,a-phya-i1,2018-19,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,484,484.0 +3.7706666666666666,3.77,a-phya-i1,2018-19,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,793,793.0 +4.496,4.5,a-phya-i1,2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,657,657.0 +5.1866666666666665,5,a-phya-i1,2018-19,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1055,527.5 +4.488,4.49,a-phya-i1,2018-19,Methuen - Donald P Timony Grammar,01810060, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,1317,658.5 +4.8213333333333335,4.82,a-phya-i1,2018-19,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1192,596.0 +4.3549425287356325,4.35,a-phya-i1,2018-19,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.9, 0.0, 2.9,1982,683.448275862069 +4.317333333333333,4.32,a-phya-i1,2018-19,Methuen - Tenney Grammar School,01810055, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1381,690.5 +5.077333333333334,5,a-phya-i1,2018-19,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,548,548.0 +3.8133333333333335,3.81,a-phya-i1,2018-19,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,785,785.0 +4.72,4.72,a-phya-i1,2018-19,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,615,615.0 +6.744242424242424,5,a-phya-i1,2018-19,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,259,235.45454545454544 +3.8986666666666667,3.9,a-phya-i1,2018-19,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,769,769.0 +6.570666666666667,5,a-phya-i1,2018-19,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,268,268.0 +5.696,5,a-phya-i1,2018-19,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +5.493333333333333,5,a-phya-i1,2018-19,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,470,470.0 +5.6,5,a-phya-i1,2018-19,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,450,450.0 +4.88,4.88,a-phya-i1,2018-19,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1170,585.0 +6.282666666666667,5,a-phya-i1,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,161,322.0 +5.24,5,a-phya-i1,2018-19,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1035,517.5 +5.357333333333333,5,a-phya-i1,2018-19,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,991,495.5 +5.088,5,a-phya-i1,2018-19,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,546,546.0 +4.250666666666667,4.25,a-phya-i1,2018-19,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,703,703.0 +5.637333333333333,5,a-phya-i1,2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,443,443.0 +5.381333333333333,5,a-phya-i1,2018-19,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,491,491.0 +4.2026666666666666,4.2,a-phya-i1,2018-19,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,356,712.0 +3.989333333333333,3.99,a-phya-i1,2018-19,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,376,752.0 +3.013333333333333,3.01,a-phya-i1,2018-19,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,935,935.0 +4.490666666666667,4.49,a-phya-i1,2018-19,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,658,658.0 +4.8,4.8,a-phya-i1,2018-19,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,600,600.0 +4.810666666666667,4.81,a-phya-i1,2018-19,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,598,598.0 +2.9769696969696975,2.98,a-phya-i1,2018-19,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 1.1,1036,941.8181818181818 +5.664,5,a-phya-i1,2018-19,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +3.422222222222222,3.42,a-phya-i1,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,515,858.3333333333334 +6.469333333333333,5,a-phya-i1,2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +6.586666666666667,5,a-phya-i1,2018-19,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,106,265.0 +7.061333333333334,5,a-phya-i1,2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,352,176.0 +1,1,a-phya-i1,2018-19,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159 +6.778666666666667,5,a-phya-i1,2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,229,229.0 +6.517333333333333,5,a-phya-i1,2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,556,278.0 +4.576,4.58,a-phya-i1,2018-19,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,642,642.0 +5.525333333333333,5,a-phya-i1,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +6.661333333333333,5,a-phya-i1,2018-19,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,251,251.0 +6.592,5,a-phya-i1,2018-19,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,264,264.0 +1,1,a-phya-i1,2018-19,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402 +0.416,1,a-phya-i1,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1422,1422.0 +6.890666666666666,5,a-phya-i1,2018-19,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +5.056,5,a-phya-i1,2018-19,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,552,552.0 +5.674666666666667,5,a-phya-i1,2018-19,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,436,436.0 +5.2,5,a-phya-i1,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,1575,525.0 +7.1946666666666665,5,a-phya-i1,2018-19,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,151,151.0 +5.968,5,a-phya-i1,2018-19,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +5.984,5,a-phya-i1,2018-19,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +4.453333333333333,4.45,a-phya-i1,2018-19,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,532,665.0 +5.978666666666666,5,a-phya-i1,2018-19,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,379,379.0 +6.506666666666667,5,a-phya-i1,2018-19,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,280,280.0 +5.450666666666667,5,a-phya-i1,2018-19,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,478,478.0 +6.272,5,a-phya-i1,2018-19,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,324,324.0 +7.136,5,a-phya-i1,2018-19,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,162,162.0 +7.029333333333334,5,a-phya-i1,2018-19,Narragansett - Templeton Center,07200020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,182,182.0 +5.077333333333334,5,a-phya-i1,2018-19,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,548,548.0 +6.088,5,a-phya-i1,2018-19,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,717,358.5 +6.512,5,a-phya-i1,2018-19,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,279,279.0 +6.704,5,a-phya-i1,2018-19,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +5.530666666666667,5,a-phya-i1,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,463,463.0 +5.392,5,a-phya-i1,2018-19,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,978,489.0 +4.352,4.35,a-phya-i1,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,684,684.0 +5.987555555555556,5,a-phya-i1,2018-19,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,566,377.3333333333333 +5.306666666666667,5,a-phya-i1,2018-19,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,505,505.0 +6.1306666666666665,5,a-phya-i1,2018-19,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,701,350.5 +6.741333333333333,5,a-phya-i1,2018-19,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,236,236.0 +5.674666666666667,5,a-phya-i1,2018-19,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,436,436.0 +5.738666666666667,5,a-phya-i1,2018-19,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,424,424.0 +5.690666666666667,5,a-phya-i1,2018-19,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 4.0,1732,433.0 +5.9111111111111105,5,a-phya-i1,2018-19,Natick - Wilson Middle,01980310, 0.0, 0.8, 0.0, 0.0, 1.6, 0.0, 0.0, 2.4,940,391.6666666666667 +5.501333333333333,5,a-phya-i1,2018-19,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,937,468.5 +4.954666666666666,4.95,a-phya-i1,2018-19,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,571,571.0 +4.981333333333334,4.98,a-phya-i1,2018-19,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,566,566.0 +5.6,5,a-phya-i1,2018-19,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,450,450.0 +5.322666666666667,5,a-phya-i1,2018-19,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 +5.856,5,a-phya-i1,2018-19,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,402,402.0 +4.182222222222222,4.18,a-phya-i1,2018-19,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 2.4,1718,715.8333333333334 +5.984,5,a-phya-i1,2018-19,Needham - Newman Elementary,01990050, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,756,378.0 +5.045333333333334,5,a-phya-i1,2018-19,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,831,554.0 +5.354666666666667,5,a-phya-i1,2018-19,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,496,496.0 +4.554666666666667,4.55,a-phya-i1,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,646,646.0 +6.165333333333334,5,a-phya-i1,2018-19,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,688,344.0 +5.072,5,a-phya-i1,2018-19,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +4.992,4.99,a-phya-i1,2018-19,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,282,564.0 +6.224,5,a-phya-i1,2018-19,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,333,333.0 +5.504,5,a-phya-i1,2018-19,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,702,468.0 +6.458666666666667,5,a-phya-i1,2018-19,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,289,289.0 +1,1,a-phya-i1,2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +4.64,4.64,a-phya-i1,2018-19,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,315,630.0 +5.6,5,a-phya-i1,2018-19,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,270,450.0 +4.261333333333333,4.26,a-phya-i1,2018-19,New Bedford - Hayden/McFadden,02010078, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,701,701.0 +1,1,a-phya-i1,2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413 +4.554666666666667,4.55,a-phya-i1,2018-19,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,323,646.0 +5.373333333333333,5,a-phya-i1,2018-19,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,197,492.5 +6.677333333333333,5,a-phya-i1,2018-19,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,248,248.0 +6.1066666666666665,5,a-phya-i1,2018-19,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +7.155555555555555,5,a-phya-i1,2018-19,New Bedford - Keith Middle School,02010405, 0.0, 1.0, 2.0, 1.0, 1.0, 0.0, 1.0, 6.0,950,158.33333333333334 +4.140444444444444,4.14,a-phya-i1,2018-19,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 3.0,2171,723.6666666666666 +4.714666666666667,4.71,a-phya-i1,2018-19,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1232,616.0 +1,1,a-phya-i1,2018-19,New Bedford - Renaissance Community Innovation School,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196 +6.469333333333333,5,a-phya-i1,2018-19,New Bedford - Roosevelt Middle School,02010415, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,861,287.0 +5.187555555555555,5,a-phya-i1,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,791,527.3333333333334 +5.866666666666666,5,a-phya-i1,2018-19,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,200,400.0 +7.746666666666667,5,a-phya-i1,2018-19,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,95,47.5 +7.913142857142858,5,a-phya-i1,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 3.0, 1.0, 2.0, 1.0, 0.0, 7.0,114,16.285714285714285 +1,1,a-phya-i1,2018-19,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +5.1626666666666665,5,a-phya-i1,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 +1,1,a-phya-i1,2018-19,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149 +6.346666666666667,5,a-phya-i1,2018-19,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,310,310.0 +6.685866666666667,5,a-phya-i1,2018-19,Newburyport - Francis T Bresnahan Elementary,02040005, 1.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 2.5,616,246.4 +5.301333333333333,5,a-phya-i1,2018-19,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.3, 1.3, 0.0, 0.0, 1.5,759,506.0 +6.541333333333333,5,a-phya-i1,2018-19,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,547,273.5 +5.317333333333333,5,a-phya-i1,2018-19,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,503,503.0 +5.328,5,a-phya-i1,2018-19,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,501,501.0 +5.882666666666666,5,a-phya-i1,2018-19,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,397,397.0 +5.952,5,a-phya-i1,2018-19,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,384,384.0 +5.941333333333334,5,a-phya-i1,2018-19,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,386,386.0 +4.032,4.03,a-phya-i1,2018-19,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,744,744.0 +5.7973333333333334,5,a-phya-i1,2018-19,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,413,413.0 +5.402666666666667,5,a-phya-i1,2018-19,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,974,487.0 +5.722666666666667,5,a-phya-i1,2018-19,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,427,427.0 +5.872,5,a-phya-i1,2018-19,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,399,399.0 +6.421333333333333,5,a-phya-i1,2018-19,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +1,1,a-phya-i1,2018-19,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365 +5.402666666666667,5,a-phya-i1,2018-19,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,487,487.0 +5.525333333333333,5,a-phya-i1,2018-19,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,464,464.0 +6.8693333333333335,5,a-phya-i1,2018-19,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,212,212.0 +2.336,2.34,a-phya-i1,2018-19,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,2124,1062.0 +2.904,2.9,a-phya-i1,2018-19,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1911,955.5 +4.64,4.64,a-phya-i1,2018-19,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,630,630.0 +6.554666666666667,5,a-phya-i1,2018-19,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +6.453333333333333,5,a-phya-i1,2018-19,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,290,290.0 +1,1,a-phya-i1,2018-19,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278 +5.722666666666667,5,a-phya-i1,2018-19,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,427,427.0 +6.27,5,a-phya-i1,2018-19,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,519,324.375 +5.632,5,a-phya-i1,2018-19,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,444,444.0 +5.029333333333334,5,a-phya-i1,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,557,557.0 +6.634666666666667,5,a-phya-i1,2018-19,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,256,256.0 +6.245333333333333,5,a-phya-i1,2018-19,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +5.205333333333333,5,a-phya-i1,2018-19,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,524,524.0 +6.634666666666667,5,a-phya-i1,2018-19,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,256,256.0 +6.744,5,a-phya-i1,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,471,235.5 +5.488,5,a-phya-i1,2018-19,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,471,471.0 +6.085333333333334,5,a-phya-i1,2018-19,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +5.952,5,a-phya-i1,2018-19,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,384,384.0 +6.746666666666667,5,a-phya-i1,2018-19,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,235,235.0 +0.20266666666666666,1,a-phya-i1,2018-19,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1462,1462.0 +5.069333333333334,5,a-phya-i1,2018-19,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1099,549.5 +6.464,5,a-phya-i1,2018-19,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +6.656,5,a-phya-i1,2018-19,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,378,252.0 +6.32,5,a-phya-i1,2018-19,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,315,315.0 +6.536296296296297,5,a-phya-i1,2018-19,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,247,274.44444444444446 +4.725333333333333,4.73,a-phya-i1,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,614,614.0 +5.045333333333334,5,a-phya-i1,2018-19,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1108,554.0 +1,1,a-phya-i1,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,134 +5.064,5,a-phya-i1,2018-19,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1101,550.5 +1,1,a-phya-i1,2018-19,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258 +6.314666666666667,5,a-phya-i1,2018-19,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +6.645333333333333,5,a-phya-i1,2018-19,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +7.077333333333334,5,a-phya-i1,2018-19,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,173,173.0 +5.386666666666667,5,a-phya-i1,2018-19,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,490,490.0 +5.1946666666666665,5,a-phya-i1,2018-19,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,526,526.0 +5.8920634920634924,5,a-phya-i1,2018-19,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,830,395.23809523809524 +5.728,5,a-phya-i1,2018-19,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,426,426.0 +7.525333333333333,5,a-phya-i1,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,89,89.0 +5.141333333333334,5,a-phya-i1,2018-19,North Middlesex - Varnum Brook,07350035, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,536,536.0 +6.277333333333333,5,a-phya-i1,2018-19,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,323,323.0 +6.133333333333334,5,a-phya-i1,2018-19,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,350,350.0 +5.690666666666667,5,a-phya-i1,2018-19,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +3.989333333333333,3.99,a-phya-i1,2018-19,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,752,752.0 +5.12,5,a-phya-i1,2018-19,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,540,540.0 +6.629333333333333,5,a-phya-i1,2018-19,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,257,257.0 +6.1226666666666665,5,a-phya-i1,2018-19,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,352,352.0 +4.725333333333333,4.73,a-phya-i1,2018-19,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,614,614.0 +6.229333333333333,5,a-phya-i1,2018-19,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,332,332.0 +3.472,3.47,a-phya-i1,2018-19,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,849,849.0 +6.816,5,a-phya-i1,2018-19,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,222,222.0 +5.36,5,a-phya-i1,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,495,495.0 +4.133333333333334,4.13,a-phya-i1,2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1450,725.0 +6.413333333333333,5,a-phya-i1,2018-19,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,238,297.5 +6.672,5,a-phya-i1,2018-19,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,249,249.0 +6.522666666666667,5,a-phya-i1,2018-19,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,277,277.0 +6.373333333333333,5,a-phya-i1,2018-19,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,244,305.0 +5.794285714285714,5,a-phya-i1,2018-19,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,579,413.5714285714286 +6.069333333333334,5,a-phya-i1,2018-19,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,362,362.0 +6.546666666666667,5,a-phya-i1,2018-19,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,545,272.5 +6.141333333333334,5,a-phya-i1,2018-19,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,697,348.5 +5.477333333333333,5,a-phya-i1,2018-19,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,473,473.0 +4.669333333333333,4.67,a-phya-i1,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1249,624.5 +1,1,a-phya-i1,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496 +5.962666666666666,5,a-phya-i1,2018-19,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +5.397333333333333,5,a-phya-i1,2018-19,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,488,488.0 +6.586666666666667,5,a-phya-i1,2018-19,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,265,265.0 +1,1,a-phya-i1,2018-19,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,716 +4.8693333333333335,4.87,a-phya-i1,2018-19,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,587,587.0 +5.450666666666667,5,a-phya-i1,2018-19,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,478,478.0 +4.352,4.35,a-phya-i1,2018-19,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,684,684.0 +5.28,5,a-phya-i1,2018-19,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,510,510.0 +5.226666666666667,5,a-phya-i1,2018-19,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,520,520.0 +6.378666666666667,5,a-phya-i1,2018-19,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +6.704,5,a-phya-i1,2018-19,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +6.9013333333333335,5,a-phya-i1,2018-19,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,206,206.0 +5.333333333333333,5,a-phya-i1,2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,750,500.0 +6.256,5,a-phya-i1,2018-19,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,327,327.0 +7.016,5,a-phya-i1,2018-19,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,369,184.5 +7.093333333333334,5,a-phya-i1,2018-19,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,238,170.0 +4.497777777777778,4.5,a-phya-i1,2018-19,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,985,656.6666666666666 +5.68,5,a-phya-i1,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,435,435.0 +5.066666666666666,5,a-phya-i1,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,550,550.0 +2.8333333333333335,2.83,a-phya-i1,2018-19,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,775,968.75 +5.669333333333333,5,a-phya-i1,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,437,437.0 +6.222222222222221,5,a-phya-i1,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,200,333.33333333333337 +6.261333333333333,5,a-phya-i1,2018-19,Orange - Dexter Park,02230010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,326,326.0 +6.602666666666667,5,a-phya-i1,2018-19,Orange - Fisher Hill,02230015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +6.8373333333333335,5,a-phya-i1,2018-19,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,218,218.0 +6.634666666666667,5,a-phya-i1,2018-19,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,256,256.0 +5.8453333333333335,5,a-phya-i1,2018-19,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,404,404.0 +5.1626666666666665,5,a-phya-i1,2018-19,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,532,532.0 +5.717333333333333,5,a-phya-i1,2018-19,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +1,1,a-phya-i1,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,19 +4.501333333333333,4.5,a-phya-i1,2018-19,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,656,656.0 +4.378666666666667,4.38,a-phya-i1,2018-19,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,679,679.0 +4.544,4.54,a-phya-i1,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,648,648.0 +5.066666666666666,5,a-phya-i1,2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,275,550.0 +1,1,a-phya-i1,2018-19,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358 +1,1,a-phya-i1,2018-19,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384 +1,1,a-phya-i1,2018-19,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1439 +1,1,a-phya-i1,2018-19,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264 +1,1,a-phya-i1,2018-19,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362 +1,1,a-phya-i1,2018-19,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1436 +1,1,a-phya-i1,2018-19,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471 +1,1,a-phya-i1,2018-19,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616 +1,1,a-phya-i1,2018-19,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261 +1,1,a-phya-i1,2018-19,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382 +7.28,5,a-phya-i1,2018-19,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,135,135.0 +5.333333333333333,5,a-phya-i1,2018-19,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,500,500.0 +5.733333333333333,5,a-phya-i1,2018-19,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +5.008,5,a-phya-i1,2018-19,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,561,561.0 +5.536,5,a-phya-i1,2018-19,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,462,462.0 +3.472,3.47,a-phya-i1,2018-19,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,849,849.0 +6.773333333333333,5,a-phya-i1,2018-19,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,230,230.0 +6.181333333333333,5,a-phya-i1,2018-19,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +5.370666666666667,5,a-phya-i1,2018-19,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,493,493.0 +6.746666666666667,5,a-phya-i1,2018-19,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,235,235.0 +5.8773333333333335,5,a-phya-i1,2018-19,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +4.053333333333334,4.05,a-phya-i1,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,740,740.0 +7.386666666666667,5,a-phya-i1,2018-19,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,115,115.0 +6.730666666666667,5,a-phya-i1,2018-19,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, 0.0, 0.5, 0.5,119,238.0 +5.888,5,a-phya-i1,2018-19,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, 0.5, 0.0, 0.5,198,396.0 +5.856,5,a-phya-i1,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,201,402.0 +3.792,3.79,a-phya-i1,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,789,789.0 +6.069333333333334,5,a-phya-i1,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,362,362.0 +7.152,5,a-phya-i1,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,159,159.0 +1,1,a-phya-i1,2018-19,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184 +7.715555555555555,5,a-phya-i1,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,32,53.333333333333336 +6.341333333333333,5,a-phya-i1,2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,311,311.0 +7.696,5,a-phya-i1,2018-19,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,57,57.0 +5.1786666666666665,5,a-phya-i1,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,529,529.0 +5.866666666666666,5,a-phya-i1,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,400,400.0 +6.330666666666667,5,a-phya-i1,2018-19,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 +5.8453333333333335,5,a-phya-i1,2018-19,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,404,404.0 +5.696,5,a-phya-i1,2018-19,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,432,432.0 +5.061333333333334,5,a-phya-i1,2018-19,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,551,551.0 +6.1066666666666665,5,a-phya-i1,2018-19,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +3.7173333333333334,3.72,a-phya-i1,2018-19,Pittsfield - Pittsfield High,02360505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,803,803.0 +6.874666666666666,5,a-phya-i1,2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,211,211.0 +6.026666666666666,5,a-phya-i1,2018-19,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +6.757333333333333,5,a-phya-i1,2018-19,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,233,233.0 +3.6533333333333333,3.65,a-phya-i1,2018-19,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,815,815.0 +4.56,4.56,a-phya-i1,2018-19,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,645,645.0 +6.416,5,a-phya-i1,2018-19,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,297,297.0 +5.738666666666667,5,a-phya-i1,2018-19,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,424,424.0 +6.469333333333333,5,a-phya-i1,2018-19,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +6.8213333333333335,5,a-phya-i1,2018-19,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,221,221.0 +6.069333333333334,5,a-phya-i1,2018-19,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +7.034666666666666,5,a-phya-i1,2018-19,Plymouth - Hedge,02390010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,181,181.0 +4.965333333333334,4.97,a-phya-i1,2018-19,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +6.581333333333333,5,a-phya-i1,2018-19,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,266,266.0 +5.029333333333334,5,a-phya-i1,2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,557,557.0 +5.189333333333333,5,a-phya-i1,2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1054,527.0 +7.173333333333333,5,a-phya-i1,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,155,155.0 +4.621333333333333,4.62,a-phya-i1,2018-19,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1267,633.5 +2.272,2.27,a-phya-i1,2018-19,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1074,1074.0 +4.245333333333333,4.25,a-phya-i1,2018-19,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,704,704.0 +4.629333333333333,4.63,a-phya-i1,2018-19,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,632,632.0 +6.1226666666666665,5,a-phya-i1,2018-19,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +6.938666666666666,5,a-phya-i1,2018-19,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,199,199.0 +5.0,5.0,a-phya-i1,2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1125,562.5 +1,1,a-phya-i1,2018-19,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125 +7.072,5,a-phya-i1,2018-19,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,174,174.0 +6.352,5,a-phya-i1,2018-19,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,309,309.0 +7.674666666666667,5,a-phya-i1,2018-19,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,61,61.0 +1,1,a-phya-i1,2018-19,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127 +6.330666666666667,5,a-phya-i1,2018-19,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,626,313.0 +6.085333333333334,5,a-phya-i1,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 +5.536,5,a-phya-i1,2018-19,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,462,462.0 +6.133333333333334,5,a-phya-i1,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,350,350.0 +1,1,a-phya-i1,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222 +5.68,5,a-phya-i1,2018-19,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +6.421333333333333,5,a-phya-i1,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,296,296.0 +6.112,5,a-phya-i1,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,177,354.0 +5.109333333333334,5,a-phya-i1,2018-19,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,271,542.0 +2.304,2.3,a-phya-i1,2018-19,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,534,1068.0 +4.554666666666667,4.55,a-phya-i1,2018-19,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,323,646.0 +4.042666666666666,4.04,a-phya-i1,2018-19,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,371,742.0 +4.709333333333333,4.71,a-phya-i1,2018-19,Quincy - Central Middle,02430315, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,617,617.0 +4.298666666666667,4.3,a-phya-i1,2018-19,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,347,694.0 +4.486666666666666,4.49,a-phya-i1,2018-19,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.8,527,658.75 +4.533333333333333,4.53,a-phya-i1,2018-19,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,325,650.0 +2.6133333333333333,2.61,a-phya-i1,2018-19,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,505,1010.0 +4.074666666666666,4.07,a-phya-i1,2018-19,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,368,736.0 +3.52,3.52,a-phya-i1,2018-19,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,420,840.0 +-5.418666666666667,1,a-phya-i1,2018-19,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1258,2516.0 +1,1,a-phya-i1,2018-19,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397 +-0.09066666666666667,1,a-phya-i1,2018-19,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 1.0,1517,1517.0 +3.3386666666666667,3.34,a-phya-i1,2018-19,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,437,874.0 +4.1706666666666665,4.17,a-phya-i1,2018-19,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,359,718.0 +4.309333333333333,4.31,a-phya-i1,2018-19,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,346,692.0 +4.405333333333333,4.41,a-phya-i1,2018-19,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,337,674.0 +1,1,a-phya-i1,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35 +1.3546666666666667,1.35,a-phya-i1,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,623,1246.0 +1,1,a-phya-i1,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73 +1,1,a-phya-i1,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304 +5.648,5,a-phya-i1,2018-19,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,441,441.0 +5.584,5,a-phya-i1,2018-19,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,453,453.0 +6.506666666666667,5,a-phya-i1,2018-19,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,280,280.0 +4.730666666666667,4.73,a-phya-i1,2018-19,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,613,613.0 +4.554666666666667,4.55,a-phya-i1,2018-19,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,646,646.0 +6.005333333333334,5,a-phya-i1,2018-19,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,374,374.0 +5.637333333333333,5,a-phya-i1,2018-19,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,443,443.0 +5.989333333333334,5,a-phya-i1,2018-19,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,377,377.0 +5.802666666666667,5,a-phya-i1,2018-19,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +5.941333333333334,5,a-phya-i1,2018-19,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 +1,1,a-phya-i1,2018-19,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115 +4.293333333333333,4.29,a-phya-i1,2018-19,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 1.8,1251,695.0 +5.082666666666666,5,a-phya-i1,2018-19,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,547,547.0 +6.373333333333333,5,a-phya-i1,2018-19,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,305,305.0 +4.189090909090909,4.19,a-phya-i1,2018-19,Revere - A. C. Whelan Elementary School,02480003, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,786,714.5454545454545 +4.756363636363637,4.76,a-phya-i1,2018-19,Revere - Abraham Lincoln,02480025, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,669,608.1818181818181 +6.068148148148149,5,a-phya-i1,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.1, 0.0, 0.0, 0.0, 0.8, 0.0, 0.9,326,362.22222222222223 +4.450909090909091,4.45,a-phya-i1,2018-19,Revere - Garfield Elementary School,02480056, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,732,665.4545454545454 +5.28969696969697,5,a-phya-i1,2018-19,Revere - Garfield Middle School,02480057, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,559,508.18181818181813 +5.682424242424243,5,a-phya-i1,2018-19,Revere - Paul Revere,02480050, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,478,434.5454545454545 +4.596989247311829,4.6,a-phya-i1,2018-19,Revere - Revere High,02480505, 0.0, 0.1, 1.0, 0.0, 0.0, 2.0, 0.0, 3.1,1978,638.0645161290322 +5.037575757575758,5,a-phya-i1,2018-19,Revere - Rumney Marsh Academy,02480014, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,611,555.4545454545454 +6.4,5,a-phya-i1,2018-19,Revere - Seacoast School,02480520, 0.0, 0.1, 0.0, 0.0, 0.0, 0.2, 0.0, 0.3,90,300.0 +4.49939393939394,4.5,a-phya-i1,2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,722,656.3636363636363 +5.124848484848485,5,a-phya-i1,2018-19,Revere - Susan B. Anthony Middle School,02480305, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,593,539.090909090909 +6.806666666666667,5,a-phya-i1,2018-19,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,179,223.75 +6.250666666666667,5,a-phya-i1,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,656,328.0 +6.464,5,a-phya-i1,2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.274666666666667,5,a-phya-i1,2018-19,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +5.152,5,a-phya-i1,2018-19,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,267,534.0 +0.49066666666666664,1,a-phya-i1,2018-19,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,704,1408.0 +4.917333333333334,4.92,a-phya-i1,2018-19,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,289,578.0 +4.458666666666667,4.46,a-phya-i1,2018-19,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,332,664.0 +1.216,1.22,a-phya-i1,2018-19,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,636,1272.0 +1,1,a-phya-i1,2018-19,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393 +6.506666666666667,5,a-phya-i1,2018-19,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,280,280.0 +6.8533333333333335,5,a-phya-i1,2018-19,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +7.648,5,a-phya-i1,2018-19,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,66,66.0 +5.301333333333333,5,a-phya-i1,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,1518,506.0 +-0.4106666666666667,1,a-phya-i1,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1577,1577.0 +-12.746666666666666,1,a-phya-i1,2018-19,Salem - Bates,02580003, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,389,3890.0 +-6.88,1,a-phya-i1,2018-19,Salem - Carlton,02580015, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,279,2790.0 +-1.0666666666666667,1,a-phya-i1,2018-19,Salem - Collins Middle,02580305, 0.0, 0.1, 0.0, 0.0, 0.3, 0.0, 0.0, 0.4,680,1700.0 +5.333333333333333,5,a-phya-i1,2018-19,Salem - Horace Mann Laboratory,02580030, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.5, 0.6,300,500.0 +5.226666666666667,5,a-phya-i1,2018-19,Salem - New Liberty Innovation School,02580510, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,52,520.0 +3.1466666666666665,3.15,a-phya-i1,2018-19,Salem - Salem Early Childhood,02580001, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,91,910.0 +5.673650793650794,5,a-phya-i1,2018-19,Salem - Salem High,02580505, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 2.1,916,436.19047619047615 +6.826666666666667,5,a-phya-i1,2018-19,Salem - Salem Prep High School,02580515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,22,220.0 +4.355555555555555,4.36,a-phya-i1,2018-19,Salem - Saltonstall School,02580050, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.6,410,683.3333333333334 +2.8533333333333335,2.85,a-phya-i1,2018-19,Salem - Witchcraft Heights,02580070, 0.0, 0.1, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6,579,965.0 +1,1,a-phya-i1,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491 +4.752,4.75,a-phya-i1,2018-19,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,609,609.0 +5.832,5,a-phya-i1,2018-19,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,813,406.5 +6.573333333333333,5,a-phya-i1,2018-19,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.4, 0.0, 2.4,642,267.5 +5.621333333333333,5,a-phya-i1,2018-19,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +4.618666666666667,4.62,a-phya-i1,2018-19,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,634,634.0 +6.778666666666667,5,a-phya-i1,2018-19,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,229,229.0 +6.496,5,a-phya-i1,2018-19,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,282,282.0 +6.714666666666667,5,a-phya-i1,2018-19,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +6.136,5,a-phya-i1,2018-19,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,699,349.5 +6.602666666666667,5,a-phya-i1,2018-19,Saugus - Veterans Memorial,02620065, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,524,262.0 +1,1,a-phya-i1,2018-19,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63 +6.261333333333333,5,a-phya-i1,2018-19,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,326,326.0 +4.362666666666667,4.36,a-phya-i1,2018-19,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,682,682.0 +6.608,5,a-phya-i1,2018-19,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,261,261.0 +6.1226666666666665,5,a-phya-i1,2018-19,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 +2.8853333333333335,2.89,a-phya-i1,2018-19,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,959,959.0 +6.904,5,a-phya-i1,2018-19,Scituate - Wampatuck Elementary,02640020, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,411,205.5 +2.570666666666667,2.57,a-phya-i1,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,509,1018.0 +2.6773333333333333,2.68,a-phya-i1,2018-19,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,499,998.0 +3.1573333333333333,3.16,a-phya-i1,2018-19,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,454,908.0 +1.3333333333333333,1.33,a-phya-i1,2018-19,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,625,1250.0 +4.426666666666667,4.43,a-phya-i1,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,670,670.0 +6.616,5,a-phya-i1,2018-19,Sharon - Cottage Street,02660005, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,519,259.5 +5.28,5,a-phya-i1,2018-19,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,510,510.0 +5.136,5,a-phya-i1,2018-19,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,537,537.0 +7.128888888888888,5,a-phya-i1,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,49,163.33333333333334 +2.021333333333333,2.02,a-phya-i1,2018-19,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1121,1121.0 +-1.088,1,a-phya-i1,2018-19,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,852,1704.0 +1.0986666666666667,1.1,a-phya-i1,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1294,1294.0 +5.5525925925925925,5,a-phya-i1,2018-19,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,413,458.88888888888886 +6.432,5,a-phya-i1,2018-19,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,294,294.0 +5.818666666666667,5,a-phya-i1,2018-19,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +6.330434782608696,5,a-phya-i1,2018-19,Shrewsbury - Floral Street School,02710020, 0.3, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.3,720,313.04347826086956 +5.178947368421053,5,a-phya-i1,2018-19,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 1.9,1005,528.9473684210526 +1,1,a-phya-i1,2018-19,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242 +4.35047619047619,4.35,a-phya-i1,2018-19,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,958,684.2857142857143 +3.1066666666666665,3.11,a-phya-i1,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1835,917.5 +6.058666666666666,5,a-phya-i1,2018-19,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,364,364.0 +5.973333333333334,5,a-phya-i1,2018-19,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,380,380.0 +7.317333333333333,5,a-phya-i1,2018-19,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,128,128.0 +1.3813333333333333,1.38,a-phya-i1,2018-19,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1241,1241.0 +5.258666666666667,5,a-phya-i1,2018-19,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,514,514.0 +6.032,5,a-phya-i1,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +6.111111111111111,5,a-phya-i1,2018-19,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,425,354.1666666666667 +4.48,4.48,a-phya-i1,2018-19,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,462,660.0 +5.248888888888889,5,a-phya-i1,2018-19,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,619,515.8333333333334 +6.822222222222221,5,a-phya-i1,2018-19,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,265,220.83333333333334 +4.543333333333333,4.54,a-phya-i1,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,1037,648.125 +1,1,a-phya-i1,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616 +1,1,a-phya-i1,2018-19,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450 +6.778666666666667,5,a-phya-i1,2018-19,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,229,229.0 +6.229333333333333,5,a-phya-i1,2018-19,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,332,332.0 +6.082666666666666,5,a-phya-i1,2018-19,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,719,359.5 +7.744,5,a-phya-i1,2018-19,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,48,48.0 +1,1,a-phya-i1,2018-19,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441 +1,1,a-phya-i1,2018-19,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +4.664,4.66,a-phya-i1,2018-19,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1251,625.5 +7.013333333333334,5,a-phya-i1,2018-19,Somerville - West Somerville Neighborhood,02740115, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,370,185.0 +1,1,a-phya-i1,2018-19,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439 +4.954666666666666,4.95,a-phya-i1,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,571,571.0 +5.685333333333333,5,a-phya-i1,2018-19,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,434,434.0 +6.1226666666666665,5,a-phya-i1,2018-19,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,352,352.0 +1,1,a-phya-i1,2018-19,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557 +0.0,1,a-phya-i1,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,750,1500.0 +5.36140350877193,5,a-phya-i1,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 0.0, 1.9,940,494.7368421052632 +4.56,4.56,a-phya-i1,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,645,645.0 +6.727619047619048,5,a-phya-i1,2018-19,Southampton - William E Norris,02750005, 0.1, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.1,501,238.57142857142856 +6.624,5,a-phya-i1,2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,258,258.0 +6.28,5,a-phya-i1,2018-19,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,258,322.5 +6.261333333333333,5,a-phya-i1,2018-19,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,326,326.0 +5.701333333333333,5,a-phya-i1,2018-19,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,431,431.0 +7.224,5,a-phya-i1,2018-19,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,291,145.5 +6.037333333333334,5,a-phya-i1,2018-19,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,368,368.0 +7.8293333333333335,5,a-phya-i1,2018-19,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,32,32.0 +5.429333333333333,5,a-phya-i1,2018-19,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,482,482.0 +5.349333333333333,5,a-phya-i1,2018-19,Southbridge - Southbridge Middle School,02770315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,497,497.0 +6.218666666666667,5,a-phya-i1,2018-19,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +0.2986666666666667,1,a-phya-i1,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.1, 0.0, 0.0, 0.9, 0.0, 0.0, 1.0,1444,1444.0 +6.352,5,a-phya-i1,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,309,309.0 +7.589333333333333,5,a-phya-i1,2018-19,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,77,77.0 +1,1,a-phya-i1,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +6.458666666666667,5,a-phya-i1,2018-19,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +4.984,4.98,a-phya-i1,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1131,565.5 +5.557333333333333,5,a-phya-i1,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,458,458.0 +6.101333333333334,5,a-phya-i1,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,712,356.0 +6.181333333333333,5,a-phya-i1,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,341,341.0 +6.538666666666667,5,a-phya-i1,2018-19,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +6.704,5,a-phya-i1,2018-19,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,243,243.0 +1,1,a-phya-i1,2018-19,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438 +6.743703703703703,5,a-phya-i1,2018-19,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,424,235.55555555555554 +5.664,5,a-phya-i1,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,438,438.0 +6.650666666666667,5,a-phya-i1,2018-19,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,253,253.0 +6.72,5,a-phya-i1,2018-19,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,240,240.0 +1,1,a-phya-i1,2018-19,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +6.2026666666666666,5,a-phya-i1,2018-19,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,337,337.0 +6.378666666666667,5,a-phya-i1,2018-19,Springfield - Chestnut Academy,02810365, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +7.1306666666666665,5,a-phya-i1,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,326,163.0 +6.165333333333334,5,a-phya-i1,2018-19,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,344,344.0 +5.626666666666667,5,a-phya-i1,2018-19,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +7.173333333333333,5,a-phya-i1,2018-19,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,155,155.0 +3.925333333333333,3.93,a-phya-i1,2018-19,Springfield - Edward P. Boland School,02810010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,764,764.0 +6.208,5,a-phya-i1,2018-19,Springfield - Elias Brookings,02810030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +4.133333333333334,4.13,a-phya-i1,2018-19,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,725,725.0 +6.272,5,a-phya-i1,2018-19,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +4.666666666666667,4.67,a-phya-i1,2018-19,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,625,625.0 +1,1,a-phya-i1,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22 +1,1,a-phya-i1,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.0, 0.0,32 +4.2026666666666666,4.2,a-phya-i1,2018-19,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,712,712.0 +6.48,5,a-phya-i1,2018-19,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,285,285.0 +6.245333333333333,5,a-phya-i1,2018-19,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,329,329.0 +5.293333333333333,5,a-phya-i1,2018-19,Springfield - High School Of Commerce,02810510, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1015,507.5 +1,1,a-phya-i1,2018-19,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283 +5.8933333333333335,5,a-phya-i1,2018-19,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,395,395.0 +1,1,a-phya-i1,2018-19,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376 +4.501333333333333,4.5,a-phya-i1,2018-19,Springfield - Indian Orchard Elementary,02810100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,656,656.0 +5.381333333333333,5,a-phya-i1,2018-19,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +3.952,3.95,a-phya-i1,2018-19,Springfield - John J Duggan Middle,02810320, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,759,759.0 +6.325333333333333,5,a-phya-i1,2018-19,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,314,314.0 +6.496,5,a-phya-i1,2018-19,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,282,282.0 +1,1,a-phya-i1,2018-19,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9 +5.872,5,a-phya-i1,2018-19,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,399,399.0 +4.357333333333333,4.36,a-phya-i1,2018-19,Springfield - M Marcus Kiley Middle,02810330, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,683,683.0 +1,1,a-phya-i1,2018-19,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229 +6.197333333333333,5,a-phya-i1,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,338,338.0 +6.586666666666667,5,a-phya-i1,2018-19,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,265,265.0 +6.421333333333333,5,a-phya-i1,2018-19,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +5.669333333333333,5,a-phya-i1,2018-19,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,437,437.0 +4.986666666666666,4.99,a-phya-i1,2018-19,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,565,565.0 +3.9466666666666668,3.95,a-phya-i1,2018-19,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,760,760.0 +1,1,a-phya-i1,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321 +5.484444444444444,5,a-phya-i1,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1415,471.6666666666667 +6.421333333333333,5,a-phya-i1,2018-19,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +6.256,5,a-phya-i1,2018-19,Springfield - Samuel Bowles,02810020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,327,327.0 +6.778666666666667,5,a-phya-i1,2018-19,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,229,229.0 +2.3893333333333335,2.39,a-phya-i1,2018-19,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,2104,1052.0 +1,1,a-phya-i1,2018-19,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231 +6.32,5,a-phya-i1,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 4.0,1260,315.0 +1,1,a-phya-i1,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25 +1,1,a-phya-i1,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31 +1,1,a-phya-i1,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61 +1,1,a-phya-i1,2018-19,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99 +7.738666666666667,5,a-phya-i1,2018-19,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,49,49.0 +1,1,a-phya-i1,2018-19,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97 +5.173333333333333,5,a-phya-i1,2018-19,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,530,530.0 +4.330666666666667,4.33,a-phya-i1,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,688,688.0 +7.136,5,a-phya-i1,2018-19,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,324,162.0 +7.306666666666667,5,a-phya-i1,2018-19,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,260,130.0 +6.581333333333333,5,a-phya-i1,2018-19,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +1,1,a-phya-i1,2018-19,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420 +5.605333333333333,5,a-phya-i1,2018-19,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,449,449.0 +6.752,5,a-phya-i1,2018-19,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,234,234.0 +6.554666666666667,5,a-phya-i1,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +6.533333333333333,5,a-phya-i1,2018-19,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,275,275.0 +5.898666666666666,5,a-phya-i1,2018-19,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +6.229333333333333,5,a-phya-i1,2018-19,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,332,332.0 +5.58,5,a-phya-i1,2018-19,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,726,453.75 +4.432,4.43,a-phya-i1,2018-19,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,669,669.0 +1,1,a-phya-i1,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91 +6.816,5,a-phya-i1,2018-19,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 +6.096,5,a-phya-i1,2018-19,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,357,357.0 +6.149333333333334,5,a-phya-i1,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,347,347.0 +3.477333333333333,3.48,a-phya-i1,2018-19,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,848,848.0 +6.1386666666666665,5,a-phya-i1,2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,349,349.0 +6.682666666666667,5,a-phya-i1,2018-19,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +2.458666666666667,2.46,a-phya-i1,2018-19,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1039,1039.0 +3.2693333333333334,3.27,a-phya-i1,2018-19,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,887,887.0 +5.770666666666667,5,a-phya-i1,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,836,418.0 +4.8566666666666665,4.86,a-phya-i1,2018-19,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,943,589.375 +6.208,5,a-phya-i1,2018-19,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,336,336.0 +5.466666666666667,5,a-phya-i1,2018-19,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +6.0906666666666665,5,a-phya-i1,2018-19,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,358,358.0 +5.1146666666666665,5,a-phya-i1,2018-19,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,541,541.0 +6.762666666666667,5,a-phya-i1,2018-19,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,232,232.0 +6.432,5,a-phya-i1,2018-19,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,294,294.0 +6.325333333333333,5,a-phya-i1,2018-19,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 +1,1,a-phya-i1,2018-19,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386 +6.72,5,a-phya-i1,2018-19,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,360,240.0 +5.728,5,a-phya-i1,2018-19,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,213,426.0 +4.576,4.58,a-phya-i1,2018-19,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,321,642.0 +5.450666666666667,5,a-phya-i1,2018-19,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,239,478.0 +1.7155555555555548,1.72,a-phya-i1,2018-19,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,707,1178.3333333333335 +1.4933333333333334,1.49,a-phya-i1,2018-19,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,732,1220.0 +6.533333333333333,5,a-phya-i1,2018-19,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +6.592,5,a-phya-i1,2018-19,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,264,264.0 +1,1,a-phya-i1,2018-19,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536 +5.082666666666666,5,a-phya-i1,2018-19,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,547,547.0 +6.922666666666666,5,a-phya-i1,2018-19,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,202,202.0 +6.613333333333333,5,a-phya-i1,2018-19,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,260,260.0 +1,1,a-phya-i1,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2143 +4.842666666666666,4.84,a-phya-i1,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,592,592.0 +4.085333333333334,4.09,a-phya-i1,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,734,734.0 +1,1,a-phya-i1,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486 +4.232727272727273,4.23,a-phya-i1,2018-19,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.0, 1.1,777,706.3636363636363 +4.420740740740741,4.42,a-phya-i1,2018-19,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.9,604,671.1111111111111 +5.926666666666667,5,a-phya-i1,2018-19,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,311,388.75 +4.992,4.99,a-phya-i1,2018-19,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,282,564.0 +4.206666666666667,4.21,a-phya-i1,2018-19,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,569,711.25 +6.386666666666667,5,a-phya-i1,2018-19,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,242,302.5 +6.12,5,a-phya-i1,2018-19,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,282,352.5 +4.673333333333333,4.67,a-phya-i1,2018-19,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,499,623.75 +4.666666666666667,4.67,a-phya-i1,2018-19,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,500,625.0 +4.683636363636364,4.68,a-phya-i1,2018-19,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.0, 1.1,684,621.8181818181818 +4.48,4.48,a-phya-i1,2018-19,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,528,660.0 +5.306666666666667,5,a-phya-i1,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,101,505.0 +3.0019047619047616,3.0,a-phya-i1,2018-19,Taunton - Taunton High,02930505, 0.0, 0.0, 1.5, 1.3, 0.0, 0.0, 0.0, 2.8,2624,937.1428571428572 +1,1,a-phya-i1,2018-19,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346 +5.274666666666667,5,a-phya-i1,2018-19,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,511,511.0 +5.072,5,a-phya-i1,2018-19,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +4.832,4.83,a-phya-i1,2018-19,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,594,594.0 +6.917333333333334,5,a-phya-i1,2018-19,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,203,203.0 +6.490666666666667,5,a-phya-i1,2018-19,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,283,283.0 +4.743111111111111,4.74,a-phya-i1,2018-19,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,916,610.6666666666666 +6.416,5,a-phya-i1,2018-19,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +7.28,5,a-phya-i1,2018-19,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,270,135.0 +1,1,a-phya-i1,2018-19,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371 +2.538666666666667,2.54,a-phya-i1,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,1024,1024.0 +5.808,5,a-phya-i1,2018-19,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,411,411.0 +5.701333333333333,5,a-phya-i1,2018-19,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +5.253333333333333,5,a-phya-i1,2018-19,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,515,515.0 +4.368,4.37,a-phya-i1,2018-19,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,681,681.0 +5.957333333333334,5,a-phya-i1,2018-19,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,383,383.0 +7.293333333333333,5,a-phya-i1,2018-19,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,106,132.5 +5.872,5,a-phya-i1,2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,798,399.0 +5.450666666666667,5,a-phya-i1,2018-19,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,478,478.0 +6.7057777777777785,5,a-phya-i1,2018-19,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,364,242.66666666666666 +5.242666666666667,5,a-phya-i1,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +4.1386666666666665,4.14,a-phya-i1,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,724,724.0 +6.4,5,a-phya-i1,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,60,300.0 +6.101333333333334,5,a-phya-i1,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +4.250666666666667,4.25,a-phya-i1,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,703,703.0 +1,1,a-phya-i1,2018-19,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44 +5.008,5,a-phya-i1,2018-19,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,561,561.0 +4.858666666666666,4.86,a-phya-i1,2018-19,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,589,589.0 +5.184,5,a-phya-i1,2018-19,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,528,528.0 +6.149333333333334,5,a-phya-i1,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,347,347.0 +3.9146666666666667,3.91,a-phya-i1,2018-19,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,383,766.0 +4.149333333333334,4.15,a-phya-i1,2018-19,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,361,722.0 +3.1466666666666665,3.15,a-phya-i1,2018-19,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,455,910.0 +2.8906666666666667,2.89,a-phya-i1,2018-19,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,479,958.0 +1,1,a-phya-i1,2018-19,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154 +4.213333333333333,4.21,a-phya-i1,2018-19,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,355,710.0 +4.149333333333334,4.15,a-phya-i1,2018-19,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,361,722.0 +2.8906666666666667,2.89,a-phya-i1,2018-19,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,479,958.0 +-0.7573333333333333,1,a-phya-i1,2018-19,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,821,1642.0 +4.650666666666667,4.65,a-phya-i1,2018-19,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,314,628.0 +3.1466666666666665,3.15,a-phya-i1,2018-19,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,455,910.0 +3.9146666666666667,3.91,a-phya-i1,2018-19,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,383,766.0 +0.5226666666666666,1,a-phya-i1,2018-19,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,2103,1402.0 +5.562666666666667,5,a-phya-i1,2018-19,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,457,457.0 +7.242666666666667,5,a-phya-i1,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,142,142.0 +5.229333333333333,5,a-phya-i1,2018-19,Wakefield - Galvin Middle School,03050310, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1039,519.5 +6.826666666666667,5,a-phya-i1,2018-19,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,220,220.0 +5.354666666666667,5,a-phya-i1,2018-19,Wakefield - Wakefield Memorial High,03050505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,992,496.0 +6.768,5,a-phya-i1,2018-19,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +5.8453333333333335,5,a-phya-i1,2018-19,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,404,404.0 +7.216,5,a-phya-i1,2018-19,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,147,147.0 +5.605333333333333,5,a-phya-i1,2018-19,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,449,449.0 +6.176,5,a-phya-i1,2018-19,Walpole - Boyden,03070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +6.293333333333333,5,a-phya-i1,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,64,320.0 +6.4462222222222225,5,a-phya-i1,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,437,291.3333333333333 +5.16,5,a-phya-i1,2018-19,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,426,532.5 +5.541333333333333,5,a-phya-i1,2018-19,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 +5.621333333333333,5,a-phya-i1,2018-19,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,446,446.0 +4.992,4.99,a-phya-i1,2018-19,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1128,564.0 +5.525333333333333,5,a-phya-i1,2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +5.792,5,a-phya-i1,2018-19,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,414,414.0 +5.786666666666667,5,a-phya-i1,2018-19,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 +5.1786666666666665,5,a-phya-i1,2018-19,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,529,529.0 +4.389333333333333,4.39,a-phya-i1,2018-19,Waltham - John W. McDevitt Middle School,03080415, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,677,677.0 +6.528,5,a-phya-i1,2018-19,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,552,276.0 +5.717333333333333,5,a-phya-i1,2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,428,428.0 +7.397333333333333,5,a-phya-i1,2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,113,113.0 +5.139555555555555,5,a-phya-i1,2018-19,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1609,536.3333333333334 +5.696,5,a-phya-i1,2018-19,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,432,432.0 +5.8933333333333335,5,a-phya-i1,2018-19,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,395,395.0 +5.461333333333333,5,a-phya-i1,2018-19,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +6.304,5,a-phya-i1,2018-19,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,318,318.0 +4.784,4.78,a-phya-i1,2018-19,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,603,603.0 +6.0906666666666665,5,a-phya-i1,2018-19,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,358,358.0 +1,1,a-phya-i1,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58 +5.242666666666667,5,a-phya-i1,2018-19,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,517,517.0 +4.8533333333333335,4.85,a-phya-i1,2018-19,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,590,590.0 +6.24,5,a-phya-i1,2018-19,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +6.253333333333333,5,a-phya-i1,2018-19,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,655,327.5 +5.8453333333333335,5,a-phya-i1,2018-19,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,404,404.0 +4.485333333333333,4.49,a-phya-i1,2018-19,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,659,659.0 +1,1,a-phya-i1,2018-19,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560 +1,1,a-phya-i1,2018-19,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535 +4.0,4.0,a-phya-i1,2018-19,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,375,750.0 +1,1,a-phya-i1,2018-19,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270 +1,1,a-phya-i1,2018-19,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846 +1,1,a-phya-i1,2018-19,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,669 +3.928888888888889,3.93,a-phya-i1,2018-19,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.0, 0.6,458,763.3333333333334 +3.2414814814814816,3.24,a-phya-i1,2018-19,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,803,892.2222222222222 +-22.4,1,a-phya-i1,2018-19,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,570,5700.0 +6.453333333333333,5,a-phya-i1,2018-19,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,232,290.0 +6.266666666666667,5,a-phya-i1,2018-19,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.6, 0.2, 0.0, 0.0, 0.8,260,325.0 +6.086666666666667,5,a-phya-i1,2018-19,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,287,358.75 +6.06,5,a-phya-i1,2018-19,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,291,363.75 +5.28,5,a-phya-i1,2018-19,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,357,510.00000000000006 +6.933333333333334,5,a-phya-i1,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,100,200.0 +5.08952380952381,5,a-phya-i1,2018-19,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,382,545.7142857142858 +5.56,5,a-phya-i1,2018-19,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,366,457.5 +-2.302222222222223,1,a-phya-i1,2018-19,Wellesley - Wellesley Middle,03170305, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,1159,1931.6666666666667 +4.738133333333333,4.74,a-phya-i1,2018-19,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.7, 0.0, 2.5,1529,611.6 +7.44,5,a-phya-i1,2018-19,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,105,105.0 +5.8453333333333335,5,a-phya-i1,2018-19,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,404,404.0 +5.408,5,a-phya-i1,2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,486,486.0 +6.490666666666667,5,a-phya-i1,2018-19,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,283,283.0 +6.602666666666667,5,a-phya-i1,2018-19,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,262,262.0 +1,1,a-phya-i1,2018-19,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181 +4.661333333333333,4.66,a-phya-i1,2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,626,626.0 +6.762666666666667,5,a-phya-i1,2018-19,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,116,232.0 +5.344,5,a-phya-i1,2018-19,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,249,498.0 +3.104,3.1,a-phya-i1,2018-19,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,459,918.0 +5.717333333333333,5,a-phya-i1,2018-19,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,214,428.0 +6.1866666666666665,5,a-phya-i1,2018-19,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,170,340.0 +2.496,2.5,a-phya-i1,2018-19,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,516,1032.0 +5.28,5,a-phya-i1,2018-19,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,255,510.0 +1.52,1.52,a-phya-i1,2018-19,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1215,1215.0 +4.732444444444445,4.73,a-phya-i1,2018-19,West Springfield - West Springfield Middle,03320305, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,919,612.6666666666666 +6.112,5,a-phya-i1,2018-19,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,354,354.0 +5.322666666666667,5,a-phya-i1,2018-19,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,502,502.0 +6.8933333333333335,5,a-phya-i1,2018-19,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,415,207.5 +3.136,3.14,a-phya-i1,2018-19,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,912,912.0 +4.8533333333333335,4.85,a-phya-i1,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,590,590.0 +1.856,1.86,a-phya-i1,2018-19,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1152,1152.0 +6.8373333333333335,5,a-phya-i1,2018-19,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,218,218.0 +7.024,5,a-phya-i1,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +6.874666666666666,5,a-phya-i1,2018-19,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,211,211.0 +6.1866666666666665,5,a-phya-i1,2018-19,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +6.074666666666666,5,a-phya-i1,2018-19,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +6.250666666666667,5,a-phya-i1,2018-19,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,328,328.0 +6.272,5,a-phya-i1,2018-19,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,324,324.0 +4.725333333333333,4.73,a-phya-i1,2018-19,Westfield - Westfield High,03250505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1228,614.0 +3.7066666666666666,3.71,a-phya-i1,2018-19,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,805,805.0 +3.7226666666666666,3.72,a-phya-i1,2018-19,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,802,802.0 +5.444848484848485,5,a-phya-i1,2018-19,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,527,479.09090909090907 +5.968,5,a-phya-i1,2018-19,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +5.018666666666666,5,a-phya-i1,2018-19,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,559,559.0 +6.384,5,a-phya-i1,2018-19,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,303,303.0 +6.1386666666666665,5,a-phya-i1,2018-19,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,349,349.0 +6.144,5,a-phya-i1,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,348,348.0 +7.381333333333333,5,a-phya-i1,2018-19,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,116,116.0 +6.314666666666667,5,a-phya-i1,2018-19,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +6.362666666666667,5,a-phya-i1,2018-19,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0,307,307.0 +4.448,4.45,a-phya-i1,2018-19,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,666,666.0 +1.8702222222222227,1.87,a-phya-i1,2018-19,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1724,1149.3333333333333 +7.413333333333333,5,a-phya-i1,2018-19,Westhampton - Westhampton Elementary School,03270005, 0.1, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,121,109.99999999999999 +5.926666666666667,5,a-phya-i1,2018-19,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,311,388.75 +6.222222222222222,5,a-phya-i1,2018-19,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.5, 0.0, 0.9,300,333.3333333333333 +3.2866666666666666,3.29,a-phya-i1,2018-19,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,707,883.75 +4.6866666666666665,4.69,a-phya-i1,2018-19,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,497,621.25 +6.08,5,a-phya-i1,2018-19,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,288,360.0 +6.053333333333334,5,a-phya-i1,2018-19,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +5.461333333333333,5,a-phya-i1,2018-19,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,476,476.0 +4.816,4.82,a-phya-i1,2018-19,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,597,597.0 +7.034666666666666,5,a-phya-i1,2018-19,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,181,181.0 +6.501333333333333,5,a-phya-i1,2018-19,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,281,281.0 +4.021333333333334,4.02,a-phya-i1,2018-19,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,746,746.0 +6.490666666666667,5,a-phya-i1,2018-19,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,283,283.0 +1,1,a-phya-i1,2018-19,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226 +4.156190476190476,4.16,a-phya-i1,2018-19,Westwood - Westwood High,03350505, 0.0, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 1.4,1009,720.7142857142858 +7.8713725490196085,5,a-phya-i1,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 0.0, 1.7,41,24.11764705882353 +6.309333333333333,5,a-phya-i1,2018-19,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,317,317.0 +2.755555555555556,2.76,a-phya-i1,2018-19,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.5, 0.4, 0.0, 0.0, 0.9,885,983.3333333333333 +1,1,a-phya-i1,2018-19,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +6.731851851851852,5,a-phya-i1,2018-19,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.4, 0.5, 0.0, 0.0, 0.9,214,237.77777777777777 +5.930666666666666,5,a-phya-i1,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,194,388.0 +1,1,a-phya-i1,2018-19,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193 +4.377435897435897,4.38,a-phya-i1,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.8, 0.0, 0.5, 0.0, 1.3,883,679.2307692307692 +1,1,a-phya-i1,2018-19,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245 +6.133333333333334,5,a-phya-i1,2018-19,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,175,350.0 +4.650666666666667,4.65,a-phya-i1,2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,314,628.0 +5.066666666666666,5,a-phya-i1,2018-19,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,275,550.0 +-1.936,1,a-phya-i1,2018-19,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1863,1863.0 +4.554666666666667,4.55,a-phya-i1,2018-19,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,323,646.0 +7.258666666666667,5,a-phya-i1,2018-19,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,139,139.0 +5.677575757575758,5,a-phya-i1,2018-19,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,479,435.45454545454544 +5.503030303030304,5,a-phya-i1,2018-19,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 0.0, 1.1,515,468.18181818181813 +5.852121212121212,5,a-phya-i1,2018-19,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,443,402.7272727272727 +5.44,5,a-phya-i1,2018-19,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,528,479.99999999999994 +4.756825396825397,4.76,a-phya-i1,2018-19,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.1, 1.0, 1.0, 0.0, 2.1,1277,608.0952380952381 +5.187878787878788,5,a-phya-i1,2018-19,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,580,527.2727272727273 +4.677333333333333,4.68,a-phya-i1,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1246,623.0 +7.216,5,a-phya-i1,2018-19,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,147,147.0 +7.28,5,a-phya-i1,2018-19,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,135,135.0 +6.586666666666667,5,a-phya-i1,2018-19,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,265,265.0 +6.074666666666666,5,a-phya-i1,2018-19,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +6.741333333333333,5,a-phya-i1,2018-19,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,236,236.0 +7.088,5,a-phya-i1,2018-19,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,171,171.0 +5.789333333333333,5,a-phya-i1,2018-19,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,829,414.5 +5.917333333333334,5,a-phya-i1,2018-19,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,781,390.5 +5.765333333333333,5,a-phya-i1,2018-19,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +6.384,5,a-phya-i1,2018-19,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +1,1,a-phya-i1,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39 +6.4,5,a-phya-i1,2018-19,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +1,1,a-phya-i1,2018-19,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282 +6.597333333333333,5,a-phya-i1,2018-19,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,263,263.0 +1,1,a-phya-i1,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78 +5.898666666666666,5,a-phya-i1,2018-19,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +5.701333333333333,5,a-phya-i1,2018-19,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,431,431.0 +5.1466666666666665,5,a-phya-i1,2018-19,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,535,535.0 +4.074666666666666,4.07,a-phya-i1,2018-19,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1104,736.0 +5.994666666666666,5,a-phya-i1,2018-19,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,376,376.0 +5.653333333333333,5,a-phya-i1,2018-19,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,440,440.0 +4.185263157894736,4.19,a-phya-i1,2018-19,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 1.9,1359,715.2631578947369 +5.621333333333333,5,a-phya-i1,2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +5.44,5,a-phya-i1,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,480,480.0 +4.826666666666667,4.83,a-phya-i1,2018-19,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,595,595.0 +5.536,5,a-phya-i1,2018-19,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +5.8293333333333335,5,a-phya-i1,2018-19,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +5.205333333333333,5,a-phya-i1,2018-19,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,524,524.0 +6.378666666666667,5,a-phya-i1,2018-19,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,304,304.0 +5.904,5,a-phya-i1,2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,393,393.0 +5.488,5,a-phya-i1,2018-19,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,471,471.0 +6.917333333333334,5,a-phya-i1,2018-19,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,203,203.0 +6.282666666666667,5,a-phya-i1,2018-19,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,322,322.0 +6.634666666666667,5,a-phya-i1,2018-19,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,256,256.0 +6.1706666666666665,5,a-phya-i1,2018-19,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +4.530666666666667,4.53,a-phya-i1,2018-19,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1301,650.5 +1,1,a-phya-i1,2018-19,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609 +4.346666666666667,4.35,a-phya-i1,2018-19,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,685,685.0 +2.2346666666666666,2.23,a-phya-i1,2018-19,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1081,1081.0 +6.352,5,a-phya-i1,2018-19,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,309,309.0 +6.053333333333334,5,a-phya-i1,2018-19,Worcester - Canterbury,03480045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +5.296,5,a-phya-i1,2018-19,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,507,507.0 +5.488,5,a-phya-i1,2018-19,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +7.159111111111112,5,a-phya-i1,2018-19,Worcester - City View,03480053, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,473,157.66666666666666 +5.088,5,a-phya-i1,2018-19,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,546,546.0 +7.269333333333333,5,a-phya-i1,2018-19,Worcester - Clark St Community,03480055, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,274,137.0 +5.52,5,a-phya-i1,2018-19,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +3.9226666666666667,3.92,a-phya-i1,2018-19,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1529,764.5 +5.568,5,a-phya-i1,2018-19,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,456,456.0 +5.930666666666666,5,a-phya-i1,2018-19,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +5.397333333333333,5,a-phya-i1,2018-19,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,976,488.0 +6.693333333333333,5,a-phya-i1,2018-19,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,245,245.0 +5.050666666666666,5,a-phya-i1,2018-19,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,553,553.0 +1,1,a-phya-i1,2018-19,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407 +5.856,5,a-phya-i1,2018-19,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,402,402.0 +1,1,a-phya-i1,2018-19,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551 +6.48,5,a-phya-i1,2018-19,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,285,285.0 +5.8133333333333335,5,a-phya-i1,2018-19,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,410,410.0 +6.245333333333333,5,a-phya-i1,2018-19,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +6.64,5,a-phya-i1,2018-19,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +6.229333333333333,5,a-phya-i1,2018-19,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,332,332.0 +1,1,a-phya-i1,2018-19,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +5.072,5,a-phya-i1,2018-19,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,549,549.0 +7.228,5,a-phya-i1,2018-19,Worcester - Norrback Avenue,03480202, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 4.0,579,144.75 +6.294666666666667,5,a-phya-i1,2018-19,Worcester - North High,03480515, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,1279,319.75 +6.675555555555555,5,a-phya-i1,2018-19,Worcester - Quinsigamond,03480210, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,745,248.33333333333334 +5.461333333333333,5,a-phya-i1,2018-19,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,476,476.0 +6.776888888888888,5,a-phya-i1,2018-19,Worcester - Roosevelt,03480220, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,688,229.33333333333334 +5.516444444444444,5,a-phya-i1,2018-19,Worcester - South High Community,03480520, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,1397,465.6666666666667 +7.037866666666666,5,a-phya-i1,2018-19,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 1.0, 2.0, 0.0, 2.0, 0.0, 5.0,902,180.4 +5.8133333333333335,5,a-phya-i1,2018-19,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,410,410.0 +6.016,5,a-phya-i1,2018-19,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,372,372.0 +5.786666666666667,5,a-phya-i1,2018-19,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,415,415.0 +5.44,5,a-phya-i1,2018-19,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,240,480.0 +5.242666666666667,5,a-phya-i1,2018-19,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,517,517.0 +6.464,5,a-phya-i1,2018-19,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,144,288.0 +7.010666666666666,5,a-phya-i1,2018-19,Worcester - West Tatnuck,03480260, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,371,185.5 +4.8,4.8,a-phya-i1,2018-19,Worcester - Woodland Academy,03480030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,600,600.0 +5.834666666666666,5,a-phya-i1,2018-19,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +5.957333333333334,5,a-phya-i1,2018-19,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,766,383.0 +4.197333333333333,4.2,a-phya-i1,2018-19,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1426,713.0 +7.605333333333333,5,a-phya-i1,2018-19,Worthington - R. H. Conwell,03490010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,74,74.0 +5.642666666666667,5,a-phya-i1,2018-19,Wrentham - Charles E Roderick,03500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +6.488,5,a-phya-i1,2018-19,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,567,283.5 +4.96,4.96,a-phya-i1,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 2.5,1425,570.0 +1,1,a-phya-i1,2017-18,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,84 +5.226666666666667,5,a-phya-i1,2017-18,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,520,520.0 +4.336,4.34,a-phya-i1,2017-18,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,687,687.0 +5.738666666666667,5,a-phya-i1,2017-18,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,424,424.0 +6.298666666666667,5,a-phya-i1,2017-18,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,319,319.0 +1,1,a-phya-i1,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,524 +3.128,3.13,a-phya-i1,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.8, 0.2, 0.0, 2.0,1827,913.5 +5.616,5,a-phya-i1,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,447,447.0 +5.722666666666667,5,a-phya-i1,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.2, 0.0, 0.8, 0.0, 1.0,427,427.0 +1,1,a-phya-i1,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111 +5.642666666666667,5,a-phya-i1,2017-18,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 1.0,442,442.0 +5.402666666666667,5,a-phya-i1,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +5.344,5,a-phya-i1,2017-18,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,498,498.0 +5.856,5,a-phya-i1,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 1.0,402,402.0 +4.786666666666667,4.79,a-phya-i1,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,964,602.5 +6.533333333333333,5,a-phya-i1,2017-18,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,550,275.0 +5.7973333333333334,5,a-phya-i1,2017-18,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,413,413.0 +5.850666666666666,5,a-phya-i1,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +1,1,a-phya-i1,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417 +5.8613333333333335,5,a-phya-i1,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 +5.963076923076923,5,a-phya-i1,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.6, 1.0, 2.6,993,381.9230769230769 +7.1306666666666665,5,a-phya-i1,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,163,163.0 +4.866666666666666,4.87,a-phya-i1,2017-18,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1175,587.5 +4.944,4.94,a-phya-i1,2017-18,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,573,573.0 +5.930666666666666,5,a-phya-i1,2017-18,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,388,388.0 +6.506666666666667,5,a-phya-i1,2017-18,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,280,280.0 +6.1866666666666665,5,a-phya-i1,2017-18,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +4.949333333333334,4.95,a-phya-i1,2017-18,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,572,572.0 +6.010666666666666,5,a-phya-i1,2017-18,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +1,1,a-phya-i1,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413 +5.8933333333333335,5,a-phya-i1,2017-18,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,395,395.0 +4.842666666666666,4.84,a-phya-i1,2017-18,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +5.866666666666666,5,a-phya-i1,2017-18,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,40,400.0 +4.389333333333333,4.39,a-phya-i1,2017-18,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,677,677.0 +5.637333333333333,5,a-phya-i1,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,443,443.0 +5.824,5,a-phya-i1,2017-18,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +6.213333333333333,5,a-phya-i1,2017-18,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +5.850666666666666,5,a-phya-i1,2017-18,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +5.235555555555555,5,a-phya-i1,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,933,518.3333333333334 +5.8133333333333335,5,a-phya-i1,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +4.832,4.83,a-phya-i1,2017-18,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,1782,594.0 +5.2,5,a-phya-i1,2017-18,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,525,525.0 +4.917333333333334,4.92,a-phya-i1,2017-18,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,578,578.0 +5.034666666666666,5,a-phya-i1,2017-18,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,556,556.0 +5.930666666666666,5,a-phya-i1,2017-18,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,388,388.0 +5.333333333333333,5,a-phya-i1,2017-18,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,500,500.0 +1,1,a-phya-i1,2017-18,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85 +5.381333333333333,5,a-phya-i1,2017-18,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,491,491.0 +4.757333333333333,4.76,a-phya-i1,2017-18,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,608,608.0 +1,1,a-phya-i1,2017-18,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,411 +5.8773333333333335,5,a-phya-i1,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +4.466666666666667,4.47,a-phya-i1,2017-18,Arlington - Arlington High,00100505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1325,662.5 +5.397333333333333,5,a-phya-i1,2017-18,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,488,488.0 +5.434666666666667,5,a-phya-i1,2017-18,Arlington - Cyrus E Dallin,00100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,481,481.0 +5.557333333333333,5,a-phya-i1,2017-18,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,458,458.0 +5.76,5,a-phya-i1,2017-18,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +5.856,5,a-phya-i1,2017-18,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +1,1,a-phya-i1,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85 +5.7635555555555555,5,a-phya-i1,2017-18,Arlington - Ottoson Middle,00100410, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,1258,419.3333333333333 +6.373333333333333,5,a-phya-i1,2017-18,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,305,305.0 +5.392,5,a-phya-i1,2017-18,Arlington - Thompson,00100050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,489,489.0 +5.050666666666666,5,a-phya-i1,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,553,553.0 +7.136,5,a-phya-i1,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,162,162.0 +4.165333333333334,4.17,a-phya-i1,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,719,719.0 +4.944,4.94,a-phya-i1,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,573,573.0 +5.989333333333334,5,a-phya-i1,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +3.8986666666666667,3.9,a-phya-i1,2017-18,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,769,769.0 +4.794666666666667,4.79,a-phya-i1,2017-18,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,601,601.0 +4.549333333333333,4.55,a-phya-i1,2017-18,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,647,647.0 +6.368,5,a-phya-i1,2017-18,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.5, 0.5, 1.0, 0.0, 0.0, 2.0,612,306.0 +7.322666666666667,5,a-phya-i1,2017-18,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,127,127.0 +4.042666666666666,4.04,a-phya-i1,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1113,742.0 +6.394666666666667,5,a-phya-i1,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,602,301.0 +6.037333333333334,5,a-phya-i1,2017-18,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,368,368.0 +5.914666666666666,5,a-phya-i1,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,391,391.0 +7.258666666666667,5,a-phya-i1,2017-18,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,139,139.0 +4.768,4.77,a-phya-i1,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1212,606.0 +6.138181818181819,5,a-phya-i1,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,384,349.09090909090907 +1,1,a-phya-i1,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61 +2.6572549019607843,2.66,a-phya-i1,2017-18,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.1, 0.0, 1.7,1703,1001.7647058823529 +5.178181818181819,5,a-phya-i1,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,582,529.090909090909 +-1.8133333333333332,1,a-phya-i1,2017-18,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,184,1840.0 +5.77939393939394,5,a-phya-i1,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,458,416.3636363636363 +5.658181818181818,5,a-phya-i1,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,483,439.09090909090907 +5.963636363636364,5,a-phya-i1,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,420,381.8181818181818 +4.78060606060606,4.78,a-phya-i1,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,664,603.6363636363636 +5.900606060606061,5,a-phya-i1,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,433,393.6363636363636 +5.207272727272727,5,a-phya-i1,2017-18,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,576,523.6363636363636 +4.629333333333333,4.63,a-phya-i1,2017-18,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,632,632.0 +3.728,3.73,a-phya-i1,2017-18,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,801,801.0 +6.405333333333333,5,a-phya-i1,2017-18,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +6.394666666666667,5,a-phya-i1,2017-18,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +6.461333333333333,5,a-phya-i1,2017-18,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,577,288.5 +6.336,5,a-phya-i1,2017-18,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,312,312.0 +5.792,5,a-phya-i1,2017-18,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,414,414.0 +5.818666666666667,5,a-phya-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,409,409.0 +6.026666666666666,5,a-phya-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,370,370.0 +5.866666666666666,5,a-phya-i1,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,400,400.0 +5.189333333333333,5,a-phya-i1,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,527,527.0 +4.905,4.91,a-phya-i1,2017-18,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.2, 3.2,1857,580.3125 +6.034666666666666,5,a-phya-i1,2017-18,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,737,368.5 +5.714666666666667,5,a-phya-i1,2017-18,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,857,428.5 +6.618666666666667,5,a-phya-i1,2017-18,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,259,259.0 +7.28,5,a-phya-i1,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,135,135.0 +6.218666666666667,5,a-phya-i1,2017-18,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 +6.613333333333333,5,a-phya-i1,2017-18,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,260,260.0 +5.701333333333333,5,a-phya-i1,2017-18,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,431,431.0 +6.362666666666667,5,a-phya-i1,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,307,307.0 +5.626666666666667,5,a-phya-i1,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,445,445.0 +1,1,a-phya-i1,2017-18,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858 +1,1,a-phya-i1,2017-18,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583 +1,1,a-phya-i1,2017-18,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,597 +1,1,a-phya-i1,2017-18,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609 +6.104,5,a-phya-i1,2017-18,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,711,355.5 +5.889523809523809,5,a-phya-i1,2017-18,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,554,395.7142857142857 +6.970666666666666,5,a-phya-i1,2017-18,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,193,193.0 +5.8773333333333335,5,a-phya-i1,2017-18,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +6.22095238095238,5,a-phya-i1,2017-18,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,467,333.5714285714286 +7.413333333333333,5,a-phya-i1,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,110,110.0 +3.9306666666666668,3.93,a-phya-i1,2017-18,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,763,763.0 +4.165333333333334,4.17,a-phya-i1,2017-18,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,719,719.0 +1,1,a-phya-i1,2017-18,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34 +6.213333333333333,5,a-phya-i1,2017-18,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +6.282666666666667,5,a-phya-i1,2017-18,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,322,322.0 +4.165925925925926,4.17,a-phya-i1,2017-18,Belmont - Belmont High,00260505, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 1.0, 1.8,1294,718.8888888888889 +5.930666666666666,5,a-phya-i1,2017-18,Belmont - Daniel Butler,00260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +6.005333333333334,5,a-phya-i1,2017-18,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,374,374.0 +5.619047619047619,5,a-phya-i1,2017-18,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,625,446.42857142857144 +5.386666666666667,5,a-phya-i1,2017-18,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,490,490.0 +4.210666666666667,4.21,a-phya-i1,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 0.2, 1.0, 0.0, 0.6, 0.2, 0.0, 2.0,1421,710.5 +6.112,5,a-phya-i1,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,354,354.0 +5.852121212121212,5,a-phya-i1,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 1.1,443,402.7272727272727 +4.842666666666666,4.84,a-phya-i1,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,296,592.0 +2.3573333333333335,2.36,a-phya-i1,2017-18,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,529,1058.0 +3.8293333333333335,3.83,a-phya-i1,2017-18,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,391,782.0 +6.112,5,a-phya-i1,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,354,354.0 +5.210666666666667,5,a-phya-i1,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,523,523.0 +6.005333333333334,5,a-phya-i1,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,374,374.0 +6.144,5,a-phya-i1,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,348,348.0 +7.024,5,a-phya-i1,2017-18,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +4.832,4.83,a-phya-i1,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,594,594.0 +5.328,5,a-phya-i1,2017-18,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,501,501.0 +4.682666666666667,4.68,a-phya-i1,2017-18,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1244,622.0 +2.6826666666666665,2.68,a-phya-i1,2017-18,Beverly - Briscoe Middle,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,997,997.0 +6.069333333333334,5,a-phya-i1,2017-18,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,362,362.0 +1,1,a-phya-i1,2017-18,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492 +5.914666666666666,5,a-phya-i1,2017-18,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +7.392,5,a-phya-i1,2017-18,Beverly - McKeown School,00300002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,114,114.0 +5.872,5,a-phya-i1,2017-18,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,399,399.0 +4.426666666666667,4.43,a-phya-i1,2017-18,Billerica - Billerica Memorial High School,00310505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1340,670.0 +1,1,a-phya-i1,2017-18,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195 +6.544,5,a-phya-i1,2017-18,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +5.536,5,a-phya-i1,2017-18,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,462,462.0 +6.330666666666667,5,a-phya-i1,2017-18,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 +5.301333333333333,5,a-phya-i1,2017-18,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,506,506.0 +6.261333333333333,5,a-phya-i1,2017-18,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,652,326.0 +5.322666666666667,5,a-phya-i1,2017-18,Billerica - Parker,00310015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 +5.141333333333334,5,a-phya-i1,2017-18,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,536,536.0 +1,1,a-phya-i1,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1223 +4.810666666666667,4.81,a-phya-i1,2017-18,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,299,598.0 +5.8293333333333335,5,a-phya-i1,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,407,407.0 +5.728,5,a-phya-i1,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,426,426.0 +1,1,a-phya-i1,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296 +6.48,5,a-phya-i1,2017-18,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,285,285.0 +3.445333333333333,3.45,a-phya-i1,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,854,854.0 +6.8053333333333335,5,a-phya-i1,2017-18,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,224,224.0 +7.077333333333334,5,a-phya-i1,2017-18,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,173,173.0 +6.272,5,a-phya-i1,2017-18,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +6.466666666666667,5,a-phya-i1,2017-18,Boston - Blackstone,00350390, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,575,287.5 +1,1,a-phya-i1,2017-18,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154 +1,1,a-phya-i1,2017-18,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469 +1,1,a-phya-i1,2017-18,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182 +5.472,5,a-phya-i1,2017-18,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,474,474.0 +6.048,5,a-phya-i1,2017-18,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +3.639111111111111,3.64,a-phya-i1,2017-18,Boston - Boston Latin,00350560, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,2453,817.6666666666666 +3.2506666666666666,3.25,a-phya-i1,2017-18,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1781,890.5 +6.469333333333333,5,a-phya-i1,2017-18,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +6.181333333333333,5,a-phya-i1,2017-18,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,682,341.0 +7.922666666666666,5,a-phya-i1,2017-18,Boston - Carter Developmental Center,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,29,14.5 +5.189333333333333,5,a-phya-i1,2017-18,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,527,527.0 +4.9013333333333335,4.9,a-phya-i1,2017-18,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,581,581.0 +3.0933333333333333,3.09,a-phya-i1,2017-18,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,920,920.0 +6.368,5,a-phya-i1,2017-18,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +1,1,a-phya-i1,2017-18,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79 +5.925333333333334,5,a-phya-i1,2017-18,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,389,389.0 +5.482666666666667,5,a-phya-i1,2017-18,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,944,472.0 +6.426666666666667,5,a-phya-i1,2017-18,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,295,295.0 +1,1,a-phya-i1,2017-18,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92 +1,1,a-phya-i1,2017-18,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457 +6.112,5,a-phya-i1,2017-18,Boston - Dearborn,00350074, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +5.616,5,a-phya-i1,2017-18,Boston - Dennis C Haley,00350077, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +3.8506666666666667,3.85,a-phya-i1,2017-18,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,778,778.0 +1,1,a-phya-i1,2017-18,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42 +6.992,5,a-phya-i1,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +7.2462222222222215,5,a-phya-i1,2017-18,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 0.5, 0.5, 0.0, 0.5, 0.0, 1.5,212,141.33333333333334 +5.8453333333333335,5,a-phya-i1,2017-18,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.5, 0.5, 0.0, 0.5, 0.0, 1.5,606,404.0 +7.386666666666667,5,a-phya-i1,2017-18,Boston - ELC - West Zone,00350006, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,115,115.0 +6.949333333333334,5,a-phya-i1,2017-18,Boston - East Boston Early Childhood Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,197,197.0 +4.416,4.42,a-phya-i1,2017-18,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1344,672.0 +4.613333333333333,4.61,a-phya-i1,2017-18,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,635,635.0 +1,1,a-phya-i1,2017-18,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272 +4.613333333333333,4.61,a-phya-i1,2017-18,Boston - Eliot Elementary,00350096, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,635,635.0 +1,1,a-phya-i1,2017-18,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267 +5.381333333333333,5,a-phya-i1,2017-18,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +6.058666666666666,5,a-phya-i1,2017-18,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,364,364.0 +5.584,5,a-phya-i1,2017-18,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,453,453.0 +5.8613333333333335,5,a-phya-i1,2017-18,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +6.8693333333333335,5,a-phya-i1,2017-18,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,212,212.0 +1,1,a-phya-i1,2017-18,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105 +5.477333333333333,5,a-phya-i1,2017-18,Boston - Harvard-Kent,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,473,473.0 +1,1,a-phya-i1,2017-18,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212 +6.645333333333333,5,a-phya-i1,2017-18,Boston - Henry Grew,00350135, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,254,254.0 +7.088,5,a-phya-i1,2017-18,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,171,171.0 +6.357333333333333,5,a-phya-i1,2017-18,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +7.552,5,a-phya-i1,2017-18,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,84,84.0 +6.682666666666667,5,a-phya-i1,2017-18,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +4.501333333333333,4.5,a-phya-i1,2017-18,Boston - Jackson Mann,00350013, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,656,656.0 +6.391111111111111,5,a-phya-i1,2017-18,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,905,301.6666666666667 +6.368,5,a-phya-i1,2017-18,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +1,1,a-phya-i1,2017-18,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405 +6.234666666666667,5,a-phya-i1,2017-18,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,331,331.0 +4.896,4.9,a-phya-i1,2017-18,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +5.482666666666667,5,a-phya-i1,2017-18,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,472,472.0 +1,1,a-phya-i1,2017-18,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163 +5.9093333333333335,5,a-phya-i1,2017-18,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,392,392.0 +6.021333333333334,5,a-phya-i1,2017-18,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,371,371.0 +1,1,a-phya-i1,2017-18,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327 +6.08,5,a-phya-i1,2017-18,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +6.237333333333333,5,a-phya-i1,2017-18,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,661,330.5 +7.189333333333333,5,a-phya-i1,2017-18,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,152,152.0 +6.757333333333333,5,a-phya-i1,2017-18,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,233,233.0 +5.781333333333333,5,a-phya-i1,2017-18,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,832,416.0 +5.514666666666667,5,a-phya-i1,2017-18,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,466,466.0 +5.402666666666667,5,a-phya-i1,2017-18,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,487,487.0 +1,1,a-phya-i1,2017-18,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223 +5.365333333333333,5,a-phya-i1,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,494,494.0 +4.896,4.9,a-phya-i1,2017-18,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +7.301333333333333,5,a-phya-i1,2017-18,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,131,131.0 +1,1,a-phya-i1,2017-18,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,124 +5.709333333333333,5,a-phya-i1,2017-18,Boston - Madison Park High,00350537, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,859,429.5 +1,1,a-phya-i1,2017-18,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295 +6.410666666666667,5,a-phya-i1,2017-18,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,298,298.0 +5.322666666666667,5,a-phya-i1,2017-18,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1004,502.0 +4.757333333333333,4.76,a-phya-i1,2017-18,Boston - Mather,00350227, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,608,608.0 +6.453333333333333,5,a-phya-i1,2017-18,Boston - Mattapan Early Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,290,290.0 +5.712,5,a-phya-i1,2017-18,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +6.8373333333333335,5,a-phya-i1,2017-18,Boston - Michael J Perkins,00350231, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 +5.066666666666666,5,a-phya-i1,2017-18,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,550,550.0 +1,1,a-phya-i1,2017-18,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241 +1,1,a-phya-i1,2017-18,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179 +1,1,a-phya-i1,2017-18,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158 +1,1,a-phya-i1,2017-18,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392 +6.149333333333334,5,a-phya-i1,2017-18,Boston - O W Holmes,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,347,347.0 +-0.33066666666666666,1,a-phya-i1,2017-18,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1562,1562.0 +1,1,a-phya-i1,2017-18,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220 +5.586666666666667,5,a-phya-i1,2017-18,Boston - Orchard Gardens,00350257, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,905,452.5 +6.373333333333333,5,a-phya-i1,2017-18,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,305,305.0 +6.101333333333334,5,a-phya-i1,2017-18,Boston - Paul A Dever,00350268, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +1,1,a-phya-i1,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256 +6.602666666666667,5,a-phya-i1,2017-18,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,262,262.0 +6.648,5,a-phya-i1,2017-18,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,507,253.5 +5.925333333333334,5,a-phya-i1,2017-18,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,389,389.0 +5.490666666666667,5,a-phya-i1,2017-18,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,941,470.5 +1,1,a-phya-i1,2017-18,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157 +1,1,a-phya-i1,2017-18,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291 +6.709333333333333,5,a-phya-i1,2017-18,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,242,242.0 +5.856,5,a-phya-i1,2017-18,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +5.632,5,a-phya-i1,2017-18,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,444,444.0 +5.554666666666667,5,a-phya-i1,2017-18,Boston - TechBoston Academy,00350657, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,917,458.5 +5.604444444444444,5,a-phya-i1,2017-18,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 1.2,539,449.1666666666667 +1,1,a-phya-i1,2017-18,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325 +1,1,a-phya-i1,2017-18,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,762 +1,1,a-phya-i1,2017-18,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392 +1,1,a-phya-i1,2017-18,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602 +6.288,5,a-phya-i1,2017-18,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,321,321.0 +5.466666666666667,5,a-phya-i1,2017-18,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,475,475.0 +5.824,5,a-phya-i1,2017-18,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,408,408.0 +1,1,a-phya-i1,2017-18,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216 +4.544,4.54,a-phya-i1,2017-18,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,648,648.0 +7.368888888888888,5,a-phya-i1,2017-18,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,355,118.33333333333333 +5.2,5,a-phya-i1,2017-18,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,525,525.0 +1,1,a-phya-i1,2017-18,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221 +6.493333333333333,5,a-phya-i1,2017-18,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,565,282.5 +6.133333333333334,5,a-phya-i1,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,700,350.0 +3.6906666666666665,3.69,a-phya-i1,2017-18,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, 0.5, 0.0, 0.5,404,808.0 +1,1,a-phya-i1,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471 +1,1,a-phya-i1,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463 +2.997333333333333,3.0,a-phya-i1,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,938,938.0 +5.44,5,a-phya-i1,2017-18,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,480,480.0 +4.357333333333333,4.36,a-phya-i1,2017-18,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,683,683.0 +5.605333333333333,5,a-phya-i1,2017-18,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,449,449.0 +6.192,5,a-phya-i1,2017-18,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 +6.234666666666667,5,a-phya-i1,2017-18,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,331,331.0 +5.930666666666666,5,a-phya-i1,2017-18,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +6.405333333333333,5,a-phya-i1,2017-18,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,299,299.0 +5.770666666666667,5,a-phya-i1,2017-18,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,418,418.0 +5.331851851851852,5,a-phya-i1,2017-18,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.6, 0.0, 3.0, 0.0, 3.6,1801,500.27777777777777 +6.48,5,a-phya-i1,2017-18,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,285,285.0 +1.644444444444444,1.64,a-phya-i1,2017-18,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,715,1191.6666666666667 +5.738666666666667,5,a-phya-i1,2017-18,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +5.696,5,a-phya-i1,2017-18,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +5.546666666666667,5,a-phya-i1,2017-18,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,460,460.0 +5.989333333333334,5,a-phya-i1,2017-18,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,377,377.0 +6.666666666666667,5,a-phya-i1,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,250,250.0 +6.385454545454546,5,a-phya-i1,2017-18,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 1.6, 0.6, 0.0, 0.0, 2.2,666,302.7272727272727 +6.709333333333333,5,a-phya-i1,2017-18,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,242,242.0 +6.752,5,a-phya-i1,2017-18,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,234,234.0 +6.357333333333333,5,a-phya-i1,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +5.28,5,a-phya-i1,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,510,510.0 +4.0986666666666665,4.1,a-phya-i1,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1463,731.5 +5.386666666666667,5,a-phya-i1,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,490,490.0 +6.346666666666667,5,a-phya-i1,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +6.158222222222222,5,a-phya-i1,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,1036,345.3333333333333 +4.464,4.46,a-phya-i1,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,663,663.0 +1,1,a-phya-i1,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16 +3.728,3.73,a-phya-i1,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,801,801.0 +6.474666666666667,5,a-phya-i1,2017-18,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,286,286.0 +5.568,5,a-phya-i1,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,456,456.0 +3.74,3.74,a-phya-i1,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.3, 1.0, 0.3, 0.0, 1.6,1278,798.75 +5.312,5,a-phya-i1,2017-18,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 +1,1,a-phya-i1,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237 +7.061333333333334,5,a-phya-i1,2017-18,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,176,176.0 +-5.743333333333333,1,a-phya-i1,2017-18,Brockton - Brockton High,00440505, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 0.0, 1.6,4123,2576.875 +4.549333333333333,4.55,a-phya-i1,2017-18,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,647,647.0 +4.645333333333333,4.65,a-phya-i1,2017-18,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,629,629.0 +1,1,a-phya-i1,2017-18,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736 +1,1,a-phya-i1,2017-18,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,481 +2.5493333333333332,2.55,a-phya-i1,2017-18,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1022,1022.0 +2.7733333333333334,2.77,a-phya-i1,2017-18,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,196,980.0 +1,1,a-phya-i1,2017-18,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34 +5.024,5,a-phya-i1,2017-18,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,558,558.0 +4.485333333333333,4.49,a-phya-i1,2017-18,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,659,659.0 +1,1,a-phya-i1,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58 +4.8693333333333335,4.87,a-phya-i1,2017-18,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,587,587.0 +4.341333333333333,4.34,a-phya-i1,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,686,686.0 +-1.7706666666666666,1,a-phya-i1,2017-18,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,916,1832.0 +4.728888888888888,4.73,a-phya-i1,2017-18,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,920,613.3333333333334 +5.712280701754386,5,a-phya-i1,2017-18,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 1.0, 1.9,815,428.94736842105266 +4.645333333333333,4.65,a-phya-i1,2017-18,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,629,629.0 +4.757333333333333,4.76,a-phya-i1,2017-18,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,912,608.0 +5.392,5,a-phya-i1,2017-18,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,489,489.0 +4.225185185185185,4.23,a-phya-i1,2017-18,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,637,707.7777777777777 +4.913777777777778,4.91,a-phya-i1,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0,1736,578.6666666666666 +6.341333333333333,5,a-phya-i1,2017-18,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,311,311.0 +1,1,a-phya-i1,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60 +1,1,a-phya-i1,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60 +4.4215053763440855,4.42,a-phya-i1,2017-18,Brookline - Brookline High,00460505, 0.0, 1.0, 0.7, 1.0, 0.0, 0.0, 0.4, 3.1,2080,670.9677419354839 +5.46,5,a-phya-i1,2017-18,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,762,476.25 +6.22,5,a-phya-i1,2017-18,Brookline - Edward Devotion,00460015, 0.0, 0.0, 1.0, 0.0, 0.4, 1.0, 0.0, 2.4,801,333.75 +4.986666666666666,4.99,a-phya-i1,2017-18,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,565,565.0 +1,1,a-phya-i1,2017-18,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,627 +4.149333333333334,4.15,a-phya-i1,2017-18,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,722,722.0 +4.645333333333333,4.65,a-phya-i1,2017-18,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,629,629.0 +6.472888888888889,5,a-phya-i1,2017-18,Brookline - Pierce,00460040, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,859,286.3333333333333 +7.656296296296297,5,a-phya-i1,2017-18,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,58,64.44444444444444 +6.458666666666667,5,a-phya-i1,2017-18,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,578,289.0 +6.108444444444444,5,a-phya-i1,2017-18,Burlington - Burlington High,00480505, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,1064,354.6666666666667 +5.872,5,a-phya-i1,2017-18,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,399,399.0 +6.562666666666667,5,a-phya-i1,2017-18,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,539,269.5 +3.728,3.73,a-phya-i1,2017-18,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,801,801.0 +5.8293333333333335,5,a-phya-i1,2017-18,Burlington - Memorial,00480015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,407,407.0 +6.346666666666667,5,a-phya-i1,2017-18,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +1,1,a-phya-i1,2017-18,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397 +1,1,a-phya-i1,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1965 +1,1,a-phya-i1,2017-18,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248 +1,1,a-phya-i1,2017-18,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342 +1,1,a-phya-i1,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296 +1,1,a-phya-i1,2017-18,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362 +1,1,a-phya-i1,2017-18,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257 +1,1,a-phya-i1,2017-18,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +1,1,a-phya-i1,2017-18,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +1,1,a-phya-i1,2017-18,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329 +1,1,a-phya-i1,2017-18,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,364 +1,1,a-phya-i1,2017-18,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328 +1,1,a-phya-i1,2017-18,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306 +1,1,a-phya-i1,2017-18,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323 +1,1,a-phya-i1,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263 +1,1,a-phya-i1,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267 +1,1,a-phya-i1,2017-18,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281 +5.090370370370371,5,a-phya-i1,2017-18,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,982,545.5555555555555 +5.338666666666667,5,a-phya-i1,2017-18,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,499,499.0 +5.173333333333333,5,a-phya-i1,2017-18,Canton - John F Kennedy,00500017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,530,530.0 +6.051282051282052,5,a-phya-i1,2017-18,Canton - Lt Peter M Hansen,00500012, 0.0, 1.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.3,475,365.38461538461536 +7.530666666666667,5,a-phya-i1,2017-18,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,88,88.0 +5.383111111111111,5,a-phya-i1,2017-18,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,736,490.6666666666667 +1.5466666666666666,1.55,a-phya-i1,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,242,1210.0 +4.8533333333333335,4.85,a-phya-i1,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,590,590.0 +6.204444444444444,5,a-phya-i1,2017-18,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,606,336.6666666666667 +6.606222222222223,5,a-phya-i1,2017-18,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,784,261.3333333333333 +1,1,a-phya-i1,2017-18,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,792 +7.333333333333333,5,a-phya-i1,2017-18,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,125,125.0 +5.802666666666667,5,a-phya-i1,2017-18,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,412,412.0 +7.2,5,a-phya-i1,2017-18,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,150,150.0 +5.968,5,a-phya-i1,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +5.1466666666666665,5,a-phya-i1,2017-18,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,535,535.0 +6.650666666666667,5,a-phya-i1,2017-18,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,506,253.0 +5.594666666666667,5,a-phya-i1,2017-18,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,451,451.0 +5.365333333333333,5,a-phya-i1,2017-18,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,494,494.0 +4.056,4.06,a-phya-i1,2017-18,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1479,739.5 +1,1,a-phya-i1,2017-18,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715 +1,1,a-phya-i1,2017-18,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,132 +3.648,3.65,a-phya-i1,2017-18,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,816,816.0 +3.7226666666666666,3.72,a-phya-i1,2017-18,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,401,802.0 +3.8986666666666667,3.9,a-phya-i1,2017-18,Chelsea - Chelsea High,00570505, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1538,769.0 +5.045333333333334,5,a-phya-i1,2017-18,Chelsea - Clark Avenue School,00570050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,554,554.0 +4.8533333333333335,4.85,a-phya-i1,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,590,590.0 +2.2933333333333334,2.29,a-phya-i1,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,535,1070.0 +1,1,a-phya-i1,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568 +5.082666666666666,5,a-phya-i1,2017-18,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,547,547.0 +6.688,5,a-phya-i1,2017-18,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.5, 1.0, 1.0, 0.0, 0.0, 2.5,615,246.0 +3.3653333333333335,3.37,a-phya-i1,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,869,869.0 +5.28,5,a-phya-i1,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,510,510.0 +7.093333333333334,5,a-phya-i1,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,136,170.0 +5.872,5,a-phya-i1,2017-18,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +6.554666666666667,5,a-phya-i1,2017-18,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,271,271.0 +5.874666666666666,5,a-phya-i1,2017-18,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,797,398.5 +5.450666666666667,5,a-phya-i1,2017-18,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,478,478.0 +6.224,5,a-phya-i1,2017-18,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +7.781333333333333,5,a-phya-i1,2017-18,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,82,41.0 +4.36,4.36,a-phya-i1,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1365,682.5 +7.155555555555555,5,a-phya-i1,2017-18,Chicopee - Chicopee High,00610505, 0.0, 0.0, 2.0, 3.0, 0.0, 1.0, 0.0, 6.0,950,158.33333333333334 +6.666666666666667,5,a-phya-i1,2017-18,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,750,250.0 +5.541333333333333,5,a-phya-i1,2017-18,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 +5.850666666666666,5,a-phya-i1,2017-18,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +6.309333333333333,5,a-phya-i1,2017-18,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,317,317.0 +5.770666666666667,5,a-phya-i1,2017-18,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.512,5,a-phya-i1,2017-18,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,279,279.0 +6.714666666666667,5,a-phya-i1,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,241,241.0 +1,1,a-phya-i1,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395 +4.981333333333334,4.98,a-phya-i1,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,283,566.0 +5.0986666666666665,5,a-phya-i1,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,272,544.0 +1.7066666666666668,1.71,a-phya-i1,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,236,1180.0 +2.8533333333333335,2.85,a-phya-i1,2017-18,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,193,965.0 +4.373333333333333,4.37,a-phya-i1,2017-18,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,680,680.0 +4.021333333333334,4.02,a-phya-i1,2017-18,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,746,746.0 +5.562666666666667,5,a-phya-i1,2017-18,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +4.32,4.32,a-phya-i1,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,345,690.0 +3.488,3.49,a-phya-i1,2017-18,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,846,846.0 +5.92,5,a-phya-i1,2017-18,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,390,390.0 +6.1546666666666665,5,a-phya-i1,2017-18,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,346,346.0 +3.952,3.95,a-phya-i1,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,759,759.0 +5.837037037037036,5,a-phya-i1,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,365,405.55555555555554 +1,1,a-phya-i1,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320 +1,1,a-phya-i1,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400 +1,1,a-phya-i1,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320 +5.381333333333333,5,a-phya-i1,2017-18,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,491,491.0 +6.064,5,a-phya-i1,2017-18,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,726,363.0 +5.562666666666667,5,a-phya-i1,2017-18,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +5.658666666666667,5,a-phya-i1,2017-18,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,439,439.0 +3.756666666666667,3.76,a-phya-i1,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 1.6,1273,795.625 +5.6,5,a-phya-i1,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,450,450.0 +7.264,5,a-phya-i1,2017-18,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,138,138.0 +5.490666666666667,5,a-phya-i1,2017-18,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,941,470.5 +5.978666666666666,5,a-phya-i1,2017-18,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,379,379.0 +6.010666666666666,5,a-phya-i1,2017-18,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,373,373.0 +5.802666666666667,5,a-phya-i1,2017-18,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,824,412.0 +6.490666666666667,5,a-phya-i1,2017-18,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,283,283.0 +6.112,5,a-phya-i1,2017-18,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +6.346666666666667,5,a-phya-i1,2017-18,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +7.253333333333333,5,a-phya-i1,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,140,140.0 +2.2826666666666666,2.28,a-phya-i1,2017-18,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1072,1072.0 +6.282666666666667,5,a-phya-i1,2017-18,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,966,322.0 +5.706666666666667,5,a-phya-i1,2017-18,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,430,430.0 +4.618666666666667,4.62,a-phya-i1,2017-18,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,634,634.0 +1,1,a-phya-i1,2017-18,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432 +4.576,4.58,a-phya-i1,2017-18,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,321,642.0 +4.085333333333334,4.09,a-phya-i1,2017-18,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,734,734.0 +4.784,4.78,a-phya-i1,2017-18,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,603,603.0 +5.12,5,a-phya-i1,2017-18,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,270,540.0 +5.1626666666666665,5,a-phya-i1,2017-18,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,266,532.0 +4.96,4.96,a-phya-i1,2017-18,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,285,570.0 +6.0906666666666665,5,a-phya-i1,2017-18,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,179,358.0 +5.8613333333333335,5,a-phya-i1,2017-18,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +2.512,2.51,a-phya-i1,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1029,1029.0 +6.1386666666666665,5,a-phya-i1,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,349,349.0 +6.549333333333333,5,a-phya-i1,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +1,1,a-phya-i1,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447 +5.1146666666666665,5,a-phya-i1,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,541,541.0 +5.776,5,a-phya-i1,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +4.472380952380952,4.47,a-phya-i1,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.5, 0.2, 0.0, 0.0, 0.0, 0.7,463,661.4285714285714 +5.013333333333334,5,a-phya-i1,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.7,392,560.0 +3.96,3.96,a-phya-i1,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,909,757.5 +5.408888888888889,5,a-phya-i1,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,583,485.83333333333337 +3.7866666666666666,3.79,a-phya-i1,2017-18,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.2, 0.0, 0.5, 0.0, 0.7,553,790.0 +6.0,5,a-phya-i1,2017-18,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 +5.962666666666666,5,a-phya-i1,2017-18,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +6.144,5,a-phya-i1,2017-18,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,348,348.0 +6.8053333333333335,5,a-phya-i1,2017-18,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,224,224.0 +5.376,5,a-phya-i1,2017-18,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,492,492.0 +4.453333333333333,4.45,a-phya-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,665,665.0 +5.189333333333333,5,a-phya-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,527,527.0 +5.562666666666667,5,a-phya-i1,2017-18,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,457,457.0 +5.027555555555556,5,a-phya-i1,2017-18,Dracut - Dracut Senior High,00790505, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,836,557.3333333333334 +5.253333333333333,5,a-phya-i1,2017-18,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,515,515.0 +6.432,5,a-phya-i1,2017-18,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,294,294.0 +4.949333333333334,4.95,a-phya-i1,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,572,572.0 +4.881777777777778,4.88,a-phya-i1,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,877,584.6666666666666 +1,1,a-phya-i1,2017-18,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, 0.0,284 +6.16,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +4.314666666666667,4.31,a-phya-i1,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,691,691.0 +5.914666666666666,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +4.938666666666666,4.94,a-phya-i1,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,574,574.0 +5.44,5,a-phya-i1,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,480,480.0 +1,1,a-phya-i1,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276 +1.7706666666666666,1.77,a-phya-i1,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1168,1168.0 +4.394666666666667,4.39,a-phya-i1,2017-18,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,676,676.0 +1,1,a-phya-i1,2017-18,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625 +2.384,2.38,a-phya-i1,2017-18,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1053,1053.0 +4.037333333333334,4.04,a-phya-i1,2017-18,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,743,743.0 +4.794666666666667,4.79,a-phya-i1,2017-18,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,601,601.0 +2.496,2.5,a-phya-i1,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1032,1032.0 +6.232,5,a-phya-i1,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,663,331.5 +4.464,4.46,a-phya-i1,2017-18,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,663,663.0 +3.546666666666667,3.55,a-phya-i1,2017-18,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,835,835.0 +6.496,5,a-phya-i1,2017-18,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,282,282.0 +4.912,4.91,a-phya-i1,2017-18,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,579,579.0 +6.437333333333333,5,a-phya-i1,2017-18,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +7.082666666666666,5,a-phya-i1,2017-18,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,172,172.0 +1,1,a-phya-i1,2017-18,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197 +1,1,a-phya-i1,2017-18,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466 +1,1,a-phya-i1,2017-18,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248 +1,1,a-phya-i1,2017-18,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,180 +1,1,a-phya-i1,2017-18,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450 +6.576,5,a-phya-i1,2017-18,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,267,267.0 +4.071111111111111,4.07,a-phya-i1,2017-18,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 1.2,884,736.6666666666667 +6.789333333333333,5,a-phya-i1,2017-18,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,227,227.0 +3.47047619047619,3.47,a-phya-i1,2017-18,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,1189,849.2857142857143 +6.298666666666667,5,a-phya-i1,2017-18,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,319,319.0 +3.946666666666667,3.95,a-phya-i1,2017-18,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,836,759.9999999999999 +6.181333333333333,5,a-phya-i1,2017-18,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +5.973333333333334,5,a-phya-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, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,380,380.0 +7.053333333333334,5,a-phya-i1,2017-18,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,142,177.5 +4.314666666666667,4.31,a-phya-i1,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1382,691.0 +6.213333333333333,5,a-phya-i1,2017-18,Everett - Adams School,00930003, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,201,335.0 +1,1,a-phya-i1,2017-18,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56 +2.712,2.71,a-phya-i1,2017-18,Everett - Everett High,00930505, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1983,991.5 +3.4026666666666667,3.4,a-phya-i1,2017-18,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,862,862.0 +5.602539682539682,5,a-phya-i1,2017-18,Everett - Lafayette School,00930038, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.0, 2.1,944,449.5238095238095 +3.562666666666667,3.56,a-phya-i1,2017-18,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,832,832.0 +3.546666666666667,3.55,a-phya-i1,2017-18,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,835,835.0 +4.709333333333333,4.71,a-phya-i1,2017-18,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,617,617.0 +1,1,a-phya-i1,2017-18,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738 +3.9928888888888885,3.99,a-phya-i1,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.5, 0.5, 0.0, 0.4, 0.1, 1.5,1127,751.3333333333334 +5.765333333333333,5,a-phya-i1,2017-18,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +4.512,4.51,a-phya-i1,2017-18,Fairhaven - Fairhaven High,00940505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,654,654.0 +5.504,5,a-phya-i1,2017-18,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +5.274666666666667,5,a-phya-i1,2017-18,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,511,511.0 +4.245333333333333,4.25,a-phya-i1,2017-18,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,2112,704.0 +6.029333333333334,5,a-phya-i1,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,739,369.5 +1,1,a-phya-i1,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1 +-3.5733333333333333,1,a-phya-i1,2017-18,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,651,2170.0 +1,1,a-phya-i1,2017-18,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315 +6.6,5,a-phya-i1,2017-18,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,525,262.5 +6.1688888888888895,5,a-phya-i1,2017-18,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,618,343.3333333333333 +6.649523809523809,5,a-phya-i1,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 1.5, 0.0, 1.0, 0.0, 2.8,709,253.21428571428572 +0.0,1,a-phya-i1,2017-18,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,750,1500.0 +5.912888888888889,5,a-phya-i1,2017-18,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,587,391.3333333333333 +-5.688888888888891,1,a-phya-i1,2017-18,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,770,2566.666666666667 +1,1,a-phya-i1,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,182 +6.448,5,a-phya-i1,2017-18,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,291,291.0 +7.110095238095238,5,a-phya-i1,2017-18,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 1.5, 0.0, 1.0, 0.0, 3.5,584,166.85714285714286 +1,1,a-phya-i1,2017-18,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39 +5.301333333333333,5,a-phya-i1,2017-18,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,506,506.0 +5.33688888888889,5,a-phya-i1,2017-18,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,749,499.3333333333333 +6.592,5,a-phya-i1,2017-18,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,264,264.0 +5.754666666666667,5,a-phya-i1,2017-18,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,842,421.0 +4.8053333333333335,4.81,a-phya-i1,2017-18,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,599,599.0 +5.04,5,a-phya-i1,2017-18,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,555,555.0 +5.685333333333333,5,a-phya-i1,2017-18,Falmouth - Mullen-Hall,00960020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,434,434.0 +6.293333333333333,5,a-phya-i1,2017-18,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,320,320.0 +6.053333333333334,5,a-phya-i1,2017-18,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,365,365.0 +7.354666666666667,5,a-phya-i1,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,121,121.0 +1,1,a-phya-i1,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590 +4.453333333333333,4.45,a-phya-i1,2017-18,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,665,665.0 +4.786666666666667,4.79,a-phya-i1,2017-18,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1205,602.5 +6.998518518518519,5,a-phya-i1,2017-18,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,169,187.77777777777777 +1,1,a-phya-i1,2017-18,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681 +6.112,5,a-phya-i1,2017-18,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,708,354.0 +6.817777777777779,5,a-phya-i1,2017-18,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,665,221.66666666666666 +5.78,5,a-phya-i1,2017-18,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,666,416.25 +7.573333333333333,5,a-phya-i1,2017-18,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,80,80.0 +5.632,5,a-phya-i1,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,222,444.0 +6.736,5,a-phya-i1,2017-18,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,237,237.0 +3.7013333333333334,3.7,a-phya-i1,2017-18,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,806,806.0 +4.788571428571428,4.79,a-phya-i1,2017-18,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,843,602.1428571428572 +6.309333333333333,5,a-phya-i1,2017-18,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,317,317.0 +5.904,5,a-phya-i1,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +5.0982716049382715,5,a-phya-i1,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 1.7, 1.0, 0.0, 2.7,1469,544.074074074074 +4.368,4.37,a-phya-i1,2017-18,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,681,681.0 +5.461333333333333,5,a-phya-i1,2017-18,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,476,476.0 +5.1466666666666665,5,a-phya-i1,2017-18,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,535,535.0 +5.488,5,a-phya-i1,2017-18,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,471,471.0 +5.097333333333333,5,a-phya-i1,2017-18,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.0, 1.8, 2.0, 0.2, 4.0,2177,544.25 +5.328,5,a-phya-i1,2017-18,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,501,501.0 +4.970666666666666,4.97,a-phya-i1,2017-18,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,568,568.0 +1,1,a-phya-i1,2017-18,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273 +6.490666666666667,5,a-phya-i1,2017-18,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,283,283.0 +6.032,5,a-phya-i1,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,369,369.0 +4.992,4.99,a-phya-i1,2017-18,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,564,564.0 +5.264,5,a-phya-i1,2017-18,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,513,513.0 +3.936,3.94,a-phya-i1,2017-18,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,762,762.0 +4.981333333333334,4.98,a-phya-i1,2017-18,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,566,566.0 +5.888,5,a-phya-i1,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,396,396.0 +3.2426666666666666,3.24,a-phya-i1,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,446,892.0 +6.768,5,a-phya-i1,2017-18,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,231,231.0 +7.445333333333333,5,a-phya-i1,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,104,104.0 +4.823111111111111,4.82,a-phya-i1,2017-18,Franklin - Franklin High,01010505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,1787,595.6666666666666 +6.570666666666667,5,a-phya-i1,2017-18,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,402,268.0 +5.525333333333333,5,a-phya-i1,2017-18,Franklin - Horace Mann,01010405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +6.042666666666666,5,a-phya-i1,2017-18,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +6.208,5,a-phya-i1,2017-18,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +5.92,5,a-phya-i1,2017-18,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,390,390.0 +6.277333333333333,5,a-phya-i1,2017-18,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,323,323.0 +5.648,5,a-phya-i1,2017-18,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,441,441.0 +5.402666666666667,5,a-phya-i1,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,487,487.0 +3.8666666666666667,3.87,a-phya-i1,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,775,775.0 +5.685333333333333,5,a-phya-i1,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,434,434.0 +5.802666666666667,5,a-phya-i1,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +3.989333333333333,3.99,a-phya-i1,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,752,752.0 +5.653333333333333,5,a-phya-i1,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,440,440.0 +4.677333333333333,4.68,a-phya-i1,2017-18,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +6.037333333333334,5,a-phya-i1,2017-18,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,552,368.0 +7.610666666666667,5,a-phya-i1,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,73,73.0 +5.546666666666667,5,a-phya-i1,2017-18,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,690,460.0 +5.104,5,a-phya-i1,2017-18,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,543,543.0 +6.752,5,a-phya-i1,2017-18,Gardner - Waterford Street,01030020, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,468,234.0 +7.365333333333333,5,a-phya-i1,2017-18,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,119,119.0 +5.706666666666667,5,a-phya-i1,2017-18,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,215,430.0 +5.888,5,a-phya-i1,2017-18,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,198,396.0 +1,1,a-phya-i1,2017-18,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299 +5.8613333333333335,5,a-phya-i1,2017-18,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 +1,1,a-phya-i1,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +4.314666666666667,4.31,a-phya-i1,2017-18,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,691,691.0 +7.354666666666667,5,a-phya-i1,2017-18,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,121,121.0 +7.285333333333333,5,a-phya-i1,2017-18,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,134,134.0 +5.386666666666667,5,a-phya-i1,2017-18,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,245,490.0 +7.136,5,a-phya-i1,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,162,162.0 +6.848,5,a-phya-i1,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,216,216.0 +5.664,5,a-phya-i1,2017-18,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,219,438.0 +1,1,a-phya-i1,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,509 +6.192,5,a-phya-i1,2017-18,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +6.8533333333333335,5,a-phya-i1,2017-18,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +5.872,5,a-phya-i1,2017-18,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.2, 0.0, 2.0,798,399.0 +7.429333333333333,5,a-phya-i1,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,107,107.0 +6.8693333333333335,5,a-phya-i1,2017-18,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,212,212.0 +6.213333333333333,5,a-phya-i1,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,670,335.0 +6.896,5,a-phya-i1,2017-18,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,207,207.0 +6.101333333333334,5,a-phya-i1,2017-18,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +1,1,a-phya-i1,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2 +5.0311111111111115,5,a-phya-i1,2017-18,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,835,556.6666666666666 +5.205333333333333,5,a-phya-i1,2017-18,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,524,524.0 +5.667555555555556,5,a-phya-i1,2017-18,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,656,437.3333333333333 +6.645333333333333,5,a-phya-i1,2017-18,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +4.8853333333333335,4.89,a-phya-i1,2017-18,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,584,584.0 +6.389333333333333,5,a-phya-i1,2017-18,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,302,302.0 +6.684444444444444,5,a-phya-i1,2017-18,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,148,246.66666666666669 +6.181333333333333,5,a-phya-i1,2017-18,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,341,341.0 +6.8693333333333335,5,a-phya-i1,2017-18,Granby - West Street,01110010, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,212,212.0 +4.272,4.27,a-phya-i1,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,1398,699.0 +-0.048,1,a-phya-i1,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,1509,1509.0 +3.9644444444444447,3.96,a-phya-i1,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,2270,756.6666666666666 +2.2586666666666666,2.26,a-phya-i1,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,2153,1076.5 +6.656,5,a-phya-i1,2017-18,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,252,252.0 +6.682666666666667,5,a-phya-i1,2017-18,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +5.536,5,a-phya-i1,2017-18,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,462,462.0 +5.978666666666666,5,a-phya-i1,2017-18,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,379,379.0 +6.709333333333333,5,a-phya-i1,2017-18,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,242,242.0 +7.376,5,a-phya-i1,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,117,117.0 +7.664,5,a-phya-i1,2017-18,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,63,63.0 +5.264,5,a-phya-i1,2017-18,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,513,513.0 +5.534117647058823,5,a-phya-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 0.0, 1.7,786,462.3529411764706 +5.96,5,a-phya-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,765,382.5 +6.453333333333333,5,a-phya-i1,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.469333333333333,5,a-phya-i1,2017-18,Hadley - Hadley Elementary,01170015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +6.709333333333333,5,a-phya-i1,2017-18,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 +4.816,4.82,a-phya-i1,2017-18,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,597,597.0 +5.258666666666667,5,a-phya-i1,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,257,514.0 +1,1,a-phya-i1,2017-18,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289 +4.266666666666667,4.27,a-phya-i1,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,560,700.0 +3.9146666666666667,3.91,a-phya-i1,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,383,766.0 +4.896,4.9,a-phya-i1,2017-18,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,291,582.0 +5.381333333333333,5,a-phya-i1,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +6.666666666666667,5,a-phya-i1,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 +6.149333333333334,5,a-phya-i1,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,347,347.0 +4.714074074074074,4.71,a-phya-i1,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,1109,616.1111111111111 +6.165333333333334,5,a-phya-i1,2017-18,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,344,344.0 +6.416,5,a-phya-i1,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +7.44,5,a-phya-i1,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,105,105.0 +4.757333333333333,4.76,a-phya-i1,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,608,608.0 +6.442222222222221,5,a-phya-i1,2017-18,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.4, 1.0, 0.0, 0.0, 0.0, 2.4,701,292.08333333333337 +1,1,a-phya-i1,2017-18,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42 +5.792,5,a-phya-i1,2017-18,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,414,414.0 +6.213333333333333,5,a-phya-i1,2017-18,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,335,335.0 +3.728,3.73,a-phya-i1,2017-18,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,801,801.0 +3.568,3.57,a-phya-i1,2017-18,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,831,831.0 +6.778666666666667,5,a-phya-i1,2017-18,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,229,229.0 +5.088888888888889,5,a-phya-i1,2017-18,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,655,545.8333333333334 +5.653333333333333,5,a-phya-i1,2017-18,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,440,440.0 +6.682666666666667,5,a-phya-i1,2017-18,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +6.992,5,a-phya-i1,2017-18,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,189,189.0 +1,1,a-phya-i1,2017-18,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316 +5.261333333333333,5,a-phya-i1,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1027,513.5 +7.429333333333333,5,a-phya-i1,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,107,107.0 +4.529777777777778,4.53,a-phya-i1,2017-18,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,976,650.6666666666666 +7.482666666666667,5,a-phya-i1,2017-18,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,97,97.0 +5.333333333333333,5,a-phya-i1,2017-18,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,500,500.0 +1,1,a-phya-i1,2017-18,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497 +7.424,5,a-phya-i1,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,108,108.0 +1,1,a-phya-i1,2017-18,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46 +3.1173333333333333,3.12,a-phya-i1,2017-18,Haverhill - Haverhill High,01280505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1831,915.5 +0.7733333333333333,1,a-phya-i1,2017-18,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,542,1355.0 +6.8213333333333335,5,a-phya-i1,2017-18,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,221,221.0 +1,1,a-phya-i1,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504 +1,1,a-phya-i1,2017-18,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50 +1,1,a-phya-i1,2017-18,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537 +1,1,a-phya-i1,2017-18,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140 +6.913333333333333,5,a-phya-i1,2017-18,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,163,203.75 +6.858666666666666,5,a-phya-i1,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,214,214.0 +6.384,5,a-phya-i1,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,303,303.0 +6.8373333333333335,5,a-phya-i1,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,218,218.0 +5.189333333333333,5,a-phya-i1,2017-18,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,527,527.0 +4.650666666666667,4.65,a-phya-i1,2017-18,Hingham - Hingham High,01310505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1256,628.0 +5.133333333333334,5,a-phya-i1,2017-18,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1075,537.5 +5.504,5,a-phya-i1,2017-18,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,468,468.0 +5.189333333333333,5,a-phya-i1,2017-18,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,527,527.0 +5.621333333333333,5,a-phya-i1,2017-18,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,446,446.0 +2.764444444444444,2.76,a-phya-i1,2017-18,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,589,981.6666666666667 +2.435555555555555,2.44,a-phya-i1,2017-18,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.1, 0.0, 0.6,626,1043.3333333333335 +6.757333333333333,5,a-phya-i1,2017-18,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,233,233.0 +3.7493333333333334,3.75,a-phya-i1,2017-18,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,797,797.0 +4.346666666666667,4.35,a-phya-i1,2017-18,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,685,685.0 +4.021333333333334,4.02,a-phya-i1,2017-18,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,746,746.0 +4.389333333333333,4.39,a-phya-i1,2017-18,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,677,677.0 +6.5125925925925925,5,a-phya-i1,2017-18,Holyoke - E N White Elementary,01370045, 0.0, 0.8, 0.0, 0.0, 0.0, 1.0, 0.0, 1.8,502,278.88888888888886 +7.258666666666667,5,a-phya-i1,2017-18,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,278,139.0 +4.448,4.45,a-phya-i1,2017-18,Holyoke - Holyoke High,01370505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1332,666.0 +6.618666666666667,5,a-phya-i1,2017-18,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,259,259.0 +5.002666666666666,5,a-phya-i1,2017-18,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,562,562.0 +6.557333333333333,5,a-phya-i1,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,541,270.5 +1,1,a-phya-i1,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419 +5.536,5,a-phya-i1,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,462,462.0 +5.781333333333333,5,a-phya-i1,2017-18,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,416,416.0 +1,1,a-phya-i1,2017-18,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339 +7.024,5,a-phya-i1,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +4.256,4.26,a-phya-i1,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,702,702.0 +2.6133333333333333,2.61,a-phya-i1,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,505,1010.0 +2.1866666666666665,2.19,a-phya-i1,2017-18,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,545,1090.0 +6.8933333333333335,5,a-phya-i1,2017-18,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,83,207.5 +5.557333333333333,5,a-phya-i1,2017-18,Hopkinton - Center,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,458,458.0 +5.328,5,a-phya-i1,2017-18,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,501,501.0 +5.12,5,a-phya-i1,2017-18,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,540,540.0 +1.84,1.84,a-phya-i1,2017-18,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1155,1155.0 +5.137777777777778,5,a-phya-i1,2017-18,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,805,536.6666666666666 +1,1,a-phya-i1,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,59 +5.541333333333333,5,a-phya-i1,2017-18,Hudson - C A Farley,01410030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 +6.269333333333333,5,a-phya-i1,2017-18,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,649,324.5 +6.112,5,a-phya-i1,2017-18,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +5.512,5,a-phya-i1,2017-18,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,933,466.5 +6.741333333333333,5,a-phya-i1,2017-18,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,236,236.0 +6.432,5,a-phya-i1,2017-18,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,294,294.0 +5.8133333333333335,5,a-phya-i1,2017-18,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,410,410.0 +6.997333333333334,5,a-phya-i1,2017-18,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,188,188.0 +-13.386666666666667,1,a-phya-i1,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,802,4010.0 +-1.1733333333333333,1,a-phya-i1,2017-18,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,516,1720.0 +5.066666666666666,5,a-phya-i1,2017-18,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,440,550.0 +4.435555555555555,4.44,a-phya-i1,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,401,668.3333333333334 +6.656,5,a-phya-i1,2017-18,Ipswich - Winthrop,01440015, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,378,252.0 +5.71076923076923,5,a-phya-i1,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,558,429.2307692307692 +3.249777777777778,3.25,a-phya-i1,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,1336,890.6666666666666 +3.614814814814815,3.61,a-phya-i1,2017-18,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.4, 0.5, 0.0, 0.9,740,822.2222222222222 +1.0666666666666667,1.07,a-phya-i1,2017-18,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1300,1300.0 +5.594666666666667,5,a-phya-i1,2017-18,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +4.944,4.94,a-phya-i1,2017-18,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,573,573.0 +6.88,5,a-phya-i1,2017-18,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,210,210.0 +5.493333333333333,5,a-phya-i1,2017-18,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,517,469.99999999999994 +5.158787878787879,5,a-phya-i1,2017-18,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,586,532.7272727272726 +5.153939393939394,5,a-phya-i1,2017-18,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,587,533.6363636363636 +4.96969696969697,4.97,a-phya-i1,2017-18,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,625,568.1818181818181 +4.606060606060606,4.61,a-phya-i1,2017-18,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,700,636.3636363636363 +6.684444444444445,5,a-phya-i1,2017-18,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.1,518,246.66666666666666 +5.541818181818181,5,a-phya-i1,2017-18,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,507,460.9090909090909 +5.507878787878788,5,a-phya-i1,2017-18,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,514,467.27272727272725 +5.643636363636364,5,a-phya-i1,2017-18,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,486,441.81818181818176 +7.093333333333334,5,a-phya-i1,2017-18,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,187,170.0 +6.317575757575757,5,a-phya-i1,2017-18,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,347,315.45454545454544 +6.375757575757576,5,a-phya-i1,2017-18,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,335,304.5454545454545 +6.414545454545455,5,a-phya-i1,2017-18,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,327,297.27272727272725 +7.209696969696971,5,a-phya-i1,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,163,148.18181818181816 +6.972121212121212,5,a-phya-i1,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,212,192.72727272727272 +3.7021138211382114,3.7,a-phya-i1,2017-18,Lawrence - Lawrence High School,01490515, 0.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.1,3304,805.8536585365854 +5.832727272727273,5,a-phya-i1,2017-18,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,447,406.3636363636363 +5.1830303030303035,5,a-phya-i1,2017-18,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,581,528.1818181818181 +1.3333333333333333,1.33,a-phya-i1,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,125,1250.0 +5.13939393939394,5,a-phya-i1,2017-18,Lawrence - Robert Frost,01490018, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,590,536.3636363636364 +7.078787878787879,5,a-phya-i1,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,190,172.72727272727272 +7.2727272727272725,5,a-phya-i1,2017-18,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,150,136.36363636363635 +4.373333333333333,4.37,a-phya-i1,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,748,680.0 +5.76969696969697,5,a-phya-i1,2017-18,Lawrence - Spark Academy,01490085, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,460,418.18181818181813 +6.56,5,a-phya-i1,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,297,270.0 +-10.293333333333333,1,a-phya-i1,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,343,3430.0 +4.069333333333334,4.07,a-phya-i1,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,737,737.0 +6.1706666666666665,5,a-phya-i1,2017-18,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,343,343.0 +6.1386666666666665,5,a-phya-i1,2017-18,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,349,349.0 +5.541333333333333,5,a-phya-i1,2017-18,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +6.224,5,a-phya-i1,2017-18,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +5.802666666666667,5,a-phya-i1,2017-18,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +6.861176470588235,5,a-phya-i1,2017-18,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 0.0, 1.0, 0.7, 0.0, 0.0, 1.7,363,213.52941176470588 +1,1,a-phya-i1,2017-18,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444 +1,1,a-phya-i1,2017-18,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311 +7.541333333333333,5,a-phya-i1,2017-18,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,86,86.0 +1,1,a-phya-i1,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,717 +1,1,a-phya-i1,2017-18,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,657 +5.0986666666666665,5,a-phya-i1,2017-18,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,544,544.0 +3.66,3.66,a-phya-i1,2017-18,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,651,813.75 +1,1,a-phya-i1,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,50 +0.96,1,a-phya-i1,2017-18,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,1056,1320.0 +1,1,a-phya-i1,2017-18,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48 +3.433333333333333,3.43,a-phya-i1,2017-18,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,685,856.25 +7.166666666666667,5,a-phya-i1,2017-18,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,125,156.25 +4.726666666666667,4.73,a-phya-i1,2017-18,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,491,613.75 +2.033333333333333,2.03,a-phya-i1,2017-18,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,895,1118.75 +7.333333333333333,5,a-phya-i1,2017-18,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,125,125.0 +5.284848484848485,5,a-phya-i1,2017-18,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,560,509.09090909090907 +5.82095238095238,5,a-phya-i1,2017-18,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,572,408.5714285714286 +5.322666666666667,5,a-phya-i1,2017-18,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 +6.406666666666666,5,a-phya-i1,2017-18,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 1.6,478,298.75 +5.400701754385964,5,a-phya-i1,2017-18,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 1.9,926,487.3684210526316 +4.949333333333334,4.95,a-phya-i1,2017-18,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,572,572.0 +6.1066666666666665,5,a-phya-i1,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,71,355.0 +4.722962962962963,4.72,a-phya-i1,2017-18,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.6, 3.0, 0.0, 3.6,2212,614.4444444444445 +5.238518518518519,5,a-phya-i1,2017-18,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,466,517.7777777777777 +5.217254901960785,5,a-phya-i1,2017-18,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 1.7,887,521.7647058823529 +1,1,a-phya-i1,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90 +5.109333333333334,5,a-phya-i1,2017-18,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,271,542.0 +4.458666666666667,4.46,a-phya-i1,2017-18,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,332,664.0 +4.874666666666666,4.87,a-phya-i1,2017-18,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,586,586.0 +3.9226666666666667,3.92,a-phya-i1,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 0.4, 2.0,1529,764.5 +5.530666666666667,5,a-phya-i1,2017-18,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,463,463.0 +6.069333333333334,5,a-phya-i1,2017-18,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,362,362.0 +5.941333333333334,5,a-phya-i1,2017-18,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,386,386.0 +5.616,5,a-phya-i1,2017-18,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,447,447.0 +5.658666666666667,5,a-phya-i1,2017-18,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +5.8453333333333335,5,a-phya-i1,2017-18,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +6.176,5,a-phya-i1,2017-18,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +2.8906666666666667,2.89,a-phya-i1,2017-18,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,958,958.0 +6.24,5,a-phya-i1,2017-18,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,330,330.0 +5.8453333333333335,5,a-phya-i1,2017-18,Longmeadow - Wolf Swamp Road,01590025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +1,1,a-phya-i1,2017-18,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487 +1,1,a-phya-i1,2017-18,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534 +5.221333333333333,5,a-phya-i1,2017-18,Lowell - Bartlett Community Partnership,01600090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,521,521.0 +1,1,a-phya-i1,2017-18,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,515 +1,1,a-phya-i1,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501 +1,1,a-phya-i1,2017-18,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,692 +1,1,a-phya-i1,2017-18,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488 +1,1,a-phya-i1,2017-18,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502 +1,1,a-phya-i1,2017-18,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666 +1,1,a-phya-i1,2017-18,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700 +1,1,a-phya-i1,2017-18,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,643 +1,1,a-phya-i1,2017-18,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462 +1,1,a-phya-i1,2017-18,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487 +1,1,a-phya-i1,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684 +1,1,a-phya-i1,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,23 +1,1,a-phya-i1,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +1,1,a-phya-i1,2017-18,Lowell - Lowell Day School on Broadway,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26 +-8.821333333333333,1,a-phya-i1,2017-18,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,3154,3154.0 +1,1,a-phya-i1,2017-18,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243 +1,1,a-phya-i1,2017-18,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511 +1,1,a-phya-i1,2017-18,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542 +1,1,a-phya-i1,2017-18,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490 +1,1,a-phya-i1,2017-18,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,685 +1,1,a-phya-i1,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483 +1,1,a-phya-i1,2017-18,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113 +1,1,a-phya-i1,2017-18,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248 +5.105777777777778,5,a-phya-i1,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,814,542.6666666666666 +1,1,a-phya-i1,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91 +6.282666666666667,5,a-phya-i1,2017-18,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,322,322.0 +5.8613333333333335,5,a-phya-i1,2017-18,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,401,401.0 +5.616,5,a-phya-i1,2017-18,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,894,447.0 +6.865777777777779,5,a-phya-i1,2017-18,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,638,212.66666666666666 +1,1,a-phya-i1,2017-18,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394 +1,1,a-phya-i1,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,9 +5.053333333333334,5,a-phya-i1,2017-18,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,442,552.5 +1,1,a-phya-i1,2017-18,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423 +5.898666666666666,5,a-phya-i1,2017-18,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,394,394.0 +6.010666666666666,5,a-phya-i1,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +5.614545454545454,5,a-phya-i1,2017-18,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,492,447.27272727272725 +6.773333333333333,5,a-phya-i1,2017-18,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,253,229.99999999999997 +4.445333333333333,4.45,a-phya-i1,2017-18,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1333,666.5 +6.540606060606061,5,a-phya-i1,2017-18,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,301,273.6363636363636 +6.245333333333333,5,a-phya-i1,2017-18,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,329,329.0 +3.5653333333333332,3.57,a-phya-i1,2017-18,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1663,831.5 +4.901818181818182,4.9,a-phya-i1,2017-18,Lynn - Cobbet Elementary,01630035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,639,580.9090909090909 +4.9406060606060604,4.94,a-phya-i1,2017-18,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,631,573.6363636363636 +7.2026666666666666,5,a-phya-i1,2017-18,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,299,149.5 +5.685333333333333,5,a-phya-i1,2017-18,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,434,434.0 +7.429333333333333,5,a-phya-i1,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,107,107.0 +5.638787878787879,5,a-phya-i1,2017-18,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,487,442.7272727272727 +4.829090909090909,4.83,a-phya-i1,2017-18,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.1,654,594.5454545454545 +5.784242424242424,5,a-phya-i1,2017-18,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,457,415.45454545454544 +6.836363636363637,5,a-phya-i1,2017-18,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,240,218.18181818181816 +3.4053333333333335,3.41,a-phya-i1,2017-18,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1723,861.5 +6.464,5,a-phya-i1,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 1.0, 0.5, 1.0, 1.0, 3.5,1008,288.0 +7.209696969696971,5,a-phya-i1,2017-18,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,163,148.18181818181816 +5.8133333333333335,5,a-phya-i1,2017-18,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,615,410.0 +5.614545454545454,5,a-phya-i1,2017-18,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.1,492,447.27272727272725 +6.346666666666667,5,a-phya-i1,2017-18,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,310,310.0 +4.552,4.55,a-phya-i1,2017-18,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1293,646.5 +5.685333333333333,5,a-phya-i1,2017-18,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,434,434.0 +5.493333333333333,5,a-phya-i1,2017-18,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,470,470.0 +7.757575757575758,5,a-phya-i1,2017-18,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,50,45.45454545454545 +4.896969696969697,4.9,a-phya-i1,2017-18,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,640,581.8181818181818 +3.445333333333333,3.45,a-phya-i1,2017-18,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,427,854.0 +-0.64,1,a-phya-i1,2017-18,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,648,1620.0 +0.7786666666666666,1,a-phya-i1,2017-18,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,677,1354.0 +1,1,a-phya-i1,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38 +3.4026666666666667,3.4,a-phya-i1,2017-18,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,431,862.0 +4.733333333333333,4.73,a-phya-i1,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1225,612.5 +1,1,a-phya-i1,2017-18,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, 0.0, 0.0,96 +3.2373333333333334,3.24,a-phya-i1,2017-18,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,893,893.0 +3.3333333333333335,3.33,a-phya-i1,2017-18,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,875,875.0 +5.082666666666666,5,a-phya-i1,2017-18,Malden - Forestdale,01650027, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,547,547.0 +3.3546666666666667,3.35,a-phya-i1,2017-18,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,871,871.0 +6.325333333333333,5,a-phya-i1,2017-18,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,314,314.0 +3.1386666666666665,3.14,a-phya-i1,2017-18,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1823,911.5 +1.5093333333333334,1.51,a-phya-i1,2017-18,Malden - Salemwood,01650057, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1217,1217.0 +6.784,5,a-phya-i1,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,228,228.0 +5.637333333333333,5,a-phya-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,443,443.0 +1,1,a-phya-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372 +6.1706666666666665,5,a-phya-i1,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,343,343.0 +6.096,5,a-phya-i1,2017-18,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,714,357.0 +5.490666666666667,5,a-phya-i1,2017-18,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,941,470.5 +5.9013333333333335,5,a-phya-i1,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,787,393.5 +4.488,4.49,a-phya-i1,2017-18,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1317,658.5 +7.482666666666667,5,a-phya-i1,2017-18,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,97,97.0 +7.264,5,a-phya-i1,2017-18,Marblehead - Elbridge Gerry,01680015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,138,138.0 +6.026666666666666,5,a-phya-i1,2017-18,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +7.184,5,a-phya-i1,2017-18,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,153,153.0 +1,1,a-phya-i1,2017-18,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273 +2.469333333333333,2.47,a-phya-i1,2017-18,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1037,1037.0 +5.392,5,a-phya-i1,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,489,489.0 +5.88,5,a-phya-i1,2017-18,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,636,397.5 +1.8933333333333333,1.89,a-phya-i1,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,229,1145.0 +5.578666666666667,5,a-phya-i1,2017-18,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,454,454.0 +5.674666666666667,5,a-phya-i1,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0,1308,436.0 +5.294222222222222,5,a-phya-i1,2017-18,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,761,507.3333333333333 +7.072,5,a-phya-i1,2017-18,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,174,174.0 +4.704,4.7,a-phya-i1,2017-18,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,618,618.0 +5.723076923076923,5,a-phya-i1,2017-18,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.6, 1.0, 1.0, 2.6,1110,426.9230769230769 +4.778666666666667,4.78,a-phya-i1,2017-18,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,604,604.0 +5.850666666666666,5,a-phya-i1,2017-18,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +6.704,5,a-phya-i1,2017-18,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +4.551111111111111,4.55,a-phya-i1,2017-18,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,970,646.6666666666666 +5.7973333333333334,5,a-phya-i1,2017-18,Marshfield - Gov Edward Winslow,01710020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +3.214222222222222,3.21,a-phya-i1,2017-18,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,1346,897.3333333333334 +5.706666666666667,5,a-phya-i1,2017-18,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,430,430.0 +6.010666666666666,5,a-phya-i1,2017-18,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,373,373.0 +4.618666666666667,4.62,a-phya-i1,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,634,634.0 +6.773333333333333,5,a-phya-i1,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,184,230.0 +6.074666666666666,5,a-phya-i1,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,361,361.0 +4.952,4.95,a-phya-i1,2017-18,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1143,571.5 +6.253333333333333,5,a-phya-i1,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,655,327.5 +5.781333333333333,5,a-phya-i1,2017-18,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,416,416.0 +5.594666666666667,5,a-phya-i1,2017-18,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +1,1,a-phya-i1,2017-18,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270 +5.413333333333333,5,a-phya-i1,2017-18,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,485,485.0 +4.88,4.88,a-phya-i1,2017-18,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, 1.0, 0.0, 1.0,585,585.0 +4.8133333333333335,4.81,a-phya-i1,2017-18,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,239,597.5 +7.006060606060605,5,a-phya-i1,2017-18,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.6, 0.0, 1.1,205,186.36363636363635 +1,1,a-phya-i1,2017-18,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522 +1,1,a-phya-i1,2017-18,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486 +5.92,5,a-phya-i1,2017-18,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,390,390.0 +6.053333333333334,5,a-phya-i1,2017-18,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,365,365.0 +5.24,5,a-phya-i1,2017-18,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,828,517.5 +5.674666666666667,5,a-phya-i1,2017-18,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +5.984,5,a-phya-i1,2017-18,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,378,378.0 +4.682666666666667,4.68,a-phya-i1,2017-18,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,622,622.0 +6.661333333333333,5,a-phya-i1,2017-18,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,502,251.0 +6.994666666666666,5,a-phya-i1,2017-18,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,377,188.5 +1,1,a-phya-i1,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +6.925128205128206,5,a-phya-i1,2017-18,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.6, 2.6,524,201.53846153846152 +1,1,a-phya-i1,2017-18,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460 +5.333333333333333,5,a-phya-i1,2017-18,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,500,500.0 +5.488,5,a-phya-i1,2017-18,Medford - Medford High,01760505, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,1413,471.0 +5.12,5,a-phya-i1,2017-18,Medford - Milton Fuller Roberts,01760150, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,540,540.0 +5.306666666666667,5,a-phya-i1,2017-18,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,505,505.0 +6.213333333333333,5,a-phya-i1,2017-18,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +4.117333333333334,4.12,a-phya-i1,2017-18,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,728,728.0 +4.250666666666667,4.25,a-phya-i1,2017-18,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,703,703.0 +1,1,a-phya-i1,2017-18,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318 +1,1,a-phya-i1,2017-18,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,269 +1,1,a-phya-i1,2017-18,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281 +1,1,a-phya-i1,2017-18,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421 +1,1,a-phya-i1,2017-18,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1002 +1,1,a-phya-i1,2017-18,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,777 +1,1,a-phya-i1,2017-18,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436 +1,1,a-phya-i1,2017-18,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405 +6.010666666666666,5,a-phya-i1,2017-18,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +5.456,5,a-phya-i1,2017-18,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,477,477.0 +3.8506666666666667,3.85,a-phya-i1,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,778,778.0 +4.618666666666667,4.62,a-phya-i1,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,634,634.0 +5.117333333333334,5,a-phya-i1,2017-18,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1081,540.5 +0.7893333333333333,1,a-phya-i1,2017-18,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1352,1352.0 +4.802666666666667,4.8,a-phya-i1,2017-18,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1199,599.5 +4.415632183908046,4.42,a-phya-i1,2017-18,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.9, 0.0, 2.9,1949,672.0689655172414 +1,1,a-phya-i1,2017-18,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1354 +5.008,5,a-phya-i1,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,561,561.0 +3.824,3.82,a-phya-i1,2017-18,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,783,783.0 +4.842666666666666,4.84,a-phya-i1,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +6.589090909090909,5,a-phya-i1,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,291,264.5454545454545 +4.1706666666666665,4.17,a-phya-i1,2017-18,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,718,718.0 +6.784,5,a-phya-i1,2017-18,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,228,228.0 +6.47,5,a-phya-i1,2017-18,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 1.6,459,286.875 +5.461333333333333,5,a-phya-i1,2017-18,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,476,476.0 +5.498666666666667,5,a-phya-i1,2017-18,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +5.952,5,a-phya-i1,2017-18,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,1152,384.0 +6.464,5,a-phya-i1,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,144,288.0 +2.7733333333333334,2.77,a-phya-i1,2017-18,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,980,980.0 +5.426666666666667,5,a-phya-i1,2017-18,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,965,482.5 +4.906666666666666,4.91,a-phya-i1,2017-18,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,580,580.0 +4.1706666666666665,4.17,a-phya-i1,2017-18,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,718,718.0 +5.674666666666667,5,a-phya-i1,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,436,436.0 +5.322666666666667,5,a-phya-i1,2017-18,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,502,502.0 +3.808,3.81,a-phya-i1,2017-18,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,393,786.0 +3.6586666666666665,3.66,a-phya-i1,2017-18,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,407,814.0 +3.1253333333333333,3.13,a-phya-i1,2017-18,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,914,914.0 +4.197333333333333,4.2,a-phya-i1,2017-18,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,713,713.0 +5.1786666666666665,5,a-phya-i1,2017-18,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,529,529.0 +4.874666666666666,4.87,a-phya-i1,2017-18,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,586,586.0 +-46.82666666666667,1,a-phya-i1,2017-18,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,1028,10280.0 +5.648,5,a-phya-i1,2017-18,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,441,441.0 +3.217777777777777,3.22,a-phya-i1,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,538,896.6666666666667 +6.544,5,a-phya-i1,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +6.586666666666667,5,a-phya-i1,2017-18,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,106,265.0 +5.706666666666667,5,a-phya-i1,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,387,430.0 +1,1,a-phya-i1,2017-18,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159 +6.709333333333333,5,a-phya-i1,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 +5.066666666666666,5,a-phya-i1,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,550,550.0 +4.693333333333333,4.69,a-phya-i1,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,620,620.0 +5.578666666666667,5,a-phya-i1,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,454,454.0 +6.517333333333333,5,a-phya-i1,2017-18,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.624,5,a-phya-i1,2017-18,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,258,258.0 +1,1,a-phya-i1,2017-18,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393 +4.0028070175438595,4.0,a-phya-i1,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 0.0, 1.9,1424,749.4736842105264 +5.141333333333334,5,a-phya-i1,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,536,536.0 +1,1,a-phya-i1,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1571 +7.216,5,a-phya-i1,2017-18,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,147,147.0 +6.144,5,a-phya-i1,2017-18,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +6.064,5,a-phya-i1,2017-18,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,363,363.0 +4.446666666666666,4.45,a-phya-i1,2017-18,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,533,666.25 +6.0,5,a-phya-i1,2017-18,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 +6.458666666666667,5,a-phya-i1,2017-18,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,289,289.0 +5.562666666666667,5,a-phya-i1,2017-18,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,457,457.0 +6.16,5,a-phya-i1,2017-18,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +7.549333333333333,5,a-phya-i1,2017-18,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,169,84.5 +7.093333333333334,5,a-phya-i1,2017-18,Narragansett - Templeton Center,07200020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,170,170.0 +4.976,4.98,a-phya-i1,2017-18,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,567,567.0 +5.954666666666666,5,a-phya-i1,2017-18,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,767,383.5 +6.394666666666667,5,a-phya-i1,2017-18,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,301,301.0 +6.672,5,a-phya-i1,2017-18,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,249,249.0 +5.488,5,a-phya-i1,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,471,471.0 +5.973333333333334,5,a-phya-i1,2017-18,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 2.0, 0.6, 0.0, 0.0, 2.6,988,380.0 +4.277333333333333,4.28,a-phya-i1,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,698,698.0 +5.888,5,a-phya-i1,2017-18,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,594,396.0 +5.205333333333333,5,a-phya-i1,2017-18,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,524,524.0 +6.290666666666667,5,a-phya-i1,2017-18,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,641,320.5 +6.778666666666667,5,a-phya-i1,2017-18,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,229,229.0 +5.701333333333333,5,a-phya-i1,2017-18,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +5.7973333333333334,5,a-phya-i1,2017-18,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +4.155555555555555,4.16,a-phya-i1,2017-18,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0, 2.4,1730,720.8333333333334 +5.48,5,a-phya-i1,2017-18,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,945,472.5 +4.760888888888888,4.76,a-phya-i1,2017-18,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,911,607.3333333333334 +6.037333333333334,5,a-phya-i1,2017-18,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,552,368.0 +5.104,5,a-phya-i1,2017-18,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,543,543.0 +5.6,5,a-phya-i1,2017-18,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,450,450.0 +5.402666666666667,5,a-phya-i1,2017-18,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,487,487.0 +5.904,5,a-phya-i1,2017-18,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,393,393.0 +4.090434782608695,4.09,a-phya-i1,2017-18,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 0.3, 2.0, 0.0, 2.3,1686,733.0434782608696 +5.986666666666666,5,a-phya-i1,2017-18,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,755,377.5 +4.963555555555556,4.96,a-phya-i1,2017-18,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,854,569.3333333333334 +5.344,5,a-phya-i1,2017-18,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,498,498.0 +5.157333333333334,5,a-phya-i1,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,533,533.0 +6.088,5,a-phya-i1,2017-18,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,717,358.5 +6.525333333333333,5,a-phya-i1,2017-18,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,553,276.5 +4.693333333333333,4.69,a-phya-i1,2017-18,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,310,620.0 +6.0906666666666665,5,a-phya-i1,2017-18,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,358,358.0 +6.442666666666667,5,a-phya-i1,2017-18,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 1.0, 0.0, 1.0, 0.5, 0.0, 2.5,730,292.0 +6.496,5,a-phya-i1,2017-18,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,282,282.0 +1,1,a-phya-i1,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298 +4.768,4.77,a-phya-i1,2017-18,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,303,606.0 +5.564444444444444,5,a-phya-i1,2017-18,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,274,456.6666666666667 +6.796444444444445,5,a-phya-i1,2017-18,New Bedford - Hayden/McFadden,02010078, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,677,225.66666666666666 +1,1,a-phya-i1,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345 +4.416,4.42,a-phya-i1,2017-18,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,336,672.0 +5.133333333333334,5,a-phya-i1,2017-18,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,215,537.5 +7.24,5,a-phya-i1,2017-18,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,285,142.5 +5.925333333333334,5,a-phya-i1,2017-18,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +6.4142222222222225,5,a-phya-i1,2017-18,New Bedford - Keith Middle School,02010405, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,892,297.3333333333333 +2.768,2.77,a-phya-i1,2017-18,New Bedford - New Bedford High,02010505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1962,981.0 +4.656,4.66,a-phya-i1,2017-18,New Bedford - Normandin Middle School,02010410, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1254,627.0 +1,1,a-phya-i1,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,223 +6.568888888888889,5,a-phya-i1,2017-18,New Bedford - Roosevelt Middle School,02010415, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,805,268.3333333333333 +5.219555555555555,5,a-phya-i1,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,782,521.3333333333334 +5.92,5,a-phya-i1,2017-18,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,195,390.0 +7.578666666666667,5,a-phya-i1,2017-18,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,79,79.0 +7.822222222222221,5,a-phya-i1,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,100,33.333333333333336 +1,1,a-phya-i1,2017-18,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262 +1,1,a-phya-i1,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422 +6.986666666666666,5,a-phya-i1,2017-18,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,152,190.0 +6.288,5,a-phya-i1,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,321,321.0 +6.688,5,a-phya-i1,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 1.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 2.5,615,246.0 +5.248,5,a-phya-i1,2017-18,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.3, 1.3, 0.0, 0.0, 1.5,774,516.0 +6.509333333333333,5,a-phya-i1,2017-18,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,559,279.5 +5.509333333333333,5,a-phya-i1,2017-18,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,467,467.0 +1,1,a-phya-i1,2017-18,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,521 +5.754666666666667,5,a-phya-i1,2017-18,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +5.941333333333334,5,a-phya-i1,2017-18,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 +5.914666666666666,5,a-phya-i1,2017-18,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,391,391.0 +3.984,3.98,a-phya-i1,2017-18,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,753,753.0 +5.8133333333333335,5,a-phya-i1,2017-18,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,410,410.0 +2.784,2.78,a-phya-i1,2017-18,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,978,978.0 +7.228444444444445,5,a-phya-i1,2017-18,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,434,144.66666666666666 +5.8453333333333335,5,a-phya-i1,2017-18,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,404,404.0 +7.176,5,a-phya-i1,2017-18,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,309,154.5 +7.002666666666666,5,a-phya-i1,2017-18,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,374,187.0 +1,1,a-phya-i1,2017-18,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512 +5.584,5,a-phya-i1,2017-18,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,453,453.0 +6.949333333333334,5,a-phya-i1,2017-18,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,197,197.0 +2.272,2.27,a-phya-i1,2017-18,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,2148,1074.0 +2.952,2.95,a-phya-i1,2017-18,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1893,946.5 +4.725333333333333,4.73,a-phya-i1,2017-18,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,614,614.0 +7.264,5,a-phya-i1,2017-18,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,276,138.0 +6.485333333333333,5,a-phya-i1,2017-18,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,284,284.0 +6.421333333333333,5,a-phya-i1,2017-18,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +6.914666666666666,5,a-phya-i1,2017-18,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,407,203.5 +6.37,5,a-phya-i1,2017-18,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 1.0, 1.6,489,305.625 +5.536,5,a-phya-i1,2017-18,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,462,462.0 +5.066666666666666,5,a-phya-i1,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,550,550.0 +1,1,a-phya-i1,2017-18,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260 +6.074666666666666,5,a-phya-i1,2017-18,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +1,1,a-phya-i1,2017-18,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522 +6.421333333333333,5,a-phya-i1,2017-18,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,296,296.0 +5.018666666666666,5,a-phya-i1,2017-18,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,559,559.0 +6.485333333333333,5,a-phya-i1,2017-18,North Andover - Atkinson,02110001, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,568,284.0 +5.589333333333333,5,a-phya-i1,2017-18,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,452,452.0 +6.464,5,a-phya-i1,2017-18,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +0.05333333333333334,1,a-phya-i1,2017-18,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1490,1490.0 +5.056,5,a-phya-i1,2017-18,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1104,552.0 +6.16,5,a-phya-i1,2017-18,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +6.584888888888889,5,a-phya-i1,2017-18,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,398,265.3333333333333 +6.293333333333333,5,a-phya-i1,2017-18,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,320,320.0 +6.37037037037037,5,a-phya-i1,2017-18,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,275,305.55555555555554 +4.608,4.61,a-phya-i1,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,636,636.0 +4.917333333333334,4.92,a-phya-i1,2017-18,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1156,578.0 +1,1,a-phya-i1,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126 +5.0986666666666665,5,a-phya-i1,2017-18,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1088,544.0 +6.322962962962963,5,a-phya-i1,2017-18,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,283,314.44444444444446 +6.24,5,a-phya-i1,2017-18,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,330,330.0 +6.789333333333333,5,a-phya-i1,2017-18,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,227,227.0 +7.018666666666666,5,a-phya-i1,2017-18,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,184,184.0 +5.322666666666667,5,a-phya-i1,2017-18,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 +5.2,5,a-phya-i1,2017-18,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,525,525.0 +5.978412698412699,5,a-phya-i1,2017-18,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,796,379.04761904761904 +1,1,a-phya-i1,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18 +5.749333333333333,5,a-phya-i1,2017-18,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,422,422.0 +7.04,5,a-phya-i1,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,90,180.0 +6.568,5,a-phya-i1,2017-18,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,537,268.5 +6.234666666666667,5,a-phya-i1,2017-18,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,331,331.0 +6.208,5,a-phya-i1,2017-18,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,336,336.0 +5.525333333333333,5,a-phya-i1,2017-18,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +1,1,a-phya-i1,2017-18,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,812 +5.077333333333334,5,a-phya-i1,2017-18,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,548,548.0 +6.538666666666667,5,a-phya-i1,2017-18,Northampton - Bridge Street,02100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +6.0906666666666665,5,a-phya-i1,2017-18,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +4.72,4.72,a-phya-i1,2017-18,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,615,615.0 +6.288,5,a-phya-i1,2017-18,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,321,321.0 +3.3653333333333335,3.37,a-phya-i1,2017-18,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,869,869.0 +6.8213333333333335,5,a-phya-i1,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,221,221.0 +5.344,5,a-phya-i1,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,498,498.0 +3.6414814814814815,3.64,a-phya-i1,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,1471,817.2222222222222 +6.34,5,a-phya-i1,2017-18,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,249,311.25 +6.64,5,a-phya-i1,2017-18,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 1.0,255,255.0 +6.533333333333333,5,a-phya-i1,2017-18,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,275,275.0 +6.38,5,a-phya-i1,2017-18,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,243,303.75 +5.615238095238095,5,a-phya-i1,2017-18,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,626,447.14285714285717 +5.973333333333334,5,a-phya-i1,2017-18,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +4.976,4.98,a-phya-i1,2017-18,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,567,567.0 +6.072,5,a-phya-i1,2017-18,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,723,361.5 +5.306666666666667,5,a-phya-i1,2017-18,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,505,505.0 +4.677333333333333,4.68,a-phya-i1,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1246,623.0 +1,1,a-phya-i1,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488 +5.8933333333333335,5,a-phya-i1,2017-18,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,395,395.0 +5.536,5,a-phya-i1,2017-18,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +6.48,5,a-phya-i1,2017-18,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +1,1,a-phya-i1,2017-18,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,744 +4.8693333333333335,4.87,a-phya-i1,2017-18,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,587,587.0 +5.461333333333333,5,a-phya-i1,2017-18,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +4.293333333333333,4.29,a-phya-i1,2017-18,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,695,695.0 +5.296,5,a-phya-i1,2017-18,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,507,507.0 +5.232,5,a-phya-i1,2017-18,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 +6.421333333333333,5,a-phya-i1,2017-18,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,296,296.0 +6.672,5,a-phya-i1,2017-18,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,249,249.0 +6.832,5,a-phya-i1,2017-18,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,219,219.0 +5.379555555555556,5,a-phya-i1,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,737,491.3333333333333 +6.250666666666667,5,a-phya-i1,2017-18,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 +5.925333333333334,5,a-phya-i1,2017-18,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +7.135238095238096,5,a-phya-i1,2017-18,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,227,162.14285714285717 +4.593777777777778,4.59,a-phya-i1,2017-18,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,958,638.6666666666666 +5.728,5,a-phya-i1,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +5.1306666666666665,5,a-phya-i1,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,538,538.0 +2.82,2.82,a-phya-i1,2017-18,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,777,971.25 +5.445333333333333,5,a-phya-i1,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,479,479.0 +6.5777777777777775,5,a-phya-i1,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,160,266.6666666666667 +1,1,a-phya-i1,2017-18,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313 +6.512,5,a-phya-i1,2017-18,Orange - Fisher Hill,02230015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,279,279.0 +6.810666666666667,5,a-phya-i1,2017-18,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,223,223.0 +6.458666666666667,5,a-phya-i1,2017-18,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +5.957333333333334,5,a-phya-i1,2017-18,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,383,383.0 +5.104,5,a-phya-i1,2017-18,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,543,543.0 +5.637333333333333,5,a-phya-i1,2017-18,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,443,443.0 +1,1,a-phya-i1,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27 +4.336,4.34,a-phya-i1,2017-18,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,687,687.0 +4.197333333333333,4.2,a-phya-i1,2017-18,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,713,713.0 +4.725333333333333,4.73,a-phya-i1,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,614,614.0 +6.56,5,a-phya-i1,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,270,270.0 +1,1,a-phya-i1,2017-18,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358 +1,1,a-phya-i1,2017-18,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394 +1,1,a-phya-i1,2017-18,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1366 +1,1,a-phya-i1,2017-18,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261 +1,1,a-phya-i1,2017-18,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354 +1,1,a-phya-i1,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1480 +1,1,a-phya-i1,2017-18,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467 +1,1,a-phya-i1,2017-18,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623 +1,1,a-phya-i1,2017-18,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248 +1,1,a-phya-i1,2017-18,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360 +7.322666666666667,5,a-phya-i1,2017-18,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,127,127.0 +5.322666666666667,5,a-phya-i1,2017-18,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,502,502.0 +5.733333333333333,5,a-phya-i1,2017-18,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,425,425.0 +5.072,5,a-phya-i1,2017-18,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,549,549.0 +5.354666666666667,5,a-phya-i1,2017-18,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,496,496.0 +3.082666666666667,3.08,a-phya-i1,2017-18,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,922,922.0 +6.8373333333333335,5,a-phya-i1,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,218,218.0 +6.181333333333333,5,a-phya-i1,2017-18,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +5.306666666666667,5,a-phya-i1,2017-18,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,505,505.0 +6.714666666666667,5,a-phya-i1,2017-18,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,241,241.0 +5.749333333333333,5,a-phya-i1,2017-18,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,422,422.0 +4.042666666666666,4.04,a-phya-i1,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,742,742.0 +1,1,a-phya-i1,2017-18,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,116 +1,1,a-phya-i1,2017-18,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, 0.0, 0.0, 0.0,203 +1,1,a-phya-i1,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197 +6.218666666666667,5,a-phya-i1,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,668,334.0 +6.096,5,a-phya-i1,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +7.1626666666666665,5,a-phya-i1,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,157,157.0 +7.008,5,a-phya-i1,2017-18,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,186,186.0 +7.706666666666667,5,a-phya-i1,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,33,55.0 +6.08,5,a-phya-i1,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +7.685333333333333,5,a-phya-i1,2017-18,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,59,59.0 +5.370666666666667,5,a-phya-i1,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0,493,493.0 +5.8613333333333335,5,a-phya-i1,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,401,401.0 +6.464,5,a-phya-i1,2017-18,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +5.621333333333333,5,a-phya-i1,2017-18,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +5.744,5,a-phya-i1,2017-18,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +5.066666666666666,5,a-phya-i1,2017-18,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,550,550.0 +5.936,5,a-phya-i1,2017-18,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,387,387.0 +3.456,3.46,a-phya-i1,2017-18,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,852,852.0 +6.848,5,a-phya-i1,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,216,216.0 +6.069333333333334,5,a-phya-i1,2017-18,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +6.693333333333333,5,a-phya-i1,2017-18,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +4.0906666666666665,4.09,a-phya-i1,2017-18,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,733,733.0 +4.570666666666667,4.57,a-phya-i1,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,643,643.0 +6.298666666666667,5,a-phya-i1,2017-18,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,319,319.0 +5.850666666666666,5,a-phya-i1,2017-18,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +6.384,5,a-phya-i1,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +6.64,5,a-phya-i1,2017-18,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +5.941333333333334,5,a-phya-i1,2017-18,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,386,386.0 +7.1786666666666665,5,a-phya-i1,2017-18,Plymouth - Hedge,02390010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,154,154.0 +4.976,4.98,a-phya-i1,2017-18,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,567,567.0 +6.469333333333333,5,a-phya-i1,2017-18,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,287,287.0 +5.082666666666666,5,a-phya-i1,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,547,547.0 +4.6,4.6,a-phya-i1,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 1.6,1020,637.5 +7.253333333333333,5,a-phya-i1,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,140,140.0 +4.584,4.58,a-phya-i1,2017-18,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1281,640.5 +2.16,2.16,a-phya-i1,2017-18,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1095,1095.0 +4.1386666666666665,4.14,a-phya-i1,2017-18,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,724,724.0 +5.512380952380951,5,a-phya-i1,2017-18,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 0.0, 1.4,653,466.42857142857144 +5.898666666666666,5,a-phya-i1,2017-18,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,394,394.0 +6.896,5,a-phya-i1,2017-18,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,207,207.0 +4.981333333333334,4.98,a-phya-i1,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1132,566.0 +1,1,a-phya-i1,2017-18,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120 +6.965333333333334,5,a-phya-i1,2017-18,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,194,194.0 +6.298666666666667,5,a-phya-i1,2017-18,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,319,319.0 +1,1,a-phya-i1,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +7.712,5,a-phya-i1,2017-18,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,54,54.0 +1,1,a-phya-i1,2017-18,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129 +4.496,4.5,a-phya-i1,2017-18,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,657,657.0 +5.888,5,a-phya-i1,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,396,396.0 +5.525333333333333,5,a-phya-i1,2017-18,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,464,464.0 +6.042666666666666,5,a-phya-i1,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +1,1,a-phya-i1,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,236 +5.626666666666667,5,a-phya-i1,2017-18,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,445,445.0 +6.378666666666667,5,a-phya-i1,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +5.941333333333334,5,a-phya-i1,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,193,386.0 +5.322666666666667,5,a-phya-i1,2017-18,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,251,502.0 +2.6986666666666665,2.7,a-phya-i1,2017-18,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,497,994.0 +4.256,4.26,a-phya-i1,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,351,702.0 +3.925333333333333,3.93,a-phya-i1,2017-18,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,382,764.0 +4.618666666666667,4.62,a-phya-i1,2017-18,Quincy - Central Middle,02430315, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,634,634.0 +4.48,4.48,a-phya-i1,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,330,660.0 +4.233333333333333,4.23,a-phya-i1,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.8,565,706.25 +4.661333333333333,4.66,a-phya-i1,2017-18,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,313,626.0 +2.485333333333333,2.49,a-phya-i1,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,517,1034.0 +4.298666666666667,4.3,a-phya-i1,2017-18,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,347,694.0 +3.6053333333333333,3.61,a-phya-i1,2017-18,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,412,824.0 +1.4933333333333334,1.49,a-phya-i1,2017-18,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1220,1220.0 +4.2026666666666666,4.2,a-phya-i1,2017-18,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,356,712.0 +-0.21333333333333335,1,a-phya-i1,2017-18,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,1540,1540.0 +4.1386666666666665,4.14,a-phya-i1,2017-18,Quincy - Reay E Sterling Middle,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,362,724.0 +3.050666666666667,3.05,a-phya-i1,2017-18,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,464,928.0 +4.32,4.32,a-phya-i1,2017-18,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,345,690.0 +4.448,4.45,a-phya-i1,2017-18,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,333,666.0 +1,1,a-phya-i1,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +1.1626666666666667,1.16,a-phya-i1,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,641,1282.0 +1,1,a-phya-i1,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83 +6.410666666666667,5,a-phya-i1,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +5.52,5,a-phya-i1,2017-18,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,465,465.0 +5.642666666666667,5,a-phya-i1,2017-18,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +6.357333333333333,5,a-phya-i1,2017-18,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,308,308.0 +4.789333333333333,4.79,a-phya-i1,2017-18,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,602,602.0 +4.224,4.22,a-phya-i1,2017-18,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,708,708.0 +5.989333333333334,5,a-phya-i1,2017-18,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,377,377.0 +5.461333333333333,5,a-phya-i1,2017-18,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,476,476.0 +6.026666666666666,5,a-phya-i1,2017-18,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,370,370.0 +5.76,5,a-phya-i1,2017-18,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,420,420.0 +5.930666666666666,5,a-phya-i1,2017-18,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,388,388.0 +1,1,a-phya-i1,2017-18,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94 +4.340740740740741,4.34,a-phya-i1,2017-18,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 1.8,1235,686.1111111111111 +4.997333333333334,5.0,a-phya-i1,2017-18,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,563,563.0 +6.453333333333333,5,a-phya-i1,2017-18,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,290,290.0 +3.984,3.98,a-phya-i1,2017-18,Revere - A. C. Whelan Elementary School,02480003, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,753,753.0 +4.293333333333333,4.29,a-phya-i1,2017-18,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,695,695.0 +5.506666666666667,5,a-phya-i1,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,374,467.5 +3.904,3.9,a-phya-i1,2017-18,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,768,768.0 +5.1306666666666665,5,a-phya-i1,2017-18,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,538,538.0 +5.482666666666667,5,a-phya-i1,2017-18,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,472,472.0 +4.460444444444445,4.46,a-phya-i1,2017-18,Revere - Revere High,02480505, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,1991,663.6666666666666 +4.816,4.82,a-phya-i1,2017-18,Revere - Rumney Marsh Academy,02480014, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,597,597.0 +5.8133333333333335,5,a-phya-i1,2017-18,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,82,410.0 +4.2026666666666666,4.2,a-phya-i1,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,712,712.0 +4.96,4.96,a-phya-i1,2017-18,Revere - Susan B. Anthony Middle School,02480305, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,570,570.0 +6.806666666666667,5,a-phya-i1,2017-18,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,179,223.75 +6.24,5,a-phya-i1,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,660,330.0 +6.464,5,a-phya-i1,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.344,5,a-phya-i1,2017-18,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,498,498.0 +4.746666666666667,4.75,a-phya-i1,2017-18,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,305,610.0 +1.0773333333333333,1.08,a-phya-i1,2017-18,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,649,1298.0 +4.981333333333334,4.98,a-phya-i1,2017-18,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,283,566.0 +4.682666666666667,4.68,a-phya-i1,2017-18,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,311,622.0 +1.12,1.12,a-phya-i1,2017-18,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,645,1290.0 +5.904,5,a-phya-i1,2017-18,Rockport - Rockport Elementary,02520005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,393,393.0 +6.474666666666667,5,a-phya-i1,2017-18,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,286,286.0 +6.8,5,a-phya-i1,2017-18,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,225,225.0 +7.621333333333333,5,a-phya-i1,2017-18,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,71,71.0 +4.208,4.21,a-phya-i1,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1422,711.0 +1,1,a-phya-i1,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1574 +4.352,4.35,a-phya-i1,2017-18,Salem - Bates,02580003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,342,684.0 +1,1,a-phya-i1,2017-18,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252 +4.426666666666667,4.43,a-phya-i1,2017-18,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.8,536,670.0 +5.0986666666666665,5,a-phya-i1,2017-18,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,272,544.0 +5.984,5,a-phya-i1,2017-18,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +7.2,5,a-phya-i1,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,45,150.0 +7.008,5,a-phya-i1,2017-18,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,93,186.0 +5.546666666666667,5,a-phya-i1,2017-18,Salem - Salem High,02580505, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,920,460.0 +1,1,a-phya-i1,2017-18,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26 +4.032,4.03,a-phya-i1,2017-18,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,372,744.0 +3.1146666666666665,3.11,a-phya-i1,2017-18,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,458,916.0 +1,1,a-phya-i1,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475 +4.629333333333333,4.63,a-phya-i1,2017-18,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,632,632.0 +5.802666666666667,5,a-phya-i1,2017-18,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,824,412.0 +5.451428571428571,5,a-phya-i1,2017-18,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,669,477.8571428571429 +5.546666666666667,5,a-phya-i1,2017-18,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,460,460.0 +4.533333333333333,4.53,a-phya-i1,2017-18,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,650,650.0 +6.768,5,a-phya-i1,2017-18,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,231,231.0 +6.56,5,a-phya-i1,2017-18,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,270,270.0 +6.72,5,a-phya-i1,2017-18,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +6.250666666666667,5,a-phya-i1,2017-18,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,656,328.0 +6.557333333333333,5,a-phya-i1,2017-18,Saugus - Veterans Memorial,02620065, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,541,270.5 +1,1,a-phya-i1,2017-18,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60 +6.336,5,a-phya-i1,2017-18,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,312,312.0 +4.1546666666666665,4.15,a-phya-i1,2017-18,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,721,721.0 +6.56,5,a-phya-i1,2017-18,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +6.08,5,a-phya-i1,2017-18,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +3.088,3.09,a-phya-i1,2017-18,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,921,921.0 +6.933333333333334,5,a-phya-i1,2017-18,Scituate - Wampatuck Elementary,02640020, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,400,200.0 +2.656,2.66,a-phya-i1,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,501,1002.0 +2.8906666666666667,2.89,a-phya-i1,2017-18,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,479,958.0 +3.4346666666666668,3.43,a-phya-i1,2017-18,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,428,856.0 +1.664,1.66,a-phya-i1,2017-18,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,594,1188.0 +4.442666666666667,4.44,a-phya-i1,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +5.226666666666667,5,a-phya-i1,2017-18,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,520,520.0 +5.381333333333333,5,a-phya-i1,2017-18,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +5.2,5,a-phya-i1,2017-18,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,525,525.0 +7.466666666666667,5,a-phya-i1,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,50,100.0 +2.2453333333333334,2.25,a-phya-i1,2017-18,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1079,1079.0 +-1.312,1,a-phya-i1,2017-18,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,873,1746.0 +0.928,1,a-phya-i1,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1326,1326.0 +5.754666666666667,5,a-phya-i1,2017-18,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,421,421.0 +6.352,5,a-phya-i1,2017-18,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,309,309.0 +5.7973333333333334,5,a-phya-i1,2017-18,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,413,413.0 +4.0,4.0,a-phya-i1,2017-18,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,750,750.0 +5.167719298245614,5,a-phya-i1,2017-18,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.9, 0.0, 0.0, 0.0, 1.9,1009,531.0526315789474 +6.746666666666667,5,a-phya-i1,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,235,235.0 +4.316190476190476,4.32,a-phya-i1,2017-18,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,967,690.7142857142858 +3.1173333333333333,3.12,a-phya-i1,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1831,915.5 +6.0906666666666665,5,a-phya-i1,2017-18,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +6.176,5,a-phya-i1,2017-18,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,342,342.0 +6.698666666666667,5,a-phya-i1,2017-18,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,122,244.0 +5.013333333333334,5,a-phya-i1,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,560,560.0 +1.04,1.04,a-phya-i1,2017-18,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1305,1305.0 +5.109333333333334,5,a-phya-i1,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,542,542.0 +6.085333333333334,5,a-phya-i1,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +5.765333333333333,5,a-phya-i1,2017-18,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +5.386666666666667,5,a-phya-i1,2017-18,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,490,490.0 +4.768,4.77,a-phya-i1,2017-18,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,606,606.0 +6.538666666666667,5,a-phya-i1,2017-18,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +4.1866666666666665,4.19,a-phya-i1,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,1001,715.0 +1,1,a-phya-i1,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584 +1,1,a-phya-i1,2017-18,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451 +1,1,a-phya-i1,2017-18,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231 +1,1,a-phya-i1,2017-18,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314 +1,1,a-phya-i1,2017-18,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720 +1,1,a-phya-i1,2017-18,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,52 +1,1,a-phya-i1,2017-18,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,456 +1,1,a-phya-i1,2017-18,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15 +1,1,a-phya-i1,2017-18,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1215 +1,1,a-phya-i1,2017-18,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,371 +1,1,a-phya-i1,2017-18,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459 +4.949333333333334,4.95,a-phya-i1,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,572,572.0 +5.76,5,a-phya-i1,2017-18,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,420,420.0 +6.1866666666666665,5,a-phya-i1,2017-18,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,340,340.0 +1,1,a-phya-i1,2017-18,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,555 +0.20266666666666666,1,a-phya-i1,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,731,1462.0 +5.3978947368421055,5,a-phya-i1,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 0.0, 1.9,927,487.89473684210526 +4.533333333333333,4.53,a-phya-i1,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,650,650.0 +6.862222222222221,5,a-phya-i1,2017-18,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0, 2.4,512,213.33333333333334 +6.581333333333333,5,a-phya-i1,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,266,266.0 +6.28,5,a-phya-i1,2017-18,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,258,322.5 +6.208,5,a-phya-i1,2017-18,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,336,336.0 +5.546666666666667,5,a-phya-i1,2017-18,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,460,460.0 +6.346666666666667,5,a-phya-i1,2017-18,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,310,310.0 +6.952,5,a-phya-i1,2017-18,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,393,196.5 +5.333333333333333,5,a-phya-i1,2017-18,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,500,500.0 +5.424,5,a-phya-i1,2017-18,Southbridge - Southbridge Middle School,02770315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,483,483.0 +6.309333333333333,5,a-phya-i1,2017-18,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,317,317.0 +0.3893333333333333,1,a-phya-i1,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1427,1427.0 +6.378666666666667,5,a-phya-i1,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,304,304.0 +7.536,5,a-phya-i1,2017-18,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,87,87.0 +6.453333333333333,5,a-phya-i1,2017-18,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,290,290.0 +5.005333333333334,5,a-phya-i1,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1123,561.5 +5.642666666666667,5,a-phya-i1,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +6.08,5,a-phya-i1,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,720,360.0 +6.096,5,a-phya-i1,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,357,357.0 +4.874666666666666,4.87,a-phya-i1,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,293,586.0 +5.536,5,a-phya-i1,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,231,462.0 +1,1,a-phya-i1,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417 +3.466666666666667,3.47,a-phya-i1,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,425,850.0 +5.685333333333333,5,a-phya-i1,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,434,434.0 +6.608,5,a-phya-i1,2017-18,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,261,261.0 +1,1,a-phya-i1,2017-18,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254 +1,1,a-phya-i1,2017-18,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51 +7.1546666666666665,5,a-phya-i1,2017-18,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,317,158.5 +5.765333333333333,5,a-phya-i1,2017-18,Springfield - Chestnut Academy,02810365, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,419,419.0 +7.157333333333334,5,a-phya-i1,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,316,158.0 +6.037333333333334,5,a-phya-i1,2017-18,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,368,368.0 +5.514666666666667,5,a-phya-i1,2017-18,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +7.093333333333334,5,a-phya-i1,2017-18,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,170,170.0 +3.808,3.81,a-phya-i1,2017-18,Springfield - Edward P. Boland School,02810010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,786,786.0 +6.1706666666666665,5,a-phya-i1,2017-18,Springfield - Elias Brookings,02810030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +6.101333333333334,5,a-phya-i1,2017-18,Springfield - Forest Park Middle,02810325, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,712,356.0 +6.1226666666666665,5,a-phya-i1,2017-18,Springfield - Frank H Freedman,02810075, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +4.618666666666667,4.62,a-phya-i1,2017-18,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,634,634.0 +1,1,a-phya-i1,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26 +1,1,a-phya-i1,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45 +4.16,4.16,a-phya-i1,2017-18,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,720,720.0 +6.410666666666667,5,a-phya-i1,2017-18,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,298,298.0 +6.224,5,a-phya-i1,2017-18,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,333,333.0 +6.081777777777777,5,a-phya-i1,2017-18,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,1079,359.6666666666667 +1,1,a-phya-i1,2017-18,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307 +5.632,5,a-phya-i1,2017-18,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,444,444.0 +1,1,a-phya-i1,2017-18,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229 +1,1,a-phya-i1,2017-18,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638 +5.6,5,a-phya-i1,2017-18,Springfield - John F Kennedy Middle,02810328, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,450,450.0 +3.9146666666666667,3.91,a-phya-i1,2017-18,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,766,766.0 +6.346666666666667,5,a-phya-i1,2017-18,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +6.490666666666667,5,a-phya-i1,2017-18,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,283,283.0 +1,1,a-phya-i1,2017-18,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,12 +5.8453333333333335,5,a-phya-i1,2017-18,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,404,404.0 +4.485333333333333,4.49,a-phya-i1,2017-18,Springfield - M Marcus Kiley Middle,02810330, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,659,659.0 +1,1,a-phya-i1,2017-18,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240 +6.021333333333334,5,a-phya-i1,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,371,371.0 +6.581333333333333,5,a-phya-i1,2017-18,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,266,266.0 +6.426666666666667,5,a-phya-i1,2017-18,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,295,295.0 +5.733333333333333,5,a-phya-i1,2017-18,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +5.093333333333334,5,a-phya-i1,2017-18,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,545,545.0 +6.002666666666666,5,a-phya-i1,2017-18,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,749,374.5 +6.8533333333333335,5,a-phya-i1,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +0.3413333333333333,1,a-phya-i1,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1436,1436.0 +6.437333333333333,5,a-phya-i1,2017-18,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,293,293.0 +6.197333333333333,5,a-phya-i1,2017-18,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +6.72,5,a-phya-i1,2017-18,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,240,240.0 +6.1786666666666665,5,a-phya-i1,2017-18,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 1.0, 4.0, 1.0, 0.0, 6.0,2049,341.5 +1,1,a-phya-i1,2017-18,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211 +6.840888888888888,5,a-phya-i1,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.0, 1.0, 2.0, 1.0, 0.0, 1.0, 6.0,1304,217.33333333333334 +1,1,a-phya-i1,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73 +1,1,a-phya-i1,2017-18,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98 +7.733333333333333,5,a-phya-i1,2017-18,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,50,50.0 +1,1,a-phya-i1,2017-18,Springfield - Springfield Vocational Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92 +4.858666666666666,4.86,a-phya-i1,2017-18,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,589,589.0 +6.149333333333334,5,a-phya-i1,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,694,347.0 +1,1,a-phya-i1,2017-18,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318 +6.925333333333334,5,a-phya-i1,2017-18,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,403,201.5 +6.453333333333333,5,a-phya-i1,2017-18,Springfield - Warner,02810180, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +1,1,a-phya-i1,2017-18,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417 +5.568,5,a-phya-i1,2017-18,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,456,456.0 +6.608,5,a-phya-i1,2017-18,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,261,261.0 +6.8533333333333335,5,a-phya-i1,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +6.517333333333333,5,a-phya-i1,2017-18,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,278,278.0 +5.962666666666666,5,a-phya-i1,2017-18,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +6.293333333333333,5,a-phya-i1,2017-18,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,320,320.0 +5.71,5,a-phya-i1,2017-18,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,687,429.375 +4.394666666666667,4.39,a-phya-i1,2017-18,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,676,676.0 +7.450666666666667,5,a-phya-i1,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,103,103.0 +6.768,5,a-phya-i1,2017-18,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,231,231.0 +6.096,5,a-phya-i1,2017-18,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,357,357.0 +6.096,5,a-phya-i1,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +3.6,3.6,a-phya-i1,2017-18,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,825,825.0 +6.677333333333333,5,a-phya-i1,2017-18,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 +2.1386666666666665,2.14,a-phya-i1,2017-18,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1099,1099.0 +5.78962962962963,5,a-phya-i1,2017-18,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.9,373,414.44444444444446 +3.2,3.2,a-phya-i1,2017-18,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,900,900.0 +5.824,5,a-phya-i1,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,816,408.0 +4.863333333333333,4.86,a-phya-i1,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,941,588.125 +6.1866666666666665,5,a-phya-i1,2017-18,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +5.504,5,a-phya-i1,2017-18,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +5.973333333333334,5,a-phya-i1,2017-18,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,380,380.0 +4.976,4.98,a-phya-i1,2017-18,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,567,567.0 +6.730666666666667,5,a-phya-i1,2017-18,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,238,238.0 +5.8133333333333335,5,a-phya-i1,2017-18,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,328,410.0 +6.245333333333333,5,a-phya-i1,2017-18,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,329,329.0 +1,1,a-phya-i1,2017-18,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399 +5.566666666666666,5,a-phya-i1,2017-18,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.8,365,456.25 +5.898666666666666,5,a-phya-i1,2017-18,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,197,394.0 +4.949333333333334,4.95,a-phya-i1,2017-18,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,286,572.0 +4.842666666666666,4.84,a-phya-i1,2017-18,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,296,592.0 +-1.0,1,a-phya-i1,2017-18,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.1, 0.0, 0.3, 0.0, 0.4,675,1687.5 +1.3066666666666666,1.31,a-phya-i1,2017-18,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.0, 0.6,753,1255.0 +6.538666666666667,5,a-phya-i1,2017-18,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,274,274.0 +6.608,5,a-phya-i1,2017-18,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,261,261.0 +5.1466666666666665,5,a-phya-i1,2017-18,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,535,535.0 +5.221333333333333,5,a-phya-i1,2017-18,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,521,521.0 +6.784,5,a-phya-i1,2017-18,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,228,228.0 +6.64,5,a-phya-i1,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,255,255.0 +1,1,a-phya-i1,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1538 +4.8533333333333335,4.85,a-phya-i1,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,590,590.0 +4.117333333333334,4.12,a-phya-i1,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,728,728.0 +1,1,a-phya-i1,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470 +4.613333333333333,4.61,a-phya-i1,2017-18,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.4, 0.0, 0.0, 0.8, 0.0, 1.2,762,635.0 +4.337777777777778,4.34,a-phya-i1,2017-18,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.1, 0.9,618,686.6666666666666 +5.786666666666667,5,a-phya-i1,2017-18,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,332,415.0 +4.394666666666667,4.39,a-phya-i1,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,338,676.0 +4.682666666666667,4.68,a-phya-i1,2017-18,Taunton - Elizabeth Pole,02930027, 0.0, 0.3, 0.0, 0.8, 0.0, 0.0, 0.0, 1.0,622,622.0 +6.4,5,a-phya-i1,2017-18,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,240,300.0 +6.173333333333333,5,a-phya-i1,2017-18,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,274,342.5 +4.6866666666666665,4.69,a-phya-i1,2017-18,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,497,621.25 +4.553333333333334,4.55,a-phya-i1,2017-18,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,517,646.25 +4.722424242424243,4.72,a-phya-i1,2017-18,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.3, 0.0, 0.0, 0.8, 0.0, 1.1,676,614.5454545454545 +4.753333333333333,4.75,a-phya-i1,2017-18,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,487,608.75 +7.366666666666666,5,a-phya-i1,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,95,118.75 +1.8828985507246374,1.88,a-phya-i1,2017-18,Taunton - Taunton High,02930505, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 0.0, 2.3,2638,1146.9565217391305 +5.66,5,a-phya-i1,2017-18,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,351,438.75 +5.274666666666667,5,a-phya-i1,2017-18,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,511,511.0 +4.9013333333333335,4.9,a-phya-i1,2017-18,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,581,581.0 +4.768,4.77,a-phya-i1,2017-18,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,606,606.0 +6.752,5,a-phya-i1,2017-18,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,234,234.0 +6.522666666666667,5,a-phya-i1,2017-18,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,277,277.0 +3.104,3.1,a-phya-i1,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,918,918.0 +6.368,5,a-phya-i1,2017-18,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +6.645333333333333,5,a-phya-i1,2017-18,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +5.968,5,a-phya-i1,2017-18,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +2.7413333333333334,2.74,a-phya-i1,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,986,986.0 +5.594666666666667,5,a-phya-i1,2017-18,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +5.594666666666667,5,a-phya-i1,2017-18,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +5.184,5,a-phya-i1,2017-18,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,528,528.0 +4.165333333333334,4.17,a-phya-i1,2017-18,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,719,719.0 +5.781333333333333,5,a-phya-i1,2017-18,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,416,416.0 +7.3133333333333335,5,a-phya-i1,2017-18,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,103,128.75 +6.056,5,a-phya-i1,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 1.0, 2.0,729,364.5 +5.461333333333333,5,a-phya-i1,2017-18,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,476,476.0 +3.6373333333333333,3.64,a-phya-i1,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,409,818.0 +5.322666666666667,5,a-phya-i1,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,502,502.0 +4.058666666666666,4.06,a-phya-i1,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,739,739.0 +6.613333333333333,5,a-phya-i1,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,52,260.0 +6.1226666666666665,5,a-phya-i1,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +4.1866666666666665,4.19,a-phya-i1,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,715,715.0 +1,1,a-phya-i1,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46 +5.850666666666666,5,a-phya-i1,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +5.594666666666667,5,a-phya-i1,2017-18,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +5.429333333333333,5,a-phya-i1,2017-18,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,482,482.0 +5.957333333333334,5,a-phya-i1,2017-18,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +6.282666666666667,5,a-phya-i1,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +4.032,4.03,a-phya-i1,2017-18,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,372,744.0 +4.117333333333334,4.12,a-phya-i1,2017-18,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,364,728.0 +3.1893333333333334,3.19,a-phya-i1,2017-18,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,451,902.0 +3.0933333333333333,3.09,a-phya-i1,2017-18,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,460,920.0 +1,1,a-phya-i1,2017-18,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162 +4.341333333333333,4.34,a-phya-i1,2017-18,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,343,686.0 +4.0,4.0,a-phya-i1,2017-18,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,375,750.0 +2.912,2.91,a-phya-i1,2017-18,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,477,954.0 +-0.5546666666666666,1,a-phya-i1,2017-18,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,802,1604.0 +4.352,4.35,a-phya-i1,2017-18,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,342,684.0 +3.008,3.01,a-phya-i1,2017-18,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,468,936.0 +3.7226666666666666,3.72,a-phya-i1,2017-18,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,401,802.0 +-3.36,1,a-phya-i1,2017-18,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,2130,2130.0 +5.610666666666667,5,a-phya-i1,2017-18,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 +7.328,5,a-phya-i1,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,126,126.0 +2.432,2.43,a-phya-i1,2017-18,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1044,1044.0 +6.8213333333333335,5,a-phya-i1,2017-18,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,221,221.0 +2.517333333333333,2.52,a-phya-i1,2017-18,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1028,1028.0 +6.906666666666666,5,a-phya-i1,2017-18,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,205,205.0 +5.690666666666667,5,a-phya-i1,2017-18,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,433,433.0 +6.282666666666667,5,a-phya-i1,2017-18,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,161,322.0 +5.381333333333333,5,a-phya-i1,2017-18,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +1,1,a-phya-i1,2017-18,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356 +6.053333333333334,5,a-phya-i1,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,73,365.0 +6.407111111111111,5,a-phya-i1,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,448,298.6666666666667 +5.126666666666667,5,a-phya-i1,2017-18,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,431,538.75 +5.578666666666667,5,a-phya-i1,2017-18,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,454,454.0 +5.765333333333333,5,a-phya-i1,2017-18,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +3.9751111111111115,3.98,a-phya-i1,2017-18,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,1132,754.6666666666666 +5.653333333333333,5,a-phya-i1,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,440,440.0 +5.690666666666667,5,a-phya-i1,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +5.664,5,a-phya-i1,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,438,438.0 +5.269333333333333,5,a-phya-i1,2017-18,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,512,512.0 +4.634666666666667,4.63,a-phya-i1,2017-18,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,631,631.0 +6.418666666666667,5,a-phya-i1,2017-18,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,593,296.5 +5.749333333333333,5,a-phya-i1,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,422,422.0 +7.578666666666667,5,a-phya-i1,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,79,79.0 +5.12,5,a-phya-i1,2017-18,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,1620,540.0 +5.696,5,a-phya-i1,2017-18,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,432,432.0 +5.802666666666667,5,a-phya-i1,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +5.514666666666667,5,a-phya-i1,2017-18,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +6.213333333333333,5,a-phya-i1,2017-18,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +4.922666666666666,4.92,a-phya-i1,2017-18,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,577,577.0 +5.386666666666667,5,a-phya-i1,2017-18,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,490,490.0 +1,1,a-phya-i1,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63 +4.128,4.13,a-phya-i1,2017-18,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,726,726.0 +5.557333333333333,5,a-phya-i1,2017-18,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,458,458.0 +6.362666666666667,5,a-phya-i1,2017-18,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,307,307.0 +6.1786666666666665,5,a-phya-i1,2017-18,Watertown - Hosmer,03140020, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,683,341.5 +5.776,5,a-phya-i1,2017-18,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +1,1,a-phya-i1,2017-18,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,674 +5.189333333333333,5,a-phya-i1,2017-18,Watertown - Watertown Middle,03140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,527,527.0 +1,1,a-phya-i1,2017-18,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542 +5.941333333333334,5,a-phya-i1,2017-18,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,386,386.0 +1,1,a-phya-i1,2017-18,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281 +1,1,a-phya-i1,2017-18,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,856 +1,1,a-phya-i1,2017-18,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,637 +4.6552380952380945,4.66,a-phya-i1,2017-18,Webster - Bartlett High School,03160505, 0.0, 0.2, 0.0, 0.0, 0.5, 0.0, 0.0, 0.7,439,627.1428571428572 +1.6990476190476183,1.7,a-phya-i1,2017-18,Webster - Park Avenue Elementary,03160015, 0.0, 0.2, 0.5, 0.0, 0.0, 0.0, 0.0, 0.7,827,1181.4285714285716 +3.512380952380952,3.51,a-phya-i1,2017-18,Webster - Webster Middle School,03160315, 0.0, 0.2, 0.0, 0.0, 0.0, 0.5, 0.0, 0.7,589,841.4285714285714 +6.426666666666667,5,a-phya-i1,2017-18,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,236,295.0 +5.795555555555555,5,a-phya-i1,2017-18,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,248,413.33333333333337 +6.033333333333333,5,a-phya-i1,2017-18,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,295,368.75 +6.367179487179487,5,a-phya-i1,2017-18,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,398,306.15384615384613 +5.1657142857142855,5,a-phya-i1,2017-18,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.1, 0.0, 0.7,372,531.4285714285714 +5.1276190476190475,5,a-phya-i1,2017-18,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,377,538.5714285714286 +5.446666666666666,5,a-phya-i1,2017-18,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.2, 0.6, 0.0, 0.8,383,478.75 +-2.026666666666667,1,a-phya-i1,2017-18,Wellesley - Wellesley Middle,03170305, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,1128,1880.0 +4.015238095238096,4.02,a-phya-i1,2017-18,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.4, 0.7, 0.0, 2.1,1569,747.1428571428571 +7.402666666666667,5,a-phya-i1,2017-18,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,112,112.0 +5.754666666666667,5,a-phya-i1,2017-18,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 +5.408,5,a-phya-i1,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,486,486.0 +6.464,5,a-phya-i1,2017-18,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,288,288.0 +6.682666666666667,5,a-phya-i1,2017-18,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +7.248,5,a-phya-i1,2017-18,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,141,141.0 +4.661333333333333,4.66,a-phya-i1,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,626,626.0 +1,1,a-phya-i1,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,8 +6.698666666666667,5,a-phya-i1,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,122,244.0 +5.504,5,a-phya-i1,2017-18,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,234,468.0 +5.546666666666667,5,a-phya-i1,2017-18,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,460,460.0 +5.450666666666667,5,a-phya-i1,2017-18,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,239,478.0 +7.141333333333334,5,a-phya-i1,2017-18,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,161,161.0 +6.158222222222222,5,a-phya-i1,2017-18,West Springfield - Philip G Coburn,03320007, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,518,345.3333333333333 +5.450666666666667,5,a-phya-i1,2017-18,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,239,478.0 +1.4186666666666667,1.42,a-phya-i1,2017-18,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1234,1234.0 +3.2053333333333334,3.21,a-phya-i1,2017-18,West Springfield - West Springfield Middle,03320305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,899,899.0 +6.197333333333333,5,a-phya-i1,2017-18,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,338,338.0 +5.333333333333333,5,a-phya-i1,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,500,500.0 +6.874666666666666,5,a-phya-i1,2017-18,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,422,211.0 +5.506666666666667,5,a-phya-i1,2017-18,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,935,467.5 +4.8,4.8,a-phya-i1,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,600,600.0 +1.968,1.97,a-phya-i1,2017-18,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1131,1131.0 +6.810666666666667,5,a-phya-i1,2017-18,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,223,223.0 +6.954666666666666,5,a-phya-i1,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,196,196.0 +6.677333333333333,5,a-phya-i1,2017-18,Westfield - Franklin Ave,03250015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,248,248.0 +6.010666666666666,5,a-phya-i1,2017-18,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,373,373.0 +5.978666666666666,5,a-phya-i1,2017-18,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +4.394666666666667,4.39,a-phya-i1,2017-18,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,676,676.0 +5.802666666666667,5,a-phya-i1,2017-18,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,412,412.0 +7.141333333333334,5,a-phya-i1,2017-18,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,161,161.0 +4.864,4.86,a-phya-i1,2017-18,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,588,588.0 +5.733333333333333,5,a-phya-i1,2017-18,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,425,425.0 +4.648,4.65,a-phya-i1,2017-18,Westfield - Westfield High,03250505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1257,628.5 +5.1146666666666665,5,a-phya-i1,2017-18,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +6.042666666666666,5,a-phya-i1,2017-18,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,367,367.0 +4.8533333333333335,4.85,a-phya-i1,2017-18,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,590,590.0 +6.448,5,a-phya-i1,2017-18,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,291,291.0 +6.101333333333334,5,a-phya-i1,2017-18,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,356,356.0 +6.1706666666666665,5,a-phya-i1,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,343,343.0 +7.413333333333333,5,a-phya-i1,2017-18,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,110,110.0 +6.245333333333333,5,a-phya-i1,2017-18,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +6.261333333333333,5,a-phya-i1,2017-18,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.6, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0,326,326.0 +4.549333333333333,4.55,a-phya-i1,2017-18,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,647,647.0 +1.9022222222222227,1.9,a-phya-i1,2017-18,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1715,1143.3333333333333 +7.349333333333333,5,a-phya-i1,2017-18,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,122,122.0 +5.986666666666666,5,a-phya-i1,2017-18,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,302,377.5 +3.6666666666666665,3.67,a-phya-i1,2017-18,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,325,812.5 +3.3733333333333335,3.37,a-phya-i1,2017-18,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,694,867.5 +4.773333333333333,4.77,a-phya-i1,2017-18,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,484,605.0 +6.013333333333334,5,a-phya-i1,2017-18,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,298,372.5 +6.010666666666666,5,a-phya-i1,2017-18,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +5.296,5,a-phya-i1,2017-18,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,507,507.0 +5.066666666666666,5,a-phya-i1,2017-18,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,550,550.0 +6.933333333333334,5,a-phya-i1,2017-18,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,200,200.0 +6.666666666666667,5,a-phya-i1,2017-18,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,250,250.0 +3.7706666666666666,3.77,a-phya-i1,2017-18,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,793,793.0 +6.437333333333333,5,a-phya-i1,2017-18,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,293,293.0 +6.826666666666667,5,a-phya-i1,2017-18,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,220,220.0 +4.182857142857142,4.18,a-phya-i1,2017-18,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,1002,715.7142857142858 +7.509333333333333,5,a-phya-i1,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,46,92.0 +6.304,5,a-phya-i1,2017-18,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,318,318.0 +2.631111111111111,2.63,a-phya-i1,2017-18,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,906,1006.6666666666666 +4.725333333333333,4.73,a-phya-i1,2017-18,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,307,614.0 +5.376,5,a-phya-i1,2017-18,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,246,492.0 +5.941333333333334,5,a-phya-i1,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,193,386.0 +1,1,a-phya-i1,2017-18,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193 +2.7733333333333334,2.77,a-phya-i1,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.4, 0.0, 0.5, 0.0, 0.9,882,980.0 +5.354666666666667,5,a-phya-i1,2017-18,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,248,496.0 +5.834666666666666,5,a-phya-i1,2017-18,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,203,406.0 +4.256,4.26,a-phya-i1,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,351,702.0 +5.024,5,a-phya-i1,2017-18,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,279,558.0 +-2.1333333333333333,1,a-phya-i1,2017-18,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1900,1900.0 +4.608,4.61,a-phya-i1,2017-18,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,318,636.0 +7.253333333333333,5,a-phya-i1,2017-18,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,140,140.0 +6.094545454545455,5,a-phya-i1,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,393,357.27272727272725 +6.42909090909091,5,a-phya-i1,2017-18,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,324,294.5454545454545 +5.847272727272728,5,a-phya-i1,2017-18,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,444,403.6363636363636 +5.275151515151515,5,a-phya-i1,2017-18,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,562,510.9090909090909 +5.886060606060607,5,a-phya-i1,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,436,396.3636363636363 +2.3175757575757587,2.32,a-phya-i1,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,1172,1065.4545454545453 +5.212121212121213,5,a-phya-i1,2017-18,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,575,522.7272727272726 +4.656,4.66,a-phya-i1,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1254,627.0 +7.1306666666666665,5,a-phya-i1,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,163,163.0 +5.562666666666667,5,a-phya-i1,2017-18,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,457,457.0 +7.1466666666666665,5,a-phya-i1,2017-18,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,160,160.0 +6.384,5,a-phya-i1,2017-18,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,303,303.0 +6.16,5,a-phya-i1,2017-18,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +6.682666666666667,5,a-phya-i1,2017-18,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +6.965333333333334,5,a-phya-i1,2017-18,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,194,194.0 +5.701333333333333,5,a-phya-i1,2017-18,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,862,431.0 +5.770666666666667,5,a-phya-i1,2017-18,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,836,418.0 +5.957333333333334,5,a-phya-i1,2017-18,Wilmington - Woburn Street,03420020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +6.362666666666667,5,a-phya-i1,2017-18,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,307,307.0 +1,1,a-phya-i1,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29 +6.378666666666667,5,a-phya-i1,2017-18,Winchendon - Murdock High School,03430515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +1,1,a-phya-i1,2017-18,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273 +6.432,5,a-phya-i1,2017-18,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,294,294.0 +1,1,a-phya-i1,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79 +5.754666666666667,5,a-phya-i1,2017-18,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 +5.850666666666666,5,a-phya-i1,2017-18,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +5.12,5,a-phya-i1,2017-18,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,540,540.0 +4.049777777777778,4.05,a-phya-i1,2017-18,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1111,740.6666666666666 +5.968,5,a-phya-i1,2017-18,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,381,381.0 +5.573333333333333,5,a-phya-i1,2017-18,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,455,455.0 +3.76156862745098,3.76,a-phya-i1,2017-18,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.9, 1.7,1351,794.7058823529412 +5.578666666666667,5,a-phya-i1,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,454,454.0 +5.488,5,a-phya-i1,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,471,471.0 +4.72,4.72,a-phya-i1,2017-18,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,615,615.0 +5.429333333333333,5,a-phya-i1,2017-18,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,482,482.0 +5.712,5,a-phya-i1,2017-18,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +5.205333333333333,5,a-phya-i1,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,524,524.0 +6.8533333333333335,5,a-phya-i1,2017-18,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +7.181333333333333,5,a-phya-i1,2017-18,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,307,153.5 +5.424,5,a-phya-i1,2017-18,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,483,483.0 +6.896,5,a-phya-i1,2017-18,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,207,207.0 +6.272,5,a-phya-i1,2017-18,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,324,324.0 +6.677333333333333,5,a-phya-i1,2017-18,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,248,248.0 +7.034666666666666,5,a-phya-i1,2017-18,Woburn - Shamrock,03470043, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,362,181.0 +4.488,4.49,a-phya-i1,2017-18,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1317,658.5 +7.029333333333334,5,a-phya-i1,2017-18,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,182,182.0 +4.9013333333333335,4.9,a-phya-i1,2017-18,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,581,581.0 +4.677333333333333,4.68,a-phya-i1,2017-18,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,623,623.0 +2.485333333333333,2.49,a-phya-i1,2017-18,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1034,1034.0 +6.437333333333333,5,a-phya-i1,2017-18,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +1,1,a-phya-i1,2017-18,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376 +6.666666666666667,5,a-phya-i1,2017-18,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,500,250.0 +6.456888888888889,5,a-phya-i1,2017-18,Worcester - Chandler Magnet,03480052, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 1.5,434,289.3333333333333 +5.472,5,a-phya-i1,2017-18,Worcester - City View,03480053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 +5.056,5,a-phya-i1,2017-18,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,552,552.0 +6.613333333333333,5,a-phya-i1,2017-18,Worcester - Clark St Community,03480055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,260,260.0 +5.296,5,a-phya-i1,2017-18,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,507,507.0 +3.8426666666666667,3.84,a-phya-i1,2017-18,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1559,779.5 +5.456,5,a-phya-i1,2017-18,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +5.818666666666667,5,a-phya-i1,2017-18,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +1,1,a-phya-i1,2017-18,Worcester - Forest Grove Middle,03480415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978 +6.736,5,a-phya-i1,2017-18,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,237,237.0 +4.965333333333334,4.97,a-phya-i1,2017-18,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +5.52,5,a-phya-i1,2017-18,Worcester - Goddard School/Science Technical,03480100, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +5.936,5,a-phya-i1,2017-18,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,387,387.0 +1,1,a-phya-i1,2017-18,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,529 +6.421333333333333,5,a-phya-i1,2017-18,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,296,296.0 +5.850666666666666,5,a-phya-i1,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +6.48,5,a-phya-i1,2017-18,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,285,285.0 +6.56,5,a-phya-i1,2017-18,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +6.192,5,a-phya-i1,2017-18,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 +6.773333333333333,5,a-phya-i1,2017-18,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,230,230.0 +5.216,5,a-phya-i1,2017-18,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,522,522.0 +6.496,5,a-phya-i1,2017-18,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,564,282.0 +4.554666666666667,4.55,a-phya-i1,2017-18,Worcester - North High,03480515, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1292,646.0 +6.013333333333334,5,a-phya-i1,2017-18,Worcester - Quinsigamond,03480210, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,745,372.5 +5.722666666666667,5,a-phya-i1,2017-18,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,427,427.0 +4.410666666666667,4.41,a-phya-i1,2017-18,Worcester - Roosevelt,03480220, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,673,673.0 +0.496,1,a-phya-i1,2017-18,Worcester - South High Community,03480520, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1407,1407.0 +6.974814814814815,5,a-phya-i1,2017-18,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 2.5, 1.0, 1.0, 0.0, 4.5,865,192.22222222222223 +5.9093333333333335,5,a-phya-i1,2017-18,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,392,392.0 +5.968,5,a-phya-i1,2017-18,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,381,381.0 +5.578666666666667,5,a-phya-i1,2017-18,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,454,454.0 +1,1,a-phya-i1,2017-18,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,239 +5.141333333333334,5,a-phya-i1,2017-18,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,536,536.0 +6.378666666666667,5,a-phya-i1,2017-18,Worcester - Wawecus Road School,03480026, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,152,304.0 +6.026666666666666,5,a-phya-i1,2017-18,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,370,370.0 +4.768,4.77,a-phya-i1,2017-18,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,606,606.0 +5.8453333333333335,5,a-phya-i1,2017-18,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +5.810666666666667,5,a-phya-i1,2017-18,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,821,410.5 +4.296,4.3,a-phya-i1,2017-18,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1389,694.5 +7.669333333333333,5,a-phya-i1,2017-18,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,62,62.0 +5.514666666666667,5,a-phya-i1,2017-18,Wrentham - Charles E Roderick,03500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +6.281481481481482,5,a-phya-i1,2017-18,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,580,322.22222222222223 +4.2,4.2,a-phya-i1,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1425,712.5 +6.794666666666667,5,a-phya-i1,2016-17,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,452,226.0 +4.906666666666666,4.91,a-phya-i1,2016-17,Abington - Beaver Brook Elementary School,00010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,580,580.0 +6.917333333333334,5,a-phya-i1,2016-17,Abington - Center Elementary School,00010002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,203,203.0 +6.250666666666667,5,a-phya-i1,2016-17,Abington - Frolio Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 +1,1,a-phya-i1,2016-17,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353 +1,1,a-phya-i1,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527 +3.029333333333333,3.03,a-phya-i1,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 1.6, 0.4, 0.0, 2.0,1864,932.0 +5.7973333333333334,5,a-phya-i1,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,413,413.0 +5.568,5,a-phya-i1,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.2, 0.0, 0.8, 0.0, 1.0,456,456.0 +1,1,a-phya-i1,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97 +5.594666666666667,5,a-phya-i1,2016-17,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +5.466666666666667,5,a-phya-i1,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,475,475.0 +5.242666666666667,5,a-phya-i1,2016-17,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,517,517.0 +5.8453333333333335,5,a-phya-i1,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 1.0,404,404.0 +4.963333333333333,4.96,a-phya-i1,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 1.6,911,569.375 +5.1306666666666665,5,a-phya-i1,2016-17,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,538,538.0 +5.776,5,a-phya-i1,2016-17,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +6.698666666666667,5,a-phya-i1,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,244,244.0 +4.682666666666667,4.68,a-phya-i1,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,622,622.0 +5.594666666666667,5,a-phya-i1,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +2.9226666666666667,2.92,a-phya-i1,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,952,952.0 +7.1946666666666665,5,a-phya-i1,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,151,151.0 +4.741333333333333,4.74,a-phya-i1,2016-17,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1222,611.0 +5.002666666666666,5,a-phya-i1,2016-17,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,562,562.0 +5.946666666666666,5,a-phya-i1,2016-17,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,385,385.0 +6.437333333333333,5,a-phya-i1,2016-17,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,293,293.0 +6.245333333333333,5,a-phya-i1,2016-17,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +4.8053333333333335,4.81,a-phya-i1,2016-17,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,599,599.0 +5.989333333333334,5,a-phya-i1,2016-17,Agawam - Robinson Park,00050025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,377,377.0 +6.272,5,a-phya-i1,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +5.930666666666666,5,a-phya-i1,2016-17,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,388,388.0 +4.04,4.04,a-phya-i1,2016-17,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,594,742.5 +6.346666666666667,5,a-phya-i1,2016-17,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,31,310.0 +4.378666666666667,4.38,a-phya-i1,2016-17,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,679,679.0 +5.557333333333333,5,a-phya-i1,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,458,458.0 +5.8453333333333335,5,a-phya-i1,2016-17,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,404,404.0 +6.213333333333333,5,a-phya-i1,2016-17,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +5.818666666666667,5,a-phya-i1,2016-17,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +1.8266666666666667,1.83,a-phya-i1,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,926,1157.5 +5.696,5,a-phya-i1,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,432,432.0 +4.892903225806452,4.89,a-phya-i1,2016-17,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.1, 2.0, 1.0, 0.0, 3.1,1806,582.5806451612902 +5.420606060606061,5,a-phya-i1,2016-17,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,532,483.63636363636357 +4.8373333333333335,4.84,a-phya-i1,2016-17,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,593,593.0 +5.28,5,a-phya-i1,2016-17,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,561,509.99999999999994 +6.152727272727273,5,a-phya-i1,2016-17,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,381,346.3636363636363 +5.503030303030304,5,a-phya-i1,2016-17,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,515,468.18181818181813 +7.646060606060606,5,a-phya-i1,2016-17,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,73,66.36363636363636 +5.60969696969697,5,a-phya-i1,2016-17,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.1, 0.5, 0.5, 0.0, 1.1,493,448.18181818181813 +4.916363636363637,4.92,a-phya-i1,2016-17,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,636,578.1818181818181 +-14.346666666666666,1,a-phya-i1,2016-17,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,419,4190.0 +6.362666666666667,5,a-phya-i1,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,307,307.0 +4.56,4.56,a-phya-i1,2016-17,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1290,645.0 +5.461333333333333,5,a-phya-i1,2016-17,Arlington - Brackett,00100010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,476,476.0 +5.514666666666667,5,a-phya-i1,2016-17,Arlington - Cyrus E Dallin,00100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +5.594666666666667,5,a-phya-i1,2016-17,Arlington - Hardy,00100030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +5.733333333333333,5,a-phya-i1,2016-17,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +5.888,5,a-phya-i1,2016-17,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +1,1,a-phya-i1,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,70 +4.778666666666667,4.78,a-phya-i1,2016-17,Arlington - Ottoson Middle,00100410, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1208,604.0 +6.528,5,a-phya-i1,2016-17,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,276,276.0 +5.514666666666667,5,a-phya-i1,2016-17,Arlington - Thompson,00100050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +5.141333333333334,5,a-phya-i1,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,536,536.0 +7.1466666666666665,5,a-phya-i1,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,160,160.0 +4.256,4.26,a-phya-i1,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,702,702.0 +4.96,4.96,a-phya-i1,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,570,570.0 +6.016,5,a-phya-i1,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,372,372.0 +5.354666666666667,5,a-phya-i1,2016-17,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,744,496.0 +4.8693333333333335,4.87,a-phya-i1,2016-17,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,587,587.0 +4.693333333333333,4.69,a-phya-i1,2016-17,Ashland - David Mindess,00140015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,620,620.0 +6.49939393939394,5,a-phya-i1,2016-17,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.6, 1.6, 0.0, 0.0, 2.2,619,281.3636363636363 +6.253333333333333,5,a-phya-i1,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,131,327.5 +4.078222222222222,4.08,a-phya-i1,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1103,735.3333333333334 +4.922666666666666,4.92,a-phya-i1,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,577,577.0 +6.0906666666666665,5,a-phya-i1,2016-17,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,358,358.0 +5.936,5,a-phya-i1,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,387,387.0 +7.232,5,a-phya-i1,2016-17,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,144,144.0 +6.024888888888889,5,a-phya-i1,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,1111,370.3333333333333 +5.861818181818181,5,a-phya-i1,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,441,400.9090909090909 +1,1,a-phya-i1,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,63 +2.757647058823529,2.76,a-phya-i1,2016-17,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.6, 0.0, 1.1, 0.0, 1.7,1671,982.9411764705883 +5.323636363636364,5,a-phya-i1,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,552,501.81818181818176 +-1.9733333333333334,1,a-phya-i1,2016-17,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,187,1870.0 +5.735757575757576,5,a-phya-i1,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,467,424.5454545454545 +5.852121212121212,5,a-phya-i1,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,443,402.7272727272727 +6.089696969696971,5,a-phya-i1,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,394,358.18181818181813 +4.785454545454546,4.79,a-phya-i1,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,663,602.7272727272726 +5.823030303030304,5,a-phya-i1,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,449,408.18181818181813 +5.192727272727272,5,a-phya-i1,2016-17,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,579,526.3636363636364 +4.672,4.67,a-phya-i1,2016-17,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,624,624.0 +3.76,3.76,a-phya-i1,2016-17,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,795,795.0 +6.474666666666667,5,a-phya-i1,2016-17,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,286,286.0 +6.501333333333333,5,a-phya-i1,2016-17,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,281,281.0 +5.136,5,a-phya-i1,2016-17,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,537,537.0 +6.298666666666667,5,a-phya-i1,2016-17,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,319,319.0 +5.8933333333333335,5,a-phya-i1,2016-17,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,395,395.0 +5.818666666666667,5,a-phya-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +5.8933333333333335,5,a-phya-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,395,395.0 +5.925333333333334,5,a-phya-i1,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,389,389.0 +5.184,5,a-phya-i1,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,528,528.0 +6.0096,5,a-phya-i1,2016-17,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 1.0, 5.0,1866,373.2 +5.989333333333334,5,a-phya-i1,2016-17,Barnstable - Barnstable Intermediate School,00200315, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,754,377.0 +5.728,5,a-phya-i1,2016-17,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,852,426.0 +1,1,a-phya-i1,2016-17,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +7.328,5,a-phya-i1,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,126,126.0 +6.101333333333334,5,a-phya-i1,2016-17,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,356,356.0 +6.613333333333333,5,a-phya-i1,2016-17,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,260,260.0 +6.432,5,a-phya-i1,2016-17,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,441,294.0 +6.453333333333333,5,a-phya-i1,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,290,290.0 +5.9093333333333335,5,a-phya-i1,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,392,392.0 +1,1,a-phya-i1,2016-17,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888 +1,1,a-phya-i1,2016-17,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556 +1,1,a-phya-i1,2016-17,Bedford - Lt Elezer Davis,00230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,598 +1,1,a-phya-i1,2016-17,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566 +6.1066666666666665,5,a-phya-i1,2016-17,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,710,355.0 +5.944888888888889,5,a-phya-i1,2016-17,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,578,385.3333333333333 +7.093333333333334,5,a-phya-i1,2016-17,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,170,170.0 +5.8933333333333335,5,a-phya-i1,2016-17,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,395,395.0 +6.218666666666667,5,a-phya-i1,2016-17,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,501,334.0 +7.488,5,a-phya-i1,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,96,96.0 +4.058666666666666,4.06,a-phya-i1,2016-17,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,739,739.0 +4.208,4.21,a-phya-i1,2016-17,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,711,711.0 +7.773333333333333,5,a-phya-i1,2016-17,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,34,42.5 +7.1066666666666665,5,a-phya-i1,2016-17,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,335,167.5 +6.176,5,a-phya-i1,2016-17,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,342,342.0 +3.505777777777778,3.51,a-phya-i1,2016-17,Belmont - Belmont High,00260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 1.5,1264,842.6666666666666 +6.064,5,a-phya-i1,2016-17,Belmont - Daniel Butler,00260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,363,363.0 +6.010666666666666,5,a-phya-i1,2016-17,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,373,373.0 +5.5580952380952375,5,a-phya-i1,2016-17,Belmont - Roger E Wellington,00260035, 0.0, 0.4, 0.0, 0.0, 1.0, 0.0, 0.0, 1.4,641,457.8571428571429 +5.504,5,a-phya-i1,2016-17,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,468,468.0 +4.381333333333333,4.38,a-phya-i1,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 0.0, 1.0, 0.0, 0.0, 0.6, 0.4, 0.0, 2.0,1357,678.5 +6.149333333333334,5,a-phya-i1,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,347,347.0 +5.832727272727273,5,a-phya-i1,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 1.1,447,406.3636363636363 +5.258666666666667,5,a-phya-i1,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,257,514.0 +2.272,2.27,a-phya-i1,2016-17,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,537,1074.0 +3.8186666666666667,3.82,a-phya-i1,2016-17,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,392,784.0 +1,1,a-phya-i1,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356 +5.082666666666666,5,a-phya-i1,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,547,547.0 +5.936,5,a-phya-i1,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,387,387.0 +6.1226666666666665,5,a-phya-i1,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,352,352.0 +6.986666666666666,5,a-phya-i1,2016-17,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,190,190.0 +4.8853333333333335,4.89,a-phya-i1,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,584,584.0 +5.2,5,a-phya-i1,2016-17,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,525,525.0 +3.4311111111111114,3.43,a-phya-i1,2016-17,Beverly - Beverly High,00300505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,1285,856.6666666666666 +2.6186666666666665,2.62,a-phya-i1,2016-17,Beverly - Briscoe Middle,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1009,1009.0 +6.0906666666666665,5,a-phya-i1,2016-17,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,358,358.0 +5.525333333333333,5,a-phya-i1,2016-17,Beverly - Cove Elementary,00300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +5.968,5,a-phya-i1,2016-17,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,381,381.0 +7.402666666666667,5,a-phya-i1,2016-17,Beverly - McKeown School,00300002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,112,112.0 +5.914666666666666,5,a-phya-i1,2016-17,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +4.330666666666667,4.33,a-phya-i1,2016-17,Billerica - Billerica Memorial High School,00310505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1376,688.0 +1,1,a-phya-i1,2016-17,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197 +6.384,5,a-phya-i1,2016-17,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,303,303.0 +5.456,5,a-phya-i1,2016-17,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,477,477.0 +7.144,5,a-phya-i1,2016-17,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,321,160.5 +1,1,a-phya-i1,2016-17,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536 +6.338666666666667,5,a-phya-i1,2016-17,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,623,311.5 +1,1,a-phya-i1,2016-17,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507 +6.554666666666667,5,a-phya-i1,2016-17,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,542,271.0 +1,1,a-phya-i1,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1206 +6.442666666666667,5,a-phya-i1,2016-17,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,292,292.0 +5.610666666666667,5,a-phya-i1,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 +5.696,5,a-phya-i1,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,432,432.0 +4.8853333333333335,4.89,a-phya-i1,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,292,584.0 +6.490666666666667,5,a-phya-i1,2016-17,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,283,283.0 +3.376,3.38,a-phya-i1,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,867,867.0 +5.621333333333333,5,a-phya-i1,2016-17,Boston - Another Course To College,00350541, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,223,446.0 +6.304,5,a-phya-i1,2016-17,Boston - Baldwin Early Learning Center,00350003, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,159,318.0 +1,1,a-phya-i1,2016-17,Boston - Beethoven,00350021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329 +6.44,5,a-phya-i1,2016-17,Boston - Blackstone,00350390, 0.0, 0.5, 1.0, 0.0, 0.0, 0.5, 0.0, 2.0,585,292.5 +1,1,a-phya-i1,2016-17,Boston - Boston Adult Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,197 +5.616,5,a-phya-i1,2016-17,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +1,1,a-phya-i1,2016-17,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193 +4.666666666666667,4.67,a-phya-i1,2016-17,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,500,625.0 +1,1,a-phya-i1,2016-17,Boston - Boston International High School,00350507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378 +3.728,3.73,a-phya-i1,2016-17,Boston - Boston Latin,00350560, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,2403,801.0 +3.472,3.47,a-phya-i1,2016-17,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1698,849.0 +6.421333333333333,5,a-phya-i1,2016-17,Boston - Boston Teachers Union School,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +5.116444444444444,5,a-phya-i1,2016-17,Boston - Brighton High,00350505, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,811,540.6666666666666 +7.922666666666666,5,a-phya-i1,2016-17,Boston - Carter Developmental Center,00350036, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,29,14.5 +5.296,5,a-phya-i1,2016-17,Boston - Charles H Taylor,00350054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,507,507.0 +5.024,5,a-phya-i1,2016-17,Boston - Charles Sumner,00350052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,558,558.0 +3.1466666666666665,3.15,a-phya-i1,2016-17,Boston - Charlestown High,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,910,910.0 +6.213333333333333,5,a-phya-i1,2016-17,Boston - Clarence R Edwards Middle,00350430, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,335,335.0 +1,1,a-phya-i1,2016-17,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,44 +6.053333333333334,5,a-phya-i1,2016-17,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,365,365.0 +5.472,5,a-phya-i1,2016-17,Boston - Curley K-8 School,00350020, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,948,474.0 +1,1,a-phya-i1,2016-17,Boston - Curtis Guild,00350062, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309 +6.976,5,a-phya-i1,2016-17,Boston - Dante Alighieri Montessori School,00350066, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,96,192.0 +1,1,a-phya-i1,2016-17,Boston - David A Ellis,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,438 +5.253333333333333,5,a-phya-i1,2016-17,Boston - Dearborn,00350074, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,309,515.0 +5.589333333333333,5,a-phya-i1,2016-17,Boston - Dennis C Haley,00350077, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,452,452.0 +4.096,4.1,a-phya-i1,2016-17,Boston - Donald Mckay,00350080, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,732,732.0 +1,1,a-phya-i1,2016-17,Boston - Dorchester Academy,00350651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,99 +6.992,5,a-phya-i1,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +7.421333333333333,5,a-phya-i1,2016-17,Boston - Dr. William Henderson Lower,00350266, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,217,108.5 +1,1,a-phya-i1,2016-17,Boston - Dr. William Henderson Upper,00350426, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505 +1,1,a-phya-i1,2016-17,Boston - ELC - West Zone,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114 +7.093333333333334,5,a-phya-i1,2016-17,Boston - East Boston Early Childhood Center,00350009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,170,170.0 +4.010666666666666,4.01,a-phya-i1,2016-17,Boston - East Boston High,00350530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1496,748.0 +4.330666666666667,4.33,a-phya-i1,2016-17,Boston - Edison K-8,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,688,688.0 +1,1,a-phya-i1,2016-17,Boston - Edward Everett,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278 +5.024,5,a-phya-i1,2016-17,Boston - Eliot Elementary,00350096, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,558,558.0 +1,1,a-phya-i1,2016-17,Boston - Ellis Mendell,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244 +5.2,5,a-phya-i1,2016-17,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,525,525.0 +4.16,4.16,a-phya-i1,2016-17,Boston - Fenway High School,00350540, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,360,720.0 +6.274285714285714,5,a-phya-i1,2016-17,Boston - Franklin D Roosevelt,00350116, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 1.4,453,323.5714285714286 +5.8613333333333335,5,a-phya-i1,2016-17,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +6.026666666666666,5,a-phya-i1,2016-17,Boston - George H Conley,00350122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,222,370.0 +1,1,a-phya-i1,2016-17,Boston - Greater Egleston Community High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225 +5.36,5,a-phya-i1,2016-17,Boston - Harvard-Kent,00350200, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,495,495.0 +1,1,a-phya-i1,2016-17,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187 +5.450666666666667,5,a-phya-i1,2016-17,Boston - Henry Grew,00350135, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,239,478.0 +6.1546666666666665,5,a-phya-i1,2016-17,Boston - Higginson,00350015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,173,346.0 +6.1066666666666665,5,a-phya-i1,2016-17,Boston - Higginson/Lewis K-8,00350377, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +7.52,5,a-phya-i1,2016-17,Boston - Horace Mann School for the Deaf,00350750, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,90,90.0 +1,1,a-phya-i1,2016-17,Boston - Hugh Roe O'Donnell,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272 +5.96,5,a-phya-i1,2016-17,Boston - Jackson Mann,00350013, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,765,382.5 +5.744,5,a-phya-i1,2016-17,Boston - James Condon Elementary,00350146, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,846,423.0 +4.842666666666666,4.84,a-phya-i1,2016-17,Boston - James J Chittick,00350154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,296,592.0 +5.8773333333333335,5,a-phya-i1,2016-17,Boston - James Otis,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +6.021333333333334,5,a-phya-i1,2016-17,Boston - James P Timilty Middle,00350485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,371,371.0 +4.597333333333333,4.6,a-phya-i1,2016-17,Boston - James W Hennigan,00350153, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,638,638.0 +5.392,5,a-phya-i1,2016-17,Boston - Jeremiah E Burke High,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,489,489.0 +1,1,a-phya-i1,2016-17,Boston - John D Philbrick,00350172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,172 +4.604444444444444,4.6,a-phya-i1,2016-17,Boston - John F Kennedy,00350166, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,382,636.6666666666667 +5.632,5,a-phya-i1,2016-17,Boston - John W McCormack,00350179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,444,444.0 +1,1,a-phya-i1,2016-17,Boston - John Winthrop,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,329 +4.234666666666667,4.23,a-phya-i1,2016-17,Boston - Joseph J Hurley,00350182, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,353,706.0 +6.296,5,a-phya-i1,2016-17,Boston - Joseph Lee,00350183, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,639,319.5 +6.5955555555555545,5,a-phya-i1,2016-17,Boston - Joseph P Manning,00350184, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,158,263.33333333333337 +5.958095238095238,5,a-phya-i1,2016-17,Boston - Joseph P Tynan,00350181, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.7,268,382.8571428571429 +5.722666666666667,5,a-phya-i1,2016-17,Boston - Josiah Quincy,00350286, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,854,427.0 +5.68,5,a-phya-i1,2016-17,Boston - Joyce Kilmer,00350190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +5.386666666666667,5,a-phya-i1,2016-17,Boston - King K-8,00350376, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,490,490.0 +1,1,a-phya-i1,2016-17,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,187 +5.232,5,a-phya-i1,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 +4.896,4.9,a-phya-i1,2016-17,Boston - Lyndon,00350262, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +6.517333333333333,5,a-phya-i1,2016-17,Boston - Lyon K-8,00350004, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,139,278.0 +1,1,a-phya-i1,2016-17,Boston - Lyon Upper 9-12,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126 +5.757333333333333,5,a-phya-i1,2016-17,Boston - Madison Park High,00350537, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,841,420.5 +4.949333333333334,4.95,a-phya-i1,2016-17,Boston - Manassah E Bradley,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,286,572.0 +4.970666666666666,4.97,a-phya-i1,2016-17,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,284,568.0 +3.082666666666667,3.08,a-phya-i1,2016-17,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,922,922.0 +4.709333333333333,4.71,a-phya-i1,2016-17,Boston - Mather,00350227, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,617,617.0 +4.618666666666667,4.62,a-phya-i1,2016-17,Boston - Mattahunt,00350226, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,634,634.0 +1,1,a-phya-i1,2016-17,Boston - Maurice J Tobin,00350229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465 +5.461333333333333,5,a-phya-i1,2016-17,Boston - Michael J Perkins,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,238,476.0 +5.306666666666667,5,a-phya-i1,2016-17,Boston - Mildred Avenue K-8,00350378, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,505,505.0 +1,1,a-phya-i1,2016-17,Boston - Mission Hill School,00350382, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,217 +1,1,a-phya-i1,2016-17,Boston - Mozart,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175 +1,1,a-phya-i1,2016-17,Boston - Nathan Hale,00350243, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174 +1,1,a-phya-i1,2016-17,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320 +4.074666666666666,4.07,a-phya-i1,2016-17,Boston - O W Holmes,00350138, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,368,736.0 +0.336,1,a-phya-i1,2016-17,Boston - O'Bryant School Math/Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1437,1437.0 +1,1,a-phya-i1,2016-17,Boston - Oliver Hazard Perry,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222 +3.2746666666666666,3.27,a-phya-i1,2016-17,Boston - Orchard Gardens,00350257, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,886,886.0 +4.832,4.83,a-phya-i1,2016-17,Boston - Patrick J Kennedy,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,297,594.0 +5.786666666666667,5,a-phya-i1,2016-17,Boston - Paul A Dever,00350268, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +1,1,a-phya-i1,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,203 +5.511111111111111,5,a-phya-i1,2016-17,Boston - Phineas Bates,00350278, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,280,466.6666666666667 +5.301333333333333,5,a-phya-i1,2016-17,Boston - Quincy Upper School,00350565, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,506,506.0 +4.3822222222222225,4.38,a-phya-i1,2016-17,Boston - Rafael Hernandez,00350691, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,407,678.3333333333334 +5.477333333333333,5,a-phya-i1,2016-17,Boston - Richard J Murphy,00350240, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,946,473.0 +1,1,a-phya-i1,2016-17,Boston - Roger Clap,00350298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170 +1,1,a-phya-i1,2016-17,Boston - Samuel Adams,00350302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294 +5.536,5,a-phya-i1,2016-17,Boston - Samuel W Mason,00350304, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,231,462.0 +5.872,5,a-phya-i1,2016-17,Boston - Sarah Greenwood,00350308, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +5.658666666666667,5,a-phya-i1,2016-17,Boston - Snowden International School at Copley,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +4.544,4.54,a-phya-i1,2016-17,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,972,648.0 +5.050666666666666,5,a-phya-i1,2016-17,Boston - The English High,00350535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,553,553.0 +1,1,a-phya-i1,2016-17,Boston - Thomas J Kenny,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332 +3.952,3.95,a-phya-i1,2016-17,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,759,759.0 +3.392,3.39,a-phya-i1,2016-17,Boston - Urban Science Academy,00350579, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,432,864.0 +4.896,4.9,a-phya-i1,2016-17,Boston - Warren-Prescott,00350346, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,582,582.0 +6.165333333333334,5,a-phya-i1,2016-17,Boston - Washington Irving Middle,00350445, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,344,344.0 +5.354666666666667,5,a-phya-i1,2016-17,Boston - West Roxbury Academy,00350658, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,496,496.0 +5.946666666666666,5,a-phya-i1,2016-17,Boston - William E Russell,00350366, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,385,385.0 +1,1,a-phya-i1,2016-17,Boston - William Ellery Channing,00350360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244 +4.789333333333333,4.79,a-phya-i1,2016-17,Boston - William H Ohrenberger,00350258, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,602,602.0 +7.400888888888888,5,a-phya-i1,2016-17,Boston - William McKinley,00350363, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,337,112.33333333333333 +5.141333333333334,5,a-phya-i1,2016-17,Boston - William Monroe Trotter,00350370, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,536,536.0 +1,1,a-phya-i1,2016-17,Boston - Winship Elementary,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243 +5.930666666666666,5,a-phya-i1,2016-17,Boston - Young Achievers,00350380, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,582,388.0 +6.1866666666666665,5,a-phya-i1,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,680,340.0 +3.6906666666666665,3.69,a-phya-i1,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,404,808.0 +5.461333333333333,5,a-phya-i1,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,476,476.0 +5.786666666666667,5,a-phya-i1,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +2.9066666666666667,2.91,a-phya-i1,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,955,955.0 +5.674666666666667,5,a-phya-i1,2016-17,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,436,436.0 +4.208,4.21,a-phya-i1,2016-17,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,711,711.0 +5.690666666666667,5,a-phya-i1,2016-17,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +6.1066666666666665,5,a-phya-i1,2016-17,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +6.256,5,a-phya-i1,2016-17,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,327,327.0 +5.717333333333333,5,a-phya-i1,2016-17,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +6.437333333333333,5,a-phya-i1,2016-17,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +5.754666666666667,5,a-phya-i1,2016-17,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +3.32,3.32,a-phya-i1,2016-17,Braintree - Braintree High,00400505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1755,877.5 +6.496,5,a-phya-i1,2016-17,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,282,282.0 +1.484444444444444,1.48,a-phya-i1,2016-17,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,733,1221.6666666666667 +5.733333333333333,5,a-phya-i1,2016-17,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +5.68,5,a-phya-i1,2016-17,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,435,435.0 +5.610666666666667,5,a-phya-i1,2016-17,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 +6.021333333333334,5,a-phya-i1,2016-17,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,371,371.0 +6.602666666666667,5,a-phya-i1,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +6.358787878787878,5,a-phya-i1,2016-17,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 1.6, 0.6, 0.0, 0.0, 2.2,677,307.7272727272727 +6.619259259259259,5,a-phya-i1,2016-17,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.5, 0.4, 0.0, 0.0, 0.9,233,258.88888888888886 +6.618666666666667,5,a-phya-i1,2016-17,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,259,259.0 +6.22,5,a-phya-i1,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,267,333.75 +5.301333333333333,5,a-phya-i1,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,506,506.0 +4.334545454545455,4.33,a-phya-i1,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.2, 1.0, 0.0, 1.0, 0.0, 2.2,1512,687.2727272727273 +1,1,a-phya-i1,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500 +6.272,5,a-phya-i1,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,324,324.0 +6.076190476190476,5,a-phya-i1,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 1.8, 0.0, 1.0, 0.0, 0.0, 2.8,1010,360.7142857142857 +4.314666666666667,4.31,a-phya-i1,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,691,691.0 +1,1,a-phya-i1,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11 +3.776,3.78,a-phya-i1,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,792,792.0 +6.48,5,a-phya-i1,2016-17,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,285,285.0 +5.504,5,a-phya-i1,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,468,468.0 +3.6566666666666667,3.66,a-phya-i1,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.3, 0.0, 1.0, 0.3, 0.0, 1.6,1303,814.375 +5.402666666666667,5,a-phya-i1,2016-17,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +1,1,a-phya-i1,2016-17,Brockton - Barrett Russell School,00440007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219 +7.056,5,a-phya-i1,2016-17,Brockton - Brockton Champion High School,00440515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,177,177.0 +-7.160888888888888,1,a-phya-i1,2016-17,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,4264,2842.6666666666665 +1,1,a-phya-i1,2016-17,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632 +4.506666666666667,4.51,a-phya-i1,2016-17,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,655,655.0 +3.6906666666666665,3.69,a-phya-i1,2016-17,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,808,808.0 +1,1,a-phya-i1,2016-17,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540 +2.4426666666666668,2.44,a-phya-i1,2016-17,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1042,1042.0 +3.92,3.92,a-phya-i1,2016-17,Brockton - Edison Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,153,765.0 +1,1,a-phya-i1,2016-17,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35 +1,1,a-phya-i1,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288 +1,1,a-phya-i1,2016-17,Brockton - Goddard Alternative School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48 +4.442666666666667,4.44,a-phya-i1,2016-17,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,667,667.0 +5.056,5,a-phya-i1,2016-17,Brockton - Huntington,00440055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,552,552.0 +4.773333333333333,4.77,a-phya-i1,2016-17,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,605,605.0 +4.304,4.3,a-phya-i1,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,693,693.0 +-1.4186666666666667,1,a-phya-i1,2016-17,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,883,1766.0 +4.832,4.83,a-phya-i1,2016-17,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,891,594.0 +3.962666666666667,3.96,a-phya-i1,2016-17,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,757,757.0 +4.992,4.99,a-phya-i1,2016-17,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,564,564.0 +4.913777777777778,4.91,a-phya-i1,2016-17,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,868,578.6666666666666 +5.264,5,a-phya-i1,2016-17,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,513,513.0 +4.272592592592592,4.27,a-phya-i1,2016-17,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,629,698.8888888888889 +1,1,a-phya-i1,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1608 +6.304,5,a-phya-i1,2016-17,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,318,318.0 +1,1,a-phya-i1,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60 +1,1,a-phya-i1,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64 +4.848627450980392,4.85,a-phya-i1,2016-17,Brookline - Brookline High,00460505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.4, 3.4,2009,590.8823529411765 +3.925333333333333,3.93,a-phya-i1,2016-17,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,764,764.0 +6.226666666666667,5,a-phya-i1,2016-17,Brookline - Edward Devotion,00460015, 0.0, 0.0, 1.0, 0.0, 0.4, 1.0, 0.0, 2.4,798,332.5 +4.917333333333334,4.92,a-phya-i1,2016-17,Brookline - Heath,00460025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,578,578.0 +1,1,a-phya-i1,2016-17,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613 +4.208,4.21,a-phya-i1,2016-17,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,711,711.0 +4.8,4.8,a-phya-i1,2016-17,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,600,600.0 +6.178133333333334,5,a-phya-i1,2016-17,Brookline - Pierce,00460040, 0.0, 1.0, 0.0, 0.5, 0.0, 1.0, 0.0, 2.5,854,341.6 +7.637333333333333,5,a-phya-i1,2016-17,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,68,68.0 +4.586666666666667,4.59,a-phya-i1,2016-17,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,576,640.0 +6.039111111111111,5,a-phya-i1,2016-17,Burlington - Burlington High,00480505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,1103,367.6666666666667 +5.930666666666666,5,a-phya-i1,2016-17,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,388,388.0 +5.1786666666666665,5,a-phya-i1,2016-17,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.8, 1.0,529,529.0 +5.810666666666667,5,a-phya-i1,2016-17,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.6, 2.0,821,410.5 +5.941333333333334,5,a-phya-i1,2016-17,Burlington - Memorial,00480015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,386,386.0 +6.432,5,a-phya-i1,2016-17,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,294,294.0 +1,1,a-phya-i1,2016-17,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379 +1,1,a-phya-i1,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1956 +1,1,a-phya-i1,2016-17,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261 +1,1,a-phya-i1,2016-17,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311 +1,1,a-phya-i1,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260 +1,1,a-phya-i1,2016-17,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392 +1,1,a-phya-i1,2016-17,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253 +1,1,a-phya-i1,2016-17,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291 +1,1,a-phya-i1,2016-17,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266 +1,1,a-phya-i1,2016-17,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325 +1,1,a-phya-i1,2016-17,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356 +1,1,a-phya-i1,2016-17,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317 +1,1,a-phya-i1,2016-17,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306 +1,1,a-phya-i1,2016-17,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316 +1,1,a-phya-i1,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262 +1,1,a-phya-i1,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275 +1,1,a-phya-i1,2016-17,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268 +5.182222222222222,5,a-phya-i1,2016-17,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,951,528.3333333333334 +5.376,5,a-phya-i1,2016-17,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,492,492.0 +5.312,5,a-phya-i1,2016-17,Canton - John F Kennedy,00500017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,504,504.0 +5.94051282051282,5,a-phya-i1,2016-17,Canton - Lt Peter M Hansen,00500012, 0.0, 1.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.3,502,386.15384615384613 +7.68,5,a-phya-i1,2016-17,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,90,60.0 +5.205333333333333,5,a-phya-i1,2016-17,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.5,786,524.0 +1,1,a-phya-i1,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,243 +4.677333333333333,4.68,a-phya-i1,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,623,623.0 +4.066666666666666,4.07,a-phya-i1,2016-17,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,590,737.5 +6.595555555555556,5,a-phya-i1,2016-17,Carver - Carver Elementary School,00520015, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,790,263.3333333333333 +1,1,a-phya-i1,2016-17,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,836 +7.333333333333333,5,a-phya-i1,2016-17,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,125,125.0 +5.749333333333333,5,a-phya-i1,2016-17,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,422,422.0 +7.285333333333333,5,a-phya-i1,2016-17,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,134,134.0 +5.888,5,a-phya-i1,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,396,396.0 +5.104,5,a-phya-i1,2016-17,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,543,543.0 +6.68,5,a-phya-i1,2016-17,Chelmsford - Byam School,00560030, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,495,247.5 +1,1,a-phya-i1,2016-17,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434 +5.488,5,a-phya-i1,2016-17,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,471,471.0 +0.08533333333333333,1,a-phya-i1,2016-17,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1484,1484.0 +6.066666666666666,5,a-phya-i1,2016-17,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,725,362.5 +1,1,a-phya-i1,2016-17,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136 +3.466666666666667,3.47,a-phya-i1,2016-17,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,850,850.0 +5.978666666666666,5,a-phya-i1,2016-17,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,379,379.0 +3.88,3.88,a-phya-i1,2016-17,Chelsea - Chelsea High,00570505, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1545,772.5 +5.093333333333334,5,a-phya-i1,2016-17,Chelsea - Clark Avenue School,00570050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,545,545.0 +4.848,4.85,a-phya-i1,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,591,591.0 +2.464,2.46,a-phya-i1,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,519,1038.0 +1,1,a-phya-i1,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587 +4.954666666666666,4.95,a-phya-i1,2016-17,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 +5.952,5,a-phya-i1,2016-17,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,576,384.0 +3.3973333333333335,3.4,a-phya-i1,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,863,863.0 +5.1146666666666665,5,a-phya-i1,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +7.253333333333333,5,a-phya-i1,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,140,140.0 +5.733333333333333,5,a-phya-i1,2016-17,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,425,425.0 +6.565333333333333,5,a-phya-i1,2016-17,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,269,269.0 +5.898666666666666,5,a-phya-i1,2016-17,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,788,394.0 +5.589333333333333,5,a-phya-i1,2016-17,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,452,452.0 +6.048,5,a-phya-i1,2016-17,Chicopee - Bowie,00610020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +7.717333333333333,5,a-phya-i1,2016-17,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,106,53.0 +4.1866666666666665,4.19,a-phya-i1,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1430,715.0 +6.989866666666666,5,a-phya-i1,2016-17,Chicopee - Chicopee High,00610505, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 5.0,947,189.4 +6.974666666666667,5,a-phya-i1,2016-17,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 4.0,769,192.25 +6.407111111111111,5,a-phya-i1,2016-17,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,448,298.6666666666667 +5.914666666666666,5,a-phya-i1,2016-17,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +6.373333333333333,5,a-phya-i1,2016-17,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,305,305.0 +5.749333333333333,5,a-phya-i1,2016-17,Chicopee - Litwin,00610022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,422,422.0 +6.990222222222221,5,a-phya-i1,2016-17,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,284,189.33333333333334 +6.501333333333333,5,a-phya-i1,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 +1,1,a-phya-i1,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,395 +-6.88,1,a-phya-i1,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,279,2790.0 +-6.986666666666666,1,a-phya-i1,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,281,2810.0 +-1.44,1,a-phya-i1,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,177,1770.0 +3.3866666666666667,3.39,a-phya-i1,2016-17,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,173,865.0 +5.489777777777777,5,a-phya-i1,2016-17,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,706,470.6666666666667 +4.266666666666667,4.27,a-phya-i1,2016-17,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,700,700.0 +5.514666666666667,5,a-phya-i1,2016-17,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +1,1,a-phya-i1,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359 +3.530666666666667,3.53,a-phya-i1,2016-17,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,838,838.0 +6.544761904761905,5,a-phya-i1,2016-17,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,382,272.8571428571429 +6.048,5,a-phya-i1,2016-17,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,366,366.0 +4.554666666666667,4.55,a-phya-i1,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,646,646.0 +6.005333333333334,5,a-phya-i1,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,374,374.0 +1,1,a-phya-i1,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280 +1,1,a-phya-i1,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400 +1,1,a-phya-i1,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280 +5.477333333333333,5,a-phya-i1,2016-17,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,473,473.0 +5.616666666666666,5,a-phya-i1,2016-17,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,715,446.875 +5.509333333333333,5,a-phya-i1,2016-17,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,467,467.0 +6.389333333333333,5,a-phya-i1,2016-17,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,453,302.0 +3.7466666666666666,3.75,a-phya-i1,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 1.6,1276,797.5 +5.6,5,a-phya-i1,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,450,450.0 +7.248,5,a-phya-i1,2016-17,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,141,141.0 +5.402666666666667,5,a-phya-i1,2016-17,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,974,487.0 +6.389333333333333,5,a-phya-i1,2016-17,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,302,302.0 +6.005333333333334,5,a-phya-i1,2016-17,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,374,374.0 +5.765333333333333,5,a-phya-i1,2016-17,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,838,419.0 +6.474666666666667,5,a-phya-i1,2016-17,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,286,286.0 +6.517333333333333,5,a-phya-i1,2016-17,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.256,5,a-phya-i1,2016-17,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,327,327.0 +7.141333333333334,5,a-phya-i1,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,161,161.0 +5.1626666666666665,5,a-phya-i1,2016-17,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1064,532.0 +5.426666666666667,5,a-phya-i1,2016-17,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,965,482.5 +5.712,5,a-phya-i1,2016-17,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,429,429.0 +6.354666666666667,5,a-phya-i1,2016-17,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,617,308.5 +1,1,a-phya-i1,2016-17,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419 +4.714666666666667,4.71,a-phya-i1,2016-17,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,308,616.0 +0.11733333333333333,1,a-phya-i1,2016-17,Dedham - Dedham High,00730505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,739,1478.0 +1.2693333333333334,1.27,a-phya-i1,2016-17,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,631,1262.0 +4.992,4.99,a-phya-i1,2016-17,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,282,564.0 +5.034666666666666,5,a-phya-i1,2016-17,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,278,556.0 +5.0986666666666665,5,a-phya-i1,2016-17,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,272,544.0 +6.048,5,a-phya-i1,2016-17,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,183,366.0 +5.8613333333333335,5,a-phya-i1,2016-17,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +2.6506666666666665,2.65,a-phya-i1,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1003,1003.0 +7.058666666666666,5,a-phya-i1,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,353,176.5 +6.368,5,a-phya-i1,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +5.744,5,a-phya-i1,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,423,423.0 +5.258666666666667,5,a-phya-i1,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,514,514.0 +5.733333333333333,5,a-phya-i1,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +3.52,3.52,a-phya-i1,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,420,840.0 +3.776,3.78,a-phya-i1,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,396,792.0 +3.050666666666667,3.05,a-phya-i1,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,928,928.0 +4.933333333333334,4.93,a-phya-i1,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,575,575.0 +1.984,1.98,a-phya-i1,2016-17,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,564,1128.0 +5.8453333333333335,5,a-phya-i1,2016-17,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,404,404.0 +5.898666666666666,5,a-phya-i1,2016-17,Douglas - Douglas High School,00770505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,394,394.0 +4.8,4.8,a-phya-i1,2016-17,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,360,600.0 +6.773333333333333,5,a-phya-i1,2016-17,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,230,230.0 +5.424,5,a-phya-i1,2016-17,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,483,483.0 +4.522666666666667,4.52,a-phya-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,652,652.0 +5.210666666666667,5,a-phya-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,523,523.0 +5.530666666666667,5,a-phya-i1,2016-17,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,463,463.0 +5.152,5,a-phya-i1,2016-17,Dracut - Dracut Senior High,00790505, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,801,534.0 +5.290666666666667,5,a-phya-i1,2016-17,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,508,508.0 +6.506666666666667,5,a-phya-i1,2016-17,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,280,280.0 +5.088,5,a-phya-i1,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,546,546.0 +4.796444444444445,4.8,a-phya-i1,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,901,600.6666666666666 +1,1,a-phya-i1,2016-17,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, 0.0,292 +6.144,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +4.245333333333333,4.25,a-phya-i1,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,704,704.0 +6.010666666666666,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +4.709333333333333,4.71,a-phya-i1,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,617,617.0 +5.354666666666667,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,496,496.0 +6.618666666666667,5,a-phya-i1,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,259,259.0 +1.7813333333333334,1.78,a-phya-i1,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1166,1166.0 +4.234666666666667,4.23,a-phya-i1,2016-17,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,706,706.0 +1,1,a-phya-i1,2016-17,Duxbury - Chandler Elementary,00820006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607 +3.973333333333333,3.97,a-phya-i1,2016-17,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,1057,755.0 +3.994666666666667,3.99,a-phya-i1,2016-17,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,751,751.0 +5.008,5,a-phya-i1,2016-17,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,561,561.0 +5.197333333333333,5,a-phya-i1,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1051,525.5 +4.32,4.32,a-phya-i1,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,690,690.0 +4.650666666666667,4.65,a-phya-i1,2016-17,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,628,628.0 +3.36,3.36,a-phya-i1,2016-17,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,870,870.0 +6.565333333333333,5,a-phya-i1,2016-17,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,269,269.0 +4.997333333333334,5.0,a-phya-i1,2016-17,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,563,563.0 +6.4,5,a-phya-i1,2016-17,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,300,300.0 +7.029333333333334,5,a-phya-i1,2016-17,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,182,182.0 +1,1,a-phya-i1,2016-17,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194 +1,1,a-phya-i1,2016-17,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471 +1,1,a-phya-i1,2016-17,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256 +1,1,a-phya-i1,2016-17,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,192 +1,1,a-phya-i1,2016-17,Easthampton - White Brook Middle School,00860305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449 +6.650666666666667,5,a-phya-i1,2016-17,Easton - Center School,00880003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,253,253.0 +3.2693333333333334,3.27,a-phya-i1,2016-17,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,887,887.0 +6.757333333333333,5,a-phya-i1,2016-17,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,233,233.0 +1.6053333333333333,1.61,a-phya-i1,2016-17,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1199,1199.0 +6.1706666666666665,5,a-phya-i1,2016-17,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,343,343.0 +4.574358974358975,4.57,a-phya-i1,2016-17,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,835,642.3076923076923 +6.144,5,a-phya-i1,2016-17,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +6.085333333333334,5,a-phya-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, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 +7.093333333333334,5,a-phya-i1,2016-17,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,136,170.0 +4.514666666666667,4.51,a-phya-i1,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1307,653.5 +6.8853333333333335,5,a-phya-i1,2016-17,Everett - Adams School,00930003, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,209,209.0 +1,1,a-phya-i1,2016-17,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65 +2.6053333333333333,2.61,a-phya-i1,2016-17,Everett - Everett High,00930505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,2023,1011.5 +3.8133333333333335,3.81,a-phya-i1,2016-17,Everett - George Keverian School,00930028, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,942,785.0 +6.34488888888889,5,a-phya-i1,2016-17,Everett - Lafayette School,00930038, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,931,310.3333333333333 +3.3173333333333335,3.32,a-phya-i1,2016-17,Everett - Madeline English School,00930018, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,878,878.0 +1,1,a-phya-i1,2016-17,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,871 +4.826666666666667,4.83,a-phya-i1,2016-17,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,595,595.0 +4.992,4.99,a-phya-i1,2016-17,Everett - Webster School,00930015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 +6.724,5,a-phya-i1,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 4.0,957,239.25 +6.062222222222221,5,a-phya-i1,2016-17,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 1.2,436,363.33333333333337 +5.262222222222222,5,a-phya-i1,2016-17,Fairhaven - Fairhaven High,00940505, 1.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.2,616,513.3333333333334 +5.964444444444444,5,a-phya-i1,2016-17,Fairhaven - Hastings Middle,00940305, 0.0, 1.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.2,458,381.6666666666667 +5.715555555555555,5,a-phya-i1,2016-17,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,514,428.33333333333337 +4.225777777777778,4.23,a-phya-i1,2016-17,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,2123,707.6666666666666 +6.066666666666666,5,a-phya-i1,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,725,362.5 +1,1,a-phya-i1,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25 +-3.0933333333333333,1,a-phya-i1,2016-17,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,624,2080.0 +1,1,a-phya-i1,2016-17,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293 +6.544,5,a-phya-i1,2016-17,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,546,273.0 +6.231111111111111,5,a-phya-i1,2016-17,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.3, 1.0, 0.0, 0.5, 0.0, 1.8,597,331.6666666666667 +5.887407407407408,5,a-phya-i1,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.3, 0.5, 0.0, 1.0, 0.0, 1.8,713,396.1111111111111 +-0.21333333333333335,1,a-phya-i1,2016-17,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,770,1540.0 +5.788444444444444,5,a-phya-i1,2016-17,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,622,414.6666666666667 +-5.564444444444446,1,a-phya-i1,2016-17,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,763,2543.3333333333335 +1,1,a-phya-i1,2016-17,Fall River - Resiliency Middle School,00950335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27 +1,1,a-phya-i1,2016-17,Fall River - Resiliency Preparatory School,00950325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162 +6.378666666666667,5,a-phya-i1,2016-17,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,304,304.0 +6.884266666666666,5,a-phya-i1,2016-17,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 0.5, 0.0, 1.0, 0.0, 2.5,523,209.2 +1,1,a-phya-i1,2016-17,Fall River - Stone Day School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32 +5.088,5,a-phya-i1,2016-17,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,546,546.0 +5.269333333333333,5,a-phya-i1,2016-17,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,768,512.0 +6.298181818181819,5,a-phya-i1,2016-17,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,351,319.09090909090907 +3.723636363636364,3.72,a-phya-i1,2016-17,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,882,801.8181818181818 +5.246060606060606,5,a-phya-i1,2016-17,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,568,516.3636363636364 +5.1442424242424245,5,a-phya-i1,2016-17,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,589,535.4545454545454 +5.750303030303031,5,a-phya-i1,2016-17,Falmouth - Mullen-Hall,00960020, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.1,464,421.81818181818176 +6.487272727272728,5,a-phya-i1,2016-17,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 1.1,312,283.6363636363636 +6.545454545454545,5,a-phya-i1,2016-17,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 1.1,300,272.7272727272727 +7.392,5,a-phya-i1,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,114,114.0 +5.018666666666666,5,a-phya-i1,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,559,559.0 +4.576,4.58,a-phya-i1,2016-17,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,642,642.0 +1.5413333333333334,1.54,a-phya-i1,2016-17,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1211,1211.0 +6.980740740740741,5,a-phya-i1,2016-17,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,172,191.11111111111111 +1,1,a-phya-i1,2016-17,Fitchburg - McKay Arts Academy,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673 +6.0906666666666665,5,a-phya-i1,2016-17,Fitchburg - Memorial Intermediate,00970048, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,716,358.0 +6.894222222222221,5,a-phya-i1,2016-17,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,622,207.33333333333334 +5.743333333333333,5,a-phya-i1,2016-17,Fitchburg - South Street Elementary,00970060, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,677,423.125 +7.568,5,a-phya-i1,2016-17,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,81,81.0 +5.653333333333333,5,a-phya-i1,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,220,440.0 +6.704,5,a-phya-i1,2016-17,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +3.536,3.54,a-phya-i1,2016-17,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,837,837.0 +4.8914285714285715,4.89,a-phya-i1,2016-17,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,816,582.8571428571429 +6.341333333333333,5,a-phya-i1,2016-17,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,311,311.0 +5.898666666666666,5,a-phya-i1,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +5.075942028985507,5,a-phya-i1,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.5, 0.8, 1.0, 0.0, 2.3,1261,548.2608695652175 +4.309333333333333,4.31,a-phya-i1,2016-17,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,692,692.0 +5.253333333333333,5,a-phya-i1,2016-17,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,515,515.0 +5.088,5,a-phya-i1,2016-17,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,546,546.0 +5.445333333333333,5,a-phya-i1,2016-17,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,479,479.0 +5.197333333333333,5,a-phya-i1,2016-17,Framingham - Framingham High School,01000515, 0.0, 0.0, 0.0, 0.8, 1.0, 2.2, 0.0, 4.0,2102,525.5 +5.52,5,a-phya-i1,2016-17,Framingham - Fuller Middle,01000305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +4.944,4.94,a-phya-i1,2016-17,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,573,573.0 +6.752,5,a-phya-i1,2016-17,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,234,234.0 +6.666666666666667,5,a-phya-i1,2016-17,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,250,250.0 +5.904,5,a-phya-i1,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,393,393.0 +1,1,a-phya-i1,2016-17,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557 +5.317333333333333,5,a-phya-i1,2016-17,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,503,503.0 +4.1386666666666665,4.14,a-phya-i1,2016-17,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,724,724.0 +4.928,4.93,a-phya-i1,2016-17,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,576,576.0 +5.8933333333333335,5,a-phya-i1,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,395,395.0 +3.050666666666667,3.05,a-phya-i1,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,464,928.0 +6.549333333333333,5,a-phya-i1,2016-17,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,272,272.0 +7.301333333333333,5,a-phya-i1,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,131,131.0 +-1.2746666666666666,1,a-phya-i1,2016-17,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1739,1739.0 +3.5946666666666665,3.59,a-phya-i1,2016-17,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,413,826.0 +3.029333333333333,3.03,a-phya-i1,2016-17,Franklin - Horace Mann,01010405, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,466,932.0 +6.08,5,a-phya-i1,2016-17,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +4.490666666666667,4.49,a-phya-i1,2016-17,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,329,658.0 +3.5946666666666665,3.59,a-phya-i1,2016-17,Franklin - Oak Street Elementary,01010030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,413,826.0 +1,1,a-phya-i1,2016-17,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365 +3.0933333333333333,3.09,a-phya-i1,2016-17,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,460,920.0 +5.397333333333333,5,a-phya-i1,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +4.133333333333334,4.13,a-phya-i1,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,725,725.0 +5.776,5,a-phya-i1,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +5.866666666666666,5,a-phya-i1,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,400,400.0 +4.058666666666666,4.06,a-phya-i1,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,739,739.0 +5.477333333333333,5,a-phya-i1,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,473,473.0 +4.741333333333333,4.74,a-phya-i1,2016-17,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,611,611.0 +5.941333333333334,5,a-phya-i1,2016-17,Gardner - Elm Street School,01030001, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,579,386.0 +7.504,5,a-phya-i1,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,93,93.0 +5.472,5,a-phya-i1,2016-17,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,711,474.0 +5.082666666666666,5,a-phya-i1,2016-17,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,547,547.0 +6.786666666666667,5,a-phya-i1,2016-17,Gardner - Waterford Street,01030020, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,455,227.5 +7.381333333333333,5,a-phya-i1,2016-17,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,116,116.0 +5.653333333333333,5,a-phya-i1,2016-17,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,220,440.0 +5.781333333333333,5,a-phya-i1,2016-17,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,208,416.0 +6.416,5,a-phya-i1,2016-17,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +5.808,5,a-phya-i1,2016-17,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,411,411.0 +1,1,a-phya-i1,2016-17,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231 +4.282666666666667,4.28,a-phya-i1,2016-17,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,697,697.0 +7.424,5,a-phya-i1,2016-17,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,108,108.0 +7.376,5,a-phya-i1,2016-17,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,117,117.0 +6.730666666666667,5,a-phya-i1,2016-17,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,238,238.0 +7.210666666666667,5,a-phya-i1,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,148,148.0 +6.842666666666666,5,a-phya-i1,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,217,217.0 +6.768,5,a-phya-i1,2016-17,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,231,231.0 +1,1,a-phya-i1,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507 +6.1066666666666665,5,a-phya-i1,2016-17,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,355,355.0 +6.746666666666667,5,a-phya-i1,2016-17,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,235,235.0 +5.818666666666667,5,a-phya-i1,2016-17,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.8, 0.0, 2.0,818,409.0 +7.488,5,a-phya-i1,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,96,96.0 +6.864,5,a-phya-i1,2016-17,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,213,213.0 +6.301333333333333,5,a-phya-i1,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,637,318.5 +6.826666666666667,5,a-phya-i1,2016-17,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,220,220.0 +6.101333333333334,5,a-phya-i1,2016-17,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +1,1,a-phya-i1,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2 +5.0311111111111115,5,a-phya-i1,2016-17,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,835,556.6666666666666 +5.413333333333333,5,a-phya-i1,2016-17,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,485,485.0 +5.5857777777777775,5,a-phya-i1,2016-17,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,679,452.6666666666667 +6.48,5,a-phya-i1,2016-17,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,285,285.0 +4.816,4.82,a-phya-i1,2016-17,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,597,597.0 +6.357333333333333,5,a-phya-i1,2016-17,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +7.0986666666666665,5,a-phya-i1,2016-17,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,169,169.0 +5.968,5,a-phya-i1,2016-17,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +7.215238095238095,5,a-phya-i1,2016-17,Granby - West Street,01110010, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 1.4,206,147.14285714285714 +4.28,4.28,a-phya-i1,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,1395,697.5 +0.144,1,a-phya-i1,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,1473,1473.0 +4.117333333333334,4.12,a-phya-i1,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,2184,728.0 +2.256,2.26,a-phya-i1,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,2154,1077.0 +6.704,5,a-phya-i1,2016-17,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,243,243.0 +6.752,5,a-phya-i1,2016-17,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +7.968,5,a-phya-i1,2016-17,Greenfield - Green River,01140030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,6,6.0 +5.610666666666667,5,a-phya-i1,2016-17,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 +5.898666666666666,5,a-phya-i1,2016-17,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,394,394.0 +6.8533333333333335,5,a-phya-i1,2016-17,Greenfield - Newton School,01140035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +6.698666666666667,5,a-phya-i1,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,122,244.0 +7.658666666666667,5,a-phya-i1,2016-17,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,64,64.0 +5.450666666666667,5,a-phya-i1,2016-17,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,478,478.0 +5.834666666666666,5,a-phya-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,812,406.0 +5.890666666666666,5,a-phya-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,791,395.5 +6.506666666666667,5,a-phya-i1,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,280,280.0 +6.378666666666667,5,a-phya-i1,2016-17,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,304,304.0 +6.624,5,a-phya-i1,2016-17,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,258,258.0 +4.842666666666666,4.84,a-phya-i1,2016-17,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +5.28,5,a-phya-i1,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,255,510.0 +1,1,a-phya-i1,2016-17,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254 +4.173333333333333,4.17,a-phya-i1,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,574,717.5 +3.6586666666666665,3.66,a-phya-i1,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,407,814.0 +4.8853333333333335,4.89,a-phya-i1,2016-17,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,292,584.0 +5.450666666666667,5,a-phya-i1,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,478,478.0 +6.682666666666667,5,a-phya-i1,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +6.32,5,a-phya-i1,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,315,315.0 +4.601481481481482,4.6,a-phya-i1,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 1.8,1147,637.2222222222222 +6.192,5,a-phya-i1,2016-17,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,339,339.0 +6.384,5,a-phya-i1,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,303,303.0 +6.816,5,a-phya-i1,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,222,222.0 +5.152,5,a-phya-i1,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,534,534.0 +6.588571428571429,5,a-phya-i1,2016-17,Hampshire - Hampshire Regional High,06830505, 0.0, 1.4, 0.0, 1.4, 0.0, 0.0, 0.0, 2.8,741,264.64285714285717 +1,1,a-phya-i1,2016-17,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36 +5.738666666666667,5,a-phya-i1,2016-17,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +6.1386666666666665,5,a-phya-i1,2016-17,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +3.7866666666666666,3.79,a-phya-i1,2016-17,Hanover - Hanover High,01220505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,790,790.0 +3.552,3.55,a-phya-i1,2016-17,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,834,834.0 +6.784,5,a-phya-i1,2016-17,Hanover - Sylvester,01220015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,228,228.0 +4.96,4.96,a-phya-i1,2016-17,Harvard - Bromfield,01250505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,684,570.0 +5.690666666666667,5,a-phya-i1,2016-17,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,433,433.0 +6.698666666666667,5,a-phya-i1,2016-17,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,244,244.0 +6.944,5,a-phya-i1,2016-17,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,198,198.0 +7.463111111111112,5,a-phya-i1,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,151,100.66666666666667 +1,1,a-phya-i1,2016-17,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616 +5.781333333333333,5,a-phya-i1,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,416,416.0 +4.986666666666666,4.99,a-phya-i1,2016-17,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,1017,565.0 +7.466666666666667,5,a-phya-i1,2016-17,Haverhill - Crowell,01280020, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,150,100.0 +5.349333333333333,5,a-phya-i1,2016-17,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,497,497.0 +1,1,a-phya-i1,2016-17,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519 +7.118222222222221,5,a-phya-i1,2016-17,Haverhill - Greenleaf,01280027, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 1.5,248,165.33333333333334 +1,1,a-phya-i1,2016-17,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46 +5.50017094017094,5,a-phya-i1,2016-17,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 2.4, 1.0, 0.5, 3.9,1828,468.71794871794873 +1.2133333333333334,1.21,a-phya-i1,2016-17,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,509,1272.5 +7.430175438596491,5,a-phya-i1,2016-17,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 1.0, 1.9,203,106.8421052631579 +5.28,5,a-phya-i1,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,510,510.0 +1,1,a-phya-i1,2016-17,Haverhill - TEACH,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51 +5.12,5,a-phya-i1,2016-17,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,540,540.0 +1,1,a-phya-i1,2016-17,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151 +7.3,5,a-phya-i1,2016-17,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,105,131.25 +6.842666666666666,5,a-phya-i1,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,217,217.0 +6.368,5,a-phya-i1,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +6.708148148148148,5,a-phya-i1,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,218,242.22222222222223 +5.104,5,a-phya-i1,2016-17,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,543,543.0 +1.4666666666666666,1.47,a-phya-i1,2016-17,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1225,1225.0 +5.074666666666666,5,a-phya-i1,2016-17,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1097,548.5 +5.493333333333333,5,a-phya-i1,2016-17,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,470,470.0 +5.269333333333333,5,a-phya-i1,2016-17,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,512,512.0 +5.493333333333333,5,a-phya-i1,2016-17,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,470,470.0 +3.04,3.04,a-phya-i1,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,465,930.0 +3.445333333333333,3.45,a-phya-i1,2016-17,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,427,854.0 +5.034666666666666,5,a-phya-i1,2016-17,Holbrook - South,01330025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,278,556.0 +6.736,5,a-phya-i1,2016-17,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,237,237.0 +3.6853333333333333,3.69,a-phya-i1,2016-17,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,809,809.0 +4.362666666666667,4.36,a-phya-i1,2016-17,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,682,682.0 +4.08,4.08,a-phya-i1,2016-17,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,735,735.0 +4.464,4.46,a-phya-i1,2016-17,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,663,663.0 +5.328,5,a-phya-i1,2016-17,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,501,501.0 +7.229333333333333,5,a-phya-i1,2016-17,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,289,144.5 +5.715555555555556,5,a-phya-i1,2016-17,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,1285,428.3333333333333 +6.602666666666667,5,a-phya-i1,2016-17,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,262,262.0 +5.0986666666666665,5,a-phya-i1,2016-17,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,544,544.0 +5.018666666666666,5,a-phya-i1,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,559,559.0 +5.792,5,a-phya-i1,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,414,414.0 +5.552,5,a-phya-i1,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,459,459.0 +5.7973333333333334,5,a-phya-i1,2016-17,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,413,413.0 +6.048,5,a-phya-i1,2016-17,Holyoke - William R. Peck School,01370030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,366,366.0 +6.656,5,a-phya-i1,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,252,252.0 +4.256,4.26,a-phya-i1,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,702,702.0 +2.4106666666666667,2.41,a-phya-i1,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,524,1048.0 +2.144,2.14,a-phya-i1,2016-17,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,549,1098.0 +7.1466666666666665,5,a-phya-i1,2016-17,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,64,160.0 +5.6,5,a-phya-i1,2016-17,Hopkinton - Center,01390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,450,450.0 +5.397333333333333,5,a-phya-i1,2016-17,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,488,488.0 +5.349333333333333,5,a-phya-i1,2016-17,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,497,497.0 +2.176,2.18,a-phya-i1,2016-17,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1092,1092.0 +3.36,3.36,a-phya-i1,2016-17,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,870,870.0 +1,1,a-phya-i1,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65 +5.402666666666667,5,a-phya-i1,2016-17,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +4.597333333333333,4.6,a-phya-i1,2016-17,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,638,638.0 +6.266666666666667,5,a-phya-i1,2016-17,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +5.485333333333333,5,a-phya-i1,2016-17,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,943,471.5 +6.666666666666667,5,a-phya-i1,2016-17,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,250,250.0 +6.341333333333333,5,a-phya-i1,2016-17,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,311,311.0 +5.786666666666667,5,a-phya-i1,2016-17,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 +6.912,5,a-phya-i1,2016-17,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,204,204.0 +-13.12,1,a-phya-i1,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,792,3960.0 +-1.6533333333333333,1,a-phya-i1,2016-17,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,543,1810.0 +4.946666666666666,4.95,a-phya-i1,2016-17,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.0, 0.8,458,572.5 +3.7973333333333334,3.8,a-phya-i1,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,394,788.0 +3.9146666666666667,3.91,a-phya-i1,2016-17,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,383,766.0 +5.928205128205128,5,a-phya-i1,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,505,388.46153846153845 +3.7475555555555555,3.75,a-phya-i1,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,1196,797.3333333333334 +-0.2773333333333333,1,a-phya-i1,2016-17,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,776,1552.0 +0.96,1,a-phya-i1,2016-17,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1320,1320.0 +5.674666666666667,5,a-phya-i1,2016-17,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,436,436.0 +4.906666666666666,4.91,a-phya-i1,2016-17,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,580,580.0 +6.9013333333333335,5,a-phya-i1,2016-17,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,206,206.0 +5.507878787878788,5,a-phya-i1,2016-17,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,514,467.27272727272725 +5.231515151515152,5,a-phya-i1,2016-17,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,571,519.090909090909 +5.153939393939394,5,a-phya-i1,2016-17,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,587,533.6363636363636 +6.377142857142857,5,a-phya-i1,2016-17,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1, 0.0, 2.1,639,304.2857142857143 +3.994666666666667,3.99,a-phya-i1,2016-17,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,751,751.0 +5.653333333333333,5,a-phya-i1,2016-17,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,484,439.99999999999994 +5.692121212121212,5,a-phya-i1,2016-17,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,476,432.7272727272727 +5.4787878787878785,5,a-phya-i1,2016-17,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,520,472.7272727272727 +5.585454545454545,5,a-phya-i1,2016-17,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,498,452.7272727272727 +-1.3866666666666667,1,a-phya-i1,2016-17,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,176,1760.0 +6.138181818181819,5,a-phya-i1,2016-17,Lawrence - James F Hennessey,01490020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,384,349.09090909090907 +6.414545454545455,5,a-phya-i1,2016-17,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,327,297.27272727272725 +6.24,5,a-phya-i1,2016-17,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,363,330.0 +7.326060606060605,5,a-phya-i1,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,139,126.36363636363636 +7.166060606060605,5,a-phya-i1,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,172,156.36363636363635 +3.7138211382113817,3.71,a-phya-i1,2016-17,Lawrence - Lawrence High School,01490515, 0.0, 2.0, 0.0, 2.0, 0.0, 0.1, 0.0, 4.1,3295,803.6585365853659 +5.575757575757576,5,a-phya-i1,2016-17,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,500,454.5454545454545 +-20.106666666666666,1,a-phya-i1,2016-17,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,527,5270.0 +7.267878787878788,5,a-phya-i1,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 1.1,151,137.27272727272725 +5.095757575757576,5,a-phya-i1,2016-17,Lawrence - Robert Frost,01490018, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 0.0, 1.1,599,544.5454545454545 +7.166060606060605,5,a-phya-i1,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,172,156.36363636363635 +7.1466666666666665,5,a-phya-i1,2016-17,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1,176,160.0 +4.552727272727274,4.55,a-phya-i1,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 0.0, 1.1,711,646.3636363636363 +5.77939393939394,5,a-phya-i1,2016-17,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,458,416.3636363636363 +-9.173333333333334,1,a-phya-i1,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,322,3220.0 +-10.4,1,a-phya-i1,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,345,3450.0 +6.088,5,a-phya-i1,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,717,358.5 +6.208,5,a-phya-i1,2016-17,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,336,336.0 +6.1386666666666665,5,a-phya-i1,2016-17,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,349,349.0 +5.573333333333333,5,a-phya-i1,2016-17,Leicester - Leicester High,01510505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,455,455.0 +6.085333333333334,5,a-phya-i1,2016-17,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +5.856,5,a-phya-i1,2016-17,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,402,402.0 +6.876862745098039,5,a-phya-i1,2016-17,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 1.7,358,210.58823529411765 +1,1,a-phya-i1,2016-17,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455 +4.693333333333333,4.69,a-phya-i1,2016-17,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,310,620.0 +7.44,5,a-phya-i1,2016-17,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,105,105.0 +1,1,a-phya-i1,2016-17,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696 +1,1,a-phya-i1,2016-17,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,687 +4.976,4.98,a-phya-i1,2016-17,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,567,567.0 +3.8,3.8,a-phya-i1,2016-17,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,630,787.5 +1,1,a-phya-i1,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39 +5.683199999999999,5,a-phya-i1,2016-17,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.8, 0.8, 0.8, 0.0, 2.5,1086,434.4 +1,1,a-phya-i1,2016-17,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49 +3.3866666666666667,3.39,a-phya-i1,2016-17,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,692,865.0 +7.133333333333334,5,a-phya-i1,2016-17,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,130,162.5 +4.786666666666667,4.79,a-phya-i1,2016-17,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,482,602.5 +2.1066666666666665,2.11,a-phya-i1,2016-17,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,884,1105.0 +5.582222222222222,5,a-phya-i1,2016-17,Leverett - Leverett Elementary,01540005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,136,453.33333333333337 +5.673846153846154,5,a-phya-i1,2016-17,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,567,436.15384615384613 +5.682051282051282,5,a-phya-i1,2016-17,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,565,434.6153846153846 +5.445333333333333,5,a-phya-i1,2016-17,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,479,479.0 +4.9,4.9,a-phya-i1,2016-17,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,465,581.25 +5.498947368421052,5,a-phya-i1,2016-17,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.9, 1.0, 0.0, 1.9,891,468.94736842105266 +5.1466666666666665,5,a-phya-i1,2016-17,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,535,535.0 +1,1,a-phya-i1,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78 +4.115555555555555,4.12,a-phya-i1,2016-17,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,2185,728.3333333333334 +5.303703703703704,5,a-phya-i1,2016-17,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,455,505.55555555555554 +5.327058823529412,5,a-phya-i1,2016-17,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 0.0, 1.7,852,501.1764705882353 +5.344,5,a-phya-i1,2016-17,Lincoln - Hanscom Middle,01570305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,249,498.0 +4.565333333333333,4.57,a-phya-i1,2016-17,Lincoln - Hanscom Primary,01570006, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,322,644.0 +4.645333333333333,4.65,a-phya-i1,2016-17,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,629,629.0 +3.8186666666666667,3.82,a-phya-i1,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.4, 2.0,1568,784.0 +5.509333333333333,5,a-phya-i1,2016-17,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,467,467.0 +6.128,5,a-phya-i1,2016-17,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,351,351.0 +5.936,5,a-phya-i1,2016-17,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +5.648,5,a-phya-i1,2016-17,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,441,441.0 +5.728,5,a-phya-i1,2016-17,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,426,426.0 +5.8453333333333335,5,a-phya-i1,2016-17,Longmeadow - Center,01590010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +6.218666666666667,5,a-phya-i1,2016-17,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,334,334.0 +2.949333333333333,2.95,a-phya-i1,2016-17,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,947,947.0 +6.165333333333334,5,a-phya-i1,2016-17,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,344,344.0 +5.941333333333334,5,a-phya-i1,2016-17,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,386,386.0 +1,1,a-phya-i1,2016-17,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502 +1,1,a-phya-i1,2016-17,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545 +1,1,a-phya-i1,2016-17,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,530 +1,1,a-phya-i1,2016-17,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528 +1,1,a-phya-i1,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504 +1,1,a-phya-i1,2016-17,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,691 +1,1,a-phya-i1,2016-17,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505 +1,1,a-phya-i1,2016-17,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,501 +1,1,a-phya-i1,2016-17,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618 +4.288,4.29,a-phya-i1,2016-17,Lowell - James S Daley Middle School,01600315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,696,696.0 +1,1,a-phya-i1,2016-17,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670 +1,1,a-phya-i1,2016-17,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,484 +1,1,a-phya-i1,2016-17,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,496 +1,1,a-phya-i1,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,673 +1,1,a-phya-i1,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,18 +1,1,a-phya-i1,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33 +-8.773333333333333,1,a-phya-i1,2016-17,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,3145,3145.0 +1,1,a-phya-i1,2016-17,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249 +1,1,a-phya-i1,2016-17,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505 +1,1,a-phya-i1,2016-17,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549 +1,1,a-phya-i1,2016-17,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498 +1,1,a-phya-i1,2016-17,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607 +1,1,a-phya-i1,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492 +1,1,a-phya-i1,2016-17,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,119 +1,1,a-phya-i1,2016-17,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258 +-0.7146666666666667,1,a-phya-i1,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,817,1634.0 +1,1,a-phya-i1,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,94 +6.1546666666666665,5,a-phya-i1,2016-17,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,346,346.0 +6.026666666666666,5,a-phya-i1,2016-17,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +5.613333333333333,5,a-phya-i1,2016-17,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,895,447.5 +6.176,5,a-phya-i1,2016-17,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,684,342.0 +6.048,5,a-phya-i1,2016-17,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +5.073333333333333,5,a-phya-i1,2016-17,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,439,548.75 +1,1,a-phya-i1,2016-17,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388 +5.941333333333334,5,a-phya-i1,2016-17,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,386,386.0 +5.866666666666666,5,a-phya-i1,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,400,400.0 +5.653333333333333,5,a-phya-i1,2016-17,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,484,439.99999999999994 +6.744242424242424,5,a-phya-i1,2016-17,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.1,259,235.45454545454544 +4.544,4.54,a-phya-i1,2016-17,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1296,648.0 +6.632727272727274,5,a-phya-i1,2016-17,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,282,256.3636363636363 +6.336,5,a-phya-i1,2016-17,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,312,312.0 +3.816,3.82,a-phya-i1,2016-17,Lynn - Classical High,01630505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1569,784.5 +4.9793939393939395,4.98,a-phya-i1,2016-17,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,623,566.3636363636364 +4.7660606060606066,4.77,a-phya-i1,2016-17,Lynn - E J Harrington,01630045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,667,606.3636363636363 +7.205333333333333,5,a-phya-i1,2016-17,Lynn - Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,298,149.0 +5.669333333333333,5,a-phya-i1,2016-17,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,437,437.0 +6.357333333333333,5,a-phya-i1,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +5.696969696969697,5,a-phya-i1,2016-17,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,475,431.81818181818176 +4.64969696969697,4.65,a-phya-i1,2016-17,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,691,628.1818181818181 +5.701818181818181,5,a-phya-i1,2016-17,Lynn - Julia F Callahan,01630030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1,474,430.9090909090909 +6.797575757575757,5,a-phya-i1,2016-17,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,248,225.45454545454544 +3.7386666666666666,3.74,a-phya-i1,2016-17,Lynn - Lynn English High,01630510, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1598,799.0 +5.9328,5,a-phya-i1,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 1.0, 2.5,969,387.6 +7.209696969696971,5,a-phya-i1,2016-17,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,163,148.18181818181816 +5.802666666666667,5,a-phya-i1,2016-17,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,618,412.0 +5.536969696969697,5,a-phya-i1,2016-17,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,508,461.81818181818176 +6.474666666666667,5,a-phya-i1,2016-17,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,286,286.0 +4.898666666666666,4.9,a-phya-i1,2016-17,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1163,581.5 +5.738666666666667,5,a-phya-i1,2016-17,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,424,424.0 +5.504,5,a-phya-i1,2016-17,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +7.7672727272727276,5,a-phya-i1,2016-17,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,48,43.63636363636363 +4.9406060606060604,4.94,a-phya-i1,2016-17,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.1,631,573.6363636363636 +3.5946666666666665,3.59,a-phya-i1,2016-17,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,413,826.0 +-0.37333333333333335,1,a-phya-i1,2016-17,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,628,1570.0 +0.5546666666666666,1,a-phya-i1,2016-17,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,698,1396.0 +1,1,a-phya-i1,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47 +3.509333333333333,3.51,a-phya-i1,2016-17,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,421,842.0 +5.964444444444444,5,a-phya-i1,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,1145,381.6666666666667 +1,1,a-phya-i1,2016-17,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, 0.0, 0.0,97 +3.2906666666666666,3.29,a-phya-i1,2016-17,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,883,883.0 +3.136,3.14,a-phya-i1,2016-17,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,912,912.0 +1,1,a-phya-i1,2016-17,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,582 +3.216,3.22,a-phya-i1,2016-17,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,897,897.0 +6.405333333333333,5,a-phya-i1,2016-17,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,299,299.0 +3.112,3.11,a-phya-i1,2016-17,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1833,916.5 +4.754666666666667,4.75,a-phya-i1,2016-17,Malden - Salemwood,01650057, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1217,608.5 +6.8,5,a-phya-i1,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,225,225.0 +5.738666666666667,5,a-phya-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +1,1,a-phya-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386 +6.074666666666666,5,a-phya-i1,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,361,361.0 +6.1066666666666665,5,a-phya-i1,2016-17,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,710,355.0 +5.301333333333333,5,a-phya-i1,2016-17,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1012,506.0 +5.773333333333333,5,a-phya-i1,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,835,417.5 +4.493333333333333,4.49,a-phya-i1,2016-17,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1315,657.5 +7.541333333333333,5,a-phya-i1,2016-17,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,86,86.0 +7.216,5,a-phya-i1,2016-17,Marblehead - Elbridge Gerry,01680015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,147,147.0 +6.181333333333333,5,a-phya-i1,2016-17,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,341,341.0 +7.109333333333334,5,a-phya-i1,2016-17,Marblehead - L H Coffin,01680010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,167,167.0 +1,1,a-phya-i1,2016-17,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267 +4.496666666666667,4.5,a-phya-i1,2016-17,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,1051,656.875 +5.317333333333333,5,a-phya-i1,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +5.773333333333333,5,a-phya-i1,2016-17,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 1.6,668,417.5 +1.8666666666666667,1.87,a-phya-i1,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,230,1150.0 +5.557333333333333,5,a-phya-i1,2016-17,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,458,458.0 +5.715555555555556,5,a-phya-i1,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,1285,428.3333333333333 +4.815238095238095,4.82,a-phya-i1,2016-17,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,836,597.1428571428572 +7.125333333333334,5,a-phya-i1,2016-17,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,164,164.0 +4.688,4.69,a-phya-i1,2016-17,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,621,621.0 +5.0906666666666665,5,a-phya-i1,2016-17,Marlborough - Marlborough High,01700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1091,545.5 +5.184,5,a-phya-i1,2016-17,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,528,528.0 +5.978666666666666,5,a-phya-i1,2016-17,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +6.645333333333333,5,a-phya-i1,2016-17,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +2.5813333333333333,2.58,a-phya-i1,2016-17,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1016,1016.0 +5.744,5,a-phya-i1,2016-17,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,423,423.0 +3.1288888888888886,3.13,a-phya-i1,2016-17,Marshfield - Marshfield High,01710505, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 1.5,1370,913.3333333333334 +5.642666666666667,5,a-phya-i1,2016-17,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 +6.074666666666666,5,a-phya-i1,2016-17,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,361,361.0 +4.474666666666667,4.47,a-phya-i1,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,661,661.0 +6.462222222222222,5,a-phya-i1,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,173,288.33333333333337 +6.048,5,a-phya-i1,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +4.832,4.83,a-phya-i1,2016-17,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1188,594.0 +6.269333333333333,5,a-phya-i1,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 1.5, 0.5, 0.0, 0.0, 2.0,649,324.5 +1,1,a-phya-i1,2016-17,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314 +5.786666666666667,5,a-phya-i1,2016-17,Mashpee - Mashpee High,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,415,415.0 +1,1,a-phya-i1,2016-17,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +6.682666666666667,5,a-phya-i1,2016-17,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,494,247.0 +1,1,a-phya-i1,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.0, 0.0,667 +1,1,a-phya-i1,2016-17,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,235 +5.738666666666667,5,a-phya-i1,2016-17,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,212,424.0 +5.68,5,a-phya-i1,2016-17,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,435,435.0 +5.322666666666667,5,a-phya-i1,2016-17,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,502,502.0 +5.322666666666667,5,a-phya-i1,2016-17,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,502,502.0 +6.032,5,a-phya-i1,2016-17,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,369,369.0 +5.193333333333333,5,a-phya-i1,2016-17,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,842,526.25 +5.765333333333333,5,a-phya-i1,2016-17,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +6.144,5,a-phya-i1,2016-17,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,348,348.0 +4.661333333333333,4.66,a-phya-i1,2016-17,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,626,626.0 +1,1,a-phya-i1,2016-17,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497 +1,1,a-phya-i1,2016-17,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426 +1,1,a-phya-i1,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,22 +1,1,a-phya-i1,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544 +1,1,a-phya-i1,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476 +1,1,a-phya-i1,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506 +1,1,a-phya-i1,2016-17,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1174 +1,1,a-phya-i1,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257 +1,1,a-phya-i1,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585 +5.328,5,a-phya-i1,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,501,501.0 +6.1706666666666665,5,a-phya-i1,2016-17,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,343,343.0 +3.936,3.94,a-phya-i1,2016-17,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,762,762.0 +4.213333333333333,4.21,a-phya-i1,2016-17,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,710,710.0 +1,1,a-phya-i1,2016-17,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290 +1,1,a-phya-i1,2016-17,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251 +1,1,a-phya-i1,2016-17,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265 +1,1,a-phya-i1,2016-17,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430 +1,1,a-phya-i1,2016-17,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,988 +1,1,a-phya-i1,2016-17,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,772 +1,1,a-phya-i1,2016-17,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429 +1,1,a-phya-i1,2016-17,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373 +5.717333333333333,5,a-phya-i1,2016-17,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +5.669333333333333,5,a-phya-i1,2016-17,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,437,437.0 +3.84,3.84,a-phya-i1,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,780,780.0 +4.8373333333333335,4.84,a-phya-i1,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,593,593.0 +5.026666666666666,5,a-phya-i1,2016-17,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1115,557.5 +0.8053333333333333,1,a-phya-i1,2016-17,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1349,1349.0 +4.688,4.69,a-phya-i1,2016-17,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1242,621.0 +4.522298850574712,4.52,a-phya-i1,2016-17,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.9, 0.0, 2.9,1891,652.0689655172414 +1,1,a-phya-i1,2016-17,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1299 +5.197575757575758,5,a-phya-i1,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,578,525.4545454545454 +4.247272727272727,4.25,a-phya-i1,2016-17,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,774,703.6363636363636 +5.158787878787879,5,a-phya-i1,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.1,586,532.7272727272726 +7.369696969696971,5,a-phya-i1,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,130,118.18181818181817 +4.635151515151516,4.64,a-phya-i1,2016-17,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,694,630.9090909090909 +6.8213333333333335,5,a-phya-i1,2016-17,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,221,221.0 +6.406666666666666,5,a-phya-i1,2016-17,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.2, 0.6, 0.8, 0.0, 0.0, 1.6,478,298.75 +1,1,a-phya-i1,2016-17,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499 +5.514666666666667,5,a-phya-i1,2016-17,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,466,466.0 +4.973333333333334,4.97,a-phya-i1,2016-17,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1135,567.5 +6.549333333333333,5,a-phya-i1,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,136,272.0 +2.8373333333333335,2.84,a-phya-i1,2016-17,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,968,968.0 +5.378666666666667,5,a-phya-i1,2016-17,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,983,491.5 +4.997333333333334,5.0,a-phya-i1,2016-17,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,563,563.0 +4.1226666666666665,4.12,a-phya-i1,2016-17,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,727,727.0 +5.669333333333333,5,a-phya-i1,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,437,437.0 +5.312,5,a-phya-i1,2016-17,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,504,504.0 +5.92,5,a-phya-i1,2016-17,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,390,390.0 +1,1,a-phya-i1,2016-17,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429 +3.12,3.12,a-phya-i1,2016-17,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,915,915.0 +4.24,4.24,a-phya-i1,2016-17,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,705,705.0 +5.306666666666667,5,a-phya-i1,2016-17,Milton - Cunningham School,01890007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,505,505.0 +4.858666666666666,4.86,a-phya-i1,2016-17,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,589,589.0 +1,1,a-phya-i1,2016-17,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1001 +5.68,5,a-phya-i1,2016-17,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,435,435.0 +2.8266666666666667,2.83,a-phya-i1,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,582,970.0 +6.618666666666667,5,a-phya-i1,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,259,259.0 +1,1,a-phya-i1,2016-17,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112 +1,1,a-phya-i1,2016-17,Mohawk Trail - Heath Elementary,07170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,29 +5.749333333333333,5,a-phya-i1,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,422,422.0 +7.237333333333333,5,a-phya-i1,2016-17,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,143,143.0 +6.544,5,a-phya-i1,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,273,273.0 +4.981333333333334,4.98,a-phya-i1,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,566,566.0 +4.8053333333333335,4.81,a-phya-i1,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,599,599.0 +5.728,5,a-phya-i1,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +6.330666666666667,5,a-phya-i1,2016-17,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,313,313.0 +6.469333333333333,5,a-phya-i1,2016-17,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +1,1,a-phya-i1,2016-17,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379 +3.988771929824561,3.99,a-phya-i1,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0, 0.0, 1.9,1429,752.1052631578948 +5.002666666666666,5,a-phya-i1,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,562,562.0 +6.018666666666666,5,a-phya-i1,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.3, 0.0, 2.0, 1.8, 0.0, 0.0, 4.0,1486,371.5 +7.242666666666667,5,a-phya-i1,2016-17,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.8, 0.2, 0.0, 0.0, 1.0,142,142.0 +6.250666666666667,5,a-phya-i1,2016-17,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +4.176,4.18,a-phya-i1,2016-17,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,717,717.0 +4.413333333333333,4.41,a-phya-i1,2016-17,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,538,672.5 +1,1,a-phya-i1,2016-17,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277 +6.8773333333333335,5,a-phya-i1,2016-17,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,421,210.5 +6.016,5,a-phya-i1,2016-17,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,372,372.0 +7.1306666666666665,5,a-phya-i1,2016-17,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,163,163.0 +7.157333333333334,5,a-phya-i1,2016-17,Narragansett - Templeton Center,07200020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,158,158.0 +4.752,4.75,a-phya-i1,2016-17,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,609,609.0 +3.872,3.87,a-phya-i1,2016-17,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,774,774.0 +4.173333333333333,4.17,a-phya-i1,2016-17,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,287,717.5 +6.682666666666667,5,a-phya-i1,2016-17,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +5.413333333333333,5,a-phya-i1,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,485,485.0 +5.926153846153847,5,a-phya-i1,2016-17,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 0.6, 1.0, 0.0, 2.6,1011,388.8461538461538 +4.096,4.1,a-phya-i1,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,732,732.0 +4.302222222222222,4.3,a-phya-i1,2016-17,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.3, 0.0, 0.6, 0.0, 0.0, 0.9,624,693.3333333333334 +5.253333333333333,5,a-phya-i1,2016-17,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,515,515.0 +4.538666666666667,4.54,a-phya-i1,2016-17,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,649,649.0 +6.816,5,a-phya-i1,2016-17,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,222,222.0 +5.776,5,a-phya-i1,2016-17,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +1,1,a-phya-i1,2016-17,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434 +4.302222222222222,4.3,a-phya-i1,2016-17,Natick - Natick High,01980505, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 0.0, 2.4,1664,693.3333333333334 +6.057435897435897,5,a-phya-i1,2016-17,Natick - Wilson Middle,01980310, 0.0, 0.0, 0.0, 1.0, 1.6, 0.0, 0.0, 2.6,947,364.2307692307692 +4.696888888888889,4.7,a-phya-i1,2016-17,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,929,619.3333333333334 +6.097777777777777,5,a-phya-i1,2016-17,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,535,356.6666666666667 +5.050666666666666,5,a-phya-i1,2016-17,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 +5.754666666666667,5,a-phya-i1,2016-17,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +5.482666666666667,5,a-phya-i1,2016-17,Needham - Hillside Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,472,472.0 +5.9093333333333335,5,a-phya-i1,2016-17,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,392,392.0 +4.153043478260869,4.15,a-phya-i1,2016-17,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.3, 0.0, 2.0, 0.0, 2.3,1659,721.304347826087 +6.08,5,a-phya-i1,2016-17,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,720,360.0 +4.8853333333333335,4.89,a-phya-i1,2016-17,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,876,584.0 +5.36,5,a-phya-i1,2016-17,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,495,495.0 +5.562666666666667,5,a-phya-i1,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,457,457.0 +5.912,5,a-phya-i1,2016-17,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,783,391.5 +6.538666666666667,5,a-phya-i1,2016-17,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,548,274.0 +4.832,4.83,a-phya-i1,2016-17,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,297,594.0 +5.968,5,a-phya-i1,2016-17,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,381,381.0 +5.436444444444444,5,a-phya-i1,2016-17,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,721,480.6666666666667 +6.234666666666667,5,a-phya-i1,2016-17,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +6.458666666666667,5,a-phya-i1,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +4.928,4.93,a-phya-i1,2016-17,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,288,576.0 +5.5555555555555545,5,a-phya-i1,2016-17,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,275,458.33333333333337 +6.341333333333333,5,a-phya-i1,2016-17,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,622,311.0 +4.117333333333334,4.12,a-phya-i1,2016-17,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,364,728.0 +4.8933333333333335,4.89,a-phya-i1,2016-17,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,233,582.5 +7.208,5,a-phya-i1,2016-17,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,297,148.5 +6.197333333333333,5,a-phya-i1,2016-17,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +4.021333333333334,4.02,a-phya-i1,2016-17,New Bedford - John Hannigan,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,373,746.0 +4.8533333333333335,4.85,a-phya-i1,2016-17,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,885,590.0 +2.6293333333333333,2.63,a-phya-i1,2016-17,New Bedford - New Bedford High,02010505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,2014,1007.0 +5.6,5,a-phya-i1,2016-17,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.0, 2.5,1125,450.0 +1,1,a-phya-i1,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247 +5.888,5,a-phya-i1,2016-17,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,792,396.0 +5.0986666666666665,5,a-phya-i1,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,816,544.0 +5.685333333333333,5,a-phya-i1,2016-17,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,217,434.0 +7.664,5,a-phya-i1,2016-17,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,63,63.0 +7.413333333333333,5,a-phya-i1,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,110,110.0 +5.536,5,a-phya-i1,2016-17,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,231,462.0 +6.330666666666667,5,a-phya-i1,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,313,313.0 +6.497777777777777,5,a-phya-i1,2016-17,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,169,281.6666666666667 +6.234666666666667,5,a-phya-i1,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +6.628266666666667,5,a-phya-i1,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 0.0, 2.5,643,257.2 +5.922666666666666,5,a-phya-i1,2016-17,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,779,389.5 +6.0728888888888894,5,a-phya-i1,2016-17,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,542,361.3333333333333 +5.754666666666667,5,a-phya-i1,2016-17,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,421,421.0 +1,1,a-phya-i1,2016-17,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,525 +5.776,5,a-phya-i1,2016-17,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +5.856,5,a-phya-i1,2016-17,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,402,402.0 +5.866666666666666,5,a-phya-i1,2016-17,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,400,400.0 +1,1,a-phya-i1,2016-17,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,774 +5.674666666666667,5,a-phya-i1,2016-17,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,436,436.0 +3.0986666666666665,3.1,a-phya-i1,2016-17,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,919,919.0 +6.810666666666667,5,a-phya-i1,2016-17,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,446,223.0 +7.258666666666667,5,a-phya-i1,2016-17,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,417,139.0 +7.168,5,a-phya-i1,2016-17,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,312,156.0 +6.1546666666666665,5,a-phya-i1,2016-17,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,346,346.0 +1,1,a-phya-i1,2016-17,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507 +6.789333333333333,5,a-phya-i1,2016-17,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,454,227.0 +6.970666666666666,5,a-phya-i1,2016-17,Newton - Newton Early Childhood Center,02070108, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,193,193.0 +2.3306666666666667,2.33,a-phya-i1,2016-17,Newton - Newton North High,02070505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,2126,1063.0 +3.064,3.06,a-phya-i1,2016-17,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1851,925.5 +4.592,4.59,a-phya-i1,2016-17,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,639,639.0 +7.2026666666666666,5,a-phya-i1,2016-17,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,299,149.5 +6.330666666666667,5,a-phya-i1,2016-17,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 +6.437333333333333,5,a-phya-i1,2016-17,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,293,293.0 +7.101333333333334,5,a-phya-i1,2016-17,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,337,168.5 +5.36,5,a-phya-i1,2016-17,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.4, 1.0,495,495.0 +5.642666666666667,5,a-phya-i1,2016-17,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +5.152,5,a-phya-i1,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,534,534.0 +5.925333333333334,5,a-phya-i1,2016-17,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,389,389.0 +6.208,5,a-phya-i1,2016-17,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,336,336.0 +5.658666666666667,5,a-phya-i1,2016-17,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,439,439.0 +6.389333333333333,5,a-phya-i1,2016-17,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,302,302.0 +5.056,5,a-phya-i1,2016-17,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,552,552.0 +6.536,5,a-phya-i1,2016-17,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,549,274.5 +5.456,5,a-phya-i1,2016-17,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,477,477.0 +6.421333333333333,5,a-phya-i1,2016-17,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +1,1,a-phya-i1,2016-17,North Andover - North Andover High,02110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1391 +5.238787878787879,5,a-phya-i1,2016-17,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.2, 1.0, 0.0, 0.0, 2.2,1139,517.7272727272726 +6.069333333333334,5,a-phya-i1,2016-17,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +6.595555555555556,5,a-phya-i1,2016-17,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,395,263.3333333333333 +6.2026666666666666,5,a-phya-i1,2016-17,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +6.32888888888889,5,a-phya-i1,2016-17,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,282,313.3333333333333 +4.357333333333333,4.36,a-phya-i1,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,683,683.0 +4.735438596491227,4.74,a-phya-i1,2016-17,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 0.0, 0.9, 1.0, 0.0, 1.9,1163,612.1052631578948 +1,1,a-phya-i1,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136 +5.1386666666666665,5,a-phya-i1,2016-17,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1073,536.5 +6.151111111111111,5,a-phya-i1,2016-17,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,312,346.6666666666667 +6.245333333333333,5,a-phya-i1,2016-17,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,329,329.0 +1,1,a-phya-i1,2016-17,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230 +6.848,5,a-phya-i1,2016-17,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +5.386666666666667,5,a-phya-i1,2016-17,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,490,490.0 +6.441481481481482,5,a-phya-i1,2016-17,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 1.8,526,292.22222222222223 +5.980952380952382,5,a-phya-i1,2016-17,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.0, 2.1,795,378.57142857142856 +1,1,a-phya-i1,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,10 +5.722666666666667,5,a-phya-i1,2016-17,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,427,427.0 +7.398095238095238,5,a-phya-i1,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.7,79,112.85714285714286 +4.997333333333334,5.0,a-phya-i1,2016-17,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,563,563.0 +6.282666666666667,5,a-phya-i1,2016-17,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +6.181333333333333,5,a-phya-i1,2016-17,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,341,341.0 +5.621333333333333,5,a-phya-i1,2016-17,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,446,446.0 +1,1,a-phya-i1,2016-17,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,811 +4.928,4.93,a-phya-i1,2016-17,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,576,576.0 +6.581333333333333,5,a-phya-i1,2016-17,Northampton - Bridge Street,02100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +6.24,5,a-phya-i1,2016-17,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,330,330.0 +4.597333333333333,4.6,a-phya-i1,2016-17,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,638,638.0 +6.192,5,a-phya-i1,2016-17,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,339,339.0 +3.3386666666666667,3.34,a-phya-i1,2016-17,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,874,874.0 +6.784,5,a-phya-i1,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,228,228.0 +5.408,5,a-phya-i1,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,486,486.0 +2.5028571428571427,2.5,a-phya-i1,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,1443,1030.7142857142858 +6.406666666666666,5,a-phya-i1,2016-17,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,239,298.75 +6.453333333333333,5,a-phya-i1,2016-17,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.4, 0.0, 0.0, 0.5, 0.0, 0.9,261,290.0 +6.206666666666667,5,a-phya-i1,2016-17,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,269,336.25 +1,1,a-phya-i1,2016-17,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303 +5.151111111111111,5,a-phya-i1,2016-17,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.8, 0.4, 0.0, 0.0, 1.2,641,534.1666666666667 +5.92,5,a-phya-i1,2016-17,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,390,390.0 +1,1,a-phya-i1,2016-17,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,584 +5.957333333333334,5,a-phya-i1,2016-17,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,766,383.0 +5.189333333333333,5,a-phya-i1,2016-17,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,527,527.0 +4.637333333333333,4.64,a-phya-i1,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,1261,630.5 +5.418666666666667,5,a-phya-i1,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,484,484.0 +6.010666666666666,5,a-phya-i1,2016-17,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +5.8613333333333335,5,a-phya-i1,2016-17,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +6.037333333333334,5,a-phya-i1,2016-17,Norton - L G Nourse Elementary,02180010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,368,368.0 +1,1,a-phya-i1,2016-17,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,763 +4.8213333333333335,4.82,a-phya-i1,2016-17,Norton - Norton Middle,02180305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,596,596.0 +5.466666666666667,5,a-phya-i1,2016-17,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +4.218666666666667,4.22,a-phya-i1,2016-17,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,709,709.0 +5.232,5,a-phya-i1,2016-17,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,519,519.0 +5.392,5,a-phya-i1,2016-17,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,489,489.0 +6.48,5,a-phya-i1,2016-17,Norwood - Balch,02200005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +6.688,5,a-phya-i1,2016-17,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,246,246.0 +6.922666666666666,5,a-phya-i1,2016-17,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,202,202.0 +5.322666666666667,5,a-phya-i1,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,753,502.0 +6.1866666666666665,5,a-phya-i1,2016-17,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,340,340.0 +5.898666666666666,5,a-phya-i1,2016-17,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,394,394.0 +7.1085714285714285,5,a-phya-i1,2016-17,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,234,167.14285714285717 +4.597333333333333,4.6,a-phya-i1,2016-17,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,957,638.0 +5.669333333333333,5,a-phya-i1,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,437,437.0 +5.088,5,a-phya-i1,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,546,546.0 +3.013333333333333,3.01,a-phya-i1,2016-17,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,748,935.0 +5.381333333333333,5,a-phya-i1,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,491,491.0 +1,1,a-phya-i1,2016-17,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332 +1,1,a-phya-i1,2016-17,Orange - Fisher Hill,02230015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297 +6.8533333333333335,5,a-phya-i1,2016-17,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,215,215.0 +7.109333333333334,5,a-phya-i1,2016-17,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,334,167.0 +5.776,5,a-phya-i1,2016-17,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +5.1306666666666665,5,a-phya-i1,2016-17,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,538,538.0 +5.738666666666667,5,a-phya-i1,2016-17,Oxford - Oxford Middle,02260405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,424,424.0 +1,1,a-phya-i1,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25 +6.677333333333333,5,a-phya-i1,2016-17,Palmer - Converse Middle,02270305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,248,248.0 +4.304,4.3,a-phya-i1,2016-17,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,693,693.0 +5.408,5,a-phya-i1,2016-17,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +1.408,1.41,a-phya-i1,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,618,1236.0 +4.501333333333333,4.5,a-phya-i1,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,328,656.0 +1,1,a-phya-i1,2016-17,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369 +1,1,a-phya-i1,2016-17,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386 +1,1,a-phya-i1,2016-17,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1339 +1,1,a-phya-i1,2016-17,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275 +1,1,a-phya-i1,2016-17,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353 +1,1,a-phya-i1,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1540 +1,1,a-phya-i1,2016-17,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465 +1,1,a-phya-i1,2016-17,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,619 +1,1,a-phya-i1,2016-17,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238 +1,1,a-phya-i1,2016-17,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372 +7.296,5,a-phya-i1,2016-17,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,132,132.0 +5.258666666666667,5,a-phya-i1,2016-17,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,514,514.0 +5.68,5,a-phya-i1,2016-17,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,435,435.0 +4.928,4.93,a-phya-i1,2016-17,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,576,576.0 +5.312,5,a-phya-i1,2016-17,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,504,504.0 +2.8106666666666666,2.81,a-phya-i1,2016-17,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,973,973.0 +6.9013333333333335,5,a-phya-i1,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,206,206.0 +6.144,5,a-phya-i1,2016-17,Pentucket - Dr John C Page School,07450015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +5.301333333333333,5,a-phya-i1,2016-17,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,506,506.0 +6.704,5,a-phya-i1,2016-17,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +5.541333333333333,5,a-phya-i1,2016-17,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 +4.085333333333334,4.09,a-phya-i1,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,734,734.0 +7.338666666666667,5,a-phya-i1,2016-17,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,124,124.0 +6.970666666666666,5,a-phya-i1,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,193,193.0 +1,1,a-phya-i1,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170 +6.069333333333334,5,a-phya-i1,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.5, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,543,362.0 +6.282666666666667,5,a-phya-i1,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +7.061333333333334,5,a-phya-i1,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,176,176.0 +7.008,5,a-phya-i1,2016-17,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,186,186.0 +7.653333333333333,5,a-phya-i1,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,39,65.0 +5.818666666666667,5,a-phya-i1,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +7.696,5,a-phya-i1,2016-17,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,57,57.0 +5.488,5,a-phya-i1,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +5.8773333333333335,5,a-phya-i1,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,398,398.0 +6.496,5,a-phya-i1,2016-17,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,282,282.0 +5.658666666666667,5,a-phya-i1,2016-17,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +5.498666666666667,5,a-phya-i1,2016-17,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,469,469.0 +5.04,5,a-phya-i1,2016-17,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,555,555.0 +5.776,5,a-phya-i1,2016-17,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +3.408,3.41,a-phya-i1,2016-17,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,861,861.0 +6.8853333333333335,5,a-phya-i1,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,209,209.0 +6.069333333333334,5,a-phya-i1,2016-17,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +6.746666666666667,5,a-phya-i1,2016-17,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,235,235.0 +4.234666666666667,4.23,a-phya-i1,2016-17,Pittsfield - Taconic High,02360510, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,706,706.0 +1,1,a-phya-i1,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,629 +6.277333333333333,5,a-phya-i1,2016-17,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,323,323.0 +5.824,5,a-phya-i1,2016-17,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +6.368,5,a-phya-i1,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,306,306.0 +6.677333333333333,5,a-phya-i1,2016-17,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 +5.802666666666667,5,a-phya-i1,2016-17,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +6.88,5,a-phya-i1,2016-17,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,210,210.0 +4.981333333333334,4.98,a-phya-i1,2016-17,Plymouth - Indian Brook,02390012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,566,566.0 +6.378666666666667,5,a-phya-i1,2016-17,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,304,304.0 +4.848,4.85,a-phya-i1,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,591,591.0 +6.227555555555556,5,a-phya-i1,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,997,332.3333333333333 +7.381333333333333,5,a-phya-i1,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,116,116.0 +5.318974358974359,5,a-phya-i1,2016-17,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 2.6,1307,502.6923076923077 +2.528,2.53,a-phya-i1,2016-17,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1026,1026.0 +3.536,3.54,a-phya-i1,2016-17,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,837,837.0 +5.072,5,a-phya-i1,2016-17,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +5.925333333333334,5,a-phya-i1,2016-17,Plymouth - West Elementary,02390047, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +6.8853333333333335,5,a-phya-i1,2016-17,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,209,209.0 +4.973333333333334,4.97,a-phya-i1,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1135,567.5 +1,1,a-phya-i1,2016-17,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129 +6.965333333333334,5,a-phya-i1,2016-17,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,194,194.0 +6.314666666666667,5,a-phya-i1,2016-17,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,316,316.0 +1,1,a-phya-i1,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +7.424,5,a-phya-i1,2016-17,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,108,108.0 +1,1,a-phya-i1,2016-17,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149 +4.394666666666667,4.39,a-phya-i1,2016-17,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,676,676.0 +5.738666666666667,5,a-phya-i1,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,424,424.0 +6.037333333333334,5,a-phya-i1,2016-17,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,368,368.0 +6.053333333333334,5,a-phya-i1,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +1,1,a-phya-i1,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237 +5.482666666666667,5,a-phya-i1,2016-17,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,472,472.0 +6.261333333333333,5,a-phya-i1,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,326,326.0 +6.1866666666666665,5,a-phya-i1,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,170,340.0 +5.141333333333334,5,a-phya-i1,2016-17,Quincy - Atherton Hough,02430040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,268,536.0 +2.986666666666667,2.99,a-phya-i1,2016-17,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,470,940.0 +4.266666666666667,4.27,a-phya-i1,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,350,700.0 +4.0,4.0,a-phya-i1,2016-17,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,375,750.0 +4.592,4.59,a-phya-i1,2016-17,Quincy - Central Middle,02430315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5, 0.0, 1.0,639,639.0 +4.352,4.35,a-phya-i1,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,342,684.0 +1.8666666666666667,1.87,a-phya-i1,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,575,1150.0 +4.554666666666667,4.55,a-phya-i1,2016-17,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,323,646.0 +2.5813333333333333,2.58,a-phya-i1,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,508,1016.0 +4.266666666666667,4.27,a-phya-i1,2016-17,Quincy - Merrymount,02430060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,350,700.0 +3.424,3.42,a-phya-i1,2016-17,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,429,858.0 +1.7706666666666666,1.77,a-phya-i1,2016-17,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,1168,1168.0 +4.426666666666667,4.43,a-phya-i1,2016-17,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,335,670.0 +-0.016,1,a-phya-i1,2016-17,Quincy - Quincy High,02430505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,1503,1503.0 +4.373333333333333,4.37,a-phya-i1,2016-17,Quincy - Reay E Sterling Middle,02430320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,340,680.0 +5.1466666666666665,5,a-phya-i1,2016-17,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,428,535.0 +4.394666666666667,4.39,a-phya-i1,2016-17,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,338,676.0 +4.394666666666667,4.39,a-phya-i1,2016-17,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,338,676.0 +1,1,a-phya-i1,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,38 +1.2266666666666666,1.23,a-phya-i1,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,635,1270.0 +1,1,a-phya-i1,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79 +6.421333333333333,5,a-phya-i1,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +5.418666666666667,5,a-phya-i1,2016-17,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,484,484.0 +5.685333333333333,5,a-phya-i1,2016-17,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,434,434.0 +6.293333333333333,5,a-phya-i1,2016-17,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,320,320.0 +4.746666666666667,4.75,a-phya-i1,2016-17,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,610,610.0 +3.9762962962962964,3.98,a-phya-i1,2016-17,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,679,754.4444444444445 +5.952,5,a-phya-i1,2016-17,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,384,384.0 +5.514666666666667,5,a-phya-i1,2016-17,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,466,466.0 +5.957333333333334,5,a-phya-i1,2016-17,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,383,383.0 +5.744,5,a-phya-i1,2016-17,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,423,423.0 +5.733333333333333,5,a-phya-i1,2016-17,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +1,1,a-phya-i1,2016-17,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91 +4.251851851851852,4.25,a-phya-i1,2016-17,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,1265,702.7777777777777 +4.949333333333334,4.95,a-phya-i1,2016-17,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,572,572.0 +6.32,5,a-phya-i1,2016-17,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,315,315.0 +4.1066666666666665,4.11,a-phya-i1,2016-17,Revere - A. C. Whelan Elementary School,02480003, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,730,730.0 +4.432,4.43,a-phya-i1,2016-17,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,669,669.0 +5.533333333333333,5,a-phya-i1,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,370,462.5 +3.504,3.5,a-phya-i1,2016-17,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,843,843.0 +5.1146666666666665,5,a-phya-i1,2016-17,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +5.365333333333333,5,a-phya-i1,2016-17,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,494,494.0 +3.1013333333333333,3.1,a-phya-i1,2016-17,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1837,918.5 +4.8373333333333335,4.84,a-phya-i1,2016-17,Revere - Rumney Marsh Academy,02480014, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,593,593.0 +4.773333333333333,4.77,a-phya-i1,2016-17,Revere - Seacoast School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,121,605.0 +4.288,4.29,a-phya-i1,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,696,696.0 +2.058666666666667,2.06,a-phya-i1,2016-17,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,557,1114.0 +6.846666666666667,5,a-phya-i1,2016-17,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,173,216.25 +6.226666666666667,5,a-phya-i1,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,665,332.5 +6.464,5,a-phya-i1,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.514666666666667,5,a-phya-i1,2016-17,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,466,466.0 +4.458666666666667,4.46,a-phya-i1,2016-17,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,332,664.0 +0.7466666666666667,1,a-phya-i1,2016-17,Rockland - John W Rogers Middle,02510305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,680,1360.0 +1,1,a-phya-i1,2016-17,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275 +4.757333333333333,4.76,a-phya-i1,2016-17,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,304,608.0 +0.5013333333333333,1,a-phya-i1,2016-17,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,703,1406.0 +5.8293333333333335,5,a-phya-i1,2016-17,Rockport - Rockport Elementary,02520005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +6.432,5,a-phya-i1,2016-17,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,294,294.0 +6.789333333333333,5,a-phya-i1,2016-17,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,227,227.0 +7.685333333333333,5,a-phya-i1,2016-17,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,59,59.0 +5.678222222222223,5,a-phya-i1,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,1306,435.3333333333333 +-8.810666666666666,1,a-phya-i1,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,1576,3152.0 +4.512,4.51,a-phya-i1,2016-17,Salem - Bates,02580003, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,327,654.0 +5.450666666666667,5,a-phya-i1,2016-17,Salem - Carlton,02580015, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,239,478.0 +4.366666666666666,4.37,a-phya-i1,2016-17,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.5, 0.3, 0.0, 0.0, 0.8,545,681.25 +4.938666666666666,4.94,a-phya-i1,2016-17,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,287,574.0 +6.178461538461539,5,a-phya-i1,2016-17,Salem - Nathaniel Bowditch,02580025, 0.0, 0.0, 0.0, 1.0, 0.3, 0.0, 0.0, 1.3,444,341.53846153846155 +5.8133333333333335,5,a-phya-i1,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1,41,410.0 +7.018666666666666,5,a-phya-i1,2016-17,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,92,184.0 +5.512,5,a-phya-i1,2016-17,Salem - Salem High,02580505, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.5, 2.0,933,466.5 +1,1,a-phya-i1,2016-17,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +4.032,4.03,a-phya-i1,2016-17,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,372,744.0 +2.8906666666666667,2.89,a-phya-i1,2016-17,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,479,958.0 +1,1,a-phya-i1,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442 +5.546666666666667,5,a-phya-i1,2016-17,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 1.4,644,460.00000000000006 +4.99,4.99,a-phya-i1,2016-17,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,903,564.375 +5.299047619047619,5,a-phya-i1,2016-17,Sandwich - Sandwich High,02610505, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,709,506.42857142857144 +5.493333333333333,5,a-phya-i1,2016-17,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,470,470.0 +1,1,a-phya-i1,2016-17,Saugus - Ballard School,02620001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110 +4.522666666666667,4.52,a-phya-i1,2016-17,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,652,652.0 +6.9013333333333335,5,a-phya-i1,2016-17,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,206,206.0 +6.746666666666667,5,a-phya-i1,2016-17,Saugus - Lynnhurst,02620040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,235,235.0 +6.858666666666666,5,a-phya-i1,2016-17,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,214,214.0 +5.589333333333333,5,a-phya-i1,2016-17,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.5, 0.0, 1.5,678,452.0 +6.645333333333333,5,a-phya-i1,2016-17,Saugus - Veterans Memorial,02620065, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,508,254.0 +1,1,a-phya-i1,2016-17,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49 +6.064,5,a-phya-i1,2016-17,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,363,363.0 +5.221333333333333,5,a-phya-i1,2016-17,Scituate - Gates Intermediate School,02640305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,521,521.0 +6.330666666666667,5,a-phya-i1,2016-17,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,313,313.0 +5.530666666666667,5,a-phya-i1,2016-17,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,463,463.0 +3.1253333333333333,3.13,a-phya-i1,2016-17,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,914,914.0 +6.8613333333333335,5,a-phya-i1,2016-17,Scituate - Wampatuck Elementary,02640020, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,427,213.5 +5.232,5,a-phya-i1,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,519,519.0 +5.669333333333333,5,a-phya-i1,2016-17,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,437,437.0 +5.786666666666667,5,a-phya-i1,2016-17,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,415,415.0 +4.890666666666666,4.89,a-phya-i1,2016-17,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,583,583.0 +4.442666666666667,4.44,a-phya-i1,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +5.2,5,a-phya-i1,2016-17,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,525,525.0 +6.781333333333333,5,a-phya-i1,2016-17,Sharon - East Elementary,02660010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,457,228.5 +5.1786666666666665,5,a-phya-i1,2016-17,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,529,529.0 +2.3573333333333335,2.36,a-phya-i1,2016-17,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1058,1058.0 +3.2053333333333334,3.21,a-phya-i1,2016-17,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,899,899.0 +0.8746666666666667,1,a-phya-i1,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1336,1336.0 +5.712,5,a-phya-i1,2016-17,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +6.304,5,a-phya-i1,2016-17,Shrewsbury - Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,318,318.0 +5.818666666666667,5,a-phya-i1,2016-17,Shrewsbury - Calvin Coolidge,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +4.149333333333334,4.15,a-phya-i1,2016-17,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,722,722.0 +6.21688888888889,5,a-phya-i1,2016-17,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 1.0, 0.5, 1.5, 0.0, 0.0, 3.0,1003,334.3333333333333 +7.381333333333333,5,a-phya-i1,2016-17,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,232,116.0 +1,1,a-phya-i1,2016-17,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,977 +-11.114666666666666,1,a-phya-i1,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1792,3584.0 +1,1,a-phya-i1,2016-17,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372 +1,1,a-phya-i1,2016-17,Shrewsbury - Walter J Paton,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366 +1,1,a-phya-i1,2016-17,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,121 +4.976,4.98,a-phya-i1,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,567,567.0 +1.1786666666666668,1.18,a-phya-i1,2016-17,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1279,1279.0 +4.965333333333334,4.97,a-phya-i1,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,569,569.0 +6.026666666666666,5,a-phya-i1,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +5.8453333333333335,5,a-phya-i1,2016-17,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +5.301333333333333,5,a-phya-i1,2016-17,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,506,506.0 +4.714666666666667,4.71,a-phya-i1,2016-17,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,616,616.0 +6.581333333333333,5,a-phya-i1,2016-17,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,266,266.0 +5.317333333333333,5,a-phya-i1,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1006,503.0 +4.992,4.99,a-phya-i1,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,564,564.0 +5.717333333333333,5,a-phya-i1,2016-17,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,428,428.0 +5.482666666666667,5,a-phya-i1,2016-17,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,236,472.0 +1,1,a-phya-i1,2016-17,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,332 +4.133333333333334,4.13,a-phya-i1,2016-17,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,725,725.0 +1,1,a-phya-i1,2016-17,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61 +1,1,a-phya-i1,2016-17,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471 +7.8293333333333335,5,a-phya-i1,2016-17,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,16,32.0 +4.642666666666667,4.64,a-phya-i1,2016-17,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1259,629.5 +1,1,a-phya-i1,2016-17,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377 +1,1,a-phya-i1,2016-17,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462 +5.056,5,a-phya-i1,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,552,552.0 +5.717333333333333,5,a-phya-i1,2016-17,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +6.165333333333334,5,a-phya-i1,2016-17,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,344,344.0 +1,1,a-phya-i1,2016-17,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,545 +0.352,1,a-phya-i1,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,717,1434.0 +5.30488888888889,5,a-phya-i1,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 1.5,758,505.3333333333333 +4.608,4.61,a-phya-i1,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,636,636.0 +6.613333333333333,5,a-phya-i1,2016-17,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,520,260.0 +6.366666666666666,5,a-phya-i1,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,245,306.25 +6.013333333333334,5,a-phya-i1,2016-17,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,298,372.5 +6.046666666666667,5,a-phya-i1,2016-17,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,293,366.25 +4.94,4.94,a-phya-i1,2016-17,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,459,573.75 +5.754666666666667,5,a-phya-i1,2016-17,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +7.328,5,a-phya-i1,2016-17,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,252,126.0 +5.285333333333333,5,a-phya-i1,2016-17,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,509,509.0 +5.285333333333333,5,a-phya-i1,2016-17,Southbridge - Southbridge Middle School,02770315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,509,509.0 +5.701333333333333,5,a-phya-i1,2016-17,Southbridge - West Street,02770020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +0.448,1,a-phya-i1,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1416,1416.0 +6.442666666666667,5,a-phya-i1,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,292,292.0 +1,1,a-phya-i1,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90 +1,1,a-phya-i1,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +6.826666666666667,5,a-phya-i1,2016-17,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 1.5,330,220.0 +5.029333333333334,5,a-phya-i1,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1114,557.0 +7.562666666666667,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,82,82.0 +5.9093333333333335,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +6.034666666666666,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,737,368.5 +6.197333333333333,5,a-phya-i1,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,338,338.0 +4.394666666666667,4.39,a-phya-i1,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,338,676.0 +1,1,a-phya-i1,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212 +1,1,a-phya-i1,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414 +5.706666666666667,5,a-phya-i1,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,430,430.0 +6.904,5,a-phya-i1,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,411,205.5 +7.509333333333333,5,a-phya-i1,2016-17,Springfield - Alice B Beal Elementary,02810175, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,276,92.0 +1,1,a-phya-i1,2016-17,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270 +1,1,a-phya-i1,2016-17,Springfield - Balliet Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46 +7.1386666666666665,5,a-phya-i1,2016-17,Springfield - Brightwood,02810025, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,323,161.5 +1,1,a-phya-i1,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,298 +1,1,a-phya-i1,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317 +7.493333333333333,5,a-phya-i1,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,285,95.0 +6.2026666666666666,5,a-phya-i1,2016-17,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +6.728,5,a-phya-i1,2016-17,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,477,238.5 +7.232,5,a-phya-i1,2016-17,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,144,144.0 +5.898666666666666,5,a-phya-i1,2016-17,Springfield - Edward P. Boland School,02810010, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,788,394.0 +6.989333333333334,5,a-phya-i1,2016-17,Springfield - Elias Brookings,02810030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,379,189.5 +6.730666666666667,5,a-phya-i1,2016-17,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,714,238.0 +1,1,a-phya-i1,2016-17,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315 +4.832,4.83,a-phya-i1,2016-17,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,594,594.0 +1,1,a-phya-i1,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27 +1,1,a-phya-i1,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,48 +1,1,a-phya-i1,2016-17,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,731 +6.394666666666667,5,a-phya-i1,2016-17,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,301,301.0 +6.085333333333334,5,a-phya-i1,2016-17,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 +5.777777777777778,5,a-phya-i1,2016-17,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0,1250,416.6666666666667 +1,1,a-phya-i1,2016-17,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323 +5.674666666666667,5,a-phya-i1,2016-17,Springfield - Homer Street,02810085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +6.224,5,a-phya-i1,2016-17,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,666,333.0 +5.68,5,a-phya-i1,2016-17,Springfield - John F Kennedy Middle,02810328, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,435,435.0 +4.416,4.42,a-phya-i1,2016-17,Springfield - John J Duggan Middle,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,672,672.0 +6.368,5,a-phya-i1,2016-17,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +6.464,5,a-phya-i1,2016-17,Springfield - Liberty,02810115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +1,1,a-phya-i1,2016-17,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13 +5.8453333333333335,5,a-phya-i1,2016-17,Springfield - Lincoln,02810120, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +6.856888888888888,5,a-phya-i1,2016-17,Springfield - M Marcus Kiley Middle,02810330, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,643,214.33333333333334 +1,1,a-phya-i1,2016-17,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219 +6.229333333333333,5,a-phya-i1,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,332,332.0 +7.290666666666667,5,a-phya-i1,2016-17,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,266,133.0 +6.357333333333333,5,a-phya-i1,2016-17,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,308,308.0 +5.621333333333333,5,a-phya-i1,2016-17,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,446,446.0 +4.928,4.93,a-phya-i1,2016-17,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,576,576.0 +5.933333333333334,5,a-phya-i1,2016-17,Springfield - Rebecca M Johnson,02810055, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,775,387.5 +4.1546666666666665,4.15,a-phya-i1,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1442,721.0 +6.464,5,a-phya-i1,2016-17,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,288,288.0 +1,1,a-phya-i1,2016-17,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333 +6.688,5,a-phya-i1,2016-17,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,246,246.0 +5.26,5,a-phya-i1,2016-17,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 4.0,2055,513.75 +1,1,a-phya-i1,2016-17,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117 +6.1786666666666665,5,a-phya-i1,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 4.0,1366,341.5 +1,1,a-phya-i1,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,54 +1,1,a-phya-i1,2016-17,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,111 +7.701333333333333,5,a-phya-i1,2016-17,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,56,56.0 +6.464,5,a-phya-i1,2016-17,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,576,288.0 +6.0986666666666665,5,a-phya-i1,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,713,356.5 +1,1,a-phya-i1,2016-17,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323 +7.12,5,a-phya-i1,2016-17,Springfield - Van Sickle Academy,02810480, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,330,165.0 +1,1,a-phya-i1,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365 +6.512,5,a-phya-i1,2016-17,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,279,279.0 +1,1,a-phya-i1,2016-17,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434 +5.605333333333333,5,a-phya-i1,2016-17,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,449,449.0 +6.410666666666667,5,a-phya-i1,2016-17,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,298,298.0 +6.261333333333333,5,a-phya-i1,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,163,326.0 +6.581333333333333,5,a-phya-i1,2016-17,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,266,266.0 +6.037333333333334,5,a-phya-i1,2016-17,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,368,368.0 +6.218666666666667,5,a-phya-i1,2016-17,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 +4.234666666666667,4.23,a-phya-i1,2016-17,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,706,706.0 +4.378666666666667,4.38,a-phya-i1,2016-17,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,679,679.0 +7.52,5,a-phya-i1,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,90,90.0 +6.677333333333333,5,a-phya-i1,2016-17,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,248,248.0 +6.064,5,a-phya-i1,2016-17,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,363,363.0 +5.984,5,a-phya-i1,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,378,378.0 +3.7493333333333334,3.75,a-phya-i1,2016-17,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,797,797.0 +6.64,5,a-phya-i1,2016-17,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,255,255.0 +2.3413333333333335,2.34,a-phya-i1,2016-17,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1061,1061.0 +5.848888888888889,5,a-phya-i1,2016-17,Stoughton - West Elementary,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,363,403.3333333333333 +3.1093333333333333,3.11,a-phya-i1,2016-17,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,917,917.0 +5.856,5,a-phya-i1,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,804,402.0 +4.743333333333333,4.74,a-phya-i1,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.6, 1.0, 0.0, 0.0, 1.6,977,610.625 +6.096,5,a-phya-i1,2016-17,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,357,357.0 +5.402666666666667,5,a-phya-i1,2016-17,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,487,487.0 +5.936,5,a-phya-i1,2016-17,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,387,387.0 +4.826666666666667,4.83,a-phya-i1,2016-17,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,595,595.0 +6.629333333333333,5,a-phya-i1,2016-17,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,257,257.0 +5.8933333333333335,5,a-phya-i1,2016-17,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,316,395.0 +6.234666666666667,5,a-phya-i1,2016-17,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +5.728,5,a-phya-i1,2016-17,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,426,426.0 +5.5,5,a-phya-i1,2016-17,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.3, 0.5, 0.0, 0.0, 0.8,375,468.75 +5.802666666666667,5,a-phya-i1,2016-17,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,206,412.0 +4.832,4.83,a-phya-i1,2016-17,Swampscott - Hadley,02910010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,297,594.0 +5.034666666666666,5,a-phya-i1,2016-17,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,278,556.0 +0.7786666666666666,1,a-phya-i1,2016-17,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,677,1354.0 +-0.24533333333333332,1,a-phya-i1,2016-17,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,773,1546.0 +6.405333333333333,5,a-phya-i1,2016-17,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,299,299.0 +6.704,5,a-phya-i1,2016-17,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,243,243.0 +5.184,5,a-phya-i1,2016-17,Swansea - Joseph Case High,02920505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,528,528.0 +5.349333333333333,5,a-phya-i1,2016-17,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,497,497.0 +6.826666666666667,5,a-phya-i1,2016-17,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,220,220.0 +6.597333333333333,5,a-phya-i1,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,263,263.0 +1,1,a-phya-i1,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1119 +4.896,4.9,a-phya-i1,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +3.9466666666666668,3.95,a-phya-i1,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,760,760.0 +1,1,a-phya-i1,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497 +4.426666666666667,4.43,a-phya-i1,2016-17,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.4, 0.0, 0.0, 0.8, 0.0, 1.2,804,670.0 +5.056969696969698,5,a-phya-i1,2016-17,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 0.0, 0.3, 0.8, 0.1, 1.1,607,551.8181818181818 +5.78,5,a-phya-i1,2016-17,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,333,416.25 +4.490666666666667,4.49,a-phya-i1,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,329,658.0 +5.042424242424243,5,a-phya-i1,2016-17,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.0, 0.8, 0.3, 0.0, 0.1, 1.1,610,554.5454545454545 +6.36,5,a-phya-i1,2016-17,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,246,307.5 +6.053333333333334,5,a-phya-i1,2016-17,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,292,365.0 +4.98,4.98,a-phya-i1,2016-17,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,453,566.25 +4.473333333333334,4.47,a-phya-i1,2016-17,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,529,661.25 +5.249523809523809,5,a-phya-i1,2016-17,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.3, 0.0, 0.3, 0.8, 0.1, 1.4,722,515.7142857142858 +4.74,4.74,a-phya-i1,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,489,611.25 +7.406666666666666,5,a-phya-i1,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,89,111.25 +2.1982608695652175,2.2,a-phya-i1,2016-17,Taunton - Taunton High,02930505, 0.0, 0.8, 0.8, 0.8, 0.0, 0.0, 0.0, 2.3,2502,1087.8260869565217 +5.746666666666667,5,a-phya-i1,2016-17,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,338,422.5 +5.141333333333334,5,a-phya-i1,2016-17,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,536,536.0 +4.709333333333333,4.71,a-phya-i1,2016-17,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,617,617.0 +4.992,4.99,a-phya-i1,2016-17,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 +6.64,5,a-phya-i1,2016-17,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,255,255.0 +6.629333333333333,5,a-phya-i1,2016-17,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,257,257.0 +2.7733333333333334,2.77,a-phya-i1,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,980,980.0 +6.288,5,a-phya-i1,2016-17,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,321,321.0 +6.698666666666667,5,a-phya-i1,2016-17,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.2, 0.0, 1.0,244,244.0 +5.962666666666666,5,a-phya-i1,2016-17,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,382,382.0 +2.544,2.54,a-phya-i1,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1023,1023.0 +5.653333333333333,5,a-phya-i1,2016-17,Triton - Newbury Elementary,07730020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,440,440.0 +5.488,5,a-phya-i1,2016-17,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,471,471.0 +5.365333333333333,5,a-phya-i1,2016-17,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,494,494.0 +4.181333333333333,4.18,a-phya-i1,2016-17,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,716,716.0 +5.898666666666666,5,a-phya-i1,2016-17,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,394,394.0 +7.226666666666667,5,a-phya-i1,2016-17,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,116,145.0 +5.9013333333333335,5,a-phya-i1,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,787,393.5 +5.296,5,a-phya-i1,2016-17,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,507,507.0 +5.765333333333333,5,a-phya-i1,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 1.0,419,419.0 +5.482666666666667,5,a-phya-i1,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,472,472.0 +4.032,4.03,a-phya-i1,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,744,744.0 +6.826666666666667,5,a-phya-i1,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,44,220.0 +6.1386666666666665,5,a-phya-i1,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,349,349.0 +4.218666666666667,4.22,a-phya-i1,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,709,709.0 +1,1,a-phya-i1,2016-17,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46 +5.765333333333333,5,a-phya-i1,2016-17,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,419,419.0 +5.456,5,a-phya-i1,2016-17,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +5.429333333333333,5,a-phya-i1,2016-17,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,482,482.0 +5.808,5,a-phya-i1,2016-17,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,411,411.0 +6.330666666666667,5,a-phya-i1,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,313,313.0 +3.712,3.71,a-phya-i1,2016-17,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,402,804.0 +3.978666666666667,3.98,a-phya-i1,2016-17,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,377,754.0 +3.136,3.14,a-phya-i1,2016-17,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,456,912.0 +2.592,2.59,a-phya-i1,2016-17,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,507,1014.0 +1,1,a-phya-i1,2016-17,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150 +4.16,4.16,a-phya-i1,2016-17,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,360,720.0 +3.8186666666666667,3.82,a-phya-i1,2016-17,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,392,784.0 +2.752,2.75,a-phya-i1,2016-17,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,492,984.0 +-0.6293333333333333,1,a-phya-i1,2016-17,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,809,1618.0 +4.554666666666667,4.55,a-phya-i1,2016-17,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,323,646.0 +2.72,2.72,a-phya-i1,2016-17,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,495,990.0 +3.7866666666666666,3.79,a-phya-i1,2016-17,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,395,790.0 +-3.4133333333333336,1,a-phya-i1,2016-17,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,2140,2140.0 +5.642666666666667,5,a-phya-i1,2016-17,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +7.312,5,a-phya-i1,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,129,129.0 +2.2133333333333334,2.21,a-phya-i1,2016-17,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1085,1085.0 +6.810666666666667,5,a-phya-i1,2016-17,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,223,223.0 +2.5813333333333333,2.58,a-phya-i1,2016-17,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1016,1016.0 +6.928,5,a-phya-i1,2016-17,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,201,201.0 +5.642666666666667,5,a-phya-i1,2016-17,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 +7.028148148148149,5,a-phya-i1,2016-17,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.4, 0.9,164,182.22222222222223 +5.44,5,a-phya-i1,2016-17,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,480,480.0 +5.984,5,a-phya-i1,2016-17,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,378,378.0 +5.8133333333333335,5,a-phya-i1,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,82,410.0 +6.4142222222222225,5,a-phya-i1,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,446,297.3333333333333 +5.1466666666666665,5,a-phya-i1,2016-17,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,428,535.0 +5.568,5,a-phya-i1,2016-17,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,456,456.0 +5.642666666666667,5,a-phya-i1,2016-17,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +1.904,1.9,a-phya-i1,2016-17,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1143,1143.0 +5.696,5,a-phya-i1,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,432,432.0 +5.626666666666667,5,a-phya-i1,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +5.610666666666667,5,a-phya-i1,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 +5.306666666666667,5,a-phya-i1,2016-17,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,505,505.0 +4.874666666666666,4.87,a-phya-i1,2016-17,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,586,586.0 +6.605333333333333,5,a-phya-i1,2016-17,Waltham - Northeast Elementary School,03080040, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,523,261.5 +5.658666666666667,5,a-phya-i1,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +7.786666666666667,5,a-phya-i1,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,40,40.0 +3.7706666666666666,3.77,a-phya-i1,2016-17,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,1586,793.0 +5.562666666666667,5,a-phya-i1,2016-17,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +5.792,5,a-phya-i1,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,414,414.0 +5.466666666666667,5,a-phya-i1,2016-17,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,475,475.0 +6.2026666666666666,5,a-phya-i1,2016-17,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,337,337.0 +4.757333333333333,4.76,a-phya-i1,2016-17,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,608,608.0 +5.296,5,a-phya-i1,2016-17,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,507,507.0 +1,1,a-phya-i1,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61 +3.9093333333333335,3.91,a-phya-i1,2016-17,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,767,767.0 +5.237333333333333,5,a-phya-i1,2016-17,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,518,518.0 +6.421333333333333,5,a-phya-i1,2016-17,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +6.312,5,a-phya-i1,2016-17,Watertown - Hosmer,03140020, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,633,316.5 +5.696,5,a-phya-i1,2016-17,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +4.469333333333333,4.47,a-phya-i1,2016-17,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,662,662.0 +4.965333333333334,4.97,a-phya-i1,2016-17,Watertown - Watertown Middle,03140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +1,1,a-phya-i1,2016-17,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539 +5.941333333333334,5,a-phya-i1,2016-17,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,386,386.0 +1,1,a-phya-i1,2016-17,Wayland - Loker School,03150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257 +1,1,a-phya-i1,2016-17,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828 +1,1,a-phya-i1,2016-17,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636 +5.637333333333333,5,a-phya-i1,2016-17,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,443,443.0 +2.3666666666666667,2.37,a-phya-i1,2016-17,Webster - Park Avenue Elementary,03160015, 0.0, 0.3, 0.5, 0.0, 0.0, 0.0, 0.0, 0.8,845,1056.25 +5.677948717948719,5,a-phya-i1,2016-17,Webster - Webster Middle School,03160315, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.0, 1.3,566,435.38461538461536 +6.52,5,a-phya-i1,2016-17,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,222,277.5 +6.326666666666667,5,a-phya-i1,2016-17,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.6, 0.2, 0.0, 0.0, 0.8,251,313.75 +5.946666666666666,5,a-phya-i1,2016-17,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,308,385.0 +6.190769230769231,5,a-phya-i1,2016-17,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,441,339.2307692307692 +5.112380952380953,5,a-phya-i1,2016-17,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.6, 0.0, 0.1, 0.0, 0.7,379,541.4285714285714 +5.196190476190476,5,a-phya-i1,2016-17,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0, 0.7,368,525.7142857142858 +3.8186666666666667,3.82,a-phya-i1,2016-17,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,392,784.0 +3.302564102564103,3.3,a-phya-i1,2016-17,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0, 1.3,1145,880.7692307692307 +1.28,1.28,a-phya-i1,2016-17,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,1512,1260.0 +7.397333333333333,5,a-phya-i1,2016-17,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,113,113.0 +5.856,5,a-phya-i1,2016-17,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,402,402.0 +1,1,a-phya-i1,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,513 +6.56,5,a-phya-i1,2016-17,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,270,270.0 +6.629333333333333,5,a-phya-i1,2016-17,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,257,257.0 +7.248,5,a-phya-i1,2016-17,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,141,141.0 +4.698666666666667,4.7,a-phya-i1,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,619,619.0 +1,1,a-phya-i1,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14 +6.72,5,a-phya-i1,2016-17,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,120,240.0 +7.196444444444445,5,a-phya-i1,2016-17,West Springfield - John Ashley,03320005, 1.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.5,226,150.66666666666666 +5.536,5,a-phya-i1,2016-17,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +5.482666666666667,5,a-phya-i1,2016-17,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,236,472.0 +7.1306666666666665,5,a-phya-i1,2016-17,West Springfield - Mittineague,03320030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,163,163.0 +2.506666666666667,2.51,a-phya-i1,2016-17,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,515,1030.0 +5.578666666666667,5,a-phya-i1,2016-17,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,227,454.0 +1.4986666666666666,1.5,a-phya-i1,2016-17,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1219,1219.0 +-1.728,1,a-phya-i1,2016-17,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,912,1824.0 +6.181333333333333,5,a-phya-i1,2016-17,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,341,341.0 +5.408,5,a-phya-i1,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +6.933333333333334,5,a-phya-i1,2016-17,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,400,200.0 +3.2586666666666666,3.26,a-phya-i1,2016-17,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,889,889.0 +4.608,4.61,a-phya-i1,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,636,636.0 +5.192,5,a-phya-i1,2016-17,Westborough - Westborough High,03210505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1053,526.5 +6.8373333333333335,5,a-phya-i1,2016-17,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,218,218.0 +7.066666666666666,5,a-phya-i1,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,175,175.0 +6.661333333333333,5,a-phya-i1,2016-17,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +5.888,5,a-phya-i1,2016-17,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,396,396.0 +5.898666666666666,5,a-phya-i1,2016-17,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,394,394.0 +4.586666666666667,4.59,a-phya-i1,2016-17,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,640,640.0 +5.690666666666667,5,a-phya-i1,2016-17,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,433,433.0 +7.018666666666666,5,a-phya-i1,2016-17,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,184,184.0 +4.8533333333333335,4.85,a-phya-i1,2016-17,Westfield - South Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,590,590.0 +5.584,5,a-phya-i1,2016-17,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,453,453.0 +4.616,4.62,a-phya-i1,2016-17,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1269,634.5 +5.12,5,a-phya-i1,2016-17,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,540,540.0 +6.101333333333334,5,a-phya-i1,2016-17,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,356,356.0 +6.362666666666667,5,a-phya-i1,2016-17,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,614,307.0 +6.554666666666667,5,a-phya-i1,2016-17,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,271,271.0 +1,1,a-phya-i1,2016-17,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357 +6.208,5,a-phya-i1,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,336,336.0 +7.365333333333333,5,a-phya-i1,2016-17,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,119,119.0 +6.074666666666666,5,a-phya-i1,2016-17,Westford - Nabnasset,03260015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,361,361.0 +5.022222222222222,5,a-phya-i1,2016-17,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,335,558.3333333333334 +0.6293333333333333,1,a-phya-i1,2016-17,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,691,1382.0 +2.026666666666667,2.03,a-phya-i1,2016-17,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1680,1120.0 +7.306666666666667,5,a-phya-i1,2016-17,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,130,130.0 +6.1,5,a-phya-i1,2016-17,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,285,356.25 +3.3733333333333335,3.37,a-phya-i1,2016-17,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,347,867.5 +3.2933333333333334,3.29,a-phya-i1,2016-17,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,706,882.5 +4.573333333333333,4.57,a-phya-i1,2016-17,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,514,642.5 +6.389333333333333,5,a-phya-i1,2016-17,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,302,302.0 +5.957333333333334,5,a-phya-i1,2016-17,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +5.381333333333333,5,a-phya-i1,2016-17,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +4.928,4.93,a-phya-i1,2016-17,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,576,576.0 +6.810666666666667,5,a-phya-i1,2016-17,Westwood - Deerfield School,03350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,223,223.0 +6.698666666666667,5,a-phya-i1,2016-17,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,244,244.0 +3.76,3.76,a-phya-i1,2016-17,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,795,795.0 +6.437333333333333,5,a-phya-i1,2016-17,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +6.816,5,a-phya-i1,2016-17,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 +4.194285714285714,4.19,a-phya-i1,2016-17,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 1.4,999,713.5714285714287 +7.552,5,a-phya-i1,2016-17,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,42,84.0 +6.165333333333334,5,a-phya-i1,2016-17,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,344,344.0 +2.435555555555556,2.44,a-phya-i1,2016-17,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,939,1043.3333333333333 +4.618666666666667,4.62,a-phya-i1,2016-17,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,317,634.0 +5.44,5,a-phya-i1,2016-17,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,240,480.0 +5.8773333333333335,5,a-phya-i1,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,199,398.0 +5.653333333333333,5,a-phya-i1,2016-17,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,220,440.0 +2.5718518518518523,2.57,a-phya-i1,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.4, 0.0, 0.5, 0.0, 0.9,916,1017.7777777777777 +4.992,4.99,a-phya-i1,2016-17,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,282,564.0 +5.536,5,a-phya-i1,2016-17,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,231,462.0 +4.32,4.32,a-phya-i1,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,345,690.0 +4.864,4.86,a-phya-i1,2016-17,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,294,588.0 +-2.416,1,a-phya-i1,2016-17,Weymouth - Weymouth High School,03360505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,1953,1953.0 +4.234666666666667,4.23,a-phya-i1,2016-17,Weymouth - William Seach,03360080, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,353,706.0 +7.312,5,a-phya-i1,2016-17,Whately - Whately Elementary,03370005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,129,129.0 +5.856,5,a-phya-i1,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +6.1706666666666665,5,a-phya-i1,2016-17,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +5.36,5,a-phya-i1,2016-17,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,495,495.0 +5.008,5,a-phya-i1,2016-17,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,561,561.0 +5.706666666666667,5,a-phya-i1,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +1.76,1.76,a-phya-i1,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1170,1170.0 +4.8053333333333335,4.81,a-phya-i1,2016-17,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,599,599.0 +4.506666666666667,4.51,a-phya-i1,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1310,655.0 +7.157333333333334,5,a-phya-i1,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 0.0, 1.0,158,158.0 +1,1,a-phya-i1,2016-17,Williamstown - Williamstown Elementary,03410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450 +7.157333333333334,5,a-phya-i1,2016-17,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,158,158.0 +6.56,5,a-phya-i1,2016-17,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +6.085333333333334,5,a-phya-i1,2016-17,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +6.645333333333333,5,a-phya-i1,2016-17,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +7.050666666666666,5,a-phya-i1,2016-17,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,178,178.0 +5.624,5,a-phya-i1,2016-17,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 0.0, 2.0,891,445.5 +5.682666666666667,5,a-phya-i1,2016-17,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,869,434.5 +5.802666666666667,5,a-phya-i1,2016-17,Wilmington - Woburn Street,03420020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,412,412.0 +6.533333333333333,5,a-phya-i1,2016-17,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,275,275.0 +1,1,a-phya-i1,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28 +6.458666666666667,5,a-phya-i1,2016-17,Winchendon - Murdock High School,03430515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +1,1,a-phya-i1,2016-17,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296 +6.501333333333333,5,a-phya-i1,2016-17,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,281,281.0 +1,1,a-phya-i1,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83 +5.653333333333333,5,a-phya-i1,2016-17,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,440,440.0 +5.8133333333333335,5,a-phya-i1,2016-17,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +5.088,5,a-phya-i1,2016-17,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,546,546.0 +3.9715555555555553,3.97,a-phya-i1,2016-17,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,1133,755.3333333333334 +5.8453333333333335,5,a-phya-i1,2016-17,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +5.749333333333333,5,a-phya-i1,2016-17,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,422,422.0 +3.4915555555555553,3.49,a-phya-i1,2016-17,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.9, 1.5,1268,845.3333333333334 +5.557333333333333,5,a-phya-i1,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,458,458.0 +5.482666666666667,5,a-phya-i1,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,472,472.0 +6.464,5,a-phya-i1,2016-17,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,576,288.0 +1,1,a-phya-i1,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465 +5.562666666666667,5,a-phya-i1,2016-17,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +5.344,5,a-phya-i1,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,498,498.0 +6.890666666666666,5,a-phya-i1,2016-17,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,208,208.0 +6.288,5,a-phya-i1,2016-17,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,321,321.0 +5.296,5,a-phya-i1,2016-17,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,507,507.0 +6.8053333333333335,5,a-phya-i1,2016-17,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,224,224.0 +6.282666666666667,5,a-phya-i1,2016-17,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,322,322.0 +7.344,5,a-phya-i1,2016-17,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,246,123.0 +7.411555555555554,5,a-phya-i1,2016-17,Woburn - Shamrock,03470043, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,331,110.33333333333333 +4.445333333333333,4.45,a-phya-i1,2016-17,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1333,666.5 +7.034666666666666,5,a-phya-i1,2016-17,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,181,181.0 +6.512,5,a-phya-i1,2016-17,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,558,279.0 +4.997333333333334,5.0,a-phya-i1,2016-17,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,563,563.0 +2.544,2.54,a-phya-i1,2016-17,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1023,1023.0 +6.618666666666667,5,a-phya-i1,2016-17,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,259,259.0 +5.994666666666666,5,a-phya-i1,2016-17,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,376,376.0 +1,1,a-phya-i1,2016-17,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514 +5.525333333333333,5,a-phya-i1,2016-17,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +1,1,a-phya-i1,2016-17,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497 +5.1626666666666665,5,a-phya-i1,2016-17,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,532,532.0 +6.917333333333334,5,a-phya-i1,2016-17,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,203,203.0 +5.461333333333333,5,a-phya-i1,2016-17,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,476,476.0 +3.8533333333333335,3.85,a-phya-i1,2016-17,Worcester - Doherty Memorial High,03480512, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1555,777.5 +5.338666666666667,5,a-phya-i1,2016-17,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +5.8453333333333335,5,a-phya-i1,2016-17,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +5.341333333333333,5,a-phya-i1,2016-17,Worcester - Forest Grove Middle,03480415, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,997,498.5 +6.405333333333333,5,a-phya-i1,2016-17,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,299,299.0 +4.8213333333333335,4.82,a-phya-i1,2016-17,Worcester - Gates Lane,03480110, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,596,596.0 +5.242666666666667,5,a-phya-i1,2016-17,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +5.818666666666667,5,a-phya-i1,2016-17,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +1,1,a-phya-i1,2016-17,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560 +6.565333333333333,5,a-phya-i1,2016-17,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,269,269.0 +5.642666666666667,5,a-phya-i1,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +6.405333333333333,5,a-phya-i1,2016-17,Worcester - Lake View,03480145, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,299,299.0 +6.48,5,a-phya-i1,2016-17,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,285,285.0 +6.2026666666666666,5,a-phya-i1,2016-17,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,337,337.0 +6.709333333333333,5,a-phya-i1,2016-17,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 +5.578666666666667,5,a-phya-i1,2016-17,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,454,454.0 +6.490666666666667,5,a-phya-i1,2016-17,Worcester - Norrback Avenue,03480202, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,566,283.0 +4.514666666666667,4.51,a-phya-i1,2016-17,Worcester - North High,03480515, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1307,653.5 +5.8533333333333335,5,a-phya-i1,2016-17,Worcester - Quinsigamond,03480210, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,805,402.5 +5.802666666666667,5,a-phya-i1,2016-17,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,412,412.0 +4.512,4.51,a-phya-i1,2016-17,Worcester - Roosevelt,03480220, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,654,654.0 +4.210666666666667,4.21,a-phya-i1,2016-17,Worcester - South High Community,03480520, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1421,710.5 +3.3973333333333335,3.4,a-phya-i1,2016-17,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,863,863.0 +5.946666666666666,5,a-phya-i1,2016-17,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,385,385.0 +5.994666666666666,5,a-phya-i1,2016-17,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,376,376.0 +5.221333333333333,5,a-phya-i1,2016-17,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,521,521.0 +1,1,a-phya-i1,2016-17,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254 +5.008,5,a-phya-i1,2016-17,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,561,561.0 +7.216,5,a-phya-i1,2016-17,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,147,147.0 +6.181333333333333,5,a-phya-i1,2016-17,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,341,341.0 +4.656,4.66,a-phya-i1,2016-17,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,627,627.0 +5.84,5,a-phya-i1,2016-17,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,405,405.0 +5.824,5,a-phya-i1,2016-17,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,816,408.0 +5.530666666666667,5,a-phya-i1,2016-17,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,1389,463.0 +7.68,5,a-phya-i1,2016-17,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,60,60.0 +5.658666666666667,5,a-phya-i1,2016-17,Wrentham - Charles E Roderick,03500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,439,439.0 +6.245925925925926,5,a-phya-i1,2016-17,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 1.8,592,328.88888888888886 diff --git a/data/admin_data/dese/enrollments.csv b/data/admin_data/dese/enrollments.csv index cb0a2cab..a200eb32 100644 --- a/data/admin_data/dese/enrollments.csv +++ b/data/admin_data/dese/enrollments.csv @@ -1,4 +1,4 @@ -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 +Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,School Code,PK,K,1,2,3,4,5,6,7,8,9,10,11,12,SP,Total NA,NA,"",2024-25,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 125, 123, 125, 127, 130, 128, 128, 111, 108, 80, 85, 80, 76, 0," 1,426" NA,NA,"",2024-25,Abington - Abington Early Education Program,00010001, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82 NA,NA,"",2024-25,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 138, 131, 128, 6, 530